diff --git a/package-lock.json b/package-lock.json index 6c1bcf4d..7518859a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "healer-man", - "version": "0.1.6", + "version": "0.1.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "healer-man", - "version": "0.1.6", + "version": "0.1.7", "dependencies": { "@capacitor/android": "8.4.1", "@capacitor/core": "8.4.1", diff --git a/package.json b/package.json index 6b278013..51851cc3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "healer-man", "private": true, - "version": "0.1.6", + "version": "0.1.7", "type": "module", "scripts": { "dev": "vite --host 0.0.0.0", @@ -20,7 +20,8 @@ "coa:sync:live": "node scripts/sync-ascension-coa.mjs --tooltips", "coa:icons": "node scripts/export-spell-icons.mjs", "ascension:talents": "node scripts/generate-wow335-talents.mjs ../wow335a/Interface/AddOns/PlayerBotManager/PBM/PBM_TalentData.lua ../LadiksMPQEditor/client-current/area-52/patch-D/DBFilesClient/Spell.dbc src/game/wow335Talents.generated.ts ../LadiksMPQEditor/client-current/area-52/patch-D/DBFilesClient/Talent.dbc", - "ascension:sync": "npm run coa:sync && npm run wow335:abilities && npm run ascension:talents && npm run coa:icons", + "catalogs:shard": "vite-node scripts/generate-catalog-shards.ts", + "ascension:sync": "npm run coa:sync && npm run wow335:abilities && npm run ascension:talents && npm run coa:icons && npm run catalogs:shard", "manastorm:import": "node scripts/manastorm-import/cli.mjs", "manastorm:forensics": "node scripts/manastorm-import/forensics-cli.mjs", "manastorm:sync": "npm run manastorm:import && npm run manastorm:forensics && npm run coa:icons", @@ -91,7 +92,8 @@ "assets:ktx2:creatures": "node scripts/asset-pipeline/compress-creature-ktx2.mjs", "assets:ktx2:audit": "node scripts/asset-pipeline/audit-ktx2.mjs --visual-only --require-all", "assets:ktx2:refresh-metadata": "node scripts/asset-pipeline/refresh-ktx2-metadata.mjs", - "prebuild": "npm run loot:generate && npm run assets:ktx2:audit", + "assets:performance:audit": "node scripts/asset-pipeline/audit-environment-performance.mjs", + "prebuild": "npm run loot:generate && npm run assets:ktx2:audit && npm run assets:performance:audit", "build": "node --max-old-space-size=8192 node_modules/typescript/bin/tsc -b && node --max-old-space-size=8192 node_modules/vite/bin/vite.js build", "build:android:web": "npm run prebuild && npm run android:prepare && node --max-old-space-size=8192 node_modules/typescript/bin/tsc -b && node --max-old-space-size=8192 node_modules/vite/bin/vite.js build --mode android", "android:sync": "npm run build:android:web && cap sync android", diff --git a/public/assets/game/dungeons/blackrock-depths/dungeon-pack.json b/public/assets/game/dungeons/blackrock-depths/dungeon-pack.json index 78381dbe..ea99d6d9 100644 --- a/public/assets/game/dungeons/blackrock-depths/dungeon-pack.json +++ b/public/assets/game/dungeons/blackrock-depths/dungeon-pack.json @@ -13,8 +13,8 @@ { "id": "visual", "url": "/assets/game/manastorm/230-blackrockdepths/visual.glb", - "checksum": "42d57961c31f54ecc7bc78829751110fc89294e6318336b8f260e132e478d13d", - "byteLength": 10266900, + "checksum": "7e4c7c75a898f5000fcb686dcfc6d3c1c4e675dc3dac5f7a8d48e53372b9f364", + "byteLength": 7068884, "triangleCount": 248302, "compression": "meshopt+ktx2" } diff --git a/public/assets/game/manastorm/230-blackrockdepths/stage-pack.json b/public/assets/game/manastorm/230-blackrockdepths/stage-pack.json index ecc9e284..4a5ede85 100644 --- a/public/assets/game/manastorm/230-blackrockdepths/stage-pack.json +++ b/public/assets/game/manastorm/230-blackrockdepths/stage-pack.json @@ -7,8 +7,8 @@ { "id": "visual", "url": "/assets/game/manastorm/230-blackrockdepths/visual.glb", - "checksum": "42d57961c31f54ecc7bc78829751110fc89294e6318336b8f260e132e478d13d", - "byteLength": 10266900, + "checksum": "7e4c7c75a898f5000fcb686dcfc6d3c1c4e675dc3dac5f7a8d48e53372b9f364", + "byteLength": 7068884, "triangleCount": 248302, "compression": "meshopt+ktx2" } diff --git a/public/assets/game/manastorm/230-blackrockdepths/visual.glb b/public/assets/game/manastorm/230-blackrockdepths/visual.glb index b87dec37..7c176ae4 100644 Binary files a/public/assets/game/manastorm/230-blackrockdepths/visual.glb and b/public/assets/game/manastorm/230-blackrockdepths/visual.glb differ diff --git a/release-version.json b/release-version.json index f0693b96..4f205893 100644 --- a/release-version.json +++ b/release-version.json @@ -1,4 +1,4 @@ { - "versionName": "0.1.6", - "versionCode": 1006 + "versionName": "0.1.7", + "versionCode": 1007 } diff --git a/scripts/asset-pipeline/audit-environment-performance.mjs b/scripts/asset-pipeline/audit-environment-performance.mjs new file mode 100644 index 00000000..93dc73e4 --- /dev/null +++ b/scripts/asset-pipeline/audit-environment-performance.mjs @@ -0,0 +1,121 @@ +#!/usr/bin/env node +import { access, mkdir, readFile, readdir, stat, writeFile } from "node:fs/promises"; +import path from "node:path"; +import { fileURLToPath } from "node:url"; +import { analyzeGlbFile } from "./glb-performance.mjs"; + +const projectRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../.."); +const baselineFile = path.join( + projectRoot, + "scripts/asset-pipeline/environment-performance-baseline.json", +); +const defaultRoots = [ + path.join(projectRoot, "public/assets/game/manastorm"), + path.join(projectRoot, "src/assets/game/dungeons"), +]; +const defaultThresholds = { + maxEstimatedDrawCalls: 1_500, + maxUnbatchedDrawCallSavings: 250, +}; + +async function exists(file) { + try { + await access(file); + return true; + } catch { + return false; + } +} + +async function collectVisualGlbs(root, files = []) { + if (!await exists(root)) return files; + const entry = await stat(root); + if (entry.isFile()) { + if (/(?:^|[-_])visual\.glb$/i.test(path.basename(root))) files.push(root); + return files; + } + for (const child of await readdir(root, { withFileTypes: true })) { + const target = path.join(root, child.name); + if (child.isDirectory()) await collectVisualGlbs(target, files); + else if (/(?:^|[-_])visual\.glb$/i.test(child.name)) files.push(target); + } + return files; +} + +function projectPath(file) { + return path.relative(projectRoot, file).split(path.sep).join("/"); +} + +function exceeds(report, limits) { + return report.estimatedDrawCalls > limits.maxEstimatedDrawCalls + || report.unbatchedDrawCallSavings > limits.maxUnbatchedDrawCallSavings; +} + +const args = process.argv.slice(2); +const writeBaseline = args.includes("--write-baseline"); +const roots = args.filter((argument) => argument !== "--write-baseline") + .map((argument) => path.resolve(projectRoot, argument)); +const files = [...new Set((await Promise.all( + (roots.length ? roots : defaultRoots).map((root) => collectVisualGlbs(root)), +)).flat())].sort(); +const reports = await Promise.all(files.map(async (file) => ({ + file: projectPath(file), + byteLength: (await stat(file)).size, + ...(await analyzeGlbFile(file)), +}))); + +if (writeBaseline) { + const baseline = { + schemaVersion: 1, + thresholds: defaultThresholds, + exceptions: Object.fromEntries( + reports + .filter((report) => exceeds(report, defaultThresholds)) + .map((report) => [report.file, { + maxEstimatedDrawCalls: Math.max(defaultThresholds.maxEstimatedDrawCalls, report.estimatedDrawCalls), + maxUnbatchedDrawCallSavings: Math.max( + defaultThresholds.maxUnbatchedDrawCallSavings, + report.unbatchedDrawCallSavings, + ), + }]), + ), + }; + await mkdir(path.dirname(baselineFile), { recursive: true }); + await writeFile(baselineFile, `${JSON.stringify(baseline, null, 2)}\n`, "utf8"); + console.log(`Wrote ${Object.keys(baseline.exceptions).length} performance exceptions to ${projectPath(baselineFile)}.`); + process.exit(0); +} + +if (!await exists(baselineFile)) { + throw new Error(`Missing ${projectPath(baselineFile)}. Run this script with --write-baseline.`); +} +const baseline = JSON.parse(await readFile(baselineFile, "utf8")); +const thresholds = { ...defaultThresholds, ...baseline.thresholds }; +const regressions = reports.filter((report) => { + const limits = { ...thresholds, ...baseline.exceptions?.[report.file] }; + return exceeds(report, limits); +}); +const debt = reports.filter((report) => exceeds(report, thresholds)); +const top = [...reports] + .sort((left, right) => right.estimatedDrawCalls - left.estimatedDrawCalls) + .slice(0, 12) + .map((report) => ({ + asset: report.file, + calls: report.estimatedDrawCalls, + avoidable: report.unbatchedDrawCallSavings, + gpuBatches: report.gpuInstanceBatches, + nodes: report.nodes, + })); + +console.table(top); +console.log(JSON.stringify({ + status: regressions.length ? "blocked" : "green", + assets: reports.length, + knownBudgetExceptions: debt.length, + regressions: regressions.map((report) => ({ + file: report.file, + estimatedDrawCalls: report.estimatedDrawCalls, + unbatchedDrawCallSavings: report.unbatchedDrawCallSavings, + })), +}, null, 2)); +if (regressions.length) process.exitCode = 1; diff --git a/scripts/asset-pipeline/environment-performance-baseline.json b/scripts/asset-pipeline/environment-performance-baseline.json new file mode 100644 index 00000000..d8c5f390 --- /dev/null +++ b/scripts/asset-pipeline/environment-performance-baseline.json @@ -0,0 +1,249 @@ +{ + "schemaVersion": 1, + "thresholds": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 250 + }, + "exceptions": { + "public/assets/game/manastorm/109-sunkentemple/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 320 + }, + "public/assets/game/manastorm/129-razorfendowns/visual.glb": { + "maxEstimatedDrawCalls": 1507, + "maxUnbatchedDrawCallSavings": 1406 + }, + "public/assets/game/manastorm/1771-custom-marsh/visual.glb": { + "maxEstimatedDrawCalls": 2493, + "maxUnbatchedDrawCallSavings": 2114 + }, + "public/assets/game/manastorm/1774-custom-tropical/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 910 + }, + "public/assets/game/manastorm/1775-custom-tuskarr/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 500 + }, + "public/assets/game/manastorm/1776-custom-vrykul1/visual.glb": { + "maxEstimatedDrawCalls": 2223, + "maxUnbatchedDrawCallSavings": 1818 + }, + "public/assets/game/manastorm/1781-forgottenmine/visual.glb": { + "maxEstimatedDrawCalls": 5756, + "maxUnbatchedDrawCallSavings": 3818 + }, + "public/assets/game/manastorm/1785-valsharaharena/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 392 + }, + "public/assets/game/manastorm/1787-baradinholdarena/visual.glb": { + "maxEstimatedDrawCalls": 10462, + "maxUnbatchedDrawCallSavings": 9362 + }, + "public/assets/game/manastorm/1794-twistingnether/visual.glb": { + "maxEstimatedDrawCalls": 3077, + "maxUnbatchedDrawCallSavings": 2557 + }, + "public/assets/game/manastorm/209-tanarisinstance/visual.glb": { + "maxEstimatedDrawCalls": 4579, + "maxUnbatchedDrawCallSavings": 3547 + }, + "public/assets/game/manastorm/229-blackrockspire/visual.glb": { + "maxEstimatedDrawCalls": 3972, + "maxUnbatchedDrawCallSavings": 3598 + }, + "public/assets/game/manastorm/269-cavernsoftime/visual.glb": { + "maxEstimatedDrawCalls": 5446, + "maxUnbatchedDrawCallSavings": 5289 + }, + "public/assets/game/manastorm/289-schoolofnecromancy/visual.glb": { + "maxEstimatedDrawCalls": 5140, + "maxUnbatchedDrawCallSavings": 4790 + }, + "public/assets/game/manastorm/309-zul-gurub/visual.glb": { + "maxEstimatedDrawCalls": 17377, + "maxUnbatchedDrawCallSavings": 15605 + }, + "public/assets/game/manastorm/329-stratholme/visual.glb": { + "maxEstimatedDrawCalls": 2954, + "maxUnbatchedDrawCallSavings": 2725 + }, + "public/assets/game/manastorm/34-stormwindjail/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 487 + }, + "public/assets/game/manastorm/349-mauradon/visual.glb": { + "maxEstimatedDrawCalls": 5624, + "maxUnbatchedDrawCallSavings": 5352 + }, + "public/assets/game/manastorm/36-deadminesinstance/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 309 + }, + "public/assets/game/manastorm/389-orgrimmarinstance/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 881 + }, + "public/assets/game/manastorm/429-diremaul/visual.glb": { + "maxEstimatedDrawCalls": 5021, + "maxUnbatchedDrawCallSavings": 4636 + }, + "public/assets/game/manastorm/469-blackwinglair/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 452 + }, + "public/assets/game/manastorm/47-razorfenkraulinstance/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 897 + }, + "public/assets/game/manastorm/48-blackfathom/visual.glb": { + "maxEstimatedDrawCalls": 2164, + "maxUnbatchedDrawCallSavings": 1950 + }, + "public/assets/game/manastorm/509-ahnqiraj/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 600 + }, + "public/assets/game/manastorm/531-ahnqirajtemple/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 953 + }, + "public/assets/game/manastorm/532-karazahn/visual.glb": { + "maxEstimatedDrawCalls": 8540, + "maxUnbatchedDrawCallSavings": 7892 + }, + "public/assets/game/manastorm/533-stratholme-raid/visual.glb": { + "maxEstimatedDrawCalls": 4165, + "maxUnbatchedDrawCallSavings": 4014 + }, + "public/assets/game/manastorm/540-hellfiremilitary/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 1150 + }, + "public/assets/game/manastorm/542-hellfiredemon/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 444 + }, + "public/assets/game/manastorm/543-hellfirerampart/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 296 + }, + "public/assets/game/manastorm/545-coilfangpumping/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 674 + }, + "public/assets/game/manastorm/546-coilfangmarsh/visual.glb": { + "maxEstimatedDrawCalls": 3104, + "maxUnbatchedDrawCallSavings": 3033 + }, + "public/assets/game/manastorm/547-coilfangdraenei/visual.glb": { + "maxEstimatedDrawCalls": 1535, + "maxUnbatchedDrawCallSavings": 1455 + }, + "public/assets/game/manastorm/548-coilfangraid/visual.glb": { + "maxEstimatedDrawCalls": 1916, + "maxUnbatchedDrawCallSavings": 1683 + }, + "public/assets/game/manastorm/550-tempestkeepraid/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 420 + }, + "public/assets/game/manastorm/552-tempestkeeparcane/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 999 + }, + "public/assets/game/manastorm/553-tempestkeepatrium/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 1115 + }, + "public/assets/game/manastorm/554-tempestkeepfactory/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 872 + }, + "public/assets/game/manastorm/555-auchindounshadow/visual.glb": { + "maxEstimatedDrawCalls": 2624, + "maxUnbatchedDrawCallSavings": 2516 + }, + "public/assets/game/manastorm/556-auchindoundemon/visual.glb": { + "maxEstimatedDrawCalls": 2095, + "maxUnbatchedDrawCallSavings": 1987 + }, + "public/assets/game/manastorm/557-auchindounethereal/visual.glb": { + "maxEstimatedDrawCalls": 3164, + "maxUnbatchedDrawCallSavings": 3026 + }, + "public/assets/game/manastorm/558-auchindoundraenei/visual.glb": { + "maxEstimatedDrawCalls": 2613, + "maxUnbatchedDrawCallSavings": 2523 + }, + "public/assets/game/manastorm/560-hillsbradpast/visual.glb": { + "maxEstimatedDrawCalls": 28259, + "maxUnbatchedDrawCallSavings": 24733 + }, + "public/assets/game/manastorm/568-zulaman/visual.glb": { + "maxEstimatedDrawCalls": 4307, + "maxUnbatchedDrawCallSavings": 3850 + }, + "public/assets/game/manastorm/574-valgarde70/visual.glb": { + "maxEstimatedDrawCalls": 8271, + "maxUnbatchedDrawCallSavings": 7072 + }, + "public/assets/game/manastorm/575-utgardepinnacle/visual.glb": { + "maxEstimatedDrawCalls": 16277, + "maxUnbatchedDrawCallSavings": 14018 + }, + "public/assets/game/manastorm/576-nexus70/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 396 + }, + "public/assets/game/manastorm/578-nexus80/visual.glb": { + "maxEstimatedDrawCalls": 2283, + "maxUnbatchedDrawCallSavings": 1896 + }, + "public/assets/game/manastorm/585-sunwell5manfix/visual.glb": { + "maxEstimatedDrawCalls": 1810, + "maxUnbatchedDrawCallSavings": 1618 + }, + "public/assets/game/manastorm/595-stratholmecot/visual.glb": { + "maxEstimatedDrawCalls": 4353, + "maxUnbatchedDrawCallSavings": 3386 + }, + "public/assets/game/manastorm/600-draktheronkeep/visual.glb": { + "maxEstimatedDrawCalls": 3518, + "maxUnbatchedDrawCallSavings": 2876 + }, + "public/assets/game/manastorm/602-ulduar80/visual.glb": { + "maxEstimatedDrawCalls": 1973, + "maxUnbatchedDrawCallSavings": 1295 + }, + "public/assets/game/manastorm/619-azjol-lowercity/visual.glb": { + "maxEstimatedDrawCalls": 1596, + "maxUnbatchedDrawCallSavings": 1243 + }, + "public/assets/game/manastorm/658-quarryoftears/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 618 + }, + "public/assets/game/manastorm/668-hallsofreflection/visual.glb": { + "maxEstimatedDrawCalls": 5464, + "maxUnbatchedDrawCallSavings": 4606 + }, + "public/assets/game/manastorm/70-uldaman/visual.glb": { + "maxEstimatedDrawCalls": 3268, + "maxUnbatchedDrawCallSavings": 3115 + }, + "public/assets/game/manastorm/821-tinketechshowdown/visual.glb": { + "maxEstimatedDrawCalls": 2585, + "maxUnbatchedDrawCallSavings": 2379 + }, + "public/assets/game/manastorm/90-gnomeragoninstance/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 1051 + }, + "public/assets/game/manastorm/908-alvaencounter/visual.glb": { + "maxEstimatedDrawCalls": 1500, + "maxUnbatchedDrawCallSavings": 1096 + } + } +} diff --git a/scripts/asset-pipeline/glb-performance.mjs b/scripts/asset-pipeline/glb-performance.mjs new file mode 100644 index 00000000..52b86020 --- /dev/null +++ b/scripts/asset-pipeline/glb-performance.mjs @@ -0,0 +1,98 @@ +import { open } from "node:fs/promises"; + +const GLB_MAGIC = 0x46546c67; +const JSON_CHUNK_TYPE = 0x4e4f534a; +const GPU_INSTANCING_EXTENSION = "EXT_mesh_gpu_instancing"; + +function primitiveCount(json, meshIndex) { + return json.meshes?.[meshIndex]?.primitives?.length ?? 0; +} + +function gpuInstanceCount(json, node) { + const attributes = node.extensions?.[GPU_INSTANCING_EXTENSION]?.attributes; + if (!attributes || typeof attributes !== "object") return 0; + return Math.max( + 0, + ...Object.values(attributes).map((accessorIndex) => ( + json.accessors?.[accessorIndex]?.count ?? 0 + )), + ); +} + +export function analyzeGlbJson(json) { + const repeatedMeshes = new Map(); + let estimatedDrawCalls = 0; + let expandedPrimitiveInstances = 0; + let meshNodes = 0; + let gpuInstanceBatches = 0; + let gpuInstances = 0; + + for (const node of json.nodes ?? []) { + if (!Number.isInteger(node.mesh)) continue; + meshNodes += 1; + const primitives = primitiveCount(json, node.mesh); + const instances = gpuInstanceCount(json, node); + estimatedDrawCalls += primitives; + expandedPrimitiveInstances += primitives * Math.max(1, instances); + if (instances > 0) { + gpuInstanceBatches += 1; + gpuInstances += instances; + continue; + } + repeatedMeshes.set(node.mesh, (repeatedMeshes.get(node.mesh) ?? 0) + 1); + } + + let eligibleRepeatedMeshes = 0; + let eligibleRepeatedNodes = 0; + let unbatchedDrawCallSavings = 0; + for (const [meshIndex, count] of repeatedMeshes) { + if (count < 3) continue; + eligibleRepeatedMeshes += 1; + eligibleRepeatedNodes += count; + unbatchedDrawCallSavings += (count - 1) * primitiveCount(json, meshIndex); + } + + const materials = json.materials ?? []; + return { + nodes: json.nodes?.length ?? 0, + meshNodes, + meshes: json.meshes?.length ?? 0, + materials: materials.length, + textures: json.textures?.length ?? 0, + doubleSidedMaterials: materials.filter((material) => material.doubleSided === true).length, + blendedMaterials: materials.filter((material) => material.alphaMode === "BLEND").length, + estimatedDrawCalls, + expandedPrimitiveInstances, + gpuInstanceBatches, + gpuInstances, + eligibleRepeatedMeshes, + eligibleRepeatedNodes, + unbatchedDrawCallSavings, + usesGpuInstancing: (json.extensionsUsed ?? []).includes(GPU_INSTANCING_EXTENSION), + }; +} + +export async function readGlbJson(file) { + const handle = await open(file, "r"); + try { + const header = Buffer.alloc(20); + const { bytesRead } = await handle.read(header, 0, header.length, 0); + if (bytesRead !== header.length + || header.readUInt32LE(0) !== GLB_MAGIC + || header.readUInt32LE(4) !== 2 + || header.readUInt32LE(16) !== JSON_CHUNK_TYPE) { + throw new Error(`${file} is not a supported GLB 2.0 file.`); + } + const jsonLength = header.readUInt32LE(12); + const jsonBuffer = Buffer.alloc(jsonLength); + const jsonRead = await handle.read(jsonBuffer, 0, jsonLength, 20); + if (jsonRead.bytesRead !== jsonLength) throw new Error(`${file} has a truncated JSON chunk.`); + return JSON.parse(jsonBuffer.toString("utf8")); + } finally { + await handle.close(); + } +} + +export async function analyzeGlbFile(file) { + return analyzeGlbJson(await readGlbJson(file)); +} diff --git a/scripts/asset-pipeline/glb-performance.test.mjs b/scripts/asset-pipeline/glb-performance.test.mjs new file mode 100644 index 00000000..f24ff485 --- /dev/null +++ b/scripts/asset-pipeline/glb-performance.test.mjs @@ -0,0 +1,54 @@ +import assert from "node:assert/strict"; +import test from "node:test"; +import { analyzeGlbJson } from "./glb-performance.mjs"; + +test("counts repeated mesh placements as avoidable draw calls", () => { + const report = analyzeGlbJson({ + meshes: [ + { primitives: [{}, {}] }, + { primitives: [{}] }, + ], + nodes: [ + { mesh: 0 }, + { mesh: 0 }, + { mesh: 0 }, + { mesh: 1 }, + ], + materials: [ + { doubleSided: true, alphaMode: "BLEND" }, + {}, + ], + textures: [{}, {}], + }); + + assert.equal(report.estimatedDrawCalls, 7); + assert.equal(report.expandedPrimitiveInstances, 7); + assert.equal(report.eligibleRepeatedMeshes, 1); + assert.equal(report.eligibleRepeatedNodes, 3); + assert.equal(report.unbatchedDrawCallSavings, 4); + assert.equal(report.doubleSidedMaterials, 1); + assert.equal(report.blendedMaterials, 1); +}); + +test("counts one draw-call set for an EXT_mesh_gpu_instancing batch", () => { + const report = analyzeGlbJson({ + extensionsUsed: ["EXT_mesh_gpu_instancing"], + accessors: [{ count: 12 }], + meshes: [{ primitives: [{}, {}, {}] }], + nodes: [{ + mesh: 0, + extensions: { + EXT_mesh_gpu_instancing: { + attributes: { TRANSLATION: 0 }, + }, + }, + }], + }); + + assert.equal(report.estimatedDrawCalls, 3); + assert.equal(report.expandedPrimitiveInstances, 36); + assert.equal(report.gpuInstanceBatches, 1); + assert.equal(report.gpuInstances, 12); + assert.equal(report.unbatchedDrawCallSavings, 0); + assert.equal(report.usesGpuInstancing, true); +}); diff --git a/scripts/generate-catalog-shards.ts b/scripts/generate-catalog-shards.ts new file mode 100644 index 00000000..5b9ffee0 --- /dev/null +++ b/scripts/generate-catalog-shards.ts @@ -0,0 +1,106 @@ +import { + mkdirSync, + readFileSync, + readdirSync, + unlinkSync, + writeFileSync, +} from "node:fs"; +import { basename, resolve } from "node:path"; +import { + CLASSES, + COA_CLASS_IDS, + type ClassId, + type CoaClassId, +} from "../src/app/characterCatalog"; +import { TALENT_NODES, TALENT_TREES } from "../src/game/talentCatalog"; + +const projectRoot = resolve(import.meta.dirname, ".."); +const talentOutputDirectory = resolve(projectRoot, "src/game/generated/talentUi"); +const coaAbilityOutputDirectory = resolve(projectRoot, "src/game/generated/coaAbilities"); + +function writeJson(file: string, value: unknown): void { + writeFileSync(file, `${JSON.stringify(value)}\n`, "utf8"); + console.log(`Wrote ${file}`); +} + +function removeStaleJson(directory: string, expectedNames: ReadonlySet): void { + for (const name of readdirSync(directory)) { + if (!name.endsWith(".json") || expectedNames.has(name)) continue; + unlinkSync(resolve(directory, name)); + } +} + +mkdirSync(talentOutputDirectory, { recursive: true }); +const talentClassIds = new Set(TALENT_TREES.map((tree) => tree.classId)); +const talentFileNames = new Set([...talentClassIds].map((classId) => `${classId}.json`)); +removeStaleJson(talentOutputDirectory, talentFileNames); + +for (const classId of talentClassIds) { + const trees = TALENT_TREES.filter((tree) => tree.classId === classId).map((tree) => ({ + id: tree.id, + classId: tree.classId, + name: tree.name, + icon: tree.icon, + background: tree.background, + description: tree.description, + system: tree.system, + })); + const treeIds = new Set(trees.map((tree) => tree.id)); + const nodes = TALENT_NODES.filter((node) => treeIds.has(node.treeId)).map((node) => ({ + id: node.id, + treeId: node.treeId, + index: node.index, + prerequisiteId: node.prerequisiteId, + prerequisiteRank: node.prerequisiteRank, + prerequisites: node.prerequisites, + column: node.column, + row: node.row, + icon: node.icon, + maxRank: node.maxRank, + name: node.name, + description: node.description, + rankDescriptions: node.rankDescriptions, + system: node.system, + entryType: node.entryType, + abilityEssenceCost: node.abilityEssenceCost, + talentEssenceCost: node.talentEssenceCost, + requiredClassPoints: node.requiredClassPoints, + requiredSpecPoints: node.requiredSpecPoints, + requiredLevel: node.requiredLevel, + isPassive: node.isPassive, + })); + writeJson(resolve(talentOutputDirectory, `${classId}.json`), { + schemaVersion: 1, + classId, + trees, + nodes, + }); +} + +interface CoaAbilitySnapshot { + readonly schemaVersion: 1; + readonly abilitiesByClass: Readonly>; + readonly resourcesByClass: Readonly>; + readonly triggeredAbilitiesBySpellId: Readonly>; +} + +const coaAbilityInput = resolve(projectRoot, "src/game/generated/coaAbilityRuntimeCatalog.json"); +const coaSnapshot = JSON.parse(readFileSync(coaAbilityInput, "utf8")) as CoaAbilitySnapshot; +mkdirSync(coaAbilityOutputDirectory, { recursive: true }); +const coaAbilityFileNames = new Set(COA_CLASS_IDS.map((classId) => `${classId}.json`)); +removeStaleJson(coaAbilityOutputDirectory, coaAbilityFileNames); + +for (const classId of COA_CLASS_IDS) { + const triggeredAbilitiesBySpellId = Object.fromEntries(Object.entries( + coaSnapshot.triggeredAbilitiesBySpellId, + ).filter(([, ability]) => ability.classId === classId)); + writeJson(resolve(coaAbilityOutputDirectory, `${classId}.json`), { + schemaVersion: 1, + classId, + abilities: coaSnapshot.abilitiesByClass[classId] ?? [], + resource: coaSnapshot.resourcesByClass[classId], + triggeredAbilitiesBySpellId, + }); +} + +console.log(`Generated ${talentFileNames.size} talent UI shards and ${coaAbilityFileNames.size} Conquest ability shards from ${basename(coaAbilityInput)}.`); diff --git a/scripts/manastorm-pipeline/cli.mjs b/scripts/manastorm-pipeline/cli.mjs index f06952f5..785e121b 100644 --- a/scripts/manastorm-pipeline/cli.mjs +++ b/scripts/manastorm-pipeline/cli.mjs @@ -404,15 +404,23 @@ async function optimizeStage(slug) { const source = path.join(staging, entry.path); const outputName = optimizedChunkName(role, index, entries.length); const output = path.join(staging, outputName); - await run(process.execPath, [ - cli, - "meshopt", - source, - output, - "--level", - "high", - ]); if (role === "visual") { + await run(process.execPath, [ + cli, + "optimize", + source, + output, + "--compress", + "meshopt", + "--meshopt-level", + "high", + "--instance", + "true", + "--instance-min", + "3", + "--texture-size", + "2048", + ]); await run(process.execPath, [ path.join(projectRoot, "scripts/asset-pipeline/compress-ktx2.mjs"), output, @@ -421,6 +429,15 @@ async function optimizeStage(slug) { "--jobs", "2", ]); + } else { + await run(process.execPath, [ + cli, + "meshopt", + source, + output, + "--level", + "high", + ]); } const geometry = await inspectGlb(output); const descriptor = { diff --git a/src/App.tsx b/src/App.tsx index a5cd565d..45a05e67 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,5 +1,7 @@ -import { lazy, Suspense, useEffect } from "react"; +import { lazy, Suspense, useEffect, useMemo, useState, type ReactNode } from "react"; +import { BASE_CLASS_IDS, classById } from "./app/characterCatalog"; import { useShellStore } from "./app/shellStore"; +import { preloadAbilityCatalogsForClasses } from "./game/abilityCatalog"; import { useManastormAdminStore } from "./game/manastormAdminStore"; import { useAuthoritativeDualScreenSync, useForcedThorDisplays } from "./platform/useThorDualScreen"; import { LoginScreen } from "./ui/LoginScreen"; @@ -18,6 +20,39 @@ function ShellTransition() { return
HMOpening expeditionPreparing the next screen...
; } +function RuntimeCatalogGate({ children }: { readonly children: ReactNode }) { + const character = useShellStore((state) => ( + state.characters.find((candidate) => candidate.id === state.selectedCharacterId) ?? null + )); + const classIds = useMemo(() => { + if (!character) return []; + const definition = classById(character.classId); + if (definition.mode === "conquest") return [...BASE_CLASS_IDS, character.classId]; + return [character.classId, ...(character.secondaryClassId ? [character.secondaryClassId] : [])]; + }, [character]); + const requestKey = classIds.join(":"); + const [loadedKey, setLoadedKey] = useState(""); + const [failedKey, setFailedKey] = useState(""); + + useEffect(() => { + if (!requestKey) return; + let active = true; + setFailedKey(""); + void preloadAbilityCatalogsForClasses(classIds).then(() => { + if (active) setLoadedKey(requestKey); + }).catch(() => { + if (active) setFailedKey(requestKey); + }); + return () => { active = false; }; + }, [classIds, requestKey]); + + if (!requestKey || loadedKey === requestKey) return children; + if (failedKey === requestKey) { + return
!Catalog unavailableReload the app to retry loading combat data.
; + } + return ; +} + export default function App() { useForcedThorDisplays(); useAuthoritativeDualScreenSync(); @@ -39,5 +74,6 @@ export default function App() { else if (phase === "manastorms") screen = }>; else if (phase === "gm-admin") screen = }>; else if (phase === "game") screen = }>; - return <>{screen}; + const requiresRuntimeCatalog = !["login", "characters", "create-character"].includes(phase); + return <>{requiresRuntimeCatalog ? {screen} : screen}; } diff --git a/src/game/abilityCatalog.ts b/src/game/abilityCatalog.ts index d856e745..cfb909b6 100644 --- a/src/game/abilityCatalog.ts +++ b/src/game/abilityCatalog.ts @@ -1,13 +1,18 @@ -import type { ClassId } from "../app/characterCatalog"; import { - COA_RUNTIME_ABILITIES_BY_CLASS as COA_ABILITIES_BY_CLASS, - COA_RUNTIME_CLASS_RESOURCES as COA_CLASS_RESOURCES, -} from "./coaAbilityRuntimeCatalog"; -import { WOW335_ABILITIES_BY_CLASS } from "./wow335AbilityCatalog"; -import { ROM_ALL_ABILITIES, ROM_ELITE_ABILITIES, ROM_ORDINARY_ABILITIES_BY_CLASS, type RomSkillGroup } from "./romAbilityCatalog"; + BASE_CLASS_IDS, + COA_CLASS_IDS, + ROM_CLASS_IDS, + type BaseClassId, + type ClassId, + type CoaClassId, + type RomClassId, +} from "../app/characterCatalog"; +import { loadCoaAbilityCatalogShard } from "./coaAbilityCatalogLoader"; import { registerAbilityAnimationLookup } from "./abilityAnimationLookup"; import type { AuraDefinition, DamageSchool, DispelCategory } from "./combatAuras"; +export type RomSkillGroup = "primary" | "general" | "elite" | "passive"; + export type ResourceType = | "mana" | "rage" @@ -301,7 +306,7 @@ function defineAbility(definition: AbilityDefinitionInput): AbilityDefinition { }; } -export const CLASS_RESOURCES: Readonly> = { +const classResources: Partial> = { // The prototype has no auto-attack swing timer yet, so a small passive Rage // gain stands in for white-hit generation and keeps the full kit usable. warrior: { type: "rage", name: "Rage", color: "#b74439", maximum: 100, initial: 0, regenerationPerSecond: 5 }, @@ -314,7 +319,6 @@ export const CLASS_RESOURCES: Readonly> = mage: { type: "mana", name: "Mana", color: "#397dcc", maximum: 100, initial: 100, regenerationPerSecond: 4 }, warlock: { type: "mana", name: "Mana", color: "#397dcc", maximum: 100, initial: 100, regenerationPerSecond: 4 }, druid: { type: "mana", name: "Mana", color: "#397dcc", maximum: 100, initial: 100, regenerationPerSecond: 4 }, - ...COA_CLASS_RESOURCES, "rom-warrior": { type: "rage", name: "Rage", color: "#b74439", maximum: 100, initial: 0, regenerationPerSecond: 0 }, "rom-scout": { type: "focus", name: "Focus", color: "#55b995", maximum: 100, initial: 100, regenerationPerSecond: 6 }, "rom-rogue": { type: "energy", name: "Energy", color: "#d8c43f", maximum: 100, initial: 100, regenerationPerSecond: 10 }, @@ -327,6 +331,9 @@ export const CLASS_RESOURCES: Readonly> = "rom-champion": { type: "rage", name: "Rage", color: "#bb604c", maximum: 100, initial: 0, regenerationPerSecond: 0 }, }; +/** Populated per mode/class by preloadAbilityCatalogsForClasses before gameplay mounts. */ +export const CLASS_RESOURCES = classResources as Readonly>; + const WARRIOR = [ defineAbility({ id: "warrior-heroic-strike", classId: "warrior", dbcSpellId: 78, name: "Heroic Strike", @@ -789,48 +796,131 @@ function mergeWow335ClassicAbilities( ]; } -export const ABILITIES_BY_CLASS: Readonly> = { - warrior: mergeWow335ClassicAbilities(WARRIOR, WOW335_ABILITIES_BY_CLASS.warrior), - paladin: mergeWow335ClassicAbilities(PALADIN, WOW335_ABILITIES_BY_CLASS.paladin), - hunter: mergeWow335ClassicAbilities(HUNTER, WOW335_ABILITIES_BY_CLASS.hunter), - rogue: mergeWow335ClassicAbilities(ROGUE, WOW335_ABILITIES_BY_CLASS.rogue), - priest: mergeWow335ClassicAbilities(PRIEST, WOW335_ABILITIES_BY_CLASS.priest), - "death-knight": mergeWow335ClassicAbilities(DEATH_KNIGHT, WOW335_ABILITIES_BY_CLASS["death-knight"]), - shaman: mergeWow335ClassicAbilities(SHAMAN, WOW335_ABILITIES_BY_CLASS.shaman), - mage: mergeWow335ClassicAbilities(MAGE, WOW335_ABILITIES_BY_CLASS.mage), - warlock: mergeWow335ClassicAbilities(WARLOCK, WOW335_ABILITIES_BY_CLASS.warlock), - druid: mergeWow335ClassicAbilities(DRUID, WOW335_ABILITIES_BY_CLASS.druid), - ...COA_ABILITIES_BY_CLASS, - "rom-warrior": ROM_ORDINARY_ABILITIES_BY_CLASS["rom-warrior"], - "rom-scout": ROM_ORDINARY_ABILITIES_BY_CLASS["rom-scout"], - "rom-rogue": ROM_ORDINARY_ABILITIES_BY_CLASS["rom-rogue"], - "rom-mage": ROM_ORDINARY_ABILITIES_BY_CLASS["rom-mage"], - "rom-priest": ROM_ORDINARY_ABILITIES_BY_CLASS["rom-priest"], - "rom-knight": ROM_ORDINARY_ABILITIES_BY_CLASS["rom-knight"], - "rom-warden": ROM_ORDINARY_ABILITIES_BY_CLASS["rom-warden"], - "rom-druid": ROM_ORDINARY_ABILITIES_BY_CLASS["rom-druid"], - "rom-warlock": ROM_ORDINARY_ABILITIES_BY_CLASS["rom-warlock"], - "rom-champion": ROM_ORDINARY_ABILITIES_BY_CLASS["rom-champion"], +const CLASSIC_CORE_ABILITIES: Readonly> = { + warrior: WARRIOR, + paladin: PALADIN, + hunter: HUNTER, + rogue: ROGUE, + priest: PRIEST, + "death-knight": DEATH_KNIGHT, + shaman: SHAMAN, + mage: MAGE, + warlock: WARLOCK, + druid: DRUID, }; +const abilitiesByClass: Partial> = { + ...CLASSIC_CORE_ABILITIES, +}; +const abilityCatalog: Record = {}; +let romEliteAbilities: readonly AbilityDefinition[] = []; +let romTriggeredAbilityResolver: ((spellId: number) => AbilityDefinition | null) | null = null; +const coaTriggeredAbilities = new Map(); +let classicLoad: Promise | null = null; +let romLoad: Promise | null = null; +const coaLoads = new Map>(); -export const ABILITY_CATALOG: Readonly> = Object.freeze( - Object.fromEntries([...Object.values(ABILITIES_BY_CLASS).flat(), ...ROM_ALL_ABILITIES].map((ability) => [ability.id, ability])), -); +/** Live read-only views retained for catalog consumers and validation tests. */ +export const ABILITIES_BY_CLASS = abilitiesByClass as Readonly>; +export const ABILITY_CATALOG = abilityCatalog as Readonly>; + +function registerClassAbilities(classId: ClassId, abilities: readonly AbilityDefinition[]): void { + for (const previous of abilitiesByClass[classId] ?? []) delete abilityCatalog[previous.id]; + abilitiesByClass[classId] = abilities; + for (const ability of abilities) abilityCatalog[ability.id] = ability; +} + +for (const classId of BASE_CLASS_IDS) { + registerClassAbilities(classId, CLASSIC_CORE_ABILITIES[classId]); +} + +async function preloadClassicAbilityCatalog(): Promise { + if (classicLoad) return classicLoad; + classicLoad = import("./wow335AbilityCatalog").then(({ WOW335_ABILITIES_BY_CLASS }) => { + for (const classId of BASE_CLASS_IDS) { + registerClassAbilities( + classId, + mergeWow335ClassicAbilities(CLASSIC_CORE_ABILITIES[classId], WOW335_ABILITIES_BY_CLASS[classId]), + ); + } + }).catch((error: unknown) => { + classicLoad = null; + throw error; + }); + return classicLoad; +} + +async function preloadRomAbilityCatalog(): Promise { + if (romLoad) return romLoad; + romLoad = import("./romAbilityCatalog").then((catalog) => { + for (const classId of ROM_CLASS_IDS) { + registerClassAbilities(classId, catalog.ROM_ORDINARY_ABILITIES_BY_CLASS[classId]); + } + romEliteAbilities = catalog.ROM_ELITE_ABILITIES; + romTriggeredAbilityResolver = catalog.romTriggeredAbilityBySpellId; + for (const ability of catalog.ROM_ALL_ABILITIES) abilityCatalog[ability.id] = ability; + }).catch((error: unknown) => { + romLoad = null; + throw error; + }); + return romLoad; +} + +async function preloadCoaAbilityCatalog(classId: CoaClassId): Promise { + const cached = coaLoads.get(classId); + if (cached) return cached; + const pending = loadCoaAbilityCatalogShard(classId).then((shard) => { + registerClassAbilities(classId, shard.abilities); + classResources[classId] = shard.resource; + for (const [spellId, ability] of Object.entries(shard.triggeredAbilitiesBySpellId)) { + coaTriggeredAbilities.set(Number(spellId), ability); + } + }).catch((error: unknown) => { + coaLoads.delete(classId); + throw error; + }); + coaLoads.set(classId, pending); + return pending; +} + +/** + * Loads only the executable catalogs needed by the selected character and its + * party mode. Callers gate gameplay mounting on this promise so combat APIs can + * stay synchronous inside the simulation loop. + */ +export async function preloadAbilityCatalogsForClasses(classIds: readonly ClassId[]): Promise { + const requested = new Set(classIds); + const loads: Promise[] = []; + if (BASE_CLASS_IDS.some((classId) => requested.has(classId))) loads.push(preloadClassicAbilityCatalog()); + if (ROM_CLASS_IDS.some((classId) => requested.has(classId))) loads.push(preloadRomAbilityCatalog()); + for (const classId of COA_CLASS_IDS) { + if (requested.has(classId)) loads.push(preloadCoaAbilityCatalog(classId)); + } + await Promise.all(loads); +} + +export function triggeredAbilityBySpellId( + spellId: number, + includeCoa = true, +): AbilityDefinition | null { + return romTriggeredAbilityResolver?.(spellId) + ?? (includeCoa ? coaTriggeredAbilities.get(spellId) : undefined) + ?? null; +} export function abilitiesForClass(classId: ClassId): readonly AbilityDefinition[] { - return ABILITIES_BY_CLASS[classId]; + return abilitiesByClass[classId] ?? []; } export function abilitiesForCharacter( classId: ClassId, secondaryClassId: ClassId | null | undefined, ): readonly AbilityDefinition[] { - if (!classId.startsWith("rom-") || !secondaryClassId?.startsWith("rom-")) return ABILITIES_BY_CLASS[classId]; - const primary = ABILITIES_BY_CLASS[classId]; - const secondaryGeneral = ABILITIES_BY_CLASS[secondaryClassId].filter((ability) => ( + if (!classId.startsWith("rom-") || !secondaryClassId?.startsWith("rom-")) return abilitiesForClass(classId); + const primary = abilitiesForClass(classId); + const secondaryGeneral = abilitiesForClass(secondaryClassId).filter((ability) => ( ability.romSkillGroup === "general" || (ability.romSkillGroup === "passive" && ability.id.includes("-general-")) )); - const elites = ROM_ELITE_ABILITIES.filter((ability) => ability.classId === classId && ability.secondaryClassId === secondaryClassId); + const elites = romEliteAbilities.filter((ability) => ability.classId === classId && ability.secondaryClassId === secondaryClassId); return [...primary, ...secondaryGeneral, ...elites]; } @@ -885,7 +975,7 @@ export function abilitiesUnlockedBetweenLevels( previousLevel: number, currentLevel: number, ): readonly AbilityDefinition[] { - return ABILITIES_BY_CLASS[classId].filter((ability) => ( + return abilitiesForClass(classId).filter((ability) => ( ability.unlockLevel > previousLevel && ability.unlockLevel <= currentLevel )); } @@ -920,7 +1010,7 @@ export function defaultActionBarForClass(classId: ClassId): readonly string[] { || effect.kind === "rune" || effect.kind === "trigger-spell" )) ? 0 : 1; - const ordered = ABILITIES_BY_CLASS[classId] + const ordered = abilitiesForClass(classId) .map((ability, index) => ({ ability, index })) .sort((left, right) => ( left.ability.unlockLevel - right.ability.unlockLevel @@ -962,5 +1052,15 @@ export function defaultActionBarForCharacter(classId: ClassId, secondaryClassId? } export function resourceProfileForClass(classId: ClassId): ClassResourceProfile { - return CLASS_RESOURCES[classId]; + const profile = classResources[classId]; + if (!profile) throw new Error(`Ability catalog for ${classId} was used before it was loaded.`); + return profile; +} + +if (import.meta.env.MODE === "test") { + await preloadAbilityCatalogsForClasses([ + ...BASE_CLASS_IDS, + ...COA_CLASS_IDS, + ...ROM_CLASS_IDS, + ]); } diff --git a/src/game/coaAbilityCatalogLoader.test.ts b/src/game/coaAbilityCatalogLoader.test.ts new file mode 100644 index 00000000..9ac2e077 --- /dev/null +++ b/src/game/coaAbilityCatalogLoader.test.ts @@ -0,0 +1,18 @@ +import { describe, expect, it } from "vitest"; +import { loadCoaAbilityCatalogShard } from "./coaAbilityCatalogLoader"; +import { + COA_RUNTIME_ABILITIES_BY_CLASS, + COA_RUNTIME_CLASS_RESOURCES, +} from "./coaAbilityRuntimeCatalog"; + +describe("Conquest ability catalog shards", () => { + it.each(["barbarian", "runemaster"] as const)("loads only the %s executable catalog", async (classId) => { + const shard = await loadCoaAbilityCatalogShard(classId); + expect(shard.classId).toBe(classId); + expect(shard.abilities).toEqual(COA_RUNTIME_ABILITIES_BY_CLASS[classId]); + expect(shard.resource).toEqual(COA_RUNTIME_CLASS_RESOURCES[classId]); + expect(Object.values(shard.triggeredAbilitiesBySpellId).every((ability) => ( + ability.classId === classId + ))).toBe(true); + }); +}); diff --git a/src/game/coaAbilityCatalogLoader.ts b/src/game/coaAbilityCatalogLoader.ts new file mode 100644 index 00000000..77f56cc6 --- /dev/null +++ b/src/game/coaAbilityCatalogLoader.ts @@ -0,0 +1,36 @@ +import type { CoaClassId } from "../app/characterCatalog"; +import type { AbilityDefinition, ClassResourceProfile } from "./abilityCatalog"; + +export interface CoaAbilityCatalogShard { + readonly schemaVersion: 1; + readonly classId: CoaClassId; + readonly abilities: readonly AbilityDefinition[]; + readonly resource: ClassResourceProfile; + readonly triggeredAbilitiesBySpellId: Readonly>; +} + +interface CoaAbilityCatalogShardModule { + readonly default: CoaAbilityCatalogShard; +} + +const shardLoaders = import.meta.glob("./generated/coaAbilities/*.json"); +const loadCache = new Map>(); + +export function loadCoaAbilityCatalogShard(classId: CoaClassId): Promise { + const cached = loadCache.get(classId); + if (cached) return cached; + const key = `./generated/coaAbilities/${classId}.json`; + const loader = shardLoaders[key]; + if (!loader) return Promise.reject(new Error(`No Conquest ability catalog exists for ${classId}.`)); + const pending = loader().then((module) => { + if (module.default.schemaVersion !== 1 || module.default.classId !== classId) { + throw new Error(`Conquest ability catalog ${classId} has incompatible metadata.`); + } + return module.default; + }).catch((error: unknown) => { + loadCache.delete(classId); + throw error; + }); + loadCache.set(classId, pending); + return pending; +} diff --git a/src/game/combatStore.ts b/src/game/combatStore.ts index 683666f0..aee9c314 100644 --- a/src/game/combatStore.ts +++ b/src/game/combatStore.ts @@ -16,6 +16,7 @@ import { defaultActionBarForCharacter, isAbilityUnlocked, resourceProfileForClass, + triggeredAbilityBySpellId, type AbilityAmountScaling, type AbilityDefinition, type AbilityEffect, @@ -57,8 +58,6 @@ import { spendDeathKnightRunes, } from "./combatResources"; import { resolveHealing, type HealingResolution } from "./combatHealing"; -import { romTriggeredAbilityBySpellId } from "./romAbilityCatalog"; -import { coaTriggeredAbilityBySpellId } from "./coaAbilityRuntimeCatalog"; import { awardExperience, healerManExperienceAward, @@ -2578,7 +2577,7 @@ function executeTriggeredSpellInWork( const catalogAbility = work.abilities.find((candidate) => ( candidate.dbcSpellId === spellId || candidate.ranks?.some((rank) => rank.spellId === spellId) - )) ?? romTriggeredAbilityBySpellId(spellId) ?? (allowCoaHidden ? coaTriggeredAbilityBySpellId(spellId) : null); + )) ?? triggeredAbilityBySpellId(spellId, allowCoaHidden); if (!catalogAbility) return; const ability = abilityAtLevel(catalogAbility, work.progression.level); const source = playerThreatSource({ talentModifiers: work.talentModifiers }, ability.id, true); diff --git a/src/game/generated/coaAbilities/barbarian.json b/src/game/generated/coaAbilities/barbarian.json new file mode 100644 index 00000000..3a82bacc --- /dev/null +++ b/src/game/generated/coaAbilities/barbarian.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"barbarian","abilities":[{"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}]}]}],"resource":{"type":"energy","name":"Energy","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/bloodmage.json b/src/game/generated/coaAbilities/bloodmage.json new file mode 100644 index 00000000..64d8dc4a --- /dev/null +++ b/src/game/generated/coaAbilities/bloodmage.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"bloodmage","abilities":[{"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"}]}]}],"resource":{"type":"rage","name":"Sanguine Rage","color":"#b74439","maximum":100,"initial":0,"regenerationPerSecond":5},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/chronomancer.json b/src/game/generated/coaAbilities/chronomancer.json new file mode 100644 index 00000000..b3adf3a3 --- /dev/null +++ b/src/game/generated/coaAbilities/chronomancer.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"chronomancer","abilities":[{"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}]}]}],"resource":{"type":"mana","name":"Mana","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/cultist.json b/src/game/generated/coaAbilities/cultist.json new file mode 100644 index 00000000..085c39f1 --- /dev/null +++ b/src/game/generated/coaAbilities/cultist.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"cultist","abilities":[{"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}]}]}],"resource":{"type":"mana","name":"Mana / Insanity","color":"#6950a1","maximum":100,"initial":100,"regenerationPerSecond":4},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/felsworn.json b/src/game/generated/coaAbilities/felsworn.json new file mode 100644 index 00000000..22607a9f --- /dev/null +++ b/src/game/generated/coaAbilities/felsworn.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"felsworn","abilities":[{"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}]}]}],"resource":{"type":"rage","name":"Felfury","color":"#a330c9","maximum":100,"initial":0,"regenerationPerSecond":5},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/guardian.json b/src/game/generated/coaAbilities/guardian.json new file mode 100644 index 00000000..615c0f7b --- /dev/null +++ b/src/game/generated/coaAbilities/guardian.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"guardian","abilities":[{"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}]}]}],"resource":{"type":"energy","name":"Energy","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/knight-of-xoroth.json b/src/game/generated/coaAbilities/knight-of-xoroth.json new file mode 100644 index 00000000..7ac62b09 --- /dev/null +++ b/src/game/generated/coaAbilities/knight-of-xoroth.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"knight-of-xoroth","abilities":[{"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}]}]}],"resource":{"type":"rage","name":"Deathfire","color":"#d64747","maximum":100,"initial":0,"regenerationPerSecond":5},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/necromancer.json b/src/game/generated/coaAbilities/necromancer.json new file mode 100644 index 00000000..a744c29a --- /dev/null +++ b/src/game/generated/coaAbilities/necromancer.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"necromancer","abilities":[{"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}],"resource":{"type":"mana","name":"Mana / Runic Power","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/primalist.json b/src/game/generated/coaAbilities/primalist.json new file mode 100644 index 00000000..15ce73b1 --- /dev/null +++ b/src/game/generated/coaAbilities/primalist.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"primalist","abilities":[{"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}]}]}],"resource":{"type":"rage","name":"Primal Rage","color":"#b74439","maximum":100,"initial":0,"regenerationPerSecond":5},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/pyromancer.json b/src/game/generated/coaAbilities/pyromancer.json new file mode 100644 index 00000000..3d8500ba --- /dev/null +++ b/src/game/generated/coaAbilities/pyromancer.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"pyromancer","abilities":[{"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}]}]}],"resource":{"type":"mana","name":"Mana","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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/ranger.json b/src/game/generated/coaAbilities/ranger.json new file mode 100644 index 00000000..4adc9696 --- /dev/null +++ b/src/game/generated/coaAbilities/ranger.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"ranger","abilities":[{"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}],"resource":{"type":"energy","name":"Focus","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/reaper.json b/src/game/generated/coaAbilities/reaper.json new file mode 100644 index 00000000..e544929c --- /dev/null +++ b/src/game/generated/coaAbilities/reaper.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"reaper","abilities":[{"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}]}]}],"resource":{"type":"mana","name":"Souls","color":"#6950a1","maximum":100,"initial":100,"regenerationPerSecond":4},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/runemaster.json b/src/game/generated/coaAbilities/runemaster.json new file mode 100644 index 00000000..521b57ca --- /dev/null +++ b/src/game/generated/coaAbilities/runemaster.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"runemaster","abilities":[{"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}]}]}],"resource":{"type":"mana","name":"Mana / Runes","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/starcaller.json b/src/game/generated/coaAbilities/starcaller.json new file mode 100644 index 00000000..504bb268 --- /dev/null +++ b/src/game/generated/coaAbilities/starcaller.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"starcaller","abilities":[{"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}]}]}],"resource":{"type":"mana","name":"Mana","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/stormbringer.json b/src/game/generated/coaAbilities/stormbringer.json new file mode 100644 index 00000000..658e6d9c --- /dev/null +++ b/src/game/generated/coaAbilities/stormbringer.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"stormbringer","abilities":[{"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}]}]}],"resource":{"type":"mana","name":"Mana / Static","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/sun-cleric.json b/src/game/generated/coaAbilities/sun-cleric.json new file mode 100644 index 00000000..c9f95a66 --- /dev/null +++ b/src/game/generated/coaAbilities/sun-cleric.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"sun-cleric","abilities":[{"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}]}]}],"resource":{"type":"mana","name":"Solar Mana","color":"#dcae35","maximum":100,"initial":100,"regenerationPerSecond":4},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/templar.json b/src/game/generated/coaAbilities/templar.json new file mode 100644 index 00000000..543de3e6 --- /dev/null +++ b/src/game/generated/coaAbilities/templar.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"templar","abilities":[{"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}]}]}],"resource":{"type":"energy","name":"Energy / Holy Runes","color":"#00d989","maximum":100,"initial":100,"regenerationPerSecond":10},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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/coaAbilities/tinker.json b/src/game/generated/coaAbilities/tinker.json new file mode 100644 index 00000000..6846bc2e --- /dev/null +++ b/src/game/generated/coaAbilities/tinker.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"tinker","abilities":[{"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}]}]}],"resource":{"type":"energy","name":"Energy / Ammunition","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/venomancer.json b/src/game/generated/coaAbilities/venomancer.json new file mode 100644 index 00000000..ee657d99 --- /dev/null +++ b/src/game/generated/coaAbilities/venomancer.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"venomancer","abilities":[{"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}]}]}],"resource":{"type":"mana","name":"Venom","color":"#65a43a","maximum":100,"initial":100,"regenerationPerSecond":4},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/witch-doctor.json b/src/game/generated/coaAbilities/witch-doctor.json new file mode 100644 index 00000000..f3b38845 --- /dev/null +++ b/src/game/generated/coaAbilities/witch-doctor.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"witch-doctor","abilities":[{"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}]}]}],"resource":{"type":"mana","name":"Mana","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/coaAbilities/witch-hunter.json b/src/game/generated/coaAbilities/witch-hunter.json new file mode 100644 index 00000000..05ebed70 --- /dev/null +++ b/src/game/generated/coaAbilities/witch-hunter.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"witch-hunter","abilities":[{"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}]}]}],"resource":{"type":"rage","name":"Rage","color":"#b74439","maximum":100,"initial":0,"regenerationPerSecond":5},"triggeredAbilitiesBySpellId":{"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"}}} diff --git a/src/game/generated/dungeonCampaignCatalog.compressed.ts b/src/game/generated/dungeonCampaignCatalog.compressed.ts index 38d9e261..085c7ef2 100644 --- a/src/game/generated/dungeonCampaignCatalog.compressed.ts +++ b/src/game/generated/dungeonCampaignCatalog.compressed.ts @@ -1,2 +1,2 @@ // Generated by npm run dungeon:catalog. Do not edit. -export default "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63ePr/K6bl781DRvr1fXjzePt/7e/s/Nj6/+++bHb/JbF0tx9v/b9tU/bE72X2vHCgOukPHH1XXz57f5bis4P6/zo0tm73v+4b72P/28CRe5m7a9qd7dPv7yn3l9k+8e/S/+tffj65fXd/frN/n2evuFn/5127xvbv+U71411y9/UFtZ+LH7ov/w9NmtMum9geBI7P3x1836/qba/fGnf+39cQsro6k/vm/zo7+0ddPmd7eP+7/3/KXz+3xzm8ub25tu9e0/b5trf92bh2eV9tfr2/tq+9/D03h83XTK9d/fNncvfr5f39ZXzZ/fNnUnQv4mvnvzJq/97//TzavXj1ePr9f37169vur/mdVV3bTNVnKau+r+3d1js75a3z88NuvVVb6rr1wktvK3fvzFhfJ94zJ7e5/rm7tXf2geHrLjc/3HdfM2r2/uXu2tUBT+y+/uqtd5/djUf79u8vZS+J+7n10NNlbm6qdX6/t3d47Z/xN8/pVer67b+1edBry/vV93DzIw+CndNXntl+7quvX/EE+kBft1dZ3flP42/ptvf++jqSmtQj/uu8fm7qE7BZ//8evq+nXz5ubh7etm3Tx97OGnX36/+2S0pFmuV9ebL/j08xBDGZrhX1R25Xuzbio/k3w7/iYV11WnN3ufg9X1fds+NI/XL38AXGFYvYg//uqC99isb/LtQ/cX3j3ev3v8Y358bNZ3nbL6P7+D//f6x9X2iYO81WjlbXNX7/8mdr/ZPej9Yq5deN43+7/L3e/unj39+q/be/iv1z/f1I+vr18yBYdvs0XyG+2tf+ju1fVLj49U93eP9+86LXv9B+QrDHL1e9MrALsCxivkeIXBriDC1fdEfBXhioNeAfrh/4HsCild/R5CugKjK4h4hWpXyKH72PfEfJX0ilK8irHTdtf54aF57NB6f/PwLt92SqV7w7f/Xl23N7fNVh43Pyte3ZYusOvb65fX323+wnev8pvmuzf5Lj883q/ffCeRX7zPt53QxvDd3ger103108M7v6CCCHBq2XLFbelMhqVV3MSMZfQRKlRSE3KVAyM0aKZVm1RTzlVVVYQuZQ83f2lcoi1hxxD26Nrx1W3ze39RffAesTC7xqnub2+31/Vuk08/ehFC2N/r3qMP2PLU53s7T1VldcI2UNk2IhWgRIZKtVVoghqU0VIo2aCJZdm2VaCo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"; +export default "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TZfr94+v87puXv3cNO+uV9ePN4+3/t7+z82Pr/7b5sdv8zsXS3H2/9v29d9vTvafa8cKA66Q8afVdfPv7/LdVnB+WedHl8ze9/zTfe1/+nkTLnI3bXtTvb99/PXf8vom3z36X/xr78fX31/f3a/f5tvr7Rd++tdt86G5/Uu+e91cf/+j2srCT90X/funz26VSe8NBEdi74+/adb3N9Xujz/9a++PW1gZTf3xfZsf/aWtmza/v33c/73nL50/5JvbXN7c3nSrb/9521z76948PKu0v17f3lfb/x6exuObplOu//quuXv1y/36tr5q/v1dU3ci5G/i+7dv89r//j/evH7zePX4Zn3//vWbq/6fWV3VTdtsJae5q+7f3z0266v1/cNjs15d5bv6ykViK3/rx19dKD80LrO397m+uXv9p+bhITs+139eN+/y+ubu9d4KReG//P6uepPXj039d+smby+F/7n72dVgY2Wufn69vn9/55j9X8HnX+n16rq9f91pwPvb+3X3IAODn9Jdk9d+6a6uW/8P8URasN9W1/lt6W/jv/j29z6amtIq9OO+e2zuHrpT8Pkfv62u3zRvbx7evWnWzdPHHn7+9Y+7T0ZLmuV6db35gk8/DzGUoRn+RWVXvjfrpvIzybfjb1JxXXV6s/c5WF3ft+1D83j9/Y+AKwyrV/Gn31zwHpv1Tb596P7C+8f7949/zo+PzfquU1b/+w/wf1//tNo+cZC3Gq28be7q/d/E7je7B71fzLULz4dm/3e5+93ds6df/217D//1+peb+vHN9fdMweHbbJH8RnvnH7p7ff29x0eq+7vH+/edlr3+E/IVBrn6o+kVgF0B4xVyvMJgVxDh6gcivopwxUGvAP3w/0R2hZSu/gghXYHRFUS8QrUr5NB97Adivkp6RSlexdhpu+v88NA8dmh9uHl4n287pdK94dt/r67bm9tmK4+bnxWvb0sX2PXt9ffX323+wnev89vmu7f5Lj883q/ffieRX33It53QxvDd3gerN03188N7v6CCCHBq2XLFbelMhqVV3MSMZfQRKlRSE3KVAyM0aKZVm1RTzlVVVYQuZQ83/9G4RFvCjiHs0bXj69vmj/6i+uA9YmF2jVPd395ur+vdJp9+9CqEsL/XvUcfseWpz/d2nqrK6oRtoLJtRCpAiQyVaqvQBDUoo6VQskETy7Jt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"; diff --git a/src/game/generated/dungeonCampaignCatalog.json b/src/game/generated/dungeonCampaignCatalog.json index d124ba0e..6695f354 100644 --- a/src/game/generated/dungeonCampaignCatalog.json +++ b/src/game/generated/dungeonCampaignCatalog.json @@ -1 +1 @@ -{"schemaVersion":1,"source":{"campaignManifest":"dungeon-pipeline/dungeon-campaign.json","environmentPackages":["src/game/generated/fivePlayerDungeonImports.json","src/game/generated/manastormAssetPackages.json (temporary fallback)"],"encounterCatalog":"src/game/generated/manastormRuntimeCatalog.json","azerothCoreCommit":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","azerothCoreSourceLock":"src/game/generated/azerothCoreSourceLock.json","spellCatalog":{"ascension":"../LadiksMPQEditor/client-current/area-52/patch-D/DBFilesClient/Spell.dbc","epoch":"../HealerMan-Storage/pipeline-work/dungeons/epoch-client/DBFilesClient/Spell.dbc"}},"coverage":[{"dungeonId":"shadowfang-keep","mapId":33,"encounters":7,"entities":31,"staticSpawns":109,"roamingPacks":24,"source":"azerothcore"},{"dungeonId":"stormwind-stockade","mapId":34,"encounters":5,"entities":11,"staticSpawns":93,"roamingPacks":0,"source":"azerothcore"},{"dungeonId":"deadmines","mapId":36,"encounters":7,"entities":22,"staticSpawns":179,"roamingPacks":23,"source":"azerothcore"},{"dungeonId":"wailing-caverns","mapId":43,"encounters":8,"entities":20,"staticSpawns":252,"roamingPacks":7,"source":"azerothcore"},{"dungeonId":"razorfen-kraul","mapId":47,"encounters":7,"entities":38,"staticSpawns":179,"roamingPacks":12,"source":"azerothcore"},{"dungeonId":"blackfathom-deeps","mapId":48,"encounters":6,"entities":27,"staticSpawns":201,"roamingPacks":10,"source":"azerothcore"},{"dungeonId":"uldaman","mapId":70,"encounters":7,"entities":38,"staticSpawns":302,"roamingPacks":12,"source":"azerothcore"},{"dungeonId":"gnomeregan","mapId":90,"encounters":4,"entities":31,"staticSpawns":371,"roamingPacks":31,"source":"azerothcore"},{"dungeonId":"sunken-temple","mapId":109,"encounters":4,"entities":33,"staticSpawns":245,"roamingPacks":4,"source":"azerothcore"},{"dungeonId":"razorfen-downs","mapId":129,"encounters":6,"entities":25,"staticSpawns":194,"roamingPacks":13,"source":"azerothcore"},{"dungeonId":"scarlet-monastery","mapId":189,"encounters":5,"entities":37,"staticSpawns":310,"roamingPacks":16,"source":"azerothcore"},{"dungeonId":"zulfarrak","mapId":209,"encounters":5,"entities":21,"staticSpawns":252,"roamingPacks":14,"source":"azerothcore"},{"dungeonId":"blackrock-spire","mapId":229,"encounters":15,"entities":78,"staticSpawns":566,"roamingPacks":22,"source":"azerothcore"},{"dungeonId":"blackrock-depths","mapId":230,"encounters":13,"entities":61,"staticSpawns":1040,"roamingPacks":15,"source":"azerothcore"},{"dungeonId":"scholomance","mapId":289,"encounters":8,"entities":38,"staticSpawns":326,"roamingPacks":16,"source":"azerothcore"},{"dungeonId":"stratholme","mapId":329,"encounters":9,"entities":50,"staticSpawns":431,"roamingPacks":29,"source":"azerothcore"},{"dungeonId":"maraudon","mapId":349,"encounters":8,"entities":33,"staticSpawns":525,"roamingPacks":20,"source":"azerothcore"},{"dungeonId":"ragefire-chasm","mapId":389,"encounters":4,"entities":11,"staticSpawns":127,"roamingPacks":4,"source":"azerothcore"},{"dungeonId":"dire-maul","mapId":429,"encounters":12,"entities":75,"staticSpawns":756,"roamingPacks":59,"source":"azerothcore"},{"dungeonId":"shattered-halls","mapId":540,"encounters":3,"entities":32,"staticSpawns":198,"roamingPacks":13,"source":"azerothcore"},{"dungeonId":"blood-furnace","mapId":542,"encounters":3,"entities":17,"staticSpawns":139,"roamingPacks":13,"source":"azerothcore"},{"dungeonId":"hellfire-ramparts","mapId":543,"encounters":2,"entities":12,"staticSpawns":85,"roamingPacks":12,"source":"azerothcore"},{"dungeonId":"steamvault","mapId":545,"encounters":3,"entities":17,"staticSpawns":127,"roamingPacks":17,"source":"azerothcore"},{"dungeonId":"underbog","mapId":546,"encounters":4,"entities":22,"staticSpawns":161,"roamingPacks":23,"source":"azerothcore"},{"dungeonId":"slave-pens","mapId":547,"encounters":3,"entities":21,"staticSpawns":122,"roamingPacks":32,"source":"azerothcore"},{"dungeonId":"arcatraz","mapId":552,"encounters":4,"entities":29,"staticSpawns":85,"roamingPacks":9,"source":"azerothcore"},{"dungeonId":"botanica","mapId":553,"encounters":5,"entities":29,"staticSpawns":169,"roamingPacks":15,"source":"azerothcore"},{"dungeonId":"mechanar","mapId":554,"encounters":3,"entities":17,"staticSpawns":84,"roamingPacks":14,"source":"azerothcore"},{"dungeonId":"shadow-labyrinth","mapId":555,"encounters":4,"entities":22,"staticSpawns":189,"roamingPacks":13,"source":"azerothcore"},{"dungeonId":"sethekk-halls","mapId":556,"encounters":2,"entities":16,"staticSpawns":104,"roamingPacks":24,"source":"azerothcore"},{"dungeonId":"mana-tombs","mapId":557,"encounters":3,"entities":14,"staticSpawns":119,"roamingPacks":15,"source":"azerothcore"},{"dungeonId":"auchenai-crypts","mapId":558,"encounters":2,"entities":14,"staticSpawns":93,"roamingPacks":37,"source":"azerothcore"},{"dungeonId":"magisters-terrace","mapId":585,"encounters":3,"entities":18,"staticSpawns":145,"roamingPacks":8,"source":"azerothcore"},{"dungeonId":"black-morass","mapId":269,"encounters":3,"entities":7,"staticSpawns":137,"roamingPacks":4,"source":"azerothcore"},{"dungeonId":"escape-from-durnholde","mapId":560,"encounters":3,"entities":29,"staticSpawns":379,"roamingPacks":38,"source":"azerothcore"},{"dungeonId":"utgarde-keep","mapId":574,"encounters":3,"entities":22,"staticSpawns":112,"roamingPacks":17,"source":"azerothcore"},{"dungeonId":"utgarde-pinnacle","mapId":575,"encounters":4,"entities":17,"staticSpawns":84,"roamingPacks":4,"source":"azerothcore"},{"dungeonId":"the-nexus","mapId":576,"encounters":6,"entities":26,"staticSpawns":234,"roamingPacks":14,"source":"azerothcore"},{"dungeonId":"the-oculus","mapId":578,"encounters":4,"entities":12,"staticSpawns":112,"roamingPacks":2,"source":"azerothcore"},{"dungeonId":"culling-of-stratholme","mapId":595,"encounters":4,"entities":20,"staticSpawns":213,"roamingPacks":0,"source":"azerothcore"},{"dungeonId":"halls-of-stone","mapId":599,"encounters":4,"entities":17,"staticSpawns":77,"roamingPacks":23,"source":"azerothcore"},{"dungeonId":"draktharon-keep","mapId":600,"encounters":4,"entities":22,"staticSpawns":99,"roamingPacks":16,"source":"azerothcore"},{"dungeonId":"azjol-nerub","mapId":601,"encounters":3,"entities":13,"staticSpawns":70,"roamingPacks":2,"source":"azerothcore"},{"dungeonId":"halls-of-lightning","mapId":602,"encounters":4,"entities":20,"staticSpawns":112,"roamingPacks":21,"source":"azerothcore"},{"dungeonId":"gundrak","mapId":604,"encounters":5,"entities":20,"staticSpawns":87,"roamingPacks":10,"source":"azerothcore"},{"dungeonId":"violet-hold","mapId":608,"encounters":3,"entities":5,"staticSpawns":9,"roamingPacks":0,"source":"azerothcore"},{"dungeonId":"ahnkahet-old-kingdom","mapId":619,"encounters":5,"entities":24,"staticSpawns":133,"roamingPacks":15,"source":"azerothcore"},{"dungeonId":"forge-of-souls","mapId":632,"encounters":2,"entities":13,"staticSpawns":41,"roamingPacks":8,"source":"azerothcore"},{"dungeonId":"trial-of-the-champion","mapId":650,"encounters":5,"entities":5,"staticSpawns":5,"roamingPacks":0,"source":"azerothcore"},{"dungeonId":"pit-of-saron","mapId":658,"encounters":3,"entities":30,"staticSpawns":168,"roamingPacks":12,"source":"azerothcore"},{"dungeonId":"halls-of-reflection","mapId":668,"encounters":2,"entities":10,"staticSpawns":13,"roamingPacks":0,"source":"azerothcore"},{"dungeonId":"tinkertech-showdown","mapId":821,"encounters":1,"entities":4,"staticSpawns":16,"roamingPacks":0,"source":"procedural-fallback"},{"dungeonId":"frozen-reach","mapId":908,"encounters":1,"entities":4,"staticSpawns":16,"roamingPacks":0,"source":"procedural-fallback"},{"dungeonId":"forgotten-mine","mapId":1781,"encounters":1,"entities":4,"staticSpawns":16,"roamingPacks":0,"source":"procedural-fallback"}],"definitions":[{"schemaVersion":1,"id":"shadowfang-keep","title":"Shadowfang Keep","mapId":33,"lfgDungeonIds":[8],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[18,30]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Shadowfang Keep","theme":"Instanced dungeon","summary":"Fight through Shadowfang Keep, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Shadowfang Keep...","unchartedAreaName":"Uncharted Shadowfang Keep","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":260},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/33-shadowfang/visual.glb","checksum":"5cb097035ac29008986d20bc738ff0c524471ef1efe8e30afb7e0996b53168a4","size":966008,"triangleCount":16399}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/33-shadowfang/collision.glb","checksum":"3a40b224d97f6a59750c2ff7cedf133a1b5ac4a34e7dff60f0f907caf1e3ec5e","size":257896,"triangleCount":16345}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/33-shadowfang/navigation.glb","checksum":"855cc0bc41e2d7b93300abbad7ca95bfc4577034c05318dc749b96c1b2a882e0","size":42776,"triangleCount":2840}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-235.8601,-0.8691,-74.1393],"max":[79.4978,119.9235,248.2807]},"entrance":{"name":"Shadowfang Keep Entrance","footPosition":[-38.4792,21.0213,-15.9093],"forward":[-0.5008438775564547,0,0.8655376423438874],"yaw":-0.5245734758744819},"areas":[{"id":"entrance","name":"Shadowfang Keep Entrance","center":[-38.4792,21.0213,-15.9093],"radius":35},{"id":"area-rethilgore","name":"Rethilgore's Encounter","center":[-15.5232,25.311,-1.9793],"radius":42},{"id":"area-baron-silverlaine","name":"Baron Silverlaine's Encounter","center":[7.7278,20.368,172.2607],"radius":42},{"id":"area-commander-springvale","name":"Commander Springvale's Encounter","center":[-45.0222,46.9705,134.3507],"radius":42},{"id":"area-odo-the-blindwatcher","name":"Odo the Blindwatcher's Encounter","center":[-30.9062,44.2435,20.9907],"radius":42},{"id":"area-fenrus-the-devourer","name":"Fenrus the Devourer's Encounter","center":[-132.0052,72.9105,43.5707],"radius":42},{"id":"area-wolf-master-nandos","name":"Wolf Master Nandos's Encounter","center":[-146.8892,99.8935,36.9407],"radius":42},{"id":"area-archmage-arugal","name":"Archmage Arugal's Encounter","center":[-190.8601,99.9235,27.3207],"radius":42}],"entities":{"entry-3861":{"id":"entry-3861","kind":"mob","name":"Bleak Worg","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7127","name":"Wavering Will","spellId":7127,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4280,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-801-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.9405,"markerRadius":1.28}}},"entry-3851":{"id":"entry-3851","kind":"mob","name":"Shadowfang Whitescalp","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12544","name":"Frost Armor","spellId":12544,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7673,"markerRadius":0.676}}},"entry-3927":{"id":"entry-3927","kind":"boss","name":"Wolf Master Nandos","title":"Dungeon Boss","hasLoot":true,"combat":{"level":21,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5929,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-11179-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.0608,"markerRadius":1.0139}}},"entry-3863":{"id":"entry-3863","kind":"mob","name":"Lupine Horror","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2446-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2212,"markerRadius":1.5058}}},"entry-3862":{"id":"entry-3862","kind":"mob","name":"Slavering Worg","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-11421-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.944,"markerRadius":1.2074}}},"entry-5058":{"id":"entry-5058","kind":"mob","name":"Wolfguard Worg","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-246-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2253,"markerRadius":1.4205}}},"entry-3914":{"id":"entry-3914","kind":"boss","name":"Rethilgore","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7295","name":"Soul Drain","spellId":7295,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5536,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-524-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.1299,"markerRadius":0.7773}}},"entry-3859":{"id":"entry-3859","kind":"mob","name":"Shadowfang Ragetooth","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7072","name":"Wild Rage","spellId":7072,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6528,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-736-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.1299,"markerRadius":0.7773}}},"entry-2529":{"id":"entry-2529","kind":"mob","name":"Son of Arugal","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7124","name":"Arugal's Gift","spellId":7124,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5201,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-1098-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.9255,"markerRadius":0.9801}}},"entry-3886":{"id":"entry-3886","kind":"mob","name":"Razorclaw the Butcher","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3200,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-524-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.1299,"markerRadius":0.7773}}},"entry-3887":{"id":"entry-3887","kind":"boss","name":"Baron Silverlaine","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7068","name":"Veil of Shadow","spellId":7068,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5742,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3222-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-4275":{"id":"entry-4275","kind":"boss","name":"Archmage Arugal","title":"Dungeon Boss","hasLoot":true,"combat":{"level":21,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22709","name":"Void Bolt","spellId":22709,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6870,"damageMultiplier":1.35},{"id":"spell-7803","name":"Thundershock","spellId":7803,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6870,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2353-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-4278":{"id":"entry-4278","kind":"boss","name":"Commander Springvale","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5588","name":"Hammer of Justice","spellId":5588,"delivery":"projectile","target":"random-party","school":"holy","animation":"cast","range":28,"cooldownMs":5606,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":2500}},{"id":"spell-1026","name":"Holy Light","spellId":1026,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5606,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-33581","name":"Divine Shield","spellId":33581,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":5606,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-33581","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3223-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4279":{"id":"entry-4279","kind":"boss","name":"Odo the Blindwatcher","title":"Dungeon Boss","hasLoot":true,"combat":{"level":21,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7756,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-522-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5194,"markerRadius":0.8787}}},"entry-3868":{"id":"entry-3868","kind":"mob","name":"Blood Seeker","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7140","name":"Expose Weakness","spellId":7140,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5776,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/d1808c723ce299735a6e04353e27ea6350abc507068bc4737393e3d16145bac6.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.17,"markerRadius":2.1069}}},"entry-3866":{"id":"entry-3866","kind":"mob","name":"Vile Bat","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5072,"damageMultiplier":1.12},{"id":"spell-7145","name":"Diving Sweep","spellId":7145,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5072,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-8808-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":0.8967,"markerRadius":1.4046}}},"entry-4444":{"id":"entry-4444","kind":"mob","name":"Deathstalker Vincent","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2689-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-3849":{"id":"entry-3849","kind":"mob","name":"Deathstalker Adamant","combat":{"level":18,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2006-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-3850":{"id":"entry-3850","kind":"mob","name":"Sorcerer Ashcrombe","combat":{"level":18,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2005-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3853":{"id":"entry-3853","kind":"mob","name":"Shadowfang Moonwalker","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7121","name":"Anti-Magic Shield","spellId":7121,"delivery":"area","target":"self","school":"shadow","animation":"cast","range":0,"cooldownMs":5870,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-7121","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7673,"markerRadius":0.676}}},"entry-3875":{"id":"entry-3875","kind":"mob","name":"Haunted Servitor","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7057","name":"Haunting Spirits","spellId":7057,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6502,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3229-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3857":{"id":"entry-3857","kind":"mob","name":"Shadowfang Glutton","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7122","name":"Blood Tap","spellId":7122,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6156,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-202-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7673,"markerRadius":0.676}}},"entry-3877":{"id":"entry-3877","kind":"mob","name":"Wailing Guardsman","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3226-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3855":{"id":"entry-3855","kind":"mob","name":"Shadowfang Darksoul","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8140","name":"Befuddlement","spellId":8140,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5432,"damageMultiplier":1.12},{"id":"spell-970","name":"Shadow Word: Pain","spellId":970,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5432,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-657-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.4047,"markerRadius":0.65}}},"entry-3864":{"id":"entry-3864","kind":"mob","name":"Fel Steed","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-1951-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":3.3237,"markerRadius":1.4617}}},"entry-3873":{"id":"entry-3873","kind":"mob","name":"Tormented Officer","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3225-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4274":{"id":"entry-4274","kind":"boss","name":"Fenrus the Devourer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":21,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7125","name":"Toxic Saliva","spellId":7125,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6963,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-20180-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2003,"markerRadius":2.8409}}},"entry-3854":{"id":"entry-3854","kind":"mob","name":"Shadowfang Wolfguard","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7106","name":"Dark Restore","spellId":7106,"delivery":"projectile","target":"lowest-health-friendly","school":"shadow","animation":"cast","range":28,"cooldownMs":4217,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-203-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7673,"markerRadius":0.676}}},"entry-3872":{"id":"entry-3872","kind":"mob","name":"Deathsworn Captain","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-40505","name":"Cleave","spellId":40505,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4715,"damageMultiplier":0.62,"radius":8},{"id":"spell-2457","name":"Battle Stance","spellId":2457,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4715,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3224-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10000":{"id":"entry-10000","kind":"mob","name":"Arugal","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2353-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-14682":{"id":"entry-14682","kind":"mob","name":"Sever","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17745","name":"Diseased Spit","spellId":17745,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7174,"damageMultiplier":1.12},{"id":"spell-16508","name":"Intimidating Roar","spellId":16508,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":7174,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-1061-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":3.9287,"markerRadius":1.7317}}}},"staticSpawns":[{"id":"creature-2114","entityId":"entry-3861","position":[-54.7222,21.1088,-22.2793],"yaw":-6.00393,"spawnMask":1},{"id":"creature-3478","entityId":"entry-3861","position":[-30.9912,31.216,-6.5593],"yaw":-6.00393,"spawnMask":1},{"id":"creature-3479","entityId":"entry-3851","position":[-62.2362,25.2694,-7.9393],"yaw":-1.0472,"spawnMask":1},{"id":"creature-3480","entityId":"entry-3851","position":[-20.9092,25.3944,11.1907],"yaw":-2.32129,"spawnMask":1},{"id":"creature-3481","entityId":"entry-3861","position":[-76.6112,25.7165,0.7107],"yaw":-0.418879,"spawnMask":1},{"id":"creature-3482","entityId":"entry-3851","position":[-73.0252,25.7155,8.4107],"yaw":-6.03884,"spawnMask":1},{"id":"creature-3483","entityId":"entry-3851","position":[-20.7872,31.2274,-10.0193],"yaw":-2.79253,"spawnMask":1},{"id":"creature-11514","entityId":"entry-3851","position":[-61.2502,30.7154,5.2407],"yaw":-5.88176,"spawnMask":1},{"id":"creature-13352","entityId":"entry-3861","position":[-12.3242,25.3944,4.8007],"yaw":-1.74533,"spawnMask":1},{"id":"creature-13353","entityId":"entry-3861","position":[-8.8572,25.3944,-3.7193],"yaw":-1.50098,"spawnMask":1},{"id":"creature-16237","entityId":"entry-3927","position":[-146.8892,99.8935,36.9407],"yaw":-2.67035,"spawnMask":1},{"id":"creature-16238","entityId":"entry-3863","position":[-148.9112,99.8935,48.3307],"yaw":-3.35103,"spawnMask":1},{"id":"creature-16239","entityId":"entry-3861","position":[-139.9842,99.8935,28.1907],"yaw":-2.16421,"spawnMask":1},{"id":"creature-16240","entityId":"entry-3862","position":[-128.2072,99.8935,57.8207],"yaw":-5.09636,"spawnMask":1},{"id":"creature-16241","entityId":"entry-5058","position":[-118.4012,99.8935,38.0907],"yaw":-0.10472,"spawnMask":1},{"id":"creature-16242","entityId":"entry-3914","position":[-15.5232,25.311,-1.9793],"yaw":-0.919918,"spawnMask":1},{"id":"creature-16244","entityId":"entry-3859","position":[-86.3322,57.6315,64.5007],"yaw":-5.90112,"spawnMask":1},{"id":"creature-16246","entityId":"entry-2529","position":[-160.0982,45.7345,28.3807],"yaw":-4.31096,"spawnMask":1},{"id":"creature-16247","entityId":"entry-3863","position":[-156.1932,45.7345,41.4307],"yaw":-0.244346,"spawnMask":1},{"id":"creature-16248","entityId":"entry-2529","position":[-133.4732,38.2568,38.7407],"yaw":-6.17846,"spawnMask":1},{"id":"creature-16250","entityId":"entry-3863","position":[-146.8582,57.3465,57.9307],"yaw":-4.13643,"spawnMask":1},{"id":"creature-16252","entityId":"entry-3863","position":[-137.8822,38.26,51.1807],"yaw":-2.54818,"spawnMask":1},{"id":"creature-16253","entityId":"entry-3886","position":[-65.0182,20.4161,132.8707],"yaw":-3.97935,"spawnMask":1},{"id":"creature-16254","entityId":"entry-3887","position":[7.7278,20.368,172.2607],"yaw":-5.89921,"spawnMask":1},{"id":"creature-16255","entityId":"entry-4275","position":[-190.8601,99.9235,27.3207],"yaw":-2.49582,"spawnMask":1},{"id":"creature-16256","entityId":"entry-4278","position":[-45.0222,46.9705,134.3507],"yaw":-3.47321,"spawnMask":1},{"id":"creature-16257","entityId":"entry-4279","position":[-30.9062,44.2435,20.9907],"yaw":-4.46804,"spawnMask":1},{"id":"creature-16258","entityId":"entry-3868","position":[-18.8262,44.2435,-2.2293],"yaw":-1.58825,"spawnMask":1},{"id":"creature-16259","entityId":"entry-3866","position":[-24.4402,44.2435,1.8407],"yaw":-6.07375,"spawnMask":1},{"id":"creature-16260","entityId":"entry-4444","position":[-49.6232,25.2642,25.6807],"yaw":-2.79253,"spawnMask":1},{"id":"creature-16261","entityId":"entry-3849","position":[-23.9022,25.3944,-11.3693],"yaw":-2.86234,"spawnMask":1},{"id":"creature-16262","entityId":"entry-3850","position":[-26.7102,25.3944,-2.5393],"yaw":-2.47837,"spawnMask":1},{"id":"creature-16263","entityId":"entry-3853","position":[-72.1392,23.9784,78.0407],"yaw":-4.43314,"spawnMask":1},{"id":"creature-16264","entityId":"entry-3853","position":[-66.7542,23.9794,65.9207],"yaw":-3.28122,"spawnMask":1},{"id":"creature-16266","entityId":"entry-3853","position":[-58.2452,23.981,117.2607],"yaw":-5.86431,"spawnMask":1},{"id":"creature-16267","entityId":"entry-3862","position":[-46.7942,25.3421,28.4407],"yaw":-4.72984,"spawnMask":1},{"id":"creature-16269","entityId":"entry-3853","position":[-37.4622,25.3671,33.6207],"yaw":-0.191986,"spawnMask":1},{"id":"creature-16270","entityId":"entry-3853","position":[-90.4542,24.228,87.4307],"yaw":-1.50098,"spawnMask":1},{"id":"creature-16271","entityId":"entry-3853","position":[-44.2272,23.9767,77.6207],"yaw":-1.46608,"spawnMask":1},{"id":"creature-16272","entityId":"entry-3853","position":[-68.4702,23.9726,95.8807],"yaw":-6.26573,"spawnMask":1},{"id":"creature-16278","entityId":"entry-3875","position":[-74.8272,20.4161,124.7907],"yaw":-3.19395,"spawnMask":1},{"id":"creature-16279","entityId":"entry-3875","position":[-85.5182,20.4561,106.7007],"yaw":-1.71042,"spawnMask":1},{"id":"creature-16280","entityId":"entry-3875","position":[-74.4802,20.4161,132.2107],"yaw":-4.95674,"spawnMask":1},{"id":"creature-16281","entityId":"entry-3875","position":[-88.5312,20.4561,111.4007],"yaw":-0.541052,"spawnMask":1},{"id":"creature-16282","entityId":"entry-3875","position":[-6.1282,19.2141,162.5507],"yaw":-5.3058,"spawnMask":1},{"id":"creature-16283","entityId":"entry-3875","position":[-27.7022,19.2142,164.1607],"yaw":-0.715585,"spawnMask":1},{"id":"creature-16284","entityId":"entry-3857","position":[-31.7872,19.2142,151.6907],"yaw":-3.45575,"spawnMask":1},{"id":"creature-16285","entityId":"entry-3857","position":[-16.2012,19.2141,169.8307],"yaw":-1.88496,"spawnMask":1},{"id":"creature-16286","entityId":"entry-3875","position":[-38.2082,19.2142,147.4607],"yaw":-0.977384,"spawnMask":1},{"id":"creature-16289","entityId":"entry-3857","position":[-22.2502,19.2141,155.4307],"yaw":-0.139626,"spawnMask":1},{"id":"creature-16290","entityId":"entry-3875","position":[-13.1902,19.2141,158.1907],"yaw":-4.2586,"spawnMask":1},{"id":"creature-16291","entityId":"entry-3875","position":[-37.0112,19.2142,159.8007],"yaw":-1.44862,"spawnMask":1},{"id":"creature-16292","entityId":"entry-3875","position":[-5.4752,19.6023,171.7507],"yaw":-2.87979,"spawnMask":1},{"id":"creature-16293","entityId":"entry-3877","position":[-45.8392,46.9725,127.0107],"yaw":-4.2237,"spawnMask":1},{"id":"creature-16294","entityId":"entry-3877","position":[-25.9592,45.1085,130.9807],"yaw":-6.0912,"spawnMask":1},{"id":"creature-16295","entityId":"entry-3875","position":[-10.6322,45.1075,124.5007],"yaw":-1.50098,"spawnMask":1},{"id":"creature-16296","entityId":"entry-3877","position":[-17.1082,45.1115,112.8607],"yaw":-1.58825,"spawnMask":1},{"id":"creature-16297","entityId":"entry-3877","position":[-7.6962,45.1085,117.4707],"yaw":-3.03687,"spawnMask":1},{"id":"creature-16298","entityId":"entry-3877","position":[-35.3882,46.0165,125.5007],"yaw":-6.23082,"spawnMask":1},{"id":"creature-16299","entityId":"entry-3875","position":[-37.7652,46.9715,136.5507],"yaw":-2.46091,"spawnMask":1},{"id":"creature-16300","entityId":"entry-3875","position":[-20.3932,45.1085,122.4407],"yaw":-3.66519,"spawnMask":1},{"id":"creature-16313","entityId":"entry-3875","position":[-17.5352,45.1035,137.6807],"yaw":-2.04204,"spawnMask":1},{"id":"creature-16314","entityId":"entry-3855","position":[-0.8062,40.0813,189.5507],"yaw":-0.488692,"spawnMask":1},{"id":"creature-16318","entityId":"entry-3855","position":[-9.4972,41.0369,194.7007],"yaw":-6.23082,"spawnMask":1},{"id":"creature-16319","entityId":"entry-3855","position":[10.1788,40.0813,197.0107],"yaw":-3.49066,"spawnMask":1},{"id":"creature-16343","entityId":"entry-3855","position":[16.7428,40.0813,152.0907],"yaw":-0.314159,"spawnMask":1},{"id":"creature-16436","entityId":"entry-3855","position":[31.3898,37.2416,170.7107],"yaw":-0.296706,"spawnMask":1},{"id":"creature-16438","entityId":"entry-3855","position":[5.7798,40.0813,148.0407],"yaw":-2.04204,"spawnMask":1},{"id":"creature-16439","entityId":"entry-3855","position":[-16.2572,40.0813,182.3707],"yaw":-3.89208,"spawnMask":1},{"id":"creature-16440","entityId":"entry-3864","position":[-33.4832,23.9934,111.1707],"yaw":-0.296706,"spawnMask":1},{"id":"creature-16441","entityId":"entry-3864","position":[-44.0022,23.9898,120.6307],"yaw":-5.13127,"spawnMask":1},{"id":"creature-16442","entityId":"entry-3864","position":[-50.4792,23.9894,122.0407],"yaw":-4.88692,"spawnMask":1},{"id":"creature-16443","entityId":"entry-3873","position":[-61.7922,41.5214,-19.8393],"yaw":-1.07407,"spawnMask":1},{"id":"creature-16444","entityId":"entry-3877","position":[-19.1102,38.0624,58.5407],"yaw":-4.4644,"spawnMask":1},{"id":"creature-16449","entityId":"entry-3877","position":[-16.4582,38.1515,50.4407],"yaw":-1.61463,"spawnMask":1},{"id":"creature-18183","entityId":"entry-3873","position":[-80.9162,41.5214,12.1507],"yaw":-4.28856,"spawnMask":1},{"id":"creature-18189","entityId":"entry-3873","position":[-75.6252,41.6048,4.0207],"yaw":-1.29655,"spawnMask":1},{"id":"creature-18241","entityId":"entry-3873","position":[-72.7702,41.6048,-4.9093],"yaw":-1.11768,"spawnMask":1},{"id":"creature-18304","entityId":"entry-3861","position":[-63.1332,30.7147,14.0607],"yaw":-1.42291,"spawnMask":1},{"id":"creature-18308","entityId":"entry-3851","position":[-60.3702,21.1088,-22.9293],"yaw":-1.88094,"spawnMask":1},{"id":"creature-18312","entityId":"entry-3861","position":[-70.2982,25.2716,-13.9293],"yaw":-5.9909,"spawnMask":1},{"id":"creature-18313","entityId":"entry-3851","position":[-24.5752,31.2277,3.9407],"yaw":-1.45932,"spawnMask":1},{"id":"creature-18401","entityId":"entry-3863","position":[-139.5502,57.3465,61.6807],"yaw":-2.67035,"spawnMask":1},{"id":"creature-18403","entityId":"entry-3859","position":[-124.1622,38.2562,37.6107],"yaw":-0.069813,"spawnMask":1},{"id":"creature-18431","entityId":"entry-3859","position":[-97.9282,38.1776,46.6107],"yaw":-5.93232,"spawnMask":1},{"id":"creature-18690","entityId":"entry-3863","position":[-116.7072,44.091,57.0807],"yaw":-1.01229,"spawnMask":1},{"id":"creature-18691","entityId":"entry-2529","position":[-172.7617,89.1355,25.2807],"yaw":-3.07178,"spawnMask":1},{"id":"creature-18692","entityId":"entry-3859","position":[-118.5132,44.091,49.2507],"yaw":-2.86234,"spawnMask":1},{"id":"creature-18693","entityId":"entry-3863","position":[-149.5052,45.7345,27.0907],"yaw":-5.72468,"spawnMask":1},{"id":"creature-18694","entityId":"entry-2529","position":[-160.7542,89.1355,8.1107],"yaw":-2.70526,"spawnMask":1},{"id":"creature-18695","entityId":"entry-2529","position":[-177.427,89.1355,6.3207],"yaw":-6.26573,"spawnMask":1},{"id":"creature-18697","entityId":"entry-3862","position":[-75.1762,23.9746,97.8607],"yaw":-2.94961,"spawnMask":1},{"id":"creature-18698","entityId":"entry-3853","position":[-60.5152,23.9798,36.9207],"yaw":-0.623848,"spawnMask":1},{"id":"creature-18699","entityId":"entry-3862","position":[-97.6802,30.4907,119.1307],"yaw":-3.1765,"spawnMask":1},{"id":"creature-18700","entityId":"entry-3853","position":[-108.5922,30.2307,118.4207],"yaw":-0.10472,"spawnMask":1},{"id":"creature-18701","entityId":"entry-3862","position":[-69.0202,23.9786,28.8407],"yaw":-4.46288,"spawnMask":1},{"id":"creature-18702","entityId":"entry-3853","position":[-71.6882,23.9642,37.8607],"yaw":-0.456987,"spawnMask":1},{"id":"creature-18703","entityId":"entry-3862","position":[-35.7482,23.9791,40.8207],"yaw":-2.68061,"spawnMask":1},{"id":"creature-18704","entityId":"entry-3853","position":[-91.4572,30.7213,125.2107],"yaw":-5.11381,"spawnMask":1},{"id":"creature-18705","entityId":"entry-3853","position":[-43.9512,23.9753,84.3607],"yaw":-3.46964,"spawnMask":1},{"id":"creature-18706","entityId":"entry-3853","position":[-98.0892,24.7137,95.5707],"yaw":-0.715585,"spawnMask":1},{"id":"creature-18710","entityId":"entry-2529","position":[-139.5602,56.9095,53.9607],"yaw":-1.74533,"spawnMask":1},{"id":"creature-18711","entityId":"entry-3859","position":[-147.0722,45.7345,35.9307],"yaw":-6.03884,"spawnMask":1},{"id":"creature-18712","entityId":"entry-3862","position":[-63.6022,23.9803,59.0407],"yaw":-4.31299,"spawnMask":1},{"id":"creature-18713","entityId":"entry-3853","position":[-50.4712,23.9747,100.1007],"yaw":-4.5204,"spawnMask":1},{"id":"creature-18714","entityId":"entry-4274","position":[-132.0052,72.9105,43.5707],"yaw":-2.86234,"spawnMask":1},{"id":"creature-45823","entityId":"entry-3855","position":[-72.9702,40.0305,164.6807],"yaw":-2.57587,"spawnMask":1},{"id":"creature-247103","entityId":"entry-10000","position":[-48.6562,25.2315,27.7407],"yaw":-5.09,"spawnMask":1},{"id":"creature-248653","entityId":"entry-14682","position":[-42.4832,38.8914,177.8607],"yaw":-6.02139,"spawnMask":1}],"roamingPacks":[{"id":"patrol-16243","name":"Shadowfang Ragetooth Patrol","speed":1.15,"pathId":162430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-120.1582,51.3525,60.5407],[-114.3222,49.2185,63.0707],[-109.6312,46.3205,52.0607],[-113.7332,49.1215,63.0007],[-125.4782,53.5355,58.2107],[-132.7912,56.8265,55.0807],[-147.5152,56.8265,48.8007],[-156.1792,51.9405,45.9507],[-164.5292,49.0835,42.7607],[-158.4172,45.6515,29.0607],[-140.7002,45.6475,31.3507],[-130.4492,48.7795,35.6007],[-116.7222,53.0505,40.5307],[-97.9102,53.3855,48.0907],[-115.8312,53.2715,41.1607],[-127.3812,49.6975,36.3607],[-140.7322,45.6475,31.2007],[-149.1102,45.6505,31.4807],[-159.8582,45.6505,31.1407],[-164.3252,49.0695,42.5507],[-155.9022,51.9815,45.6107],[-147.3722,56.8265,49.5407],[-129.8892,56.4685,56.2507]],"members":[{"id":"member","entityId":"entry-3859","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16245","name":"Son of Arugal Patrol","speed":1.15,"pathId":162450,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-146.7612,83.4185,42.8507],[-149.0962,84.6025,50.4307],[-148.6332,85.5945,56.6007],[-144.1662,87.4325,66.1107],[-140.0202,88.6035,71.8907],[-135.4202,89.5655,75.0807],[-126.6812,91.1005,77.2107],[-118.0472,92.6055,77.4607],[-111.3582,93.8905,74.6907],[-102.7562,95.5375,68.4007],[-99.5052,96.0385,63.6907],[-95.6142,96.0385,54.3107],[-100.0912,96.0385,63.7907],[-103.8612,95.3235,69.1307],[-107.6892,94.5565,73.0707],[-114.3622,93.2855,76.1707],[-122.8192,91.7845,77.1907],[-130.1462,90.4685,76.5307],[-136.9172,89.1965,73.6307],[-142.2062,87.9385,68.5207],[-146.0952,86.4995,61.1907],[-148.1532,85.1785,53.8807],[-148.2562,83.8975,46.4107],[-143.8462,82.8285,34.4707]],"members":[{"id":"member","entityId":"entry-2529","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16249","name":"Shadowfang Ragetooth Patrol","speed":1.15,"pathId":162490,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-86.1632,41.5216,46.0507],[-86.8502,41.5216,48.1007],[-85.1162,42.1449,53.5507],[-86.8012,41.9699,57.2807],[-90.9772,40.9303,59.1107],[-95.4342,39.8742,57.3607],[-96.7672,38.8839,53.1207],[-95.0962,38.1882,48.1407],[-137.2252,38.1738,33.5607],[-95.0262,38.1878,48.2107],[-96.9062,38.8849,53.1207],[-95.7452,39.6586,56.6707],[-92.5042,40.5816,58.7607],[-88.7592,41.4303,58.7507],[-86.0192,42.1882,55.5307],[-85.3072,42.0758,53.0607],[-87.1192,41.5216,47.9507]],"members":[{"id":"member","entityId":"entry-3859","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16251","name":"Son of Arugal Patrol","speed":1.15,"pathId":162510,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-95.5452,54.7285,58.5607],[-93.5812,55.8885,62.7707],[-90.2692,56.7565,64.6907],[-86.1912,57.6515,64.4707],[-83.1042,58.5295,61.9707],[-82.3212,60.2675,54.4207],[-88.7062,62.0285,50.7807],[-94.9392,63.6215,53.9907],[-95.2292,65.1255,60.1707],[-89.5602,66.8555,64.6807],[-82.8322,68.7855,61.1707],[-82.5262,70.4145,54.1707],[-86.9962,71.6685,50.9907],[-93.0932,73.0745,52.0707],[-97.0122,73.3865,59.4607],[-93.4912,73.2135,52.7907],[-87.2222,71.7375,50.9607],[-82.1482,70.2515,54.4907],[-83.2392,68.4865,62.2507],[-90.4282,66.7335,64.7007],[-95.6922,65.0945,60.0707],[-92.7172,63.0285,52.0807],[-85.8422,61.3605,51.6607],[-81.8472,59.4985,57.9807],[-84.4062,58.0845,63.6107],[-90.5282,56.6955,64.5107],[-95.8302,54.9345,59.5707],[-95.3652,54.0715,55.8607],[-93.2382,53.3865,48.3407],[-95.3302,53.8305,54.4107]],"members":[{"id":"member","entityId":"entry-2529","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16265","name":"Slavering Worg Patrol","speed":1.15,"pathId":162650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-61.8812,23.8957,89.1907],[-69.4122,23.8957,76.8107],[-64.4242,23.8962,66.6307],[-57.4702,23.8963,56.6707],[-57.9792,23.8967,48.9807],[-64.2162,23.877,42.8307],[-63.3582,23.8958,35.0507],[-60.6122,23.8958,31.7107],[-55.1072,23.8958,34.5307],[-43.1172,23.8958,36.4707],[-38.0022,23.8958,41.0907],[-37.3922,23.8962,45.0207],[-40.2722,23.8971,50.6307],[-43.1532,23.8971,59.1407],[-41.5042,23.8942,70.4607],[-43.6392,23.8942,74.4707],[-48.0472,23.8942,77.9407],[-48.5352,23.8942,85.5207],[-50.0172,23.8942,92.0107],[-57.0082,23.8948,91.5407]],"members":[{"id":"member","entityId":"entry-3862","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16268","name":"Slavering Worg Patrol","speed":1.15,"pathId":162680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-53.3362,25.0623,20.8707],[-50.1692,25.2609,28.9207],[-51.8512,23.8964,37.3507],[-52.2482,23.8967,46.5607],[-42.1182,23.8967,45.8207],[-39.2982,23.8956,62.5007],[-46.9652,23.8957,69.9007],[-47.4292,23.8957,79.6407],[-49.9552,23.8943,89.2307],[-64.6532,23.8947,95.5407],[-53.7602,23.8918,102.1207],[-59.4292,23.8932,92.4607],[-48.3952,23.894,83.8507],[-47.8662,23.8955,72.6007],[-40.2102,23.8955,62.1307],[-45.2322,23.8981,50.4207],[-38.5992,23.8981,46.5007],[-44.5452,23.8967,34.7407],[-47.8722,25.2431,28.1707],[-50.8352,25.1029,22.3107]],"members":[{"id":"member","entityId":"entry-3862","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16273","name":"Haunted Servitor Patrol","speed":1.15,"pathId":162730,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-63.7292,23.8958,89.1007],[-76.3712,23.893,90.3007],[-91.0312,23.8804,92.4407],[-90.2082,23.8878,98.2207],[-91.1822,24.1309,90.7007],[-74.0932,23.8926,90.3207],[-64.2532,23.894,89.0107],[-56.7382,23.8944,88.0107],[-48.0162,23.8932,92.7407],[-58.8172,23.8948,90.7507]],"members":[{"id":"member","entityId":"entry-3875","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16274","name":"Haunted Servitor Patrol","speed":1.15,"pathId":162740,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-109.9372,26.9152,102.7407],[-109.9122,28.7211,110.2007],[-106.7242,30.2761,118.4707],[-97.1202,30.5513,128.0207],[-90.9182,31.1551,130.7407],[-84.0682,33.5729,133.7607],[-80.3992,35.2215,136.1007],[-90.6492,31.3451,131.6607],[-98.9912,30.4872,125.7707],[-105.8612,30.2135,117.1607],[-109.6602,28.5235,108.9007],[-109.8342,26.9417,102.9507]],"members":[{"id":"member","entityId":"entry-3875","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16275","name":"Haunted Servitor Patrol","speed":1.15,"pathId":162750,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-45.1952,23.8955,34.4907],[-49.4912,23.8964,51.1907],[-48.3752,23.8964,71.7007],[-72.1362,23.8846,101.4207],[-46.3452,23.8956,69.1607],[-49.5222,23.8964,51.3907],[-45.9202,23.8964,35.6707],[-42.6252,25.1841,24.0207],[-44.5372,25.2846,31.3007]],"members":[{"id":"member","entityId":"entry-3875","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16276","name":"Haunted Servitor Patrol","speed":1.15,"pathId":162760,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-62.5072,23.8952,83.8907],[-53.4852,23.891,101.2307],[-62.3422,23.8938,84.4407],[-62.9392,23.8953,63.1107],[-51.3152,23.8965,46.5107],[-62.7102,23.8951,29.3507],[-53.1472,23.8966,51.9207],[-64.1492,23.8966,66.4307],[-63.1592,23.8966,79.2407]],"members":[{"id":"member","entityId":"entry-3875","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16277","name":"Haunted Servitor Patrol","speed":1.15,"pathId":162770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-104.7972,26.1739,97.0907],[-99.6062,25.0813,93.7007],[-93.1642,24.3811,91.6207],[-101.2732,25.4692,93.3307],[-109.1752,26.4597,100.4507],[-112.2682,28.6516,110.0007],[-106.3562,30.2679,118.1207],[-98.5932,30.4856,125.3907],[-93.5952,30.6056,128.8307],[-100.9662,30.3778,120.3807],[-105.3552,29.8106,113.6607],[-109.2542,28.3172,107.7007],[-106.5742,26.2584,100.8507]],"members":[{"id":"member","entityId":"entry-3875","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16288","name":"Shadowfang Glutton Patrol","speed":1.15,"pathId":162880,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-41.7842,19.1309,153.3907],[-38.4992,19.1309,146.0307],[-47.0152,19.1309,141.6707],[-54.3452,20.3329,138.9107],[-39.4042,19.1309,145.4607],[-41.4352,19.1309,153.1307],[-43.1062,19.1309,159.4407],[-31.6732,19.1309,164.4007],[-19.2322,19.1309,170.0507],[-8.4992,19.1309,174.9207],[-2.1922,22.6179,177.3907],[4.5488,25.4905,180.0307],[11.0578,28.6096,182.5807],[14.3358,30.9733,181.7207],[17.4318,33.559,180.1007],[21.1888,34.7372,177.9707],[27.3888,34.7411,180.3707],[21.7368,34.7411,178.1607],[19.4178,34.7378,178.3907],[14.9588,31.6014,180.9607],[10.7348,28.4303,182.3207],[6.1118,25.4906,181.0807],[2.5398,25.1975,179.3407],[-3.5122,21.9591,177.1807],[-10.9872,19.1312,174.5107],[-24.6112,19.1312,167.0607],[-44.3442,19.1312,158.8707],[-43.2782,19.1312,157.3407]],"members":[{"id":"member","entityId":"entry-3857","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16315","name":"Shadowfang Darksoul Patrol","speed":1.15,"pathId":163150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[10.3058,39.998,198.8907],[1.3078,39.998,194.6907],[-26.8252,39.998,184.7407],[1.9698,39.998,195.7507],[18.8718,39.998,202.2107],[21.2468,39.9378,196.8707],[24.2288,35.6486,187.2907],[22.0618,37.9478,192.2007],[17.3968,39.9983,202.7807],[13.9558,39.9983,200.9807]],"members":[{"id":"member","entityId":"entry-3855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16437","name":"Shadowfang Darksoul Patrol","speed":1.15,"pathId":164370,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-81.0082,40.03,159.2207],[-82.9282,40.03,163.2207],[-70.5312,40.03,168.3807],[-55.6742,40.0276,173.6507],[-69.1352,40.0306,166.3807],[-78.9672,40.0306,161.7807],[-76.4292,38.4736,154.6207],[-73.1892,34.7753,145.4807],[-70.9622,34.7753,139.2007],[-75.7692,35.3532,147.0807],[-77.9892,37.8489,152.4607],[-79.7712,39.8549,156.7807]],"members":[{"id":"member","entityId":"entry-3855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16445","name":"Tormented Officer Patrol","speed":1.15,"pathId":164450,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-25.9332,41.5216,-13.5093],[-43.3892,41.5216,-21.8393],[-58.6352,41.5216,-26.3293],[-68.9472,41.5216,2.7107],[-84.5122,41.5216,43.7307],[-71.6732,41.5216,12.3707],[-55.9802,41.5216,-25.8893],[-43.1342,41.5216,-21.1993]],"members":[{"id":"member","entityId":"entry-3873","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16448","name":"Wailing Guardsman Patrol","speed":1.15,"pathId":164480,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-11.6682,35.9857,24.3907],[-10.1642,36.945,20.1007],[-1.1862,39.9464,25.0607],[0.7368,40.0026,20.9307],[-0.5342,39.9241,25.9307],[-9.8752,36.8889,22.0807],[-12.6532,35.2363,28.6507],[-17.3822,35.2378,27.1507],[-20.1152,36.6513,33.2907],[-15.8972,37.9385,35.1107],[-13.7532,38.0501,36.1107],[-14.8062,38.0668,38.7907],[-13.7132,38.05,36.1107],[-20.2822,36.64,33.3207],[-17.3922,35.239,27.0807],[-13.7332,35.2375,28.4207],[-12.3472,35.2294,25.9807]],"members":[{"id":"member","entityId":"entry-3877","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-17901","name":"Tormented Officer Patrol","speed":1.15,"pathId":179010,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-87.0052,41.5219,44.0307],[-77.3622,41.5219,13.8707],[-59.5942,41.5219,-26.9393],[-54.9802,41.5219,-29.1393],[-27.5802,41.5219,-18.3593],[-54.7142,41.5219,-28.8093],[-63.5612,41.5219,-24.1393],[-81.1312,41.5219,21.4707],[-82.9602,41.5219,32.1407]],"members":[{"id":"member","entityId":"entry-3873","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-17956","name":"Wailing Guardsman Patrol","speed":1.15,"pathId":179560,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-15.0082,38.0669,44.6407],[-13.2932,38.0669,40.5807],[-18.6022,38.0669,52.9307],[-22.2632,38.0653,58.7707],[-26.5012,41.4768,65.5407],[-30.6142,41.4768,78.2707],[-34.1332,41.4684,92.7907],[-30.7262,41.4757,79.9807],[-26.2732,41.4757,64.9907],[-22.3452,38.0654,57.7907],[-17.9642,38.0669,49.3907]],"members":[{"id":"member","entityId":"entry-3877","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-18696","name":"Shadowfang Ragetooth Patrol","speed":1.15,"pathId":186960,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-101.5092,82.6245,66.0007],[-96.2732,82.8285,54.4307],[-101.1892,82.6115,66.2907],[-110.1182,81.1995,73.8207],[-115.8852,80.4285,76.9007],[-123.6522,79.4865,77.8607],[-131.2592,78.5365,75.9607],[-138.0082,77.5895,72.2307],[-143.7282,76.6695,67.2507],[-146.7922,75.8965,61.4707],[-148.5212,74.9785,53.9707],[-147.1092,73.7345,44.0207],[-148.3462,75.3355,57.1507],[-141.1082,77.2055,71.0207],[-132.5512,78.3945,75.8207],[-123.6142,79.4925,78.0907],[-116.7752,80.3075,77.2607],[-110.5822,81.1295,74.0107],[-104.6212,82.0445,69.5207]],"members":[{"id":"member","entityId":"entry-3859","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-18707","name":"Shadowfang Darksoul Patrol","speed":1.15,"pathId":187070,"formationSource":"database-solo","spawnMask":1,"waypoints":[[26.8568,39.9984,154.1307],[34.2998,39.9984,157.7107],[33.9528,39.9984,163.3107],[31.7278,37.5949,169.9607],[30.2068,35.1609,174.5107],[31.1608,36.6873,171.6307],[32.6658,39.1074,167.0807],[34.4978,39.9985,161.5507],[25.1358,39.9985,157.3307],[16.7388,39.9985,154.1007],[7.0418,39.9985,150.3807],[-1.3552,40.0862,147.1507],[-6.9092,43.0694,145.0207],[-10.5162,44.7675,143.6307],[-4.8572,42.0359,145.4507],[3.9218,39.998,148.2607],[13.0478,39.998,151.1907],[21.7038,39.998,153.9907]],"members":[{"id":"member","entityId":"entry-3855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-18708","name":"Shadowfang Darksoul Patrol","speed":1.15,"pathId":187080,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-71.2062,34.7753,137.8207],[-75.6642,34.7753,145.4807],[-78.4352,37.6394,151.7607],[-82.7732,40.0306,161.6007],[-72.8812,40.0306,165.4407],[-63.7102,40.0306,168.9107],[-56.7242,40.0306,171.5607],[-66.0832,40.0306,169.0007],[-76.8432,40.0306,164.7807],[-80.1802,40.0306,160.1307],[-76.5032,37.4517,152.0507],[-73.4992,34.7754,145.4507]],"members":[{"id":"member","entityId":"entry-3855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-18709","name":"Wailing Guardsman Patrol","speed":1.15,"pathId":187090,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-35.6592,41.4758,87.6307],[-36.1682,41.4657,92.2607],[-35.8182,38.3717,99.0207],[-35.9392,41.4717,91.7007],[-31.9202,41.4772,74.5407],[-29.2452,41.4772,64.4007],[-26.0482,38.0647,56.5007],[-18.6912,38.067,38.3307],[-26.2452,38.0654,57.0207],[-29.4592,41.4767,64.4907],[-33.8072,41.4767,82.4907]],"members":[{"id":"member","entityId":"entry-3877","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-134516","name":"Shadowfang Wolfguard Patrol","speed":1.15,"pathId":1345160,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-42.7582,38.808,178.3707],[-11.7882,39.9982,190.2407],[25.5768,34.7428,185.3207],[20.5388,34.4764,174.9107],[10.9108,25.4907,164.4107],[-9.7322,19.131,159.4507],[-43.6502,19.131,143.1307],[-66.9452,20.3328,133.7707],[-88.1162,20.3725,112.8307],[-88.8102,20.373,105.8707],[-60.3772,20.3328,136.2007],[-39.4662,19.1309,145.1907],[-13.9112,19.1309,171.8907],[4.0678,25.4907,179.8707],[16.9758,33.0211,180.7807],[24.3728,35.1292,186.0207],[18.1918,39.998,203.2807],[-27.3282,39.998,184.6707],[-69.5392,40.0317,167.5807],[-74.8632,34.7752,145.6907],[-87.8692,32.3458,133.0507],[-98.5572,30.5143,126.9307],[-73.0252,34.7743,139.2107],[-79.3032,40.0305,164.4107],[-45.6322,38.8081,177.3707]],"members":[{"id":"member","entityId":"entry-3854","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-134517","name":"Deathsworn Captain Patrol","speed":1.15,"pathId":1345170,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-75.6682,41.5214,-0.4093],[-64.3262,41.5214,-24.6193],[-53.8332,41.5214,-27.1193],[-27.7482,41.5214,-17.0393],[-21.8042,44.1625,-14.6293],[-27.7772,41.5215,-17.2493],[-55.4602,41.5215,-27.6293],[-65.3952,41.5215,-22.3693],[-80.5022,41.5215,8.8107],[-77.6562,41.5215,3.3907]],"members":[{"id":"member","entityId":"entry-3872","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-16242","name":"Rethilgore","position":[-15.5232,25.311,-1.9793]},{"id":"creature-16254","name":"Baron Silverlaine","position":[7.7278,20.368,172.2607]},{"id":"creature-16256","name":"Commander Springvale","position":[-45.0222,46.9705,134.3507]},{"id":"creature-16257","name":"Odo the Blindwatcher","position":[-30.9062,44.2435,20.9907]},{"id":"creature-18714","name":"Fenrus the Devourer","position":[-132.0052,72.9105,43.5707]},{"id":"creature-16237","name":"Wolf Master Nandos","position":[-146.8892,99.8935,36.9407]},{"id":"creature-16255","name":"Archmage Arugal","position":[-190.8601,99.9235,27.3207]}],"objectiveOrder":[{"id":"creature-16242","name":"Rethilgore","position":[-15.5232,25.311,-1.9793]},{"id":"creature-16254","name":"Baron Silverlaine","position":[7.7278,20.368,172.2607]},{"id":"creature-16256","name":"Commander Springvale","position":[-45.0222,46.9705,134.3507]},{"id":"creature-16257","name":"Odo the Blindwatcher","position":[-30.9062,44.2435,20.9907]},{"id":"creature-18714","name":"Fenrus the Devourer","position":[-132.0052,72.9105,43.5707]},{"id":"creature-16237","name":"Wolf Master Nandos","position":[-146.8892,99.8935,36.9407]},{"id":"creature-16255","name":"Archmage Arugal","position":[-190.8601,99.9235,27.3207]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9743,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-201.795,"position_y":2162.82,"position_z":79.7638,"rotation0":0,"rotation1":0,"rotation2":0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9744,"id":201289,"map":33,"orientation":0,"phaseMask":1,"position_x":-203.363,"position_y":2178.46,"position_z":79.7654,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9745,"id":202105,"map":33,"orientation":4.04917,"phaseMask":1,"position_x":-227.738,"position_y":2168.46,"position_z":79.7658,"rotation0":0,"rotation1":0,"rotation2":-0.898793,"rotation3":0.438373,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9746,"id":200300,"map":33,"orientation":4.46804,"phaseMask":1,"position_x":-228.733,"position_y":2192.91,"position_z":79.7614,"rotation0":0,"rotation1":0,"rotation2":-0.788011,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9747,"id":200300,"map":33,"orientation":4.81711,"phaseMask":1,"position_x":-228.116,"position_y":2194.75,"position_z":82.4938,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9748,"id":200332,"map":33,"orientation":4.46804,"phaseMask":1,"position_x":-228.852,"position_y":2192.88,"position_z":79.7613,"rotation0":0,"rotation1":0,"rotation2":-0.788011,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9749,"id":200332,"map":33,"orientation":4.83456,"phaseMask":1,"position_x":-228.222,"position_y":2194.7,"position_z":82.4937,"rotation0":0,"rotation1":0,"rotation2":-0.66262,"rotation3":0.748956,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9750,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-218.931,"position_y":2221.09,"position_z":80.7205,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9751,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-195.741,"position_y":2204.79,"position_z":81.769,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9752,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9753,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-215.632,"position_y":2219.21,"position_z":79.7624,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9754,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-195.221,"position_y":2204.57,"position_z":80.7209,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9755,"id":181018,"map":33,"orientation":0.401425,"phaseMask":1,"position_x":-159.226,"position_y":2167.59,"position_z":132.232,"rotation0":0,"rotation1":0,"rotation2":0.199367,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9756,"id":200332,"map":33,"orientation":4.4855,"phaseMask":1,"position_x":-227.832,"position_y":2197.06,"position_z":79.7609,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9757,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9758,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.363,"position_y":2211.85,"position_z":81.0316,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9759,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.743,"position_y":2209.16,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9760,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9761,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.608,"position_y":2210.14,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9762,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9763,"id":200334,"map":33,"orientation":0,"phaseMask":1,"position_x":-203.431,"position_y":2178.22,"position_z":81.0531,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9764,"id":181018,"map":33,"orientation":1.8675,"phaseMask":1,"position_x":-140.861,"position_y":2160.24,"position_z":131.955,"rotation0":0,"rotation1":0,"rotation2":0.803857,"rotation3":0.594823,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9765,"id":201906,"map":33,"orientation":1.37881,"phaseMask":1,"position_x":-201.818,"position_y":2165.14,"position_z":80.6793,"rotation0":0,"rotation1":0,"rotation2":0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9766,"id":200300,"map":33,"orientation":4.46804,"phaseMask":1,"position_x":-227.712,"position_y":2197.08,"position_z":79.761,"rotation0":0,"rotation1":0,"rotation2":-0.788011,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9767,"id":201906,"map":33,"orientation":0.680677,"phaseMask":1,"position_x":-201.056,"position_y":2165.41,"position_z":80.6763,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9768,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.743,"position_y":2209.16,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9769,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.363,"position_y":2211.85,"position_z":81.0316,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9770,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.102,"position_y":2209.57,"position_z":81.0145,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9771,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-199.137,"position_y":2165.32,"position_z":80.6689,"rotation0":0,"rotation1":0,"rotation2":0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9772,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-223.21,"position_y":2215.07,"position_z":80.9929,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9773,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.833,"position_y":2210.94,"position_z":81.057,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9774,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-196.936,"position_y":2191.94,"position_z":79.75,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9775,"id":181060,"map":33,"orientation":5.91667,"phaseMask":1,"position_x":-266.908,"position_y":2297.32,"position_z":77.5253,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9776,"id":181018,"map":33,"orientation":4.38078,"phaseMask":1,"position_x":-260.819,"position_y":2304.19,"position_z":82.1945,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9777,"id":201906,"map":33,"orientation":3.08918,"phaseMask":1,"position_x":-199.852,"position_y":2164.86,"position_z":80.6729,"rotation0":0,"rotation1":0,"rotation2":0.999657,"rotation3":0.0262017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9778,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9779,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.608,"position_y":2210.14,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9780,"id":200336,"map":33,"orientation":1.23918,"phaseMask":1,"position_x":-196.036,"position_y":2203.82,"position_z":79.7639,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9781,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-218.132,"position_y":2218.64,"position_z":80.7216,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9782,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-196.009,"position_y":2204.84,"position_z":80.7224,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9783,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-196.865,"position_y":2192.99,"position_z":79.7589,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9784,"id":201906,"map":33,"orientation":0.174532,"phaseMask":1,"position_x":-199.467,"position_y":2166.15,"position_z":80.6654,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9785,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-217.469,"position_y":2219.5,"position_z":80.7216,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9786,"id":201906,"map":33,"orientation":5.63741,"phaseMask":1,"position_x":-200.339,"position_y":2165.79,"position_z":80.671,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9787,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-196.733,"position_y":2202.13,"position_z":80.5776,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9788,"id":181060,"map":33,"orientation":4.24115,"phaseMask":1,"position_x":-251.602,"position_y":2289.04,"position_z":76.3188,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9789,"id":201906,"map":33,"orientation":0.174532,"phaseMask":1,"position_x":-200.524,"position_y":2164.54,"position_z":80.6773,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9790,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-198.396,"position_y":2201.86,"position_z":79.764,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9791,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.608,"position_y":2210.14,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9792,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9793,"id":201289,"map":33,"orientation":6.10865,"phaseMask":1,"position_x":-224.648,"position_y":2210.9,"position_z":79.7595,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9794,"id":201289,"map":33,"orientation":6.05629,"phaseMask":1,"position_x":-223.453,"position_y":2215.89,"position_z":79.7598,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9795,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-218.703,"position_y":2219.25,"position_z":80.7212,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9796,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-200.911,"position_y":2162.44,"position_z":79.7639,"rotation0":0,"rotation1":0,"rotation2":0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9797,"id":200336,"map":33,"orientation":2.32129,"phaseMask":1,"position_x":-218.674,"position_y":2220.03,"position_z":79.7609,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.39875,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9798,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-225.352,"position_y":2209.58,"position_z":81.0139,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9799,"id":200335,"map":33,"orientation":0,"phaseMask":1,"position_x":-196.556,"position_y":2195.78,"position_z":79.7637,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9800,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-225.16,"position_y":2211.52,"position_z":81.0294,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9801,"id":190678,"map":33,"orientation":0,"phaseMask":1,"position_x":-222.55,"position_y":2206.36,"position_z":81.0686,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9802,"id":201289,"map":33,"orientation":0.383971,"phaseMask":1,"position_x":-222.823,"position_y":2206.05,"position_z":79.7614,"rotation0":0,"rotation1":0,"rotation2":0.190808,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9803,"id":200336,"map":33,"orientation":0.453785,"phaseMask":1,"position_x":-200.215,"position_y":2165.32,"position_z":79.7479,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9804,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-225.222,"position_y":2210.19,"position_z":81.0138,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9805,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-219.042,"position_y":2219.86,"position_z":80.7208,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9807,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-219.502,"position_y":2219.88,"position_z":81.8517,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9808,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-223.701,"position_y":2212.13,"position_z":81.0575,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9809,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-197.938,"position_y":2192.51,"position_z":79.7641,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9810,"id":200333,"map":33,"orientation":3.28124,"phaseMask":1,"position_x":-194.804,"position_y":2199.3,"position_z":79.7631,"rotation0":0,"rotation1":0,"rotation2":-0.997563,"rotation3":0.0697661,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9811,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-218.33,"position_y":2220.42,"position_z":80.721,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9813,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-219.682,"position_y":2220.34,"position_z":80.7204,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9814,"id":181018,"map":33,"orientation":1.11701,"phaseMask":1,"position_x":-233.536,"position_y":2268.83,"position_z":82.173,"rotation0":0,"rotation1":0,"rotation2":0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9815,"id":181018,"map":33,"orientation":5.044,"phaseMask":1,"position_x":-151.878,"position_y":2185.76,"position_z":132.195,"rotation0":0,"rotation1":0,"rotation2":-0.580703,"rotation3":0.814116,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9816,"id":181018,"map":33,"orientation":1.13446,"phaseMask":1,"position_x":-245.509,"position_y":2273.54,"position_z":82.1679,"rotation0":0,"rotation1":0,"rotation2":0.537299,"rotation3":0.843392,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9817,"id":181018,"map":33,"orientation":5.8294,"phaseMask":1,"position_x":-275.078,"position_y":2302.97,"position_z":82.4822,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9818,"id":181018,"map":33,"orientation":1.29154,"phaseMask":1,"position_x":-257.375,"position_y":2278.22,"position_z":82.1422,"rotation0":0,"rotation1":0,"rotation2":0.601814,"rotation3":0.798636,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9819,"id":181018,"map":33,"orientation":3.4034,"phaseMask":1,"position_x":-133.693,"position_y":2178.62,"position_z":132.166,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9820,"id":181060,"map":33,"orientation":4.24115,"phaseMask":1,"position_x":-245.212,"position_y":2284.84,"position_z":76.3643,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9821,"id":181019,"map":33,"orientation":5.91667,"phaseMask":1,"position_x":-244.988,"position_y":2285.46,"position_z":76.32,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9822,"id":181060,"map":33,"orientation":4.24115,"phaseMask":1,"position_x":-237.128,"position_y":2281.8,"position_z":76.3139,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9823,"id":181019,"map":33,"orientation":0.628317,"phaseMask":1,"position_x":-236.846,"position_y":2282.42,"position_z":76.2727,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9824,"id":181060,"map":33,"orientation":4.24115,"phaseMask":1,"position_x":-244.696,"position_y":2286.15,"position_z":76.2698,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9825,"id":181060,"map":33,"orientation":4.24115,"phaseMask":1,"position_x":-236.609,"position_y":2283.01,"position_z":76.2624,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9826,"id":181060,"map":33,"orientation":4.43314,"phaseMask":1,"position_x":-252.101,"position_y":2287.61,"position_z":76.3343,"rotation0":0,"rotation1":0,"rotation2":-0.798635,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9827,"id":181018,"map":33,"orientation":1.23918,"phaseMask":1,"position_x":-269.25,"position_y":2282.98,"position_z":82.2886,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9828,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.363,"position_y":2211.85,"position_z":81.0316,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9829,"id":181060,"map":33,"orientation":5.89921,"phaseMask":1,"position_x":-268.96,"position_y":2291.8,"position_z":77.4431,"rotation0":0,"rotation1":0,"rotation2":-0.190808,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9830,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.363,"position_y":2211.85,"position_z":81.0316,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9831,"id":181018,"map":33,"orientation":4.38078,"phaseMask":1,"position_x":-237.116,"position_y":2294.86,"position_z":82.2157,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9832,"id":181018,"map":33,"orientation":5.89921,"phaseMask":1,"position_x":-278.743,"position_y":2293.67,"position_z":82.4162,"rotation0":0,"rotation1":0,"rotation2":-0.190808,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9833,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.743,"position_y":2209.16,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9834,"id":181019,"map":33,"orientation":0.628317,"phaseMask":1,"position_x":-251.858,"position_y":2288.43,"position_z":76.3263,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9835,"id":181018,"map":33,"orientation":4.38078,"phaseMask":1,"position_x":-225.115,"position_y":2290.13,"position_z":82.1598,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9836,"id":181018,"map":33,"orientation":4.38078,"phaseMask":1,"position_x":-248.991,"position_y":2299.53,"position_z":82.2632,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9837,"id":181019,"map":33,"orientation":0.628317,"phaseMask":1,"position_x":-268.661,"position_y":2295.62,"position_z":77.5094,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":12368,"id":38491,"map":33,"orientation":3.55175,"phaseMask":1,"position_x":-344.818,"position_y":2035.34,"position_z":16.9989,"rotation0":0,"rotation1":0,"rotation2":-0.979045,"rotation3":0.203644,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":209,"guid":20835,"id":18895,"map":33,"orientation":-1.94604,"phaseMask":1,"position_x":-242.581,"position_y":2159.05,"position_z":90.6226,"rotation0":0,"rotation1":0,"rotation2":-0.826589,"rotation3":0.562806,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":209},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":100,"areaId":0,"guid":32442,"id":18900,"map":33,"orientation":6.09235,"phaseMask":1,"position_x":-252.696,"position_y":2114.22,"position_z":82.8052,"rotation0":-0.131892,"rotation1":-0.694696,"rotation2":-0.131892,"rotation3":0.694698,"spawnMask":1,"spawntimesecs":0,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32443,"id":101812,"map":33,"orientation":1.5708,"phaseMask":1,"position_x":-236.251,"position_y":2164.04,"position_z":91.1562,"rotation0":0.584487,"rotation1":0.397963,"rotation2":0.584487,"rotation3":-0.397963,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":100,"areaId":0,"guid":32444,"id":101811,"map":33,"orientation":6.09235,"phaseMask":1,"position_x":-245.598,"position_y":2132.32,"position_z":82.8052,"rotation0":-0.131892,"rotation1":-0.694696,"rotation2":-0.131892,"rotation3":0.694698,"spawnMask":1,"spawntimesecs":0,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32445,"id":18934,"map":33,"orientation":-0.375245,"phaseMask":1,"position_x":-251.244,"position_y":2116.38,"position_z":81.218,"rotation0":0,"rotation1":0,"rotation2":-0.186524,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32446,"id":18935,"map":33,"orientation":-0.375245,"phaseMask":1,"position_x":-244.14,"position_y":2134.41,"position_z":81.0625,"rotation0":0,"rotation1":0,"rotation2":-0.186524,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32447,"id":18973,"map":33,"orientation":-1.94604,"phaseMask":1,"position_x":-146.391,"position_y":2173,"position_z":150.543,"rotation0":0,"rotation1":0,"rotation2":-0.826589,"rotation3":0.562806,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32448,"id":35594,"map":33,"orientation":-2.73144,"phaseMask":1,"position_x":-219.694,"position_y":2259.45,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":-0.979045,"rotation3":0.203642,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32450,"id":35595,"map":33,"orientation":0.802852,"phaseMask":1,"position_x":-218.509,"position_y":2260.46,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32452,"id":35597,"map":33,"orientation":-2.47837,"phaseMask":1,"position_x":-214.755,"position_y":2272.27,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32457,"id":35593,"map":33,"orientation":-0.375245,"phaseMask":1,"position_x":-220.578,"position_y":2258.18,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":-0.186524,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":32480,"id":18899,"map":33,"orientation":1.1957,"phaseMask":1,"position_x":-113.462,"position_y":2165.08,"position_z":156.755,"rotation0":0.694697,"rotation1":-0.131892,"rotation2":0.694696,"rotation3":0.131897,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33219,"id":18936,"map":33,"orientation":-0.375245,"phaseMask":1,"position_x":-247.757,"position_y":2125.23,"position_z":81.0625,"rotation0":0,"rotation1":0,"rotation2":-0.186524,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33241,"id":18971,"map":33,"orientation":2.76635,"phaseMask":1,"position_x":-118.11,"position_y":2161.86,"position_z":155.678,"rotation0":0,"rotation1":0,"rotation2":0.982451,"rotation3":0.186522,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33427,"id":35598,"map":33,"orientation":-3.12414,"phaseMask":1,"position_x":-213.2,"position_y":2273.37,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33633,"id":35596,"map":33,"orientation":-1.94604,"phaseMask":1,"position_x":-215.003,"position_y":2270.45,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":-0.826589,"rotation3":0.562806,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33785,"id":18972,"map":33,"orientation":-0.375245,"phaseMask":1,"position_x":-129.034,"position_y":2166.16,"position_z":129.187,"rotation0":0,"rotation1":0,"rotation2":-0.186524,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":100,"areaId":0,"guid":34006,"id":18901,"map":33,"orientation":6.09235,"phaseMask":1,"position_x":-249.22,"position_y":2123.1,"position_z":82.8052,"rotation0":-0.131892,"rotation1":-0.694696,"rotation2":-0.131892,"rotation3":0.694698,"spawnMask":1,"spawntimesecs":0,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34280,"id":22567,"map":33,"orientation":0.270526,"phaseMask":1,"position_x":-325.356,"position_y":2089.16,"position_z":30.2577,"rotation0":0,"rotation1":0,"rotation2":0.134851,"rotation3":0.990866,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35408,"id":22566,"map":33,"orientation":-1.91986,"phaseMask":1,"position_x":-326.355,"position_y":2089.7,"position_z":25.3409,"rotation0":0,"rotation1":0,"rotation2":-0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35797,"id":22563,"map":33,"orientation":1.56207,"phaseMask":1,"position_x":-326.002,"position_y":2090.32,"position_z":25.3409,"rotation0":0,"rotation1":0,"rotation2":0.704015,"rotation3":0.710185,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40656,"id":22564,"map":33,"orientation":-1.91986,"phaseMask":1,"position_x":-326.139,"position_y":2089.7,"position_z":30.2577,"rotation0":0,"rotation1":0,"rotation2":-0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40658,"id":22565,"map":33,"orientation":0.270526,"phaseMask":1,"position_x":-325.573,"position_y":2089.16,"position_z":25.3409,"rotation0":0,"rotation1":0,"rotation2":0.134851,"rotation3":0.990866,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40660,"id":75295,"map":33,"orientation":1.39626,"phaseMask":1,"position_x":-189.568,"position_y":2122.88,"position_z":97.3899,"rotation0":0,"rotation1":0,"rotation2":0.642786,"rotation3":0.766046,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40661,"id":3659,"map":33,"orientation":-2.21657,"phaseMask":1,"position_x":-197.138,"position_y":2268.28,"position_z":76.2013,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40662,"id":75293,"map":33,"orientation":-1.23918,"phaseMask":1,"position_x":-190.976,"position_y":2225.68,"position_z":79.7585,"rotation0":0,"rotation1":0,"rotation2":-0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40663,"id":3695,"map":33,"orientation":1.16937,"phaseMask":1,"position_x":-206.199,"position_y":2249.48,"position_z":76.2013,"rotation0":0,"rotation1":0,"rotation2":0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40664,"id":3659,"map":33,"orientation":-2.02458,"phaseMask":1,"position_x":-232.514,"position_y":2290.86,"position_z":74.9993,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40665,"id":75298,"map":33,"orientation":3.03687,"phaseMask":1,"position_x":-106.541,"position_y":2164.01,"position_z":101.52,"rotation0":0,"rotation1":0,"rotation2":0.998629,"rotation3":0.0523374,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40666,"id":3695,"map":33,"orientation":1.23918,"phaseMask":1,"position_x":-257.011,"position_y":2279.7,"position_z":74.9993,"rotation0":0,"rotation1":0,"rotation2":0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40667,"id":36738,"map":33,"orientation":0.785398,"phaseMask":1,"position_x":-155.171,"position_y":2185.61,"position_z":130.643,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40668,"id":91138,"map":33,"orientation":-2.18166,"phaseMask":1,"position_x":-218.464,"position_y":2237.2,"position_z":80.7977,"rotation0":0,"rotation1":0,"rotation2":-0.88701,"rotation3":0.461749,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40669,"id":182011,"map":33,"orientation":-1.90241,"phaseMask":1,"position_x":-207.395,"position_y":2245.31,"position_z":79.7689,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":55894,"id":38492,"map":33,"orientation":0.98611,"phaseMask":1,"position_x":-346.742,"position_y":2029.02,"position_z":18.8068,"rotation0":0,"rotation1":0,"rotation2":0.473319,"rotation3":0.880891,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":55895,"id":38493,"map":33,"orientation":5.78577,"phaseMask":1,"position_x":-350.577,"position_y":2038.32,"position_z":18.8068,"rotation0":0,"rotation1":0,"rotation2":-0.246153,"rotation3":0.969231,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":55896,"id":38494,"map":33,"orientation":4.34587,"phaseMask":1,"position_x":-337.114,"position_y":2037.85,"position_z":18.7984,"rotation0":0,"rotation1":0,"rotation2":-0.824125,"rotation3":0.566408,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":55897,"id":38495,"map":33,"orientation":2.31256,"phaseMask":1,"position_x":-338.949,"position_y":2032.28,"position_z":18.8068,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402748,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242252,"id":201289,"map":33,"orientation":3.34831,"phaseMask":1,"position_x":-222.652,"position_y":2207.23,"position_z":79.7614,"rotation0":0,"rotation1":0,"rotation2":0.994663,"rotation3":-0.103175,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242253,"id":201289,"map":33,"orientation":2.93597,"phaseMask":1,"position_x":-222.311,"position_y":2211.65,"position_z":79.7616,"rotation0":0,"rotation1":0,"rotation2":0.99472,"rotation3":0.10263,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242254,"id":201289,"map":33,"orientation":2.90848,"phaseMask":1,"position_x":-220.849,"position_y":2216.83,"position_z":79.7609,"rotation0":0,"rotation1":0,"rotation2":0.993215,"rotation3":0.116293,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242255,"id":201289,"map":33,"orientation":0.756489,"phaseMask":1,"position_x":-205.261,"position_y":2177.29,"position_z":79.7651,"rotation0":0,"rotation1":0,"rotation2":0.36929,"rotation3":0.929314,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242256,"id":200332,"map":33,"orientation":6.06264,"phaseMask":1,"position_x":-228.634,"position_y":2196.77,"position_z":79.7618,"rotation0":0,"rotation1":0,"rotation2":0.110049,"rotation3":-0.993926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242257,"id":200332,"map":33,"orientation":6.13725,"phaseMask":1,"position_x":-229.234,"position_y":2192.63,"position_z":79.7622,"rotation0":0,"rotation1":0,"rotation2":0.0729029,"rotation3":-0.997339,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242258,"id":200332,"map":33,"orientation":6.02886,"phaseMask":1,"position_x":-228.925,"position_y":2195.46,"position_z":82.4863,"rotation0":0,"rotation1":0,"rotation2":0.12682,"rotation3":-0.991926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242259,"id":200300,"map":33,"orientation":6.13725,"phaseMask":1,"position_x":-229.234,"position_y":2192.63,"position_z":79.7622,"rotation0":0,"rotation1":0,"rotation2":0.0729029,"rotation3":-0.997339,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242260,"id":200300,"map":33,"orientation":6.06264,"phaseMask":1,"position_x":-228.634,"position_y":2196.77,"position_z":79.7618,"rotation0":0,"rotation1":0,"rotation2":0.110049,"rotation3":-0.993926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242261,"id":200300,"map":33,"orientation":6.02886,"phaseMask":1,"position_x":-228.925,"position_y":2195.46,"position_z":82.4863,"rotation0":0,"rotation1":0,"rotation2":0.12682,"rotation3":-0.991926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242262,"id":200336,"map":33,"orientation":1.19474,"phaseMask":1,"position_x":-195.872,"position_y":2205.43,"position_z":79.7639,"rotation0":0,"rotation1":0,"rotation2":0.56247,"rotation3":0.826818,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242263,"id":200336,"map":33,"orientation":2.30215,"phaseMask":1,"position_x":-217.118,"position_y":2219.3,"position_z":79.7625,"rotation0":0,"rotation1":0,"rotation2":0.913203,"rotation3":0.407506,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242264,"id":200333,"map":33,"orientation":3.65696,"phaseMask":1,"position_x":-193.981,"position_y":2199.37,"position_z":79.7493,"rotation0":0,"rotation1":0,"rotation2":0.966983,"rotation3":-0.254841,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242265,"id":200334,"map":33,"orientation":3.76692,"phaseMask":1,"position_x":-205.174,"position_y":2177.62,"position_z":81.039,"rotation0":0,"rotation1":0,"rotation2":0.951518,"rotation3":-0.307594,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242266,"id":200335,"map":33,"orientation":1.72096,"phaseMask":1,"position_x":-196.882,"position_y":2195.72,"position_z":79.765,"rotation0":0,"rotation1":0,"rotation2":0.758156,"rotation3":0.652074,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242267,"id":200337,"map":33,"orientation":2.59275,"phaseMask":1,"position_x":-220.423,"position_y":2216.37,"position_z":81.0388,"rotation0":0,"rotation1":0,"rotation2":0.962582,"rotation3":0.27099,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242268,"id":200337,"map":33,"orientation":5.03141,"phaseMask":1,"position_x":-213.83,"position_y":2218.7,"position_z":79.7631,"rotation0":0,"rotation1":0,"rotation2":0.585817,"rotation3":-0.810444,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242269,"id":200337,"map":33,"orientation":2.23539,"phaseMask":1,"position_x":-217.341,"position_y":2220.39,"position_z":80.8288,"rotation0":0,"rotation1":0,"rotation2":0.899094,"rotation3":0.437756,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242270,"id":200337,"map":33,"orientation":2.23539,"phaseMask":1,"position_x":-216.527,"position_y":2219.35,"position_z":80.7348,"rotation0":0,"rotation1":0,"rotation2":0.899094,"rotation3":0.437756,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242271,"id":200337,"map":33,"orientation":2.23539,"phaseMask":1,"position_x":-215.719,"position_y":2218.32,"position_z":80.7345,"rotation0":0,"rotation1":0,"rotation2":0.899094,"rotation3":0.437756,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242272,"id":200337,"map":33,"orientation":2.38305,"phaseMask":1,"position_x":-218.174,"position_y":2219.65,"position_z":80.7954,"rotation0":0,"rotation1":0,"rotation2":0.928935,"rotation3":0.370244,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242273,"id":200337,"map":33,"orientation":2.38305,"phaseMask":1,"position_x":-217.446,"position_y":2218.96,"position_z":80.7347,"rotation0":0,"rotation1":0,"rotation2":0.928935,"rotation3":0.370244,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242274,"id":200337,"map":33,"orientation":2.35556,"phaseMask":1,"position_x":-216.943,"position_y":2218.31,"position_z":80.7347,"rotation0":0,"rotation1":0,"rotation2":0.923758,"rotation3":0.382976,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242275,"id":200337,"map":33,"orientation":2.35556,"phaseMask":1,"position_x":-216.325,"position_y":2217.69,"position_z":80.7346,"rotation0":0,"rotation1":0,"rotation2":0.923758,"rotation3":0.382976,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242276,"id":200337,"map":33,"orientation":2.35556,"phaseMask":1,"position_x":-218.195,"position_y":2219.56,"position_z":81.9112,"rotation0":0,"rotation1":0,"rotation2":0.923758,"rotation3":0.382976,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242277,"id":200338,"map":33,"orientation":4.6882,"phaseMask":1,"position_x":-198.645,"position_y":2203.81,"position_z":79.7959,"rotation0":0,"rotation1":0,"rotation2":0.715607,"rotation3":-0.698503,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242278,"id":200338,"map":33,"orientation":0.933992,"phaseMask":1,"position_x":-196.699,"position_y":2203.76,"position_z":80.7359,"rotation0":0,"rotation1":0,"rotation2":0.450206,"rotation3":0.892925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242279,"id":200338,"map":33,"orientation":0.933992,"phaseMask":1,"position_x":-195.022,"position_y":2206.03,"position_z":80.7362,"rotation0":0,"rotation1":0,"rotation2":0.450206,"rotation3":0.892925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242280,"id":200338,"map":33,"orientation":1.10678,"phaseMask":1,"position_x":-196.073,"position_y":2206.38,"position_z":80.7368,"rotation0":0,"rotation1":0,"rotation2":0.525574,"rotation3":0.850748,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242281,"id":200338,"map":33,"orientation":1.26386,"phaseMask":1,"position_x":-195.499,"position_y":2206.3,"position_z":81.6454,"rotation0":0,"rotation1":0,"rotation2":0.590703,"rotation3":0.806889,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242282,"id":200338,"map":33,"orientation":5.88593,"phaseMask":1,"position_x":-196.832,"position_y":2193.36,"position_z":79.764,"rotation0":0,"rotation1":0,"rotation2":0.197324,"rotation3":-0.980338,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242283,"id":200338,"map":33,"orientation":5.90163,"phaseMask":1,"position_x":-197.179,"position_y":2192.53,"position_z":79.7641,"rotation0":0,"rotation1":0,"rotation2":0.189623,"rotation3":-0.981857,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242284,"id":200338,"map":33,"orientation":5.90163,"phaseMask":1,"position_x":-198.496,"position_y":2193.06,"position_z":79.7644,"rotation0":0,"rotation1":0,"rotation2":0.189623,"rotation3":-0.981857,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242299,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-199.137,"position_y":2165.32,"position_z":80.6689,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242300,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-200.911,"position_y":2162.44,"position_z":79.7639,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242301,"id":201906,"map":33,"orientation":3.08918,"phaseMask":1,"position_x":-199.852,"position_y":2164.86,"position_z":80.6729,"rotation0":0,"rotation1":0,"rotation2":0.999657,"rotation3":0.0262033,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242302,"id":201906,"map":33,"orientation":0.680677,"phaseMask":1,"position_x":-201.056,"position_y":2165.41,"position_z":80.6763,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242303,"id":201906,"map":33,"orientation":-0.645772,"phaseMask":1,"position_x":-200.339,"position_y":2165.8,"position_z":80.671,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242304,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-201.795,"position_y":2162.82,"position_z":79.7638,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242305,"id":201906,"map":33,"orientation":0.174532,"phaseMask":1,"position_x":-199.467,"position_y":2166.15,"position_z":80.6654,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242306,"id":201906,"map":33,"orientation":0.174532,"phaseMask":1,"position_x":-200.524,"position_y":2164.54,"position_z":80.6773,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242307,"id":201906,"map":33,"orientation":1.37881,"phaseMask":1,"position_x":-201.818,"position_y":2165.14,"position_z":80.6793,"rotation0":0,"rotation1":0,"rotation2":0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/Shadowfang":"f839bf3f8e8f6d0cc00b55ea61ebe22e0f7cfe9c6c1153794c3eee74a8390d95","patch/World/maps/Shadowfang":"ccfb1fb26edb1b2eb6ac5cb5b432f597a3b6404e11e01ab7a8fe4d0faf5acf67"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/shadowfang-keep/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["31/31 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"stormwind-stockade","title":"Stormwind Stockade","mapId":34,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[20,30]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Stormwind Stockade","theme":"Instanced dungeon","summary":"Fight through Stormwind Stockade, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Stormwind Stockade...","unchartedAreaName":"Uncharted Stormwind Stockade","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":269.8942},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/34-stormwindjail/visual.glb","checksum":"97c7e14d57de58687ab232f6692d669e4f2dfa74f9764e0d28d33ec9e0e50635","size":1740940,"triangleCount":56890}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/34-stormwindjail/collision.glb","checksum":"557b6392d1bbcddf5be7856b35f8118feb604254e1d11dad4c3d61c349d61f09","size":681800,"triangleCount":56467}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/34-stormwindjail/navigation.glb","checksum":"7d9bf2b4292b7ac3aea531e399e9203b677125b3c01da1966ccf5036753e4f5e","size":47404,"triangleCount":3538}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-237.771,-55.1896,-181.922],"max":[-9.23,1.66,192.931]},"entrance":{"name":"Stormwind Stockade Entrance","footPosition":[-54.23,-18.34,0.28],"forward":[-0.2756962614591509,0,0.9612448030639477],"yaw":-0.27931396036383},"areas":[{"id":"entrance","name":"Stormwind Stockade Entrance","center":[-54.23,-18.34,0.28],"radius":35},{"id":"area-targorr-the-dread","name":"Targorr the Dread's Encounter","center":[-159.582,-25.6062,1.2531],"radius":42},{"id":"area-kam-deepfury","name":"Kam Deepfury's Encounter","center":[-142.644,-34.8562,-71.8536],"radius":42},{"id":"area-hamhock","name":"Hamhock's Encounter","center":[-105.523,-35.1062,-105.795],"radius":42},{"id":"area-bazil-thredd","name":"Bazil Thredd's Encounter","center":[-89.5518,-33.9396,-136.922],"radius":42},{"id":"area-dextren-ward","name":"Dextren Ward's Encounter","center":[-166.789,-33.9396,134.787],"radius":42}],"entities":{"entry-1707":{"id":"entry-1707","kind":"mob","name":"Defias Captive","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15657","name":"Backstab","spellId":15657,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6699,"damageMultiplier":1.12},{"id":"spell-17230","name":"Infected Wound","spellId":17230,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6699,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2144-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1706":{"id":"entry-1706","kind":"mob","name":"Defias Prisoner","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11978","name":"Kick","spellId":11978,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5136,"damageMultiplier":1.12},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5136,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2148-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1715":{"id":"entry-1715","kind":"mob","name":"Defias Insurgent","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2600,"damageMultiplier":1},{"id":"spell-9128","name":"Battle Shout","spellId":9128,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7061,"damageMultiplier":1.12},{"id":"spell-13730","name":"Demoralizing Shout","spellId":13730,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7061,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2147-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1711":{"id":"entry-1711","kind":"mob","name":"Defias Convict","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6253","name":"Backhand","spellId":6253,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4062,"damageMultiplier":1.12},{"id":"spell-16244","name":"Demoralizing Shout","spellId":16244,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4062,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2145-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1708":{"id":"entry-1708","kind":"mob","name":"Defias Inmate","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6547","name":"Rend","spellId":6547,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4004,"damageMultiplier":1.12},{"id":"spell-7165","name":"Battle Stance","spellId":7165,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4004,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2146-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1666":{"id":"entry-1666","kind":"boss","name":"Kam Deepfury","title":"Dungeon Boss","hasLoot":true,"combat":{"level":25,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":5741,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-825-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-1720":{"id":"entry-1720","kind":"mob","name":"Bruegal Ironknuckle","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2142-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-1717":{"id":"entry-1717","kind":"boss","name":"Hamhock","title":"Dungeon Boss","hasLoot":true,"combat":{"level":25,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6742","name":"Bloodlust","spellId":6742,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5269,"damageMultiplier":1.35},{"id":"spell-421","name":"Chain Lightning","spellId":421,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-3250-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0106,"labelHeight":3.3144,"markerRadius":0.916}}},"entry-1663":{"id":"entry-1663","kind":"boss","name":"Dextren Ward","title":"Dungeon Boss","hasLoot":true,"combat":{"level":25,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-5246","name":"Intimidating Shout","spellId":5246,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6110,"damageMultiplier":1.35},{"id":"spell-2457","name":"Battle Stance","spellId":2457,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6110,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2149-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1716":{"id":"entry-1716","kind":"boss","name":"Bazil Thredd","title":"Dungeon Boss","hasLoot":true,"combat":{"level":25,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9128","name":"Battle Shout","spellId":9128,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6296,"damageMultiplier":1.35},{"id":"spell-7964","name":"Smoke Bomb","spellId":7964,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6296,"damageMultiplier":1.35},{"id":"spell-29651","name":"Dual Wield","spellId":29651,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6296,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-1621-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1696":{"id":"entry-1696","kind":"boss","name":"Targorr the Dread","title":"Dungeon Boss","hasLoot":true,"combat":{"level":24,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5726,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":12000,"magnitude":0.25}},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5726,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-517-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.4082,"markerRadius":0.6886}}}},"staticSpawns":[{"id":"creature-79035","entityId":"entry-1707","position":[-82.3245,-26.4396,-10.6106],"yaw":-0.371108,"spawnMask":1},{"id":"creature-79036","entityId":"entry-1706","position":[-110.986,-26.4396,-29.1003],"yaw":-4.23787,"spawnMask":1},{"id":"creature-79037","entityId":"entry-1715","position":[-77.8325,-33.8562,-88.7943],"yaw":-1.87365,"spawnMask":1},{"id":"creature-79038","entityId":"entry-1715","position":[-128.395,-33.9396,-36.2513],"yaw":-3.46348,"spawnMask":1},{"id":"creature-79039","entityId":"entry-1711","position":[-70.595,-33.8562,-83.9379],"yaw":-4.83093,"spawnMask":1},{"id":"creature-79040","entityId":"entry-1715","position":[-99.3863,-34.7729,-37.6553],"yaw":-5.84427,"spawnMask":1},{"id":"creature-79041","entityId":"entry-1708","position":[-117.7,-34.7729,-45.8883],"yaw":-2.96333,"spawnMask":1},{"id":"creature-79042","entityId":"entry-1707","position":[-110.662,-25.5229,-0.7978],"yaw":-0.30335,"spawnMask":1},{"id":"creature-79043","entityId":"entry-1706","position":[-88.573,-26.4396,-15.4623],"yaw":-4.33564,"spawnMask":1},{"id":"creature-79044","entityId":"entry-1707","position":[-87.736,-26.4396,-28.9658],"yaw":-1.5708,"spawnMask":1},{"id":"creature-79045","entityId":"entry-1707","position":[-102.687,-26.4396,-28.8744],"yaw":-6.02139,"spawnMask":1},{"id":"creature-79046","entityId":"entry-1706","position":[-81.5075,-25.5229,-2.0358],"yaw":-2.77507,"spawnMask":1},{"id":"creature-79047","entityId":"entry-1711","position":[-111.721,-34.7729,-41.2636],"yaw":-2.05949,"spawnMask":1},{"id":"creature-79048","entityId":"entry-1706","position":[-110.512,-26.4396,-14.289],"yaw":-2.07694,"spawnMask":1},{"id":"creature-79049","entityId":"entry-1715","position":[-110.796,-34.7729,-65.9973],"yaw":-3.56047,"spawnMask":1},{"id":"creature-79050","entityId":"entry-1707","position":[-108.735,-26.5229,21.5291],"yaw":-2.66238,"spawnMask":1},{"id":"creature-79051","entityId":"entry-1707","position":[-110.493,-34.7729,42.8924],"yaw":-3.87516,"spawnMask":1},{"id":"creature-79052","entityId":"entry-1707","position":[-110.413,-26.4396,30.1479],"yaw":-5.35283,"spawnMask":1},{"id":"creature-79053","entityId":"entry-1711","position":[-129.414,-29.216,21.692],"yaw":-1.50148,"spawnMask":1},{"id":"creature-79054","entityId":"entry-1708","position":[-76.2288,-25.5229,0.3021],"yaw":-3.49974,"spawnMask":1},{"id":"creature-79055","entityId":"entry-1706","position":[-83.9548,-26.4396,30.5974],"yaw":-0.369557,"spawnMask":1},{"id":"creature-79056","entityId":"entry-1706","position":[-131.149,-25.5229,3.3395],"yaw":-1.50787,"spawnMask":1},{"id":"creature-79057","entityId":"entry-1707","position":[-86.8127,-26.4396,21.0691],"yaw":-4.59022,"spawnMask":1},{"id":"creature-79058","entityId":"entry-1708","position":[-128.622,-33.8562,49.0336],"yaw":-4.17134,"spawnMask":1},{"id":"creature-79059","entityId":"entry-1707","position":[-80.683,-26.4396,16.7574],"yaw":-2.04204,"spawnMask":1},{"id":"creature-79060","entityId":"entry-1707","position":[-131.167,-33.8562,40.9354],"yaw":-1.98968,"spawnMask":1},{"id":"creature-79061","entityId":"entry-1708","position":[-105.4,-34.7729,70.095],"yaw":-2.75762,"spawnMask":1},{"id":"creature-79062","entityId":"entry-1707","position":[-140.338,-25.5229,3.0836],"yaw":-5.99824,"spawnMask":1},{"id":"creature-79063","entityId":"entry-1711","position":[-129.687,-33.8562,-47.4302],"yaw":-3.40339,"spawnMask":1},{"id":"creature-79064","entityId":"entry-1706","position":[-93.4684,-25.5229,3.0337],"yaw":-3.50811,"spawnMask":1},{"id":"creature-79065","entityId":"entry-1707","position":[-103.24,-26.4396,12.9131],"yaw":-1.16937,"spawnMask":1},{"id":"creature-79066","entityId":"entry-1708","position":[-100.916,-34.7729,53.2517],"yaw":-2.70526,"spawnMask":1},{"id":"creature-79067","entityId":"entry-1708","position":[-100.564,-34.7729,44.3137],"yaw":-2.30383,"spawnMask":1},{"id":"creature-79068","entityId":"entry-1706","position":[-127.145,-25.5229,-1.4023],"yaw":-2.26893,"spawnMask":1},{"id":"creature-79069","entityId":"entry-1708","position":[-123.368,-33.8562,-61.7398],"yaw":-3.01942,"spawnMask":1},{"id":"creature-79070","entityId":"entry-1711","position":[-94.8542,-34.7729,-60.1856],"yaw":-2.61799,"spawnMask":1},{"id":"creature-79071","entityId":"entry-1711","position":[-66.9717,-33.8562,-90.2606],"yaw":-5.39307,"spawnMask":1},{"id":"creature-79072","entityId":"entry-1708","position":[-96.4198,-34.7729,-54.7564],"yaw":-2.51327,"spawnMask":1},{"id":"creature-79073","entityId":"entry-1707","position":[-115.026,-34.7729,46.7235],"yaw":-4.31096,"spawnMask":1},{"id":"creature-79074","entityId":"entry-1711","position":[-104.11,-34.7729,-55.8138],"yaw":-4.83456,"spawnMask":1},{"id":"creature-79075","entityId":"entry-1711","position":[-124.704,-33.9396,-70.8525],"yaw":-4.719,"spawnMask":1},{"id":"creature-79076","entityId":"entry-1708","position":[-82.6119,-33.8562,-94.8407],"yaw":-5.54853,"spawnMask":1},{"id":"creature-79077","entityId":"entry-1715","position":[-146.893,-34.8562,-42.7851],"yaw":-3.56855,"spawnMask":1},{"id":"creature-79078","entityId":"entry-1711","position":[-138.566,-34.7729,-48.0856],"yaw":-0.529011,"spawnMask":1},{"id":"creature-79079","entityId":"entry-1708","position":[-121.623,-34.7729,74.722],"yaw":-0.645772,"spawnMask":1},{"id":"creature-79080","entityId":"entry-1708","position":[-108.453,-34.8562,82.4015],"yaw":-1.40505,"spawnMask":1},{"id":"creature-79081","entityId":"entry-1707","position":[-153.705,-25.6062,3.6997],"yaw":-5.67859,"spawnMask":1},{"id":"creature-79082","entityId":"entry-1708","position":[-145.489,-34.7729,43.3674],"yaw":-4.00042,"spawnMask":1},{"id":"creature-79083","entityId":"entry-1706","position":[-150.993,-34.7729,39.1095],"yaw":-2.50405,"spawnMask":1},{"id":"creature-79084","entityId":"entry-1708","position":[-114.613,-33.9396,-86.3965],"yaw":-5.65375,"spawnMask":1},{"id":"creature-79085","entityId":"entry-1715","position":[-140.158,-34.7729,-64.5333],"yaw":-5.99149,"spawnMask":1},{"id":"creature-79086","entityId":"entry-1706","position":[-165.944,-25.6062,1.0911],"yaw":-2.88702,"spawnMask":1},{"id":"creature-79087","entityId":"entry-1707","position":[-134.054,-33.8562,70.9823],"yaw":-6.04937,"spawnMask":1},{"id":"creature-79088","entityId":"entry-1666","position":[-142.644,-34.8562,-71.8536],"yaw":-4.49228,"spawnMask":1},{"id":"creature-79089","entityId":"entry-1711","position":[-155.148,-34.8562,-52.0394],"yaw":-3.07747,"spawnMask":1},{"id":"creature-79090","entityId":"entry-1720","position":[-160.051,-34.7729,45.709],"yaw":-3.36848,"spawnMask":1},{"id":"creature-79091","entityId":"entry-1708","position":[-159.931,-34.8562,39.9643],"yaw":-0.52169,"spawnMask":1},{"id":"creature-79092","entityId":"entry-1708","position":[-151.641,-34.7729,60.1077],"yaw":-2.38636,"spawnMask":1},{"id":"creature-79093","entityId":"entry-1707","position":[-148.353,-34.7729,65.0762],"yaw":-5.40655,"spawnMask":1},{"id":"creature-79094","entityId":"entry-1708","position":[-161.133,-34.8562,54.0252],"yaw":-4.38428,"spawnMask":1},{"id":"creature-79095","entityId":"entry-1708","position":[-141.995,-33.9396,84.1125],"yaw":-3.0374,"spawnMask":1},{"id":"creature-79096","entityId":"entry-1706","position":[-162.726,-34.8562,59.1677],"yaw":-4.46164,"spawnMask":1},{"id":"creature-79097","entityId":"entry-1708","position":[-152.804,-34.7729,-69.5129],"yaw":-4.67092,"spawnMask":1},{"id":"creature-79098","entityId":"entry-1717","position":[-105.523,-35.1062,-105.795],"yaw":-1.09956,"spawnMask":1},{"id":"creature-79099","entityId":"entry-1715","position":[-95.4846,-35.1062,-105.947],"yaw":-0.663225,"spawnMask":1},{"id":"creature-79100","entityId":"entry-1708","position":[-150.261,-34.8562,-76.7672],"yaw":-2.28934,"spawnMask":1},{"id":"creature-79101","entityId":"entry-1715","position":[-109.097,-35.1062,-114.239],"yaw":-1.43117,"spawnMask":1},{"id":"creature-79102","entityId":"entry-1707","position":[-148.538,-35.1896,103.18],"yaw":-4.52629,"spawnMask":1},{"id":"creature-79103","entityId":"entry-1708","position":[-171.119,-33.8562,93.3214],"yaw":-4.20114,"spawnMask":1},{"id":"creature-79104","entityId":"entry-1708","position":[-155.673,-35.1896,99.6374],"yaw":-4.85931,"spawnMask":1},{"id":"creature-79105","entityId":"entry-1708","position":[-123.941,-33.8562,119.574],"yaw":-3.60874,"spawnMask":1},{"id":"creature-79106","entityId":"entry-1708","position":[-129.951,-33.8562,122.361],"yaw":-1.54336,"spawnMask":1},{"id":"creature-79107","entityId":"entry-1707","position":[-147.452,-35.1896,111.814],"yaw":-3.40928,"spawnMask":1},{"id":"creature-79108","entityId":"entry-1708","position":[-156.316,-35.1896,109.516],"yaw":-2.99417,"spawnMask":1},{"id":"creature-79109","entityId":"entry-1708","position":[-189.206,-33.8562,87.3162],"yaw":-0.762264,"spawnMask":1},{"id":"creature-79110","entityId":"entry-1708","position":[-182.74,-33.8562,95.2994],"yaw":-1.40045,"spawnMask":1},{"id":"creature-79111","entityId":"entry-1706","position":[-186.274,-33.8562,86.9216],"yaw":-3.42742,"spawnMask":1},{"id":"creature-79112","entityId":"entry-1707","position":[-192.771,-33.8562,91.34],"yaw":-5.44344,"spawnMask":1},{"id":"creature-79113","entityId":"entry-1708","position":[-119.78,-33.9396,128.785],"yaw":-6.2394,"spawnMask":1},{"id":"creature-79114","entityId":"entry-1708","position":[-161.07,-33.8562,129.292],"yaw":-4.39901,"spawnMask":1},{"id":"creature-79115","entityId":"entry-1706","position":[-167.363,-33.8562,127.883],"yaw":-0.959931,"spawnMask":1},{"id":"creature-79116","entityId":"entry-1663","position":[-166.789,-33.9396,134.787],"yaw":-1.78929,"spawnMask":1},{"id":"creature-79117","entityId":"entry-1708","position":[-171.059,-33.9396,142.025],"yaw":-4.49541,"spawnMask":1},{"id":"creature-79118","entityId":"entry-1708","position":[-168.987,-33.9396,147.931],"yaw":-1.38903,"spawnMask":1},{"id":"creature-79119","entityId":"entry-1708","position":[-176.087,-33.8562,142.688],"yaw":-2.28023,"spawnMask":1},{"id":"creature-79120","entityId":"entry-1711","position":[-126.276,-33.9396,-116.828],"yaw":-2.39055,"spawnMask":1},{"id":"creature-79121","entityId":"entry-1715","position":[-132.264,-33.9396,-123.557],"yaw":-2.95052,"spawnMask":1},{"id":"creature-79122","entityId":"entry-1708","position":[-141.424,-33.9396,-120.264],"yaw":-1.87443,"spawnMask":1},{"id":"creature-79123","entityId":"entry-1708","position":[-139.681,-33.8562,-128.899],"yaw":-2.90953,"spawnMask":1},{"id":"creature-79124","entityId":"entry-1716","position":[-89.5518,-33.9396,-136.922],"yaw":-5.00727,"spawnMask":1},{"id":"creature-79125","entityId":"entry-1715","position":[-91.7954,-33.9396,-126.047],"yaw":-4.01449,"spawnMask":1},{"id":"creature-79126","entityId":"entry-1711","position":[-95.3684,-33.9396,-128.729],"yaw":-2.07435,"spawnMask":1},{"id":"creature-84027","entityId":"entry-1696","position":[-159.582,-25.6062,1.2531],"yaw":-6.25925,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"creature-84027","name":"Targorr the Dread","position":[-159.582,-25.6062,1.2531]},{"id":"creature-79088","name":"Kam Deepfury","position":[-142.644,-34.8562,-71.8536]},{"id":"creature-79098","name":"Hamhock","position":[-105.523,-35.1062,-105.795]},{"id":"creature-79124","name":"Bazil Thredd","position":[-89.5518,-33.9396,-136.922]},{"id":"creature-79116","name":"Dextren Ward","position":[-166.789,-33.9396,134.787]}],"objectiveOrder":[{"id":"creature-84027","name":"Targorr the Dread","position":[-159.582,-25.6062,1.2531]},{"id":"creature-79088","name":"Kam Deepfury","position":[-142.644,-34.8562,-71.8536]},{"id":"creature-79098","name":"Hamhock","position":[-105.523,-35.1062,-105.795]},{"id":"creature-79124","name":"Bazil Thredd","position":[-89.5518,-33.9396,-136.922]},{"id":"creature-79116","name":"Dextren Ward","position":[-166.789,-33.9396,134.787]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2385,"id":180410,"map":34,"orientation":5.21854,"phaseMask":1,"position_x":145.938,"position_y":123.273,"position_z":-31.7391,"rotation0":0,"rotation1":0,"rotation2":-0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2386,"id":180410,"map":34,"orientation":3.38594,"phaseMask":1,"position_x":170.264,"position_y":109.914,"position_z":-31.8002,"rotation0":0,"rotation1":0,"rotation2":-0.992546,"rotation3":0.12187,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2597,"id":180411,"map":34,"orientation":3.73501,"phaseMask":1,"position_x":105.119,"position_y":-106.235,"position_z":-30.7941,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2598,"id":180411,"map":34,"orientation":5.70723,"phaseMask":1,"position_x":129.09,"position_y":0.796682,"position_z":-21.8337,"rotation0":0,"rotation1":0,"rotation2":-0.284015,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2599,"id":180411,"map":34,"orientation":0.645772,"phaseMask":1,"position_x":153.183,"position_y":107.68,"position_z":-30.8561,"rotation0":0,"rotation1":0,"rotation2":0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":717,"guid":26178,"id":75298,"map":34,"orientation":2.47837,"phaseMask":1,"position_x":188.603,"position_y":81.585,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":717},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":717,"guid":26179,"id":75298,"map":34,"orientation":1.44862,"phaseMask":1,"position_x":90.5921,"position_y":-145.882,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":0.662619,"rotation3":0.748957,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":717},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31963,"id":75295,"map":34,"orientation":-0.366519,"phaseMask":1,"position_x":104.455,"position_y":77.2554,"position_z":-34.8562,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31964,"id":75298,"map":34,"orientation":-1.18682,"phaseMask":1,"position_x":151.69,"position_y":-65.131,"position_z":-34.8562,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32162,"id":75295,"map":34,"orientation":2.9147,"phaseMask":1,"position_x":165.322,"position_y":57.6663,"position_z":-34.8562,"rotation0":0,"rotation1":0,"rotation2":0.993572,"rotation3":0.113203,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68059,"id":180405,"map":34,"orientation":5.89921,"phaseMask":1,"position_x":146.673,"position_y":89.169,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":-0.190808,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68060,"id":180405,"map":34,"orientation":4.24115,"phaseMask":1,"position_x":74.122,"position_y":-3.66818,"position_z":-25.6062,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68369,"id":180406,"map":34,"orientation":2.67035,"phaseMask":1,"position_x":111.621,"position_y":-87.8627,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233448,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68370,"id":180406,"map":34,"orientation":5.81195,"phaseMask":1,"position_x":134.891,"position_y":3.94964,"position_z":-25.6062,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68371,"id":180406,"map":34,"orientation":0.331611,"phaseMask":1,"position_x":142.028,"position_y":91.9442,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":0.165047,"rotation3":0.986286,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68372,"id":180406,"map":34,"orientation":5.81195,"phaseMask":1,"position_x":74.3244,"position_y":5.02471,"position_z":-25.6062,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68679,"id":180407,"map":34,"orientation":3.28124,"phaseMask":1,"position_x":116.247,"position_y":-90.2323,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":-0.997563,"rotation3":0.0697661,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68680,"id":180407,"map":34,"orientation":3.28124,"phaseMask":1,"position_x":125.731,"position_y":-3.61262,"position_z":-25.6062,"rotation0":0,"rotation1":0,"rotation2":-0.997563,"rotation3":0.0697661,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/StormwindJail":"e6cde05107cf4cf9b627e2ba51f5e63666e7518758947b02a5b38a01fa241d87","patch/World/maps/StormwindJail":"f9be884b0da76821503e48ef4fea48a5b71b2690fd4e4757235300f3810f8a5b"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/stormwind-stockade/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["11/11 combat entity templates use native animated client models from the reviewed five-player import.","Server positions use the packaged global-wmo environment's native world coordinates."]}},{"schemaVersion":1,"id":"deadmines","title":"The Deadmines","mapId":36,"lfgDungeonIds":[6],"expansion":"classic","environmentMode":"adt-hybrid","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[15,25]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Deadmines","theme":"Open-world expedition","summary":"Fight through The Deadmines, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Deadmines...","unchartedAreaName":"Uncharted The Deadmines","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":474.8126},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/36-deadminesinstance/visual.glb","checksum":"46bff6e94a6297382a7d31578bb085c75d7b25c0716f219f32abaea135a7abf4","size":24376732,"triangleCount":2649478}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-000.glb","checksum":"3c79220accb5540236ab26c4a7005c5a5287373930748fcc5147e637316706a0","size":116356,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-001.glb","checksum":"fbb80dcc89b1990aee002560e7a021c484a9674cdbec5368b33dbd73a8335d23","size":116048,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-002.glb","checksum":"e96cf008b1224880b708918c938fef1c64497c70e5263d766965c8c11f89570a","size":116260,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-003.glb","checksum":"0f3f726183834b1b122da46c5525bfea15c1240d073accfe480def7fa0bc2c1a","size":116052,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-004.glb","checksum":"49d03beb974916ab59f3cee441270fc886dd631c19154c18bdd4147a51a1c190","size":115496,"triangleCount":65184},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-005.glb","checksum":"9267654084dfb0eb5394621e211da6536df69c9060e2cd3aa1fbe17c3874f299","size":101260,"triangleCount":51056},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-006.glb","checksum":"1c42bdbe8bdecd7dbfcb160235726f42cb51d2d38e769cd4f9a05588d7cc3c62","size":117024,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-007.glb","checksum":"f5f6620b876ec0d1dd1927389f2172bfc90d7704f37c933926d7d058af8bb13b","size":116768,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-008.glb","checksum":"602e2197ac6f1cc66b7ec87a3ffd5db248ceabfa8c1bbbdf419a0717431346ad","size":117352,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-009.glb","checksum":"91cb699e7066630e0df6a6f7ee231354e79ac91bd0d9a9e99f39a3b9bba27bbb","size":117104,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-010.glb","checksum":"c892ea0ea961e171230d6188d2c54fb86770417570ab43ade90e65bbcbb33d48","size":115916,"triangleCount":65456},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-011.glb","checksum":"4ae7c7a61191ceef1615687198a06a08c323a72e98a9480111a3ddb590656f20","size":121936,"triangleCount":63232},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-012.glb","checksum":"0bd38a18f7c703ab108062980fd2099bf230264744b8f2e7ce5d300d5436926b","size":116356,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-013.glb","checksum":"9b13bf1257c74c29c42c2b4424234062d0db222f90441744f6bf9c373a47f8ea","size":127396,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-014.glb","checksum":"3abb62143237c9a6bfb185cbbdef25f72ad0a6852a77243ec62dfdc8c697983b","size":1114132,"triangleCount":100000},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-015.glb","checksum":"aedc5eed8b2057c86b91e524ac455e5e14d9fd846df9d56174d2c94858c1d1a7","size":121864,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-016.glb","checksum":"39f8310712fc133adb1e1b97723517ff696006812a1ac06f9ecbdbb6ee2bcd8a","size":119080,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-017.glb","checksum":"b9fe42c2817744cc54c7f2a943153056acaf9dd012bf92f60a5d41886b717d2a","size":117400,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-018.glb","checksum":"c14338408fb430b03f30c05fa6b08d6f148cf9c124ca3b06309b5e0448fd30a4","size":116604,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-019.glb","checksum":"00fac06da6dcda8826439ecbce947bec35429c233c24a6ed8fbb2a94567573f6","size":116228,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-020.glb","checksum":"b7927b3012de3e8c9567bac8b564120f28853081734605ef0673d035b70cb127","size":138236,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-021.glb","checksum":"7d3839e04adb86dc05de8e0b33642e9c7b5a7f2b4114d25944fbb9303b0c4494","size":13640,"triangleCount":374},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-022.glb","checksum":"7b7814c76422796674f66ea1f15d6be1c9ba8b83065b527526179416c68d5879","size":13688,"triangleCount":374},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-023.glb","checksum":"b2e6c2c619aa5522e6906eb439dc42c4a613bff8438c97f188d99bdd9f43d8a8","size":13704,"triangleCount":374},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-024.glb","checksum":"8030f3d420cca8fb4bbf1f485f50adede366596d8263c393d29d3b974e4cfc98","size":13716,"triangleCount":374},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-025.glb","checksum":"9e4cd861bb5ca6c1d1a36cdda43910110714f677da240633da4dc48473cda51b","size":9816,"triangleCount":295},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-026.glb","checksum":"1f5a0349db4852755f400a13a4101579d19599291d75070e363974552445beab","size":9804,"triangleCount":295},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-027.glb","checksum":"a4b608b49da4366da0417aa2b146f080fb95639f80c8f631e6e56c10a83ea1bc","size":9832,"triangleCount":295},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-028.glb","checksum":"896786c6205b57938a2d0201bc57a60696c3fdef29270b356909983f16f93048","size":9812,"triangleCount":295},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-029.glb","checksum":"3abbbba30ea58dc11d9f200281c1258d5442e92446acd5f0d9b95cf99368c671","size":148236,"triangleCount":65440},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-030.glb","checksum":"46fbba8dc90793611922f95921c2a596afd013bc65407442d1608f48a95176e2","size":88756,"triangleCount":7370},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-031.glb","checksum":"6294c97fd171aae2e6fa709453731de4151551dbd4c581589b9bc2878c470458","size":18668,"triangleCount":616},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-032.glb","checksum":"54772a435efbbf0f4bb656ff7f6e7ee7b50e4c7ca356beaaf8ddb5d4c26e63fc","size":49204,"triangleCount":2216},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-033.glb","checksum":"9a402302ded3a28360017c5dab7757200112d7db0077089ed70387297cf17e4f","size":119004,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-034.glb","checksum":"5fb71d4982ed4bac9140ac7ec1a1cd80a5bf4a507b0ca695381e0f208a90c234","size":117536,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-035.glb","checksum":"165d3038a1f0806ffdc197af231120cc7d163aada8f22aceb6ae2cf9cba4d57c","size":116528,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-036.glb","checksum":"2cc7fba8034b5e5402d2e039379f1b28630bb07d157943a338c5553b840ddaa3","size":116356,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-037.glb","checksum":"0b731f64b2a35ed6e830cf37edf0129098f5409db116abe3e76f6168474f7ddb","size":124168,"triangleCount":65536},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-038.glb","checksum":"a0181fc996a4cee567dff1febcd64886f43912d3432265d5abce4ffea28eb697","size":126676,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-039.glb","checksum":"6412ef65fd1fe7b22623cea8083512b544f14139885efb19cccde3265781faee","size":121392,"triangleCount":65536},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-040.glb","checksum":"8b118c00d82df41fa66c82d6a2014cbcd54d87d0d569a7b86b60a60ff1fddb25","size":117104,"triangleCount":65536},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-041.glb","checksum":"af37400441d66aa0e9108a6bc546133c18e57036a82daf972152f689ac33e7bf","size":116240,"triangleCount":65536},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-042.glb","checksum":"e5f39582fcfd8f280f94e32e9860f2fdbe5e823be50871163029b3c60b78f72a","size":117132,"triangleCount":65536},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-043.glb","checksum":"f71c1884cc2eb6706f950efe7ef9644f74ea667af6dc1d98bdbb8872844a7931","size":117056,"triangleCount":65536},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-044.glb","checksum":"56bc4de15d2ceaf8d8726c2ede55e982d8e0e8d63c4e06e1f0881086dacee4af","size":117424,"triangleCount":65536},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-045.glb","checksum":"b573525f30c9c9c644f210e6c7f699e58519028f108b53bb1c568f75d7795222","size":117084,"triangleCount":65536},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-046.glb","checksum":"6428265a71f2f7333d0b6d0ef70dc2dae6004052c049e0e47752ce359552b9ca","size":116132,"triangleCount":65536},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-047.glb","checksum":"37764a47184f88fb577656da6b2924464066202a0201af24215c1a88ecef5afa","size":116464,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/36-deadminesinstance/navigation.glb","checksum":"3ce1c783d2ccee06d502103fb4e3eb58ff05e6f6a012c563b9974035d5fb2fb0","size":1172504,"triangleCount":103978}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"bounds":{"min":[-964.0937,-17.4997,-358.1248],"max":[-304.6317,81.9028,45.0756]},"entrance":{"name":"The Deadmines Entrance","footPosition":[-383.0017,61.9028,-16.4018],"forward":[-0.47333703714506437,0,-0.8808814047683899],"yaw":-2.6485174211650198},"areas":[{"id":"entrance","name":"The Deadmines Entrance","center":[-383.0017,61.9028,-16.4018],"radius":35},{"id":"area-rhahk-zor","name":"Rhahk'zor's Encounter","center":[-448.1427,54.5567,-192.9168],"radius":42},{"id":"area-sneed","name":"Sneed's Encounter","center":[-512.9407,49.8013,-289.4548],"radius":42},{"id":"area-gilnid","name":"Gilnid's Encounter","center":[-574.3897,19.4341,-177.3638],"radius":42},{"id":"area-mr-smite","name":"Mr. Smite's Encounter","center":[-797.2147,20.4973,-22.8489],"radius":42},{"id":"area-cookie","name":"Cookie's Encounter","center":[-853.6807,17.1978,-67.5862],"radius":42},{"id":"area-captain-greenskin","name":"Captain Greenskin's Encounter","center":[-820.0637,41.7362,-59.6218],"radius":42},{"id":"area-edwin-vancleef","name":"Edwin VanCleef's Encounter","center":[-819.8267,39.4232,-87.3708],"radius":42}],"entities":{"entry-598":{"id":"entry-598","kind":"mob","name":"Defias Miner","combat":{"level":18,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6016","name":"Pierce Armor","spellId":6016,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6707,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-308-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2724,"markerRadius":0.65}}},"entry-4416":{"id":"entry-4416","kind":"mob","name":"Defias Strip Miner","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6016","name":"Pierce Armor","spellId":6016,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5162,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2438-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3685,"markerRadius":0.65}}},"entry-1729":{"id":"entry-1729","kind":"mob","name":"Defias Evoker","combat":{"level":18,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-4979","name":"Quick Flame Ward","spellId":4979,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4501,"damageMultiplier":1.12},{"id":"spell-11829","name":"Flamestrike","spellId":11829,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4501,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2318-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-634":{"id":"entry-634","kind":"mob","name":"Defias Overseer","combat":{"level":18,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5115","name":"Battle Command","spellId":5115,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5578,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2316-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1725":{"id":"entry-1725","kind":"mob","name":"Defias Watchman","combat":{"level":16,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6718,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-184-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.254,"markerRadius":0.65}}},"entry-644":{"id":"entry-644","kind":"boss","name":"Rhahk'Zor","title":"Dungeon Boss","hasLoot":true,"combat":{"level":19,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3200,"damageMultiplier":1},{"id":"spell-6304","name":"Rhahk'Zor Slam","spellId":6304,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6434,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-14403-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0121,"labelHeight":3.8116,"markerRadius":1.0534}}},"entry-641":{"id":"entry-641","kind":"mob","name":"Goblin Woodcarver","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7111-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-622":{"id":"entry-622","kind":"mob","name":"Goblin Engineer","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7109-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-1731":{"id":"entry-1731","kind":"mob","name":"Goblin Craftsman","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7110-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-1763":{"id":"entry-1763","kind":"boss","name":"Gilnid","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":7693,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7124-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0048,"labelHeight":2.5668,"markerRadius":0.65}}},"entry-4417":{"id":"entry-4417","kind":"mob","name":"Defias Taskmaster","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4185,"damageMultiplier":1.12},{"id":"spell-6685","name":"Piercing Shot","spellId":6685,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4185,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2440-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-642":{"id":"entry-642","kind":"boss","name":"Sneed's Shredder","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7399","name":"Terrify","spellId":7399,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":4988,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}},{"id":"spell-3603","name":"Distracting Pain","spellId":3603,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4988,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-1269-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.1754,"markerRadius":1.9424}}},"entry-4418":{"id":"entry-4418","kind":"mob","name":"Defias Wizard","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6548,"damageMultiplier":1.12},{"id":"spell-4979","name":"Quick Flame Ward","spellId":4979,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6548,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2447-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3947":{"id":"entry-3947","kind":"mob","name":"Goblin Shipbuilder","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7112-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-657":{"id":"entry-657","kind":"mob","name":"Defias Pirate","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2347-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1732":{"id":"entry-1732","kind":"mob","name":"Defias Squallshaper","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-122","name":"Frost Nova","spellId":122,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7260,"damageMultiplier":0.62,"radius":8},{"id":"spell-2138","name":"Fire Blast","spellId":2138,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":8000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2349-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-647":{"id":"entry-647","kind":"boss","name":"Captain Greenskin","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-40505","name":"Cleave","spellId":40505,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":6481,"damageMultiplier":0.82,"radius":11},{"id":"spell-5208","name":"Poisoned Harpoon","spellId":5208,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6481,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7113-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0048,"labelHeight":2.5668,"markerRadius":0.65}}},"entry-639":{"id":"entry-639","kind":"boss","name":"Edwin VanCleef","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4411,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2029-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-646":{"id":"entry-646","kind":"boss","name":"Mr. Smite","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6432","name":"Smite Stomp","spellId":6432,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6783,"damageMultiplier":0.82,"radius":11},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6783,"damageMultiplier":1.35},{"id":"spell-6264","name":"Nimble Reflexes","spellId":6264,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6783,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2026-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0641,"labelHeight":3.2085,"markerRadius":0.8069}}},"entry-645":{"id":"entry-645","kind":"boss","name":"Cookie","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5174","name":"Cookie's Cooking","spellId":5174,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5281,"damageMultiplier":1.35},{"id":"spell-6306","name":"Acid Splash","spellId":6306,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5281,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-1305-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0072,"labelHeight":2.1541,"markerRadius":0.65}}},"entry-636":{"id":"entry-636","kind":"mob","name":"Defias Blackguard","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8874","name":"Stealth","spellId":8874,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6685,"damageMultiplier":1.12},{"id":"spell-14903","name":"Rupture","spellId":14903,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6685,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2314-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3586":{"id":"entry-3586","kind":"mob","name":"Miner Johnson","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-556-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2724,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-79127","entityId":"entry-598","position":[-401.1297,55.8039,-50.2669],"yaw":-5.51524,"spawnMask":1},{"id":"creature-79128","entityId":"entry-598","position":[-406.9617,55.0956,-73.1354],"yaw":-2.56563,"spawnMask":1},{"id":"creature-79129","entityId":"entry-598","position":[-426.6677,56.111,-104.3908],"yaw":-1.09956,"spawnMask":1},{"id":"creature-79130","entityId":"entry-4416","position":[-404.2887,59.1629,-87.4839],"yaw":-5.67232,"spawnMask":1},{"id":"creature-79131","entityId":"entry-598","position":[-430.6357,56.1278,-100.2638],"yaw":-0.767945,"spawnMask":1},{"id":"creature-79133","entityId":"entry-598","position":[-403.9077,60.1416,-108.0178],"yaw":-4.79965,"spawnMask":1},{"id":"creature-79134","entityId":"entry-598","position":[-406.6767,55.2564,-57.0612],"yaw":-5.06145,"spawnMask":1},{"id":"creature-79135","entityId":"entry-598","position":[-372.9277,59.3428,-100.5108],"yaw":-1.32645,"spawnMask":1},{"id":"creature-79136","entityId":"entry-598","position":[-382.0677,55.5112,-79.0682],"yaw":-4.64258,"spawnMask":1},{"id":"creature-79137","entityId":"entry-598","position":[-370.1337,55.7804,-72.5366],"yaw":-1.6057,"spawnMask":1},{"id":"creature-79138","entityId":"entry-598","position":[-370.3177,56.6896,-40.1218],"yaw":-2.35619,"spawnMask":1},{"id":"creature-79140","entityId":"entry-598","position":[-396.2847,59.2169,-83.0147],"yaw":-0.087266,"spawnMask":1},{"id":"creature-79142","entityId":"entry-598","position":[-395.6427,55.9241,-70.8914],"yaw":-3.64774,"spawnMask":1},{"id":"creature-79143","entityId":"entry-598","position":[-383.1597,59.4191,-98.2838],"yaw":-5.58505,"spawnMask":1},{"id":"creature-79145","entityId":"entry-598","position":[-364.0297,54.941,-66.8627],"yaw":-2.89725,"spawnMask":1},{"id":"creature-79146","entityId":"entry-598","position":[-367.9637,55.7159,-52.6487],"yaw":-1.41372,"spawnMask":1},{"id":"creature-79148","entityId":"entry-598","position":[-411.2287,58.9797,-116.7818],"yaw":-5.74213,"spawnMask":1},{"id":"creature-79149","entityId":"entry-598","position":[-384.0247,59.3116,-128.3068],"yaw":-3.10669,"spawnMask":1},{"id":"creature-79151","entityId":"entry-634","position":[-408.1767,58.3149,-136.0648],"yaw":-0.224902,"spawnMask":1},{"id":"creature-79154","entityId":"entry-598","position":[-399.7357,58.5615,-139.8048],"yaw":-1.48353,"spawnMask":1},{"id":"creature-79155","entityId":"entry-598","position":[-394.3427,59.5471,-130.8128],"yaw":-2.47837,"spawnMask":1},{"id":"creature-79156","entityId":"entry-598","position":[-412.5047,59.053,-139.3438],"yaw":-3.57792,"spawnMask":1},{"id":"creature-79157","entityId":"entry-598","position":[-407.2267,57.8996,-147.7948],"yaw":-4.06662,"spawnMask":1},{"id":"creature-79158","entityId":"entry-598","position":[-450.3457,56.5468,-114.9058],"yaw":0,"spawnMask":1},{"id":"creature-79159","entityId":"entry-598","position":[-441.7017,55.7135,-126.5188],"yaw":-4.06662,"spawnMask":1},{"id":"creature-79160","entityId":"entry-598","position":[-395.5547,57.1235,-153.9428],"yaw":-1.16937,"spawnMask":1},{"id":"creature-79161","entityId":"entry-598","position":[-403.1397,57.4486,-165.1268],"yaw":-5.48033,"spawnMask":1},{"id":"creature-79162","entityId":"entry-598","position":[-400.0507,57.6871,-175.2528],"yaw":-2.49582,"spawnMask":1},{"id":"creature-79163","entityId":"entry-598","position":[-409.5147,57.8187,-169.9638],"yaw":-5.60251,"spawnMask":1},{"id":"creature-79164","entityId":"entry-598","position":[-410.2277,55.7381,-182.3038],"yaw":-2.77507,"spawnMask":1},{"id":"creature-79165","entityId":"entry-1725","position":[-449.9657,54.7703,-183.7328],"yaw":-3.37684,"spawnMask":1},{"id":"creature-79167","entityId":"entry-1725","position":[-453.2087,54.4119,-202.1678],"yaw":-0.811484,"spawnMask":1},{"id":"creature-79168","entityId":"entry-644","position":[-448.1427,54.5567,-192.9168],"yaw":-1.66886,"spawnMask":1},{"id":"creature-79169","entityId":"entry-598","position":[-487.8767,54.3743,-176.8158],"yaw":-6.26573,"spawnMask":1},{"id":"creature-79170","entityId":"entry-634","position":[-483.2917,54.1641,-191.7318],"yaw":-2.0461,"spawnMask":1},{"id":"creature-79171","entityId":"entry-1729","position":[-486.6297,54.1668,-188.0758],"yaw":-1.56971,"spawnMask":1},{"id":"creature-79172","entityId":"entry-598","position":[-499.2907,54.3565,-176.3468],"yaw":-0.890118,"spawnMask":1},{"id":"creature-79173","entityId":"entry-598","position":[-485.7467,49.6195,-219.4398],"yaw":-0.698132,"spawnMask":1},{"id":"creature-79174","entityId":"entry-598","position":[-490.6707,54.1471,-197.4398],"yaw":-3.76991,"spawnMask":1},{"id":"creature-79175","entityId":"entry-598","position":[-476.9217,49.4673,-231.3108],"yaw":-1.06465,"spawnMask":1},{"id":"creature-79176","entityId":"entry-598","position":[-499.0877,51.1628,-207.5608],"yaw":-1.02974,"spawnMask":1},{"id":"creature-79177","entityId":"entry-1729","position":[-506.4997,50.9471,-214.7048],"yaw":-4.64998,"spawnMask":1},{"id":"creature-79178","entityId":"entry-598","position":[-490.2447,49.7207,-233.4628],"yaw":-4.06662,"spawnMask":1},{"id":"creature-79179","entityId":"entry-598","position":[-506.2457,53.5184,-186.4738],"yaw":-4.79965,"spawnMask":1},{"id":"creature-79180","entityId":"entry-598","position":[-509.9887,53.5909,-198.6558],"yaw":-4.99164,"spawnMask":1},{"id":"creature-79181","entityId":"entry-598","position":[-500.1547,49.736,-222.0408],"yaw":-3.66519,"spawnMask":1},{"id":"creature-79182","entityId":"entry-598","position":[-509.3477,53.8464,-170.7468],"yaw":-4.85202,"spawnMask":1},{"id":"creature-79183","entityId":"entry-598","position":[-506.5067,53.5654,-157.9348],"yaw":-1.02974,"spawnMask":1},{"id":"creature-79184","entityId":"entry-598","position":[-511.9917,51.6977,-206.6208],"yaw":-4.55531,"spawnMask":1},{"id":"creature-79185","entityId":"entry-598","position":[-513.9157,52.8769,-158.6538],"yaw":-4.08407,"spawnMask":1},{"id":"creature-79187","entityId":"entry-598","position":[-516.1617,51.614,-214.1818],"yaw":-5.89921,"spawnMask":1},{"id":"creature-79190","entityId":"entry-598","position":[-529.1977,52.3916,-159.5958],"yaw":-3.24631,"spawnMask":1},{"id":"creature-79191","entityId":"entry-598","position":[-519.4167,53.2097,-149.5018],"yaw":-0.10472,"spawnMask":1},{"id":"creature-79192","entityId":"entry-641","position":[-494.0167,49.7086,-277.2578],"yaw":-0.436332,"spawnMask":1},{"id":"creature-79193","entityId":"entry-641","position":[-480.8247,49.4064,-284.6738],"yaw":-4.01426,"spawnMask":1},{"id":"creature-79194","entityId":"entry-598","position":[-528.7047,52.2956,-146.3468],"yaw":-0.366519,"spawnMask":1},{"id":"creature-79195","entityId":"entry-641","position":[-489.0417,50.1985,-285.5088],"yaw":-1.3742,"spawnMask":1},{"id":"creature-79196","entityId":"entry-622","position":[-550.5907,19.4293,-193.1058],"yaw":-4.45445,"spawnMask":1},{"id":"creature-79197","entityId":"entry-1731","position":[-548.3837,19.4293,-213.9518],"yaw":-1.22022,"spawnMask":1},{"id":"creature-79198","entityId":"entry-622","position":[-546.7537,19.4293,-207.9558],"yaw":-1.66173,"spawnMask":1},{"id":"creature-79199","entityId":"entry-1731","position":[-566.9527,51.149,-182.3958],"yaw":-3.21455,"spawnMask":1},{"id":"creature-79200","entityId":"entry-1731","position":[-564.5087,51.3524,-183.2108],"yaw":-0.113424,"spawnMask":1},{"id":"creature-79201","entityId":"entry-1731","position":[-553.4967,19.4293,-186.8798],"yaw":-3.02864,"spawnMask":1},{"id":"creature-79202","entityId":"entry-641","position":[-523.7957,50.0732,-270.2298],"yaw":-0.296706,"spawnMask":1},{"id":"creature-79203","entityId":"entry-1731","position":[-568.0817,21.0996,-209.5748],"yaw":-2.94235,"spawnMask":1},{"id":"creature-79204","entityId":"entry-1731","position":[-565.3607,19.4293,-178.3988],"yaw":-2.53463,"spawnMask":1},{"id":"creature-79205","entityId":"entry-1731","position":[-555.8587,19.4293,-226.0358],"yaw":-0.854289,"spawnMask":1},{"id":"creature-79206","entityId":"entry-1763","position":[-574.3897,19.4341,-177.3638],"yaw":-0.092073,"spawnMask":1},{"id":"creature-79207","entityId":"entry-641","position":[-501.9447,49.5059,-281.2808],"yaw":-1.4796,"spawnMask":1},{"id":"creature-79208","entityId":"entry-622","position":[-563.6367,19.4293,-226.1148],"yaw":-2.36988,"spawnMask":1},{"id":"creature-79209","entityId":"entry-622","position":[-582.2727,21.0997,-196.7558],"yaw":-1.21763,"spawnMask":1},{"id":"creature-79210","entityId":"entry-4416","position":[-569.3737,19.9134,-139.8298],"yaw":-1.39626,"spawnMask":1},{"id":"creature-79211","entityId":"entry-1731","position":[-581.4277,19.434,-178.3208],"yaw":-2.21882,"spawnMask":1},{"id":"creature-79212","entityId":"entry-622","position":[-590.6007,21.0997,-209.0458],"yaw":-2.30227,"spawnMask":1},{"id":"creature-79213","entityId":"entry-622","position":[-569.7167,19.4293,-232.5038],"yaw":-1.08319,"spawnMask":1},{"id":"creature-79214","entityId":"entry-4417","position":[-580.5167,19.4359,-149.1528],"yaw":-3.12269,"spawnMask":1},{"id":"creature-79215","entityId":"entry-4416","position":[-578.7767,18.775,-131.6928],"yaw":-0.314159,"spawnMask":1},{"id":"creature-79216","entityId":"entry-4416","position":[-590.6407,19.1763,-152.9988],"yaw":-4.81711,"spawnMask":1},{"id":"creature-79217","entityId":"entry-1731","position":[-600.3977,36.7012,-188.7358],"yaw":-5.17014,"spawnMask":1},{"id":"creature-79218","entityId":"entry-1731","position":[-575.7477,19.4293,-234.9928],"yaw":-1.36211,"spawnMask":1},{"id":"creature-79219","entityId":"entry-641","position":[-571.2207,51.1687,-263.5158],"yaw":-2.60054,"spawnMask":1},{"id":"creature-79220","entityId":"entry-641","position":[-477.6947,49.3963,-291.9828],"yaw":-3.01942,"spawnMask":1},{"id":"creature-79221","entityId":"entry-641","position":[-518.4447,48.6613,-284.8168],"yaw":-4.5204,"spawnMask":1},{"id":"creature-79222","entityId":"entry-641","position":[-506.1487,49.3906,-294.2658],"yaw":-5.69011,"spawnMask":1},{"id":"creature-79223","entityId":"entry-642","position":[-512.9407,49.8013,-289.4548],"yaw":-3.78367,"spawnMask":1},{"id":"creature-79224","entityId":"entry-641","position":[-559.9327,49.6368,-283.2308],"yaw":-0.034907,"spawnMask":1},{"id":"creature-79225","entityId":"entry-4416","position":[-574.4007,50.642,-275.4928],"yaw":-2.49582,"spawnMask":1},{"id":"creature-79226","entityId":"entry-4416","position":[-587.5987,51.1524,-259.3298],"yaw":-3.80482,"spawnMask":1},{"id":"creature-79227","entityId":"entry-641","position":[-529.9547,49.5102,-295.5298],"yaw":-5.50756,"spawnMask":1},{"id":"creature-79231","entityId":"entry-641","position":[-485.2127,49.9248,-308.8718],"yaw":-1.6057,"spawnMask":1},{"id":"creature-79232","entityId":"entry-4416","position":[-567.1167,50.1894,-297.7918],"yaw":-3.07178,"spawnMask":1},{"id":"creature-79233","entityId":"entry-4417","position":[-578.1247,50.6786,-263.8068],"yaw":-6.26195,"spawnMask":1},{"id":"creature-79234","entityId":"entry-4416","position":[-576.5177,49.4016,-287.6198],"yaw":-5.46288,"spawnMask":1},{"id":"creature-79235","entityId":"entry-4416","position":[-584.4527,49.8872,-294.3138],"yaw":-5.61996,"spawnMask":1},{"id":"creature-79236","entityId":"entry-4416","position":[-579.7177,48.9591,-305.6608],"yaw":-2.35619,"spawnMask":1},{"id":"creature-79237","entityId":"entry-4416","position":[-592.5517,48.688,-313.1248],"yaw":-3.14159,"spawnMask":1},{"id":"creature-79238","entityId":"entry-4416","position":[-589.1427,51.0262,-272.9398],"yaw":-5.8294,"spawnMask":1},{"id":"creature-79239","entityId":"entry-4416","position":[-588.0617,51.1635,-280.8128],"yaw":-2.37365,"spawnMask":1},{"id":"creature-79240","entityId":"entry-4416","position":[-601.3147,50.9662,-281.6928],"yaw":-5.06145,"spawnMask":1},{"id":"creature-79241","entityId":"entry-641","position":[-608.1677,47.8264,-292.7768],"yaw":-5.37561,"spawnMask":1},{"id":"creature-79242","entityId":"entry-1731","position":[-606.8217,28.5228,-208.3258],"yaw":-3.16188,"spawnMask":1},{"id":"creature-79243","entityId":"entry-1731","position":[-602.5887,30.4789,-203.2758],"yaw":-3.56974,"spawnMask":1},{"id":"creature-79247","entityId":"entry-1731","position":[-603.7107,19.425,-198.9278],"yaw":-5.74754,"spawnMask":1},{"id":"creature-79248","entityId":"entry-4416","position":[-602.3297,16.2325,-138.0048],"yaw":-3.03687,"spawnMask":1},{"id":"creature-79249","entityId":"entry-4416","position":[-593.5977,18.0196,-135.1298],"yaw":-3.29867,"spawnMask":1},{"id":"creature-79250","entityId":"entry-4416","position":[-613.1667,15.4264,-138.0528],"yaw":-3.38594,"spawnMask":1},{"id":"creature-79251","entityId":"entry-4416","position":[-607.4767,15.2968,-127.4158],"yaw":-0.15708,"spawnMask":1},{"id":"creature-79252","entityId":"entry-4416","position":[-596.2957,17.9316,-126.2538],"yaw":-6.24828,"spawnMask":1},{"id":"creature-79253","entityId":"entry-4416","position":[-622.8187,15.1651,-137.6508],"yaw":-2.98451,"spawnMask":1},{"id":"creature-79255","entityId":"entry-4416","position":[-613.5437,14.5166,-106.1318],"yaw":-1.6057,"spawnMask":1},{"id":"creature-79256","entityId":"entry-4416","position":[-621.1327,14.2355,-115.1888],"yaw":-4.93928,"spawnMask":1},{"id":"creature-79257","entityId":"entry-4416","position":[-620.4977,14.6247,-104.4188],"yaw":-5.0091,"spawnMask":1},{"id":"creature-79258","entityId":"entry-4416","position":[-637.7127,14.4536,-132.5058],"yaw":-4.46804,"spawnMask":1},{"id":"creature-79259","entityId":"entry-4416","position":[-635.1337,12.3198,-118.3948],"yaw":-0.785398,"spawnMask":1},{"id":"creature-79261","entityId":"entry-4416","position":[-651.4187,8.287,-115.4228],"yaw":-3.57792,"spawnMask":1},{"id":"creature-79262","entityId":"entry-3947","position":[-702.6217,8.9806,-188.7828],"yaw":-2.06811,"spawnMask":1},{"id":"creature-79271","entityId":"entry-4416","position":[-640.7207,8.8895,-104.3778],"yaw":-0.733038,"spawnMask":1},{"id":"creature-79277","entityId":"entry-1729","position":[-399.0917,57.3818,-146.7788],"yaw":-0.099881,"spawnMask":1},{"id":"creature-79281","entityId":"entry-1729","position":[-505.1087,53.2487,-195.2728],"yaw":-3.31299,"spawnMask":1},{"id":"creature-79286","entityId":"entry-3947","position":[-698.0947,8.8094,-121.6468],"yaw":-4.4315,"spawnMask":1},{"id":"creature-79287","entityId":"entry-3947","position":[-681.2557,10.6844,-123.1578],"yaw":-5.09576,"spawnMask":1},{"id":"creature-79292","entityId":"entry-657","position":[-722.3317,8.6056,-95.1432],"yaw":-5.50703,"spawnMask":1},{"id":"creature-79293","entityId":"entry-3947","position":[-685.0117,4.0226,-49.5141],"yaw":-3.17298,"spawnMask":1},{"id":"creature-79296","entityId":"entry-634","position":[-605.4047,15.358,-130.7778],"yaw":-5.44543,"spawnMask":1},{"id":"creature-79297","entityId":"entry-657","position":[-729.3727,9.0719,-79.97],"yaw":-6.16024,"spawnMask":1},{"id":"creature-79298","entityId":"entry-3947","position":[-692.6407,4.6476,-34.3768],"yaw":-4.69944,"spawnMask":1},{"id":"creature-79299","entityId":"entry-1732","position":[-723.2737,9.1998,-50.1373],"yaw":-1.48353,"spawnMask":1},{"id":"creature-79300","entityId":"entry-657","position":[-727.8427,8.5967,-31.3819],"yaw":-2.96909,"spawnMask":1},{"id":"creature-79301","entityId":"entry-1732","position":[-732.0197,9.1639,-42.2445],"yaw":-4.52774,"spawnMask":1},{"id":"creature-79303","entityId":"entry-3947","position":[-762.0597,4.7118,-140.0148],"yaw":-2.42708,"spawnMask":1},{"id":"creature-79304","entityId":"entry-3947","position":[-788.6037,17.4359,-123.7408],"yaw":-5.22666,"spawnMask":1},{"id":"creature-79305","entityId":"entry-657","position":[-782.3697,17.5112,-79.6601],"yaw":-0.686417,"spawnMask":1},{"id":"creature-79306","entityId":"entry-1732","position":[-736.0717,8.753,-22.57],"yaw":-1.42668,"spawnMask":1},{"id":"creature-79307","entityId":"entry-657","position":[-783.3077,26.3693,-74.8649],"yaw":-2.98393,"spawnMask":1},{"id":"creature-79308","entityId":"entry-657","position":[-778.1977,22.4623,-99.9414],"yaw":-5.88379,"spawnMask":1},{"id":"creature-79309","entityId":"entry-3947","position":[-788.0617,38.9458,-79.578],"yaw":-2.92716,"spawnMask":1},{"id":"creature-79311","entityId":"entry-657","position":[-789.1277,17.5236,-131.0998],"yaw":-2.26836,"spawnMask":1},{"id":"creature-79312","entityId":"entry-3947","position":[-766.1827,3.991,-132.9168],"yaw":-1.59329,"spawnMask":1},{"id":"creature-79314","entityId":"entry-3947","position":[-787.3037,17.2344,-94.1755],"yaw":-0.542439,"spawnMask":1},{"id":"creature-79315","entityId":"entry-3947","position":[-791.0977,25.9729,-83.4996],"yaw":-2.49507,"spawnMask":1},{"id":"creature-79316","entityId":"entry-657","position":[-724.5867,8.0366,-15.0073],"yaw":-3.36236,"spawnMask":1},{"id":"creature-79319","entityId":"entry-3947","position":[-805.4917,30.8058,-97.6547],"yaw":-5.10199,"spawnMask":1},{"id":"creature-79320","entityId":"entry-3947","position":[-805.9537,17.0175,-122.8388],"yaw":-2.01555,"spawnMask":1},{"id":"creature-79321","entityId":"entry-657","position":[-794.3327,39.523,-65.919],"yaw":-3.9576,"spawnMask":1},{"id":"creature-79323","entityId":"entry-657","position":[-788.4977,18.9177,-41.5852],"yaw":-4.86947,"spawnMask":1},{"id":"creature-79324","entityId":"entry-657","position":[-740.8417,9.0403,-9.2525],"yaw":-5.75106,"spawnMask":1},{"id":"creature-79325","entityId":"entry-3947","position":[-786.9597,18.5748,-45.3114],"yaw":-5.4415,"spawnMask":1},{"id":"creature-79326","entityId":"entry-1732","position":[-793.2187,28.2859,-106.4348],"yaw":-2.29205,"spawnMask":1},{"id":"creature-79327","entityId":"entry-1732","position":[-796.7807,38.4947,-78.3801],"yaw":-2.56158,"spawnMask":1},{"id":"creature-79328","entityId":"entry-657","position":[-791.1997,38.7319,-52.9995],"yaw":-0.738249,"spawnMask":1},{"id":"creature-79329","entityId":"entry-1732","position":[-797.9047,39.4485,-40.2806],"yaw":-0.914945,"spawnMask":1},{"id":"creature-79330","entityId":"entry-657","position":[-794.2727,18.9283,-36.8214],"yaw":-6.26542,"spawnMask":1},{"id":"creature-79333","entityId":"entry-647","position":[-820.0637,41.7362,-59.6218],"yaw":-1.23189,"spawnMask":1},{"id":"creature-79334","entityId":"entry-657","position":[-809.4277,40.9922,-67.6419],"yaw":-3.10425,"spawnMask":1},{"id":"creature-79335","entityId":"entry-1732","position":[-806.5847,40.9529,-67.9725],"yaw":-3.10443,"spawnMask":1},{"id":"creature-79336","entityId":"entry-639","position":[-819.8267,39.4232,-87.3708],"yaw":0,"spawnMask":1},{"id":"creature-79337","entityId":"entry-646","position":[-797.2147,20.4973,-22.8489],"yaw":-1.0472,"spawnMask":1},{"id":"creature-79338","entityId":"entry-1732","position":[-811.7187,19.6766,-21.7671],"yaw":-1.62187,"spawnMask":1},{"id":"creature-79340","entityId":"entry-657","position":[-835.8487,19.7756,-20.9426],"yaw":-2.05681,"spawnMask":1},{"id":"creature-79341","entityId":"entry-657","position":[-830.2757,19.875,-19.0486],"yaw":-4.01444,"spawnMask":1},{"id":"creature-79343","entityId":"entry-657","position":[-843.1447,19.2921,-30.3784],"yaw":-5.61834,"spawnMask":1},{"id":"creature-79344","entityId":"entry-645","position":[-853.6807,17.1978,-67.5862],"yaw":-4.92527,"spawnMask":1},{"id":"creature-79345","entityId":"entry-636","position":[-776.9997,9.9907,-3.989],"yaw":-0.991293,"spawnMask":1},{"id":"creature-79346","entityId":"entry-636","position":[-781.5477,10.0946,0.0756],"yaw":-1.39409,"spawnMask":1},{"id":"creature-79347","entityId":"entry-3947","position":[-852.1797,18.7217,-43.2717],"yaw":-1.28568,"spawnMask":1},{"id":"creature-79348","entityId":"entry-657","position":[-854.7657,17.337,-89.5702],"yaw":-5.22399,"spawnMask":1},{"id":"creature-79349","entityId":"entry-657","position":[-856.5007,17.4065,-85.9135],"yaw":-3.16079,"spawnMask":1},{"id":"creature-79351","entityId":"entry-1732","position":[-847.6337,17.152,-103.0348],"yaw":-5.40776,"spawnMask":1},{"id":"creature-79353","entityId":"entry-3947","position":[-823.9027,17.0675,-122.5878],"yaw":-3.7869,"spawnMask":1},{"id":"creature-79354","entityId":"entry-1732","position":[-836.3077,17.0381,-119.0878],"yaw":-5.99994,"spawnMask":1},{"id":"creature-79355","entityId":"entry-1732","position":[-873.6967,2.5003,-142.7728],"yaw":-3.76723,"spawnMask":1},{"id":"creature-79369","entityId":"entry-636","position":[-824.7157,40.1235,-78.2809],"yaw":-2.93215,"spawnMask":1},{"id":"creature-79370","entityId":"entry-636","position":[-815.0287,40.1416,-77.8089],"yaw":-3.26377,"spawnMask":1},{"id":"creature-79377","entityId":"entry-634","position":[-579.4727,51.2697,-259.0198],"yaw":-0.186022,"spawnMask":1},{"id":"creature-79384","entityId":"entry-657","position":[-891.7467,5.7661,-154.9978],"yaw":-3.05433,"spawnMask":1},{"id":"creature-79385","entityId":"entry-1732","position":[-905.9677,8.3018,-146.1428],"yaw":-4.04916,"spawnMask":1},{"id":"creature-79388","entityId":"entry-657","position":[-908.9317,8.85,-153.1838],"yaw":-2.61799,"spawnMask":1},{"id":"creature-79390","entityId":"entry-1732","position":[-919.0937,12.6665,-147.6758],"yaw":-6.04953,"spawnMask":1},{"id":"creature-84079","entityId":"entry-3586","position":[-526.3657,51.2558,-152.5468],"yaw":-1.73877,"spawnMask":1}],"roamingPacks":[{"id":"patrol-79139","name":"Defias Evoker Patrol","speed":1.15,"pathId":791390,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-393.9437,54.4254,-58.1104],[-400.1157,54.6715,-55.945],[-401.7777,54.4459,-67.4428],[-395.6647,54.551,-65.5084],[-391.0677,53.8509,-59.4716],[-386.8577,54.0379,-57.7458],[-381.2527,54.1566,-57.6079],[-382.1487,53.9233,-68.0765],[-378.1117,55.2696,-75.5946],[-375.9717,57.673,-87.6704],[-377.3097,58.1746,-97.0323],[-380.8247,57.5756,-103.8508],[-377.1677,57.9105,-94.3342],[-376.7667,56.3313,-82.0837],[-374.2967,55.2095,-68.3527],[-376.3087,54.426,-60.551],[-379.2867,54.3809,-54.3402],[-385.6157,53.9889,-58.7386],[-389.9507,53.9064,-57.8531]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79144","name":"Defias Overseer Patrol","speed":1.15,"pathId":791440,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-380.0837,54.996,-49.1424],[-383.3687,55.6327,-44.0311],[-391.1887,56.0001,-48.049],[-400.9697,55.6847,-52.4963],[-403.1177,54.114,-59.166],[-401.4897,54.8692,-69.0781],[-397.7817,55.2284,-68.659],[-392.5987,54.2421,-58.4741],[-382.0777,54.7927,-53.6907],[-373.5707,55.4138,-49.8229],[-367.5697,55.4553,-57.1317],[-358.5007,54.4561,-62.8938],[-349.6317,56.0778,-62.7871],[-358.5667,54.4549,-63.6458],[-366.8677,55.1759,-63.6936],[-369.1027,55.7816,-68.7988],[-373.6357,55.1671,-75.178],[-378.5057,55.3538,-76.8168],[-383.7767,53.8133,-67.4703],[-384.6437,53.8018,-60.7499],[-377.1097,54.4166,-53.4688]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79152","name":"Defias Overseer Patrol","speed":1.15,"pathId":791520,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-400.9877,59.848,-108.4098],[-407.9577,59.2874,-118.7998],[-414.8067,58.3295,-120.4968],[-424.4927,55.5058,-115.3328],[-431.6597,55.3187,-107.4898],[-441.7087,55.1171,-114.2748],[-438.5577,54.8408,-119.8668],[-429.9027,55.0571,-116.7048],[-422.7327,56.0513,-118.3238],[-418.1117,57.7375,-124.1918],[-410.6067,58.0429,-131.8718],[-405.1157,58.7358,-125.2128],[-408.4687,59.1262,-119.0598]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79188","name":"Defias Evoker Patrol","speed":1.15,"pathId":791880,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-395.2877,57.8397,-106.3738],[-396.3807,57.1137,-115.1198],[-404.0307,58.6258,-123.2738],[-393.4997,56.7825,-118.2858],[-383.7657,57.6166,-113.2498],[-376.3617,58.5081,-110.7558],[-375.5787,58.6416,-102.9828],[-385.9007,58.3475,-100.9828],[-395.0047,59.2601,-95.2886],[-400.9257,58.4156,-91.1296]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79189","name":"Defias Overseer Patrol","speed":1.15,"pathId":791890,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-396.1457,59.0004,-94.8145],[-389.2327,57.442,-103.3008],[-382.5507,57.0778,-107.6118],[-383.1447,59.4163,-122.7548],[-390.3827,59.0214,-125.4008],[-398.6537,59.2768,-130.0018],[-403.0507,58.7695,-125.4798],[-397.2727,57.2892,-116.0988],[-394.7247,57.7594,-105.9068],[-398.8207,58.7621,-100.3758],[-398.9857,58.5589,-98.5215]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79229","name":"Defias Wizard Patrol","speed":1.15,"pathId":792290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-589.1437,50.6918,-278.1158],[-595.6487,49.9871,-283.4308],[-600.2537,47.6012,-292.6168],[-600.7517,47.7582,-297.7288],[-597.2737,48.2585,-301.5018],[-590.7937,47.9888,-302.4218],[-579.3817,48.6283,-296.2858],[-575.7677,48.6689,-294.9608],[-568.9727,49.267,-289.6268],[-560.1017,49.0378,-289.3248],[-548.3467,49.5681,-289.5218],[-558.3567,49.0641,-288.8798],[-567.6767,49.2689,-290.4708],[-574.6787,48.7966,-293.7078],[-581.0557,47.1116,-299.0118],[-589.4307,47.8092,-302.8828],[-595.2567,48.2425,-302.6598],[-601.2417,47.8393,-298.6528],[-601.5397,47.8595,-291.1838],[-597.8127,49.4407,-284.5738],[-590.6107,51.1463,-279.7918],[-582.8557,50.3683,-273.9848],[-578.5407,50.4106,-268.4728],[-577.1387,50.6948,-264.6328],[-576.7217,51.2727,-255.1038],[-577.1427,50.7245,-264.0648],[-578.4347,50.2192,-269.5288],[-581.4757,50.0996,-271.8888]],"members":[{"id":"member","entityId":"entry-4418","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79230","name":"Defias Taskmaster Patrol","speed":1.15,"pathId":792300,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-579.5597,50.4095,-268.1478],[-576.1847,50.799,-261.9268],[-581.8497,50.7786,-262.6468],[-582.4327,49.9166,-269.8398],[-585.0807,50.3288,-275.0498],[-591.9057,51.2402,-279.7448],[-599.5447,47.9941,-289.3308],[-591.4527,47.9657,-303.1278],[-600.0437,48.0861,-306.4618],[-600.8617,47.8619,-298.5588],[-604.2487,47.7936,-292.6988],[-600.6517,50.0045,-283.3838],[-589.8067,50.9558,-279.1648],[-581.8957,50.0249,-271.0488]],"members":[{"id":"member","entityId":"entry-4417","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79244","name":"Defias Overseer Patrol","speed":1.15,"pathId":792440,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-504.0547,51.7866,-208.3898],[-496.1557,49.3813,-216.7488],[-486.0237,48.6944,-223.8478],[-479.6007,49.4067,-235.5018],[-480.7867,49.5668,-255.6228],[-480.6767,49.2881,-238.0248],[-484.0817,48.9363,-228.4558],[-489.7137,48.7114,-221.8968],[-496.8657,49.366,-217.4778],[-501.4257,51.3394,-212.4988],[-504.2147,52.0335,-206.9748],[-504.2127,52.9621,-202.6558]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79245","name":"Defias Evoker Patrol","speed":1.15,"pathId":792450,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-504.5957,51.0267,-213.0488],[-498.6447,49.3176,-218.6698],[-491.5287,48.2111,-223.3658],[-484.9657,48.9432,-233.8178],[-483.6917,49.2149,-239.7518],[-483.7737,49.3305,-245.6908],[-483.5487,49.5684,-254.8848],[-483.6377,49.0625,-241.8388],[-485.1137,48.9332,-234.5178],[-491.9267,48.0572,-225.9208],[-494.0527,48.3353,-222.5778],[-498.7997,49.4578,-217.7518],[-502.6277,50.9318,-215.4928],[-505.3737,51.4753,-209.7258],[-505.7117,52.9302,-201.6618]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79260","name":"Defias Wizard Patrol","speed":1.15,"pathId":792600,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-637.3727,13.0375,-126.0588],[-632.4697,13.696,-131.2088],[-622.1797,13.6879,-133.3368],[-610.7497,14.0087,-133.8728],[-601.1987,15.8859,-133.4738],[-593.5737,17.7762,-132.3498],[-587.7267,18.6683,-133.9778],[-581.2217,18.4554,-138.8868],[-580.4037,18.8492,-144.9468],[-584.3047,18.168,-137.1558],[-588.0097,18.749,-134.3018],[-595.2827,17.1212,-132.5438],[-606.6087,14.8372,-134.8738],[-619.0857,13.9207,-134.1908],[-630.6197,13.3451,-130.3868],[-636.4797,13.1075,-126.9848],[-640.4447,11.2816,-119.1768],[-641.9827,10.3442,-114.6398],[-646.6447,8.5112,-111.3648]],"members":[{"id":"member","entityId":"entry-4418","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79273","name":"Defias Overseer Patrol","speed":1.15,"pathId":792730,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-491.6177,54.1629,-181.3878],[-498.1857,53.586,-180.9718],[-502.4707,53.5036,-183.7928],[-506.0087,53.2997,-193.5808],[-496.3577,53.3232,-193.9448],[-490.0147,53.6618,-192.3628],[-492.1137,53.6751,-187.4148]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79280","name":"Defias Overseer Patrol","speed":1.15,"pathId":792800,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-501.1007,54.0345,-178.5178],[-506.1737,53.792,-170.6218],[-509.4587,53.4422,-159.0528],[-512.3717,53.0524,-155.5568],[-522.1037,52.2217,-153.6398],[-511.0757,53.2443,-156.6438],[-507.4377,53.3306,-163.5648],[-506.9977,53.7551,-170.2008],[-502.5137,54.0341,-177.7228],[-502.8197,53.1036,-185.8928],[-503.6677,53.2839,-192.1428]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79294","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":792940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-697.6617,8.7277,-95.7356],[-688.7347,8.1493,-96.7807],[-701.5327,8.9358,-96.1538],[-714.4847,8.8041,-96.7272],[-721.1347,8.572,-97.0217],[-726.5277,9.0341,-85.5159],[-728.1297,9.0839,-81.3772],[-723.5537,8.6732,-92.601],[-718.5177,8.6501,-96.1975],[-709.7817,8.9105,-95.9779]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79302","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":793020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-730.0607,8.8011,-74.245],[-729.4057,9.075,-77.1654],[-731.7477,8.2344,-68.9675],[-731.3837,9.0992,-58.8174],[-729.2617,9.2409,-46.8814],[-729.2457,8.9591,-36.0481],[-732.2587,8.4879,-23.4798],[-736.4797,8.87,-16.3474],[-743.4127,9.1018,-9.5903],[-752.7727,8.9157,-3.0158],[-740.8377,9.1839,-12.3893],[-731.7867,8.4846,-22.1444],[-727.7387,8.576,-30.9541],[-726.9277,9.0181,-43.1842],[-729.0397,9.4228,-53.4491],[-731.5237,8.8925,-61.0884]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79310","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":793100,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-783.2947,26.5838,-79.8274],[-786.9077,26.329,-84.707],[-790.9547,27.936,-98.3692],[-792.4997,28.2941,-103.9618],[-786.2327,27.1812,-92.1156],[-782.8567,26.5988,-83.4019],[-776.4667,26.9103,-84.0802],[-776.9687,26.5255,-88.592],[-778.4607,22.4584,-97.0753],[-781.3817,22.2302,-102.9248],[-786.3887,17.4035,-112.9508],[-790.6677,17.2766,-118.4748],[-784.3377,18.5723,-109.8668],[-780.7637,22.2763,-102.6538],[-778.4497,22.4667,-95.9267],[-776.8347,26.9009,-86.3064],[-776.4237,26.9112,-82.7037]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79313","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":793130,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-783.2957,18.5228,-47.0225],[-780.8837,18.1312,-57.6292],[-779.8977,17.8086,-67.8579],[-780.7547,17.5239,-78.736],[-783.2787,17.3315,-87.9733],[-787.6647,17.1463,-99.7822],[-795.6627,16.9487,-117.2938],[-790.8697,17.2655,-121.2068],[-793.7537,17.308,-128.6168],[-796.5817,16.9172,-123.1378],[-799.1577,16.9593,-120.1088],[-791.8717,17.0583,-107.4868],[-785.9997,17.1555,-98.2201],[-783.1107,17.2771,-90.2063],[-782.0687,17.4472,-82.5701],[-780.0637,17.5844,-75.9874],[-780.7897,17.9336,-63.7448],[-782.4637,18.1795,-56.1276]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79322","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":793220,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-803.2017,17.0302,-120.6298],[-794.4857,17.0704,-108.9668],[-789.9327,17.1933,-98.7259],[-787.0377,17.3588,-87.8993],[-785.1497,17.5971,-76.0223],[-783.7757,17.9057,-64.5571],[-784.8787,18.2561,-53.9884],[-784.4657,18.5533,-46.1787],[-787.6297,18.8832,-38.511],[-795.7917,19.1807,-31.522],[-786.4007,18.8028,-40.4272],[-784.0387,18.4852,-47.8884],[-784.6697,18.1243,-57.4208],[-782.3817,17.8085,-67.7975],[-784.7727,17.4122,-84.9504],[-789.2057,17.1618,-99.9488],[-795.1197,17.0482,-111.0828]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79352","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":793520,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-838.9407,17.0273,-117.1078],[-831.2337,17.0668,-122.1938],[-826.3877,17.0501,-123.0028],[-834.2027,17.0248,-122.0008],[-840.6797,17.03,-115.4628],[-849.8947,17.1405,-101.8518],[-854.8167,17.3756,-87.6227],[-856.4517,17.5623,-78.4293],[-856.5567,17.242,-66.7606],[-856.2977,18.202,-56.7422],[-853.0787,18.6714,-44.1914],[-848.9917,19.0242,-36.0599],[-841.4097,19.3742,-28.4685],[-834.2837,19.5785,-24.0791],[-825.6437,19.7624,-20.3305],[-835.0517,19.499,-25.521],[-844.1757,19.0748,-34.389],[-850.6547,18.6746,-43.7551],[-853.3247,18.3014,-53.5549],[-854.8777,17.1991,-67.8279],[-854.1527,17.5241,-80.7551],[-853.2537,17.4093,-86.6421],[-847.0207,17.21,-100.0908],[-842.0417,17.1418,-107.9748],[-837.2817,17.0709,-116.3828]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79360","name":"Defias Evoker Patrol","speed":1.15,"pathId":793600,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-648.0137,7.0771,-101.3248],[-643.1877,8.3752,-106.8948],[-638.2147,10.7023,-116.1578],[-635.7777,12.872,-123.2178],[-629.9837,13.2949,-127.7498],[-621.1187,12.878,-125.6338],[-617.7157,13.8015,-121.6358],[-617.5017,13.4505,-112.4118],[-614.9817,14.1376,-121.3088],[-613.6737,13.3276,-131.9738],[-619.7467,14.4957,-135.8608],[-626.8357,13.4427,-128.4218],[-633.9127,12.9916,-127.5358],[-637.2567,12.7422,-121.5138],[-638.9357,10.1439,-112.9188],[-642.3457,8.7977,-108.4678],[-650.9817,7.3005,-110.7368]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79361","name":"Defias Overseer Patrol","speed":1.15,"pathId":793610,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-640.2207,10.4548,-115.5328],[-637.0967,12.12,-119.6118],[-634.1717,12.9858,-125.7238],[-627.4927,13.3672,-129.8028],[-620.9767,13.1764,-131.1658],[-612.6187,13.7728,-130.2608],[-604.6667,15.3822,-131.3438],[-596.0477,16.7491,-131.8698],[-589.0937,18.5584,-132.6698],[-581.6517,18.092,-137.0828],[-579.2297,18.9115,-144.1548],[-582.2047,18.1291,-135.8298],[-587.8537,18.4842,-132.7668],[-595.5197,17.0049,-131.5098],[-606.4207,14.6987,-132.4888],[-617.0227,13.3519,-131.7738],[-625.2767,13.2226,-130.2118],[-635.0067,12.9193,-124.7148],[-640.2537,10.6504,-116.7038],[-643.1177,9.137,-110.4408],[-649.3617,7.0889,-107.3198]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79373","name":"Defias Overseer Patrol","speed":1.15,"pathId":793730,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-399.8267,56.4552,-158.9048],[-401.9747,57.0699,-151.9858],[-403.8917,57.7375,-144.2988],[-401.4277,56.8875,-154.3698],[-400.2577,56.8222,-161.6338],[-401.8057,57.1419,-167.4948],[-405.7097,57.304,-170.6598],[-417.1187,55.1901,-179.5428],[-407.2557,56.6005,-172.6948],[-402.7667,57.2247,-169.5558]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79374","name":"Defias Evoker Patrol","speed":1.15,"pathId":793740,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-399.1917,57.3917,-167.0438],[-397.4717,56.42,-157.8958],[-399.4277,56.9835,-150.1158],[-402.1857,58.0449,-142.3078],[-398.4617,56.814,-152.1078],[-397.2517,56.7481,-161.7198],[-400.6737,57.3317,-168.7508],[-404.2867,56.8651,-173.9198],[-416.4497,55.0575,-182.8028],[-408.2727,55.7775,-177.1768],[-403.0247,57.1892,-172.1918],[-399.7307,57.3758,-169.0628]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79376","name":"Defias Evoker Patrol","speed":1.15,"pathId":793760,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-584.7477,50.4965,-272.5568],[-589.4427,50.6854,-276.0148],[-596.4927,50.8313,-280.1568],[-600.3607,49.3223,-284.9868],[-603.9897,47.7061,-294.5998],[-603.9537,47.7995,-300.2068],[-595.2847,48.231,-303.9878],[-589.5927,47.6788,-304.5428],[-582.4627,47.0809,-299.2558],[-577.1007,48.1079,-297.6978],[-569.1747,48.9319,-293.2308],[-562.2477,49.1158,-292.1978],[-549.5277,49.5699,-292.5498],[-555.8097,49.5701,-292.5418],[-566.2327,48.7741,-294.6068],[-573.7497,48.3028,-297.8408],[-583.8367,48.1639,-304.1678],[-591.8467,47.8343,-307.0898],[-599.3707,48.1736,-304.9378],[-602.8627,47.7535,-299.1308],[-601.7707,48.5715,-287.2888],[-599.6377,49.9321,-283.3978],[-593.1587,51.0463,-279.4468],[-587.0617,50.65,-274.2138],[-581.8567,50.196,-268.5378],[-579.7987,50.7023,-261.9718],[-579.0997,51.2727,-256.2068],[-578.6207,50.6467,-264.2848]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-79168","name":"Rhahk'zor","position":[-448.1427,54.5567,-192.9168]},{"id":"creature-79223","name":"Sneed","position":[-512.9407,49.8013,-289.4548]},{"id":"creature-79206","name":"Gilnid","position":[-574.3897,19.4341,-177.3638]},{"id":"creature-79337","name":"Mr. Smite","position":[-797.2147,20.4973,-22.8489]},{"id":"creature-79344","name":"Cookie","position":[-853.6807,17.1978,-67.5862]},{"id":"creature-79333","name":"Captain Greenskin","position":[-820.0637,41.7362,-59.6218]},{"id":"creature-79336","name":"Edwin VanCleef","position":[-819.8267,39.4232,-87.3708]}],"objectiveOrder":[{"id":"creature-79168","name":"Rhahk'zor","position":[-448.1427,54.5567,-192.9168]},{"id":"creature-79223","name":"Sneed","position":[-512.9407,49.8013,-289.4548]},{"id":"creature-79206","name":"Gilnid","position":[-574.3897,19.4341,-177.3638]},{"id":"creature-79337","name":"Mr. Smite","position":[-797.2147,20.4973,-22.8489]},{"id":"creature-79344","name":"Cookie","position":[-853.6807,17.1978,-67.5862]},{"id":"creature-79333","name":"Captain Greenskin","position":[-820.0637,41.7362,-59.6218]},{"id":"creature-79336","name":"Edwin VanCleef","position":[-819.8267,39.4232,-87.3708]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":5639,"id":180024,"map":36,"orientation":3.082,"phaseMask":1,"position_x":-32.1232,"position_y":-374.64,"position_z":59.06,"rotation0":0,"rotation1":0,"rotation2":0.999556,"rotation3":0.0297919,"spawnMask":1,"spawntimesecs":-1,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26182,"id":16399,"map":36,"orientation":3.12412,"phaseMask":1,"position_x":-168.514,"position_y":-579.861,"position_z":19.3159,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26183,"id":17153,"map":36,"orientation":6.26573,"phaseMask":1,"position_x":-262.714,"position_y":-482.361,"position_z":49.4353,"rotation0":0,"rotation1":0,"rotation2":-0.00872612,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26184,"id":17154,"map":36,"orientation":3.12412,"phaseMask":1,"position_x":-242.965,"position_y":-578.561,"position_z":51.1366,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26185,"id":16400,"map":36,"orientation":1.55334,"phaseMask":1,"position_x":-290.294,"position_y":-536.96,"position_z":49.4353,"rotation0":0,"rotation1":0,"rotation2":0.700909,"rotation3":0.713251,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26186,"id":1731,"map":36,"orientation":0.436332,"phaseMask":1,"position_x":-81.0082,"position_y":-394.329,"position_z":61.5258,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26187,"id":1732,"map":36,"orientation":0.349066,"phaseMask":1,"position_x":-127.872,"position_y":-444.354,"position_z":57.161,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26188,"id":101831,"map":36,"orientation":1.72787,"phaseMask":1,"position_x":-188.137,"position_y":-460.313,"position_z":54.5591,"rotation0":0,"rotation1":0,"rotation2":0.760406,"rotation3":0.649449,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26189,"id":1732,"map":36,"orientation":-2.33874,"phaseMask":1,"position_x":-211.943,"position_y":-518.46,"position_z":52.8603,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26190,"id":19019,"map":36,"orientation":-1.37881,"phaseMask":1,"position_x":-214.701,"position_y":-545.259,"position_z":19.3065,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26191,"id":123207,"map":36,"orientation":1.55334,"phaseMask":1,"position_x":-205.664,"position_y":-574.581,"position_z":20.9987,"rotation0":0,"rotation1":0,"rotation2":0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26192,"id":101834,"map":36,"orientation":3.29869,"phaseMask":1,"position_x":-165.404,"position_y":-576.924,"position_z":19.3064,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784664,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26193,"id":123210,"map":36,"orientation":-1.58825,"phaseMask":1,"position_x":-205.805,"position_y":-583.964,"position_z":20.9987,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26194,"id":123208,"map":36,"orientation":3.12414,"phaseMask":1,"position_x":-210.428,"position_y":-579.201,"position_z":20.9987,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26195,"id":123209,"map":36,"orientation":-0.017454,"phaseMask":1,"position_x":-201.043,"position_y":-579.374,"position_z":20.9987,"rotation0":0,"rotation1":0,"rotation2":-0.00872689,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26196,"id":19019,"map":36,"orientation":2.77507,"phaseMask":1,"position_x":-170.766,"position_y":-588.508,"position_z":19.3276,"rotation0":0,"rotation1":0,"rotation2":0.983255,"rotation3":0.182237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26197,"id":101832,"map":36,"orientation":1.72787,"phaseMask":1,"position_x":-287.282,"position_y":-539.877,"position_z":49.4321,"rotation0":0,"rotation1":0,"rotation2":0.760406,"rotation3":0.649449,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26198,"id":75293,"map":36,"orientation":-1.55334,"phaseMask":1,"position_x":-312.046,"position_y":-477.501,"position_z":49.5979,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26199,"id":1731,"map":36,"orientation":-0.069813,"phaseMask":1,"position_x":-286.104,"position_y":-577.582,"position_z":50.9829,"rotation0":0,"rotation1":0,"rotation2":-0.0348994,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26200,"id":123211,"map":36,"orientation":6.17847,"phaseMask":1,"position_x":-205.973,"position_y":-613.262,"position_z":19.4004,"rotation0":0,"rotation1":0,"rotation2":-0.0523348,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26201,"id":123213,"map":36,"orientation":1.64061,"phaseMask":1,"position_x":-196.491,"position_y":-605.381,"position_z":19.4004,"rotation0":0,"rotation1":0,"rotation2":0.731353,"rotation3":0.681999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26202,"id":123212,"map":36,"orientation":4.25861,"phaseMask":1,"position_x":-196.417,"position_y":-610.98,"position_z":19.4004,"rotation0":0,"rotation1":0,"rotation2":-0.848047,"rotation3":0.529921,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26203,"id":17155,"map":36,"orientation":-0.767945,"phaseMask":1,"position_x":-106.409,"position_y":-617.284,"position_z":13.8495,"rotation0":0,"rotation1":0,"rotation2":-0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26204,"id":1732,"map":36,"orientation":2.25148,"phaseMask":1,"position_x":-106.249,"position_y":-611.118,"position_z":16.6945,"rotation0":0,"rotation1":0,"rotation2":0.902586,"rotation3":0.430509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1582,"guid":26205,"id":16398,"map":36,"orientation":-0.890294,"phaseMask":1,"position_x":-107.562,"position_y":-659.674,"position_z":7.21211,"rotation0":-0.002224,"rotation1":0.0111,"rotation2":-0.430507,"rotation3":0.902516,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26206,"id":101833,"map":36,"orientation":1.90241,"phaseMask":1,"position_x":-96.9277,"position_y":-670.597,"position_z":7.40338,"rotation0":0,"rotation1":0,"rotation2":0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26207,"id":3705,"map":36,"orientation":-2.63545,"phaseMask":1,"position_x":-89.3315,"position_y":-682.574,"position_z":7.42373,"rotation0":0,"rotation1":0,"rotation2":-0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26208,"id":3705,"map":36,"orientation":1.18682,"phaseMask":1,"position_x":-43.7597,"position_y":-733.648,"position_z":9.18536,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1582,"guid":26209,"id":19019,"map":36,"orientation":0.017453,"phaseMask":1,"position_x":-141.933,"position_y":-770.301,"position_z":2.44696,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26210,"id":75293,"map":36,"orientation":1.16937,"phaseMask":1,"position_x":-77.7409,"position_y":-788.596,"position_z":26.1097,"rotation0":0,"rotation1":0,"rotation2":0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1582,"guid":26211,"id":144111,"map":36,"orientation":2.33874,"phaseMask":1,"position_x":2.69086,"position_y":-781.633,"position_z":9.76985,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1582,"guid":26212,"id":3662,"map":36,"orientation":1.51844,"phaseMask":1,"position_x":-144.899,"position_y":-891.56,"position_z":4.30954,"rotation0":0,"rotation1":0,"rotation2":0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":30533,"id":13965,"map":36,"orientation":1.69297,"phaseMask":1,"position_x":-191.415,"position_y":-457.446,"position_z":54.4391,"rotation0":0,"rotation1":0,"rotation2":0.748955,"rotation3":0.662621,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":30534,"id":16397,"map":36,"orientation":1.81514,"phaseMask":1,"position_x":-100.502,"position_y":-668.771,"position_z":7.41049,"rotation0":0,"rotation1":0,"rotation2":0.788011,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30536,"id":1732,"map":36,"orientation":-0.628319,"phaseMask":1,"position_x":-146.761,"position_y":-519.81,"position_z":55.0914,"rotation0":0,"rotation1":0,"rotation2":-0.309017,"rotation3":0.951056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30537,"id":19019,"map":36,"orientation":-0.401426,"phaseMask":1,"position_x":-236.247,"position_y":-560.498,"position_z":19.3065,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30538,"id":75293,"map":36,"orientation":-0.139626,"phaseMask":1,"position_x":-209.206,"position_y":-602.72,"position_z":19.3065,"rotation0":0,"rotation1":0,"rotation2":-0.0697563,"rotation3":0.997564,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30539,"id":19019,"map":36,"orientation":0.802851,"phaseMask":1,"position_x":-123.418,"position_y":-705.997,"position_z":8.44232,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30540,"id":75293,"map":36,"orientation":1.55334,"phaseMask":1,"position_x":-63.0889,"position_y":-797.013,"position_z":39.0067,"rotation0":0,"rotation1":0,"rotation2":0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31957,"id":3662,"map":36,"orientation":0.698132,"phaseMask":1,"position_x":-103.57,"position_y":-723.359,"position_z":8.49449,"rotation0":0,"rotation1":0,"rotation2":0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34847,"id":1731,"map":36,"orientation":-1.06465,"phaseMask":1,"position_x":-56.9023,"position_y":-349.056,"position_z":57.4095,"rotation0":0,"rotation1":0,"rotation2":-0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34848,"id":19019,"map":36,"orientation":0.767945,"phaseMask":1,"position_x":-200.774,"position_y":-574.159,"position_z":20.9768,"rotation0":0,"rotation1":0,"rotation2":0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34849,"id":1732,"map":36,"orientation":-1.37881,"phaseMask":1,"position_x":-140.057,"position_y":-602.209,"position_z":17.7757,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34850,"id":75293,"map":36,"orientation":0.226893,"phaseMask":1,"position_x":-300.887,"position_y":-532.542,"position_z":49.4236,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34851,"id":1731,"map":36,"orientation":0.959931,"phaseMask":1,"position_x":-314.51,"position_y":-592.77,"position_z":51.2438,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34852,"id":19019,"map":36,"orientation":-1.41372,"phaseMask":1,"position_x":-185.016,"position_y":-692.186,"position_z":8.81941,"rotation0":0,"rotation1":0,"rotation2":-0.649449,"rotation3":0.760405,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a","clientArchiveHashes":{"common-2.mpq/World/Maps/DeadminesInstance":"d7e35db77547a3ab50e2ba25afed6b1e4f83c6b57f173b6e3e59753a4436f9d0","patch/World/maps/DeadminesInstance":"0741f7683ebaf82477c3f30e8cd1a5400673f69924cfc8c6ec314dc354adfa54","patch-2/World/maps/DeadminesInstance":"c88959c69a85dd34b870b56522ce9a58db60c5ec1890fdf680306ea0753f5e22"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/deadmines/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["22/22 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"wailing-caverns","title":"Wailing Caverns","mapId":43,"lfgDungeonIds":[1],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[15,25]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Wailing Caverns","theme":"Instanced dungeon","summary":"Fight through Wailing Caverns, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Wailing Caverns...","unchartedAreaName":"Uncharted Wailing Caverns","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":701.1907},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/43-wailingcaverns/visual.glb","checksum":"459f50a5dff5c6b2c12741b90b9b7c57898fe768510c9cf5f5c947054ec59c57","size":5390988,"triangleCount":160890}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/43-wailingcaverns/collision.glb","checksum":"fa308b4b7110a35d0b0e2c89d50416f8191aa95566487b196e4de5d3e1eb1cae","size":1140784,"triangleCount":90000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/43-wailingcaverns/navigation.glb","checksum":"62cbc347e644fe6b8ef2851cb80881b4cea51f4ed65254a4d86fad41a72e2f1e","size":589628,"triangleCount":45732}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-110.0811,-126.9218,-397.9609],"max":[435.1384,-8.2673,575.9151]},"entrance":{"name":"Wailing Caverns Entrance","footPosition":[163.4694,-73.4728,132.8901],"forward":[-0.8285565958400999,0,-0.5599053201121288],"yaw":-2.1650678515075716},"areas":[{"id":"entrance","name":"Wailing Caverns Entrance","center":[163.4694,-73.4728,132.8901],"radius":35},{"id":"area-lady-anacondra","name":"Lady Anacondra's Encounter","center":[-15.3655,-87.5144,297.1661],"radius":42},{"id":"area-lord-cobrahn","name":"Lord Cobrahn's Encounter","center":[151.1184,-72.4422,414.3571],"radius":42},{"id":"area-kresh","name":"Kresh's Encounter","center":[64.3876,-106.5118,319.0741],"radius":42},{"id":"area-lord-pythas","name":"Lord Pythas's Encounter","center":[-36.828,-79.3117,-241.0739],"radius":42},{"id":"area-skum","name":"Skum's Encounter","center":[285.5584,-69.0061,-312.9779],"radius":42},{"id":"area-lord-serpentis","name":"Lord Serpentis's Encounter","center":[24.1944,-84.7163,257.1004],"radius":42},{"id":"area-verdan-the-everliving","name":"Verdan the Everliving's Encounter","center":[81.8348,-30.8067,32.2466],"radius":42},{"id":"area-mutanus-the-devourer","name":"Mutanus the Devourer's Encounter","center":[-151.27,-102.82,252.26],"radius":42}],"entities":{"entry-5053":{"id":"entry-5053","kind":"mob","name":"Deviate Crocolisk","combat":{"serverEntry":5053,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0.95,"delivery":"melee","effect":{"kind":"damage","multiplier":0.95},"id":"spell-3604","initialCooldownMs":[4000,7000],"name":"Tendon Rip","range":4.5,"repeatCooldownMs":[10000,12000],"school":"physical","source":{"actionType":11,"comment":"Deviate Crocolisk - In Combat - Cast Tendon Rip","entry":5053,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":3604,"target":"primary"}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"crocolisk"}},"entry-5055":{"id":"entry-5055","kind":"mob","name":"Deviate Lasher","combat":{"serverEntry":5055,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":9000,"damageMultiplier":0.9,"delivery":"area","effect":{"kind":"damage","multiplier":0.9},"id":"spell-7342","initialCooldownMs":[4000,7000],"name":"Wide Slash","radius":8,"range":8,"repeatCooldownMs":[9000,12000],"school":"physical","source":{"actionType":11,"comment":"Deviate Lasher - In Combat - Cast Wide Slash","entry":5055,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":7342,"target":"nearby-party"}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"plant"}},"entry-3840":{"id":"entry-3840","kind":"mob","name":"Druid of the Fang","combat":{"serverEntry":3840,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":2400,"damageMultiplier":1.12,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.12},"id":"spell-9532","initialCooldownMs":[0,0],"name":"Lightning Bolt","range":30,"repeatCooldownMs":[2400,3800],"school":"nature","source":{"actionType":11,"comment":"Druid of the Fang - In Combat - Cast Lightning Bolt","entry":3840,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":9532,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"sleep"},"id":"spell-8040","initialCooldownMs":[8000,11000],"name":"Druid's Slumber","range":30,"repeatCooldownMs":[10000,20000],"school":"nature","source":{"actionType":11,"comment":"Druid of the Fang - In Combat - Cast Druid's Slumber","entry":3840,"eventType":0,"rowId":1,"sourceType":0,"targetType":6},"spellId":8040,"target":"random-party"},{"animation":"cast","condition":{"amount":400,"kind":"friendly-missing-health","range":40},"cooldownMs":12000,"damageMultiplier":0,"delivery":"projectile","effect":{"kind":"heal","multiplier":1.25},"id":"spell-5187","initialCooldownMs":[0,0],"name":"Healing Touch","range":40,"repeatCooldownMs":[12000,18000],"school":"nature","source":{"actionType":11,"comment":"Druid of the Fang - Friendly Missing Health - Cast Healing Touch","entry":3840,"eventType":14,"rowId":2,"sourceType":0,"targetType":7},"spellId":5187,"target":"lowest-health-friendly"},{"animation":"cast","condition":{"kind":"self-health-percent","maximum":30,"minimum":0},"cooldownMs":20000,"damageMultiplier":0,"delivery":"melee","effect":{"form":"serpent","kind":"transform"},"id":"spell-8041","initialCooldownMs":[0,0],"maximumCasts":1,"name":"Serpent Form","range":0,"repeatCooldownMs":[20000,25000],"school":"nature","source":{"actionType":11,"comment":"Druid of the Fang - Between 0-30% Health - Cast Serpent Form","entry":3840,"eventType":2,"rowId":3,"sourceType":0,"targetType":1},"spellId":8041,"target":"self"}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid"}},"entry-3636":{"id":"entry-3636","kind":"mob","name":"Deviate Ravager","combat":{"serverEntry":3636,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid"}},"entry-3637":{"id":"entry-3637","kind":"mob","name":"Deviate Guardian","combat":{"serverEntry":3637,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"self-health-percent","maximum":15,"minimum":0},"cooldownMs":60000,"damageMultiplier":0,"delivery":"area","effect":{"kind":"call-for-help","radius":40},"id":"call-for-help","initialCooldownMs":[0,0],"maximumCasts":1,"name":"Call for Help","radius":40,"range":40,"repeatCooldownMs":[60000,60000],"school":"physical","source":{"actionType":39,"comment":"Deviate Guardian - Between 0-15% Health - Call for help","entry":3637,"eventType":2,"rowId":0,"sourceType":0,"targetType":1},"target":"self"}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid"}},"entry-3640":{"id":"entry-3640","kind":"mob","name":"Evolving Ectoplasm","combat":{"serverEntry":3640,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"ooze"}},"entry-5756":{"id":"entry-5756","kind":"mob","name":"Deviate Venomwing","combat":{"serverEntry":5756,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":7000,"damageMultiplier":1,"delivery":"projectile","effect":{"kind":"damage","multiplier":1},"id":"spell-7951","initialCooldownMs":[3000,8000],"name":"Toxic Spit","range":30,"repeatCooldownMs":[7000,12000],"school":"nature","source":{"actionType":11,"comment":"Deviate Venomwing - In Combat - Cast Toxic Spit","entry":5756,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":7951,"target":"primary"}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"winged"}},"entry-3671":{"id":"entry-3671","kind":"boss","name":"Lady Anacondra","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3671,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":2400,"damageMultiplier":1.12,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.12},"id":"spell-9532","initialCooldownMs":[0,0],"name":"Lightning Bolt","range":30,"repeatCooldownMs":[2400,3800],"school":"nature","source":{"actionType":11,"comment":"Lady Anacondra - In Combat - Cast Lightning Bolt","entry":3671,"eventType":0,"rowId":1,"sourceType":0,"targetType":2},"spellId":9532,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"sleep"},"id":"spell-8040","initialCooldownMs":[8000,11000],"name":"Druid's Slumber","range":30,"repeatCooldownMs":[10000,20000],"school":"nature","source":{"actionType":11,"comment":"Lady Anacondra - In Combat - Cast Druid's Slumber","entry":3671,"eventType":0,"rowId":2,"sourceType":0,"targetType":6},"spellId":8040,"target":"random-party"},{"animation":"cast","condition":{"amount":400,"kind":"friendly-missing-health","range":40},"cooldownMs":12000,"damageMultiplier":0,"delivery":"projectile","effect":{"kind":"heal","multiplier":1.25},"id":"spell-5187","initialCooldownMs":[0,0],"name":"Healing Touch","range":40,"repeatCooldownMs":[12000,18000],"school":"nature","source":{"actionType":11,"comment":"Lady Anacondra - Friendly Missing Health - Cast Healing Touch","entry":3671,"eventType":14,"rowId":3,"sourceType":0,"targetType":7},"spellId":5187,"target":"lowest-health-friendly"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":40000,"damageMultiplier":0,"delivery":"melee","effect":{"aura":"thorns","durationMs":40000,"kind":"aura","magnitude":0.08},"id":"spell-8148","initialCooldownMs":[1000,3000],"name":"Thorns","range":0,"repeatCooldownMs":[40000,40000],"school":"nature","source":{"actionType":11,"comment":"Lady Anacondra - In Combat - Cast Thorns","entry":3671,"eventType":0,"rowId":4,"sourceType":0,"targetType":1},"spellId":8148,"target":"self"}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid"}},"entry-3653":{"id":"entry-3653","kind":"boss","name":"Kresh","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3653,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"turtle"}},"entry-5755":{"id":"entry-5755","kind":"mob","name":"Deviate Viper","combat":{"serverEntry":5755,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":12000,"damageMultiplier":0.9,"delivery":"projectile","effect":{"kind":"damage","multiplier":0.9},"id":"spell-7947","initialCooldownMs":[4000,7000],"name":"Localized Toxin","range":30,"repeatCooldownMs":[12000,15000],"school":"nature","source":{"actionType":11,"comment":"Deviate Viper - In Combat - Cast Localized Toxin","entry":5755,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":7947,"target":"primary"}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid"}},"entry-5048":{"id":"entry-5048","kind":"mob","name":"Deviate Adder","combat":{"serverEntry":5048,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid"}},"entry-3669":{"id":"entry-3669","kind":"boss","name":"Lord Cobrahn","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3669,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":2400,"damageMultiplier":1.12,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.12},"id":"spell-9532","initialCooldownMs":[0,0],"name":"Lightning Bolt","range":30,"repeatCooldownMs":[2400,3800],"school":"nature","source":{"actionType":11,"comment":"Lord Cobrahn - In Combat - Cast Lightning Bolt","entry":3669,"eventType":0,"rowId":2,"sourceType":0,"targetType":2},"spellId":9532,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"sleep"},"id":"spell-8040","initialCooldownMs":[8000,11000],"name":"Druid's Slumber","range":30,"repeatCooldownMs":[10000,20000],"school":"nature","source":{"actionType":11,"comment":"Lord Cobrahn - In Combat - Cast Druid's Slumber","entry":3669,"eventType":0,"rowId":3,"sourceType":0,"targetType":6},"spellId":8040,"target":"random-party"},{"animation":"cast","condition":{"amount":400,"kind":"friendly-missing-health","range":40},"cooldownMs":12000,"damageMultiplier":0,"delivery":"projectile","effect":{"kind":"heal","multiplier":1.25},"id":"spell-5187","initialCooldownMs":[0,0],"name":"Healing Touch","range":40,"repeatCooldownMs":[12000,18000],"school":"nature","source":{"actionType":11,"comment":"Lord Cobrahn - Friendly Missing Health - Cast Healing Touch","entry":3669,"eventType":14,"rowId":4,"sourceType":0,"targetType":7},"spellId":5187,"target":"lowest-health-friendly"},{"animation":"cast","condition":{"kind":"self-health-percent","maximum":30,"minimum":0},"cooldownMs":1,"damageMultiplier":0,"delivery":"melee","effect":{"form":"serpent","kind":"transform"},"id":"spell-7965","initialCooldownMs":[0,0],"maximumCasts":1,"name":"Cobrahn Serpent Form","range":0,"repeatCooldownMs":[1,1],"school":"nature","source":{"actionType":11,"comment":"Lord Cobrahn - Health Between 0-30% - Cast Cobrahn Serpent Form","entry":3669,"eventType":2,"rowId":5,"sourceType":0,"targetType":1},"spellId":7965,"target":"self"}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid"}},"entry-8886":{"id":"entry-8886","kind":"mob","name":"Deviate Python","combat":{"serverEntry":8886,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid"}},"entry-5775":{"id":"entry-5775","kind":"boss","name":"Verdan the Everliving","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":5775,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":3500,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[3500,3500]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":8000,"kind":"control","mechanic":"root"},"id":"spell-8142","initialCooldownMs":[3000,5000],"name":"Grasping Vines","range":30,"repeatCooldownMs":[10000,13000],"school":"nature","source":{"actionType":11,"comment":"Verdan the Everliving - In Combat - Cast Grasping Vines","entry":5775,"eventType":0,"rowId":0,"sourceType":0,"targetType":1},"spellId":8142,"target":"primary"}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid"}},"entry-5761":{"id":"entry-5761","kind":"mob","name":"Deviate Shambler","combat":{"serverEntry":5761,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"self-health-percent","maximum":70,"minimum":0},"cooldownMs":15000,"damageMultiplier":0,"delivery":"melee","effect":{"kind":"heal","multiplier":1.05},"id":"spell-7948","initialCooldownMs":[0,0],"name":"Wild Regeneration","range":30,"repeatCooldownMs":[15000,21000],"school":"nature","source":{"actionType":11,"comment":"Deviate Shambler - Between 0-70% Health - Cast Wild Regeneration","entry":5761,"eventType":2,"rowId":0,"sourceType":0,"targetType":2},"spellId":7948,"target":"lowest-health-friendly"}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid"}},"entry-5056":{"id":"entry-5056","kind":"mob","name":"Deviate Dreadfang","combat":{"serverEntry":5056,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":15000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"fear"},"id":"spell-7399","initialCooldownMs":[3000,9000],"name":"Terrify","range":30,"repeatCooldownMs":[15000,22000],"school":"shadow","source":{"actionType":11,"comment":"Deviate Dreadfang - In Combat - Cast Terrify","entry":5056,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":7399,"target":"primary"}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid"}},"entry-3673":{"id":"entry-3673","kind":"boss","name":"Lord Serpentis","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3673,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":2400,"damageMultiplier":1.12,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.12},"id":"spell-9532","initialCooldownMs":[0,0],"name":"Lightning Bolt","range":30,"repeatCooldownMs":[2400,3800],"school":"nature","source":{"actionType":11,"comment":"Lord Serpentis - In Combat - Cast Lightning Bolt","entry":3673,"eventType":0,"rowId":1,"sourceType":0,"targetType":2},"spellId":9532,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"sleep"},"id":"spell-8040","initialCooldownMs":[8000,11000],"name":"Druid's Slumber","range":30,"repeatCooldownMs":[10000,20000],"school":"nature","source":{"actionType":11,"comment":"Lord Serpentis - In Combat - Cast Druid's Slumber","entry":3673,"eventType":0,"rowId":2,"sourceType":0,"targetType":6},"spellId":8040,"target":"random-party"},{"animation":"cast","condition":{"amount":600,"kind":"friendly-missing-health","range":40},"cooldownMs":12000,"damageMultiplier":0,"delivery":"projectile","effect":{"kind":"heal","multiplier":1.45},"id":"spell-6778","initialCooldownMs":[0,0],"name":"Healing Touch","range":40,"repeatCooldownMs":[12000,18000],"school":"nature","source":{"actionType":11,"comment":"Lord Serpentis - Friendly Missing Health - Cast Healing Touch","entry":3673,"eventType":14,"rowId":3,"sourceType":0,"targetType":7},"spellId":6778,"target":"lowest-health-friendly"}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"serpent"}},"entry-3670":{"id":"entry-3670","kind":"boss","name":"Lord Pythas","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3670,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":2400,"damageMultiplier":1.12,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.12},"id":"spell-9532","initialCooldownMs":[0,0],"name":"Lightning Bolt","range":30,"repeatCooldownMs":[2400,3800],"school":"nature","source":{"actionType":11,"comment":"Lord Pythas - In Combat - Cast Lightning Bolt","entry":3670,"eventType":0,"rowId":1,"sourceType":0,"targetType":2},"spellId":9532,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"sleep"},"id":"spell-8040","initialCooldownMs":[8000,11000],"name":"Druid's Slumber","range":30,"repeatCooldownMs":[10000,20000],"school":"nature","source":{"actionType":11,"comment":"Lord Pythas - In Combat - Cast Druid's Slumber","entry":3670,"eventType":0,"rowId":2,"sourceType":0,"targetType":6},"spellId":8040,"target":"random-party"},{"animation":"cast","condition":{"amount":400,"kind":"friendly-missing-health","range":40},"cooldownMs":12000,"damageMultiplier":0,"delivery":"projectile","effect":{"kind":"heal","multiplier":1.25},"id":"spell-5187","initialCooldownMs":[0,0],"name":"Healing Touch","range":40,"repeatCooldownMs":[12000,18000],"school":"nature","source":{"actionType":11,"comment":"Lord Pythas - Friendly Missing Health - Cast Healing Touch","entry":3670,"eventType":14,"rowId":3,"sourceType":0,"targetType":7},"spellId":5187,"target":"lowest-health-friendly"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":20000,"damageMultiplier":0.9,"delivery":"area","effect":{"kind":"damage","multiplier":0.9},"id":"spell-8147","initialCooldownMs":[6000,9000],"name":"Thunder Clap","radius":10,"range":10,"repeatCooldownMs":[20000,25000],"school":"physical","source":{"actionType":11,"comment":"Lord Pythas - In Combat - Cast Thunder Clap","entry":3670,"eventType":0,"rowId":4,"sourceType":0,"targetType":1},"spellId":8147,"target":"nearby-party"}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid"}},"entry-3674":{"id":"entry-3674","kind":"boss","name":"Skum","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3674,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":4000,"damageMultiplier":1.1,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.1},"id":"spell-6254","initialCooldownMs":[1000,2000],"name":"Chained Bolt","range":30,"repeatCooldownMs":[4000,8000],"school":"nature","source":{"actionType":11,"comment":"Skum - In Combat - Cast Chained Bolt","entry":3674,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":6254,"target":"primary"}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid"}},"entry-3654":{"id":"entry-3654","kind":"boss","name":"Mutanus the Devourer","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3654,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":32400,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":8000,"kind":"control","mechanic":"sleep"},"id":"spell-7967","initialCooldownMs":[11000,15000],"name":"Naralex's Nightmare","range":30,"repeatCooldownMs":[32400,33800],"school":"shadow","source":{"actionType":11,"comment":"Mutanus the Devourer - In Combat - Cast Naralex's Nightmare","entry":3654,"eventType":0,"rowId":2,"sourceType":0,"targetType":6},"spellId":7967,"target":"random-party"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":18000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"fear"},"id":"spell-7399","initialCooldownMs":[8000,11000],"name":"Terrify","range":30,"repeatCooldownMs":[18000,25000],"school":"shadow","source":{"actionType":11,"comment":"Mutanus the Devourer - In Combat - Cast Terrify","entry":3654,"eventType":0,"rowId":3,"sourceType":0,"targetType":2},"spellId":7399,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":15000,"damageMultiplier":1.05,"delivery":"area","effect":{"kind":"damage","multiplier":1.05},"id":"spell-8150","initialCooldownMs":[5000,6000],"name":"Thundercrack","radius":10,"range":10,"repeatCooldownMs":[15000,20000],"school":"nature","source":{"actionType":11,"comment":"Mutanus the Devourer - In Combat - Cast Thundercrack","entry":3654,"eventType":0,"rowId":4,"sourceType":0,"targetType":1},"spellId":8150,"target":"nearby-party"}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.32,"archetype":"humanoid"}}},"staticSpawns":[{"id":"creature-18678","entityId":"entry-5053","position":[161.4354,-105.8268,51.8148],"yaw":-1.03789,"spawnMask":1},{"id":"creature-18679","entityId":"entry-5055","position":[193.2814,-47.7329,63.3336],"yaw":-5.6868,"spawnMask":1},{"id":"creature-18680","entityId":"entry-5055","position":[185.3044,-46.0296,65.2623],"yaw":-1.22809,"spawnMask":1},{"id":"creature-18681","entityId":"entry-5055","position":[190.2134,-47.3,66.3321],"yaw":-4.38246,"spawnMask":1},{"id":"creature-18682","entityId":"entry-3840","position":[191.8214,-47.5395,61.3157],"yaw":-4.39218,"spawnMask":1},{"id":"creature-18683","entityId":"entry-5055","position":[154.5864,-75.5966,68.6937],"yaw":-1.91226,"spawnMask":1},{"id":"creature-18684","entityId":"entry-5055","position":[154.1234,-75.5522,63.7271],"yaw":-2.36478,"spawnMask":1},{"id":"creature-18685","entityId":"entry-5055","position":[159.0284,-75.7701,75.5734],"yaw":-5.01563,"spawnMask":1},{"id":"creature-18686","entityId":"entry-5055","position":[160.2874,-75.644,70.9311],"yaw":-2.03706,"spawnMask":1},{"id":"creature-18687","entityId":"entry-3840","position":[70.7683,-89.4864,120.0631],"yaw":-0.785398,"spawnMask":1},{"id":"creature-18688","entityId":"entry-3636","position":[70.96,-88.8264,106.5701],"yaw":-3.71402,"spawnMask":1},{"id":"creature-18689","entityId":"entry-3636","position":[78.8867,-90.9802,103.4181],"yaw":-5.55015,"spawnMask":1},{"id":"creature-26198","entityId":"entry-3637","position":[70.4921,-90.4158,129.6321],"yaw":-2.95968,"spawnMask":1},{"id":"creature-26199","entityId":"entry-3636","position":[60.7651,-91.3896,138.1801],"yaw":-5.135,"spawnMask":1},{"id":"creature-26200","entityId":"entry-3640","position":[79.9004,-92.2539,184.5961],"yaw":-1.15033,"spawnMask":1},{"id":"creature-26202","entityId":"entry-3637","position":[100.7994,-78.3478,181.8561],"yaw":-1.7531,"spawnMask":1},{"id":"creature-26203","entityId":"entry-5756","position":[193.6354,-47.7516,43.234],"yaw":-0.86582,"spawnMask":1},{"id":"creature-26204","entityId":"entry-3636","position":[53.6151,-89.3414,119.1301],"yaw":-0.293123,"spawnMask":1},{"id":"creature-26206","entityId":"entry-5053","position":[79.1069,-105.9748,71.524],"yaw":-3.23927,"spawnMask":1},{"id":"creature-26216","entityId":"entry-3636","position":[73.6654,-93.7163,197.5661],"yaw":-3.85005,"spawnMask":1},{"id":"creature-26217","entityId":"entry-3637","position":[35.1729,-96.3923,198.0641],"yaw":-5.19525,"spawnMask":1},{"id":"creature-26218","entityId":"entry-3636","position":[33.1489,-95.5925,163.5731],"yaw":-5.81154,"spawnMask":1},{"id":"creature-26220","entityId":"entry-3636","position":[105.5274,-89.6982,228.7161],"yaw":-6.0707,"spawnMask":1},{"id":"creature-26221","entityId":"entry-3637","position":[32.5145,-96.1239,173.3151],"yaw":-6.05171,"spawnMask":1},{"id":"creature-26223","entityId":"entry-3636","position":[72.1301,-93.4206,214.7851],"yaw":-0.008581,"spawnMask":1},{"id":"creature-26224","entityId":"entry-3636","position":[106.9914,-92.6049,240.2391],"yaw":-5.26343,"spawnMask":1},{"id":"creature-26225","entityId":"entry-3840","position":[35.4292,-95.895,166.3101],"yaw":-4.45059,"spawnMask":1},{"id":"creature-26227","entityId":"entry-3636","position":[34.9989,-96.1754,209.6031],"yaw":-5.83298,"spawnMask":1},{"id":"creature-26230","entityId":"entry-3636","position":[47.7275,-92.6571,254.7881],"yaw":-5.53629,"spawnMask":1},{"id":"creature-26252","entityId":"entry-3840","position":[55.2359,-92.5736,274.6861],"yaw":-4.69494,"spawnMask":1},{"id":"creature-26254","entityId":"entry-5053","position":[6.1059,-105.9748,214.8541],"yaw":-3.80331,"spawnMask":1},{"id":"creature-26256","entityId":"entry-3637","position":[-11.7746,-83.8489,224.1501],"yaw":-0.872665,"spawnMask":1},{"id":"creature-26257","entityId":"entry-5053","position":[39.0949,-105.9748,113.3911],"yaw":-0.897454,"spawnMask":1},{"id":"creature-26258","entityId":"entry-5053","position":[11.8791,-105.9748,158.6961],"yaw":-1.22841,"spawnMask":1},{"id":"creature-26259","entityId":"entry-3637","position":[-12.7921,-87.7365,160.4791],"yaw":-5.90303,"spawnMask":1},{"id":"creature-27346","entityId":"entry-3636","position":[-12.4092,-84.1138,212.4541],"yaw":-5.54391,"spawnMask":1},{"id":"creature-27348","entityId":"entry-3840","position":[-9.7948,-83.9306,204.2091],"yaw":-4.66731,"spawnMask":1},{"id":"creature-27349","entityId":"entry-3640","position":[-10.463,-83.9428,198.3981],"yaw":-1.50382,"spawnMask":1},{"id":"creature-27350","entityId":"entry-3840","position":[-43.2606,-88.5125,183.3401],"yaw":-5.55015,"spawnMask":1},{"id":"creature-27353","entityId":"entry-3637","position":[-47.0132,-87.9717,230.1161],"yaw":-2.45396,"spawnMask":1},{"id":"creature-27354","entityId":"entry-3636","position":[-33.2776,-87.6331,172.4141],"yaw":-3.40927,"spawnMask":1},{"id":"creature-27355","entityId":"entry-3637","position":[-41.8207,-87.9064,240.6311],"yaw":-5.04816,"spawnMask":1},{"id":"creature-27356","entityId":"entry-3636","position":[-42.2083,-88.4515,182.9541],"yaw":-0.317187,"spawnMask":1},{"id":"creature-27357","entityId":"entry-3840","position":[-47.6062,-88.1944,211.8401],"yaw":-1.30859,"spawnMask":1},{"id":"creature-27359","entityId":"entry-3637","position":[-24.25,-87.706,282.7531],"yaw":-5.8003,"spawnMask":1},{"id":"creature-27360","entityId":"entry-3637","position":[-11.5863,-87.1127,290.1201],"yaw":-4.70584,"spawnMask":1},{"id":"creature-27361","entityId":"entry-3637","position":[-30.5178,-87.0305,269.4091],"yaw":-4.01378,"spawnMask":1},{"id":"creature-27362","entityId":"entry-3636","position":[-57.5007,-90.7348,203.9701],"yaw":-5.27869,"spawnMask":1},{"id":"creature-27363","entityId":"entry-3640","position":[-60.6945,-91.4866,207.5791],"yaw":-3.09598,"spawnMask":1},{"id":"creature-27364","entityId":"entry-3637","position":[10.0305,-88.318,307.8281],"yaw":-4.89372,"spawnMask":1},{"id":"creature-27365","entityId":"entry-5053","position":[52.2297,-106.2248,309.4421],"yaw":-5.75272,"spawnMask":1},{"id":"creature-27366","entityId":"entry-3671","position":[-15.3655,-87.5144,297.1661],"yaw":-2.80998,"spawnMask":1},{"id":"creature-27367","entityId":"entry-3637","position":[-2.734,-88.6692,312.1581],"yaw":-3.36618,"spawnMask":1},{"id":"creature-27368","entityId":"entry-3653","position":[64.3876,-106.5118,319.0741],"yaw":-5.7292,"spawnMask":1},{"id":"creature-27369","entityId":"entry-3840","position":[49.4848,-59.5273,371.3791],"yaw":-0.296706,"spawnMask":1},{"id":"creature-27371","entityId":"entry-3840","position":[41.1149,-59.6473,371.3631],"yaw":-3.03687,"spawnMask":1},{"id":"creature-27372","entityId":"entry-5755","position":[48.7647,-59.5968,376.9901],"yaw":-5.42797,"spawnMask":1},{"id":"creature-27374","entityId":"entry-5053","position":[74.6537,-106.9218,413.0531],"yaw":-4.32351,"spawnMask":1},{"id":"creature-27375","entityId":"entry-5048","position":[123.6534,-72.5606,412.5731],"yaw":-1.51045,"spawnMask":1},{"id":"creature-27376","entityId":"entry-3840","position":[127.4484,-72.4547,410.4691],"yaw":-1.0821,"spawnMask":1},{"id":"creature-27378","entityId":"entry-5755","position":[33.9995,-60.0143,411.0541],"yaw":-2.86454,"spawnMask":1},{"id":"creature-27379","entityId":"entry-3640","position":[39.5406,-59.4782,400.9481],"yaw":-4.50625,"spawnMask":1},{"id":"creature-27380","entityId":"entry-3669","position":[151.1184,-72.4422,414.3571],"yaw":-0.279253,"spawnMask":1},{"id":"creature-27381","entityId":"entry-8886","position":[149.0154,-72.5333,415.8971],"yaw":-2.39019,"spawnMask":1},{"id":"creature-27382","entityId":"entry-8886","position":[114.0304,-72.5118,444.9931],"yaw":-2.09017,"spawnMask":1},{"id":"creature-27383","entityId":"entry-8886","position":[111.7364,-72.5173,444.0541],"yaw":-1.8594,"spawnMask":1},{"id":"creature-27384","entityId":"entry-3840","position":[27.0145,-60.8355,420.6371],"yaw":-1.45964,"spawnMask":1},{"id":"creature-27385","entityId":"entry-3840","position":[2.7656,-66.2874,419.9491],"yaw":-0.176776,"spawnMask":1},{"id":"creature-27387","entityId":"entry-8886","position":[151.6714,-72.4758,411.9771],"yaw":-4.46382,"spawnMask":1},{"id":"creature-27388","entityId":"entry-3840","position":[73.6407,-64.5452,475.0431],"yaw":-5.23408,"spawnMask":1},{"id":"creature-33931","entityId":"entry-5755","position":[101.5254,-72.0345,453.2251],"yaw":-1.6348,"spawnMask":1},{"id":"creature-33932","entityId":"entry-3840","position":[110.0974,-72.2384,451.0601],"yaw":-2.21646,"spawnMask":1},{"id":"creature-33933","entityId":"entry-3840","position":[113.8234,-71.8686,458.7661],"yaw":-4.85202,"spawnMask":1},{"id":"creature-33934","entityId":"entry-5048","position":[79.2971,-66.8146,471.5931],"yaw":-4.64989,"spawnMask":1},{"id":"creature-33935","entityId":"entry-5755","position":[87.0732,-68.696,468.0241],"yaw":-4.07011,"spawnMask":1},{"id":"creature-33936","entityId":"entry-3840","position":[102.8224,-72.1401,452.3661],"yaw":-3.87662,"spawnMask":1},{"id":"creature-33938","entityId":"entry-3840","position":[-4.9765,-74.1546,440.2451],"yaw":-2.20753,"spawnMask":1},{"id":"creature-33939","entityId":"entry-5755","position":[43.3939,-55.008,480.1721],"yaw":-5.04164,"spawnMask":1},{"id":"creature-33941","entityId":"entry-8886","position":[51.9492,-56.7455,473.3881],"yaw":-2.13896,"spawnMask":1},{"id":"creature-33942","entityId":"entry-8886","position":[51.2803,-56.6042,474.1371],"yaw":-2.27836,"spawnMask":1},{"id":"creature-33945","entityId":"entry-8886","position":[47.6992,-55.8653,475.8001],"yaw":-1.35513,"spawnMask":1},{"id":"creature-33946","entityId":"entry-3840","position":[34.2956,-53.628,475.5311],"yaw":-4.34998,"spawnMask":1},{"id":"creature-33947","entityId":"entry-5048","position":[24.2263,-54.9793,478.7501],"yaw":-6.26311,"spawnMask":1},{"id":"creature-33948","entityId":"entry-5755","position":[-7.1901,-78.1256,454.9021],"yaw":-0.441904,"spawnMask":1},{"id":"creature-33949","entityId":"entry-5755","position":[-16.8976,-80.7345,438.5811],"yaw":-2.36423,"spawnMask":1},{"id":"creature-33950","entityId":"entry-5048","position":[-23.5596,-59.2543,398.0511],"yaw":-3.3815,"spawnMask":1},{"id":"creature-33951","entityId":"entry-5755","position":[18.612,-54.7215,493.5641],"yaw":-3.87229,"spawnMask":1},{"id":"creature-33952","entityId":"entry-5048","position":[-28.8345,-85.9204,454.4201],"yaw":-1.88023,"spawnMask":1},{"id":"creature-33954","entityId":"entry-8886","position":[-42.9191,-65.6774,478.4491],"yaw":-0.596114,"spawnMask":1},{"id":"creature-33955","entityId":"entry-8886","position":[-42.1013,-65.7152,474.9521],"yaw":-4.8531,"spawnMask":1},{"id":"creature-33956","entityId":"entry-3840","position":[-15.8233,-57.0168,514.9821],"yaw":-2.62222,"spawnMask":1},{"id":"creature-33957","entityId":"entry-3840","position":[-44.3772,-65.5531,475.7441],"yaw":-0.949337,"spawnMask":1},{"id":"creature-33960","entityId":"entry-3840","position":[-27.7054,-59.9544,503.9981],"yaw":-2.49583,"spawnMask":1},{"id":"creature-33961","entityId":"entry-5048","position":[-14.5284,-57.0129,522.0141],"yaw":-0.238485,"spawnMask":1},{"id":"creature-33962","entityId":"entry-8886","position":[-48.5922,-61.8919,398.1541],"yaw":-3.08051,"spawnMask":1},{"id":"creature-33963","entityId":"entry-8886","position":[-53.4713,-62.9159,398.2381],"yaw":-5.6244,"spawnMask":1},{"id":"creature-33964","entityId":"entry-3840","position":[-52.5048,-63.3444,406.4561],"yaw":-0.431869,"spawnMask":1},{"id":"creature-33965","entityId":"entry-5048","position":[-65.0811,-64.1471,436.9021],"yaw":-5.87797,"spawnMask":1},{"id":"creature-33966","entityId":"entry-3840","position":[-25.2083,-56.6971,530.9151],"yaw":-5.18363,"spawnMask":1},{"id":"creature-33967","entityId":"entry-5048","position":[-24.8752,-57.0732,524.5271],"yaw":-2.05043,"spawnMask":1},{"id":"creature-33969","entityId":"entry-3637","position":[24.9815,-90.4034,97.1857],"yaw":-6.17846,"spawnMask":1},{"id":"creature-33970","entityId":"entry-5053","position":[50.4722,-105.9748,81.6788],"yaw":-1.7076,"spawnMask":1},{"id":"creature-33971","entityId":"entry-3636","position":[27.8613,-91.118,85.0085],"yaw":-1.44465,"spawnMask":1},{"id":"creature-33974","entityId":"entry-5775","position":[81.8348,-30.8067,32.2466],"yaw":-3.71755,"spawnMask":1},{"id":"creature-33975","entityId":"entry-5761","position":[57.7655,-60.6969,-31.1924],"yaw":-1.27409,"spawnMask":1},{"id":"creature-33976","entityId":"entry-3840","position":[63.2858,-59.395,-26.8074],"yaw":-3.9619,"spawnMask":1},{"id":"creature-33978","entityId":"entry-5053","position":[153.2154,-105.8588,23.7295],"yaw":-4.24839,"spawnMask":1},{"id":"creature-33980","entityId":"entry-5055","position":[148.4434,-74.4526,2.1822],"yaw":0,"spawnMask":1},{"id":"creature-33981","entityId":"entry-5055","position":[149.9744,-75.719,-6.0989],"yaw":-3.47236,"spawnMask":1},{"id":"creature-33982","entityId":"entry-5055","position":[146.2434,-76.2068,-10.9085],"yaw":-2.01923,"spawnMask":1},{"id":"creature-33983","entityId":"entry-5053","position":[183.2124,-106.1028,-5.7821],"yaw":-1.94846,"spawnMask":1},{"id":"creature-33987","entityId":"entry-3840","position":[218.5474,-82.1015,44.8913],"yaw":-3.92159,"spawnMask":1},{"id":"creature-38113","entityId":"entry-3840","position":[231.1394,-82.5443,50.742],"yaw":-1.8675,"spawnMask":1},{"id":"creature-38114","entityId":"entry-5761","position":[220.3644,-82.1357,49.2861],"yaw":-0.891545,"spawnMask":1},{"id":"creature-38115","entityId":"entry-3840","position":[198.3254,-48.9852,34.674],"yaw":-4.76475,"spawnMask":1},{"id":"creature-38118","entityId":"entry-5053","position":[203.6424,-105.5868,-5.2795],"yaw":-5.12866,"spawnMask":1},{"id":"creature-38119","entityId":"entry-3840","position":[133.4564,-76.7024,-31.8002],"yaw":-1.11701,"spawnMask":1},{"id":"creature-38120","entityId":"entry-5055","position":[155.7294,-79.6296,-42.9096],"yaw":-2.31588,"spawnMask":1},{"id":"creature-38121","entityId":"entry-5056","position":[145.7234,-28.3774,2.3528],"yaw":-5.75265,"spawnMask":1},{"id":"creature-38122","entityId":"entry-5756","position":[219.8334,-48.7544,58.6788],"yaw":-5.78034,"spawnMask":1},{"id":"creature-38123","entityId":"entry-5053","position":[249.3094,-105.4738,-17.1986],"yaw":-4.79718,"spawnMask":1},{"id":"creature-38124","entityId":"entry-3840","position":[145.9654,-78.2068,-50.888],"yaw":-1.46608,"spawnMask":1},{"id":"creature-38126","entityId":"entry-5055","position":[154.3554,-78.4942,-48.0787],"yaw":-0.267989,"spawnMask":1},{"id":"creature-38127","entityId":"entry-5055","position":[162.4684,-76.8899,-50.118],"yaw":-3.75461,"spawnMask":1},{"id":"creature-38132","entityId":"entry-5055","position":[156.3434,-76.6646,-53.7348],"yaw":-5.63513,"spawnMask":1},{"id":"creature-38134","entityId":"entry-5053","position":[273.6734,-106.1768,-7.5709],"yaw":-3.99369,"spawnMask":1},{"id":"creature-38136","entityId":"entry-3840","position":[265.8434,-87.4771,43.1279],"yaw":-4.88692,"spawnMask":1},{"id":"creature-38137","entityId":"entry-5761","position":[264.5484,-87.221,37.9749],"yaw":-5.53269,"spawnMask":1},{"id":"creature-38138","entityId":"entry-5761","position":[345.6644,-101.0748,22.5937],"yaw":-3.71755,"spawnMask":1},{"id":"creature-38139","entityId":"entry-3840","position":[352.5524,-100.6448,22.6164],"yaw":-4.06662,"spawnMask":1},{"id":"creature-38140","entityId":"entry-5761","position":[335.3914,-97.5864,50.9515],"yaw":-2.96918,"spawnMask":1},{"id":"creature-38142","entityId":"entry-3640","position":[344.5274,-100.9138,24.4974],"yaw":-2.69132,"spawnMask":1},{"id":"creature-38143","entityId":"entry-3840","position":[352.8054,-99.8948,43.2833],"yaw":-0.733038,"spawnMask":1},{"id":"creature-38144","entityId":"entry-3840","position":[343.7894,-98.3939,51.485],"yaw":-3.85718,"spawnMask":1},{"id":"creature-38146","entityId":"entry-3840","position":[102.1194,-28.9313,-8.7838],"yaw":-6.03884,"spawnMask":1},{"id":"creature-38147","entityId":"entry-5756","position":[111.0244,-28.2673,-16.0753],"yaw":-6.22136,"spawnMask":1},{"id":"creature-38148","entityId":"entry-3673","position":[120.1424,-28.396,-24.6339],"yaw":-2.83035,"spawnMask":1},{"id":"creature-38168","entityId":"entry-5761","position":[172.8374,-67.5248,-82.2706],"yaw":-5.59834,"spawnMask":1},{"id":"creature-45718","entityId":"entry-3840","position":[74.9491,-59.1589,-39.5501],"yaw":-0.820305,"spawnMask":1},{"id":"creature-45721","entityId":"entry-5055","position":[68.3863,-60.5496,-39.3142],"yaw":-2.00713,"spawnMask":1},{"id":"creature-45722","entityId":"entry-3840","position":[174.3454,-67.607,-87.5144],"yaw":-3.29544,"spawnMask":1},{"id":"creature-45723","entityId":"entry-5761","position":[172.1854,-67.2174,-91.7022],"yaw":-4.768,"spawnMask":1},{"id":"creature-45724","entityId":"entry-5761","position":[120.5274,-72.5846,-100.9929],"yaw":-0.855211,"spawnMask":1},{"id":"creature-48752","entityId":"entry-5055","position":[61.6978,-61.6233,-37.6738],"yaw":-0.14321,"spawnMask":1},{"id":"creature-49413","entityId":"entry-5761","position":[120.6544,-66.8033,-129.0379],"yaw":-0.405046,"spawnMask":1},{"id":"creature-49414","entityId":"entry-3840","position":[140.3344,-67.9648,-181.3499],"yaw":-2.46184,"spawnMask":1},{"id":"creature-49415","entityId":"entry-5761","position":[102.9504,-67.4117,-160.9179],"yaw":-3.61124,"spawnMask":1},{"id":"creature-49416","entityId":"entry-5756","position":[144.2454,-67.7979,-195.1909],"yaw":-4.92362,"spawnMask":1},{"id":"creature-52598","entityId":"entry-5761","position":[69.5044,-79.0998,-144.6979],"yaw":-5.11381,"spawnMask":1},{"id":"creature-85900","entityId":"entry-3640","position":[75.6184,-79.0318,-142.5389],"yaw":-5.66487,"spawnMask":1},{"id":"creature-85901","entityId":"entry-5761","position":[57.3062,-69.184,-123.0919],"yaw":-3.53947,"spawnMask":1},{"id":"creature-85902","entityId":"entry-5761","position":[61.5475,-78.5347,-152.8879],"yaw":-6.12289,"spawnMask":1},{"id":"creature-85912","entityId":"entry-5055","position":[35.166,-71.3952,-109.4399],"yaw":-4.83972,"spawnMask":1},{"id":"creature-85916","entityId":"entry-5055","position":[35.6748,-70.9521,-102.8329],"yaw":-0.200927,"spawnMask":1},{"id":"creature-85917","entityId":"entry-5055","position":[35.2649,-71.4588,-115.2959],"yaw":-5.0583,"spawnMask":1},{"id":"creature-85918","entityId":"entry-5055","position":[40.85,-70.6068,-109.5689],"yaw":-1.05035,"spawnMask":1},{"id":"creature-85919","entityId":"entry-3840","position":[39.1986,-71.1785,-118.2819],"yaw":-5.65877,"spawnMask":1},{"id":"creature-85920","entityId":"entry-5055","position":[60.4971,-62.4611,-42.8651],"yaw":-3.59899,"spawnMask":1},{"id":"creature-85947","entityId":"entry-5761","position":[34.107,-71.027,-102.6019],"yaw":-1.03311,"spawnMask":1},{"id":"creature-85948","entityId":"entry-3840","position":[32.0817,-64.7891,-44.1521],"yaw":-3.38594,"spawnMask":1},{"id":"creature-85953","entityId":"entry-5761","position":[37.4235,-65.1479,-48.2285],"yaw":-0.700297,"spawnMask":1},{"id":"creature-85954","entityId":"entry-5761","position":[6.0754,-67.0375,-60.7969],"yaw":-2.70526,"spawnMask":1},{"id":"creature-85958","entityId":"entry-3840","position":[-0.4771,-66.5834,-58.08],"yaw":-1.41372,"spawnMask":1},{"id":"creature-85959","entityId":"entry-3840","position":[-2.3385,-65.7089,-47.7004],"yaw":-4.64258,"spawnMask":1},{"id":"creature-85961","entityId":"entry-5761","position":[-26.6416,-79.9091,-155.9729],"yaw":-2.01608,"spawnMask":1},{"id":"creature-85965","entityId":"entry-3840","position":[35.9532,-74.0394,-188.8889],"yaw":-5.40204,"spawnMask":1},{"id":"creature-85974","entityId":"entry-5761","position":[49.4776,-74.556,-184.7039],"yaw":-3.2571,"spawnMask":1},{"id":"creature-85988","entityId":"entry-5055","position":[-31.7822,-82.0231,-164.0329],"yaw":-1.95201,"spawnMask":1},{"id":"creature-85989","entityId":"entry-5055","position":[-30.7047,-81.7136,-162.3039],"yaw":-1.01849,"spawnMask":1},{"id":"creature-85993","entityId":"entry-5056","position":[151.9694,-68.3298,-193.8029],"yaw":-2.55062,"spawnMask":1},{"id":"creature-85994","entityId":"entry-5055","position":[179.3274,-56.98,-213.4689],"yaw":-4.99566,"spawnMask":1},{"id":"creature-85995","entityId":"entry-5055","position":[181.5844,-59.1867,-204.3039],"yaw":-6.15698,"spawnMask":1},{"id":"creature-85996","entityId":"entry-5055","position":[187.9924,-60.961,-194.5259],"yaw":-2.01214,"spawnMask":1},{"id":"creature-86000","entityId":"entry-5055","position":[192.0364,-61.9839,-191.6569],"yaw":-1.60461,"spawnMask":1},{"id":"creature-86004","entityId":"entry-3840","position":[124.6074,-62.9948,-240.4669],"yaw":-0.264839,"spawnMask":1},{"id":"creature-86011","entityId":"entry-5756","position":[123.3354,-61.8209,-246.8359],"yaw":-5.19314,"spawnMask":1},{"id":"creature-86012","entityId":"entry-5756","position":[166.7954,-57.0868,-246.2149],"yaw":-6.20765,"spawnMask":1},{"id":"creature-86013","entityId":"entry-3840","position":[209.5404,-62.0719,-195.6869],"yaw":-0.287966,"spawnMask":1},{"id":"creature-86045","entityId":"entry-5756","position":[193.0244,-69.9218,-237.7629],"yaw":-2.84551,"spawnMask":1},{"id":"creature-86046","entityId":"entry-5761","position":[56.9218,-68.6573,-236.0529],"yaw":-2.01367,"spawnMask":1},{"id":"creature-86047","entityId":"entry-3640","position":[109.1974,-56.9728,-260.4419],"yaw":-1.5912,"spawnMask":1},{"id":"creature-86048","entityId":"entry-3840","position":[96.4674,-55.2368,-262.3179],"yaw":-0.92934,"spawnMask":1},{"id":"creature-86104","entityId":"entry-3840","position":[55.0596,-68.4685,-249.6089],"yaw":-4.71643,"spawnMask":1},{"id":"creature-86105","entityId":"entry-5055","position":[160.9284,-62.7344,-285.3729],"yaw":-1.97666,"spawnMask":1},{"id":"creature-86107","entityId":"entry-3840","position":[104.0264,-62.6882,-305.0929],"yaw":-4.95674,"spawnMask":1},{"id":"creature-86108","entityId":"entry-3840","position":[101.0664,-62.2167,-314.3739],"yaw":-1.97222,"spawnMask":1},{"id":"creature-86109","entityId":"entry-3840","position":[17.6453,-66.3291,-269.5969],"yaw":-1.0472,"spawnMask":1},{"id":"creature-86110","entityId":"entry-5761","position":[30.815,-67.2392,-270.3679],"yaw":-1.67204,"spawnMask":1},{"id":"creature-86111","entityId":"entry-5756","position":[107.8974,-62.2181,-297.2479],"yaw":-0.421712,"spawnMask":1},{"id":"creature-86112","entityId":"entry-3840","position":[29.1141,-67.6348,-264.1809],"yaw":-6.05629,"spawnMask":1},{"id":"creature-86136","entityId":"entry-3840","position":[11.4345,-67.7831,-260.9709],"yaw":-3.9968,"spawnMask":1},{"id":"creature-86137","entityId":"entry-3840","position":[154.0784,-64.2513,-304.5469],"yaw":-4.83202,"spawnMask":1},{"id":"creature-86325","entityId":"entry-5055","position":[157.5784,-63.5805,-295.3609],"yaw":-4.91261,"spawnMask":1},{"id":"creature-86415","entityId":"entry-5055","position":[159.9094,-63.1148,-293.5089],"yaw":-1.5125,"spawnMask":1},{"id":"creature-87094","entityId":"entry-5056","position":[126.0744,-62.9709,-310.8719],"yaw":-3.80482,"spawnMask":1},{"id":"creature-87095","entityId":"entry-3840","position":[116.6284,-62.6497,-315.8519],"yaw":-3.57792,"spawnMask":1},{"id":"creature-87096","entityId":"entry-3840","position":[123.9264,-62.6706,-319.3889],"yaw":-0.471239,"spawnMask":1},{"id":"creature-87097","entityId":"entry-5055","position":[3.3466,-67.5955,-264.4979],"yaw":0,"spawnMask":1},{"id":"creature-87098","entityId":"entry-5055","position":[4.8001,-68.9945,-255.4779],"yaw":-2.16421,"spawnMask":1},{"id":"creature-87100","entityId":"entry-3840","position":[-2.6261,-81.1749,-194.9849],"yaw":-1.96162,"spawnMask":1},{"id":"creature-87101","entityId":"entry-5055","position":[-2.5698,-68.4578,-262.2309],"yaw":-0.873738,"spawnMask":1},{"id":"creature-87102","entityId":"entry-5055","position":[-7.6552,-68.9196,-261.7819],"yaw":-2.49019,"spawnMask":1},{"id":"creature-87103","entityId":"entry-5055","position":[-4.8977,-80.8084,-207.1209],"yaw":-2.66648,"spawnMask":1},{"id":"creature-87104","entityId":"entry-5055","position":[154.2294,-64.4457,-307.1939],"yaw":-5.65985,"spawnMask":1},{"id":"creature-87105","entityId":"entry-5761","position":[-22.7211,-78.1313,-238.8019],"yaw":-3.65987,"spawnMask":1},{"id":"creature-87106","entityId":"entry-5055","position":[-10.8159,-82.5226,-202.9659],"yaw":-2.64557,"spawnMask":1},{"id":"creature-87107","entityId":"entry-3670","position":[-36.828,-79.3117,-241.0739],"yaw":-3.26377,"spawnMask":1},{"id":"creature-87108","entityId":"entry-3840","position":[-30.9175,-78.7308,-242.3989],"yaw":-0.296706,"spawnMask":1},{"id":"creature-87109","entityId":"entry-5055","position":[-7.4133,-82.0582,-193.4049],"yaw":-2.95981,"spawnMask":1},{"id":"creature-87110","entityId":"entry-5055","position":[-14.402,-83.0564,-194.2359],"yaw":-3.17283,"spawnMask":1},{"id":"creature-87111","entityId":"entry-5055","position":[-30.4151,-82.9742,-170.8259],"yaw":-5.05349,"spawnMask":1},{"id":"creature-87112","entityId":"entry-5055","position":[-36.8286,-82.7817,-165.8329],"yaw":-4.33359,"spawnMask":1},{"id":"creature-87113","entityId":"entry-5761","position":[-36.9903,-81.2941,-161.7999],"yaw":-0.021414,"spawnMask":1},{"id":"creature-87114","entityId":"entry-5056","position":[221.0094,-64.3225,-248.6759],"yaw":-5.4692,"spawnMask":1},{"id":"creature-87115","entityId":"entry-3640","position":[229.0504,-62.547,-148.3189],"yaw":-1.434,"spawnMask":1},{"id":"creature-87116","entityId":"entry-3840","position":[229.1814,-64.3298,-252.4749],"yaw":-5.14928,"spawnMask":1},{"id":"creature-87118","entityId":"entry-5055","position":[226.3684,-69.9672,-297.4549],"yaw":-4.36783,"spawnMask":1},{"id":"creature-87119","entityId":"entry-5055","position":[219.8284,-70.1607,-301.1439],"yaw":-3.95375,"spawnMask":1},{"id":"creature-87120","entityId":"entry-5055","position":[220.4644,-68.6492,-290.9299],"yaw":-1.82428,"spawnMask":1},{"id":"creature-87121","entityId":"entry-3840","position":[219.1314,-70.8694,-307.0039],"yaw":-4.03858,"spawnMask":1},{"id":"creature-87122","entityId":"entry-3840","position":[264.4794,-60.2281,-182.8159],"yaw":-4.74168,"spawnMask":1},{"id":"creature-87123","entityId":"entry-5756","position":[243.7454,-62.9829,-158.6449],"yaw":-3.9086,"spawnMask":1},{"id":"creature-87125","entityId":"entry-3840","position":[216.2684,-70.7628,-320.9309],"yaw":-5.31839,"spawnMask":1},{"id":"creature-87126","entityId":"entry-3840","position":[275.7834,-63.4872,-213.7049],"yaw":-3.24631,"spawnMask":1},{"id":"creature-87127","entityId":"entry-5756","position":[281.5624,-63.8672,-219.0689],"yaw":-6.12038,"spawnMask":1},{"id":"creature-87128","entityId":"entry-3840","position":[269.4144,-67.4794,-297.7849],"yaw":-0.680678,"spawnMask":1},{"id":"creature-87129","entityId":"entry-3840","position":[264.5264,-68.1671,-301.7709],"yaw":-0.541052,"spawnMask":1},{"id":"creature-87130","entityId":"entry-5056","position":[280.1694,-64.0201,-219.4459],"yaw":-0.379014,"spawnMask":1},{"id":"creature-87131","entityId":"entry-3674","position":[285.5584,-69.0061,-312.9779],"yaw":-3.38678,"spawnMask":1},{"id":"creature-87132","entityId":"entry-5056","position":[179.8784,-70.5363,-352.9609],"yaw":-3.54306,"spawnMask":1},{"id":"creature-87134","entityId":"entry-5756","position":[185.8654,-70.8775,-351.1539],"yaw":-0.578072,"spawnMask":1},{"id":"creature-87135","entityId":"entry-5055","position":[292.8304,-64.0509,-245.8229],"yaw":-2.23773,"spawnMask":1},{"id":"creature-87136","entityId":"entry-5055","position":[293.0014,-63.7882,-237.8579],"yaw":-5.69922,"spawnMask":1},{"id":"creature-87137","entityId":"entry-5055","position":[298.4834,-63.5772,-246.4779],"yaw":-4.04456,"spawnMask":1},{"id":"creature-87138","entityId":"entry-5055","position":[299.8104,-63.4177,-247.4769],"yaw":-5.99316,"spawnMask":1},{"id":"creature-87139","entityId":"entry-3840","position":[307.0284,-62.9765,-232.1679],"yaw":-4.66003,"spawnMask":1},{"id":"creature-87141","entityId":"entry-3840","position":[307.0394,-62.9773,-240.6679],"yaw":-1.58825,"spawnMask":1},{"id":"creature-87142","entityId":"entry-3840","position":[290.8394,-62.9031,-215.1139],"yaw":-0.087266,"spawnMask":1},{"id":"creature-87143","entityId":"entry-5056","position":[271.4424,-59.9633,-179.8769],"yaw":-3.26983,"spawnMask":1},{"id":"creature-87144","entityId":"entry-5056","position":[307.4074,-61.158,-147.5479],"yaw":-1.59788,"spawnMask":1},{"id":"creature-87146","entityId":"entry-5756","position":[322.3614,-62.0437,-133.9829],"yaw":-0.093105,"spawnMask":1},{"id":"creature-87147","entityId":"entry-5056","position":[304.6834,-63.6193,-104.2859],"yaw":-5.49598,"spawnMask":1},{"id":"creature-87148","entityId":"entry-5055","position":[331.7284,-64.5571,-106.7699],"yaw":-4.19085,"spawnMask":1},{"id":"creature-87149","entityId":"entry-5055","position":[336.8514,-64.2996,-108.1179],"yaw":-0.248071,"spawnMask":1},{"id":"creature-87150","entityId":"entry-3840","position":[341.9314,-63.2852,-118.9959],"yaw":-0.148351,"spawnMask":1},{"id":"creature-87151","entityId":"entry-5055","position":[339.0754,-63.3598,-114.6879],"yaw":-2.0554,"spawnMask":1},{"id":"creature-87152","entityId":"entry-5055","position":[338.8954,-64.7878,-104.2419],"yaw":-3.05615,"spawnMask":1},{"id":"creature-87153","entityId":"entry-3840","position":[331.4904,-65.4745,-79.2673],"yaw":-0.065628,"spawnMask":1},{"id":"creature-87155","entityId":"entry-5056","position":[333.9284,-65.2261,-72.1747],"yaw":-0.870512,"spawnMask":1},{"id":"creature-87156","entityId":"entry-5056","position":[373.9774,-64.97,-101.0849],"yaw":-2.12917,"spawnMask":1},{"id":"creature-87157","entityId":"entry-3640","position":[390.1384,-64.2375,-97.6813],"yaw":-2.2797,"spawnMask":1},{"id":"encounter-43005","entityId":"entry-3673","position":[24.1944,-84.7163,257.1004],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-26197","name":"Deviate Crocolisk Patrol","speed":1.15,"pathId":261970,"formationSource":"database-solo","spawnMask":1,"waypoints":[[143.9754,-106.0888,68.6926],[99.0863,-106.0238,68.6931],[61.1645,-105.9738,72.8168],[99.0863,-106.0238,68.6931]],"members":[{"id":"member","entityId":"entry-5053","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26228","name":"Evolving Ectoplasm Patrol","speed":1.15,"pathId":262280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[20.5316,-104.3238,171.9971],[21.4633,-103.1218,186.0151],[19.0025,-98.9466,201.2151],[18.4846,-102.9488,221.0511],[23.2312,-104.1058,258.8251],[18.4846,-102.9488,221.0511],[19.0025,-98.9466,201.2151],[21.4633,-103.1218,186.0151]],"members":[{"id":"member","entityId":"entry-3640","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26229","name":"Evolving Ectoplasm Patrol","speed":1.15,"pathId":262290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[34.6258,-95.8791,211.3641],[65.5598,-93.3733,204.7041],[81.5498,-93.2674,223.5981],[65.5598,-93.3733,204.7041],[34.6258,-95.8791,211.3641],[36.7056,-93.119,249.2991],[30.9039,-94.9498,227.5451]],"members":[{"id":"member","entityId":"entry-3640","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26239","name":"Druid of the Fang Patrol","speed":1.15,"pathId":262390,"formationSource":"database-solo","spawnMask":1,"waypoints":[[50.8907,-92.6566,263.7621],[40.968,-92.2551,280.0041],[62.6144,-90.7807,288.4101],[64.708,-92.6571,265.8851]],"members":[{"id":"member","entityId":"entry-3840","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-38116","name":"Deviate Shambler Patrol","speed":1.15,"pathId":381160,"formationSource":"database-solo","spawnMask":1,"waypoints":[[218.2004,-82.153,51.41],[198.6814,-82.2893,69.7613],[180.1524,-78.937,87.0488],[164.9054,-75.8051,82.5416],[180.1524,-78.937,87.0488],[198.6814,-82.2893,69.7613]],"members":[{"id":"member","entityId":"entry-5761","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-38117","name":"Evolving Ectoplasm Patrol","speed":1.15,"pathId":381170,"formationSource":"database-solo","spawnMask":1,"waypoints":[[206.6274,-49.2251,58.6555],[187.3104,-49.7665,56.9169],[169.2484,-40.4488,54.021],[147.9394,-29.5747,31.9756],[169.2484,-40.4488,54.021],[187.3104,-49.7665,56.9169]],"members":[{"id":"member","entityId":"entry-3640","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-85963","name":"Deviate Shambler Patrol","speed":1.15,"pathId":859630,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-22.7854,-75.3597,-150.7919],[1.6283,-76.0383,-136.5459],[32.1654,-71.8254,-123.0929],[1.6283,-76.0383,-136.5459]],"members":[{"id":"member","entityId":"entry-5761","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-27366","name":"Lady Anacondra","position":[-15.3655,-87.5144,297.1661]},{"id":"creature-27380","name":"Lord Cobrahn","position":[151.1184,-72.4422,414.3571]},{"id":"creature-27368","name":"Kresh","position":[64.3876,-106.5118,319.0741]},{"id":"creature-87107","name":"Lord Pythas","position":[-36.828,-79.3117,-241.0739]},{"id":"creature-87131","name":"Skum","position":[285.5584,-69.0061,-312.9779]},{"id":"encounter-43005","name":"Lord Serpentis","position":[24.1944,-84.7163,257.1004]},{"id":"creature-33974","name":"Verdan the Everliving","position":[81.8348,-30.8067,32.2466]},{"id":"mutanus-spawn","name":"Mutanus the Devourer","position":[-151.27,-102.82,252.26],"eventOnly":true}],"objectiveOrder":[{"id":"creature-27366","name":"Lady Anacondra","position":[-15.3655,-87.5144,297.1661]},{"id":"creature-27380","name":"Lord Cobrahn","position":[151.1184,-72.4422,414.3571]},{"id":"creature-27368","name":"Kresh","position":[64.3876,-106.5118,319.0741]},{"id":"creature-87107","name":"Lord Pythas","position":[-36.828,-79.3117,-241.0739]},{"id":"creature-87131","name":"Skum","position":[285.5584,-69.0061,-312.9779]},{"id":"encounter-43005","name":"Lord Serpentis","position":[24.1944,-84.7163,257.1004]},{"id":"creature-33974","name":"Verdan the Everliving","position":[81.8348,-30.8067,32.2466]},{"id":"mutanus-spawn","name":"Mutanus the Devourer","position":[-151.27,-102.82,252.26],"eventOnly":true}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":718,"guid":5638,"id":180055,"map":43,"orientation":2.08,"phaseMask":1,"position_x":-97.6,"position_y":173.8,"position_z":-79,"rotation0":0,"rotation1":0,"rotation2":0.862404,"rotation3":0.50622,"spawnMask":1,"spawntimesecs":-1,"state":1,"zoneId":718},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31990,"id":13891,"map":43,"orientation":-2.84489,"phaseMask":1,"position_x":-31.3705,"position_y":268.373,"position_z":-103.759,"rotation0":0,"rotation1":0,"rotation2":-0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31992,"id":2041,"map":43,"orientation":-0.139626,"phaseMask":1,"position_x":-33.4606,"position_y":282.588,"position_z":-105.51,"rotation0":0,"rotation1":0,"rotation2":-0.0697563,"rotation3":0.997564,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":31993,"id":56819,"map":43,"orientation":2.75526,"phaseMask":1,"position_x":36.4862,"position_y":186.328,"position_z":-87.6447,"rotation0":0.0560317,"rotation1":0.0081358,"rotation2":0.980019,"rotation3":0.190677,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31995,"id":13891,"map":43,"orientation":-1.78024,"phaseMask":1,"position_x":28.4734,"position_y":146.89,"position_z":-90.4116,"rotation0":0,"rotation1":0,"rotation2":-0.777147,"rotation3":0.629319,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31997,"id":13891,"map":43,"orientation":-2.21657,"phaseMask":1,"position_x":45.9468,"position_y":275.327,"position_z":-89.1026,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31999,"id":75293,"map":43,"orientation":0.575959,"phaseMask":1,"position_x":-49.9295,"position_y":370.574,"position_z":-59.6856,"rotation0":0,"rotation1":0,"rotation2":0.284016,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32000,"id":1619,"map":43,"orientation":-1.0821,"phaseMask":1,"position_x":-53.0091,"position_y":389.589,"position_z":-61.6968,"rotation0":0,"rotation1":0,"rotation2":-0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32001,"id":13891,"map":43,"orientation":2.84489,"phaseMask":1,"position_x":-95.8325,"position_y":423.05,"position_z":-106.731,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32003,"id":146091,"map":43,"orientation":4.42802,"phaseMask":1,"position_x":-136.916,"position_y":414.704,"position_z":-72.737,"rotation0":-0.0211639,"rotation1":0.000874519,"rotation2":-0.800125,"rotation3":0.599459,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32005,"id":13891,"map":43,"orientation":-2.16421,"phaseMask":1,"position_x":3.27935,"position_y":411.871,"position_z":-65.9418,"rotation0":0,"rotation1":0,"rotation2":-0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35590,"id":13891,"map":43,"orientation":-2.93215,"phaseMask":1,"position_x":-35.8711,"position_y":463.283,"position_z":-54.8242,"rotation0":0,"rotation1":0,"rotation2":-0.994522,"rotation3":0.10453,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35592,"id":1624,"map":43,"orientation":2.93215,"phaseMask":1,"position_x":36.5195,"position_y":461.61,"position_z":-85.8738,"rotation0":0,"rotation1":0,"rotation2":0.994522,"rotation3":0.10453,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35593,"id":13891,"map":43,"orientation":-2.61799,"phaseMask":1,"position_x":60.8216,"position_y":459.733,"position_z":-63.9568,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35595,"id":1619,"map":43,"orientation":0.541052,"phaseMask":1,"position_x":47.5179,"position_y":517.586,"position_z":-58.1344,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.96363,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35596,"id":1731,"map":43,"orientation":3.01942,"phaseMask":1,"position_x":-161.053,"position_y":411.129,"position_z":-72.5271,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610484,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35597,"id":13891,"map":43,"orientation":2.16421,"phaseMask":1,"position_x":-46.0182,"position_y":63.2591,"position_z":-85.972,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35599,"id":1732,"map":43,"orientation":2.26893,"phaseMask":1,"position_x":-32.2606,"position_y":43.5227,"position_z":-117.543,"rotation0":0,"rotation1":0,"rotation2":0.906308,"rotation3":0.422617,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35600,"id":13891,"map":43,"orientation":-2.35619,"phaseMask":1,"position_x":-64.4431,"position_y":62.0624,"position_z":-28.4545,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35602,"id":146088,"map":43,"orientation":4.42802,"phaseMask":1,"position_x":-70.0215,"position_y":-31.7023,"position_z":-60.1562,"rotation0":-0.0211639,"rotation1":0.000874519,"rotation2":-0.800125,"rotation3":0.599459,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35604,"id":60393,"map":43,"orientation":3.15159,"phaseMask":1,"position_x":-228.116,"position_y":40.6489,"position_z":-82.3157,"rotation0":0.00846481,"rotation1":0.0224495,"rotation2":-0.999699,"rotation3":0.0051905,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35606,"id":13891,"map":43,"orientation":0.645772,"phaseMask":1,"position_x":-196.059,"position_y":29.3717,"position_z":-50.2278,"rotation0":0,"rotation1":0,"rotation2":0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35608,"id":56821,"map":43,"orientation":3.14002,"phaseMask":1,"position_x":-148.837,"position_y":-51.4536,"position_z":-78.262,"rotation0":-0.0212135,"rotation1":-0.110293,"rotation2":-0.993671,"rotation3":0.00156326,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35610,"id":60394,"map":43,"orientation":3.13346,"phaseMask":1,"position_x":-142.382,"position_y":-64.699,"position_z":-77.6614,"rotation0":0.0143766,"rotation1":0.134123,"rotation2":0.990858,"rotation3":0.00215619,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35612,"id":13891,"map":43,"orientation":-2.79253,"phaseMask":1,"position_x":-223.392,"position_y":-50.9034,"position_z":-102.96,"rotation0":0,"rotation1":0,"rotation2":-0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35614,"id":56818,"map":43,"orientation":3.15087,"phaseMask":1,"position_x":-350.49,"position_y":23.1432,"position_z":-100.991,"rotation0":-0.0536928,"rotation1":0.0398283,"rotation2":-0.99776,"rotation3":0.00247776,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35616,"id":13891,"map":43,"orientation":-1.8326,"phaseMask":1,"position_x":-360.631,"position_y":43.2781,"position_z":-100.909,"rotation0":0,"rotation1":0,"rotation2":-0.793355,"rotation3":0.60876,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35618,"id":13891,"map":43,"orientation":-3.03687,"phaseMask":1,"position_x":-111.872,"position_y":-38.7467,"position_z":-28.4545,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523374,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35620,"id":1619,"map":43,"orientation":2.84489,"phaseMask":1,"position_x":-81.6752,"position_y":-33.1718,"position_z":-58.8048,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35621,"id":75293,"map":43,"orientation":-0.296706,"phaseMask":1,"position_x":-79.462,"position_y":-32.6,"position_z":-59.1092,"rotation0":0,"rotation1":0,"rotation2":-0.147809,"rotation3":0.989016,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35622,"id":59530,"map":43,"orientation":2.35478,"phaseMask":1,"position_x":-69.8097,"position_y":-34.2418,"position_z":-60.2396,"rotation0":0.0156779,"rotation1":0.0317993,"rotation2":0.923059,"rotation3":0.38302,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35624,"id":13891,"map":43,"orientation":-2.79253,"phaseMask":1,"position_x":-178.29,"position_y":-101.693,"position_z":-65.8531,"rotation0":0,"rotation1":0,"rotation2":-0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35626,"id":1732,"map":43,"orientation":0.907571,"phaseMask":1,"position_x":-122.103,"position_y":-121.608,"position_z":-64.2499,"rotation0":0,"rotation1":0,"rotation2":0.438371,"rotation3":0.898794,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35627,"id":13891,"map":43,"orientation":4.71239,"phaseMask":1,"position_x":-147.206,"position_y":-146.156,"position_z":-66.9507,"rotation0":0,"rotation1":0,"rotation2":0.707106,"rotation3":-0.707107,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35629,"id":13891,"map":43,"orientation":-2.07694,"phaseMask":1,"position_x":-232.344,"position_y":-148.216,"position_z":-62.7499,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35631,"id":1731,"map":43,"orientation":0.523599,"phaseMask":1,"position_x":-87.6443,"position_y":-136.019,"position_z":-65.0488,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35632,"id":1731,"map":43,"orientation":-1.16937,"phaseMask":1,"position_x":-179.484,"position_y":-190.661,"position_z":-60.6078,"rotation0":0,"rotation1":0,"rotation2":-0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35633,"id":1622,"map":43,"orientation":-1.65806,"phaseMask":1,"position_x":-56.9757,"position_y":-116.137,"position_z":-69.4735,"rotation0":0,"rotation1":0,"rotation2":-0.737276,"rotation3":0.675591,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35634,"id":13891,"map":43,"orientation":-0.226893,"phaseMask":1,"position_x":-0.314322,"position_y":-42.1754,"position_z":-65.0227,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35636,"id":1619,"map":43,"orientation":-1.72788,"phaseMask":1,"position_x":-9.10271,"position_y":-166.562,"position_z":-76.5781,"rotation0":0,"rotation1":0,"rotation2":-0.760407,"rotation3":0.649446,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35637,"id":13891,"map":43,"orientation":2.18166,"phaseMask":1,"position_x":-169.717,"position_y":-224.064,"position_z":-55.6624,"rotation0":0,"rotation1":0,"rotation2":0.88701,"rotation3":0.461749,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35639,"id":1619,"map":43,"orientation":-1.90241,"phaseMask":1,"position_x":-227.876,"position_y":-204.881,"position_z":-58.5064,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35640,"id":13891,"map":43,"orientation":1.06465,"phaseMask":1,"position_x":-94.1341,"position_y":-264.677,"position_z":-55.5865,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35642,"id":1624,"map":43,"orientation":-0.331612,"phaseMask":1,"position_x":-69.5988,"position_y":-259.049,"position_z":-67.1074,"rotation0":0,"rotation1":0,"rotation2":-0.165047,"rotation3":0.986286,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35643,"id":146089,"map":43,"orientation":2.36853,"phaseMask":1,"position_x":-113.451,"position_y":-313.306,"position_z":-63.0296,"rotation0":0.01015,"rotation1":-0.0185919,"rotation2":0.925931,"rotation3":0.377098,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35645,"id":13891,"map":43,"orientation":-0.977384,"phaseMask":1,"position_x":-36.2995,"position_y":-281.637,"position_z":-66.5813,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35647,"id":75293,"map":43,"orientation":2.32129,"phaseMask":1,"position_x":-95.0718,"position_y":-311.132,"position_z":-61.8035,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35648,"id":56820,"map":43,"orientation":2.75491,"phaseMask":1,"position_x":-15.4209,"position_y":-252.946,"position_z":-69.0084,"rotation0":0.0104156,"rotation1":0.0626049,"rotation2":0.979367,"rotation3":0.191864,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35650,"id":1732,"map":43,"orientation":0.959931,"phaseMask":1,"position_x":-89.4373,"position_y":-314.586,"position_z":-60.7897,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35651,"id":1619,"map":43,"orientation":2.86234,"phaseMask":1,"position_x":-128.068,"position_y":-324.797,"position_z":-62.8066,"rotation0":0,"rotation1":0,"rotation2":0.990268,"rotation3":0.139173,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35652,"id":75293,"map":43,"orientation":0.715585,"phaseMask":1,"position_x":-10.4679,"position_y":-272.442,"position_z":-66.1606,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35653,"id":13891,"map":43,"orientation":0.767945,"phaseMask":1,"position_x":48.0354,"position_y":-165.494,"position_z":-81.7236,"rotation0":0,"rotation1":0,"rotation2":0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35655,"id":13891,"map":43,"orientation":0.959931,"phaseMask":1,"position_x":-164.128,"position_y":-337.607,"position_z":-68.9215,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35657,"id":59529,"map":43,"orientation":3.45621,"phaseMask":1,"position_x":-286.253,"position_y":-234.953,"position_z":-63.6185,"rotation0":0.0103116,"rotation1":-0.0114851,"rotation2":-0.987552,"rotation3":0.156536,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35659,"id":13891,"map":43,"orientation":-0.890118,"phaseMask":1,"position_x":-293.322,"position_y":-319.377,"position_z":-68.2288,"rotation0":0,"rotation1":0,"rotation2":-0.430511,"rotation3":0.902585,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35661,"id":146090,"map":43,"orientation":5.52816,"phaseMask":1,"position_x":-300.358,"position_y":-239.158,"position_z":-63.889,"rotation0":-0.0208106,"rotation1":0.0149622,"rotation2":-0.368344,"rotation3":0.929336,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35663,"id":13891,"map":43,"orientation":-1.88496,"phaseMask":1,"position_x":-382.755,"position_y":-100.201,"position_z":-64.46,"rotation0":0,"rotation1":0,"rotation2":-0.809018,"rotation3":0.587783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a","clientArchiveHashes":{"common-2.mpq/World/Maps/WailingCaverns":"b06e6a3402badaa2509682f9fa58850609839fe48c50528ddc87132a42cd2465","patch/World/maps/WailingCaverns":"1b304271f9c250362a7a83fed4b3bcc8177b513ecf08a7e96805a90bc4e92b79"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3+dirty-file-lock","sourceSnapshot":"dungeon-pipeline/work/wailing-caverns/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["Creature bodies use explicit procedural fallbacks until the corresponding client display composites are exported.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"razorfen-kraul","title":"Razorfen Kraul","mapId":47,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[25,40]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Razorfen Kraul","theme":"Instanced dungeon","summary":"Fight through Razorfen Kraul, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Razorfen Kraul...","unchartedAreaName":"Uncharted Razorfen Kraul","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":505.4057},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/47-razorfenkraulinstance/visual.glb","checksum":"1c13b561c3f6a7e6bec1ef5b3e87d443bfecaf08974c3692d5ab9df554bee865","size":5710312,"triangleCount":216703}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/47-razorfenkraulinstance/collision.glb","checksum":"38f23ca147ad5d6d40ad3d33f55dfec4a82d06bf5c57b0ea9dc49eeda2a81eed","size":1272744,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/47-razorfenkraulinstance/navigation.glb","checksum":"feed612f71fd635f96d0cec96486d5a4e8cc96f30510d8f7f47ad8d5b6b57d5b","size":973440,"triangleCount":70120}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-78.81,-60.1884,-164.7604],"max":[487.4443,19.949,537.192]},"entrance":{"name":"Razorfen Kraul Entrance","footPosition":[-33.81,-5.2481,21.522],"forward":[0.9983765577770614,0,0.05695830827215772],"yaw":1.5138071756522968},"areas":[{"id":"entrance","name":"Razorfen Kraul Entrance","center":[-33.81,-5.2481,21.522],"radius":35},{"id":"area-roogug","name":"Roogug's Encounter","center":[166.18,-6.8639,58.462],"radius":42},{"id":"area-aggem-thorncurse","name":"Aggem Thorncurse's Encounter","center":[105.5,-14.0692,-59.568],"radius":42},{"id":"area-death-speaker-jargba","name":"Death Speaker Jargba's Encounter","center":[169.62,-13.2943,-111.868],"radius":42},{"id":"area-overlord-ramtusk","name":"Overlord Ramtusk's Encounter","center":[226.32,-1.3459,116.942],"radius":42},{"id":"area-charlga-razorflank","name":"Charlga Razorflank's Encounter","center":[213.59,-8.1092,341.182],"radius":42},{"id":"area-agathelos-the-raging","name":"Agathelos the Raging's Encounter","center":[17.59,-23.9561,453.332],"radius":42},{"id":"area-earthcaller-halmgar","name":"Earthcaller Halmgar's Encounter","center":[141.77,-6.9165,172.212],"radius":42}],"entities":{"entry-4512":{"id":"entry-4512","kind":"mob","name":"Rotting Agam'ar","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8267","name":"Cursed Blood","spellId":8267,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4189,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4714-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0417,"labelHeight":3.519,"markerRadius":1.7492}}},"entry-4436":{"id":"entry-4436","kind":"mob","name":"Razorfen Quilguard","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7390,"damageMultiplier":1.12},{"id":"spell-15548","name":"Thunderclap","spellId":15548,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7390,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6108-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":3.7373,"markerRadius":1.1612}}},"entry-4530":{"id":"entry-4530","kind":"mob","name":"Razorfen Handler","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7081,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-1963-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.5209,"markerRadius":0.65}}},"entry-4520":{"id":"entry-4520","kind":"mob","name":"Razorfen Geomancer","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9532","name":"Lightning Bolt","spellId":9532,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5985,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4647-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.7703,"markerRadius":0.65}}},"entry-4435":{"id":"entry-4435","kind":"mob","name":"Razorfen Warrior","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6109-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":3.7373,"markerRadius":1.1612}}},"entry-4442":{"id":"entry-4442","kind":"mob","name":"Razorfen Defender","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3248","name":"Improved Blocking","spellId":3248,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5082,"damageMultiplier":1.12},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5082,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6103-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":4.1858,"markerRadius":1.3005}}},"entry-4514":{"id":"entry-4514","kind":"mob","name":"Raging Agam'ar","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5016,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-2453-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0417,"labelHeight":3.519,"markerRadius":1.7492}}},"entry-4511":{"id":"entry-4511","kind":"mob","name":"Agam'ar","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6268","name":"Rushing Charge","spellId":6268,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4713-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0362,"labelHeight":3.0731,"markerRadius":1.5159}}},"entry-4541":{"id":"entry-4541","kind":"mob","name":"Blood of Agamaggan","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8282","name":"Curse of Blood","spellId":8282,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5445,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4754-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.0705,"labelHeight":4.0944,"markerRadius":2.0195}}},"entry-4519":{"id":"entry-4519","kind":"mob","name":"Death's Head Seer","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/9fceacb1e87178ca5f1c580a75f07683cbcce1123c9c71d3b3baf3a63a40ffd6.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":4.066,"markerRadius":0.9488}}},"entry-4516":{"id":"entry-4516","kind":"mob","name":"Death's Head Adept","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9672","name":"Frostbolt","spellId":9672,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5142,"damageMultiplier":1.12},{"id":"spell-113","name":"Chains of Ice","spellId":113,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5142,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6098-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.5239,"markerRadius":0.8223}}},"entry-4525":{"id":"entry-4525","kind":"mob","name":"Razorfen Earthbreaker","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4647-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.7703,"markerRadius":0.65}}},"entry-4518":{"id":"entry-4518","kind":"mob","name":"Death's Head Sage","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6099-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":3.2543,"markerRadius":0.759}}},"entry-6035":{"id":"entry-6035","kind":"mob","name":"Razorfen Stalker","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7259","name":"Nature Protection Potion","spellId":7259,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6271,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6106-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.5209,"markerRadius":0.65}}},"entry-4532":{"id":"entry-4532","kind":"mob","name":"Razorfen Beastmaster","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5542,"damageMultiplier":1.12},{"id":"spell-8275","name":"Poisoned Shot","spellId":8275,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5542,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6105-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.1722,"markerRadius":0.798}}},"entry-6168":{"id":"entry-6168","kind":"boss","name":"Roogug","title":"Dungeon Boss","hasLoot":true,"combat":{"level":26,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9532","name":"Lightning Bolt","spellId":9532,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6232,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6110-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":3.2543,"markerRadius":0.759}}},"entry-4623":{"id":"entry-4623","kind":"mob","name":"Quilguard Champion","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6908,"damageMultiplier":1.12},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6908,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6103-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":4.1858,"markerRadius":1.3005}}},"entry-4523":{"id":"entry-4523","kind":"mob","name":"Razorfen Groundshaker","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6524","name":"Ground Tremor","spellId":6524,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.12},{"id":"spell-8046","name":"Earth Shock","spellId":8046,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4568,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6111-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.5239,"markerRadius":0.8223}}},"entry-4424":{"id":"entry-4424","kind":"boss","name":"Aggem Thorncurse","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6396,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6097-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":3.6471,"markerRadius":0.9207}}},"entry-4531":{"id":"entry-4531","kind":"mob","name":"Razorfen Beast Trainer","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4453-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0023,"labelHeight":2.8466,"markerRadius":0.7059}}},"entry-4522":{"id":"entry-4522","kind":"mob","name":"Razorfen Dustweaver","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6728","name":"Enveloping Winds","spellId":6728,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7084,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6110-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":3.2543,"markerRadius":0.759}}},"entry-4440":{"id":"entry-4440","kind":"mob","name":"Razorfen Totemic","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6112-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":3.795,"markerRadius":0.8855}}},"entry-4515":{"id":"entry-4515","kind":"mob","name":"Death's Head Acolyte","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5904,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15785","name":"Mana Burn","spellId":15785,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5904,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6093-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0023,"labelHeight":3.1333,"markerRadius":0.7274}}},"entry-4420":{"id":"entry-4420","kind":"boss","name":"Overlord Ramtusk","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5920,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4652-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":4.7838,"markerRadius":1.4863}}},"entry-4438":{"id":"entry-4438","kind":"mob","name":"Razorfen Spearhide","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8148","name":"Thorns Aura","spellId":8148,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5089,"damageMultiplier":1.12},{"id":"spell-8259","name":"Whirling Barrage","spellId":8259,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5089,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6078-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":2.9551,"markerRadius":0.7366}}},"entry-4428":{"id":"entry-4428","kind":"boss","name":"Death Speaker Jargba","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5528,"damageMultiplier":1.35},{"id":"spell-14515","name":"Dominate Mind","spellId":14515,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5528,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4644-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":4.4848,"markerRadius":1.3934}}},"entry-4510":{"id":"entry-4510","kind":"mob","name":"Heralath Fallowbrook","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-2596-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-4437":{"id":"entry-4437","kind":"mob","name":"Razorfen Warden","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6533","name":"Net","spellId":6533,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4756,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4758-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":3.7373,"markerRadius":1.1612}}},"entry-4508":{"id":"entry-4508","kind":"mob","name":"Willix the Importer","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-7155-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-4517":{"id":"entry-4517","kind":"mob","name":"Death's Head Priest","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5746,"damageMultiplier":1.12},{"id":"spell-6063","name":"Greater Heal","spellId":6063,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5746,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6096-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.7703,"markerRadius":0.65}}},"entry-4538":{"id":"entry-4538","kind":"mob","name":"Kraul Bat","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/d1808c723ce299735a6e04353e27ea6350abc507068bc4737393e3d16145bac6.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.17,"markerRadius":2.1069}}},"entry-4539":{"id":"entry-4539","kind":"mob","name":"Greater Kraul Bat","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3242","name":"Ravage","spellId":3242,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7255,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/b436a3eaa350ebf59fb34bc8aaf7baa25a7dcafe72fc6a85ed66da8833a517b0.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.4433,"markerRadius":2.8092}}},"entry-4427":{"id":"entry-4427","kind":"mob","name":"Ward Guardian","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-959","name":"Healing Wave","spellId":959,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":5810,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6104-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":4.1858,"markerRadius":1.3005}}},"entry-4625":{"id":"entry-4625","kind":"mob","name":"Death's Head Ward Keeper","combat":{"level":15,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6101-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":2.2862,"markerRadius":0.65}}},"entry-4425":{"id":"entry-4425","kind":"mob","name":"Blind Hunter","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4735-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.17,"markerRadius":2.1069}}},"entry-4422":{"id":"entry-4422","kind":"boss","name":"Agathelos the Raging","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6158,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-2450-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0834,"labelHeight":7.0381,"markerRadius":3.4983}}},"entry-4421":{"id":"entry-4421","kind":"boss","name":"Charlga Razorflank","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8292","name":"Chain Bolt","spellId":8292,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7109,"damageMultiplier":1.35},{"id":"spell-8361","name":"Purity","spellId":8361,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7109,"damageMultiplier":1.35},{"id":"spell-8358","name":"Mana Spike","spellId":8358,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7109,"damageMultiplier":1.35},{"id":"spell-6077","name":"Renew","spellId":6077,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":7109,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4642-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":3.795,"markerRadius":0.8855}}},"entry-4842":{"id":"entry-4842","kind":"boss","name":"Earthcaller Halmgar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9532","name":"Lightning Bolt","spellId":9532,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6027,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.29,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6102-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":4.3371,"markerRadius":1.012}}}},"staticSpawns":[{"id":"creature-87284","entityId":"entry-4436","position":[56.75,-6.5981,7.292],"yaw":-3.4383,"spawnMask":1},{"id":"creature-87285","entityId":"entry-4436","position":[53.12,-6.1576,15.602],"yaw":-3.56047,"spawnMask":1},{"id":"creature-87286","entityId":"entry-4530","position":[35.61,-7.5968,-4.818],"yaw":-0.626741,"spawnMask":1},{"id":"creature-87287","entityId":"entry-4436","position":[28.25,-5.9383,74.752],"yaw":-3.03687,"spawnMask":1},{"id":"creature-87288","entityId":"entry-4530","position":[38.74,-6.3581,14.082],"yaw":-1.04361,"spawnMask":1},{"id":"creature-87290","entityId":"entry-4435","position":[39.29,-6.0329,27.482],"yaw":-2.00106,"spawnMask":1},{"id":"creature-87291","entityId":"entry-4435","position":[27.94,-6.2482,7.432],"yaw":-4.31675,"spawnMask":1},{"id":"creature-87292","entityId":"entry-4436","position":[25.36,-5.3361,49.642],"yaw":-4.22739,"spawnMask":1},{"id":"creature-87293","entityId":"entry-4436","position":[27.82,-6.4756,33.212],"yaw":-4.78123,"spawnMask":1},{"id":"creature-87294","entityId":"entry-4442","position":[43.58,-12.7444,-29.698],"yaw":-1.79769,"spawnMask":1},{"id":"creature-87296","entityId":"entry-4530","position":[10.72,-7.4454,76.922],"yaw":-6.25575,"spawnMask":1},{"id":"creature-87297","entityId":"entry-4436","position":[20.15,-5.433,83.302],"yaw":-3.64774,"spawnMask":1},{"id":"creature-87301","entityId":"entry-4520","position":[19.44,-6.3265,107.532],"yaw":-2.57618,"spawnMask":1},{"id":"creature-87302","entityId":"entry-4436","position":[24.13,-6.7425,123.572],"yaw":-4.34587,"spawnMask":1},{"id":"creature-87304","entityId":"entry-4514","position":[69.16,-22.4595,41.122],"yaw":-1.22348,"spawnMask":1},{"id":"creature-87305","entityId":"entry-4436","position":[35.58,-6.8253,123.272],"yaw":-3.86109,"spawnMask":1},{"id":"creature-87306","entityId":"entry-4520","position":[42.51,-4.5439,137.282],"yaw":-4.57276,"spawnMask":1},{"id":"creature-87307","entityId":"entry-4530","position":[55.49,-5.7774,127.422],"yaw":-4.05184,"spawnMask":1},{"id":"creature-87310","entityId":"entry-4514","position":[90.43,-24.3996,76.442],"yaw":-3.14159,"spawnMask":1},{"id":"creature-87311","entityId":"entry-4436","position":[67.25,-5.2501,125.882],"yaw":-2.6529,"spawnMask":1},{"id":"creature-87312","entityId":"entry-4436","position":[71.32,-5.634,132.852],"yaw":-2.96706,"spawnMask":1},{"id":"creature-87313","entityId":"entry-4511","position":[82.77,-24.2567,94.182],"yaw":-5.3058,"spawnMask":1},{"id":"creature-87314","entityId":"entry-4511","position":[89.08,-22.9521,110.042],"yaw":-0.709751,"spawnMask":1},{"id":"creature-87315","entityId":"entry-4514","position":[89.79,-24.0935,91.352],"yaw":-1.48928,"spawnMask":1},{"id":"creature-87316","entityId":"entry-4442","position":[103.37,-5.5409,42.152],"yaw":-3.71137,"spawnMask":1},{"id":"creature-87317","entityId":"entry-4512","position":[91.29,-25.9934,137.302],"yaw":-1.12516,"spawnMask":1},{"id":"creature-87318","entityId":"entry-4514","position":[103.71,-25.9808,151.532],"yaw":-4.32842,"spawnMask":1},{"id":"creature-87319","entityId":"entry-4514","position":[55.76,-26.6216,204.872],"yaw":-2.50425,"spawnMask":1},{"id":"creature-87320","entityId":"entry-4514","position":[67.43,-27.5298,186.802],"yaw":-2.13508,"spawnMask":1},{"id":"creature-87322","entityId":"entry-4511","position":[84.92,-28.9357,178.822],"yaw":-2.9891,"spawnMask":1},{"id":"creature-87323","entityId":"entry-4442","position":[124.57,-6.7551,71.112],"yaw":-2.3911,"spawnMask":1},{"id":"creature-87324","entityId":"entry-4511","position":[138.46,-27.7636,142.762],"yaw":-2.30383,"spawnMask":1},{"id":"creature-87325","entityId":"entry-4519","position":[126.55,-6.3694,78.262],"yaw":-4.44461,"spawnMask":1},{"id":"creature-87326","entityId":"entry-4516","position":[130.87,-6.4759,85.902],"yaw":-4.79965,"spawnMask":1},{"id":"creature-87327","entityId":"entry-4525","position":[140.37,-6.6715,170.562],"yaw":-5.96903,"spawnMask":1},{"id":"creature-87328","entityId":"entry-4518","position":[95.93,-10.227,205.502],"yaw":-1.3439,"spawnMask":1},{"id":"creature-87329","entityId":"entry-6035","position":[89.21,-10.5284,219.782],"yaw":-0.174533,"spawnMask":1},{"id":"creature-87330","entityId":"entry-4525","position":[88.36,-10.6224,210.842],"yaw":-0.349066,"spawnMask":1},{"id":"creature-87331","entityId":"entry-4525","position":[145.82,-6.7531,184.832],"yaw":-4.83456,"spawnMask":1},{"id":"creature-87332","entityId":"entry-4518","position":[151.26,-5.5786,96.472],"yaw":-5.20059,"spawnMask":1},{"id":"creature-87333","entityId":"entry-4516","position":[138.46,-5.8024,57.802],"yaw":-3.60296,"spawnMask":1},{"id":"creature-87334","entityId":"entry-4442","position":[155.5,-5.7481,60.902],"yaw":-0.791037,"spawnMask":1},{"id":"creature-87335","entityId":"entry-4519","position":[115.28,-5.9712,32.962],"yaw":-2.55439,"spawnMask":1},{"id":"creature-87336","entityId":"entry-4516","position":[144.52,-6.7409,46.642],"yaw":-1.95454,"spawnMask":1},{"id":"creature-87337","entityId":"entry-4518","position":[155.95,-5.4119,90.402],"yaw":-0.340052,"spawnMask":1},{"id":"creature-87338","entityId":"entry-4532","position":[169.22,-5.57,91.632],"yaw":-4.85866,"spawnMask":1},{"id":"creature-87340","entityId":"entry-4532","position":[161.57,-5.5097,107.832],"yaw":-1.32335,"spawnMask":1},{"id":"creature-87342","entityId":"entry-4519","position":[129.22,-5.6243,28.042],"yaw":-2.23835,"spawnMask":1},{"id":"creature-87343","entityId":"entry-4519","position":[126.31,-0.051,16.052],"yaw":-6.11408,"spawnMask":1},{"id":"creature-87344","entityId":"entry-4516","position":[135.12,-5.6243,27.062],"yaw":-0.545883,"spawnMask":1},{"id":"creature-87345","entityId":"entry-4442","position":[154.93,-5.7508,50.772],"yaw":-4.40274,"spawnMask":1},{"id":"creature-87346","entityId":"entry-6168","position":[166.18,-6.8639,58.462],"yaw":-3.08923,"spawnMask":1},{"id":"creature-87347","entityId":"entry-4516","position":[162.69,-6.4745,65.362],"yaw":-3.82997,"spawnMask":1},{"id":"creature-87349","entityId":"entry-4623","position":[155.53,-5.1604,134.032],"yaw":-4.72984,"spawnMask":1},{"id":"creature-87350","entityId":"entry-4623","position":[148.82,-4.8631,135.132],"yaw":-5.96903,"spawnMask":1},{"id":"creature-87351","entityId":"entry-4442","position":[53.79,-14.2548,-24.998],"yaw":-2.33874,"spawnMask":1},{"id":"creature-87352","entityId":"entry-4523","position":[182.08,-15.2326,26.422],"yaw":-5.16617,"spawnMask":1},{"id":"creature-87353","entityId":"entry-4523","position":[175.49,-14.2749,16.282],"yaw":-5.74726,"spawnMask":1},{"id":"creature-87355","entityId":"entry-4442","position":[175.33,-14.3189,2.192],"yaw":-4.19474,"spawnMask":1},{"id":"creature-87356","entityId":"entry-4623","position":[184.34,-5.5442,104.982],"yaw":-1.72788,"spawnMask":1},{"id":"creature-87357","entityId":"entry-4424","position":[105.5,-14.0692,-59.568],"yaw":-5.46288,"spawnMask":1},{"id":"creature-87358","entityId":"entry-4531","position":[127.48,-13.5468,-53.638],"yaw":-5.53269,"spawnMask":1},{"id":"creature-87359","entityId":"entry-4442","position":[59.95,-19.6216,-47.338],"yaw":-2.25853,"spawnMask":1},{"id":"creature-87360","entityId":"entry-4522","position":[145.4,-14.1661,-37.618],"yaw":-4.21812,"spawnMask":1},{"id":"creature-87362","entityId":"entry-4442","position":[192.99,-15.9572,-0.178],"yaw":-0.226893,"spawnMask":1},{"id":"creature-87364","entityId":"entry-4523","position":[158.84,-14.1648,-29.658],"yaw":-0.447883,"spawnMask":1},{"id":"creature-87365","entityId":"entry-4532","position":[177.92,-19.3161,-28.968],"yaw":-0.186359,"spawnMask":1},{"id":"creature-87367","entityId":"entry-4442","position":[183.33,-20.1712,-16.008],"yaw":-0.885894,"spawnMask":1},{"id":"creature-87368","entityId":"entry-4442","position":[180.8,-19.7757,-14.348],"yaw":-0.852833,"spawnMask":1},{"id":"creature-87370","entityId":"entry-4516","position":[87.49,-19.7792,-64.018],"yaw":-0.511291,"spawnMask":1},{"id":"creature-87371","entityId":"entry-4531","position":[124.76,-13.3522,-73.018],"yaw":-1.93731,"spawnMask":1},{"id":"creature-87372","entityId":"entry-4516","position":[155.88,-20.8962,-61.958],"yaw":-5.21432,"spawnMask":1},{"id":"creature-87373","entityId":"entry-4523","position":[101.9,-20.5857,-79.728],"yaw":-1.18513,"spawnMask":1},{"id":"creature-87374","entityId":"entry-4442","position":[205.27,-15.7376,2.932],"yaw":-3.31613,"spawnMask":1},{"id":"creature-87375","entityId":"entry-4442","position":[175.75,-20.1499,-48.848],"yaw":-2.98618,"spawnMask":1},{"id":"creature-87378","entityId":"entry-4440","position":[206.3,-7.3233,73.312],"yaw":-5.85803,"spawnMask":1},{"id":"creature-87379","entityId":"entry-4515","position":[215.03,-13.8197,-24.498],"yaw":-2.04204,"spawnMask":1},{"id":"creature-87380","entityId":"entry-4442","position":[217.97,-13.918,-21.408],"yaw":-1.8675,"spawnMask":1},{"id":"creature-87381","entityId":"entry-4518","position":[230.79,-5.6057,88.722],"yaw":-4.99159,"spawnMask":1},{"id":"creature-87382","entityId":"entry-4440","position":[200.65,-6.1388,115.712],"yaw":-3.66033,"spawnMask":1},{"id":"creature-87383","entityId":"entry-4623","position":[182.49,-5.361,112.892],"yaw":-5.3058,"spawnMask":1},{"id":"creature-87384","entityId":"entry-4525","position":[213,-6.8443,85.292],"yaw":-2.44378,"spawnMask":1},{"id":"creature-87385","entityId":"entry-4525","position":[205.38,-5.8148,100.282],"yaw":-5.16836,"spawnMask":1},{"id":"creature-87386","entityId":"entry-4420","position":[226.32,-1.3459,116.942],"yaw":-4.7822,"spawnMask":1},{"id":"creature-87387","entityId":"entry-4438","position":[229.17,-1.3211,121.642],"yaw":-4.76475,"spawnMask":1},{"id":"creature-87388","entityId":"entry-4438","position":[221.59,-1.1703,118.972],"yaw":-4.93928,"spawnMask":1},{"id":"creature-87389","entityId":"entry-4518","position":[236.68,-5.9431,79.612],"yaw":-5.09984,"spawnMask":1},{"id":"creature-87390","entityId":"entry-4511","position":[189.19,-28.5113,163.242],"yaw":-2.93215,"spawnMask":1},{"id":"creature-87391","entityId":"entry-4511","position":[172.7,-28.8405,162.622],"yaw":-6.07375,"spawnMask":1},{"id":"creature-87392","entityId":"entry-4514","position":[172.83,-28.3035,150.962],"yaw":-3.71252,"spawnMask":1},{"id":"creature-87393","entityId":"entry-4623","position":[168.58,-5.5672,103.852],"yaw":-1.88496,"spawnMask":1},{"id":"creature-87394","entityId":"entry-4623","position":[165.99,-5.5786,103.442],"yaw":-2.04204,"spawnMask":1},{"id":"creature-87395","entityId":"entry-4516","position":[122.66,-23.5624,-86.448],"yaw":-2.69286,"spawnMask":1},{"id":"creature-87397","entityId":"entry-4442","position":[147.38,-22.8003,-88.268],"yaw":-2.3911,"spawnMask":1},{"id":"creature-87398","entityId":"entry-4442","position":[142.75,-23.0571,-93.078],"yaw":-2.51327,"spawnMask":1},{"id":"creature-87399","entityId":"entry-4440","position":[166.82,-11.3263,-92.178],"yaw":-2.32917,"spawnMask":1},{"id":"creature-87400","entityId":"entry-4428","position":[169.62,-13.2943,-111.868],"yaw":-1.5708,"spawnMask":1},{"id":"creature-87401","entityId":"entry-4515","position":[163.72,-13.3613,-109.258],"yaw":-0.872665,"spawnMask":1},{"id":"creature-87402","entityId":"entry-4523","position":[166.46,-9.252,-72.668],"yaw":-3.27257,"spawnMask":1},{"id":"creature-87403","entityId":"entry-4523","position":[178.29,-12.9152,-93.418],"yaw":-4.68963,"spawnMask":1},{"id":"creature-87404","entityId":"entry-4522","position":[186.39,-13.3863,-62.768],"yaw":-5.92303,"spawnMask":1},{"id":"creature-87405","entityId":"entry-4523","position":[177.93,-13.0001,-108.488],"yaw":-2.00713,"spawnMask":1},{"id":"creature-87407","entityId":"entry-4522","position":[201.82,-14.8891,-48.808],"yaw":-5.17167,"spawnMask":1},{"id":"creature-87408","entityId":"entry-4520","position":[207.15,-14.3405,-42.568],"yaw":-5.19729,"spawnMask":1},{"id":"creature-87411","entityId":"entry-4623","position":[204.68,-12.3955,46.032],"yaw":-4.27606,"spawnMask":1},{"id":"creature-87412","entityId":"entry-4623","position":[197.71,-12.2251,48.612],"yaw":-4.5204,"spawnMask":1},{"id":"creature-87413","entityId":"entry-4511","position":[190.24,-32.1836,178.512],"yaw":-0.609866,"spawnMask":1},{"id":"creature-87414","entityId":"entry-4518","position":[152.93,-7.1336,184.522],"yaw":-4.31096,"spawnMask":1},{"id":"creature-87415","entityId":"entry-4514","position":[175.73,-35.1529,198.922],"yaw":-4.2182,"spawnMask":1},{"id":"creature-87416","entityId":"entry-4512","position":[92.25,-29.6441,178.322],"yaw":-0.081818,"spawnMask":1},{"id":"creature-87417","entityId":"entry-4511","position":[145.85,-34.4412,215.752],"yaw":-5.86431,"spawnMask":1},{"id":"creature-87418","entityId":"entry-4623","position":[114.7,-9.577,224.302],"yaw":-3.87463,"spawnMask":1},{"id":"creature-87419","entityId":"entry-4623","position":[111.33,-9.4645,229.972],"yaw":-3.38594,"spawnMask":1},{"id":"creature-87420","entityId":"entry-4511","position":[161.51,-34.6848,221.252],"yaw":-4.83456,"spawnMask":1},{"id":"creature-87421","entityId":"entry-6035","position":[156.92,-6.4197,175.892],"yaw":-3.01942,"spawnMask":1},{"id":"creature-87422","entityId":"entry-4514","position":[135.26,-38.8618,262.032],"yaw":-1.91986,"spawnMask":1},{"id":"creature-87423","entityId":"entry-4511","position":[69.8,-27.7834,242.202],"yaw":-4.47792,"spawnMask":1},{"id":"creature-87424","entityId":"entry-4514","position":[103.27,-32.4738,261.482],"yaw":-3.77963,"spawnMask":1},{"id":"creature-87425","entityId":"entry-4511","position":[145.54,-39.8363,272.192],"yaw":-3.84249,"spawnMask":1},{"id":"creature-87426","entityId":"entry-4541","position":[139.87,-39.427,268.642],"yaw":-6.1975,"spawnMask":1},{"id":"creature-87427","entityId":"entry-4514","position":[57.8,-26.9375,238.642],"yaw":-5.41052,"spawnMask":1},{"id":"creature-87428","entityId":"entry-4511","position":[131.43,-39.0035,278.962],"yaw":-4.34587,"spawnMask":1},{"id":"creature-87432","entityId":"entry-4511","position":[160.7,-39.964,278.142],"yaw":-3.92376,"spawnMask":1},{"id":"creature-87433","entityId":"entry-4623","position":[135.55,-6.7123,299.422],"yaw":-4.01426,"spawnMask":1},{"id":"creature-87434","entityId":"entry-4623","position":[128.69,-7.3564,299.362],"yaw":-4.76475,"spawnMask":1},{"id":"creature-87436","entityId":"entry-4512","position":[90.22,-31.9255,325.302],"yaw":-3.0186,"spawnMask":1},{"id":"creature-87437","entityId":"entry-4514","position":[93.87,-32.3966,327.362],"yaw":-1.12912,"spawnMask":1},{"id":"creature-87438","entityId":"entry-4514","position":[60.38,-31.2896,338.482],"yaw":-5.81195,"spawnMask":1},{"id":"creature-87439","entityId":"entry-4514","position":[61.83,-31.0455,328.852],"yaw":-0.087266,"spawnMask":1},{"id":"creature-87440","entityId":"entry-4511","position":[114.3,-36.2015,336.982],"yaw":-5.74213,"spawnMask":1},{"id":"creature-87441","entityId":"entry-4511","position":[140.67,-37.8318,327.972],"yaw":-3.36736,"spawnMask":1},{"id":"creature-87442","entityId":"entry-4510","position":[209.96,-22.0991,266.382],"yaw":-0.890118,"spawnMask":1},{"id":"creature-87443","entityId":"entry-4437","position":[207.34,-22.751,283.512],"yaw":-1.43117,"spawnMask":1},{"id":"creature-87444","entityId":"entry-4514","position":[159.89,-38.5016,324.832],"yaw":-2.61795,"spawnMask":1},{"id":"creature-87445","entityId":"entry-4508","position":[217.57,-21.6754,268.582],"yaw":-2.11185,"spawnMask":1},{"id":"creature-87447","entityId":"entry-4437","position":[219.82,-22.2888,282.632],"yaw":-2.14675,"spawnMask":1},{"id":"creature-87448","entityId":"entry-4517","position":[201.5,-28.8461,321.162],"yaw":-5.20154,"spawnMask":1},{"id":"creature-87449","entityId":"entry-4517","position":[216.25,-26.9262,313.042],"yaw":-3.77636,"spawnMask":1},{"id":"creature-87450","entityId":"entry-4437","position":[218.62,-24.9694,293.942],"yaw":-3.32956,"spawnMask":1},{"id":"creature-87451","entityId":"entry-4437","position":[208.61,-26.4125,305.012],"yaw":-4.73733,"spawnMask":1},{"id":"creature-87452","entityId":"entry-4437","position":[184.77,-30.362,338.752],"yaw":-3.76991,"spawnMask":1},{"id":"creature-87453","entityId":"entry-4437","position":[186.91,-30.2735,328.982],"yaw":-3.05433,"spawnMask":1},{"id":"creature-87454","entityId":"entry-4623","position":[133.2,-15.2246,363.662],"yaw":-5.044,"spawnMask":1},{"id":"creature-87455","entityId":"entry-4623","position":[140.07,-15.589,360.722],"yaw":-4.13643,"spawnMask":1},{"id":"creature-87456","entityId":"entry-4517","position":[201.53,-29.0517,331.972],"yaw":-3.70765,"spawnMask":1},{"id":"creature-87457","entityId":"entry-4517","position":[213.99,-28.7467,339.252],"yaw":-2.33087,"spawnMask":1},{"id":"creature-87458","entityId":"entry-4518","position":[165.1,-20.6788,395.762],"yaw":-4.34914,"spawnMask":1},{"id":"creature-87459","entityId":"entry-4538","position":[101.4,-24.2334,439.202],"yaw":-5.65254,"spawnMask":1},{"id":"creature-87460","entityId":"entry-4538","position":[79.63,-17.777,397.022],"yaw":-2.73908,"spawnMask":1},{"id":"creature-87461","entityId":"entry-4538","position":[105.07,-21.7447,416.412],"yaw":-4.63723,"spawnMask":1},{"id":"creature-87462","entityId":"entry-4539","position":[104.22,-23.3032,422.282],"yaw":-1.96165,"spawnMask":1},{"id":"creature-87463","entityId":"entry-4538","position":[85.78,-22.4954,415.752],"yaw":-1.56869,"spawnMask":1},{"id":"creature-87464","entityId":"entry-4538","position":[115.22,-22.2835,443.602],"yaw":-0.428552,"spawnMask":1},{"id":"creature-87465","entityId":"entry-4623","position":[180.06,-21.4894,411.202],"yaw":-0.628319,"spawnMask":1},{"id":"creature-87466","entityId":"entry-4440","position":[169.15,-19.9551,407.912],"yaw":-1.00215,"spawnMask":1},{"id":"creature-87467","entityId":"entry-4538","position":[138.36,-21.7392,460.582],"yaw":-1.03096,"spawnMask":1},{"id":"creature-87468","entityId":"entry-4539","position":[127.22,-22.3777,460.352],"yaw":-1.91355,"spawnMask":1},{"id":"creature-87469","entityId":"entry-4539","position":[100.23,-23.7838,458.362],"yaw":-3.90556,"spawnMask":1},{"id":"creature-87470","entityId":"entry-4538","position":[212.1,-31.4757,451.672],"yaw":-4.01327,"spawnMask":1},{"id":"creature-87471","entityId":"entry-4538","position":[174.33,-23.4175,441.862],"yaw":-4.67624,"spawnMask":1},{"id":"creature-87472","entityId":"entry-4538","position":[174.91,-27.2504,465.112],"yaw":-1.71821,"spawnMask":1},{"id":"creature-87473","entityId":"entry-4538","position":[185.11,-28.6838,437.932],"yaw":-1.52629,"spawnMask":1},{"id":"creature-87474","entityId":"entry-4538","position":[158.79,-27.0786,455.302],"yaw":-4.4854,"spawnMask":1},{"id":"creature-87475","entityId":"entry-4539","position":[184.24,-26.3473,471.252],"yaw":-4.02457,"spawnMask":1},{"id":"creature-87476","entityId":"entry-4538","position":[187.49,-29.0503,431.322],"yaw":-2.01097,"spawnMask":1},{"id":"creature-87477","entityId":"entry-4538","position":[151.32,-22.9794,477.372],"yaw":-6.08115,"spawnMask":1},{"id":"creature-87478","entityId":"entry-4427","position":[90.46,-22.322,476.242],"yaw":-5.72468,"spawnMask":1},{"id":"creature-87479","entityId":"entry-4519","position":[95.08,-23.8909,481.412],"yaw":-5.44543,"spawnMask":1},{"id":"creature-87480","entityId":"entry-4427","position":[99.92,-24.7279,486.172],"yaw":-5.23599,"spawnMask":1},{"id":"creature-87481","entityId":"entry-4625","position":[92.42,-23.204,492.192],"yaw":-2.40855,"spawnMask":1},{"id":"creature-87482","entityId":"entry-4625","position":[87,-23.0349,485.662],"yaw":-2.47837,"spawnMask":1},{"id":"creature-87483","entityId":"entry-4539","position":[154.32,-22.3989,483.822],"yaw":-4.33878,"spawnMask":1},{"id":"creature-87484","entityId":"entry-4539","position":[166.93,-21.6958,489.772],"yaw":-2.77843,"spawnMask":1},{"id":"creature-87485","entityId":"entry-4425","position":[223.95,-30.5253,455.082],"yaw":-3.735,"spawnMask":1},{"id":"creature-87486","entityId":"entry-4422","position":[17.59,-23.9561,453.332],"yaw":-0.750492,"spawnMask":1},{"id":"creature-87487","entityId":"entry-4421","position":[213.59,-8.1092,341.182],"yaw":-1.37881,"spawnMask":1},{"id":"creature-87488","entityId":"entry-6035","position":[184.05,-21.4258,406.732],"yaw":-0.855211,"spawnMask":1},{"id":"creature-87489","entityId":"entry-6035","position":[185.12,-20.6561,397.252],"yaw":-5.78799,"spawnMask":1},{"id":"creature-1975863","entityId":"entry-4842","position":[141.77,-6.9165,172.212],"yaw":-1.46786,"spawnMask":1}],"roamingPacks":[{"id":"patrol-84369","name":"Rotting Agam'ar Patrol","speed":1.15,"pathId":843690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[120.26,-22.8264,-90.348],[144.68,-22.9705,-87.818],[157.92,-20.8536,-58.318],[174.93,-20.1613,-49.158],[179.82,-19.679,-25.978],[181.14,-19.9643,-19.738],[195.43,-17.0948,-3.388],[178.1,-19.6243,-23.768],[175.44,-20.0469,-47.898],[154,-20.7452,-66.948],[144.09,-22.9599,-88.028]],"members":[{"id":"member","entityId":"entry-4512","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87289","name":"Razorfen Geomancer Patrol","speed":1.15,"pathId":872890,"formationSource":"database-solo","spawnMask":1,"waypoints":[[42.56,-8.6299,-12.598],[52.4,-17.7937,-35.178],[94.9,-20.1578,-72.488],[52.4,-17.7937,-35.178]],"members":[{"id":"member","entityId":"entry-4520","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87321","name":"Blood of Agamaggan Patrol","speed":1.15,"pathId":873210,"formationSource":"database-solo","spawnMask":1,"waypoints":[[84.64,-25.3177,123.082],[111.79,-26.0044,149.962],[126.22,-28.2407,148.772],[111.79,-26.0044,149.962]],"members":[{"id":"member","entityId":"entry-4541","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87354","name":"Razorfen Defender Patrol","speed":1.15,"pathId":873540,"formationSource":"database-solo","spawnMask":1,"waypoints":[[160.68,-14.5556,-17.098],[125.91,-13.8357,-65.358]],"members":[{"id":"member","entityId":"entry-4442","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87363","name":"Death's Head Adept Patrol","speed":1.15,"pathId":873630,"formationSource":"database-solo","spawnMask":1,"waypoints":[[179.16,-19.7339,-22.618],[195.68,-19.3206,-8.718],[196,-16.0652,-0.388],[197.06,-15.0657,36.532],[196,-16.0652,-0.388],[195.68,-19.3206,-8.718]],"members":[{"id":"member","entityId":"entry-4516","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87377","name":"Razorfen Defender Patrol","speed":1.15,"pathId":873770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[201.93,-14.1569,-27.028],[179,-12.2482,-64.068]],"members":[{"id":"member","entityId":"entry-4442","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87396","name":"Razorfen Defender Patrol","speed":1.15,"pathId":873960,"formationSource":"database-solo","spawnMask":1,"waypoints":[[140.13,-23.2249,-83.568],[155.43,-20.8026,-58.018],[178.65,-20.2188,-44.758],[155.43,-20.8026,-58.018]],"members":[{"id":"member","entityId":"entry-4442","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87429","name":"Blood of Agamaggan Patrol","speed":1.15,"pathId":874290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[56.88,-26.8891,234.962],[70.49,-27.8082,182.962],[111.8,-30.6795,182.822],[70.49,-27.8082,182.962]],"members":[{"id":"member","entityId":"entry-4541","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87430","name":"Quilguard Champion Patrol","speed":1.15,"pathId":874300,"formationSource":"database-solo","spawnMask":1,"waypoints":[[117.58,-8.9159,250.452],[124.83,-13.3064,272.012],[134.02,-7.3435,299.532],[137.91,-13.9377,335.502],[134.02,-7.3435,299.532],[124.83,-13.3064,272.012]],"members":[{"id":"member","entityId":"entry-4623","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87431","name":"Quilguard Champion Patrol","speed":1.15,"pathId":874310,"formationSource":"database-solo","spawnMask":1,"waypoints":[[114.02,-9.017,251.532],[120.3,-13.0618,273.622],[130.35,-7.3839,300.132],[132.82,-13.9703,337.182],[130.35,-7.3839,300.132],[120.3,-13.0618,273.622]],"members":[{"id":"member","entityId":"entry-4623","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87435","name":"Blood of Agamaggan Patrol","speed":1.15,"pathId":874350,"formationSource":"database-solo","spawnMask":1,"waypoints":[[93.87,-32.165,323.112],[132.41,-37.8839,331.122],[155.01,-40.1884,311.022],[132.41,-37.8839,331.122]],"members":[{"id":"member","entityId":"entry-4541","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87446","name":"Razorfen Warden Patrol","speed":1.15,"pathId":874460,"formationSource":"database-solo","spawnMask":1,"waypoints":[[185.44,-30.249,334.502],[211.09,-27.3185,313.422],[185.44,-30.249,334.502],[168.22,-37.6763,325.522]],"members":[{"id":"member","entityId":"entry-4437","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-87346","name":"Roogug","position":[166.18,-6.8639,58.462]},{"id":"creature-87357","name":"Aggem Thorncurse","position":[105.5,-14.0692,-59.568]},{"id":"creature-87400","name":"Death Speaker Jargba","position":[169.62,-13.2943,-111.868]},{"id":"creature-87386","name":"Overlord Ramtusk","position":[226.32,-1.3459,116.942]},{"id":"creature-87487","name":"Charlga Razorflank","position":[213.59,-8.1092,341.182]},{"id":"creature-87486","name":"Agathelos the Raging","position":[17.59,-23.9561,453.332]},{"id":"creature-1975863","name":"Earthcaller Halmgar","position":[141.77,-6.9165,172.212]}],"objectiveOrder":[{"id":"creature-87346","name":"Roogug","position":[166.18,-6.8639,58.462]},{"id":"creature-87357","name":"Aggem Thorncurse","position":[105.5,-14.0692,-59.568]},{"id":"creature-87400","name":"Death Speaker Jargba","position":[169.62,-13.2943,-111.868]},{"id":"creature-87386","name":"Overlord Ramtusk","position":[226.32,-1.3459,116.942]},{"id":"creature-87487","name":"Charlga Razorflank","position":[213.59,-8.1092,341.182]},{"id":"creature-87486","name":"Agathelos the Raging","position":[17.59,-23.9561,453.332]},{"id":"creature-1975863","name":"Earthcaller Halmgar","position":[141.77,-6.9165,172.212]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29727,"id":20919,"map":47,"orientation":3.66079,"phaseMask":1,"position_x":2082.74,"position_y":1671.82,"position_z":61.2396,"rotation0":0,"rotation1":0,"rotation2":0.966493,"rotation3":-0.256693,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29728,"id":20919,"map":47,"orientation":3.66079,"phaseMask":1,"position_x":2159.43,"position_y":1687.49,"position_z":57.5433,"rotation0":0,"rotation1":0,"rotation2":0.966493,"rotation3":-0.256693,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29729,"id":20919,"map":47,"orientation":0.553757,"phaseMask":1,"position_x":2080.89,"position_y":1703.36,"position_z":56.6447,"rotation0":0,"rotation1":0,"rotation2":0.273354,"rotation3":0.961913,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29730,"id":20919,"map":47,"orientation":2.98378,"phaseMask":1,"position_x":2055.28,"position_y":1767.7,"position_z":58.4559,"rotation0":0,"rotation1":0,"rotation2":0.996889,"rotation3":0.0788245,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29731,"id":20919,"map":47,"orientation":2.11277,"phaseMask":1,"position_x":2196.64,"position_y":1827.96,"position_z":61.4706,"rotation0":0,"rotation1":0,"rotation2":0.870583,"rotation3":0.492022,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29732,"id":20919,"map":47,"orientation":5.6777,"phaseMask":1,"position_x":2030.32,"position_y":1867.61,"position_z":56.2866,"rotation0":0,"rotation1":0,"rotation2":0.298139,"rotation3":-0.954522,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29733,"id":20919,"map":47,"orientation":1.25355,"phaseMask":1,"position_x":2091.33,"position_y":1861.73,"position_z":51.0341,"rotation0":0,"rotation1":0,"rotation2":0.586536,"rotation3":0.809923,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29734,"id":20919,"map":47,"orientation":2.6492,"phaseMask":1,"position_x":2200.15,"position_y":1897.64,"position_z":71.3191,"rotation0":0,"rotation1":0,"rotation2":0.969846,"rotation3":0.243717,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29735,"id":20919,"map":47,"orientation":1.33994,"phaseMask":1,"position_x":2075.75,"position_y":1742.04,"position_z":76.7184,"rotation0":0,"rotation1":0,"rotation2":0.620962,"rotation3":0.78384,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29736,"id":20919,"map":47,"orientation":0.0220437,"phaseMask":1,"position_x":2126,"position_y":1661.15,"position_z":82.4824,"rotation0":0,"rotation1":0,"rotation2":0.0110216,"rotation3":0.999939,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29737,"id":20919,"map":47,"orientation":3.60582,"phaseMask":1,"position_x":2207.92,"position_y":1596.91,"position_z":80.7375,"rotation0":0,"rotation1":0,"rotation2":0.973182,"rotation3":-0.230035,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29738,"id":20919,"map":47,"orientation":2.43086,"phaseMask":1,"position_x":2156.98,"position_y":1542.26,"position_z":72.849,"rotation0":0,"rotation1":0,"rotation2":0.937519,"rotation3":0.347934,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29739,"id":20919,"map":47,"orientation":0.778385,"phaseMask":1,"position_x":2179.95,"position_y":1514.06,"position_z":69.0709,"rotation0":0,"rotation1":0,"rotation2":0.379441,"rotation3":0.925216,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29740,"id":20919,"map":47,"orientation":4.919,"phaseMask":1,"position_x":2000.85,"position_y":1533.93,"position_z":80.3971,"rotation0":0,"rotation1":0,"rotation2":0.630419,"rotation3":-0.776255,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29741,"id":20919,"map":47,"orientation":1.1004,"phaseMask":1,"position_x":1991.49,"position_y":1608.53,"position_z":81.1601,"rotation0":0,"rotation1":0,"rotation2":0.522858,"rotation3":0.85242,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35693,"id":11899,"map":47,"orientation":-0.18326,"phaseMask":1,"position_x":1729.23,"position_y":1350.39,"position_z":-44.1443,"rotation0":0,"rotation1":0,"rotation2":-0.0915018,"rotation3":0.995805,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35694,"id":11898,"map":47,"orientation":0.061086,"phaseMask":1,"position_x":1734.57,"position_y":1372.33,"position_z":85.4053,"rotation0":0,"rotation1":0,"rotation2":0.0305383,"rotation3":0.999534,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35695,"id":2042,"map":47,"orientation":1.16937,"phaseMask":1,"position_x":2035.23,"position_y":1525.38,"position_z":80.6839,"rotation0":0,"rotation1":0,"rotation2":0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35696,"id":69431,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":1896.43,"position_y":1626.5,"position_z":73.9552,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35698,"id":21099,"map":47,"orientation":-0.357792,"phaseMask":1,"position_x":2060.41,"position_y":2015.7,"position_z":62.3831,"rotation0":0,"rotation1":0,"rotation2":-0.177943,"rotation3":0.984041,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35699,"id":69425,"map":47,"orientation":0.820303,"phaseMask":1,"position_x":1885.3,"position_y":1644.9,"position_z":80.4157,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35701,"id":1621,"map":47,"orientation":-1.62316,"phaseMask":1,"position_x":2073.56,"position_y":1600.3,"position_z":63.6955,"rotation0":0,"rotation1":0,"rotation2":-0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35702,"id":2042,"map":47,"orientation":-2.49582,"phaseMask":1,"position_x":2039.44,"position_y":1700.29,"position_z":61.0109,"rotation0":0,"rotation1":0,"rotation2":-0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35703,"id":69422,"map":47,"orientation":0.820303,"phaseMask":1,"position_x":2096.74,"position_y":1597.51,"position_z":80.4157,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35705,"id":74447,"map":47,"orientation":-1.98968,"phaseMask":1,"position_x":2111.45,"position_y":1613.83,"position_z":81.1889,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35706,"id":1621,"map":47,"orientation":-0.418879,"phaseMask":1,"position_x":2096.28,"position_y":1557.81,"position_z":81.4785,"rotation0":0,"rotation1":0,"rotation2":-0.207912,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35707,"id":74078,"map":47,"orientation":0.820303,"phaseMask":1,"position_x":2110.67,"position_y":1543.94,"position_z":81.4979,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35709,"id":69436,"map":47,"orientation":0.856097,"phaseMask":1,"position_x":2146.93,"position_y":1541.3,"position_z":72.1165,"rotation0":0.0148201,"rotation1":-0.0225077,"rotation2":0.415046,"rotation3":0.909401,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35711,"id":69429,"map":47,"orientation":0.855641,"phaseMask":1,"position_x":2157.04,"position_y":1552.62,"position_z":72.277,"rotation0":0.0298719,"rotation1":0.0088129,"rotation2":0.41481,"rotation3":0.909375,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35713,"id":69432,"map":47,"orientation":0.854632,"phaseMask":1,"position_x":2107.36,"position_y":1453.43,"position_z":73.7746,"rotation0":-0.0234752,"rotation1":-0.0138464,"rotation2":0.414205,"rotation3":0.909776,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35715,"id":69424,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2136.88,"position_y":1476.97,"position_z":72.9517,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35717,"id":69421,"map":47,"orientation":0.856097,"phaseMask":1,"position_x":2202.55,"position_y":1518.84,"position_z":84.805,"rotation0":0.0148201,"rotation1":-0.0225077,"rotation2":0.415046,"rotation3":0.909401,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35719,"id":69426,"map":47,"orientation":0.817546,"phaseMask":1,"position_x":2202.16,"position_y":1646.29,"position_z":85.5384,"rotation0":-0.00733662,"rotation1":0.000103951,"rotation2":0.397491,"rotation3":0.917577,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35721,"id":74447,"map":47,"orientation":-1.37881,"phaseMask":1,"position_x":2199.22,"position_y":1654.65,"position_z":86.1542,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35722,"id":69434,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2083.82,"position_y":1431.21,"position_z":85.4887,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35724,"id":69435,"map":47,"orientation":0.846398,"phaseMask":1,"position_x":2112.14,"position_y":1413.64,"position_z":85.7095,"rotation0":-0.0380807,"rotation1":0.0856991,"rotation2":0.408829,"rotation3":0.90778,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35726,"id":69430,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2132.16,"position_y":1410.02,"position_z":73.9552,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35728,"id":1621,"map":47,"orientation":2.00713,"phaseMask":1,"position_x":2139.33,"position_y":1404.52,"position_z":73.725,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35729,"id":69437,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2155.07,"position_y":1405.45,"position_z":84.1599,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35731,"id":74075,"map":47,"orientation":0.820303,"phaseMask":1,"position_x":2158.47,"position_y":1413.67,"position_z":74.1121,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35733,"id":69423,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2145.55,"position_y":1405.98,"position_z":73.6876,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35735,"id":69433,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2192.71,"position_y":1487.74,"position_z":82.826,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35737,"id":1734,"map":47,"orientation":-1.81514,"phaseMask":1,"position_x":2175.92,"position_y":1714.05,"position_z":55.2663,"rotation0":0,"rotation1":0,"rotation2":-0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35738,"id":1621,"map":47,"orientation":-1.93731,"phaseMask":1,"position_x":2097.27,"position_y":1746.72,"position_z":78.7565,"rotation0":0,"rotation1":0,"rotation2":-0.824125,"rotation3":0.566409,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35739,"id":1735,"map":47,"orientation":0.680678,"phaseMask":1,"position_x":2097.83,"position_y":1864.54,"position_z":52.5586,"rotation0":0,"rotation1":0,"rotation2":0.333807,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35740,"id":69438,"map":47,"orientation":1.51814,"phaseMask":1,"position_x":2191.35,"position_y":1788.04,"position_z":65.3368,"rotation0":-0.0429792,"rotation1":-0.0164337,"rotation2":0.688065,"rotation3":0.724189,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35742,"id":1621,"map":47,"orientation":0.715585,"phaseMask":1,"position_x":2026.93,"position_y":1858.32,"position_z":56.4944,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35743,"id":1735,"map":47,"orientation":-2.72271,"phaseMask":1,"position_x":2128.49,"position_y":1922.27,"position_z":68.3568,"rotation0":0,"rotation1":0,"rotation2":-0.978147,"rotation3":0.207914,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35744,"id":74076,"map":47,"orientation":0.820303,"phaseMask":1,"position_x":2137.15,"position_y":1923.77,"position_z":66.4822,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35746,"id":69428,"map":47,"orientation":1.51844,"phaseMask":1,"position_x":2147.91,"position_y":1917.96,"position_z":66.5457,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35748,"id":1621,"map":47,"orientation":-2.37365,"phaseMask":1,"position_x":2210.56,"position_y":1881.96,"position_z":71.2617,"rotation0":0,"rotation1":0,"rotation2":-0.927184,"rotation3":0.374606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35749,"id":69427,"map":47,"orientation":1.51844,"phaseMask":1,"position_x":2067.08,"position_y":2010.08,"position_z":63.7909,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35751,"id":1735,"map":47,"orientation":-0.977384,"phaseMask":1,"position_x":2166.68,"position_y":1998.86,"position_z":62.0029,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56185,"id":20920,"map":47,"orientation":3.66079,"phaseMask":1,"position_x":2082.74,"position_y":1671.82,"position_z":61.2396,"rotation0":0,"rotation1":0,"rotation2":0.966493,"rotation3":-0.256693,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56186,"id":20920,"map":47,"orientation":3.66079,"phaseMask":1,"position_x":2159.43,"position_y":1687.49,"position_z":57.5433,"rotation0":0,"rotation1":0,"rotation2":0.966493,"rotation3":-0.256693,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56187,"id":20920,"map":47,"orientation":0.553757,"phaseMask":1,"position_x":2080.89,"position_y":1703.36,"position_z":56.6447,"rotation0":0,"rotation1":0,"rotation2":0.273354,"rotation3":0.961913,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56188,"id":20920,"map":47,"orientation":2.98378,"phaseMask":1,"position_x":2055.28,"position_y":1767.7,"position_z":58.4559,"rotation0":0,"rotation1":0,"rotation2":0.996889,"rotation3":0.0788245,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56189,"id":20920,"map":47,"orientation":2.11277,"phaseMask":1,"position_x":2196.64,"position_y":1827.96,"position_z":61.4706,"rotation0":0,"rotation1":0,"rotation2":0.870583,"rotation3":0.492022,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56190,"id":20920,"map":47,"orientation":5.6777,"phaseMask":1,"position_x":2030.32,"position_y":1867.61,"position_z":56.2866,"rotation0":0,"rotation1":0,"rotation2":0.298139,"rotation3":-0.954522,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56191,"id":20920,"map":47,"orientation":1.25355,"phaseMask":1,"position_x":2091.33,"position_y":1861.73,"position_z":51.0341,"rotation0":0,"rotation1":0,"rotation2":0.586536,"rotation3":0.809923,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56192,"id":20920,"map":47,"orientation":2.6492,"phaseMask":1,"position_x":2200.15,"position_y":1897.64,"position_z":71.3191,"rotation0":0,"rotation1":0,"rotation2":0.969846,"rotation3":0.243717,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56193,"id":20920,"map":47,"orientation":1.33994,"phaseMask":1,"position_x":2075.75,"position_y":1742.04,"position_z":76.7184,"rotation0":0,"rotation1":0,"rotation2":0.620962,"rotation3":0.78384,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56194,"id":20920,"map":47,"orientation":0.0220437,"phaseMask":1,"position_x":2126,"position_y":1661.15,"position_z":82.4824,"rotation0":0,"rotation1":0,"rotation2":0.0110216,"rotation3":0.999939,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56195,"id":20920,"map":47,"orientation":3.60582,"phaseMask":1,"position_x":2207.92,"position_y":1596.91,"position_z":80.7375,"rotation0":0,"rotation1":0,"rotation2":0.973182,"rotation3":-0.230035,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56196,"id":20920,"map":47,"orientation":2.43086,"phaseMask":1,"position_x":2156.98,"position_y":1542.26,"position_z":72.849,"rotation0":0,"rotation1":0,"rotation2":0.937519,"rotation3":0.347934,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56197,"id":20920,"map":47,"orientation":0.778385,"phaseMask":1,"position_x":2179.95,"position_y":1514.06,"position_z":69.0709,"rotation0":0,"rotation1":0,"rotation2":0.379441,"rotation3":0.925216,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56198,"id":20920,"map":47,"orientation":4.919,"phaseMask":1,"position_x":2000.85,"position_y":1533.93,"position_z":80.3971,"rotation0":0,"rotation1":0,"rotation2":0.630419,"rotation3":-0.776255,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56199,"id":20920,"map":47,"orientation":1.1004,"phaseMask":1,"position_x":1991.49,"position_y":1608.53,"position_z":81.1601,"rotation0":0,"rotation1":0,"rotation2":0.522858,"rotation3":0.85242,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/RazorfenKraulInstance":"6050c0a6de60895854687701cf877db89b74f5960592fbcbbd6a1fc547f62f8b","patch/World/maps/RazorfenKraulInstance":"8849a5d5aa16929cda8d5b376e9f68c34175d43fc7f7e1237fff0e9fdee459d8"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/razorfen-kraul/source-snapshot.json","coordinateTransform":"three(x,y,z)=(-draft.x,draft.y,draft.z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["38/38 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"blackfathom-deeps","title":"Blackfathom Deeps","mapId":48,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[20,30]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Blackfathom Deeps","theme":"Instanced dungeon","summary":"Fight through Blackfathom Deeps, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Blackfathom Deeps...","unchartedAreaName":"Uncharted Blackfathom Deeps","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1075.1237},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/48-blackfathom/visual.glb","checksum":"a47ad9d57ea9483d24b3231d9b6af183a5e67a75c87e23115a586ad41f8dda54","size":6153284,"triangleCount":208217}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/48-blackfathom/collision.glb","checksum":"3cff675247f3382146e0636a55f059d59a243cd63861950e6b647bd5b714bf6f","size":1105232,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/48-blackfathom/navigation.glb","checksum":"3f3750af3cd035a25ee63f27512088772b2a5faaa558422151ca972eba73e834","size":386652,"triangleCount":30083}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[285.0258,-90.6708,-1057.7993],"max":[1584.4204,7.7551,435.428]},"entrance":{"name":"Blackfathom Deeps Entrance","footPosition":[838.8504,-33.8975,-451.9743],"forward":[-0.5516996718852001,0,0.8340428478452186],"yaw":-0.5844007387776634},"areas":[{"id":"entrance","name":"Blackfathom Deeps Entrance","center":[838.8504,-33.8975,-451.9743],"radius":35},{"id":"area-ghamoo-ra","name":"Ghamoo-ra's Encounter","center":[1129.3844,-46.6642,-347.1123],"radius":42},{"id":"area-lady-sarevess","name":"Lady Sarevess's Encounter","center":[986.8774,-51.1504,-145.1793],"radius":42},{"id":"area-gelihast","name":"Gelihast's Encounter","center":[1099.6134,-42.1638,-518.0153],"radius":42},{"id":"area-lorgus-jett","name":"Lorgus Jett's Encounter","center":[1309.3154,-16.8045,-569.2844],"radius":42},{"id":"area-twilight-lord-kelris","name":"Twilight Lord Kelris's Encounter","center":[1505.7924,-19.8198,-714.5103],"radius":42},{"id":"area-aku-mai","name":"Aku'mai's Encounter","center":[1535.4064,-27.9197,-1012.7993],"radius":42}],"entities":{"entry-4815":{"id":"entry-4815","kind":"mob","name":"Murkshallow Snapclaw","combat":{"level":22,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8379","name":"Disarm","spellId":8379,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4840,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"murloc","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2835-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0188,"labelHeight":3.088,"markerRadius":1.3309}}},"entry-4821":{"id":"entry-4821","kind":"mob","name":"Skittering Crustacean","combat":{"level":22,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-981-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0763,"labelHeight":1.3218,"markerRadius":0.9309}}},"entry-4818":{"id":"entry-4818","kind":"mob","name":"Blindlight Murloc","combat":{"level":22,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6116,"damageMultiplier":1.12},{"id":"spell-7405","name":"Sunder Armor","spellId":7405,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6116,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"murloc","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-4920-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":2.4316,"markerRadius":0.65}}},"entry-4819":{"id":"entry-4819","kind":"mob","name":"Blindlight Muckdweller","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8382","name":"Leech Poison","spellId":8382,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6036,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-11293-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0097,"labelHeight":2.7785,"markerRadius":0.7177}}},"entry-4820":{"id":"entry-4820","kind":"mob","name":"Blindlight Oracle","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6063","name":"Greater Heal","spellId":6063,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":7007,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-9532","name":"Lightning Bolt","spellId":9532,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7007,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-3617-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0072,"labelHeight":2.1541,"markerRadius":0.65}}},"entry-6243":{"id":"entry-6243","kind":"boss","name":"Gelihast","title":"Dungeon Boss","hasLoot":true,"combat":{"level":24,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5547,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-1773-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0111,"labelHeight":3.1255,"markerRadius":0.8203}}},"entry-4805":{"id":"entry-4805","kind":"mob","name":"Blackfathom Sea Witch","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12544","name":"Frost Armor","spellId":12544,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.12},{"id":"spell-122","name":"Frost Nova","spellId":122,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5017,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-4982-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.4671,"labelHeight":6.5645,"markerRadius":1.2676}}},"entry-4822":{"id":"entry-4822","kind":"mob","name":"Snapping Crustacean","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-1001-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0878,"labelHeight":1.4676,"markerRadius":1.0705}}},"entry-4807":{"id":"entry-4807","kind":"mob","name":"Blackfathom Myrmidon","combat":{"level":22,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8379","name":"Disarm","spellId":8379,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6790,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-4762-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.2222,"labelHeight":5.7598,"markerRadius":0.8396}}},"entry-4824":{"id":"entry-4824","kind":"mob","name":"Aku'mai Fisher","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/7fd512b6d0b4caacdaa0d47f61101dffccbe0c7f14b6c6cd3022c55c73d2fe72.glb","rotationY":-1.5707963267948966,"groundOffset":0.0159,"labelHeight":2.7541,"markerRadius":1.7458}}},"entry-4887":{"id":"entry-4887","kind":"boss","name":"Ghamoo-ra","title":"Dungeon Boss","hasLoot":true,"combat":{"level":23,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5407,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-5027-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0239,"labelHeight":4.0389,"markerRadius":2.6186}}},"entry-4831":{"id":"entry-4831","kind":"boss","name":"Lady Sarevess","title":"Dungeon Boss","hasLoot":true,"combat":{"level":23,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6162,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-4979-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-4798":{"id":"entry-4798","kind":"mob","name":"Fallenroot Shadowstalker","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6205","name":"Curse of Weakness","spellId":6205,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6674,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/a8b97785230064bd46404c9b8eaf50380f71ee24f3c78ccedb3746d7e59764a6.glb","rotationY":-1.5707963267948966,"groundOffset":0.0055,"labelHeight":3.536,"markerRadius":1.0248}}},"entry-4799":{"id":"entry-4799","kind":"mob","name":"Fallenroot Hellcaller","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6961,"damageMultiplier":1.12},{"id":"spell-8129","name":"Mana Burn","spellId":8129,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6961,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c40245171481eb04ae88340d52e24044e16b3e0053584016264adcf3e83f9bbf.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-12902":{"id":"entry-12902","kind":"boss","name":"Lorgus Jett","title":"Dungeon Boss","hasLoot":true,"combat":{"level":24,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":7958,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.39,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-12822-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4809":{"id":"entry-4809","kind":"mob","name":"Twilight Acolyte","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-2055","name":"Greater Heal","spellId":2055,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6372,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6372,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2882-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-4811":{"id":"entry-4811","kind":"mob","name":"Twilight Aquamancer","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9672","name":"Frostbolt","spellId":9672,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4700,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2886-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0069,"labelHeight":2.5678,"markerRadius":0.65}}},"entry-4812":{"id":"entry-4812","kind":"mob","name":"Twilight Loreseeker","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18972","name":"Slow","spellId":18972,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6068,"damageMultiplier":1.12},{"id":"spell-8365","name":"Enlarge","spellId":8365,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6068,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2894-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-4827":{"id":"entry-4827","kind":"mob","name":"Deep Pool Threshfin","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3604","name":"Tendon Rip","spellId":3604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4064,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2836-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7193,"markerRadius":3.8653}}},"entry-4810":{"id":"entry-4810","kind":"mob","name":"Twilight Reaver","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8374","name":"Arcing Smash","spellId":8374,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6580,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2898-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-4823":{"id":"entry-4823","kind":"mob","name":"Barbed Crustacean","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-9565-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0992,"labelHeight":1.6133,"markerRadius":1.2101}}},"entry-4830":{"id":"entry-4830","kind":"mob","name":"Old Serra'kis","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-1816-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.7301,"markerRadius":4.5}}},"entry-4813":{"id":"entry-4813","kind":"mob","name":"Twilight Shadowmage","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4498,"damageMultiplier":1.12},{"id":"spell-7645","name":"Dominate Mind","spellId":7645,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4498,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2876-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.5086,"markerRadius":0.65}}},"entry-4814":{"id":"entry-4814","kind":"mob","name":"Twilight Elementalist","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8046","name":"Earth Shock","spellId":8046,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5882,"damageMultiplier":1.12},{"id":"spell-8052","name":"Flame Shock","spellId":8052,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5882,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2890-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-4832":{"id":"entry-4832","kind":"boss","name":"Twilight Lord Kelris","title":"Dungeon Boss","hasLoot":true,"combat":{"level":24,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15587","name":"Mind Blast","spellId":15587,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6656,"damageMultiplier":1.35},{"id":"spell-8399","name":"Sleep","spellId":8399,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":6656,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":4500}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-4939-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-4825":{"id":"entry-4825","kind":"mob","name":"Aku'mai Snapjaw","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8391","name":"Ravage","spellId":8391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4282,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-5026-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0159,"labelHeight":2.7541,"markerRadius":1.7458}}},"entry-4829":{"id":"entry-4829","kind":"boss","name":"Aku'mai","title":"Dungeon Boss","hasLoot":true,"combat":{"level":24,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":7639,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2837-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0204,"labelHeight":11.2552,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-18716","entityId":"entry-4815","position":[865.3284,-43.8504,-506.1951],"yaw":-1.27409,"spawnMask":1},{"id":"creature-18717","entityId":"entry-4821","position":[918.9464,-48.3246,-522.6128],"yaw":-0.471239,"spawnMask":1},{"id":"creature-18718","entityId":"entry-4818","position":[923.6014,-48.7352,-527.9218],"yaw":-0.785398,"spawnMask":1},{"id":"creature-18719","entityId":"entry-4821","position":[954.8964,-51.2127,-486.3358],"yaw":-3.76991,"spawnMask":1},{"id":"creature-18720","entityId":"entry-4818","position":[964.1244,-60.9866,-515.3098],"yaw":-3.61283,"spawnMask":1},{"id":"creature-18721","entityId":"entry-4818","position":[946.0954,-49.9812,-538.2128],"yaw":-4.86947,"spawnMask":1},{"id":"creature-18722","entityId":"entry-4818","position":[941.6884,-49.6978,-524.2401],"yaw":-2.25148,"spawnMask":1},{"id":"creature-18723","entityId":"entry-4815","position":[940.3344,-47.4206,-503.9148],"yaw":-4.4855,"spawnMask":1},{"id":"creature-18724","entityId":"entry-4818","position":[941.2824,-47.6392,-506.9576],"yaw":-5.35816,"spawnMask":1},{"id":"creature-18725","entityId":"entry-4818","position":[983.7794,-45.4856,-469.0928],"yaw":-1.51844,"spawnMask":1},{"id":"creature-18726","entityId":"entry-4821","position":[977.2644,-46.0636,-471.7652],"yaw":-1.32645,"spawnMask":1},{"id":"creature-18727","entityId":"entry-4821","position":[970.6894,-50.978,-550.4887],"yaw":-0.610865,"spawnMask":1},{"id":"creature-18728","entityId":"entry-4821","position":[989.4014,-57.5306,-488.2862],"yaw":-5.81195,"spawnMask":1},{"id":"creature-18729","entityId":"entry-4821","position":[968.1954,-51.0201,-542.4783],"yaw":-4.43314,"spawnMask":1},{"id":"creature-18730","entityId":"entry-4815","position":[993.8154,-62.7002,-582.6],"yaw":-5.61996,"spawnMask":1},{"id":"creature-18731","entityId":"entry-4818","position":[1003.4034,-65.8448,-562.1487],"yaw":-6.05629,"spawnMask":1},{"id":"creature-18732","entityId":"entry-4818","position":[1006.1344,-65.1833,-575.8725],"yaw":-2.32129,"spawnMask":1},{"id":"creature-18733","entityId":"entry-4821","position":[1021.2544,-54.6994,-480.7502],"yaw":-3.61283,"spawnMask":1},{"id":"creature-18734","entityId":"entry-4818","position":[982.4354,-47.5351,-450.7333],"yaw":-3.10669,"spawnMask":1},{"id":"creature-18735","entityId":"entry-4821","position":[1008.6064,-52.6479,-455.4423],"yaw":-3.28122,"spawnMask":1},{"id":"creature-18736","entityId":"entry-4818","position":[1024.7654,-66.3453,-583.5247],"yaw":-0.645772,"spawnMask":1},{"id":"creature-18737","entityId":"entry-4815","position":[1025.0564,-64.612,-592.6982],"yaw":-0.575959,"spawnMask":1},{"id":"creature-18738","entityId":"entry-4821","position":[1029.3874,-65.1373,-549.1639],"yaw":-1.78024,"spawnMask":1},{"id":"creature-18739","entityId":"entry-4821","position":[1060.5804,-50.8579,-508.5369],"yaw":-5.5676,"spawnMask":1},{"id":"creature-18740","entityId":"entry-4819","position":[1087.0334,-42.1516,-533.2437],"yaw":-2.30383,"spawnMask":1},{"id":"creature-18741","entityId":"entry-4820","position":[1093.8174,-42.4438,-532.4403],"yaw":-2.93215,"spawnMask":1},{"id":"creature-18742","entityId":"entry-4819","position":[1097.2334,-42.4578,-536.0711],"yaw":-1.17895,"spawnMask":1},{"id":"creature-18743","entityId":"entry-6243","position":[1099.6134,-42.1638,-518.0153],"yaw":-4.31096,"spawnMask":1},{"id":"creature-18744","entityId":"entry-4820","position":[1115.9654,-42.0259,-554.0696],"yaw":-2.74017,"spawnMask":1},{"id":"creature-18745","entityId":"entry-4819","position":[1109.9304,-42.098,-533.9231],"yaw":-3.45575,"spawnMask":1},{"id":"creature-18746","entityId":"entry-4820","position":[1109.3014,-41.8918,-554.7708],"yaw":-1.78024,"spawnMask":1},{"id":"creature-18747","entityId":"entry-4820","position":[1123.1134,-41.9995,-538.0598],"yaw":-3.45575,"spawnMask":1},{"id":"creature-18748","entityId":"entry-4820","position":[1122.7474,-42.2781,-520.5089],"yaw":-1.5708,"spawnMask":1},{"id":"creature-18749","entityId":"entry-4819","position":[1140.3714,-42.0273,-545.9122],"yaw":-3.42085,"spawnMask":1},{"id":"creature-18750","entityId":"entry-4819","position":[1147.9654,-41.9935,-549.9597],"yaw":-5.2709,"spawnMask":1},{"id":"creature-18751","entityId":"entry-4815","position":[1012.4224,-42.1363,-429.4253],"yaw":-0.575959,"spawnMask":1},{"id":"creature-18752","entityId":"entry-4815","position":[1034.0864,-44.7372,-428.3773],"yaw":-1.8326,"spawnMask":1},{"id":"creature-18753","entityId":"entry-4821","position":[1005.3924,-43.1201,-434.6533],"yaw":-0.802851,"spawnMask":1},{"id":"creature-18754","entityId":"entry-4815","position":[1040.2194,-44.9273,-421.8783],"yaw":-4.01426,"spawnMask":1},{"id":"creature-18755","entityId":"entry-4805","position":[1011.9134,-62.6654,-353.7023],"yaw":-3.00197,"spawnMask":1},{"id":"creature-18756","entityId":"entry-4822","position":[1074.2044,-50.6647,-385.1623],"yaw":-1.95477,"spawnMask":1},{"id":"creature-18989","entityId":"entry-4807","position":[1013.3104,-59.6268,-367.0933],"yaw":-0.24262,"spawnMask":1},{"id":"creature-18990","entityId":"entry-4822","position":[1048.2664,-59.4638,-358.8493],"yaw":-3.61283,"spawnMask":1},{"id":"creature-18992","entityId":"entry-4805","position":[1109.4894,-64.6958,-449.5073],"yaw":-1.82729,"spawnMask":1},{"id":"creature-19226","entityId":"entry-4822","position":[1096.0644,-50.5106,-377.9913],"yaw":-4.04916,"spawnMask":1},{"id":"creature-22274","entityId":"entry-4807","position":[1029.7194,-62.8015,-344.0363],"yaw":-2.00713,"spawnMask":1},{"id":"creature-22318","entityId":"entry-4805","position":[1078.1134,-51.1334,-375.6063],"yaw":-3.91349,"spawnMask":1},{"id":"creature-22332","entityId":"entry-4822","position":[1121.4954,-64.5943,-452.8623],"yaw":-2.93215,"spawnMask":1},{"id":"creature-25066","entityId":"entry-4822","position":[1130.1214,-64.6071,-428.4723],"yaw":-1.8675,"spawnMask":1},{"id":"creature-25067","entityId":"entry-4824","position":[1101.2054,-47.3507,-354.2763],"yaw":-0.261799,"spawnMask":1},{"id":"creature-25730","entityId":"entry-4805","position":[1052.7684,-61.7439,-337.3713],"yaw":-4.01426,"spawnMask":1},{"id":"creature-25731","entityId":"entry-4822","position":[1154.7834,-66.5944,-450.6283],"yaw":-1.18682,"spawnMask":1},{"id":"creature-25732","entityId":"entry-4887","position":[1129.3844,-46.6642,-347.1123],"yaw":-2.23402,"spawnMask":1},{"id":"creature-25733","entityId":"entry-4824","position":[1131.5494,-47.0596,-370.6673],"yaw":-1.69297,"spawnMask":1},{"id":"creature-25734","entityId":"entry-4824","position":[1103.5064,-47.7828,-325.3373],"yaw":-2.04204,"spawnMask":1},{"id":"creature-25735","entityId":"entry-4805","position":[1148.3734,-64.8023,-420.9323],"yaw":-6.19592,"spawnMask":1},{"id":"creature-25736","entityId":"entry-4805","position":[1061.6034,-61.0902,-321.4033],"yaw":-1.95477,"spawnMask":1},{"id":"creature-25737","entityId":"entry-4807","position":[1173.5004,-65.3085,-406.0413],"yaw":-6.14356,"spawnMask":1},{"id":"creature-25904","entityId":"entry-4824","position":[1132.4574,-47.7183,-321.1733],"yaw":-5.21853,"spawnMask":1},{"id":"creature-25905","entityId":"entry-4824","position":[1150.3334,-47.2828,-335.1243],"yaw":-5.11381,"spawnMask":1},{"id":"creature-26005","entityId":"entry-4824","position":[1156.9454,-47.1852,-357.8363],"yaw":-2.04204,"spawnMask":1},{"id":"creature-26006","entityId":"entry-4822","position":[1063.9334,-62.8536,-307.4233],"yaw":-3.28122,"spawnMask":1},{"id":"creature-26007","entityId":"entry-4822","position":[1175.6634,-67.245,-438.8423],"yaw":-4.08407,"spawnMask":1},{"id":"creature-26008","entityId":"entry-4822","position":[1202.1774,-59.3628,-369.7773],"yaw":-3.735,"spawnMask":1},{"id":"creature-26010","entityId":"entry-4807","position":[1195.1034,-66.7223,-391.3153],"yaw":-2.30383,"spawnMask":1},{"id":"creature-26011","entityId":"entry-4807","position":[1182.3344,-53.6714,-345.6643],"yaw":-1.27409,"spawnMask":1},{"id":"creature-26012","entityId":"entry-4805","position":[1203.2444,-69.3139,-401.0263],"yaw":-6.0845,"spawnMask":1},{"id":"creature-26013","entityId":"entry-4822","position":[1198.6074,-57.9497,-316.7743],"yaw":-2.82743,"spawnMask":1},{"id":"creature-26014","entityId":"entry-4807","position":[1203.0084,-56.8331,-335.1833],"yaw":-0.593412,"spawnMask":1},{"id":"creature-26015","entityId":"entry-4822","position":[1188.9784,-58.8605,-301.6523],"yaw":-2.93215,"spawnMask":1},{"id":"creature-26016","entityId":"entry-4805","position":[1188.9894,-57.498,-310.6593],"yaw":-0.823047,"spawnMask":1},{"id":"creature-26017","entityId":"entry-4822","position":[1149.4904,-56.8475,-279.2933],"yaw":-3.22886,"spawnMask":1},{"id":"creature-26018","entityId":"entry-4805","position":[1098.4404,-62.9785,-273.3653],"yaw":-2.14675,"spawnMask":1},{"id":"creature-26028","entityId":"entry-4822","position":[1088.9334,-65.1421,-284.6283],"yaw":-4.11898,"spawnMask":1},{"id":"creature-26051","entityId":"entry-4807","position":[1123.6384,-60.2306,-269.1463],"yaw":-1.97222,"spawnMask":1},{"id":"creature-26052","entityId":"entry-4822","position":[1167.1744,-59.3145,-284.6743],"yaw":-3.45575,"spawnMask":1},{"id":"creature-26108","entityId":"entry-4807","position":[1066.8524,-69.4201,-287.0453],"yaw":-2.74017,"spawnMask":1},{"id":"creature-26109","entityId":"entry-4807","position":[1103.3154,-62.1618,-256.9823],"yaw":-4.86947,"spawnMask":1},{"id":"creature-26110","entityId":"entry-4805","position":[1099.2134,-62.2528,-244.0893],"yaw":-6.17846,"spawnMask":1},{"id":"creature-26111","entityId":"entry-4822","position":[1044.8814,-70.6708,-274.7563],"yaw":-0.628319,"spawnMask":1},{"id":"creature-26112","entityId":"entry-4807","position":[1098.0314,-65.3863,-221.2543],"yaw":-0.05236,"spawnMask":1},{"id":"creature-26113","entityId":"entry-4805","position":[1100.1504,-62.263,-236.9313],"yaw":-4.72522,"spawnMask":1},{"id":"creature-26114","entityId":"entry-4807","position":[1032.4724,-64.0163,-259.7613],"yaw":-4.59022,"spawnMask":1},{"id":"creature-26115","entityId":"entry-4805","position":[1040.7064,-47.8615,-220.2843],"yaw":-4.43314,"spawnMask":1},{"id":"creature-26116","entityId":"entry-4807","position":[1014.1244,-47.8255,-216.6683],"yaw":-0.820305,"spawnMask":1},{"id":"creature-26117","entityId":"entry-4805","position":[1029.5394,-47.9678,-204.9533],"yaw":-3.45575,"spawnMask":1},{"id":"creature-26118","entityId":"entry-4807","position":[992.9334,-47.9948,-241.1013],"yaw":-3.29867,"spawnMask":1},{"id":"creature-26119","entityId":"entry-4805","position":[988.3514,-47.2725,-229.9673],"yaw":-0.296706,"spawnMask":1},{"id":"creature-26120","entityId":"entry-4805","position":[993.9084,-47.4837,-214.9543],"yaw":-5.23599,"spawnMask":1},{"id":"creature-26121","entityId":"entry-4807","position":[1014.7004,-49.8076,-159.0013],"yaw":-4.36332,"spawnMask":1},{"id":"creature-26129","entityId":"entry-4831","position":[986.8774,-51.1504,-145.1793],"yaw":-3.60618,"spawnMask":1},{"id":"creature-26130","entityId":"entry-4822","position":[1235.9644,-55.9029,-336.8143],"yaw":-6.12611,"spawnMask":1},{"id":"creature-26131","entityId":"entry-4807","position":[1221.8424,-56.7661,-338.1593],"yaw":-0.733038,"spawnMask":1},{"id":"creature-26132","entityId":"entry-4822","position":[1255.2964,-51.4319,-320.3023],"yaw":-3.45575,"spawnMask":1},{"id":"creature-26133","entityId":"entry-4805","position":[1239.6674,-55.0553,-330.1073],"yaw":-4.88692,"spawnMask":1},{"id":"creature-26134","entityId":"entry-4822","position":[1254.3084,-51.4933,-337.2573],"yaw":-1.78024,"spawnMask":1},{"id":"creature-26135","entityId":"entry-4807","position":[1201.6774,-67.9757,-389.5533],"yaw":-5.24776,"spawnMask":1},{"id":"creature-26137","entityId":"entry-4798","position":[1284.4504,-44.8591,-315.4343],"yaw":-3.94444,"spawnMask":1},{"id":"creature-26138","entityId":"entry-4807","position":[1301.5184,-44.2049,-310.7293],"yaw":-3.50811,"spawnMask":1},{"id":"creature-26139","entityId":"entry-4807","position":[1295.0474,-45.2704,-329.7783],"yaw":-6.21337,"spawnMask":1},{"id":"creature-26140","entityId":"entry-4798","position":[1305.3204,-47.3261,-371.1513],"yaw":-6.03884,"spawnMask":1},{"id":"creature-26141","entityId":"entry-4798","position":[1295.9144,-47.7836,-373.8163],"yaw":-2.82743,"spawnMask":1},{"id":"creature-26142","entityId":"entry-4807","position":[1308.1444,-42.7269,-314.9963],"yaw":-0.767945,"spawnMask":1},{"id":"creature-26143","entityId":"entry-4805","position":[1317.6234,-52.127,-414.7703],"yaw":-3.40339,"spawnMask":1},{"id":"creature-26144","entityId":"entry-4805","position":[1326.7834,-52.0565,-414.2193],"yaw":-5.89921,"spawnMask":1},{"id":"creature-26145","entityId":"entry-4805","position":[1327.4164,-51.9699,-442.2203],"yaw":-0.733038,"spawnMask":1},{"id":"creature-26146","entityId":"entry-4805","position":[1322.3624,-52.0302,-437.3683],"yaw":-3.94444,"spawnMask":1},{"id":"creature-26147","entityId":"entry-4798","position":[1323.7414,-52.2958,-416.1783],"yaw":-4.67099,"spawnMask":1},{"id":"creature-26149","entityId":"entry-4798","position":[1294.2604,-48.9882,-511.1229],"yaw":-2.63545,"spawnMask":1},{"id":"creature-26150","entityId":"entry-4807","position":[1271.9224,-45.4953,-513.388],"yaw":-2.14675,"spawnMask":1},{"id":"creature-26151","entityId":"entry-4798","position":[1289.8424,-44.4346,-536.0454],"yaw":-2.84489,"spawnMask":1},{"id":"creature-26152","entityId":"entry-4799","position":[1299.8954,-46.7623,-525.504],"yaw":-5.41052,"spawnMask":1},{"id":"creature-26153","entityId":"entry-4798","position":[1299.3274,-45.7702,-531.7362],"yaw":-5.67232,"spawnMask":1},{"id":"creature-26154","entityId":"entry-4807","position":[1277.0284,-45.9814,-509.0327],"yaw":-5.81195,"spawnMask":1},{"id":"creature-26155","entityId":"entry-4799","position":[1375.9114,-24.6594,-534.862],"yaw":-2.40855,"spawnMask":1},{"id":"creature-26156","entityId":"entry-4799","position":[1383.2744,-24.8947,-530.2737],"yaw":-5.88176,"spawnMask":1},{"id":"creature-26157","entityId":"entry-4799","position":[1359.0974,-19.3024,-550.0856],"yaw":-1.18682,"spawnMask":1},{"id":"creature-26170","entityId":"entry-4805","position":[1353.3784,-16.9327,-552.9763],"yaw":-6.14356,"spawnMask":1},{"id":"creature-26173","entityId":"entry-12902","position":[1309.3154,-16.8045,-569.2844],"yaw":-4.90438,"spawnMask":1},{"id":"creature-26285","entityId":"entry-4807","position":[1344.6084,-12.2449,-572.8984],"yaw":-4.50295,"spawnMask":1},{"id":"creature-26286","entityId":"entry-4798","position":[1249.6974,-39.3578,-562.0006],"yaw":-1.01229,"spawnMask":1},{"id":"creature-26287","entityId":"entry-4807","position":[1305.0364,-17.3836,-567.6458],"yaw":-1.48353,"spawnMask":1},{"id":"creature-26288","entityId":"entry-4799","position":[1311.1924,-15.9006,-573.3728],"yaw":-0.383972,"spawnMask":1},{"id":"creature-26289","entityId":"entry-4799","position":[1257.3244,-41.1653,-558.0366],"yaw":-3.35103,"spawnMask":1},{"id":"creature-26290","entityId":"entry-4805","position":[1231.3984,-36.0633,-561.933],"yaw":-3.4383,"spawnMask":1},{"id":"creature-26291","entityId":"entry-4798","position":[1233.4674,-32.5687,-608.7158],"yaw":-0.226893,"spawnMask":1},{"id":"creature-26292","entityId":"entry-4799","position":[1310.9314,-15.8012,-596.2423],"yaw":-4.43314,"spawnMask":1},{"id":"creature-26293","entityId":"entry-4805","position":[1261.2264,-28.6422,-604.3123],"yaw":-4.53786,"spawnMask":1},{"id":"creature-26294","entityId":"entry-4799","position":[1232.9024,-33.2236,-599.7879],"yaw":-0.645772,"spawnMask":1},{"id":"creature-26295","entityId":"entry-4805","position":[1267.1024,-27.1188,-595.9779],"yaw":-3.24631,"spawnMask":1},{"id":"creature-26296","entityId":"entry-4805","position":[1310.0294,-16.4139,-604.2775],"yaw":-1.50098,"spawnMask":1},{"id":"creature-26297","entityId":"entry-4805","position":[1205.1894,-37.1783,-568.4123],"yaw":-4.20624,"spawnMask":1},{"id":"creature-26299","entityId":"entry-4805","position":[1200.7834,-40.2605,-528.6107],"yaw":-5.20108,"spawnMask":1},{"id":"creature-26300","entityId":"entry-4805","position":[1194.6654,-39.4619,-539.8285],"yaw":-2.07694,"spawnMask":1},{"id":"creature-26301","entityId":"entry-4807","position":[1198.0394,-37.0217,-592.0917],"yaw":-1.88496,"spawnMask":1},{"id":"creature-26302","entityId":"entry-4805","position":[1205.9744,-35.5553,-600.2018],"yaw":-1.88496,"spawnMask":1},{"id":"creature-26303","entityId":"entry-4805","position":[1166.9274,-34.9972,-599.9034],"yaw":-0.139626,"spawnMask":1},{"id":"creature-26304","entityId":"entry-4807","position":[1192.3024,-36.0819,-611.9872],"yaw":-3.75246,"spawnMask":1},{"id":"creature-26305","entityId":"entry-4807","position":[1196.9494,-35.8462,-617.4831],"yaw":-1.18682,"spawnMask":1},{"id":"creature-26306","entityId":"entry-4799","position":[1201.2204,-36.1793,-604.2433],"yaw":-2.53691,"spawnMask":1},{"id":"creature-26307","entityId":"entry-4798","position":[1174.3314,-36.7613,-644.9081],"yaw":-6.19592,"spawnMask":1},{"id":"creature-26308","entityId":"entry-4798","position":[1155.5764,-30.6659,-599.5113],"yaw":-1.37881,"spawnMask":1},{"id":"creature-26309","entityId":"entry-4799","position":[1165.7064,-34.6836,-645.0506],"yaw":-3.24631,"spawnMask":1},{"id":"creature-26311","entityId":"entry-4809","position":[1379.6314,-23.978,-604.6868],"yaw":-4.04916,"spawnMask":1},{"id":"creature-26312","entityId":"entry-4811","position":[1382.4014,-23.9801,-599.4408],"yaw":-3.10669,"spawnMask":1},{"id":"creature-26313","entityId":"entry-4812","position":[1381.4924,-23.9775,-589.0077],"yaw":-1.32645,"spawnMask":1},{"id":"creature-26314","entityId":"entry-4827","position":[1387.7034,-32.3631,-636.2891],"yaw":-3.59538,"spawnMask":1},{"id":"creature-26315","entityId":"entry-4810","position":[1405.2804,-31.6778,-589.9234],"yaw":-2.35619,"spawnMask":1},{"id":"creature-26316","entityId":"entry-4810","position":[1408.9734,-31.6778,-615.4781],"yaw":-3.83972,"spawnMask":1},{"id":"creature-26317","entityId":"entry-4810","position":[1409.0654,-31.6778,-586.3599],"yaw":-5.5676,"spawnMask":1},{"id":"creature-26318","entityId":"entry-4810","position":[1412.3264,-31.6856,-619.0529],"yaw":-0.907571,"spawnMask":1},{"id":"creature-26319","entityId":"entry-4798","position":[1407.1454,-23.8784,-518.7581],"yaw":-0.383972,"spawnMask":1},{"id":"creature-26320","entityId":"entry-4810","position":[1431.5674,-23.9745,-551.0693],"yaw":-3.59538,"spawnMask":1},{"id":"creature-26321","entityId":"entry-4810","position":[1412.5164,-23.9775,-552.9864],"yaw":-5.93412,"spawnMask":1},{"id":"creature-26322","entityId":"entry-4812","position":[1406.8234,-23.9775,-554.6237],"yaw":-2.93215,"spawnMask":1},{"id":"creature-26323","entityId":"entry-4807","position":[1400.2454,-23.9574,-516.1727],"yaw":-3.47321,"spawnMask":1},{"id":"creature-26324","entityId":"entry-4812","position":[1409.3704,-31.6865,-637.9651],"yaw":-5.28835,"spawnMask":1},{"id":"creature-26325","entityId":"entry-4811","position":[1435.7134,-23.9432,-553.2061],"yaw":-0.506145,"spawnMask":1},{"id":"creature-26326","entityId":"entry-4823","position":[1448.4264,-34.3605,-593.5952],"yaw":-1.65806,"spawnMask":1},{"id":"creature-26327","entityId":"entry-4812","position":[1451.5934,-23.8739,-613.0376],"yaw":-5.39307,"spawnMask":1},{"id":"creature-26328","entityId":"entry-4810","position":[1480.8534,-23.6257,-618.3168],"yaw":-1.8326,"spawnMask":1},{"id":"creature-26330","entityId":"entry-4811","position":[1485.4404,-23.6257,-613.9219],"yaw":-0.191986,"spawnMask":1},{"id":"creature-26331","entityId":"entry-4811","position":[1451.6854,-23.8749,-620.5879],"yaw":-1.5708,"spawnMask":1},{"id":"creature-26333","entityId":"entry-4812","position":[1485.2404,-23.7091,-615.9444],"yaw":-6.23816,"spawnMask":1},{"id":"creature-27352","entityId":"entry-4812","position":[1488.8964,-23.6257,-618.826],"yaw":-4.50295,"spawnMask":1},{"id":"creature-27390","entityId":"entry-4827","position":[1440.0304,-34.8982,-646.2792],"yaw":-6.0912,"spawnMask":1},{"id":"creature-27396","entityId":"entry-4811","position":[1409.1724,-24.0012,-664.6293],"yaw":-1.18682,"spawnMask":1},{"id":"creature-27397","entityId":"entry-4809","position":[1421.1424,-23.9799,-664.2403],"yaw":-2.30383,"spawnMask":1},{"id":"creature-27399","entityId":"entry-4810","position":[1429.0284,-24.0342,-664.4133],"yaw":-3.35103,"spawnMask":1},{"id":"creature-27400","entityId":"entry-4827","position":[1413.4744,-30.9254,-677.1873],"yaw":-3.75246,"spawnMask":1},{"id":"creature-27401","entityId":"entry-4827","position":[1465.3284,-34.1717,-653.4282],"yaw":-3.66519,"spawnMask":1},{"id":"creature-27403","entityId":"entry-4813","position":[1486.2804,-19.8143,-667.6373],"yaw":-3.10669,"spawnMask":1},{"id":"creature-27404","entityId":"entry-4814","position":[1476.6574,-19.8142,-683.5923],"yaw":-3.08923,"spawnMask":1},{"id":"creature-27405","entityId":"entry-4827","position":[1503.8924,-34.2991,-647.4964],"yaw":-6.14356,"spawnMask":1},{"id":"creature-27406","entityId":"entry-4823","position":[1495.0054,-30.8958,-675.2103],"yaw":-3.10669,"spawnMask":1},{"id":"creature-27408","entityId":"entry-4812","position":[1509.0794,-23.6453,-638.8727],"yaw":-1.15192,"spawnMask":1},{"id":"creature-27409","entityId":"entry-4813","position":[1500.0474,-19.6973,-658.2518],"yaw":-3.68265,"spawnMask":1},{"id":"creature-27410","entityId":"entry-4814","position":[1505.6144,-19.8142,-667.1513],"yaw":-4.43314,"spawnMask":1},{"id":"creature-27411","entityId":"entry-4827","position":[1505.5584,-32.2957,-613.623],"yaw":-0.907571,"spawnMask":1},{"id":"creature-27412","entityId":"entry-4811","position":[1509.1784,-23.6257,-613.6422],"yaw":-6.14356,"spawnMask":1},{"id":"creature-27413","entityId":"entry-4812","position":[1504.9964,-23.6636,-634.2805],"yaw":-2.84489,"spawnMask":1},{"id":"creature-27415","entityId":"entry-4811","position":[1503.1644,-23.6257,-614.3477],"yaw":-3.87463,"spawnMask":1},{"id":"creature-27416","entityId":"entry-4827","position":[1482.9504,-37.1262,-715.1423],"yaw":-3.59538,"spawnMask":1},{"id":"creature-27417","entityId":"entry-4814","position":[1476.6704,-19.8142,-699.3093],"yaw":-3.10669,"spawnMask":1},{"id":"creature-27418","entityId":"entry-4827","position":[1530.4274,-31.263,-652.9899],"yaw":-0.191986,"spawnMask":1},{"id":"creature-27419","entityId":"entry-4823","position":[1531.0254,-29.8694,-629.5843],"yaw":-4.50295,"spawnMask":1},{"id":"creature-27420","entityId":"entry-4813","position":[1506.4394,-19.8142,-691.6213],"yaw":-3.42085,"spawnMask":1},{"id":"creature-27421","entityId":"entry-4814","position":[1524.9594,-19.8142,-667.2363],"yaw":-0.017453,"spawnMask":1},{"id":"creature-27422","entityId":"entry-4814","position":[1492.5224,-19.8142,-686.6123],"yaw":-3.1765,"spawnMask":1},{"id":"creature-27423","entityId":"entry-4814","position":[1519.9754,-19.8142,-690.6793],"yaw":-6.03884,"spawnMask":1},{"id":"creature-27424","entityId":"entry-4832","position":[1505.7924,-19.8198,-714.5103],"yaw":-4.74729,"spawnMask":1},{"id":"creature-27425","entityId":"entry-4813","position":[1534.2714,-19.8142,-698.6483],"yaw":-6.24828,"spawnMask":1},{"id":"creature-27427","entityId":"entry-4813","position":[1533.9424,-19.8142,-683.2003],"yaw":-0.034907,"spawnMask":1},{"id":"creature-27429","entityId":"entry-4825","position":[1482.7234,-19.8142,-773.7263],"yaw":-1.32645,"spawnMask":1},{"id":"creature-27430","entityId":"entry-4825","position":[1516.3204,-19.826,-778.9123],"yaw":-4.04916,"spawnMask":1},{"id":"creature-27431","entityId":"entry-4825","position":[1484.6074,-19.8142,-810.3283],"yaw":-3.10669,"spawnMask":1},{"id":"creature-27432","entityId":"entry-4825","position":[1515.8074,-20.1863,-811.9693],"yaw":-0.897793,"spawnMask":1},{"id":"creature-27433","entityId":"entry-4829","position":[1535.4064,-27.9197,-1012.7993],"yaw":-1.5708,"spawnMask":1},{"id":"creature-27434","entityId":"entry-4825","position":[1527.8914,-27.8182,-915.5543],"yaw":-1.18682,"spawnMask":1},{"id":"creature-27435","entityId":"entry-4825","position":[1507.5384,-27.8346,-955.1583],"yaw":-2.30383,"spawnMask":1},{"id":"creature-27436","entityId":"entry-4825","position":[1539.4204,-28.0513,-966.5553],"yaw":-3.35103,"spawnMask":1}],"roamingPacks":[{"id":"patrol-26148","name":"Fallenroot Shadowstalker Patrol","speed":1.15,"pathId":261480,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1319.7714,-51.2372,-454.9183],[1309.0024,-49.8035,-492.5685],[1287.0394,-47.1656,-523.2242],[1309.0024,-49.8035,-492.5685]],"members":[{"id":"member","entityId":"entry-4798","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26298","name":"Fallenroot Hellcaller Patrol","speed":1.15,"pathId":262980,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1220.1264,-34.4464,-562.4895],[1260.7964,-42.6827,-548.5083],[1273.3544,-42.4628,-536.849],[1292.1694,-47.5434,-517.1072],[1273.3544,-42.4628,-536.849],[1260.7964,-42.6827,-548.5083]],"members":[{"id":"member","entityId":"entry-4799","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26310","name":"Fallenroot Shadowstalker Patrol","speed":1.15,"pathId":263100,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1219.2804,-33.6367,-602.4849],[1256.8704,-29.544,-602.6368],[1291.1034,-19.6772,-593.3188],[1256.8704,-29.544,-602.6368]],"members":[{"id":"member","entityId":"entry-4798","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26329","name":"Twilight Acolyte Patrol","speed":1.15,"pathId":263290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1407.9994,-31.7897,-645.4236],[1407.1974,-31.7613,-588.4812],[1400.6124,-31.7601,-588.0396],[1385.0094,-24.0607,-588.0209],[1400.6124,-31.7601,-588.0396],[1407.1974,-31.7613,-588.4812],[1407.7364,-31.7901,-573.0068],[1407.1974,-31.7613,-588.4812]],"members":[{"id":"member","entityId":"entry-4809","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26332","name":"Twilight Reaver Patrol","speed":1.15,"pathId":263320,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1441.2704,-23.9576,-617.103],[1504.2474,-23.7119,-616.8687],[1503.9534,-23.7665,-634.5333],[1504.2474,-23.7119,-616.8687]],"members":[{"id":"member","entityId":"entry-4810","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27402","name":"Old Serra'kis Patrol","speed":1.15,"pathId":274020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1433.7044,-44.6514,-728.3613],[1461.6304,-37.186,-747.2663],[1478.4314,-32.9746,-729.1443],[1449.7544,-40.5623,-716.0163]],"members":[{"id":"member","entityId":"entry-4830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27407","name":"Twilight Reaver Patrol","speed":1.15,"pathId":274070,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1503.9514,-23.7665,-634.5332],[1501.4404,-23.717,-618.0234],[1441.2694,-23.9577,-617.1029],[1501.4404,-23.717,-618.0234]],"members":[{"id":"member","entityId":"entry-4810","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27414","name":"Twilight Reaver Patrol","speed":1.15,"pathId":274140,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1504.2474,-23.7119,-616.8686],[1503.9524,-23.7665,-634.5332],[1504.2474,-23.7119,-616.8686],[1441.2704,-23.9576,-617.103]],"members":[{"id":"member","entityId":"entry-4810","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27426","name":"Twilight Shadowmage Patrol","speed":1.15,"pathId":274260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1476.3914,-19.8978,-733.8763],[1476.3044,-19.8978,-706.4343]],"members":[{"id":"member","entityId":"entry-4813","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27428","name":"Twilight Shadowmage Patrol","speed":1.15,"pathId":274280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1535.8994,-19.8975,-705.2573],[1534.2364,-19.8975,-732.6243]],"members":[{"id":"member","entityId":"entry-4813","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-25732","name":"Ghamoo-ra","position":[1129.3844,-46.6642,-347.1123]},{"id":"creature-26129","name":"Lady Sarevess","position":[986.8774,-51.1504,-145.1793]},{"id":"creature-18743","name":"Gelihast","position":[1099.6134,-42.1638,-518.0153]},{"id":"creature-26173","name":"Lorgus Jett","position":[1309.3154,-16.8045,-569.2844]},{"id":"creature-27424","name":"Twilight Lord Kelris","position":[1505.7924,-19.8198,-714.5103]},{"id":"creature-27433","name":"Aku'mai","position":[1535.4064,-27.9197,-1012.7993]}],"objectiveOrder":[{"id":"creature-25732","name":"Ghamoo-ra","position":[1129.3844,-46.6642,-347.1123]},{"id":"creature-26129","name":"Lady Sarevess","position":[986.8774,-51.1504,-145.1793]},{"id":"creature-18743","name":"Gelihast","position":[1099.6134,-42.1638,-518.0153]},{"id":"creature-26173","name":"Lorgus Jett","position":[1309.3154,-16.8045,-569.2844]},{"id":"creature-27424","name":"Twilight Lord Kelris","position":[1505.7924,-19.8198,-714.5103]},{"id":"creature-27433","name":"Aku'mai","position":[1535.4064,-27.9197,-1012.7993]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3086,"id":19018,"map":48,"orientation":0.471238,"phaseMask":1,"position_x":-331.169,"position_y":-27.6077,"position_z":-72.2552,"rotation0":0,"rotation1":0,"rotation2":0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3087,"id":19018,"map":48,"orientation":3.10665,"phaseMask":1,"position_x":-346.634,"position_y":291.605,"position_z":-70.7872,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174693,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":3088,"id":19018,"map":48,"orientation":3.45576,"phaseMask":1,"position_x":-348.722,"position_y":-34.5047,"position_z":-68.4577,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3089,"id":19018,"map":48,"orientation":2.9845,"phaseMask":1,"position_x":-354.931,"position_y":308.109,"position_z":-69.8227,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784664,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":3090,"id":19018,"map":48,"orientation":4.95674,"phaseMask":1,"position_x":-421.114,"position_y":121.535,"position_z":-70.3831,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":3091,"id":19018,"map":48,"orientation":0.139624,"phaseMask":1,"position_x":-427.409,"position_y":311.43,"position_z":-65.817,"rotation0":0,"rotation1":0,"rotation2":0.0697556,"rotation3":0.997564,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3092,"id":19018,"map":48,"orientation":1.58825,"phaseMask":1,"position_x":-489.734,"position_y":144.383,"position_z":-72.4147,"rotation0":0,"rotation1":0,"rotation2":0.71325,"rotation3":0.70091,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3093,"id":19018,"map":48,"orientation":2.16421,"phaseMask":1,"position_x":-686.755,"position_y":-34.1224,"position_z":-36.9234,"rotation0":0,"rotation1":0,"rotation2":0.882947,"rotation3":0.469473,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3094,"id":19018,"map":48,"orientation":2.93214,"phaseMask":1,"position_x":-713.454,"position_y":-21.8693,"position_z":-39.3414,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104536,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3095,"id":19018,"map":48,"orientation":1.6057,"phaseMask":1,"position_x":-756.047,"position_y":-176.359,"position_z":-54.119,"rotation0":0,"rotation1":0,"rotation2":0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3096,"id":19018,"map":48,"orientation":0.977383,"phaseMask":1,"position_x":-760.39,"position_y":-52.2364,"position_z":-41.6095,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":3097,"id":19018,"map":48,"orientation":0.471238,"phaseMask":1,"position_x":-760.683,"position_y":-155.534,"position_z":-51.5062,"rotation0":0,"rotation1":0,"rotation2":0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3098,"id":19018,"map":48,"orientation":5.77704,"phaseMask":1,"position_x":-770.512,"position_y":-189.072,"position_z":-48.8139,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":3099,"id":19018,"map":48,"orientation":3.45576,"phaseMask":1,"position_x":-835.627,"position_y":-47.6639,"position_z":-35.6945,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3100,"id":19018,"map":48,"orientation":1.71042,"phaseMask":1,"position_x":-870.495,"position_y":-105.115,"position_z":-35.4094,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32607,"id":19018,"map":48,"orientation":0.628319,"phaseMask":1,"position_x":-320.238,"position_y":65.9714,"position_z":-63.7392,"rotation0":0,"rotation1":0,"rotation2":0.309017,"rotation3":0.951056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32608,"id":2045,"map":48,"orientation":0.907571,"phaseMask":1,"position_x":-345.151,"position_y":-10.1984,"position_z":-70.4985,"rotation0":0,"rotation1":0,"rotation2":0.438371,"rotation3":0.898794,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":32609,"id":19018,"map":48,"orientation":5.70723,"phaseMask":1,"position_x":-347.471,"position_y":76.0812,"position_z":-61.8706,"rotation0":0,"rotation1":0,"rotation2":-0.284015,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":32610,"id":103015,"map":48,"orientation":3.14159,"phaseMask":1,"position_x":-413.324,"position_y":43.6505,"position_z":-47.9681,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32612,"id":1732,"map":48,"orientation":2.26893,"phaseMask":1,"position_x":-401.418,"position_y":46.9318,"position_z":-47.7134,"rotation0":0,"rotation1":0,"rotation2":0.906308,"rotation3":0.422617,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32613,"id":2045,"map":48,"orientation":-0.715585,"phaseMask":1,"position_x":-328.711,"position_y":211.076,"position_z":-69.6185,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32614,"id":13949,"map":48,"orientation":2.80998,"phaseMask":1,"position_x":-330.544,"position_y":212.014,"position_z":-69.706,"rotation0":0,"rotation1":0,"rotation2":0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32615,"id":19018,"map":48,"orientation":1.62316,"phaseMask":1,"position_x":-472.575,"position_y":130.778,"position_z":-72.3319,"rotation0":0,"rotation1":0,"rotation2":0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32616,"id":2045,"map":48,"orientation":1.76278,"phaseMask":1,"position_x":-494.592,"position_y":106.927,"position_z":-73.508,"rotation0":0,"rotation1":0,"rotation2":0.771624,"rotation3":0.636079,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":32617,"id":19018,"map":48,"orientation":2.74016,"phaseMask":1,"position_x":-400.427,"position_y":279.812,"position_z":-71.1439,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32618,"id":19018,"map":48,"orientation":-2.02458,"phaseMask":1,"position_x":-405.571,"position_y":319.074,"position_z":-68.079,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32619,"id":19018,"map":48,"orientation":0.558504,"phaseMask":1,"position_x":-410.671,"position_y":348.695,"position_z":-71.7385,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32620,"id":1622,"map":48,"orientation":2.40855,"phaseMask":1,"position_x":-331.144,"position_y":362.221,"position_z":-52.3723,"rotation0":0,"rotation1":0,"rotation2":0.93358,"rotation3":0.35837,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32621,"id":1733,"map":48,"orientation":-0.855212,"phaseMask":1,"position_x":-351.981,"position_y":402.932,"position_z":-53.4195,"rotation0":0,"rotation1":0,"rotation2":-0.414694,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32622,"id":21327,"map":48,"orientation":3.14593,"phaseMask":1,"position_x":-534.789,"position_y":317.353,"position_z":-49.8213,"rotation0":-0.0191727,"rotation1":0.0212412,"rotation2":-0.999589,"rotation3":0.00176052,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32624,"id":3689,"map":48,"orientation":-1.46608,"phaseMask":1,"position_x":-614.864,"position_y":252.745,"position_z":-49.4881,"rotation0":0,"rotation1":0,"rotation2":-0.669132,"rotation3":0.743144,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32682,"id":21117,"map":48,"orientation":-1.5708,"phaseMask":1,"position_x":-818.361,"position_y":-200.647,"position_z":-25.7911,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32683,"id":1622,"map":48,"orientation":-0.767945,"phaseMask":1,"position_x":-454.55,"position_y":-34.1752,"position_z":-31.5826,"rotation0":0,"rotation1":0,"rotation2":-0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32684,"id":75298,"map":48,"orientation":3.08923,"phaseMask":1,"position_x":-450.61,"position_y":-38.0686,"position_z":-31.7772,"rotation0":0,"rotation1":0,"rotation2":0.999657,"rotation3":0.0261783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32685,"id":19018,"map":48,"orientation":-1.27409,"phaseMask":1,"position_x":-753.173,"position_y":-21.3254,"position_z":-37.499,"rotation0":0,"rotation1":0,"rotation2":-0.594823,"rotation3":0.803857,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32686,"id":177964,"map":48,"orientation":-2.44346,"phaseMask":1,"position_x":-782.021,"position_y":-63.5876,"position_z":-45.0935,"rotation0":0,"rotation1":0,"rotation2":-0.939692,"rotation3":0.342021,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32687,"id":19018,"map":48,"orientation":-2.33874,"phaseMask":1,"position_x":-700.195,"position_y":-100.683,"position_z":-35.6787,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32688,"id":75295,"map":48,"orientation":1.48353,"phaseMask":1,"position_x":-743.061,"position_y":-111.067,"position_z":-30.0483,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737277,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32689,"id":19018,"map":48,"orientation":-2.98451,"phaseMask":1,"position_x":-727.025,"position_y":-118.419,"position_z":-37.0088,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32690,"id":2045,"map":48,"orientation":-0.593412,"phaseMask":1,"position_x":-726.43,"position_y":-159.34,"position_z":-56.596,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32691,"id":19018,"map":48,"orientation":0.575959,"phaseMask":1,"position_x":-741.055,"position_y":-152.381,"position_z":-56.7611,"rotation0":0,"rotation1":0,"rotation2":0.284016,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32692,"id":19018,"map":48,"orientation":1.29154,"phaseMask":1,"position_x":-807.617,"position_y":-120.467,"position_z":-37.3081,"rotation0":0,"rotation1":0,"rotation2":0.601814,"rotation3":0.798637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32930,"id":21118,"map":48,"orientation":-1.51844,"phaseMask":1,"position_x":-813.47,"position_y":-158.535,"position_z":-24.5271,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32931,"id":21121,"map":48,"orientation":0.925024,"phaseMask":1,"position_x":-823.88,"position_y":-158.535,"position_z":-24.5278,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32932,"id":21119,"map":48,"orientation":0.10472,"phaseMask":1,"position_x":-813.578,"position_y":-170.461,"position_z":-24.5276,"rotation0":0,"rotation1":0,"rotation2":0.0523361,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32933,"id":21120,"map":48,"orientation":2.82743,"phaseMask":1,"position_x":-823.955,"position_y":-170.407,"position_z":-24.5267,"rotation0":0,"rotation1":0,"rotation2":0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32934,"id":19018,"map":48,"orientation":5.8294,"phaseMask":1,"position_x":-781.432,"position_y":-165.561,"position_z":-47.9078,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":32935,"id":103016,"map":48,"orientation":3.14159,"phaseMask":1,"position_x":-839.619,"position_y":-477.904,"position_z":-33.7343,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268935,"id":94039,"map":48,"orientation":3.14159,"phaseMask":1,"position_x":-413.324,"position_y":43.6505,"position_z":-47.9681,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268936,"id":94039,"map":48,"orientation":3.14159,"phaseMask":1,"position_x":-839.619,"position_y":-477.904,"position_z":-33.7343,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/Blackfathom":"d0a81ddd8250402ac4c769a303986b4d944d077c7b60526091443629d86410f2","patch/World/maps/Blackfathom":"3828ee58667887d2fbd7e3cce20209c36f245cfd3fd9c789b6ad2d7c19a540a4"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/blackfathom-deeps/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["27/27 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"uldaman","title":"Uldaman","mapId":70,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[35,50]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Uldaman","theme":"Instanced dungeon","summary":"Fight through Uldaman, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Uldaman...","unchartedAreaName":"Uncharted Uldaman","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":641.487},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/70-uldaman/visual.glb","checksum":"6d6290d18d62a79e57b63fff19d485afc98e06bbc6ecd66498a5a0df160066ae","size":5010532,"triangleCount":115018}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/70-uldaman/collision.glb","checksum":"b9a1a79d35897410d89fddd18610e65eed36ad869e80905bd1c353a5bb5008f6","size":1432628,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/70-uldaman/navigation.glb","checksum":"7a44b07858eb389f730aa2d6f3d606b7db2365a4b2456885605f33dc96fd73e1","size":205156,"triangleCount":15618}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-588.6455,-69.4263,215.251],"max":[302.3087,13.0549,733.673]},"entrance":{"name":"Uldaman Entrance","footPosition":[-147.6785,-26.5263,282.464],"forward":[0.9971555194597762,0,0.07537154642770613],"yaw":1.4953532346573846},"areas":[{"id":"entrance","name":"Uldaman Entrance","center":[-147.6785,-26.5263,282.464],"radius":35},{"id":"area-revelosh","name":"Revelosh's Encounter","center":[-148.8805,-25.0426,394.598],"radius":42},{"id":"area-ironaya","name":"Ironaya's Encounter","center":[-138.8055,-28.0939,543.013],"radius":42},{"id":"area-ancient-stone-keeper","name":"Ancient Stone Keeper's Encounter","center":[-336.0495,-28.8626,454.627],"radius":42},{"id":"area-galgann-firehammer","name":"Galgann Firehammer's Encounter","center":[-364.0972,-27.3534,648.082],"radius":42},{"id":"area-grimlok","name":"Grimlok's Encounter","center":[-431.1881,-21.4586,688.673],"radius":42},{"id":"area-archaedas","name":"Archaedas's Encounter","center":[-478.8165,-32.1922,505.684],"radius":42},{"id":"area-obsidian-sentinel","name":"Obsidian Sentinel's Encounter","center":[-210.7185,-16.8527,621.366],"radius":42}],"entities":{"entry-6906":{"id":"entry-6906","kind":"mob","name":"Baelog","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5710-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-6907":{"id":"entry-6907","kind":"mob","name":"Eric \"The Swift\"","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5708-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-6908":{"id":"entry-6908","kind":"mob","name":"Olaf","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-7078":{"id":"entry-7078","kind":"mob","name":"Cleft Scorpid","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5985-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.1225,"markerRadius":0.65}}},"entry-4860":{"id":"entry-4860","kind":"mob","name":"Stone Steward","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6524","name":"Ground Tremor","spellId":6524,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-2234-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7302,"markerRadius":1.2749}}},"entry-7405":{"id":"entry-7405","kind":"mob","name":"Deadly Cleft Scorpid","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5985-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.1225,"markerRadius":0.65}}},"entry-4848":{"id":"entry-4848","kind":"mob","name":"Shadowforge Darkcaster","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9081","name":"Shadow Bolt Volley","spellId":9081,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7317,"damageMultiplier":0.62,"radius":8},{"id":"spell-15800","name":"Mana Burn","spellId":15800,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7317,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6055-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-4849":{"id":"entry-4849","kind":"mob","name":"Shadowforge Archaeologist","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4969,"damageMultiplier":1.12},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4969,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6067-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-7290":{"id":"entry-7290","kind":"mob","name":"Shadowforge Sharpshooter","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5797,"damageMultiplier":1.12},{"id":"spell-6685","name":"Piercing Shot","spellId":6685,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5797,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6057-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-7291":{"id":"entry-7291","kind":"boss","name":"Galgann Firehammer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7961,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6059-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-7030":{"id":"entry-7030","kind":"mob","name":"Shadowforge Geologist","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8814","name":"Flamestrike","spellId":8814,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4892,"damageMultiplier":1.12},{"id":"spell-3356","name":"Flame Lash","spellId":3356,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4892,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6056-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-4855":{"id":"entry-4855","kind":"mob","name":"Stonevault Brawler","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6630,"damageMultiplier":1.12},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6630,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-11166-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.9201,"markerRadius":1.036}}},"entry-7320":{"id":"entry-7320","kind":"mob","name":"Stonevault Mauler","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6993,"damageMultiplier":1.12},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6993,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-11166-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.9201,"markerRadius":1.036}}},"entry-7321":{"id":"entry-7321","kind":"mob","name":"Stonevault Flameweaver","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7739","name":"Inferno Shell","spellId":7739,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7105,"damageMultiplier":1.12},{"id":"spell-2941","name":"Immolate","spellId":2941,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7105,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-160-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3504,"markerRadius":0.65}}},"entry-4853":{"id":"entry-4853","kind":"mob","name":"Stonevault Geomancer","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4620,"damageMultiplier":1.12},{"id":"spell-10452","name":"Flame Buffet","spellId":10452,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4620,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-1194-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3601,"markerRadius":0.888}}},"entry-4854":{"id":"entry-4854","kind":"boss","name":"Grimlok","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6639,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-11165-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.4801,"markerRadius":1.184}}},"entry-4863":{"id":"entry-4863","kind":"mob","name":"Jadespine Basilisk","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3636","name":"Crystalline Slumber","spellId":3636,"delivery":"projectile","target":"random-party","school":"arcane","animation":"cast","range":28,"cooldownMs":7450,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":3000}},{"id":"spell-9906","name":"Reflection","spellId":9906,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":7450,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-9906","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"lizard","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-4486-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2182,"markerRadius":3.1019}}},"entry-6910":{"id":"entry-6910","kind":"boss","name":"Revelosh","title":"Dungeon Boss","hasLoot":true,"combat":{"level":39,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15117","name":"Chain Lightning","spellId":15117,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5586,"damageMultiplier":1.35},{"id":"spell-15801","name":"Lightning Bolt","spellId":15801,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5586,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5945-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3601,"markerRadius":0.888}}},"entry-4851":{"id":"entry-4851","kind":"mob","name":"Stonevault Rockchewer","combat":{"level":37,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5378,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-721-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9505,"markerRadius":0.7696}}},"entry-4852":{"id":"entry-4852","kind":"mob","name":"Stonevault Oracle","combat":{"level":37,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8005","name":"Healing Wave","spellId":8005,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":6828,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-945","name":"Lightning Shield","spellId":945,"delivery":"area","target":"self","school":"nature","animation":"cast","range":0,"cooldownMs":6828,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-945","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-160-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3504,"markerRadius":0.65}}},"entry-7175":{"id":"entry-7175","kind":"mob","name":"Stonevault Ambusher","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8721","name":"Backstab","spellId":8721,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6006,"damageMultiplier":1.12},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6006,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-763-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0503,"markerRadius":0.65}}},"entry-7206":{"id":"entry-7206","kind":"boss","name":"Ancient Stone Keeper","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":7977,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-10798-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.8493,"markerRadius":1.6573}}},"entry-4857":{"id":"entry-4857","kind":"mob","name":"Stone Keeper","combat":{"level":40,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"spell-5568","name":"Trample","spellId":5568,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6977,"damageMultiplier":1.12},{"id":"spell-9874","name":"Self Destruct","spellId":9874,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6977,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-10805-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5279,"markerRadius":2.231}}},"entry-7396":{"id":"entry-7396","kind":"mob","name":"Earthen Stonebreaker","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2700,"damageMultiplier":1},{"id":"spell-12057","name":"Strike","spellId":12057,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6245,"damageMultiplier":1.12},{"id":"spell-2457","name":"Battle Stance","spellId":2457,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6245,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6010-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-7397":{"id":"entry-7397","kind":"mob","name":"Earthen Stonecarver","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10452","name":"Flame Buffet","spellId":10452,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4203,"damageMultiplier":1.12},{"id":"spell-2602","name":"Fire Shield IV","spellId":2602,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":4203,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-2602","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6009-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-7011":{"id":"entry-7011","kind":"mob","name":"Earthen Rocksmasher","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2700,"damageMultiplier":1},{"id":"spell-12057","name":"Strike","spellId":12057,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5910,"damageMultiplier":1.12},{"id":"spell-2457","name":"Battle Stance","spellId":2457,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5910,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6010-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-7012":{"id":"entry-7012","kind":"mob","name":"Earthen Sculptor","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10452","name":"Flame Buffet","spellId":10452,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5203,"damageMultiplier":1.12},{"id":"spell-2602","name":"Fire Shield IV","spellId":2602,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":5203,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-2602","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6009-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-4847":{"id":"entry-4847","kind":"mob","name":"Shadowforge Relic Hunter","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6064","name":"Greater Heal","spellId":6064,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":7285,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-2767","name":"Shadow Word: Pain","spellId":2767,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7285,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6054-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-7023":{"id":"entry-7023","kind":"boss","name":"Obsidian Sentinel","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6562,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5285-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.5954,"markerRadius":1.9123}}},"entry-4850":{"id":"entry-4850","kind":"mob","name":"Stonevault Cave Lurker","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8721","name":"Backstab","spellId":8721,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5208,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-722-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6504,"markerRadius":0.6808}}},"entry-4861":{"id":"entry-4861","kind":"mob","name":"Shrike Bat","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8281","name":"Sonic Burst","spellId":8281,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6306,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/b436a3eaa350ebf59fb34bc8aaf7baa25a7dcafe72fc6a85ed66da8833a517b0.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.4433,"markerRadius":2.8092}}},"entry-7022":{"id":"entry-7022","kind":"mob","name":"Venomlash Scorpid","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5416","name":"Venom Sting","spellId":5416,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5718,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"plant","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-2488-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.895,"markerRadius":1.0532}}},"entry-10120":{"id":"entry-10120","kind":"mob","name":"Vault Warder","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5989-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.5954,"markerRadius":1.9123}}},"entry-2748":{"id":"entry-2748","kind":"boss","name":"Archaedas","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2600,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":7417,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5988-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0171,"labelHeight":12.8077,"markerRadius":2.5742}}},"entry-7309":{"id":"entry-7309","kind":"mob","name":"Earthen Custodian","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6025-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.007,"labelHeight":2.8649,"markerRadius":0.7098}}},"entry-7076":{"id":"entry-7076","kind":"mob","name":"Earthen Guardian","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2300,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6026-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.007,"labelHeight":2.8649,"markerRadius":0.7098}}},"entry-7077":{"id":"entry-7077","kind":"mob","name":"Earthen Hallshaper","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6025-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.007,"labelHeight":2.8649,"markerRadius":0.7098}}},"entry-7228":{"id":"entry-7228","kind":"boss","name":"Ironaya","title":"Dungeon Boss","hasLoot":true,"combat":{"level":39,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2900,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":7317,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6089-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0002,"labelHeight":9.9858,"markerRadius":1.6346}}}},"staticSpawns":[{"id":"creature-18715","entityId":"entry-6906","position":[-21.4715,-24.8647,350.56],"yaw":-0.523599,"spawnMask":1},{"id":"creature-27449","entityId":"entry-6907","position":[-16.1435,-24.8799,352.321],"yaw":-0.942478,"spawnMask":1},{"id":"creature-27450","entityId":"entry-6908","position":[-17.4935,-28.1936,365.468],"yaw":-1.3439,"spawnMask":1},{"id":"creature-27451","entityId":"entry-7078","position":[-208.1135,-33.9519,523.122],"yaw":-2.28638,"spawnMask":1},{"id":"creature-27452","entityId":"entry-7078","position":[-209.6355,-33.7633,519.725],"yaw":-5.39362,"spawnMask":1},{"id":"creature-27453","entityId":"entry-7078","position":[-201.9275,-33.6725,521.956],"yaw":0,"spawnMask":1},{"id":"creature-27454","entityId":"entry-7078","position":[-202.9415,-34.6485,529.196],"yaw":-3.62543,"spawnMask":1},{"id":"creature-27455","entityId":"entry-7078","position":[-201.8625,-34.0744,525.098],"yaw":-2.678,"spawnMask":1},{"id":"creature-27456","entityId":"entry-7078","position":[-204.9985,-34.3746,526.817],"yaw":-4.11476,"spawnMask":1},{"id":"creature-27457","entityId":"entry-7078","position":[-204.1545,-34.1985,525.564],"yaw":-4.04997,"spawnMask":1},{"id":"creature-27458","entityId":"entry-7078","position":[-199.7625,-34.0699,526.204],"yaw":-3.00687,"spawnMask":1},{"id":"creature-27459","entityId":"entry-7078","position":[-206.8665,-33.7586,517.41],"yaw":0,"spawnMask":1},{"id":"creature-27460","entityId":"entry-7078","position":[-203.7075,-33.6361,518.547],"yaw":0,"spawnMask":1},{"id":"creature-27461","entityId":"entry-7078","position":[-218.0855,-28.6058,441.702],"yaw":-3.07178,"spawnMask":1},{"id":"creature-27462","entityId":"entry-7078","position":[-215.1705,-30.5219,444.982],"yaw":-2.67035,"spawnMask":1},{"id":"creature-27463","entityId":"entry-7078","position":[-212.9935,-30.1532,441.321],"yaw":-5.60251,"spawnMask":1},{"id":"creature-27464","entityId":"entry-7078","position":[-213.7675,-28.8345,450.757],"yaw":-0.698132,"spawnMask":1},{"id":"creature-27465","entityId":"entry-7078","position":[-217.0925,-30.2063,434.983],"yaw":-5.48033,"spawnMask":1},{"id":"creature-27466","entityId":"entry-7078","position":[-213.6035,-30.4697,434.178],"yaw":-2.32129,"spawnMask":1},{"id":"creature-27467","entityId":"entry-7078","position":[-209.5765,-30.1385,442.275],"yaw":-5.74213,"spawnMask":1},{"id":"creature-27468","entityId":"entry-7078","position":[-211.0465,-29.4217,447.61],"yaw":-0.977384,"spawnMask":1},{"id":"creature-27469","entityId":"entry-7078","position":[-214.1175,-30.0862,436.889],"yaw":-5.53269,"spawnMask":1},{"id":"creature-27470","entityId":"entry-7078","position":[-219.5075,-28.8066,438.489],"yaw":-5.67232,"spawnMask":1},{"id":"creature-27474","entityId":"entry-7405","position":[-352.7282,-27.3923,566.106],"yaw":-2.4716,"spawnMask":1},{"id":"creature-27476","entityId":"entry-7405","position":[-355.8183,-27.2271,564.503],"yaw":-5.44729,"spawnMask":1},{"id":"creature-27477","entityId":"entry-7405","position":[-356.7538,-27.2125,561.362],"yaw":-5.88029,"spawnMask":1},{"id":"creature-27478","entityId":"entry-7405","position":[-354.1771,-27.5408,562.228],"yaw":-5.60312,"spawnMask":1},{"id":"creature-27479","entityId":"entry-7405","position":[-350.1141,-27.126,567.349],"yaw":-0.959931,"spawnMask":1},{"id":"creature-27480","entityId":"entry-7405","position":[-350.952,-27.0376,568.444],"yaw":-2.11845,"spawnMask":1},{"id":"creature-27481","entityId":"entry-7405","position":[-354.689,-27.4749,563.086],"yaw":-4.97419,"spawnMask":1},{"id":"creature-27483","entityId":"entry-7405","position":[-351.4388,-27.3179,566.646],"yaw":-0.173056,"spawnMask":1},{"id":"creature-27484","entityId":"entry-7405","position":[-351.2216,-25.9949,571.23],"yaw":-4.31096,"spawnMask":1},{"id":"creature-27485","entityId":"entry-4848","position":[-387.226,-28.2132,646.915],"yaw":-0.087266,"spawnMask":1},{"id":"creature-27486","entityId":"entry-4849","position":[-382.4331,-28.0214,645.6],"yaw":-1.64061,"spawnMask":1},{"id":"creature-27487","entityId":"entry-4849","position":[-389.5463,-24.6273,635.145],"yaw":-2.84489,"spawnMask":1},{"id":"creature-27488","entityId":"entry-7290","position":[-377.8662,-23.3398,616.924],"yaw":-4.32842,"spawnMask":1},{"id":"creature-27489","entityId":"entry-4848","position":[-388.6937,-24.578,631.159],"yaw":-2.02458,"spawnMask":1},{"id":"creature-27490","entityId":"entry-7290","position":[-369.5006,-24.2334,623.099],"yaw":-4.85202,"spawnMask":1},{"id":"creature-27491","entityId":"entry-7291","position":[-364.0972,-27.3534,648.082],"yaw":-6.16101,"spawnMask":1},{"id":"creature-27492","entityId":"entry-7030","position":[-364.2064,-27.6747,644.298],"yaw":-6.21337,"spawnMask":1},{"id":"creature-27494","entityId":"entry-7030","position":[-366.1109,-27.4189,651.663],"yaw":-6.16101,"spawnMask":1},{"id":"creature-27495","entityId":"entry-7078","position":[-236.1545,-34.7861,495.839],"yaw":-4.20754,"spawnMask":1},{"id":"creature-27496","entityId":"entry-7078","position":[-238.6815,-33.9601,494.05],"yaw":-0.45734,"spawnMask":1},{"id":"creature-27497","entityId":"entry-7078","position":[-241.3285,-33.9773,492.831],"yaw":-1.61797,"spawnMask":1},{"id":"creature-27498","entityId":"entry-7078","position":[-237.1455,-33.9953,491.386],"yaw":-4.51605,"spawnMask":1},{"id":"creature-27499","entityId":"entry-7078","position":[-234.4045,-34.7227,493.451],"yaw":-4.4855,"spawnMask":1},{"id":"creature-27500","entityId":"entry-7078","position":[-237.8275,-33.3108,501.65],"yaw":-0.753239,"spawnMask":1},{"id":"creature-27501","entityId":"entry-7078","position":[-233.8335,-33.3278,505.736],"yaw":-2.43514,"spawnMask":1},{"id":"creature-27502","entityId":"entry-7078","position":[-232.8355,-33.0395,503.89],"yaw":-1.72272,"spawnMask":1},{"id":"creature-27503","entityId":"entry-7078","position":[-229.8915,-32.4789,499.851],"yaw":-2.11185,"spawnMask":1},{"id":"creature-27504","entityId":"entry-7078","position":[-233.9215,-33.3365,510.08],"yaw":-3.02355,"spawnMask":1},{"id":"creature-27506","entityId":"entry-7320","position":[-390.8185,-14.2647,478.528],"yaw":-4.32489,"spawnMask":1},{"id":"creature-27507","entityId":"entry-7320","position":[-383.6795,-12.3606,457.43],"yaw":-1.17416,"spawnMask":1},{"id":"creature-27508","entityId":"entry-7321","position":[-381.174,-14.6125,476.098],"yaw":-2.11185,"spawnMask":1},{"id":"creature-27509","entityId":"entry-7321","position":[-390.4913,-13.3984,475.274],"yaw":-3.21727,"spawnMask":1},{"id":"creature-27510","entityId":"entry-4855","position":[-383.7683,-19.1285,565.584],"yaw":-5.21853,"spawnMask":1},{"id":"creature-27511","entityId":"entry-4853","position":[-390.8202,-19.9263,565.389],"yaw":-2.47837,"spawnMask":1},{"id":"creature-27512","entityId":"entry-4855","position":[-453.3703,-18.6752,638.316],"yaw":-5.02655,"spawnMask":1},{"id":"creature-27513","entityId":"entry-4855","position":[-459.9663,-18.6752,637.05],"yaw":-6.12611,"spawnMask":1},{"id":"creature-27514","entityId":"entry-4853","position":[-459.7429,-18.6752,630.469],"yaw":-2.3911,"spawnMask":1},{"id":"creature-27515","entityId":"entry-7320","position":[-402.864,-11.9384,453.441],"yaw":-2.11185,"spawnMask":1},{"id":"creature-27516","entityId":"entry-7320","position":[-399.5612,-11.0357,447.595],"yaw":-1.85005,"spawnMask":1},{"id":"creature-27517","entityId":"entry-7321","position":[-402.157,-12.2831,459.828],"yaw":-3.31613,"spawnMask":1},{"id":"creature-27518","entityId":"entry-7321","position":[-394.4336,-10.8924,448.922],"yaw":-1.72788,"spawnMask":1},{"id":"creature-27519","entityId":"entry-7320","position":[-382.8306,-19.0904,518.106],"yaw":-1.79769,"spawnMask":1},{"id":"creature-27520","entityId":"entry-7321","position":[-378.2668,-18.6921,515.437],"yaw":-4.88692,"spawnMask":1},{"id":"creature-27521","entityId":"entry-4855","position":[-423.8196,-20.584,579.602],"yaw":-3.07178,"spawnMask":1},{"id":"creature-27522","entityId":"entry-4853","position":[-423.376,-21.3506,574.054],"yaw":-2.67035,"spawnMask":1},{"id":"creature-27523","entityId":"entry-7320","position":[-384.6902,-16.1293,496.401],"yaw":-5.84685,"spawnMask":1},{"id":"creature-27524","entityId":"entry-7321","position":[-378.3065,-16.3337,496.732],"yaw":-5.84685,"spawnMask":1},{"id":"creature-27525","entityId":"entry-4855","position":[-416.5317,-23.3685,556.576],"yaw":-2.38446,"spawnMask":1},{"id":"creature-27526","entityId":"entry-4855","position":[-410.7249,-19.3729,609.392],"yaw":-2.86234,"spawnMask":1},{"id":"creature-27527","entityId":"entry-4853","position":[-404.9736,-20.4831,609.153],"yaw":-2.02458,"spawnMask":1},{"id":"creature-27528","entityId":"entry-4854","position":[-431.1881,-21.4586,688.673],"yaw":-4.2586,"spawnMask":1},{"id":"creature-27529","entityId":"entry-4863","position":[-433.9092,-21.4572,686.481],"yaw":-4.01426,"spawnMask":1},{"id":"creature-27530","entityId":"entry-4853","position":[-425.3632,-21.4639,686.087],"yaw":-4.50295,"spawnMask":1},{"id":"creature-27531","entityId":"entry-4855","position":[-431.9378,-21.4561,680.685],"yaw":0,"spawnMask":1},{"id":"creature-27532","entityId":"entry-6910","position":[-148.8805,-25.0426,394.598],"yaw":-0.034907,"spawnMask":1},{"id":"creature-27533","entityId":"entry-4851","position":[-146.3625,-25.1264,410.829],"yaw":-3.06182,"spawnMask":1},{"id":"creature-27534","entityId":"entry-4852","position":[-140.9675,-25.1264,404.226],"yaw":-2.58106,"spawnMask":1},{"id":"creature-27537","entityId":"entry-4852","position":[-108.2125,-29.2073,324.1782],"yaw":-0.575959,"spawnMask":1},{"id":"creature-27538","entityId":"entry-4851","position":[-93.7235,-29.2154,313.3184],"yaw":-5.88176,"spawnMask":1},{"id":"creature-27539","entityId":"entry-4852","position":[-200.1575,-27.8246,399.274],"yaw":-4.43314,"spawnMask":1},{"id":"creature-27540","entityId":"entry-4852","position":[-129.2485,-28.5344,329.4717],"yaw":-6.00393,"spawnMask":1},{"id":"creature-27541","entityId":"entry-4852","position":[-94.1125,-29.2133,320.8022],"yaw":-3.68265,"spawnMask":1},{"id":"creature-27542","entityId":"entry-4851","position":[-195.5395,-27.8227,403.25],"yaw":-0.802851,"spawnMask":1},{"id":"creature-27543","entityId":"entry-4852","position":[-102.8255,-27.8203,373.777],"yaw":-1.55334,"spawnMask":1},{"id":"creature-27544","entityId":"entry-4851","position":[-198.1235,-29.222,294.4782],"yaw":-6.16101,"spawnMask":1},{"id":"creature-27545","entityId":"entry-4851","position":[-199.8075,-29.2229,321.427],"yaw":-1.78024,"spawnMask":1},{"id":"creature-27552","entityId":"entry-4852","position":[-164.3235,-28.5176,328.2177],"yaw":-1.90241,"spawnMask":1},{"id":"creature-27553","entityId":"entry-7206","position":[-336.0495,-28.8626,454.627],"yaw":-3.15905,"spawnMask":1},{"id":"creature-27554","entityId":"entry-4857","position":[-492.2835,-6.9451,501.25],"yaw":-2.75762,"spawnMask":1},{"id":"creature-27555","entityId":"entry-4857","position":[-474.1818,-6.9451,492.703],"yaw":-1.22173,"spawnMask":1},{"id":"creature-27568","entityId":"entry-7396","position":[-506.8485,-22.903,458.505],"yaw":-5.60251,"spawnMask":1},{"id":"creature-27691","entityId":"entry-7396","position":[-497.0565,-22.9025,458.169],"yaw":-0.226893,"spawnMask":1},{"id":"creature-27692","entityId":"entry-7396","position":[-497.9195,-22.904,453.868],"yaw":-4.88692,"spawnMask":1},{"id":"creature-27728","entityId":"entry-7396","position":[-492.6885,-22.9015,453.742],"yaw":-5.84685,"spawnMask":1},{"id":"creature-27730","entityId":"entry-7397","position":[-505.8705,-22.9015,463.401],"yaw":-4.27606,"spawnMask":1},{"id":"creature-27763","entityId":"entry-4860","position":[-501.9485,-22.9038,457.655],"yaw":-4.43314,"spawnMask":1},{"id":"creature-27764","entityId":"entry-7396","position":[-463.0771,-7.0844,484.86],"yaw":-3.24601,"spawnMask":1},{"id":"creature-27765","entityId":"entry-7396","position":[-447.5126,-7.001,495.305],"yaw":-5.16617,"spawnMask":1},{"id":"creature-27766","entityId":"entry-7396","position":[-448.5945,-7.001,490.351],"yaw":-4.2237,"spawnMask":1},{"id":"creature-27767","entityId":"entry-7396","position":[-457.9918,-7.0844,495.138],"yaw":-4.90455,"spawnMask":1},{"id":"creature-27768","entityId":"entry-7397","position":[-454.8026,-7.0844,502.345],"yaw":-0.761993,"spawnMask":1},{"id":"creature-27769","entityId":"entry-4860","position":[-453.0882,-7.0844,495.617],"yaw":-4.69281,"spawnMask":1},{"id":"creature-27770","entityId":"entry-7396","position":[-479.5325,-7.001,530.361],"yaw":-4.5204,"spawnMask":1},{"id":"creature-27789","entityId":"entry-7396","position":[-473.2876,-7.001,533.098],"yaw":-4.55531,"spawnMask":1},{"id":"creature-27790","entityId":"entry-7396","position":[-462.1101,-7.001,525.204],"yaw":-2.1293,"spawnMask":1},{"id":"creature-27791","entityId":"entry-7396","position":[-482.0015,-7.001,534.723],"yaw":-2.46091,"spawnMask":1},{"id":"creature-27792","entityId":"entry-7397","position":[-470.7073,-7.001,526.301],"yaw":-5.79449,"spawnMask":1},{"id":"creature-27793","entityId":"entry-4860","position":[-466.006,-7.001,529.984],"yaw":-0.767945,"spawnMask":1},{"id":"creature-27794","entityId":"entry-4857","position":[-483.8355,-6.9451,519.489],"yaw":-4.36332,"spawnMask":1},{"id":"creature-27796","entityId":"entry-7396","position":[-528.0905,-6.9945,531.718],"yaw":-2.02458,"spawnMask":1},{"id":"creature-27798","entityId":"entry-7396","position":[-522.5535,-6.9945,521.254],"yaw":-4.86947,"spawnMask":1},{"id":"creature-27800","entityId":"entry-7396","position":[-518.8775,-6.9945,532.38],"yaw":-4.4855,"spawnMask":1},{"id":"creature-28363","entityId":"entry-7396","position":[-519.0255,-6.9945,539.859],"yaw":-2.11185,"spawnMask":1},{"id":"creature-28364","entityId":"entry-7397","position":[-525.7035,-6.9945,537.18],"yaw":-0.331613,"spawnMask":1},{"id":"creature-28367","entityId":"entry-4860","position":[-527.1445,-7.0778,521.764],"yaw":-2.01064,"spawnMask":1},{"id":"creature-28368","entityId":"entry-4857","position":[-465.9068,-6.9451,510.892],"yaw":-5.96903,"spawnMask":1},{"id":"creature-28369","entityId":"entry-7011","position":[-301.4945,-30.2066,453.218],"yaw":-0.11546,"spawnMask":1},{"id":"creature-28370","entityId":"entry-7011","position":[-293.4594,-30.2086,458.811],"yaw":-5.79837,"spawnMask":1},{"id":"creature-28371","entityId":"entry-7011","position":[-304.181,-30.2072,473.024],"yaw":-0.252966,"spawnMask":1},{"id":"creature-28372","entityId":"entry-7012","position":[-294.2659,-30.1252,470.615],"yaw":-3.05433,"spawnMask":1},{"id":"creature-28373","entityId":"entry-7012","position":[-285.3478,-30.1252,465.819],"yaw":-3.29867,"spawnMask":1},{"id":"creature-28374","entityId":"entry-7011","position":[-286.8162,-30.1252,473.963],"yaw":-4.2586,"spawnMask":1},{"id":"creature-28376","entityId":"entry-7011","position":[-289.2235,-28.1271,509.258],"yaw":-1.85184,"spawnMask":1},{"id":"creature-28377","entityId":"entry-7011","position":[-283.1735,-28.0437,515.324],"yaw":-0.645772,"spawnMask":1},{"id":"creature-28532","entityId":"entry-7011","position":[-276.2632,-28.0437,509.387],"yaw":-2.1293,"spawnMask":1},{"id":"creature-28533","entityId":"entry-7012","position":[-279.0115,-28.0437,501.208],"yaw":-0.820305,"spawnMask":1},{"id":"creature-28534","entityId":"entry-7012","position":[-286.2069,-28.1271,496.205],"yaw":-3.30022,"spawnMask":1},{"id":"creature-28535","entityId":"entry-7011","position":[-295.7364,-28.127,500.226],"yaw":-4.72767,"spawnMask":1},{"id":"creature-28536","entityId":"entry-7011","position":[-265.5695,-28.5164,548.502],"yaw":-5.5676,"spawnMask":1},{"id":"creature-28537","entityId":"entry-7011","position":[-276.7904,-28.0335,565.68],"yaw":-1.6057,"spawnMask":1},{"id":"creature-28538","entityId":"entry-7011","position":[-273.4785,-29.8209,548.852],"yaw":-4.29351,"spawnMask":1},{"id":"creature-28539","entityId":"entry-7011","position":[-263.7465,-27.4277,557.939],"yaw":-2.28638,"spawnMask":1},{"id":"creature-28540","entityId":"entry-7012","position":[-274.1885,-29.8266,556.089],"yaw":-1.58825,"spawnMask":1},{"id":"creature-28541","entityId":"entry-7011","position":[-372.5702,-30.1242,512.609],"yaw":-6.17846,"spawnMask":1},{"id":"creature-28542","entityId":"entry-7011","position":[-365.756,-28.4969,521.398],"yaw":-0.261799,"spawnMask":1},{"id":"creature-28543","entityId":"entry-7011","position":[-359.6553,-27.1828,522.926],"yaw":-3.49066,"spawnMask":1},{"id":"creature-28544","entityId":"entry-7011","position":[-360.6328,-28.8509,507.795],"yaw":-4.88692,"spawnMask":1},{"id":"creature-28545","entityId":"entry-7012","position":[-350.7063,-28.1591,511.824],"yaw":-1.55334,"spawnMask":1},{"id":"creature-28546","entityId":"entry-7011","position":[-330.9193,-28.8245,470.649],"yaw":-2.7571,"spawnMask":1},{"id":"creature-28547","entityId":"entry-7011","position":[-331.2964,-28.8238,437.174],"yaw":-6.12569,"spawnMask":1},{"id":"creature-28784","entityId":"entry-7011","position":[-331.7933,-29.4318,488.529],"yaw":-1.90241,"spawnMask":1},{"id":"creature-28789","entityId":"entry-7012","position":[-332.1727,-29.4318,497.249],"yaw":-2.96706,"spawnMask":1},{"id":"creature-28795","entityId":"entry-7011","position":[-324.8342,-28.8216,435.355],"yaw":-0.987509,"spawnMask":1},{"id":"creature-29384","entityId":"entry-7011","position":[-275.1192,-24.194,453.63],"yaw":-2.80998,"spawnMask":1},{"id":"creature-29488","entityId":"entry-7011","position":[-272.8085,-22.4049,446.782],"yaw":-2.79253,"spawnMask":1},{"id":"creature-29573","entityId":"entry-7011","position":[-274.2075,-19.9158,430.37],"yaw":-4.64258,"spawnMask":1},{"id":"creature-29574","entityId":"entry-7011","position":[-266.9925,-20.8229,430.873],"yaw":-4.46804,"spawnMask":1},{"id":"creature-29589","entityId":"entry-7012","position":[-289.4152,-26.5578,448.038],"yaw":-3.83972,"spawnMask":1},{"id":"creature-29591","entityId":"entry-4847","position":[-213.6205,-14.3409,597.334],"yaw":-4.39823,"spawnMask":1},{"id":"creature-29592","entityId":"entry-4847","position":[-235.0575,-22.1835,603.493],"yaw":-3.56047,"spawnMask":1},{"id":"creature-29593","entityId":"entry-7030","position":[-235.1765,-20.7437,627.214],"yaw":-5.79449,"spawnMask":1},{"id":"creature-29594","entityId":"entry-4847","position":[-237.1845,-20.6967,619.768],"yaw":-5.96903,"spawnMask":1},{"id":"creature-29649","entityId":"entry-4847","position":[-222.6395,-14.4617,601.83],"yaw":-5.93412,"spawnMask":1},{"id":"creature-29650","entityId":"entry-7023","position":[-210.7185,-16.8527,621.366],"yaw":-0.10472,"spawnMask":1},{"id":"creature-29651","entityId":"entry-4847","position":[-231.4085,-20.3228,622.423],"yaw":-0.959931,"spawnMask":1},{"id":"creature-29652","entityId":"entry-4852","position":[-126.2875,-27.0257,474.094],"yaw":-0.296706,"spawnMask":1},{"id":"creature-29653","entityId":"entry-4850","position":[-132.4055,-28.4815,474.629],"yaw":-2.70526,"spawnMask":1},{"id":"creature-29654","entityId":"entry-4850","position":[-127.8145,-27.4131,479.348],"yaw":-5.44543,"spawnMask":1},{"id":"creature-29655","entityId":"entry-4852","position":[-115.6325,-29.0347,514.204],"yaw":-2.79253,"spawnMask":1},{"id":"creature-29656","entityId":"entry-4850","position":[-108.5155,-28.8861,513.384],"yaw":-0.767945,"spawnMask":1},{"id":"creature-29657","entityId":"entry-4850","position":[-107.2205,-27.7318,519.548],"yaw":-5.51524,"spawnMask":1},{"id":"creature-29658","entityId":"entry-4852","position":[-130.3105,-30.8141,500.14],"yaw":-3.57792,"spawnMask":1},{"id":"creature-29659","entityId":"entry-4850","position":[-150.8785,-25.0286,431.336],"yaw":-3.42085,"spawnMask":1},{"id":"creature-29773","entityId":"entry-4850","position":[-162.5335,-29.0101,481.269],"yaw":-3.89208,"spawnMask":1},{"id":"creature-30022","entityId":"entry-4850","position":[-163.6545,-28.3032,475.558],"yaw":-1.02974,"spawnMask":1},{"id":"creature-30023","entityId":"entry-7175","position":[-131.3135,-27.1534,448.767],"yaw":-5.91667,"spawnMask":1},{"id":"creature-30024","entityId":"entry-7175","position":[-162.6805,-27.159,453.814],"yaw":-3.08923,"spawnMask":1},{"id":"creature-30025","entityId":"entry-7175","position":[-161.2145,-27.2257,448.73],"yaw":-2.18166,"spawnMask":1},{"id":"creature-30027","entityId":"entry-7175","position":[-131.2155,-26.8447,454.177],"yaw":-1.0472,"spawnMask":1},{"id":"creature-30028","entityId":"entry-7175","position":[-139.1845,-29.9144,448.21],"yaw":-0.890118,"spawnMask":1},{"id":"creature-30029","entityId":"entry-7175","position":[-153.1205,-29.9042,447.638],"yaw":-2.32129,"spawnMask":1},{"id":"creature-30030","entityId":"entry-4850","position":[-144.1195,-29.9624,488.513],"yaw":-6.12611,"spawnMask":1},{"id":"creature-30066","entityId":"entry-4850","position":[-142.4725,-25.0283,431.435],"yaw":-2.94961,"spawnMask":1},{"id":"creature-30067","entityId":"entry-4850","position":[-123.7795,-30.7638,498.363],"yaw":-6.05629,"spawnMask":1},{"id":"creature-30068","entityId":"entry-4852","position":[-39.4845,-31.6435,314.3736],"yaw":-0.890118,"spawnMask":1},{"id":"creature-30069","entityId":"entry-4852","position":[-77.5325,-27.0496,374.205],"yaw":-0.349066,"spawnMask":1},{"id":"creature-30073","entityId":"entry-4850","position":[-56.7525,-29.5113,351.122],"yaw":0,"spawnMask":1},{"id":"creature-30074","entityId":"entry-4852","position":[-24.1515,-33.542,334.004],"yaw":-4.71239,"spawnMask":1},{"id":"creature-30075","entityId":"entry-4852","position":[-41.1695,-36.584,332.2121],"yaw":-0.418879,"spawnMask":1},{"id":"creature-30076","entityId":"entry-4850","position":[-42.4785,-34.5267,345.641],"yaw":-5.06145,"spawnMask":1},{"id":"creature-30077","entityId":"entry-4852","position":[-32.2025,-32.3497,319.4196],"yaw":-0.645772,"spawnMask":1},{"id":"creature-30078","entityId":"entry-4850","position":[-35.7695,-30.0713,373.082],"yaw":-4.29351,"spawnMask":1},{"id":"creature-30079","entityId":"entry-4850","position":[-69.4435,-27.033,364.935],"yaw":-3.56047,"spawnMask":1},{"id":"creature-30080","entityId":"entry-4852","position":[-42.7355,-33.8529,352.38],"yaw":0,"spawnMask":1},{"id":"creature-30082","entityId":"entry-7022","position":[-221.5275,-27.3349,508.493],"yaw":-4.24115,"spawnMask":1},{"id":"creature-30083","entityId":"entry-4861","position":[-304.5891,-31.8581,591.814],"yaw":-5.23599,"spawnMask":1},{"id":"creature-30084","entityId":"entry-4863","position":[-195.5275,-33.1489,555.042],"yaw":-2.72271,"spawnMask":1},{"id":"creature-30086","entityId":"entry-7022","position":[-218.5205,-29.6165,552.518],"yaw":-1.15192,"spawnMask":1},{"id":"creature-30087","entityId":"entry-7022","position":[-240.8485,-28.3209,462.822],"yaw":-4.64258,"spawnMask":1},{"id":"creature-30088","entityId":"entry-4861","position":[-296.8894,-26.7685,607.227],"yaw":-3.1765,"spawnMask":1},{"id":"creature-30089","entityId":"entry-4863","position":[-248.5355,-26.2062,500.23],"yaw":-3.9619,"spawnMask":1},{"id":"creature-30090","entityId":"entry-4861","position":[-262.4555,-26.0082,586.469],"yaw":-1.93731,"spawnMask":1},{"id":"creature-30091","entityId":"entry-4855","position":[-433.1288,-19.367,600.095],"yaw":-0.785398,"spawnMask":1},{"id":"creature-30092","entityId":"entry-4855","position":[-429.8826,-18.6662,612.398],"yaw":-2.18166,"spawnMask":1},{"id":"creature-30093","entityId":"entry-4853","position":[-437.0042,-18.7519,611.286],"yaw":-2.10292,"spawnMask":1},{"id":"creature-30094","entityId":"entry-4855","position":[-430.2963,-21.5305,649.456],"yaw":-2.3869,"spawnMask":1},{"id":"creature-30095","entityId":"entry-7320","position":[-381.4202,-17.7689,512.188],"yaw":-1.00828,"spawnMask":1},{"id":"creature-30096","entityId":"entry-7320","position":[-400.2896,-20.812,533.789],"yaw":-4.08407,"spawnMask":1},{"id":"creature-30097","entityId":"entry-7320","position":[-400.6374,-19.9715,526.715],"yaw":-1.65806,"spawnMask":1},{"id":"creature-30098","entityId":"entry-4855","position":[-424.2637,-21.4497,651.841],"yaw":-0.122173,"spawnMask":1},{"id":"creature-30099","entityId":"entry-4853","position":[-423.9532,-21.4519,658.954],"yaw":-3.59538,"spawnMask":1},{"id":"creature-30100","entityId":"entry-4855","position":[-414.6219,-21.4613,678.559],"yaw":-4.62512,"spawnMask":1},{"id":"creature-30101","entityId":"entry-4853","position":[-412.0759,-21.4599,672.134],"yaw":-4.7822,"spawnMask":1},{"id":"creature-30102","entityId":"entry-4855","position":[-413.8499,-19.6249,544.404],"yaw":-2.63545,"spawnMask":1},{"id":"creature-30103","entityId":"entry-4855","position":[-424.4736,-20.6811,543.085],"yaw":-2.26893,"spawnMask":1},{"id":"creature-30104","entityId":"entry-4853","position":[-417.8715,-20.0575,537.959],"yaw":-5.48033,"spawnMask":1},{"id":"creature-30105","entityId":"entry-4855","position":[-415.0601,-23.7487,593.238],"yaw":-5.74213,"spawnMask":1},{"id":"creature-30107","entityId":"entry-4851","position":[-182.9005,-27.8173,371.561],"yaw":-6.13962,"spawnMask":1},{"id":"creature-30108","entityId":"entry-4852","position":[-130.6945,-27.1275,354.335],"yaw":-4.99385,"spawnMask":1},{"id":"creature-30109","entityId":"entry-4851","position":[-197.8135,-27.8235,376.711],"yaw":-1.65806,"spawnMask":1},{"id":"creature-30111","entityId":"entry-4851","position":[-87.0325,-29.2193,316.6581],"yaw":-0.948537,"spawnMask":1},{"id":"creature-30112","entityId":"entry-4852","position":[-199.6525,-29.2231,309.0084],"yaw":-3.2467,"spawnMask":1},{"id":"creature-30113","entityId":"entry-4851","position":[-142.9035,-27.1262,370.548],"yaw":-3.1363,"spawnMask":1},{"id":"creature-33501","entityId":"entry-4852","position":[-202.0785,-27.8252,373.415],"yaw":-2.60054,"spawnMask":1},{"id":"creature-33502","entityId":"entry-4851","position":[-98.4475,-27.8214,402.607],"yaw":-3.15905,"spawnMask":1},{"id":"creature-33503","entityId":"entry-4851","position":[-98.1015,-27.8222,369.846],"yaw":-5.34071,"spawnMask":1},{"id":"creature-33504","entityId":"entry-10120","position":[-422.982,-32.611,484.52],"yaw":-0.558505,"spawnMask":1},{"id":"creature-33505","entityId":"entry-7396","position":[-423.3022,-32.611,493.994],"yaw":-5.51524,"spawnMask":1},{"id":"creature-33506","entityId":"entry-7396","position":[-439.5805,-32.6944,484.795],"yaw":-5.42025,"spawnMask":1},{"id":"creature-33507","entityId":"entry-7396","position":[-434.1311,-32.6943,480.855],"yaw":-1.62304,"spawnMask":1},{"id":"creature-33508","entityId":"entry-7396","position":[-429.5119,-32.6943,488.269],"yaw":-2.13041,"spawnMask":1},{"id":"creature-33509","entityId":"entry-7397","position":[-436.4545,-32.6943,481.184],"yaw":-2.02133,"spawnMask":1},{"id":"creature-33510","entityId":"entry-7397","position":[-432.8777,-32.6943,487.817],"yaw":-5.78542,"spawnMask":1},{"id":"creature-33511","entityId":"entry-4860","position":[-436.0945,-32.6943,471.397],"yaw":-0.140379,"spawnMask":1},{"id":"creature-33513","entityId":"entry-7396","position":[-496.8195,-7.0844,491.613],"yaw":-2.8043,"spawnMask":1},{"id":"creature-33514","entityId":"entry-7396","position":[-503.9735,-7.0844,492.084],"yaw":-1.24716,"spawnMask":1},{"id":"creature-33515","entityId":"entry-7396","position":[-503.9645,-7.0844,497.35],"yaw":-5.05695,"spawnMask":1},{"id":"creature-33516","entityId":"entry-7396","position":[-486.9665,-7.001,477.607],"yaw":-0.593412,"spawnMask":1},{"id":"creature-33517","entityId":"entry-7397","position":[-498.6935,-7.0844,483.869],"yaw":-0.043685,"spawnMask":1},{"id":"creature-33518","entityId":"entry-4860","position":[-487.8655,-7.0844,485.765],"yaw":-0.518236,"spawnMask":1},{"id":"creature-33519","entityId":"entry-7022","position":[-251.2545,-28.8391,472.885],"yaw":-3.07178,"spawnMask":1},{"id":"creature-33520","entityId":"entry-4863","position":[-233.4485,-24.8501,545.919],"yaw":-5.61996,"spawnMask":1},{"id":"creature-33521","entityId":"entry-4861","position":[-330.2501,-28.071,590.371],"yaw":-0.575959,"spawnMask":1},{"id":"creature-33524","entityId":"entry-4851","position":[-92.6345,-27.823,397.169],"yaw":-4.4855,"spawnMask":1},{"id":"creature-33525","entityId":"entry-4852","position":[-207.9085,-29.2271,302.8172],"yaw":-1.53746,"spawnMask":1},{"id":"creature-33526","entityId":"entry-4852","position":[-100.6005,-29.2104,295.4963],"yaw":-3.41824,"spawnMask":1},{"id":"creature-33527","entityId":"entry-4851","position":[-162.3655,-27.1275,354.37],"yaw":-4.60462,"spawnMask":1},{"id":"creature-33528","entityId":"entry-4851","position":[-94.1565,-29.2131,292.961],"yaw":-0.403883,"spawnMask":1},{"id":"creature-33529","entityId":"entry-4851","position":[-209.9625,-29.2279,315.4785],"yaw":-0.567649,"spawnMask":1},{"id":"creature-33530","entityId":"entry-4851","position":[-130.2585,-28.5269,323.4828],"yaw":-3.45953,"spawnMask":1},{"id":"creature-33531","entityId":"entry-4852","position":[-91.7955,-27.8234,403.92],"yaw":-2.51327,"spawnMask":1},{"id":"creature-33532","entityId":"entry-4851","position":[-161.9975,-28.5168,322.2118],"yaw":-3.08739,"spawnMask":1},{"id":"creature-33533","entityId":"entry-4852","position":[-150.2695,-27.1254,368.177],"yaw":-3.37407,"spawnMask":1},{"id":"creature-33534","entityId":"entry-4851","position":[-143.8665,-27.1245,363.216],"yaw":-1.46608,"spawnMask":1},{"id":"creature-33535","entityId":"entry-10120","position":[-426.4533,-32.611,477.139],"yaw":-0.593412,"spawnMask":1},{"id":"creature-33537","entityId":"entry-2748","position":[-478.8165,-32.1922,505.684],"yaw":-3.64774,"spawnMask":1},{"id":"creature-33538","entityId":"entry-7309","position":[-507.3245,-32.6176,493.097],"yaw":-2.60054,"spawnMask":1},{"id":"creature-33539","entityId":"entry-7309","position":[-454.3055,-32.6176,525.418],"yaw":-5.84685,"spawnMask":1},{"id":"creature-33540","entityId":"entry-7309","position":[-494.1925,-32.6176,533.309],"yaw":-4.18879,"spawnMask":1},{"id":"creature-33541","entityId":"entry-7309","position":[-448.1278,-32.6176,509.472],"yaw":-6.0912,"spawnMask":1},{"id":"creature-33542","entityId":"entry-7076","position":[-481.2155,-32.196,523.992],"yaw":-4.59022,"spawnMask":1},{"id":"creature-33543","entityId":"entry-7309","position":[-470.6663,-32.6176,475.922],"yaw":-1.36136,"spawnMask":1},{"id":"creature-33544","entityId":"entry-10120","position":[-492.0195,-32.6176,477.854],"yaw":-2.09439,"spawnMask":1},{"id":"creature-33545","entityId":"entry-7309","position":[-459.872,-32.6176,481.335],"yaw":-0.959931,"spawnMask":1},{"id":"creature-33546","entityId":"entry-7309","position":[-461.7814,-32.6176,480.225],"yaw":-1.06465,"spawnMask":1},{"id":"creature-33547","entityId":"entry-7309","position":[-482.3755,-32.6176,537.034],"yaw":-4.57276,"spawnMask":1},{"id":"creature-33548","entityId":"entry-7309","position":[-485.0305,-32.6176,536.668],"yaw":-4.57276,"spawnMask":1},{"id":"creature-33549","entityId":"entry-10120","position":[-465.4433,-32.6176,535.078],"yaw":-5.28835,"spawnMask":1},{"id":"creature-33550","entityId":"entry-7077","position":[-500.4365,-32.6176,529.486],"yaw":-3.9619,"spawnMask":1},{"id":"creature-33551","entityId":"entry-7076","position":[-464.2095,-32.196,516.188],"yaw":-5.67232,"spawnMask":1},{"id":"creature-33552","entityId":"entry-7309","position":[-453.0264,-32.6176,523.368],"yaw":-5.70723,"spawnMask":1},{"id":"creature-33553","entityId":"entry-7309","position":[-451.6469,-32.6176,521.14],"yaw":-5.81195,"spawnMask":1},{"id":"creature-33554","entityId":"entry-7309","position":[-450.4444,-32.6176,519.122],"yaw":-5.65487,"spawnMask":1},{"id":"creature-33555","entityId":"entry-7309","position":[-448.7736,-32.6176,514.272],"yaw":-6.0912,"spawnMask":1},{"id":"creature-33556","entityId":"entry-7309","position":[-448.3981,-32.6176,511.857],"yaw":-6.12611,"spawnMask":1},{"id":"creature-33557","entityId":"entry-7309","position":[-447.7743,-32.6176,507.008],"yaw":-6.00393,"spawnMask":1},{"id":"creature-33558","entityId":"entry-7077","position":[-457.8216,-32.6176,482.64],"yaw":-0.837758,"spawnMask":1},{"id":"creature-33559","entityId":"entry-7077","position":[-468.2673,-32.6176,476.403],"yaw":-1.23918,"spawnMask":1},{"id":"creature-33560","entityId":"entry-7076","position":[-477.1125,-32.196,488.562],"yaw":-1.48353,"spawnMask":1},{"id":"creature-33561","entityId":"entry-7309","position":[-504.8485,-32.6176,488.885],"yaw":-2.58309,"spawnMask":1},{"id":"creature-33562","entityId":"entry-7309","position":[-506.1205,-32.6176,491.065],"yaw":-2.61799,"spawnMask":1},{"id":"creature-33563","entityId":"entry-7077","position":[-489.9165,-32.6176,535.813],"yaw":-4.34587,"spawnMask":1},{"id":"creature-33577","entityId":"entry-7077","position":[-477.5455,-32.6176,537.624],"yaw":-4.74729,"spawnMask":1},{"id":"creature-33578","entityId":"entry-7309","position":[-466.0476,-32.6176,477.637],"yaw":-1.0472,"spawnMask":1},{"id":"creature-33579","entityId":"entry-7309","position":[-473.1189,-32.6176,475.471],"yaw":-1.36136,"spawnMask":1},{"id":"creature-33580","entityId":"entry-7309","position":[-475.6535,-32.6176,475.108],"yaw":-1.41372,"spawnMask":1},{"id":"creature-33581","entityId":"entry-7309","position":[-509.2935,-32.6176,497.936],"yaw":-2.9147,"spawnMask":1},{"id":"creature-33582","entityId":"entry-7309","position":[-509.6905,-32.6176,500.416],"yaw":-2.98451,"spawnMask":1},{"id":"creature-33583","entityId":"entry-7309","position":[-510.0375,-32.6176,503.047],"yaw":-2.98451,"spawnMask":1},{"id":"creature-33584","entityId":"entry-7309","position":[-510.4055,-32.6176,505.465],"yaw":-3.01942,"spawnMask":1},{"id":"creature-33585","entityId":"entry-7309","position":[-498.4135,-32.6176,530.854],"yaw":-4.15388,"spawnMask":1},{"id":"creature-33586","entityId":"entry-7076","position":[-462.5697,-32.196,498.702],"yaw":-0.436332,"spawnMask":1},{"id":"creature-33587","entityId":"entry-7309","position":[-492.0625,-32.6176,534.527],"yaw":-4.24115,"spawnMask":1},{"id":"creature-33588","entityId":"entry-7077","position":[-502.2095,-32.6176,484.974],"yaw":-2.40855,"spawnMask":1},{"id":"creature-33589","entityId":"entry-7077","position":[-508.5595,-32.6176,495.404],"yaw":-2.80998,"spawnMask":1},{"id":"creature-33593","entityId":"entry-7077","position":[-449.3608,-32.6176,516.773],"yaw":-5.91667,"spawnMask":1},{"id":"creature-33594","entityId":"entry-7309","position":[-478.0505,-32.6176,474.788],"yaw":-1.36136,"spawnMask":1},{"id":"creature-33595","entityId":"entry-7309","position":[-496.4035,-32.6176,532.063],"yaw":-4.15388,"spawnMask":1},{"id":"creature-33596","entityId":"entry-7309","position":[-487.4705,-32.6176,536.322],"yaw":-4.50295,"spawnMask":1},{"id":"creature-33597","entityId":"entry-7309","position":[-479.9765,-32.6176,537.374],"yaw":-4.59022,"spawnMask":1},{"id":"creature-35238","entityId":"entry-7309","position":[-503.5255,-32.6176,486.865],"yaw":-2.53073,"spawnMask":1},{"id":"creature-44158","entityId":"entry-7077","position":[-480.4625,-32.6176,474.431],"yaw":-1.64061,"spawnMask":1},{"id":"creature-44159","entityId":"entry-7077","position":[-447.5184,-32.6176,504.905],"yaw":-0.017453,"spawnMask":1},{"id":"creature-44391","entityId":"entry-7077","position":[-455.6337,-32.6176,527.362],"yaw":-5.51524,"spawnMask":1},{"id":"creature-46995","entityId":"entry-7076","position":[-495.4755,-32.196,513.526],"yaw":-3.61283,"spawnMask":1},{"id":"creature-47441","entityId":"entry-7076","position":[-493.9435,-32.196,496.672],"yaw":-2.56563,"spawnMask":1},{"id":"creature-47579","entityId":"entry-7077","position":[-510.3825,-32.6176,507.697],"yaw":-3.21141,"spawnMask":1},{"id":"creature-48034","entityId":"entry-7309","position":[-463.9466,-32.6176,478.82],"yaw":-1.06465,"spawnMask":1},{"id":"creature-54080","entityId":"entry-7228","position":[-138.8055,-28.0939,543.013],"yaw":-4.74317,"spawnMask":1}],"roamingPacks":[{"id":"patrol-27471","name":"Stone Steward Patrol","speed":1.15,"pathId":274710,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-267.2585,-21.4927,435.55],[-272.1685,-20.1558,438.185],[-278.0852,-23.6638,452.817],[-283.1727,-26.2926,455.852],[-286.1647,-26.5342,453.636],[-292.1025,-28.8895,453.255],[-297.6518,-29.872,457.406],[-299.9018,-29.872,462.656],[-309.3896,-29.9924,470.388],[-314.4865,-28.5294,471.647],[-321.5465,-28.5735,472.111],[-331.936,-28.5842,449.771],[-329.2529,-28.5746,439.793],[-332.0419,-28.5878,449.562],[-331.047,-28.5764,464.582],[-314.6098,-28.537,471.575],[-309.4768,-29.8871,470.55],[-299.8179,-29.9802,462.642],[-297.8179,-29.9802,457.392],[-295.2947,-29.7446,454.048],[-291.0447,-27.9946,452.798],[-281.7568,-24.7345,455.594],[-278.3101,-23.9288,452.828],[-272.3525,-20.0219,438.146]],"members":[{"id":"member","entityId":"entry-4860","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27472","name":"Stone Steward Patrol","speed":1.15,"pathId":274720,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-284.2532,-31.3137,545.727],[-284.7275,-31.0299,537.231],[-284.8944,-29.6798,532.587],[-284.8944,-29.4298,531.587],[-284.8944,-27.9298,527.337],[-285.1444,-27.9298,525.087],[-285.4621,-27.8764,518.442],[-285.4676,-27.977,488.024],[-285.4676,-27.977,484.774],[-285.5444,-27.9771,493.646],[-285.4371,-27.8766,518.543],[-285.0128,-27.9067,527.124],[-285.0128,-29.4067,531.624],[-285.0128,-29.6567,532.624],[-284.2524,-31.3206,541.009]],"members":[{"id":"member","entityId":"entry-4860","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27473","name":"Stone Steward Patrol","speed":1.15,"pathId":274730,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-358.784,-28.1701,512.392],[-353.803,-28.1345,509.811],[-352.9539,-28.1686,509.382],[-349.9539,-28.4186,508.882],[-348.7039,-28.4186,508.382],[-339.6795,-28.7949,506.972],[-338.4295,-28.7949,506.972],[-335.6795,-29.0449,506.472],[-335.1363,-29.2869,506.227],[-333.3922,-29.1681,484.277],[-332.9795,-28.6683,479.027],[-332.9795,-28.6683,476.027],[-332.9795,-28.6683,474.777],[-332.6204,-28.5732,474.084],[-320.8806,-28.7754,471.662],[-314.6306,-28.5254,471.662],[-312.3806,-29.2754,471.662],[-309.6307,-29.7754,471.662],[-314.5647,-28.5265,471.402],[-320.8147,-28.7765,471.402],[-322.3147,-28.7765,471.402],[-325.1488,-28.5715,471.588],[-332.8196,-28.5721,478.78],[-333.3692,-29.1675,484.086],[-333.9644,-29.265,495.83],[-339.5848,-28.7262,506.713],[-341.5848,-28.9762,506.963],[-349.6079,-28.2955,508.649],[-352.3579,-28.2955,509.149],[-356.3066,-28.2023,511.037]],"members":[{"id":"member","entityId":"entry-4860","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27505","name":"Stonevault Brawler Patrol","speed":1.15,"pathId":275050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-432.3817,-18.7462,607.324],[-449.741,-18.7712,629.325],[-437.022,-18.7599,643.038],[-449.741,-18.7712,629.325]],"members":[{"id":"member","entityId":"entry-4855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27535","name":"Stonevault Ambusher Patrol","speed":1.15,"pathId":275350,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-113.5025,-29.0445,294.6054],[-85.7055,-29.0507,301.3288],[-81.5965,-29.0522,313.7081],[-101.2185,-29.0414,324.8092],[-124.4475,-28.4578,324.8475],[-130.3855,-28.1697,350.044],[-130.1935,-27.1285,360.424],[-117.2185,-27.5529,371.27],[-95.5725,-27.6521,376.579],[-96.9205,-27.6544,399.412],[-118.4695,-26.765,402.854],[-127.4695,-25.015,402.854],[-134.4635,-25.0189,402.97],[-167.8925,-25.0123,403.008],[-176.9475,-27.4993,403.432],[-199.9095,-27.6567,393.419],[-186.9345,-27.6523,371.908],[-169.8685,-27.0558,371.502],[-146.8995,-26.9594,370.638],[-130.3845,-27.152,360.111],[-130.3325,-27.6699,350.787],[-130.4135,-28.3717,338.177],[-118.2895,-28.4596,324.0144],[-96.2425,-29.0438,321.1507],[-91.4195,-29.0478,306.2795]],"members":[{"id":"member","entityId":"entry-7175","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27536","name":"Stonevault Ambusher Patrol","speed":1.15,"pathId":275360,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-164.3025,-28.2108,342.663],[-163.3025,-27.4608,351.163],[-163.1285,-26.9609,354.503],[-163.1285,-26.9609,360.253],[-169.9455,-27.0551,371.383],[-174.9455,-27.0551,371.883],[-176.2515,-27.5582,372.274],[-199.5095,-27.6542,377.35],[-200.3145,-27.6562,378.33],[-196.3205,-27.6563,399.617],[-186.9345,-27.6535,401.88],[-174.6265,-26.7655,402.798],[-165.8765,-25.0155,402.548],[-159.2905,-25.031,402.261],[-134.5285,-24.8762,401.976],[-125.2705,-25.0128,402.305],[-118.7705,-26.7628,402.805],[-117.5785,-27.5147,402.673],[-102.9105,-27.6521,403.014],[-92.6435,-27.6551,392.438],[-93.0565,-27.655,380.385],[-93.8565,-27.6531,376.25],[-94.8565,-27.6531,374.75],[-118.2065,-27.0553,371.134],[-129.4285,-26.9602,371.046],[-155.0235,-26.9596,369.924],[-162.6075,-26.9601,369.127],[-162.7445,-27.1556,360.275],[-162.7445,-27.1556,357.025],[-162.7445,-27.6556,351.025],[-162.8055,-28.2237,346.326]],"members":[{"id":"member","entityId":"entry-7175","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-28365","name":"Stone Steward Patrol","speed":1.15,"pathId":283650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-531.8375,-6.984,512.025],[-533.7895,-6.9671,508.022],[-536.5395,-8.7171,502.022],[-543.6455,-9.6067,485.81],[-515.4855,-22.6709,464.821],[-500.7455,-22.9369,457.813],[-492.2455,-22.9369,453.813],[-486.9955,-22.9369,451.313],[-485.1205,-23.2299,450.161],[-464.1908,-35.2245,440.169],[-444.9364,-34.334,459.233],[-440.9364,-32.584,467.233],[-431.5518,-32.4444,485.514],[-431.6867,-32.4444,485.069],[-445.5131,-35.0836,458.294],[-455.9137,-35.224,437.386],[-489.5295,-22.7654,452.608],[-499.2795,-22.7654,457.108],[-509.7795,-22.7654,462.108],[-537.6225,-9.6979,475.735],[-536.6785,-8.7176,502.063],[-533.9285,-6.9676,508.063]],"members":[{"id":"member","entityId":"entry-4860","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30081","name":"Shrike Bat Patrol","speed":1.15,"pathId":300810,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-258.2815,-26.5807,551.153],[-247.6145,-24.6264,551.886],[-241.2945,-24.4383,559.419],[-234.8805,-24.7203,564.207],[-229.0325,-26.5384,560.641],[-216.8545,-29.733,553.933],[-202.4325,-31.7284,556.637],[-197.4135,-32.9903,553.282],[-195.1215,-33.3028,545.187],[-191.2065,-29.3508,526.874],[-190.0455,-28.768,524.142],[-189.5455,-28.018,521.392],[-187.0645,-28.4112,515.61],[-189.4095,-28.2036,522.473],[-190.7995,-28.9844,525.956],[-191.5495,-30.4844,528.706],[-195.1045,-33.2628,546.15],[-197.3015,-33.1375,553.342],[-200.5185,-32.0779,556.552],[-206.5185,-31.3279,557.052],[-211.5595,-30.1381,555.734],[-224.5465,-29.1759,555.481],[-233.0385,-24.9381,563.861],[-242.6665,-24.344,557.183],[-247.2475,-24.6795,552.259],[-255.3745,-25.814,550.961]],"members":[{"id":"member","entityId":"entry-4861","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30085","name":"Shrike Bat Patrol","speed":1.15,"pathId":300850,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-231.6835,-26.2588,458.625],[-239.1805,-27.9553,463.7],[-241.5105,-28.1655,465.133],[-249.7715,-28.5966,472.646],[-252.2155,-28.715,484.012],[-249.7915,-26.7864,498.601],[-247.7135,-26.0788,503.808],[-246.2135,-26.3288,509.058],[-242.4455,-26.2108,516.918],[-239.9455,-26.4608,519.918],[-238.4565,-26.4502,521.797],[-234.4085,-26.5358,532.603],[-235.2795,-26.3264,525.966],[-242.4285,-26.1833,516.988],[-245.7775,-26.3458,509.031],[-247.7775,-26.0958,503.781],[-250.8915,-27.6817,496.072],[-252.3145,-28.6841,484.102],[-251.5215,-28.3524,476.888],[-244.3455,-28.1876,467.391],[-235.8725,-27.2604,461.328]],"members":[{"id":"member","entityId":"entry-4861","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30106","name":"Stonevault Brawler Patrol","speed":1.15,"pathId":301060,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-383.6642,-23.0213,595.18],[-386.1642,-23.5213,594.43],[-390.9142,-23.7713,593.43],[-395.505,-23.2777,592.691],[-405.0344,-22.6491,590.161],[-412.8556,-22.7442,581.141],[-415.1056,-22.7442,576.141],[-408.6774,-23.1692,565.265],[-405.6774,-22.4192,563.015],[-394.8069,-20.4504,560.116],[-384.1001,-19.0746,559.204],[-384.2133,-19.0238,559.212],[-396.9598,-19.8537,552.849],[-402.2407,-19.6445,547.49],[-416.306,-19.9202,542.398],[-418.2128,-21.6322,546.452],[-417.4628,-22.1322,549.202],[-416.662,-22.6402,551.335],[-410.8659,-23.1866,561.182],[-410.9662,-23.6504,568.54],[-414.4373,-23.3071,572.307],[-412.3732,-23.0122,584.62],[-409.5112,-23.0742,587.814],[-397.1733,-23.4999,590.927],[-386.1778,-23.3906,594.292]],"members":[{"id":"member","entityId":"entry-4855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30110","name":"Stonevault Rockchewer Patrol","speed":1.15,"pathId":301100,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-200.3525,-27.9075,370.767],[-197.4045,-27.9075,399.339],[-178.8165,-27.9005,403.138],[-197.4045,-27.9075,399.339]],"members":[{"id":"member","entityId":"entry-4851","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-33522","name":"Shrike Bat Patrol","speed":1.15,"pathId":335220,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-340.1203,-25.2142,582.556],[-332.9654,-27.0269,589.029],[-329.6844,-28.762,597.741],[-326.3493,-30.0526,602.448],[-316.1363,-30.8452,604.184],[-303.3842,-31.532,593.382],[-297.1119,-31.4688,590.053],[-291.1119,-31.4688,587.803],[-283.6621,-29.7968,585.276],[-271.6935,-28.7917,584.772],[-287.981,-29.9114,586.661],[-290.1936,-31.042,587.54],[-297.1936,-31.292,590.04],[-306.1104,-31.2594,595.343],[-316.0781,-30.8062,604.302],[-318.6036,-30.6046,604.852],[-326.3536,-30.1046,602.852],[-329.5405,-28.8652,598.146],[-332.8046,-27.0585,590.119]],"members":[{"id":"member","entityId":"entry-4861","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-27532","name":"Revelosh","position":[-148.8805,-25.0426,394.598]},{"id":"creature-54080","name":"Ironaya","position":[-138.8055,-28.0939,543.013]},{"id":"creature-27553","name":"Ancient Stone Keeper","position":[-336.0495,-28.8626,454.627]},{"id":"creature-27491","name":"Galgann Firehammer","position":[-364.0972,-27.3534,648.082]},{"id":"creature-27528","name":"Grimlok","position":[-431.1881,-21.4586,688.673]},{"id":"creature-33537","name":"Archaedas","position":[-478.8165,-32.1922,505.684]},{"id":"creature-29650","name":"Obsidian Sentinel","position":[-210.7185,-16.8527,621.366]}],"objectiveOrder":[{"id":"creature-27532","name":"Revelosh","position":[-148.8805,-25.0426,394.598]},{"id":"creature-54080","name":"Ironaya","position":[-138.8055,-28.0939,543.013]},{"id":"creature-27553","name":"Ancient Stone Keeper","position":[-336.0495,-28.8626,454.627]},{"id":"creature-27491","name":"Galgann Firehammer","position":[-364.0972,-27.3534,648.082]},{"id":"creature-27528","name":"Grimlok","position":[-431.1881,-21.4586,688.673]},{"id":"creature-33537","name":"Archaedas","position":[-478.8165,-32.1922,505.684]},{"id":"creature-29650","name":"Obsidian Sentinel","position":[-210.7185,-16.8527,621.366]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":11402,"id":102999,"map":70,"orientation":0.137746,"phaseMask":1,"position_x":-6613.02,"position_y":-3759.54,"position_z":265.712,"rotation0":0.988544,"rotation1":0.058706,"rotation2":0.092733,"rotation3":0.10361,"spawnMask":1,"spawntimesecs":900,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":11403,"id":103000,"map":70,"orientation":0.037998,"phaseMask":1,"position_x":-6612.58,"position_y":-3761.45,"position_z":266.028,"rotation0":0.989215,"rotation1":0.008309,"rotation2":0.116963,"rotation3":0.087771,"spawnMask":1,"spawntimesecs":900,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14354,"id":48483,"map":70,"orientation":2.79253,"phaseMask":1,"position_x":-12.7417,"position_y":276.117,"position_z":-48.6347,"rotation0":0,"rotation1":0,"rotation2":0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14355,"id":48508,"map":70,"orientation":2.15463,"phaseMask":1,"position_x":-100.862,"position_y":330.383,"position_z":-47.5363,"rotation0":0.0195336,"rotation1":0.00107479,"rotation2":0.880602,"rotation3":0.473453,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14357,"id":48484,"map":70,"orientation":2.46679,"phaseMask":1,"position_x":-8.03935,"position_y":279.003,"position_z":-48.7176,"rotation0":0.057618,"rotation1":-0.032506,"rotation2":0.941299,"rotation3":0.331027,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14358,"id":48500,"map":70,"orientation":-3.14122,"phaseMask":1,"position_x":-32.0942,"position_y":303.005,"position_z":-45.404,"rotation0":0.013268,"rotation1":-0.007055,"rotation2":0.999887,"rotation3":-0.000094,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14359,"id":48459,"map":70,"orientation":-0.411659,"phaseMask":1,"position_x":-223.822,"position_y":-52.8567,"position_z":-45.3611,"rotation0":-0.012865,"rotation1":0.030369,"rotation2":-0.203769,"rotation3":0.978463,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14360,"id":48470,"map":70,"orientation":-0.410762,"phaseMask":1,"position_x":-360.689,"position_y":122.367,"position_z":-45.088,"rotation0":-0.064403,"rotation1":-0.032508,"rotation2":-0.205898,"rotation3":0.975911,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14361,"id":48477,"map":70,"orientation":0.604296,"phaseMask":1,"position_x":-360.417,"position_y":119.553,"position_z":-44.7049,"rotation0":-0.04773,"rotation1":-0.005713,"rotation2":0.297623,"rotation3":0.953473,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14362,"id":48507,"map":70,"orientation":-3.124,"phaseMask":1,"position_x":-148.232,"position_y":244.513,"position_z":-40.2454,"rotation0":-0.106509,"rotation1":0.040367,"rotation2":0.993483,"rotation3":-0.004328,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14363,"id":48491,"map":70,"orientation":0.387906,"phaseMask":1,"position_x":-120.337,"position_y":238.514,"position_z":-48.8304,"rotation0":0.062014,"rotation1":0.015925,"rotation2":0.192113,"rotation3":0.979282,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":14364,"id":48492,"map":70,"orientation":0.69019,"phaseMask":1,"position_x":49.7145,"position_y":348.337,"position_z":-39.9966,"rotation0":-0.011673,"rotation1":0.0457115,"rotation2":0.337711,"rotation3":0.940067,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":14366,"id":48493,"map":70,"orientation":2.50987,"phaseMask":1,"position_x":26.7081,"position_y":372.597,"position_z":-40.4458,"rotation0":-0.0183816,"rotation1":0.0933571,"rotation2":0.945005,"rotation3":0.312908,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14368,"id":48495,"map":70,"orientation":0.347655,"phaseMask":1,"position_x":-246.792,"position_y":242.174,"position_z":-46.7675,"rotation0":-0.00666189,"rotation1":0.0722609,"rotation2":0.172073,"rotation3":0.982408,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14370,"id":48433,"map":70,"orientation":-3.13009,"phaseMask":1,"position_x":-135.821,"position_y":293.887,"position_z":-45.7767,"rotation0":-0.048573,"rotation1":0.058928,"rotation2":0.997076,"rotation3":-0.002871,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14371,"id":48434,"map":70,"orientation":1.49974,"phaseMask":1,"position_x":-140.419,"position_y":267.264,"position_z":-52.6497,"rotation0":0.015758,"rotation1":0.061965,"rotation2":0.678784,"rotation3":0.731549,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14372,"id":48436,"map":70,"orientation":2.08567,"phaseMask":1,"position_x":-138.724,"position_y":267.537,"position_z":-52.9151,"rotation0":0,"rotation1":0,"rotation2":0.863836,"rotation3":0.503773,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14373,"id":48405,"map":70,"orientation":0.071304,"phaseMask":1,"position_x":-215.523,"position_y":7.14708,"position_z":-48.1857,"rotation0":-0.022407,"rotation1":-0.016676,"rotation2":0.035266,"rotation3":0.998988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14374,"id":103012,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-82.0178,"position_y":334.937,"position_z":-48.8487,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14375,"id":48445,"map":70,"orientation":0.894205,"phaseMask":1,"position_x":-214.739,"position_y":5.66459,"position_z":-48.3328,"rotation0":0.07621,"rotation1":-0.043425,"rotation2":0.433945,"rotation3":0.896659,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14376,"id":48455,"map":70,"orientation":1.35416,"phaseMask":1,"position_x":-244.407,"position_y":-9.22357,"position_z":-48.7237,"rotation0":0.0383768,"rotation1":0.0343132,"rotation2":0.625582,"rotation3":0.778458,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14378,"id":103011,"map":70,"orientation":1.01602,"phaseMask":1,"position_x":-357.999,"position_y":120.864,"position_z":-44.8125,"rotation0":-0.0688019,"rotation1":0.0711031,"rotation2":0.486192,"rotation3":0.868233,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":14380,"id":48411,"map":70,"orientation":2.27835,"phaseMask":1,"position_x":-11.2335,"position_y":278.878,"position_z":-48.4381,"rotation0":0.0596538,"rotation1":-0.0224438,"rotation2":0.906563,"rotation3":0.417231,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14382,"id":48407,"map":70,"orientation":2.77514,"phaseMask":1,"position_x":-208.763,"position_y":-2.70435,"position_z":-48.624,"rotation0":0.006293,"rotation1":0.010469,"rotation2":0.983197,"rotation3":0.182139,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14383,"id":48408,"map":70,"orientation":-1.06362,"phaseMask":1,"position_x":-216.16,"position_y":-6.56397,"position_z":-48.5339,"rotation0":0.028372,"rotation1":0.020748,"rotation2":-0.507168,"rotation3":0.86113,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14384,"id":48505,"map":70,"orientation":-0.91449,"phaseMask":1,"position_x":-255.654,"position_y":267.584,"position_z":-50.3883,"rotation0":-0.046963,"rotation1":0.0118,"rotation2":-0.441391,"rotation3":0.896007,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14385,"id":48496,"map":70,"orientation":1.03334,"phaseMask":1,"position_x":-211.64,"position_y":215.49,"position_z":-46.8359,"rotation0":-0.0442247,"rotation1":0.0101795,"rotation2":0.49437,"rotation3":0.868066,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14387,"id":48417,"map":70,"orientation":0.469331,"phaseMask":1,"position_x":19.6114,"position_y":212.707,"position_z":-30.7543,"rotation0":0.033086,"rotation1":-0.024473,"rotation2":0.233133,"rotation3":0.971574,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14388,"id":48418,"map":70,"orientation":-0.843491,"phaseMask":1,"position_x":16.754,"position_y":234.987,"position_z":-31.6856,"rotation0":-0.021154,"rotation1":-0.092952,"rotation2":-0.405883,"rotation3":0.90894,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14389,"id":48409,"map":70,"orientation":2.07612,"phaseMask":1,"position_x":-205.883,"position_y":-33.3631,"position_z":-46.9783,"rotation0":-0.004051,"rotation1":0.052416,"rotation2":0.859568,"rotation3":0.50831,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14390,"id":48430,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-154.319,"position_y":327.64,"position_z":-44.8869,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14391,"id":48431,"map":70,"orientation":2.14482,"phaseMask":1,"position_x":-139.767,"position_y":270.428,"position_z":-52.9144,"rotation0":0.0503206,"rotation1":0.0679951,"rotation2":0.875677,"rotation3":0.47543,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14393,"id":124371,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-234.688,"position_y":239.619,"position_z":-50.9083,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14394,"id":124372,"map":70,"orientation":-1.5708,"phaseMask":1,"position_x":-234.567,"position_y":294.81,"position_z":-47.596,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14395,"id":48452,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-19.0193,"position_y":341.359,"position_z":-40.9857,"rotation0":0.047978,"rotation1":0,"rotation2":0.998848,"rotation3":0,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14396,"id":48453,"map":70,"orientation":-3.13663,"phaseMask":1,"position_x":-18.0883,"position_y":343.805,"position_z":-40.8768,"rotation0":0.056499,"rotation1":-0.056668,"rotation2":0.996793,"rotation3":0.000736,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14397,"id":48454,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-9.40941,"position_y":319.774,"position_z":-39.4051,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14398,"id":48465,"map":70,"orientation":2.25925,"phaseMask":1,"position_x":7.355,"position_y":404.675,"position_z":-46.9825,"rotation0":-0.037649,"rotation1":-0.020446,"rotation2":0.903796,"rotation3":0.425814,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14399,"id":48469,"map":70,"orientation":2.54912,"phaseMask":1,"position_x":-152.808,"position_y":364.384,"position_z":-33.9316,"rotation0":-0.058626,"rotation1":-0.002853,"rotation2":0.955113,"rotation3":0.290369,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14400,"id":48462,"map":70,"orientation":-0.154758,"phaseMask":1,"position_x":-103.491,"position_y":210.84,"position_z":-41.3915,"rotation0":-0.109685,"rotation1":-0.015535,"rotation2":-0.079426,"rotation3":0.990666,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14401,"id":48473,"map":70,"orientation":-0.531384,"phaseMask":1,"position_x":-144.195,"position_y":393.703,"position_z":-40.0772,"rotation0":0.049971,"rotation1":0.100852,"rotation2":-0.263239,"rotation3":0.958143,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14402,"id":48474,"map":70,"orientation":-1.89947,"phaseMask":1,"position_x":-141.793,"position_y":394.541,"position_z":-39.9671,"rotation0":0.051664,"rotation1":0.129574,"rotation2":-0.800081,"rotation3":0.583448,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14403,"id":48475,"map":70,"orientation":-2.46514,"phaseMask":1,"position_x":-139.3,"position_y":393.074,"position_z":-40.5301,"rotation0":0.015535,"rotation1":-0.074359,"rotation2":0.940367,"rotation3":-0.33157,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":14404,"id":48476,"map":70,"orientation":3.64433,"phaseMask":1,"position_x":5.13656,"position_y":407.546,"position_z":-47.2073,"rotation0":0.0832896,"rotation1":0.0190258,"rotation2":-0.96508,"rotation3":0.247631,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14406,"id":48422,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-46.5848,"position_y":276.383,"position_z":-49.0577,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14407,"id":48424,"map":70,"orientation":2.45111,"phaseMask":1,"position_x":51.4933,"position_y":324.965,"position_z":-43.2233,"rotation0":-0.054899,"rotation1":0.010948,"rotation2":0.939673,"rotation3":0.337463,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14408,"id":48440,"map":70,"orientation":-0.444336,"phaseMask":1,"position_x":-166.525,"position_y":206.859,"position_z":-49.5789,"rotation0":0.013922,"rotation1":0.043679,"rotation2":-0.22029,"rotation3":0.974357,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14409,"id":48442,"map":70,"orientation":-0.49742,"phaseMask":1,"position_x":-164.875,"position_y":215.454,"position_z":-48.8381,"rotation0":0.021144,"rotation1":-0.00537,"rotation2":-0.246095,"rotation3":0.969,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14410,"id":48482,"map":70,"orientation":-0.007972,"phaseMask":1,"position_x":-165.338,"position_y":394.298,"position_z":-36.4654,"rotation0":0.024064,"rotation1":0.014628,"rotation2":-0.004338,"rotation3":0.999594,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14411,"id":124367,"map":70,"orientation":-2.70526,"phaseMask":1,"position_x":137.664,"position_y":288.136,"position_z":-26.4418,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14412,"id":124368,"map":70,"orientation":-2.70526,"phaseMask":1,"position_x":50.0446,"position_y":247.246,"position_z":-26.5175,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14413,"id":48420,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-269.12,"position_y":-37.7511,"position_z":-43.9261,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14414,"id":48421,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-46.4928,"position_y":278.334,"position_z":-49.0708,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14415,"id":48426,"map":70,"orientation":1.66822,"phaseMask":1,"position_x":44.9896,"position_y":326.255,"position_z":-43.3459,"rotation0":0.006089,"rotation1":0.02726,"rotation2":0.740185,"rotation3":0.671823,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14416,"id":48428,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-127.33,"position_y":331.134,"position_z":-44.246,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14417,"id":48460,"map":70,"orientation":5.26538,"phaseMask":1,"position_x":-68.4732,"position_y":356.613,"position_z":-51.1938,"rotation0":-0.0268426,"rotation1":-0.0882473,"rotation2":-0.483595,"rotation3":0.870418,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14419,"id":48461,"map":70,"orientation":-0.68017,"phaseMask":1,"position_x":27.2443,"position_y":290.927,"position_z":-39.1096,"rotation0":0.016806,"rotation1":-0.076304,"rotation2":-0.329956,"rotation3":0.940757,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14420,"id":48412,"map":70,"orientation":0.085863,"phaseMask":1,"position_x":-36.8029,"position_y":301.933,"position_z":-44.6243,"rotation0":-0.009131,"rotation1":0.049952,"rotation2":0.043214,"rotation3":0.997774,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14421,"id":48403,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":29.6978,"position_y":372.833,"position_z":-40.6615,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14422,"id":124369,"map":70,"orientation":-2.70526,"phaseMask":1,"position_x":137.654,"position_y":288.125,"position_z":-52.1341,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14423,"id":48480,"map":70,"orientation":5.03271,"phaseMask":1,"position_x":-158.077,"position_y":363.416,"position_z":-33.9055,"rotation0":-0.0528679,"rotation1":-0.00267887,"rotation2":-0.585579,"rotation3":0.808885,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14425,"id":48481,"map":70,"orientation":0.13138,"phaseMask":1,"position_x":-165.191,"position_y":392.62,"position_z":-36.4654,"rotation0":0.026413,"rotation1":0.009768,"rotation2":0.065401,"rotation3":0.997462,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14426,"id":48486,"map":70,"orientation":-2.26391,"phaseMask":1,"position_x":28.7753,"position_y":375.097,"position_z":-40.5884,"rotation0":-0.076564,"rotation1":0.022726,"rotation2":0.903698,"rotation3":-0.420656,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14427,"id":48479,"map":70,"orientation":1.7111,"phaseMask":1,"position_x":-162.738,"position_y":391.294,"position_z":-36.4654,"rotation0":0.00703,"rotation1":0.02727,"rotation2":0.754426,"rotation3":0.655781,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14428,"id":48487,"map":70,"orientation":0.092437,"phaseMask":1,"position_x":-142.095,"position_y":391.401,"position_z":-40.3016,"rotation0":-0.0415759,"rotation1":0.0728502,"rotation2":0.0488968,"rotation3":0.995276,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14430,"id":48488,"map":70,"orientation":2.27262,"phaseMask":1,"position_x":-110.742,"position_y":231.829,"position_z":-52.3405,"rotation0":-0.035729,"rotation1":0.049317,"rotation2":0.904735,"rotation3":0.421599,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14431,"id":48472,"map":70,"orientation":5.70705,"phaseMask":1,"position_x":-242.776,"position_y":-18.5393,"position_z":-48.1187,"rotation0":-0.0224919,"rotation1":0.0711832,"rotation2":-0.280823,"rotation3":0.956852,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14433,"id":48413,"map":70,"orientation":0.194096,"phaseMask":1,"position_x":23.5414,"position_y":220.783,"position_z":-31.5287,"rotation0":-0.062099,"rotation1":0.015717,"rotation2":0.097999,"rotation3":0.993123,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14434,"id":48443,"map":70,"orientation":3.438,"phaseMask":1,"position_x":-85.3134,"position_y":336.897,"position_z":-48.1264,"rotation0":-0.0128717,"rotation1":-0.00276852,"rotation2":-0.988951,"rotation3":0.147659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14436,"id":48446,"map":70,"orientation":-3.03638,"phaseMask":1,"position_x":-155.154,"position_y":223.659,"position_z":-46.52,"rotation0":0.073329,"rotation1":0.002183,"rotation2":0.995932,"rotation3":-0.052317,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14437,"id":48447,"map":70,"orientation":-3.13073,"phaseMask":1,"position_x":-65.3726,"position_y":361.648,"position_z":-51.0291,"rotation0":0.06755,"rotation1":-0.039838,"rotation2":0.996917,"rotation3":-0.002699,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14438,"id":48448,"map":70,"orientation":0.837718,"phaseMask":1,"position_x":-74.9544,"position_y":355.604,"position_z":-51.2773,"rotation0":-0.057085,"rotation1":0.047478,"rotation2":0.407598,"rotation3":0.910138,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14439,"id":48450,"map":70,"orientation":1.62581,"phaseMask":1,"position_x":-73.3156,"position_y":355.061,"position_z":-51.1343,"rotation0":-0.023265,"rotation1":0.041953,"rotation2":0.724994,"rotation3":0.687083,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14440,"id":48464,"map":70,"orientation":-0.739997,"phaseMask":1,"position_x":-103.14,"position_y":212.677,"position_z":-41.8789,"rotation0":-0.116105,"rotation1":-0.070591,"rotation2":-0.366638,"rotation3":0.920388,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14441,"id":141869,"map":70,"orientation":-2.70526,"phaseMask":1,"position_x":70.701,"position_y":256.905,"position_z":-52.0584,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14442,"id":48511,"map":70,"orientation":3.07154,"phaseMask":1,"position_x":-240.033,"position_y":-18.5585,"position_z":-48.4242,"rotation0":0.032299,"rotation1":-0.004082,"rotation2":0.998854,"rotation3":0.035097,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":15412,"id":48432,"map":70,"orientation":6.26573,"phaseMask":1,"position_x":-211.481,"position_y":-33.4789,"position_z":-47.2107,"rotation0":0.0281429,"rotation1":0.0602579,"rotation2":-0.0103817,"rotation3":0.997732,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":15506,"id":48509,"map":70,"orientation":-0.488972,"phaseMask":1,"position_x":-246.485,"position_y":215.413,"position_z":-46.8472,"rotation0":-0.001092,"rotation1":-0.019423,"rotation2":-0.241944,"rotation3":0.970095,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33214,"id":48513,"map":70,"orientation":0.559547,"phaseMask":1,"position_x":-214.306,"position_y":213.869,"position_z":-46.7948,"rotation0":-0.047695,"rotation1":-0.08301,"rotation2":0.270444,"rotation3":0.957964,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33215,"id":48514,"map":70,"orientation":-0.052072,"phaseMask":1,"position_x":-215.031,"position_y":215.95,"position_z":-46.9364,"rotation0":-0.049881,"rotation1":-0.044778,"rotation2":-0.028222,"rotation3":0.997352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33216,"id":48515,"map":70,"orientation":2.64952,"phaseMask":1,"position_x":-193.623,"position_y":-20.8782,"position_z":-33.2921,"rotation0":0.030977,"rotation1":-0.046301,"rotation2":0.968002,"rotation3":0.244681,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33217,"id":48410,"map":70,"orientation":-0.72074,"phaseMask":1,"position_x":-243.487,"position_y":-16.6386,"position_z":-48.1398,"rotation0":-0.023905,"rotation1":0.053165,"rotation2":-0.350428,"rotation3":0.934774,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33218,"id":48501,"map":70,"orientation":2.2825,"phaseMask":1,"position_x":-35.1563,"position_y":301.21,"position_z":-44.8091,"rotation0":0.042688,"rotation1":0.070671,"rotation2":0.906372,"rotation3":0.414335,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33220,"id":103007,"map":70,"orientation":0.880767,"phaseMask":1,"position_x":-217.173,"position_y":384.857,"position_z":-39.0385,"rotation0":0.063291,"rotation1":-0.131798,"rotation2":0.421848,"rotation3":0.8948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33221,"id":131474,"map":70,"orientation":-0.174533,"phaseMask":1,"position_x":161.826,"position_y":298.283,"position_z":-51.3698,"rotation0":0,"rotation1":0,"rotation2":-0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33222,"id":48510,"map":70,"orientation":-2.53924,"phaseMask":1,"position_x":-241.045,"position_y":-16.8139,"position_z":-48.2756,"rotation0":-0.003279,"rotation1":0.007053,"rotation2":0.954961,"rotation3":-0.296629,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33223,"id":124370,"map":70,"orientation":0,"phaseMask":1,"position_x":-185.394,"position_y":389.599,"position_z":-36.3661,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33224,"id":48471,"map":70,"orientation":3.19725,"phaseMask":1,"position_x":-242.871,"position_y":9.15532,"position_z":-47.8467,"rotation0":0.0222368,"rotation1":-0.0474024,"rotation2":-0.998269,"rotation3":0.0267844,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33226,"id":48467,"map":70,"orientation":3.07303,"phaseMask":1,"position_x":8.29184,"position_y":406.718,"position_z":-46.901,"rotation0":-0.032725,"rotation1":0.029802,"rotation2":0.998399,"rotation3":0.035207,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33227,"id":48503,"map":70,"orientation":-1.45661,"phaseMask":1,"position_x":-246.137,"position_y":275.353,"position_z":-50.0709,"rotation0":0.019126,"rotation1":0.000954,"rotation2":-0.665622,"rotation3":0.746043,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33228,"id":48435,"map":70,"orientation":1.92762,"phaseMask":1,"position_x":-215.627,"position_y":361.523,"position_z":-39.3363,"rotation0":0.063823,"rotation1":-0.040403,"rotation2":0.819162,"rotation3":0.568566,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33229,"id":48490,"map":70,"orientation":1.84201,"phaseMask":1,"position_x":-218.364,"position_y":362.314,"position_z":-39.1264,"rotation0":0.0533819,"rotation1":-0.0348234,"rotation2":0.794768,"rotation3":0.603557,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33231,"id":48423,"map":70,"orientation":0.325101,"phaseMask":1,"position_x":-259.395,"position_y":370.126,"position_z":-37.1944,"rotation0":-0.03313,"rotation1":0.074323,"rotation2":0.162909,"rotation3":0.98328,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33232,"id":48425,"map":70,"orientation":1.40642,"phaseMask":1,"position_x":42.9327,"position_y":326.448,"position_z":-43.193,"rotation0":0.009595,"rotation1":0.026232,"rotation2":0.646162,"rotation3":0.762689,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33233,"id":48415,"map":70,"orientation":-2.50895,"phaseMask":1,"position_x":-255.129,"position_y":372.414,"position_z":-37.9806,"rotation0":0.041143,"rotation1":-0.02152,"rotation2":0.949697,"rotation3":-0.30971,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33234,"id":48451,"map":70,"orientation":2.71758,"phaseMask":1,"position_x":-162.023,"position_y":205.416,"position_z":-49.7395,"rotation0":-0.0370426,"rotation1":-0.0262156,"rotation2":0.976819,"rotation3":0.209201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33236,"id":48504,"map":70,"orientation":-1.54689,"phaseMask":1,"position_x":-247.816,"position_y":275.446,"position_z":-50.0534,"rotation0":0.024115,"rotation1":0.042028,"rotation2":-0.697377,"rotation3":0.715065,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33237,"id":48406,"map":70,"orientation":-0.797098,"phaseMask":1,"position_x":-247.478,"position_y":-7.58863,"position_z":-48.3038,"rotation0":0.08282,"rotation1":0.05369,"rotation2":-0.390378,"rotation3":0.915349,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33238,"id":103010,"map":70,"orientation":1.72626,"phaseMask":1,"position_x":-242.733,"position_y":7.14204,"position_z":-47.7888,"rotation0":0.011142,"rotation1":-0.050888,"rotation2":0.757998,"rotation3":0.650173,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33239,"id":48458,"map":70,"orientation":1.96629,"phaseMask":1,"position_x":-215.218,"position_y":384.681,"position_z":-38.7247,"rotation0":-0.005656,"rotation1":-0.041683,"rotation2":0.831121,"rotation3":0.554498,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33240,"id":170353,"map":70,"orientation":0.436333,"phaseMask":1,"position_x":150.495,"position_y":305.928,"position_z":-52.2261,"rotation0":0,"rotation1":0,"rotation2":0.21644,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":33242,"id":48419,"map":70,"orientation":1.84374,"phaseMask":1,"position_x":22.4306,"position_y":214.409,"position_z":-30.6124,"rotation0":-0.0370727,"rotation1":0.028266,"rotation2":0.795862,"rotation3":0.60368,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33244,"id":48494,"map":70,"orientation":3.2658,"phaseMask":1,"position_x":-112.48,"position_y":234.122,"position_z":-52.2094,"rotation0":-0.0681696,"rotation1":0.0656815,"rotation2":-0.993858,"rotation3":0.0573102,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33246,"id":48444,"map":70,"orientation":2.15463,"phaseMask":1,"position_x":-88.7184,"position_y":313.445,"position_z":-51.1717,"rotation0":0.0195336,"rotation1":0.00107479,"rotation2":0.880602,"rotation3":0.473453,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":33248,"id":48466,"map":70,"orientation":1.55063,"phaseMask":1,"position_x":-94.9388,"position_y":203.878,"position_z":-39.6716,"rotation0":-0.0343728,"rotation1":0.0555735,"rotation2":0.69779,"rotation3":0.713315,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33250,"id":48468,"map":70,"orientation":-2.76553,"phaseMask":1,"position_x":6.15078,"position_y":390.771,"position_z":-44.5271,"rotation0":0.003794,"rotation1":0.109831,"rotation2":0.975932,"rotation3":-0.18836,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":33251,"id":48414,"map":70,"orientation":5.56686,"phaseMask":1,"position_x":26.641,"position_y":221.423,"position_z":-31.6789,"rotation0":0.00346565,"rotation1":-0.000417709,"rotation2":-0.350554,"rotation3":0.936536,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33253,"id":142488,"map":70,"orientation":0.436333,"phaseMask":1,"position_x":150.495,"position_y":305.928,"position_z":-52.2261,"rotation0":0,"rotation1":0,"rotation2":0.21644,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33254,"id":48437,"map":70,"orientation":0.153015,"phaseMask":1,"position_x":-213.755,"position_y":7.63143,"position_z":-48.1748,"rotation0":-0.035141,"rotation1":0.0410681,"rotation2":0.0777111,"rotation3":0.99551,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33256,"id":48502,"map":70,"orientation":-1.63188,"phaseMask":1,"position_x":-247.077,"position_y":286.443,"position_z":-48.6889,"rotation0":0,"rotation1":0,"rotation2":-0.72837,"rotation3":0.685184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33257,"id":48416,"map":70,"orientation":-0.626887,"phaseMask":1,"position_x":24.4553,"position_y":223.402,"position_z":-31.8671,"rotation0":-0.039967,"rotation1":-0.033002,"rotation2":-0.309081,"rotation3":0.949622,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33258,"id":48506,"map":70,"orientation":0.915699,"phaseMask":1,"position_x":-248.061,"position_y":238.934,"position_z":-46.504,"rotation0":-0.015833,"rotation1":0.007554,"rotation2":0.442086,"rotation3":0.896801,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33259,"id":103006,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-82.1037,"position_y":332.987,"position_z":-48.6892,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33260,"id":103009,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-85.766,"position_y":314.434,"position_z":-51.2457,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33261,"id":48485,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":52.875,"position_y":345.382,"position_z":-40.1759,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33262,"id":48457,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-36.6456,"position_y":337.479,"position_z":-39.5379,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33263,"id":48478,"map":70,"orientation":2.43293,"phaseMask":1,"position_x":-354.055,"position_y":113.161,"position_z":-44.222,"rotation0":0.035616,"rotation1":0.020336,"rotation2":0.937377,"rotation3":0.345893,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33264,"id":48427,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-126.334,"position_y":332.602,"position_z":-44.0837,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33265,"id":48498,"map":70,"orientation":-1.5708,"phaseMask":1,"position_x":-245.441,"position_y":286.356,"position_z":-48.6889,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33266,"id":103005,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-115.06,"position_y":345.334,"position_z":-44.6386,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33267,"id":48439,"map":70,"orientation":2.80547,"phaseMask":1,"position_x":-198.304,"position_y":270.631,"position_z":-48.6933,"rotation0":0.060366,"rotation1":-0.018399,"rotation2":0.983862,"rotation3":0.167433,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33268,"id":48497,"map":70,"orientation":4.08307,"phaseMask":1,"position_x":-246.502,"position_y":265,"position_z":-50.3298,"rotation0":-0.0128069,"rotation1":-0.00695419,"rotation2":-0.891137,"rotation3":0.4535,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":33270,"id":48463,"map":70,"orientation":1.8128,"phaseMask":1,"position_x":-15.815,"position_y":341.419,"position_z":-41.1402,"rotation0":-0.0378938,"rotation1":-0.00888443,"rotation2":0.787149,"rotation3":0.615533,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":33272,"id":48429,"map":70,"orientation":4.94709,"phaseMask":1,"position_x":30.4804,"position_y":317.575,"position_z":-39.893,"rotation0":-0.00670195,"rotation1":0.0167913,"rotation2":-0.619243,"rotation3":0.784992,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33274,"id":48438,"map":70,"orientation":2.90467,"phaseMask":1,"position_x":-197.55,"position_y":272.136,"position_z":-48.7444,"rotation0":0.074492,"rotation1":-0.004459,"rotation2":0.990261,"rotation3":0.117531,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33275,"id":48512,"map":70,"orientation":4.81984,"phaseMask":1,"position_x":-215.032,"position_y":-8.5477,"position_z":-48.5745,"rotation0":-0.0179706,"rotation1":0.0289459,"rotation2":-0.667496,"rotation3":0.743834,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33277,"id":48489,"map":70,"orientation":-3.07411,"phaseMask":1,"position_x":-109.96,"position_y":234.258,"position_z":-52.2748,"rotation0":-0.073691,"rotation1":-0.058389,"rotation2":0.994851,"rotation3":-0.037827,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33278,"id":1735,"map":70,"orientation":2.77507,"phaseMask":1,"position_x":-179.772,"position_y":95.0592,"position_z":-48.8041,"rotation0":0,"rotation1":0,"rotation2":0.983255,"rotation3":0.182237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33279,"id":1735,"map":70,"orientation":-1.97222,"phaseMask":1,"position_x":-23.9125,"position_y":326.636,"position_z":-44.5684,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33280,"id":2040,"map":70,"orientation":2.68781,"phaseMask":1,"position_x":26.3165,"position_y":209.089,"position_z":-29.7314,"rotation0":0,"rotation1":0,"rotation2":0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":1800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33281,"id":2040,"map":70,"orientation":-0.174533,"phaseMask":1,"position_x":-360.646,"position_y":141.757,"position_z":-48.4138,"rotation0":0,"rotation1":0,"rotation2":-0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":1800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33282,"id":3707,"map":70,"orientation":-2.61799,"phaseMask":1,"position_x":-101.293,"position_y":329.776,"position_z":-47.5239,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33283,"id":3707,"map":70,"orientation":-0.10472,"phaseMask":1,"position_x":-247.885,"position_y":236.192,"position_z":-46.4701,"rotation0":0,"rotation1":0,"rotation2":-0.0523361,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40670,"id":3707,"map":70,"orientation":-0.401426,"phaseMask":1,"position_x":-117.284,"position_y":235.933,"position_z":-51.811,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40671,"id":3707,"map":70,"orientation":-3.10669,"phaseMask":1,"position_x":54.6041,"position_y":348.621,"position_z":-40.4473,"rotation0":0,"rotation1":0,"rotation2":-0.999848,"rotation3":0.0174505,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40672,"id":3707,"map":70,"orientation":-2.67035,"phaseMask":1,"position_x":37.0305,"position_y":227.32,"position_z":-32.1131,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40673,"id":123329,"map":70,"orientation":0.383972,"phaseMask":1,"position_x":-355.996,"position_y":112.829,"position_z":-43.2036,"rotation0":0,"rotation1":0,"rotation2":0.190809,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40674,"id":128293,"map":70,"orientation":1.0472,"phaseMask":1,"position_x":-358.599,"position_y":100.755,"position_z":-53.1931,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40675,"id":126049,"map":70,"orientation":2.23402,"phaseMask":1,"position_x":-203.678,"position_y":214.625,"position_z":-46.4376,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40677,"id":126049,"map":70,"orientation":-0.418879,"phaseMask":1,"position_x":57.257,"position_y":322.762,"position_z":-41.8984,"rotation0":0,"rotation1":0,"rotation2":-0.207912,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40679,"id":128293,"map":70,"orientation":-1.71042,"phaseMask":1,"position_x":-164.64,"position_y":301.678,"position_z":-53.1613,"rotation0":0,"rotation1":0,"rotation2":-0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40680,"id":126049,"map":70,"orientation":-2.63545,"phaseMask":1,"position_x":1.60166,"position_y":236.356,"position_z":-32.3796,"rotation0":0,"rotation1":0,"rotation2":-0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40682,"id":126049,"map":70,"orientation":-1.43117,"phaseMask":1,"position_x":-95.1379,"position_y":337.393,"position_z":-47.0908,"rotation0":0,"rotation1":0,"rotation2":-0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40684,"id":126049,"map":70,"orientation":-0.471239,"phaseMask":1,"position_x":-112.397,"position_y":230.632,"position_z":-52.1536,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40686,"id":126049,"map":70,"orientation":-2.04204,"phaseMask":1,"position_x":-129.112,"position_y":384.45,"position_z":-39.9942,"rotation0":0,"rotation1":0,"rotation2":-0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40688,"id":142088,"map":70,"orientation":-1.62316,"phaseMask":1,"position_x":-1.89168,"position_y":422.099,"position_z":-47.1127,"rotation0":0,"rotation1":0,"rotation2":-0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40689,"id":19903,"map":70,"orientation":-2.11185,"phaseMask":1,"position_x":-119.96,"position_y":269.695,"position_z":-45.7821,"rotation0":0,"rotation1":0,"rotation2":-0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40690,"id":19903,"map":70,"orientation":-0.383972,"phaseMask":1,"position_x":-143.01,"position_y":210.889,"position_z":-46.4858,"rotation0":0,"rotation1":0,"rotation2":-0.190809,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40691,"id":19903,"map":70,"orientation":-0.907571,"phaseMask":1,"position_x":-14.075,"position_y":300.25,"position_z":-46.1978,"rotation0":0,"rotation1":0,"rotation2":-0.438371,"rotation3":0.898794,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40692,"id":131978,"map":70,"orientation":-2.98451,"phaseMask":1,"position_x":-150.166,"position_y":201.764,"position_z":-49.9121,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40693,"id":131978,"map":70,"orientation":2.82743,"phaseMask":1,"position_x":-73.5079,"position_y":265.315,"position_z":-47.6291,"rotation0":0,"rotation1":0,"rotation2":0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40694,"id":113757,"map":70,"orientation":-2.02458,"phaseMask":1,"position_x":21.1868,"position_y":413.872,"position_z":-45.0149,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40695,"id":125477,"map":70,"orientation":1.93731,"phaseMask":1,"position_x":-350.81,"position_y":82.6264,"position_z":-51.2318,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566409,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40696,"id":130511,"map":70,"orientation":-2.67035,"phaseMask":1,"position_x":104.845,"position_y":272.453,"position_z":-26.5322,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40697,"id":123463,"map":70,"orientation":2.54818,"phaseMask":1,"position_x":-355.018,"position_y":114.854,"position_z":-43.2878,"rotation0":0,"rotation1":0,"rotation2":0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40698,"id":133234,"map":70,"orientation":-2.70526,"phaseMask":1,"position_x":96.4808,"position_y":269.052,"position_z":-52.1487,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268523,"id":141979,"map":70,"orientation":2.78,"phaseMask":1,"position_x":154.952,"position_y":290.27,"position_z":-52.226,"rotation0":0,"rotation1":0,"rotation2":0.983701,"rotation3":0.179813,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/Uldaman":"6a7cb4e380b3ac4be528055f51eeb150f20dfa85cb5390eca2ba64a9c3cad2ae","patch/World/maps/Uldaman":"dee4bcf241b4ed013528b657f743419e38ec9ae16c4ba0abfe2dacad48a7feed"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/uldaman/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["38/38 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"gnomeregan","title":"Gnomeregan","mapId":90,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[25,40]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Gnomeregan","theme":"Instanced dungeon","summary":"Fight through Gnomeregan, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Gnomeregan...","unchartedAreaName":"Uncharted Gnomeregan","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":751.6791},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/90-gnomeragoninstance/visual.glb","checksum":"22dbee0fbf7eb1c7e6f6c98c3112a062b40e9e71906a9f37b115dc12a9f156e2","size":4662676,"triangleCount":139771}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/90-gnomeragoninstance/collision.glb","checksum":"c0a73fd9508fea6d80e446e9c77c6a0fb6d543edcdb595e52fad2c42a6f5bb4f","size":1167604,"triangleCount":99999}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/90-gnomeragoninstance/navigation.glb","checksum":"2630886a2ff3960221014305645e9e55197e5459ce5b7fa3e35097bb701e4eae","size":258384,"triangleCount":20294}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[481.1252,-358.9878,-282.4787],"max":[1145.5582,-135.8028,761.5201]},"entrance":{"name":"Gnomeregan Entrance","footPosition":[526.1252,-155.8028,-101.2147],"forward":[0.07796997673392829,0,0.9969557075056598],"yaw":0.07804919434527577},"areas":[{"id":"entrance","name":"Gnomeregan Entrance","center":[526.1252,-155.8028,-101.2147],"radius":35},{"id":"area-viscous-fallout","name":"Viscous Fallout's Encounter","center":[665.2952,-212.8968,-50.4591],"radius":42},{"id":"area-electrocutioner-6000","name":"Electrocutioner 6000's Encounter","center":[745.9532,-221.6698,403.9673],"radius":42},{"id":"area-crowd-pummeler-9-60","name":"Crowd Pummeler 9-60's Encounter","center":[1083.0422,-277.4558,261.7333],"radius":42},{"id":"area-mekgineer-thermaplugg","name":"Mekgineer Thermaplugg's Encounter","center":[725.2292,-330.1278,571.2243],"radius":42}],"entities":{"entry-6233":{"id":"entry-6233","kind":"mob","name":"Mechanized Sentry","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4013,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6978-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.8958,"markerRadius":0.8947}}},"entry-6223":{"id":"entry-6223","kind":"mob","name":"Leprous Defender","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6096,"damageMultiplier":1.12},{"id":"spell-2643","name":"Multi-Shot","spellId":2643,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6096,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6982-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0021,"labelHeight":1.6433,"markerRadius":0.65}}},"entry-6229":{"id":"entry-6229","kind":"boss","name":"Crowd Pummeler 9-60","title":"Dungeon Boss","hasLoot":true,"combat":{"level":28,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16169","name":"Arcing Smash","spellId":16169,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6409,"damageMultiplier":1.35},{"id":"spell-5568","name":"Trample","spellId":5568,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6409,"damageMultiplier":1.35},{"id":"spell-10887","name":"Crowd Pummel","spellId":10887,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6409,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6774-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.4211,"markerRadius":1.4843}}},"entry-6224":{"id":"entry-6224","kind":"mob","name":"Leprous Machinesmith","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/24c2a0dfe0450f20fff15e59b309083239d9eb9af6d0eb0d698be3aaaf7eb382.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6234":{"id":"entry-6234","kind":"mob","name":"Mechanized Guardian","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11820","name":"Electrified Net","spellId":11820,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4368,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4368,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6979-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":3.4215,"markerRadius":1.0736}}},"entry-6212":{"id":"entry-6212","kind":"mob","name":"Dark Iron Agent","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-3456-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-6235":{"id":"entry-6235","kind":"boss","name":"Electrocutioner 6000","title":"Dungeon Boss","hasLoot":true,"combat":{"level":28,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11082","name":"Megavolt","spellId":11082,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6605,"damageMultiplier":1.35},{"id":"spell-11085","name":"Chain Bolt","spellId":11085,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6605,"damageMultiplier":1.35},{"id":"spell-11084","name":"Shock","spellId":11084,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6605,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6915-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":3.2715,"markerRadius":1.398}}},"entry-7897":{"id":"entry-7897","kind":"mob","name":"Alarm-a-bomb 2600","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6888-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.1082,"markerRadius":0.8619}}},"entry-7998":{"id":"entry-7998","kind":"mob","name":"Blastmaster Emi Shortfuse","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-7138-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0019,"labelHeight":1.5257,"markerRadius":0.65}}},"entry-7079":{"id":"entry-7079","kind":"boss","name":"Viscous Fallout","title":"Dungeon Boss","hasLoot":true,"combat":{"level":28,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.126976,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6341,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-5497-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2829,"markerRadius":1.7306}}},"entry-7800":{"id":"entry-7800","kind":"boss","name":"Mekgineer Thermaplugg","title":"Dungeon Boss","hasLoot":true,"combat":{"level":28,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4228,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6980-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1677,"labelHeight":5.4247,"markerRadius":2.1242}}},"entry-7849":{"id":"entry-7849","kind":"mob","name":"Mobile Alert System","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6888-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.1082,"markerRadius":0.8619}}},"entry-6219":{"id":"entry-6219","kind":"mob","name":"Corrosive Lurker","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9459","name":"Corrosive Ooze","spellId":9459,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4835,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4835,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-11137-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.4273,"labelHeight":5.4592,"markerRadius":2.6926}}},"entry-6218":{"id":"entry-6218","kind":"mob","name":"Irradiated Slime","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10341","name":"Radiation Cloud","spellId":10341,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6402,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6402,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"ooze","model":{"url":"/assets/game/creatures/shared/2da48b305af87e5b7fe3a62db57cec0b5328ee4b5e390214600ddb6f9428db8b.glb","rotationY":-1.5707963267948966,"groundOffset":0.7137,"labelHeight":2.7872,"markerRadius":1.3463}}},"entry-6220":{"id":"entry-6220","kind":"mob","name":"Irradiated Horror","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8211","name":"Chain Burn","spellId":8211,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6245,"damageMultiplier":1.12},{"id":"spell-10341","name":"Radiation Cloud","spellId":10341,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6245,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-4907-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3404,"markerRadius":1.3312}}},"entry-6206":{"id":"entry-6206","kind":"mob","name":"Caverndeep Burrower","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9770","name":"Radiation","spellId":9770,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6827,"damageMultiplier":1.12},{"id":"spell-16145","name":"Sunder Armor","spellId":16145,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6827,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-830-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6504,"markerRadius":0.6808}}},"entry-6329":{"id":"entry-6329","kind":"mob","name":"Irradiated Pillager","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-976-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3504,"markerRadius":0.65}}},"entry-6211":{"id":"entry-6211","kind":"mob","name":"Caverndeep Reaver","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-10285-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9505,"markerRadius":0.7696}}},"entry-6222":{"id":"entry-6222","kind":"mob","name":"Leprous Technician","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13398","name":"Throw Wrench","spellId":13398,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5672,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5672,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6932-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-7603":{"id":"entry-7603","kind":"mob","name":"Leprous Assistant","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6350,"damageMultiplier":1.12},{"id":"spell-11264","name":"Ice Blast","spellId":11264,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6350,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6967-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6225":{"id":"entry-6225","kind":"mob","name":"Mechano-Tank","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10346","name":"Machine Gun","spellId":10346,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4645,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4645,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-5926-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0021,"labelHeight":2.7842,"markerRadius":1.165}}},"entry-6230":{"id":"entry-6230","kind":"mob","name":"Peacekeeper Security Suit","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10730","name":"Pacify","spellId":10730,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4472,"damageMultiplier":1.12},{"id":"spell-6533","name":"Net","spellId":6533,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4472,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-8369-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0416,"markerRadius":1.012}}},"entry-6227":{"id":"entry-6227","kind":"mob","name":"Mechano-Frostwalker","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22519","name":"Ice Nova","spellId":22519,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4909,"damageMultiplier":0.62,"radius":8},{"id":"spell-11264","name":"Ice Blast","spellId":11264,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4909,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6891-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0023,"labelHeight":3.0276,"markerRadius":1.2815}}},"entry-6207":{"id":"entry-6207","kind":"mob","name":"Caverndeep Ambusher","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-764-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.7502,"markerRadius":0.65}}},"entry-9676":{"id":"entry-9676","kind":"mob","name":"Tink Sprocketwhistle","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-9027-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6407":{"id":"entry-6407","kind":"mob","name":"Holdout Technician","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6430,"damageMultiplier":1.12},{"id":"spell-8858","name":"Bomb","spellId":8858,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6430,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6628-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6392":{"id":"entry-6392","kind":"mob","name":"Holdout Medic","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6608-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6391":{"id":"entry-6391","kind":"mob","name":"Holdout Warrior","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6610-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6232":{"id":"entry-6232","kind":"mob","name":"Arcane Nullifier X-21","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6889-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0416,"markerRadius":1.012}}},"entry-6226":{"id":"entry-6226","kind":"mob","name":"Mechano-Flamewalker","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11306","name":"Fire Nova","spellId":11306,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":7323,"damageMultiplier":0.62,"radius":8},{"id":"spell-10733","name":"Flame Spray","spellId":10733,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7323,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6890-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0023,"labelHeight":3.0276,"markerRadius":1.2815}}},"entry-6228":{"id":"entry-6228","kind":"mob","name":"Dark Iron Ambassador","combat":{"level":28,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5485,"damageMultiplier":1.12},{"id":"spell-184","name":"Fire Shield II","spellId":184,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":5485,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-184","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6669-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-17971","entityId":"entry-6233","position":[754.8312,-218.4038,212.9663],"yaw":-1.2258,"spawnMask":1},{"id":"creature-19225","entityId":"entry-6233","position":[668.6122,-216.4018,182.5413],"yaw":-4.66003,"spawnMask":1},{"id":"creature-23963","entityId":"entry-6233","position":[833.5132,-260.4638,255.0133],"yaw":-1.41372,"spawnMask":1},{"id":"creature-30114","entityId":"entry-6233","position":[639.6442,-212.7658,136.8693],"yaw":-3.83972,"spawnMask":1},{"id":"creature-30115","entityId":"entry-6223","position":[705.2842,-212.7658,164.1533],"yaw":-4.86947,"spawnMask":1},{"id":"creature-30116","entityId":"entry-6223","position":[811.3672,-252.1308,271.7613],"yaw":-2.68781,"spawnMask":1},{"id":"creature-30117","entityId":"entry-6233","position":[732.8632,-218.2508,200.7343],"yaw":-4.88692,"spawnMask":1},{"id":"creature-30118","entityId":"entry-6233","position":[711.2942,-212.7658,163.6383],"yaw":-5.55015,"spawnMask":1},{"id":"creature-30119","entityId":"entry-6233","position":[667.7952,-212.7658,163.9913],"yaw":-0.645772,"spawnMask":1},{"id":"creature-30120","entityId":"entry-6233","position":[645.4832,-212.7658,155.5833],"yaw":-1.37881,"spawnMask":1},{"id":"creature-30121","entityId":"entry-6229","position":[1083.0422,-277.4558,261.7333],"yaw":-6.24828,"spawnMask":1},{"id":"creature-30122","entityId":"entry-6224","position":[786.0752,-331.8988,576.5393],"yaw":-2.68781,"spawnMask":1},{"id":"creature-30123","entityId":"entry-6234","position":[927.8132,-296.0028,440.6123],"yaw":-6.05298,"spawnMask":1},{"id":"creature-30124","entityId":"entry-6212","position":[937.4972,-295.9198,485.6583],"yaw":-5.25344,"spawnMask":1},{"id":"creature-30125","entityId":"entry-6212","position":[820.4682,-331.9208,596.2053],"yaw":-1.39626,"spawnMask":1},{"id":"creature-30126","entityId":"entry-6234","position":[944.9482,-308.9478,500.9823],"yaw":-5.5676,"spawnMask":1},{"id":"creature-30127","entityId":"entry-6212","position":[899.7012,-322.9198,593.9693],"yaw":-2.26893,"spawnMask":1},{"id":"creature-30128","entityId":"entry-6234","position":[866.4372,-290.6418,440.3713],"yaw":-0.610865,"spawnMask":1},{"id":"creature-30129","entityId":"entry-6212","position":[902.6722,-322.9198,594.4883],"yaw":-5.5676,"spawnMask":1},{"id":"creature-30130","entityId":"entry-6234","position":[785.5702,-331.9038,590.4573],"yaw":-2.98451,"spawnMask":1},{"id":"creature-30131","entityId":"entry-6212","position":[925.1322,-322.9198,611.3453],"yaw":-2.42601,"spawnMask":1},{"id":"creature-30133","entityId":"entry-6235","position":[745.9532,-221.6698,403.9673],"yaw":-5.75959,"spawnMask":1},{"id":"creature-30136","entityId":"entry-7998","position":[708.8402,-157.3418,-237.4787],"yaw":-1.65806,"spawnMask":1},{"id":"creature-30137","entityId":"entry-7079","position":[665.2952,-212.8968,-50.4591],"yaw":-6.03304,"spawnMask":1},{"id":"creature-30139","entityId":"entry-7800","position":[725.2292,-330.1278,571.2243],"yaw":-2.9147,"spawnMask":1},{"id":"creature-30140","entityId":"entry-7849","position":[640.0392,-212.8498,125.4463],"yaw":-4.68705,"spawnMask":1},{"id":"creature-30142","entityId":"entry-7849","position":[621.9712,-216.4858,124.9613],"yaw":-4.84694,"spawnMask":1},{"id":"creature-30145","entityId":"entry-6219","position":[586.7452,-214.7098,-32.8748],"yaw":-5.11381,"spawnMask":1},{"id":"creature-30146","entityId":"entry-6218","position":[567.4232,-213.8328,32.9213],"yaw":-3.52556,"spawnMask":1},{"id":"creature-30147","entityId":"entry-6220","position":[666.0912,-213.4138,-31.2628],"yaw":-4.62512,"spawnMask":1},{"id":"creature-30148","entityId":"entry-6218","position":[650.7312,-214.9448,-6.6787],"yaw":-3.59538,"spawnMask":1},{"id":"creature-30149","entityId":"entry-6220","position":[638.8662,-213.6748,75.4743],"yaw":-3.26377,"spawnMask":1},{"id":"creature-30150","entityId":"entry-6219","position":[603.3482,-215.9648,-25.1594],"yaw":-5.75959,"spawnMask":1},{"id":"creature-30151","entityId":"entry-6220","position":[574.6022,-215.3368,-1.0697],"yaw":-3.05433,"spawnMask":1},{"id":"creature-30152","entityId":"entry-6218","position":[691.5662,-214.1108,31.6973],"yaw":-3.9619,"spawnMask":1},{"id":"creature-30153","entityId":"entry-6219","position":[666.7982,-212.7978,-49.3031],"yaw":-0.282745,"spawnMask":1},{"id":"creature-30154","entityId":"entry-6220","position":[646.7702,-215.2358,19.5703],"yaw":-4.93928,"spawnMask":1},{"id":"creature-30155","entityId":"entry-6206","position":[764.5402,-209.0368,-18.776],"yaw":-3.735,"spawnMask":1},{"id":"creature-30156","entityId":"entry-6206","position":[813.7452,-204.5078,-40.5051],"yaw":-3.1765,"spawnMask":1},{"id":"creature-30157","entityId":"entry-6329","position":[836.6652,-188.1128,-21.988],"yaw":-0.890118,"spawnMask":1},{"id":"creature-30158","entityId":"entry-6211","position":[792.2192,-174.9088,102.8553],"yaw":-0.907571,"spawnMask":1},{"id":"creature-30159","entityId":"entry-6329","position":[781.9392,-184.5388,-80.2315],"yaw":-5.51524,"spawnMask":1},{"id":"creature-30160","entityId":"entry-6329","position":[744.2562,-207.0108,38.8283],"yaw":-5.48033,"spawnMask":1},{"id":"creature-30161","entityId":"entry-6329","position":[828.4522,-200.4348,-25.9012],"yaw":-5.06145,"spawnMask":1},{"id":"creature-30162","entityId":"entry-6329","position":[830.6432,-188.7368,36.0953],"yaw":-0.139626,"spawnMask":1},{"id":"creature-30163","entityId":"entry-6329","position":[734.2662,-201.9068,-64.969],"yaw":-0.122173,"spawnMask":1},{"id":"creature-30164","entityId":"entry-6206","position":[767.8702,-208.8168,-21.924],"yaw":-5.88176,"spawnMask":1},{"id":"creature-30165","entityId":"entry-6222","position":[807.5142,-235.5438,334.6253],"yaw":-4.0887,"spawnMask":1},{"id":"creature-30166","entityId":"entry-7603","position":[668.8322,-235.4608,344.2383],"yaw":-3.15905,"spawnMask":1},{"id":"creature-30167","entityId":"entry-7603","position":[674.2182,-235.4608,341.9733],"yaw":-1.76278,"spawnMask":1},{"id":"creature-30168","entityId":"entry-7603","position":[674.9212,-235.4608,331.8683],"yaw":-2.33874,"spawnMask":1},{"id":"creature-30169","entityId":"entry-7603","position":[680.2162,-235.4608,336.9873],"yaw":0,"spawnMask":1},{"id":"creature-30170","entityId":"entry-6233","position":[666.8322,-235.4608,340.5953],"yaw":-1.11701,"spawnMask":1},{"id":"creature-30171","entityId":"entry-6225","position":[733.1292,-278.0228,457.1653],"yaw":-4.43745,"spawnMask":1},{"id":"creature-30172","entityId":"entry-6222","position":[828.7342,-278.0058,342.1443],"yaw":-0.601507,"spawnMask":1},{"id":"creature-30173","entityId":"entry-6222","position":[780.2052,-235.5438,497.2353],"yaw":-1.44707,"spawnMask":1},{"id":"creature-30174","entityId":"entry-6225","position":[697.0972,-278.0228,380.9343],"yaw":-5.01041,"spawnMask":1},{"id":"creature-30175","entityId":"entry-7603","position":[658.7632,-235.5438,388.5373],"yaw":-0.360909,"spawnMask":1},{"id":"creature-30176","entityId":"entry-7603","position":[663.2112,-235.5448,381.1123],"yaw":-3.47808,"spawnMask":1},{"id":"creature-30177","entityId":"entry-7603","position":[667.8652,-235.4608,373.0633],"yaw":-3.85718,"spawnMask":1},{"id":"creature-30178","entityId":"entry-7603","position":[663.8942,-235.5448,387.4683],"yaw":-5.99827,"spawnMask":1},{"id":"creature-30179","entityId":"entry-6233","position":[660.8752,-235.5438,376.3963],"yaw":-5.81475,"spawnMask":1},{"id":"creature-30180","entityId":"entry-7603","position":[697.9312,-235.4608,493.9183],"yaw":-4.5204,"spawnMask":1},{"id":"creature-30181","entityId":"entry-7603","position":[697.5252,-235.4608,489.7503],"yaw":0,"spawnMask":1},{"id":"creature-30182","entityId":"entry-7603","position":[692.4662,-235.4608,490.8483],"yaw":-5.07891,"spawnMask":1},{"id":"creature-30183","entityId":"entry-7603","position":[698.9072,-235.5438,497.8413],"yaw":-3.60776,"spawnMask":1},{"id":"creature-30184","entityId":"entry-6222","position":[687.4902,-235.4598,492.6773],"yaw":-1.0821,"spawnMask":1},{"id":"creature-30185","entityId":"entry-6222","position":[698.9752,-278.0228,383.8753],"yaw":-6.21937,"spawnMask":1},{"id":"creature-30187","entityId":"entry-7603","position":[1054.0582,-321.3558,229.7273],"yaw":-1.86721,"spawnMask":1},{"id":"creature-30188","entityId":"entry-7603","position":[1054.7492,-321.3758,231.9853],"yaw":-1.86691,"spawnMask":1},{"id":"creature-30189","entityId":"entry-7603","position":[1049.8282,-321.3508,220.6083],"yaw":-5.21929,"spawnMask":1},{"id":"creature-30190","entityId":"entry-7603","position":[1052.5472,-321.3498,221.3853],"yaw":-5.21926,"spawnMask":1},{"id":"creature-30191","entityId":"entry-6233","position":[1053.3252,-321.3498,218.6663],"yaw":-5.21927,"spawnMask":1},{"id":"creature-30192","entityId":"entry-6224","position":[962.3582,-277.5388,250.2273],"yaw":-4.49674,"spawnMask":1},{"id":"creature-30194","entityId":"entry-7603","position":[1010.3312,-269.5908,2.2543],"yaw":-0.139626,"spawnMask":1},{"id":"creature-30195","entityId":"entry-7603","position":[1000.6802,-269.5908,0.9844],"yaw":-4.92183,"spawnMask":1},{"id":"creature-30196","entityId":"entry-7603","position":[1004.8172,-269.5908,-3.1299],"yaw":-3.85718,"spawnMask":1},{"id":"creature-30197","entityId":"entry-7603","position":[1005.0112,-269.5908,5.0013],"yaw":-1.41372,"spawnMask":1},{"id":"creature-30198","entityId":"entry-6224","position":[1005.5022,-269.5908,1.2823],"yaw":-6.03884,"spawnMask":1},{"id":"creature-30199","entityId":"entry-7603","position":[957.1732,-277.5388,247.9333],"yaw":-5.02194,"spawnMask":1},{"id":"creature-30200","entityId":"entry-7603","position":[955.4552,-277.5388,256.0693],"yaw":-4.64483,"spawnMask":1},{"id":"creature-30201","entityId":"entry-7603","position":[950.5492,-277.5388,242.0573],"yaw":-1.35328,"spawnMask":1},{"id":"creature-30202","entityId":"entry-7603","position":[955.3252,-277.5388,246.6923],"yaw":-4.43788,"spawnMask":1},{"id":"creature-30203","entityId":"entry-6233","position":[952.4942,-277.4558,259.4333],"yaw":0,"spawnMask":1},{"id":"creature-30204","entityId":"entry-6224","position":[962.4132,-277.5388,248.2853],"yaw":-1.75239,"spawnMask":1},{"id":"creature-30206","entityId":"entry-6233","position":[960.3472,-261.6368,-45.9103],"yaw":-4.72984,"spawnMask":1},{"id":"creature-30207","entityId":"entry-6227","position":[1070.5982,-321.3758,264.2623],"yaw":-4.18204,"spawnMask":1},{"id":"creature-30208","entityId":"entry-7603","position":[1018.7962,-277.4558,320.7273],"yaw":-0.383972,"spawnMask":1},{"id":"creature-30209","entityId":"entry-7603","position":[1014.2212,-277.4558,323.0593],"yaw":0,"spawnMask":1},{"id":"creature-30210","entityId":"entry-7603","position":[1027.4372,-277.4558,316.7733],"yaw":-2.25148,"spawnMask":1},{"id":"creature-30211","entityId":"entry-7603","position":[1023.5272,-277.4558,322.1433],"yaw":-4.90438,"spawnMask":1},{"id":"creature-30212","entityId":"entry-6233","position":[1028.1572,-277.4558,324.2833],"yaw":-1.309,"spawnMask":1},{"id":"creature-30218","entityId":"entry-6207","position":[777.0152,-207.9388,-16.6048],"yaw":-4.52782,"spawnMask":1},{"id":"creature-30219","entityId":"entry-6206","position":[649.8402,-159.6028,79.5943],"yaw":-3.66519,"spawnMask":1},{"id":"creature-30220","entityId":"entry-6329","position":[752.3982,-160.0958,73.3313],"yaw":-2.11185,"spawnMask":1},{"id":"creature-30221","entityId":"entry-6329","position":[701.3072,-159.6118,-20.0109],"yaw":-2.1293,"spawnMask":1},{"id":"creature-30222","entityId":"entry-6329","position":[656.9382,-156.1158,11.8873],"yaw":-3.08923,"spawnMask":1},{"id":"creature-30223","entityId":"entry-6329","position":[662.2532,-159.5958,78.2473],"yaw":-6.0912,"spawnMask":1},{"id":"creature-30224","entityId":"entry-6329","position":[748.3042,-160.0958,70.3973],"yaw":-1.01229,"spawnMask":1},{"id":"creature-30225","entityId":"entry-6329","position":[630.3462,-161.3858,23.6043],"yaw":-6.23082,"spawnMask":1},{"id":"creature-30227","entityId":"entry-6329","position":[561.2272,-159.6028,27.7243],"yaw":-3.40339,"spawnMask":1},{"id":"creature-30228","entityId":"entry-6329","position":[717.9892,-161.3468,-81.0538],"yaw":-2.87979,"spawnMask":1},{"id":"creature-30229","entityId":"entry-9676","position":[753.4132,-198.5898,96.8943],"yaw":-5.93412,"spawnMask":1},{"id":"creature-30230","entityId":"entry-6407","position":[686.1842,-198.5618,96.7583],"yaw":-1.43117,"spawnMask":1},{"id":"creature-30231","entityId":"entry-6407","position":[685.3042,-198.5608,99.1033],"yaw":-4.08407,"spawnMask":1},{"id":"creature-30232","entityId":"entry-6392","position":[757.6052,-198.5958,84.7633],"yaw":-3.36848,"spawnMask":1},{"id":"creature-30233","entityId":"entry-6391","position":[743.8292,-198.5968,71.2583],"yaw":-4.45059,"spawnMask":1},{"id":"creature-30234","entityId":"entry-6392","position":[711.0392,-198.5808,79.3313],"yaw":-6.16101,"spawnMask":1},{"id":"creature-30235","entityId":"entry-6391","position":[725.7432,-198.5738,108.8943],"yaw":-0.645772,"spawnMask":1},{"id":"creature-30236","entityId":"entry-6392","position":[760.0022,-198.5968,83.0813],"yaw":-0.715585,"spawnMask":1},{"id":"creature-30237","entityId":"entry-6391","position":[720.7252,-198.5738,103.1323],"yaw":-0.907571,"spawnMask":1},{"id":"creature-30238","entityId":"entry-6407","position":[759.0272,-198.5958,85.7653],"yaw":-5.06145,"spawnMask":1},{"id":"creature-30240","entityId":"entry-6233","position":[710.2902,-216.4028,182.1173],"yaw":-5.95157,"spawnMask":1},{"id":"creature-30241","entityId":"entry-6223","position":[742.9622,-212.8738,179.6603],"yaw":-4.79965,"spawnMask":1},{"id":"creature-30242","entityId":"entry-6223","position":[684.3862,-215.9568,173.7263],"yaw":-5.72468,"spawnMask":1},{"id":"creature-30243","entityId":"entry-6223","position":[661.9522,-212.7658,163.7453],"yaw":-4.2237,"spawnMask":1},{"id":"creature-30244","entityId":"entry-6233","position":[739.1442,-212.7658,175.6303],"yaw":-4.39823,"spawnMask":1},{"id":"creature-30246","entityId":"entry-6233","position":[648.9382,-212.7658,158.6863],"yaw":-0.122173,"spawnMask":1},{"id":"creature-30247","entityId":"entry-6223","position":[749.3702,-236.5388,270.5773],"yaw":-5.51524,"spawnMask":1},{"id":"creature-30248","entityId":"entry-6233","position":[640.2772,-212.8508,134.0733],"yaw":-4.77612,"spawnMask":1},{"id":"creature-30249","entityId":"entry-6212","position":[964.2682,-295.9198,495.7743],"yaw":-2.68781,"spawnMask":1},{"id":"creature-30250","entityId":"entry-6212","position":[933.8312,-326.6418,556.7833],"yaw":-3.28122,"spawnMask":1},{"id":"creature-30251","entityId":"entry-6224","position":[786.4962,-331.9218,585.3763],"yaw":-2.87979,"spawnMask":1},{"id":"creature-30252","entityId":"entry-6212","position":[837.5632,-277.9198,432.5293],"yaw":-2.16421,"spawnMask":1},{"id":"creature-30253","entityId":"entry-6234","position":[823.2952,-331.9158,589.5693],"yaw":-0.314159,"spawnMask":1},{"id":"creature-30254","entityId":"entry-6232","position":[929.8382,-308.6418,457.1103],"yaw":-0.034907,"spawnMask":1},{"id":"creature-30255","entityId":"entry-6232","position":[956.7432,-304.9198,526.1633],"yaw":-2.86234,"spawnMask":1},{"id":"creature-30256","entityId":"entry-6232","position":[820.5852,-331.9208,603.3463],"yaw":-2.30383,"spawnMask":1},{"id":"creature-30257","entityId":"entry-6224","position":[784.0822,-331.8988,582.2483],"yaw":-2.82743,"spawnMask":1},{"id":"creature-30258","entityId":"entry-6234","position":[947.1292,-313.9198,556.1063],"yaw":-5.2709,"spawnMask":1},{"id":"creature-30259","entityId":"entry-6218","position":[602.9422,-215.2168,8.9573],"yaw":-4.24115,"spawnMask":1},{"id":"creature-30260","entityId":"entry-6220","position":[591.9902,-215.5678,38.3093],"yaw":-5.39307,"spawnMask":1},{"id":"creature-30261","entityId":"entry-6218","position":[669.8172,-215.4288,9.4813],"yaw":-2.47837,"spawnMask":1},{"id":"creature-30262","entityId":"entry-6220","position":[671.4472,-213.3848,66.4523],"yaw":-4.95674,"spawnMask":1},{"id":"creature-30263","entityId":"entry-6218","position":[601.4122,-214.4518,60.1623],"yaw":-6.19592,"spawnMask":1},{"id":"creature-30264","entityId":"entry-6219","position":[624.0282,-214.3398,-4.762],"yaw":-4.20624,"spawnMask":1},{"id":"creature-30265","entityId":"entry-6219","position":[685.1442,-211.3108,-16.5617],"yaw":-0.750492,"spawnMask":1},{"id":"creature-30266","entityId":"entry-6218","position":[595.4702,-214.0368,-47.5177],"yaw":-3.66783,"spawnMask":1},{"id":"creature-30267","entityId":"entry-6218","position":[623.7572,-216.6118,39.0413],"yaw":-1.29154,"spawnMask":1},{"id":"creature-30268","entityId":"entry-6329","position":[795.8242,-176.6088,98.7593],"yaw":-4.60767,"spawnMask":1},{"id":"creature-30269","entityId":"entry-6206","position":[826.1112,-188.7378,26.9393],"yaw":-0.436332,"spawnMask":1},{"id":"creature-30270","entityId":"entry-6211","position":[763.0242,-206.8198,20.6193],"yaw":-4.15388,"spawnMask":1},{"id":"creature-30272","entityId":"entry-6211","position":[806.8782,-204.5158,44.6033],"yaw":-0.820305,"spawnMask":1},{"id":"creature-30273","entityId":"entry-6211","position":[735.9162,-205.0518,-54.3733],"yaw":-0.174533,"spawnMask":1},{"id":"creature-30274","entityId":"entry-6206","position":[765.0362,-206.6728,16.0633],"yaw":-1.74533,"spawnMask":1},{"id":"creature-30275","entityId":"entry-6211","position":[730.6262,-204.4688,-58.4294],"yaw":-3.92699,"spawnMask":1},{"id":"creature-30276","entityId":"entry-6211","position":[785.0402,-184.5418,-73.9055],"yaw":-1.06465,"spawnMask":1},{"id":"creature-30277","entityId":"entry-6329","position":[750.7372,-206.4238,-2.0812],"yaw":-2.21657,"spawnMask":1},{"id":"creature-30280","entityId":"entry-7603","position":[746.3012,-235.5438,498.7273],"yaw":-5.71414,"spawnMask":1},{"id":"creature-30281","entityId":"entry-7603","position":[748.7902,-235.5438,501.7313],"yaw":-0.612689,"spawnMask":1},{"id":"creature-30282","entityId":"entry-7603","position":[738.3302,-235.4608,498.2843],"yaw":0,"spawnMask":1},{"id":"creature-30283","entityId":"entry-7603","position":[743.3882,-235.5438,505.4733],"yaw":-1.01299,"spawnMask":1},{"id":"creature-30284","entityId":"entry-6233","position":[741.7882,-235.4608,501.9043],"yaw":-0.279253,"spawnMask":1},{"id":"creature-30285","entityId":"entry-6225","position":[799.6852,-278.0058,408.5513],"yaw":-2.93658,"spawnMask":1},{"id":"creature-30286","entityId":"entry-6225","position":[732.8112,-278.0228,350.6733],"yaw":-4.82357,"spawnMask":1},{"id":"creature-30287","entityId":"entry-6225","position":[778.6152,-278.0208,449.1473],"yaw":-1.99953,"spawnMask":1},{"id":"creature-30288","entityId":"entry-7603","position":[790.0842,-235.4608,319.7733],"yaw":-4.97419,"spawnMask":1},{"id":"creature-30289","entityId":"entry-7603","position":[797.8122,-235.4608,323.6933],"yaw":-3.42085,"spawnMask":1},{"id":"creature-30290","entityId":"entry-7603","position":[789.8402,-235.4608,324.4633],"yaw":0,"spawnMask":1},{"id":"creature-30291","entityId":"entry-7603","position":[795.5782,-235.4608,319.8553],"yaw":-3.92699,"spawnMask":1},{"id":"creature-30292","entityId":"entry-6222","position":[794.3832,-235.4608,326.7123],"yaw":-5.3058,"spawnMask":1},{"id":"creature-30293","entityId":"entry-6225","position":[780.5632,-278.0238,365.3503],"yaw":-4.12239,"spawnMask":1},{"id":"creature-30294","entityId":"entry-6222","position":[661.9982,-235.5438,369.0903],"yaw":-5.24667,"spawnMask":1},{"id":"creature-30295","entityId":"entry-6222","position":[696.2902,-278.0228,384.8083],"yaw":-6.06902,"spawnMask":1},{"id":"creature-30296","entityId":"entry-6224","position":[1032.7682,-277.5488,190.6183],"yaw":-3.08878,"spawnMask":1},{"id":"creature-30297","entityId":"entry-7603","position":[1006.7132,-276.1708,62.4493],"yaw":-3.61283,"spawnMask":1},{"id":"creature-30298","entityId":"entry-7603","position":[1004.4462,-277.6168,68.4723],"yaw":-0.418879,"spawnMask":1},{"id":"creature-30299","entityId":"entry-7603","position":[1008.6122,-277.9388,73.7873],"yaw":-0.20944,"spawnMask":1},{"id":"creature-30300","entityId":"entry-7603","position":[1008.7472,-277.6158,68.4763],"yaw":-6.12611,"spawnMask":1},{"id":"creature-30301","entityId":"entry-6224","position":[1011.7862,-276.1838,62.5003],"yaw":-1.46608,"spawnMask":1},{"id":"creature-30302","entityId":"entry-6227","position":[1017.0672,-321.3758,303.1603],"yaw":-0.206138,"spawnMask":1},{"id":"creature-30303","entityId":"entry-6224","position":[954.3882,-262.3448,-42.5025],"yaw":-4.5204,"spawnMask":1},{"id":"creature-30304","entityId":"entry-6227","position":[975.3672,-278.0238,101.6833],"yaw":-5.06208,"spawnMask":1},{"id":"creature-30306","entityId":"entry-6224","position":[1017.6952,-321.3758,302.3353],"yaw":-6.02521,"spawnMask":1},{"id":"creature-30307","entityId":"entry-6227","position":[961.5472,-277.5388,247.3363],"yaw":-5.21228,"spawnMask":1},{"id":"creature-30308","entityId":"entry-6224","position":[957.4252,-277.5388,259.7893],"yaw":-1.43922,"spawnMask":1},{"id":"creature-30309","entityId":"entry-6226","position":[952.2512,-261.6108,-46.0463],"yaw":-4.72984,"spawnMask":1},{"id":"creature-30310","entityId":"entry-6329","position":[694.4222,-159.5758,46.5853],"yaw":-0.837758,"spawnMask":1},{"id":"creature-30311","entityId":"entry-6329","position":[749.7772,-160.0968,77.5063],"yaw":-6.16101,"spawnMask":1},{"id":"creature-30312","entityId":"entry-6329","position":[700.8262,-159.6028,20.4813],"yaw":-3.54302,"spawnMask":1},{"id":"creature-30313","entityId":"entry-6329","position":[628.5952,-156.6898,-13.976],"yaw":-5.93412,"spawnMask":1},{"id":"creature-30314","entityId":"entry-6329","position":[659.0602,-159.6878,80.3153],"yaw":-0.047407,"spawnMask":1},{"id":"creature-30315","entityId":"entry-6206","position":[619.0012,-161.3678,12.1263],"yaw":-3.29867,"spawnMask":1},{"id":"creature-30316","entityId":"entry-6329","position":[690.9472,-159.6588,-31.1817],"yaw":-2.98451,"spawnMask":1},{"id":"creature-30317","entityId":"entry-6206","position":[722.3672,-160.0988,106.6683],"yaw":-5.93412,"spawnMask":1},{"id":"creature-30318","entityId":"entry-6206","position":[716.1652,-158.6348,-53.9427],"yaw":-1.16937,"spawnMask":1},{"id":"creature-30319","entityId":"entry-6206","position":[645.2002,-159.6028,-58.5541],"yaw":-0.890118,"spawnMask":1},{"id":"creature-30320","entityId":"entry-6391","position":[737.5962,-198.5968,68.1633],"yaw":-4.17134,"spawnMask":1},{"id":"creature-30321","entityId":"entry-6391","position":[694.0182,-198.5548,124.1433],"yaw":-4.38078,"spawnMask":1},{"id":"creature-30322","entityId":"entry-6391","position":[697.4372,-198.5558,122.5613],"yaw":-2.84489,"spawnMask":1},{"id":"creature-30323","entityId":"entry-6392","position":[695.8652,-198.5558,123.3983],"yaw":-0.279253,"spawnMask":1},{"id":"creature-30324","entityId":"entry-6391","position":[707.2402,-198.5798,78.1133],"yaw":-2.61799,"spawnMask":1},{"id":"creature-30325","entityId":"entry-6233","position":[732.3752,-236.3298,271.9103],"yaw":-3.64774,"spawnMask":1},{"id":"creature-30326","entityId":"entry-6223","position":[755.3282,-217.7818,207.0753],"yaw":-1.79769,"spawnMask":1},{"id":"creature-30327","entityId":"entry-6223","position":[634.0742,-216.4028,168.7483],"yaw":-1.27409,"spawnMask":1},{"id":"creature-30328","entityId":"entry-6223","position":[621.1662,-216.4038,139.6343],"yaw":-3.29867,"spawnMask":1},{"id":"creature-30329","entityId":"entry-6233","position":[847.4512,-235.4838,321.8493],"yaw":-4.39823,"spawnMask":1},{"id":"creature-30332","entityId":"entry-6234","position":[787.7382,-331.8988,580.5123],"yaw":-2.84489,"spawnMask":1},{"id":"creature-30333","entityId":"entry-6212","position":[948.3632,-313.9198,558.8993],"yaw":-2.3911,"spawnMask":1},{"id":"creature-30334","entityId":"entry-6212","position":[921.6532,-313.9198,549.3373],"yaw":-0.226893,"spawnMask":1},{"id":"creature-30335","entityId":"entry-6234","position":[895.8182,-299.6418,448.1243],"yaw":-0.383972,"spawnMask":1},{"id":"creature-30336","entityId":"entry-6212","position":[928.9982,-322.9198,614.3653],"yaw":-5.67232,"spawnMask":1},{"id":"creature-30337","entityId":"entry-6234","position":[858.1902,-336.6538,598.7623],"yaw":-3.4383,"spawnMask":1},{"id":"creature-30338","entityId":"entry-6234","position":[952.7782,-308.9818,541.6823],"yaw":-4.48742,"spawnMask":1},{"id":"creature-30339","entityId":"entry-6212","position":[937.0132,-317.6418,523.6663],"yaw":-2.80998,"spawnMask":1},{"id":"creature-30340","entityId":"entry-6232","position":[948.3492,-308.6418,475.9953],"yaw":-5.3058,"spawnMask":1},{"id":"creature-30342","entityId":"entry-6329","position":[835.6052,-197.3128,2.7743],"yaw":-0.017453,"spawnMask":1},{"id":"creature-30343","entityId":"entry-6211","position":[753.9592,-184.5968,-76.7932],"yaw":-2.77507,"spawnMask":1},{"id":"creature-30344","entityId":"entry-6206","position":[845.6652,-184.2058,-10.6718],"yaw":-5.49779,"spawnMask":1},{"id":"creature-30345","entityId":"entry-6329","position":[776.2892,-206.9948,38.3393],"yaw":-5.58505,"spawnMask":1},{"id":"creature-30346","entityId":"entry-6329","position":[770.9622,-202.2698,-62.9383],"yaw":-2.93215,"spawnMask":1},{"id":"creature-30348","entityId":"entry-6329","position":[771.2982,-206.9968,40.9583],"yaw":-5.2709,"spawnMask":1},{"id":"creature-30349","entityId":"entry-6329","position":[749.1852,-184.5958,-78.8853],"yaw":-2.26893,"spawnMask":1},{"id":"creature-30350","entityId":"entry-6211","position":[829.7132,-188.1298,-9.6186],"yaw":-4.50295,"spawnMask":1},{"id":"creature-30351","entityId":"entry-6206","position":[740.9782,-206.1908,-20.0613],"yaw":-3.38594,"spawnMask":1},{"id":"creature-30352","entityId":"entry-6211","position":[763.8302,-164.2878,132.4123],"yaw":-1.88496,"spawnMask":1},{"id":"creature-30353","entityId":"entry-7603","position":[834.1142,-235.5448,415.7483],"yaw":-1.01504,"spawnMask":1},{"id":"creature-30354","entityId":"entry-7603","position":[839.0812,-235.5438,413.2143],"yaw":-3.99623,"spawnMask":1},{"id":"creature-30355","entityId":"entry-7603","position":[835.4422,-235.4608,409.1483],"yaw":-5.34071,"spawnMask":1},{"id":"creature-30356","entityId":"entry-7603","position":[840.8092,-235.5438,406.6803],"yaw":-2.21234,"spawnMask":1},{"id":"creature-30357","entityId":"entry-6233","position":[831.6612,-235.4608,417.2573],"yaw":0,"spawnMask":1},{"id":"creature-30358","entityId":"entry-6222","position":[829.5302,-235.5448,414.2403],"yaw":-1.09437,"spawnMask":1},{"id":"creature-30360","entityId":"entry-7603","position":[733.3372,-235.4618,326.9533],"yaw":0,"spawnMask":1},{"id":"creature-30361","entityId":"entry-7603","position":[726.4612,-235.4608,322.3353],"yaw":-4.95674,"spawnMask":1},{"id":"creature-30362","entityId":"entry-7603","position":[732.4802,-235.4608,317.5993],"yaw":-2.82743,"spawnMask":1},{"id":"creature-30363","entityId":"entry-7603","position":[738.3272,-235.4608,322.0833],"yaw":-3.80482,"spawnMask":1},{"id":"creature-30364","entityId":"entry-6222","position":[725.9002,-235.4608,317.4003],"yaw":-0.349066,"spawnMask":1},{"id":"creature-30366","entityId":"entry-6222","position":[733.7082,-278.0218,455.1613],"yaw":-3.99421,"spawnMask":1},{"id":"creature-30367","entityId":"entry-6222","position":[779.6062,-278.0238,365.6423],"yaw":-3.43791,"spawnMask":1},{"id":"creature-30368","entityId":"entry-7603","position":[715.3052,-278.0168,440.5363],"yaw":-5.12912,"spawnMask":1},{"id":"creature-30370","entityId":"entry-7603","position":[713.4122,-278.0168,441.3743],"yaw":-5.12912,"spawnMask":1},{"id":"creature-30371","entityId":"entry-7603","position":[716.0942,-278.0168,442.3193],"yaw":-5.12912,"spawnMask":1},{"id":"creature-30372","entityId":"entry-6222","position":[717.1632,-278.0158,439.7133],"yaw":-5.12912,"spawnMask":1},{"id":"creature-30373","entityId":"entry-7603","position":[650.7692,-235.5438,367.6803],"yaw":-1.93866,"spawnMask":1},{"id":"creature-30374","entityId":"entry-7603","position":[658.0392,-235.4608,354.5943],"yaw":-1.22173,"spawnMask":1},{"id":"creature-30375","entityId":"entry-7603","position":[661.0322,-235.4608,359.6653],"yaw":0,"spawnMask":1},{"id":"creature-30376","entityId":"entry-7603","position":[654.6682,-235.4598,352.3233],"yaw":-6.26573,"spawnMask":1},{"id":"creature-30377","entityId":"entry-6222","position":[655.0762,-235.5438,365.1343],"yaw":-0.802967,"spawnMask":1},{"id":"creature-30378","entityId":"entry-7603","position":[785.1932,-235.4598,484.9673],"yaw":-6.24828,"spawnMask":1},{"id":"creature-30379","entityId":"entry-7603","position":[790.8192,-235.5438,485.6363],"yaw":-4.46223,"spawnMask":1},{"id":"creature-30380","entityId":"entry-7603","position":[787.1962,-235.4598,490.4683],"yaw":0,"spawnMask":1},{"id":"creature-30381","entityId":"entry-7603","position":[793.0802,-235.5448,480.2843],"yaw":-0.809533,"spawnMask":1},{"id":"creature-30382","entityId":"entry-6222","position":[786.8962,-235.4598,479.1123],"yaw":-5.3058,"spawnMask":1},{"id":"creature-30383","entityId":"entry-6222","position":[681.1302,-235.5448,450.4413],"yaw":-2.94272,"spawnMask":1},{"id":"creature-30384","entityId":"entry-6226","position":[1031.6452,-277.5478,192.7973],"yaw":-0.783807,"spawnMask":1},{"id":"creature-30386","entityId":"entry-6226","position":[1052.6172,-321.3728,292.2223],"yaw":-2.59422,"spawnMask":1},{"id":"creature-30387","entityId":"entry-6224","position":[1034.6122,-277.5498,191.2053],"yaw":-5.71985,"spawnMask":1},{"id":"creature-30388","entityId":"entry-6227","position":[1016.4322,-277.5328,326.8353],"yaw":-0.008276,"spawnMask":1},{"id":"creature-30389","entityId":"entry-6224","position":[991.9702,-321.3758,283.7453],"yaw":-1.66084,"spawnMask":1},{"id":"creature-30390","entityId":"entry-6227","position":[937.5272,-278.0228,139.1843],"yaw":-2.5883,"spawnMask":1},{"id":"creature-30393","entityId":"entry-6224","position":[1020.6132,-277.5348,327.0083],"yaw":-6.18491,"spawnMask":1},{"id":"creature-30394","entityId":"entry-6329","position":[706.0592,-160.0958,76.5713],"yaw":-2.53073,"spawnMask":1},{"id":"creature-30395","entityId":"entry-6329","position":[618.9442,-159.6028,79.3603],"yaw":-5.74213,"spawnMask":1},{"id":"creature-30396","entityId":"entry-6206","position":[693.5812,-161.3458,-55.6182],"yaw":-1.44862,"spawnMask":1},{"id":"creature-30397","entityId":"entry-6329","position":[724.5712,-160.0988,102.9673],"yaw":-4.45059,"spawnMask":1},{"id":"creature-30398","entityId":"entry-6329","position":[604.1012,-159.6028,-59.4464],"yaw":-4.85202,"spawnMask":1},{"id":"creature-30399","entityId":"entry-6329","position":[701.6082,-159.6028,11.8693],"yaw":-4.10152,"spawnMask":1},{"id":"creature-30400","entityId":"entry-6206","position":[562.1562,-159.6028,-14.3835],"yaw":-5.02655,"spawnMask":1},{"id":"creature-31796","entityId":"entry-6329","position":[591.1222,-159.6568,-48.7733],"yaw":-3.08923,"spawnMask":1},{"id":"creature-31797","entityId":"entry-6206","position":[709.4592,-159.1108,-46.6954],"yaw":-3.9968,"spawnMask":1},{"id":"creature-31944","entityId":"entry-6329","position":[665.9902,-159.5968,-55.1489],"yaw":-2.51327,"spawnMask":1},{"id":"creature-31981","entityId":"entry-6212","position":[941.9512,-317.6418,525.6113],"yaw":-5.84685,"spawnMask":1},{"id":"creature-31982","entityId":"entry-6224","position":[782.4402,-331.9218,592.9273],"yaw":-3.08923,"spawnMask":1},{"id":"creature-31983","entityId":"entry-6212","position":[920.5602,-313.9198,553.0633],"yaw":-5.16617,"spawnMask":1},{"id":"creature-31984","entityId":"entry-6234","position":[889.9592,-322.9198,621.9923],"yaw":-5.44543,"spawnMask":1},{"id":"creature-31985","entityId":"entry-6212","position":[927.8322,-322.9198,610.1143],"yaw":-2.89725,"spawnMask":1},{"id":"creature-31986","entityId":"entry-6234","position":[959.3032,-295.9198,462.1213],"yaw":-4.93928,"spawnMask":1},{"id":"creature-31987","entityId":"entry-6234","position":[939.2932,-317.6418,527.0433],"yaw":-5.88176,"spawnMask":1},{"id":"creature-31988","entityId":"entry-6234","position":[921.1062,-335.6418,594.4223],"yaw":-0.10472,"spawnMask":1},{"id":"creature-31989","entityId":"entry-6212","position":[897.3332,-322.9198,596.0293],"yaw":-4.34587,"spawnMask":1},{"id":"creature-31990","entityId":"entry-6212","position":[960.1082,-295.9198,501.5183],"yaw":-2.98451,"spawnMask":1},{"id":"creature-31991","entityId":"entry-6211","position":[744.0382,-184.5948,-80.4316],"yaw":-5.21853,"spawnMask":1},{"id":"creature-31992","entityId":"entry-6329","position":[827.3012,-200.9348,14.6853],"yaw":-2.82743,"spawnMask":1},{"id":"creature-31993","entityId":"entry-6206","position":[794.4252,-184.5408,-74.3339],"yaw":-1.0472,"spawnMask":1},{"id":"creature-31994","entityId":"entry-6329","position":[749.0772,-206.6018,3.6023],"yaw":-2.93215,"spawnMask":1},{"id":"creature-31995","entityId":"entry-6329","position":[759.8302,-164.2878,134.4583],"yaw":-5.79449,"spawnMask":1},{"id":"creature-31996","entityId":"entry-6211","position":[739.7882,-205.6678,-26.8778],"yaw":-0.907571,"spawnMask":1},{"id":"creature-31997","entityId":"entry-6206","position":[788.0132,-204.4008,-2.8067],"yaw":-0.925298,"spawnMask":1},{"id":"creature-31998","entityId":"entry-6329","position":[824.3632,-188.7388,33.5123],"yaw":-3.82227,"spawnMask":1},{"id":"creature-31999","entityId":"entry-6329","position":[800.4672,-177.2418,94.6513],"yaw":-6.02139,"spawnMask":1},{"id":"creature-32000","entityId":"entry-6211","position":[827.5372,-200.8308,2.5743],"yaw":-3.87463,"spawnMask":1},{"id":"creature-32001","entityId":"entry-7603","position":[711.7412,-278.0168,375.4783],"yaw":-0.027287,"spawnMask":1},{"id":"creature-32002","entityId":"entry-7603","position":[710.3892,-278.0208,375.5153],"yaw":-0.027284,"spawnMask":1},{"id":"creature-32003","entityId":"entry-7603","position":[712.4482,-278.0198,377.4593],"yaw":-0.027285,"spawnMask":1},{"id":"creature-32004","entityId":"entry-7603","position":[714.3932,-278.0178,375.4053],"yaw":-0.027286,"spawnMask":1},{"id":"creature-32005","entityId":"entry-6233","position":[711.5162,-278.0198,373.4833],"yaw":-0.027281,"spawnMask":1},{"id":"creature-32006","entityId":"entry-6222","position":[797.5922,-278.0058,408.4543],"yaw":-5.74002,"spawnMask":1},{"id":"creature-32007","entityId":"entry-6222","position":[780.4332,-278.0238,366.3413],"yaw":-4.58216,"spawnMask":1},{"id":"creature-32008","entityId":"entry-6225","position":[697.1202,-278.0228,429.0233],"yaw":-5.09596,"spawnMask":1},{"id":"creature-32014","entityId":"entry-7603","position":[673.3502,-235.4608,450.0093],"yaw":0,"spawnMask":1},{"id":"creature-32103","entityId":"entry-7603","position":[677.9842,-235.5448,462.5023],"yaw":-5.94259,"spawnMask":1},{"id":"creature-32104","entityId":"entry-7603","position":[674.4372,-235.5438,461.7253],"yaw":-2.62881,"spawnMask":1},{"id":"creature-33390","entityId":"entry-7603","position":[683.7172,-235.5448,461.0263],"yaw":-3.65961,"spawnMask":1},{"id":"creature-33395","entityId":"entry-6233","position":[673.8972,-235.5448,454.2243],"yaw":-3.59214,"spawnMask":1},{"id":"creature-33396","entityId":"entry-7603","position":[660.3132,-235.5448,428.3943],"yaw":-6.11885,"spawnMask":1},{"id":"creature-33397","entityId":"entry-7603","position":[658.3422,-235.5438,428.6853],"yaw":-0.364823,"spawnMask":1},{"id":"creature-33398","entityId":"entry-7603","position":[661.8042,-235.4608,418.0983],"yaw":-2.00713,"spawnMask":1},{"id":"creature-33399","entityId":"entry-7603","position":[665.9502,-235.5448,428.1283],"yaw":-0.923557,"spawnMask":1},{"id":"creature-33400","entityId":"entry-6222","position":[658.3632,-235.5448,419.6123],"yaw":-5.24279,"spawnMask":1},{"id":"creature-33401","entityId":"entry-6222","position":[709.5362,-235.5448,488.3003],"yaw":-6.02039,"spawnMask":1},{"id":"creature-33402","entityId":"entry-6222","position":[733.7032,-278.0228,459.1503],"yaw":-1.41736,"spawnMask":1},{"id":"creature-33403","entityId":"entry-7603","position":[825.1522,-277.9218,345.7663],"yaw":-0.925025,"spawnMask":1},{"id":"creature-33404","entityId":"entry-7603","position":[820.2002,-277.9208,349.2343],"yaw":-3.735,"spawnMask":1},{"id":"creature-33405","entityId":"entry-7603","position":[824.7042,-277.9218,351.0653],"yaw":0,"spawnMask":1},{"id":"creature-33421","entityId":"entry-7603","position":[828.1102,-278.0058,354.5543],"yaw":-2.70326,"spawnMask":1},{"id":"creature-33422","entityId":"entry-6222","position":[827.7872,-278.0058,348.4723],"yaw":-5.88472,"spawnMask":1},{"id":"creature-33423","entityId":"entry-7603","position":[926.4142,-277.9398,142.1483],"yaw":-1.65806,"spawnMask":1},{"id":"creature-33426","entityId":"entry-7603","position":[928.3112,-277.3458,135.7543],"yaw":-2.49582,"spawnMask":1},{"id":"creature-33427","entityId":"entry-7603","position":[932.7002,-277.9398,126.5413],"yaw":-5.49779,"spawnMask":1},{"id":"creature-33428","entityId":"entry-7603","position":[933.9462,-277.9398,136.3803],"yaw":0,"spawnMask":1},{"id":"creature-33429","entityId":"entry-6233","position":[931.9392,-277.9398,131.9003],"yaw":-0.174533,"spawnMask":1},{"id":"creature-33430","entityId":"entry-6224","position":[1071.3122,-321.3758,265.0183],"yaw":-1.62105,"spawnMask":1},{"id":"creature-33431","entityId":"entry-6224","position":[1052.8302,-321.3728,290.9633],"yaw":-3.65923,"spawnMask":1},{"id":"creature-33432","entityId":"entry-6224","position":[958.0002,-262.2898,-42.7587],"yaw":-4.92183,"spawnMask":1},{"id":"creature-33433","entityId":"entry-7603","position":[1041.2592,-277.5538,190.5123],"yaw":-2.57274,"spawnMask":1},{"id":"creature-33434","entityId":"entry-7603","position":[1040.2722,-277.4558,195.1453],"yaw":-5.044,"spawnMask":1},{"id":"creature-33435","entityId":"entry-7603","position":[1041.5992,-277.5478,185.1563],"yaw":-2.96448,"spawnMask":1},{"id":"creature-33436","entityId":"entry-7603","position":[1053.6922,-277.4558,193.4693],"yaw":-5.32325,"spawnMask":1},{"id":"creature-33437","entityId":"entry-6233","position":[1046.4922,-277.5528,191.9833],"yaw":-4.08323,"spawnMask":1},{"id":"creature-33438","entityId":"entry-7603","position":[982.1442,-277.9418,106.0783],"yaw":-3.61283,"spawnMask":1},{"id":"creature-33439","entityId":"entry-7603","position":[991.7082,-277.9418,106.9633],"yaw":-2.96706,"spawnMask":1},{"id":"creature-33440","entityId":"entry-7603","position":[973.4492,-277.9418,117.3653],"yaw":0,"spawnMask":1},{"id":"creature-33441","entityId":"entry-7603","position":[985.2392,-278.0248,103.5593],"yaw":-3.34306,"spawnMask":1},{"id":"creature-33442","entityId":"entry-6224","position":[978.0682,-277.9418,111.6893],"yaw":-4.18879,"spawnMask":1},{"id":"creature-33443","entityId":"entry-6224","position":[1060.9912,-321.3738,233.0813],"yaw":-2.58111,"spawnMask":1},{"id":"creature-33444","entityId":"entry-6224","position":[936.2392,-278.0228,136.5983],"yaw":-0.66947,"spawnMask":1},{"id":"creature-33445","entityId":"entry-6226","position":[1061.0252,-321.3758,235.0053],"yaw":-1.04478,"spawnMask":1},{"id":"creature-33446","entityId":"entry-6224","position":[1070.8672,-321.3758,266.2613],"yaw":-1.62033,"spawnMask":1},{"id":"creature-33447","entityId":"entry-6329","position":[680.6752,-159.5768,60.0723],"yaw":-2.1293,"spawnMask":1},{"id":"creature-33448","entityId":"entry-6206","position":[560.9842,-159.6858,2.6763],"yaw":-4.66665,"spawnMask":1},{"id":"creature-33449","entityId":"entry-6206","position":[701.7022,-159.6028,6.5673],"yaw":-2.04204,"spawnMask":1},{"id":"creature-33450","entityId":"entry-6329","position":[700.4802,-160.0958,83.6633],"yaw":-2.3911,"spawnMask":1},{"id":"creature-33451","entityId":"entry-6329","position":[648.9262,-159.6028,-60.8176],"yaw":-0.506145,"spawnMask":1},{"id":"creature-33452","entityId":"entry-6329","position":[623.0102,-159.6858,81.0653],"yaw":-3.19489,"spawnMask":1},{"id":"creature-33453","entityId":"entry-6206","position":[725.5782,-160.0958,61.8343],"yaw":-4.2586,"spawnMask":1},{"id":"creature-33454","entityId":"entry-6212","position":[918.1652,-335.6418,600.0113],"yaw":-3.89208,"spawnMask":1},{"id":"creature-33455","entityId":"entry-6212","position":[940.4792,-295.9198,444.0213],"yaw":-4.03171,"spawnMask":1},{"id":"creature-33456","entityId":"entry-6234","position":[840.1462,-277.9198,425.7953],"yaw":-2.32129,"spawnMask":1},{"id":"creature-33457","entityId":"entry-6212","position":[962.5762,-296.0028,469.9473],"yaw":-1.68938,"spawnMask":1},{"id":"creature-33458","entityId":"entry-6212","position":[882.0862,-335.6418,605.7133],"yaw":-3.89208,"spawnMask":1},{"id":"creature-33459","entityId":"entry-6212","position":[900.6772,-300.4618,450.4133],"yaw":-5.3058,"spawnMask":1},{"id":"creature-33460","entityId":"entry-6232","position":[931.2142,-328.3988,560.8653],"yaw":-2.79253,"spawnMask":1},{"id":"creature-33471","entityId":"entry-6212","position":[936.2342,-295.9198,480.2173],"yaw":-0.959931,"spawnMask":1},{"id":"creature-33472","entityId":"entry-6232","position":[914.9312,-335.6418,604.3423],"yaw":-3.21141,"spawnMask":1},{"id":"creature-33473","entityId":"entry-6212","position":[934.7652,-308.6418,459.5493],"yaw":-1.36136,"spawnMask":1},{"id":"creature-33474","entityId":"entry-6211","position":[766.1502,-201.6438,-62.793],"yaw":-4.46804,"spawnMask":1},{"id":"creature-33475","entityId":"entry-6211","position":[834.5352,-197.7798,-38.0028],"yaw":-6.05629,"spawnMask":1},{"id":"creature-33476","entityId":"entry-6206","position":[773.8632,-206.9778,-0.7378],"yaw":-5.93412,"spawnMask":1},{"id":"creature-33477","entityId":"entry-6329","position":[769.1932,-205.0998,-52.1586],"yaw":-4.88692,"spawnMask":1},{"id":"creature-33478","entityId":"entry-6206","position":[834.9572,-197.6098,14.1883],"yaw":-2.98451,"spawnMask":1},{"id":"creature-33479","entityId":"entry-6211","position":[788.0612,-204.3568,-4.1467],"yaw":-3.29641,"spawnMask":1},{"id":"creature-33480","entityId":"entry-6329","position":[739.9872,-207.0108,38.8193],"yaw":-4.81711,"spawnMask":1},{"id":"creature-33481","entityId":"entry-7603","position":[859.9992,-277.9238,322.1803],"yaw":-1.11701,"spawnMask":1},{"id":"creature-33482","entityId":"entry-7603","position":[873.8772,-278.0068,313.7773],"yaw":-4.5664,"spawnMask":1},{"id":"creature-33483","entityId":"entry-7603","position":[864.3982,-277.9238,324.7523],"yaw":-0.820305,"spawnMask":1},{"id":"creature-33484","entityId":"entry-7603","position":[862.5872,-277.9238,319.4703],"yaw":0,"spawnMask":1},{"id":"creature-33485","entityId":"entry-6222","position":[867.1002,-278.0068,314.0543],"yaw":-0.950813,"spawnMask":1},{"id":"creature-33486","entityId":"entry-6224","position":[1017.6852,-277.5338,326.6053],"yaw":-2.92918,"spawnMask":1},{"id":"creature-33487","entityId":"entry-6226","position":[990.9062,-321.3758,285.5943],"yaw":-1.96094,"spawnMask":1},{"id":"creature-33488","entityId":"entry-6224","position":[975.6122,-278.0238,105.1323],"yaw":-3.81134,"spawnMask":1},{"id":"creature-33489","entityId":"entry-6234","position":[881.3522,-322.9198,621.0223],"yaw":-2.87979,"spawnMask":1},{"id":"creature-33490","entityId":"entry-6212","position":[918.9912,-313.7228,549.7483],"yaw":-3.29867,"spawnMask":1},{"id":"creature-33491","entityId":"entry-6212","position":[850.0132,-338.9878,597.3273],"yaw":-2.85127,"spawnMask":1},{"id":"creature-33492","entityId":"entry-6234","position":[935.6842,-295.9198,442.3203],"yaw":-3.00197,"spawnMask":1},{"id":"creature-33493","entityId":"entry-6212","position":[944.9262,-310.9908,505.8553],"yaw":-2.60054,"spawnMask":1},{"id":"creature-33494","entityId":"entry-6212","position":[949.4782,-308.6418,481.2753],"yaw":-3.80482,"spawnMask":1},{"id":"creature-33495","entityId":"entry-6224","position":[783.3482,-331.9438,587.1343],"yaw":-2.94961,"spawnMask":1},{"id":"creature-33497","entityId":"entry-6212","position":[871.3742,-290.9248,442.8083],"yaw":-2.49582,"spawnMask":1},{"id":"creature-33498","entityId":"entry-6212","position":[932.6362,-329.9738,564.9863],"yaw":-6.14356,"spawnMask":1},{"id":"creature-33499","entityId":"entry-6212","position":[936.0802,-295.9198,482.6613],"yaw":-3.61283,"spawnMask":1},{"id":"creature-33500","entityId":"entry-6212","position":[965.6802,-295.9198,502.9613],"yaw":-6.12611,"spawnMask":1}],"roamingPacks":[{"id":"patrol-30132","name":"Dark Iron Agent Patrol","speed":1.15,"pathId":301320,"formationSource":"database-solo","spawnMask":1,"waypoints":[[892.2562,-287.0028,460.9833],[930.7722,-296.0028,470.9793],[937.6592,-296.0028,482.4683],[928.3362,-305.0028,520.4223],[920.8342,-314.0028,550.5783],[911.0392,-323.0028,588.8973],[899.1582,-323.0028,595.8943],[910.9642,-323.0028,588.5713],[920.6812,-314.0028,551.2363],[928.1302,-305.0028,520.2683],[937.5542,-296.0028,482.8053],[930.8242,-296.0028,470.8903]],"members":[{"id":"member","entityId":"entry-6212","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30134","name":"Alarm-a-bomb 2600 Patrol","speed":1.15,"pathId":301340,"formationSource":"database-solo","spawnMask":1,"waypoints":[[754.4982,-207.0928,48.9283],[784.0022,-207.0688,11.2843],[780.0512,-207.5868,-20.6925],[784.0022,-207.0688,11.2843]],"members":[{"id":"member","entityId":"entry-7897","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30141","name":"Mobile Alert System Patrol","speed":1.15,"pathId":301410,"formationSource":"database-solo","spawnMask":1,"waypoints":[[952.5212,-277.5218,290.6963],[955.5422,-277.5218,273.1263],[961.9662,-277.5388,224.3303],[966.2702,-277.5388,196.2603],[984.0352,-277.5388,184.0113],[1013.2502,-277.5408,187.6683],[1058.4722,-277.5398,193.9713],[1089.3542,-277.5398,198.2923],[1100.3522,-277.5398,211.3213],[1096.4952,-277.5398,245.0343],[1090.7452,-277.5398,290.2303],[1084.8062,-277.5398,324.2573],[1069.9942,-277.5398,332.9373],[1039.8182,-277.5398,328.8333],[992.3462,-277.5218,322.1843],[963.7692,-277.5218,318.3283],[953.0402,-277.5218,301.8673]],"members":[{"id":"member","entityId":"entry-7849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30143","name":"Mobile Alert System Patrol","speed":1.15,"pathId":301430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[932.2162,-326.7528,556.9913],[927.3432,-335.5268,576.7073],[912.8962,-335.7258,605.1843],[894.0862,-335.7248,608.1173],[912.8962,-335.7258,605.1843],[927.3432,-335.5268,576.7073]],"members":[{"id":"member","entityId":"entry-7849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30144","name":"Mobile Alert System Patrol","speed":1.15,"pathId":301440,"formationSource":"database-solo","spawnMask":1,"waypoints":[[966.6392,-296.0608,457.0073],[991.6722,-300.5198,437.8043],[1013.3192,-306.8438,421.1153],[1024.0532,-308.8798,406.3783],[1022.5952,-308.8798,390.6373],[1008.7922,-313.0468,368.3193],[1014.4182,-313.0468,352.4073],[1058.4202,-321.0978,318.5343],[1062.9342,-321.3798,308.4573],[1055.0282,-321.3698,298.3943],[1062.7962,-321.3798,308.1843],[1058.3512,-321.1218,318.2853],[1014.1632,-313.0468,352.2403],[1008.6802,-313.0468,367.9703],[1022.5802,-308.8798,390.5613],[1023.8032,-308.8798,406.2933],[1013.0222,-306.8138,420.8893]],"members":[{"id":"member","entityId":"entry-7849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30186","name":"Peacekeeper Security Suit Patrol","speed":1.15,"pathId":301860,"formationSource":"database-solo","spawnMask":1,"waypoints":[[686.3152,-235.5438,477.0533],[668.5422,-235.5438,461.6503],[652.4232,-235.5438,429.8723],[653.4152,-235.5438,388.3403],[659.6272,-235.5438,366.3373],[680.4382,-235.5438,339.8313],[700.7572,-235.5438,323.6143],[728.6692,-235.5438,310.0703],[761.7852,-235.5438,314.8793],[784.8102,-235.5438,321.8663],[811.6982,-235.5438,341.4583],[825.8872,-235.5438,361.1153],[840.8242,-235.5438,397.2313],[834.9282,-235.5438,432.5723],[813.2732,-235.5438,471.2373],[777.1812,-235.5438,492.5553],[750.3012,-235.5438,498.0663],[724.0342,-235.5438,493.7113],[697.4222,-235.5438,485.5383]],"members":[{"id":"member","entityId":"entry-6230","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30193","name":"Mechano-Frostwalker Patrol","speed":1.15,"pathId":301930,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1008.6382,-278.0218,75.3333],[1008.7782,-273.6608,40.5113],[1007.6682,-269.6748,4.4033],[997.9502,-269.6748,-3.268],[967.7812,-265.5088,-3.7834],[956.3922,-265.5088,-15.0343],[967.7812,-265.5088,-3.7834],[997.9502,-269.6748,-3.268],[1007.6682,-269.6748,4.4033],[1008.7782,-273.6608,40.5113],[1008.6382,-278.0218,75.3333],[1002.9492,-278.0218,86.4173]],"members":[{"id":"member","entityId":"entry-6227","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30205","name":"Leprous Machinesmith Patrol","speed":1.15,"pathId":302050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[996.3722,-278.0238,90.7283],[941.6752,-278.0238,132.5793]],"members":[{"id":"member","entityId":"entry-6224","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30213","name":"Caverndeep Ambusher Patrol","speed":1.15,"pathId":302130,"formationSource":"database-solo","spawnMask":1,"waypoints":[[568.8842,-159.6748,-27.0048],[560.5152,-159.6858,-19.0016],[560.8142,-159.6858,35.3393],[560.8522,-159.6858,-19.1166]],"members":[{"id":"member","entityId":"entry-6207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30214","name":"Caverndeep Ambusher Patrol","speed":1.15,"pathId":302140,"formationSource":"database-solo","spawnMask":1,"waypoints":[[723.8762,-160.1818,102.5913],[736.8442,-160.9848,115.1613],[758.7272,-164.3708,133.7733],[780.8662,-170.6208,114.4313],[814.9592,-183.1418,80.3503],[780.5812,-170.6208,114.4753],[758.5682,-164.3708,133.5583],[736.6502,-160.9348,114.9553]],"members":[{"id":"member","entityId":"entry-6207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30215","name":"Caverndeep Ambusher Patrol","speed":1.15,"pathId":302150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[818.2502,-188.8248,26.2103],[829.9362,-188.8198,40.8603],[830.5972,-189.4518,62.6833],[829.8722,-188.8198,41.2773],[818.1522,-188.8248,26.5653],[800.6612,-192.6048,26.2993]],"members":[{"id":"member","entityId":"entry-6207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30216","name":"Caverndeep Ambusher Patrol","speed":1.15,"pathId":302160,"formationSource":"database-solo","spawnMask":1,"waypoints":[[703.4342,-159.6868,1.5843],[695.6002,-159.7428,-33.1743],[726.4752,-158.0138,-64.307],[695.6002,-159.7428,-33.1743]],"members":[{"id":"member","entityId":"entry-6207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30217","name":"Caverndeep Ambusher Patrol","speed":1.15,"pathId":302170,"formationSource":"database-solo","spawnMask":1,"waypoints":[[676.2602,-161.9098,-45.9227],[661.8002,-159.6838,-59.2192],[646.4962,-159.6858,-60.3571],[660.9162,-159.6838,-59.3281],[675.6202,-161.9078,-45.6393],[698.1942,-161.4318,-61.8949],[715.1562,-161.4278,-75.7301]],"members":[{"id":"member","entityId":"entry-6207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30226","name":"Irradiated Pillager Patrol","speed":1.15,"pathId":302260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[725.9572,-160.1788,65.7063],[706.4662,-160.1788,75.3503],[685.9642,-159.6398,63.0953],[706.4662,-160.1788,75.3503]],"members":[{"id":"member","entityId":"entry-6329","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30239","name":"Mechanized Sentry Patrol","speed":1.15,"pathId":302390,"formationSource":"database-solo","spawnMask":1,"waypoints":[[626.2832,-216.4808,141.3623],[636.9572,-216.4838,166.8533],[663.3522,-216.4828,178.2623],[685.4462,-216.4728,178.1993],[710.1052,-216.4818,178.3493],[732.1972,-216.4808,187.5943],[741.3632,-221.8908,210.0693],[740.8112,-228.6538,231.9803],[740.3872,-235.9618,252.9723],[740.8112,-228.6538,231.9803],[741.3632,-221.8908,210.0693],[732.1972,-216.4808,187.5943],[710.1052,-216.4818,178.3493],[685.4462,-216.4728,178.1993],[663.3522,-216.4828,178.2623],[636.9572,-216.4838,166.8533],[626.2882,-216.4808,141.5613],[626.4282,-216.4808,121.2693]],"members":[{"id":"member","entityId":"entry-6233","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30245","name":"Mechanized Sentry Patrol","speed":1.15,"pathId":302450,"formationSource":"database-solo","spawnMask":1,"waypoints":[[622.8462,-216.4868,141.3513],[634.6322,-216.4868,169.6453],[664.2162,-216.4868,181.7743],[710.0252,-216.4868,182.2863],[728.1612,-216.4868,190.3293],[737.3042,-221.8788,210.5063],[736.6382,-236.4498,266.3133],[737.2752,-221.8778,210.5263],[728.0092,-216.4868,189.7963],[709.7422,-216.4888,182.1903],[663.8622,-216.4878,181.7023],[634.4182,-216.4868,169.4463],[622.4602,-216.4858,141.3893],[622.6122,-216.4868,135.5413]],"members":[{"id":"member","entityId":"entry-6233","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30271","name":"Caverndeep Reaver Patrol","speed":1.15,"pathId":302710,"formationSource":"database-solo","spawnMask":1,"waypoints":[[755.3322,-207.9768,-22.6974],[776.6962,-208.0468,-25.2219],[776.1792,-207.9418,-4.5844],[767.6152,-206.6598,12.2863],[777.3062,-207.0768,35.6433],[766.9532,-207.0888,52.1633],[734.9522,-207.0938,40.8713],[732.8992,-209.4738,8.8223],[732.7142,-206.4868,-25.7601]],"members":[{"id":"member","entityId":"entry-6211","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30278","name":"Peacekeeper Security Suit Patrol","speed":1.15,"pathId":302780,"formationSource":"database-solo","spawnMask":1,"waypoints":[[710.2642,-278.0118,405.4203],[721.7992,-278.0118,430.6363],[759.8092,-278.0138,443.7733],[773.5272,-278.0138,433.0323],[774.4312,-278.0118,393.1383],[752.8002,-278.0118,373.9953],[724.4322,-278.0118,379.1523]],"members":[{"id":"member","entityId":"entry-6230","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30279","name":"Peacekeeper Security Suit Patrol","speed":1.15,"pathId":302790,"formationSource":"database-solo","spawnMask":1,"waypoints":[[820.2122,-278.0058,424.6233],[790.1602,-278.0168,412.8253],[783.7202,-278.0198,375.9643],[840.0962,-278.0058,333.3653],[873.4212,-278.0058,308.0793],[883.1532,-278.0058,320.3473],[873.6082,-278.0058,308.2423],[840.2212,-278.0058,333.0283],[784.1282,-278.0208,375.9533],[790.6382,-278.0188,412.9653]],"members":[{"id":"member","entityId":"entry-6230","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30305","name":"Mechano-Frostwalker Patrol","speed":1.15,"pathId":303050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1013.3092,-277.5388,187.6893],[1058.6972,-277.5398,194.1183],[1089.8692,-277.5398,198.3953],[1100.4922,-277.5398,211.4053],[1096.6782,-277.5398,244.9523],[1090.8852,-277.5398,290.3433],[1084.9692,-277.5398,324.6133],[1070.2222,-277.5398,333.0093],[1040.1342,-277.5398,328.9013],[992.4982,-277.5218,322.2493],[964.0102,-277.5218,318.3803],[953.1712,-277.5218,301.9463],[952.8552,-277.5218,290.5583],[955.9172,-277.5218,272.9593],[962.2322,-277.5388,224.2563],[966.5672,-277.5388,196.3593],[984.3242,-277.5388,184.0663]],"members":[{"id":"member","entityId":"entry-6227","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30330","name":"Mechanized Sentry Patrol","speed":1.15,"pathId":303300,"formationSource":"database-solo","spawnMask":1,"waypoints":[[636.6382,-212.8488,120.3773],[639.1512,-212.8488,151.5153],[655.7832,-212.8488,164.9713],[639.1512,-212.8488,151.5153]],"members":[{"id":"member","entityId":"entry-6233","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30331","name":"Mechanized Sentry Patrol","speed":1.15,"pathId":303310,"formationSource":"database-solo","spawnMask":1,"waypoints":[[839.2122,-235.5678,308.3043],[848.6852,-235.5678,320.6483],[816.4642,-235.5428,346.3763],[848.8222,-235.5678,320.6653],[838.7782,-235.5678,308.1653],[828.2932,-243.9018,294.0753],[811.5462,-252.2138,272.2963],[833.6642,-260.5468,254.7773],[873.1762,-278.0058,307.1003],[833.7762,-260.5468,254.9113],[811.9062,-252.2128,272.3933],[828.3242,-243.9018,294.1273]],"members":[{"id":"member","entityId":"entry-6233","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30341","name":"Dark Iron Agent Patrol","speed":1.15,"pathId":303410,"formationSource":"database-solo","spawnMask":1,"waypoints":[[894.5862,-299.7258,448.3963],[924.8502,-308.7258,455.9133],[938.8802,-308.7258,459.6663],[949.0942,-308.7258,476.8433],[950.3662,-308.7258,483.7753],[947.4002,-308.7258,496.4013],[950.3512,-308.7258,484.0483],[949.0432,-308.7258,476.8313],[939.1742,-308.7258,460.0163],[925.0802,-308.7258,456.3113]],"members":[{"id":"member","entityId":"entry-6212","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30365","name":"Leprous Technician Patrol","speed":1.15,"pathId":303650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[818.1342,-278.0048,350.8893],[860.3602,-278.0058,317.9783]],"members":[{"id":"member","entityId":"entry-6222","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30369","name":"Leprous Assistant Patrol","speed":1.15,"pathId":303690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[703.5392,-278.0168,419.4543],[700.0592,-278.0168,404.2943],[708.2362,-278.0158,388.0073],[720.2572,-278.0158,370.8653],[756.2532,-278.0158,363.5423],[785.5982,-278.0158,389.5873],[782.8212,-278.0178,433.8293],[755.9592,-278.0178,454.0043],[715.3022,-278.0168,440.8663]],"members":[{"id":"member","entityId":"entry-7603","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30385","name":"Mechano-Flamewalker Patrol","speed":1.15,"pathId":303850,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1065.9492,-321.3878,312.0203],[1047.2802,-321.3738,288.8623],[1065.9192,-321.3898,311.9653],[1013.6602,-313.0468,352.6863],[1009.1902,-313.0468,362.0713],[1012.1052,-313.0468,376.3733],[1009.3332,-313.0468,362.0143],[1013.6732,-313.0468,352.9443]],"members":[{"id":"member","entityId":"entry-6226","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30391","name":"Mechano-Flamewalker Patrol","speed":1.15,"pathId":303910,"formationSource":"database-solo","spawnMask":1,"waypoints":[[992.6902,-277.5218,322.1333],[1017.3932,-277.5388,325.4143],[1040.0712,-277.5388,328.7123],[1070.4552,-277.5388,332.7333],[1084.9052,-277.5388,324.2393],[1091.0102,-277.5388,289.9233],[1096.7242,-277.5388,245.0903],[1100.5582,-277.5388,211.2823],[1089.6642,-277.5388,198.1283],[1058.6332,-277.5388,194.0443],[1013.4052,-277.5408,187.5613],[984.4802,-277.5408,184.0103],[966.4872,-277.5408,196.3713],[962.2492,-277.5408,224.2953],[955.7962,-277.5208,273.1343],[952.7422,-277.5208,290.6803],[953.2852,-277.5208,301.7633],[964.0052,-277.5208,318.4733]],"members":[{"id":"member","entityId":"entry-6226","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30392","name":"Mechano-Flamewalker Patrol","speed":1.15,"pathId":303920,"formationSource":"database-solo","spawnMask":1,"waypoints":[[966.9452,-296.0598,456.8853],[991.6312,-300.5198,437.8043],[1006.2302,-304.7098,426.8393],[1016.3182,-308.5528,416.0713],[1024.1972,-308.8798,404.3453],[1024.0972,-308.8798,392.0023],[1023.9962,-308.8798,404.6333],[1016.1492,-308.4918,416.1693],[1005.9892,-304.7068,426.8343],[991.5652,-300.5208,437.6313]],"members":[{"id":"member","entityId":"entry-6226","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-32013","name":"Peacekeeper Security Suit Patrol","speed":1.15,"pathId":320130,"formationSource":"database-solo","spawnMask":1,"waypoints":[[659.4192,-235.5438,366.2723],[653.2872,-235.5438,388.1053],[652.3902,-235.5438,429.5373],[668.6722,-235.5438,461.4993],[686.4952,-235.5438,476.9043],[697.7772,-235.5438,485.4353],[724.1572,-235.5438,493.4673],[750.5682,-235.5438,497.8503],[777.3662,-235.5438,492.3143],[813.3492,-235.5438,470.8773],[835.0212,-235.5438,432.3643],[840.8242,-235.5438,396.7163],[825.9312,-235.5438,360.5803],[811.5952,-235.5438,341.0723],[784.8982,-235.5438,321.5863],[761.5302,-235.5438,314.5423],[728.4722,-235.5438,309.9503],[700.7022,-235.5438,323.5533],[680.4322,-235.5438,339.5183]],"members":[{"id":"member","entityId":"entry-6230","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-33496","name":"Arcane Nullifier X-21 Patrol","speed":1.15,"pathId":334960,"formationSource":"database-solo","spawnMask":1,"waypoints":[[857.2132,-332.0028,614.8523],[885.9672,-323.0028,622.4423],[900.0082,-323.0028,624.1393],[914.0852,-323.0028,620.2813],[926.3472,-323.0028,613.1333],[937.5962,-323.0028,598.2813],[943.5592,-321.8458,578.5203],[946.8402,-315.2858,563.6873],[951.1342,-312.1648,548.8653],[953.6992,-307.1988,537.6573],[951.1342,-312.1648,548.8653],[946.8402,-315.2858,563.6873],[943.5592,-321.8458,578.5203],[937.5962,-323.0028,598.2813],[926.3472,-323.0028,613.1333],[914.0852,-323.0028,620.2813],[900.0082,-323.0028,624.1393],[885.9672,-323.0028,622.4423],[857.4152,-331.9168,614.9023],[830.7412,-331.9988,607.9283]],"members":[{"id":"member","entityId":"entry-6232","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-300376","name":"Dark Iron Ambassador Patrol","speed":1.15,"pathId":3000376,"formationSource":"database-solo","spawnMask":1,"waypoints":[[892.2562,-287.0028,460.9833],[930.7722,-296.0028,470.9793],[937.6592,-296.0028,482.4683],[928.3362,-305.0028,520.4223],[920.8342,-314.0028,550.5783],[911.0392,-323.0028,588.8973],[899.1582,-323.0028,595.8943],[910.9642,-323.0028,588.5713],[920.6812,-314.0028,551.2363],[928.1302,-305.0028,520.2683],[937.5542,-296.0028,482.8053],[930.8242,-296.0028,470.8903]],"members":[{"id":"member","entityId":"entry-6228","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-30137","name":"Viscous Fallout","position":[665.2952,-212.8968,-50.4591]},{"id":"creature-30133","name":"Electrocutioner 6000","position":[745.9532,-221.6698,403.9673]},{"id":"creature-30121","name":"Crowd Pummeler 9-60","position":[1083.0422,-277.4558,261.7333]},{"id":"creature-30139","name":"Mekgineer Thermaplugg","position":[725.2292,-330.1278,571.2243]}],"objectiveOrder":[{"id":"creature-30137","name":"Viscous Fallout","position":[665.2952,-212.8968,-50.4591]},{"id":"creature-30133","name":"Electrocutioner 6000","position":[745.9532,-221.6698,403.9673]},{"id":"creature-30121","name":"Crowd Pummeler 9-60","position":[1083.0422,-277.4558,261.7333]},{"id":"creature-30139","name":"Mekgineer Thermaplugg","position":[725.2292,-330.1278,571.2243]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6388,"id":142208,"map":90,"orientation":2.70526,"phaseMask":1,"position_x":-486.665,"position_y":647.652,"position_z":-327.485,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6447,"id":146085,"map":90,"orientation":-2.77507,"phaseMask":1,"position_x":-505.096,"position_y":-93.973,"position_z":-147.814,"rotation0":0,"rotation1":0,"rotation2":-0.983255,"rotation3":0.182237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6582,"id":142214,"map":90,"orientation":0.662801,"phaseMask":1,"position_x":-551.574,"position_y":706.112,"position_z":-325.738,"rotation0":0.037235,"rotation1":-0.102301,"rotation2":0.323633,"rotation3":0.939899,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6726,"id":142215,"map":90,"orientation":-0.236043,"phaseMask":1,"position_x":-515.979,"position_y":708.01,"position_z":-325.738,"rotation0":-0.010907,"rotation1":-0.108319,"rotation2":-0.116839,"rotation3":0.987166,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6748,"id":142216,"map":90,"orientation":-1.13489,"phaseMask":1,"position_x":-492.593,"position_y":681.819,"position_z":-325.738,"rotation0":-0.056883,"rotation1":-0.092824,"rotation2":-0.534106,"rotation3":0.838379,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6755,"id":142213,"map":90,"orientation":1.81514,"phaseMask":1,"position_x":-521.022,"position_y":621.549,"position_z":-327.485,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6910,"id":142207,"map":90,"orientation":2.88852,"phaseMask":1,"position_x":-618.608,"position_y":691.118,"position_z":-327.049,"rotation0":0,"rotation1":0,"rotation2":0.992005,"rotation3":0.126199,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":9265,"id":142210,"map":90,"orientation":-1.78024,"phaseMask":1,"position_x":-518.904,"position_y":718.472,"position_z":-327.505,"rotation0":0,"rotation1":0,"rotation2":-0.777147,"rotation3":0.629319,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":9593,"id":142211,"map":90,"orientation":-0.881392,"phaseMask":1,"position_x":-561.236,"position_y":709.881,"position_z":-327.485,"rotation0":0,"rotation1":0,"rotation2":-0.426569,"rotation3":0.904455,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":11977,"id":142217,"map":90,"orientation":-2.03373,"phaseMask":1,"position_x":-497.995,"position_y":647.425,"position_z":-325.738,"rotation0":-0.091561,"rotation1":-0.058894,"rotation2":-0.845298,"rotation3":0.523086,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":11994,"id":142209,"map":90,"orientation":-2.67908,"phaseMask":1,"position_x":-485.723,"position_y":690.871,"position_z":-327.5,"rotation0":0,"rotation1":0,"rotation2":-0.973379,"rotation3":0.229201,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":12003,"id":90858,"map":90,"orientation":2.22529,"phaseMask":1,"position_x":-758.538,"position_y":260.386,"position_z":-273.049,"rotation0":0,"rotation1":0,"rotation2":0.896872,"rotation3":0.442291,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":14139,"id":85556,"map":90,"orientation":2.21308,"phaseMask":1,"position_x":-806.887,"position_y":323.963,"position_z":-271.656,"rotation0":0,"rotation1":0,"rotation2":0.894155,"rotation3":0.447758,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":14140,"id":142218,"map":90,"orientation":-2.93258,"phaseMask":1,"position_x":-528.375,"position_y":630.048,"position_z":-325.738,"rotation0":0.108055,"rotation1":0.013268,"rotation2":0.988611,"rotation3":-0.103907,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":15766,"id":142219,"map":90,"orientation":2.45177,"phaseMask":1,"position_x":-560.737,"position_y":643.358,"position_z":-325.738,"rotation0":0.103089,"rotation1":-0.034994,"rotation2":0.935582,"rotation3":0.335908,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":16565,"id":144179,"map":90,"orientation":4.72984,"phaseMask":1,"position_x":-547.903,"position_y":167.259,"position_z":-193.804,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":17633,"id":146086,"map":90,"orientation":0.767944,"phaseMask":1,"position_x":-541.607,"position_y":-105.434,"position_z":-151.829,"rotation0":0,"rotation1":0,"rotation2":0.374606,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":28327,"id":142212,"map":90,"orientation":0.916298,"phaseMask":1,"position_x":-562.961,"position_y":632.162,"position_z":-327.485,"rotation0":0,"rotation1":0,"rotation2":0.442289,"rotation3":0.896873,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":28487,"id":142475,"map":90,"orientation":-1.98968,"phaseMask":1,"position_x":-563.833,"position_y":154.52,"position_z":-202.151,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":28683,"id":142475,"map":90,"orientation":-3.12414,"phaseMask":1,"position_x":-562.086,"position_y":125.454,"position_z":-202.145,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":28934,"id":142475,"map":90,"orientation":3.14159,"phaseMask":1,"position_x":-550.357,"position_y":101.493,"position_z":-202.102,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29116,"id":142475,"map":90,"orientation":1.55334,"phaseMask":1,"position_x":-546.673,"position_y":129.436,"position_z":-202.151,"rotation0":0,"rotation1":0,"rotation2":0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29196,"id":142476,"map":90,"orientation":-1.81514,"phaseMask":1,"position_x":-555.494,"position_y":488.075,"position_z":-216.81,"rotation0":0,"rotation1":0,"rotation2":-0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29513,"id":142476,"map":90,"orientation":-1.8326,"phaseMask":1,"position_x":-554.104,"position_y":487.732,"position_z":-216.81,"rotation0":0,"rotation1":0,"rotation2":-0.793355,"rotation3":0.60876,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32379,"id":142696,"map":90,"orientation":0.645772,"phaseMask":1,"position_x":-864.416,"position_y":394.925,"position_z":-316.429,"rotation0":0,"rotation1":0,"rotation2":0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32380,"id":142696,"map":90,"orientation":2.30383,"phaseMask":1,"position_x":-842.562,"position_y":369.682,"position_z":-316.873,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32381,"id":142696,"map":90,"orientation":-2.47837,"phaseMask":1,"position_x":-857.861,"position_y":399.913,"position_z":-316.423,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32382,"id":19020,"map":90,"orientation":-0.453786,"phaseMask":1,"position_x":-472.186,"position_y":509.814,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32383,"id":19020,"map":90,"orientation":2.30383,"phaseMask":1,"position_x":-541.045,"position_y":15.7146,"position_z":-179.734,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32384,"id":142487,"map":90,"orientation":1.06465,"phaseMask":1,"position_x":-519.316,"position_y":163.12,"position_z":-193.73,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32385,"id":175084,"map":90,"orientation":-2.05949,"phaseMask":1,"position_x":-550.033,"position_y":206.148,"position_z":-193.723,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32386,"id":175085,"map":90,"orientation":0.977384,"phaseMask":1,"position_x":-496.932,"position_y":185.134,"position_z":-193.71,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32387,"id":142477,"map":90,"orientation":2.6529,"phaseMask":1,"position_x":-459.943,"position_y":634.926,"position_z":-325.315,"rotation0":0,"rotation1":0,"rotation2":0.970296,"rotation3":0.241922,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32388,"id":142344,"map":90,"orientation":1.74533,"phaseMask":1,"position_x":-821.033,"position_y":296.943,"position_z":-272.596,"rotation0":0,"rotation1":0,"rotation2":0.766045,"rotation3":0.642787,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32389,"id":142344,"map":90,"orientation":2.54818,"phaseMask":1,"position_x":-425.91,"position_y":33.8693,"position_z":-207.919,"rotation0":0,"rotation1":0,"rotation2":0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32390,"id":142344,"map":90,"orientation":1.51844,"phaseMask":1,"position_x":-613.813,"position_y":50.1167,"position_z":-199.653,"rotation0":0,"rotation1":0,"rotation2":0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32391,"id":142344,"map":90,"orientation":1.43117,"phaseMask":1,"position_x":-651.159,"position_y":404.573,"position_z":-273.063,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32392,"id":142344,"map":90,"orientation":2.68781,"phaseMask":1,"position_x":-497.876,"position_y":268.348,"position_z":-207.906,"rotation0":0,"rotation1":0,"rotation2":0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32393,"id":142344,"map":90,"orientation":1.5708,"phaseMask":1,"position_x":-495.907,"position_y":463.871,"position_z":-273.07,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32394,"id":142344,"map":90,"orientation":-1.95477,"phaseMask":1,"position_x":-484.388,"position_y":524.049,"position_z":-273.068,"rotation0":0,"rotation1":0,"rotation2":-0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32395,"id":142344,"map":90,"orientation":-1.50098,"phaseMask":1,"position_x":-623.627,"position_y":715.784,"position_z":-327.056,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32396,"id":142344,"map":90,"orientation":-1.97222,"phaseMask":1,"position_x":-857.707,"position_y":357.317,"position_z":-316.873,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32397,"id":142344,"map":90,"orientation":-2.25148,"phaseMask":1,"position_x":-577.389,"position_y":429.721,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":-0.902586,"rotation3":0.430509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32398,"id":3659,"map":90,"orientation":-2.61799,"phaseMask":1,"position_x":-571.492,"position_y":510.91,"position_z":-216.81,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32399,"id":74448,"map":90,"orientation":2.80998,"phaseMask":1,"position_x":-754.344,"position_y":364,"position_z":-272.596,"rotation0":0,"rotation1":0,"rotation2":0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32400,"id":142344,"map":90,"orientation":2.09439,"phaseMask":1,"position_x":-618.898,"position_y":546.456,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32401,"id":142344,"map":90,"orientation":0.174533,"phaseMask":1,"position_x":-650.266,"position_y":507.459,"position_z":-273.061,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32402,"id":142344,"map":90,"orientation":0.226893,"phaseMask":1,"position_x":-598.683,"position_y":441.687,"position_z":-230.601,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32403,"id":142344,"map":90,"orientation":3.14159,"phaseMask":1,"position_x":-440.51,"position_y":195.739,"position_z":-207.906,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32404,"id":142344,"map":90,"orientation":-0.575959,"phaseMask":1,"position_x":-619.782,"position_y":463.787,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":-0.284016,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32405,"id":142344,"map":90,"orientation":0.680678,"phaseMask":1,"position_x":-494.991,"position_y":445.379,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":0.333807,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32406,"id":142344,"map":90,"orientation":1.50098,"phaseMask":1,"position_x":-640.366,"position_y":115.257,"position_z":-183.875,"rotation0":0,"rotation1":0,"rotation2":0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32407,"id":142344,"map":90,"orientation":0.069813,"phaseMask":1,"position_x":-893.433,"position_y":346.016,"position_z":-272.596,"rotation0":0,"rotation1":0,"rotation2":0.0348994,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32408,"id":142344,"map":90,"orientation":2.86234,"phaseMask":1,"position_x":-737.696,"position_y":252.43,"position_z":-273.08,"rotation0":0,"rotation1":0,"rotation2":0.990268,"rotation3":0.139173,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32409,"id":142344,"map":90,"orientation":0.174533,"phaseMask":1,"position_x":-360.87,"position_y":139.481,"position_z":-154.743,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32410,"id":3695,"map":90,"orientation":-1.76278,"phaseMask":1,"position_x":-910.038,"position_y":357.305,"position_z":-272.596,"rotation0":0,"rotation1":0,"rotation2":-0.771624,"rotation3":0.636079,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32411,"id":19020,"map":90,"orientation":0.226893,"phaseMask":1,"position_x":-466.196,"position_y":104.798,"position_z":-150.114,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32412,"id":142344,"map":90,"orientation":0.069813,"phaseMask":1,"position_x":-688.657,"position_y":537.412,"position_z":-290.292,"rotation0":0,"rotation1":0,"rotation2":0.0348994,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32413,"id":142344,"map":90,"orientation":-1.18682,"phaseMask":1,"position_x":-535.189,"position_y":309.62,"position_z":-216.94,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32414,"id":142344,"map":90,"orientation":2.53073,"phaseMask":1,"position_x":-518.071,"position_y":207.96,"position_z":-155.237,"rotation0":0,"rotation1":0,"rotation2":0.953717,"rotation3":0.300705,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32415,"id":142344,"map":90,"orientation":1.58825,"phaseMask":1,"position_x":-688.036,"position_y":441.761,"position_z":-273.062,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32416,"id":142344,"map":90,"orientation":0.10472,"phaseMask":1,"position_x":-626.23,"position_y":534.406,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":0.0523361,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32417,"id":142344,"map":90,"orientation":-0.244346,"phaseMask":1,"position_x":-449.446,"position_y":470.808,"position_z":-230.601,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32418,"id":142344,"map":90,"orientation":-1.65806,"phaseMask":1,"position_x":-503.163,"position_y":288.431,"position_z":-211.552,"rotation0":0,"rotation1":0,"rotation2":-0.737276,"rotation3":0.675591,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32419,"id":142344,"map":90,"orientation":2.49582,"phaseMask":1,"position_x":-639.499,"position_y":98.2576,"position_z":-183.267,"rotation0":0,"rotation1":0,"rotation2":0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32420,"id":142344,"map":90,"orientation":3.01942,"phaseMask":1,"position_x":-614.765,"position_y":446.326,"position_z":-273.06,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610484,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32421,"id":142344,"map":90,"orientation":-1.13446,"phaseMask":1,"position_x":-554.923,"position_y":524.83,"position_z":-273.063,"rotation0":0,"rotation1":0,"rotation2":-0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32422,"id":74448,"map":90,"orientation":1.25664,"phaseMask":1,"position_x":-440.175,"position_y":81.8185,"position_z":-151.476,"rotation0":0,"rotation1":0,"rotation2":0.587786,"rotation3":0.809016,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32423,"id":142344,"map":90,"orientation":0.680678,"phaseMask":1,"position_x":-500.244,"position_y":550.958,"position_z":-273.07,"rotation0":0,"rotation1":0,"rotation2":0.333807,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32424,"id":142344,"map":90,"orientation":1.58825,"phaseMask":1,"position_x":-549.984,"position_y":572.745,"position_z":-273.072,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32425,"id":142344,"map":90,"orientation":-0.244346,"phaseMask":1,"position_x":-780.991,"position_y":192.097,"position_z":-273.082,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32426,"id":142344,"map":90,"orientation":1.309,"phaseMask":1,"position_x":-573.166,"position_y":358.569,"position_z":-231.679,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32427,"id":142344,"map":90,"orientation":2.98451,"phaseMask":1,"position_x":-560.135,"position_y":587.789,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32428,"id":142344,"map":90,"orientation":-0.715585,"phaseMask":1,"position_x":-771.775,"position_y":368.892,"position_z":-272.59,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32429,"id":142344,"map":90,"orientation":0.890118,"phaseMask":1,"position_x":-441.089,"position_y":235.067,"position_z":-207.907,"rotation0":0,"rotation1":0,"rotation2":0.430511,"rotation3":0.902585,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32430,"id":142344,"map":90,"orientation":-1.15192,"phaseMask":1,"position_x":-737.905,"position_y":683.435,"position_z":-330.783,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32431,"id":142344,"map":90,"orientation":-1.6057,"phaseMask":1,"position_x":-835.579,"position_y":507.531,"position_z":-303.937,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32432,"id":142344,"map":90,"orientation":-1.81514,"phaseMask":1,"position_x":-824.705,"position_y":434.837,"position_z":-272.596,"rotation0":0,"rotation1":0,"rotation2":-0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32433,"id":142344,"map":90,"orientation":-0.698132,"phaseMask":1,"position_x":-474.898,"position_y":39.9007,"position_z":-207.411,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32434,"id":142344,"map":90,"orientation":2.70526,"phaseMask":1,"position_x":-798.868,"position_y":397.023,"position_z":-316.433,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32435,"id":142344,"map":90,"orientation":3.05433,"phaseMask":1,"position_x":-508.935,"position_y":436.862,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32436,"id":142344,"map":90,"orientation":1.62316,"phaseMask":1,"position_x":-565.759,"position_y":306.406,"position_z":-213.012,"rotation0":0,"rotation1":0,"rotation2":0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32437,"id":142344,"map":90,"orientation":-1.0821,"phaseMask":1,"position_x":-676.904,"position_y":694.759,"position_z":-331.384,"rotation0":0,"rotation1":0,"rotation2":-0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32438,"id":142344,"map":90,"orientation":-2.25148,"phaseMask":1,"position_x":-750.604,"position_y":633.824,"position_z":-314.793,"rotation0":0,"rotation1":0,"rotation2":-0.902586,"rotation3":0.430509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32439,"id":142344,"map":90,"orientation":1.97222,"phaseMask":1,"position_x":-585.429,"position_y":401.097,"position_z":-230.601,"rotation0":0,"rotation1":0,"rotation2":0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32440,"id":74448,"map":90,"orientation":2.75762,"phaseMask":1,"position_x":-630.556,"position_y":66.5022,"position_z":-183.275,"rotation0":0,"rotation1":0,"rotation2":0.981627,"rotation3":0.190809,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32441,"id":19020,"map":90,"orientation":0.174533,"phaseMask":1,"position_x":-527.599,"position_y":-134.657,"position_z":-152.499,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/GnomeragonInstance":"37e3466c4bcc5537abc68c4664667994b0f94e765cc8c82c9b4208905edc41ca","patch/World/maps/GnomeragonInstance":"5dbdf0c9c04353a366ca9809b00eef7bc2ab85b5322fff1c28bc9077d872b90a"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/gnomeregan/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["31/31 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"sunken-temple","title":"Sunken Temple","mapId":109,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[45,55]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Sunken Temple","theme":"Instanced dungeon","summary":"Fight through Sunken Temple, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Sunken Temple...","unchartedAreaName":"Uncharted Sunken Temple","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":396.0821},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/109-sunkentemple/visual.glb","checksum":"0a6c95ae831ab75ecc90d94f9deb518b31977aed806e994c19febfdbeca28d10","size":6571032,"triangleCount":265928}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/109-sunkentemple/collision.glb","checksum":"05969af5c5483a4fa92f0ffcd613f6db2d14e7ac46039343a6a1848b08fe0614","size":1357500,"triangleCount":99999}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/109-sunkentemple/navigation.glb","checksum":"171ffab86deb411c74f282d6e0821c880dc0ac03833f33802b8d2637fd06509f","size":149416,"triangleCount":11583}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[184.6799,-195.5097,-168.0819],"max":[734.7939,-19.725,339.2511]},"entrance":{"name":"Sunken Temple Entrance","footPosition":[262.1939,-117.6297,97.0181],"forward":[0.9941070026027956,0,-0.10840326275571827],"yaw":1.679413032812117},"areas":[{"id":"entrance","name":"Sunken Temple Entrance","center":[262.1939,-117.6297,97.0181],"radius":35},{"id":"area-atal-alarion","name":"Atal'alarion's Encounter","center":[423.3539,-175.5097,93.6844],"radius":42},{"id":"area-jammal-an-and-ogom","name":"Jammal'an and Ogom's Encounter","center":[368.8479,-74.0037,-88.9566],"radius":42},{"id":"area-avatar-of-hakkar","name":"Avatar of Hakkar's Encounter","center":[617.2319,-90.9937,23.5188],"radius":42},{"id":"area-shade-of-eranikus","name":"Shade of Eranikus's Encounter","center":[601.3329,-76.6149,-38.6442],"radius":42}],"entities":{"entry-5226":{"id":"entry-5226","kind":"mob","name":"Murk Worm","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7992","name":"Slowing Poison","spellId":7992,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5547,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7549-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.377,"labelHeight":1.207,"markerRadius":3.0783}}},"entry-8384":{"id":"entry-8384","kind":"mob","name":"Deep Lurker","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5568","name":"Trample","spellId":5568,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6188,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-631-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1511,"labelHeight":4.9521,"markerRadius":1.4299}}},"entry-5708":{"id":"entry-5708","kind":"mob","name":"Spawn of Hakkar","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12280","name":"Acid of Hakkar","spellId":12280,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6062,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4065-animated.glb","rotationY":-1.5707963267948966,"groundOffset":8.4338,"labelHeight":14.1434,"markerRadius":3.4485}}},"entry-5228":{"id":"entry-5228","kind":"mob","name":"Saturated Ooze","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7992","name":"Slowing Poison","spellId":7992,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6689,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"ooze","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-682-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.0705,"labelHeight":4.0944,"markerRadius":2.0195}}},"entry-8318":{"id":"entry-8318","kind":"mob","name":"Atal'ai Slave","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7554-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.2692,"markerRadius":0.65}}},"entry-5267":{"id":"entry-5267","kind":"mob","name":"Unliving Atal'ai","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8247","name":"Wandering Plague","spellId":8247,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5825,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4771-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5259":{"id":"entry-5259","kind":"mob","name":"Atal'ai Witch Doctor","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15208","name":"Lightning Bolt","spellId":15208,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6404,"damageMultiplier":1.12},{"id":"spell-10605","name":"Chain Lightning","spellId":10605,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6670-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5291":{"id":"entry-5291","kind":"mob","name":"Hakkari Frostwing","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9915","name":"Frost Nova","spellId":9915,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4541,"damageMultiplier":0.62,"radius":8},{"id":"spell-8398","name":"Frostbolt Volley","spellId":8398,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4541,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7569-animated.glb","rotationY":-1.5707963267948966,"groundOffset":8.4338,"labelHeight":14.1434,"markerRadius":3.4485}}},"entry-5277":{"id":"entry-5277","kind":"mob","name":"Nightmare Scalebane","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12782","name":"Shield Spike","spellId":12782,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5410,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-12782","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7903-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":5.6557,"markerRadius":3.1644}}},"entry-5280":{"id":"entry-5280","kind":"mob","name":"Nightmare Wyrmkin","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15653","name":"Acid Spit","spellId":15653,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5611,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"serpent","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7863-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0057,"labelHeight":2.8487,"markerRadius":1.9451}}},"entry-5283":{"id":"entry-5283","kind":"mob","name":"Nightmare Wanderer","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5275,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-181-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0057,"labelHeight":3.018,"markerRadius":2.1096}}},"entry-5719":{"id":"entry-5719","kind":"mob","name":"Morphaz","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12882","name":"Wing Flap","spellId":12882,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7199,"damageMultiplier":1.12},{"id":"spell-12884","name":"Acid Breath","spellId":12884,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7199,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7975-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.0628,"labelHeight":9.2006,"markerRadius":4.4747}}},"entry-5722":{"id":"entry-5722","kind":"mob","name":"Hazzas","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12884","name":"Acid Breath","spellId":12884,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":5323,"damageMultiplier":0.62,"radius":8},{"id":"spell-12882","name":"Wing Flap","spellId":12882,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5323,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-9584-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.3816,"labelHeight":11.9608,"markerRadius":4.5}}},"entry-8319":{"id":"entry-8319","kind":"mob","name":"Nightmare Whelp","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15653","name":"Acid Spit","spellId":15653,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7496,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-621-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7649,"markerRadius":1.5914}}},"entry-8580":{"id":"entry-8580","kind":"boss","name":"Atal'alarion","title":"Dungeon Boss","hasLoot":true,"combat":{"level":49,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3000,"damageMultiplier":1},{"id":"spell-12887","name":"Sweeping Slam","spellId":12887,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4086,"damageMultiplier":1.35},{"id":"spell-6524","name":"Ground Tremor","spellId":6524,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7873-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.017,"labelHeight":6.9778,"markerRadius":2.2481}}},"entry-5716":{"id":"entry-5716","kind":"mob","name":"Zul'Lor","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12530","name":"Frailty","spellId":12530,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5510,"damageMultiplier":1.12},{"id":"spell-40505","name":"Cleave","spellId":40505,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5510,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6701-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5270":{"id":"entry-5270","kind":"mob","name":"Atal'ai Corpse Eater","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10893","name":"Shadow Word: Pain","spellId":10893,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4116,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4778-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5256":{"id":"entry-5256","kind":"mob","name":"Atal'ai Warrior","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":3.4889,"markerRadius":1.124}}},"entry-5710":{"id":"entry-5710","kind":"boss","name":"Jammal'an the Prophet","title":"Dungeon Boss","hasLoot":true,"combat":{"level":50,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12468","name":"Flamestrike","spellId":12468,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6996,"damageMultiplier":1.35},{"id":"spell-10893","name":"Shadow Word: Pain","spellId":10893,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6996,"damageMultiplier":1.35},{"id":"spell-12480","name":"Hex of Jammal'an","spellId":12480,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6996,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6708-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5271":{"id":"entry-5271","kind":"mob","name":"Atal'ai Deathwalker","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10893","name":"Shadow Word: Pain","spellId":10893,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4728,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4773-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5273":{"id":"entry-5273","kind":"mob","name":"Atal'ai High Priest","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15654","name":"Shadow Word: Pain","spellId":15654,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4781,"damageMultiplier":1.12},{"id":"spell-11660","name":"Shadow Bolt","spellId":11660,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4781,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6675-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5269":{"id":"entry-5269","kind":"mob","name":"Atal'ai Priest","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11660","name":"Shadow Bolt","spellId":11660,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7264,"damageMultiplier":1.12},{"id":"spell-8600","name":"Fevered Plague","spellId":8600,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7264,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4776-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5711":{"id":"entry-5711","kind":"mob","name":"Ogom the Wretched","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15654","name":"Shadow Word: Pain","spellId":15654,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5015,"damageMultiplier":1.12},{"id":"spell-11660","name":"Shadow Bolt","spellId":11660,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5015,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5263":{"id":"entry-5263","kind":"mob","name":"Mummified Atal'ai","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8600","name":"Fevered Plague","spellId":8600,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5660,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4769-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5709":{"id":"entry-5709","kind":"boss","name":"Shade of Eranikus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":50,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4601,"damageMultiplier":1.35},{"id":"spell-12890","name":"Deep Slumber","spellId":12890,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":4601,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":4500}},{"id":"spell-11876","name":"War Stomp","spellId":11876,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4601,"damageMultiplier":0.82,"radius":11},{"id":"spell-12891","name":"Acid Breath","spellId":12891,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":4601,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7806-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.2274,"labelHeight":19.4124,"markerRadius":4.5}}},"entry-5712":{"id":"entry-5712","kind":"mob","name":"Zolo","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12058","name":"Chain Lightning","spellId":12058,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5139,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6699-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5713":{"id":"entry-5713","kind":"mob","name":"Gasher","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5400,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6698-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5714":{"id":"entry-5714","kind":"mob","name":"Loro","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12782","name":"Shield Spike","spellId":12782,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4449,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-12782","durationMs":8000,"magnitude":0.15}},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4449,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6700-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5715":{"id":"entry-5715","kind":"mob","name":"Hukku","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5602,"damageMultiplier":1.12},{"id":"spell-12279","name":"Curse of Blood","spellId":12279,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5602,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6702-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5717":{"id":"entry-5717","kind":"mob","name":"Mijan","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4859,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-12492","name":"Healing Wave","spellId":12492,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":4859,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6707-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5721":{"id":"entry-5721","kind":"mob","name":"Dreamscythe","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12882","name":"Wing Flap","spellId":12882,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5838,"damageMultiplier":1.12},{"id":"spell-12884","name":"Acid Breath","spellId":12884,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":5838,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7553-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.5942,"labelHeight":13.8009,"markerRadius":4.5}}},"entry-5720":{"id":"entry-5720","kind":"mob","name":"Weaver","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12882","name":"Wing Flap","spellId":12882,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6526,"damageMultiplier":1.12},{"id":"spell-12884","name":"Acid Breath","spellId":12884,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6526,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6375-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.2222,"labelHeight":10.5807,"markerRadius":4.5}}},"entry-8443":{"id":"entry-8443","kind":"boss","name":"Avatar of Hakkar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":50,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6607","name":"Lash","spellId":6607,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4851,"damageMultiplier":1.35},{"id":"spell-12888","name":"Cause Insanity","spellId":12888,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4851,"damageMultiplier":1.35},{"id":"spell-12889","name":"Curse of Tongues","spellId":12889,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4851,"damageMultiplier":1.35},{"id":"spell-10893","name":"Shadow Word: Pain","spellId":10893,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4851,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-8053-animated.glb","rotationY":-1.5707963267948966,"groundOffset":13.929,"labelHeight":23.1673,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-33598","entityId":"entry-5226","position":[434.0879,-134.5217,138.1631],"yaw":-2.54743,"spawnMask":1},{"id":"creature-33601","entityId":"entry-8384","position":[453.9109,-134.5817,183.9961],"yaw":-5.14474,"spawnMask":1},{"id":"creature-33609","entityId":"entry-8384","position":[464.1049,-134.5207,87.5909],"yaw":-2.20734,"spawnMask":1},{"id":"creature-33610","entityId":"entry-8384","position":[463.9979,-134.5227,99.4031],"yaw":-3.88653,"spawnMask":1},{"id":"creature-33611","entityId":"entry-8384","position":[512.6409,-134.5817,98.9891],"yaw":-6.16495,"spawnMask":1},{"id":"creature-33612","entityId":"entry-8384","position":[506.2129,-134.5817,106.3251],"yaw":-4.29571,"spawnMask":1},{"id":"creature-33619","entityId":"entry-5226","position":[444.8489,-134.5237,49.362],"yaw":-4.71197,"spawnMask":1},{"id":"creature-33620","entityId":"entry-5226","position":[434.8489,-134.5227,43.4726],"yaw":-3.41607,"spawnMask":1},{"id":"creature-33622","entityId":"entry-8384","position":[470.5219,-134.5817,15.3943],"yaw":-0.469254,"spawnMask":1},{"id":"creature-33628","entityId":"entry-5228","position":[377.0609,-134.5217,50.929],"yaw":-4.15671,"spawnMask":1},{"id":"creature-33629","entityId":"entry-5228","position":[389.2099,-134.5237,40.7273],"yaw":-5.58535,"spawnMask":1},{"id":"creature-33630","entityId":"entry-5226","position":[341.6909,-134.5817,30.3533],"yaw":-4.22267,"spawnMask":1},{"id":"creature-33631","entityId":"entry-8384","position":[373.2929,-134.5817,1.4807],"yaw":-0.998612,"spawnMask":1},{"id":"creature-33639","entityId":"entry-8318","position":[310.5929,-134.4927,9.4705],"yaw":-1.81071,"spawnMask":1},{"id":"creature-33640","entityId":"entry-8318","position":[318.7449,-134.5727,10.0031],"yaw":-1.31984,"spawnMask":1},{"id":"creature-33641","entityId":"entry-5267","position":[316.9409,-134.4987,5.5679],"yaw":-1.63792,"spawnMask":1},{"id":"creature-33642","entityId":"entry-5259","position":[319.5089,-134.4567,2.59],"yaw":-1.41801,"spawnMask":1},{"id":"creature-33643","entityId":"entry-5259","position":[309.2569,-134.4367,17.8231],"yaw":-4.0923,"spawnMask":1},{"id":"creature-33644","entityId":"entry-5259","position":[313.5929,-117.6287,87.7749],"yaw":-2.3945,"spawnMask":1},{"id":"creature-33645","entityId":"entry-5267","position":[310.4209,-117.6287,80.6676],"yaw":-0.520293,"spawnMask":1},{"id":"creature-33646","entityId":"entry-5291","position":[341.9999,-76.6593,206.5211],"yaw":-3.34538,"spawnMask":1},{"id":"creature-33647","entityId":"entry-5291","position":[321.6709,-76.6236,248.3201],"yaw":-2.56862,"spawnMask":1},{"id":"creature-33648","entityId":"entry-5291","position":[323.5469,-76.6097,267.6351],"yaw":-3.83625,"spawnMask":1},{"id":"creature-33649","entityId":"entry-5291","position":[431.4529,-76.5068,270.2311],"yaw":-5.83116,"spawnMask":1},{"id":"creature-33650","entityId":"entry-5291","position":[414.2629,-76.4792,294.2511],"yaw":-5.01434,"spawnMask":1},{"id":"creature-33651","entityId":"entry-5291","position":[498.4979,-76.6143,267.7611],"yaw":-5.27195,"spawnMask":1},{"id":"creature-33652","entityId":"entry-5291","position":[478.5819,-76.6855,200.2301],"yaw":-1.4667,"spawnMask":1},{"id":"creature-33653","entityId":"entry-5277","position":[445.1799,-76.6673,159.1151],"yaw":-5.24682,"spawnMask":1},{"id":"creature-33654","entityId":"entry-5280","position":[454.7899,-76.6659,153.4401],"yaw":-5.19577,"spawnMask":1},{"id":"creature-33655","entityId":"entry-5283","position":[450.2349,-76.6671,156.1801],"yaw":-5.26646,"spawnMask":1},{"id":"creature-33656","entityId":"entry-5283","position":[440.5679,-76.6699,161.9831],"yaw":-5.23897,"spawnMask":1},{"id":"creature-33657","entityId":"entry-5719","position":[610.5439,-76.611,100.2291],"yaw":-6.18358,"spawnMask":1},{"id":"creature-33659","entityId":"entry-5277","position":[541.8979,-76.6646,96.3488],"yaw":-1.0031,"spawnMask":1},{"id":"creature-33660","entityId":"entry-8319","position":[542.2989,-76.6668,84.1638],"yaw":-0.311951,"spawnMask":1},{"id":"creature-33661","entityId":"entry-8319","position":[548.7449,-76.6645,94.7324],"yaw":-5.9676,"spawnMask":1},{"id":"creature-33662","entityId":"entry-8319","position":[540.4649,-76.6696,81.4955],"yaw":-2.34299,"spawnMask":1},{"id":"creature-33663","entityId":"entry-8319","position":[531.7239,-76.6668,94.2529],"yaw":-3.40642,"spawnMask":1},{"id":"creature-33664","entityId":"entry-5283","position":[530.4989,-76.6691,89.856],"yaw":-3.17708,"spawnMask":1},{"id":"creature-33665","entityId":"entry-5283","position":[485.8059,-76.6464,84.025],"yaw":-0.0111437,"spawnMask":1},{"id":"creature-33666","entityId":"entry-5277","position":[485.6059,-76.6486,91.4083],"yaw":-0.0582671,"spawnMask":1},{"id":"creature-33667","entityId":"entry-5277","position":[486.2519,-76.6494,98.8401],"yaw":-0.0504134,"spawnMask":1},{"id":"creature-33668","entityId":"entry-5280","position":[504.2859,-76.6216,-69.4649],"yaw":-5.882,"spawnMask":1},{"id":"creature-33669","entityId":"entry-5277","position":[486.8879,-76.6123,-75.8662],"yaw":-3.44334,"spawnMask":1},{"id":"creature-33670","entityId":"entry-8319","position":[484.3039,-76.6164,-70.4313],"yaw":-2.08617,"spawnMask":1},{"id":"creature-33671","entityId":"entry-8319","position":[499.1429,-76.6168,-77.9293],"yaw":-1.78458,"spawnMask":1},{"id":"creature-33672","entityId":"entry-8319","position":[504.7969,-76.6181,-77.9532],"yaw":-0.712507,"spawnMask":1},{"id":"creature-33673","entityId":"entry-8319","position":[499.6709,-76.6237,-60.9113],"yaw":-5.50344,"spawnMask":1},{"id":"creature-33675","entityId":"entry-5226","position":[229.6799,-158.7827,114.4371],"yaw":-5.52842,"spawnMask":1},{"id":"creature-33676","entityId":"entry-5226","position":[271.6309,-142.5107,130.3361],"yaw":-2.07267,"spawnMask":1},{"id":"creature-33678","entityId":"entry-8319","position":[459.2159,-76.6626,-8.0965],"yaw":-2.1197,"spawnMask":1},{"id":"creature-33679","entityId":"entry-8319","position":[455.3719,-76.6626,1.8094],"yaw":-4.82933,"spawnMask":1},{"id":"creature-33680","entityId":"entry-8319","position":[460.0339,-76.6626,6.0966],"yaw":-0.603882,"spawnMask":1},{"id":"creature-33712","entityId":"entry-5277","position":[472.7159,-76.6579,7.2894],"yaw":-6.17628,"spawnMask":1},{"id":"creature-33713","entityId":"entry-5280","position":[467.6799,-76.6602,13.5887],"yaw":-4.6212,"spawnMask":1},{"id":"creature-33714","entityId":"entry-8319","position":[351.9959,-76.9761,85.0613],"yaw":-0.466443,"spawnMask":1},{"id":"creature-33715","entityId":"entry-8319","position":[347.7769,-76.875,95.8745],"yaw":-2.43858,"spawnMask":1},{"id":"creature-33716","entityId":"entry-8319","position":[341.1659,-76.6986,88.1184],"yaw":-2.43072,"spawnMask":1},{"id":"creature-33717","entityId":"entry-8319","position":[334.5779,-76.6573,95.685],"yaw":-0.33371,"spawnMask":1},{"id":"creature-33718","entityId":"entry-8319","position":[328.7889,-76.6544,88.2242],"yaw":-3.69522,"spawnMask":1},{"id":"creature-33719","entityId":"entry-5277","position":[236.6089,-77.2468,77.5319],"yaw":-2.16369,"spawnMask":1},{"id":"creature-33721","entityId":"entry-8319","position":[230.9619,-77.2468,73.6105],"yaw":-2.98836,"spawnMask":1},{"id":"creature-33722","entityId":"entry-5283","position":[236.4979,-77.2468,71.239],"yaw":-1.51573,"spawnMask":1},{"id":"creature-33723","entityId":"entry-5280","position":[243.9989,-77.2468,74.4333],"yaw":-0.365127,"spawnMask":1},{"id":"creature-33727","entityId":"entry-8384","position":[458.7119,-158.7187,120.8401],"yaw":-5.88575,"spawnMask":1},{"id":"creature-33728","entityId":"entry-5228","position":[437.1969,-158.7187,138.4721],"yaw":-5.34383,"spawnMask":1},{"id":"creature-33733","entityId":"entry-8384","position":[411.3849,-158.7187,148.7891],"yaw":-5.08858,"spawnMask":1},{"id":"creature-33737","entityId":"entry-8384","position":[358.3409,-158.7187,114.2071],"yaw":-2.93816,"spawnMask":1},{"id":"creature-33738","entityId":"entry-8384","position":[364.1729,-158.7187,123.0611],"yaw":-4.51681,"spawnMask":1},{"id":"creature-33744","entityId":"entry-8384","position":[458.9799,-158.7187,63.3839],"yaw":-0.0455403,"spawnMask":1},{"id":"creature-33745","entityId":"entry-5228","position":[438.6619,-159.0927,49.0108],"yaw":-0.8922,"spawnMask":1},{"id":"creature-33750","entityId":"entry-8384","position":[409.4489,-158.7187,36.7896],"yaw":-4.24194,"spawnMask":1},{"id":"creature-33751","entityId":"entry-5228","position":[383.6729,-159.4347,50.8559],"yaw":-4.04951,"spawnMask":1},{"id":"creature-33763","entityId":"entry-5226","position":[406.1019,-175.5097,90.022],"yaw":-0.109954,"spawnMask":1},{"id":"creature-33835","entityId":"entry-5226","position":[410.3819,-175.5097,93.8738],"yaw":-3.79191,"spawnMask":1},{"id":"creature-33836","entityId":"entry-5228","position":[412.2199,-175.5097,101.4901],"yaw":-2.66565,"spawnMask":1},{"id":"creature-34165","entityId":"entry-8384","position":[368.6399,-161.8547,85.6835],"yaw":-0.649529,"spawnMask":1},{"id":"creature-34166","entityId":"entry-8384","position":[348.8929,-158.7137,96.2612],"yaw":-5.87635,"spawnMask":1},{"id":"creature-34167","entityId":"entry-8384","position":[315.9119,-158.7167,87.4999],"yaw":-0.592196,"spawnMask":1},{"id":"creature-34168","entityId":"entry-5226","position":[249.2549,-158.7597,92.9527],"yaw":-3.15259,"spawnMask":1},{"id":"creature-34171","entityId":"entry-5226","position":[231.8489,-158.7827,105.5841],"yaw":-2.81487,"spawnMask":1},{"id":"creature-34173","entityId":"entry-5226","position":[445.8439,-134.5217,131.5531],"yaw":-0.854892,"spawnMask":1},{"id":"creature-34452","entityId":"entry-8384","position":[354.9709,-134.5817,165.5461],"yaw":-1.38111,"spawnMask":1},{"id":"creature-34453","entityId":"entry-8384","position":[361.7379,-134.5817,168.8421],"yaw":-6.15084,"spawnMask":1},{"id":"creature-34469","entityId":"entry-8384","position":[377.4919,-134.5217,134.8231],"yaw":-2.60241,"spawnMask":1},{"id":"creature-34472","entityId":"entry-5228","position":[385.5029,-134.5227,141.5631],"yaw":-5.47225,"spawnMask":1},{"id":"creature-34475","entityId":"entry-8384","position":[354.0059,-134.5227,97.2221],"yaw":-5.08113,"spawnMask":1},{"id":"creature-34476","entityId":"entry-5226","position":[360.3979,-134.5227,85.6419],"yaw":-0.361671,"spawnMask":1},{"id":"creature-34519","entityId":"entry-8384","position":[316.0259,-134.5817,74.442],"yaw":-1.41254,"spawnMask":1},{"id":"creature-34521","entityId":"entry-8580","position":[423.3539,-175.5097,93.6844],"yaw":-6.19797,"spawnMask":1},{"id":"creature-34522","entityId":"entry-5716","position":[410.3499,-52.4824,163.1151],"yaw":-4.7096,"spawnMask":1},{"id":"creature-34523","entityId":"entry-5267","position":[340.0359,-117.6367,141.3911],"yaw":-5.92995,"spawnMask":1},{"id":"creature-34524","entityId":"entry-5259","position":[345.2839,-117.6297,142.1481],"yaw":-3.08,"spawnMask":1},{"id":"creature-34584","entityId":"entry-8318","position":[272.8619,-55.2675,146.2071],"yaw":-2.67134,"spawnMask":1},{"id":"creature-34585","entityId":"entry-8318","position":[321.0289,-39.726,138.6421],"yaw":-4.75178,"spawnMask":1},{"id":"creature-34586","entityId":"entry-8318","position":[325.4889,-39.726,139.0261],"yaw":-4.7832,"spawnMask":1},{"id":"creature-34587","entityId":"entry-5267","position":[323.7909,-39.726,140.7991],"yaw":-4.85938,"spawnMask":1},{"id":"creature-34588","entityId":"entry-8318","position":[324.6279,-39.726,52.4942],"yaw":-0.998201,"spawnMask":1},{"id":"creature-34589","entityId":"entry-5270","position":[343.0379,-39.726,27.9616],"yaw":-4.07932,"spawnMask":1},{"id":"creature-34590","entityId":"entry-5270","position":[339.2949,-39.726,33.0626],"yaw":-4.07932,"spawnMask":1},{"id":"creature-34591","entityId":"entry-5259","position":[337.6119,-39.726,26.8804],"yaw":-2.3483,"spawnMask":1},{"id":"creature-34592","entityId":"entry-5256","position":[379.7509,-39.726,-0.6208],"yaw":-0.797142,"spawnMask":1},{"id":"creature-34593","entityId":"entry-5256","position":[385.2809,-39.726,2.738],"yaw":-0.0376612,"spawnMask":1},{"id":"creature-34602","entityId":"entry-5259","position":[375.7999,-39.726,6.8831],"yaw":-4.27489,"spawnMask":1},{"id":"creature-34642","entityId":"entry-8318","position":[381.7509,-39.726,5.9572],"yaw":-5.81977,"spawnMask":1},{"id":"creature-34643","entityId":"entry-8318","position":[373.6789,-39.726,0.6443],"yaw":-1.63673,"spawnMask":1},{"id":"creature-34644","entityId":"entry-8318","position":[424.2869,-39.726,-2.9191],"yaw":-0.266214,"spawnMask":1},{"id":"creature-34645","entityId":"entry-8318","position":[429.2939,-39.726,3.5075],"yaw":-3.60416,"spawnMask":1},{"id":"creature-34652","entityId":"entry-5270","position":[473.8559,-39.726,18.6459],"yaw":-5.97527,"spawnMask":1},{"id":"creature-34653","entityId":"entry-8318","position":[472.9339,-39.726,22.0329],"yaw":-5.97527,"spawnMask":1},{"id":"creature-34654","entityId":"entry-8318","position":[472.7699,-39.726,15.3788],"yaw":-2.16687,"spawnMask":1},{"id":"creature-34655","entityId":"entry-5259","position":[494.6719,-39.726,55.3325],"yaw":-0.246433,"spawnMask":1},{"id":"creature-34656","entityId":"entry-5259","position":[503.5179,-39.726,58.6656],"yaw":-3.36054,"spawnMask":1},{"id":"creature-34657","entityId":"entry-5256","position":[496.5929,-39.726,59.6821],"yaw":-4.97037,"spawnMask":1},{"id":"creature-34658","entityId":"entry-8318","position":[500.7289,-39.726,58.8811],"yaw":-4.79208,"spawnMask":1},{"id":"creature-34659","entityId":"entry-8318","position":[500.1439,-39.726,51.5544],"yaw":-4.79208,"spawnMask":1},{"id":"creature-34660","entityId":"entry-5256","position":[503.6489,-39.726,106.3751],"yaw":-5.22798,"spawnMask":1},{"id":"creature-34757","entityId":"entry-5259","position":[389.6029,-39.726,188.2011],"yaw":-5.62382,"spawnMask":1},{"id":"creature-35236","entityId":"entry-5259","position":[381.7449,-39.726,182.1921],"yaw":-2.89071,"spawnMask":1},{"id":"creature-38074","entityId":"entry-8318","position":[381.1339,-39.726,186.9141],"yaw":-3.10119,"spawnMask":1},{"id":"creature-38075","entityId":"entry-5267","position":[385.3569,-39.726,184.6001],"yaw":-3.01794,"spawnMask":1},{"id":"creature-38076","entityId":"entry-8318","position":[387.4539,-39.726,182.8921],"yaw":-2.84594,"spawnMask":1},{"id":"creature-38077","entityId":"entry-5256","position":[354.9869,-39.726,173.2971],"yaw":-5.23434,"spawnMask":1},{"id":"creature-38078","entityId":"entry-8318","position":[521.4119,-55.181,177.0231],"yaw":-3.89918,"spawnMask":1},{"id":"creature-38079","entityId":"entry-8318","position":[515.5039,-55.181,184.2501],"yaw":-4.07982,"spawnMask":1},{"id":"creature-38080","entityId":"entry-5259","position":[293.1929,-55.172,1.945],"yaw":-2.37323,"spawnMask":1},{"id":"creature-38081","entityId":"entry-5267","position":[305.4679,-55.172,0.5624],"yaw":-0.64142,"spawnMask":1},{"id":"creature-38082","entityId":"entry-8318","position":[299.7979,-55.172,10.2929],"yaw":-4.61004,"spawnMask":1},{"id":"creature-38084","entityId":"entry-5259","position":[549.1749,-55.1325,43.244],"yaw":-5.56428,"spawnMask":1},{"id":"creature-38085","entityId":"entry-8318","position":[544.9479,-55.1325,50.0961],"yaw":-5.3216,"spawnMask":1},{"id":"creature-38086","entityId":"entry-8318","position":[539.5279,-55.1325,41.3849],"yaw":-2.95519,"spawnMask":1},{"id":"creature-39040","entityId":"entry-8319","position":[443.8649,-77.1967,54.539],"yaw":-1.4378,"spawnMask":1},{"id":"creature-39041","entityId":"entry-8319","position":[447.4769,-77.2195,59.7127],"yaw":-0.431703,"spawnMask":1},{"id":"creature-39042","entityId":"entry-8319","position":[368.6199,-76.6475,22.7809],"yaw":-2.11245,"spawnMask":1},{"id":"creature-39043","entityId":"entry-8319","position":[357.7329,-76.6385,19.3901],"yaw":-2.42583,"spawnMask":1},{"id":"creature-39044","entityId":"entry-8319","position":[401.5079,-79.4359,74.5411],"yaw":-4.09951,"spawnMask":1},{"id":"creature-39448","entityId":"entry-8319","position":[395.0629,-78.328,67.1578],"yaw":-3.32589,"spawnMask":1},{"id":"creature-39449","entityId":"entry-5283","position":[402.4189,-78.7696,67.3374],"yaw":-0.92493,"spawnMask":1},{"id":"creature-39450","entityId":"entry-8319","position":[400.0799,-77.7194,61.5592],"yaw":-1.41031,"spawnMask":1},{"id":"creature-39451","entityId":"entry-8319","position":[407.2919,-79.3238,71.7162],"yaw":-5.78026,"spawnMask":1},{"id":"creature-39734","entityId":"entry-5277","position":[365.1959,-76.6505,153.2941],"yaw":-4.17668,"spawnMask":1},{"id":"creature-39735","entityId":"entry-5277","position":[379.8129,-76.6457,161.9931],"yaw":-4.16098,"spawnMask":1},{"id":"creature-39736","entityId":"entry-5283","position":[445.8419,-76.3993,119.8751],"yaw":-5.14026,"spawnMask":1},{"id":"creature-39737","entityId":"entry-5710","position":[368.8479,-74.0037,-88.9566],"yaw":-3.11157,"spawnMask":1},{"id":"creature-39738","entityId":"entry-5271","position":[419.2049,-76.6072,-83.7547],"yaw":-0.275089,"spawnMask":1},{"id":"creature-39739","entityId":"entry-5273","position":[402.8519,-76.6072,-80.6656],"yaw":-6.26499,"spawnMask":1},{"id":"creature-39740","entityId":"entry-5271","position":[419.6229,-76.6072,-77.0897],"yaw":-0.0630307,"spawnMask":1},{"id":"creature-39741","entityId":"entry-5271","position":[402.7109,-76.6072,-77.5595],"yaw":-5.61186,"spawnMask":1},{"id":"creature-39742","entityId":"entry-5271","position":[385.9389,-76.6072,-56.5928],"yaw":-3.67469,"spawnMask":1},{"id":"creature-39743","entityId":"entry-5271","position":[392.6449,-76.6072,-57.9378],"yaw":-5.98769,"spawnMask":1},{"id":"creature-39744","entityId":"entry-5273","position":[409.4539,-76.6072,-97.6552],"yaw":-6.212,"spawnMask":1},{"id":"creature-39745","entityId":"entry-5269","position":[391.3769,-76.6072,-94.4145],"yaw":-5.98973,"spawnMask":1},{"id":"creature-39746","entityId":"entry-5271","position":[391.8979,-76.6072,-96.7931],"yaw":-6.11177,"spawnMask":1},{"id":"creature-39747","entityId":"entry-5271","position":[431.2999,-76.6072,-119.8529],"yaw":-0.749854,"spawnMask":1},{"id":"creature-39748","entityId":"entry-5271","position":[429.7909,-76.6072,-115.1519],"yaw":-4.87075,"spawnMask":1},{"id":"creature-39749","entityId":"entry-5271","position":[383.4529,-76.6072,-123.0819],"yaw":-2.34569,"spawnMask":1},{"id":"creature-39750","entityId":"entry-5271","position":[409.7449,-76.6071,-94.995],"yaw":-6.26874,"spawnMask":1},{"id":"creature-39751","entityId":"entry-5259","position":[272.2779,-55.2676,138.8661],"yaw":-2.60411,"spawnMask":1},{"id":"creature-39752","entityId":"entry-5259","position":[288.2559,-55.2676,142.4351],"yaw":-0.606829,"spawnMask":1},{"id":"creature-39753","entityId":"entry-8318","position":[281.7039,-55.2676,140.7301],"yaw":-2.08416,"spawnMask":1},{"id":"creature-39754","entityId":"entry-5256","position":[317.5309,-39.726,106.0941],"yaw":-0.332726,"spawnMask":1},{"id":"creature-39755","entityId":"entry-5259","position":[337.8319,-39.725,148.4401],"yaw":-3.92995,"spawnMask":1},{"id":"creature-39756","entityId":"entry-5259","position":[336.3729,-39.726,157.0741],"yaw":-5.27019,"spawnMask":1},{"id":"creature-39757","entityId":"entry-8318","position":[331.0019,-39.726,155.2721],"yaw":-5.62754,"spawnMask":1},{"id":"creature-39758","entityId":"entry-8318","position":[337.0559,-39.726,153.3051],"yaw":-5.62754,"spawnMask":1},{"id":"creature-39759","entityId":"entry-5256","position":[426.2419,-39.726,180.9681],"yaw":-1.3809,"spawnMask":1},{"id":"creature-39760","entityId":"entry-5256","position":[424.7379,-39.726,190.7051],"yaw":-5.30475,"spawnMask":1},{"id":"creature-39761","entityId":"entry-5259","position":[418.0099,-39.726,184.5331],"yaw":-4.96275,"spawnMask":1},{"id":"creature-39762","entityId":"entry-8318","position":[421.6799,-39.726,185.3961],"yaw":-3.33497,"spawnMask":1},{"id":"creature-39763","entityId":"entry-8318","position":[426.1219,-39.726,186.3371],"yaw":-3.25722,"spawnMask":1},{"id":"creature-39764","entityId":"entry-5259","position":[466.0089,-39.8746,169.2071],"yaw":-3.22816,"spawnMask":1},{"id":"creature-39765","entityId":"entry-8318","position":[464.6749,-39.8746,173.3341],"yaw":-3.62871,"spawnMask":1},{"id":"creature-39766","entityId":"entry-8318","position":[469.8309,-39.8746,164.8041],"yaw":-2.548,"spawnMask":1},{"id":"creature-39767","entityId":"entry-5267","position":[467.7459,-39.8746,172.8101],"yaw":-3.12527,"spawnMask":1},{"id":"creature-39768","entityId":"entry-5259","position":[513.2079,-55.181,187.3461],"yaw":-4.66544,"spawnMask":1},{"id":"creature-39769","entityId":"entry-8318","position":[521.7879,-55.181,190.7771],"yaw":-4.69292,"spawnMask":1},{"id":"creature-39770","entityId":"entry-8318","position":[517.8669,-55.181,186.5781],"yaw":-4.64187,"spawnMask":1},{"id":"creature-39771","entityId":"entry-5267","position":[521.4629,-55.181,182.0031],"yaw":-4.43217,"spawnMask":1},{"id":"creature-39772","entityId":"entry-5256","position":[493.7479,-39.7262,127.9741],"yaw":-1.49243,"spawnMask":1},{"id":"creature-39773","entityId":"entry-5259","position":[499.7219,-39.7259,139.4421],"yaw":-2.70865,"spawnMask":1},{"id":"creature-39774","entityId":"entry-5259","position":[503.0739,-39.726,128.1921],"yaw":-2.905,"spawnMask":1},{"id":"creature-39775","entityId":"entry-8318","position":[502.3999,-39.7262,133.6971],"yaw":-0.682749,"spawnMask":1},{"id":"creature-39776","entityId":"entry-8318","position":[494.9789,-39.7262,132.7661],"yaw":-0.792705,"spawnMask":1},{"id":"creature-39777","entityId":"entry-8318","position":[500.1879,-39.7262,130.8131],"yaw":-0.81234,"spawnMask":1},{"id":"creature-39778","entityId":"entry-5256","position":[498.8279,-39.7262,79.2249],"yaw":-3.32405,"spawnMask":1},{"id":"creature-39779","entityId":"entry-5259","position":[545.8559,-55.1325,52.2903],"yaw":-5.53965,"spawnMask":1},{"id":"creature-39780","entityId":"entry-8318","position":[539.0019,-55.1325,42.2957],"yaw":-5.53965,"spawnMask":1},{"id":"creature-39781","entityId":"entry-8318","position":[546.3989,-55.1325,49.0974],"yaw":-5.53965,"spawnMask":1},{"id":"creature-39782","entityId":"entry-5270","position":[464.4199,-39.726,19.3673],"yaw":-4.55947,"spawnMask":1},{"id":"creature-39783","entityId":"entry-5256","position":[465.8119,-39.726,6.8993],"yaw":-1.44928,"spawnMask":1},{"id":"creature-39784","entityId":"entry-5259","position":[423.7619,-39.726,1.8179],"yaw":-1.29494,"spawnMask":1},{"id":"creature-39785","entityId":"entry-8318","position":[424.4129,-39.726,-6.9943],"yaw":-0.0402737,"spawnMask":1},{"id":"creature-39786","entityId":"entry-5270","position":[418.2309,-39.726,-2.2949],"yaw":-0.0261377,"spawnMask":1},{"id":"creature-39787","entityId":"entry-5270","position":[302.3119,-55.172,4.079],"yaw":-1.15946,"spawnMask":1},{"id":"creature-39788","entityId":"entry-8318","position":[301.9689,-55.172,-6.3664],"yaw":-1.82862,"spawnMask":1},{"id":"creature-39789","entityId":"entry-5270","position":[323.8539,-39.7252,46.0661],"yaw":-4.39688,"spawnMask":1},{"id":"creature-39790","entityId":"entry-8318","position":[323.0179,-39.7252,40.5158],"yaw":-4.25551,"spawnMask":1},{"id":"creature-39791","entityId":"entry-8318","position":[328.0279,-39.7252,46.985],"yaw":-4.25551,"spawnMask":1},{"id":"creature-39792","entityId":"entry-5259","position":[314.0649,-39.7252,70.7672],"yaw":-1.95193,"spawnMask":1},{"id":"creature-39793","entityId":"entry-8318","position":[310.8309,-39.7252,75.1562],"yaw":-1.95193,"spawnMask":1},{"id":"creature-39794","entityId":"entry-8318","position":[317.2489,-39.7252,74.6521],"yaw":-1.46891,"spawnMask":1},{"id":"creature-39795","entityId":"entry-5277","position":[363.4059,-76.6385,12.6294],"yaw":-2.17262,"spawnMask":1},{"id":"creature-39796","entityId":"entry-5283","position":[374.1659,-76.6478,6.073],"yaw":-1.28512,"spawnMask":1},{"id":"creature-39797","entityId":"entry-8319","position":[379.6889,-76.6513,18.9881],"yaw":-2.18097,"spawnMask":1},{"id":"creature-39798","entityId":"entry-8319","position":[363.1109,-76.6455,30.2186],"yaw":-2.14327,"spawnMask":1},{"id":"creature-39799","entityId":"entry-8319","position":[449.1559,-77.2184,62.5345],"yaw":-4.70553,"spawnMask":1},{"id":"creature-39800","entityId":"entry-8319","position":[447.5149,-76.6105,73.2501],"yaw":-4.03873,"spawnMask":1},{"id":"creature-39801","entityId":"entry-8319","position":[439.0439,-77.1646,72.9657],"yaw":-1.91344,"spawnMask":1},{"id":"creature-39802","entityId":"entry-5277","position":[441.8989,-76.7648,34.6493],"yaw":-0.39055,"spawnMask":1},{"id":"creature-39803","entityId":"entry-5283","position":[417.4479,-77.1729,127.1251],"yaw":-3.5884,"spawnMask":1},{"id":"creature-39804","entityId":"entry-8319","position":[415.0959,-78.3947,121.0901],"yaw":-3.37247,"spawnMask":1},{"id":"creature-39805","entityId":"entry-8319","position":[424.1019,-77.6256,120.8921],"yaw":-2.99626,"spawnMask":1},{"id":"creature-39806","entityId":"entry-8319","position":[423.6139,-77.0135,127.0251],"yaw":-6.23525,"spawnMask":1},{"id":"creature-39807","entityId":"entry-8319","position":[415.9389,-76.8037,131.9191],"yaw":-5.11055,"spawnMask":1},{"id":"creature-39808","entityId":"entry-5277","position":[376.3749,-76.6959,124.5511],"yaw":-4.91028,"spawnMask":1},{"id":"creature-39809","entityId":"entry-5283","position":[374.3649,-76.6484,160.8011],"yaw":-4.19556,"spawnMask":1},{"id":"creature-39810","entityId":"entry-8319","position":[366.7839,-77.1808,118.5691],"yaw":-3.00176,"spawnMask":1},{"id":"creature-39811","entityId":"entry-8319","position":[378.0699,-76.851,114.9511],"yaw":-1.7412,"spawnMask":1},{"id":"creature-39812","entityId":"entry-5283","position":[376.3959,-76.7748,70.702],"yaw":-2.69153,"spawnMask":1},{"id":"creature-39823","entityId":"entry-8319","position":[381.6139,-76.96,66.4786],"yaw":-1.80403,"spawnMask":1},{"id":"creature-39824","entityId":"entry-8319","position":[374.0209,-76.802,75.5221],"yaw":-2.7465,"spawnMask":1},{"id":"creature-39825","entityId":"entry-5283","position":[459.0279,-76.9905,122.0381],"yaw":-4.82409,"spawnMask":1},{"id":"creature-39826","entityId":"entry-5277","position":[454.8059,-77.0855,122.2961],"yaw":-4.54586,"spawnMask":1},{"id":"creature-39827","entityId":"entry-5711","position":[368.6479,-74.0037,-96.406],"yaw":-2.51817,"spawnMask":1},{"id":"creature-39828","entityId":"entry-5263","position":[435.7239,-76.6072,-57.4477],"yaw":-5.42032,"spawnMask":1},{"id":"creature-39829","entityId":"entry-5271","position":[430.0729,-76.6078,-57.0907],"yaw":-3.87692,"spawnMask":1},{"id":"creature-39830","entityId":"entry-5271","position":[434.7659,-76.6078,-64.0043],"yaw":-1.33301,"spawnMask":1},{"id":"creature-39831","entityId":"entry-5271","position":[393.0529,-76.6071,-77.4439],"yaw":-0.0975781,"spawnMask":1},{"id":"creature-39832","entityId":"entry-5271","position":[392.9479,-76.6071,-82.35],"yaw":-0.0975781,"spawnMask":1},{"id":"creature-39833","entityId":"entry-5263","position":[420.8309,-76.6072,-96.7752],"yaw":-0.220976,"spawnMask":1},{"id":"creature-39834","entityId":"entry-5271","position":[420.7939,-76.6072,-100.5345],"yaw":-0.113043,"spawnMask":1},{"id":"creature-39835","entityId":"entry-5271","position":[400.1259,-76.6072,-92.9285],"yaw":-0.131107,"spawnMask":1},{"id":"creature-39836","entityId":"entry-5271","position":[400.1979,-76.6072,-100.6255],"yaw":-6.16061,"spawnMask":1},{"id":"creature-39837","entityId":"entry-5271","position":[387.5579,-76.6072,-119.3639],"yaw":-2.26697,"spawnMask":1},{"id":"creature-39838","entityId":"entry-5263","position":[425.9119,-76.6072,-118.9829],"yaw":-2.75782,"spawnMask":1},{"id":"creature-39839","entityId":"entry-5263","position":[410.5369,-76.6072,-79.2553],"yaw":-0.146237,"spawnMask":1},{"id":"creature-39840","entityId":"entry-5263","position":[390.0269,-76.6072,-55.1287],"yaw":-5.03312,"spawnMask":1},{"id":"creature-39841","entityId":"entry-5263","position":[409.6169,-76.6072,-100.3784],"yaw":-0.122803,"spawnMask":1},{"id":"creature-39842","entityId":"entry-5709","position":[601.3329,-76.6149,-38.6442],"yaw":-1.57592,"spawnMask":1},{"id":"creature-39843","entityId":"entry-5712","position":[471.5999,-52.533,127.2811],"yaw":-5.66229,"spawnMask":1},{"id":"creature-39844","entityId":"entry-5713","position":[470.9229,-52.4985,56.5697],"yaw":-0.397759,"spawnMask":1},{"id":"creature-39845","entityId":"entry-5714","position":[409.6089,-52.5705,21.5442],"yaw":-1.5515,"spawnMask":1},{"id":"creature-39846","entityId":"entry-5715","position":[348.4599,-52.8475,57.575],"yaw":-2.57409,"spawnMask":1},{"id":"creature-39847","entityId":"entry-5717","position":[349.1429,-52.6935,128.1861],"yaw":-3.68072,"spawnMask":1},{"id":"creature-239021","entityId":"entry-5720","position":[401.7939,-77.3497,124.8181],"yaw":-5.77,"spawnMask":1},{"id":"encounter-492","entityId":"entry-8443","position":[617.2319,-90.9937,23.5188],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-33621","name":"Spawn of Hakkar Patrol","speed":1.15,"pathId":336210,"formationSource":"database-solo","spawnMask":1,"waypoints":[[479.6189,-134.5817,26.4623],[495.2349,-134.5817,43.6742],[504.8279,-134.5817,79.7297],[504.0479,-134.5817,113.5691],[490.6139,-134.5067,146.4871],[460.5679,-134.5817,177.4221],[422.1749,-134.5817,187.1811],[393.7769,-134.6227,186.6101],[366.3749,-134.6037,176.8641],[348.0809,-134.5817,165.0801],[327.8699,-134.5817,144.0241],[316.4839,-134.5817,109.6001],[312.6299,-134.5817,91.256],[321.4019,-134.5817,57.4055],[334.7389,-134.5817,36.9772],[359.1969,-134.5817,10.3823],[390.9059,-134.5817,-1.3132],[433.2699,-134.5817,0.4375],[461.3149,-134.5817,8.3849]],"members":[{"id":"member","entityId":"entry-5708","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-33658","name":"Hazzas Patrol","speed":1.15,"pathId":336580,"formationSource":"database-solo","spawnMask":1,"waypoints":[[597.4399,-76.6118,78.0068],[597.3559,-76.6118,67.5071],[597.1679,-76.6147,44.1279],[597.0369,-76.8706,27.8184],[596.8499,-76.6154,4.5091],[596.7599,-76.6154,16.1988],[596.7079,-76.6152,30.1987],[596.6239,-76.6144,52.3185],[596.5499,-76.6136,72.1284],[596.4709,-76.6126,93.1282],[596.4009,-76.6112,111.8181],[596.3569,-76.6104,123.4381],[596.3269,-76.6098,131.5581],[596.2689,-76.6098,117.5581],[596.2119,-76.6098,103.5581]],"members":[{"id":"member","entityId":"entry-5722","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-34520","name":"Spawn of Hakkar Patrol","speed":1.15,"pathId":345200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[318.7579,-134.5817,70.9574],[325.1339,-134.5817,44.9901],[339.6289,-134.5817,30.4046],[361.7089,-134.5387,7.9935],[396.3559,-134.5817,-2.4373],[423.8909,-134.5817,-2.5641],[451.0609,-134.5127,4.1387],[471.7729,-134.5817,19.1089],[494.4479,-134.5817,40.9741],[502.4559,-134.5817,68.9507],[508.7369,-134.5817,93.853],[499.9349,-134.5817,128.8351],[488.6419,-134.5207,149.2121],[458.2929,-134.5817,179.7281],[431.0799,-134.5817,185.6811],[405.7309,-134.6527,189.4761],[378.5669,-134.6407,182.6861],[357.7179,-134.5817,173.0851],[333.8119,-134.5817,152.4751],[323.7509,-134.5817,133.1761],[312.9579,-134.5817,99.8831]],"members":[{"id":"member","entityId":"entry-5708","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-239020","name":"Dreamscythe Patrol","speed":1.15,"pathId":2390200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[380.3079,-76.5016,125.4161],[372.7579,-76.5478,113.6261],[367.0959,-76.5107,104.7841],[366.5909,-76.5073,91.9841],[366.7529,-76.5184,81.5554],[372.2219,-76.5162,71.2232],[378.0119,-76.5125,61.068],[398.7779,-76.5163,49.0898],[420.8889,-76.5628,49.6941],[440.8149,-76.4779,59.6156],[453.4499,-76.5026,81.9596],[453.2829,-76.5162,102.9581],[441.9309,-76.5311,123.2221],[421.4289,-76.4538,136.4691],[406.3289,-76.5125,135.7001]],"members":[{"id":"member","entityId":"entry-5721","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-34521","name":"Atal'alarion","position":[423.3539,-175.5097,93.6844]},{"id":"creature-39737","name":"Jammal'an and Ogom","position":[368.8479,-74.0037,-88.9566]},{"id":"encounter-492","name":"Avatar of Hakkar","position":[617.2319,-90.9937,23.5188]},{"id":"creature-39842","name":"Shade of Eranikus","position":[601.3329,-76.6149,-38.6442]}],"objectiveOrder":[{"id":"creature-34521","name":"Atal'alarion","position":[423.3539,-175.5097,93.6844]},{"id":"creature-39737","name":"Jammal'an and Ogom","position":[368.8479,-74.0037,-88.9566]},{"id":"encounter-492","name":"Avatar of Hakkar","position":[617.2319,-90.9937,23.5188]},{"id":"creature-39842","name":"Shade of Eranikus","position":[601.3329,-76.6149,-38.6442]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":1477,"guid":11922,"id":148836,"map":109,"orientation":3.14159,"phaseMask":1,"position_x":-420.848,"position_y":94.7487,"position_z":-174.196,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":1477,"guid":14724,"id":148512,"map":109,"orientation":2.11185,"phaseMask":1,"position_x":-634.352,"position_y":-51.915,"position_z":-90.8352,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":27898,"id":148830,"map":109,"orientation":-1.50098,"phaseMask":1,"position_x":-515.553,"position_y":95.2582,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":27899,"id":148831,"map":109,"orientation":1.53589,"phaseMask":1,"position_x":-419.849,"position_y":94.4837,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":28111,"id":148832,"map":109,"orientation":-2.68781,"phaseMask":1,"position_x":-491.4,"position_y":135.97,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":-0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":28112,"id":148833,"map":109,"orientation":-0.610865,"phaseMask":1,"position_x":-491.491,"position_y":53.4818,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":-0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":28113,"id":148834,"map":109,"orientation":2.53073,"phaseMask":1,"position_x":-443.855,"position_y":136.101,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":0.953717,"rotation3":0.300705,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":28114,"id":148835,"map":109,"orientation":0.471239,"phaseMask":1,"position_x":-443.417,"position_y":53.8312,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47561,"id":148418,"map":109,"orientation":2.40799,"phaseMask":1,"position_x":-435.417,"position_y":248.872,"position_z":-90.8275,"rotation0":0,"rotation1":0,"rotation2":0.933479,"rotation3":0.358631,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47562,"id":148419,"map":109,"orientation":0.659252,"phaseMask":1,"position_x":-499.066,"position_y":248.605,"position_z":-90.8275,"rotation0":0,"rotation1":0,"rotation2":0.323689,"rotation3":0.946163,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47563,"id":148420,"map":109,"orientation":5.535,"phaseMask":1,"position_x":-499.108,"position_y":303.472,"position_z":-90.8275,"rotation0":0,"rotation1":0,"rotation2":0.365428,"rotation3":-0.93084,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47564,"id":148421,"map":109,"orientation":3.84954,"phaseMask":1,"position_x":-434.857,"position_y":303.821,"position_z":-90.8264,"rotation0":0,"rotation1":0,"rotation2":0.938003,"rotation3":-0.346628,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99877,"id":148422,"map":109,"orientation":0,"phaseMask":1,"position_x":-467.09,"position_y":276.58,"position_z":-90.47,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268932,"id":149431,"map":109,"orientation":0,"phaseMask":1,"position_x":-518.1,"position_y":-85.545,"position_z":-91.2,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268933,"id":149432,"map":109,"orientation":0,"phaseMask":1,"position_x":-518.23,"position_y":276.04,"position_z":-91.2,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268934,"id":149433,"map":109,"orientation":0,"phaseMask":1,"position_x":-416.012,"position_y":275.855,"position_z":-91.2,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/SunkenTemple":"baf69425568962914908466e6818ec56283abc6d64fa6c3cb18dcc5a683433eb","patch/World/maps/SunkenTemple":"5633a3f5a145ca5fc01dcb6e1f025c646c2c1c6dfd10745e7e862b5007a1a8aa"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/sunken-temple/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["33/33 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"razorfen-downs","title":"Razorfen Downs","mapId":129,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[35,50]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Razorfen Downs","theme":"Instanced dungeon","summary":"Fight through Razorfen Downs, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Razorfen Downs...","unchartedAreaName":"Uncharted Razorfen Downs","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":773.802},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/129-razorfendowns/visual.glb","checksum":"c319cb06d926ae3668d1b670f4920375a151b3050f6d2268114187cfc005640b","size":5312064,"triangleCount":161644}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/129-razorfendowns/collision.glb","checksum":"71108797744e64985618caebb9c80f7a5cc9f39804e1f1fcdc8426286a542f09","size":1402912,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/129-razorfendowns/navigation.glb","checksum":"5468601f6a49eb1c695148a2793e6914f3a1fb378048974829574ff4da19e3e3","size":902384,"triangleCount":65826}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-162.5372,-10.9929,-1099.5347],"max":[207.7728,69.2058,-24.8097]},"entrance":{"name":"Razorfen Downs Entrance","footPosition":[-110.9772,37.0264,-592.9987],"forward":[0.126831947394427,0,0.9919242194442766],"yaw":0.12717447645095128},"areas":[{"id":"entrance","name":"Razorfen Downs Entrance","center":[-110.9772,37.0264,-592.9987],"radius":35},{"id":"area-tuten-kash","name":"Tuten'kash's Encounter","center":[-67.5724,37.0804,-237.0766],"radius":42},{"id":"area-mordresh-fire-eye","name":"Mordresh Fire Eye's Encounter","center":[14.9528,49.2058,-1029.0557],"radius":42},{"id":"area-glutton","name":"Glutton's Encounter","center":[12.8628,9.4937,-693.6687],"radius":42},{"id":"area-amnennar-the-coldbringer","name":"Amnennar the Coldbringer's Encounter","center":[78.2028,40.8801,-739.5687],"radius":42},{"id":"area-ragglesnout","name":"Ragglesnout's Encounter","center":[116.8228,14.5035,-795.9747],"radius":42},{"id":"area-plaguemaw-the-rotting","name":"Plaguemaw the Rotting's Encounter","center":[-55.7744,12.7264,-69.8097],"radius":42}],"entities":{"entry-7347":{"id":"entry-7347","kind":"mob","name":"Boneflayer Ghoul","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-1065-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.5115,"markerRadius":0.65}}},"entry-7353":{"id":"entry-7353","kind":"mob","name":"Freezing Spirit","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"spell-15532","name":"Frost Nova","spellId":15532,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5407,"damageMultiplier":0.62,"radius":8},{"id":"spell-12531","name":"Chilling Touch","spellId":12531,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5407,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-146-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-7342":{"id":"entry-7342","kind":"mob","name":"Skeletal Summoner","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9532","name":"Lightning Bolt","spellId":9532,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6477,"damageMultiplier":1.12},{"id":"spell-11980","name":"Curse of Weakness","spellId":11980,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6477,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-1245-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":2.6321,"markerRadius":0.65}}},"entry-7332":{"id":"entry-7332","kind":"mob","name":"Withered Spearhide","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11385-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.1722,"markerRadius":0.798}}},"entry-7333":{"id":"entry-7333","kind":"mob","name":"Withered Battle Boar","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-6121-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0278,"labelHeight":2.4447,"markerRadius":1.1661}}},"entry-7327":{"id":"entry-7327","kind":"mob","name":"Withered Warrior","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.8868,"markerRadius":1.2076}}},"entry-7335":{"id":"entry-7335","kind":"mob","name":"Death's Head Geomancer","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5947,"damageMultiplier":1.12},{"id":"spell-6725","name":"Flame Spike","spellId":6725,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5947,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/9fceacb1e87178ca5f1c580a75f07683cbcce1123c9c71d3b3baf3a63a40ffd6.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":4.066,"markerRadius":0.9488}}},"entry-7346":{"id":"entry-7346","kind":"mob","name":"Splinterbone Centurion","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8078","name":"Thunderclap","spellId":8078,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5042,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/70ea1c98df2681d8282db8d3c117575ba28c9de492c29ced19580955691a5080.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":3.1657,"markerRadius":0.65}}},"entry-7329":{"id":"entry-7329","kind":"mob","name":"Withered Quilguard","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11383-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":4.4848,"markerRadius":1.3934}}},"entry-7328":{"id":"entry-7328","kind":"mob","name":"Withered Reaver","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11384-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":5.2323,"markerRadius":1.6257}}},"entry-7337":{"id":"entry-7337","kind":"mob","name":"Death's Head Necromancer","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4945,"damageMultiplier":1.12},{"id":"spell-11443","name":"Cripple","spellId":11443,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4945,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11381-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":4.7437,"markerRadius":1.1069}}},"entry-7352":{"id":"entry-7352","kind":"mob","name":"Frozen Soul","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12528","name":"Silence","spellId":12528,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4904,"damageMultiplier":1.12},{"id":"spell-12531","name":"Chilling Touch","spellId":12531,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4904,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-146-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-7344":{"id":"entry-7344","kind":"mob","name":"Splinterbone Warrior","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11971","name":"Sunder Armor","spellId":11971,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5683,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/707138afbd77ec1a940d662fc32222f045bec0e87e0ab7ce83c282a9804ec065.glb","rotationY":-1.5707963267948966,"groundOffset":0.0027,"labelHeight":2.8408,"markerRadius":0.65}}},"entry-7334":{"id":"entry-7334","kind":"mob","name":"Battle Boar Horror","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-6122-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0417,"labelHeight":3.519,"markerRadius":1.7492}}},"entry-7341":{"id":"entry-7341","kind":"mob","name":"Skeletal Frostweaver","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9672","name":"Frostbolt","spellId":9672,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4294,"damageMultiplier":1.12},{"id":"spell-33624","name":"Blizzard","spellId":33624,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4294,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-9783-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-7348":{"id":"entry-7348","kind":"mob","name":"Thorn Eater Ghoul","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-1065-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.5115,"markerRadius":0.65}}},"entry-7343":{"id":"entry-7343","kind":"mob","name":"Splinterbone Skeleton","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-7550-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-7357":{"id":"entry-7357","kind":"boss","name":"Mordresh Fire Eye","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12466","name":"Fireball","spellId":12466,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6911,"damageMultiplier":1.35},{"id":"spell-12470","name":"Fire Nova","spellId":12470,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6911,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-8055-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":4.6181,"markerRadius":0.65}}},"entry-7345":{"id":"entry-7345","kind":"mob","name":"Splinterbone Captain","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"spell-9128","name":"Battle Shout","spellId":9128,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5444,"damageMultiplier":1.12},{"id":"spell-12461","name":"Backhand","spellId":12461,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5444,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/9a6dd0a8f5d239e51ad1ceaed4079f25646ad7be2e952cc4feef7bbcda29613b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":3.6388,"markerRadius":0.7423}}},"entry-7358":{"id":"entry-7358","kind":"boss","name":"Amnennar the Coldbringer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6401,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-7971-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4146,"labelHeight":5.638,"markerRadius":1.2491}}},"entry-8567":{"id":"entry-8567","kind":"boss","name":"Glutton","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"spell-16345","name":"Disease Cloud","spellId":16345,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4275,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-7864-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0061,"labelHeight":5.6966,"markerRadius":2.5109}}},"entry-7354":{"id":"entry-7354","kind":"boss","name":"Ragglesnout","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4332,"damageMultiplier":1.35},{"id":"spell-11639","name":"Shadow Word: Pain","spellId":11639,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4332,"damageMultiplier":1.35},{"id":"spell-12039","name":"Heal","spellId":12039,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4332,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15859","name":"Dominate Mind","spellId":15859,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4332,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.39,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11382-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.004,"labelHeight":4.8629,"markerRadius":1.2277}}},"entry-14686":{"id":"entry-14686","kind":"mob","name":"Lady Falther'ess","combat":{"level":37,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/665ecc22aef511be0a627a08dde9c3b544903a64eeb2323c96fbbc3dfd76cf14.glb","rotationY":-1.5707963267948966,"groundOffset":0.5402,"labelHeight":5.6694,"markerRadius":1.2275}}},"entry-7355":{"id":"entry-7355","kind":"boss","name":"Tuten'kash","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12252","name":"Web Spray","spellId":12252,"delivery":"projectile","target":"random-party","school":"physical","animation":"cast","range":28,"cooldownMs":4796,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4796,"damageMultiplier":1.35},{"id":"spell-12255","name":"Curse of Tuten'kash","spellId":12255,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4796,"damageMultiplier":1.35},{"id":"spell-12251","name":"Virulent Poison","spellId":12251,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4796,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-7845-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4504,"labelHeight":10.4008,"markerRadius":4.5}}},"entry-7356":{"id":"entry-7356","kind":"boss","name":"Plaguemaw the Rotting","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12946","name":"Putrid Stench","spellId":12946,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4478,"damageMultiplier":1.35},{"id":"spell-11441","name":"Withered Touch","spellId":11441,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4478,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-6124-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":3.6471,"markerRadius":0.9207}}}},"staticSpawns":[{"id":"creature-13358","entityId":"entry-7347","position":[-76.9672,37.0825,-652.7387],"yaw":-3.28056,"spawnMask":1},{"id":"creature-13359","entityId":"entry-7347","position":[-86.1972,39.344,-638.5987],"yaw":-1.63284,"spawnMask":1},{"id":"creature-13360","entityId":"entry-7353","position":[-77.5172,37.2657,-648.3187],"yaw":-3.18938,"spawnMask":1},{"id":"creature-13361","entityId":"entry-7353","position":[-80.3572,38.5671,-642.3487],"yaw":-5.28222,"spawnMask":1},{"id":"creature-13362","entityId":"entry-7342","position":[-83.4372,38.3695,-646.6787],"yaw":-3.80795,"spawnMask":1},{"id":"creature-13363","entityId":"entry-7332","position":[-96.6072,36.6616,-675.7587],"yaw":-3.6748,"spawnMask":1},{"id":"creature-13364","entityId":"entry-7333","position":[-90.8472,37.4007,-681.2287],"yaw":-2.04549,"spawnMask":1},{"id":"creature-13365","entityId":"entry-7333","position":[-94.6072,36.5427,-675.7387],"yaw":-3.49232,"spawnMask":1},{"id":"creature-13366","entityId":"entry-7333","position":[-94.4672,37.064,-679.0087],"yaw":-3.7573,"spawnMask":1},{"id":"creature-28775","entityId":"entry-7333","position":[-93.2072,37.4623,-682.1187],"yaw":-1.13262,"spawnMask":1},{"id":"creature-28776","entityId":"entry-7327","position":[-114.1772,38.7766,-653.6387],"yaw":-5.8427,"spawnMask":1},{"id":"creature-28778","entityId":"entry-7335","position":[-117.5372,39.491,-649.6687],"yaw":-0.693344,"spawnMask":1},{"id":"creature-28780","entityId":"entry-7332","position":[-112.2972,40.7199,-628.7387],"yaw":-1.50789,"spawnMask":1},{"id":"creature-28783","entityId":"entry-7347","position":[-18.1572,33.3332,-646.2187],"yaw":-5.95304,"spawnMask":1},{"id":"creature-31763","entityId":"entry-7353","position":[-14.0572,33.2741,-637.8187],"yaw":-4.14281,"spawnMask":1},{"id":"creature-31764","entityId":"entry-7346","position":[-19.4772,33.3645,-641.7987],"yaw":-2.73081,"spawnMask":1},{"id":"creature-31765","entityId":"entry-7346","position":[-25.2272,33.3919,-647.6787],"yaw":-3.39876,"spawnMask":1},{"id":"creature-31766","entityId":"entry-7327","position":[-102.6272,40.0194,-703.2997],"yaw":-4.68028,"spawnMask":1},{"id":"creature-31767","entityId":"entry-7327","position":[-73.9372,37.9339,-690.4287],"yaw":-4.80224,"spawnMask":1},{"id":"creature-31768","entityId":"entry-7332","position":[-71.9372,38.0025,-696.7987],"yaw":-3.24463,"spawnMask":1},{"id":"creature-31775","entityId":"entry-7335","position":[-79.0672,37.9511,-694.3587],"yaw":-3.93116,"spawnMask":1},{"id":"creature-31776","entityId":"entry-7335","position":[-102.2872,39.8218,-706.3367],"yaw":-2.33696,"spawnMask":1},{"id":"creature-31780","entityId":"entry-7332","position":[-88.2172,36.5192,-729.4767],"yaw":-3.1765,"spawnMask":1},{"id":"creature-31953","entityId":"entry-7327","position":[-80.5272,36.6106,-732.0577],"yaw":-4.3838,"spawnMask":1},{"id":"creature-31955","entityId":"entry-7335","position":[-78.0772,36.9309,-734.6987],"yaw":-2.56314,"spawnMask":1},{"id":"creature-31956","entityId":"entry-7332","position":[-92.5272,39.0905,-754.4027],"yaw":-5.55015,"spawnMask":1},{"id":"creature-31957","entityId":"entry-7332","position":[-108.5972,37.6471,-739.3367],"yaw":-0.942478,"spawnMask":1},{"id":"creature-31958","entityId":"entry-7333","position":[-107.3372,37.9471,-744.0467],"yaw":-4.28424,"spawnMask":1},{"id":"creature-31959","entityId":"entry-7333","position":[-106.5272,38.3926,-748.2997],"yaw":-4.35363,"spawnMask":1},{"id":"creature-31960","entityId":"entry-7333","position":[-104.1372,37.9232,-741.7017],"yaw":-0.226893,"spawnMask":1},{"id":"creature-31961","entityId":"entry-7333","position":[-110.6472,37.6168,-740.1127],"yaw":-1.88311,"spawnMask":1},{"id":"creature-31962","entityId":"entry-7329","position":[-57.3172,35.7797,-730.7197],"yaw":-0.241608,"spawnMask":1},{"id":"creature-31963","entityId":"entry-7328","position":[-54.9772,35.5433,-735.7367],"yaw":-6.10735,"spawnMask":1},{"id":"creature-31966","entityId":"entry-7329","position":[-40.6872,34.5905,-754.8167],"yaw":-1.64132,"spawnMask":1},{"id":"creature-31968","entityId":"entry-7327","position":[-92.2672,39.9993,-763.0257],"yaw":-4.00769,"spawnMask":1},{"id":"creature-31969","entityId":"entry-7335","position":[-84.9972,40.13,-758.6087],"yaw":-2.52156,"spawnMask":1},{"id":"creature-31972","entityId":"entry-7347","position":[-1.6272,33.1367,-632.0387],"yaw":-2.01005,"spawnMask":1},{"id":"creature-31974","entityId":"entry-7328","position":[-42.5372,33.4878,-766.2547],"yaw":-5.82781,"spawnMask":1},{"id":"creature-31975","entityId":"entry-7337","position":[-45.4072,34.2331,-761.5857],"yaw":-5.1856,"spawnMask":1},{"id":"creature-31976","entityId":"entry-7352","position":[0.8428,9.4497,-711.0777],"yaw":-4.44082,"spawnMask":1},{"id":"creature-31977","entityId":"entry-7344","position":[-0.3872,9.5344,-704.9357],"yaw":-2.49086,"spawnMask":1},{"id":"creature-31978","entityId":"entry-7329","position":[-57.0372,31.9133,-788.8117],"yaw":-1.27834,"spawnMask":1},{"id":"creature-31979","entityId":"entry-7328","position":[-63.8172,32.1902,-794.5177],"yaw":-5.02576,"spawnMask":1},{"id":"creature-32009","entityId":"entry-7337","position":[-32.9472,31.8433,-783.5137],"yaw":-4.10141,"spawnMask":1},{"id":"creature-33694","entityId":"entry-7337","position":[-19.1472,34.3882,-759.8097],"yaw":-5.07891,"spawnMask":1},{"id":"creature-39533","entityId":"entry-7329","position":[-28.7772,32.2719,-786.6177],"yaw":-0.894557,"spawnMask":1},{"id":"creature-42671","entityId":"entry-7329","position":[-13.7072,34.3865,-772.6867],"yaw":-5.84932,"spawnMask":1},{"id":"creature-42672","entityId":"entry-7329","position":[-16.0372,34.075,-767.3767],"yaw":-2.33214,"spawnMask":1},{"id":"creature-42673","entityId":"entry-7328","position":[-55.3772,33.4835,-822.0897],"yaw":-1.43083,"spawnMask":1},{"id":"creature-42674","entityId":"entry-7329","position":[-60.0472,33.6197,-822.1637],"yaw":-4.3058,"spawnMask":1},{"id":"creature-42675","entityId":"entry-7337","position":[-59.8072,33.6618,-816.8717],"yaw":-2.88717,"spawnMask":1},{"id":"creature-42677","entityId":"entry-7328","position":[-16.1472,34.2366,-763.8687],"yaw":-0.538688,"spawnMask":1},{"id":"creature-42682","entityId":"entry-7346","position":[23.5928,22.2649,-728.7067],"yaw":-4.31884,"spawnMask":1},{"id":"creature-42684","entityId":"entry-7344","position":[8.9228,9.4359,-713.6697],"yaw":-5.35144,"spawnMask":1},{"id":"creature-42687","entityId":"entry-7348","position":[8.2128,9.1091,-706.7717],"yaw":-2.87391,"spawnMask":1},{"id":"creature-42689","entityId":"entry-7352","position":[11.4528,12.3755,-786.8447],"yaw":-1.6057,"spawnMask":1},{"id":"creature-42690","entityId":"entry-7348","position":[11.3128,11.4793,-780.0917],"yaw":-0.488461,"spawnMask":1},{"id":"creature-42691","entityId":"entry-7344","position":[17.0928,11.7947,-779.9697],"yaw":-3.2304,"spawnMask":1},{"id":"creature-42692","entityId":"entry-7347","position":[30.1328,21.7984,-732.9927],"yaw":-4.30387,"spawnMask":1},{"id":"creature-42693","entityId":"entry-7347","position":[26.8728,21.4527,-722.9507],"yaw":-4.43857,"spawnMask":1},{"id":"creature-42694","entityId":"entry-7346","position":[32.6028,21.9082,-725.6657],"yaw":-3.88879,"spawnMask":1},{"id":"creature-42695","entityId":"entry-7352","position":[14.5028,14.1907,-809.4467],"yaw":-1.44223,"spawnMask":1},{"id":"creature-42696","entityId":"entry-7341","position":[16.5728,14.4378,-809.5167],"yaw":-1.41227,"spawnMask":1},{"id":"creature-42698","entityId":"entry-7344","position":[16.5128,12.511,-787.8367],"yaw":-4.53875,"spawnMask":1},{"id":"creature-42699","entityId":"entry-7329","position":[-39.6772,33.4977,-835.1227],"yaw":-3.9555,"spawnMask":1},{"id":"creature-42700","entityId":"entry-7328","position":[-22.2372,33.4977,-837.9357],"yaw":-5.02056,"spawnMask":1},{"id":"creature-42701","entityId":"entry-7329","position":[-70.5172,37.3837,-841.2397],"yaw":-4.33457,"spawnMask":1},{"id":"creature-42702","entityId":"entry-7337","position":[-65.2572,36.9343,-842.3567],"yaw":-1.71377,"spawnMask":1},{"id":"creature-42703","entityId":"entry-7352","position":[35.4628,20.8643,-762.3097],"yaw":-0.437342,"spawnMask":1},{"id":"creature-42704","entityId":"entry-7344","position":[42.9128,21.2838,-765.4827],"yaw":-2.16991,"spawnMask":1},{"id":"creature-42705","entityId":"entry-7344","position":[39.5928,21.2245,-758.2977],"yaw":-0.943392,"spawnMask":1},{"id":"creature-42706","entityId":"entry-7348","position":[43.6428,21.7019,-753.3377],"yaw":-2.56806,"spawnMask":1},{"id":"creature-42707","entityId":"entry-7344","position":[46.3228,22.06,-759.3837],"yaw":-1.37881,"spawnMask":1},{"id":"creature-42711","entityId":"entry-7329","position":[-20.9172,33.4144,-845.5117],"yaw":-6.09667,"spawnMask":1},{"id":"creature-42712","entityId":"entry-7329","position":[-23.5372,33.4144,-851.9847],"yaw":-0.56702,"spawnMask":1},{"id":"creature-42713","entityId":"entry-7337","position":[-26.5172,33.4977,-844.9527],"yaw":-5.96903,"spawnMask":1},{"id":"creature-42715","entityId":"entry-7352","position":[18.6928,15.1047,-813.7637],"yaw":-1.27455,"spawnMask":1},{"id":"creature-42716","entityId":"entry-7348","position":[16.5628,14.7562,-813.6217],"yaw":-1.27452,"spawnMask":1},{"id":"creature-42717","entityId":"entry-7329","position":[-58.2772,35.7276,-851.4467],"yaw":-5.88545,"spawnMask":1},{"id":"creature-42718","entityId":"entry-7328","position":[-66.0472,37.0343,-847.9667],"yaw":-6.01331,"spawnMask":1},{"id":"creature-42720","entityId":"entry-7347","position":[52.3528,33.8835,-721.4817],"yaw":-5.62966,"spawnMask":1},{"id":"creature-42721","entityId":"entry-7346","position":[48.6728,34.455,-716.0637],"yaw":-0.52512,"spawnMask":1},{"id":"creature-42722","entityId":"entry-7329","position":[-5.0872,30.1707,-868.8397],"yaw":-4.69989,"spawnMask":1},{"id":"creature-42723","entityId":"entry-7346","position":[77.0628,28.4411,-772.1867],"yaw":-5.3209,"spawnMask":1},{"id":"creature-42724","entityId":"entry-7346","position":[57.4328,34.6467,-714.6617],"yaw":-2.23633,"spawnMask":1},{"id":"creature-42725","entityId":"entry-7346","position":[76.8728,26.0533,-762.8167],"yaw":0,"spawnMask":1},{"id":"creature-42786","entityId":"entry-7337","position":[-4.4772,29.3937,-875.7317],"yaw":-2.07059,"spawnMask":1},{"id":"creature-42788","entityId":"entry-7329","position":[-14.2472,25.256,-912.4047],"yaw":-4.04916,"spawnMask":1},{"id":"creature-42789","entityId":"entry-7328","position":[-7.5272,27.3369,-903.3137],"yaw":-2.46071,"spawnMask":1},{"id":"creature-42790","entityId":"entry-7329","position":[-47.7072,31.6759,-903.2047],"yaw":-5.73285,"spawnMask":1},{"id":"creature-42791","entityId":"entry-7337","position":[-45.1472,31.879,-914.3937],"yaw":-2.0424,"spawnMask":1},{"id":"creature-42794","entityId":"entry-7328","position":[-53.4072,32.9453,-909.4027],"yaw":-6.19147,"spawnMask":1},{"id":"creature-44452","entityId":"entry-7329","position":[-5.0472,31.9211,-936.4987],"yaw":-1.61091,"spawnMask":1},{"id":"creature-44467","entityId":"entry-7328","position":[-0.3672,31.8378,-931.9337],"yaw":-4.26963,"spawnMask":1},{"id":"creature-45091","entityId":"entry-7337","position":[6.9628,31.8378,-936.6697],"yaw":-4.97067,"spawnMask":1},{"id":"creature-45538","entityId":"entry-7329","position":[-52.7972,39.6361,-949.7297],"yaw":-0.0245,"spawnMask":1},{"id":"creature-85583","entityId":"entry-7329","position":[13.8928,31.8307,-939.2767],"yaw":-5.77056,"spawnMask":1},{"id":"creature-87159","entityId":"entry-7328","position":[-64.1672,39.7086,-961.4997],"yaw":-2.56756,"spawnMask":1},{"id":"creature-87160","entityId":"entry-7337","position":[-62.6872,40.23,-953.8637],"yaw":-4.11696,"spawnMask":1},{"id":"creature-87172","entityId":"entry-7343","position":[-3.5672,39.6966,-1014.3917],"yaw":-3.83972,"spawnMask":1},{"id":"creature-87173","entityId":"entry-7343","position":[-10.9772,39.6055,-1037.3557],"yaw":-2.84489,"spawnMask":1},{"id":"creature-87174","entityId":"entry-7343","position":[-6.6272,40.2234,-1029.2647],"yaw":-3.19395,"spawnMask":1},{"id":"creature-87175","entityId":"entry-7343","position":[-3.8172,39.9025,-1020.9327],"yaw":-3.52556,"spawnMask":1},{"id":"creature-87177","entityId":"entry-7343","position":[7.5928,41.8405,-1036.0167],"yaw":-2.14675,"spawnMask":1},{"id":"creature-87178","entityId":"entry-7343","position":[-1.9472,40.398,-1042.8957],"yaw":-2.42601,"spawnMask":1},{"id":"creature-87179","entityId":"entry-7343","position":[-0.0872,40.4861,-1039.2957],"yaw":-2.53073,"spawnMask":1},{"id":"creature-87180","entityId":"entry-7343","position":[5.8328,40.5047,-1043.5457],"yaw":-2.14675,"spawnMask":1},{"id":"creature-87181","entityId":"entry-7343","position":[-4.5372,40.4118,-1035.6787],"yaw":-2.58309,"spawnMask":1},{"id":"creature-87182","entityId":"entry-7343","position":[2.7328,40.6678,-1034.5967],"yaw":-2.74017,"spawnMask":1},{"id":"creature-87183","entityId":"entry-7343","position":[1.3128,40.3504,-1049.5307],"yaw":-2.11185,"spawnMask":1},{"id":"creature-87184","entityId":"entry-7343","position":[2.2628,40.488,-1019.7187],"yaw":-3.82227,"spawnMask":1},{"id":"creature-87185","entityId":"entry-7343","position":[-2.3872,40.4967,-1032.0777],"yaw":-3.01942,"spawnMask":1},{"id":"creature-87186","entityId":"entry-7343","position":[4.0928,41.9564,-1029.8417],"yaw":-2.6529,"spawnMask":1},{"id":"creature-87187","entityId":"entry-7357","position":[14.9528,49.2058,-1029.0557],"yaw":-5.55015,"spawnMask":1},{"id":"creature-87188","entityId":"entry-7343","position":[-2.6072,40.1776,-1025.6497],"yaw":-3.31613,"spawnMask":1},{"id":"creature-87189","entityId":"entry-7343","position":[0.9128,41.1409,-1027.6087],"yaw":-3.29867,"spawnMask":1},{"id":"creature-87190","entityId":"entry-7343","position":[3.1528,41.7832,-1024.0347],"yaw":-3.63029,"spawnMask":1},{"id":"creature-87191","entityId":"entry-7343","position":[11.6428,40.5456,-1046.0877],"yaw":-1.64061,"spawnMask":1},{"id":"creature-87192","entityId":"entry-7343","position":[11.1628,41.2073,-1040.7347],"yaw":-1.72788,"spawnMask":1},{"id":"creature-87193","entityId":"entry-7343","position":[8.5428,40.3504,-1054.5347],"yaw":-1.74533,"spawnMask":1},{"id":"creature-87194","entityId":"entry-7343","position":[6.4128,40.3641,-1048.9587],"yaw":-1.90241,"spawnMask":1},{"id":"creature-87195","entityId":"entry-7343","position":[12.5728,40.4205,-1051.1837],"yaw":-1.5708,"spawnMask":1},{"id":"creature-87196","entityId":"entry-7348","position":[102.0728,14.8506,-798.4207],"yaw":-6.26162,"spawnMask":1},{"id":"creature-87197","entityId":"entry-7352","position":[106.0728,15.3678,-784.7927],"yaw":-2.26721,"spawnMask":1},{"id":"creature-87198","entityId":"entry-7344","position":[98.7028,15.2327,-789.8207],"yaw":-3.43725,"spawnMask":1},{"id":"creature-87199","entityId":"entry-7344","position":[106.8928,14.4823,-793.9857],"yaw":-5.33118,"spawnMask":1},{"id":"creature-87201","entityId":"entry-7345","position":[92.0928,27.2156,-771.4017],"yaw":-1.56939,"spawnMask":1},{"id":"creature-87202","entityId":"entry-7342","position":[85.7728,27.5669,-771.7627],"yaw":-2.5705,"spawnMask":1},{"id":"creature-87203","entityId":"entry-7346","position":[82.4628,28.9848,-766.2137],"yaw":-1.81994,"spawnMask":1},{"id":"creature-87204","entityId":"entry-7346","position":[89.0228,28.4956,-766.1207],"yaw":-5.2715,"spawnMask":1},{"id":"creature-87207","entityId":"entry-7343","position":[103.0928,14.5631,-792.0597],"yaw":-5.67051,"spawnMask":1},{"id":"creature-87208","entityId":"entry-7343","position":[103.2828,14.9449,-789.4807],"yaw":-5.81243,"spawnMask":1},{"id":"creature-87209","entityId":"entry-7358","position":[78.2028,40.8801,-739.5687],"yaw":-2.33874,"spawnMask":1},{"id":"creature-87212","entityId":"entry-7347","position":[43.1428,23.8721,-688.6687],"yaw":-3.60922,"spawnMask":1},{"id":"creature-87213","entityId":"entry-7342","position":[58.9528,35.0102,-706.5057],"yaw":-4.24915,"spawnMask":1},{"id":"creature-87215","entityId":"entry-7342","position":[70.7328,22.9028,-683.6087],"yaw":-4.52994,"spawnMask":1},{"id":"creature-87216","entityId":"entry-7346","position":[76.8528,23.468,-687.9387],"yaw":-5.0058,"spawnMask":1},{"id":"creature-87217","entityId":"entry-7347","position":[47.9928,23.1156,-687.0587],"yaw":-3.92188,"spawnMask":1},{"id":"creature-87218","entityId":"entry-7346","position":[48.3028,22.875,-681.3787],"yaw":-1.73413,"spawnMask":1},{"id":"creature-87219","entityId":"entry-7346","position":[53.2828,22.826,-683.6787],"yaw":-3.59712,"spawnMask":1},{"id":"creature-87220","entityId":"entry-7341","position":[34.6628,11.3552,-673.7287],"yaw":-3.33788,"spawnMask":1},{"id":"creature-87221","entityId":"entry-7344","position":[29.1128,10.6396,-671.5687],"yaw":-1.62255,"spawnMask":1},{"id":"creature-87222","entityId":"entry-7348","position":[39.2028,11.0618,-669.3187],"yaw":-0.052807,"spawnMask":1},{"id":"creature-87223","entityId":"entry-7348","position":[27.6428,10.4535,-663.8187],"yaw":-5.48754,"spawnMask":1},{"id":"creature-87224","entityId":"entry-7344","position":[33.9428,10.3814,-664.4487],"yaw":-2.7683,"spawnMask":1},{"id":"creature-87228","entityId":"entry-7347","position":[83.3028,23.1909,-683.2087],"yaw":-3.09463,"spawnMask":1},{"id":"creature-87229","entityId":"entry-7345","position":[102.9428,40.7889,-719.2797],"yaw":-4.62224,"spawnMask":1},{"id":"creature-87230","entityId":"entry-7346","position":[93.7728,39.4689,-704.8027],"yaw":-0.837758,"spawnMask":1},{"id":"creature-87231","entityId":"entry-7346","position":[101.0228,39.609,-705.8447],"yaw":-1.3179,"spawnMask":1},{"id":"creature-87232","entityId":"entry-7346","position":[96.5928,39.8324,-711.0607],"yaw":-0.407338,"spawnMask":1},{"id":"creature-87233","entityId":"entry-7346","position":[97.5928,40.8474,-716.9777],"yaw":-1.73634,"spawnMask":1},{"id":"creature-87235","entityId":"entry-7346","position":[74.3128,23.3698,-675.5987],"yaw":-1.21404,"spawnMask":1},{"id":"creature-87237","entityId":"entry-7347","position":[10.5928,34.0783,-644.5587],"yaw":-2.04848,"spawnMask":1},{"id":"creature-87238","entityId":"entry-7353","position":[7.5928,34.0783,-641.5587],"yaw":-1.13317,"spawnMask":1},{"id":"creature-87239","entityId":"entry-7346","position":[16.0528,33.882,-643.2087],"yaw":-4.13079,"spawnMask":1},{"id":"creature-87240","entityId":"entry-7346","position":[12.8328,33.532,-638.1587],"yaw":-4.03171,"spawnMask":1},{"id":"creature-87241","entityId":"entry-7344","position":[68.5328,23.614,-674.6287],"yaw":-4.18879,"spawnMask":1},{"id":"creature-87242","entityId":"entry-8567","position":[12.8628,9.4937,-693.6687],"yaw":-6.11095,"spawnMask":1},{"id":"creature-87243","entityId":"entry-7342","position":[103.8628,40.2547,-711.6737],"yaw":-0.833919,"spawnMask":1},{"id":"creature-87244","entityId":"entry-7347","position":[-3.9372,33.3533,-622.1487],"yaw":-0.039764,"spawnMask":1},{"id":"creature-87245","entityId":"entry-7346","position":[3.1028,33.4355,-623.2487],"yaw":-4.61104,"spawnMask":1},{"id":"creature-87246","entityId":"entry-7346","position":[12.1328,33.5572,-626.6187],"yaw":-5.67638,"spawnMask":1},{"id":"creature-87247","entityId":"entry-7353","position":[6.5228,33.4102,-627.3487],"yaw":-5.15106,"spawnMask":1},{"id":"creature-87248","entityId":"entry-7346","position":[6.4728,33.4578,-620.7587],"yaw":-0.473428,"spawnMask":1},{"id":"creature-87250","entityId":"entry-7347","position":[84.2728,17.2551,-607.5787],"yaw":-2.62714,"spawnMask":1},{"id":"creature-87251","entityId":"entry-7346","position":[81.6028,17.2551,-613.2887],"yaw":-5.9572,"spawnMask":1},{"id":"creature-87253","entityId":"entry-7346","position":[75.5928,17.3384,-609.2587],"yaw":-0.418879,"spawnMask":1},{"id":"creature-87254","entityId":"entry-7346","position":[80.3928,17.2551,-602.1687],"yaw":-2.49671,"spawnMask":1},{"id":"creature-87255","entityId":"entry-7342","position":[119.6228,24.6372,-720.5067],"yaw":-5.19039,"spawnMask":1},{"id":"creature-87256","entityId":"entry-7347","position":[123.6928,24.7438,-713.4327],"yaw":-2.52523,"spawnMask":1},{"id":"creature-87258","entityId":"entry-7352","position":[125.9228,11.2542,-676.8587],"yaw":-3.41611,"spawnMask":1},{"id":"creature-87259","entityId":"entry-7344","position":[137.1228,11.2659,-673.9587],"yaw":-0.956109,"spawnMask":1},{"id":"creature-87260","entityId":"entry-7348","position":[132.4128,11.044,-678.8787],"yaw":-3.54302,"spawnMask":1},{"id":"creature-87261","entityId":"entry-7344","position":[134.0628,11.3766,-684.3987],"yaw":-0.769891,"spawnMask":1},{"id":"creature-87264","entityId":"entry-7353","position":[84.2328,17.3384,-598.1287],"yaw":-6.2712,"spawnMask":1},{"id":"creature-87265","entityId":"entry-7347","position":[117.2228,27.7487,-754.9597],"yaw":-6.07286,"spawnMask":1},{"id":"creature-87266","entityId":"entry-7347","position":[117.8028,27.1777,-749.9887],"yaw":-1.71042,"spawnMask":1},{"id":"creature-87267","entityId":"entry-7346","position":[126.2228,27.589,-747.9807],"yaw":-4.45059,"spawnMask":1},{"id":"creature-87268","entityId":"entry-7344","position":[162.7728,12.3908,-724.9147],"yaw":-5.61897,"spawnMask":1},{"id":"creature-87269","entityId":"entry-7348","position":[158.7328,12.3909,-731.5407],"yaw":-4.58991,"spawnMask":1},{"id":"creature-87270","entityId":"entry-7344","position":[153.7428,12.6114,-726.3117],"yaw":-3.83972,"spawnMask":1},{"id":"creature-87271","entityId":"entry-7346","position":[131.7028,26.8027,-729.2607],"yaw":-4.2586,"spawnMask":1},{"id":"creature-87272","entityId":"entry-7346","position":[131.7828,25.6356,-721.8927],"yaw":-1.10869,"spawnMask":1},{"id":"creature-87276","entityId":"entry-7344","position":[144.1628,14.0415,-775.2877],"yaw":-3.87935,"spawnMask":1},{"id":"creature-87277","entityId":"entry-7348","position":[139.0828,13.7218,-769.7417],"yaw":-2.31183,"spawnMask":1},{"id":"creature-87278","entityId":"entry-7346","position":[122.6828,27.8127,-754.2227],"yaw":-4.32424,"spawnMask":1},{"id":"creature-87279","entityId":"entry-7341","position":[154.2128,12.4296,-738.3667],"yaw":-3.50811,"spawnMask":1},{"id":"creature-87280","entityId":"entry-7344","position":[162.0228,12.5508,-736.2677],"yaw":-0.220178,"spawnMask":1},{"id":"creature-87281","entityId":"entry-7341","position":[132.8928,14.1888,-765.7997],"yaw":-4.76254,"spawnMask":1},{"id":"creature-87282","entityId":"entry-7344","position":[144.3128,13.58,-766.4227],"yaw":-2.89744,"spawnMask":1},{"id":"creature-247108","entityId":"entry-7354","position":[116.8228,14.5035,-795.9747],"yaw":-0.304753,"spawnMask":1},{"id":"creature-248650","entityId":"entry-14686","position":[-101.6072,42.5397,-1004.6377],"yaw":-1.8675,"spawnMask":1},{"id":"encounter-434","entityId":"entry-7355","position":[-67.5724,37.0804,-237.0766],"yaw":0,"spawnMask":1},{"id":"encounter-2618","entityId":"entry-7356","position":[-55.7744,12.7264,-69.8097],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-28777","name":"Withered Spearhide Patrol","speed":1.15,"pathId":287770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-105.4472,36.2272,-667.3187],[-114.9072,39.4316,-649.1087],[-115.4972,41.0643,-626.0087],[-114.9072,39.4316,-649.1087]],"members":[{"id":"member","entityId":"entry-7332","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-31980","name":"Battle Boar Horror Patrol","speed":1.15,"pathId":319800,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-64.8372,33.4331,-814.6627],[-65.6772,32.666,-796.8107],[-36.5672,32.5565,-773.2527],[-58.5972,36.2973,-725.5167],[-72.1972,36.1855,-727.4387],[-90.8572,36.1855,-743.4207],[-72.1972,36.1855,-727.4387],[-58.5972,36.2973,-725.5167],[-36.5672,32.5565,-773.2527],[-65.6772,32.666,-796.8107]],"members":[{"id":"member","entityId":"entry-7334","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42678","name":"Frozen Soul Patrol","speed":1.15,"pathId":426780,"formationSource":"database-solo","spawnMask":1,"waypoints":[[3.1028,9.0071,-760.2807],[1.7228,9.218,-728.0517],[24.7228,10.5793,-677.7687],[1.7228,9.218,-728.0517]],"members":[{"id":"member","entityId":"entry-7352","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42681","name":"Skeletal Frostweaver Patrol","speed":1.15,"pathId":426810,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1.4628,9.1496,-761.0927],[-0.2172,9.4353,-726.8447],[21.5528,10.3553,-676.0687],[-0.2172,9.4353,-726.8447]],"members":[{"id":"member","entityId":"entry-7341","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42709","name":"Splinterbone Skeleton Patrol","speed":1.15,"pathId":427090,"formationSource":"database-solo","spawnMask":1,"waypoints":[[18.2028,10.0682,-685.4487],[47.0828,9.9924,-659.2387],[115.8628,10.9819,-660.1587],[159.4928,12.2438,-727.4797],[128.4928,14.2459,-775.0717],[159.4928,12.2438,-727.4797],[115.8628,10.9819,-660.1587],[47.0828,9.9924,-659.2387]],"members":[{"id":"member","entityId":"entry-7343","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42710","name":"Splinterbone Skeleton Patrol","speed":1.15,"pathId":427100,"formationSource":"database-solo","spawnMask":1,"waypoints":[[16.6428,10.0943,-683.8087],[45.0228,10.0501,-657.0587],[118.9228,11.0948,-658.7787],[161.4628,12.3036,-726.7467],[130.1828,14.0166,-777.9087],[161.4628,12.3036,-726.7467],[118.9228,11.0948,-658.7787],[45.0228,10.0501,-657.0587]],"members":[{"id":"member","entityId":"entry-7343","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42787","name":"Battle Boar Horror Patrol","speed":1.15,"pathId":427870,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-48.6172,31.2526,-897.0677],[-28.1972,27.623,-905.9307],[-16.5972,25.1727,-911.8897],[-6.7472,28.7726,-897.7167],[-7.3172,29.8033,-869.3907],[-6.7472,28.7726,-897.7167],[-16.5972,25.1727,-911.8897],[-39.4372,25.9651,-963.5897],[-16.5972,25.1727,-911.8897],[-28.1972,27.623,-905.9307]],"members":[{"id":"member","entityId":"entry-7334","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87205","name":"Boneflayer Ghoul Patrol","speed":1.15,"pathId":872050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[89.2728,39.2248,-703.8057],[53.5728,34.9712,-706.4457],[53.2728,32.1058,-735.2777],[63.9528,30.0619,-770.8587],[93.1028,27.2123,-771.3637],[63.9528,30.0619,-770.8587],[53.2728,32.1058,-735.2777],[53.5728,34.9712,-706.4457]],"members":[{"id":"member","entityId":"entry-7347","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87206","name":"Freezing Spirit Patrol","speed":1.15,"pathId":872060,"formationSource":"database-solo","spawnMask":1,"waypoints":[[89.1128,38.9,-707.0407],[55.9628,34.9867,-708.1037],[55.5528,32.2215,-735.1287],[64.0428,29.7951,-768.2927],[96.6128,27.1753,-769.8077],[64.0428,29.7951,-768.2927],[55.5528,32.2215,-735.1287],[55.9628,34.9867,-708.1037]],"members":[{"id":"member","entityId":"entry-7353","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87210","name":"Splinterbone Skeleton Patrol","speed":1.15,"pathId":872100,"formationSource":"database-solo","spawnMask":1,"waypoints":[[36.0628,21.4888,-746.0087],[28.1628,21.5378,-715.1747],[33.5328,24.4778,-696.2487],[60.3828,22.8434,-678.4287],[102.4428,23.4186,-684.9887],[60.3828,22.8434,-678.4287],[33.5328,24.4778,-696.2487],[28.1628,21.5378,-715.1747]],"members":[{"id":"member","entityId":"entry-7343","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87211","name":"Splinterbone Skeleton Patrol","speed":1.15,"pathId":872110,"formationSource":"database-solo","spawnMask":1,"waypoints":[[38.3828,21.6489,-746.4057],[31.8328,22.27,-714.7507],[36.8628,24.4794,-696.6787],[59.8628,22.4432,-681.1487],[102.0128,23.9582,-688.4287],[59.8628,22.4432,-681.1487],[36.8628,24.4794,-696.6787],[31.8328,22.27,-714.7507]],"members":[{"id":"member","entityId":"entry-7343","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87226","name":"Skeletal Frostweaver Patrol","speed":1.15,"pathId":872260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[19.2028,10.2288,-680.5087],[50.7928,10.1144,-658.3787],[110.8528,10.967,-658.6487],[142.1428,11.3505,-692.7487],[110.8528,10.967,-658.6487],[50.7928,10.1144,-658.3787]],"members":[{"id":"member","entityId":"entry-7341","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87227","name":"Thorn Eater Ghoul Patrol","speed":1.15,"pathId":872270,"formationSource":"database-solo","spawnMask":1,"waypoints":[[20.6828,10.276,-681.6187],[51.6928,10.5493,-660.0387],[108.9628,10.8411,-660.7387],[139.7828,11.6422,-693.8787],[108.9628,10.8411,-660.7387],[51.6928,10.5493,-660.0387]],"members":[{"id":"member","entityId":"entry-7348","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"encounter-434","name":"Tuten'kash","position":[-67.5724,37.0804,-237.0766]},{"id":"creature-87187","name":"Mordresh Fire Eye","position":[14.9528,49.2058,-1029.0557]},{"id":"creature-87242","name":"Glutton","position":[12.8628,9.4937,-693.6687]},{"id":"creature-87209","name":"Amnennar the Coldbringer","position":[78.2028,40.8801,-739.5687]},{"id":"creature-247108","name":"Ragglesnout","position":[116.8228,14.5035,-795.9747]},{"id":"encounter-2618","name":"Plaguemaw the Rotting","position":[-55.7744,12.7264,-69.8097]}],"objectiveOrder":[{"id":"encounter-434","name":"Tuten'kash","position":[-67.5724,37.0804,-237.0766]},{"id":"creature-87187","name":"Mordresh Fire Eye","position":[14.9528,49.2058,-1029.0557]},{"id":"creature-87242","name":"Glutton","position":[12.8628,9.4937,-693.6687]},{"id":"creature-87209","name":"Amnennar the Coldbringer","position":[78.2028,40.8801,-739.5687]},{"id":"creature-247108","name":"Ragglesnout","position":[116.8228,14.5035,-795.9747]},{"id":"encounter-2618","name":"Plaguemaw the Rotting","position":[-55.7744,12.7264,-69.8097]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32020,"id":157820,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2561.65,"position_y":692.778,"position_z":55.132,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32021,"id":157816,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2586.09,"position_y":765.225,"position_z":55.132,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32022,"id":157817,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2605.48,"position_y":726.652,"position_z":55.132,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32023,"id":157818,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2600.1,"position_y":709.109,"position_z":55.132,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32024,"id":157819,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2581.85,"position_y":698.974,"position_z":55.132,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32025,"id":148850,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2563.35,"position_y":1000.16,"position_z":61.1681,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32027,"id":151952,"map":129,"orientation":2.49582,"phaseMask":1,"position_x":2590.95,"position_y":944.905,"position_z":63.5354,"rotation0":0,"rotation1":0,"rotation2":0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32028,"id":142141,"map":129,"orientation":-2.32129,"phaseMask":1,"position_x":2479.97,"position_y":1006.34,"position_z":24.0507,"rotation0":0,"rotation1":0,"rotation2":-0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32029,"id":151951,"map":129,"orientation":0.087266,"phaseMask":1,"position_x":2586.83,"position_y":937.335,"position_z":54.6307,"rotation0":0,"rotation1":0,"rotation2":0.0436192,"rotation3":0.999048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32030,"id":151952,"map":129,"orientation":2.49582,"phaseMask":1,"position_x":2579.3,"position_y":933.342,"position_z":63.8774,"rotation0":0,"rotation1":0,"rotation2":0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32031,"id":151973,"map":129,"orientation":1.51844,"phaseMask":1,"position_x":2582.49,"position_y":941.554,"position_z":64.2574,"rotation0":0,"rotation1":0,"rotation2":0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32032,"id":75300,"map":129,"orientation":-2.05949,"phaseMask":1,"position_x":2502.75,"position_y":944.867,"position_z":49.1772,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32033,"id":148858,"map":129,"orientation":0.200711,"phaseMask":1,"position_x":2516.57,"position_y":881.267,"position_z":61.1051,"rotation0":0,"rotation1":0,"rotation2":0.100187,"rotation3":0.994969,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32035,"id":148847,"map":129,"orientation":3.14123,"phaseMask":1,"position_x":2459.19,"position_y":956.073,"position_z":35.414,"rotation0":-0.00516891,"rotation1":-0.0355492,"rotation2":0.999354,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32037,"id":148849,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2455.71,"position_y":925.767,"position_z":48.1272,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32039,"id":148848,"map":129,"orientation":3.03737,"phaseMask":1,"position_x":2529.56,"position_y":858.371,"position_z":48.5066,"rotation0":-0.240603,"rotation1":-0.0028944,"rotation2":0.969493,"rotation3":0.0467477,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32041,"id":148861,"map":129,"orientation":3.11178,"phaseMask":1,"position_x":2544.21,"position_y":865.916,"position_z":49.7136,"rotation0":-0.211318,"rotation1":0.0472574,"rotation2":0.975976,"rotation3":0.0241267,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32043,"id":148860,"map":129,"orientation":3.14676,"phaseMask":1,"position_x":2543.59,"position_y":850.734,"position_z":51.312,"rotation0":0.0219378,"rotation1":-0.00812531,"rotation2":-0.999723,"rotation3":0.00240451,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":32045,"id":148917,"map":129,"orientation":2.68781,"phaseMask":1,"position_x":2552.44,"position_y":856.984,"position_z":51.495,"rotation0":0,"rotation1":0,"rotation2":0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32046,"id":148846,"map":129,"orientation":2.73447,"phaseMask":1,"position_x":2439.51,"position_y":996.783,"position_z":49.2134,"rotation0":0.00810099,"rotation1":0.107634,"rotation2":0.97333,"rotation3":0.202433,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32048,"id":40198,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2409.97,"position_y":954.724,"position_z":54.7089,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32050,"id":2046,"map":129,"orientation":-0.663225,"phaseMask":1,"position_x":2413.38,"position_y":939.964,"position_z":45.2382,"rotation0":0,"rotation1":0,"rotation2":-0.325568,"rotation3":0.945519,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32051,"id":1628,"map":129,"orientation":-0.20944,"phaseMask":1,"position_x":2422,"position_y":982.551,"position_z":48.5452,"rotation0":0,"rotation1":0,"rotation2":-0.104529,"rotation3":0.994522,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32052,"id":142141,"map":129,"orientation":3.05433,"phaseMask":1,"position_x":2536.55,"position_y":736.053,"position_z":53.7239,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32053,"id":1628,"map":129,"orientation":1.3439,"phaseMask":1,"position_x":2599.42,"position_y":701.18,"position_z":55.4969,"rotation0":0,"rotation1":0,"rotation2":0.622513,"rotation3":0.782609,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32054,"id":2046,"map":129,"orientation":-0.645772,"phaseMask":1,"position_x":2582.36,"position_y":693.47,"position_z":56.6378,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32055,"id":1628,"map":129,"orientation":0.314159,"phaseMask":1,"position_x":2501.06,"position_y":666.093,"position_z":53.2512,"rotation0":0,"rotation1":0,"rotation2":0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32056,"id":148859,"map":129,"orientation":4.26339,"phaseMask":1,"position_x":2499.28,"position_y":667.883,"position_z":54.6696,"rotation0":0.0830717,"rotation1":-0.074296,"rotation2":-0.843264,"rotation3":0.525819,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32058,"id":148864,"map":129,"orientation":4.26339,"phaseMask":1,"position_x":2455.52,"position_y":698.852,"position_z":55.8303,"rotation0":0.0830717,"rotation1":-0.074296,"rotation2":-0.843264,"rotation3":0.525819,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32060,"id":1628,"map":129,"orientation":0.349066,"phaseMask":1,"position_x":2459.58,"position_y":673.032,"position_z":63.7238,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32061,"id":148862,"map":129,"orientation":4.26339,"phaseMask":1,"position_x":2459.83,"position_y":641.64,"position_z":55.662,"rotation0":0.0830717,"rotation1":-0.074296,"rotation2":-0.843264,"rotation3":0.525819,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32063,"id":148863,"map":129,"orientation":4.26339,"phaseMask":1,"position_x":2433.28,"position_y":653.952,"position_z":55.7454,"rotation0":0.0830717,"rotation1":-0.074296,"rotation2":-0.843264,"rotation3":0.525819,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":32065,"id":40199,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2394.63,"position_y":886.028,"position_z":55.4499,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35667,"id":40200,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2399.8,"position_y":893.103,"position_z":39.144,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35669,"id":142141,"map":129,"orientation":-2.3911,"phaseMask":1,"position_x":2423.88,"position_y":1027.32,"position_z":38.2242,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35670,"id":148843,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2436.99,"position_y":1058.62,"position_z":59.6726,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35672,"id":148844,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2427.53,"position_y":1051.77,"position_z":40.9434,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35674,"id":148845,"map":129,"orientation":3.13545,"phaseMask":1,"position_x":2416.99,"position_y":1032.8,"position_z":39.0779,"rotation0":-0.0242677,"rotation1":-0.0794239,"rotation2":0.996545,"rotation3":0.00114512,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35676,"id":148857,"map":129,"orientation":2.53945,"phaseMask":1,"position_x":2312.43,"position_y":989.682,"position_z":58.8116,"rotation0":0,"rotation1":0,"rotation2":0.955019,"rotation3":0.296545,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35678,"id":40201,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2361.76,"position_y":965.172,"position_z":39.826,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35680,"id":148856,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2323.65,"position_y":1008.87,"position_z":51.9277,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35682,"id":75300,"map":129,"orientation":1.309,"phaseMask":1,"position_x":2358.62,"position_y":966.718,"position_z":40.2895,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35683,"id":148851,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2358.82,"position_y":903.675,"position_z":28.7906,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35685,"id":148853,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2341.9,"position_y":902.615,"position_z":54.8697,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35687,"id":148854,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2328.16,"position_y":922.935,"position_z":51.7426,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35689,"id":148855,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2325.3,"position_y":908.668,"position_z":58.5663,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35691,"id":148852,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2360.86,"position_y":889.033,"position_z":60.6865,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/RazorfenDowns":"3ccc15717f5d3619c0d06ffa983b1bbd41f108e9c9c91636f48bf9832915dd93","patch/World/maps/RazorfenDowns":"c54479d549d6d9c47d12735096f8d9ea6777346538c2ad79f0c1e053db240421"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/razorfen-downs/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["25/25 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"scarlet-monastery","title":"Scarlet Monastery","mapId":189,"lfgDungeonIds":[18,163,164,165],"expansion":"classic","environmentMode":"adt-hybrid","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[26,45]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Scarlet Monastery","theme":"Open-world expedition","summary":"Fight through Scarlet Monastery, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Scarlet Monastery...","unchartedAreaName":"Uncharted Scarlet Monastery","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1489.2278},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/189-monasteryinstances/visual.glb","checksum":"5a74f8355d4060259befe4310ca56912e53e906ab9c04dc255ad337a022d5355","size":20257948,"triangleCount":2584921}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-000.glb","checksum":"d0c3299ea5ded62a251b68e83451d02aecbbc85e87b6180344d21d6ef1d15fe2","size":113760,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-001.glb","checksum":"343b0a65ed770b9617f265398bce94b52e51f47c0be65e12961b52e42bedaaf0","size":113404,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-002.glb","checksum":"70e2e9ba7f5933c35bf5fc2252b4040ad531ddcc0d88ac018dce893cff562923","size":113224,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-003.glb","checksum":"297e8c08db94a1d4e3bbffb973e90b3bd9a4aa3b21ae50a74bae463b6a2f9239","size":113564,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-004.glb","checksum":"07d51b7eba9b44d44531b82c12974da9a21f75c5a3f5a9c969831ab470f54974","size":113400,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-005.glb","checksum":"9fd3f2e4638570b4000a59a2038eed768e523f75ee86bcf2e2d436bb07ac98dd","size":113752,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-006.glb","checksum":"a0db3bd31e9206e8f38c3ac8b26bec6d8414ad2abdc0fbddbe0fbf5309cd41c5","size":113584,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-007.glb","checksum":"af616578ecb2b82ca4ba4a65656f10ad2d0035fcbb1b9c9912e87dd91c8971f3","size":111572,"triangleCount":64512},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-008.glb","checksum":"015b037edb5b874fe37dace7ccc300170c2c91f7d255dee9e28598691c0f9b2a","size":752008,"triangleCount":58367},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-009.glb","checksum":"6f3d6f165bece112f8ec37bc9941f0f70dceb0c9a710d707f8e438bf75a1f8e0","size":113048,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-010.glb","checksum":"956d7f3690cc8f637a048a22cf519c13f2bb20a9342e9c21b89b75abdb7c252b","size":717348,"triangleCount":54646},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-011.glb","checksum":"cbe22e3fd08de619c69e4b07a25fc17255e18f0c11b1504db60fff463c0c7f6f","size":113152,"triangleCount":65280},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-012.glb","checksum":"2db39239150831e5332107a16d1d48c7d1de542595af91efdca6aa61ec83b691","size":113224,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-013.glb","checksum":"9d0977cec5676e7c056fea4ae6f744c6e4af84fa2ef60a9d97570f4c81e43cd1","size":113576,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-014.glb","checksum":"d82b7e84a1cd82060b1d689e07731170724fed1236f7c8f78275cad4f100750b","size":113380,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-015.glb","checksum":"cd60ba21373412aa70a3add5b2289f349b5e915049f0c19b29f04c5e1f563912","size":113384,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-016.glb","checksum":"37c2be520b7f3cb894141e0ad2ddb2669144316d8b727c8145be37ffefdbe12b","size":112424,"triangleCount":65136},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-017.glb","checksum":"3f4a78baf88fa234f4c1c19836ee2df6e3b9830d234201a01f6ab51837670799","size":113692,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-018.glb","checksum":"3f54e39288b3c987f8b2ef395257894bb61ce0c17d52f34a9a3db797d6e17196","size":113380,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-019.glb","checksum":"58958d8c718846285d68dc69373e94d2e07cdce19408d386f656f794cc00ea6e","size":113596,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-020.glb","checksum":"fd6ff2618c2181c0c15847394831bcd0812fae6a50f20a993f49f1f5dac57d2d","size":113632,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-021.glb","checksum":"f7ff4cd70711b3a9168339f48793f6f5241cebfa4398bcc88120c757003f231a","size":113228,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-022.glb","checksum":"4b4cd8a206f546dd5d75188f0bec5ab99ef3e71cc4839b24e50eb3c5ab21cdbe","size":113048,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-023.glb","checksum":"702ccb99de34b593ebd7f4beafc29b6ea694cfd3da883d0e3f0230a2ed23d607","size":113692,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-024.glb","checksum":"d1c5ebd7592e4aae7fb18716b64d518b41a2bc97f0c2f1135f60373e4233e345","size":113440,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-025.glb","checksum":"1a66ca04f6b73699de6456454f981444f4c271f18d641c1244cbf05c49e3c17b","size":113624,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-026.glb","checksum":"693b64a5d3bb2bc2c312d75894a8f474ba11e514b8fce05e4a133d92a77213c5","size":113948,"triangleCount":65536},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-027.glb","checksum":"ab9414b99167b44708db8842fc587fc9bf15559e3e69303d6e5af45c84fb80ea","size":113452,"triangleCount":65536},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-028.glb","checksum":"ade13d4e9921a2265c996a60d8117242cf13028a1c836b9c92f2a4f366df22a2","size":607272,"triangleCount":50259},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-029.glb","checksum":"5a33702d71847f7301a17a4ee4d9838ad7ab98580f9f6e46d8fee36399f7fc5f","size":113272,"triangleCount":65536},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-030.glb","checksum":"5befa71c228d06efe93b91fee2765de405a16213cfc421478a9763236d22cac7","size":113692,"triangleCount":65536},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-031.glb","checksum":"17a331ffad0dbc1b6f871e1995628cea2b4a61641e0ead361884733cb776dcdc","size":113616,"triangleCount":65536},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-032.glb","checksum":"cf3e36b973bfeb8b27c386480b42b6f84c1c3f2c38d92962bd6d6068d9f683c2","size":820352,"triangleCount":64033},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-033.glb","checksum":"3e4b45f13ea5013d0486681e220409c1d45cb657b9af8626c04f0fad3b4d56f9","size":114132,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-034.glb","checksum":"2233e71eaee5e04e637abc79300efb4d8ec58b24bb00f0d1da122be3d27727e0","size":113872,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-035.glb","checksum":"f7f4a3397079fd312e83dca9004859bf5c9ec7ad0468a5b72e2598f9ad03eb57","size":113516,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-036.glb","checksum":"79ca9fac6df5610e58bd13389ab8df66fd6e2b6ab1f59b319817575cc8b54266","size":113336,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-037.glb","checksum":"1f36edbe85ac9a8f28daccdaf413a5140c541f84965bc3ab9264d430411edf46","size":113564,"triangleCount":65536},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-038.glb","checksum":"dc8fccaced3cb5ec4acff45cd3a185a6c86d9d050596e715311d01592880129e","size":113512,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-039.glb","checksum":"d579d98aee7236b15dedc024163b7a680a855230545e6796fbba026adb70a3e8","size":113864,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/189-monasteryinstances/navigation.glb","checksum":"3ad09ecfdf9c51117f3257586e16b4fd97e71cefc40e02d147bd2e3976d16a0f","size":267376,"triangleCount":25804}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[842.9527,-27.7777,-834.5853],"max":[2840.6557,52.7508,1233.7867]},"entrance":{"name":"Scarlet Monastery Entrance","footPosition":[1297.1327,18.8171,779.4667],"forward":[0.3427831851216407,0,0.9394145453408006],"yaw":0.34987798263675796},"areas":[{"id":"entrance","name":"Scarlet Monastery Entrance","center":[1297.1327,18.8171,779.4667],"radius":35},{"id":"area-bloodmage-thalnos","name":"Bloodmage Thalnos's Encounter","center":[933.9027,-7.7777,910.8167],"radius":42},{"id":"area-houndmaster-loksey","name":"Houndmaster Loksey's Encounter","center":[2611.4817,18.7695,-789.5853],"radius":42},{"id":"area-arcanist-doan","name":"Arcanist Doan's Encounter","center":[2779.3047,18.626,-761.2033],"radius":42},{"id":"area-herod","name":"Herod's Encounter","center":[2782.2197,6.4004,1055.5667],"radius":42},{"id":"area-high-inquisitor-whitemane","name":"High Inquisitor Whitemane's Encounter","center":[951.5427,29.2327,292.6067],"radius":42}],"entities":{"entry-6489":{"id":"entry-6489","kind":"mob","name":"Ironspine","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/707138afbd77ec1a940d662fc32222f045bec0e87e0ab7ce83c282a9804ec065.glb","rotationY":-1.5707963267948966,"groundOffset":0.0027,"labelHeight":2.8408,"markerRadius":0.65}}},"entry-4306":{"id":"entry-4306","kind":"mob","name":"Scarlet Torturer","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9276","name":"Immolate","spellId":9276,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7432,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2607-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4283":{"id":"entry-4283","kind":"mob","name":"Scarlet Sentry","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2520-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3983":{"id":"entry-3983","kind":"mob","name":"Interrogator Vishas","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"crocolisk","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2044-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-6547":{"id":"entry-6547","kind":"mob","name":"Suffering Victim","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-1027-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-3981":{"id":"entry-3981","kind":"mob","name":"Vorrel Sengutz","combat":{"level":8,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2046-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-4308":{"id":"entry-4308","kind":"mob","name":"Unfettered Spirit","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-5430-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2488,"labelHeight":2.6366,"markerRadius":0.9526}}},"entry-6426":{"id":"entry-6426","kind":"mob","name":"Anguished Dead","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-10255-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.8066,"markerRadius":0.65}}},"entry-6427":{"id":"entry-6427","kind":"mob","name":"Haunting Phantasm","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8278","name":"Invisibility Detection","spellId":8278,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6325,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c55728c00da7742391fcf25802b59d661f313cdc864a9cdc4036d3a240cbbf5b.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.2201,"markerRadius":0.65}}},"entry-6488":{"id":"entry-6488","kind":"mob","name":"Fallen Champion","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-19644","name":"Strike","spellId":19644,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7483,"damageMultiplier":1.12},{"id":"spell-21949","name":"Rend","spellId":21949,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7483,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-5230-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-4543":{"id":"entry-4543","kind":"boss","name":"Bloodmage Thalnos","title":"Dungeon Boss","hasLoot":true,"combat":{"level":32,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12470","name":"Fire Nova","spellId":12470,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5251,"damageMultiplier":0.82,"radius":11},{"id":"spell-8053","name":"Flame Shock","spellId":8053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5251,"damageMultiplier":1.35},{"id":"spell-8814","name":"Flamestrike","spellId":8814,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5251,"damageMultiplier":1.35},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5251,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-11396-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0039,"labelHeight":3.3228,"markerRadius":0.65}}},"entry-4295":{"id":"entry-4295","kind":"mob","name":"Scarlet Myrmidon","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1700,"damageMultiplier":1},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6177,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2514-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3977":{"id":"entry-3977","kind":"boss","name":"High Inquisitor Whitemane","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22187","name":"Power Word: Shield","spellId":22187,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":7241,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-22187","durationMs":12000,"magnitude":0.25}},{"id":"spell-9481","name":"Holy Smite","spellId":9481,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7241,"damageMultiplier":1.35},{"id":"spell-9256","name":"Deep Sleep","spellId":9256,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":7241,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":4500}},{"id":"spell-12039","name":"Heal","spellId":12039,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":7241,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2043-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7721,"markerRadius":0.65}}},"entry-4294":{"id":"entry-4294","kind":"mob","name":"Scarlet Sorcerer","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8364","name":"Blizzard","spellId":8364,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6118,"damageMultiplier":0.62,"radius":8},{"id":"spell-6146","name":"Slow","spellId":6146,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6118,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2524-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4298":{"id":"entry-4298","kind":"mob","name":"Scarlet Defender","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":7036,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7036,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2462-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4301":{"id":"entry-4301","kind":"mob","name":"Scarlet Centurion","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31403","name":"Battle Shout","spellId":31403,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4797,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2499-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4300":{"id":"entry-4300","kind":"mob","name":"Scarlet Wizard","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8439","name":"Arcane Explosion","spellId":8439,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":4638,"damageMultiplier":0.62,"radius":8},{"id":"spell-2601","name":"Fire Shield III","spellId":2601,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":4638,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-2601","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2525-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4299":{"id":"entry-4299","kind":"mob","name":"Scarlet Chaplain","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-1006","name":"Inner Fire","spellId":1006,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6488,"damageMultiplier":1.12},{"id":"spell-6066","name":"Power Word: Shield","spellId":6066,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":6488,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-6066","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2501-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4302":{"id":"entry-4302","kind":"mob","name":"Scarlet Champion","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17143","name":"Holy Strike","spellId":17143,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4936,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2460-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4540":{"id":"entry-4540","kind":"mob","name":"Scarlet Monk","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4528,"damageMultiplier":1.12},{"id":"spell-11978","name":"Kick","spellId":11978,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4528,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2603-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4303":{"id":"entry-4303","kind":"mob","name":"Scarlet Abbot","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-1006","name":"Inner Fire","spellId":1006,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4310,"damageMultiplier":1.12},{"id":"spell-6064","name":"Greater Heal","spellId":6064,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4310,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2492-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3976":{"id":"entry-3976","kind":"mob","name":"Scarlet Commander Mograine","combat":{"level":40,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-8990","name":"Retribution Aura","spellId":8990,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4193,"damageMultiplier":1.12},{"id":"spell-5589","name":"Hammer of Justice","spellId":5589,"delivery":"projectile","target":"random-party","school":"holy","animation":"cast","range":28,"cooldownMs":4193,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":1500}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2042-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-4542":{"id":"entry-4542","kind":"mob","name":"High Inquisitor Fairbanks","combat":{"level":40,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15090","name":"Dispel Magic","spellId":15090,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5985,"damageMultiplier":1.12},{"id":"spell-8282","name":"Curse of Blood","spellId":8282,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5985,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2605-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-4287":{"id":"entry-4287","kind":"mob","name":"Scarlet Gallant","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14517","name":"Crusader Strike","spellId":14517,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4384,"damageMultiplier":1.12},{"id":"spell-5589","name":"Hammer of Justice","spellId":5589,"delivery":"projectile","target":"random-party","school":"holy","animation":"cast","range":28,"cooldownMs":4384,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":1500}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2463-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4296":{"id":"entry-4296","kind":"mob","name":"Scarlet Adept","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6063","name":"Greater Heal","spellId":6063,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5791,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-9734","name":"Holy Smite","spellId":9734,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5791,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-5726-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4288":{"id":"entry-4288","kind":"mob","name":"Scarlet Beastmaster","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6597,"damageMultiplier":1.12},{"id":"spell-7896","name":"Exploding Shot","spellId":7896,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6597,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2497-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4304":{"id":"entry-4304","kind":"mob","name":"Scarlet Tracking Hound","combat":{"level":33,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0941,"markerRadius":1.0464}}},"entry-4291":{"id":"entry-4291","kind":"mob","name":"Scarlet Diviner","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6409,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2507-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3974":{"id":"entry-3974","kind":"boss","name":"Houndmaster Loksey","title":"Dungeon Boss","hasLoot":true,"combat":{"level":34,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6742","name":"Bloodlust","spellId":6742,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6272,"damageMultiplier":1.35},{"id":"spell-6192","name":"Battle Shout","spellId":6192,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6272,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2040-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-6487":{"id":"entry-6487","kind":"boss","name":"Arcanist Doan","title":"Dungeon Boss","hasLoot":true,"combat":{"level":35,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5149,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-5266-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0009,"labelHeight":3.0101,"markerRadius":0.65}}},"entry-4286":{"id":"entry-4286","kind":"mob","name":"Scarlet Soldier","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3639","name":"Improved Blocking","spellId":3639,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7340,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2522-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4297":{"id":"entry-4297","kind":"mob","name":"Scarlet Conjuror","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4220,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2503-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4289":{"id":"entry-4289","kind":"mob","name":"Scarlet Evoker","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4139,"damageMultiplier":1.12},{"id":"spell-2601","name":"Fire Shield III","spellId":2601,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":4139,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-2601","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2509-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4292":{"id":"entry-4292","kind":"mob","name":"Scarlet Protector","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31713","name":"Holy Light","spellId":31713,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4701,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4701,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2476-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4290":{"id":"entry-4290","kind":"mob","name":"Scarlet Guardsman","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6307,"damageMultiplier":1.12},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6307,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2511-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3975":{"id":"entry-3975","kind":"boss","name":"Herod","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-6268","name":"Rushing Charge","spellId":6268,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-30619","name":"Mortal Cleave","spellId":30619,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4140,"damageMultiplier":0.82,"radius":11},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4140,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2041-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0009,"labelHeight":3.1165,"markerRadius":0.65}}},"entry-6490":{"id":"entry-6490","kind":"mob","name":"Azshir the Sleepless","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-5534-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-12164","entityId":"entry-6489","position":[1103.2127,18.2972,840.0867],"yaw":-0.051613,"spawnMask":1},{"id":"creature-27437","entityId":"entry-4306","position":[1227.0127,7.7132,841.8867],"yaw":-0.750492,"spawnMask":1},{"id":"creature-27438","entityId":"entry-4283","position":[1257.7527,7.0429,830.3467],"yaw":-1.50098,"spawnMask":1},{"id":"creature-27439","entityId":"entry-4283","position":[1247.1327,7.0429,854.0567],"yaw":-3.83972,"spawnMask":1},{"id":"creature-27442","entityId":"entry-4306","position":[1224.5527,7.7132,844.4867],"yaw":-3.92699,"spawnMask":1},{"id":"creature-27443","entityId":"entry-3983","position":[1226.1727,7.7132,877.0267],"yaw":-4.81711,"spawnMask":1},{"id":"creature-27446","entityId":"entry-4306","position":[1232.2927,7.7132,874.5067],"yaw":-2.87979,"spawnMask":1},{"id":"creature-27447","entityId":"entry-4306","position":[1203.9627,7.7132,845.9467],"yaw":0,"spawnMask":1},{"id":"creature-27448","entityId":"entry-4306","position":[1206.3727,7.7132,849.7667],"yaw":-3.14159,"spawnMask":1},{"id":"creature-39848","entityId":"entry-4306","position":[1207.0827,7.7132,847.6867],"yaw":-0.558505,"spawnMask":1},{"id":"creature-39849","entityId":"entry-6547","position":[1204.4727,8.9008,847.7067],"yaw":-0.785398,"spawnMask":1},{"id":"creature-39850","entityId":"entry-3981","position":[1231.1327,8.8976,876.6967],"yaw":-4.64258,"spawnMask":1},{"id":"creature-39851","entityId":"entry-4306","position":[1203.5727,7.7132,848.8667],"yaw":-3.4383,"spawnMask":1},{"id":"creature-39853","entityId":"entry-4306","position":[1207.3027,7.7132,883.9267],"yaw":-1.22173,"spawnMask":1},{"id":"creature-39854","entityId":"entry-4306","position":[1204.2327,7.7132,883.5467],"yaw":-5.37561,"spawnMask":1},{"id":"creature-39855","entityId":"entry-4306","position":[1180.2227,7.0433,897.9567],"yaw":-4.95674,"spawnMask":1},{"id":"creature-39856","entityId":"entry-6547","position":[1205.6827,8.8589,884.7167],"yaw":-5.63741,"spawnMask":1},{"id":"creature-39857","entityId":"entry-4306","position":[1184.6327,7.0433,898.3167],"yaw":-1.51844,"spawnMask":1},{"id":"creature-39858","entityId":"entry-4308","position":[1106.6127,18.3803,844.6467],"yaw":-4.46804,"spawnMask":1},{"id":"creature-39859","entityId":"entry-4308","position":[1102.9927,18.3803,849.7667],"yaw":0,"spawnMask":1},{"id":"creature-39860","entityId":"entry-4308","position":[1103.0827,18.5514,886.6767],"yaw":-0.802851,"spawnMask":1},{"id":"creature-39861","entityId":"entry-4308","position":[1103.7827,18.5474,889.3067],"yaw":0,"spawnMask":1},{"id":"creature-39862","entityId":"entry-4308","position":[1100.7427,18.5646,891.1467],"yaw":0,"spawnMask":1},{"id":"creature-39864","entityId":"entry-4308","position":[1099.9827,18.3803,844.5467],"yaw":-3.53748,"spawnMask":1},{"id":"creature-39865","entityId":"entry-6426","position":[1101.5427,18.3803,928.1667],"yaw":-4.55531,"spawnMask":1},{"id":"creature-39866","entityId":"entry-4308","position":[1088.1727,17.7938,867.7167],"yaw":-5.58505,"spawnMask":1},{"id":"creature-39867","entityId":"entry-4308","position":[1085.4127,17.8401,872.2267],"yaw":0,"spawnMask":1},{"id":"creature-39868","entityId":"entry-4308","position":[1082.8427,17.8045,868.7567],"yaw":0,"spawnMask":1},{"id":"creature-39870","entityId":"entry-6426","position":[1071.2327,18.3803,925.4067],"yaw":-3.08923,"spawnMask":1},{"id":"creature-39871","entityId":"entry-4308","position":[1043.3427,17.7426,863.6167],"yaw":-1.72788,"spawnMask":1},{"id":"creature-39872","entityId":"entry-4308","position":[1040.7827,18.2085,856.9767],"yaw":0,"spawnMask":1},{"id":"creature-39873","entityId":"entry-6427","position":[1067.5127,18.7526,887.7067],"yaw":-1.71042,"spawnMask":1},{"id":"creature-39874","entityId":"entry-4308","position":[1048.1527,17.9457,902.2667],"yaw":-5.74213,"spawnMask":1},{"id":"creature-39875","entityId":"entry-4308","position":[1050.3227,17.8319,906.3267],"yaw":0,"spawnMask":1},{"id":"creature-39876","entityId":"entry-4308","position":[1049.9727,17.7258,909.9467],"yaw":0,"spawnMask":1},{"id":"creature-39877","entityId":"entry-4308","position":[1071.9927,18.3803,846.8867],"yaw":-5.3058,"spawnMask":1},{"id":"creature-39878","entityId":"entry-4308","position":[1067.8727,18.3803,845.6767],"yaw":0,"spawnMask":1},{"id":"creature-39879","entityId":"entry-4308","position":[1069.3927,18.3803,850.5667],"yaw":0,"spawnMask":1},{"id":"creature-39880","entityId":"entry-6426","position":[1034.8627,18.9299,892.7667],"yaw":-4.42769,"spawnMask":1},{"id":"creature-39881","entityId":"entry-4308","position":[1036.6527,17.7417,864.1167],"yaw":-5.91172,"spawnMask":1},{"id":"creature-39882","entityId":"entry-6426","position":[1040.7127,18.6645,840.0767],"yaw":-3.89208,"spawnMask":1},{"id":"creature-39888","entityId":"entry-4308","position":[1035.5927,19.2376,928.2367],"yaw":-0.226893,"spawnMask":1},{"id":"creature-39889","entityId":"entry-6427","position":[1021.0127,18.786,835.9567],"yaw":-3.05433,"spawnMask":1},{"id":"creature-39891","entityId":"entry-6426","position":[1016.0527,19.1105,877.6567],"yaw":-3.80482,"spawnMask":1},{"id":"creature-39893","entityId":"entry-6427","position":[1029.5427,17.4626,944.1667],"yaw":-4.76481,"spawnMask":1},{"id":"creature-39894","entityId":"entry-6488","position":[1005.1627,19.5115,846.6467],"yaw":-5.03576,"spawnMask":1},{"id":"creature-39895","entityId":"entry-6427","position":[1006.5527,18.5971,939.2767],"yaw":-4.63511,"spawnMask":1},{"id":"creature-39896","entityId":"entry-4308","position":[1012.2527,17.7211,910.9467],"yaw":-5.91667,"spawnMask":1},{"id":"creature-39897","entityId":"entry-4308","position":[1012.9427,17.754,915.8967],"yaw":0,"spawnMask":1},{"id":"creature-39898","entityId":"entry-4308","position":[1008.4427,17.8553,914.0167],"yaw":0,"spawnMask":1},{"id":"creature-39899","entityId":"entry-6426","position":[987.8527,19.1105,885.8567],"yaw":-5.65487,"spawnMask":1},{"id":"creature-39900","entityId":"entry-6426","position":[992.3527,18.6649,860.8067],"yaw":-2.61366,"spawnMask":1},{"id":"creature-39901","entityId":"entry-6426","position":[982.2827,19.6526,852.4067],"yaw":-0.418879,"spawnMask":1},{"id":"creature-39903","entityId":"entry-4308","position":[953.4727,0.2229,865.8967],"yaw":-4.43314,"spawnMask":1},{"id":"creature-39904","entityId":"entry-4308","position":[950.1627,0.2229,867.3167],"yaw":0,"spawnMask":1},{"id":"creature-39905","entityId":"entry-4308","position":[953.0627,0.2229,871.1467],"yaw":0,"spawnMask":1},{"id":"creature-39906","entityId":"entry-6426","position":[933.6527,0.2229,877.7767],"yaw":-2.6529,"spawnMask":1},{"id":"creature-39907","entityId":"entry-6426","position":[944.1927,21.5898,829.9067],"yaw":-2.92881,"spawnMask":1},{"id":"creature-39908","entityId":"entry-6427","position":[932.7327,8.5857,905.3667],"yaw":-3.00822,"spawnMask":1},{"id":"creature-39910","entityId":"entry-4308","position":[950.0327,20.9985,857.8467],"yaw":-5.23599,"spawnMask":1},{"id":"creature-39911","entityId":"entry-4308","position":[948.7327,21.2596,863.8767],"yaw":0,"spawnMask":1},{"id":"creature-39912","entityId":"entry-4308","position":[942.9527,21.5528,862.9867],"yaw":0,"spawnMask":1},{"id":"creature-39913","entityId":"entry-4308","position":[948.8027,21.4236,934.6767],"yaw":-0.331613,"spawnMask":1},{"id":"creature-39914","entityId":"entry-4308","position":[976.8327,19.2894,932.3967],"yaw":-6.03884,"spawnMask":1},{"id":"creature-39915","entityId":"entry-4308","position":[979.1727,19.33,934.3867],"yaw":0,"spawnMask":1},{"id":"creature-39916","entityId":"entry-4308","position":[977.0227,19.3462,935.9467],"yaw":0,"spawnMask":1},{"id":"creature-39917","entityId":"entry-6427","position":[949.5827,8.6668,901.8267],"yaw":-2.98451,"spawnMask":1},{"id":"creature-39930","entityId":"entry-4308","position":[948.3827,0.2229,874.0567],"yaw":-0.488692,"spawnMask":1},{"id":"creature-39931","entityId":"entry-4308","position":[944.6627,0.2229,871.7167],"yaw":0,"spawnMask":1},{"id":"creature-39932","entityId":"entry-4308","position":[944.4327,0.2229,876.7167],"yaw":0,"spawnMask":1},{"id":"creature-39933","entityId":"entry-6426","position":[950.4127,21.4447,908.2367],"yaw":-4.7822,"spawnMask":1},{"id":"creature-39934","entityId":"entry-4543","position":[933.9027,-7.7777,910.8167],"yaw":-3.15905,"spawnMask":1},{"id":"creature-39935","entityId":"entry-4308","position":[920.9127,0.2229,867.8467],"yaw":-3.78736,"spawnMask":1},{"id":"creature-39936","entityId":"entry-4308","position":[921.4627,0.2229,871.3567],"yaw":0,"spawnMask":1},{"id":"creature-39937","entityId":"entry-4308","position":[916.4527,0.2229,868.7067],"yaw":0,"spawnMask":1},{"id":"creature-39938","entityId":"entry-6426","position":[917.7627,8.6707,902.9567],"yaw":-1.65806,"spawnMask":1},{"id":"creature-39939","entityId":"entry-4308","position":[919.4627,8.5868,894.0767],"yaw":-3.41441,"spawnMask":1},{"id":"creature-39940","entityId":"entry-4308","position":[918.0527,8.5879,896.4767],"yaw":-4.42443,"spawnMask":1},{"id":"creature-39941","entityId":"entry-4308","position":[917.4927,8.5879,894.4967],"yaw":-3.33666,"spawnMask":1},{"id":"creature-39942","entityId":"entry-4308","position":[946.0527,21.8273,940.5167],"yaw":-3.0719,"spawnMask":1},{"id":"creature-39943","entityId":"entry-4308","position":[947.6627,21.7771,939.1967],"yaw":-5.25023,"spawnMask":1},{"id":"creature-39944","entityId":"entry-6426","position":[919.3327,0.2229,875.3167],"yaw":-1.0472,"spawnMask":1},{"id":"creature-39945","entityId":"entry-4295","position":[1028.0627,18.2289,-32.8223],"yaw":-3.15905,"spawnMask":1},{"id":"creature-39946","entityId":"entry-3977","position":[951.5427,29.2327,292.6067],"yaw":-3.12414,"spawnMask":1},{"id":"creature-39948","entityId":"entry-4295","position":[944.5627,18.2289,-36.2223],"yaw":-3.21141,"spawnMask":1},{"id":"creature-39949","entityId":"entry-4294","position":[990.6327,18.9007,17.7637],"yaw":-0.296706,"spawnMask":1},{"id":"creature-39950","entityId":"entry-4298","position":[944.6127,18.2289,-41.1253],"yaw":-6.26573,"spawnMask":1},{"id":"creature-39951","entityId":"entry-4294","position":[976.3627,18.9007,-19.5603],"yaw":-1.43117,"spawnMask":1},{"id":"creature-39952","entityId":"entry-4298","position":[991.2927,18.2289,-33.0173],"yaw":-3.10669,"spawnMask":1},{"id":"creature-39953","entityId":"entry-4301","position":[951.5827,18.2462,-0.2923],"yaw":-3.18328,"spawnMask":1},{"id":"creature-39954","entityId":"entry-4295","position":[972.6027,18.9007,-19.5453],"yaw":-4.85202,"spawnMask":1},{"id":"creature-39955","entityId":"entry-4298","position":[991.2027,18.2289,-44.2793],"yaw":-0.017453,"spawnMask":1},{"id":"creature-39956","entityId":"entry-4298","position":[989.9427,18.9007,-19.2413],"yaw":-0.802851,"spawnMask":1},{"id":"creature-39957","entityId":"entry-4294","position":[990.2527,18.9007,21.6867],"yaw":-3.03687,"spawnMask":1},{"id":"creature-39958","entityId":"entry-4301","position":[972.0427,18.219,-0.2723],"yaw":-4.96092,"spawnMask":1},{"id":"creature-39959","entityId":"entry-4301","position":[973.0627,18.1629,16.1097],"yaw":-0.018956,"spawnMask":1},{"id":"creature-39960","entityId":"entry-4300","position":[974.9427,18.2462,37.8527],"yaw":-5.91667,"spawnMask":1},{"id":"creature-39961","entityId":"entry-4295","position":[990.0927,18.9007,47.0627],"yaw":-0.122173,"spawnMask":1},{"id":"creature-39962","entityId":"entry-4298","position":[928.7227,18.2238,-1.0203],"yaw":-0.907571,"spawnMask":1},{"id":"creature-39964","entityId":"entry-4295","position":[912.9627,18.9007,-14.7623],"yaw":-3.59538,"spawnMask":1},{"id":"creature-39965","entityId":"entry-4295","position":[929.9127,18.9007,-19.5313],"yaw":-5.39307,"spawnMask":1},{"id":"creature-39966","entityId":"entry-4294","position":[915.8827,18.9007,-19.1183],"yaw":-0.785398,"spawnMask":1},{"id":"creature-39967","entityId":"entry-4300","position":[989.8827,18.9351,34.2827],"yaw":-3.14345,"spawnMask":1},{"id":"creature-39968","entityId":"entry-4294","position":[990.0027,18.9007,51.1227],"yaw":-3.05433,"spawnMask":1},{"id":"creature-39969","entityId":"entry-4295","position":[913.0627,18.9007,22.0897],"yaw":-4.59022,"spawnMask":1},{"id":"creature-39970","entityId":"entry-4300","position":[927.0127,18.2462,39.2817],"yaw":-2.42601,"spawnMask":1},{"id":"creature-39971","entityId":"entry-4298","position":[913.1327,18.9007,52.5317],"yaw":-3.03687,"spawnMask":1},{"id":"creature-39972","entityId":"entry-4295","position":[913.0527,18.9007,48.1367],"yaw":-0.05236,"spawnMask":1},{"id":"creature-39973","entityId":"entry-4301","position":[936.2027,18.9007,54.7747],"yaw":-2.16421,"spawnMask":1},{"id":"creature-39974","entityId":"entry-4301","position":[988.5027,27.5223,83.1887],"yaw":-5.51524,"spawnMask":1},{"id":"creature-39975","entityId":"entry-4298","position":[913.1927,27.5215,81.6077],"yaw":-3.33358,"spawnMask":1},{"id":"creature-39976","entityId":"entry-4298","position":[896.1527,29.3695,76.4337],"yaw":-0.907571,"spawnMask":1},{"id":"creature-39977","entityId":"entry-4295","position":[1007.4127,29.3695,76.6567],"yaw":-0.994838,"spawnMask":1},{"id":"creature-39978","entityId":"entry-4301","position":[1007.1827,29.2861,88.6017],"yaw":-3.14447,"spawnMask":1},{"id":"creature-39979","entityId":"entry-4294","position":[913.7327,27.5273,106.5167],"yaw":-6.16101,"spawnMask":1},{"id":"creature-39980","entityId":"entry-4295","position":[987.1327,27.4433,121.7367],"yaw":-0.467584,"spawnMask":1},{"id":"creature-39981","entityId":"entry-4300","position":[988.3227,27.5275,112.1167],"yaw":-4.13643,"spawnMask":1},{"id":"creature-39982","entityId":"entry-4295","position":[951.4327,27.5363,118.2567],"yaw":-3.15905,"spawnMask":1},{"id":"creature-39983","entityId":"entry-4301","position":[972.2427,27.5296,126.2167],"yaw":-1.309,"spawnMask":1},{"id":"creature-39984","entityId":"entry-4295","position":[1007.0927,29.3694,107.1567],"yaw":-2.80998,"spawnMask":1},{"id":"creature-39986","entityId":"entry-4298","position":[931.7427,27.5299,126.0367],"yaw":-4.66003,"spawnMask":1},{"id":"creature-39988","entityId":"entry-4298","position":[986.7727,27.5231,133.1167],"yaw":-2.40855,"spawnMask":1},{"id":"creature-39989","entityId":"entry-4301","position":[895.8927,29.3694,102.8867],"yaw":-6.17846,"spawnMask":1},{"id":"creature-39990","entityId":"entry-4300","position":[895.9227,29.3694,108.2167],"yaw":-2.82743,"spawnMask":1},{"id":"creature-39991","entityId":"entry-4295","position":[950.3227,27.5295,131.8867],"yaw":-2.14675,"spawnMask":1},{"id":"creature-39992","entityId":"entry-4295","position":[1007.0527,29.3694,135.7067],"yaw":-2.9147,"spawnMask":1},{"id":"creature-39993","entityId":"entry-4301","position":[968.4127,30.9865,153.5267],"yaw":-2.86234,"spawnMask":1},{"id":"creature-39994","entityId":"entry-4301","position":[963.2827,30.9865,154.8767],"yaw":-3.05433,"spawnMask":1},{"id":"creature-39995","entityId":"entry-4301","position":[914.5027,27.5227,133.0267],"yaw":-0.890118,"spawnMask":1},{"id":"creature-39996","entityId":"entry-4301","position":[939.7727,30.9865,155.2667],"yaw":-3.22886,"spawnMask":1},{"id":"creature-39997","entityId":"entry-4301","position":[934.6827,30.9865,153.6767],"yaw":-3.42085,"spawnMask":1},{"id":"creature-39998","entityId":"entry-4294","position":[901.4027,29.2861,136.1367],"yaw":-1.05107,"spawnMask":1},{"id":"creature-39999","entityId":"entry-4294","position":[897.0127,29.3694,133.2767],"yaw":-0.523599,"spawnMask":1},{"id":"creature-40000","entityId":"entry-4301","position":[978.3227,30.5259,172.0267],"yaw":-1.50098,"spawnMask":1},{"id":"creature-40001","entityId":"entry-4299","position":[972.7327,30.529,169.4167],"yaw":-5.91667,"spawnMask":1},{"id":"creature-40002","entityId":"entry-4301","position":[894.1727,29.3694,136.3467],"yaw":-4.03171,"spawnMask":1},{"id":"creature-40003","entityId":"entry-4301","position":[978.1327,30.5281,190.5167],"yaw":-1.50098,"spawnMask":1},{"id":"creature-40004","entityId":"entry-4302","position":[957.4827,30.5265,184.5667],"yaw":-0.069813,"spawnMask":1},{"id":"creature-40005","entityId":"entry-4540","position":[959.6327,30.5225,184.3567],"yaw":-0.139626,"spawnMask":1},{"id":"creature-40006","entityId":"entry-4540","position":[943.1727,30.5221,184.4167],"yaw":-6.12611,"spawnMask":1},{"id":"creature-40007","entityId":"entry-4303","position":[945.4027,30.5262,184.3667],"yaw":-6.17846,"spawnMask":1},{"id":"creature-40008","entityId":"entry-4299","position":[971.1427,30.5855,172.1067],"yaw":-3.12306,"spawnMask":1},{"id":"creature-40009","entityId":"entry-4301","position":[924.7727,30.5258,171.8267],"yaw":-4.81711,"spawnMask":1},{"id":"creature-40010","entityId":"entry-4302","position":[971.4427,30.4421,197.2767],"yaw":-3.1506,"spawnMask":1},{"id":"creature-40011","entityId":"entry-4303","position":[946.8127,30.5305,197.4867],"yaw":-6.16101,"spawnMask":1},{"id":"creature-40012","entityId":"entry-4299","position":[933.3827,30.5245,169.7567],"yaw":-4.7822,"spawnMask":1},{"id":"creature-40013","entityId":"entry-4303","position":[955.1427,30.5305,196.9867],"yaw":-0.087266,"spawnMask":1},{"id":"creature-40014","entityId":"entry-4301","position":[924.7427,30.5279,190.3967],"yaw":-4.67748,"spawnMask":1},{"id":"creature-40016","entityId":"entry-4302","position":[931.2327,30.5304,194.4367],"yaw":-5.23599,"spawnMask":1},{"id":"creature-40017","entityId":"entry-4302","position":[947.1927,30.5307,209.5167],"yaw":-6.19592,"spawnMask":1},{"id":"creature-40018","entityId":"entry-4303","position":[955.7627,30.5307,209.0367],"yaw":-0.174533,"spawnMask":1},{"id":"creature-40019","entityId":"entry-4300","position":[970.1027,30.4407,203.5567],"yaw":-3.14111,"spawnMask":1},{"id":"creature-40020","entityId":"entry-4303","position":[945.4727,30.5284,221.6667],"yaw":-6.14356,"spawnMask":1},{"id":"creature-40021","entityId":"entry-4540","position":[960.0027,30.522,221.7267],"yaw":-0.20944,"spawnMask":1},{"id":"creature-40022","entityId":"entry-4300","position":[972.9327,30.5307,213.5367],"yaw":-0.418879,"spawnMask":1},{"id":"creature-40023","entityId":"entry-4302","position":[931.2727,30.5303,214.3067],"yaw":-5.65487,"spawnMask":1},{"id":"creature-40024","entityId":"entry-4540","position":[942.8327,30.5224,221.4367],"yaw":-6.03884,"spawnMask":1},{"id":"creature-40025","entityId":"entry-4302","position":[957.5927,30.5248,221.5967],"yaw":-0.122173,"spawnMask":1},{"id":"creature-40026","entityId":"entry-4301","position":[924.9127,30.5284,208.9367],"yaw":-4.74729,"spawnMask":1},{"id":"creature-40027","entityId":"entry-4540","position":[945.3827,30.527,209.3667],"yaw":-6.10865,"spawnMask":1},{"id":"creature-40028","entityId":"entry-4301","position":[978.3727,30.5281,209.2467],"yaw":-1.50098,"spawnMask":1},{"id":"creature-40029","entityId":"entry-3976","position":[952.2227,32.7508,244.3467],"yaw":-6.12611,"spawnMask":1},{"id":"creature-40030","entityId":"entry-4299","position":[895.0327,30.5241,228.1267],"yaw":-4.36332,"spawnMask":1},{"id":"creature-40031","entityId":"entry-4302","position":[981.2527,30.5295,228.9767],"yaw":-1.46608,"spawnMask":1},{"id":"creature-40032","entityId":"entry-4300","position":[1008.7327,30.5245,228.1967],"yaw":-0.488692,"spawnMask":1},{"id":"creature-40033","entityId":"entry-4300","position":[899.3827,30.5259,226.8867],"yaw":-3.59538,"spawnMask":1},{"id":"creature-40035","entityId":"entry-4301","position":[1014.2927,30.5247,231.4467],"yaw":-1.5708,"spawnMask":1},{"id":"creature-40036","entityId":"entry-4301","position":[887.9527,30.5217,231.8367],"yaw":-4.69494,"spawnMask":1},{"id":"creature-40037","entityId":"entry-4302","position":[1007.3127,30.5266,232.3367],"yaw":-3.38594,"spawnMask":1},{"id":"creature-40038","entityId":"entry-4302","position":[912.3427,30.5278,250.8067],"yaw":-1.309,"spawnMask":1},{"id":"creature-40039","entityId":"entry-4542","position":[996.3427,30.5286,249.3367],"yaw":-4.69494,"spawnMask":1},{"id":"creature-40040","entityId":"entry-4540","position":[911.1527,31.7715,256.4167],"yaw":-5.8294,"spawnMask":1},{"id":"creature-40041","entityId":"entry-4540","position":[913.3427,31.7715,256.3567],"yaw":-0.279253,"spawnMask":1},{"id":"creature-40042","entityId":"entry-4299","position":[893.9027,30.5278,250.0667],"yaw":-4.17134,"spawnMask":1},{"id":"creature-40043","entityId":"entry-4540","position":[893.7727,31.7715,256.3067],"yaw":-0.10472,"spawnMask":1},{"id":"creature-40044","entityId":"entry-4540","position":[1010.1927,31.7724,257.4067],"yaw":-6.26573,"spawnMask":1},{"id":"creature-40045","entityId":"entry-4540","position":[2654.3797,20.3007,-666.4773],"yaw":-2.23402,"spawnMask":1},{"id":"creature-40046","entityId":"entry-4540","position":[2653.5907,20.3007,-646.1523],"yaw":-6.10865,"spawnMask":1},{"id":"creature-40048","entityId":"entry-4287","position":[2636.6247,19.4225,-691.3873],"yaw":-5.89921,"spawnMask":1},{"id":"creature-40049","entityId":"entry-4287","position":[2619.3467,19.424,-705.8203],"yaw":-3.12414,"spawnMask":1},{"id":"creature-40050","entityId":"entry-4299","position":[2652.3557,20.3007,-668.7653],"yaw":-5.67232,"spawnMask":1},{"id":"creature-40051","entityId":"entry-4296","position":[2636.6597,19.4225,-686.0763],"yaw":-3.54302,"spawnMask":1},{"id":"creature-40052","entityId":"entry-4287","position":[2639.1857,19.4225,-688.8123],"yaw":-1.46608,"spawnMask":1},{"id":"creature-40053","entityId":"entry-4288","position":[2624.1887,18.8175,-728.1273],"yaw":-0.837758,"spawnMask":1},{"id":"creature-40054","entityId":"entry-4304","position":[2626.3227,19.0339,-726.1083],"yaw":-3.22886,"spawnMask":1},{"id":"creature-40055","entityId":"entry-4299","position":[2655.0377,20.3007,-662.5003],"yaw":-6.0912,"spawnMask":1},{"id":"creature-40056","entityId":"entry-4291","position":[2653.6597,20.3007,-641.5913],"yaw":-3.28122,"spawnMask":1},{"id":"creature-40057","entityId":"entry-4287","position":[2580.3717,18.7536,-686.1833],"yaw":-2.30383,"spawnMask":1},{"id":"creature-40059","entityId":"entry-4288","position":[2609.7307,18.9641,-720.3443],"yaw":-0.645772,"spawnMask":1},{"id":"creature-40060","entityId":"entry-4304","position":[2608.5847,18.8133,-722.4733],"yaw":-3.49066,"spawnMask":1},{"id":"creature-40061","entityId":"entry-4287","position":[2573.2807,18.7536,-698.8133],"yaw":-4.67748,"spawnMask":1},{"id":"creature-40062","entityId":"entry-4296","position":[2577.3957,18.7536,-716.7853],"yaw":-4.99164,"spawnMask":1},{"id":"creature-40063","entityId":"entry-4287","position":[2590.6337,19.424,-728.0233],"yaw":-4.72984,"spawnMask":1},{"id":"creature-40064","entityId":"entry-4287","position":[2580.2397,18.7537,-668.6833],"yaw":-4.99164,"spawnMask":1},{"id":"creature-40065","entityId":"entry-4296","position":[2577.2707,18.7536,-688.4393],"yaw":-5.14872,"spawnMask":1},{"id":"creature-40066","entityId":"entry-4287","position":[2584.0627,18.7537,-668.5943],"yaw":-1.53589,"spawnMask":1},{"id":"creature-40067","entityId":"entry-4287","position":[2579.9657,18.7536,-715.3063],"yaw":-2.35619,"spawnMask":1},{"id":"creature-40070","entityId":"entry-4304","position":[2581.0447,18.6703,-708.4623],"yaw":-3.13901,"spawnMask":1},{"id":"creature-40071","entityId":"entry-4287","position":[2584.4267,18.7536,-641.6353],"yaw":-0.05236,"spawnMask":1},{"id":"creature-40072","entityId":"entry-4287","position":[2584.4037,18.7536,-638.1423],"yaw":-3.10669,"spawnMask":1},{"id":"creature-40073","entityId":"entry-4287","position":[2655.1597,18.7522,-680.4853],"yaw":-4.60767,"spawnMask":1},{"id":"creature-40074","entityId":"entry-4287","position":[2660.6967,18.7522,-680.8653],"yaw":-1.55334,"spawnMask":1},{"id":"creature-40075","entityId":"entry-4287","position":[2656.0597,18.7522,-714.4033],"yaw":-5.48033,"spawnMask":1},{"id":"creature-40076","entityId":"entry-4287","position":[2658.1397,18.7522,-712.0773],"yaw":-2.56563,"spawnMask":1},{"id":"creature-40077","entityId":"entry-4287","position":[2662.9787,18.7522,-698.0343],"yaw":-1.6057,"spawnMask":1},{"id":"creature-40078","entityId":"entry-4288","position":[2617.4527,18.8375,-742.5863],"yaw":-0.733038,"spawnMask":1},{"id":"creature-40079","entityId":"entry-4304","position":[2619.4457,18.8392,-741.4183],"yaw":-1.64061,"spawnMask":1},{"id":"creature-40080","entityId":"entry-4287","position":[2640.2667,19.424,-726.7363],"yaw":-1.51844,"spawnMask":1},{"id":"creature-40081","entityId":"entry-4287","position":[2619.4387,19.424,-755.5873],"yaw":-0.017453,"spawnMask":1},{"id":"creature-40083","entityId":"entry-4287","position":[2663.2937,18.7522,-734.8583],"yaw":-1.71042,"spawnMask":1},{"id":"creature-40084","entityId":"entry-4540","position":[2663.0177,20.2186,-644.4503],"yaw":-1.60504,"spawnMask":1},{"id":"creature-40085","entityId":"entry-4291","position":[2686.9447,18.757,-689.1063],"yaw":-2.63545,"spawnMask":1},{"id":"creature-40086","entityId":"entry-4291","position":[2676.3747,18.7566,-677.3493],"yaw":-1.53589,"spawnMask":1},{"id":"creature-40087","entityId":"entry-4299","position":[2683.2337,18.7589,-693.8443],"yaw":-5.49779,"spawnMask":1},{"id":"creature-40088","entityId":"entry-3974","position":[2611.4817,18.7695,-789.5853],"yaw":-0.10472,"spawnMask":1},{"id":"creature-40089","entityId":"entry-4304","position":[2612.0477,18.7695,-785.7693],"yaw":-2.96706,"spawnMask":1},{"id":"creature-40090","entityId":"entry-4304","position":[2608.3627,18.7695,-788.5653],"yaw":-4.43314,"spawnMask":1},{"id":"creature-40091","entityId":"entry-4304","position":[2609.0647,18.7695,-786.4333],"yaw":-3.80482,"spawnMask":1},{"id":"creature-40092","entityId":"entry-4291","position":[2683.2297,18.7568,-655.6113],"yaw":-4.69494,"spawnMask":1},{"id":"creature-40093","entityId":"entry-4291","position":[2685.7917,18.757,-661.5693],"yaw":-0.349066,"spawnMask":1},{"id":"creature-40094","entityId":"entry-4540","position":[2714.2587,20.6177,-657.6883],"yaw":-5.044,"spawnMask":1},{"id":"creature-40095","entityId":"entry-4291","position":[2717.6417,20.6216,-656.1603],"yaw":-2.16421,"spawnMask":1},{"id":"creature-40096","entityId":"entry-4540","position":[2677.2597,18.7568,-637.1113],"yaw":-4.99164,"spawnMask":1},{"id":"creature-40097","entityId":"entry-4299","position":[2681.6927,18.7568,-636.9553],"yaw":-1.309,"spawnMask":1},{"id":"creature-40099","entityId":"entry-4291","position":[2720.3747,20.6266,-629.6863],"yaw":-4.06662,"spawnMask":1},{"id":"creature-40100","entityId":"entry-4299","position":[2724.0897,20.6329,-631.8463],"yaw":-0.942478,"spawnMask":1},{"id":"creature-40101","entityId":"entry-4299","position":[2755.6137,20.6259,-655.7083],"yaw":-4.69494,"spawnMask":1},{"id":"creature-40102","entityId":"entry-4540","position":[2737.1237,20.3007,-643.5743],"yaw":-3.28122,"spawnMask":1},{"id":"creature-40103","entityId":"entry-4291","position":[2737.5557,20.3001,-646.3313],"yaw":-0.174533,"spawnMask":1},{"id":"creature-40104","entityId":"entry-4540","position":[2767.1557,19.0804,-727.5213],"yaw":-0.925025,"spawnMask":1},{"id":"creature-40105","entityId":"entry-4291","position":[2764.1227,19.0802,-727.5433],"yaw":-5.63741,"spawnMask":1},{"id":"creature-40106","entityId":"entry-4540","position":[2759.5677,20.6324,-658.0013],"yaw":-0.383972,"spawnMask":1},{"id":"creature-40107","entityId":"entry-4291","position":[2776.0337,18.7549,-677.5383],"yaw":-1.51844,"spawnMask":1},{"id":"creature-40108","entityId":"entry-4291","position":[2769.1567,18.7543,-693.0473],"yaw":-4.34587,"spawnMask":1},{"id":"creature-40110","entityId":"entry-4540","position":[2764.9117,19.076,-725.0193],"yaw":-3.14159,"spawnMask":1},{"id":"creature-40111","entityId":"entry-4291","position":[2783.4227,18.7559,-677.8093],"yaw":-4.5204,"spawnMask":1},{"id":"creature-40112","entityId":"entry-4540","position":[2772.5947,18.7599,-694.2193],"yaw":-1.27409,"spawnMask":1},{"id":"creature-40113","entityId":"entry-4540","position":[2759.7837,20.6332,-652.7203],"yaw":-2.77507,"spawnMask":1},{"id":"creature-40114","entityId":"entry-4540","position":[2756.4497,20.6271,-630.0173],"yaw":-4.29351,"spawnMask":1},{"id":"creature-40115","entityId":"entry-4291","position":[2760.7677,20.6344,-632.1083],"yaw":-1.0472,"spawnMask":1},{"id":"creature-40116","entityId":"entry-4291","position":[2783.5147,18.7581,-656.4733],"yaw":-4.88692,"spawnMask":1},{"id":"creature-40117","entityId":"entry-4291","position":[2786.3007,18.7599,-639.4573],"yaw":-1.06465,"spawnMask":1},{"id":"creature-40118","entityId":"entry-4540","position":[2781.6057,18.7569,-637.3313],"yaw":-4.31096,"spawnMask":1},{"id":"creature-40119","entityId":"entry-4540","position":[2781.4827,18.7556,-735.5463],"yaw":0,"spawnMask":1},{"id":"creature-40120","entityId":"entry-4540","position":[2778.1127,18.756,-735.5583],"yaw":-0.034907,"spawnMask":1},{"id":"creature-40121","entityId":"entry-4540","position":[2794.1097,19.0784,-726.4623],"yaw":-3.03687,"spawnMask":1},{"id":"creature-40122","entityId":"entry-4291","position":[2792.9507,19.0834,-729.4183],"yaw":-5.8294,"spawnMask":1},{"id":"creature-40123","entityId":"entry-4299","position":[2795.6557,19.083,-729.2803],"yaw":-0.471239,"spawnMask":1},{"id":"creature-40124","entityId":"entry-6487","position":[2779.3047,18.626,-761.2033],"yaw":-6.24828,"spawnMask":1},{"id":"creature-40126","entityId":"entry-4286","position":[2691.9907,18.2304,720.8267],"yaw":-3.1765,"spawnMask":1},{"id":"creature-40127","entityId":"entry-4286","position":[2733.7897,18.9007,731.8667],"yaw":-0.05236,"spawnMask":1},{"id":"creature-40128","entityId":"entry-4297","position":[2733.3267,18.9007,735.3267],"yaw":-3.10669,"spawnMask":1},{"id":"creature-40130","entityId":"entry-4286","position":[2697.1737,18.2462,761.0167],"yaw":-1.58825,"spawnMask":1},{"id":"creature-40131","entityId":"entry-4286","position":[2684.5087,18.2305,720.9367],"yaw":-3.05433,"spawnMask":1},{"id":"creature-40132","entityId":"entry-4286","position":[2698.5347,18.2462,768.7367],"yaw":-1.37881,"spawnMask":1},{"id":"creature-40133","entityId":"entry-4286","position":[2687.5387,18.9007,758.9167],"yaw":-4.11228,"spawnMask":1},{"id":"creature-40135","entityId":"entry-4286","position":[2690.2767,18.9007,801.3867],"yaw":-1.79769,"spawnMask":1},{"id":"creature-40136","entityId":"entry-4286","position":[2707.8807,18.2723,791.0467],"yaw":-6.21337,"spawnMask":1},{"id":"creature-40137","entityId":"entry-4286","position":[2722.6557,18.2876,789.4967],"yaw":-0.087266,"spawnMask":1},{"id":"creature-40139","entityId":"entry-4286","position":[2687.3817,18.9007,801.1967],"yaw":-4.55531,"spawnMask":1},{"id":"creature-40140","entityId":"entry-4286","position":[2729.0587,18.9007,800.9867],"yaw":-4.32842,"spawnMask":1},{"id":"creature-40141","entityId":"entry-4286","position":[2733.6907,18.9007,799.0067],"yaw":-1.15192,"spawnMask":1},{"id":"creature-40142","entityId":"entry-4289","position":[2713.5147,18.8165,807.7267],"yaw":-3.15247,"spawnMask":1},{"id":"creature-40143","entityId":"entry-4292","position":[2712.3447,8.2339,844.0767],"yaw":-5.48033,"spawnMask":1},{"id":"creature-40144","entityId":"entry-4286","position":[2736.4387,8.2336,841.5367],"yaw":-2.63545,"spawnMask":1},{"id":"creature-40145","entityId":"entry-4286","position":[2732.7447,8.2336,838.0267],"yaw":-5.13127,"spawnMask":1},{"id":"creature-40146","entityId":"entry-4292","position":[2737.2637,8.2333,837.8567],"yaw":-1.06465,"spawnMask":1},{"id":"creature-40147","entityId":"entry-4292","position":[2762.5667,8.2343,842.1267],"yaw":-2.37365,"spawnMask":1},{"id":"creature-40148","entityId":"entry-4290","position":[2758.0667,8.2334,837.6667],"yaw":-5.46288,"spawnMask":1},{"id":"creature-40149","entityId":"entry-4290","position":[2730.7617,8.2345,866.8567],"yaw":-6.16101,"spawnMask":1},{"id":"creature-40150","entityId":"entry-4292","position":[2715.7557,8.2332,847.1667],"yaw":-2.25148,"spawnMask":1},{"id":"creature-40152","entityId":"entry-4290","position":[2762.1927,8.234,863.9267],"yaw":-0.558505,"spawnMask":1},{"id":"creature-89058","entityId":"entry-4292","position":[2761.8967,8.2343,869.4867],"yaw":-2.68781,"spawnMask":1},{"id":"creature-89059","entityId":"entry-4292","position":[2731.8117,8.2346,872.4167],"yaw":-2.87979,"spawnMask":1},{"id":"creature-89060","entityId":"entry-4290","position":[2755.1507,8.2333,896.9367],"yaw":-2.21657,"spawnMask":1},{"id":"creature-89061","entityId":"entry-4292","position":[2751.9147,8.2351,892.5767],"yaw":-5.88176,"spawnMask":1},{"id":"creature-89062","entityId":"entry-4292","position":[2778.0207,8.2338,889.0867],"yaw":-5.8294,"spawnMask":1},{"id":"creature-89063","entityId":"entry-4290","position":[2781.1727,8.235,894.8067],"yaw":-2.6529,"spawnMask":1},{"id":"creature-89065","entityId":"entry-4295","position":[2735.8567,18.9,938.3067],"yaw":-0.628319,"spawnMask":1},{"id":"creature-89066","entityId":"entry-4298","position":[2752.8027,18.9017,939.3967],"yaw":-5.39307,"spawnMask":1},{"id":"creature-89067","entityId":"entry-4295","position":[2754.3567,18.9012,946.2267],"yaw":-3.24631,"spawnMask":1},{"id":"creature-89068","entityId":"entry-4295","position":[2758.9567,18.9007,939.1967],"yaw":-1.13446,"spawnMask":1},{"id":"creature-89069","entityId":"entry-4295","position":[2736.0727,18.9015,942.3567],"yaw":-2.33874,"spawnMask":1},{"id":"creature-89070","entityId":"entry-4298","position":[2731.9107,18.9007,941.8667],"yaw":-4.20624,"spawnMask":1},{"id":"creature-89072","entityId":"entry-4298","position":[2780.6177,18.9004,939.0067],"yaw":-0.122173,"spawnMask":1},{"id":"creature-89073","entityId":"entry-4290","position":[2779.5717,18.9005,943.6867],"yaw":-3.45575,"spawnMask":1},{"id":"creature-89074","entityId":"entry-4298","position":[2761.7687,18.9008,963.3567],"yaw":0,"spawnMask":1},{"id":"creature-89075","entityId":"entry-4292","position":[2761.3907,18.9008,968.7167],"yaw":-3.26377,"spawnMask":1},{"id":"creature-89076","entityId":"entry-4298","position":[2734.0347,18.9015,971.1867],"yaw":-3.47321,"spawnMask":1},{"id":"creature-89077","entityId":"entry-4298","position":[2738.6977,18.9016,970.3267],"yaw":-1.93731,"spawnMask":1},{"id":"creature-89078","entityId":"entry-4295","position":[2732.6847,18.901,964.8867],"yaw":-5.79449,"spawnMask":1},{"id":"creature-89079","entityId":"entry-4298","position":[2733.6237,18.9013,984.4667],"yaw":-1.50098,"spawnMask":1},{"id":"creature-89080","entityId":"entry-4295","position":[2758.5577,18.9007,995.2367],"yaw":-3.9968,"spawnMask":1},{"id":"creature-89081","entityId":"entry-4298","position":[2763.1137,18.9017,990.2067],"yaw":-0.628319,"spawnMask":1},{"id":"creature-89082","entityId":"entry-4298","position":[2729.3777,18.901,985.2567],"yaw":-4.36332,"spawnMask":1},{"id":"creature-89083","entityId":"entry-4290","position":[2788.8587,18.2309,1014.5867],"yaw":-0.174533,"spawnMask":1},{"id":"creature-89084","entityId":"entry-4298","position":[2790.9427,18.2309,1017.5367],"yaw":-2.02458,"spawnMask":1},{"id":"creature-89085","entityId":"entry-4295","position":[2772.5747,18.2309,1011.1167],"yaw":-6.17846,"spawnMask":1},{"id":"creature-89086","entityId":"entry-4295","position":[2787.7987,18.2309,1018.1667],"yaw":-3.82227,"spawnMask":1},{"id":"creature-89087","entityId":"entry-4295","position":[2745.3827,18.2309,1016.4767],"yaw":-0.890118,"spawnMask":1},{"id":"creature-89088","entityId":"entry-4295","position":[2739.2887,18.8998,998.1567],"yaw":-1.97222,"spawnMask":1},{"id":"creature-89089","entityId":"entry-4298","position":[2741.8547,18.2309,1017.6667],"yaw":-4.5204,"spawnMask":1},{"id":"creature-89090","entityId":"entry-4295","position":[2712.8887,18.9002,990.9367],"yaw":-3.64774,"spawnMask":1},{"id":"creature-89091","entityId":"entry-4295","position":[2716.4337,18.9008,988.9967],"yaw":-1.69297,"spawnMask":1},{"id":"creature-89092","entityId":"entry-4295","position":[2713.2047,18.9002,986.4167],"yaw":-5.89921,"spawnMask":1},{"id":"creature-89093","entityId":"entry-4292","position":[2735.5047,18.9004,996.6267],"yaw":-5.09636,"spawnMask":1},{"id":"creature-89094","entityId":"entry-4298","position":[2713.8577,18.2309,1022.1967],"yaw":-2.94961,"spawnMask":1},{"id":"creature-89095","entityId":"entry-4298","position":[2742.0417,18.2309,1022.0067],"yaw":-3.1765,"spawnMask":1},{"id":"creature-89097","entityId":"entry-3975","position":[2782.2197,6.4004,1055.5667],"yaw":-2.98451,"spawnMask":1},{"id":"creature-1975841","entityId":"entry-6490","position":[957.7927,20.6217,941.4467],"yaw":-3.13054,"spawnMask":1}],"roamingPacks":[{"id":"patrol-27440","name":"Scarlet Torturer Patrol","speed":1.15,"pathId":274400,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1229.3727,7.6306,850.0167],[1227.7827,7.6306,872.2067],[1190.4727,7.6306,873.3167],[1182.1527,6.9601,873.3267],[1182.3727,6.9601,890.4867],[1182.1527,6.9601,873.3267],[1190.4727,7.6306,873.3167],[1205.4827,7.6303,874.6067],[1208.8827,7.6303,851.0167]],"members":[{"id":"member","entityId":"entry-4306","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40015","name":"Scarlet Wizard Patrol","speed":1.15,"pathId":400150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[933.2827,30.4423,173.3967],[933.6527,30.4416,223.7967]],"members":[{"id":"member","entityId":"entry-4300","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40034","name":"Scarlet Wizard Patrol","speed":1.15,"pathId":400340,"formationSource":"database-solo","spawnMask":1,"waypoints":[[891.1727,30.4387,225.8567],[929.9727,30.4459,225.8367]],"members":[{"id":"member","entityId":"entry-4300","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40047","name":"Scarlet Gallant Patrol","speed":1.15,"pathId":400470,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2638.1997,19.3407,-710.2793],[2638.2747,19.3407,-753.8393]],"members":[{"id":"member","entityId":"entry-4287","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40058","name":"Scarlet Adept Patrol","speed":1.15,"pathId":400580,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2582.5697,18.6704,-708.5203],[2582.0297,18.6704,-682.7813],[2575.7807,18.6704,-656.9343],[2582.0297,18.6704,-682.7813]],"members":[{"id":"member","entityId":"entry-4296","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40068","name":"Scarlet Beastmaster Patrol","speed":1.15,"pathId":400680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2583.5087,18.6703,-708.3003],[2590.0407,19.3407,-708.5643],[2638.6087,19.3407,-708.1263],[2590.0407,19.3407,-708.5643]],"members":[{"id":"member","entityId":"entry-4288","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40082","name":"Scarlet Gallant Patrol","speed":1.15,"pathId":400820,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2636.2797,19.3407,-753.7693],[2593.4177,19.3407,-753.7913]],"members":[{"id":"member","entityId":"entry-4287","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40098","name":"Scarlet Chaplain Patrol","speed":1.15,"pathId":400980,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2729.6597,20.2176,-644.4923],[2692.1187,20.2064,-644.3703],[2689.7127,18.6738,-644.3933],[2679.9417,18.6738,-644.4833],[2679.8317,18.6738,-688.4213],[2679.9417,18.6738,-644.4833],[2689.7127,18.6738,-644.3933],[2692.1187,20.2064,-644.3703]],"members":[{"id":"member","entityId":"entry-4299","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40109","name":"Scarlet Monk Patrol","speed":1.15,"pathId":401090,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2779.5487,18.6743,-644.5073],[2779.8757,18.6743,-695.9583],[2779.8567,18.6743,-728.2073],[2779.8757,18.6743,-695.9583]],"members":[{"id":"member","entityId":"entry-4540","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40125","name":"Scarlet Soldier Patrol","speed":1.15,"pathId":401250,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2730.9857,18.8174,734.5467],[2731.4517,18.8174,799.5267]],"members":[{"id":"member","entityId":"entry-4286","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40129","name":"Scarlet Soldier Patrol","speed":1.15,"pathId":401290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2706.7057,18.1629,740.5767],[2714.0927,18.1629,792.2467]],"members":[{"id":"member","entityId":"entry-4286","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40138","name":"Scarlet Soldier Patrol","speed":1.15,"pathId":401380,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2689.1027,18.8174,800.6267],[2725.8827,18.8183,800.5667]],"members":[{"id":"member","entityId":"entry-4286","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40151","name":"Scarlet Protector Patrol","speed":1.15,"pathId":401510,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2759.4587,8.1511,867.2867],[2733.3957,8.1511,868.2967]],"members":[{"id":"member","entityId":"entry-4292","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-89064","name":"Scarlet Evoker Patrol","speed":1.15,"pathId":890640,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2777.3037,8.1511,893.5467],[2759.9467,8.1511,893.7167],[2760.0007,8.1511,871.4367],[2759.9467,8.1511,893.7167]],"members":[{"id":"member","entityId":"entry-4289","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-89071","name":"Scarlet Evoker Patrol","speed":1.15,"pathId":890710,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2777.3897,18.8172,940.6367],[2738.2317,18.8175,941.5767],[2737.3337,18.8174,964.9867],[2738.2317,18.8175,941.5767]],"members":[{"id":"member","entityId":"entry-4289","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-89096","name":"Scarlet Evoker Patrol","speed":1.15,"pathId":890960,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2719.6267,18.1477,1015.4667],[2746.0807,18.1477,1014.8767]],"members":[{"id":"member","entityId":"entry-4289","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-39934","name":"Bloodmage Thalnos","position":[933.9027,-7.7777,910.8167]},{"id":"creature-40088","name":"Houndmaster Loksey","position":[2611.4817,18.7695,-789.5853]},{"id":"creature-40124","name":"Arcanist Doan","position":[2779.3047,18.626,-761.2033]},{"id":"creature-89097","name":"Herod","position":[2782.2197,6.4004,1055.5667]},{"id":"creature-39946","name":"High Inquisitor Whitemane","position":[951.5427,29.2327,292.6067]}],"objectiveOrder":[{"id":"creature-39934","name":"Bloodmage Thalnos","position":[933.9027,-7.7777,910.8167]},{"id":"creature-40088","name":"Houndmaster Loksey","position":[2611.4817,18.7695,-789.5853]},{"id":"creature-40124","name":"Arcanist Doan","position":[2779.3047,18.626,-761.2033]},{"id":"creature-89097","name":"Herod","position":[2782.2197,6.4004,1055.5667]},{"id":"creature-39946","name":"High Inquisitor Whitemane","position":[951.5427,29.2327,292.6067]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11870,"id":75299,"map":189,"orientation":-1.55334,"phaseMask":1,"position_x":1762.11,"position_y":1153.56,"position_z":7.49028,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11871,"id":1624,"map":189,"orientation":1.6057,"phaseMask":1,"position_x":1776.21,"position_y":1224.47,"position_z":17.5028,"rotation0":0,"rotation1":0,"rotation2":0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11872,"id":75299,"map":189,"orientation":2.80998,"phaseMask":1,"position_x":1847.77,"position_y":1276.34,"position_z":18.1573,"rotation0":0,"rotation1":0,"rotation2":0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11873,"id":1628,"map":189,"orientation":0.174533,"phaseMask":1,"position_x":1756.58,"position_y":1345.03,"position_z":19.7123,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11874,"id":1624,"map":189,"orientation":-1.06465,"phaseMask":1,"position_x":1739.89,"position_y":1377.57,"position_z":17.521,"rotation0":0,"rotation1":0,"rotation2":-0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11875,"id":104591,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1069.95,"position_y":1399.14,"position_z":30.7956,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11876,"id":97700,"map":189,"orientation":-1.5708,"phaseMask":1,"position_x":1167.79,"position_y":1347.26,"position_z":31.5494,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11877,"id":104600,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1173.01,"position_y":1398.91,"position_z":31.9723,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11878,"id":2046,"map":189,"orientation":0.645772,"phaseMask":1,"position_x":914.585,"position_y":1382.04,"position_z":18.0142,"rotation0":0,"rotation1":0,"rotation2":0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11879,"id":2046,"map":189,"orientation":2.75762,"phaseMask":1,"position_x":1003.95,"position_y":1362.73,"position_z":27.3063,"rotation0":0,"rotation1":0,"rotation2":0.981627,"rotation3":0.190809,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11880,"id":2041,"map":189,"orientation":0.401426,"phaseMask":1,"position_x":997.603,"position_y":1402.26,"position_z":27.1362,"rotation0":0,"rotation1":0,"rotation2":0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11881,"id":104589,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1073.91,"position_y":1405.92,"position_z":30.2722,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11882,"id":165622,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1161.39,"position_y":1375.41,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11883,"id":165623,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1163.24,"position_y":1375.41,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11884,"id":165624,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1165.07,"position_y":1375.41,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11885,"id":165631,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1163.25,"position_y":1422.59,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11886,"id":165626,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1165.07,"position_y":1372.93,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11887,"id":165627,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1161.39,"position_y":1372.93,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11888,"id":165628,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1163.25,"position_y":1425.97,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11889,"id":165630,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1165.1,"position_y":1425.97,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11890,"id":165629,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1161.42,"position_y":1425.97,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11891,"id":165632,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1165.1,"position_y":1422.59,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11892,"id":165633,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1161.42,"position_y":1422.59,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11893,"id":165625,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1163.24,"position_y":1372.93,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":11894,"id":97701,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1169.03,"position_y":1345.63,"position_z":33.0456,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11895,"id":176667,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":222.625,"position_y":-285.836,"position_z":19.3069,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11896,"id":176665,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":219.111,"position_y":-285.836,"position_z":19.3069,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11897,"id":176666,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":217.263,"position_y":-285.836,"position_z":19.3069,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11898,"id":176668,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":224.473,"position_y":-285.836,"position_z":19.3069,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11899,"id":75299,"map":189,"orientation":2.51327,"phaseMask":1,"position_x":223.898,"position_y":-292.728,"position_z":19.1996,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11900,"id":2042,"map":189,"orientation":2.00713,"phaseMask":1,"position_x":191.442,"position_y":-254.219,"position_z":18.7887,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11901,"id":20726,"map":189,"orientation":2.67035,"phaseMask":1,"position_x":238.548,"position_y":-307.686,"position_z":21.4263,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11902,"id":175738,"map":189,"orientation":0.401426,"phaseMask":1,"position_x":238.811,"position_y":-305.724,"position_z":21.4395,"rotation0":0,"rotation1":0,"rotation2":0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11903,"id":175739,"map":189,"orientation":2.68781,"phaseMask":1,"position_x":270.507,"position_y":-305.725,"position_z":21.437,"rotation0":0,"rotation1":0,"rotation2":0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11904,"id":2041,"map":189,"orientation":-2.47837,"phaseMask":1,"position_x":120.013,"position_y":-263.813,"position_z":18.5465,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11905,"id":176681,"map":189,"orientation":4.99164,"phaseMask":1,"position_x":251.672,"position_y":-346.867,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798636,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11906,"id":176686,"map":189,"orientation":1.12574,"phaseMask":1,"position_x":251.752,"position_y":-375.464,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.533614,"rotation3":0.845728,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11907,"id":176680,"map":189,"orientation":4.26733,"phaseMask":1,"position_x":256.717,"position_y":-346.867,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.845727,"rotation3":0.533616,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11908,"id":175753,"map":189,"orientation":0.261799,"phaseMask":1,"position_x":249.214,"position_y":-369.016,"position_z":20.4024,"rotation0":0,"rotation1":0,"rotation2":0.130526,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11909,"id":176683,"map":189,"orientation":4.99164,"phaseMask":1,"position_x":273.072,"position_y":-347.144,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798636,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11910,"id":176675,"map":189,"orientation":4.26733,"phaseMask":1,"position_x":256.717,"position_y":-382.901,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.845727,"rotation3":0.533616,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12530,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":1006.26,"position_y":1378.22,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12531,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":1007.67,"position_y":1420.25,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12532,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":1015.81,"position_y":1413.2,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12533,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":1016.31,"position_y":1385.57,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12534,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":930.253,"position_y":1410.02,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12535,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":930.58,"position_y":1390.51,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12536,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":937.726,"position_y":1390.33,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12537,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":938.155,"position_y":1410.31,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12538,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":945.658,"position_y":1410.39,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12539,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":945.698,"position_y":1389.98,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12540,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":954.622,"position_y":1410.24,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12541,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":954.755,"position_y":1389.91,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12542,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":962.285,"position_y":1403.81,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12543,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":962.465,"position_y":1395.05,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12544,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":978.132,"position_y":1406.84,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12545,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":978.205,"position_y":1391.7,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12546,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":986.471,"position_y":1406.73,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12547,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":986.602,"position_y":1391.99,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12548,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":995.073,"position_y":1391.92,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12549,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":995.073,"position_y":1406.61,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12550,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":999.352,"position_y":1411.55,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12551,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":999.707,"position_y":1386.05,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":13436,"id":176676,"map":189,"orientation":4.99164,"phaseMask":1,"position_x":251.672,"position_y":-382.901,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798636,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":15006,"id":176684,"map":189,"orientation":1.12574,"phaseMask":1,"position_x":273.152,"position_y":-375.741,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.533614,"rotation3":0.845728,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":15007,"id":176682,"map":189,"orientation":4.26733,"phaseMask":1,"position_x":278.117,"position_y":-347.144,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.845727,"rotation3":0.533616,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":15008,"id":19284,"map":189,"orientation":-0.610865,"phaseMask":1,"position_x":281.39,"position_y":-352.262,"position_z":20.4047,"rotation0":0,"rotation1":0,"rotation2":-0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":15032,"id":75296,"map":189,"orientation":3.05433,"phaseMask":1,"position_x":277.401,"position_y":-365.671,"position_z":20.3969,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":15043,"id":21581,"map":189,"orientation":2.93215,"phaseMask":1,"position_x":280.905,"position_y":-354.204,"position_z":20.4015,"rotation0":0,"rotation1":0,"rotation2":0.994522,"rotation3":0.10453,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32221,"id":176685,"map":189,"orientation":1.85005,"phaseMask":1,"position_x":278.197,"position_y":-375.741,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.798635,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32222,"id":176678,"map":189,"orientation":4.99164,"phaseMask":1,"position_x":273.075,"position_y":-382.734,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798636,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32223,"id":176677,"map":189,"orientation":4.26733,"phaseMask":1,"position_x":278.12,"position_y":-382.734,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.845727,"rotation3":0.533616,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32224,"id":176690,"map":189,"orientation":3.42085,"phaseMask":1,"position_x":203.57,"position_y":-415.723,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":-0.990268,"rotation3":0.139175,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32225,"id":176687,"map":189,"orientation":5.83813,"phaseMask":1,"position_x":174.973,"position_y":-415.803,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":-0.220696,"rotation3":0.975343,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32226,"id":176689,"map":189,"orientation":2.69653,"phaseMask":1,"position_x":203.57,"position_y":-420.768,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":0.975342,"rotation3":0.2207,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32227,"id":176674,"map":189,"orientation":1.85005,"phaseMask":1,"position_x":256.797,"position_y":-411.498,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.798635,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32228,"id":176673,"map":189,"orientation":1.12574,"phaseMask":1,"position_x":251.752,"position_y":-411.498,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.533614,"rotation3":0.845728,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32229,"id":175758,"map":189,"orientation":-0.628319,"phaseMask":1,"position_x":260.621,"position_y":-418.135,"position_z":18.5252,"rotation0":0,"rotation1":0,"rotation2":-0.309017,"rotation3":0.951056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32230,"id":175730,"map":189,"orientation":2.19912,"phaseMask":1,"position_x":254.067,"position_y":-412.484,"position_z":20.4127,"rotation0":0,"rotation1":0,"rotation2":0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32231,"id":175756,"map":189,"orientation":-2.42601,"phaseMask":1,"position_x":219.355,"position_y":-423.785,"position_z":19.8973,"rotation0":0,"rotation1":0,"rotation2":-0.936673,"rotation3":0.350206,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32232,"id":21582,"map":189,"orientation":2.1293,"phaseMask":1,"position_x":244.774,"position_y":-423.123,"position_z":19.8917,"rotation0":0,"rotation1":0,"rotation2":0.874619,"rotation3":0.48481,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32233,"id":176679,"map":189,"orientation":1.12574,"phaseMask":1,"position_x":273.155,"position_y":-411.331,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.533614,"rotation3":0.845728,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32234,"id":175734,"map":189,"orientation":2.14675,"phaseMask":1,"position_x":274.557,"position_y":-411.359,"position_z":20.4126,"rotation0":0,"rotation1":0,"rotation2":0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32235,"id":175727,"map":189,"orientation":0.925024,"phaseMask":1,"position_x":266.258,"position_y":-432.047,"position_z":19.8889,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32236,"id":19283,"map":189,"orientation":-1.69297,"phaseMask":1,"position_x":277.481,"position_y":-425.391,"position_z":20.0659,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32237,"id":103664,"map":189,"orientation":-1.6057,"phaseMask":1,"position_x":277.586,"position_y":-429.488,"position_z":21.4194,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32238,"id":176691,"map":189,"orientation":2.69653,"phaseMask":1,"position_x":203.737,"position_y":-442.172,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":0.975342,"rotation3":0.2207,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32239,"id":176692,"map":189,"orientation":3.42085,"phaseMask":1,"position_x":203.737,"position_y":-437.126,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":-0.990268,"rotation3":0.139175,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32240,"id":176688,"map":189,"orientation":0.279252,"phaseMask":1,"position_x":174.973,"position_y":-420.848,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":0.139173,"rotation3":0.990268,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32241,"id":176693,"map":189,"orientation":5.83813,"phaseMask":1,"position_x":175.14,"position_y":-437.206,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":-0.220696,"rotation3":0.975343,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32242,"id":176672,"map":189,"orientation":3.50812,"phaseMask":1,"position_x":159.126,"position_y":-413.112,"position_z":18.5772,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32243,"id":175749,"map":189,"orientation":1.18682,"phaseMask":1,"position_x":160.654,"position_y":-440.271,"position_z":19.8477,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32244,"id":175761,"map":189,"orientation":-0.925024,"phaseMask":1,"position_x":147.959,"position_y":-412.862,"position_z":19.8459,"rotation0":0,"rotation1":0,"rotation2":-0.446198,"rotation3":0.894934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32245,"id":176669,"map":189,"orientation":0.0698136,"phaseMask":1,"position_x":130.5,"position_y":-434.093,"position_z":18.5772,"rotation0":0,"rotation1":0,"rotation2":0.0348997,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32246,"id":176670,"map":189,"orientation":5.41925,"phaseMask":1,"position_x":130.781,"position_y":-431.062,"position_z":18.5772,"rotation0":0,"rotation1":0,"rotation2":-0.418659,"rotation3":0.908143,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32247,"id":103821,"map":189,"orientation":0.017453,"phaseMask":1,"position_x":131.826,"position_y":-432.618,"position_z":18.5158,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32248,"id":176671,"map":189,"orientation":0,"phaseMask":1,"position_x":147.215,"position_y":-412.032,"position_z":18.5674,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32249,"id":175754,"map":189,"orientation":-0.349066,"phaseMask":1,"position_x":146.443,"position_y":-444.578,"position_z":19.8542,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32250,"id":101854,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1933.69,"position_y":-431.654,"position_z":18.671,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32251,"id":2042,"map":189,"orientation":0.453786,"phaseMask":1,"position_x":1651.94,"position_y":-371.805,"position_z":18.0233,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32252,"id":75300,"map":189,"orientation":0.034907,"phaseMask":1,"position_x":1684.87,"position_y":-345.412,"position_z":18.0233,"rotation0":0,"rotation1":0,"rotation2":0.0174526,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32253,"id":3704,"map":189,"orientation":-1.85005,"phaseMask":1,"position_x":1745.17,"position_y":-357.994,"position_z":8.01148,"rotation0":0,"rotation1":0,"rotation2":-0.798636,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32254,"id":3703,"map":189,"orientation":-1.51844,"phaseMask":1,"position_x":1771.76,"position_y":-377.259,"position_z":8.01092,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32255,"id":103820,"map":189,"orientation":-1.78024,"phaseMask":1,"position_x":1895.6,"position_y":-416.358,"position_z":19.2626,"rotation0":0,"rotation1":0,"rotation2":-0.777147,"rotation3":0.629319,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32256,"id":103820,"map":189,"orientation":-1.0821,"phaseMask":1,"position_x":1905.72,"position_y":-414.568,"position_z":19.0876,"rotation0":0,"rotation1":0,"rotation2":-0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32257,"id":103820,"map":189,"orientation":2.63545,"phaseMask":1,"position_x":1899.35,"position_y":-415.707,"position_z":19.2136,"rotation0":0,"rotation1":0,"rotation2":0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32258,"id":103820,"map":189,"orientation":-2.33874,"phaseMask":1,"position_x":1897.99,"position_y":-416.516,"position_z":19.2,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32259,"id":103820,"map":189,"orientation":-1.62316,"phaseMask":1,"position_x":1906.05,"position_y":-416.476,"position_z":19.2964,"rotation0":0,"rotation1":0,"rotation2":-0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32260,"id":101855,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1939.48,"position_y":-427.998,"position_z":17.0815,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32261,"id":175778,"map":189,"orientation":-0.523598,"phaseMask":1,"position_x":1945.12,"position_y":-420.068,"position_z":15.5816,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32262,"id":175772,"map":189,"orientation":0.514872,"phaseMask":1,"position_x":1945.1,"position_y":-443.14,"position_z":15.5829,"rotation0":0,"rotation1":0,"rotation2":0.254602,"rotation3":0.967046,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32263,"id":175771,"map":189,"orientation":-1.09083,"phaseMask":1,"position_x":1954.54,"position_y":-411.113,"position_z":14.5238,"rotation0":0,"rotation1":0,"rotation2":-0.518773,"rotation3":0.854912,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32264,"id":97803,"map":189,"orientation":-0.383973,"phaseMask":1,"position_x":1951.83,"position_y":-426.404,"position_z":6.29011,"rotation0":0,"rotation1":0,"rotation2":-0.190809,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32265,"id":97801,"map":189,"orientation":0.36652,"phaseMask":1,"position_x":1951.79,"position_y":-436.72,"position_z":6.29011,"rotation0":0,"rotation1":0,"rotation2":0.182236,"rotation3":0.983255,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32266,"id":175777,"map":189,"orientation":-1.5708,"phaseMask":1,"position_x":1965.05,"position_y":-408.534,"position_z":12.5446,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32267,"id":97802,"map":189,"orientation":2.46964,"phaseMask":1,"position_x":1972.01,"position_y":-437.26,"position_z":6.29011,"rotation0":0,"rotation1":0,"rotation2":0.944089,"rotation3":0.329691,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32268,"id":175780,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1965.08,"position_y":-454.683,"position_z":12.5446,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32269,"id":175773,"map":189,"orientation":2.08567,"phaseMask":1,"position_x":1976.57,"position_y":-451.619,"position_z":12.5446,"rotation0":0,"rotation1":0,"rotation2":0.863836,"rotation3":0.503773,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32270,"id":175775,"map":189,"orientation":-2.09439,"phaseMask":1,"position_x":1976.6,"position_y":-411.61,"position_z":12.5438,"rotation0":0,"rotation1":0,"rotation2":-0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32271,"id":175776,"map":189,"orientation":1.07338,"phaseMask":1,"position_x":1954.42,"position_y":-452.057,"position_z":14.5107,"rotation0":0,"rotation1":0,"rotation2":0.511294,"rotation3":0.859406,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32272,"id":175781,"map":189,"orientation":-2.62672,"phaseMask":1,"position_x":1985.06,"position_y":-420.051,"position_z":12.5317,"rotation0":0,"rotation1":0,"rotation2":-0.967046,"rotation3":0.254602,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32273,"id":175779,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1988.16,"position_y":-431.608,"position_z":12.5446,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32274,"id":175774,"map":189,"orientation":2.61799,"phaseMask":1,"position_x":1985.06,"position_y":-443.161,"position_z":12.5446,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39805,"id":186269,"map":189,"orientation":3.4034,"phaseMask":1,"position_x":1774.87,"position_y":1347.73,"position_z":17.9662,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39806,"id":186269,"map":189,"orientation":2.33874,"phaseMask":1,"position_x":1774.77,"position_y":1349.65,"position_z":18.0742,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39807,"id":186269,"map":189,"orientation":4.81711,"phaseMask":1,"position_x":1776.55,"position_y":1346.47,"position_z":17.9903,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39808,"id":186269,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1776.73,"position_y":1350.71,"position_z":18.2772,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39809,"id":186269,"map":189,"orientation":5.70723,"phaseMask":1,"position_x":1778.53,"position_y":1347.8,"position_z":18.1645,"rotation0":0,"rotation1":0,"rotation2":-0.284015,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39810,"id":186269,"map":189,"orientation":0.331611,"phaseMask":1,"position_x":1778.41,"position_y":1349.91,"position_z":18.2217,"rotation0":0,"rotation1":0,"rotation2":0.165047,"rotation3":0.986286,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39811,"id":186269,"map":189,"orientation":0.0698117,"phaseMask":1,"position_x":1765.26,"position_y":1347.54,"position_z":17.5504,"rotation0":0,"rotation1":0,"rotation2":0.0348988,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":39812,"id":186328,"map":189,"orientation":0.575957,"phaseMask":1,"position_x":1777.72,"position_y":1349.6,"position_z":18.2638,"rotation0":0,"rotation1":0,"rotation2":0.284015,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":39813,"id":186328,"map":189,"orientation":4.72984,"phaseMask":1,"position_x":1775.78,"position_y":1346.66,"position_z":18.0012,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":39814,"id":186328,"map":189,"orientation":0.0174525,"phaseMask":1,"position_x":1777.65,"position_y":1347.4,"position_z":18.1198,"rotation0":0,"rotation1":0,"rotation2":0.00872612,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":54946,"id":186327,"map":189,"orientation":4.62512,"phaseMask":1,"position_x":1776.36,"position_y":1348.66,"position_z":17.4133,"rotation0":0,"rotation1":0,"rotation2":-0.737277,"rotation3":0.675591,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":54947,"id":186267,"map":189,"orientation":6.14356,"phaseMask":1,"position_x":1776.44,"position_y":1348.63,"position_z":19.51,"rotation0":0,"rotation1":0,"rotation2":-0.0697556,"rotation3":0.997564,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":54948,"id":186314,"map":189,"orientation":5.00909,"phaseMask":1,"position_x":1762.91,"position_y":1347.56,"position_z":17.5611,"rotation0":0,"rotation1":0,"rotation2":-0.594823,"rotation3":0.803857,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63384,"id":1624,"map":189,"orientation":0.226892,"phaseMask":1,"position_x":1746.37,"position_y":1410.68,"position_z":22.1887,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63409,"id":1628,"map":189,"orientation":-2.68781,"phaseMask":1,"position_x":1796.03,"position_y":1417.5,"position_z":14.4893,"rotation0":0,"rotation1":0,"rotation2":-0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64019,"id":2042,"map":189,"orientation":-1.20428,"phaseMask":1,"position_x":1651.27,"position_y":-346.265,"position_z":18.1489,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64020,"id":2042,"map":189,"orientation":-0.593412,"phaseMask":1,"position_x":166.831,"position_y":-253.104,"position_z":19.0757,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64072,"id":2046,"map":189,"orientation":1.37881,"phaseMask":1,"position_x":944.069,"position_y":1421.18,"position_z":18.0233,"rotation0":0,"rotation1":0,"rotation2":0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64073,"id":2046,"map":189,"orientation":-0.261798,"phaseMask":1,"position_x":1037.43,"position_y":1401.24,"position_z":27.3085,"rotation0":0,"rotation1":0,"rotation2":-0.130525,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79203,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1000.33,"position_y":1449.26,"position_z":33.2207,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79204,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1000.46,"position_y":1348.97,"position_z":33.1527,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79205,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1008,"position_y":1348.97,"position_z":33.1856,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79206,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1008.14,"position_y":1449.26,"position_z":33.2373,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79207,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1015.94,"position_y":1449.26,"position_z":33.2645,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79208,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1016.01,"position_y":1348.97,"position_z":33.1771,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79209,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1023.71,"position_y":1348.97,"position_z":33.207,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79210,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1023.88,"position_y":1449.26,"position_z":33.2421,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79211,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1031.69,"position_y":1449.26,"position_z":33.2872,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79212,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1031.7,"position_y":1348.97,"position_z":33.2032,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79213,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1039.41,"position_y":1348.97,"position_z":33.2153,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79214,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1039.47,"position_y":1449.26,"position_z":33.2382,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79215,"id":181393,"map":189,"orientation":6.12611,"phaseMask":1,"position_x":895.562,"position_y":1375.65,"position_z":22.6461,"rotation0":0,"rotation1":0,"rotation2":-0.0784588,"rotation3":0.996917,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79216,"id":181393,"map":189,"orientation":6.12611,"phaseMask":1,"position_x":895.566,"position_y":1422.57,"position_z":22.5988,"rotation0":0,"rotation1":0,"rotation2":-0.0784588,"rotation3":0.996917,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79217,"id":181393,"map":189,"orientation":6.12611,"phaseMask":1,"position_x":895.569,"position_y":1383.49,"position_z":22.56,"rotation0":0,"rotation1":0,"rotation2":-0.0784588,"rotation3":0.996917,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79218,"id":181393,"map":189,"orientation":6.12611,"phaseMask":1,"position_x":895.585,"position_y":1414.74,"position_z":22.4544,"rotation0":0,"rotation1":0,"rotation2":-0.0784588,"rotation3":0.996917,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79219,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":905.049,"position_y":1432.08,"position_z":22.5227,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79220,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":912.792,"position_y":1432.08,"position_z":22.5428,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79221,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":912.925,"position_y":1366.14,"position_z":22.6271,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79222,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":920.63,"position_y":1432.09,"position_z":22.6049,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79223,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":920.665,"position_y":1366.14,"position_z":22.6091,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79224,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":928.472,"position_y":1432.09,"position_z":22.6326,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79225,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":928.547,"position_y":1366.13,"position_z":22.7076,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79226,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":936.325,"position_y":1366.13,"position_z":22.7679,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79227,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":936.325,"position_y":1432.08,"position_z":22.574,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79228,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":944.184,"position_y":1432.08,"position_z":22.5802,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79229,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":944.266,"position_y":1366.13,"position_z":22.7776,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79230,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":951.922,"position_y":1366.14,"position_z":22.6842,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79231,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":951.969,"position_y":1432.08,"position_z":22.5037,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79232,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":959.875,"position_y":1432.08,"position_z":22.5805,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79233,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":959.887,"position_y":1366.13,"position_z":22.72,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79234,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":992.372,"position_y":1449.25,"position_z":33.072,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79235,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":992.42,"position_y":1348.97,"position_z":33.1554,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a","clientArchiveHashes":{"common-2.mpq/World/Maps/MonasteryInstances":"8183157df6ef8132a20ebb01ee3a33f2e41adb888f025b12cf49c6945a3d5107","patch/World/maps/MonasteryInstances":"7015504c030a8308daa6dc43ca30d13d7297a50f1d118867c6b5d75442157d57","patch-WB1/world/maps/MonasteryInstances":"92e103f5b0631ad9cd6301e7c26e316dd9c179a5d1ab420af5d8ad5d472f3aa4"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/scarlet-monastery/source-snapshot.json","coordinateTransform":"three(x,y,z)=(-wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["37/37 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"zulfarrak","title":"Zul'Farrak","mapId":209,"lfgDungeonIds":[24],"expansion":"classic","environmentMode":"adt-hybrid","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[40,54]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Zul'Farrak","theme":"Open-world expedition","summary":"Fight through Zul'Farrak, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Zul'Farrak...","unchartedAreaName":"Uncharted Zul'Farrak","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1404.45},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/209-tanarisinstance/visual.glb","checksum":"a45ad3ad072fce73d657fb668cab691fc87059a8a0701630465249ce8670d8f0","size":26122864,"triangleCount":1630153}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-000.glb","checksum":"58737b57663dd73b828e2ca80fcc1c7e548ddae72be9473bfdb85998778fa232","size":190412,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-001.glb","checksum":"b5aacda77fdab384e038c9f725672c21adbc6e7eba323a8af154c18e970eb6d6","size":43508,"triangleCount":1027},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-002.glb","checksum":"efac28c0e971def89f429a45e2ca5fb993f7d01f018003e7108a1cffa4ef8604","size":37672,"triangleCount":684},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-003.glb","checksum":"86e161edf7f9b16d2687b24cb83d6658de43d1b5f5c162a8688af16e7ea1d0ff","size":37652,"triangleCount":684},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-004.glb","checksum":"de85b394dc6d50433905c377d97c2a894540a908e866e44b9a85054f1d3a2feb","size":37708,"triangleCount":684},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-005.glb","checksum":"4de105f5c55e0cf0f4e25e08435a6a934367211d1944eba485412d874d53f76c","size":37596,"triangleCount":684},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-006.glb","checksum":"de7441c632aee009148e43a272b197f4688d3755f900596f071ac95ad9064409","size":33564,"triangleCount":324},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-007.glb","checksum":"61178557e4663f255d831cc57e18ec68ff15e60514ddf549afa7fb55a1b7b865","size":52816,"triangleCount":1983},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-008.glb","checksum":"d8d7c079b71e91025e9b137a7054e19161dee2b0818053c002c4829f23cb7b95","size":186064,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-009.glb","checksum":"a4b47773fdd6828727c300cbbe0a0fe77d352b99b60f04f45fe9a800661a5e40","size":34984,"triangleCount":737},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-010.glb","checksum":"7bb043fb3179dceeebf9f236f0f8bfad264e16fdf3e1cfd847ff0d6d2992639a","size":35012,"triangleCount":737},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-011.glb","checksum":"6984ad4a4671009db677fb73f3ecb52f205aea620273d14a743f9bc9e77b3f33","size":50112,"triangleCount":1722},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-012.glb","checksum":"e060e9478585d9a28c954e08c5734e97730f40607cb2fdf4dc773401eccafb79","size":50108,"triangleCount":1722},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-013.glb","checksum":"d82a6fe0724faa2e80053fb7b6bcb5dc6892a1d442f90128b246a83502ea3936","size":50104,"triangleCount":1722},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-014.glb","checksum":"d4680580167b9958109ccbc6923399ee43f016d8438359a14d1331c6ac120210","size":50112,"triangleCount":1722},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-015.glb","checksum":"e9bec24f4092282a6f1dde794fc1abc8464583f34b285bf8a7a613c5c2523349","size":50164,"triangleCount":1722},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-016.glb","checksum":"901c88083c8fc41212d937e7931a8f1255a6c0ac55917f99aaa84655bc7fe18f","size":50156,"triangleCount":1722},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-017.glb","checksum":"46b9f4f9b7108709c041bf31d5edfecfbba0e96381aa1df9735ccb0c1e7b5cfb","size":50172,"triangleCount":1722},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-018.glb","checksum":"9cb7191851656cff1df6ee97c2b2729e187e403527fe25cbe04ba24e10f2b0d1","size":50152,"triangleCount":1722},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-019.glb","checksum":"e4898a2d981a59f6634748554ff26a6e3188f780991c629eae6ed3d5a3f5a714","size":110432,"triangleCount":8098},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-020.glb","checksum":"5bccf455ad1f05d6d204b66622e54275b695d31596bc9b281ff403cbea8de82f","size":95416,"triangleCount":5619},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-021.glb","checksum":"70cbb6d0114d32d247ce1962cef21dfc80baddb3f30fdc859b3a5216d43bd634","size":87484,"triangleCount":6133},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-022.glb","checksum":"893e94911ac23080407bc3165ebd12e3a6f497f8dde5587bf31b037973c8d76d","size":86212,"triangleCount":3437},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-023.glb","checksum":"d1b2d63da5c4911dbbd6194d6d3e785c4763c5c1f36e7de3aeabe4b0235b5814","size":89304,"triangleCount":5138},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-024.glb","checksum":"fdb9468b38974e30d4e150f39e7804138e1b9040343b5a31ede245020fe6dd06","size":34992,"triangleCount":737},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-025.glb","checksum":"fbe65d67f0e006f5613ee513ae7a71f66be5c3e6d31d1dc69f98077decec4675","size":192284,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-026.glb","checksum":"66e00cdebc6a2985588ae8db47b9e4c35f7dc69dac770b179dce5bfaea9b1f15","size":50128,"triangleCount":1722},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-027.glb","checksum":"82a29185cc49f23732e6f4efd07e32e779da9f19cea97e3c99b2a15ad2403748","size":50176,"triangleCount":1722},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-028.glb","checksum":"231fab5bbf47167ca737cad0d44df66f3a2b3b5766a9acd1d113864d26dbd836","size":50184,"triangleCount":1722},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-029.glb","checksum":"f8399aaf76002e85117a434006d5e8ce6103089c7a2c5e238b36775c0fce028d","size":50096,"triangleCount":1722},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-030.glb","checksum":"62a3b7ee67e65c0a8570a8a08ce8f33fccdf923dcf8d9239f6e08e3aca16e682","size":50148,"triangleCount":1722},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-031.glb","checksum":"f3e16382f6bdef2a525bf235d6df35cd1b01a6da4763ff02198e0a8ec7432cc6","size":45264,"triangleCount":1376},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-032.glb","checksum":"d1efbc9e159894c64756832cda3b70e7212a598d57df05ad9971b6599893a0a7","size":187664,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-033.glb","checksum":"9f9b2d9706cdd276f24a5b12f20bb5d07bc91ebdab5e4e9447ad45c10b05889d","size":185180,"triangleCount":64768},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-034.glb","checksum":"e0d3eeb250ffd74acb214f276b7cdf08194984ba4c26b9f04803ff0ac5b6ee5b","size":306444,"triangleCount":24491},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-035.glb","checksum":"a1c39c6f1aaa2986f54b578d834b5a9631aa156981019942a6b017956a5117bd","size":417132,"triangleCount":36507},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-036.glb","checksum":"19ef36bfb8d029226e17d5b1aadf1df019188cecffdc2d3495d50f3999bea894","size":182988,"triangleCount":65024},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-037.glb","checksum":"426e016cf17766d0736bf6f746e2f0e56f9facb783ac97044f662b4d63f0ed19","size":139884,"triangleCount":65536},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-038.glb","checksum":"40100ad3787387192adce161ec406812ea7cd37f6d88ced3365e88f7a2ff2493","size":189256,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-039.glb","checksum":"42679285a0952e25f26e339ef4e5a5b328fffe44fb27cca94a5691a11c787100","size":184004,"triangleCount":65456},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-040.glb","checksum":"c4a184348ed67e507d5d7dbd77ade32cd4a5b1c1248f7ac1f92ebb88a371c6a7","size":34968,"triangleCount":737},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-041.glb","checksum":"d691404413de222c7aa179a749e5cf058ac7e02b58de3314be8f12d4e7d56306","size":35012,"triangleCount":737},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-042.glb","checksum":"13fa764bbf7b190e8141f487cb079b83666f00d96599da67e12484477b37bc80","size":35036,"triangleCount":737},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-043.glb","checksum":"3058313be1938a2511db66c830f28b382cfd354c19ede3a57123d779b09e0c09","size":50100,"triangleCount":1722},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-044.glb","checksum":"7d3fdcef115066f7cf4eafb12d6de36a452a5cafeae7a2ccfc0d08513997ccd7","size":50120,"triangleCount":1722},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-045.glb","checksum":"567ef13b41aa4926ea4626f5e28b020701a2c9cb10a28e07ace27ca3b1428253","size":50100,"triangleCount":1722},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-046.glb","checksum":"137de2fddfd55345af289d868a01ff21dbeca852283a84d5e17b268d4f17ee03","size":50120,"triangleCount":1722},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-047.glb","checksum":"272124959ba852b804e1e324c21968c03a8fd1239396750bffa38d12a66e51d8","size":50164,"triangleCount":1722},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-048.glb","checksum":"a6156b00a74341627f3b2104f5636c252fd405a14ad767d2d7630fe2d144ac6e","size":50176,"triangleCount":1722},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-049.glb","checksum":"d46ec59311fb48c0cfbdb4de17e4f26862b2f1d297744914be0c5114b3ef6417","size":61700,"triangleCount":3338},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-050.glb","checksum":"6c23c45b44a81e1c02ec4b6f18b7d0ec9346c5517b7cf04c789e68a56f8641e1","size":86384,"triangleCount":5549},{"id":"collision-051","fileName":"collision-051.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-051.glb","checksum":"beccd61ea14ece654733b45359c7dc9e4eab7ec645cd74a88245fcde76731177","size":82688,"triangleCount":4484},{"id":"collision-052","fileName":"collision-052.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-052.glb","checksum":"6577b398f1534109a8cf0f27b509b67d2d5311efa26345115346bfd96de07f3c","size":189308,"triangleCount":65536},{"id":"collision-053","fileName":"collision-053.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-053.glb","checksum":"c98568055da4bb00e9fd3169f40b827dd1a21431029ffe44b19c4efe56fbca75","size":34984,"triangleCount":737},{"id":"collision-054","fileName":"collision-054.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-054.glb","checksum":"6934db4d97da43522d8e177cef641ee84b4c036187f1b1c932f4f5e3af503110","size":35020,"triangleCount":737},{"id":"collision-055","fileName":"collision-055.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-055.glb","checksum":"e85a89c4c568cc8311d7fdd96f26738281a4b87398e12076552601dd2d7ffa4f","size":35020,"triangleCount":737},{"id":"collision-056","fileName":"collision-056.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-056.glb","checksum":"182660b091693bc02910bdb638cf062e61b6f05da0d6f058557ac2282bb6af06","size":50180,"triangleCount":1722},{"id":"collision-057","fileName":"collision-057.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-057.glb","checksum":"240fcdff808996594837277151b7c06084d31c24c8ed087309c5058d763dbe63","size":50160,"triangleCount":1722},{"id":"collision-058","fileName":"collision-058.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-058.glb","checksum":"8d2b8b20752c2d167202f3c86723cf685798be228ddc2bc6a4566bb7166e39e7","size":50168,"triangleCount":1722},{"id":"collision-059","fileName":"collision-059.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-059.glb","checksum":"971b23e003bb14360749ee81116210d1fef6a5ee54c4fb37a7aa982760f8f334","size":50128,"triangleCount":1722},{"id":"collision-060","fileName":"collision-060.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-060.glb","checksum":"4abbbb3ec7c824d1f5977ae28453f7a1f003c76b832c3dc8cdbef8ab943d0b3e","size":50184,"triangleCount":1722},{"id":"collision-061","fileName":"collision-061.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-061.glb","checksum":"afbf8096fd50d97550bd22aec35c75cfb7dc7b42f4fc3e417fa8fc9ee16f48a3","size":50116,"triangleCount":1722},{"id":"collision-062","fileName":"collision-062.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-062.glb","checksum":"4f462eac1495855d3e586799bda32b4b3fe853a1f5c266eb15dd78e2ce15c5de","size":50180,"triangleCount":1722},{"id":"collision-063","fileName":"collision-063.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-063.glb","checksum":"586bd9ec924ef0f1de8c4090c9ee0169ef28fd4af6c1b302a32af96c49b6f4ea","size":50096,"triangleCount":1722},{"id":"collision-064","fileName":"collision-064.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-064.glb","checksum":"1be5847e5f904b27a038271c4a35e9f9036a33b89f23cc4474b61f98deb97dc1","size":50168,"triangleCount":1722},{"id":"collision-065","fileName":"collision-065.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-065.glb","checksum":"c34cc360df4aa692a10f3089662e98aaa76616d2e5c6145cf3df7241a0c0ea37","size":50112,"triangleCount":1722},{"id":"collision-066","fileName":"collision-066.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-066.glb","checksum":"e91eb03f63becd1cc08f8eb392cab9262a1bf753fb6b3c45e957fa844fe26d60","size":50140,"triangleCount":1722},{"id":"collision-067","fileName":"collision-067.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-067.glb","checksum":"c9e14e9611ef19764b5960522b279cd87ef92ed1c2686882ce7fbe8ece05f004","size":50096,"triangleCount":1722},{"id":"collision-068","fileName":"collision-068.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-068.glb","checksum":"86ab4df723625d0a6185607f5a565b184b200765a6afc41b5740da9ad631edd6","size":50100,"triangleCount":1722},{"id":"collision-069","fileName":"collision-069.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-069.glb","checksum":"b1f5bb8533e0fff41107c4315d50405f6d1e8db54794a4fd8c60da51c8d0fb55","size":50140,"triangleCount":1722},{"id":"collision-070","fileName":"collision-070.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-070.glb","checksum":"08be59dd805ac2fa0bbb2e5714072c4d2a45ce239e7954448bec9f095a42c0da","size":50128,"triangleCount":1722},{"id":"collision-071","fileName":"collision-071.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-071.glb","checksum":"8cd098fdcc5a8a8a3e7a14a6eb9451ab3a6097ba19fe00433b6823b3a9c0e2a8","size":45252,"triangleCount":1376},{"id":"collision-072","fileName":"collision-072.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-072.glb","checksum":"066fc08d9e55225aa5e7004015bd3adb6cf897daac1b1c5160c6ef9c37b21b9c","size":45080,"triangleCount":1376},{"id":"collision-073","fileName":"collision-073.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-073.glb","checksum":"7587c39dacc98fa9e27f15ec65de9f42cdb604519a258d364d43c1049653f0b2","size":93376,"triangleCount":5935},{"id":"collision-074","fileName":"collision-074.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-074.glb","checksum":"c3b1e6335a4c4f752eba5cec8ef4f2256b92901ccdaf3070eecd02147511cd4c","size":42040,"triangleCount":1112},{"id":"collision-075","fileName":"collision-075.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-075.glb","checksum":"e3287de4f455839791084570e1c9f6331d319a5708f57fed194b8ade37bfa187","size":41864,"triangleCount":1112},{"id":"collision-076","fileName":"collision-076.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-076.glb","checksum":"1dcff1f672251ea631c299444fb19e1df171adc85e9515ce74749e5a86bcda30","size":47240,"triangleCount":1590},{"id":"collision-077","fileName":"collision-077.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-077.glb","checksum":"a1574115076b3994cb429023309f438dfa6d80d73c7d1bdffcafb40b24efd55d","size":51624,"triangleCount":1455},{"id":"collision-078","fileName":"collision-078.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-078.glb","checksum":"2a90ad2e1f813b34d6528193a344929255ff01a9cddadfbff87d93fb06e35422","size":180004,"triangleCount":65536},{"id":"collision-079","fileName":"collision-079.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-079.glb","checksum":"9ccebe5910e0e11b627e0bb3022c93758ea34bbb9be3ea037495aba9332ec4d1","size":34980,"triangleCount":737},{"id":"collision-080","fileName":"collision-080.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-080.glb","checksum":"e53dde1f854244234795a186520e8a9daa8593f4deb5402cda7e984a0581613b","size":34976,"triangleCount":737},{"id":"collision-081","fileName":"collision-081.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-081.glb","checksum":"7fe560c86498dab84883dcb85c11050e02d74017d9f6dc69291a5e65da1be5d1","size":51868,"triangleCount":1455},{"id":"collision-082","fileName":"collision-082.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-082.glb","checksum":"ba634fb75402ee64bdc5ed2716e07dc03b067a51c38734c01ff253a7793f5f63","size":51684,"triangleCount":1455},{"id":"collision-083","fileName":"collision-083.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-083.glb","checksum":"8471a0ca83bb7812591b0817c1e32add00e1fcb101cee932f2af889c3cbdba04","size":44288,"triangleCount":1214},{"id":"collision-084","fileName":"collision-084.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-084.glb","checksum":"e8fc9e3342a1747f0da7289fe33638f322ca94dc0a1c3fdc19e5b3df0e47cf7f","size":44148,"triangleCount":1214},{"id":"collision-085","fileName":"collision-085.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-085.glb","checksum":"bd886be83fb10ec169a4fe8a1a8e6c193d7d18409e8fcaf1cae67f17039545cf","size":182412,"triangleCount":65536},{"id":"collision-086","fileName":"collision-086.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-086.glb","checksum":"e9c765735dcf36190ebe81fcfaf3d3b78f893a5b6db586ee99d0590fdc7c2705","size":180232,"triangleCount":65440},{"id":"collision-087","fileName":"collision-087.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-087.glb","checksum":"c4907b165ad8a4f262ff9aa82a94d73eded61b136c5eef2b02283dd20e60400a","size":54772,"triangleCount":1888},{"id":"collision-088","fileName":"collision-088.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-088.glb","checksum":"17880771d4a909a61ec8d678af475c845c38d071c377412c7d0d6b15510a76ac","size":139840,"triangleCount":65536},{"id":"collision-089","fileName":"collision-089.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-089.glb","checksum":"a8f5a2aa583bfaffa667acf5f545edf3be7ef8e69257f6e38252f622dee2bda4","size":140812,"triangleCount":65536},{"id":"collision-090","fileName":"collision-090.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-090.glb","checksum":"d9f48025b710bc3d6a1ac7cab8afef79d7dcbd7d41de22ee0a878af798738ac9","size":163564,"triangleCount":65536},{"id":"collision-091","fileName":"collision-091.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-091.glb","checksum":"90e4dd576f278dfeda536db2cfd2ec005f1f188f1bdbb2738354df5423642535","size":179976,"triangleCount":65376},{"id":"collision-092","fileName":"collision-092.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-092.glb","checksum":"f7a46117e708d9656617a1513ead32fdc250055e3d34e66f8399221e6f542cf1","size":156652,"triangleCount":11276},{"id":"collision-093","fileName":"collision-093.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-093.glb","checksum":"9c048f2e1753c457c6c617a3f636c7c105175a0c85949290127dabb201652d77","size":182268,"triangleCount":65536},{"id":"collision-094","fileName":"collision-094.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-094.glb","checksum":"e822279716a12cc1476aa82c8c9fdb83a85ec738290dd263023331294cfdfee5","size":47948,"triangleCount":1254},{"id":"collision-095","fileName":"collision-095.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-095.glb","checksum":"373f99cbaad23b2ace52cd10355c6fdec602b84922fe2939a885b05526d09d92","size":47460,"triangleCount":1279},{"id":"collision-096","fileName":"collision-096.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-096.glb","checksum":"a909a1fb5feb078e48fd994b924d95f1615491aef99ab96f55809e290ce8fed1","size":184464,"triangleCount":65536},{"id":"collision-097","fileName":"collision-097.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-097.glb","checksum":"cb89a22ad3ed6227f602b28099a229848bedba6a9df7a188d8ebbfa2d72f9100","size":185004,"triangleCount":65536},{"id":"collision-098","fileName":"collision-098.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-098.glb","checksum":"1e9def5c001274548214bc325e980b8db229650926f3ceb78404b26211fabc7a","size":139872,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/209-tanarisinstance/navigation.glb","checksum":"ad9ae8e7f13bbbb0fb082dadbea4e3aaef333db9819c45cee230386c4705f2df","size":7536340,"triangleCount":657069}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-367.9113,88.2815,1147.5327],"max":[1582.7137,174.3149,2102.2078]},"entrance":{"name":"Zul'Farrak Entrance","footPosition":[125.3887,108.3347,1192.5327],"forward":[0.6887850435157022,0,0.7249656294122309],"yaw":0.7598118341286575},"areas":[{"id":"entrance","name":"Zul'Farrak Entrance","center":[125.3887,108.3347,1192.5327],"radius":35},{"id":"area-hydromancer-velratha","name":"Hydromancer Velratha's Encounter","center":[-243.7613,108.8225,1677.2527],"radius":42},{"id":"area-ghaz-rilla","name":"Ghaz'rilla's Encounter","center":[1105.6865,140.6188,1987.5295],"radius":42},{"id":"area-antu-sul","name":"Antu'sul's Encounter","center":[296.5867,114.4277,1794.8627],"radius":42},{"id":"area-witch-doctor-zum-rah","name":"Witch Doctor Zum'rah's Encounter","center":[-49.1313,111.0035,1891.1827],"radius":42},{"id":"area-chief-ukorz-sandscalp-ruuzlu","name":"Chief Ukorz Sandscalp & Ruuzlu's Encounter","center":[-50.3713,154.3149,1706.4927],"radius":42}],"entities":{"entry-7267":{"id":"entry-7267","kind":"boss","name":"Chief Ukorz Sandscalp","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11837","name":"Wide Slash","spellId":11837,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4597,"damageMultiplier":1.35},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4597,"damageMultiplier":0.82,"radius":11},{"id":"spell-34409","name":"Frenzy","spellId":34409,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4597,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-34409","durationMs":12000,"magnitude":0.25}},{"id":"spell-7366","name":"Berserker Stance","spellId":7366,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4597,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6439-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2894,"markerRadius":0.6905}}},"entry-7797":{"id":"entry-7797","kind":"mob","name":"Ruuzlu","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2600,"damageMultiplier":1},{"id":"spell-38959","name":"Execute","spellId":38959,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7223,"damageMultiplier":1.12},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":7223,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6687-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2894,"markerRadius":0.6905}}},"entry-7268":{"id":"entry-7268","kind":"mob","name":"Sandfury Guardian","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1700,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5854,"damageMultiplier":1.12},{"id":"spell-13518","name":"Poison","spellId":13518,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5854,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/91410fe76473ce1ac43daf2acee48c51da05084c27f58d11904d3c63faa51260.glb","rotationY":-1.5707963267948966,"groundOffset":0.3657,"labelHeight":1.6848,"markerRadius":3.5943}}},"entry-5650":{"id":"entry-5650","kind":"mob","name":"Sandfury Witch Doctor","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17843","name":"Flash Heal","spellId":17843,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5770,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6421-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5648":{"id":"entry-5648","kind":"mob","name":"Sandfury Shadowcaster","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5565,"damageMultiplier":1.12},{"id":"spell-14032","name":"Shadow Word: Pain","spellId":14032,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5565,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6419-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5649":{"id":"entry-5649","kind":"mob","name":"Sandfury Blood Drinker","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11898","name":"Blood Leech","spellId":11898,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6783,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6423-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-8095":{"id":"entry-8095","kind":"mob","name":"Sul'lithuz Sandcrawler","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-7345-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.5478,"markerRadius":3.6493}}},"entry-7269":{"id":"entry-7269","kind":"mob","name":"Scarab","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3256","name":"Plague Cloud","spellId":3256,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4350,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-7470-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0009,"labelHeight":1.1344,"markerRadius":0.65}}},"entry-7246":{"id":"entry-7246","kind":"mob","name":"Sandfury Shadowhunter","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15547","name":"Shoot","spellId":15547,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5599,"damageMultiplier":1.12},{"id":"spell-11641","name":"Hex","spellId":11641,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5599,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6425-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-7247":{"id":"entry-7247","kind":"mob","name":"Sandfury Soul Eater","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11016","name":"Soul Bite","spellId":11016,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4544,"damageMultiplier":1.12},{"id":"spell-7154","name":"Dark Offering","spellId":7154,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4544,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6427-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-7272":{"id":"entry-7272","kind":"mob","name":"Theka the Martyr","combat":{"level":46,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-8600","name":"Fevered Plague","spellId":8600,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4587,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6696-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-8127":{"id":"entry-8127","kind":"boss","name":"Antu'sul","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5718,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-7353-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-8130":{"id":"entry-8130","kind":"mob","name":"Sul'lithuz Hatchling","combat":{"level":33,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-1073-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":0.7896,"markerRadius":0.7299}}},"entry-7271":{"id":"entry-7271","kind":"boss","name":"Witch Doctor Zum'rah","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12491","name":"Healing Wave","spellId":12491,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":5617,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5617,"damageMultiplier":1.35},{"id":"spell-15245","name":"Shadow Bolt Volley","spellId":15245,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5617,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6434-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-8120":{"id":"entry-8120","kind":"mob","name":"Sul'lithuz Abomination","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-7345-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.5478,"markerRadius":3.6493}}},"entry-7274":{"id":"entry-7274","kind":"mob","name":"Sandfury Executioner","combat":{"level":46,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2600,"damageMultiplier":1},{"id":"spell-7160","name":"Execute","spellId":7160,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4005,"damageMultiplier":1.12},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4005,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6440-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2894,"markerRadius":0.6905}}},"entry-7795":{"id":"entry-7795","kind":"boss","name":"Hydromancer Velratha","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12491","name":"Healing Wave","spellId":12491,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":5225,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5225,"damageMultiplier":1.35},{"id":"spell-15245","name":"Shadow Bolt Volley","spellId":15245,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5225,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6685-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0336,"markerRadius":0.65}}},"entry-10081":{"id":"entry-10081","kind":"mob","name":"Dustwraith","combat":{"level":46,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-9292-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-10082":{"id":"entry-10082","kind":"mob","name":"Zerillis","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12551","name":"Frost Shot","spellId":12551,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6655,"damageMultiplier":1.12},{"id":"spell-15547","name":"Shoot","spellId":15547,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6655,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-9293-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-10080":{"id":"entry-10080","kind":"mob","name":"Sandarr Dunereaver","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14516","name":"Strike","spellId":14516,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4509,"damageMultiplier":1.12},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4509,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-9291-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.932,"markerRadius":0.65}}},"entry-7273":{"id":"entry-7273","kind":"boss","name":"Gahz'rilla","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7049,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-7271-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0306,"labelHeight":16.8828,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-37996","entityId":"entry-7267","position":[-50.3713,154.3149,1706.4927],"yaw":-1.00614,"spawnMask":1},{"id":"creature-37997","entityId":"entry-7797","position":[-48.1913,154.3121,1709.2927],"yaw":-0.900874,"spawnMask":1},{"id":"creature-37998","entityId":"entry-7268","position":[-91.6913,153.5072,1704.0127],"yaw":-5.60697,"spawnMask":1},{"id":"creature-37999","entityId":"entry-7268","position":[-89.2813,152.8927,1697.6527],"yaw":-5.68551,"spawnMask":1},{"id":"creature-38000","entityId":"entry-7268","position":[-57.0313,153.1881,1746.9227],"yaw":-2.25254,"spawnMask":1},{"id":"creature-38001","entityId":"entry-7268","position":[-47.2313,152.8913,1741.8827],"yaw":-2.42533,"spawnMask":1},{"id":"creature-38002","entityId":"entry-5650","position":[153.9677,110.5575,1275.8327],"yaw":-4.50295,"spawnMask":1},{"id":"creature-38003","entityId":"entry-5648","position":[126.1717,108.4006,1241.0827],"yaw":-0.383972,"spawnMask":1},{"id":"creature-38005","entityId":"entry-5648","position":[159.2487,111.5082,1275.5627],"yaw":-2.00713,"spawnMask":1},{"id":"creature-38006","entityId":"entry-5649","position":[120.6057,108.6914,1240.5627],"yaw":-5.34071,"spawnMask":1},{"id":"creature-38007","entityId":"entry-5648","position":[126.5697,108.5095,1244.8327],"yaw":-2.19912,"spawnMask":1},{"id":"creature-38008","entityId":"entry-5649","position":[156.0457,110.0449,1271.8227],"yaw":-5.72468,"spawnMask":1},{"id":"creature-38009","entityId":"entry-5648","position":[123.5567,111.192,1304.6727],"yaw":-4.01426,"spawnMask":1},{"id":"creature-38010","entityId":"entry-5649","position":[130.0927,108.3789,1298.6027],"yaw":-0.418879,"spawnMask":1},{"id":"creature-38011","entityId":"entry-5650","position":[128.8167,108.6429,1306.7427],"yaw":-3.24631,"spawnMask":1},{"id":"creature-38012","entityId":"entry-5649","position":[149.7467,108.3789,1336.2727],"yaw":-0.174533,"spawnMask":1},{"id":"creature-38013","entityId":"entry-5649","position":[146.9847,108.3789,1344.4427],"yaw":-3.71755,"spawnMask":1},{"id":"creature-38014","entityId":"entry-8095","position":[194.1677,128.1193,1393.7027],"yaw":-5.72987,"spawnMask":1},{"id":"creature-38015","entityId":"entry-5648","position":[171.8657,111.361,1409.5327],"yaw":-2.33874,"spawnMask":1},{"id":"creature-38016","entityId":"entry-5648","position":[172.5267,111.0639,1406.7827],"yaw":-1.79769,"spawnMask":1},{"id":"creature-38017","entityId":"entry-5648","position":[166.6757,110.0553,1405.0627],"yaw":-5.14872,"spawnMask":1},{"id":"creature-38018","entityId":"entry-8095","position":[205.1297,139.6964,1431.6227],"yaw":-6.17755,"spawnMask":1},{"id":"creature-42596","entityId":"entry-5649","position":[133.4097,109.4678,1444.1827],"yaw":-1.91986,"spawnMask":1},{"id":"creature-42597","entityId":"entry-8095","position":[107.5407,117.8489,1452.8127],"yaw":-0.151279,"spawnMask":1},{"id":"creature-42599","entityId":"entry-5648","position":[122.1647,109.1314,1490.3227],"yaw":-2.87979,"spawnMask":1},{"id":"creature-42600","entityId":"entry-5648","position":[148.4007,108.3789,1483.8927],"yaw":-2.46091,"spawnMask":1},{"id":"creature-42603","entityId":"entry-7269","position":[143.2357,108.3798,1496.1327],"yaw":-0.226893,"spawnMask":1},{"id":"creature-42604","entityId":"entry-5648","position":[142.8117,108.4914,1468.7427],"yaw":-6.00393,"spawnMask":1},{"id":"creature-42605","entityId":"entry-5648","position":[122.4667,108.8538,1484.3327],"yaw":-0.069813,"spawnMask":1},{"id":"creature-42606","entityId":"entry-5648","position":[150.8567,108.6191,1467.5527],"yaw":-5.37561,"spawnMask":1},{"id":"creature-42607","entityId":"entry-5648","position":[120.8727,109.1529,1484.5127],"yaw":-6.10865,"spawnMask":1},{"id":"creature-42609","entityId":"entry-7269","position":[149.6447,108.3788,1454.0327],"yaw":-2.56563,"spawnMask":1},{"id":"creature-42610","entityId":"entry-8095","position":[213.3227,126.3607,1498.8027],"yaw":-1.33225,"spawnMask":1},{"id":"creature-42611","entityId":"entry-5648","position":[144.4337,108.5755,1510.0527],"yaw":-0.628319,"spawnMask":1},{"id":"creature-42612","entityId":"entry-5649","position":[145.9377,108.7493,1511.1427],"yaw":-1.13446,"spawnMask":1},{"id":"creature-42614","entityId":"entry-5649","position":[141.1677,108.282,1514.2627],"yaw":-4.08407,"spawnMask":1},{"id":"creature-42615","entityId":"entry-8095","position":[224.3147,136.071,1526.6127],"yaw":-2.79026,"spawnMask":1},{"id":"creature-42617","entityId":"entry-5649","position":[98.0317,108.9258,1541.3227],"yaw":-1.0821,"spawnMask":1},{"id":"creature-42618","entityId":"entry-7269","position":[117.6887,108.3798,1539.2927],"yaw":-3.56047,"spawnMask":1},{"id":"creature-42620","entityId":"entry-8095","position":[216.4647,128.7517,1567.6627],"yaw":-3.5212,"spawnMask":1},{"id":"creature-42621","entityId":"entry-8095","position":[70.8567,111.6705,1517.3727],"yaw":-2.6316,"spawnMask":1},{"id":"creature-42622","entityId":"entry-5648","position":[113.8577,109.2899,1565.4727],"yaw":-4.24115,"spawnMask":1},{"id":"creature-42623","entityId":"entry-5649","position":[95.3517,109.1075,1543.2327],"yaw":-4.46804,"spawnMask":1},{"id":"creature-42624","entityId":"entry-5648","position":[119.3117,110.5387,1562.0127],"yaw":-0.890118,"spawnMask":1},{"id":"creature-42625","entityId":"entry-5650","position":[116.1537,109.2972,1561.0127],"yaw":-5.96903,"spawnMask":1},{"id":"creature-42627","entityId":"entry-5648","position":[109.2577,111.0066,1585.3127],"yaw":-5.0091,"spawnMask":1},{"id":"creature-42628","entityId":"entry-5650","position":[188.8087,110.7247,1595.8727],"yaw":-5.3058,"spawnMask":1},{"id":"creature-42630","entityId":"entry-5649","position":[193.5077,110.9385,1599.1027],"yaw":-2.18166,"spawnMask":1},{"id":"creature-42631","entityId":"entry-7246","position":[192.3787,109.7677,1599.4827],"yaw":-2.46091,"spawnMask":1},{"id":"creature-42632","entityId":"entry-7246","position":[50.1917,121.3759,1499.3427],"yaw":-5.0091,"spawnMask":1},{"id":"creature-42633","entityId":"entry-5650","position":[74.7077,108.4444,1592.0527],"yaw":-6.23082,"spawnMask":1},{"id":"creature-42634","entityId":"entry-7269","position":[86.0587,108.3795,1589.2927],"yaw":-5.32325,"spawnMask":1},{"id":"creature-43694","entityId":"entry-5650","position":[168.8857,108.3764,1618.9727],"yaw":-1.48353,"spawnMask":1},{"id":"creature-43695","entityId":"entry-5648","position":[69.9527,109.161,1593.6227],"yaw":-5.74213,"spawnMask":1},{"id":"creature-43696","entityId":"entry-7246","position":[162.1507,108.3692,1623.9227],"yaw":-3.87463,"spawnMask":1},{"id":"creature-43697","entityId":"entry-5649","position":[73.6917,108.7601,1598.1527],"yaw":-2.32129,"spawnMask":1},{"id":"creature-43702","entityId":"entry-7246","position":[152.3827,108.374,1623.9927],"yaw":-4.53786,"spawnMask":1},{"id":"creature-43703","entityId":"entry-7269","position":[148.8687,108.3648,1631.9827],"yaw":-3.54302,"spawnMask":1},{"id":"creature-43704","entityId":"entry-5650","position":[98.6737,109.859,1612.3127],"yaw":-5.02655,"spawnMask":1},{"id":"creature-44160","entityId":"entry-7246","position":[161.6977,108.3764,1618.3127],"yaw":-4.95674,"spawnMask":1},{"id":"creature-44161","entityId":"entry-7269","position":[37.8817,108.3657,1633.4627],"yaw":-0.890118,"spawnMask":1},{"id":"creature-44162","entityId":"entry-5648","position":[65.2367,108.3697,1639.4727],"yaw":-0.628319,"spawnMask":1},{"id":"creature-44163","entityId":"entry-7247","position":[63.3237,108.7387,1623.5227],"yaw":-2.3911,"spawnMask":1},{"id":"creature-44164","entityId":"entry-5650","position":[55.7227,108.3648,1643.1127],"yaw":-4.99164,"spawnMask":1},{"id":"creature-44165","entityId":"entry-5650","position":[70.5267,108.3648,1648.6827],"yaw":-2.51327,"spawnMask":1},{"id":"creature-44166","entityId":"entry-7269","position":[46.1017,108.3648,1634.8727],"yaw":-1.39626,"spawnMask":1},{"id":"creature-44167","entityId":"entry-7269","position":[24.1707,110.9036,1499.0127],"yaw":-2.86234,"spawnMask":1},{"id":"creature-44168","entityId":"entry-5649","position":[31.8047,111.2122,1504.1827],"yaw":-5.22015,"spawnMask":1},{"id":"creature-44169","entityId":"entry-5650","position":[58.6447,108.5451,1649.5827],"yaw":-2.56563,"spawnMask":1},{"id":"creature-44177","entityId":"entry-7246","position":[37.2757,108.5315,1641.3527],"yaw":-2.75114,"spawnMask":1},{"id":"creature-44191","entityId":"entry-7269","position":[79.1347,108.3648,1664.9627],"yaw":-5.48033,"spawnMask":1},{"id":"creature-44225","entityId":"entry-5649","position":[95.4567,108.3729,1659.8627],"yaw":-5.8294,"spawnMask":1},{"id":"creature-45708","entityId":"entry-5648","position":[98.3357,108.3648,1667.4527],"yaw":-2.87979,"spawnMask":1},{"id":"creature-45709","entityId":"entry-5649","position":[78.1317,108.4065,1664.9227],"yaw":-1.37218,"spawnMask":1},{"id":"creature-45710","entityId":"entry-5650","position":[161.4397,108.7004,1637.5327],"yaw":-1.36264,"spawnMask":1},{"id":"creature-47465","entityId":"entry-7269","position":[-3.7033,108.3678,1596.6927],"yaw":-1.81514,"spawnMask":1},{"id":"creature-81440","entityId":"entry-5648","position":[28.4377,108.651,1640.9527],"yaw":-2.33874,"spawnMask":1},{"id":"creature-81441","entityId":"entry-5649","position":[-2.6303,108.5851,1584.6927],"yaw":-1.29154,"spawnMask":1},{"id":"creature-81442","entityId":"entry-5649","position":[-3.7353,108.5856,1582.1527],"yaw":-0.820305,"spawnMask":1},{"id":"creature-81443","entityId":"entry-5649","position":[24.0207,108.5194,1635.7927],"yaw":-5.65487,"spawnMask":1},{"id":"creature-81444","entityId":"entry-5648","position":[29.3867,108.5757,1639.7727],"yaw":-2.19912,"spawnMask":1},{"id":"creature-81445","entityId":"entry-7269","position":[182.0607,110.5167,1629.3827],"yaw":-5.74213,"spawnMask":1},{"id":"creature-81446","entityId":"entry-5648","position":[52.5857,109.6128,1686.0627],"yaw":-1.18682,"spawnMask":1},{"id":"creature-81447","entityId":"entry-5648","position":[49.2507,110.5834,1685.1927],"yaw":-5.81195,"spawnMask":1},{"id":"creature-81448","entityId":"entry-5650","position":[51.6037,110.4101,1689.0927],"yaw":-2.49582,"spawnMask":1},{"id":"creature-81449","entityId":"entry-5649","position":[69.3207,108.4065,1687.3227],"yaw":-5.09013,"spawnMask":1},{"id":"creature-81450","entityId":"entry-5649","position":[-11.8783,108.4175,1587.4727],"yaw":-4.32842,"spawnMask":1},{"id":"creature-81451","entityId":"entry-8095","position":[183.9247,114.9739,1642.3527],"yaw":-2.02458,"spawnMask":1},{"id":"creature-81452","entityId":"entry-5649","position":[182.8967,116.7507,1692.6927],"yaw":-5.48033,"spawnMask":1},{"id":"creature-81453","entityId":"entry-7269","position":[105.5507,108.3648,1752.9027],"yaw":-3.14159,"spawnMask":1},{"id":"creature-81454","entityId":"entry-7269","position":[116.1927,108.3648,1741.6727],"yaw":-4.86947,"spawnMask":1},{"id":"creature-81455","entityId":"entry-7269","position":[93.2647,108.4991,1756.9927],"yaw":-3.10669,"spawnMask":1},{"id":"creature-81458","entityId":"entry-7269","position":[140.0137,115.4547,1752.1727],"yaw":-6.21337,"spawnMask":1},{"id":"creature-81459","entityId":"entry-8095","position":[213.0627,121.4109,1594.7927],"yaw":-0.170666,"spawnMask":1},{"id":"creature-81460","entityId":"entry-7246","position":[220.8327,119.0913,1634.4227],"yaw":-4.36332,"spawnMask":1},{"id":"creature-81461","entityId":"entry-5650","position":[249.6127,126.5774,1634.2027],"yaw":-1.27409,"spawnMask":1},{"id":"creature-81462","entityId":"entry-8095","position":[209.3197,126.7415,1747.3327],"yaw":-5.98648,"spawnMask":1},{"id":"creature-81464","entityId":"entry-7269","position":[107.3467,108.3648,1761.5227],"yaw":-1.09956,"spawnMask":1},{"id":"creature-81465","entityId":"entry-7269","position":[113.5047,108.3648,1762.6827],"yaw":-5.72468,"spawnMask":1},{"id":"creature-81466","entityId":"entry-7269","position":[160.0377,114.9728,1778.6827],"yaw":-0.139626,"spawnMask":1},{"id":"creature-81467","entityId":"entry-7269","position":[150.5397,121.075,1764.8327],"yaw":-1.22173,"spawnMask":1},{"id":"creature-81468","entityId":"entry-5650","position":[153.3227,122.6395,1755.9127],"yaw":-3.24631,"spawnMask":1},{"id":"creature-81469","entityId":"entry-7269","position":[76.4907,108.416,1772.4727],"yaw":-5.86431,"spawnMask":1},{"id":"creature-81470","entityId":"entry-7269","position":[117.9757,108.3987,1775.9427],"yaw":-4.24115,"spawnMask":1},{"id":"creature-81471","entityId":"entry-7269","position":[143.3167,108.5648,1791.7527],"yaw":-3.76991,"spawnMask":1},{"id":"creature-81472","entityId":"entry-7269","position":[123.0607,108.3676,1785.1727],"yaw":-5.75959,"spawnMask":1},{"id":"creature-81473","entityId":"entry-7269","position":[85.5277,108.3648,1765.7227],"yaw":-0.471239,"spawnMask":1},{"id":"creature-81474","entityId":"entry-7269","position":[101.4107,108.3648,1763.1227],"yaw":-5.39307,"spawnMask":1},{"id":"creature-81475","entityId":"entry-7269","position":[88.7867,108.3669,1772.1227],"yaw":-4.4855,"spawnMask":1},{"id":"creature-81476","entityId":"entry-7269","position":[93.9507,108.3648,1764.5227],"yaw":-4.46804,"spawnMask":1},{"id":"creature-81477","entityId":"entry-7269","position":[129.2577,108.3648,1792.7827],"yaw":-0.436332,"spawnMask":1},{"id":"creature-81478","entityId":"entry-7269","position":[73.7637,108.697,1762.7227],"yaw":-3.1765,"spawnMask":1},{"id":"creature-81479","entityId":"entry-7269","position":[132.9437,108.3648,1781.8727],"yaw":-1.72788,"spawnMask":1},{"id":"creature-81480","entityId":"entry-7269","position":[117.3007,108.3648,1796.1627],"yaw":-4.53786,"spawnMask":1},{"id":"creature-81481","entityId":"entry-7269","position":[115.7907,108.365,1786.8027],"yaw":-0.610865,"spawnMask":1},{"id":"creature-81482","entityId":"entry-5650","position":[219.7867,113.8372,1772.8727],"yaw":-0.907571,"spawnMask":1},{"id":"creature-81483","entityId":"entry-7269","position":[150.6797,114.5093,1813.4727],"yaw":-2.82743,"spawnMask":1},{"id":"creature-81484","entityId":"entry-7269","position":[68.4167,108.3649,1794.3827],"yaw":-3.64774,"spawnMask":1},{"id":"creature-81485","entityId":"entry-7269","position":[98.8047,108.3648,1796.8927],"yaw":-5.18363,"spawnMask":1},{"id":"creature-81486","entityId":"entry-7269","position":[78.9377,108.366,1792.4427],"yaw":-6.10865,"spawnMask":1},{"id":"creature-81487","entityId":"entry-7269","position":[80.4067,108.3849,1783.2627],"yaw":-5.72468,"spawnMask":1},{"id":"creature-81488","entityId":"entry-7269","position":[105.9297,108.3648,1799.1327],"yaw":-6.03884,"spawnMask":1},{"id":"creature-81489","entityId":"entry-7269","position":[128.4357,108.4496,1804.8827],"yaw":-4.11898,"spawnMask":1},{"id":"creature-81490","entityId":"entry-7269","position":[77.2147,108.3648,1804.9127],"yaw":-3.1765,"spawnMask":1},{"id":"creature-81491","entityId":"entry-7269","position":[86.7627,108.3648,1797.5327],"yaw":-3.08923,"spawnMask":1},{"id":"creature-81492","entityId":"entry-7269","position":[60.3147,108.3817,1773.1127],"yaw":-3.49066,"spawnMask":1},{"id":"creature-81493","entityId":"entry-7269","position":[70.8207,108.3898,1782.6927],"yaw":-4.11898,"spawnMask":1},{"id":"creature-81494","entityId":"entry-7269","position":[68.5217,108.3913,1771.5227],"yaw":0,"spawnMask":1},{"id":"creature-81495","entityId":"entry-7269","position":[122.5677,108.3648,1800.7727],"yaw":-3.49066,"spawnMask":1},{"id":"creature-81496","entityId":"entry-7269","position":[96.0757,108.3648,1803.3027],"yaw":-4.76475,"spawnMask":1},{"id":"creature-81497","entityId":"entry-7269","position":[67.0917,108.3766,1787.3927],"yaw":-5.35816,"spawnMask":1},{"id":"creature-81498","entityId":"entry-7269","position":[60.9157,108.4352,1781.2327],"yaw":-4.20624,"spawnMask":1},{"id":"creature-81499","entityId":"entry-7269","position":[113.0827,108.3648,1805.0627],"yaw":-2.53073,"spawnMask":1},{"id":"creature-81500","entityId":"entry-7269","position":[85.3537,108.3648,1803.4927],"yaw":-5.65487,"spawnMask":1},{"id":"creature-81501","entityId":"entry-8095","position":[112.8067,121.0467,1835.1927],"yaw":-1.25722,"spawnMask":1},{"id":"creature-81502","entityId":"entry-7269","position":[40.9777,108.3893,1781.9427],"yaw":-3.59538,"spawnMask":1},{"id":"creature-81503","entityId":"entry-7269","position":[124.7377,113.6595,1828.7427],"yaw":-5.84685,"spawnMask":1},{"id":"creature-81504","entityId":"entry-7269","position":[56.1957,108.3828,1799.7327],"yaw":-3.89208,"spawnMask":1},{"id":"creature-81505","entityId":"entry-5650","position":[52.7907,108.4065,1801.7327],"yaw":-4.11501,"spawnMask":1},{"id":"creature-81506","entityId":"entry-7269","position":[34.7927,108.3699,1811.1427],"yaw":-1.78024,"spawnMask":1},{"id":"creature-81507","entityId":"entry-5649","position":[138.2587,123.5218,1840.4627],"yaw":-3.64774,"spawnMask":1},{"id":"creature-81508","entityId":"entry-7246","position":[25.7937,108.3701,1795.2827],"yaw":-2.32129,"spawnMask":1},{"id":"creature-81509","entityId":"entry-5650","position":[19.6617,108.379,1793.8827],"yaw":-4.74729,"spawnMask":1},{"id":"creature-81510","entityId":"entry-7269","position":[27.0587,108.4123,1798.4827],"yaw":-0.767945,"spawnMask":1},{"id":"creature-81511","entityId":"entry-5649","position":[27.0017,108.3947,1789.6227],"yaw":-0.541052,"spawnMask":1},{"id":"creature-81512","entityId":"entry-8095","position":[228.2887,113.9279,1781.2527],"yaw":-4.79092,"spawnMask":1},{"id":"creature-81513","entityId":"entry-8095","position":[169.3797,134.3589,1861.5027],"yaw":-1.09561,"spawnMask":1},{"id":"creature-81514","entityId":"entry-5649","position":[176.1817,135.6842,1860.6627],"yaw":-1.51022,"spawnMask":1},{"id":"creature-81515","entityId":"entry-7246","position":[244.9877,119.4287,1822.7927],"yaw":-4.60767,"spawnMask":1},{"id":"creature-81516","entityId":"entry-8095","position":[237.9567,117.5516,1822.6227],"yaw":-2.65402,"spawnMask":1},{"id":"creature-81517","entityId":"entry-7246","position":[248.4147,120.6098,1731.9427],"yaw":-4.88692,"spawnMask":1},{"id":"creature-81518","entityId":"entry-5650","position":[237.1127,132.5316,1864.0427],"yaw":-3.42085,"spawnMask":1},{"id":"creature-81519","entityId":"entry-8127","position":[296.5867,114.4277,1794.8627],"yaw":-2.02458,"spawnMask":1},{"id":"creature-81520","entityId":"entry-8130","position":[288.6677,113.6284,1796.6227],"yaw":-3.9619,"spawnMask":1},{"id":"creature-81521","entityId":"entry-8130","position":[292.0407,113.9602,1798.8627],"yaw":-3.83972,"spawnMask":1},{"id":"creature-81522","entityId":"entry-8130","position":[299.6767,115.3011,1791.1527],"yaw":-1.62316,"spawnMask":1},{"id":"creature-81523","entityId":"entry-7269","position":[11.5837,108.3699,1803.3227],"yaw":-2.14675,"spawnMask":1},{"id":"creature-81524","entityId":"entry-7271","position":[-49.1313,111.0035,1891.1827],"yaw":-3.10669,"spawnMask":1},{"id":"creature-81525","entityId":"entry-7269","position":[-150.9713,108.6263,1861.9527],"yaw":-4.72984,"spawnMask":1},{"id":"creature-81527","entityId":"entry-8120","position":[-76.1913,150.0039,1748.0227],"yaw":-2.40855,"spawnMask":1},{"id":"creature-81530","entityId":"entry-7246","position":[-151.2913,110.2728,1844.2527],"yaw":-4.69151,"spawnMask":1},{"id":"creature-81531","entityId":"entry-8095","position":[-150.4513,109.2136,1846.3627],"yaw":-4.69091,"spawnMask":1},{"id":"creature-81532","entityId":"entry-7246","position":[-153.7513,109.8692,1848.5727],"yaw":-4.68603,"spawnMask":1},{"id":"creature-81533","entityId":"entry-7269","position":[-182.3813,108.7504,1863.3227],"yaw":-5.09636,"spawnMask":1},{"id":"creature-81534","entityId":"entry-5650","position":[-164.1513,110.2536,1905.0927],"yaw":-1.90241,"spawnMask":1},{"id":"creature-81535","entityId":"entry-5649","position":[-167.0113,108.3983,1882.8827],"yaw":-2.54818,"spawnMask":1},{"id":"creature-81536","entityId":"entry-5650","position":[-186.4913,109.0069,1890.8327],"yaw":-2.51327,"spawnMask":1},{"id":"creature-81537","entityId":"entry-5649","position":[-169.8713,108.5029,1878.6127],"yaw":-5.68977,"spawnMask":1},{"id":"creature-81538","entityId":"entry-7246","position":[-192.6713,109.0093,1857.7227],"yaw":-3.66519,"spawnMask":1},{"id":"creature-81539","entityId":"entry-5649","position":[-217.5713,108.393,1828.2127],"yaw":-6.19592,"spawnMask":1},{"id":"creature-81540","entityId":"entry-7269","position":[-219.6313,108.3739,1830.0727],"yaw":-4.90438,"spawnMask":1},{"id":"creature-81542","entityId":"entry-5649","position":[-199.4713,108.3706,1879.3427],"yaw":-0.785398,"spawnMask":1},{"id":"creature-81543","entityId":"entry-5650","position":[-232.9713,108.3648,1842.1227],"yaw":-4.93928,"spawnMask":1},{"id":"creature-81545","entityId":"entry-7246","position":[-231.5413,108.3648,1899.2927],"yaw":-3.45575,"spawnMask":1},{"id":"creature-81546","entityId":"entry-5650","position":[-232.5513,108.4462,1892.5127],"yaw":-5.81195,"spawnMask":1},{"id":"creature-81547","entityId":"entry-5650","position":[-227.2713,108.3648,1894.5627],"yaw":-1.0821,"spawnMask":1},{"id":"creature-81548","entityId":"entry-7246","position":[-244.1013,108.3653,1878.5027],"yaw":-3.19395,"spawnMask":1},{"id":"creature-81549","entityId":"entry-7247","position":[-247.7413,108.4065,1878.2527],"yaw":-1.80893,"spawnMask":1},{"id":"creature-81551","entityId":"entry-5649","position":[-255.5613,108.5696,1864.6527],"yaw":-4.27606,"spawnMask":1},{"id":"creature-81552","entityId":"entry-7274","position":[-322.9113,145.3672,1865.8127],"yaw":-3.38594,"spawnMask":1},{"id":"creature-81558","entityId":"entry-8095","position":[-248.4013,127.5291,1739.6227],"yaw":-4.92385,"spawnMask":1},{"id":"creature-81559","entityId":"entry-8095","position":[-276.7713,132.9041,1743.5927],"yaw":-1.84091,"spawnMask":1},{"id":"creature-81560","entityId":"entry-5649","position":[-215.4613,108.5546,1692.2427],"yaw":-0.837758,"spawnMask":1},{"id":"creature-81561","entityId":"entry-5650","position":[-214.9613,109.9107,1698.9927],"yaw":-5.46288,"spawnMask":1},{"id":"creature-81562","entityId":"entry-7246","position":[-221.6713,110.2324,1696.2027],"yaw":-4.31096,"spawnMask":1},{"id":"creature-81563","entityId":"entry-5650","position":[-223.3313,109.7422,1693.9327],"yaw":-4.31096,"spawnMask":1},{"id":"creature-81564","entityId":"entry-5649","position":[-220.5913,108.8024,1691.0827],"yaw":-5.49779,"spawnMask":1},{"id":"creature-81565","entityId":"entry-8120","position":[-99.6313,150.6392,1723.8927],"yaw":-5.51524,"spawnMask":1},{"id":"creature-81566","entityId":"entry-5649","position":[-184.9113,108.3648,1646.3027],"yaw":-3.63029,"spawnMask":1},{"id":"creature-81567","entityId":"entry-7269","position":[-186.7013,108.3648,1656.0827],"yaw":-1.29154,"spawnMask":1},{"id":"creature-81568","entityId":"entry-5649","position":[-251.6013,108.3648,1693.3927],"yaw":-5.48033,"spawnMask":1},{"id":"creature-81569","entityId":"entry-5649","position":[-185.3013,108.417,1627.1927],"yaw":-5.39307,"spawnMask":1},{"id":"creature-81570","entityId":"entry-7795","position":[-243.7613,108.8225,1677.2527],"yaw":-5.45566,"spawnMask":1},{"id":"creature-81571","entityId":"entry-5649","position":[-142.9213,108.3949,1615.8527],"yaw":-5.75959,"spawnMask":1},{"id":"creature-81572","entityId":"entry-7246","position":[-140.3813,108.4505,1623.1827],"yaw":-3.28122,"spawnMask":1},{"id":"creature-81573","entityId":"entry-5649","position":[-138.0813,108.3649,1615.0627],"yaw":-0.087266,"spawnMask":1},{"id":"creature-81574","entityId":"entry-5649","position":[-139.7213,108.3648,1615.1927],"yaw":-0.017453,"spawnMask":1},{"id":"creature-81575","entityId":"entry-5649","position":[-199.7713,108.4642,1611.5527],"yaw":-4.60767,"spawnMask":1},{"id":"creature-81576","entityId":"entry-5650","position":[-137.9813,108.6074,1623.0227],"yaw":-3.03687,"spawnMask":1},{"id":"creature-81578","entityId":"entry-5649","position":[-252.9313,109.0778,1631.0727],"yaw":-1.44862,"spawnMask":1},{"id":"creature-81579","entityId":"entry-5649","position":[-266.8613,108.3658,1678.8227],"yaw":-1.15192,"spawnMask":1},{"id":"creature-81580","entityId":"entry-5650","position":[-233.1313,108.4578,1622.6027],"yaw":-1.81514,"spawnMask":1},{"id":"creature-81581","entityId":"entry-8095","position":[-247.4913,108.6448,1632.6727],"yaw":-0.653508,"spawnMask":1},{"id":"creature-81582","entityId":"entry-7246","position":[-247.9613,108.9481,1628.4427],"yaw":-0.608068,"spawnMask":1},{"id":"creature-81583","entityId":"entry-7246","position":[-243.3013,108.5731,1631.6427],"yaw":-0.608942,"spawnMask":1},{"id":"creature-81584","entityId":"entry-5649","position":[-225.9613,108.4898,1603.8627],"yaw":-2.72271,"spawnMask":1},{"id":"creature-81585","entityId":"entry-5649","position":[-229.9913,108.8255,1601.2727],"yaw":-4.69494,"spawnMask":1},{"id":"creature-81586","entityId":"entry-5650","position":[-224.7213,108.5382,1599.6627],"yaw":-1.09956,"spawnMask":1},{"id":"creature-81587","entityId":"entry-8095","position":[-164.0213,110.6242,1585.8727],"yaw":-3.77943,"spawnMask":1},{"id":"creature-81588","entityId":"entry-7246","position":[-163.4113,108.8669,1589.9727],"yaw":-3.69682,"spawnMask":1},{"id":"creature-81589","entityId":"entry-5649","position":[-266.6213,108.8134,1645.9827],"yaw":-4.71239,"spawnMask":1},{"id":"creature-81590","entityId":"entry-5650","position":[-292.2513,109.8728,1645.9627],"yaw":-3.35103,"spawnMask":1},{"id":"creature-81591","entityId":"entry-7269","position":[-283.5113,109.6398,1693.4227],"yaw":-0.471239,"spawnMask":1},{"id":"creature-81592","entityId":"entry-7246","position":[-290.1713,109.8873,1641.2927],"yaw":-0.645772,"spawnMask":1},{"id":"creature-81594","entityId":"entry-7246","position":[-287.0913,109.492,1644.8227],"yaw":-2.07694,"spawnMask":1},{"id":"creature-81595","entityId":"entry-7246","position":[-293.7413,109.9682,1644.8727],"yaw":-4.06662,"spawnMask":1},{"id":"creature-81596","entityId":"entry-7269","position":[-251.6513,109.0128,1628.0227],"yaw":-1.74533,"spawnMask":1},{"id":"creature-81597","entityId":"entry-7246","position":[-280.7813,109.355,1692.2527],"yaw":-4.57276,"spawnMask":1},{"id":"creature-81598","entityId":"entry-5650","position":[-281.3213,109.206,1679.2827],"yaw":-5.76632,"spawnMask":1},{"id":"creature-81600","entityId":"entry-7269","position":[-152.8413,108.3648,1588.9427],"yaw":-1.8675,"spawnMask":1},{"id":"creature-81601","entityId":"entry-5649","position":[-159.9213,108.4065,1593.3227],"yaw":-0.655469,"spawnMask":1},{"id":"creature-81602","entityId":"entry-5649","position":[-317.0313,114.0011,1704.7627],"yaw":-5.42797,"spawnMask":1},{"id":"creature-81603","entityId":"entry-7246","position":[-314.6513,113.9939,1707.6427],"yaw":-2.58309,"spawnMask":1},{"id":"creature-81604","entityId":"entry-5650","position":[-139.0813,108.3648,1585.4427],"yaw":-4.95674,"spawnMask":1},{"id":"creature-81605","entityId":"entry-5650","position":[-141.3713,108.3648,1589.3927],"yaw":-3.52556,"spawnMask":1},{"id":"creature-81606","entityId":"entry-7246","position":[-137.4313,108.3648,1580.7227],"yaw":-0.471239,"spawnMask":1},{"id":"creature-81607","entityId":"entry-7246","position":[-143.8113,108.3648,1587.3127],"yaw":-3.94444,"spawnMask":1},{"id":"creature-81608","entityId":"entry-7246","position":[-118.1713,108.5832,1557.4327],"yaw":-4.31096,"spawnMask":1},{"id":"creature-81609","entityId":"entry-5650","position":[-112.1013,108.4262,1555.1827],"yaw":-1.25664,"spawnMask":1},{"id":"creature-81610","entityId":"entry-7246","position":[-80.6813,108.3693,1570.0327],"yaw":-6.26573,"spawnMask":1},{"id":"creature-81611","entityId":"entry-5649","position":[-68.5213,108.3648,1564.1127],"yaw":-3.03687,"spawnMask":1},{"id":"creature-81612","entityId":"entry-7269","position":[-88.8213,108.3648,1555.1027],"yaw":-5.32325,"spawnMask":1},{"id":"creature-81613","entityId":"entry-5649","position":[-83.8813,117.5493,1494.8227],"yaw":-1.36136,"spawnMask":1},{"id":"creature-81614","entityId":"entry-7269","position":[-52.5213,108.3648,1533.5427],"yaw":-0.750492,"spawnMask":1},{"id":"creature-81615","entityId":"entry-7269","position":[-51.4513,108.3648,1560.4127],"yaw":-5.89921,"spawnMask":1},{"id":"creature-81616","entityId":"entry-5649","position":[-34.7813,108.3648,1520.1427],"yaw":-5.23599,"spawnMask":1},{"id":"creature-81617","entityId":"entry-5649","position":[-50.3313,109.2205,1506.0527],"yaw":-0.959931,"spawnMask":1},{"id":"creature-81618","entityId":"entry-5650","position":[-39.7613,108.3648,1533.3127],"yaw":-4.41568,"spawnMask":1},{"id":"creature-81619","entityId":"entry-5650","position":[-35.3313,108.3648,1535.3627],"yaw":-2.6529,"spawnMask":1},{"id":"creature-81620","entityId":"entry-5649","position":[-52.0913,109.3934,1504.4827],"yaw":-0.436332,"spawnMask":1},{"id":"creature-81621","entityId":"entry-5650","position":[-54.4213,109.1275,1509.2727],"yaw":-3.61283,"spawnMask":1},{"id":"creature-81622","entityId":"entry-7269","position":[-14.9773,108.3932,1500.2727],"yaw":-3.57792,"spawnMask":1},{"id":"creature-81623","entityId":"entry-7247","position":[-17.9463,108.5315,1497.6027],"yaw":-5.25215,"spawnMask":1},{"id":"creature-81624","entityId":"entry-7246","position":[-28.0803,108.3648,1524.0627],"yaw":-1.88496,"spawnMask":1},{"id":"creature-81625","entityId":"entry-7269","position":[4.2727,113.8613,1466.5227],"yaw":-0.890118,"spawnMask":1},{"id":"creature-81634","entityId":"entry-5649","position":[-13.1123,115.7674,1457.6127],"yaw":-5.60251,"spawnMask":1},{"id":"creature-81635","entityId":"entry-5649","position":[21.4097,125.9798,1434.7727],"yaw":-3.71755,"spawnMask":1},{"id":"creature-81636","entityId":"entry-5650","position":[-66.2913,128.7531,1435.9027],"yaw":-1.46608,"spawnMask":1},{"id":"creature-205800","entityId":"entry-10081","position":[-184.6813,112.3334,1842.9027],"yaw":-0.540263,"spawnMask":1},{"id":"creature-205801","entityId":"entry-10082","position":[62.1257,108.329,1653.2527],"yaw":-0.304632,"spawnMask":1},{"id":"creature-205802","entityId":"entry-10080","position":[-48.4913,108.2817,1525.1727],"yaw":-0.202525,"spawnMask":1},{"id":"encounter-594","entityId":"entry-7273","position":[1105.6865,140.6188,1987.5295],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-42602","name":"Sandfury Shadowcaster Patrol","speed":1.15,"pathId":426020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[140.5927,108.2966,1500.9127],[168.8257,108.3847,1475.7927],[151.7627,108.2956,1453.3227],[129.4017,108.2956,1476.8627]],"members":[{"id":"member","entityId":"entry-5648","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42608","name":"Sandfury Blood Drinker Patrol","speed":1.15,"pathId":426080,"formationSource":"database-solo","spawnMask":1,"waypoints":[[132.6577,108.2956,1474.2427],[155.1517,108.3596,1415.6527],[152.3307,108.2958,1360.3527],[155.1517,108.3596,1415.6527]],"members":[{"id":"member","entityId":"entry-5649","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42619","name":"Sandfury Blood Drinker Patrol","speed":1.15,"pathId":426190,"formationSource":"database-solo","spawnMask":1,"waypoints":[[128.0407,108.2959,1523.7127],[93.4007,108.2961,1567.6127],[81.4627,108.297,1606.1527],[93.4007,108.2961,1567.6127]],"members":[{"id":"member","entityId":"entry-5649","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42626","name":"Sandfury Shadowcaster Patrol","speed":1.15,"pathId":426260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[131.7527,108.2961,1525.4827],[96.6137,108.2965,1571.2027],[81.2347,108.2962,1613.8227],[96.6137,108.2965,1571.2027]],"members":[{"id":"member","entityId":"entry-5648","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-44170","name":"Sandfury Shadowhunter Patrol","speed":1.15,"pathId":441700,"formationSource":"database-solo","spawnMask":1,"waypoints":[[40.6317,108.4297,1642.3927],[71.2087,108.2827,1633.3027],[77.4537,108.2828,1666.9627]],"members":[{"id":"member","entityId":"entry-7246","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81456","name":"Sandfury Soul Eater Patrol","speed":1.15,"pathId":814560,"formationSource":"database-solo","spawnMask":1,"waypoints":[[116.0547,108.2879,1746.6827],[139.2937,108.4071,1718.7027],[161.1267,108.2815,1679.2927],[139.2937,108.4071,1718.7027]],"members":[{"id":"member","entityId":"entry-7247","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81457","name":"Sandfury Blood Drinker Patrol","speed":1.15,"pathId":814570,"formationSource":"database-solo","spawnMask":1,"waypoints":[[110.8107,108.2815,1745.6127],[134.9627,108.2821,1721.2727],[153.1847,108.2817,1687.5427],[134.9627,108.2821,1721.2727]],"members":[{"id":"member","entityId":"entry-5649","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81463","name":"Theka the Martyr Patrol","speed":1.15,"pathId":814630,"formationSource":"database-solo","spawnMask":1,"waypoints":[[107.3077,108.2815,1757.0227],[121.1027,108.2816,1792.7627],[81.5767,108.2816,1801.8427],[77.7527,108.3105,1766.4427]],"members":[{"id":"member","entityId":"entry-7272","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81526","name":"Sandfury Witch Doctor Patrol","speed":1.15,"pathId":815260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-143.6613,108.3625,1858.2127],[-91.6813,108.2815,1831.3627],[-61.7013,108.2818,1848.2827],[-91.6813,108.2815,1831.3627]],"members":[{"id":"member","entityId":"entry-5650","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81528","name":"Sandfury Shadowhunter Patrol","speed":1.15,"pathId":815280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-149.4013,128.1961,1798.3827],[-117.8713,140.3402,1764.2427]],"members":[{"id":"member","entityId":"entry-7246","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81529","name":"Sandfury Shadowhunter Patrol","speed":1.15,"pathId":815290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-154.0213,125.154,1807.6827],[-133.4913,133.5282,1784.3727],[-110.7213,142.4454,1759.7327],[-133.4913,133.5282,1784.3727]],"members":[{"id":"member","entityId":"entry-7246","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81541","name":"Sandfury Soul Eater Patrol","speed":1.15,"pathId":815410,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-210.0213,108.3959,1800.7127],[-177.0813,108.3925,1763.0827],[-179.4213,108.5435,1725.6427],[-177.0813,108.3925,1763.0827]],"members":[{"id":"member","entityId":"entry-7247","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81550","name":"Sandfury Soul Eater Patrol","speed":1.15,"pathId":815500,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-174.2713,108.5029,1736.1727],[-180.9713,108.3526,1698.7827],[-199.7413,108.3356,1678.9427],[-180.9713,108.3526,1698.7827]],"members":[{"id":"member","entityId":"entry-7247","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81577","name":"Sandfury Shadowhunter Patrol","speed":1.15,"pathId":815770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-169.0413,108.2818,1605.5227],[-131.5113,108.2818,1570.9027]],"members":[{"id":"member","entityId":"entry-7246","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-81570","name":"Hydromancer Velratha","position":[-243.7613,108.8225,1677.2527]},{"id":"encounter-594","name":"Ghaz'rilla","position":[1105.6865,140.6188,1987.5295]},{"id":"creature-81519","name":"Antu'sul","position":[296.5867,114.4277,1794.8627]},{"id":"creature-81524","name":"Witch Doctor Zum'rah","position":[-49.1313,111.0035,1891.1827]},{"id":"creature-37996","name":"Chief Ukorz Sandscalp & Ruuzlu","position":[-50.3713,154.3149,1706.4927]}],"objectiveOrder":[{"id":"creature-81570","name":"Hydromancer Velratha","position":[-243.7613,108.8225,1677.2527]},{"id":"encounter-594","name":"Ghaz'rilla","position":[1105.6865,140.6188,1987.5295]},{"id":"creature-81519","name":"Antu'sul","position":[296.5867,114.4277,1794.8627]},{"id":"creature-81524","name":"Witch Doctor Zum'rah","position":[-49.1313,111.0035,1891.1827]},{"id":"creature-37996","name":"Chief Ukorz Sandscalp & Ruuzlu","position":[-50.3713,154.3149,1706.4927]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27086,"id":146084,"map":209,"orientation":0.671953,"phaseMask":1,"position_x":1854.53,"position_y":1142.89,"position_z":16.0846,"rotation0":0,"rotation1":0,"rotation2":0.329691,"rotation3":0.944089,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":27087,"id":141852,"map":209,"orientation":3.14159,"phaseMask":1,"position_x":1646.76,"position_y":801.712,"position_z":8.88617,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27089,"id":141073,"map":209,"orientation":2.76635,"phaseMask":1,"position_x":1886.88,"position_y":1298.94,"position_z":48.2268,"rotation0":0,"rotation1":0,"rotation2":0.982451,"rotation3":0.186522,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27090,"id":141074,"map":209,"orientation":-3.02815,"phaseMask":1,"position_x":1883.33,"position_y":1298.99,"position_z":48.2929,"rotation0":0,"rotation1":0,"rotation2":-0.998392,"rotation3":0.0566909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27091,"id":141072,"map":209,"orientation":2.19039,"phaseMask":1,"position_x":1889.76,"position_y":1297.68,"position_z":48.1727,"rotation0":0,"rotation1":0,"rotation2":0.889018,"rotation3":0.457873,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27092,"id":141071,"map":209,"orientation":-2.72271,"phaseMask":1,"position_x":1881.33,"position_y":1297.46,"position_z":48.3304,"rotation0":0,"rotation1":0,"rotation2":-0.978147,"rotation3":0.207914,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27093,"id":141070,"map":209,"orientation":1.66679,"phaseMask":1,"position_x":1890.96,"position_y":1294.47,"position_z":48.1535,"rotation0":0,"rotation1":0,"rotation2":0.740218,"rotation3":0.672367,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27094,"id":142715,"map":209,"orientation":1.9984,"phaseMask":1,"position_x":1800.81,"position_y":857.587,"position_z":8.65556,"rotation0":-0.264375,"rotation1":0.160184,"rotation2":0.801304,"rotation3":0.512209,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27095,"id":92426,"map":209,"orientation":1.49916,"phaseMask":1,"position_x":1810.09,"position_y":673.184,"position_z":14.2178,"rotation0":-0.00027,"rotation1":0.037908,"rotation2":0.680317,"rotation3":0.731937,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27097,"id":128403,"map":209,"orientation":-0.314159,"phaseMask":1,"position_x":1887.46,"position_y":967.143,"position_z":8.98506,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27098,"id":128403,"map":209,"orientation":1.0472,"phaseMask":1,"position_x":1879.89,"position_y":974.651,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27099,"id":128403,"map":209,"orientation":2.84489,"phaseMask":1,"position_x":1876.44,"position_y":972.207,"position_z":9.91169,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27100,"id":128403,"map":209,"orientation":0.994838,"phaseMask":1,"position_x":1882.7,"position_y":971.825,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":0.477159,"rotation3":0.878817,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27101,"id":128308,"map":209,"orientation":1.01229,"phaseMask":1,"position_x":1876.14,"position_y":976.482,"position_z":9.05195,"rotation0":0,"rotation1":0,"rotation2":0.484809,"rotation3":0.87462,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27102,"id":128403,"map":209,"orientation":2.98451,"phaseMask":1,"position_x":1839.42,"position_y":1023.49,"position_z":9.56256,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27103,"id":128403,"map":209,"orientation":-1.18682,"phaseMask":1,"position_x":1861.12,"position_y":1019.39,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27104,"id":128403,"map":209,"orientation":0.663225,"phaseMask":1,"position_x":1866.24,"position_y":1008.4,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":0.325568,"rotation3":0.945519,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27105,"id":128403,"map":209,"orientation":1.0472,"phaseMask":1,"position_x":1865.03,"position_y":1012.49,"position_z":8.8768,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27106,"id":128403,"map":209,"orientation":2.70526,"phaseMask":1,"position_x":1890.12,"position_y":989.759,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27107,"id":128308,"map":209,"orientation":-2.98451,"phaseMask":1,"position_x":1897.08,"position_y":980.836,"position_z":8.95884,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27108,"id":128403,"map":209,"orientation":-0.279253,"phaseMask":1,"position_x":1894.39,"position_y":977.006,"position_z":8.92631,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27109,"id":128308,"map":209,"orientation":2.75762,"phaseMask":1,"position_x":1897.98,"position_y":985.276,"position_z":8.89835,"rotation0":0,"rotation1":0,"rotation2":0.981627,"rotation3":0.190809,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27110,"id":128308,"map":209,"orientation":-2.56563,"phaseMask":1,"position_x":1888.64,"position_y":977.75,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.958819,"rotation3":0.284017,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27111,"id":128403,"map":209,"orientation":0.506145,"phaseMask":1,"position_x":1871.86,"position_y":994.256,"position_z":8.8819,"rotation0":0,"rotation1":0,"rotation2":0.25038,"rotation3":0.968148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27112,"id":128308,"map":209,"orientation":2.56563,"phaseMask":1,"position_x":1890.27,"position_y":970.862,"position_z":9.01388,"rotation0":0,"rotation1":0,"rotation2":0.958819,"rotation3":0.284017,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27113,"id":128403,"map":209,"orientation":1.0821,"phaseMask":1,"position_x":1871.3,"position_y":1008.32,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27114,"id":128403,"map":209,"orientation":0.575959,"phaseMask":1,"position_x":1832.72,"position_y":1032.39,"position_z":9.45168,"rotation0":0,"rotation1":0,"rotation2":0.284016,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27115,"id":128403,"map":209,"orientation":3.05433,"phaseMask":1,"position_x":1841.08,"position_y":1045.54,"position_z":9.21622,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27116,"id":128308,"map":209,"orientation":0.942478,"phaseMask":1,"position_x":1836.74,"position_y":1029.36,"position_z":9.62377,"rotation0":0,"rotation1":0,"rotation2":0.453991,"rotation3":0.891006,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27117,"id":128403,"map":209,"orientation":-2.49582,"phaseMask":1,"position_x":1852.41,"position_y":1024.78,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27118,"id":128403,"map":209,"orientation":-0.401426,"phaseMask":1,"position_x":1843.19,"position_y":1041.16,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27119,"id":128403,"map":209,"orientation":0.959931,"phaseMask":1,"position_x":1841.82,"position_y":1027.76,"position_z":9.15097,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27120,"id":128403,"map":209,"orientation":-1.67552,"phaseMask":1,"position_x":1839.18,"position_y":1036.88,"position_z":9.35239,"rotation0":0,"rotation1":0,"rotation2":-0.743146,"rotation3":0.669129,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27121,"id":128403,"map":209,"orientation":0.977384,"phaseMask":1,"position_x":1845.54,"position_y":1024.12,"position_z":9.07972,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27122,"id":128308,"map":209,"orientation":-1.71042,"phaseMask":1,"position_x":1863.41,"position_y":1044.78,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27123,"id":141596,"map":209,"orientation":-2.97579,"phaseMask":1,"position_x":1908.09,"position_y":1017.97,"position_z":11.5153,"rotation0":0,"rotation1":0,"rotation2":-0.996566,"rotation3":0.0828064,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":27124,"id":141851,"map":209,"orientation":2.79252,"phaseMask":1,"position_x":1909.48,"position_y":1016.13,"position_z":11.5157,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27126,"id":128403,"map":209,"orientation":-0.436333,"phaseMask":1,"position_x":1867.74,"position_y":1041.84,"position_z":8.8768,"rotation0":0,"rotation1":0,"rotation2":-0.21644,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27127,"id":128308,"map":209,"orientation":-0.488692,"phaseMask":1,"position_x":1869.28,"position_y":1020.08,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.241922,"rotation3":0.970296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27128,"id":128403,"map":209,"orientation":0.855211,"phaseMask":1,"position_x":1887.94,"position_y":1029.08,"position_z":9.14775,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27129,"id":128403,"map":209,"orientation":-2.1293,"phaseMask":1,"position_x":1892.57,"position_y":1006.37,"position_z":9.06781,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27130,"id":128403,"map":209,"orientation":-1.98968,"phaseMask":1,"position_x":1888.36,"position_y":1037,"position_z":8.92103,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27131,"id":128403,"map":209,"orientation":-0.453786,"phaseMask":1,"position_x":1881.99,"position_y":1034.68,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27132,"id":128403,"map":209,"orientation":2.79253,"phaseMask":1,"position_x":1891.6,"position_y":1023.06,"position_z":9.37117,"rotation0":0,"rotation1":0,"rotation2":0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27133,"id":128403,"map":209,"orientation":-0.453786,"phaseMask":1,"position_x":1845.96,"position_y":1047.25,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27134,"id":128403,"map":209,"orientation":-2.74017,"phaseMask":1,"position_x":1858.7,"position_y":1053.75,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.979925,"rotation3":0.199366,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27135,"id":128403,"map":209,"orientation":-2.3911,"phaseMask":1,"position_x":1862.12,"position_y":1050.76,"position_z":9.05665,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27136,"id":128308,"map":209,"orientation":1.11701,"phaseMask":1,"position_x":1866.33,"position_y":1049.64,"position_z":9.01483,"rotation0":0,"rotation1":0,"rotation2":0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27137,"id":128403,"map":209,"orientation":-2.19912,"phaseMask":1,"position_x":1881.46,"position_y":1041.43,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27138,"id":128403,"map":209,"orientation":-2.16421,"phaseMask":1,"position_x":1871.08,"position_y":1046.76,"position_z":9.03374,"rotation0":0,"rotation1":0,"rotation2":-0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27139,"id":128403,"map":209,"orientation":0.855211,"phaseMask":1,"position_x":1875.85,"position_y":1044.26,"position_z":9.07804,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27140,"id":141832,"map":209,"orientation":-2.3911,"phaseMask":1,"position_x":1650.91,"position_y":1171.88,"position_z":10.901,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/TanarisInstance":"9a5f1f52da6081aaf56c1d6edbb7bb64afd2ae40396bf59ce9a4b44584e7b7e7","patch/World/maps/TanarisInstance":"af1913e223a5af9b30163169cb09973fda55882f5033465791e32d60191a88f3"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/zulfarrak/source-snapshot.json","coordinateTransform":"three(x,y,z)=(-wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["21/21 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"blackrock-spire","title":"Blackrock Spire","mapId":229,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[55,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Blackrock Spire","theme":"Instanced dungeon","summary":"Fight through Blackrock Spire, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Blackrock Spire...","unchartedAreaName":"Uncharted Blackrock Spire","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":543.6145},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/229-blackrockspire/visual.glb","checksum":"6d23fe28b53771d4dc6bb0d5e49012afb163d0e935d5a7b53d79836d0c651691","size":11138748,"triangleCount":275958}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/229-blackrockspire/collision.glb","checksum":"eb47fcb1cf8ee74d46e4b8f0e8f8a057fb36ad2a4ceaffc2c8a3a9f1c7e4d309","size":1850720,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/229-blackrockspire/navigation.glb","checksum":"3fb6be3c02b2d84d1ffb7a943570df7f101173338a5dc9f109e34c275cfcabf9","size":435408,"triangleCount":33545}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-256.5857,-59.4414,-918.1778],"max":[274.3883,121.5526,-163.1577]},"entrance":{"name":"Blackrock Spire Entrance","footPosition":[-55.77,29.3326,-511.0078],"forward":[-0.13142282443853825,0,0.9913264049830395],"yaw":-0.1318041170900672},"areas":[{"id":"entrance","name":"Blackrock Spire Entrance","center":[-55.77,29.3326,-511.0078],"radius":35},{"id":"area-burning-felguard","name":"Burning Felguard's Encounter","center":[135.1883,43.8436,-610.2938],"radius":42},{"id":"area-crystal-fang","name":"Crystal Fang's Encounter","center":[128.3783,13.5936,-688.1338],"radius":42},{"id":"area-spirestone-battle-lord","name":"Spirestone Battle Lord's Encounter","center":[57.6283,11.2536,-703.0538],"radius":42},{"id":"area-spirestone-butcher","name":"Spirestone Butcher's Encounter","center":[59.3232,11.3259,-727.8818],"radius":42},{"id":"area-shadow-hunter-vosh-gajin","name":"Shadow Hunter Vosh'gajin's Encounter","center":[143.9283,4.2036,-768.1438],"radius":42},{"id":"area-war-master-voone","name":"War Master Voone's Encounter","center":[39.7147,-39.1506,-745.1128],"radius":42},{"id":"area-mother-smolderweb","name":"Mother Smolderweb's Encounter","center":[158.2483,-10.3364,-851.8138],"radius":42},{"id":"area-quartermaster-zigris","name":"Quartermaster Zigris's Encounter","center":[213.1973,66.8838,-761.5468],"radius":42},{"id":"area-halycon","name":"Halycon's Encounter","center":[216.6523,43.9815,-624.1118],"radius":42},{"id":"area-overlord-wyrmthalak","name":"Overlord Wyrmthalak's Encounter","center":[45.3708,70.2467,-772.1498],"radius":42},{"id":"area-pyroguard-emberseer","name":"Pyroguard Emberseer's Encounter","center":[-121.6997,75.9002,-543.9978],"radius":42},{"id":"area-solakar-flamewreath","name":"Solakar Flamewreath's Encounter","center":[-71.441,52.7562,-227.8167],"radius":42},{"id":"area-warchief-rend-blackhand","name":"Warchief Rend Blackhand's Encounter","center":[-136.5377,101.5526,-729.5828],"radius":42},{"id":"area-the-beast","name":"The Beast's Encounter","center":[-101.4717,86.9186,-849.7628],"radius":42},{"id":"area-general-drakkisath","name":"General Drakkisath's Encounter","center":[-13.7126,90.5296,-571.9578],"radius":42}],"entities":{"entry-10447":{"id":"entry-10447","kind":"mob","name":"Chromatic Dragonspawn","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5714,"damageMultiplier":1.12},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5714,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10094-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0057,"labelHeight":3.018,"markerRadius":2.1096}}},"entry-10442":{"id":"entry-10442","kind":"mob","name":"Chromatic Whelp","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-12167","name":"Lightning Bolt","spellId":12167,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4125,"damageMultiplier":1.12},{"id":"spell-16250","name":"Fireball Volley","spellId":16250,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4125,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10095-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6266,"markerRadius":1.0609}}},"entry-9216":{"id":"entry-9216","kind":"mob","name":"Spirestone Warlord","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-16171","name":"Empower Will","spellId":16171,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5393,"damageMultiplier":1.12},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5393,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11582-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0296,"labelHeight":9.2804,"markerRadius":2.5649}}},"entry-9240":{"id":"entry-9240","kind":"mob","name":"Smolderthorn Shadow Priest","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15800","name":"Mana Burn","spellId":15800,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4497,"damageMultiplier":1.12},{"id":"spell-11641","name":"Hex","spellId":11641,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4497,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28277-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-10221":{"id":"entry-10221","kind":"mob","name":"Bloodaxe Worg Pup","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9563-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.1001,"markerRadius":0.65}}},"entry-10220":{"id":"entry-10220","kind":"boss","name":"Halycon","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5931,"damageMultiplier":1.35},{"id":"spell-13738","name":"Rend","spellId":13738,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5931,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9567-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2003,"markerRadius":2.8409}}},"entry-9268":{"id":"entry-9268","kind":"mob","name":"Smolderthorn Berserker","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17547","name":"Mortal Strike","spellId":17547,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":12000,"damageMultiplier":1.12},{"id":"spell-13446","name":"Strike","spellId":13446,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4169,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-7803-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0102,"labelHeight":4.1867,"markerRadius":1.3488}}},"entry-10299":{"id":"entry-10299","kind":"mob","name":"Scarshield Infiltrator","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":5257,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5257,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9642-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9583":{"id":"entry-9583","kind":"mob","name":"Bloodaxe Veteran","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-15618","name":"Snap Kick","spellId":15618,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4270,"damageMultiplier":1.12},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4270,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9633-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10261":{"id":"entry-10261","kind":"mob","name":"Burning Felhound","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1},{"id":"spell-20817","name":"Mana Burn","spellId":20817,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6370,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-1913-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.143,"markerRadius":2.3529}}},"entry-9201":{"id":"entry-9201","kind":"mob","name":"Spirestone Ogre Magus","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6742","name":"Bloodlust","spellId":6742,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5436,"damageMultiplier":1.12},{"id":"spell-13747","name":"Slow","spellId":13747,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5436,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11562-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-9199":{"id":"entry-9199","kind":"mob","name":"Spirestone Enforcer","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14516","name":"Strike","spellId":14516,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6116,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11577-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-9200":{"id":"entry-9200","kind":"mob","name":"Spirestone Reaver","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11876","name":"War Stomp","spellId":11876,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6810,"damageMultiplier":0.62,"radius":8},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":6810,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11581-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.028,"labelHeight":8.7832,"markerRadius":2.4275}}},"entry-9198":{"id":"entry-9198","kind":"mob","name":"Spirestone Mystic","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15981","name":"Rejuvenation","spellId":15981,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":4954,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15982","name":"Healing Wave","spellId":15982,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":4954,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11579-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0264,"labelHeight":8.2861,"markerRadius":2.2901}}},"entry-9196":{"id":"entry-9196","kind":"mob","name":"Highlord Omokk","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3200,"damageMultiplier":1},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4107,"damageMultiplier":1.12},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4107,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11565-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.028,"labelHeight":8.7287,"markerRadius":2.7613}}},"entry-9218":{"id":"entry-9218","kind":"boss","name":"Spirestone Battle Lord","title":"Dungeon Boss","hasLoot":true,"combat":{"level":58,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5144,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.29,"archetype":"winged","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11576-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0296,"labelHeight":9.2227,"markerRadius":2.9176}}},"entry-9197":{"id":"entry-9197","kind":"mob","name":"Spirestone Battle Mage","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16170","name":"Bloodlust","spellId":16170,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7446,"damageMultiplier":1.12},{"id":"spell-15305","name":"Chain Lightning","spellId":15305,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7446,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11543-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0264,"labelHeight":8.2861,"markerRadius":2.2901}}},"entry-9217":{"id":"entry-9217","kind":"mob","name":"Spirestone Lord Magus","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16170","name":"Bloodlust","spellId":16170,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6047,"damageMultiplier":1.12},{"id":"spell-13323","name":"Polymorph","spellId":13323,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6047,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11578-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0296,"labelHeight":9.2804,"markerRadius":2.5649}}},"entry-9236":{"id":"entry-9236","kind":"boss","name":"Shadow Hunter Vosh'gajin","title":"Dungeon Boss","hasLoot":true,"combat":{"level":58,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1300,"damageMultiplier":1},{"id":"spell-16097","name":"Hex","spellId":16097,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4990,"damageMultiplier":1.35},{"id":"spell-16098","name":"Curse of Blood","spellId":16098,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4990,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9732-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.6065,"markerRadius":0.65}}},"entry-9219":{"id":"entry-9219","kind":"boss","name":"Spirestone Butcher","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6763,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.34,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11574-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.028,"labelHeight":8.7287,"markerRadius":2.7613}}},"entry-9267":{"id":"entry-9267","kind":"mob","name":"Smolderthorn Axe Thrower","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16000","name":"Throw","spellId":16000,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6772,"damageMultiplier":1.12},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6772,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28267-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9239":{"id":"entry-9239","kind":"mob","name":"Smolderthorn Mystic","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15799","name":"Chain Heal","spellId":15799,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":4783,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-16006","name":"Chain Lightning","spellId":16006,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4783,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28271-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9269":{"id":"entry-9269","kind":"mob","name":"Smolderthorn Seer","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15801","name":"Lightning Bolt","spellId":15801,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.12},{"id":"spell-12492","name":"Healing Wave","spellId":12492,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28273-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9265":{"id":"entry-9265","kind":"mob","name":"Smolderthorn Shadow Hunter","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1},{"id":"spell-15582","name":"Backstab","spellId":15582,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6719,"damageMultiplier":1.12},{"id":"spell-12540","name":"Gouge","spellId":12540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6719,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28275-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9241":{"id":"entry-9241","kind":"mob","name":"Smolderthorn Headhunter","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15795","name":"Throw","spellId":15795,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6753,"damageMultiplier":1.12},{"id":"spell-16001","name":"Impale","spellId":16001,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6753,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28269-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9266":{"id":"entry-9266","kind":"mob","name":"Smolderthorn Witch Doctor","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28279-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9259":{"id":"entry-9259","kind":"mob","name":"Firebrand Grunt","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2700,"damageMultiplier":1},{"id":"spell-15128","name":"Mark of Flames","spellId":15128,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4342,"damageMultiplier":1.12},{"id":"spell-13737","name":"Mortal Strike","spellId":13737,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9664-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9261":{"id":"entry-9261","kind":"mob","name":"Firebrand Darkweaver","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15128","name":"Mark of Flames","spellId":15128,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7257,"damageMultiplier":1.12},{"id":"spell-14887","name":"Shadow Bolt Volley","spellId":14887,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7257,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9644-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9262":{"id":"entry-9262","kind":"mob","name":"Firebrand Invoker","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15128","name":"Mark of Flames","spellId":15128,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5960,"damageMultiplier":1.12},{"id":"spell-12468","name":"Flamestrike","spellId":12468,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5960,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9648-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9260":{"id":"entry-9260","kind":"mob","name":"Firebrand Legionnaire","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3248","name":"Improved Blocking","spellId":3248,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6027,"damageMultiplier":1.12},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":6027,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9660-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9264":{"id":"entry-9264","kind":"mob","name":"Firebrand Pyromancer","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1300,"damageMultiplier":1},{"id":"spell-15128","name":"Mark of Flames","spellId":15128,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6466,"damageMultiplier":1.12},{"id":"spell-15096","name":"Flame Shock","spellId":15096,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6466,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9656-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9263":{"id":"entry-9263","kind":"mob","name":"Firebrand Dreadweaver","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16071","name":"Curse of the Firebrand","spellId":16071,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5925,"damageMultiplier":1.12},{"id":"spell-15728","name":"Plague Cloud","spellId":15728,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5925,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9652-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10375":{"id":"entry-10375","kind":"mob","name":"Spire Spiderling","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9756-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.3303,"markerRadius":1.2168}}},"entry-10596":{"id":"entry-10596","kind":"boss","name":"Mother Smolderweb","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-16104","name":"Crystallize","spellId":16104,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4202,"damageMultiplier":1.35},{"id":"spell-16468","name":"Mother's Milk","spellId":16468,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4202,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9929-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.8428,"markerRadius":4.2588}}},"entry-10374":{"id":"entry-10374","kind":"mob","name":"Spire Spider","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-16104","name":"Crystallize","spellId":16104,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5803,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9755-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.8007,"markerRadius":3.042}}},"entry-10376":{"id":"entry-10376","kind":"boss","name":"Crystal Fang","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6281,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.29,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9755-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.8007,"markerRadius":3.042}}},"entry-9716":{"id":"entry-9716","kind":"mob","name":"Bloodaxe Warmonger","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4611,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}},{"id":"spell-10966","name":"Uppercut","spellId":10966,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4611,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9617-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9717":{"id":"entry-9717","kind":"mob","name":"Bloodaxe Summoner","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15791","name":"Arcane Missiles","spellId":15791,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6312,"damageMultiplier":1.12},{"id":"spell-15532","name":"Frost Nova","spellId":15532,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6312,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9613-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9692":{"id":"entry-9692","kind":"mob","name":"Bloodaxe Raider","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4531,"damageMultiplier":0.62,"radius":8},{"id":"spell-15572","name":"Sunder Armor","spellId":15572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4531,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9602-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9696":{"id":"entry-9696","kind":"mob","name":"Bloodaxe Worg","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9562-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7879,"markerRadius":1.8466}}},"entry-9736":{"id":"entry-9736","kind":"boss","name":"Quartermaster Zigris","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15504","name":"Drink Healing Potion","spellId":15504,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5589,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15609","name":"Hooked Net","spellId":15609,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5589,"damageMultiplier":1.35},{"id":"spell-16496","name":"Shoot","spellId":16496,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5589,"damageMultiplier":1.35},{"id":"spell-16497","name":"Stun Bomb","spellId":16497,"delivery":"projectile","target":"random-party","school":"fire","animation":"cast","range":28,"cooldownMs":5589,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":2500}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9738-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9568":{"id":"entry-9568","kind":"boss","name":"Overlord Wyrmthalak","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6762,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"serpent","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-8711-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0114,"labelHeight":7.5409,"markerRadius":4.2192}}},"entry-9708":{"id":"entry-9708","kind":"mob","name":"Burning Imp","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-4449-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.4865,"markerRadius":0.65}}},"entry-10263":{"id":"entry-10263","kind":"boss","name":"Burning Felguard","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2300,"damageMultiplier":1},{"id":"spell-16046","name":"Blast Wave","spellId":16046,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4299,"damageMultiplier":1.35},{"id":"spell-15588","name":"Thunderclap","spellId":15588,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4299,"damageMultiplier":1.35},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4299,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.29,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-5047-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0153,"labelHeight":8.673,"markerRadius":1.2829}}},"entry-9237":{"id":"entry-9237","kind":"boss","name":"War Master Voone","title":"Dungeon Boss","hasLoot":true,"combat":{"level":58,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6558,"damageMultiplier":1.35},{"id":"spell-16075","name":"Throw Axe","spellId":16075,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6558,"damageMultiplier":1.35},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":6558,"damageMultiplier":0.82,"radius":11},{"id":"spell-15618","name":"Snap Kick","spellId":15618,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6558,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28281-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0169,"labelHeight":4.5281,"markerRadius":0.8184}}},"entry-9596":{"id":"entry-9596","kind":"mob","name":"Bannok Grimaxe","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9668-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0101,"labelHeight":4.3581,"markerRadius":1.0118}}},"entry-9693":{"id":"entry-9693","kind":"mob","name":"Bloodaxe Evoker","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13748","name":"Arcane Bolt","spellId":13748,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5505,"damageMultiplier":1.12},{"id":"spell-15744","name":"Blast Wave","spellId":15744,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5505,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9625-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10814":{"id":"entry-10814","kind":"mob","name":"Chromatic Elite Guard","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2600,"damageMultiplier":1},{"id":"spell-15708","name":"Mortal Strike","spellId":15708,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4586,"damageMultiplier":1.12},{"id":"spell-16790","name":"Stunning Strike","spellId":16790,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10116-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":5.6557,"markerRadius":3.1644}}},"entry-9701":{"id":"entry-9701","kind":"mob","name":"Spire Scorpid","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-2864-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.6632,"markerRadius":0.8953}}},"entry-10177":{"id":"entry-10177","kind":"mob","name":"Spire Scarab","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9469-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0009,"labelHeight":1.1344,"markerRadius":0.65}}},"entry-9816":{"id":"entry-9816","kind":"boss","name":"Pyroguard Emberseer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":7040,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/39572de3191c78a4573a438b4f299709d7ff1606c17e59844c7165b245fc5993.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9348,"markerRadius":0.878}}},"entry-9096":{"id":"entry-9096","kind":"mob","name":"Rage Talon Dragonspawn","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12021","name":"Fixate","spellId":12021,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5469,"damageMultiplier":1.12},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5469,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"raptor","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-2554-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":3.7351,"markerRadius":2.637}}},"entry-10083":{"id":"entry-10083","kind":"mob","name":"Rage Talon Flamescale","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16102","name":"Flamestrike","spellId":16102,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4078,"damageMultiplier":1.12},{"id":"spell-15285","name":"Fireball Volley","spellId":15285,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4078,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"raptor","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-8249-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0057,"labelHeight":2.8487,"markerRadius":1.9451}}},"entry-10366":{"id":"entry-10366","kind":"mob","name":"Rage Talon Dragon Guard","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6131,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":8000,"magnitude":0.15}},{"id":"spell-16145","name":"Sunder Armor","spellId":16145,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6131,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"raptor","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9753-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":4.7131,"markerRadius":2.637}}},"entry-10899":{"id":"entry-10899","kind":"mob","name":"Goraluk Anvilcrack","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6253","name":"Backhand","spellId":6253,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6320,"damageMultiplier":1.12},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6320,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10222-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-10371":{"id":"entry-10371","kind":"mob","name":"Rage Talon Captain","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16169","name":"Arcing Smash","spellId":16169,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5635,"damageMultiplier":1.12},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5635,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"raptor","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-8310-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":5.6557,"markerRadius":3.1644}}},"entry-10372":{"id":"entry-10372","kind":"mob","name":"Rage Talon Fire Tongue","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16144","name":"Fire Blast","spellId":16144,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6396,"damageMultiplier":1.12},{"id":"spell-16168","name":"Flame Buffet","spellId":16168,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6396,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"raptor","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-8309-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":3.4982,"markerRadius":2.4314}}},"entry-9818":{"id":"entry-9818","kind":"mob","name":"Blackhand Summoner","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12466","name":"Fireball","spellId":12466,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7230,"damageMultiplier":1.12},{"id":"spell-15532","name":"Frost Nova","spellId":15532,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7230,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9849-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-9819":{"id":"entry-9819","kind":"mob","name":"Blackhand Veteran","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":6550,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-15749","name":"Shield Charge","spellId":15749,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6550,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15749","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9686-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10316":{"id":"entry-10316","kind":"mob","name":"Blackhand Incarcerator","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16045","name":"Encage","spellId":16045,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5366,"damageMultiplier":1.12},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5366,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9690-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9817":{"id":"entry-9817","kind":"mob","name":"Blackhand Dreadweaver","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7479,"damageMultiplier":1.12},{"id":"spell-7068","name":"Veil of Shadow","spellId":7068,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7479,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9670-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10762":{"id":"entry-10762","kind":"mob","name":"Blackhand Thug","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10172-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-10317":{"id":"entry-10317","kind":"mob","name":"Blackhand Elite","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2300,"damageMultiplier":1},{"id":"spell-6253","name":"Backhand","spellId":6253,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6723,"damageMultiplier":1.12},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6723,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9734-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-10162":{"id":"entry-10162","kind":"mob","name":"Lord Victor Nefarius","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-20741","name":"Shadow Bolt Volley","spellId":20741,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4063,"damageMultiplier":0.62,"radius":8},{"id":"spell-24668","name":"Shadow Bolt","spellId":24668,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4063,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9472-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.001,"labelHeight":3.5751,"markerRadius":0.7474}}},"entry-10429":{"id":"entry-10429","kind":"boss","name":"Warchief Rend Blackhand","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7468,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9778-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10430":{"id":"entry-10430","kind":"boss","name":"The Beast","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.69,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16636","name":"Berserker Charge","spellId":16636,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4912,"damageMultiplier":1.35},{"id":"spell-16144","name":"Fire Blast","spellId":16144,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4912,"damageMultiplier":1.35},{"id":"spell-16788","name":"Fireball","spellId":16788,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4912,"damageMultiplier":1.35},{"id":"spell-16785","name":"Flamebreak","spellId":16785,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4912,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.37,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10193-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0402,"labelHeight":15.8698,"markerRadius":4.5}}},"entry-10509":{"id":"entry-10509","kind":"mob","name":"Jed Runewatcher","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35178","name":"Shield Bash","spellId":35178,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":5800,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-35178","durationMs":8000,"magnitude":0.15}},{"id":"spell-15749","name":"Shield Charge","spellId":15749,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5800,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15749","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9686-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10363":{"id":"entry-10363","kind":"boss","name":"General Drakkisath","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.1745920000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-23462","name":"Fire Nova","spellId":23462,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5725,"damageMultiplier":0.82,"radius":11},{"id":"spell-20691","name":"Cleave","spellId":20691,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5725,"damageMultiplier":0.82,"radius":11},{"id":"spell-23023","name":"Conflagration","spellId":23023,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5725,"damageMultiplier":1.35},{"id":"spell-23931","name":"Thunderclap","spellId":23931,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5725,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10115-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0114,"labelHeight":11.1034,"markerRadius":4.5}}},"entry-10318":{"id":"entry-10318","kind":"mob","name":"Blackhand Assassin","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15582","name":"Backstab","spellId":15582,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4734,"damageMultiplier":1.12},{"id":"spell-12540","name":"Gouge","spellId":12540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4734,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9691-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-10319":{"id":"entry-10319","kind":"mob","name":"Blackhand Iron Guard","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4097,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":8000,"magnitude":0.15}},{"id":"spell-15062","name":"Shield Wall","spellId":15062,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4097,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15062","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9696-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-9045":{"id":"entry-9045","kind":"mob","name":"Scarshield Acolyte","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5823,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-14032","name":"Shadow Word: Pain","spellId":14032,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5823,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-8898-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9097":{"id":"entry-9097","kind":"mob","name":"Scarshield Legionnaire","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":7128,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":7128,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9629-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9098":{"id":"entry-9098","kind":"mob","name":"Scarshield Spellbinder","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15122","name":"Counterspell","spellId":15122,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4970,"damageMultiplier":1.12},{"id":"spell-15123","name":"Resist Fire","spellId":15123,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4970,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9618-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9416":{"id":"entry-9416","kind":"mob","name":"Scarshield Worg","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11420-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.5066,"markerRadius":1.6335}}},"entry-9258":{"id":"entry-9258","kind":"mob","name":"Scarshield Raider","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14030","name":"Hooked Net","spellId":14030,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5445,"damageMultiplier":1.12},{"id":"spell-12057","name":"Strike","spellId":12057,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5445,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9637-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9257":{"id":"entry-9257","kind":"mob","name":"Scarshield Warlock","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6704,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9609-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9718":{"id":"entry-9718","kind":"mob","name":"Ghok Bashguud","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11809-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10264":{"id":"entry-10264","kind":"boss","name":"Solakar Flamewreath","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16727","name":"War Stomp","spellId":16727,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4302,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9581-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.01,"labelHeight":6.5983,"markerRadius":3.6918}}}},"staticSpawns":[{"id":"creature-20","entityId":"entry-10447","position":[-179.7727,90.4806,-707.2708],"yaw":-3.12414,"spawnMask":1},{"id":"creature-21","entityId":"entry-10442","position":[-181.2767,90.4826,-704.4068],"yaw":-3.19395,"spawnMask":1},{"id":"creature-22","entityId":"entry-10442","position":[-180.4037,90.4796,-709.9628],"yaw":-3.07178,"spawnMask":1},{"id":"creature-23","entityId":"entry-10442","position":[-178.2697,90.4676,-702.6118],"yaw":-3.22886,"spawnMask":1},{"id":"creature-24187","entityId":"entry-9216","position":[78.49,31.9201,-655.5188],"yaw":-6.10359,"spawnMask":1},{"id":"creature-24188","entityId":"entry-9216","position":[57.2427,29.8147,-656.2918],"yaw":-3.8986,"spawnMask":1},{"id":"creature-40154","entityId":"entry-9240","position":[70.4683,-3.9264,-746.2038],"yaw":-6,"spawnMask":1},{"id":"creature-40169","entityId":"entry-10221","position":[218.0863,43.918,-611.7338],"yaw":-1.59871,"spawnMask":1},{"id":"creature-40245","entityId":"entry-10220","position":[216.6523,43.9815,-624.1118],"yaw":-0.657799,"spawnMask":1},{"id":"creature-40246","entityId":"entry-10221","position":[218.3853,43.918,-606.6848],"yaw":-4.7403,"spawnMask":1},{"id":"creature-40247","entityId":"entry-10221","position":[208.5453,43.918,-602.4018],"yaw":-2.69277,"spawnMask":1},{"id":"creature-40248","entityId":"entry-10221","position":[214.6213,43.918,-609.1708],"yaw":-3.14202,"spawnMask":1},{"id":"creature-40249","entityId":"entry-10221","position":[211.3223,43.918,-605.7148],"yaw":-1.77778,"spawnMask":1},{"id":"creature-40250","entityId":"entry-10221","position":[214.8673,43.918,-603.2748],"yaw":-0.261964,"spawnMask":1},{"id":"creature-42188","entityId":"entry-9268","position":[100.3002,60.9568,-802.8958],"yaw":-4.5204,"spawnMask":1},{"id":"creature-42189","entityId":"entry-9268","position":[86.0584,57.4927,-771.5928],"yaw":-0.85521,"spawnMask":1},{"id":"creature-42190","entityId":"entry-9268","position":[72.4221,67.8896,-800.2668],"yaw":-5.44524,"spawnMask":1},{"id":"creature-42191","entityId":"entry-9268","position":[63.9932,-39.1506,-734.4538],"yaw":-3.89064,"spawnMask":1},{"id":"creature-42192","entityId":"entry-9268","position":[23.3683,-39.1264,-767.9638],"yaw":-4.06,"spawnMask":1},{"id":"creature-42193","entityId":"entry-9268","position":[27.5083,-27.4664,-803.6638],"yaw":-2.78,"spawnMask":1},{"id":"creature-42194","entityId":"entry-9268","position":[41.9438,-39.2849,-843.6698],"yaw":-3.00598,"spawnMask":1},{"id":"creature-42195","entityId":"entry-9268","position":[87.7325,-39.3015,-776.2498],"yaw":-6.17529,"spawnMask":1},{"id":"creature-42196","entityId":"entry-9268","position":[87.6572,-39.3044,-824.7328],"yaw":-0.177575,"spawnMask":1},{"id":"creature-42197","entityId":"entry-9268","position":[100.2083,-27.4664,-799.0838],"yaw":-6.1,"spawnMask":1},{"id":"creature-42198","entityId":"entry-9268","position":[87.6228,-39.3181,-802.9688],"yaw":-6.21651,"spawnMask":1},{"id":"creature-42199","entityId":"entry-9268","position":[99.7867,-27.6493,-807.6178],"yaw":-6.201,"spawnMask":1},{"id":"creature-42798","entityId":"entry-10299","position":[-34.3162,43.9247,-685.6448],"yaw":-2.94961,"spawnMask":1},{"id":"creature-43100","entityId":"entry-9268","position":[71.7731,57.3258,-713.7288],"yaw":-1.64061,"spawnMask":1},{"id":"creature-43102","entityId":"entry-9583","position":[81.5482,57.4927,-766.9688],"yaw":-4.41568,"spawnMask":1},{"id":"creature-43103","entityId":"entry-9583","position":[66.2971,68.0802,-801.1348],"yaw":-3.70166,"spawnMask":1},{"id":"creature-43104","entityId":"entry-9583","position":[78.4032,50.4355,-630.7358],"yaw":-1.35292,"spawnMask":1},{"id":"creature-43105","entityId":"entry-9583","position":[106.5464,50.446,-602.1508],"yaw":-1.5988,"spawnMask":1},{"id":"creature-43106","entityId":"entry-9583","position":[94.8083,50.6436,-608.1138],"yaw":-3.22,"spawnMask":1},{"id":"creature-43107","entityId":"entry-9583","position":[95.0483,50.6436,-605.2138],"yaw":-3.26,"spawnMask":1},{"id":"creature-43108","entityId":"entry-9583","position":[111.3202,50.4471,-631.7918],"yaw":-1.63021,"spawnMask":1},{"id":"creature-43109","entityId":"entry-9583","position":[134.1093,50.446,-578.2688],"yaw":-5.4586,"spawnMask":1},{"id":"creature-43110","entityId":"entry-9583","position":[143.9683,50.4461,-615.7618],"yaw":-3.77626,"spawnMask":1},{"id":"creature-43111","entityId":"entry-9583","position":[158.6303,50.446,-584.8628],"yaw":-3.47851,"spawnMask":1},{"id":"creature-43112","entityId":"entry-9583","position":[225.6583,67.0636,-764.5538],"yaw":0,"spawnMask":1},{"id":"creature-43113","entityId":"entry-9583","position":[186.2533,55.6409,-703.2148],"yaw":-1.52424,"spawnMask":1},{"id":"creature-43114","entityId":"entry-9583","position":[177.7833,43.9394,-629.7598],"yaw":-3.10946,"spawnMask":1},{"id":"creature-43115","entityId":"entry-9583","position":[161.7213,37.5726,-655.0968],"yaw":-3.13493,"spawnMask":1},{"id":"creature-43493","entityId":"entry-10261","position":[39.3583,8.8636,-865.5938],"yaw":-6.26,"spawnMask":1},{"id":"creature-43503","entityId":"entry-9201","position":[47.8583,8.8336,-800.3938],"yaw":-2.98,"spawnMask":1},{"id":"creature-43504","entityId":"entry-9199","position":[63.2983,8.8236,-783.7438],"yaw":-4.66,"spawnMask":1},{"id":"creature-43505","entityId":"entry-9199","position":[55.6983,8.8136,-783.6138],"yaw":-4.73,"spawnMask":1},{"id":"creature-43506","entityId":"entry-9199","position":[53.7183,11.4736,-718.9238],"yaw":-3.23,"spawnMask":1},{"id":"creature-43507","entityId":"entry-9200","position":[59.7883,11.2936,-673.0338],"yaw":-4.65,"spawnMask":1},{"id":"creature-43508","entityId":"entry-9198","position":[64.0783,11.2936,-666.3738],"yaw":-4.82,"spawnMask":1},{"id":"creature-43510","entityId":"entry-9201","position":[37.3183,11.2936,-638.6538],"yaw":-3.1,"spawnMask":1},{"id":"creature-43512","entityId":"entry-9200","position":[36.9083,11.2436,-612.6238],"yaw":-3.11,"spawnMask":1},{"id":"creature-43513","entityId":"entry-9198","position":[70.3983,22.7336,-602.7238],"yaw":-5.57,"spawnMask":1},{"id":"creature-43514","entityId":"entry-9198","position":[49.4783,11.2936,-589.9838],"yaw":-6.17,"spawnMask":1},{"id":"creature-43515","entityId":"entry-9201","position":[41.9083,11.2936,-590.4638],"yaw":-3.1,"spawnMask":1},{"id":"creature-43516","entityId":"entry-9201","position":[81.6083,23.6236,-606.7138],"yaw":-5.53,"spawnMask":1},{"id":"creature-43517","entityId":"entry-9200","position":[75.1483,22.8336,-592.8638],"yaw":-5.53,"spawnMask":1},{"id":"creature-43518","entityId":"entry-9196","position":[45.5283,11.2936,-586.6438],"yaw":-4.65,"spawnMask":1},{"id":"creature-43519","entityId":"entry-9218","position":[57.6283,11.2536,-703.0538],"yaw":-4.76,"spawnMask":1},{"id":"creature-43520","entityId":"entry-9197","position":[67.1483,11.4736,-718.8238],"yaw":-6.24,"spawnMask":1},{"id":"creature-43521","entityId":"entry-9217","position":[53.4683,11.2936,-646.4938],"yaw":-4.56,"spawnMask":1},{"id":"creature-43522","entityId":"entry-9236","position":[143.9283,4.2036,-768.1438],"yaw":-6.28,"spawnMask":1},{"id":"creature-43523","entityId":"entry-9219","position":[59.3232,11.3259,-727.8818],"yaw":-1.6,"spawnMask":1},{"id":"creature-43524","entityId":"entry-9267","position":[19.3183,-4.3164,-742.9538],"yaw":-4.66,"spawnMask":1},{"id":"creature-43525","entityId":"entry-9267","position":[27.0583,-4.1664,-745.0538],"yaw":-0.14,"spawnMask":1},{"id":"creature-43526","entityId":"entry-9239","position":[27.0883,-4.1664,-748.6238],"yaw":-6.28,"spawnMask":1},{"id":"creature-43528","entityId":"entry-9239","position":[40.6383,-3.9064,-732.2738],"yaw":-4.66,"spawnMask":1},{"id":"creature-43529","entityId":"entry-9239","position":[44.8583,-3.8664,-733.7838],"yaw":-5.84,"spawnMask":1},{"id":"creature-43530","entityId":"entry-9240","position":[55.9283,-3.8364,-736.3538],"yaw":-3.75,"spawnMask":1},{"id":"creature-43531","entityId":"entry-9269","position":[56.3783,-3.8564,-739.5438],"yaw":-2.4,"spawnMask":1},{"id":"creature-43532","entityId":"entry-9265","position":[60.1283,-3.8664,-739.5038],"yaw":-0.64,"spawnMask":1},{"id":"creature-43533","entityId":"entry-9239","position":[60.2783,-3.8464,-736.6238],"yaw":-5.75,"spawnMask":1},{"id":"creature-43534","entityId":"entry-9240","position":[76.2383,-3.9664,-740.2538],"yaw":-2.25,"spawnMask":1},{"id":"creature-43535","entityId":"entry-9240","position":[80.3683,-3.9864,-740.1438],"yaw":-0.69,"spawnMask":1},{"id":"creature-43536","entityId":"entry-9239","position":[80.2983,-3.9764,-736.4138],"yaw":-5.57,"spawnMask":1},{"id":"creature-43537","entityId":"entry-9267","position":[76.4983,-3.9464,-736.5538],"yaw":-4,"spawnMask":1},{"id":"creature-43538","entityId":"entry-9240","position":[79.2583,-4.0264,-757.5538],"yaw":-6.26,"spawnMask":1},{"id":"creature-43539","entityId":"entry-9240","position":[52.6183,-3.9364,-760.5238],"yaw":-6.19,"spawnMask":1},{"id":"creature-43540","entityId":"entry-9240","position":[76.5483,-4.0864,-774.1438],"yaw":-3.92,"spawnMask":1},{"id":"creature-43541","entityId":"entry-9267","position":[76.3283,-4.1364,-777.3138],"yaw":-2.89,"spawnMask":1},{"id":"creature-43542","entityId":"entry-9240","position":[80.3983,-4.0964,-776.8238],"yaw":-0.63,"spawnMask":1},{"id":"creature-43543","entityId":"entry-9267","position":[80.6583,-4.0864,-774.1938],"yaw":-5.63,"spawnMask":1},{"id":"creature-43544","entityId":"entry-9240","position":[115.9383,3.9136,-763.8638],"yaw":-6.21,"spawnMask":1},{"id":"creature-43545","entityId":"entry-9239","position":[116.0083,3.9136,-769.1138],"yaw":-6.28,"spawnMask":1},{"id":"creature-43546","entityId":"entry-9269","position":[122.8083,3.9236,-777.5038],"yaw":-1.5,"spawnMask":1},{"id":"creature-43547","entityId":"entry-9265","position":[126.5283,3.9236,-777.7438],"yaw":-1.43,"spawnMask":1},{"id":"creature-43548","entityId":"entry-9239","position":[126.8183,3.9236,-759.1538],"yaw":-4.74,"spawnMask":1},{"id":"creature-43549","entityId":"entry-9240","position":[122.9583,3.9236,-758.4638],"yaw":-4.61,"spawnMask":1},{"id":"creature-43550","entityId":"entry-9240","position":[148.4083,3.9336,-759.7538],"yaw":-6.24,"spawnMask":1},{"id":"creature-43551","entityId":"entry-9240","position":[148.0783,3.9336,-775.8438],"yaw":-6.26,"spawnMask":1},{"id":"creature-43552","entityId":"entry-9265","position":[57.8183,-15.8164,-799.0438],"yaw":-3.82,"spawnMask":1},{"id":"creature-43553","entityId":"entry-9265","position":[67.2883,-15.8164,-807.6438],"yaw":-0.82,"spawnMask":1},{"id":"creature-43554","entityId":"entry-9240","position":[66.9783,-15.8164,-799.3738],"yaw":-5.68,"spawnMask":1},{"id":"creature-43555","entityId":"entry-9240","position":[57.7883,-15.8164,-807.7138],"yaw":-2.48,"spawnMask":1},{"id":"creature-43556","entityId":"entry-9267","position":[51.9283,-4.2164,-836.6638],"yaw":-0.1,"spawnMask":1},{"id":"creature-43557","entityId":"entry-9267","position":[64.7183,-4.2064,-839.7638],"yaw":-1.48,"spawnMask":1},{"id":"creature-43558","entityId":"entry-9240","position":[60.4883,-4.2064,-834.7038],"yaw":-1.57,"spawnMask":1},{"id":"creature-43559","entityId":"entry-9239","position":[64.7483,-4.1664,-827.4538],"yaw":-1.56,"spawnMask":1},{"id":"creature-43560","entityId":"entry-9241","position":[102.7383,-27.4664,-807.3038],"yaw":-0.08,"spawnMask":1},{"id":"creature-43567","entityId":"entry-9269","position":[22.7183,-39.1164,-761.0738],"yaw":-3.82,"spawnMask":1},{"id":"creature-43568","entityId":"entry-9240","position":[25.9583,-39.1164,-761.1138],"yaw":-4.85,"spawnMask":1},{"id":"creature-43569","entityId":"entry-9241","position":[30.0483,-39.1064,-761.1838],"yaw":-5.03,"spawnMask":1},{"id":"creature-43570","entityId":"entry-9266","position":[80.2183,-38.9664,-740.7838],"yaw":-2.55,"spawnMask":1},{"id":"creature-43571","entityId":"entry-9241","position":[84.7883,-38.9664,-743.3038],"yaw":-1.3,"spawnMask":1},{"id":"creature-43572","entityId":"entry-9269","position":[84.5583,-38.9664,-735.3238],"yaw":-5.17,"spawnMask":1},{"id":"creature-43574","entityId":"entry-9241","position":[50.7883,-39.0864,-759.7538],"yaw":-4.71,"spawnMask":1},{"id":"creature-43575","entityId":"entry-9241","position":[58.3483,-39.0964,-759.6538],"yaw":-4.94,"spawnMask":1},{"id":"creature-43576","entityId":"entry-9241","position":[94.5483,-39.1864,-863.1138],"yaw":-0.11,"spawnMask":1},{"id":"creature-43577","entityId":"entry-9241","position":[50.0183,-39.1764,-863.1538],"yaw":-2.27,"spawnMask":1},{"id":"creature-43578","entityId":"entry-9266","position":[49.5083,-39.1464,-859.7738],"yaw":-3.43,"spawnMask":1},{"id":"creature-43707","entityId":"entry-9266","position":[53.5383,-39.1464,-859.3038],"yaw":-5.39,"spawnMask":1},{"id":"creature-43748","entityId":"entry-9266","position":[87.4883,-39.1864,-861.0838],"yaw":-3.45,"spawnMask":1},{"id":"creature-43749","entityId":"entry-9266","position":[24.2283,-39.0964,-842.5438],"yaw":-2.99,"spawnMask":1},{"id":"creature-43750","entityId":"entry-9269","position":[28.4683,-39.0964,-840.0938],"yaw":-5.73,"spawnMask":1},{"id":"creature-43751","entityId":"entry-9269","position":[61.3683,-39.1364,-811.1738],"yaw":-1.59,"spawnMask":1},{"id":"creature-43752","entityId":"entry-9269","position":[66.5783,-39.1364,-805.4838],"yaw":0,"spawnMask":1},{"id":"creature-43753","entityId":"entry-9269","position":[56.1183,-39.1364,-805.3238],"yaw":-3.09,"spawnMask":1},{"id":"creature-43754","entityId":"entry-9269","position":[60.9883,-39.1364,-800.0838],"yaw":-4.72,"spawnMask":1},{"id":"creature-43755","entityId":"entry-9269","position":[54.6283,-39.0964,-759.4638],"yaw":-4.8,"spawnMask":1},{"id":"creature-43756","entityId":"entry-9267","position":[52.9283,-39.1064,-763.6338],"yaw":-4.73,"spawnMask":1},{"id":"creature-43757","entityId":"entry-9265","position":[56.9183,-39.1064,-763.4538],"yaw":-4.72,"spawnMask":1},{"id":"creature-43758","entityId":"entry-9265","position":[91.6283,-39.1764,-859.5438],"yaw":-5.16,"spawnMask":1},{"id":"creature-43759","entityId":"entry-9267","position":[88.7183,-39.1864,-864.2338],"yaw":-2.33,"spawnMask":1},{"id":"creature-43760","entityId":"entry-9239","position":[28.8083,-39.0964,-844.0138],"yaw":-0.57,"spawnMask":1},{"id":"creature-43761","entityId":"entry-9239","position":[53.4483,-39.1664,-862.8838],"yaw":-0.63,"spawnMask":1},{"id":"creature-43762","entityId":"entry-9259","position":[0.7083,-38.8564,-790.5938],"yaw":-4.8,"spawnMask":1},{"id":"creature-43763","entityId":"entry-9259","position":[-1.8017,-39.2564,-730.7738],"yaw":-4.28,"spawnMask":1},{"id":"creature-43764","entityId":"entry-9259","position":[24.1283,-39.2264,-707.3238],"yaw":-3.83,"spawnMask":1},{"id":"creature-43765","entityId":"entry-9259","position":[38.9283,-39.2664,-692.7138],"yaw":-4.54,"spawnMask":1},{"id":"creature-43766","entityId":"entry-9259","position":[65.1883,-39.2664,-696.9838],"yaw":-5.73,"spawnMask":1},{"id":"creature-43767","entityId":"entry-9259","position":[60.2183,-39.2664,-712.7938],"yaw":-3.6,"spawnMask":1},{"id":"creature-43768","entityId":"entry-9259","position":[65.3683,-39.2664,-712.1338],"yaw":-5.39,"spawnMask":1},{"id":"creature-43771","entityId":"entry-9261","position":[4.1483,-39.1964,-727.5438],"yaw":-4.72,"spawnMask":1},{"id":"creature-44007","entityId":"entry-9261","position":[48.0783,-39.2564,-694.5438],"yaw":-4.92,"spawnMask":1},{"id":"creature-44008","entityId":"entry-9261","position":[70.1283,-39.2564,-692.2138],"yaw":-5.66,"spawnMask":1},{"id":"creature-44009","entityId":"entry-9261","position":[73.9883,-39.2564,-699.2338],"yaw":-5.99,"spawnMask":1},{"id":"creature-44019","entityId":"entry-9259","position":[57.6483,-39.2664,-693.2438],"yaw":-4.67,"spawnMask":1},{"id":"creature-44020","entityId":"entry-9259","position":[97.6483,-39.2664,-690.9938],"yaw":-5.22,"spawnMask":1},{"id":"creature-44078","entityId":"entry-9261","position":[62.7983,-39.2664,-711.1738],"yaw":-4.45,"spawnMask":1},{"id":"creature-44149","entityId":"entry-9262","position":[64.6183,-39.2664,-716.4038],"yaw":-1.09,"spawnMask":1},{"id":"creature-44150","entityId":"entry-9262","position":[78.0683,-39.2664,-700.1938],"yaw":-1.53,"spawnMask":1},{"id":"creature-44151","entityId":"entry-9262","position":[52.0583,-39.2664,-698.7138],"yaw":-4.89,"spawnMask":1},{"id":"creature-44152","entityId":"entry-9262","position":[-4.2117,-38.8064,-757.5938],"yaw":-4.48,"spawnMask":1},{"id":"creature-44153","entityId":"entry-9261","position":[-2.6517,-38.8264,-763.1938],"yaw":-1.32,"spawnMask":1},{"id":"creature-44154","entityId":"entry-9261","position":[-7.5817,-39.0664,-772.6738],"yaw":-5.25,"spawnMask":1},{"id":"creature-44269","entityId":"entry-9262","position":[-10.8217,-39.1664,-773.2538],"yaw":-3.63,"spawnMask":1},{"id":"creature-44270","entityId":"entry-9259","position":[-6.9217,-39.0864,-775.7538],"yaw":-0.7,"spawnMask":1},{"id":"creature-44271","entityId":"entry-9262","position":[105.6783,-39.2564,-708.1638],"yaw":-4.7,"spawnMask":1},{"id":"creature-44272","entityId":"entry-9259","position":[110.0783,-39.2564,-713.5238],"yaw":-0.36,"spawnMask":1},{"id":"creature-44304","entityId":"entry-9259","position":[100.5183,-39.2564,-737.9838],"yaw":-4,"spawnMask":1},{"id":"creature-44305","entityId":"entry-9262","position":[101.7683,-39.2564,-742.3438],"yaw":-1.67,"spawnMask":1},{"id":"creature-44306","entityId":"entry-9259","position":[105.6883,-39.2664,-740.4738],"yaw":-0.24,"spawnMask":1},{"id":"creature-44307","entityId":"entry-9261","position":[103.5983,-39.2664,-737.2938],"yaw":-5.05,"spawnMask":1},{"id":"creature-44308","entityId":"entry-9259","position":[117.2683,-39.2664,-722.4838],"yaw":-3.39,"spawnMask":1},{"id":"creature-44309","entityId":"entry-9261","position":[123.0083,-39.2664,-723.3638],"yaw":-0.15,"spawnMask":1},{"id":"creature-44310","entityId":"entry-9262","position":[120.1583,-39.2664,-720.0838],"yaw":-4.79,"spawnMask":1},{"id":"creature-44311","entityId":"entry-9259","position":[117.2283,-39.2664,-707.0038],"yaw":-6.28,"spawnMask":1},{"id":"creature-44312","entityId":"entry-9261","position":[117.7483,-39.2664,-710.4538],"yaw":-6.2,"spawnMask":1},{"id":"creature-44313","entityId":"entry-9262","position":[132.5583,-39.2664,-720.2138],"yaw":-5.5,"spawnMask":1},{"id":"creature-44314","entityId":"entry-9261","position":[142.0583,-39.2664,-720.2538],"yaw":-1.07,"spawnMask":1},{"id":"creature-44315","entityId":"entry-9261","position":[137.9083,-39.2664,-707.7438],"yaw":-4.58,"spawnMask":1},{"id":"creature-44316","entityId":"entry-9259","position":[138.6583,-39.2664,-712.0038],"yaw":-4.64,"spawnMask":1},{"id":"creature-44317","entityId":"entry-9259","position":[142.9683,-39.2664,-717.5138],"yaw":-6.19,"spawnMask":1},{"id":"creature-44318","entityId":"entry-9260","position":[111.1483,-39.2664,-749.1438],"yaw":-2.93,"spawnMask":1},{"id":"creature-44319","entityId":"entry-9264","position":[181.4483,-38.7864,-787.2438],"yaw":-1.59,"spawnMask":1},{"id":"creature-44320","entityId":"entry-9263","position":[181.4283,-38.7864,-783.2838],"yaw":-4.67,"spawnMask":1},{"id":"creature-44321","entityId":"entry-9260","position":[172.1483,-38.7864,-783.4038],"yaw":-0.09,"spawnMask":1},{"id":"creature-44322","entityId":"entry-9260","position":[163.1383,-38.7864,-795.2438],"yaw":-3.94,"spawnMask":1},{"id":"creature-44323","entityId":"entry-9263","position":[168.0883,-38.7864,-798.8638],"yaw":-0.56,"spawnMask":1},{"id":"creature-44324","entityId":"entry-9263","position":[166.5983,-38.7864,-785.8338],"yaw":-2.31,"spawnMask":1},{"id":"creature-44325","entityId":"entry-9264","position":[165.2383,-38.7864,-781.0038],"yaw":-3.63,"spawnMask":1},{"id":"creature-44326","entityId":"entry-9264","position":[167.3283,-38.7864,-795.4638],"yaw":-5.61,"spawnMask":1},{"id":"creature-44327","entityId":"entry-9264","position":[140.1183,-38.7864,-770.8338],"yaw":-1.53,"spawnMask":1},{"id":"creature-44329","entityId":"entry-9264","position":[139.1483,-38.7864,-763.5538],"yaw":-4.33,"spawnMask":1},{"id":"creature-44330","entityId":"entry-9263","position":[136.9183,-38.7864,-767.1138],"yaw":-3.05,"spawnMask":1},{"id":"creature-44331","entityId":"entry-9260","position":[123.4283,-39.1664,-755.0038],"yaw":-2.95,"spawnMask":1},{"id":"creature-44332","entityId":"entry-9260","position":[125.7883,-38.9664,-758.9238],"yaw":-3.15,"spawnMask":1},{"id":"creature-44333","entityId":"entry-9260","position":[142.6483,-39.2564,-742.0238],"yaw":-0.14,"spawnMask":1},{"id":"creature-44334","entityId":"entry-9260","position":[142.4783,-39.2564,-744.3638],"yaw":-0.07,"spawnMask":1},{"id":"creature-44335","entityId":"entry-9263","position":[141.0383,-39.2564,-742.8938],"yaw":-0.02,"spawnMask":1},{"id":"creature-44336","entityId":"entry-9264","position":[125.2583,-39.0764,-756.7738],"yaw":-2.56,"spawnMask":1},{"id":"creature-44337","entityId":"entry-9264","position":[83.5683,-39.2664,-712.4638],"yaw":-5.46,"spawnMask":1},{"id":"creature-44338","entityId":"entry-9263","position":[78.2483,-39.2664,-715.3238],"yaw":-2.97,"spawnMask":1},{"id":"creature-44339","entityId":"entry-9260","position":[109.9283,-39.2664,-716.0838],"yaw":-0.26,"spawnMask":1},{"id":"creature-44340","entityId":"entry-10375","position":[138.7383,-22.6164,-823.2838],"yaw":-1.55,"spawnMask":1},{"id":"creature-44341","entityId":"entry-10375","position":[132.5783,-26.6564,-816.1538],"yaw":-1.65,"spawnMask":1},{"id":"creature-44342","entityId":"entry-10596","position":[158.2483,-10.3364,-851.8138],"yaw":-0.67,"spawnMask":1},{"id":"creature-44343","entityId":"entry-10375","position":[128.9783,-11.7164,-851.0138],"yaw":-2.02,"spawnMask":1},{"id":"creature-44344","entityId":"entry-10375","position":[147.0083,-7.0464,-858.7338],"yaw":-2.16,"spawnMask":1},{"id":"creature-44345","entityId":"entry-10375","position":[168.9283,-12.8264,-825.2138],"yaw":-1.03,"spawnMask":1},{"id":"creature-44346","entityId":"entry-10375","position":[164.5083,-13.3864,-822.3838],"yaw":-0.57,"spawnMask":1},{"id":"creature-44347","entityId":"entry-10375","position":[166.0783,-7.8464,-766.6438],"yaw":-0.95,"spawnMask":1},{"id":"creature-44348","entityId":"entry-10375","position":[169.1883,-1.6164,-738.5638],"yaw":-5.44,"spawnMask":1},{"id":"creature-44349","entityId":"entry-10375","position":[150.9983,-8.9664,-797.1338],"yaw":-4.56,"spawnMask":1},{"id":"creature-44350","entityId":"entry-10374","position":[130.5583,-17.7264,-835.0838],"yaw":-1.54,"spawnMask":1},{"id":"creature-44351","entityId":"entry-10374","position":[139.2583,-15.3564,-839.6438],"yaw":-1.03,"spawnMask":1},{"id":"creature-44352","entityId":"entry-10374","position":[134.0483,-9.5564,-857.8338],"yaw":-2.08,"spawnMask":1},{"id":"creature-44353","entityId":"entry-10374","position":[172.7083,-10.7264,-854.8838],"yaw":-1,"spawnMask":1},{"id":"creature-44354","entityId":"entry-10374","position":[171.0683,-12.1064,-836.5738],"yaw":-0.72,"spawnMask":1},{"id":"creature-44355","entityId":"entry-10374","position":[160.5883,-7.0464,-760.0638],"yaw":-1.53,"spawnMask":1},{"id":"creature-44356","entityId":"entry-10374","position":[160.5083,0.1736,-732.7238],"yaw":-4.26,"spawnMask":1},{"id":"creature-44374","entityId":"entry-10374","position":[156.9583,4.5836,-715.2038],"yaw":-0.75,"spawnMask":1},{"id":"creature-44375","entityId":"entry-10374","position":[151.2883,6.8536,-709.3938],"yaw":-0.79,"spawnMask":1},{"id":"creature-44376","entityId":"entry-10375","position":[144.3883,9.5436,-693.2138],"yaw":-6.1,"spawnMask":1},{"id":"creature-44377","entityId":"entry-10374","position":[143.3883,9.9636,-687.6638],"yaw":-6,"spawnMask":1},{"id":"creature-44378","entityId":"entry-10375","position":[159.5283,-4.8264,-750.2538],"yaw":-2.15,"spawnMask":1},{"id":"creature-44415","entityId":"entry-10374","position":[164.1483,-8.9764,-806.0138],"yaw":-6.25,"spawnMask":1},{"id":"creature-44416","entityId":"entry-10374","position":[137.9583,-9.2864,-806.3938],"yaw":-3.26,"spawnMask":1},{"id":"creature-44422","entityId":"entry-10376","position":[128.3783,13.5936,-688.1338],"yaw":-0.2,"spawnMask":1},{"id":"creature-44456","entityId":"entry-9197","position":[63.3744,30.0548,-658.1798],"yaw":-0.855211,"spawnMask":1},{"id":"creature-45095","entityId":"entry-9197","position":[45.5938,28.5423,-663.8338],"yaw":-6.16101,"spawnMask":1},{"id":"creature-45492","entityId":"entry-9716","position":[189.5883,44.0736,-611.6038],"yaw":-4.67,"spawnMask":1},{"id":"creature-45741","entityId":"entry-9716","position":[191.2183,55.8236,-704.6438],"yaw":-1.66,"spawnMask":1},{"id":"creature-45743","entityId":"entry-9717","position":[197.3483,67.0636,-736.7238],"yaw":-0.13,"spawnMask":1},{"id":"creature-45744","entityId":"entry-9716","position":[195.6483,67.0636,-748.5738],"yaw":-1.4,"spawnMask":1},{"id":"creature-45745","entityId":"entry-9692","position":[188.5483,67.0636,-745.4538],"yaw":-2.31,"spawnMask":1},{"id":"creature-45746","entityId":"entry-9696","position":[189.3283,67.0636,-748.0738],"yaw":-2.31,"spawnMask":1},{"id":"creature-45747","entityId":"entry-9696","position":[185.9383,67.0636,-744.8838],"yaw":-2.34,"spawnMask":1},{"id":"creature-45748","entityId":"entry-9717","position":[187.2083,67.0636,-739.2838],"yaw":-1.61,"spawnMask":1},{"id":"creature-45749","entityId":"entry-9736","position":[213.1973,66.8838,-761.5468],"yaw":-0.03,"spawnMask":1},{"id":"creature-45750","entityId":"entry-9716","position":[229.3883,67.0636,-748.1238],"yaw":-0.01,"spawnMask":1},{"id":"creature-45751","entityId":"entry-9716","position":[225.4983,67.0636,-745.0538],"yaw":-6.27,"spawnMask":1},{"id":"creature-45752","entityId":"entry-9717","position":[228.5283,67.0636,-741.0938],"yaw":-6.25,"spawnMask":1},{"id":"creature-45753","entityId":"entry-9717","position":[228.1083,67.0636,-761.6538],"yaw":-6.26,"spawnMask":1},{"id":"creature-45754","entityId":"entry-9716","position":[228.5783,67.0636,-767.4138],"yaw":-0.16,"spawnMask":1},{"id":"creature-45757","entityId":"entry-9568","position":[45.3708,70.2467,-772.1498],"yaw":-3.14159,"spawnMask":1},{"id":"creature-45762","entityId":"entry-9692","position":[143.8583,50.6236,-636.3138],"yaw":-1.67,"spawnMask":1},{"id":"creature-45763","entityId":"entry-9692","position":[112.7283,50.6236,-577.2338],"yaw":-4.05,"spawnMask":1},{"id":"creature-45764","entityId":"entry-9692","position":[161.6983,50.6236,-604.6338],"yaw":-6.28,"spawnMask":1},{"id":"creature-45765","entityId":"entry-9696","position":[115.4383,50.6236,-574.1138],"yaw":-4.01,"spawnMask":1},{"id":"creature-45766","entityId":"entry-9696","position":[109.4383,50.6236,-578.6538],"yaw":-3.76,"spawnMask":1},{"id":"creature-45767","entityId":"entry-9696","position":[159.1683,50.6236,-604.5838],"yaw":-6.26,"spawnMask":1},{"id":"creature-45768","entityId":"entry-9696","position":[141.4283,50.6236,-634.6938],"yaw":-2.27,"spawnMask":1},{"id":"creature-45769","entityId":"entry-10221","position":[145.3983,50.6236,-632.8238],"yaw":-2.35,"spawnMask":1},{"id":"creature-45770","entityId":"entry-10221","position":[147.4183,50.6236,-637.5938],"yaw":-2.12,"spawnMask":1},{"id":"creature-45771","entityId":"entry-10221","position":[161.5683,50.6236,-607.9338],"yaw":-6.22,"spawnMask":1},{"id":"creature-45772","entityId":"entry-10221","position":[162.1083,50.6236,-601.7038],"yaw":-0.01,"spawnMask":1},{"id":"creature-45773","entityId":"entry-10221","position":[116.0783,50.6236,-578.2538],"yaw":-3.99,"spawnMask":1},{"id":"creature-45774","entityId":"entry-10221","position":[112.0783,50.6236,-580.3538],"yaw":-4.21,"spawnMask":1},{"id":"creature-45779","entityId":"entry-9716","position":[147.9383,50.6236,-575.2238],"yaw":-5.31,"spawnMask":1},{"id":"creature-45780","entityId":"entry-9716","position":[150.9083,50.6236,-580.4538],"yaw":-5.73,"spawnMask":1},{"id":"creature-45781","entityId":"entry-9716","position":[110.6183,50.6236,-630.2338],"yaw":-1.82,"spawnMask":1},{"id":"creature-45790","entityId":"entry-9717","position":[146.3783,50.6236,-581.3238],"yaw":-3.24,"spawnMask":1},{"id":"creature-45791","entityId":"entry-9717","position":[163.9483,50.6236,-589.1438],"yaw":-1.44,"spawnMask":1},{"id":"creature-45792","entityId":"entry-9717","position":[134.4583,50.6236,-578.9038],"yaw":-4.66,"spawnMask":1},{"id":"creature-45793","entityId":"entry-9717","position":[108.8983,50.6236,-596.2738],"yaw":-5.38,"spawnMask":1},{"id":"creature-45794","entityId":"entry-9717","position":[108.8683,50.6236,-601.5038],"yaw":-0.68,"spawnMask":1},{"id":"creature-45795","entityId":"entry-9717","position":[75.0283,50.6436,-603.5138],"yaw":-2.34,"spawnMask":1},{"id":"creature-45796","entityId":"entry-9717","position":[73.3683,50.6136,-586.9838],"yaw":-4.56,"spawnMask":1},{"id":"creature-45798","entityId":"entry-9716","position":[70.7483,50.6336,-596.6638],"yaw":-3.76,"spawnMask":1},{"id":"creature-45799","entityId":"entry-9716","position":[70.0483,50.6236,-603.9138],"yaw":-3.46,"spawnMask":1},{"id":"creature-45800","entityId":"entry-9716","position":[95.8783,50.6336,-589.3738],"yaw":-4.72,"spawnMask":1},{"id":"creature-45803","entityId":"entry-9716","position":[147.7883,50.6236,-597.7438],"yaw":-4.17,"spawnMask":1},{"id":"creature-45804","entityId":"entry-9716","position":[72.5483,50.6136,-629.8738],"yaw":-1.73,"spawnMask":1},{"id":"creature-45806","entityId":"entry-9708","position":[75.2383,50.6136,-587.4338],"yaw":-4.54,"spawnMask":1},{"id":"creature-45807","entityId":"entry-9708","position":[107.0783,50.6236,-602.2038],"yaw":-1.47,"spawnMask":1},{"id":"creature-45808","entityId":"entry-10263","position":[135.1883,43.8436,-610.2938],"yaw":-4.72,"spawnMask":1},{"id":"creature-45835","entityId":"entry-10221","position":[215.9053,43.9173,-618.9818],"yaw":-0.774047,"spawnMask":1},{"id":"creature-45836","entityId":"entry-10221","position":[212.2443,43.9173,-624.3918],"yaw":-0.781901,"spawnMask":1},{"id":"creature-45837","entityId":"entry-10221","position":[214.0563,43.9173,-613.2528],"yaw":-0.0946771,"spawnMask":1},{"id":"creature-45839","entityId":"entry-10221","position":[212.6153,43.918,-600.2818],"yaw":-5.66943,"spawnMask":1},{"id":"creature-45840","entityId":"entry-9237","position":[39.7147,-39.1506,-745.1128],"yaw":-3.19856,"spawnMask":1},{"id":"creature-45843","entityId":"entry-9596","position":[49.4301,-39.4414,-714.5208],"yaw":-2.25881,"spawnMask":1},{"id":"creature-52124","entityId":"entry-9693","position":[95.1685,61.8252,-806.9248],"yaw":-3.40339,"spawnMask":1},{"id":"creature-52125","entityId":"entry-9693","position":[80.2185,57.4927,-773.0458],"yaw":-3.22886,"spawnMask":1},{"id":"creature-52126","entityId":"entry-9693","position":[70.5133,67.0579,-806.5278],"yaw":-1.30227,"spawnMask":1},{"id":"creature-52127","entityId":"entry-9693","position":[77.0287,50.4422,-598.7028],"yaw":-4.63863,"spawnMask":1},{"id":"creature-52128","entityId":"entry-9693","position":[66.2259,50.4368,-584.7888],"yaw":-4.82546,"spawnMask":1},{"id":"creature-52129","entityId":"entry-9693","position":[107.7948,50.4471,-635.9468],"yaw":-1.63021,"spawnMask":1},{"id":"creature-52130","entityId":"entry-9693","position":[141.1943,50.4461,-615.9888],"yaw":-3.73699,"spawnMask":1},{"id":"creature-52131","entityId":"entry-9693","position":[166.7323,50.4461,-586.3418],"yaw":-4.78619,"spawnMask":1},{"id":"creature-52132","entityId":"entry-9693","position":[190.1503,55.6409,-698.1148],"yaw":-1.52424,"spawnMask":1},{"id":"creature-52133","entityId":"entry-9693","position":[186.2913,43.889,-606.9338],"yaw":-4.62636,"spawnMask":1},{"id":"creature-52134","entityId":"entry-9693","position":[109.8034,50.4471,-599.1338],"yaw":-6.25575,"spawnMask":1},{"id":"creature-90975","entityId":"entry-10814","position":[-8.9677,90.4406,-579.8118],"yaw":-3.18881,"spawnMask":1},{"id":"creature-90976","entityId":"entry-10814","position":[-8.1051,90.4386,-564.3758],"yaw":-3.18881,"spawnMask":1},{"id":"creature-91696","entityId":"entry-9701","position":[135.6383,43.8117,-609.0378],"yaw":-5.41052,"spawnMask":1},{"id":"creature-91697","entityId":"entry-9701","position":[135.0703,42.7082,-616.9728],"yaw":-3.07178,"spawnMask":1},{"id":"creature-91698","entityId":"entry-9701","position":[132.1673,43.8189,-610.8818],"yaw":-0.03491,"spawnMask":1},{"id":"creature-91699","entityId":"entry-9701","position":[103.612,41.3114,-584.8868],"yaw":-5.18363,"spawnMask":1},{"id":"creature-91700","entityId":"entry-9701","position":[102.985,39.2571,-599.8728],"yaw":-0.45379,"spawnMask":1},{"id":"creature-91701","entityId":"entry-9701","position":[100.0211,38.6062,-610.7018],"yaw":-4.99164,"spawnMask":1},{"id":"creature-91702","entityId":"entry-10177","position":[134.4423,39.5724,-634.7058],"yaw":-0.82031,"spawnMask":1},{"id":"creature-91704","entityId":"entry-10177","position":[94.3073,34.0914,-644.1768],"yaw":-2.3911,"spawnMask":1},{"id":"creature-91705","entityId":"entry-10177","position":[94.77,34.3155,-633.0388],"yaw":-1.36136,"spawnMask":1},{"id":"creature-91706","entityId":"entry-10177","position":[89.6042,33.9721,-638.7258],"yaw":-1.0821,"spawnMask":1},{"id":"creature-91707","entityId":"entry-10177","position":[132.7503,38.0369,-642.6108],"yaw":-4.36332,"spawnMask":1},{"id":"creature-91772","entityId":"entry-10177","position":[134.9993,41.8307,-622.3198],"yaw":-4.92183,"spawnMask":1},{"id":"creature-91773","entityId":"entry-10177","position":[130.1623,39.1994,-637.9038],"yaw":-4.4855,"spawnMask":1},{"id":"creature-91774","entityId":"entry-10177","position":[131.1203,40.6721,-627.0038],"yaw":-1.64061,"spawnMask":1},{"id":"creature-91775","entityId":"entry-10177","position":[125.5013,40.2718,-635.0258],"yaw":-1.51844,"spawnMask":1},{"id":"creature-91776","entityId":"entry-10177","position":[102.53,38.0406,-614.1558],"yaw":-5.95157,"spawnMask":1},{"id":"creature-91777","entityId":"entry-10177","position":[98.1486,34.8873,-627.5258],"yaw":-4.90438,"spawnMask":1},{"id":"creature-91778","entityId":"entry-10177","position":[91.6069,34.6096,-629.0568],"yaw":-1.81514,"spawnMask":1},{"id":"creature-91779","entityId":"entry-10177","position":[96.2726,36.376,-617.9108],"yaw":-3.94444,"spawnMask":1},{"id":"creature-91794","entityId":"entry-10177","position":[131.6653,36.1184,-650.5648],"yaw":-1.0472,"spawnMask":1},{"id":"creature-137817","entityId":"entry-9816","position":[-121.6997,75.9002,-543.9978],"yaw":-4.67748,"spawnMask":1},{"id":"creature-137818","entityId":"entry-9096","position":[-78.0047,86.0126,-531.9688],"yaw":-2.6529,"spawnMask":1},{"id":"creature-137819","entityId":"entry-9096","position":[-78.9397,86.0126,-523.6308],"yaw":-3.54302,"spawnMask":1},{"id":"creature-137821","entityId":"entry-9096","position":[-80.3597,96.4196,-650.3028],"yaw":-5.86431,"spawnMask":1},{"id":"creature-137822","entityId":"entry-9096","position":[-82.4367,86.0126,-613.0748],"yaw":-2.53073,"spawnMask":1},{"id":"creature-137823","entityId":"entry-9096","position":[-105.2817,90.5226,-601.2538],"yaw":-2.98451,"spawnMask":1},{"id":"creature-137824","entityId":"entry-9096","position":[-113.2987,90.5376,-624.1708],"yaw":-0.645772,"spawnMask":1},{"id":"creature-137825","entityId":"entry-9096","position":[-113.5437,90.5666,-594.6458],"yaw":-0.279253,"spawnMask":1},{"id":"creature-137826","entityId":"entry-9096","position":[-113.6857,90.5576,-602.1528],"yaw":-0.0174533,"spawnMask":1},{"id":"creature-137827","entityId":"entry-9096","position":[-115.5777,101.5526,-681.0498],"yaw":-4.76475,"spawnMask":1},{"id":"creature-137828","entityId":"entry-9096","position":[-119.8547,90.5346,-628.2378],"yaw":-1.39626,"spawnMask":1},{"id":"creature-137829","entityId":"entry-9096","position":[-124.3037,50.5333,-598.3548],"yaw":-5.55015,"spawnMask":1},{"id":"creature-137831","entityId":"entry-9096","position":[-138.3517,50.4499,-602.1658],"yaw":-1.91313,"spawnMask":1},{"id":"creature-137832","entityId":"entry-9096","position":[-142.7827,101.5526,-680.8848],"yaw":-4.67748,"spawnMask":1},{"id":"creature-137833","entityId":"entry-9096","position":[-145.0357,90.5276,-624.6188],"yaw":-2.79253,"spawnMask":1},{"id":"creature-137834","entityId":"entry-9096","position":[-170.7417,56.5144,-600.8388],"yaw":-5.37561,"spawnMask":1},{"id":"creature-137835","entityId":"entry-9096","position":[-173.2477,56.4266,-577.8268],"yaw":-2.74624,"spawnMask":1},{"id":"creature-137836","entityId":"entry-9096","position":[-69.5067,90.4996,-713.5988],"yaw":-3.15905,"spawnMask":1},{"id":"creature-137837","entityId":"entry-9096","position":[-71.7804,71.0305,-542.6668],"yaw":-6.26573,"spawnMask":1},{"id":"creature-137838","entityId":"entry-9096","position":[-73.4406,71.0247,-554.5038],"yaw":-1.37881,"spawnMask":1},{"id":"creature-137839","entityId":"entry-9096","position":[-75.1792,86.0126,-619.6448],"yaw":-1.93732,"spawnMask":1},{"id":"creature-137840","entityId":"entry-10083","position":[-80.0637,86.0126,-618.0848],"yaw":-2.21657,"spawnMask":1},{"id":"creature-137841","entityId":"entry-10083","position":[-118.9597,101.5526,-680.7928],"yaw":-4.86947,"spawnMask":1},{"id":"creature-137844","entityId":"entry-10083","position":[-138.5757,101.5526,-679.6128],"yaw":-4.86947,"spawnMask":1},{"id":"creature-137845","entityId":"entry-10083","position":[-138.6017,90.5326,-629.3988],"yaw":-1.85005,"spawnMask":1},{"id":"creature-137846","entityId":"entry-10083","position":[-52.2585,71.0139,-602.2298],"yaw":-5.8618,"spawnMask":1},{"id":"creature-137847","entityId":"entry-10083","position":[-58.2681,71.0268,-570.3168],"yaw":-5.95157,"spawnMask":1},{"id":"creature-137848","entityId":"entry-10366","position":[11.4054,90.5166,-778.0858],"yaw":-0.733038,"spawnMask":1},{"id":"creature-137850","entityId":"entry-10366","position":[-4.9444,90.5026,-712.0308],"yaw":-5.48033,"spawnMask":1},{"id":"creature-137851","entityId":"entry-10366","position":[-8.5115,90.5286,-783.0648],"yaw":-1.27409,"spawnMask":1},{"id":"creature-137852","entityId":"entry-10366","position":[-17.0141,90.5046,-712.7328],"yaw":-3.9619,"spawnMask":1},{"id":"creature-137853","entityId":"entry-10366","position":[-20.4895,90.5206,-735.1468],"yaw":-3.85718,"spawnMask":1},{"id":"creature-137854","entityId":"entry-10366","position":[14.462,90.5076,-773.4978],"yaw":-0.436332,"spawnMask":1},{"id":"creature-137855","entityId":"entry-10366","position":[-70.1094,96.4196,-775.6568],"yaw":-1.58825,"spawnMask":1},{"id":"creature-137857","entityId":"entry-10371","position":[33.4326,90.5206,-635.9718],"yaw":-0.855211,"spawnMask":1},{"id":"creature-137858","entityId":"entry-10371","position":[38.7605,90.5206,-549.2988],"yaw":-5.70723,"spawnMask":1},{"id":"creature-137860","entityId":"entry-10371","position":[-11.2299,90.5206,-613.5008],"yaw":-4.72984,"spawnMask":1},{"id":"creature-137861","entityId":"entry-10371","position":[13.9356,90.5136,-736.5118],"yaw":-5.68977,"spawnMask":1},{"id":"creature-137862","entityId":"entry-10372","position":[38.3198,90.5206,-630.2788],"yaw":-0.715585,"spawnMask":1},{"id":"creature-137863","entityId":"entry-10372","position":[6.4323,90.5226,-735.2868],"yaw":-4.46804,"spawnMask":1},{"id":"creature-137864","entityId":"entry-10372","position":[1.31,90.5316,-761.1588],"yaw":-1.76278,"spawnMask":1},{"id":"creature-137865","entityId":"entry-10372","position":[-0.9797,90.5246,-544.2078],"yaw":-3.46037,"spawnMask":1},{"id":"creature-137866","entityId":"entry-10372","position":[-3.6743,90.5206,-613.3778],"yaw":-4.79966,"spawnMask":1},{"id":"creature-137867","entityId":"entry-10372","position":[16.093,90.5096,-746.4288],"yaw":-0.418879,"spawnMask":1},{"id":"creature-137868","entityId":"entry-10372","position":[-63.9457,96.4196,-766.1378],"yaw":-0.855211,"spawnMask":1},{"id":"creature-137869","entityId":"entry-9818","position":[-102.1337,50.5367,-620.4868],"yaw":-4.69494,"spawnMask":1},{"id":"creature-137870","entityId":"entry-9818","position":[-105.5827,50.5548,-581.0088],"yaw":-3.87463,"spawnMask":1},{"id":"creature-137871","entityId":"entry-9818","position":[-107.6937,50.5367,-626.0318],"yaw":-3.1765,"spawnMask":1},{"id":"creature-137872","entityId":"entry-9818","position":[-128.3647,50.5153,-644.3338],"yaw":-1.20428,"spawnMask":1},{"id":"creature-137873","entityId":"entry-9818","position":[-134.0767,50.529,-569.3038],"yaw":-1.98968,"spawnMask":1},{"id":"creature-137874","entityId":"entry-9818","position":[-139.8917,90.5276,-529.0368],"yaw":-4.32842,"spawnMask":1},{"id":"creature-137875","entityId":"entry-9818","position":[-147.8677,96.4176,-648.3168],"yaw":-4.86947,"spawnMask":1},{"id":"creature-137876","entityId":"entry-9818","position":[-157.2567,96.4196,-651.8578],"yaw":-3.19395,"spawnMask":1},{"id":"creature-137877","entityId":"entry-9818","position":[-166.1177,56.5294,-544.8408],"yaw":-6.07375,"spawnMask":1},{"id":"creature-137878","entityId":"entry-9818","position":[-189.3987,56.4799,-625.7558],"yaw":-1.15192,"spawnMask":1},{"id":"creature-137879","entityId":"entry-9818","position":[-194.4617,61.6807,-545.5278],"yaw":-6.26573,"spawnMask":1},{"id":"creature-137880","entityId":"entry-9818","position":[-200.9657,56.5451,-583.4478],"yaw":-5.46288,"spawnMask":1},{"id":"creature-137881","entityId":"entry-9818","position":[-201.6667,56.5442,-593.4568],"yaw":-0.785398,"spawnMask":1},{"id":"creature-137882","entityId":"entry-9818","position":[-64.4366,97.2896,-649.0488],"yaw":-4.72984,"spawnMask":1},{"id":"creature-137883","entityId":"entry-9818","position":[-67.3633,90.4996,-705.1678],"yaw":-0.994838,"spawnMask":1},{"id":"creature-137884","entityId":"entry-9819","position":[-90.9707,96.4256,-652.0358],"yaw":-5.8294,"spawnMask":1},{"id":"creature-137886","entityId":"entry-9819","position":[-98.9807,50.5496,-587.5408],"yaw":-0.750492,"spawnMask":1},{"id":"creature-137887","entityId":"entry-9819","position":[-118.9707,90.5256,-585.4468],"yaw":-0.0349066,"spawnMask":1},{"id":"creature-137888","entityId":"entry-9819","position":[-119.0247,90.5256,-588.2068],"yaw":-0.122173,"spawnMask":1},{"id":"creature-137889","entityId":"entry-9819","position":[-119.0537,90.5246,-582.7738],"yaw":-6.23083,"spawnMask":1},{"id":"creature-137890","entityId":"entry-9819","position":[-120.1237,90.5206,-558.0478],"yaw":-6.21337,"spawnMask":1},{"id":"creature-137891","entityId":"entry-9819","position":[-120.1637,90.5206,-560.9938],"yaw":-0.0349066,"spawnMask":1},{"id":"creature-137892","entityId":"entry-9819","position":[-120.2347,90.5206,-563.8548],"yaw":-0.139626,"spawnMask":1},{"id":"creature-137893","entityId":"entry-9819","position":[-122.2007,90.4136,-543.0958],"yaw":-5.8294,"spawnMask":1},{"id":"creature-137895","entityId":"entry-9819","position":[-126.5097,90.4016,-535.0008],"yaw":-4.86947,"spawnMask":1},{"id":"creature-137896","entityId":"entry-9819","position":[-127.7757,50.5133,-640.0218],"yaw":-5.21853,"spawnMask":1},{"id":"creature-137897","entityId":"entry-9819","position":[-134.5107,50.527,-577.7158],"yaw":-1.69297,"spawnMask":1},{"id":"creature-137898","entityId":"entry-9819","position":[-135.1417,50.5192,-645.2548],"yaw":-1.53589,"spawnMask":1},{"id":"creature-137899","entityId":"entry-9819","position":[-136.5307,90.5196,-531.5768],"yaw":-6.23083,"spawnMask":1},{"id":"creature-137900","entityId":"entry-9819","position":[-138.7097,90.5166,-603.8498],"yaw":-3.1765,"spawnMask":1},{"id":"creature-137901","entityId":"entry-9819","position":[-138.7327,90.5156,-600.9618],"yaw":-3.19395,"spawnMask":1},{"id":"creature-137902","entityId":"entry-9819","position":[-138.7997,90.5186,-606.8408],"yaw":-3.12414,"spawnMask":1},{"id":"creature-137903","entityId":"entry-9819","position":[-145.6927,90.5186,-574.5378],"yaw":-2.9147,"spawnMask":1},{"id":"creature-137904","entityId":"entry-9819","position":[-145.7287,90.5186,-571.3208],"yaw":-3.15905,"spawnMask":1},{"id":"creature-137905","entityId":"entry-9819","position":[-145.7917,90.5186,-568.1708],"yaw":-3.38594,"spawnMask":1},{"id":"creature-137906","entityId":"entry-9819","position":[-150.1407,96.4196,-651.4098],"yaw":-2.84489,"spawnMask":1},{"id":"creature-137907","entityId":"entry-9819","position":[-155.3747,96.4196,-650.0538],"yaw":-4.95674,"spawnMask":1},{"id":"creature-137908","entityId":"entry-9819","position":[-168.5907,56.5242,-557.9738],"yaw":-5.61996,"spawnMask":1},{"id":"creature-137909","entityId":"entry-9819","position":[-171.8767,56.5131,-541.9118],"yaw":-4.31096,"spawnMask":1},{"id":"creature-137910","entityId":"entry-9819","position":[-172.4837,56.5242,-557.8768],"yaw":-3.78736,"spawnMask":1},{"id":"creature-137911","entityId":"entry-9819","position":[-189.3627,56.4495,-622.0958],"yaw":-5.09636,"spawnMask":1},{"id":"creature-137912","entityId":"entry-9819","position":[-199.9277,56.5066,-620.5498],"yaw":-3.07178,"spawnMask":1},{"id":"creature-137913","entityId":"entry-9819","position":[-203.1777,61.6068,-547.4958],"yaw":-4.10386,"spawnMask":1},{"id":"creature-137914","entityId":"entry-9819","position":[-62.9958,96.4196,-659.5878],"yaw":-0.680678,"spawnMask":1},{"id":"creature-137915","entityId":"entry-9819","position":[-64.7617,90.4996,-712.5848],"yaw":-5.91667,"spawnMask":1},{"id":"creature-137916","entityId":"entry-9819","position":[-67.2883,97.0116,-653.3698],"yaw":-2.51327,"spawnMask":1},{"id":"creature-137917","entityId":"entry-9819","position":[-69.3711,90.4996,-701.1388],"yaw":-4.59022,"spawnMask":1},{"id":"creature-137918","entityId":"entry-9819","position":[-84.1907,96.4196,-653.2398],"yaw":-2.30383,"spawnMask":1},{"id":"creature-137920","entityId":"entry-10316","position":[-103.5687,71.1307,-544.5888],"yaw":-0.0349066,"spawnMask":1},{"id":"creature-137921","entityId":"entry-10316","position":[-103.7087,71.1312,-562.5608],"yaw":-0.820305,"spawnMask":1},{"id":"creature-137922","entityId":"entry-10316","position":[-103.7697,71.1151,-526.8588],"yaw":-5.53269,"spawnMask":1},{"id":"creature-137923","entityId":"entry-10316","position":[-121.5447,71.1163,-526.9578],"yaw":-4.72984,"spawnMask":1},{"id":"creature-137924","entityId":"entry-10316","position":[-139.4777,71.1831,-526.9348],"yaw":-3.89208,"spawnMask":1},{"id":"creature-137925","entityId":"entry-10316","position":[-139.5887,71.1897,-562.7228],"yaw":-2.32129,"spawnMask":1},{"id":"creature-137926","entityId":"entry-10316","position":[-139.7217,71.1113,-544.9248],"yaw":-3.08923,"spawnMask":1},{"id":"creature-137928","entityId":"entry-9817","position":[-96.2897,50.5396,-626.4048],"yaw":-0.0349066,"spawnMask":1},{"id":"creature-137929","entityId":"entry-9817","position":[-99.3137,50.5554,-579.1208],"yaw":-5.49779,"spawnMask":1},{"id":"creature-137930","entityId":"entry-9817","position":[-102.2947,50.5398,-632.3218],"yaw":-1.6057,"spawnMask":1},{"id":"creature-137931","entityId":"entry-9817","position":[-131.6907,50.5234,-575.4198],"yaw":-6.17847,"spawnMask":1},{"id":"creature-137934","entityId":"entry-9817","position":[-136.3047,50.5255,-574.5598],"yaw":-3.64774,"spawnMask":1},{"id":"creature-137935","entityId":"entry-9817","position":[-140.7647,90.5196,-533.4778],"yaw":-2.0944,"spawnMask":1},{"id":"creature-137936","entityId":"entry-9817","position":[-147.1777,96.4196,-653.1048],"yaw":-1.13446,"spawnMask":1},{"id":"creature-137937","entityId":"entry-9817","position":[-155.0927,96.4196,-653.5248],"yaw":-1.15192,"spawnMask":1},{"id":"creature-137938","entityId":"entry-9817","position":[-167.8947,56.5268,-549.9228],"yaw":-0.959931,"spawnMask":1},{"id":"creature-137939","entityId":"entry-9817","position":[-192.7807,56.446,-623.6968],"yaw":-3.10669,"spawnMask":1},{"id":"creature-137940","entityId":"entry-9817","position":[-198.7797,61.6229,-544.3878],"yaw":-3.04174,"spawnMask":1},{"id":"creature-137941","entityId":"entry-9817","position":[-203.1227,61.5809,-552.1108],"yaw":-3.30034,"spawnMask":1},{"id":"creature-137942","entityId":"entry-9817","position":[-210.1017,56.5482,-583.4548],"yaw":-4.08407,"spawnMask":1},{"id":"creature-137943","entityId":"entry-9817","position":[-211.5857,56.5541,-592.7278],"yaw":-2.44346,"spawnMask":1},{"id":"creature-137944","entityId":"entry-9817","position":[-62.9008,96.4196,-652.9138],"yaw":-0.802851,"spawnMask":1},{"id":"creature-137945","entityId":"entry-9817","position":[-71.1821,90.4996,-703.9288],"yaw":-2.79253,"spawnMask":1},{"id":"creature-137946","entityId":"entry-10762","position":[-48.8942,90.2886,-707.3098],"yaw":-1.74533,"spawnMask":1},{"id":"creature-137947","entityId":"entry-10762","position":[-49.0076,90.6376,-705.0698],"yaw":-4.69494,"spawnMask":1},{"id":"creature-137948","entityId":"entry-10317","position":[-96.6037,86.7446,-853.1048],"yaw":-5.91667,"spawnMask":1},{"id":"creature-137949","entityId":"entry-10317","position":[-97.2687,86.9466,-849.2108],"yaw":-5.84685,"spawnMask":1},{"id":"creature-137950","entityId":"entry-10317","position":[-121.8627,90.2286,-585.4028],"yaw":-3.08923,"spawnMask":1},{"id":"creature-137951","entityId":"entry-10317","position":[-123.5367,90.5206,-561.0278],"yaw":-3.10669,"spawnMask":1},{"id":"creature-137952","entityId":"entry-10317","position":[7.0297,90.4366,-555.4128],"yaw":-3.70087,"spawnMask":1},{"id":"creature-137953","entityId":"entry-10317","position":[-135.5967,90.2286,-603.8698],"yaw":-0.0349066,"spawnMask":1},{"id":"creature-137954","entityId":"entry-10317","position":[11.2747,90.4366,-548.6318],"yaw":-3.70086,"spawnMask":1},{"id":"creature-137955","entityId":"entry-10317","position":[-141.6957,90.5196,-571.2298],"yaw":0,"spawnMask":1},{"id":"creature-137956","entityId":"entry-10317","position":[41.143,90.5206,-624.1498],"yaw":-0.593412,"spawnMask":1},{"id":"creature-137957","entityId":"entry-10317","position":[2.0139,90.5286,-754.7658],"yaw":-4.83456,"spawnMask":1},{"id":"creature-137958","entityId":"entry-10317","position":[-1.6969,90.5206,-554.1858],"yaw":-2.83062,"spawnMask":1},{"id":"creature-137959","entityId":"entry-10317","position":[-6.7687,90.2416,-671.5188],"yaw":-5.42797,"spawnMask":1},{"id":"creature-137960","entityId":"entry-10317","position":[26.0304,90.5206,-545.8748],"yaw":-5.48033,"spawnMask":1},{"id":"creature-137961","entityId":"entry-10317","position":[-7.6788,90.5206,-618.8708],"yaw":-4.76475,"spawnMask":1},{"id":"creature-137962","entityId":"entry-10317","position":[-12.7485,90.5296,-778.9138],"yaw":-3.05433,"spawnMask":1},{"id":"creature-137963","entityId":"entry-10317","position":[-14.5949,90.5206,-619.7428],"yaw":-4.66003,"spawnMask":1},{"id":"creature-137964","entityId":"entry-10317","position":[-15.1816,90.5226,-737.0208],"yaw":-0.0872665,"spawnMask":1},{"id":"creature-137965","entityId":"entry-10317","position":[27.7649,90.5206,-638.5068],"yaw":-0.959931,"spawnMask":1},{"id":"creature-137966","entityId":"entry-10317","position":[-74.4785,96.4196,-762.7818],"yaw":-5.23599,"spawnMask":1},{"id":"creature-137967","entityId":"entry-10162","position":[-140.4297,101.5526,-730.1288],"yaw":-3.12414,"spawnMask":1},{"id":"creature-137968","entityId":"entry-10429","position":[-136.5377,101.5526,-729.5828],"yaw":-6.26573,"spawnMask":1},{"id":"creature-137969","entityId":"entry-10430","position":[-101.4717,86.9186,-849.7628],"yaw":-2.75762,"spawnMask":1},{"id":"creature-137971","entityId":"entry-10363","position":[-13.7126,90.5296,-571.9578],"yaw":-3.14159,"spawnMask":1},{"id":"creature-137973","entityId":"entry-10318","position":[4.5259,90.5246,-757.3638],"yaw":-6.17847,"spawnMask":1},{"id":"creature-137974","entityId":"entry-10318","position":[-0.7684,90.5326,-756.5018],"yaw":-3.56047,"spawnMask":1},{"id":"creature-137975","entityId":"entry-10318","position":[-9.1152,90.5296,-776.6268],"yaw":-4.32842,"spawnMask":1},{"id":"creature-137976","entityId":"entry-10318","position":[-15.4257,90.2916,-671.4438],"yaw":-4.18879,"spawnMask":1},{"id":"creature-137977","entityId":"entry-10318","position":[-17.6821,90.5176,-739.5768],"yaw":-1.3439,"spawnMask":1},{"id":"creature-137978","entityId":"entry-10318","position":[29.6184,90.5206,-538.3338],"yaw":-5.42797,"spawnMask":1},{"id":"creature-137979","entityId":"entry-10318","position":[-48.7552,95.2726,-760.5698],"yaw":-6.27849,"spawnMask":1},{"id":"creature-137980","entityId":"entry-10318","position":[-76.9904,96.4196,-765.3868],"yaw":-2.75762,"spawnMask":1},{"id":"creature-137981","entityId":"entry-10319","position":[12.5856,90.5146,-742.9708],"yaw":-4.50295,"spawnMask":1},{"id":"creature-137982","entityId":"entry-10319","position":[10.9988,90.5156,-746.4298],"yaw":-2.80998,"spawnMask":1},{"id":"creature-137983","entityId":"entry-10319","position":[-101.3197,96.4196,-756.9228],"yaw":-3.85718,"spawnMask":1},{"id":"creature-137984","entityId":"entry-10319","position":[-101.3557,96.4196,-764.2218],"yaw":-2.37365,"spawnMask":1},{"id":"creature-137985","entityId":"entry-10319","position":[36.5145,90.5206,-560.8898],"yaw":-5.89921,"spawnMask":1},{"id":"creature-137986","entityId":"entry-10319","position":[-114.6997,101.3676,-744.1278],"yaw":-1.61019,"spawnMask":1},{"id":"creature-137987","entityId":"entry-10319","position":[-149.3217,96.4016,-756.0818],"yaw":-3.38594,"spawnMask":1},{"id":"creature-137988","entityId":"entry-10319","position":[-149.4727,96.4166,-765.0898],"yaw":-2.77507,"spawnMask":1},{"id":"creature-137989","entityId":"entry-10319","position":[-3.2121,90.5296,-717.1118],"yaw":-3.45575,"spawnMask":1},{"id":"creature-137991","entityId":"entry-10319","position":[-7.7399,90.2596,-667.1478],"yaw":-4.97419,"spawnMask":1},{"id":"creature-137992","entityId":"entry-10319","position":[-10.2473,90.4416,-727.1618],"yaw":-4.68553,"spawnMask":1},{"id":"creature-137994","entityId":"entry-10319","position":[-17.9307,90.5206,-616.4908],"yaw":-4.62512,"spawnMask":1},{"id":"creature-137995","entityId":"entry-10319","position":[-19.7759,90.5226,-717.6828],"yaw":-5.93412,"spawnMask":1},{"id":"creature-137996","entityId":"entry-10319","position":[30.88,90.5206,-627.8568],"yaw":-0.767945,"spawnMask":1},{"id":"creature-137998","entityId":"entry-9045","position":[-84.2857,33.4973,-592.2778],"yaw":-4.2237,"spawnMask":1},{"id":"creature-137999","entityId":"entry-9045","position":[-84.6737,33.4969,-615.5468],"yaw":-5.20108,"spawnMask":1},{"id":"creature-138000","entityId":"entry-9045","position":[8.6167,44.9267,-545.1918],"yaw":-2.35619,"spawnMask":1},{"id":"creature-138001","entityId":"entry-9045","position":[4.7229,44.8694,-562.6978],"yaw":-1.03067,"spawnMask":1},{"id":"creature-138003","entityId":"entry-9045","position":[-25.3242,44.9528,-543.3708],"yaw":-0.418879,"spawnMask":1},{"id":"creature-138005","entityId":"entry-9045","position":[-30.1061,33.4973,-598.7748],"yaw":-0.575959,"spawnMask":1},{"id":"creature-138006","entityId":"entry-9045","position":[-46.4931,20.6849,-725.2918],"yaw":-3.15905,"spawnMask":1},{"id":"creature-138007","entityId":"entry-9045","position":[-52.9355,35.3604,-605.6928],"yaw":-1.71042,"spawnMask":1},{"id":"creature-138008","entityId":"entry-9045","position":[-57.1272,40.279,-639.8838],"yaw":-0.872665,"spawnMask":1},{"id":"creature-138009","entityId":"entry-9097","position":[24.6268,8.7678,-871.6068],"yaw":-2.49582,"spawnMask":1},{"id":"creature-138010","entityId":"entry-9097","position":[-79.6917,33.4948,-600.6618],"yaw":-1.06465,"spawnMask":1},{"id":"creature-138011","entityId":"entry-9097","position":[-84.5407,33.4973,-610.2108],"yaw":-3.50811,"spawnMask":1},{"id":"creature-138012","entityId":"entry-9097","position":[-84.8947,33.4973,-597.3508],"yaw":-2.67035,"spawnMask":1},{"id":"creature-138013","entityId":"entry-9097","position":[9.8453,28.3408,-615.7068],"yaw":-3.15905,"spawnMask":1},{"id":"creature-138014","entityId":"entry-9097","position":[9.7977,44.9456,-565.5718],"yaw":-5.96903,"spawnMask":1},{"id":"creature-138015","entityId":"entry-9097","position":[3.9755,44.9528,-570.2478],"yaw":-2.1293,"spawnMask":1},{"id":"creature-138016","entityId":"entry-9097","position":[25.6702,8.7673,-810.6218],"yaw":-0.593412,"spawnMask":1},{"id":"creature-138017","entityId":"entry-9097","position":[51.1277,8.7678,-849.0028],"yaw":-2.86234,"spawnMask":1},{"id":"creature-138018","entityId":"entry-9097","position":[-8.1813,28.2804,-685.6468],"yaw":-3.00197,"spawnMask":1},{"id":"creature-138019","entityId":"entry-9097","position":[54.2724,8.7678,-850.1808],"yaw":-1.16937,"spawnMask":1},{"id":"creature-138020","entityId":"entry-9097","position":[56.7777,8.7678,-871.6048],"yaw":-6.19592,"spawnMask":1},{"id":"creature-138021","entityId":"entry-9097","position":[60.7216,8.7678,-870.9668],"yaw":-1.50098,"spawnMask":1},{"id":"creature-138022","entityId":"entry-9097","position":[-20.8139,44.9528,-560.4858],"yaw":-6.10865,"spawnMask":1},{"id":"creature-138023","entityId":"entry-9097","position":[-22.9857,7.1,-735.1368],"yaw":-3.7001,"spawnMask":1},{"id":"creature-138024","entityId":"entry-9097","position":[-23.1082,44.8483,-565.3178],"yaw":-1.03703,"spawnMask":1},{"id":"creature-138025","entityId":"entry-9097","position":[-29.1526,44.9528,-573.3148],"yaw":-3.03687,"spawnMask":1},{"id":"creature-138027","entityId":"entry-9097","position":[-33.1782,4.1323,-745.1208],"yaw":-4.7473,"spawnMask":1},{"id":"creature-138028","entityId":"entry-9097","position":[-34.5879,10.1724,-855.6088],"yaw":-0.191986,"spawnMask":1},{"id":"creature-138029","entityId":"entry-9097","position":[-34.7669,33.4955,-600.8858],"yaw":-2.26893,"spawnMask":1},{"id":"creature-138030","entityId":"entry-9097","position":[-35.1,33.4951,-596.0958],"yaw":-3.57792,"spawnMask":1},{"id":"creature-138031","entityId":"entry-9097","position":[-36.5816,8.7588,-793.8688],"yaw":-6.05629,"spawnMask":1},{"id":"creature-138032","entityId":"entry-9097","position":[15.8293,44.9043,-557.9418],"yaw":-0.20944,"spawnMask":1},{"id":"creature-138033","entityId":"entry-9097","position":[-39.1158,10.1819,-846.6438],"yaw":-3.49066,"spawnMask":1},{"id":"creature-138034","entityId":"entry-9097","position":[-40.6555,8.7621,-791.3658],"yaw":-4.57276,"spawnMask":1},{"id":"creature-138035","entityId":"entry-9097","position":[-43.5001,40.2282,-560.4958],"yaw":-6.23083,"spawnMask":1},{"id":"creature-138036","entityId":"entry-9097","position":[-43.6971,21.5969,-721.9478],"yaw":-4.32842,"spawnMask":1},{"id":"creature-138037","entityId":"entry-9097","position":[-46.9014,40.1713,-564.2818],"yaw":-0.296706,"spawnMask":1},{"id":"creature-138038","entityId":"entry-9097","position":[30.3858,8.7678,-872.1718],"yaw":-0.925025,"spawnMask":1},{"id":"creature-138039","entityId":"entry-9097","position":[-48.9075,10.1799,-872.6128],"yaw":-6.26573,"spawnMask":1},{"id":"creature-138040","entityId":"entry-9097","position":[-56.2891,40.2676,-573.0188],"yaw":-1.98968,"spawnMask":1},{"id":"creature-138041","entityId":"entry-9097","position":[14.3045,44.934,-539.3408],"yaw":-5.46288,"spawnMask":1},{"id":"creature-138042","entityId":"entry-9097","position":[-59.5378,10.1837,-866.5408],"yaw":-4.11898,"spawnMask":1},{"id":"creature-138043","entityId":"entry-9097","position":[-59.6399,35.2779,-601.5368],"yaw":-2.65948,"spawnMask":1},{"id":"creature-138044","entityId":"entry-9097","position":[-62.4741,40.279,-643.9308],"yaw":-6.05629,"spawnMask":1},{"id":"creature-138048","entityId":"entry-9097","position":[13.6802,44.9072,-543.6948],"yaw":-0.698132,"spawnMask":1},{"id":"creature-138049","entityId":"entry-9097","position":[13.487,28.2886,-618.5208],"yaw":-1.23918,"spawnMask":1},{"id":"creature-138050","entityId":"entry-9097","position":[-67.4866,40.1754,-566.6858],"yaw":-4.83456,"spawnMask":1},{"id":"creature-138051","entityId":"entry-9097","position":[-68.7986,40.1956,-647.8698],"yaw":-1.54309,"spawnMask":1},{"id":"creature-138052","entityId":"entry-9097","position":[-71.9161,40.2462,-561.0108],"yaw":-3.14159,"spawnMask":1},{"id":"creature-138053","entityId":"entry-9097","position":[74.8107,8.7678,-872.1818],"yaw":-2.96706,"spawnMask":1},{"id":"creature-138054","entityId":"entry-9097","position":[78.4805,8.7678,-867.5178],"yaw":-4.24115,"spawnMask":1},{"id":"creature-138055","entityId":"entry-9097","position":[86.0777,8.7678,-858.3498],"yaw":-0.122173,"spawnMask":1},{"id":"creature-138056","entityId":"entry-9097","position":[89.9671,8.7678,-821.3688],"yaw":-3.87463,"spawnMask":1},{"id":"creature-138057","entityId":"entry-9097","position":[92.7574,8.7678,-861.7818],"yaw":-1.16937,"spawnMask":1},{"id":"creature-138058","entityId":"entry-9098","position":[24.0699,8.8245,-805.5128],"yaw":-5.42797,"spawnMask":1},{"id":"creature-138059","entityId":"entry-9098","position":[-79.4337,33.4957,-594.8958],"yaw":-5.91667,"spawnMask":1},{"id":"creature-138060","entityId":"entry-9098","position":[-82.7677,33.4963,-618.5408],"yaw":-6.23083,"spawnMask":1},{"id":"creature-138061","entityId":"entry-9098","position":[8.4889,44.9291,-540.1038],"yaw":-3.68264,"spawnMask":1},{"id":"creature-138062","entityId":"entry-9098","position":[25.5461,8.7678,-866.5028],"yaw":-3.94444,"spawnMask":1},{"id":"creature-138063","entityId":"entry-9098","position":[-6.3609,28.2947,-682.4588],"yaw":-4.53786,"spawnMask":1},{"id":"creature-138064","entityId":"entry-9098","position":[54.2679,8.7678,-845.1408],"yaw":-5.48033,"spawnMask":1},{"id":"creature-138065","entityId":"entry-9098","position":[-18.1571,7.4262,-734.4138],"yaw":-5.49779,"spawnMask":1},{"id":"creature-138066","entityId":"entry-9098","position":[-24.9472,44.8574,-556.8778],"yaw":-6.24155,"spawnMask":1},{"id":"creature-138067","entityId":"entry-9098","position":[-29.446,33.4955,-593.3038],"yaw":-5.25344,"spawnMask":1},{"id":"creature-138068","entityId":"entry-9098","position":[-29.6753,44.9528,-541.3308],"yaw":-3.63028,"spawnMask":1},{"id":"creature-138070","entityId":"entry-9098","position":[-32.7956,4.4393,-750.8228],"yaw":-1.44862,"spawnMask":1},{"id":"creature-138071","entityId":"entry-9098","position":[-34.4807,10.1653,-848.7638],"yaw":-0.418879,"spawnMask":1},{"id":"creature-138072","entityId":"entry-9098","position":[-42.6893,8.8103,-796.3238],"yaw":-2.56563,"spawnMask":1},{"id":"creature-138073","entityId":"entry-9098","position":[-44.7,20.2203,-729.4978],"yaw":-2.0944,"spawnMask":1},{"id":"creature-138074","entityId":"entry-9098","position":[13.8952,28.3509,-612.4868],"yaw":-5.11381,"spawnMask":1},{"id":"creature-138075","entityId":"entry-9098","position":[-57.5171,10.183,-870.6348],"yaw":-1.25664,"spawnMask":1},{"id":"creature-138076","entityId":"entry-9098","position":[-58.8726,35.3607,-611.3048],"yaw":-1.79769,"spawnMask":1},{"id":"creature-138077","entityId":"entry-9098","position":[-67.373,40.279,-640.3118],"yaw":-4.4855,"spawnMask":1},{"id":"creature-138078","entityId":"entry-9416","position":[7.0326,28.4232,-605.6588],"yaw":-4.81711,"spawnMask":1},{"id":"creature-138079","entityId":"entry-9416","position":[1.1119,28.4154,-605.2718],"yaw":-4.59022,"spawnMask":1},{"id":"creature-138080","entityId":"entry-9416","position":[-17.2375,28.2276,-687.2718],"yaw":-1.37881,"spawnMask":1},{"id":"creature-138081","entityId":"entry-9416","position":[66.7308,8.7678,-846.7258],"yaw":-5.77704,"spawnMask":1},{"id":"creature-138082","entityId":"entry-9416","position":[-21.5082,28.3418,-687.7138],"yaw":-1.41372,"spawnMask":1},{"id":"creature-138083","entityId":"entry-9416","position":[67.2438,8.7678,-841.9038],"yaw":-5.44543,"spawnMask":1},{"id":"creature-138084","entityId":"entry-9416","position":[-23.1203,8.7126,-789.2818],"yaw":-0.628319,"spawnMask":1},{"id":"creature-138085","entityId":"entry-9416","position":[-25.9968,8.7215,-793.5508],"yaw":-0.802851,"spawnMask":1},{"id":"creature-138086","entityId":"entry-9416","position":[-32.0428,6.2306,-763.6238],"yaw":-2.51327,"spawnMask":1},{"id":"creature-138087","entityId":"entry-9416","position":[-34.7068,5.3509,-758.0228],"yaw":-2.74017,"spawnMask":1},{"id":"creature-138088","entityId":"entry-9416","position":[84.811,8.7678,-836.1508],"yaw":-0.907571,"spawnMask":1},{"id":"creature-138090","entityId":"entry-9416","position":[88.3855,8.7678,-830.8958],"yaw":-0.575959,"spawnMask":1},{"id":"creature-138091","entityId":"entry-9258","position":[4.1048,28.419,-605.5278],"yaw":-4.69494,"spawnMask":1},{"id":"creature-138092","entityId":"entry-9258","position":[-19.5021,28.2826,-686.8638],"yaw":-1.39626,"spawnMask":1},{"id":"creature-138093","entityId":"entry-9258","position":[65.8637,8.7678,-844.9268],"yaw":-5.61996,"spawnMask":1},{"id":"creature-138094","entityId":"entry-9258","position":[-25.2654,8.7192,-790.8358],"yaw":-0.715585,"spawnMask":1},{"id":"creature-138095","entityId":"entry-9258","position":[-32.5524,5.5744,-760.4408],"yaw":-2.61799,"spawnMask":1},{"id":"creature-138096","entityId":"entry-9258","position":[85.5031,8.7678,-832.4508],"yaw":-0.750492,"spawnMask":1},{"id":"creature-138097","entityId":"entry-9257","position":[-3.3455,28.3184,-684.5458],"yaw":-6.07375,"spawnMask":1},{"id":"creature-138098","entityId":"entry-9257","position":[19.6007,8.9503,-810.9148],"yaw":-2.23402,"spawnMask":1},{"id":"creature-138099","entityId":"entry-9257","position":[-18.5145,5.9805,-739.7438],"yaw":-1.01229,"spawnMask":1},{"id":"creature-138100","entityId":"entry-9257","position":[-37.5541,4.339,-746.7568],"yaw":-3.29867,"spawnMask":1},{"id":"creature-138101","entityId":"entry-9257","position":[-39.8096,21.6472,-723.0588],"yaw":-5.53269,"spawnMask":1},{"id":"creature-138102","entityId":"entry-9257","position":[-40.1689,10.1932,-854.9658],"yaw":-3.10669,"spawnMask":1},{"id":"creature-138103","entityId":"entry-9257","position":[-52.5797,10.1813,-873.1778],"yaw":-2.86234,"spawnMask":1},{"id":"creature-138104","entityId":"entry-9257","position":[30.9789,8.7678,-866.9588],"yaw":-5.67232,"spawnMask":1},{"id":"creature-138105","entityId":"entry-9257","position":[79.4467,8.7678,-872.1008],"yaw":-1.29154,"spawnMask":1},{"id":"creature-248595","entityId":"entry-9216","position":[102.193,62.1203,-809.5788],"yaw":-0.80285,"spawnMask":1},{"id":"creature-248596","entityId":"entry-9216","position":[79.729,57.3259,-713.5098],"yaw":-1.44862,"spawnMask":1},{"id":"creature-248597","entityId":"entry-9216","position":[43.2777,28.0287,-676.8948],"yaw":-3.01552,"spawnMask":1},{"id":"creature-248598","entityId":"entry-9216","position":[44.7415,11.1038,-629.1258],"yaw":-5.37632,"spawnMask":1},{"id":"creature-248599","entityId":"entry-9216","position":[63.4585,11.1119,-647.0438],"yaw":-4.6267,"spawnMask":1},{"id":"creature-248600","entityId":"entry-9216","position":[54.3851,11.1119,-666.5608],"yaw":-4.68053,"spawnMask":1},{"id":"creature-300742","entityId":"entry-9718","position":[112.7283,50.446,-577.2338],"yaw":-3.86922,"spawnMask":1},{"id":"encounter-277","entityId":"entry-10264","position":[-71.441,52.7562,-227.8167],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-43101","name":"Smolderthorn Berserker Patrol","speed":1.15,"pathId":926800,"formationSource":"database-solo","spawnMask":1,"waypoints":[[76.3766,57.779,-728.7908],[76.028,57.2552,-691.4368],[75.5379,57.2638,-675.9298]],"members":[{"id":"member","entityId":"entry-9268","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-43527","name":"Smolderthorn Shadow Priest Patrol","speed":1.15,"pathId":435270,"formationSource":"database-solo","spawnMask":1,"waypoints":[[25.1367,-4.3655,-747.0898],[20.3791,-4.4415,-750.0158],[20.3791,-4.4415,-750.0158],[21.4495,-4.4357,-749.5288],[24.7829,-4.3708,-747.7898],[30.6662,-3.7764,-747.1438],[37.983,-3.9528,-746.3438],[44.0558,-3.9241,-741.6848],[45.4232,-3.9052,-737.6688],[45.4232,-3.9052,-737.6688],[42.15,-3.9281,-743.9578],[36.6921,-3.9202,-746.6168],[30.0664,-3.777,-746.9558]],"members":[{"id":"member","entityId":"entry-9240","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137820","name":"Rage Talon Dragonspawn Patrol","speed":1.15,"pathId":1378200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-79.7537,85.9296,-570.0438],[-80.6497,85.9296,-598.4648],[-79.7537,85.9296,-570.0438],[-79.3727,85.9296,-540.9998]],"members":[{"id":"member","entityId":"entry-9096","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137830","name":"Rage Talon Dragonspawn Patrol","speed":1.15,"pathId":1378300,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-114.2977,50.4499,-604.2728],[-116.8867,50.4499,-597.5588],[-122.2837,50.4499,-592.5758],[-132.8957,50.4499,-593.1898],[-142.9267,50.4499,-595.2538],[-157.1797,54.498,-594.3128],[-163.7457,56.374,-593.3388],[-167.6787,56.3799,-589.5788],[-167.2617,56.426,-581.7968],[-170.0097,56.4302,-570.9078],[-174.4827,56.4308,-567.5988],[-182.6647,56.4299,-565.9988],[-184.0307,56.4263,-574.0108],[-183.3107,56.398,-586.8448],[-181.0667,56.3923,-594.6488],[-177.3527,56.3856,-600.8668],[-173.2987,56.3785,-607.4958],[-164.5257,56.3674,-611.2138],[-149.7697,51.1572,-616.6718],[-135.0807,50.4499,-616.4358],[-128.6087,50.4499,-618.3698],[-118.6767,50.4499,-614.2838]],"members":[{"id":"member","entityId":"entry-9096","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137842","name":"Rage Talon Flamescale Patrol","speed":1.15,"pathId":1378420,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-128.7447,90.4346,-552.6318],[-128.6917,90.1486,-585.8118],[-129.0877,90.4416,-623.4418],[-128.6917,90.1486,-585.8118]],"members":[{"id":"member","entityId":"entry-10083","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137843","name":"Rage Talon Flamescale Patrol","speed":1.15,"pathId":1378430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-141.9347,96.3376,-652.1008],[-136.9517,96.3376,-652.0288],[-111.5757,96.3376,-651.8168],[-90.9427,96.3376,-652.1908],[-111.5757,96.3376,-651.8168],[-136.9517,96.3376,-652.0288]],"members":[{"id":"member","entityId":"entry-10083","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137849","name":"Rage Talon Dragon Guard Patrol","speed":1.15,"pathId":1378490,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-128.1787,96.3196,-761.6248],[-142.5347,96.3356,-761.4438],[-128.1787,96.3196,-761.6248],[-114.3707,96.3356,-760.6158],[-97.4227,96.3356,-760.6368],[-83.5197,96.3356,-760.6068],[-72.0113,96.3356,-759.0428],[-60.9468,96.3356,-760.2058],[-54.379,96.3356,-760.4598],[-42.3593,93.4446,-760.5418],[-29.1653,90.4166,-760.6518],[-42.1204,93.4446,-760.5438],[-54.379,96.3356,-760.4598],[-60.6711,96.3356,-760.2348],[-72.0113,96.3356,-759.0428],[-83.5197,96.3356,-760.6068],[-97.4227,96.3356,-760.6368],[-114.3707,96.3356,-760.6158]],"members":[{"id":"member","entityId":"entry-10366","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137856","name":"Goraluk Anvilcrack Patrol","speed":1.15,"pathId":1378560,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-118.1337,90.3196,-529.5538],[-117.2957,90.2976,-530.9568],[-117.2927,90.2666,-533.3118],[-119.2797,90.2726,-534.8978],[-122.1437,90.2816,-536.2628],[-126.1947,90.3556,-532.3908],[-129.3797,90.3936,-531.2858],[-136.8007,90.4166,-534.5928],[-132.4147,90.4196,-529.5958],[-126.2067,90.3906,-529.1298],[-124.4827,90.3886,-527.9818],[-122.2167,90.3176,-532.9258],[-125.2267,90.3706,-530.2288],[-126.9027,90.3926,-529.5248],[-125.0677,90.3246,-534.4688],[-125.5947,90.3556,-531.9438],[-129.5317,90.3836,-532.3918],[-125.0427,90.3776,-529.4858],[-125.4337,90.3616,-531.2928],[-126.3037,90.3486,-533.1638],[-127.3847,90.3836,-530.7008],[-122.4407,90.3646,-528.6708]],"members":[{"id":"member","entityId":"entry-10899","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137859","name":"Rage Talon Captain Patrol","speed":1.15,"pathId":1378590,"formationSource":"database-solo","spawnMask":1,"waypoints":[[22.6649,90.4226,-560.4798],[22.9362,90.4326,-606.6788],[-10.2524,90.4366,-630.5768],[20.0344,90.4356,-621.4318],[1.2009,90.4386,-601.2168],[0.8848,90.4366,-552.7568],[1.2009,90.4386,-601.2168],[20.0344,90.4356,-621.4318],[-10.2524,90.4366,-630.5768],[22.9373,90.4356,-606.8798],[22.6649,90.4226,-560.4798],[5.012,90.4366,-549.4308]],"members":[{"id":"member","entityId":"entry-10371","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137885","name":"Blackhand Veteran Patrol","speed":1.15,"pathId":1378850,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-115.1937,96.3376,-651.9098],[-96.3917,96.3416,-652.0218],[-115.1937,96.3376,-651.9098],[-114.9427,96.3006,-660.0988],[-115.2647,101.4686,-669.7928],[-114.8827,96.3006,-659.9958],[-114.5417,96.3316,-644.8608],[-115.2717,90.7786,-635.6098],[-115.7657,90.4586,-625.8898],[-115.3167,90.4636,-635.0918],[-114.5337,96.3316,-644.7918],[-115.2367,96.3376,-651.9908],[-129.2497,96.3376,-651.2828],[-146.2317,96.3376,-651.2168],[-129.2497,96.3376,-651.2828],[-115.2367,96.3376,-651.9908],[-114.5247,96.3316,-644.8978],[-115.3097,90.4646,-635.1728],[-115.7657,90.4586,-625.8898],[-115.2717,90.7786,-635.6098],[-114.5477,96.3316,-644.7918],[-114.8827,96.3006,-659.9958],[-115.2647,101.4686,-669.7928],[-114.9427,96.3006,-660.0988]],"members":[{"id":"member","entityId":"entry-9819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137894","name":"Blackhand Veteran Patrol","speed":1.15,"pathId":1378940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-133.9957,90.4426,-626.5378],[-138.5467,90.4346,-616.0488],[-141.6107,90.4286,-607.4008],[-141.3277,90.4196,-593.8588],[-139.1927,90.4306,-581.2178],[-138.8017,90.4336,-572.8068],[-138.8877,90.4356,-562.1238],[-139.8807,90.4156,-546.4438],[-138.1447,90.4046,-537.0378],[-130.5947,90.3346,-540.2028],[-125.1947,90.3436,-542.8378],[-121.6717,90.3456,-544.0528],[-119.4877,90.3816,-548.6848],[-116.5867,90.4216,-558.9448],[-116.3257,90.4576,-578.3748],[-115.6277,90.4696,-590.5258],[-117.4637,90.4496,-604.1538],[-118.8217,90.4416,-614.3118],[-123.1287,90.4436,-625.1388],[-129.2477,90.4456,-629.3448]],"members":[{"id":"member","entityId":"entry-9819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137933","name":"Blackhand Dreadweaver Patrol","speed":1.15,"pathId":1379330,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-133.9167,90.4046,-547.0208],[-133.9587,90.4386,-556.6728],[-134.6987,90.1466,-569.3448],[-133.9827,90.1486,-588.0548],[-132.6547,90.1516,-602.9178],[-123.0567,90.1516,-602.8528],[-115.8077,90.4646,-598.5198],[-105.3717,90.4416,-598.5248],[-90.7057,85.9296,-598.2868],[-84.5527,85.9296,-597.1228],[-84.4047,85.9296,-590.9978],[-85.2297,85.9296,-580.3158],[-85.3917,85.9296,-559.9248],[-85.5867,85.9296,-548.6598],[-90.8377,85.9296,-546.4248],[-96.7737,88.4056,-545.5928],[-104.1487,90.4436,-544.7708],[-111.5257,90.3656,-542.5408],[-119.3687,90.3016,-539.8218],[-126.4937,90.3286,-540.7488],[-133.2887,90.3666,-542.9438]],"members":[{"id":"member","entityId":"entry-9817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137970","name":"Jed Runewatcher Patrol","speed":1.15,"pathId":1379700,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-120.3427,90.4396,-618.0028],[-114.8297,90.4656,-632.4008],[-114.8437,90.4926,-635.2128],[-114.6657,96.3316,-643.6038],[-114.2667,96.3376,-652.2258],[-114.4347,96.3006,-660.9468],[-114.5137,101.4686,-669.0718],[-114.5607,101.4686,-678.2978],[-128.6547,101.4686,-678.9518],[-142.7987,101.4686,-678.7868],[-142.7017,101.4686,-669.0218],[-142.9127,96.3006,-660.8708],[-142.8177,96.3386,-653.5538],[-142.6767,96.3306,-643.4918],[-142.8067,90.4626,-634.8108],[-142.3557,90.4446,-627.9268],[-138.0457,90.4346,-616.9328],[-137.4527,90.1496,-595.1168],[-137.3407,90.1456,-566.5258],[-121.2937,90.1466,-566.5788],[-120.2487,90.1516,-597.9698]],"members":[{"id":"member","entityId":"entry-10509","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137972","name":"Blackhand Assassin Patrol","speed":1.15,"pathId":1379720,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-94.7767,86.6186,-853.9188],[-94.5527,86.8966,-848.5768],[-90.2287,87.1566,-843.5848],[-82.3527,87.1756,-843.2088],[-73.31,90.0716,-839.9118],[-64.9657,90.4166,-836.8728],[-57.2137,90.4326,-831.0058],[-49.0075,90.4336,-825.9588],[-40.7945,90.4356,-820.9068],[-48.9498,90.4336,-825.9438],[-57.2137,90.4326,-831.0058],[-64.9657,90.4166,-836.8728],[-73.31,90.0716,-839.9118],[-82.3527,87.1756,-843.2088],[-90.2287,87.1566,-843.5848],[-94.5527,86.8966,-848.5768]],"members":[{"id":"member","entityId":"entry-10318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137990","name":"Blackhand Iron Guard Patrol","speed":1.15,"pathId":1379900,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-60.8039,96.3356,-760.6258],[-70.3787,96.3356,-762.7698],[-70.4234,96.3356,-778.3238],[-70.3787,96.3356,-762.7698],[-60.9468,96.3356,-760.6578],[-48.1636,94.9896,-760.5668],[-37.8688,91.6326,-760.3218],[-22.3143,90.4196,-762.1388],[-13.7667,90.4326,-769.8278],[-1.7721,90.4406,-771.5428],[10.4165,90.4296,-767.5458],[12.6707,90.4286,-758.9618],[5.3722,90.4406,-742.7698],[-6.8314,90.4536,-739.9898],[-12.7139,90.4366,-740.5618],[-12.0081,90.4386,-728.7818],[-10.7659,90.2056,-703.8818],[-12.0081,90.4386,-728.7818],[-12.7139,90.4366,-740.5618],[-6.8314,90.4536,-739.9898],[5.3722,90.4406,-742.7698],[12.6707,90.4286,-758.9618],[10.4165,90.4296,-767.5458],[-1.7721,90.4406,-771.5428],[-13.7667,90.4326,-769.8278],[-22.3143,90.4196,-762.1388],[-37.8688,91.6326,-760.3218],[-48.1636,94.9896,-760.5668]],"members":[{"id":"member","entityId":"entry-10319","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138002","name":"Scarshield Acolyte Patrol","speed":1.15,"pathId":1380020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-18.2665,90.4256,-765.1518],[-17.9563,90.4276,-756.0188],[-6.2487,90.4516,-743.6648],[3.3101,90.4416,-744.1068],[11.7896,90.4316,-751.8028],[10.7088,90.4286,-767.3238],[-4.4707,90.4426,-773.0698]],"members":[{"id":"member","entityId":"entry-9045","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138004","name":"Scarshield Acolyte Patrol","speed":1.15,"pathId":1380040,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-10.5005,90.4406,-737.2948],[-5.0966,90.4476,-753.1368],[0.1501,90.4386,-772.2728],[1.3437,90.4346,-781.9098],[0.1501,90.4386,-772.2728],[-5.0966,90.4476,-753.1368],[-10.5005,90.4406,-737.2948],[-10.2473,90.4416,-727.1618],[-10.4804,90.4426,-718.4868],[-10.2473,90.4416,-727.1618]],"members":[{"id":"member","entityId":"entry-9045","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138026","name":"Scarshield Legionnaire Patrol","speed":1.15,"pathId":1380260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-18.7785,33.2399,-613.2398],[-11.8386,33.1232,-615.2308],[0.6761,28.2499,-615.1778],[4.0185,28.2198,-618.4438],[4.1281,28.1692,-632.3218],[2.4866,28.1667,-635.1678],[-12.392,28.169,-635.1148],[-14.4254,28.1718,-638.3528],[-14.5284,28.1503,-650.0548],[-14.4254,28.1718,-638.3528],[-12.392,28.169,-635.1148],[2.4866,28.1667,-635.1678],[4.1281,28.1692,-632.3218],[4.0185,28.2198,-618.4438],[0.6761,28.2499,-615.1778],[-11.8386,33.1232,-615.2308],[-18.7785,33.2399,-613.2398],[-30.7212,33.4096,-611.3238]],"members":[{"id":"member","entityId":"entry-9097","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138045","name":"Scarshield Legionnaire Patrol","speed":1.15,"pathId":1380450,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-49.7689,40.1173,-567.7468],[-64.3864,40.1022,-569.2998],[-64.0025,40.1043,-569.0128],[-48.2113,40.1013,-568.0348]],"members":[{"id":"member","entityId":"entry-9097","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138046","name":"Scarshield Legionnaire Patrol","speed":1.15,"pathId":1380460,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-65.3925,40.1089,-574.3968],[-70.7436,40.1259,-577.8328],[-73.209,40.1588,-582.8958],[-73.2094,44.884,-595.6898],[-72.2548,44.9729,-600.9128],[-64.2626,44.9774,-602.9258],[-48.9781,44.9609,-605.5418],[-42.848,44.9528,-606.8618],[-41.9536,44.9571,-613.0288],[-41.9977,40.1956,-626.4548],[-43.4259,40.1956,-631.5738],[-48.6347,40.1956,-632.3878],[-52.4213,40.1956,-632.2018],[-61.0673,40.1956,-632.2778],[-68.7674,40.1956,-632.1338],[-71.7494,40.1956,-630.4218],[-72.7539,40.1956,-626.7458],[-72.5898,44.9571,-613.4678],[-71.9483,44.9595,-607.9828],[-66.7496,44.9874,-604.9898],[-58.0469,44.965,-605.4248],[-47.8789,44.9771,-604.7988],[-43.1886,44.9571,-600.5768],[-41.7957,44.9571,-596.2828],[-41.3993,40.2357,-583.1678],[-44.4045,40.1336,-578.4188],[-51.4675,40.1348,-575.3738],[-59.2357,40.1549,-574.0388]],"members":[{"id":"member","entityId":"entry-9097","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138047","name":"Scarshield Legionnaire Patrol","speed":1.15,"pathId":1380470,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-67.1998,40.0887,-572.0988],[-73.3265,40.12,-577.1138],[-75.2092,41.9223,-588.0098],[-73.9903,44.9807,-602.5408],[-45.7484,44.9485,-608.1238],[-43.8486,44.9571,-613.3748],[-43.9736,43.0233,-619.1178],[-71.9905,40.1956,-630.0738],[-72.1661,41.3049,-623.5758],[-70.5534,44.9571,-610.5328],[-65.3724,44.9633,-606.5048],[-51.1661,44.9555,-607.0048],[-45.1541,44.9547,-606.6348],[-39.6432,44.9571,-596.1288],[-39.3403,40.2501,-581.2448],[-48.4611,40.1039,-574.4918],[-61.2465,40.1366,-573.0038]],"members":[{"id":"member","entityId":"entry-9097","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138069","name":"Scarshield Spellbinder Patrol","speed":1.15,"pathId":1380690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-17.2311,33.2315,-615.7648],[-34.4484,33.4098,-612.7508],[-11.6044,32.9782,-617.2298],[-4.0697,28.242,-617.2048],[-1.2595,28.2441,-617.1858],[4.5426,28.2307,-617.1618],[4.2805,28.1937,-621.4308],[2.1259,28.1746,-623.5998],[2.1551,28.1662,-635.7528],[-0.813,28.1673,-636.8848],[-3.6563,28.1751,-633.1458],[-15.6855,28.1644,-633.1028],[-16.4737,28.1509,-643.8318],[-16.5531,28.1489,-652.8558],[-16.3961,28.1664,-635.0078],[-12.7532,28.1648,-631.9298],[-6.8658,28.1751,-633.1348],[5.1693,28.167,-633.1768],[2.0854,28.1839,-626.9278],[1.9905,28.2517,-614.8958],[-2.0784,28.2652,-615.2828],[-6.2101,29.5875,-617.2068],[-9.0478,31.3712,-617.2188],[-11.6044,32.9782,-617.2298],[-14.1545,33.1756,-617.2408]],"members":[{"id":"member","entityId":"entry-9098","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-45808","name":"Burning Felguard","position":[135.1883,43.8436,-610.2938]},{"id":"creature-44422","name":"Crystal Fang","position":[128.3783,13.5936,-688.1338]},{"id":"creature-43519","name":"Spirestone Battle Lord","position":[57.6283,11.2536,-703.0538]},{"id":"creature-43523","name":"Spirestone Butcher","position":[59.3232,11.3259,-727.8818]},{"id":"creature-43522","name":"Shadow Hunter Vosh'gajin","position":[143.9283,4.2036,-768.1438]},{"id":"creature-45840","name":"War Master Voone","position":[39.7147,-39.1506,-745.1128]},{"id":"creature-44342","name":"Mother Smolderweb","position":[158.2483,-10.3364,-851.8138]},{"id":"creature-45749","name":"Quartermaster Zigris","position":[213.1973,66.8838,-761.5468]},{"id":"creature-40245","name":"Halycon","position":[216.6523,43.9815,-624.1118]},{"id":"creature-45757","name":"Overlord Wyrmthalak","position":[45.3708,70.2467,-772.1498]},{"id":"creature-137817","name":"Pyroguard Emberseer","position":[-121.6997,75.9002,-543.9978]},{"id":"encounter-277","name":"Solakar Flamewreath","position":[-71.441,52.7562,-227.8167]},{"id":"creature-137968","name":"Warchief Rend Blackhand","position":[-136.5377,101.5526,-729.5828]},{"id":"creature-137969","name":"The Beast","position":[-101.4717,86.9186,-849.7628]},{"id":"creature-137971","name":"General Drakkisath","position":[-13.7126,90.5296,-571.9578]}],"objectiveOrder":[{"id":"creature-45808","name":"Burning Felguard","position":[135.1883,43.8436,-610.2938]},{"id":"creature-44422","name":"Crystal Fang","position":[128.3783,13.5936,-688.1338]},{"id":"creature-43519","name":"Spirestone Battle Lord","position":[57.6283,11.2536,-703.0538]},{"id":"creature-43523","name":"Spirestone Butcher","position":[59.3232,11.3259,-727.8818]},{"id":"creature-43522","name":"Shadow Hunter Vosh'gajin","position":[143.9283,4.2036,-768.1438]},{"id":"creature-45840","name":"War Master Voone","position":[39.7147,-39.1506,-745.1128]},{"id":"creature-44342","name":"Mother Smolderweb","position":[158.2483,-10.3364,-851.8138]},{"id":"creature-45749","name":"Quartermaster Zigris","position":[213.1973,66.8838,-761.5468]},{"id":"creature-40245","name":"Halycon","position":[216.6523,43.9815,-624.1118]},{"id":"creature-45757","name":"Overlord Wyrmthalak","position":[45.3708,70.2467,-772.1498]},{"id":"creature-137817","name":"Pyroguard Emberseer","position":[-121.6997,75.9002,-543.9978]},{"id":"encounter-277","name":"Solakar Flamewreath","position":[-71.441,52.7562,-227.8167]},{"id":"creature-137968","name":"Warchief Rend Blackhand","position":[-136.5377,101.5526,-729.5828]},{"id":"creature-137969","name":"The Beast","position":[-101.4717,86.9186,-849.7628]},{"id":"creature-137971","name":"General Drakkisath","position":[-13.7126,90.5296,-571.9578]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14219,"id":181096,"map":229,"orientation":0,"phaseMask":1,"position_x":-23.97,"position_y":-451.98,"position_z":-18.64,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14221,"id":181096,"map":229,"orientation":0,"phaseMask":1,"position_x":25.92,"position_y":-537.7,"position_z":110.93,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":35860,"id":175785,"map":229,"orientation":3.23389,"phaseMask":1,"position_x":-9.32359,"position_y":-445.283,"position_z":-18.6441,"rotation0":0,"rotation1":0,"rotation2":0.998935,"rotation3":-0.0461323,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":35869,"id":179880,"map":229,"orientation":3.04222,"phaseMask":1,"position_x":41.8915,"position_y":-285.414,"position_z":110.958,"rotation0":0,"rotation1":0,"rotation2":0.998766,"rotation3":0.0496658,"spawnMask":1,"spawntimesecs":25,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81163,"id":175245,"map":229,"orientation":-0.104719,"phaseMask":1,"position_x":75.9989,"position_y":-334.744,"position_z":91.5107,"rotation0":0,"rotation1":0,"rotation2":-0.0523356,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":81623,"id":136965,"map":229,"orientation":1.92859,"phaseMask":1,"position_x":215.773,"position_y":-341.663,"position_z":76.8611,"rotation0":0,"rotation1":0,"rotation2":0.821647,"rotation3":0.569997,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":81624,"id":136966,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":229.028,"position_y":-307.81,"position_z":76.9668,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87602,"id":175124,"map":229,"orientation":0.122173,"phaseMask":1,"position_x":100.58,"position_y":-312.489,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.0610485,"rotation3":0.998135,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87603,"id":175124,"map":229,"orientation":-1.58825,"phaseMask":1,"position_x":101.517,"position_y":-311.471,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87604,"id":175124,"map":229,"orientation":0.0174525,"phaseMask":1,"position_x":102.414,"position_y":-304.376,"position_z":91.4466,"rotation0":0,"rotation1":0,"rotation2":0.00872614,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87605,"id":175124,"map":229,"orientation":1.50098,"phaseMask":1,"position_x":104.213,"position_y":-289.411,"position_z":91.4732,"rotation0":0,"rotation1":0,"rotation2":0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87606,"id":175124,"map":229,"orientation":3.07177,"phaseMask":1,"position_x":104.316,"position_y":-302.841,"position_z":91.4741,"rotation0":0,"rotation1":0,"rotation2":0.999391,"rotation3":0.0349043,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87607,"id":175124,"map":229,"orientation":0.680677,"phaseMask":1,"position_x":104.404,"position_y":-299.438,"position_z":91.4757,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87608,"id":175124,"map":229,"orientation":-1.97222,"phaseMask":1,"position_x":104.602,"position_y":-287.997,"position_z":91.4788,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87609,"id":175124,"map":229,"orientation":1.44862,"phaseMask":1,"position_x":104.927,"position_y":-286.138,"position_z":91.4835,"rotation0":0,"rotation1":0,"rotation2":0.662619,"rotation3":0.748957,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87610,"id":175124,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":105.029,"position_y":-300.911,"position_z":91.4845,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87611,"id":175124,"map":229,"orientation":-1.20428,"phaseMask":1,"position_x":106.199,"position_y":-299.793,"position_z":91.5014,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87612,"id":175124,"map":229,"orientation":-0.593412,"phaseMask":1,"position_x":106.42,"position_y":-281.429,"position_z":91.5051,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87613,"id":175124,"map":229,"orientation":1.95477,"phaseMask":1,"position_x":106.604,"position_y":-283.776,"position_z":91.5078,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87614,"id":175124,"map":229,"orientation":0.750491,"phaseMask":1,"position_x":107.189,"position_y":-287.66,"position_z":91.5163,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87615,"id":175124,"map":229,"orientation":-2.19911,"phaseMask":1,"position_x":107.419,"position_y":-282.512,"position_z":91.5196,"rotation0":0,"rotation1":0,"rotation2":-0.891005,"rotation3":0.453993,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87616,"id":175124,"map":229,"orientation":2.00713,"phaseMask":1,"position_x":107.928,"position_y":-299.948,"position_z":91.5265,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87617,"id":175124,"map":229,"orientation":-0.122173,"phaseMask":1,"position_x":112.297,"position_y":-390.178,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.0610485,"rotation3":0.998135,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87618,"id":175124,"map":229,"orientation":2.82743,"phaseMask":1,"position_x":113.018,"position_y":-451.804,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87619,"id":175124,"map":229,"orientation":-0.785397,"phaseMask":1,"position_x":113.93,"position_y":-389.215,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87620,"id":175124,"map":229,"orientation":0.767944,"phaseMask":1,"position_x":114.806,"position_y":-450.286,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":0.374606,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87621,"id":175124,"map":229,"orientation":-0.837757,"phaseMask":1,"position_x":115.411,"position_y":-389.923,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.406736,"rotation3":0.913546,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87622,"id":175124,"map":229,"orientation":-1.98967,"phaseMask":1,"position_x":115.812,"position_y":-453.057,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87623,"id":175124,"map":229,"orientation":-1.53589,"phaseMask":1,"position_x":186.987,"position_y":-389.476,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87624,"id":175124,"map":229,"orientation":1.13446,"phaseMask":1,"position_x":187.741,"position_y":-387.874,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87625,"id":175124,"map":229,"orientation":1.3439,"phaseMask":1,"position_x":188.003,"position_y":-452.538,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":0.622513,"rotation3":0.782609,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87626,"id":175124,"map":229,"orientation":1.48353,"phaseMask":1,"position_x":188.126,"position_y":-450.82,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737277,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87627,"id":175124,"map":229,"orientation":-0.296705,"phaseMask":1,"position_x":189.08,"position_y":-388.611,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.147809,"rotation3":0.989016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87628,"id":175124,"map":229,"orientation":-2.86234,"phaseMask":1,"position_x":189.834,"position_y":-451.31,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.990268,"rotation3":0.139173,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87629,"id":175124,"map":229,"orientation":-2.16421,"phaseMask":1,"position_x":197.826,"position_y":-407.93,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87630,"id":175124,"map":229,"orientation":-1.51844,"phaseMask":1,"position_x":197.889,"position_y":-409.417,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87631,"id":175124,"map":229,"orientation":-2.05949,"phaseMask":1,"position_x":198.346,"position_y":-432.692,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87632,"id":175124,"map":229,"orientation":-2.44346,"phaseMask":1,"position_x":199.281,"position_y":-431.434,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.939692,"rotation3":0.342021,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87633,"id":175124,"map":229,"orientation":1.11701,"phaseMask":1,"position_x":199.588,"position_y":-433.807,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87634,"id":175124,"map":229,"orientation":-2.93214,"phaseMask":1,"position_x":199.616,"position_y":-410.272,"position_z":110.886,"rotation0":0,"rotation1":0,"rotation2":-0.994521,"rotation3":0.104535,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87635,"id":175124,"map":229,"orientation":2.87979,"phaseMask":1,"position_x":200.125,"position_y":-407.846,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87636,"id":175124,"map":229,"orientation":1.78023,"phaseMask":1,"position_x":200.72,"position_y":-431.708,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":0.777144,"rotation3":0.629323,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87637,"id":175124,"map":229,"orientation":-1.37881,"phaseMask":1,"position_x":200.743,"position_y":-409.406,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87638,"id":175124,"map":229,"orientation":1.44862,"phaseMask":1,"position_x":201.847,"position_y":-432.209,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":0.662619,"rotation3":0.748957,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87639,"id":175124,"map":229,"orientation":-1.36136,"phaseMask":1,"position_x":202.572,"position_y":-392.328,"position_z":111.154,"rotation0":0,"rotation1":0,"rotation2":-0.629322,"rotation3":0.777145,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87640,"id":175124,"map":229,"orientation":-2.80998,"phaseMask":1,"position_x":202.891,"position_y":-394.925,"position_z":111.134,"rotation0":0,"rotation1":0,"rotation2":-0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87641,"id":175124,"map":229,"orientation":-1.06465,"phaseMask":1,"position_x":203.082,"position_y":-401.453,"position_z":111.087,"rotation0":0,"rotation1":0,"rotation2":-0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87642,"id":175124,"map":229,"orientation":2.86234,"phaseMask":1,"position_x":203.281,"position_y":-398.872,"position_z":111.105,"rotation0":0,"rotation1":0,"rotation2":0.990268,"rotation3":0.139173,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87643,"id":175124,"map":229,"orientation":-1.15192,"phaseMask":1,"position_x":203.856,"position_y":-403.369,"position_z":111.071,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87644,"id":175124,"map":229,"orientation":-0.645772,"phaseMask":1,"position_x":204.115,"position_y":-393.598,"position_z":111.142,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87645,"id":175124,"map":229,"orientation":-1.29154,"phaseMask":1,"position_x":204.39,"position_y":-395.495,"position_z":111.127,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798637,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87646,"id":175124,"map":229,"orientation":-2.19911,"phaseMask":1,"position_x":204.402,"position_y":-400.307,"position_z":111.092,"rotation0":0,"rotation1":0,"rotation2":-0.891005,"rotation3":0.453993,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87647,"id":175124,"map":229,"orientation":0.261798,"phaseMask":1,"position_x":205.199,"position_y":-401.573,"position_z":111.082,"rotation0":0,"rotation1":0,"rotation2":0.130525,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87648,"id":175124,"map":229,"orientation":-0.750491,"phaseMask":1,"position_x":206.904,"position_y":-419.79,"position_z":110.925,"rotation0":0,"rotation1":0,"rotation2":-0.366501,"rotation3":0.930418,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87649,"id":175124,"map":229,"orientation":0.226892,"phaseMask":1,"position_x":207.267,"position_y":-434.716,"position_z":110.887,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87650,"id":175124,"map":229,"orientation":-0.174532,"phaseMask":1,"position_x":207.935,"position_y":-420.02,"position_z":110.93,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87651,"id":175124,"map":229,"orientation":-1.51844,"phaseMask":1,"position_x":208.006,"position_y":-422.069,"position_z":110.929,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87652,"id":175124,"map":229,"orientation":2.21657,"phaseMask":1,"position_x":208.166,"position_y":-418.361,"position_z":110.933,"rotation0":0,"rotation1":0,"rotation2":0.894935,"rotation3":0.446197,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87653,"id":175124,"map":229,"orientation":-2.82743,"phaseMask":1,"position_x":208.798,"position_y":-433.633,"position_z":110.888,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87654,"id":175124,"map":229,"orientation":-2.9496,"phaseMask":1,"position_x":209.072,"position_y":-435.188,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.995396,"rotation3":0.095849,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87655,"id":175124,"map":229,"orientation":-2.9496,"phaseMask":1,"position_x":209.286,"position_y":-391.27,"position_z":111.149,"rotation0":0,"rotation1":0,"rotation2":-0.995396,"rotation3":0.095849,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87656,"id":175124,"map":229,"orientation":-0.541051,"phaseMask":1,"position_x":209.563,"position_y":-419.84,"position_z":110.939,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87657,"id":175124,"map":229,"orientation":-0.122173,"phaseMask":1,"position_x":210.485,"position_y":-393.288,"position_z":111.132,"rotation0":0,"rotation1":0,"rotation2":-0.0610485,"rotation3":0.998135,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87658,"id":175124,"map":229,"orientation":1.91986,"phaseMask":1,"position_x":210.654,"position_y":-391.83,"position_z":111.142,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87659,"id":175124,"map":229,"orientation":-1.55334,"phaseMask":1,"position_x":211.617,"position_y":-434.677,"position_z":110.888,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87660,"id":175124,"map":229,"orientation":1.93731,"phaseMask":1,"position_x":211.907,"position_y":-420.136,"position_z":110.945,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566409,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87661,"id":175124,"map":229,"orientation":-0.558504,"phaseMask":1,"position_x":212.067,"position_y":-392.173,"position_z":111.137,"rotation0":0,"rotation1":0,"rotation2":-0.275637,"rotation3":0.961262,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87662,"id":175124,"map":229,"orientation":2.9845,"phaseMask":1,"position_x":212.459,"position_y":-418.521,"position_z":110.953,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784656,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87663,"id":175124,"map":229,"orientation":-0.174532,"phaseMask":1,"position_x":212.636,"position_y":-432.306,"position_z":110.892,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87664,"id":175124,"map":229,"orientation":2.14675,"phaseMask":1,"position_x":213.311,"position_y":-410.503,"position_z":110.963,"rotation0":0,"rotation1":0,"rotation2":0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87665,"id":175124,"map":229,"orientation":0.628317,"phaseMask":1,"position_x":213.577,"position_y":-419.533,"position_z":110.95,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87666,"id":175124,"map":229,"orientation":2.96704,"phaseMask":1,"position_x":214.32,"position_y":-408.951,"position_z":110.968,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.0871655,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87667,"id":175124,"map":229,"orientation":0.90757,"phaseMask":1,"position_x":217.875,"position_y":-392.087,"position_z":111.127,"rotation0":0,"rotation1":0,"rotation2":0.438371,"rotation3":0.898794,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87668,"id":175124,"map":229,"orientation":1.91986,"phaseMask":1,"position_x":218.954,"position_y":-392.579,"position_z":111.121,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87669,"id":175124,"map":229,"orientation":-1.98967,"phaseMask":1,"position_x":219.679,"position_y":-393.405,"position_z":111.114,"rotation0":0,"rotation1":0,"rotation2":-0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87670,"id":175124,"map":229,"orientation":-2.61799,"phaseMask":1,"position_x":219.995,"position_y":-399.617,"position_z":111.068,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87671,"id":175124,"map":229,"orientation":-1.76278,"phaseMask":1,"position_x":220.162,"position_y":-421.225,"position_z":110.948,"rotation0":0,"rotation1":0,"rotation2":-0.771624,"rotation3":0.636079,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87672,"id":175124,"map":229,"orientation":1.36136,"phaseMask":1,"position_x":220.173,"position_y":-391.63,"position_z":111.126,"rotation0":0,"rotation1":0,"rotation2":0.629322,"rotation3":0.777145,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87673,"id":175124,"map":229,"orientation":-1.98967,"phaseMask":1,"position_x":220.181,"position_y":-401.405,"position_z":111.055,"rotation0":0,"rotation1":0,"rotation2":-0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87674,"id":175124,"map":229,"orientation":-1.22173,"phaseMask":1,"position_x":220.602,"position_y":-418.447,"position_z":110.961,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87675,"id":175124,"map":229,"orientation":1.98967,"phaseMask":1,"position_x":220.824,"position_y":-398.357,"position_z":111.076,"rotation0":0,"rotation1":0,"rotation2":0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87676,"id":175124,"map":229,"orientation":-1.97222,"phaseMask":1,"position_x":220.836,"position_y":-393.649,"position_z":111.11,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87677,"id":175124,"map":229,"orientation":-2.47837,"phaseMask":1,"position_x":220.87,"position_y":-411.346,"position_z":110.993,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87678,"id":175124,"map":229,"orientation":0.977383,"phaseMask":1,"position_x":221.281,"position_y":-400.066,"position_z":111.063,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87679,"id":175124,"map":229,"orientation":-2.07694,"phaseMask":1,"position_x":221.348,"position_y":-409.122,"position_z":111.003,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87680,"id":175124,"map":229,"orientation":1.64061,"phaseMask":1,"position_x":221.701,"position_y":-420.444,"position_z":110.953,"rotation0":0,"rotation1":0,"rotation2":0.731354,"rotation3":0.681998,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87681,"id":175124,"map":229,"orientation":0,"phaseMask":1,"position_x":222.093,"position_y":-432.25,"position_z":110.901,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87682,"id":175124,"map":229,"orientation":-3.07177,"phaseMask":1,"position_x":222.152,"position_y":-411.776,"position_z":110.992,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349043,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87683,"id":175124,"map":229,"orientation":2.79252,"phaseMask":1,"position_x":222.219,"position_y":-428.908,"position_z":110.916,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87684,"id":175124,"map":229,"orientation":-1.20428,"phaseMask":1,"position_x":222.736,"position_y":-410.477,"position_z":110.998,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87685,"id":175124,"map":229,"orientation":-0.261798,"phaseMask":1,"position_x":222.816,"position_y":-430.971,"position_z":110.907,"rotation0":0,"rotation1":0,"rotation2":-0.130525,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87686,"id":175124,"map":229,"orientation":-1.88495,"phaseMask":1,"position_x":223.579,"position_y":-419.323,"position_z":110.959,"rotation0":0,"rotation1":0,"rotation2":-0.809015,"rotation3":0.587788,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87687,"id":175124,"map":229,"orientation":-0.174532,"phaseMask":1,"position_x":223.817,"position_y":-429.41,"position_z":110.914,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87688,"id":175124,"map":229,"orientation":1.88495,"phaseMask":1,"position_x":223.978,"position_y":-432.85,"position_z":110.899,"rotation0":0,"rotation1":0,"rotation2":0.809015,"rotation3":0.587788,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87689,"id":175124,"map":229,"orientation":1.58825,"phaseMask":1,"position_x":224.213,"position_y":-412.157,"position_z":110.991,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87690,"id":175124,"map":229,"orientation":2.26892,"phaseMask":1,"position_x":48.8127,"position_y":-337.076,"position_z":91.5302,"rotation0":0,"rotation1":0,"rotation2":0.906306,"rotation3":0.422622,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87691,"id":175124,"map":229,"orientation":-2.426,"phaseMask":1,"position_x":50.1711,"position_y":-316.652,"position_z":91.5303,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.350211,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87692,"id":175124,"map":229,"orientation":-1.98967,"phaseMask":1,"position_x":51.2665,"position_y":-338.088,"position_z":91.5419,"rotation0":0,"rotation1":0,"rotation2":-0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87693,"id":175124,"map":229,"orientation":2.14675,"phaseMask":1,"position_x":51.5754,"position_y":-315.042,"position_z":91.5225,"rotation0":0,"rotation1":0,"rotation2":0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87694,"id":175124,"map":229,"orientation":-0.593412,"phaseMask":1,"position_x":51.8635,"position_y":-316.614,"position_z":91.5209,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87695,"id":175124,"map":229,"orientation":1.3439,"phaseMask":1,"position_x":54.2656,"position_y":-255.435,"position_z":96.8589,"rotation0":0,"rotation1":0,"rotation2":0.622513,"rotation3":0.782609,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87696,"id":175124,"map":229,"orientation":-1.13446,"phaseMask":1,"position_x":54.5722,"position_y":-336.735,"position_z":91.5293,"rotation0":0,"rotation1":0,"rotation2":-0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87697,"id":175124,"map":229,"orientation":-2.65289,"phaseMask":1,"position_x":55.3531,"position_y":-249.984,"position_z":97.0487,"rotation0":0,"rotation1":0,"rotation2":-0.970294,"rotation3":0.241927,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87698,"id":175124,"map":229,"orientation":0.541051,"phaseMask":1,"position_x":55.442,"position_y":-254.351,"position_z":97.1978,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.963631,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87699,"id":175124,"map":229,"orientation":-1.06465,"phaseMask":1,"position_x":56.7615,"position_y":-332.325,"position_z":91.4652,"rotation0":0,"rotation1":0,"rotation2":-0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87700,"id":175124,"map":229,"orientation":-0.087266,"phaseMask":1,"position_x":56.8515,"position_y":-253.343,"position_z":96.9626,"rotation0":0,"rotation1":0,"rotation2":-0.0436192,"rotation3":0.999048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87701,"id":175124,"map":229,"orientation":0.261798,"phaseMask":1,"position_x":56.876,"position_y":-255.377,"position_z":96.9689,"rotation0":0,"rotation1":0,"rotation2":0.130525,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87702,"id":175124,"map":229,"orientation":-2.23402,"phaseMask":1,"position_x":57.859,"position_y":-336.093,"position_z":91.5233,"rotation0":0,"rotation1":0,"rotation2":-0.898794,"rotation3":0.438372,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87703,"id":175124,"map":229,"orientation":-1.01229,"phaseMask":1,"position_x":57.8603,"position_y":-256.662,"position_z":96.7394,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87704,"id":175124,"map":229,"orientation":0.506145,"phaseMask":1,"position_x":58.1175,"position_y":-253.946,"position_z":96.881,"rotation0":0,"rotation1":0,"rotation2":0.25038,"rotation3":0.968148,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87705,"id":175124,"map":229,"orientation":0.977383,"phaseMask":1,"position_x":58.8178,"position_y":-334.107,"position_z":91.5048,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87706,"id":175124,"map":229,"orientation":-2.49582,"phaseMask":1,"position_x":59.0256,"position_y":-271.14,"position_z":93.6363,"rotation0":0,"rotation1":0,"rotation2":-0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87707,"id":175124,"map":229,"orientation":1.0821,"phaseMask":1,"position_x":59.1689,"position_y":-255.103,"position_z":96.8158,"rotation0":0,"rotation1":0,"rotation2":0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87708,"id":175124,"map":229,"orientation":-0.191985,"phaseMask":1,"position_x":59.1922,"position_y":-317.294,"position_z":91.4801,"rotation0":0,"rotation1":0,"rotation2":-0.0958451,"rotation3":0.995396,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87709,"id":175124,"map":229,"orientation":-1.64061,"phaseMask":1,"position_x":59.331,"position_y":-332.23,"position_z":91.4729,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87710,"id":175124,"map":229,"orientation":-0.471239,"phaseMask":1,"position_x":59.4191,"position_y":-337.406,"position_z":91.5356,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87711,"id":175124,"map":229,"orientation":-2.26892,"phaseMask":1,"position_x":60.1851,"position_y":-270.196,"position_z":93.6818,"rotation0":0,"rotation1":0,"rotation2":-0.906306,"rotation3":0.422622,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87712,"id":175124,"map":229,"orientation":1.13446,"phaseMask":1,"position_x":60.3514,"position_y":-312.297,"position_z":91.5221,"rotation0":0,"rotation1":0,"rotation2":0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87713,"id":175124,"map":229,"orientation":2.35619,"phaseMask":1,"position_x":60.665,"position_y":-268.136,"position_z":93.6019,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87714,"id":175124,"map":229,"orientation":0.733038,"phaseMask":1,"position_x":61.0127,"position_y":-315.653,"position_z":91.4848,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87715,"id":175124,"map":229,"orientation":-0.680679,"phaseMask":1,"position_x":61.0567,"position_y":-313.922,"position_z":91.505,"rotation0":0,"rotation1":0,"rotation2":-0.333807,"rotation3":0.942641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87716,"id":175124,"map":229,"orientation":-1.15192,"phaseMask":1,"position_x":61.3216,"position_y":-272.013,"position_z":93.6009,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87717,"id":175124,"map":229,"orientation":-0.349065,"phaseMask":1,"position_x":62.4955,"position_y":-334.331,"position_z":91.5069,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87718,"id":175124,"map":229,"orientation":-3.08918,"phaseMask":1,"position_x":63.3079,"position_y":-317.114,"position_z":91.4715,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0262033,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87719,"id":175124,"map":229,"orientation":0.069812,"phaseMask":1,"position_x":63.5717,"position_y":-336.638,"position_z":91.5284,"rotation0":0,"rotation1":0,"rotation2":0.0348989,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87720,"id":175124,"map":229,"orientation":-1.5708,"phaseMask":1,"position_x":64.204,"position_y":-268.474,"position_z":93.2454,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87721,"id":175124,"map":229,"orientation":1.78023,"phaseMask":1,"position_x":64.926,"position_y":-317.059,"position_z":91.461,"rotation0":0,"rotation1":0,"rotation2":0.777144,"rotation3":0.629323,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87722,"id":175124,"map":229,"orientation":0.349065,"phaseMask":1,"position_x":65.2965,"position_y":-267.93,"position_z":93.0764,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87723,"id":175124,"map":229,"orientation":1.09956,"phaseMask":1,"position_x":65.5835,"position_y":-305.105,"position_z":91.4853,"rotation0":0,"rotation1":0,"rotation2":0.5225,"rotation3":0.852639,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87724,"id":175124,"map":229,"orientation":-2.61799,"phaseMask":1,"position_x":65.9878,"position_y":-303.634,"position_z":91.4694,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87725,"id":175124,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":66.8018,"position_y":-302.481,"position_z":91.4515,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87726,"id":175124,"map":229,"orientation":3.12412,"phaseMask":1,"position_x":68.1218,"position_y":-302.416,"position_z":91.4389,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87727,"id":175124,"map":229,"orientation":1.36136,"phaseMask":1,"position_x":68.2518,"position_y":-314.875,"position_z":91.4335,"rotation0":0,"rotation1":0,"rotation2":0.629322,"rotation3":0.777145,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87728,"id":175124,"map":229,"orientation":0.994837,"phaseMask":1,"position_x":68.7284,"position_y":-307.073,"position_z":91.4505,"rotation0":0,"rotation1":0,"rotation2":0.477158,"rotation3":0.878817,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87729,"id":175124,"map":229,"orientation":-1.39626,"phaseMask":1,"position_x":69.4599,"position_y":-303.627,"position_z":91.438,"rotation0":0,"rotation1":0,"rotation2":-0.642786,"rotation3":0.766046,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87730,"id":175124,"map":229,"orientation":1.13446,"phaseMask":1,"position_x":69.6914,"position_y":-332.161,"position_z":91.4867,"rotation0":0,"rotation1":0,"rotation2":0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87731,"id":175124,"map":229,"orientation":2.89724,"phaseMask":1,"position_x":69.9306,"position_y":-326.64,"position_z":91.4588,"rotation0":0,"rotation1":0,"rotation2":0.992546,"rotation3":0.121873,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87732,"id":175124,"map":229,"orientation":-0.401425,"phaseMask":1,"position_x":69.9912,"position_y":-329.339,"position_z":91.4658,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87733,"id":175124,"map":229,"orientation":0.610864,"phaseMask":1,"position_x":70.5072,"position_y":-334.149,"position_z":91.5052,"rotation0":0,"rotation1":0,"rotation2":0.300705,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87734,"id":175124,"map":229,"orientation":3.03684,"phaseMask":1,"position_x":70.9291,"position_y":-304.97,"position_z":91.4315,"rotation0":0,"rotation1":0,"rotation2":0.998629,"rotation3":0.0523524,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87735,"id":175124,"map":229,"orientation":-1.51844,"phaseMask":1,"position_x":71.7115,"position_y":-306.066,"position_z":91.4182,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87736,"id":175124,"map":229,"orientation":2.23402,"phaseMask":1,"position_x":71.7949,"position_y":-278.165,"position_z":92.4567,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87737,"id":175124,"map":229,"orientation":-1.43117,"phaseMask":1,"position_x":72.0026,"position_y":-328.392,"position_z":91.461,"rotation0":0,"rotation1":0,"rotation2":-0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87738,"id":175124,"map":229,"orientation":-2.68781,"phaseMask":1,"position_x":72.026,"position_y":-331.225,"position_z":91.4723,"rotation0":0,"rotation1":0,"rotation2":-0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87739,"id":175124,"map":229,"orientation":1.43117,"phaseMask":1,"position_x":72.0531,"position_y":-325.809,"position_z":91.4542,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87740,"id":175124,"map":229,"orientation":2.61799,"phaseMask":1,"position_x":72.069,"position_y":-276.632,"position_z":92.2983,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87741,"id":175124,"map":229,"orientation":-1.01229,"phaseMask":1,"position_x":72.141,"position_y":-285.906,"position_z":91.9452,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87742,"id":175124,"map":229,"orientation":-0.645772,"phaseMask":1,"position_x":73.1332,"position_y":-306.736,"position_z":91.4127,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87743,"id":175124,"map":229,"orientation":0.453785,"phaseMask":1,"position_x":73.5452,"position_y":-324.156,"position_z":91.4481,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87744,"id":175124,"map":229,"orientation":-1.01229,"phaseMask":1,"position_x":74.0389,"position_y":-287.331,"position_z":91.4488,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87745,"id":175124,"map":229,"orientation":-0.401425,"phaseMask":1,"position_x":74.1004,"position_y":-291.837,"position_z":91.442,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87746,"id":175124,"map":229,"orientation":-1.39626,"phaseMask":1,"position_x":74.2068,"position_y":-273.591,"position_z":91.6428,"rotation0":0,"rotation1":0,"rotation2":-0.642786,"rotation3":0.766046,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87747,"id":175124,"map":229,"orientation":-0.733038,"phaseMask":1,"position_x":74.4491,"position_y":-307.403,"position_z":91.4144,"rotation0":0,"rotation1":0,"rotation2":-0.358368,"rotation3":0.93358,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87748,"id":175124,"map":229,"orientation":0.95993,"phaseMask":1,"position_x":74.7522,"position_y":-275.849,"position_z":91.6503,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87749,"id":175124,"map":229,"orientation":1.98967,"phaseMask":1,"position_x":75.1779,"position_y":-292.906,"position_z":91.4446,"rotation0":0,"rotation1":0,"rotation2":0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87750,"id":175124,"map":229,"orientation":-0.785397,"phaseMask":1,"position_x":76.2422,"position_y":-277.381,"position_z":91.4738,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87751,"id":175124,"map":229,"orientation":0.767944,"phaseMask":1,"position_x":76.6499,"position_y":-263.575,"position_z":91.4803,"rotation0":0,"rotation1":0,"rotation2":0.374606,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87752,"id":175124,"map":229,"orientation":2.32129,"phaseMask":1,"position_x":76.8647,"position_y":-275.632,"position_z":91.4778,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87753,"id":175124,"map":229,"orientation":-1.25664,"phaseMask":1,"position_x":77.2751,"position_y":-262.143,"position_z":91.4799,"rotation0":0,"rotation1":0,"rotation2":-0.587786,"rotation3":0.809016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87754,"id":175124,"map":229,"orientation":-0.087266,"phaseMask":1,"position_x":77.4822,"position_y":-292.28,"position_z":91.447,"rotation0":0,"rotation1":0,"rotation2":-0.0436192,"rotation3":0.999048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87755,"id":175124,"map":229,"orientation":-1.11701,"phaseMask":1,"position_x":77.7013,"position_y":-295.117,"position_z":91.4437,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87756,"id":175124,"map":229,"orientation":2.00713,"phaseMask":1,"position_x":78.59,"position_y":-266.496,"position_z":91.4746,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87757,"id":175124,"map":229,"orientation":-2.33874,"phaseMask":1,"position_x":79.0012,"position_y":-331.653,"position_z":91.471,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87758,"id":175124,"map":229,"orientation":-0.541051,"phaseMask":1,"position_x":79.072,"position_y":-328.433,"position_z":91.4529,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87759,"id":175124,"map":229,"orientation":-2.1293,"phaseMask":1,"position_x":79.2062,"position_y":-262.497,"position_z":91.4758,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87760,"id":175124,"map":229,"orientation":-0.174532,"phaseMask":1,"position_x":79.5689,"position_y":-291.474,"position_z":91.4493,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87761,"id":175124,"map":229,"orientation":1.6057,"phaseMask":1,"position_x":79.7866,"position_y":-325.953,"position_z":91.4456,"rotation0":0,"rotation1":0,"rotation2":0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87762,"id":175124,"map":229,"orientation":-0.855211,"phaseMask":1,"position_x":80.4842,"position_y":-316.636,"position_z":91.438,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87763,"id":175124,"map":229,"orientation":-2.14675,"phaseMask":1,"position_x":80.7881,"position_y":-253.589,"position_z":91.4755,"rotation0":0,"rotation1":0,"rotation2":-0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87764,"id":175124,"map":229,"orientation":-2.09439,"phaseMask":1,"position_x":80.9162,"position_y":-328.544,"position_z":91.4511,"rotation0":0,"rotation1":0,"rotation2":-0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87765,"id":175124,"map":229,"orientation":-2.51327,"phaseMask":1,"position_x":81.0063,"position_y":-332.454,"position_z":91.4814,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87766,"id":175124,"map":229,"orientation":2.75761,"phaseMask":1,"position_x":81.0104,"position_y":-264.958,"position_z":91.4705,"rotation0":0,"rotation1":0,"rotation2":0.981626,"rotation3":0.190814,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87767,"id":175124,"map":229,"orientation":-1.02974,"phaseMask":1,"position_x":81.0718,"position_y":-330.129,"position_z":91.4551,"rotation0":0,"rotation1":0,"rotation2":-0.492422,"rotation3":0.870357,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87768,"id":175124,"map":229,"orientation":2.46091,"phaseMask":1,"position_x":81.7656,"position_y":-326.14,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.942641,"rotation3":0.333809,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87769,"id":175124,"map":229,"orientation":0.174532,"phaseMask":1,"position_x":81.8175,"position_y":-317.4,"position_z":91.4399,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87770,"id":175124,"map":229,"orientation":-1.50098,"phaseMask":1,"position_x":81.9745,"position_y":-335.984,"position_z":91.5223,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87771,"id":175124,"map":229,"orientation":-1.69297,"phaseMask":1,"position_x":82.0751,"position_y":-251.81,"position_z":91.4727,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87772,"id":175124,"map":229,"orientation":1.71042,"phaseMask":1,"position_x":82.5312,"position_y":-315.925,"position_z":91.4361,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87773,"id":175124,"map":229,"orientation":-3.01941,"phaseMask":1,"position_x":82.7643,"position_y":-267.748,"position_z":91.4651,"rotation0":0,"rotation1":0,"rotation2":-0.998134,"rotation3":0.0610534,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87774,"id":175124,"map":229,"orientation":0.698132,"phaseMask":1,"position_x":82.9415,"position_y":-330.608,"position_z":91.4542,"rotation0":0,"rotation1":0,"rotation2":0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87775,"id":175124,"map":229,"orientation":-1.64061,"phaseMask":1,"position_x":82.9601,"position_y":-249.989,"position_z":91.4709,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87776,"id":175124,"map":229,"orientation":-0.209439,"phaseMask":1,"position_x":83.0306,"position_y":-333.103,"position_z":91.4893,"rotation0":0,"rotation1":0,"rotation2":-0.104528,"rotation3":0.994522,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87777,"id":175124,"map":229,"orientation":-0.296705,"phaseMask":1,"position_x":83.2161,"position_y":-327.69,"position_z":91.4462,"rotation0":0,"rotation1":0,"rotation2":-0.147809,"rotation3":0.989016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87778,"id":175124,"map":229,"orientation":1.95477,"phaseMask":1,"position_x":83.6532,"position_y":-252.415,"position_z":91.4694,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87779,"id":175124,"map":229,"orientation":-2.96704,"phaseMask":1,"position_x":83.9509,"position_y":-325.865,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.996194,"rotation3":0.0871655,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87780,"id":175124,"map":229,"orientation":-0.541051,"phaseMask":1,"position_x":83.9541,"position_y":-315.109,"position_z":91.4341,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87781,"id":175124,"map":229,"orientation":-2.87979,"phaseMask":1,"position_x":84.112,"position_y":-268.795,"position_z":91.4617,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87782,"id":175124,"map":229,"orientation":1.78023,"phaseMask":1,"position_x":84.5061,"position_y":-248.377,"position_z":91.4676,"rotation0":0,"rotation1":0,"rotation2":0.777144,"rotation3":0.629323,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87783,"id":175124,"map":229,"orientation":0.157079,"phaseMask":1,"position_x":84.6573,"position_y":-301.761,"position_z":91.4432,"rotation0":0,"rotation1":0,"rotation2":0.0784588,"rotation3":0.996917,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87784,"id":175124,"map":229,"orientation":1.309,"phaseMask":1,"position_x":85.5635,"position_y":-293.523,"position_z":91.4479,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87785,"id":175124,"map":229,"orientation":-2.07694,"phaseMask":1,"position_x":85.6677,"position_y":-314.024,"position_z":91.436,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87786,"id":175124,"map":229,"orientation":2.77507,"phaseMask":1,"position_x":85.834,"position_y":-295.414,"position_z":91.4477,"rotation0":0,"rotation1":0,"rotation2":0.983255,"rotation3":0.182237,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87787,"id":175124,"map":229,"orientation":-2.93214,"phaseMask":1,"position_x":85.9751,"position_y":-250.81,"position_z":91.4645,"rotation0":0,"rotation1":0,"rotation2":-0.994521,"rotation3":0.104535,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87788,"id":175124,"map":229,"orientation":0.767944,"phaseMask":1,"position_x":86.1129,"position_y":-302.506,"position_z":91.4437,"rotation0":0,"rotation1":0,"rotation2":0.374606,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87789,"id":175124,"map":229,"orientation":1.81514,"phaseMask":1,"position_x":86.3671,"position_y":-246.965,"position_z":91.4637,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87790,"id":175124,"map":229,"orientation":-0.942477,"phaseMask":1,"position_x":87.2261,"position_y":-252.472,"position_z":91.4619,"rotation0":0,"rotation1":0,"rotation2":-0.45399,"rotation3":0.891007,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87791,"id":175124,"map":229,"orientation":0.034906,"phaseMask":1,"position_x":87.2811,"position_y":-254.392,"position_z":91.4618,"rotation0":0,"rotation1":0,"rotation2":0.0174521,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87792,"id":175124,"map":229,"orientation":-2.56563,"phaseMask":1,"position_x":87.411,"position_y":-278.121,"position_z":91.4532,"rotation0":0,"rotation1":0,"rotation2":-0.958819,"rotation3":0.284017,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87793,"id":175124,"map":229,"orientation":3.01941,"phaseMask":1,"position_x":87.8127,"position_y":-314.716,"position_z":91.4443,"rotation0":0,"rotation1":0,"rotation2":0.998134,"rotation3":0.0610534,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87794,"id":175124,"map":229,"orientation":-1.79769,"phaseMask":1,"position_x":87.8612,"position_y":-303.152,"position_z":91.4444,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622514,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87795,"id":175124,"map":229,"orientation":-2.70526,"phaseMask":1,"position_x":87.9231,"position_y":-280.001,"position_z":91.4471,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87796,"id":175124,"map":229,"orientation":1.43117,"phaseMask":1,"position_x":88.0984,"position_y":-333.163,"position_z":91.4844,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87797,"id":175124,"map":229,"orientation":2.28638,"phaseMask":1,"position_x":88.3432,"position_y":-248.339,"position_z":91.4596,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87798,"id":175124,"map":229,"orientation":0.366518,"phaseMask":1,"position_x":88.6913,"position_y":-301.07,"position_z":91.4447,"rotation0":0,"rotation1":0,"rotation2":0.182235,"rotation3":0.983255,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87799,"id":175124,"map":229,"orientation":-0.698132,"phaseMask":1,"position_x":88.8089,"position_y":-316.134,"position_z":91.4447,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87800,"id":175124,"map":229,"orientation":2.94959,"phaseMask":1,"position_x":89.0041,"position_y":-251.208,"position_z":91.4582,"rotation0":0,"rotation1":0,"rotation2":0.995395,"rotation3":0.0958539,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87801,"id":175124,"map":229,"orientation":1.53589,"phaseMask":1,"position_x":89.0992,"position_y":-290.133,"position_z":91.4463,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87802,"id":175124,"map":229,"orientation":0.541051,"phaseMask":1,"position_x":89.9268,"position_y":-301.831,"position_z":91.4451,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.963631,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87803,"id":175124,"map":229,"orientation":-0.872664,"phaseMask":1,"position_x":89.9589,"position_y":-318.159,"position_z":91.4443,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87804,"id":175124,"map":229,"orientation":2.61799,"phaseMask":1,"position_x":90.3071,"position_y":-332.646,"position_z":91.4737,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87805,"id":175124,"map":229,"orientation":1.20428,"phaseMask":1,"position_x":90.5754,"position_y":-320.019,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87806,"id":175124,"map":229,"orientation":-3.08918,"phaseMask":1,"position_x":91.8307,"position_y":-291.349,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0262033,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87807,"id":175124,"map":229,"orientation":0.733038,"phaseMask":1,"position_x":91.8609,"position_y":-301.935,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87808,"id":175124,"map":229,"orientation":0.453785,"phaseMask":1,"position_x":92.1155,"position_y":-334.861,"position_z":91.5066,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87809,"id":175124,"map":229,"orientation":-1.67551,"phaseMask":1,"position_x":92.1251,"position_y":-279.851,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.743143,"rotation3":0.669133,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87810,"id":175124,"map":229,"orientation":0.436332,"phaseMask":1,"position_x":92.6002,"position_y":-288.176,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87811,"id":175124,"map":229,"orientation":2.44346,"phaseMask":1,"position_x":92.6442,"position_y":-304.447,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.342021,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87812,"id":175124,"map":229,"orientation":-0.750491,"phaseMask":1,"position_x":93.6733,"position_y":-290.12,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.366501,"rotation3":0.930418,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87813,"id":175124,"map":229,"orientation":1.02974,"phaseMask":1,"position_x":93.8115,"position_y":-305.536,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.492422,"rotation3":0.870357,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87814,"id":175124,"map":229,"orientation":2.35619,"phaseMask":1,"position_x":93.8904,"position_y":-288.281,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87815,"id":175124,"map":229,"orientation":2.51327,"phaseMask":1,"position_x":94.5641,"position_y":-281.093,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87816,"id":175124,"map":229,"orientation":2.96704,"phaseMask":1,"position_x":94.9171,"position_y":-288.644,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.0871655,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87817,"id":175124,"map":229,"orientation":0.855211,"phaseMask":1,"position_x":95.4615,"position_y":-313.584,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87818,"id":175124,"map":229,"orientation":1.71042,"phaseMask":1,"position_x":96.0628,"position_y":-287.47,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87819,"id":175124,"map":229,"orientation":0.139624,"phaseMask":1,"position_x":96.3418,"position_y":-280.518,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.0697553,"rotation3":0.997564,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87820,"id":175124,"map":229,"orientation":-1.27409,"phaseMask":1,"position_x":97.1258,"position_y":-281.949,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.594823,"rotation3":0.803857,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87821,"id":175124,"map":229,"orientation":-3.03684,"phaseMask":1,"position_x":97.1963,"position_y":-310.891,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523524,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87822,"id":175124,"map":229,"orientation":2.67035,"phaseMask":1,"position_x":97.3405,"position_y":-313.43,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87823,"id":175124,"map":229,"orientation":-1.01229,"phaseMask":1,"position_x":98.8559,"position_y":-313.049,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87824,"id":175194,"map":229,"orientation":0,"phaseMask":1,"position_x":192.74,"position_y":-258.394,"position_z":76.8603,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87825,"id":175195,"map":229,"orientation":0.785397,"phaseMask":1,"position_x":124.779,"position_y":-298.037,"position_z":70.8526,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87826,"id":175196,"map":229,"orientation":-1.5708,"phaseMask":1,"position_x":228.803,"position_y":-301.542,"position_z":76.8812,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87827,"id":175197,"map":229,"orientation":2.35619,"phaseMask":1,"position_x":125.358,"position_y":-340.465,"position_z":70.8752,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87828,"id":175198,"map":229,"orientation":-2.35619,"phaseMask":1,"position_x":215.157,"position_y":-334.733,"position_z":76.8124,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87829,"id":175199,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":155.334,"position_y":-353.045,"position_z":70.8337,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87830,"id":175200,"map":229,"orientation":0,"phaseMask":1,"position_x":155.321,"position_y":-286.074,"position_z":70.8763,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87831,"id":175266,"map":229,"orientation":0,"phaseMask":1,"position_x":144.375,"position_y":-240.826,"position_z":91.4713,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87832,"id":175267,"map":229,"orientation":0,"phaseMask":1,"position_x":126.354,"position_y":-240.77,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87833,"id":175268,"map":229,"orientation":0,"phaseMask":1,"position_x":162.466,"position_y":-240.765,"position_z":91.4688,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87834,"id":175269,"map":229,"orientation":0,"phaseMask":1,"position_x":126.295,"position_y":-258.732,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87835,"id":175270,"map":229,"orientation":0,"phaseMask":1,"position_x":162.443,"position_y":-258.904,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87836,"id":175271,"map":229,"orientation":0,"phaseMask":1,"position_x":126.402,"position_y":-276.79,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87837,"id":175272,"map":229,"orientation":0,"phaseMask":1,"position_x":162.401,"position_y":-276.824,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87838,"id":175706,"map":229,"orientation":1.58825,"phaseMask":1,"position_x":144.445,"position_y":-280.941,"position_z":91.5476,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87839,"id":175244,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":216.443,"position_y":-286.135,"position_z":76.9406,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87840,"id":175187,"map":229,"orientation":0,"phaseMask":1,"position_x":144.37,"position_y":-299.198,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87841,"id":175153,"map":229,"orientation":0,"phaseMask":1,"position_x":113.751,"position_y":-258.945,"position_z":91.5603,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87842,"id":175705,"map":229,"orientation":0,"phaseMask":1,"position_x":175.127,"position_y":-258.945,"position_z":91.5603,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87843,"id":175185,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":194.235,"position_y":-420.225,"position_z":110.761,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87844,"id":175186,"map":229,"orientation":-1.5708,"phaseMask":1,"position_x":92.9595,"position_y":-435.59,"position_z":110.954,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87845,"id":164726,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":108.036,"position_y":-420.331,"position_z":110.954,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87846,"id":175382,"map":229,"orientation":-0.0349063,"phaseMask":1,"position_x":67.1283,"position_y":-297.421,"position_z":91.4255,"rotation0":0,"rotation1":0,"rotation2":-0.0174523,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87847,"id":175385,"map":229,"orientation":0.0698117,"phaseMask":1,"position_x":65.4179,"position_y":-280.416,"position_z":94.0465,"rotation0":0,"rotation1":0,"rotation2":0.0348988,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87848,"id":175528,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":100.257,"position_y":-313.14,"position_z":66.5453,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87849,"id":175529,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":100.257,"position_y":-324.88,"position_z":66.5453,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87850,"id":175530,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":110.215,"position_y":-324.88,"position_z":68.0355,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87851,"id":175531,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":110.215,"position_y":-313.14,"position_z":68.0355,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87852,"id":175532,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":120.462,"position_y":-324.88,"position_z":73.5331,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87853,"id":175533,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":120.462,"position_y":-313.14,"position_z":73.5331,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87854,"id":175946,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":45.1933,"position_y":-259.712,"position_z":106.533,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87855,"id":175947,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":45.1933,"position_y":-312.52,"position_z":106.533,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87856,"id":175970,"map":229,"orientation":-1.64933,"phaseMask":1,"position_x":147.228,"position_y":-240.436,"position_z":112.205,"rotation0":0,"rotation1":0,"rotation2":-0.73432,"rotation3":0.678803,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87857,"id":176447,"map":229,"orientation":3.14444,"phaseMask":1,"position_x":35.2499,"position_y":-505.634,"position_z":110.914,"rotation0":0.00822973,"rotation1":-0.0190172,"rotation2":-0.999784,"rotation3":0.00126859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87858,"id":176448,"map":229,"orientation":1.57142,"phaseMask":1,"position_x":31.283,"position_y":-505.634,"position_z":110.914,"rotation0":0.00762796,"rotation1":0.0192661,"rotation2":0.707066,"rotation3":0.706844,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87859,"id":176449,"map":229,"orientation":6.02201,"phaseMask":1,"position_x":27.4453,"position_y":-505.634,"position_z":110.914,"rotation0":0.0199299,"rotation1":0.00567627,"rotation2":-0.130342,"rotation3":0.991252,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87860,"id":176450,"map":229,"orientation":4.71302,"phaseMask":1,"position_x":21.5668,"position_y":-506.581,"position_z":110.914,"rotation0":0.0192666,"rotation1":-0.00762749,"rotation2":-0.706843,"rotation3":0.707067,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87861,"id":176451,"map":229,"orientation":3.14444,"phaseMask":1,"position_x":18.0824,"position_y":-505.634,"position_z":110.914,"rotation0":0.00822973,"rotation1":-0.0190172,"rotation2":-0.999784,"rotation3":0.00126859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87862,"id":176452,"map":229,"orientation":3.92762,"phaseMask":1,"position_x":24.542,"position_y":-504.736,"position_z":110.914,"rotation0":0.0148807,"rotation1":-0.0144205,"rotation2":-0.92362,"rotation3":0.382748,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87863,"id":136950,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":72.8373,"position_y":-265.63,"position_z":60.7365,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87864,"id":136952,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":69.9731,"position_y":-329.868,"position_z":55.8721,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87865,"id":136955,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":56.3641,"position_y":-306.158,"position_z":54.0157,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87866,"id":176459,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":68.6479,"position_y":-270.903,"position_z":60.7375,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87867,"id":176460,"map":229,"orientation":3.12412,"phaseMask":1,"position_x":70.5435,"position_y":-257.169,"position_z":60.7401,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87868,"id":176461,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":69.3254,"position_y":-265.102,"position_z":60.6044,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87869,"id":176462,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":90.4803,"position_y":-283.217,"position_z":60.7002,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87870,"id":176463,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":91.6333,"position_y":-262.053,"position_z":60.7002,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87871,"id":136922,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":88.2152,"position_y":-415.1,"position_z":110.957,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87872,"id":136923,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":87.4498,"position_y":-468.454,"position_z":116.887,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87873,"id":136925,"map":229,"orientation":1.74533,"phaseMask":1,"position_x":40.7229,"position_y":-586.71,"position_z":30.6817,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87874,"id":136926,"map":229,"orientation":1.74533,"phaseMask":1,"position_x":43.3149,"position_y":-572.476,"position_z":30.6817,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87875,"id":136927,"map":229,"orientation":1.74533,"phaseMask":1,"position_x":4.75705,"position_y":-567.073,"position_z":29.2222,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87876,"id":136928,"map":229,"orientation":1.74533,"phaseMask":1,"position_x":8.39204,"position_y":-583.677,"position_z":29.2222,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87877,"id":136929,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":152.587,"position_y":-396.408,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87878,"id":136930,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":147.161,"position_y":-389.954,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":87879,"id":136931,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":149.676,"position_y":-386.148,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87880,"id":136932,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":157.778,"position_y":-389.954,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87881,"id":136933,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":150.609,"position_y":-396.408,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87882,"id":136934,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":155.816,"position_y":-390.035,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87883,"id":136935,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":145.176,"position_y":-390.035,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":87884,"id":136936,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":153.36,"position_y":-386.169,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":87885,"id":136937,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":149.569,"position_y":-454.687,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":87886,"id":136938,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":153.253,"position_y":-454.707,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87887,"id":136939,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":157.753,"position_y":-450.158,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87888,"id":136940,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":155.768,"position_y":-450.239,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87889,"id":136941,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":152.32,"position_y":-444.305,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87890,"id":136942,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":150.342,"position_y":-444.305,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87891,"id":136943,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":147.113,"position_y":-450.158,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87892,"id":136944,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":145.151,"position_y":-450.239,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87893,"id":136945,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-174.134,"position_y":-342.773,"position_z":64.3939,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87894,"id":136946,"map":229,"orientation":4.67748,"phaseMask":1,"position_x":-172.352,"position_y":-462.842,"position_z":87.3983,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87895,"id":136947,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":16.9937,"position_y":-253.821,"position_z":65.4498,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87896,"id":136948,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":8.17041,"position_y":-268.98,"position_z":65.4498,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87897,"id":136949,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":51.2451,"position_y":-274.133,"position_z":65.4498,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87898,"id":136951,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":68.8802,"position_y":-283.794,"position_z":60.7365,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87899,"id":136954,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":16.1674,"position_y":-280.865,"position_z":9.61726,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87900,"id":136957,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":117.454,"position_y":-254.291,"position_z":91.5711,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87901,"id":136959,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":125.656,"position_y":-280.808,"position_z":91.5711,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87902,"id":136961,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":46.4689,"position_y":-309.649,"position_z":91.5711,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":87903,"id":136962,"map":229,"orientation":4.81711,"phaseMask":1,"position_x":106.177,"position_y":-265.953,"position_z":91.5711,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87904,"id":136963,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":107.69,"position_y":-253.095,"position_z":91.5711,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87905,"id":136964,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":82.5879,"position_y":-364.586,"position_z":116.859,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87906,"id":153464,"map":229,"orientation":1.97222,"phaseMask":1,"position_x":-36.1176,"position_y":-583.828,"position_z":-18.8201,"rotation0":0,"rotation1":0,"rotation2":0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87907,"id":153469,"map":229,"orientation":-3.08918,"phaseMask":1,"position_x":-73.9985,"position_y":-453.335,"position_z":-18.935,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0262033,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87908,"id":153469,"map":229,"orientation":1.91986,"phaseMask":1,"position_x":-84.2677,"position_y":-350.104,"position_z":70.9524,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87909,"id":153469,"map":229,"orientation":2.63544,"phaseMask":1,"position_x":86.8551,"position_y":-587.501,"position_z":30.6085,"rotation0":0,"rotation1":0,"rotation2":0.968147,"rotation3":0.250383,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87910,"id":164725,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":126.879,"position_y":-319.109,"position_z":70.935,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87911,"id":175334,"map":229,"orientation":-1.53589,"phaseMask":1,"position_x":33.7166,"position_y":-466.067,"position_z":-18.4651,"rotation0":0,"rotation1":0,"rotation2":-0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87913,"id":175588,"map":229,"orientation":-2.426,"phaseMask":1,"position_x":-139.523,"position_y":-525.879,"position_z":6.36398,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.350211,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87914,"id":175606,"map":229,"orientation":-0.436332,"phaseMask":1,"position_x":-100.23,"position_y":-529.537,"position_z":-5.77381,"rotation0":0,"rotation1":0,"rotation2":-0.216439,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87915,"id":175606,"map":229,"orientation":2.11185,"phaseMask":1,"position_x":-100.325,"position_y":-523.847,"position_z":10.7029,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87916,"id":175606,"map":229,"orientation":-0.0349063,"phaseMask":1,"position_x":-101.886,"position_y":-521.985,"position_z":-7.84199,"rotation0":0,"rotation1":0,"rotation2":-0.0174523,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87917,"id":175606,"map":229,"orientation":2.47837,"phaseMask":1,"position_x":-102.465,"position_y":-575.651,"position_z":9.90089,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87918,"id":175606,"map":229,"orientation":2.18166,"phaseMask":1,"position_x":-112.21,"position_y":-569.506,"position_z":10.1992,"rotation0":0,"rotation1":0,"rotation2":0.88701,"rotation3":0.461749,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87919,"id":175606,"map":229,"orientation":-0.296705,"phaseMask":1,"position_x":-125.229,"position_y":-576.664,"position_z":13.7726,"rotation0":0,"rotation1":0,"rotation2":-0.147809,"rotation3":0.989016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87920,"id":175606,"map":229,"orientation":3.10665,"phaseMask":1,"position_x":-126.746,"position_y":-514.164,"position_z":-12.147,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174704,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87921,"id":175606,"map":229,"orientation":0.977383,"phaseMask":1,"position_x":-129.514,"position_y":-441.7,"position_z":24.4328,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87922,"id":175606,"map":229,"orientation":-1.13446,"phaseMask":1,"position_x":-131.57,"position_y":-439.602,"position_z":22.8934,"rotation0":0,"rotation1":0,"rotation2":-0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87923,"id":175606,"map":229,"orientation":-2.28638,"phaseMask":1,"position_x":-131.805,"position_y":-526.784,"position_z":6.55651,"rotation0":0,"rotation1":0,"rotation2":-0.909961,"rotation3":0.414694,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87924,"id":175606,"map":229,"orientation":-2.82743,"phaseMask":1,"position_x":-132.261,"position_y":-474.848,"position_z":9.82244,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87925,"id":175606,"map":229,"orientation":-1.79769,"phaseMask":1,"position_x":-132.404,"position_y":-514.961,"position_z":-15.9374,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622514,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87926,"id":175606,"map":229,"orientation":1.76278,"phaseMask":1,"position_x":-138.894,"position_y":-439.497,"position_z":24.8088,"rotation0":0,"rotation1":0,"rotation2":0.771624,"rotation3":0.636079,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87927,"id":175606,"map":229,"orientation":-2.74016,"phaseMask":1,"position_x":-139.153,"position_y":-434.738,"position_z":23.1123,"rotation0":0,"rotation1":0,"rotation2":-0.979924,"rotation3":0.199371,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87928,"id":175606,"map":229,"orientation":0.331611,"phaseMask":1,"position_x":-144.505,"position_y":-441.603,"position_z":23.1016,"rotation0":0,"rotation1":0,"rotation2":0.165047,"rotation3":0.986286,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87929,"id":175606,"map":229,"orientation":-0.802851,"phaseMask":1,"position_x":-146.907,"position_y":-441.463,"position_z":22.4744,"rotation0":0,"rotation1":0,"rotation2":-0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87930,"id":175606,"map":229,"orientation":1.32645,"phaseMask":1,"position_x":-147.881,"position_y":-448.549,"position_z":20.0911,"rotation0":0,"rotation1":0,"rotation2":0.615661,"rotation3":0.788011,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87931,"id":175606,"map":229,"orientation":1.76278,"phaseMask":1,"position_x":-150.104,"position_y":-470.008,"position_z":16.2278,"rotation0":0,"rotation1":0,"rotation2":0.771624,"rotation3":0.636079,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87932,"id":175606,"map":229,"orientation":-0.95993,"phaseMask":1,"position_x":-153.788,"position_y":-515.227,"position_z":-15.9504,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87933,"id":175606,"map":229,"orientation":-2.05949,"phaseMask":1,"position_x":-154.378,"position_y":-552.234,"position_z":9.91885,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87934,"id":175606,"map":229,"orientation":2.04204,"phaseMask":1,"position_x":-154.592,"position_y":-525.219,"position_z":8.16182,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87935,"id":175606,"map":229,"orientation":-0.104719,"phaseMask":1,"position_x":-154.77,"position_y":-541.317,"position_z":9.02217,"rotation0":0,"rotation1":0,"rotation2":-0.0523356,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87936,"id":175606,"map":229,"orientation":2.47837,"phaseMask":1,"position_x":-154.889,"position_y":-570.339,"position_z":10.0172,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87937,"id":175607,"map":229,"orientation":-2.26893,"phaseMask":1,"position_x":20.4895,"position_y":-438.857,"position_z":-18.7827,"rotation0":0,"rotation1":0,"rotation2":-0.906308,"rotation3":0.422617,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87938,"id":175608,"map":229,"orientation":1.43117,"phaseMask":1,"position_x":23.8203,"position_y":-440.806,"position_z":-18.7587,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87939,"id":175609,"map":229,"orientation":1.0821,"phaseMask":1,"position_x":20.9914,"position_y":-443.119,"position_z":-18.9183,"rotation0":0,"rotation1":0,"rotation2":0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87940,"id":175609,"map":229,"orientation":2.11185,"phaseMask":1,"position_x":23.7352,"position_y":-445.173,"position_z":-18.935,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87941,"id":175609,"map":229,"orientation":-2.75761,"phaseMask":1,"position_x":25.9651,"position_y":-443.545,"position_z":-18.9203,"rotation0":0,"rotation1":0,"rotation2":-0.981626,"rotation3":0.190814,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87942,"id":175886,"map":229,"orientation":-0.593412,"phaseMask":1,"position_x":-34.5386,"position_y":-589.635,"position_z":30.9964,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87943,"id":175886,"map":229,"orientation":1.62316,"phaseMask":1,"position_x":-34.7324,"position_y":-589.615,"position_z":30.9339,"rotation0":0,"rotation1":0,"rotation2":0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87944,"id":175886,"map":229,"orientation":-1.97222,"phaseMask":1,"position_x":-35.6387,"position_y":-589.632,"position_z":30.9825,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87945,"id":175886,"map":229,"orientation":1.09956,"phaseMask":1,"position_x":-36.2977,"position_y":-589.617,"position_z":31.0103,"rotation0":0,"rotation1":0,"rotation2":0.5225,"rotation3":0.852639,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87946,"id":175886,"map":229,"orientation":-3.08918,"phaseMask":1,"position_x":-37.7856,"position_y":-589.639,"position_z":30.9964,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0262033,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87947,"id":175949,"map":229,"orientation":-0.0174525,"phaseMask":1,"position_x":-128.234,"position_y":-482.381,"position_z":25.4535,"rotation0":0,"rotation1":0,"rotation2":-0.00872614,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87948,"id":175950,"map":229,"orientation":-1.55334,"phaseMask":1,"position_x":-11.1345,"position_y":-466.205,"position_z":-16.8553,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87949,"id":176089,"map":229,"orientation":2.51327,"phaseMask":1,"position_x":-18.8626,"position_y":-360.394,"position_z":-31.4268,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87950,"id":176090,"map":229,"orientation":-0.349065,"phaseMask":1,"position_x":-19.0726,"position_y":-361.991,"position_z":-31.5237,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87951,"id":176425,"map":229,"orientation":3.14444,"phaseMask":1,"position_x":60.0724,"position_y":-511.967,"position_z":29.2143,"rotation0":0.00822973,"rotation1":-0.0190172,"rotation2":-0.999784,"rotation3":0.00126859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87952,"id":176426,"map":229,"orientation":3.14444,"phaseMask":1,"position_x":56.9335,"position_y":-556.048,"position_z":30.6604,"rotation0":0.00822973,"rotation1":-0.0190172,"rotation2":-0.999784,"rotation3":0.00126859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87953,"id":176427,"map":229,"orientation":3.14169,"phaseMask":1,"position_x":53.1921,"position_y":-461.07,"position_z":24.3897,"rotation0":0.0295649,"rotation1":-0.0015707,"rotation2":-0.999561,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87954,"id":176428,"map":229,"orientation":3.14169,"phaseMask":1,"position_x":-63.2568,"position_y":-581.483,"position_z":29.2934,"rotation0":0.0295649,"rotation1":-0.0015707,"rotation2":-0.999561,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87955,"id":176429,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-37.6863,"position_y":-551.822,"position_z":16.2163,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87956,"id":176430,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-25.3349,"position_y":-478.438,"position_z":17.2504,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87957,"id":176431,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-46.3865,"position_y":-448.61,"position_z":-18.5644,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87958,"id":176432,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-2.64242,"position_y":-579.144,"position_z":-18.7609,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87959,"id":176433,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":26.982,"position_y":-583.365,"position_z":-18.5153,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87960,"id":176434,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":35.6424,"position_y":-550.73,"position_z":-18.411,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87961,"id":176435,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":33.1643,"position_y":-471.047,"position_z":-18.5059,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87962,"id":176436,"map":229,"orientation":3.14444,"phaseMask":1,"position_x":31.9839,"position_y":-495.349,"position_z":-18.8984,"rotation0":0.00822973,"rotation1":-0.0190172,"rotation2":-0.999784,"rotation3":0.00126859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87963,"id":176437,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-39.3852,"position_y":-424.878,"position_z":-18.8471,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87964,"id":176438,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-23.2051,"position_y":-410.609,"position_z":-18.8984,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87965,"id":176439,"map":229,"orientation":4.45059,"phaseMask":1,"position_x":-76.0975,"position_y":-418.801,"position_z":-18.9234,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608763,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87966,"id":176440,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-59.9712,"position_y":-409.641,"position_z":-18.8443,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87967,"id":176441,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-79.5309,"position_y":-453.927,"position_z":-18.8332,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87968,"id":176442,"map":229,"orientation":3.14085,"phaseMask":1,"position_x":-15.4378,"position_y":-368.781,"position_z":49.4936,"rotation0":-0.0333757,"rotation1":-0.0110826,"rotation2":0.999381,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87969,"id":176443,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-121.137,"position_y":-296.445,"position_z":71.0397,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87970,"id":176444,"map":229,"orientation":4.45059,"phaseMask":1,"position_x":-137.264,"position_y":-305.605,"position_z":70.9606,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608763,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87971,"id":176445,"map":229,"orientation":4.45059,"phaseMask":1,"position_x":-59.1198,"position_y":-339.829,"position_z":70.9606,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608763,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87972,"id":176446,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-87.3357,"position_y":-348.37,"position_z":71.0397,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87973,"id":176454,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":60.5715,"position_y":-562.501,"position_z":30.4811,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87974,"id":176455,"map":229,"orientation":3.14148,"phaseMask":1,"position_x":52.2037,"position_y":-470.448,"position_z":25.1121,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.0000563423,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87975,"id":176456,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-60.6476,"position_y":-584.383,"position_z":29.1115,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87976,"id":176457,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-115.273,"position_y":-428.518,"position_z":-18.701,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87977,"id":176458,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-114.982,"position_y":-421.897,"position_z":-18.9179,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99791,"id":175621,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-14.3501,"position_y":-395.828,"position_z":48.5065,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99901,"id":181046,"map":229,"orientation":0,"phaseMask":1,"position_x":-23.97,"position_y":-451.98,"position_z":-18.64,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99905,"id":181050,"map":229,"orientation":0,"phaseMask":1,"position_x":25.92,"position_y":-537.7,"position_z":110.93,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268876,"id":181052,"map":229,"orientation":0,"phaseMask":1,"position_x":-23.97,"position_y":-451.98,"position_z":-18.64,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/BlackRockSpire":"1983f20190aa7a047fb7e111725ea9a9994ef3b481d3abc4076154161192d1a1","patch/World/maps/BlackRockSpire":"49cdff8464b5b8677e7449e95982a2e3118fc211195152b874bd5c7283ff0cfa"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/blackrock-spire/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["78/78 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"blackrock-depths","title":"Blackrock Depths","mapId":230,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[50,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Blackrock Depths","theme":"Instanced dungeon","summary":"Fight through Blackrock Depths, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Blackrock Depths...","unchartedAreaName":"Uncharted Blackrock Depths","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1295.9718},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/230-blackrockdepths/visual.glb","checksum":"42d57961c31f54ecc7bc78829751110fc89294e6318336b8f260e132e478d13d","size":10266900,"triangleCount":248302}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/230-blackrockdepths/collision.glb","checksum":"78fb36852edfa10dbc7405ec3f2f02be825381114014919aa186972b976112e3","size":1657076,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/230-blackrockdepths/navigation.glb","checksum":"5aecda48e63b281d3841d604b7dfc2ae3ff4c45385b0c030fccfeeb48e1c1bda","size":575024,"triangleCount":46606}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-2051.4095,-138.4171,-1286.7939],"max":[-251.4486,-12.1419,-85.6484]},"entrance":{"name":"Blackrock Depths Entrance","footPosition":[-986.2485,-66.1647,-376.0566],"forward":[0.8638313690436978,0,0.5037810693705062],"yaw":1.0428260177743554},"areas":[{"id":"entrance","name":"Blackrock Depths Entrance","center":[-986.2485,-66.1647,-376.0566],"radius":35},{"id":"area-high-interrogator-gerstahn","name":"High Interrogator Gerstahn's Encounter","center":[-839.8775,-68.378,-556.3999],"radius":42},{"id":"area-lord-roccor","name":"Lord Roccor's Encounter","center":[-1144.8415,-81.6658,-677.5459],"radius":42},{"id":"area-houndmaster-grebmar","name":"Houndmaster Grebmar's Encounter","center":[-1136.9905,-82.5615,-584.9169],"radius":42},{"id":"area-pyromancer-loregrain","name":"Pyromancer Loregrain's Encounter","center":[-1059.4875,-41.0931,-654.0789],"radius":42},{"id":"area-lord-incendius","name":"Lord Incendius's Encounter","center":[-1422.8655,-69.9753,-677.2049],"radius":42},{"id":"area-warder-stilgiss","name":"Warder Stilgiss's Encounter","center":[-1352.7065,-48.1828,-752.4269],"radius":42},{"id":"area-fineous-darkvire","name":"Fineous Darkvire's Encounter","center":[-1492.5865,-69.8145,-753.8839],"radius":42},{"id":"area-bael-gar","name":"Bael'Gar's Encounter","center":[-1231.7355,-70.0631,-225.6869],"radius":42},{"id":"area-general-angerforge","name":"General Angerforge's Encounter","center":[-1181.7095,-58.0511,-388.7752],"radius":42},{"id":"area-golem-lord-argelmach","name":"Golem Lord Argelmach's Encounter","center":[-1376.1205,-51.7146,-393.8683],"radius":42},{"id":"area-ambassador-flamelash","name":"Ambassador Flamelash's Encounter","center":[-1539.0695,-59.3789,-649.1659],"radius":42},{"id":"area-magmus","name":"Magmus's Encounter","center":[-1910.0395,-90.0462,-1069.4629],"radius":42},{"id":"area-emperor-dagran-thaurissan","name":"Emperor Dagran Thaurissan's Encounter","center":[-1909.4995,-85.6651,-1241.7939],"radius":42}],"entities":{"entry-28067":{"id":"entry-28067","kind":"mob","name":"Dark Iron Brewer","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-21826-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8895":{"id":"entry-8895","kind":"mob","name":"Anvilrage Officer","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-25292","name":"Holy Light","spellId":25292,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6495,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8753-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8893":{"id":"entry-8893","kind":"mob","name":"Anvilrage Soldier","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14030","name":"Hooked Net","spellId":14030,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7437,"damageMultiplier":1.12},{"id":"spell-27991","name":"Sunder Armor","spellId":27991,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7437,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8757-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8894":{"id":"entry-8894","kind":"mob","name":"Anvilrage Medic","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8812","name":"Heal","spellId":8812,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6572,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-10961","name":"Prayer of Healing","spellId":10961,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6572,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8752-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8910":{"id":"entry-8910","kind":"mob","name":"Blazing Fireguard","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13341","name":"Fire Blast","spellId":13341,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4756,"damageMultiplier":1.12},{"id":"spell-12742","name":"Immolate","spellId":12742,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4756,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-1070-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.849,"markerRadius":1.1707}}},"entry-8892":{"id":"entry-8892","kind":"mob","name":"Anvilrage Footman","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-29560","name":"Kick","spellId":29560,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6536,"damageMultiplier":1.12},{"id":"spell-19644","name":"Strike","spellId":19644,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6536,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8718-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8921":{"id":"entry-8921","kind":"mob","name":"Bloodhound","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13692","name":"Dire Growl","spellId":13692,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7268,"damageMultiplier":1.12},{"id":"spell-13445","name":"Rend","spellId":13445,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7268,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8180-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0361,"markerRadius":0.9595}}},"entry-9016":{"id":"entry-9016","kind":"boss","name":"Bael'Gar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":52,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":7424,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-12162-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0172,"labelHeight":15.6385,"markerRadius":4.5}}},"entry-8912":{"id":"entry-8912","kind":"mob","name":"Twilight's Hammer Torturer","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14032","name":"Shadow Word: Pain","spellId":14032,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4131,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8790-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-8890":{"id":"entry-8890","kind":"mob","name":"Anvilrage Warden","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-24317","name":"Sunder Armor","spellId":24317,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4983,"damageMultiplier":1.12},{"id":"spell-19644","name":"Strike","spellId":19644,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4983,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8758-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8891":{"id":"entry-8891","kind":"mob","name":"Anvilrage Guardsman","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30901","name":"Sunder Armor","spellId":30901,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7487,"damageMultiplier":1.12},{"id":"spell-27581","name":"Disarm","spellId":27581,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7487,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8750-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8909":{"id":"entry-8909","kind":"mob","name":"Fireguard","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15242","name":"Fireball","spellId":15242,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7233,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/39572de3191c78a4573a438b4f299709d7ff1606c17e59844c7165b245fc5993.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9348,"markerRadius":0.878}}},"entry-8889":{"id":"entry-8889","kind":"mob","name":"Anvilrage Overseer","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8754-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8983":{"id":"entry-8983","kind":"boss","name":"Golem Lord Argelmach","title":"Dungeon Boss","hasLoot":true,"combat":{"level":55,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5172,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8759-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0051,"labelHeight":2.1943,"markerRadius":0.65}}},"entry-8906":{"id":"entry-8906","kind":"mob","name":"Ragereaver Golem","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8177-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.5954,"markerRadius":1.9429}}},"entry-8907":{"id":"entry-8907","kind":"mob","name":"Wrath Hammer Construct","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15575","name":"Flame Cannon","spellId":15575,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5377,"damageMultiplier":1.12},{"id":"spell-10966","name":"Uppercut","spellId":10966,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5377,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8178-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":6.7144,"markerRadius":2.3315}}},"entry-8911":{"id":"entry-8911","kind":"mob","name":"Fireguard Destroyer","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-5488-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.8113,"markerRadius":1.4634}}},"entry-8898":{"id":"entry-8898","kind":"mob","name":"Anvilrage Marshal","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17143","name":"Holy Strike","spellId":17143,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5124,"damageMultiplier":1.12},{"id":"spell-10293","name":"Devotion Aura","spellId":10293,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5124,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8751-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8899":{"id":"entry-8899","kind":"mob","name":"Doomforge Dragoon","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15620","name":"Shoot","spellId":15620,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5816,"damageMultiplier":1.12},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5816,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8820-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9033":{"id":"entry-9033","kind":"boss","name":"General Angerforge","title":"Dungeon Boss","hasLoot":true,"combat":{"level":55,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":7441,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8756-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0058,"labelHeight":2.4458,"markerRadius":0.65}}},"entry-8901":{"id":"entry-8901","kind":"mob","name":"Anvilrage Reservist","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8755-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":1.8589,"markerRadius":0.65}}},"entry-8902":{"id":"entry-8902","kind":"mob","name":"Shadowforge Citizen","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15547","name":"Shoot","spellId":15547,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6174,"damageMultiplier":1.12},{"id":"spell-40505","name":"Cleave","spellId":40505,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":6174,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8798-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8900":{"id":"entry-8900","kind":"mob","name":"Doomforge Arcanasmith","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13748","name":"Arcane Bolt","spellId":13748,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6434,"damageMultiplier":1.12},{"id":"spell-13745","name":"Arcane Explosion","spellId":13745,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6434,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8812-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8920":{"id":"entry-8920","kind":"mob","name":"Weapon Technician","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8894-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-9319":{"id":"entry-9319","kind":"boss","name":"Houndmaster Grebmar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":52,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21049","name":"Bloodlust","spellId":21049,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4032,"damageMultiplier":1.35},{"id":"spell-13730","name":"Demoralizing Shout","spellId":13730,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4032,"damageMultiplier":1.35},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4032,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9212-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8905":{"id":"entry-8905","kind":"mob","name":"Warbringer Construct","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8289-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":7.8335,"markerRadius":2.6772}}},"entry-10043":{"id":"entry-10043","kind":"mob","name":"Ribbly's Crony","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15581","name":"Sinister Strike","spellId":15581,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4901,"damageMultiplier":1.12},{"id":"spell-15692","name":"Eviscerate","spellId":15692,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4901,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9233-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0534,"labelHeight":2.7321,"markerRadius":0.6724}}},"entry-9543":{"id":"entry-9543","kind":"mob","name":"Ribbly Screwspigot","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12540","name":"Gouge","spellId":12540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6635,"damageMultiplier":1.12},{"id":"spell-9080","name":"Hamstring","spellId":9080,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8667-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-9554":{"id":"entry-9554","kind":"mob","name":"Hammered Patron","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8681-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-9545":{"id":"entry-9545","kind":"mob","name":"Grim Patron","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8673-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9547":{"id":"entry-9547","kind":"mob","name":"Guzzling Patron","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8678-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8908":{"id":"entry-8908","kind":"mob","name":"Molten War Golem","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-37628","name":"Fel Immolate","spellId":37628,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4704,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8179-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":6.7144,"markerRadius":2.2947}}},"entry-8929":{"id":"entry-8929","kind":"mob","name":"Princess Moira Bronzebeard","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15586","name":"Heal","spellId":15586,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4821,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4821,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8705-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":1.8943,"markerRadius":0.65}}},"entry-9018":{"id":"entry-9018","kind":"boss","name":"High Interrogator Gerstahn","title":"Dungeon Boss","hasLoot":true,"combat":{"level":52,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14033","name":"Mana Burn","spellId":14033,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5328,"damageMultiplier":1.35},{"id":"spell-13704","name":"Psychic Scream","spellId":13704,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5328,"damageMultiplier":1.35},{"id":"spell-14032","name":"Shadow Word: Pain","spellId":14032,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5328,"damageMultiplier":1.35},{"id":"spell-12040","name":"Shadow Shield","spellId":12040,"delivery":"area","target":"self","school":"shadow","animation":"cast","range":0,"cooldownMs":5328,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-12040","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"crocolisk","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8761-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":2.6752,"markerRadius":0.65}}},"entry-9956":{"id":"entry-9956","kind":"mob","name":"Shadowforge Flame Keeper","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4697,"damageMultiplier":1.12},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4697,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9309-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9025":{"id":"entry-9025","kind":"boss","name":"Lord Roccor","title":"Dungeon Boss","hasLoot":true,"combat":{"level":51,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5250,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-5781-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1904,"labelHeight":4.1639,"markerRadius":1.9755}}},"entry-9938":{"id":"entry-9938","kind":"boss","name":"Magmus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":56,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-15593","name":"War Stomp","spellId":15593,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4213,"damageMultiplier":0.82,"radius":11},{"id":"spell-15668","name":"Fiery Burst","spellId":15668,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4213,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-12162-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0172,"labelHeight":15.6385,"markerRadius":4.5}}},"entry-8904":{"id":"entry-8904","kind":"mob","name":"Shadowforge Senator","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15547","name":"Shoot","spellId":15547,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5638,"damageMultiplier":1.12},{"id":"spell-14034","name":"Fireball","spellId":14034,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5638,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8825-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8915":{"id":"entry-8915","kind":"mob","name":"Twilight's Hammer Ambassador","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15096","name":"Flame Shock","spellId":15096,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4486,"damageMultiplier":1.12},{"id":"spell-15499","name":"Frost Shock","spellId":15499,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4486,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8778-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-8903":{"id":"entry-8903","kind":"mob","name":"Anvilrage Captain","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8749-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9019":{"id":"entry-9019","kind":"boss","name":"Emperor Dagran Thaurissan","title":"Dungeon Boss","hasLoot":true,"combat":{"level":56,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15636","name":"Avatar of Flame","spellId":15636,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5602,"damageMultiplier":1.35},{"id":"spell-17492","name":"Hand of Thaurissan","spellId":17492,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5602,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8807-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-9023":{"id":"entry-9023","kind":"mob","name":"Marshal Windsor","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7428480000000004,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8707-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-9022":{"id":"entry-9022","kind":"mob","name":"Dughal Stormwing","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"winged","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9020":{"id":"entry-9020","kind":"mob","name":"Commander Gor'shak","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8703-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9056":{"id":"entry-9056","kind":"boss","name":"Fineous Darkvire","title":"Dungeon Boss","hasLoot":true,"combat":{"level":53,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13953","name":"Holy Strike","spellId":13953,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4829,"damageMultiplier":1.35},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4829,"damageMultiplier":1.35},{"id":"spell-15493","name":"Holy Light","spellId":15493,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4829,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-11978","name":"Kick","spellId":11978,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4829,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"murloc","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8704-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8916":{"id":"entry-8916","kind":"mob","name":"Arena Spectator","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9069-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-8896":{"id":"entry-8896","kind":"mob","name":"Shadowforge Peasant","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5524,"damageMultiplier":1.12},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5524,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8793-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9499":{"id":"entry-9499","kind":"mob","name":"Plugger Spazzring","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4493,"damageMultiplier":1.12},{"id":"spell-12742","name":"Immolate","spellId":12742,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4493,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8652-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-8897":{"id":"entry-8897","kind":"mob","name":"Doomforge Craftsman","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15619","name":"Throw Wrench","spellId":15619,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5545,"damageMultiplier":1.12},{"id":"spell-13951","name":"Rebuild","spellId":13951,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5545,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8803-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9017":{"id":"entry-9017","kind":"boss","name":"Lord Incendius","title":"Dungeon Boss","hasLoot":true,"combat":{"level":53,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6043,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-1204-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.7735,"markerRadius":1.7561}}},"entry-8913":{"id":"entry-8913","kind":"mob","name":"Twilight Emissary","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15288","name":"Fury of Ragnaros","spellId":15288,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5728,"damageMultiplier":1.12},{"id":"spell-15043","name":"Frostbolt","spellId":15043,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5728,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8772-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-8922":{"id":"entry-8922","kind":"mob","name":"Bloodhound Mastiff","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7140","name":"Expose Weakness","spellId":7140,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7391,"damageMultiplier":1.12},{"id":"spell-15608","name":"Ravenous Claw","spellId":15608,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7391,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8181-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.289,"markerRadius":1.1034}}},"entry-8914":{"id":"entry-8914","kind":"mob","name":"Twilight Bodyguard","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13902","name":"Fist of Ragnaros","spellId":13902,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6427,"damageMultiplier":1.12},{"id":"spell-13903","name":"Seal of Sacrifice","spellId":13903,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6427,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9346-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-9024":{"id":"entry-9024","kind":"boss","name":"Pyromancer Loregrain","title":"Dungeon Boss","hasLoot":true,"combat":{"level":52,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15616","name":"Flame Shock","spellId":15616,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4920,"damageMultiplier":1.35},{"id":"spell-15095","name":"Molten Blast","spellId":15095,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4920,"damageMultiplier":1.35},{"id":"spell-15041","name":"Fire Ward","spellId":15041,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4920,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.34,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8762-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0534,"labelHeight":2.7321,"markerRadius":0.6724}}},"entry-9041":{"id":"entry-9041","kind":"boss","name":"Warder Stilgiss","title":"Dungeon Boss","hasLoot":true,"combat":{"level":54,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12674","name":"Frost Nova","spellId":12674,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4513,"damageMultiplier":0.82,"radius":11},{"id":"spell-12675","name":"Frostbolt","spellId":12675,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4513,"damageMultiplier":1.35},{"id":"spell-12556","name":"Frost Armor","spellId":12556,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4513,"damageMultiplier":1.35},{"id":"spell-15044","name":"Frost Ward","spellId":15044,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4513,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.39,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9089-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-9042":{"id":"entry-9042","kind":"mob","name":"Verek","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15042","name":"Curse of Blood","spellId":15042,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7134,"damageMultiplier":1.12},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7134,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9019-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.542,"markerRadius":1.2473}}},"entry-9156":{"id":"entry-9156","kind":"boss","name":"Ambassador Flamelash","title":"Dungeon Boss","hasLoot":true,"combat":{"level":55,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6043,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"plant","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8329-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.1453,"labelHeight":6.0896,"markerRadius":0.773}}},"entry-12944":{"id":"entry-12944","kind":"mob","name":"Lokhtos Darkbargainer","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-14666-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9541":{"id":"entry-9541","kind":"mob","name":"Blackbreath Crony","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15583","name":"Rupture","spellId":15583,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6175,"damageMultiplier":1.12},{"id":"spell-15581","name":"Sinister Strike","spellId":15581,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6175,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8661-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9537":{"id":"entry-9537","kind":"mob","name":"Hurley Blackbreath","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8658-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8923":{"id":"entry-8923","kind":"mob","name":"Panzor the Invincible","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8270-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":6.7144,"markerRadius":2.3315}}}},"staticSpawns":[{"id":"creature-12482","entityId":"entry-28067","position":[-1420.5905,-42.0001,-585.0479],"yaw":-0.445,"spawnMask":1},{"id":"creature-45845","entityId":"entry-8895","position":[-1162.0835,-71.7799,-379.6485],"yaw":-0.122173,"spawnMask":1},{"id":"creature-45846","entityId":"entry-8893","position":[-1165.9775,-71.9047,-374.9969],"yaw":-3.22886,"spawnMask":1},{"id":"creature-45847","entityId":"entry-8893","position":[-1165.9715,-71.7443,-378.6681],"yaw":-3.19395,"spawnMask":1},{"id":"creature-45848","entityId":"entry-8894","position":[-1165.9025,-71.6136,-381.6861],"yaw":-3.21141,"spawnMask":1},{"id":"creature-45849","entityId":"entry-8894","position":[-1165.7715,-71.5008,-384.3215],"yaw":-3.22886,"spawnMask":1},{"id":"creature-45850","entityId":"entry-8910","position":[-1470.2955,-69.7534,-715.7699],"yaw":-3.9968,"spawnMask":1},{"id":"creature-45851","entityId":"entry-8910","position":[-1457.6305,-69.7534,-730.7639],"yaw":-0.890118,"spawnMask":1},{"id":"creature-45852","entityId":"entry-8895","position":[-1155.3085,-71.9145,-436.5936],"yaw":-0.523599,"spawnMask":1},{"id":"creature-45853","entityId":"entry-8893","position":[-1161.4915,-71.3178,-439.7353],"yaw":-3.59538,"spawnMask":1},{"id":"creature-45854","entityId":"entry-8893","position":[-1159.8835,-71.3179,-436.3012],"yaw":-3.61283,"spawnMask":1},{"id":"creature-45855","entityId":"entry-8894","position":[-1158.2475,-71.3575,-433.0015],"yaw":-3.63029,"spawnMask":1},{"id":"creature-45856","entityId":"entry-8894","position":[-1157.0125,-71.3182,-429.7427],"yaw":-3.64774,"spawnMask":1},{"id":"creature-45857","entityId":"entry-8895","position":[-1252.4335,-70.0105,-544.7279],"yaw":-1.92786,"spawnMask":1},{"id":"creature-45858","entityId":"entry-8893","position":[-1249.7485,-69.9621,-542.8059],"yaw":-6.0012,"spawnMask":1},{"id":"creature-45859","entityId":"entry-8894","position":[-1253.5175,-69.99,-541.7339],"yaw":-3.86779,"spawnMask":1},{"id":"creature-45861","entityId":"entry-8892","position":[-1249.7485,-69.9621,-542.8059],"yaw":-6.0012,"spawnMask":1},{"id":"creature-45862","entityId":"entry-8895","position":[-1148.7265,-71.8599,-323.8954],"yaw":-2.67035,"spawnMask":1},{"id":"creature-45863","entityId":"entry-8893","position":[-1139.1815,-71.8616,-327.135],"yaw":-6.03884,"spawnMask":1},{"id":"creature-45864","entityId":"entry-8893","position":[-1140.9625,-71.8615,-322.5378],"yaw":-5.93412,"spawnMask":1},{"id":"creature-45865","entityId":"entry-8893","position":[-1142.7935,-71.8614,-318.1214],"yaw":-5.84685,"spawnMask":1},{"id":"creature-45866","entityId":"entry-8894","position":[-1144.1445,-71.8616,-313.3388],"yaw":-5.75959,"spawnMask":1},{"id":"creature-45867","entityId":"entry-8921","position":[-1178.3785,-71.9446,-265.3039],"yaw":-4.78166,"spawnMask":1},{"id":"creature-45869","entityId":"entry-8895","position":[-1126.6355,-70.8211,-383.7292],"yaw":-0.244346,"spawnMask":1},{"id":"creature-45870","entityId":"entry-8893","position":[-1130.2165,-71.2464,-385.6636],"yaw":-3.28122,"spawnMask":1},{"id":"creature-45871","entityId":"entry-8894","position":[-1129.7885,-71.2266,-380.6126],"yaw":-3.28122,"spawnMask":1},{"id":"creature-45872","entityId":"entry-8893","position":[-1134.9475,-71.7495,-384.8043],"yaw":-3.28122,"spawnMask":1},{"id":"creature-45874","entityId":"entry-8892","position":[-1134.1465,-71.6887,-380.0585],"yaw":-3.28122,"spawnMask":1},{"id":"creature-45875","entityId":"entry-8895","position":[-1194.3825,-71.2245,-462.5766],"yaw":-2.4278,"spawnMask":1},{"id":"creature-45876","entityId":"entry-8893","position":[-1195.8375,-71.1386,-466.483],"yaw":-2.42779,"spawnMask":1},{"id":"creature-45877","entityId":"entry-8894","position":[-1198.4565,-71.1498,-463.4595],"yaw":-2.42779,"spawnMask":1},{"id":"creature-45878","entityId":"entry-8893","position":[-1194.5275,-71.1329,-467.9948],"yaw":-2.42779,"spawnMask":1},{"id":"creature-45879","entityId":"entry-8892","position":[-1199.7655,-71.1554,-461.9477],"yaw":-2.42779,"spawnMask":1},{"id":"creature-45880","entityId":"entry-8895","position":[-1171.0795,-71.8607,-285.7869],"yaw":-4.99164,"spawnMask":1},{"id":"creature-45881","entityId":"entry-8893","position":[-1169.4185,-71.8611,-282.3459],"yaw":-4.99164,"spawnMask":1},{"id":"creature-45882","entityId":"entry-8894","position":[-1167.5645,-71.861,-285.8629],"yaw":-4.99164,"spawnMask":1},{"id":"creature-45883","entityId":"entry-8893","position":[-1166.2815,-71.8615,-280.3849],"yaw":-4.99164,"spawnMask":1},{"id":"creature-45884","entityId":"entry-8892","position":[-1164.1645,-71.8614,-284.5789],"yaw":-4.99164,"spawnMask":1},{"id":"creature-45885","entityId":"entry-9016","position":[-1231.7355,-70.0631,-225.6869],"yaw":-4.20624,"spawnMask":1},{"id":"creature-45886","entityId":"entry-8912","position":[-888.2525,-65.1237,-464.4967],"yaw":-0.122173,"spawnMask":1},{"id":"creature-45887","entityId":"entry-8890","position":[-893.9385,-64.821,-464.3403],"yaw":-3.05433,"spawnMask":1},{"id":"creature-45888","entityId":"entry-8891","position":[-913.5055,-62.219,-492.4018],"yaw":-3.00197,"spawnMask":1},{"id":"creature-45889","entityId":"entry-8891","position":[-942.6585,-61.3576,-572.4219],"yaw":-3.94444,"spawnMask":1},{"id":"creature-45890","entityId":"entry-8891","position":[-938.4035,-61.9356,-454.5501],"yaw":-3.75246,"spawnMask":1},{"id":"creature-45891","entityId":"entry-8891","position":[-904.6235,-62.9408,-514.9919],"yaw":-4.24115,"spawnMask":1},{"id":"creature-45892","entityId":"entry-8891","position":[-877.5165,-62.9408,-522.5839],"yaw":-6.24828,"spawnMask":1},{"id":"creature-45893","entityId":"entry-8921","position":[-916.2885,-62.9408,-563.8879],"yaw":-1.06465,"spawnMask":1},{"id":"creature-45894","entityId":"entry-8890","position":[-909.8615,-62.5642,-489.8303],"yaw":-5.67232,"spawnMask":1},{"id":"creature-45895","entityId":"entry-8891","position":[-934.2575,-61.9212,-456.6657],"yaw":0,"spawnMask":1},{"id":"creature-45896","entityId":"entry-8921","position":[-1041.5765,-58.3342,-587.0129],"yaw":-5.01771,"spawnMask":1},{"id":"creature-45898","entityId":"entry-8921","position":[-1042.7875,-57.8072,-590.8559],"yaw":-5.01773,"spawnMask":1},{"id":"creature-45899","entityId":"entry-8892","position":[-1179.1185,-73.193,-598.6389],"yaw":-4.53786,"spawnMask":1},{"id":"creature-45900","entityId":"entry-8892","position":[-1176.8725,-81.3944,-637.5279],"yaw":-5.91667,"spawnMask":1},{"id":"creature-45901","entityId":"entry-8921","position":[-1121.8635,-67.3352,-544.7799],"yaw":-3.64774,"spawnMask":1},{"id":"creature-45902","entityId":"entry-8921","position":[-1126.1835,-67.5771,-546.3219],"yaw":-1.55334,"spawnMask":1},{"id":"creature-45903","entityId":"entry-8891","position":[-1184.4625,-81.6167,-643.8909],"yaw":-2.05949,"spawnMask":1},{"id":"creature-45904","entityId":"entry-8892","position":[-1077.6635,-60.2379,-533.8759],"yaw":-2.93215,"spawnMask":1},{"id":"creature-45905","entityId":"entry-8892","position":[-1079.3105,-60.46,-524.3009],"yaw":-2.96706,"spawnMask":1},{"id":"creature-45906","entityId":"entry-8909","position":[-1190.4595,-71.6887,-570.6659],"yaw":-0.15708,"spawnMask":1},{"id":"creature-45907","entityId":"entry-8909","position":[-1187.0655,-71.0555,-566.9279],"yaw":-1.36136,"spawnMask":1},{"id":"creature-45908","entityId":"entry-8891","position":[-1130.5165,-81.0691,-677.3499],"yaw":-0.715585,"spawnMask":1},{"id":"creature-45909","entityId":"entry-8891","position":[-1159.9295,-81.7521,-685.4009],"yaw":-3.83972,"spawnMask":1},{"id":"creature-45910","entityId":"entry-8892","position":[-1122.3105,-66.819,-549.3379],"yaw":-2.89725,"spawnMask":1},{"id":"creature-45911","entityId":"entry-8889","position":[-1011.5605,-60.7709,-526.1389],"yaw":-0.226893,"spawnMask":1},{"id":"creature-45912","entityId":"entry-8890","position":[-1005.7835,-60.5998,-504.1835],"yaw":-1.98968,"spawnMask":1},{"id":"creature-45913","entityId":"entry-8890","position":[-1017.7625,-60.0881,-523.7759],"yaw":-3.59538,"spawnMask":1},{"id":"creature-45914","entityId":"entry-8890","position":[-1051.3735,-60.6271,-496.789],"yaw":-3.05433,"spawnMask":1},{"id":"creature-45915","entityId":"entry-8921","position":[-1031.2935,-61.0963,-486.1825],"yaw":-4.5521,"spawnMask":1},{"id":"creature-45916","entityId":"entry-8921","position":[-1033.8815,-60.861,-484.88],"yaw":-4.42372,"spawnMask":1},{"id":"creature-45917","entityId":"entry-8921","position":[-1032.3955,-61.1137,-482.2523],"yaw":-4.40181,"spawnMask":1},{"id":"creature-45923","entityId":"entry-8890","position":[-1044.8235,-60.6334,-496.8583],"yaw":-0.069813,"spawnMask":1},{"id":"creature-45924","entityId":"entry-8921","position":[-1010.3195,-60.9849,-518.8039],"yaw":-0.712075,"spawnMask":1},{"id":"creature-45925","entityId":"entry-8921","position":[-1009.7155,-60.8078,-524.1089],"yaw":-1.59768,"spawnMask":1},{"id":"creature-45926","entityId":"entry-8921","position":[-1009.7885,-61.0299,-521.6219],"yaw":-1.34979,"spawnMask":1},{"id":"creature-45927","entityId":"entry-8889","position":[-1008.4385,-65.4847,-430.6775],"yaw":-1.93731,"spawnMask":1},{"id":"creature-45928","entityId":"entry-8889","position":[-999.7795,-65.9183,-433.1501],"yaw":-1.78024,"spawnMask":1},{"id":"creature-45929","entityId":"entry-8890","position":[-1038.1245,-60.8989,-527.8089],"yaw":-5.13127,"spawnMask":1},{"id":"creature-45930","entityId":"entry-8890","position":[-1028.8875,-60.8417,-467.6078],"yaw":-3.05433,"spawnMask":1},{"id":"creature-45931","entityId":"entry-8983","position":[-1376.1205,-51.7146,-393.8683],"yaw":-3.14159,"spawnMask":1},{"id":"creature-45932","entityId":"entry-8906","position":[-1381.1615,-51.717,-396.8825],"yaw":-2.28638,"spawnMask":1},{"id":"creature-45933","entityId":"entry-8907","position":[-1386.0205,-51.7059,-392.2779],"yaw":-2.53073,"spawnMask":1},{"id":"creature-45934","entityId":"entry-8892","position":[-1143.3665,-58.0504,-449.5512],"yaw":-3.61283,"spawnMask":1},{"id":"creature-45935","entityId":"entry-8892","position":[-1156.5045,-44.2255,-533.1039],"yaw":-2.70526,"spawnMask":1},{"id":"creature-45936","entityId":"entry-8891","position":[-1156.2605,-58.0512,-465.1412],"yaw":-0.715585,"spawnMask":1},{"id":"creature-45937","entityId":"entry-8892","position":[-1217.6635,-44.4217,-540.3859],"yaw":-2.14675,"spawnMask":1},{"id":"creature-45938","entityId":"entry-8891","position":[-1227.2395,-43.9709,-550.6919],"yaw":-5.89921,"spawnMask":1},{"id":"creature-45939","entityId":"entry-8892","position":[-1093.3955,-43.0128,-491.7615],"yaw":-6.23082,"spawnMask":1},{"id":"creature-45940","entityId":"entry-8891","position":[-1087.7955,-43.0128,-494.4117],"yaw":-4.55531,"spawnMask":1},{"id":"creature-45941","entityId":"entry-8891","position":[-1097.7465,-43.0128,-491.913],"yaw":-3.12414,"spawnMask":1},{"id":"creature-45942","entityId":"entry-8891","position":[-1120.0615,-58.0249,-466.2053],"yaw":-6.12611,"spawnMask":1},{"id":"creature-45944","entityId":"entry-8911","position":[-1212.2455,-58.0333,-355.0258],"yaw":-4.72984,"spawnMask":1},{"id":"creature-45945","entityId":"entry-8911","position":[-1241.2675,-43.4586,-376.891],"yaw":-0.418879,"spawnMask":1},{"id":"creature-45946","entityId":"entry-8898","position":[-1247.2415,-43.4599,-373.9119],"yaw":-3.9619,"spawnMask":1},{"id":"creature-45947","entityId":"entry-8898","position":[-1249.1505,-43.0128,-352.9771],"yaw":-1.74533,"spawnMask":1},{"id":"creature-45948","entityId":"entry-8898","position":[-1282.2985,-44.2255,-458.5501],"yaw":-5.3058,"spawnMask":1},{"id":"creature-45949","entityId":"entry-8911","position":[-1217.4515,-43.4589,-356.113],"yaw":-1.01229,"spawnMask":1},{"id":"creature-45950","entityId":"entry-8899","position":[-1221.6025,-43.666,-426.2253],"yaw":-1.71042,"spawnMask":1},{"id":"creature-45951","entityId":"entry-8899","position":[-1221.8085,-43.4593,-352.6377],"yaw":-3.50811,"spawnMask":1},{"id":"creature-45952","entityId":"entry-8898","position":[-1289.7205,-44.2255,-455.7344],"yaw":-5.37561,"spawnMask":1},{"id":"creature-45953","entityId":"entry-8898","position":[-1208.6315,-58.0503,-415.9226],"yaw":-5.41052,"spawnMask":1},{"id":"creature-45954","entityId":"entry-9033","position":[-1181.7095,-58.0511,-388.7752],"yaw":-0.087266,"spawnMask":1},{"id":"creature-45955","entityId":"entry-8901","position":[-1183.5995,-58.0506,-392.546],"yaw":-1.79769,"spawnMask":1},{"id":"creature-45956","entityId":"entry-8901","position":[-1185.8165,-58.05,-390.7251],"yaw":-2.56563,"spawnMask":1},{"id":"creature-45958","entityId":"entry-8901","position":[-1185.6895,-58.05,-387.5454],"yaw":-3.49066,"spawnMask":1},{"id":"creature-45959","entityId":"entry-8901","position":[-1184.2855,-58.0504,-385.9612],"yaw":-4.17134,"spawnMask":1},{"id":"creature-46236","entityId":"entry-8911","position":[-1551.4195,-114.4301,-713.5469],"yaw":-1.51979,"spawnMask":1},{"id":"creature-46245","entityId":"entry-8911","position":[-1691.2595,-103.1871,-725.7879],"yaw":-4.14595,"spawnMask":1},{"id":"creature-46246","entityId":"entry-8911","position":[-1358.3025,-52.1246,-520.9119],"yaw":-1.55334,"spawnMask":1},{"id":"creature-46247","entityId":"entry-8911","position":[-1369.7925,-51.9569,-516.6139],"yaw":-2.18166,"spawnMask":1},{"id":"creature-46248","entityId":"entry-8902","position":[-1460.3845,-47.9314,-699.8419],"yaw":-0.383972,"spawnMask":1},{"id":"creature-46249","entityId":"entry-8902","position":[-1460.8455,-47.9277,-694.6209],"yaw":-5.41052,"spawnMask":1},{"id":"creature-46250","entityId":"entry-8898","position":[-1468.6965,-47.9303,-698.7719],"yaw":-3.05433,"spawnMask":1},{"id":"creature-46251","entityId":"entry-8900","position":[-1465.6785,-47.9277,-695.2209],"yaw":-4.20624,"spawnMask":1},{"id":"creature-46252","entityId":"entry-8900","position":[-1458.3865,-47.9277,-697.3229],"yaw":-6.0912,"spawnMask":1},{"id":"creature-46253","entityId":"entry-8911","position":[-1463.8385,-47.9356,-702.8039],"yaw":-1.55334,"spawnMask":1},{"id":"creature-46254","entityId":"entry-8902","position":[-1465.0825,-48.1891,-657.0449],"yaw":-0.314159,"spawnMask":1},{"id":"creature-46255","entityId":"entry-8902","position":[-1462.9825,-47.9277,-668.6529],"yaw":-2.77507,"spawnMask":1},{"id":"creature-46256","entityId":"entry-8902","position":[-1459.0805,-47.9277,-666.4659],"yaw":-5.23599,"spawnMask":1},{"id":"creature-46258","entityId":"entry-8899","position":[-1456.7045,-47.9277,-670.1749],"yaw":-0.767945,"spawnMask":1},{"id":"creature-46259","entityId":"entry-8899","position":[-1469.7605,-48.3256,-656.6039],"yaw":-2.56563,"spawnMask":1},{"id":"creature-46260","entityId":"entry-8920","position":[-1464.0995,-48.2993,-653.0879],"yaw":-5.74213,"spawnMask":1},{"id":"creature-46261","entityId":"entry-8911","position":[-1348.6225,-52.2633,-486.0524],"yaw":-1.46608,"spawnMask":1},{"id":"creature-46262","entityId":"entry-8911","position":[-1358.9305,-52.2705,-482.915],"yaw":-2.26893,"spawnMask":1},{"id":"creature-46263","entityId":"entry-8911","position":[-1733.7495,-90.8485,-774.5409],"yaw":-0.593412,"spawnMask":1},{"id":"creature-46264","entityId":"entry-8911","position":[-1733.1795,-90.0727,-782.6199],"yaw":-0.715585,"spawnMask":1},{"id":"creature-46265","entityId":"entry-8911","position":[-1740.5095,-90.7846,-781.9729],"yaw":-0.837758,"spawnMask":1},{"id":"creature-46266","entityId":"entry-8911","position":[-1455.5125,-114.1871,-762.5149],"yaw":-2.25605,"spawnMask":1},{"id":"creature-46267","entityId":"entry-8911","position":[-1557.0095,-109.2091,-656.1419],"yaw":-6.25596,"spawnMask":1},{"id":"creature-46268","entityId":"entry-8911","position":[-1378.7005,-113.9981,-653.6019],"yaw":-2.75549,"spawnMask":1},{"id":"creature-46269","entityId":"entry-8921","position":[-1143.2595,-82.4837,-608.0599],"yaw":-0.261799,"spawnMask":1},{"id":"creature-46270","entityId":"entry-8921","position":[-1144.0255,-82.4812,-594.7169],"yaw":-3.52556,"spawnMask":1},{"id":"creature-46271","entityId":"entry-8921","position":[-1141.7495,-82.4818,-583.7209],"yaw":-0.191986,"spawnMask":1},{"id":"creature-46272","entityId":"entry-8921","position":[-1136.2265,-82.4799,-603.4539],"yaw":-1.8326,"spawnMask":1},{"id":"creature-46273","entityId":"entry-8921","position":[-1134.1315,-82.4772,-587.7489],"yaw":-0.506145,"spawnMask":1},{"id":"creature-46281","entityId":"entry-8921","position":[-1135.5415,-82.4819,-578.3419],"yaw":-5.72468,"spawnMask":1},{"id":"creature-46284","entityId":"entry-9319","position":[-1136.9905,-82.5615,-584.9169],"yaw":-2.30979,"spawnMask":1},{"id":"creature-46297","entityId":"entry-8921","position":[-1139.2375,-82.5615,-587.5509],"yaw":-2.08212,"spawnMask":1},{"id":"creature-46298","entityId":"entry-8921","position":[-1140.7695,-82.562,-588.6619],"yaw":-2.05198,"spawnMask":1},{"id":"creature-46299","entityId":"entry-8921","position":[-1116.5695,-82.5829,-611.6139],"yaw":-2.52397,"spawnMask":1},{"id":"creature-46300","entityId":"entry-8921","position":[-1109.5795,-82.4985,-612.8479],"yaw":-0.349066,"spawnMask":1},{"id":"creature-46301","entityId":"entry-8921","position":[-1104.0465,-82.4938,-606.7949],"yaw":-2.84489,"spawnMask":1},{"id":"creature-46302","entityId":"entry-8921","position":[-1110.4205,-82.4836,-600.6579],"yaw":-2.16421,"spawnMask":1},{"id":"creature-46309","entityId":"entry-8921","position":[-1105.6055,-82.487,-594.7989],"yaw":-3.735,"spawnMask":1},{"id":"creature-46607","entityId":"entry-8921","position":[-1110.6995,-82.4868,-585.5209],"yaw":-1.44862,"spawnMask":1},{"id":"creature-46608","entityId":"entry-8905","position":[-1342.9595,-48.5698,-751.9519],"yaw":-1.46608,"spawnMask":1},{"id":"creature-46610","entityId":"entry-8905","position":[-1348.7725,-48.5698,-759.1069],"yaw":-0.349066,"spawnMask":1},{"id":"creature-46611","entityId":"entry-8905","position":[-1342.8705,-48.5698,-763.8909],"yaw":-4.86947,"spawnMask":1},{"id":"creature-46612","entityId":"entry-8905","position":[-1337.3175,-48.5698,-756.0269],"yaw":-3.29867,"spawnMask":1},{"id":"creature-46616","entityId":"entry-10043","position":[-1410.1635,-47.7481,-578.0009],"yaw":-2.6529,"spawnMask":1},{"id":"creature-46617","entityId":"entry-10043","position":[-1404.9345,-47.7497,-578.3159],"yaw":-0.418879,"spawnMask":1},{"id":"creature-46618","entityId":"entry-10043","position":[-1406.3615,-47.7499,-576.6369],"yaw":-5.77704,"spawnMask":1},{"id":"creature-46619","entityId":"entry-9543","position":[-1407.7905,-47.7502,-577.8749],"yaw":-2.51327,"spawnMask":1},{"id":"creature-46620","entityId":"entry-9554","position":[-1404.8165,-40.6677,-626.2739],"yaw":-2.13984,"spawnMask":1},{"id":"creature-46621","entityId":"entry-9545","position":[-1348.2095,-47.745,-590.6529],"yaw":-0.105216,"spawnMask":1},{"id":"creature-46622","entityId":"entry-9547","position":[-1388.7215,-47.7472,-552.6469],"yaw":-4.63184,"spawnMask":1},{"id":"creature-46624","entityId":"entry-9547","position":[-1408.0885,-47.751,-557.5459],"yaw":-4.30297,"spawnMask":1},{"id":"creature-46625","entityId":"entry-9554","position":[-1372.5395,-47.7454,-598.4509],"yaw":-3.78738,"spawnMask":1},{"id":"creature-46626","entityId":"entry-9554","position":[-1370.0025,-47.745,-600.3619],"yaw":-5.73082,"spawnMask":1},{"id":"creature-46627","entityId":"entry-9545","position":[-1393.9415,-47.7482,-585.2279],"yaw":-1.99312,"spawnMask":1},{"id":"creature-46628","entityId":"entry-9547","position":[-1352.7045,-47.745,-590.1779],"yaw":-0.888466,"spawnMask":1},{"id":"creature-46629","entityId":"entry-9545","position":[-1421.8775,-41.6955,-615.6169],"yaw":-2.85076,"spawnMask":1},{"id":"creature-46630","entityId":"entry-9554","position":[-1395.6935,-47.7481,-572.8899],"yaw":-0.562199,"spawnMask":1},{"id":"creature-46631","entityId":"entry-8900","position":[-1716.3095,-72.353,-575.5849],"yaw":-2.87979,"spawnMask":1},{"id":"creature-46632","entityId":"entry-8900","position":[-1724.1395,-72.4475,-570.1899],"yaw":-5.54385,"spawnMask":1},{"id":"creature-46638","entityId":"entry-8900","position":[-1713.6295,-72.3567,-564.0959],"yaw":-0.436332,"spawnMask":1},{"id":"creature-46639","entityId":"entry-8900","position":[-1657.5995,-72.9076,-574.3069],"yaw":-3.89208,"spawnMask":1},{"id":"creature-46640","entityId":"entry-8900","position":[-1664.7195,-72.9899,-564.2649],"yaw":-2.00465,"spawnMask":1},{"id":"creature-46641","entityId":"entry-8908","position":[-1699.5295,-63.4444,-600.4939],"yaw":-0.314159,"spawnMask":1},{"id":"creature-46642","entityId":"entry-8900","position":[-1679.0295,-72.4416,-536.7709],"yaw":-4.85309,"spawnMask":1},{"id":"creature-46643","entityId":"entry-8900","position":[-1681.1695,-72.3551,-547.0829],"yaw":-0.593412,"spawnMask":1},{"id":"creature-46644","entityId":"entry-8900","position":[-1700.4495,-63.4136,-607.3299],"yaw":-3.97288,"spawnMask":1},{"id":"creature-46645","entityId":"entry-8900","position":[-1704.9795,-63.4547,-597.9479],"yaw":-5.20513,"spawnMask":1},{"id":"creature-46646","entityId":"entry-8900","position":[-1693.9795,-63.3009,-600.3479],"yaw":-3.36848,"spawnMask":1},{"id":"creature-46647","entityId":"entry-8908","position":[-1637.7895,-63.3004,-589.7289],"yaw":-2.30383,"spawnMask":1},{"id":"creature-46648","entityId":"entry-8908","position":[-1658.6695,-72.903,-565.4549],"yaw":-3.21141,"spawnMask":1},{"id":"creature-46649","entityId":"entry-8900","position":[-1638.9495,-63.3004,-596.9809],"yaw":-3.28122,"spawnMask":1},{"id":"creature-46650","entityId":"entry-8900","position":[-1644.4395,-63.3004,-588.5389],"yaw":-1.02974,"spawnMask":1},{"id":"creature-46651","entityId":"entry-8900","position":[-1631.5995,-63.3004,-587.9019],"yaw":-2.23402,"spawnMask":1},{"id":"creature-46652","entityId":"entry-8908","position":[-1683.3595,-72.3565,-542.9259],"yaw":-3.4383,"spawnMask":1},{"id":"creature-46653","entityId":"entry-8908","position":[-1717.8595,-72.3554,-569.9389],"yaw":-0.10472,"spawnMask":1},{"id":"creature-46654","entityId":"entry-8901","position":[-1829.0295,-90.0853,-829.1439],"yaw":-5.0075,"spawnMask":1},{"id":"creature-46655","entityId":"entry-8901","position":[-1830.7295,-90.1131,-815.4349],"yaw":-4.1211,"spawnMask":1},{"id":"creature-46657","entityId":"entry-8901","position":[-1832.1395,-90.1094,-818.1709],"yaw":-4.21156,"spawnMask":1},{"id":"creature-46658","entityId":"entry-8901","position":[-1832.6995,-90.1067,-814.3209],"yaw":-4.15168,"spawnMask":1},{"id":"creature-46659","entityId":"entry-8901","position":[-1877.8095,-90.0036,-897.4899],"yaw":-4.60767,"spawnMask":1},{"id":"creature-46660","entityId":"entry-8901","position":[-1872.5095,-90.0036,-879.8149],"yaw":-1.48353,"spawnMask":1},{"id":"creature-46661","entityId":"entry-8901","position":[-1841.5395,-90.0259,-898.3329],"yaw":-0.05236,"spawnMask":1},{"id":"creature-46662","entityId":"entry-8901","position":[-1879.4095,-90.0036,-900.1989],"yaw":-5.58505,"spawnMask":1},{"id":"creature-46663","entityId":"entry-8901","position":[-1869.4595,-90.0036,-883.8779],"yaw":-1.01229,"spawnMask":1},{"id":"creature-46664","entityId":"entry-8901","position":[-1889.2195,-90.0046,-884.2799],"yaw":-0.645772,"spawnMask":1},{"id":"creature-46665","entityId":"entry-8901","position":[-1890.0595,-90.0052,-886.2709],"yaw":-2.68781,"spawnMask":1},{"id":"creature-46666","entityId":"entry-8901","position":[-1857.7595,-90.0036,-890.0829],"yaw":-2.51327,"spawnMask":1},{"id":"creature-46667","entityId":"entry-8901","position":[-1856.3695,-90.0036,-886.5749],"yaw":-2.9147,"spawnMask":1},{"id":"creature-46668","entityId":"entry-8901","position":[-1842.7295,-90.0219,-900.5719],"yaw":-1.02974,"spawnMask":1},{"id":"creature-46669","entityId":"entry-8901","position":[-1901.8095,-90.0462,-724.5339],"yaw":-1.39626,"spawnMask":1},{"id":"creature-46670","entityId":"entry-8901","position":[-1895.7095,-90.0462,-739.8829],"yaw":-1.53589,"spawnMask":1},{"id":"creature-46671","entityId":"entry-8901","position":[-1903.8895,-90.0462,-730.1779],"yaw":-3.21141,"spawnMask":1},{"id":"creature-46672","entityId":"entry-8901","position":[-1885.7095,-90.0462,-734.5639],"yaw":-5.41052,"spawnMask":1},{"id":"creature-46673","entityId":"entry-8901","position":[-1891.1695,-90.0462,-740.8619],"yaw":-4.95674,"spawnMask":1},{"id":"creature-46690","entityId":"entry-8901","position":[-1907.1795,-90.0462,-728.9679],"yaw":-5.95157,"spawnMask":1},{"id":"creature-46724","entityId":"entry-8901","position":[-1887.9095,-90.0462,-735.7309],"yaw":-5.044,"spawnMask":1},{"id":"creature-46725","entityId":"entry-8901","position":[-1887.6895,-90.0462,-730.3089],"yaw":-4.55531,"spawnMask":1},{"id":"creature-46726","entityId":"entry-8901","position":[-1893.4695,-90.0462,-733.0329],"yaw":-0.383972,"spawnMask":1},{"id":"creature-46727","entityId":"entry-8901","position":[-1905.2895,-90.0462,-724.1839],"yaw":-6.26573,"spawnMask":1},{"id":"creature-46728","entityId":"entry-8901","position":[-1938.0495,-90.0914,-851.8009],"yaw":-2.67557,"spawnMask":1},{"id":"creature-46729","entityId":"entry-8901","position":[-1935.9895,-90.0925,-847.7079],"yaw":-3.05489,"spawnMask":1},{"id":"creature-46730","entityId":"entry-8901","position":[-1937.3595,-90.0906,-850.6389],"yaw":-2.88517,"spawnMask":1},{"id":"creature-46731","entityId":"entry-8901","position":[-1941.6795,-90.0436,-850.5329],"yaw":-2.98113,"spawnMask":1},{"id":"creature-46732","entityId":"entry-8901","position":[-1938.8895,-90.0885,-848.3959],"yaw":-2.93482,"spawnMask":1},{"id":"creature-46733","entityId":"entry-8901","position":[-1841.3395,-90.0395,-938.2499],"yaw":-2.26893,"spawnMask":1},{"id":"creature-46734","entityId":"entry-8901","position":[-1847.1495,-89.3252,-920.5219],"yaw":-4.83456,"spawnMask":1},{"id":"creature-46735","entityId":"entry-8901","position":[-1846.8595,-89.4793,-917.7989],"yaw":-6.0912,"spawnMask":1},{"id":"creature-46736","entityId":"entry-8901","position":[-1845.1495,-90.0372,-938.1939],"yaw":-4.15388,"spawnMask":1},{"id":"creature-46737","entityId":"entry-8901","position":[-1857.6095,-90.0317,-935.5849],"yaw":-4.86947,"spawnMask":1},{"id":"creature-46738","entityId":"entry-8901","position":[-1840.6395,-90.0381,-935.1479],"yaw":-2.25148,"spawnMask":1},{"id":"creature-46739","entityId":"entry-8901","position":[-1859.4895,-90.0293,-932.9099],"yaw":-5.35816,"spawnMask":1},{"id":"creature-46740","entityId":"entry-8901","position":[-1842.2395,-90.033,-919.2599],"yaw":-0.663225,"spawnMask":1},{"id":"creature-46741","entityId":"entry-8901","position":[-1889.8195,-90.0052,-947.4389],"yaw":-1.16937,"spawnMask":1},{"id":"creature-46742","entityId":"entry-8901","position":[-1892.7395,-90.0036,-945.6789],"yaw":-1.37881,"spawnMask":1},{"id":"creature-46743","entityId":"entry-8901","position":[-1888.3895,-90.0088,-924.3829],"yaw":-0.418879,"spawnMask":1},{"id":"creature-46744","entityId":"entry-8901","position":[-1892.5895,-90.0239,-920.1749],"yaw":-3.83972,"spawnMask":1},{"id":"creature-46745","entityId":"entry-8901","position":[-1895.0195,-90.0304,-920.9699],"yaw":-3.05433,"spawnMask":1},{"id":"creature-46856","entityId":"entry-8901","position":[-1878.5095,-90.0143,-950.6019],"yaw":-4.32842,"spawnMask":1},{"id":"creature-46892","entityId":"entry-8901","position":[-1891.4795,-90.0151,-925.6489],"yaw":-1.8675,"spawnMask":1},{"id":"creature-46893","entityId":"entry-8901","position":[-1874.8295,-90.0253,-950.4799],"yaw":-3.01942,"spawnMask":1},{"id":"creature-46895","entityId":"entry-8901","position":[-1892.9795,-90.0083,-948.5119],"yaw":-0.069813,"spawnMask":1},{"id":"creature-46896","entityId":"entry-8901","position":[-1878.0995,-90.0244,-954.1219],"yaw":-0.226893,"spawnMask":1},{"id":"creature-46960","entityId":"entry-8901","position":[-1942.5095,-90.0036,-893.1979],"yaw":-0.506145,"spawnMask":1},{"id":"creature-46962","entityId":"entry-8901","position":[-1961.6995,-90.0036,-892.5129],"yaw":-5.41052,"spawnMask":1},{"id":"creature-46963","entityId":"entry-8901","position":[-1960.3695,-90.0101,-873.6719],"yaw":-2.11185,"spawnMask":1},{"id":"creature-46965","entityId":"entry-8901","position":[-1944.8695,-89.9995,-868.6379],"yaw":-1.8326,"spawnMask":1},{"id":"creature-46966","entityId":"entry-8901","position":[-1939.5195,-90.011,-889.3409],"yaw":-5.72468,"spawnMask":1},{"id":"creature-46967","entityId":"entry-8901","position":[-1958.9795,-90.0107,-870.4529],"yaw":-4.97419,"spawnMask":1},{"id":"creature-46969","entityId":"entry-8901","position":[-1964.3895,-90.0036,-889.2119],"yaw":-0.349066,"spawnMask":1},{"id":"creature-46970","entityId":"entry-8901","position":[-1940.9195,-90.0011,-868.4879],"yaw":-0.191986,"spawnMask":1},{"id":"creature-46977","entityId":"entry-8901","position":[-1962.8395,-90.0036,-886.9649],"yaw":-2.84489,"spawnMask":1},{"id":"creature-46978","entityId":"entry-8901","position":[-1943.3695,-90.0024,-873.0699],"yaw":-3.52556,"spawnMask":1},{"id":"creature-46979","entityId":"entry-8901","position":[-1909.8395,-90.0442,-896.3639],"yaw":-1.91986,"spawnMask":1},{"id":"creature-46990","entityId":"entry-8901","position":[-1927.0395,-90.0046,-900.5909],"yaw":-5.18363,"spawnMask":1},{"id":"creature-46991","entityId":"entry-8901","position":[-1921.7295,-90.0036,-883.2149],"yaw":-1.62316,"spawnMask":1},{"id":"creature-46992","entityId":"entry-8901","position":[-1916.4195,-90.0138,-886.1809],"yaw":-5.39307,"spawnMask":1},{"id":"creature-46994","entityId":"entry-8901","position":[-1917.6095,-90.0131,-882.6519],"yaw":-0.383972,"spawnMask":1},{"id":"creature-47045","entityId":"entry-8901","position":[-1929.3595,-90.0036,-904.0909],"yaw":-5.23599,"spawnMask":1},{"id":"creature-47046","entityId":"entry-8901","position":[-1923.6295,-90.0047,-903.7929],"yaw":-0.296706,"spawnMask":1},{"id":"creature-47047","entityId":"entry-8901","position":[-1909.2395,-90.0402,-894.2149],"yaw":-0.453786,"spawnMask":1},{"id":"creature-47048","entityId":"entry-8901","position":[-1920.5595,-90.005,-887.1599],"yaw":-3.735,"spawnMask":1},{"id":"creature-47049","entityId":"entry-8901","position":[-1906.7195,-90.0239,-897.9119],"yaw":-3.19395,"spawnMask":1},{"id":"creature-47050","entityId":"entry-8901","position":[-1951.4695,-89.9971,-785.6419],"yaw":-6.03884,"spawnMask":1},{"id":"creature-47051","entityId":"entry-8901","position":[-1940.7895,-89.9996,-771.1099],"yaw":-4.81711,"spawnMask":1},{"id":"creature-47077","entityId":"entry-8901","position":[-1914.6795,-90.0152,-787.4499],"yaw":-3.00197,"spawnMask":1},{"id":"creature-47078","entityId":"entry-8901","position":[-1947.0195,-89.9895,-790.0259],"yaw":-3.08923,"spawnMask":1},{"id":"creature-47079","entityId":"entry-8901","position":[-1935.4595,-90.0057,-785.1969],"yaw":-3.07178,"spawnMask":1},{"id":"creature-47080","entityId":"entry-8901","position":[-1920.9495,-90.0033,-772.6289],"yaw":-0.279253,"spawnMask":1},{"id":"creature-47081","entityId":"entry-8901","position":[-1932.0195,-90.0233,-788.7529],"yaw":-4.53786,"spawnMask":1},{"id":"creature-47086","entityId":"entry-8901","position":[-1916.5295,-90.007,-784.8679],"yaw":-1.79769,"spawnMask":1},{"id":"creature-47087","entityId":"entry-8901","position":[-1936.7595,-90.0036,-768.3579],"yaw":-4.66003,"spawnMask":1},{"id":"creature-47205","entityId":"entry-8901","position":[-1918.6595,-90.0148,-770.5679],"yaw":-3.85718,"spawnMask":1},{"id":"creature-47206","entityId":"entry-8901","position":[-1919.5595,-92.6664,-809.7799],"yaw":-3.07178,"spawnMask":1},{"id":"creature-47207","entityId":"entry-8901","position":[-1905.5395,-92.6664,-811.2339],"yaw":-0.017453,"spawnMask":1},{"id":"creature-47209","entityId":"entry-8901","position":[-1903.3495,-92.6664,-815.8469],"yaw":-0.977384,"spawnMask":1},{"id":"creature-47210","entityId":"entry-8901","position":[-1917.8695,-92.6664,-811.6509],"yaw":-4.69494,"spawnMask":1},{"id":"creature-47211","entityId":"entry-8901","position":[-1918.7995,-92.6664,-826.0309],"yaw":-5.72468,"spawnMask":1},{"id":"creature-47212","entityId":"entry-8901","position":[-1917.2895,-92.6664,-808.9519],"yaw":-1.13446,"spawnMask":1},{"id":"creature-47213","entityId":"entry-8901","position":[-1915.3795,-92.6664,-825.9109],"yaw":-2.56563,"spawnMask":1},{"id":"creature-47214","entityId":"entry-8901","position":[-1902.2995,-92.6664,-812.4339],"yaw":-1.29154,"spawnMask":1},{"id":"creature-47215","entityId":"entry-8901","position":[-1918.7595,-92.6664,-827.8529],"yaw":-1.09956,"spawnMask":1},{"id":"creature-47216","entityId":"entry-8901","position":[-1905.4895,-92.6664,-813.8899],"yaw":-4.46804,"spawnMask":1},{"id":"creature-47217","entityId":"entry-8929","position":[-1913.9595,-85.6644,-1241.6349],"yaw":-1.62316,"spawnMask":1},{"id":"creature-47250","entityId":"entry-9018","position":[-839.8775,-68.378,-556.3999],"yaw":-5.51524,"spawnMask":1},{"id":"creature-47251","entityId":"entry-8912","position":[-842.0705,-68.378,-559.1669],"yaw":-2.47837,"spawnMask":1},{"id":"creature-47252","entityId":"entry-8890","position":[-843.3495,-68.378,-572.4879],"yaw":-1.01229,"spawnMask":1},{"id":"creature-47253","entityId":"entry-8921","position":[-842.6595,-68.378,-576.3779],"yaw":-1.06465,"spawnMask":1},{"id":"creature-47254","entityId":"entry-8921","position":[-839.9555,-68.378,-574.0619],"yaw":-0.942478,"spawnMask":1},{"id":"creature-47255","entityId":"entry-8900","position":[-1306.9345,-51.7851,-428.347],"yaw":-5.23021,"spawnMask":1},{"id":"creature-47256","entityId":"entry-8906","position":[-1318.6755,-51.7265,-452.5752],"yaw":-1.95477,"spawnMask":1},{"id":"creature-47257","entityId":"entry-8920","position":[-1308.0475,-51.7269,-367.7723],"yaw":-2.19912,"spawnMask":1},{"id":"creature-47258","entityId":"entry-8900","position":[-1292.6315,-51.7919,-408.333],"yaw":-3.26041,"spawnMask":1},{"id":"creature-47259","entityId":"entry-8920","position":[-1339.2715,-51.6341,-360.3866],"yaw":-1.22173,"spawnMask":1},{"id":"creature-47260","entityId":"entry-8920","position":[-1305.6075,-51.7269,-366.4778],"yaw":-0.418879,"spawnMask":1},{"id":"creature-47292","entityId":"entry-8920","position":[-1285.9195,-51.6582,-357.5976],"yaw":-3.90954,"spawnMask":1},{"id":"creature-47293","entityId":"entry-8920","position":[-1310.3275,-51.7269,-363.3589],"yaw":-3.52556,"spawnMask":1},{"id":"creature-47294","entityId":"entry-8920","position":[-1310.6075,-51.8218,-456.4594],"yaw":-4.25302,"spawnMask":1},{"id":"creature-47295","entityId":"entry-8900","position":[-1286.1235,-51.6617,-355.1466],"yaw":-0.715585,"spawnMask":1},{"id":"creature-47304","entityId":"entry-9025","position":[-1144.8415,-81.6658,-677.5459],"yaw":-3.86809,"spawnMask":1},{"id":"creature-47477","entityId":"entry-9938","position":[-1910.0395,-90.0462,-1069.4629],"yaw":-1.58825,"spawnMask":1},{"id":"creature-47478","entityId":"entry-8904","position":[-1937.7795,-90.714,-1179.8039],"yaw":-5.91667,"spawnMask":1},{"id":"creature-47561","entityId":"entry-8904","position":[-1949.6895,-90.7134,-1185.5769],"yaw":-2.56563,"spawnMask":1},{"id":"creature-47562","entityId":"entry-8915","position":[-1947.5595,-90.7139,-1179.1229],"yaw":-4.04916,"spawnMask":1},{"id":"creature-47563","entityId":"entry-8915","position":[-1938.4695,-90.714,-1185.9999],"yaw":-0.488692,"spawnMask":1},{"id":"creature-47564","entityId":"entry-8899","position":[-1928.1195,-89.9734,-1223.6339],"yaw":-5.3058,"spawnMask":1},{"id":"creature-47565","entityId":"entry-8899","position":[-1910.0495,-90.7151,-1156.9999],"yaw":-2.79253,"spawnMask":1},{"id":"creature-47566","entityId":"entry-8904","position":[-1946.1895,-83.1448,-1150.4189],"yaw":-6.0912,"spawnMask":1},{"id":"creature-47568","entityId":"entry-8904","position":[-1956.2395,-83.1458,-1152.2769],"yaw":-2.96706,"spawnMask":1},{"id":"creature-47569","entityId":"entry-8904","position":[-1951.0795,-83.1456,-1152.8699],"yaw":-1.43117,"spawnMask":1},{"id":"creature-47586","entityId":"entry-8915","position":[-1954.7295,-83.1457,-1148.6149],"yaw":-3.82227,"spawnMask":1},{"id":"creature-47587","entityId":"entry-8903","position":[-1883.1295,-83.139,-1160.4359],"yaw":-4.17134,"spawnMask":1},{"id":"creature-47588","entityId":"entry-8904","position":[-1874.3195,-83.1446,-1148.3549],"yaw":-5.55015,"spawnMask":1},{"id":"creature-47589","entityId":"entry-8904","position":[-1878.0995,-83.1448,-1156.4379],"yaw":-1.71042,"spawnMask":1},{"id":"creature-47590","entityId":"entry-8904","position":[-1877.4395,-83.1442,-1148.0569],"yaw":-5.14872,"spawnMask":1},{"id":"creature-47591","entityId":"entry-8904","position":[-1882.4795,-83.1435,-1147.4849],"yaw":-4.29351,"spawnMask":1},{"id":"creature-47592","entityId":"entry-8904","position":[-1882.1295,-83.1437,-1155.3229],"yaw":-2.19912,"spawnMask":1},{"id":"creature-47593","entityId":"entry-8899","position":[-1883.7395,-90.7133,-1181.9579],"yaw":-0.383972,"spawnMask":1},{"id":"creature-47594","entityId":"entry-8904","position":[-1897.6395,-90.7136,-1180.5299],"yaw":-3.54302,"spawnMask":1},{"id":"creature-47595","entityId":"entry-8904","position":[-1898.0095,-90.7136,-1185.1619],"yaw":-2.72271,"spawnMask":1},{"id":"creature-47598","entityId":"entry-8904","position":[-1894.0095,-89.9728,-1189.0419],"yaw":-1.79769,"spawnMask":1},{"id":"creature-47599","entityId":"entry-8904","position":[-1888.5095,-90.7135,-1183.1019],"yaw":-0.10472,"spawnMask":1},{"id":"creature-47601","entityId":"entry-8915","position":[-1893.1695,-89.9728,-1177.0579],"yaw":-4.57276,"spawnMask":1},{"id":"creature-47602","entityId":"entry-8904","position":[-1884.6495,-89.9734,-1227.7009],"yaw":-5.35816,"spawnMask":1},{"id":"creature-47603","entityId":"entry-8904","position":[-1889.2995,-89.9734,-1227.5209],"yaw":-3.9619,"spawnMask":1},{"id":"creature-47606","entityId":"entry-8915","position":[-1892.6395,-89.9734,-1234.1909],"yaw":-2.56563,"spawnMask":1},{"id":"creature-47611","entityId":"entry-8915","position":[-1884.4895,-89.9734,-1233.7449],"yaw":-0.994838,"spawnMask":1},{"id":"creature-47612","entityId":"entry-8899","position":[-1926.0295,-89.9733,-1141.4809],"yaw":-0.122173,"spawnMask":1},{"id":"creature-47613","entityId":"entry-9019","position":[-1909.4995,-85.6651,-1241.7939],"yaw":-1.32645,"spawnMask":1},{"id":"creature-47622","entityId":"entry-9023","position":[-845.6555,-75.8009,-635.6769],"yaw":-1.25664,"spawnMask":1},{"id":"creature-47628","entityId":"entry-9022","position":[-804.6465,-75.1176,-491.1142],"yaw":-5.79449,"spawnMask":1},{"id":"creature-47630","entityId":"entry-9020","position":[-901.5025,-68.1053,-588.4539],"yaw":-5.07891,"spawnMask":1},{"id":"creature-47631","entityId":"entry-9056","position":[-1492.5865,-69.8145,-753.8839],"yaw":-2.21696,"spawnMask":1},{"id":"creature-47634","entityId":"entry-8916","position":[-1076.8315,-34.9548,-578.5039],"yaw":-5.93412,"spawnMask":1},{"id":"creature-47641","entityId":"entry-8916","position":[-1068.9465,-33.5876,-599.3349],"yaw":0,"spawnMask":1},{"id":"creature-47643","entityId":"entry-8916","position":[-1068.1835,-32.153,-576.7939],"yaw":-5.91667,"spawnMask":1},{"id":"creature-47644","entityId":"entry-8894","position":[-1072.1655,-34.9621,-588.2989],"yaw":-6.10865,"spawnMask":1},{"id":"creature-47645","entityId":"entry-8896","position":[-1068.8765,-33.6008,-590.0109],"yaw":-6.14356,"spawnMask":1},{"id":"creature-47649","entityId":"entry-8896","position":[-1074.5965,-34.9432,-583.1129],"yaw":-6.02139,"spawnMask":1},{"id":"creature-47650","entityId":"entry-8902","position":[-1074.8075,-33.5357,-572.6349],"yaw":-5.86431,"spawnMask":1},{"id":"creature-47652","entityId":"entry-8902","position":[-1068.9315,-33.582,-594.4649],"yaw":-6.21337,"spawnMask":1},{"id":"creature-47653","entityId":"entry-8894","position":[-1063.6065,-32.1847,-583.9039],"yaw":-6.07375,"spawnMask":1},{"id":"creature-47654","entityId":"entry-8916","position":[-1178.5835,-34.9821,-586.2539],"yaw":-3.36848,"spawnMask":1},{"id":"creature-47655","entityId":"entry-8916","position":[-1176.8875,-34.9996,-583.0579],"yaw":-3.42085,"spawnMask":1},{"id":"creature-47656","entityId":"entry-8895","position":[-1179.3355,-34.9858,-594.9189],"yaw":-3.22886,"spawnMask":1},{"id":"creature-47657","entityId":"entry-8896","position":[-1179.4965,-34.9724,-590.3119],"yaw":-3.29867,"spawnMask":1},{"id":"creature-47658","entityId":"entry-8896","position":[-1181.1965,-33.5989,-582.7469],"yaw":-3.40339,"spawnMask":1},{"id":"creature-47659","entityId":"entry-8902","position":[-1179.8035,-33.5907,-578.7549],"yaw":-3.47321,"spawnMask":1},{"id":"creature-47664","entityId":"entry-8902","position":[-1188.3115,-32.1517,-596.5269],"yaw":-3.07178,"spawnMask":1},{"id":"creature-47665","entityId":"entry-8904","position":[-1182.6635,-33.6012,-600.6579],"yaw":-3.12414,"spawnMask":1},{"id":"creature-47666","entityId":"entry-8893","position":[-1188.5475,-32.1538,-591.9619],"yaw":-3.24631,"spawnMask":1},{"id":"creature-47667","entityId":"entry-8916","position":[-1158.2025,-33.6188,-647.0309],"yaw":-2.18166,"spawnMask":1},{"id":"creature-47668","entityId":"entry-8916","position":[-1158.4345,-34.9651,-642.8749],"yaw":-2.21657,"spawnMask":1},{"id":"creature-47669","entityId":"entry-8895","position":[-1162.9165,-34.988,-637.4739],"yaw":-2.33874,"spawnMask":1},{"id":"creature-47670","entityId":"entry-8896","position":[-1155.9325,-32.1587,-654.8329],"yaw":-2.09439,"spawnMask":1},{"id":"creature-47671","entityId":"entry-8896","position":[-1162.4405,-33.5645,-643.1109],"yaw":-2.26893,"spawnMask":1},{"id":"creature-47672","entityId":"entry-8902","position":[-1165.6175,-32.1654,-649.6099],"yaw":-2.25148,"spawnMask":1},{"id":"creature-47673","entityId":"entry-8902","position":[-1170.2165,-33.25,-635.1829],"yaw":-2.49582,"spawnMask":1},{"id":"creature-47674","entityId":"entry-8904","position":[-1167.5225,-33.4682,-639.5589],"yaw":-2.37365,"spawnMask":1},{"id":"creature-47675","entityId":"entry-8893","position":[-1154.4165,-34.9682,-645.5349],"yaw":-2.14675,"spawnMask":1},{"id":"creature-47676","entityId":"entry-8916","position":[-1102.1275,-34.8795,-551.0879],"yaw":-5.18363,"spawnMask":1},{"id":"creature-47677","entityId":"entry-8916","position":[-1088.1995,-32.1595,-547.3319],"yaw":-5.34071,"spawnMask":1},{"id":"creature-47678","entityId":"entry-8916","position":[-1107.6005,-34.8646,-549.3579],"yaw":-5.09636,"spawnMask":1},{"id":"creature-47679","entityId":"entry-8916","position":[-1110.6365,-33.5311,-544.1369],"yaw":-4.99164,"spawnMask":1},{"id":"creature-47680","entityId":"entry-8916","position":[-1103.5595,-33.5065,-546.8559],"yaw":-5.13127,"spawnMask":1},{"id":"creature-47681","entityId":"entry-8916","position":[-1109.9455,-34.8337,-548.1949],"yaw":-5.06145,"spawnMask":1},{"id":"creature-47682","entityId":"entry-8916","position":[-1094.2415,-32.1428,-542.4309],"yaw":-5.23599,"spawnMask":1},{"id":"creature-47683","entityId":"entry-8893","position":[-1098.1355,-34.9353,-552.6869],"yaw":-5.25344,"spawnMask":1},{"id":"creature-47684","entityId":"entry-8894","position":[-1100.7455,-33.5113,-548.0309],"yaw":-5.18363,"spawnMask":1},{"id":"creature-47685","entityId":"entry-8916","position":[-1099.4265,-32.1452,-654.5999],"yaw":-1.11701,"spawnMask":1},{"id":"creature-47686","entityId":"entry-8916","position":[-1101.0435,-34.9221,-647.4629],"yaw":-1.0821,"spawnMask":1},{"id":"creature-47687","entityId":"entry-8916","position":[-1093.3715,-34.9369,-642.9749],"yaw":-0.942478,"spawnMask":1},{"id":"creature-47688","entityId":"entry-8916","position":[-1088.9015,-32.1691,-652.7419],"yaw":-0.977384,"spawnMask":1},{"id":"creature-47689","entityId":"entry-8916","position":[-1102.4195,-32.1419,-655.4279],"yaw":-1.16937,"spawnMask":1},{"id":"creature-47690","entityId":"entry-8916","position":[-1089.6145,-33.533,-645.2339],"yaw":-0.925025,"spawnMask":1},{"id":"creature-47691","entityId":"entry-8916","position":[-1107.0435,-33.5522,-652.8719],"yaw":-1.41372,"spawnMask":1},{"id":"creature-47692","entityId":"entry-8893","position":[-1104.8085,-34.926,-648.5089],"yaw":-1.15192,"spawnMask":1},{"id":"creature-47693","entityId":"entry-8894","position":[-1094.7255,-33.5797,-648.8769],"yaw":-1.01229,"spawnMask":1},{"id":"creature-47694","entityId":"entry-8916","position":[-1159.8675,-33.6049,-551.6869],"yaw":-4.11898,"spawnMask":1},{"id":"creature-47695","entityId":"entry-8916","position":[-1167.8965,-33.594,-559.9709],"yaw":-3.94444,"spawnMask":1},{"id":"creature-47696","entityId":"entry-8916","position":[-1162.8705,-34.9972,-560.2339],"yaw":-4.01426,"spawnMask":1},{"id":"creature-47697","entityId":"entry-8894","position":[-1168.3615,-32.1478,-553.7779],"yaw":-3.9968,"spawnMask":1},{"id":"creature-47698","entityId":"entry-8896","position":[-1162.5105,-33.5986,-554.8109],"yaw":-4.06662,"spawnMask":1},{"id":"creature-47699","entityId":"entry-8896","position":[-1165.1905,-33.5918,-557.1539],"yaw":-4.01426,"spawnMask":1},{"id":"creature-47700","entityId":"entry-8902","position":[-1173.6175,-32.1469,-559.1739],"yaw":-3.89208,"spawnMask":1},{"id":"creature-47701","entityId":"entry-8902","position":[-1168.0845,-34.9922,-565.5099],"yaw":-3.63029,"spawnMask":1},{"id":"creature-47702","entityId":"entry-8894","position":[-1159.7585,-34.9946,-557.1939],"yaw":-4.08407,"spawnMask":1},{"id":"creature-47704","entityId":"entry-8905","position":[-1488.7625,-58.8295,-800.8959],"yaw":-5.89921,"spawnMask":1},{"id":"creature-47705","entityId":"entry-8897","position":[-1498.7565,-58.9944,-813.5219],"yaw":-3.68265,"spawnMask":1},{"id":"creature-47706","entityId":"entry-8897","position":[-1514.7495,-58.788,-819.7649],"yaw":-4.20624,"spawnMask":1},{"id":"creature-47707","entityId":"entry-8897","position":[-1510.4045,-58.2219,-824.2439],"yaw":-0.663225,"spawnMask":1},{"id":"creature-47708","entityId":"entry-8905","position":[-1474.4845,-52.9596,-835.3769],"yaw":-1.91986,"spawnMask":1},{"id":"creature-47709","entityId":"entry-8897","position":[-1484.6775,-52.8869,-840.4519],"yaw":-1.0472,"spawnMask":1},{"id":"creature-47710","entityId":"entry-8897","position":[-1485.1835,-52.7588,-848.3079],"yaw":-5.07891,"spawnMask":1},{"id":"creature-47711","entityId":"entry-8897","position":[-1481.7785,-52.7198,-847.7509],"yaw":-3.52556,"spawnMask":1},{"id":"creature-47712","entityId":"entry-8905","position":[-1517.9925,-63.5269,-768.9869],"yaw":-3.07178,"spawnMask":1},{"id":"creature-47713","entityId":"entry-8897","position":[-1531.4695,-63.142,-761.6539],"yaw":-0.959931,"spawnMask":1},{"id":"creature-47714","entityId":"entry-8897","position":[-1535.4495,-63.1594,-761.6579],"yaw":-2.05949,"spawnMask":1},{"id":"creature-47715","entityId":"entry-8897","position":[-1525.8455,-65.0673,-778.3709],"yaw":-5.07891,"spawnMask":1},{"id":"creature-47717","entityId":"entry-8905","position":[-1496.3295,-69.4644,-749.3599],"yaw":-3.22886,"spawnMask":1},{"id":"creature-47718","entityId":"entry-8897","position":[-1498.3845,-69.0167,-743.5299],"yaw":-2.05949,"spawnMask":1},{"id":"creature-47719","entityId":"entry-8897","position":[-1508.5895,-69.1686,-738.3929],"yaw":-0.366519,"spawnMask":1},{"id":"creature-47720","entityId":"entry-8897","position":[-1511.0245,-69.5343,-742.3349],"yaw":-0.750492,"spawnMask":1},{"id":"creature-47721","entityId":"entry-8905","position":[-1432.7355,-46.8873,-802.5389],"yaw":-2.25148,"spawnMask":1},{"id":"creature-47722","entityId":"entry-8897","position":[-1431.1925,-47.4509,-819.5939],"yaw":-5.63741,"spawnMask":1},{"id":"creature-47723","entityId":"entry-8897","position":[-1429.2195,-47.6059,-822.2729],"yaw":-4.83456,"spawnMask":1},{"id":"creature-47724","entityId":"entry-8897","position":[-1424.0035,-47.7267,-820.6839],"yaw":-2.6529,"spawnMask":1},{"id":"creature-47725","entityId":"entry-8905","position":[-1515.0475,-64.2803,-787.7989],"yaw":-3.15905,"spawnMask":1},{"id":"creature-47726","entityId":"entry-8897","position":[-1522.7035,-64.6789,-785.7099],"yaw":-0.715585,"spawnMask":1},{"id":"creature-47727","entityId":"entry-8897","position":[-1534.3795,-63.3234,-796.4949],"yaw":-4.55531,"spawnMask":1},{"id":"creature-47728","entityId":"entry-8897","position":[-1531.1195,-62.4513,-801.3699],"yaw":-0.226893,"spawnMask":1},{"id":"creature-47729","entityId":"entry-8905","position":[-1459.8215,-53.9817,-836.3959],"yaw":-0.802851,"spawnMask":1},{"id":"creature-47730","entityId":"entry-8897","position":[-1444.3535,-53.4766,-844.4769],"yaw":-3.76991,"spawnMask":1},{"id":"creature-47731","entityId":"entry-8897","position":[-1444.2795,-53.0682,-848.3339],"yaw":-2.82743,"spawnMask":1},{"id":"creature-47732","entityId":"entry-8897","position":[-1454.9105,-53.6913,-848.5419],"yaw":-3.83972,"spawnMask":1},{"id":"creature-47733","entityId":"entry-9017","position":[-1422.8655,-69.9753,-677.2049],"yaw":-3.10204,"spawnMask":1},{"id":"creature-47734","entityId":"entry-8896","position":[-1160.1655,-41.0995,-696.0579],"yaw":-1.6057,"spawnMask":1},{"id":"creature-47735","entityId":"entry-8896","position":[-1157.8095,-41.0995,-694.4569],"yaw":-0.680678,"spawnMask":1},{"id":"creature-47736","entityId":"entry-8913","position":[-1160.4505,-41.0996,-689.2849],"yaw":-4.59022,"spawnMask":1},{"id":"creature-47737","entityId":"entry-8922","position":[-1162.1285,-41.1081,-690.8769],"yaw":-3.85718,"spawnMask":1},{"id":"creature-47738","entityId":"entry-8911","position":[-1227.4705,-41.1554,-689.9609],"yaw":-3.25592,"spawnMask":1},{"id":"creature-47739","entityId":"entry-8896","position":[-1322.3425,-41.2742,-627.4129],"yaw":-5.68977,"spawnMask":1},{"id":"creature-47740","entityId":"entry-8896","position":[-1327.6285,-41.2801,-629.5459],"yaw":-3.38594,"spawnMask":1},{"id":"creature-47741","entityId":"entry-8913","position":[-1325.2705,-41.2806,-633.0709],"yaw":-1.3439,"spawnMask":1},{"id":"creature-47742","entityId":"entry-8914","position":[-1319.4025,-41.2751,-631.3199],"yaw":-0.069813,"spawnMask":1},{"id":"creature-47743","entityId":"entry-8910","position":[-1245.5465,-40.8642,-679.0679],"yaw":-6.05629,"spawnMask":1},{"id":"creature-47744","entityId":"entry-8910","position":[-1247.1015,-40.8652,-696.3799],"yaw":-0.418879,"spawnMask":1},{"id":"creature-47745","entityId":"entry-8896","position":[-1339.2815,-41.2851,-706.1919],"yaw":-5.32325,"spawnMask":1},{"id":"creature-47746","entityId":"entry-8896","position":[-1340.2365,-41.2851,-714.9169],"yaw":-1.64061,"spawnMask":1},{"id":"creature-47747","entityId":"entry-8896","position":[-1342.7795,-41.2851,-713.5819],"yaw":-1.98968,"spawnMask":1},{"id":"creature-47748","entityId":"entry-8922","position":[-1351.5025,-41.2851,-708.7759],"yaw":-3.19395,"spawnMask":1},{"id":"creature-47749","entityId":"entry-8896","position":[-1321.8845,-41.2873,-712.3399],"yaw":-4.53786,"spawnMask":1},{"id":"creature-47750","entityId":"entry-8896","position":[-1325.2035,-41.2856,-717.2119],"yaw":-2.9147,"spawnMask":1},{"id":"creature-47751","entityId":"entry-8913","position":[-1317.7495,-41.288,-713.6759],"yaw":-5.79449,"spawnMask":1},{"id":"creature-47754","entityId":"entry-8922","position":[-1322.2675,-41.2859,-719.6129],"yaw":-1.8675,"spawnMask":1},{"id":"creature-47755","entityId":"entry-8894","position":[-1294.1585,-41.3532,-663.2199],"yaw":-5.67232,"spawnMask":1},{"id":"creature-47757","entityId":"entry-8892","position":[-1326.3425,-41.2071,-669.2599],"yaw":-4.36332,"spawnMask":1},{"id":"creature-47758","entityId":"entry-8896","position":[-1295.9305,-41.3924,-669.8819],"yaw":-5.60251,"spawnMask":1},{"id":"creature-47759","entityId":"entry-8896","position":[-1302.9865,-41.3455,-664.6529],"yaw":-1.50098,"spawnMask":1},{"id":"creature-47760","entityId":"entry-8913","position":[-1300.8835,-41.3201,-659.2219],"yaw":-0.802851,"spawnMask":1},{"id":"creature-47761","entityId":"entry-8922","position":[-1303.7935,-41.2951,-655.3489],"yaw":-4.53786,"spawnMask":1},{"id":"creature-47762","entityId":"entry-8896","position":[-1382.7525,-48.2622,-710.2819],"yaw":-5.37561,"spawnMask":1},{"id":"creature-47763","entityId":"entry-8896","position":[-1396.4775,-47.9278,-705.5039],"yaw":-5.58505,"spawnMask":1},{"id":"creature-47764","entityId":"entry-8896","position":[-1384.7545,-48.1407,-711.7219],"yaw":-2.68781,"spawnMask":1},{"id":"creature-47765","entityId":"entry-8913","position":[-1395.5715,-47.9412,-717.1689],"yaw":-0.331613,"spawnMask":1},{"id":"creature-47766","entityId":"entry-8913","position":[-1397.7195,-47.9278,-716.4809],"yaw":-3.42085,"spawnMask":1},{"id":"creature-47767","entityId":"entry-8914","position":[-1398.3125,-47.9278,-706.8389],"yaw":-2.58309,"spawnMask":1},{"id":"creature-47771","entityId":"entry-9024","position":[-1059.4875,-41.0931,-654.0789],"yaw":-2.23402,"spawnMask":1},{"id":"creature-47772","entityId":"entry-8913","position":[-1060.0275,-41.0931,-657.1159],"yaw":-2.09439,"spawnMask":1},{"id":"creature-47773","entityId":"entry-8913","position":[-1063.8305,-41.0931,-655.1329],"yaw":-2.68781,"spawnMask":1},{"id":"creature-47774","entityId":"entry-9041","position":[-1352.7065,-48.1828,-752.4269],"yaw":-0.785398,"spawnMask":1},{"id":"creature-47775","entityId":"entry-9042","position":[-1351.0255,-48.1827,-750.5329],"yaw":-0.750492,"spawnMask":1},{"id":"creature-47778","entityId":"entry-9156","position":[-1539.0695,-59.3789,-649.1659],"yaw":-2.30383,"spawnMask":1},{"id":"creature-47779","entityId":"entry-12944","position":[-1441.8395,-41.6955,-596.0049],"yaw":-3.735,"spawnMask":1},{"id":"creature-47781","entityId":"entry-8895","position":[-1263.5995,-70.3929,-252.1119],"yaw":-0.244346,"spawnMask":1},{"id":"creature-47782","entityId":"entry-8893","position":[-1264.2745,-70.3318,-246.3369],"yaw":-3.28122,"spawnMask":1},{"id":"creature-47783","entityId":"entry-8894","position":[-1269.2795,-70.3971,-248.5099],"yaw":-3.28122,"spawnMask":1},{"id":"creature-47784","entityId":"entry-8892","position":[-1268.0655,-70.2593,-239.3669],"yaw":-3.28122,"spawnMask":1},{"id":"creature-47785","entityId":"entry-8892","position":[-1273.8215,-70.2712,-242.1379],"yaw":-3.28122,"spawnMask":1},{"id":"creature-47786","entityId":"entry-8895","position":[-1197.6195,-71.3063,-271.5959],"yaw":-4.17134,"spawnMask":1},{"id":"creature-47787","entityId":"entry-8893","position":[-1195.0245,-71.3066,-269.5639],"yaw":-4.18879,"spawnMask":1},{"id":"creature-47788","entityId":"entry-8893","position":[-1200.3265,-71.3061,-273.0789],"yaw":-4.13643,"spawnMask":1},{"id":"creature-47789","entityId":"entry-8894","position":[-1203.1275,-71.3059,-274.6169],"yaw":-4.11898,"spawnMask":1},{"id":"creature-47790","entityId":"entry-8894","position":[-1192.3805,-71.3069,-267.9649],"yaw":-4.20624,"spawnMask":1},{"id":"creature-47791","entityId":"entry-8921","position":[-1177.2825,-71.9445,-267.6849],"yaw":-4.10217,"spawnMask":1},{"id":"creature-47792","entityId":"entry-8921","position":[-1138.2825,-72.0984,-396.9917],"yaw":-2.76571,"spawnMask":1},{"id":"creature-47793","entityId":"entry-8910","position":[-1170.3695,-71.3238,-412.8573],"yaw":-5.11964,"spawnMask":1},{"id":"creature-47794","entityId":"entry-8921","position":[-1167.2855,-71.9446,-463.3352],"yaw":-6.06573,"spawnMask":1},{"id":"creature-47796","entityId":"entry-8910","position":[-1319.2945,-71.4618,-557.5759],"yaw":-2.58309,"spawnMask":1},{"id":"creature-47797","entityId":"entry-8910","position":[-1296.6245,-71.4252,-583.8769],"yaw":-2.16421,"spawnMask":1},{"id":"creature-47798","entityId":"entry-8921","position":[-1170.5875,-71.8579,-464.7891],"yaw":-0.191986,"spawnMask":1},{"id":"creature-47799","entityId":"entry-8895","position":[-1211.0865,-70.6032,-474.3321],"yaw":-2.3911,"spawnMask":1},{"id":"creature-47800","entityId":"entry-8893","position":[-1209.9835,-70.5896,-475.8722],"yaw":-2.36762,"spawnMask":1},{"id":"creature-47801","entityId":"entry-8894","position":[-1212.4505,-70.6063,-472.8694],"yaw":-2.25304,"spawnMask":1},{"id":"creature-47802","entityId":"entry-8893","position":[-1209.6325,-70.5434,-477.7006],"yaw":-2.80691,"spawnMask":1},{"id":"creature-47803","entityId":"entry-8892","position":[-1214.0375,-70.6201,-470.8426],"yaw":-2.3911,"spawnMask":1},{"id":"creature-47804","entityId":"entry-8912","position":[-903.4315,-68.9612,-603.8349],"yaw":-0.366519,"spawnMask":1},{"id":"creature-47805","entityId":"entry-8890","position":[-938.1335,-63.4995,-612.3299],"yaw":-0.820305,"spawnMask":1},{"id":"creature-47806","entityId":"entry-8921","position":[-929.0775,-63.1562,-528.4969],"yaw":-2.58309,"spawnMask":1},{"id":"creature-47807","entityId":"entry-8912","position":[-960.4685,-63.4313,-531.2399],"yaw":-1.41372,"spawnMask":1},{"id":"creature-47808","entityId":"entry-8921","position":[-906.1575,-62.736,-486.4545],"yaw":-1.36136,"spawnMask":1},{"id":"creature-47809","entityId":"entry-8921","position":[-936.5365,-61.9437,-461.1659],"yaw":-0.628253,"spawnMask":1},{"id":"creature-47810","entityId":"entry-8912","position":[-850.0865,-76.1217,-621.0819],"yaw":-5.14872,"spawnMask":1},{"id":"creature-47811","entityId":"entry-8890","position":[-824.7595,-68.0359,-525.6909],"yaw":-4.15388,"spawnMask":1},{"id":"creature-47812","entityId":"entry-8921","position":[-894.7605,-71.2293,-624.6879],"yaw":-4.50295,"spawnMask":1},{"id":"creature-47813","entityId":"entry-8890","position":[-866.4835,-76.2238,-607.1189],"yaw":-2.25148,"spawnMask":1},{"id":"creature-47814","entityId":"entry-8892","position":[-1177.3395,-73.7128,-599.9849],"yaw":-4.86947,"spawnMask":1},{"id":"creature-47815","entityId":"entry-8891","position":[-1179.4335,-80.6886,-634.3069],"yaw":-5.3058,"spawnMask":1},{"id":"creature-47816","entityId":"entry-8891","position":[-1163.4515,-68.7784,-563.1969],"yaw":-4.81711,"spawnMask":1},{"id":"creature-47817","entityId":"entry-8891","position":[-1048.7135,-63.4444,-652.1399],"yaw":-1.97222,"spawnMask":1},{"id":"creature-47818","entityId":"entry-8892","position":[-1118.2595,-66.6369,-547.8489],"yaw":-5.79449,"spawnMask":1},{"id":"creature-47819","entityId":"entry-8891","position":[-1188.4675,-70.7272,-560.1649],"yaw":-5.51524,"spawnMask":1},{"id":"creature-47820","entityId":"entry-8892","position":[-1118.5845,-80.5807,-697.7549],"yaw":-3.00197,"spawnMask":1},{"id":"creature-47821","entityId":"entry-8892","position":[-1164.9455,-69.1351,-566.8869],"yaw":-2.81399,"spawnMask":1},{"id":"creature-47822","entityId":"entry-8892","position":[-1196.0525,-76.2611,-608.7139],"yaw":-1.3439,"spawnMask":1},{"id":"creature-47823","entityId":"entry-8892","position":[-1130.0605,-81.3504,-673.1679],"yaw":-0.20944,"spawnMask":1},{"id":"creature-47824","entityId":"entry-8890","position":[-1022.9435,-60.4559,-470.2084],"yaw":-0.750492,"spawnMask":1},{"id":"creature-47825","entityId":"entry-8890","position":[-1033.6535,-60.3624,-534.8889],"yaw":-3.3539,"spawnMask":1},{"id":"creature-47826","entityId":"entry-8921","position":[-1035.5295,-60.067,-536.5169],"yaw":-3.60864,"spawnMask":1},{"id":"creature-47827","entityId":"entry-8921","position":[-1036.4155,-60.0695,-533.8309],"yaw":-3.60864,"spawnMask":1},{"id":"creature-47828","entityId":"entry-8889","position":[-1002.8485,-60.9102,-498.4753],"yaw":-5.23599,"spawnMask":1},{"id":"creature-47829","entityId":"entry-8890","position":[-1040.2845,-60.6673,-533.2649],"yaw":-1.90241,"spawnMask":1},{"id":"creature-47830","entityId":"entry-8921","position":[-1048.8695,-60.0862,-478.1713],"yaw":-2.3229,"spawnMask":1},{"id":"creature-47831","entityId":"entry-8921","position":[-1049.4875,-60.1069,-481.7588],"yaw":-2.20067,"spawnMask":1},{"id":"creature-47832","entityId":"entry-8921","position":[-1052.3145,-60.1947,-481.853],"yaw":-2.16334,"spawnMask":1},{"id":"creature-47833","entityId":"entry-8892","position":[-1160.0725,-43.8207,-491.2124],"yaw":-1.22173,"spawnMask":1},{"id":"creature-47834","entityId":"entry-8892","position":[-1088.0785,-43.0128,-496.5435],"yaw":-1.93731,"spawnMask":1},{"id":"creature-47835","entityId":"entry-8892","position":[-1163.6555,-43.715,-484.879],"yaw":-4.03171,"spawnMask":1},{"id":"creature-47837","entityId":"entry-8891","position":[-1197.9495,-44.2255,-552.4789],"yaw":-4.15388,"spawnMask":1},{"id":"creature-47838","entityId":"entry-8892","position":[-1221.0295,-44.4233,-536.8789],"yaw":-2.21657,"spawnMask":1},{"id":"creature-47839","entityId":"entry-8891","position":[-1154.8805,-58.0513,-462.3412],"yaw":-0.366519,"spawnMask":1},{"id":"creature-47840","entityId":"entry-8891","position":[-1141.5375,-43.9364,-510.0742],"yaw":-3.08923,"spawnMask":1},{"id":"creature-47841","entityId":"entry-8892","position":[-1152.4495,-44.1811,-530.4729],"yaw":-5.60251,"spawnMask":1},{"id":"creature-47842","entityId":"entry-8891","position":[-1098.6855,-43.0128,-510.9079],"yaw":-6.0912,"spawnMask":1},{"id":"creature-47843","entityId":"entry-8899","position":[-1212.1845,-58.0505,-419.7587],"yaw":-2.56563,"spawnMask":1},{"id":"creature-47844","entityId":"entry-8911","position":[-1221.5675,-43.6522,-422.4272],"yaw":-4.60767,"spawnMask":1},{"id":"creature-47845","entityId":"entry-8911","position":[-1245.2735,-43.4327,-378.9116],"yaw":-1.27409,"spawnMask":1},{"id":"creature-47846","entityId":"entry-8898","position":[-1218.5455,-43.459,-352.7729],"yaw":-5.13127,"spawnMask":1},{"id":"creature-47847","entityId":"entry-8899","position":[-1262.1695,-44.1418,-424.6975],"yaw":-0.401426,"spawnMask":1},{"id":"creature-47848","entityId":"entry-8898","position":[-1224.0525,-43.6633,-422.8044],"yaw":-4.93928,"spawnMask":1},{"id":"creature-47849","entityId":"entry-8898","position":[-1231.2965,-43.451,-384.6502],"yaw":-4.69494,"spawnMask":1},{"id":"creature-47850","entityId":"entry-8911","position":[-1208.1995,-58.0287,-354.3329],"yaw":-4.85202,"spawnMask":1},{"id":"creature-47868","entityId":"entry-8899","position":[-1291.4745,-44.2255,-459.583],"yaw":-1.91986,"spawnMask":1},{"id":"creature-47877","entityId":"entry-8899","position":[-1266.3785,-44.2255,-426.9043],"yaw":-1.8675,"spawnMask":1},{"id":"creature-47878","entityId":"entry-8902","position":[-1431.3555,-47.9278,-643.1999],"yaw":-4.74729,"spawnMask":1},{"id":"creature-47881","entityId":"entry-8902","position":[-1431.1535,-48.1103,-637.7859],"yaw":-5.44543,"spawnMask":1},{"id":"creature-47882","entityId":"entry-8902","position":[-1434.7015,-47.9716,-640.4509],"yaw":-2.67035,"spawnMask":1},{"id":"creature-47948","entityId":"entry-8900","position":[-1427.3855,-47.9278,-645.8519],"yaw":-1.53589,"spawnMask":1},{"id":"creature-47950","entityId":"entry-8911","position":[-1427.4155,-47.9278,-642.2259],"yaw":-4.76475,"spawnMask":1},{"id":"creature-47951","entityId":"entry-8911","position":[-1431.3665,-47.9278,-648.6889],"yaw":-1.5708,"spawnMask":1},{"id":"creature-47952","entityId":"entry-8911","position":[-1416.0595,-114.1951,-738.0539],"yaw":-5.21696,"spawnMask":1},{"id":"creature-47995","entityId":"entry-8911","position":[-1539.0495,-102.9381,-646.0389],"yaw":-0.180177,"spawnMask":1},{"id":"creature-47996","entityId":"entry-8911","position":[-1739.3095,-100.1011,-852.1839],"yaw":-1.85005,"spawnMask":1},{"id":"creature-47997","entityId":"entry-8911","position":[-1647.5095,-118.4171,-768.6539],"yaw":-2.67035,"spawnMask":1},{"id":"creature-48037","entityId":"entry-8911","position":[-1680.2195,-103.6761,-734.0529],"yaw":-0.855211,"spawnMask":1},{"id":"creature-48039","entityId":"entry-8911","position":[-1381.0025,-114.1971,-691.8239],"yaw":-5.61394,"spawnMask":1},{"id":"creature-48040","entityId":"entry-8911","position":[-1541.4895,-102.9381,-649.4999],"yaw":-2.11793,"spawnMask":1},{"id":"creature-48091","entityId":"entry-8911","position":[-1694.3995,-102.6911,-737.3979],"yaw":-4.61086,"spawnMask":1},{"id":"creature-48092","entityId":"entry-9547","position":[-1406.3665,-41.6955,-610.7649],"yaw":-4.85932,"spawnMask":1},{"id":"creature-48093","entityId":"entry-9547","position":[-1399.4235,-47.7489,-577.5149],"yaw":-5.38127,"spawnMask":1},{"id":"creature-48094","entityId":"entry-9545","position":[-1387.7565,-41.6955,-606.5689],"yaw":-4.80094,"spawnMask":1},{"id":"creature-48152","entityId":"entry-9545","position":[-1395.8295,-47.7487,-552.3229],"yaw":-3.18714,"spawnMask":1},{"id":"creature-48153","entityId":"entry-9554","position":[-1355.8125,-47.745,-586.3529],"yaw":-2.19405,"spawnMask":1},{"id":"creature-48168","entityId":"entry-9545","position":[-1413.3215,-40.7927,-619.9119],"yaw":-0.521002,"spawnMask":1},{"id":"creature-48169","entityId":"entry-9547","position":[-1404.7905,-47.7495,-571.8189],"yaw":-6.03025,"spawnMask":1},{"id":"creature-48170","entityId":"entry-9554","position":[-1403.8255,-41.6955,-620.6629],"yaw":-3.2657,"spawnMask":1},{"id":"creature-48171","entityId":"entry-9547","position":[-1401.8515,-47.7504,-547.8159],"yaw":-4.36103,"spawnMask":1},{"id":"creature-48172","entityId":"entry-9545","position":[-1420.5005,-41.6955,-613.0429],"yaw":-3.79794,"spawnMask":1},{"id":"creature-48173","entityId":"entry-8901","position":[-1910.5495,-92.7497,-842.7089],"yaw":-1.51663,"spawnMask":1},{"id":"creature-48174","entityId":"entry-8901","position":[-1911.2795,-92.7497,-844.6979],"yaw":-1.51698,"spawnMask":1},{"id":"creature-48203","entityId":"entry-8901","position":[-1908.7495,-92.7497,-846.1379],"yaw":-1.654,"spawnMask":1},{"id":"creature-48209","entityId":"entry-8901","position":[-1912.8995,-92.7497,-843.8349],"yaw":-1.52719,"spawnMask":1},{"id":"creature-71997","entityId":"entry-9541","position":[-1408.3375,-47.8342,-565.4219],"yaw":-0.57177,"spawnMask":1},{"id":"creature-71998","entityId":"entry-9541","position":[-1406.2805,-47.8342,-561.9449],"yaw":-0.499513,"spawnMask":1},{"id":"creature-71999","entityId":"entry-9541","position":[-1405.8545,-47.8337,-564.4829],"yaw":-0.339292,"spawnMask":1},{"id":"creature-72000","entityId":"entry-9537","position":[-1407.4405,-47.8351,-563.2229],"yaw":-0.527783,"spawnMask":1},{"id":"creature-88903","entityId":"entry-8901","position":[-1913.2595,-92.7497,-847.7319],"yaw":-1.63536,"spawnMask":1},{"id":"creature-88904","entityId":"entry-8901","position":[-1909.2795,-92.7497,-842.8809],"yaw":-1.58454,"spawnMask":1},{"id":"creature-88905","entityId":"entry-8901","position":[-2003.8595,-90.0462,-839.3329],"yaw":-4.90438,"spawnMask":1},{"id":"creature-88906","entityId":"entry-8901","position":[-2001.8195,-90.0462,-841.2779],"yaw":-5.95157,"spawnMask":1},{"id":"creature-88907","entityId":"entry-8901","position":[-2004.2595,-90.0462,-846.3009],"yaw":-1.55334,"spawnMask":1},{"id":"creature-88908","entityId":"entry-8901","position":[-1996.6095,-90.0462,-852.6989],"yaw":-3.59538,"spawnMask":1},{"id":"creature-88909","entityId":"entry-8901","position":[-1994.6095,-90.0444,-856.7629],"yaw":-1.79769,"spawnMask":1},{"id":"creature-88911","entityId":"entry-8901","position":[-1986.0095,-90.0341,-865.1569],"yaw":-2.35619,"spawnMask":1},{"id":"creature-90487","entityId":"entry-8901","position":[-2006.4095,-90.0462,-843.2109],"yaw":-2.67035,"spawnMask":1},{"id":"creature-90489","entityId":"entry-8901","position":[-1984.1895,-90.0271,-862.1329],"yaw":-5.13127,"spawnMask":1},{"id":"creature-90491","entityId":"entry-8901","position":[-1991.3095,-90.0385,-854.6059],"yaw":-0.226893,"spawnMask":1},{"id":"creature-90513","entityId":"entry-8901","position":[-1992.8095,-90.0412,-851.2869],"yaw":-5.11381,"spawnMask":1},{"id":"creature-90514","entityId":"entry-8911","position":[-1859.6095,-87.8754,-909.4669],"yaw":-1.46608,"spawnMask":1},{"id":"creature-90515","entityId":"entry-8901","position":[-1914.3895,-92.6664,-853.0019],"yaw":-4.5204,"spawnMask":1},{"id":"creature-90516","entityId":"entry-8901","position":[-1901.7595,-92.6664,-853.4249],"yaw":-0.471239,"spawnMask":1},{"id":"creature-90517","entityId":"entry-8901","position":[-1916.8595,-92.6664,-851.6839],"yaw":-0.558505,"spawnMask":1},{"id":"creature-90519","entityId":"entry-8901","position":[-1916.7095,-92.6664,-855.8949],"yaw":-2.09439,"spawnMask":1},{"id":"creature-90520","entityId":"entry-8901","position":[-1901.6795,-92.6664,-839.1599],"yaw":-0.558505,"spawnMask":1},{"id":"creature-90521","entityId":"entry-8901","position":[-1900.0195,-92.6664,-836.3969],"yaw":-1.41372,"spawnMask":1},{"id":"creature-90522","entityId":"entry-8901","position":[-1919.6695,-92.6664,-854.5779],"yaw":-4.17134,"spawnMask":1},{"id":"creature-90523","entityId":"entry-8901","position":[-1904.2095,-92.6664,-836.2839],"yaw":-2.51327,"spawnMask":1},{"id":"creature-90524","entityId":"entry-8901","position":[-1904.6895,-92.6664,-856.7069],"yaw":-5.55015,"spawnMask":1},{"id":"creature-90525","entityId":"entry-8901","position":[-1900.6395,-92.6664,-855.3849],"yaw":-1.97222,"spawnMask":1},{"id":"creature-90526","entityId":"entry-8901","position":[-1859.2895,-89.9997,-858.7849],"yaw":-4.46804,"spawnMask":1},{"id":"creature-90527","entityId":"entry-8901","position":[-1856.0895,-90.0063,-853.7569],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90528","entityId":"entry-8901","position":[-1879.9195,-90.0218,-856.3109],"yaw":-6.14356,"spawnMask":1},{"id":"creature-90529","entityId":"entry-8901","position":[-1841.0595,-90.0275,-871.7629],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90530","entityId":"entry-8901","position":[-1860.3495,-90.0046,-853.9669],"yaw":-6.03884,"spawnMask":1},{"id":"creature-90531","entityId":"entry-8901","position":[-1842.7995,-90.0005,-852.2989],"yaw":-2.47837,"spawnMask":1},{"id":"creature-90532","entityId":"entry-8901","position":[-1843.6795,-90.0187,-868.9459],"yaw":-5.48033,"spawnMask":1},{"id":"creature-90533","entityId":"entry-8901","position":[-1843.5395,-90.001,-848.9259],"yaw":-6.00393,"spawnMask":1},{"id":"creature-90534","entityId":"entry-8901","position":[-1846.3095,-89.9916,-849.9419],"yaw":-1.53589,"spawnMask":1},{"id":"creature-90535","entityId":"entry-8901","position":[-1875.4795,-90.0124,-859.9549],"yaw":-2.54818,"spawnMask":1},{"id":"creature-90536","entityId":"entry-8901","position":[-1945.6395,-90.01,-843.7809],"yaw":-1.85005,"spawnMask":1},{"id":"creature-90537","entityId":"entry-8901","position":[-1943.1295,-90.0145,-842.8709],"yaw":-1.06465,"spawnMask":1},{"id":"creature-90538","entityId":"entry-8901","position":[-1944.6695,-90.0184,-839.3279],"yaw":-4.60767,"spawnMask":1},{"id":"creature-90539","entityId":"entry-8901","position":[-1962.0695,-90.009,-847.8489],"yaw":-3.31613,"spawnMask":1},{"id":"creature-90540","entityId":"entry-8901","position":[-1958.0895,-90.0098,-821.1559],"yaw":-0.453786,"spawnMask":1},{"id":"creature-90541","entityId":"entry-8901","position":[-1961.6195,-90.0088,-818.7449],"yaw":-3.90954,"spawnMask":1},{"id":"creature-90542","entityId":"entry-8901","position":[-1969.1295,-90.0037,-835.2759],"yaw":-3.00197,"spawnMask":1},{"id":"creature-90543","entityId":"entry-8901","position":[-1964.7495,-90.0035,-832.9099],"yaw":-5.74213,"spawnMask":1},{"id":"creature-90544","entityId":"entry-8901","position":[-1964.6995,-89.9974,-836.4509],"yaw":-0.331613,"spawnMask":1},{"id":"creature-90545","entityId":"entry-8901","position":[-1958.9295,-90.0103,-848.0259],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90546","entityId":"entry-8901","position":[-1927.9195,-90.0184,-952.0389],"yaw":-5.65487,"spawnMask":1},{"id":"creature-90547","entityId":"entry-8901","position":[-1925.6895,-90.0036,-931.9159],"yaw":-0.977384,"spawnMask":1},{"id":"creature-90548","entityId":"entry-8901","position":[-1925.2195,-90.0047,-947.2649],"yaw":-5.0091,"spawnMask":1},{"id":"creature-90549","entityId":"entry-8901","position":[-1928.7495,-90.0036,-929.6119],"yaw":-5.70723,"spawnMask":1},{"id":"creature-90550","entityId":"entry-8901","position":[-1928.3495,-90.0036,-935.0619],"yaw":-3.1765,"spawnMask":1},{"id":"creature-90551","entityId":"entry-8901","position":[-1944.3295,-90.0141,-930.8749],"yaw":-2.96706,"spawnMask":1},{"id":"creature-90552","entityId":"entry-8901","position":[-1941.9995,-90.0231,-953.6729],"yaw":-0.244346,"spawnMask":1},{"id":"creature-90553","entityId":"entry-8901","position":[-1948.9095,-90.0244,-934.9819],"yaw":-0.610865,"spawnMask":1},{"id":"creature-90554","entityId":"entry-8901","position":[-1929.3595,-90.0058,-947.6449],"yaw":-3.71755,"spawnMask":1},{"id":"creature-90555","entityId":"entry-8901","position":[-1945.0695,-90.0252,-950.4489],"yaw":-3.92699,"spawnMask":1},{"id":"creature-90556","entityId":"entry-8901","position":[-1892.9195,-90.018,-784.9579],"yaw":-3.12414,"spawnMask":1},{"id":"creature-90557","entityId":"entry-8901","position":[-1874.5395,-89.9949,-769.3119],"yaw":-1.20428,"spawnMask":1},{"id":"creature-90558","entityId":"entry-8901","position":[-1875.0595,-90.0246,-753.1519],"yaw":-2.46091,"spawnMask":1},{"id":"creature-90559","entityId":"entry-8901","position":[-1891.7895,-90.0162,-788.1699],"yaw":-0.925025,"spawnMask":1},{"id":"creature-90560","entityId":"entry-8901","position":[-1874.2895,-90.0326,-750.9789],"yaw":-5.13127,"spawnMask":1},{"id":"creature-90561","entityId":"entry-8901","position":[-1887.7795,-90.0028,-767.4309],"yaw":-4.85202,"spawnMask":1},{"id":"creature-90562","entityId":"entry-8901","position":[-1875.8195,-89.9973,-787.1399],"yaw":-2.00713,"spawnMask":1},{"id":"creature-90563","entityId":"entry-8901","position":[-1877.1095,-89.995,-784.4319],"yaw":-5.95157,"spawnMask":1},{"id":"creature-90564","entityId":"entry-8901","position":[-1891.3395,-90.0006,-771.2399],"yaw":-3.56047,"spawnMask":1},{"id":"creature-90565","entityId":"entry-8901","position":[-1873.5895,-90.0031,-773.0839],"yaw":-5.06145,"spawnMask":1},{"id":"creature-90566","entityId":"entry-8901","position":[-1818.2095,-90.0462,-853.6839],"yaw":-1.55334,"spawnMask":1},{"id":"creature-90567","entityId":"entry-8901","position":[-1823.0795,-90.0462,-859.0899],"yaw":-3.35103,"spawnMask":1},{"id":"creature-90568","entityId":"entry-8901","position":[-1819.7695,-90.0462,-859.4919],"yaw":-6.26573,"spawnMask":1},{"id":"creature-90569","entityId":"entry-8901","position":[-1827.5695,-90.0404,-851.8219],"yaw":-3.36848,"spawnMask":1},{"id":"creature-90570","entityId":"entry-8901","position":[-1813.3795,-90.0462,-847.2049],"yaw":-3.03687,"spawnMask":1},{"id":"creature-90571","entityId":"entry-8901","position":[-1823.6395,-90.0462,-853.0679],"yaw":-0.541052,"spawnMask":1},{"id":"creature-90572","entityId":"entry-8901","position":[-1826.4495,-90.0424,-850.3729],"yaw":-3.97935,"spawnMask":1},{"id":"creature-90573","entityId":"entry-8901","position":[-1811.0095,-90.0462,-849.2729],"yaw":-1.85005,"spawnMask":1},{"id":"creature-90574","entityId":"entry-8901","position":[-1818.8495,-90.0462,-851.8219],"yaw":-4.13643,"spawnMask":1},{"id":"creature-90575","entityId":"entry-8901","position":[-1809.4795,-90.0462,-846.2339],"yaw":-5.60251,"spawnMask":1},{"id":"creature-90576","entityId":"entry-8901","position":[-1975.3895,-90.0293,-919.6959],"yaw":-4.85202,"spawnMask":1},{"id":"creature-90577","entityId":"entry-8901","position":[-1978.6595,-90.0349,-922.4189],"yaw":-1.88496,"spawnMask":1},{"id":"creature-90578","entityId":"entry-8901","position":[-1962.1895,-90.0375,-938.7719],"yaw":-5.02655,"spawnMask":1},{"id":"creature-90579","entityId":"entry-8901","position":[-1974.4395,-90.0355,-935.5099],"yaw":-1.48353,"spawnMask":1},{"id":"creature-90580","entityId":"entry-8901","position":[-1978.4195,-90.0364,-933.1999],"yaw":-5.88176,"spawnMask":1},{"id":"creature-90581","entityId":"entry-8901","position":[-1961.2295,-90.0293,-934.1199],"yaw":-0.383972,"spawnMask":1},{"id":"creature-90582","entityId":"entry-8901","position":[-1975.7895,-90.0229,-907.2129],"yaw":-2.40855,"spawnMask":1},{"id":"creature-90583","entityId":"entry-8901","position":[-1978.0895,-90.0387,-937.2769],"yaw":-6.0912,"spawnMask":1},{"id":"creature-90584","entityId":"entry-8901","position":[-1979.4795,-90.0299,-905.4839],"yaw":-1.06465,"spawnMask":1},{"id":"creature-90585","entityId":"entry-8901","position":[-1979.7595,-90.037,-918.8209],"yaw":-0.314159,"spawnMask":1},{"id":"creature-90586","entityId":"entry-8906","position":[-1336.4605,-51.6464,-358.0275],"yaw":-3.1765,"spawnMask":1},{"id":"creature-90587","entityId":"entry-8900","position":[-1333.8565,-51.6555,-359.3007],"yaw":-0.139626,"spawnMask":1},{"id":"creature-90588","entityId":"entry-8920","position":[-1317.6875,-51.7269,-410.6476],"yaw":-3.01942,"spawnMask":1},{"id":"creature-90589","entityId":"entry-8920","position":[-1308.0345,-51.7269,-362.6224],"yaw":-4.7822,"spawnMask":1},{"id":"creature-90590","entityId":"entry-8906","position":[-1308.5315,-51.7269,-365.1877],"yaw":-3.19395,"spawnMask":1},{"id":"creature-90591","entityId":"entry-8920","position":[-1330.0935,-51.7394,-375.0172],"yaw":-5.67365,"spawnMask":1},{"id":"creature-90592","entityId":"entry-8920","position":[-1322.8575,-51.7061,-444.5439],"yaw":-5.28835,"spawnMask":1},{"id":"creature-90593","entityId":"entry-8900","position":[-1303.4925,-51.8069,-419.7624],"yaw":-1.59027,"spawnMask":1},{"id":"creature-90594","entityId":"entry-8900","position":[-1289.4855,-51.6933,-354.528],"yaw":-3.24631,"spawnMask":1},{"id":"creature-90595","entityId":"entry-8906","position":[-1309.5635,-51.7264,-419.5893],"yaw":-1.72788,"spawnMask":1},{"id":"creature-90596","entityId":"entry-8904","position":[-1935.3695,-89.9734,-1232.0509],"yaw":-2.93215,"spawnMask":1},{"id":"creature-90597","entityId":"entry-8904","position":[-1924.7095,-89.9733,-1226.5329],"yaw":-5.67232,"spawnMask":1},{"id":"creature-90598","entityId":"entry-8915","position":[-1927.8595,-89.9734,-1234.1169],"yaw":-0.698132,"spawnMask":1},{"id":"creature-90599","entityId":"entry-8915","position":[-1935.3695,-89.9734,-1226.6819],"yaw":-3.97935,"spawnMask":1},{"id":"creature-90600","entityId":"entry-8903","position":[-1884.2495,-83.1387,-1206.1569],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90601","entityId":"entry-8899","position":[-1910.3095,-90.7153,-1203.2009],"yaw":-5.88176,"spawnMask":1},{"id":"creature-90602","entityId":"entry-8904","position":[-1941.0695,-83.1447,-1209.8239],"yaw":-3.66519,"spawnMask":1},{"id":"creature-90603","entityId":"entry-8904","position":[-1935.8195,-83.1405,-1208.2839],"yaw":-5.18363,"spawnMask":1},{"id":"creature-90604","entityId":"entry-8915","position":[-1941.1895,-83.1443,-1214.2479],"yaw":-2.54818,"spawnMask":1},{"id":"creature-90605","entityId":"entry-8915","position":[-1935.8395,-83.1429,-1211.6519],"yaw":-6.16101,"spawnMask":1},{"id":"creature-90606","entityId":"entry-8904","position":[-1936.0495,-89.9734,-1132.6839],"yaw":-3.92699,"spawnMask":1},{"id":"creature-90607","entityId":"entry-8904","position":[-1930.6895,-89.9734,-1138.3399],"yaw":-0.436332,"spawnMask":1},{"id":"creature-90608","entityId":"entry-8904","position":[-1937.4595,-89.9734,-1138.6199],"yaw":-2.75762,"spawnMask":1},{"id":"creature-90609","entityId":"entry-8904","position":[-1933.7595,-89.9734,-1141.5169],"yaw":-1.32645,"spawnMask":1},{"id":"creature-90610","entityId":"entry-8915","position":[-1931.8495,-89.9734,-1133.4959],"yaw":-5.25344,"spawnMask":1},{"id":"creature-90611","entityId":"entry-8899","position":[-1938.2695,-83.1442,-1153.4239],"yaw":-5.61996,"spawnMask":1},{"id":"creature-90612","entityId":"entry-8904","position":[-1882.2495,-89.9734,-1142.8679],"yaw":-0.698132,"spawnMask":1},{"id":"creature-90613","entityId":"entry-8904","position":[-1881.6795,-89.9734,-1137.0439],"yaw":-0.034907,"spawnMask":1},{"id":"creature-90614","entityId":"entry-8904","position":[-1888.0695,-89.9734,-1136.7899],"yaw":-3.49066,"spawnMask":1},{"id":"creature-90615","entityId":"entry-8904","position":[-1884.0595,-89.9734,-1133.1789],"yaw":-5.39307,"spawnMask":1},{"id":"creature-90616","entityId":"entry-8904","position":[-1886.2695,-89.9734,-1143.1519],"yaw":-1.74533,"spawnMask":1},{"id":"creature-90617","entityId":"entry-8904","position":[-1874.9095,-83.1451,-1209.8889],"yaw":-5.55015,"spawnMask":1},{"id":"creature-90618","entityId":"entry-8904","position":[-1881.2495,-83.1441,-1212.9389],"yaw":-3.15905,"spawnMask":1},{"id":"creature-90619","entityId":"entry-8904","position":[-1879.5295,-83.1447,-1209.6059],"yaw":-4.36332,"spawnMask":1},{"id":"creature-90620","entityId":"entry-8915","position":[-1879.1195,-83.144,-1216.3079],"yaw":-1.79769,"spawnMask":1},{"id":"creature-90621","entityId":"entry-8899","position":[-1935.6995,-83.1355,-1201.3439],"yaw":-5.32325,"spawnMask":1},{"id":"creature-90622","entityId":"entry-8894","position":[-1333.3435,-41.2097,-682.2539],"yaw":-2.53073,"spawnMask":1},{"id":"creature-90623","entityId":"entry-8892","position":[-1298.4495,-41.3765,-716.3519],"yaw":-4.32842,"spawnMask":1},{"id":"creature-90624","entityId":"entry-8896","position":[-1093.9295,-41.0931,-683.7919],"yaw":-3.36848,"spawnMask":1},{"id":"creature-90625","entityId":"entry-8896","position":[-1085.8005,-41.0931,-686.4169],"yaw":-0.401426,"spawnMask":1},{"id":"creature-90626","entityId":"entry-8896","position":[-1090.7665,-41.0931,-680.4159],"yaw":-4.46804,"spawnMask":1},{"id":"creature-90627","entityId":"entry-8896","position":[-1082.0115,-41.0931,-675.2699],"yaw":-5.35816,"spawnMask":1},{"id":"creature-90628","entityId":"entry-8897","position":[-1084.7035,-41.0931,-678.3569],"yaw":-2.32129,"spawnMask":1},{"id":"creature-90629","entityId":"entry-8894","position":[-1089.4335,-41.0931,-689.2319],"yaw":-1.50098,"spawnMask":1},{"id":"creature-90630","entityId":"entry-8892","position":[-1347.5345,-41.2851,-711.9239],"yaw":-2.70526,"spawnMask":1},{"id":"creature-90631","entityId":"entry-8896","position":[-1442.9305,-47.9291,-716.8299],"yaw":-4.06662,"spawnMask":1},{"id":"creature-90632","entityId":"entry-8896","position":[-1439.5515,-47.9271,-719.9249],"yaw":-0.488692,"spawnMask":1},{"id":"creature-90633","entityId":"entry-8913","position":[-1442.7635,-47.9311,-720.2749],"yaw":-2.3911,"spawnMask":1},{"id":"creature-90634","entityId":"entry-8897","position":[-1439.7765,-47.9235,-717.2029],"yaw":-5.44543,"spawnMask":1},{"id":"creature-90635","entityId":"entry-8895","position":[-1436.6025,-47.9278,-713.8979],"yaw":-0.436332,"spawnMask":1},{"id":"creature-90636","entityId":"entry-8913","position":[-1439.5355,-47.9188,-712.2159],"yaw":-3.75246,"spawnMask":1},{"id":"creature-90637","entityId":"entry-8894","position":[-1324.8185,-41.2864,-713.3289],"yaw":-4.2586,"spawnMask":1},{"id":"creature-90638","entityId":"entry-8910","position":[-1184.1705,-41.1749,-681.8629],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90639","entityId":"entry-8910","position":[-1186.8115,-41.2752,-705.2629],"yaw":-0.244346,"spawnMask":1},{"id":"creature-90640","entityId":"entry-8893","position":[-1311.5425,-41.3745,-651.1929],"yaw":-4.11218,"spawnMask":1},{"id":"creature-90641","entityId":"entry-8896","position":[-1374.2575,-48.2745,-742.7709],"yaw":-3.40339,"spawnMask":1},{"id":"creature-90642","entityId":"entry-8896","position":[-1363.8035,-48.27,-724.6899],"yaw":-6.03884,"spawnMask":1},{"id":"creature-90643","entityId":"entry-8896","position":[-1357.4955,-48.2732,-736.9409],"yaw":-2.07694,"spawnMask":1},{"id":"creature-90644","entityId":"entry-8913","position":[-1355.6745,-48.2625,-731.7979],"yaw":-4.90438,"spawnMask":1},{"id":"creature-90645","entityId":"entry-8913","position":[-1369.5945,-48.2745,-743.8219],"yaw":-0.191986,"spawnMask":1},{"id":"creature-90646","entityId":"entry-8914","position":[-1369.7315,-48.2761,-726.5949],"yaw":-2.74017,"spawnMask":1},{"id":"creature-90647","entityId":"entry-8896","position":[-1327.6095,-41.212,-673.0289],"yaw":-4.39823,"spawnMask":1},{"id":"creature-90648","entityId":"entry-8896","position":[-1324.2045,-41.2703,-676.4689],"yaw":-5.95157,"spawnMask":1},{"id":"creature-90649","entityId":"entry-8913","position":[-1332.1145,-41.1912,-677.8749],"yaw":-2.77507,"spawnMask":1},{"id":"creature-90650","entityId":"entry-8914","position":[-1326.8985,-41.2689,-680.6849],"yaw":-1.72788,"spawnMask":1},{"id":"creature-90651","entityId":"entry-8921","position":[-1134.5115,-72.1205,-365.674],"yaw":-2.07537,"spawnMask":1},{"id":"creature-90652","entityId":"entry-8921","position":[-1168.0645,-71.9429,-460.4818],"yaw":-2.76303,"spawnMask":1},{"id":"creature-90653","entityId":"entry-8895","position":[-1208.7025,-70.1648,-536.7439],"yaw":-4.34226,"spawnMask":1},{"id":"creature-90654","entityId":"entry-8893","position":[-1209.0495,-70.1633,-537.6419],"yaw":-3.87625,"spawnMask":1},{"id":"creature-90655","entityId":"entry-8893","position":[-1209.5865,-70.1524,-536.3969],"yaw":-5.45412,"spawnMask":1},{"id":"creature-90656","entityId":"entry-8893","position":[-1210.3485,-70.1388,-535.2439],"yaw":-4.13096,"spawnMask":1},{"id":"creature-90657","entityId":"entry-8894","position":[-1206.8385,-70.1862,-536.0199],"yaw":-5.13357,"spawnMask":1},{"id":"creature-90658","entityId":"entry-8895","position":[-1191.9965,-70.2566,-218.1249],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90659","entityId":"entry-8893","position":[-1186.9965,-70.2527,-217.6309],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90660","entityId":"entry-8894","position":[-1190.0385,-70.1801,-212.3729],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90661","entityId":"entry-8893","position":[-1181.9545,-70.2079,-214.1139],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90662","entityId":"entry-8892","position":[-1184.4155,-70.2162,-208.9009],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90663","entityId":"entry-8910","position":[-1374.2765,-70.2516,-614.6879],"yaw":-4.06662,"spawnMask":1},{"id":"creature-90664","entityId":"entry-8910","position":[-1360.5265,-70.0386,-638.5659],"yaw":-1.13446,"spawnMask":1},{"id":"creature-90665","entityId":"entry-8910","position":[-1350.9805,-71.1892,-584.8969],"yaw":-4.08407,"spawnMask":1},{"id":"creature-90666","entityId":"entry-8910","position":[-1331.4365,-70.8179,-617.8139],"yaw":-1.13446,"spawnMask":1},{"id":"creature-90667","entityId":"entry-8895","position":[-1197.1825,-71.8619,-308.5509],"yaw":-5.81195,"spawnMask":1},{"id":"creature-90668","entityId":"entry-8893","position":[-1204.6455,-71.8619,-306.4409],"yaw":-2.51327,"spawnMask":1},{"id":"creature-90669","entityId":"entry-8893","position":[-1202.8715,-71.8619,-309.6199],"yaw":-2.58309,"spawnMask":1},{"id":"creature-90670","entityId":"entry-8894","position":[-1200.9845,-71.8619,-312.9535],"yaw":-2.60054,"spawnMask":1},{"id":"creature-90671","entityId":"entry-8894","position":[-1199.0725,-71.8619,-316.3113],"yaw":-2.56563,"spawnMask":1},{"id":"creature-90672","entityId":"entry-8921","position":[-1272.5345,-70.0705,-470.5016],"yaw":-2.42601,"spawnMask":1},{"id":"creature-90673","entityId":"entry-8921","position":[-1270.7475,-69.7938,-466.6376],"yaw":-2.89725,"spawnMask":1},{"id":"creature-90674","entityId":"entry-8921","position":[-1270.4325,-69.8012,-462.4715],"yaw":-3.52556,"spawnMask":1},{"id":"creature-90675","entityId":"entry-8895","position":[-1181.0245,-71.9452,-348.909],"yaw":-2.74017,"spawnMask":1},{"id":"creature-90676","entityId":"entry-8893","position":[-1178.0855,-71.9455,-341.855],"yaw":-5.93412,"spawnMask":1},{"id":"creature-90677","entityId":"entry-8893","position":[-1176.6295,-71.9455,-345.1659],"yaw":-5.91667,"spawnMask":1},{"id":"creature-90678","entityId":"entry-8894","position":[-1175.4305,-71.9455,-348.4735],"yaw":-5.8294,"spawnMask":1},{"id":"creature-90679","entityId":"entry-8894","position":[-1174.0705,-71.9455,-351.2265],"yaw":-5.81195,"spawnMask":1},{"id":"creature-90680","entityId":"entry-8895","position":[-1265.8165,-69.9348,-469.1077],"yaw":-3.92699,"spawnMask":1},{"id":"creature-90681","entityId":"entry-8893","position":[-1266.7055,-69.9197,-469.7551],"yaw":-5.31331,"spawnMask":1},{"id":"creature-90682","entityId":"entry-8894","position":[-1264.8155,-69.9741,-468.436],"yaw":-2.0785,"spawnMask":1},{"id":"creature-90683","entityId":"entry-8893","position":[-1268.6455,-69.8845,-471.9361],"yaw":-5.29402,"spawnMask":1},{"id":"creature-90684","entityId":"entry-8892","position":[-1262.9885,-70.0426,-466.2793],"yaw":-2.07851,"spawnMask":1},{"id":"creature-90685","entityId":"entry-8890","position":[-820.6725,-67.9257,-528.0959],"yaw":-0.558505,"spawnMask":1},{"id":"creature-90686","entityId":"entry-8921","position":[-934.7565,-60.1423,-483.9017],"yaw":-2.82692,"spawnMask":1},{"id":"creature-90687","entityId":"entry-8921","position":[-941.7635,-60.4992,-488.2858],"yaw":-2.82692,"spawnMask":1},{"id":"creature-90688","entityId":"entry-8921","position":[-944.3015,-60.7422,-487.0085],"yaw":-2.82692,"spawnMask":1},{"id":"creature-90689","entityId":"entry-8891","position":[-927.8095,-63.1718,-521.7279],"yaw":-4.81711,"spawnMask":1},{"id":"creature-90690","entityId":"entry-8890","position":[-923.1585,-62.9408,-553.7859],"yaw":-4.62512,"spawnMask":1},{"id":"creature-90691","entityId":"entry-8890","position":[-962.1945,-63.2994,-526.2219],"yaw":-3.90954,"spawnMask":1},{"id":"creature-90692","entityId":"entry-8891","position":[-908.8285,-67.7931,-602.1199],"yaw":-3.40339,"spawnMask":1},{"id":"creature-90693","entityId":"entry-8921","position":[-990.1635,-61.7702,-546.8519],"yaw":-3.05433,"spawnMask":1},{"id":"creature-90694","entityId":"entry-8921","position":[-973.4155,-61.7959,-492.9385],"yaw":-5.16617,"spawnMask":1},{"id":"creature-90695","entityId":"entry-8912","position":[-890.3025,-62.9408,-572.1569],"yaw":-3.03687,"spawnMask":1},{"id":"creature-90696","entityId":"entry-8890","position":[-977.5335,-60.1883,-500.458],"yaw":0,"spawnMask":1},{"id":"creature-90697","entityId":"entry-8890","position":[-977.2035,-60.9034,-490.1015],"yaw":-6.16101,"spawnMask":1},{"id":"creature-90698","entityId":"entry-8892","position":[-1118.7345,-79.5892,-682.1889],"yaw":-3.66308,"spawnMask":1},{"id":"creature-90699","entityId":"entry-8921","position":[-1043.2495,-57.1531,-615.6059],"yaw":-0.645772,"spawnMask":1},{"id":"creature-90700","entityId":"entry-8921","position":[-1038.9715,-57.3713,-603.8019],"yaw":-3.87463,"spawnMask":1},{"id":"creature-90701","entityId":"entry-8921","position":[-1041.8465,-57.6248,-609.4319],"yaw":-3.14159,"spawnMask":1},{"id":"creature-90702","entityId":"entry-8891","position":[-1050.0415,-63.7188,-651.1839],"yaw":-2.28638,"spawnMask":1},{"id":"creature-90703","entityId":"entry-8892","position":[-1046.5065,-62.5084,-646.6049],"yaw":-5.06145,"spawnMask":1},{"id":"creature-90704","entityId":"entry-8891","position":[-1155.9925,-70.8679,-535.1939],"yaw":-2.9147,"spawnMask":1},{"id":"creature-90705","entityId":"entry-8892","position":[-1031.3115,-60.0748,-568.6929],"yaw":-1.93731,"spawnMask":1},{"id":"creature-90706","entityId":"entry-8891","position":[-1041.0345,-59.8748,-565.1939],"yaw":-1.93731,"spawnMask":1},{"id":"creature-90707","entityId":"entry-8891","position":[-1154.8735,-81.9507,-689.0649],"yaw":-0.575959,"spawnMask":1},{"id":"creature-90708","entityId":"entry-8891","position":[-1149.4855,-70.6154,-533.3809],"yaw":-5.95157,"spawnMask":1},{"id":"creature-90709","entityId":"entry-8891","position":[-1198.0035,-75.5522,-602.4659],"yaw":-5.07891,"spawnMask":1},{"id":"creature-90710","entityId":"entry-8892","position":[-1187.5165,-81.296,-640.2749],"yaw":-2.82743,"spawnMask":1},{"id":"creature-90711","entityId":"entry-8891","position":[-1158.2035,-43.7079,-487.6727],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90712","entityId":"entry-8892","position":[-1140.2705,-58.0495,-451.2043],"yaw":-0.506145,"spawnMask":1},{"id":"creature-90713","entityId":"entry-8892","position":[-1101.3565,-43.0128,-510.9069],"yaw":-3.29867,"spawnMask":1},{"id":"creature-90714","entityId":"entry-8891","position":[-1138.7145,-43.8057,-509.8468],"yaw":-6.17846,"spawnMask":1},{"id":"creature-90715","entityId":"entry-8892","position":[-1117.1525,-58.0503,-448.1398],"yaw":-2.53073,"spawnMask":1},{"id":"creature-90716","entityId":"entry-8909","position":[-1163.9955,-43.7273,-487.714],"yaw":-3.1765,"spawnMask":1},{"id":"creature-90717","entityId":"entry-8892","position":[-1111.6195,-58.0511,-444.7427],"yaw":-5.95157,"spawnMask":1},{"id":"creature-90718","entityId":"entry-8891","position":[-1116.9405,-58.0509,-445.5499],"yaw":-3.03687,"spawnMask":1},{"id":"creature-90719","entityId":"entry-8891","position":[-1160.6605,-44.0221,-519.7079],"yaw":-1.50098,"spawnMask":1},{"id":"creature-90720","entityId":"entry-8891","position":[-1198.3385,-44.2255,-554.9029],"yaw":-2.21657,"spawnMask":1},{"id":"creature-90721","entityId":"entry-8899","position":[-1284.6795,-44.2255,-462.2766],"yaw":-2.11185,"spawnMask":1},{"id":"creature-90722","entityId":"entry-8898","position":[-1231.4405,-43.4507,-391.2828],"yaw":-1.6057,"spawnMask":1},{"id":"creature-90723","entityId":"entry-8911","position":[-1265.5835,-44.21,-422.7092],"yaw":-4.29351,"spawnMask":1},{"id":"creature-90724","entityId":"entry-8911","position":[-1248.6815,-43.0128,-348.9572],"yaw":-4.53786,"spawnMask":1},{"id":"creature-90725","entityId":"entry-8898","position":[-1247.5615,-43.0128,-352.7576],"yaw":-1.25664,"spawnMask":1},{"id":"creature-90726","entityId":"entry-8898","position":[-1207.2595,-58.0507,-418.4148],"yaw":-6.0912,"spawnMask":1},{"id":"creature-90727","entityId":"entry-8911","position":[-1225.1355,-43.6788,-425.9022],"yaw":-1.98968,"spawnMask":1},{"id":"creature-90729","entityId":"entry-8911","position":[-1512.9795,-114.4861,-689.0719],"yaw":-2.10731,"spawnMask":1},{"id":"creature-90730","entityId":"entry-8911","position":[-1683.3095,-102.4051,-723.7389],"yaw":-4.20332,"spawnMask":1},{"id":"creature-90731","entityId":"entry-8911","position":[-1669.4995,-102.8431,-859.2779],"yaw":-1.11701,"spawnMask":1},{"id":"creature-90732","entityId":"entry-8911","position":[-1662.4195,-101.3771,-854.5839],"yaw":-0.820305,"spawnMask":1},{"id":"creature-90733","entityId":"entry-8911","position":[-1658.4395,-100.2371,-847.5709],"yaw":-0.523599,"spawnMask":1},{"id":"creature-90734","entityId":"entry-8911","position":[-1470.3415,-114.3101,-720.6809],"yaw":-1.64001,"spawnMask":1},{"id":"creature-90735","entityId":"entry-8911","position":[-1597.2495,-114.4311,-674.8439],"yaw":-3.96163,"spawnMask":1},{"id":"creature-90736","entityId":"entry-8911","position":[-1461.8165,-114.4041,-660.5099],"yaw":-3.49474,"spawnMask":1},{"id":"creature-90737","entityId":"entry-9554","position":[-1356.7855,-47.745,-573.2489],"yaw":-5.48649,"spawnMask":1},{"id":"creature-90738","entityId":"entry-9554","position":[-1403.2255,-40.7024,-623.7869],"yaw":-5.28143,"spawnMask":1},{"id":"creature-90739","entityId":"entry-9547","position":[-1410.8685,-41.6955,-619.9329],"yaw":-5.08309,"spawnMask":1},{"id":"creature-90740","entityId":"entry-9545","position":[-1399.4705,-47.7493,-554.3119],"yaw":-2.64149,"spawnMask":1},{"id":"creature-90741","entityId":"entry-9547","position":[-1419.1345,-40.6955,-616.0419],"yaw":-0.153653,"spawnMask":1},{"id":"creature-90742","entityId":"entry-9547","position":[-1410.1145,-41.917,-590.1979],"yaw":-0.199057,"spawnMask":1},{"id":"creature-90743","entityId":"entry-9554","position":[-1347.2795,-47.745,-588.8229],"yaw":-5.18238,"spawnMask":1},{"id":"creature-90744","entityId":"entry-9545","position":[-1343.8745,-47.745,-582.3169],"yaw":-2.39913,"spawnMask":1},{"id":"creature-90745","entityId":"entry-9547","position":[-1411.6795,-41.6955,-622.0209],"yaw":-1.9415,"spawnMask":1},{"id":"creature-90746","entityId":"entry-9545","position":[-1361.1595,-47.745,-566.8119],"yaw":-4.1155,"spawnMask":1},{"id":"creature-90747","entityId":"entry-8901","position":[-1978.4195,-90.0267,-767.0819],"yaw":-0.698132,"spawnMask":1},{"id":"creature-90748","entityId":"entry-8901","position":[-1980.3995,-90.0258,-769.9699],"yaw":-2.16421,"spawnMask":1},{"id":"creature-90749","entityId":"entry-8901","position":[-1980.6895,-90.0273,-783.9419],"yaw":-1.11701,"spawnMask":1},{"id":"creature-90750","entityId":"entry-8901","position":[-1975.7395,-90.0198,-768.7779],"yaw":-3.15905,"spawnMask":1},{"id":"creature-90751","entityId":"entry-8901","position":[-1978.6495,-90.0174,-786.2889],"yaw":-5.70723,"spawnMask":1},{"id":"creature-90752","entityId":"entry-8901","position":[-1963.8095,-90.0245,-756.1189],"yaw":-6.00393,"spawnMask":1},{"id":"creature-90753","entityId":"entry-8901","position":[-1966.8695,-90.0249,-757.5919],"yaw":-3.33358,"spawnMask":1},{"id":"creature-90754","entityId":"entry-8901","position":[-1977.1795,-90.0103,-772.3059],"yaw":-3.52556,"spawnMask":1},{"id":"creature-90755","entityId":"entry-8901","position":[-1966.4795,-90.0315,-754.5519],"yaw":-1.74533,"spawnMask":1},{"id":"creature-90756","entityId":"entry-8901","position":[-1968.7395,-90.0293,-755.9819],"yaw":-3.21141,"spawnMask":1},{"id":"creature-90757","entityId":"entry-8901","position":[-1916.5095,-90.0345,-750.9929],"yaw":-1.36136,"spawnMask":1},{"id":"creature-90758","entityId":"entry-8901","position":[-1917.8295,-90.0188,-754.4739],"yaw":-1.88496,"spawnMask":1},{"id":"creature-90759","entityId":"entry-8901","position":[-1937.6695,-90.0462,-727.3649],"yaw":-6.17846,"spawnMask":1},{"id":"creature-90760","entityId":"entry-8901","position":[-1940.3895,-90.0375,-750.9209],"yaw":-1.85005,"spawnMask":1},{"id":"creature-90761","entityId":"entry-8901","position":[-1932.0195,-90.0462,-731.8879],"yaw":-1.71042,"spawnMask":1},{"id":"creature-90762","entityId":"entry-8901","position":[-1934.1495,-90.0462,-745.8979],"yaw":-0.20944,"spawnMask":1},{"id":"creature-90763","entityId":"entry-8901","position":[-1914.2095,-90.0152,-755.2859],"yaw":-1.88496,"spawnMask":1},{"id":"creature-90764","entityId":"entry-8901","position":[-1932.8795,-90.0462,-726.9369],"yaw":-3.59538,"spawnMask":1},{"id":"creature-90765","entityId":"entry-8901","position":[-1935.8095,-90.0462,-733.0989],"yaw":-0.733038,"spawnMask":1},{"id":"creature-90766","entityId":"entry-8901","position":[-1940.6495,-90.0462,-745.7369],"yaw":-3.7001,"spawnMask":1},{"id":"creature-90767","entityId":"entry-8911","position":[-1960.7595,-87.5113,-910.1589],"yaw":-1.6057,"spawnMask":1},{"id":"creature-90768","entityId":"entry-8901","position":[-1989.8195,-90.0326,-808.8899],"yaw":-5.5676,"spawnMask":1},{"id":"creature-90769","entityId":"entry-8901","position":[-1992.6595,-90.0399,-811.2639],"yaw":-2.46091,"spawnMask":1},{"id":"creature-90770","entityId":"entry-8901","position":[-2002.5395,-90.0462,-817.9799],"yaw":-5.51524,"spawnMask":1},{"id":"creature-90771","entityId":"entry-8901","position":[-1987.4495,-90.0319,-820.1819],"yaw":-5.68977,"spawnMask":1},{"id":"creature-90772","entityId":"entry-8901","position":[-2001.9395,-90.0462,-820.6989],"yaw":-0.418879,"spawnMask":1},{"id":"creature-90773","entityId":"entry-8901","position":[-2005.5095,-90.0462,-820.0159],"yaw":-2.87979,"spawnMask":1},{"id":"creature-90774","entityId":"entry-8901","position":[-1982.5695,-90.0147,-812.4069],"yaw":-4.2586,"spawnMask":1},{"id":"creature-90775","entityId":"entry-8901","position":[-1990.2595,-90.0369,-820.2029],"yaw":-3.42085,"spawnMask":1},{"id":"creature-90776","entityId":"entry-8901","position":[-1989.1895,-90.035,-822.6949],"yaw":-1.98968,"spawnMask":1},{"id":"creature-90777","entityId":"entry-8901","position":[-1980.6695,-90.0151,-815.9259],"yaw":-1.0472,"spawnMask":1},{"id":"creature-90778","entityId":"entry-8901","position":[-1943.7395,-90.084,-789.2029],"yaw":-1.29743,"spawnMask":1},{"id":"creature-90779","entityId":"entry-8901","position":[-1939.5795,-90.0943,-810.9399],"yaw":-2.49214,"spawnMask":1},{"id":"creature-90780","entityId":"entry-8901","position":[-1940.4795,-90.1031,-800.9199],"yaw":-1.60551,"spawnMask":1},{"id":"creature-90784","entityId":"entry-8901","position":[-1939.0395,-90.1013,-815.1669],"yaw":-2.53054,"spawnMask":1},{"id":"creature-90786","entityId":"entry-8901","position":[-1942.0095,-90.1025,-813.4889],"yaw":-2.31446,"spawnMask":1},{"id":"creature-90787","entityId":"entry-8901","position":[-1817.5795,-90.0462,-832.7069],"yaw":-1.64061,"spawnMask":1},{"id":"creature-90788","entityId":"entry-8901","position":[-1829.0495,-90.038,-820.3549],"yaw":-1.76278,"spawnMask":1},{"id":"creature-90789","entityId":"entry-8901","position":[-1817.1495,-90.0462,-821.5669],"yaw":-0.436332,"spawnMask":1},{"id":"creature-90790","entityId":"entry-8901","position":[-1826.4295,-90.0427,-817.9439],"yaw":-0.174533,"spawnMask":1},{"id":"creature-90791","entityId":"entry-8901","position":[-1818.9095,-90.0462,-828.7019],"yaw":-4.24115,"spawnMask":1},{"id":"creature-90792","entityId":"entry-8901","position":[-1827.9995,-90.0399,-815.2769],"yaw":-4.93928,"spawnMask":1},{"id":"creature-90793","entityId":"entry-8901","position":[-1816.4295,-90.0462,-829.4949],"yaw":-5.20108,"spawnMask":1},{"id":"creature-90794","entityId":"entry-8901","position":[-1819.6695,-90.0462,-819.9719],"yaw":-3.9968,"spawnMask":1},{"id":"creature-90795","entityId":"entry-8901","position":[-1830.6095,-90.0352,-817.0749],"yaw":-3.36848,"spawnMask":1},{"id":"creature-90796","entityId":"entry-8901","position":[-1818.5895,-90.0462,-822.8249],"yaw":-1.37881,"spawnMask":1},{"id":"creature-90797","entityId":"entry-8901","position":[-1851.2595,-90.0054,-818.3599],"yaw":-5.07891,"spawnMask":1},{"id":"creature-90798","entityId":"entry-8901","position":[-1871.4295,-90.0018,-823.0149],"yaw":-2.9147,"spawnMask":1},{"id":"creature-90799","entityId":"entry-8901","position":[-1875.7095,-90.0056,-826.8539],"yaw":-3.10669,"spawnMask":1},{"id":"creature-90800","entityId":"entry-8901","position":[-1850.5095,-90.0022,-821.9069],"yaw":-4.57276,"spawnMask":1},{"id":"creature-90801","entityId":"entry-8901","position":[-1877.7095,-90.0032,-823.8899],"yaw":-1.50098,"spawnMask":1},{"id":"creature-90802","entityId":"entry-8901","position":[-1874.7895,-89.9427,-821.3669],"yaw":-2.68781,"spawnMask":1},{"id":"creature-90803","entityId":"entry-8901","position":[-1857.9495,-89.9933,-801.7419],"yaw":-1.5708,"spawnMask":1},{"id":"creature-90804","entityId":"entry-8901","position":[-1872.8795,-90.0042,-826.7929],"yaw":-1.6057,"spawnMask":1},{"id":"creature-90806","entityId":"entry-8901","position":[-1860.0095,-90.0005,-807.6789],"yaw":-4.83456,"spawnMask":1},{"id":"creature-90807","entityId":"entry-8901","position":[-1855.0295,-89.9929,-804.1919],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90808","entityId":"entry-8920","position":[-1285.3185,-51.6472,-348.5348],"yaw":-6.21337,"spawnMask":1},{"id":"creature-90809","entityId":"entry-8920","position":[-1335.4155,-51.6518,-355.9041],"yaw":-5.48033,"spawnMask":1},{"id":"creature-90810","entityId":"entry-8920","position":[-1292.5885,-51.7391,-387.8781],"yaw":-3.10291,"spawnMask":1},{"id":"creature-90811","entityId":"entry-8920","position":[-1324.0995,-51.7119,-446.0797],"yaw":-2.04204,"spawnMask":1},{"id":"creature-90812","entityId":"entry-8906","position":[-1322.6675,-51.7269,-419.4489],"yaw":-3.07178,"spawnMask":1},{"id":"creature-90813","entityId":"entry-8920","position":[-1289.1815,-51.6836,-351.8891],"yaw":-3.9619,"spawnMask":1},{"id":"creature-90814","entityId":"entry-8920","position":[-1316.1175,-51.7256,-452.2596],"yaw":-0.366519,"spawnMask":1},{"id":"creature-90815","entityId":"entry-8920","position":[-1316.7835,-51.7244,-450.5241],"yaw":-5.23599,"spawnMask":1},{"id":"creature-90816","entityId":"entry-8900","position":[-1286.6855,-51.6684,-350.5537],"yaw":-0.837758,"spawnMask":1},{"id":"creature-90817","entityId":"entry-8900","position":[-1320.4625,-51.7257,-451.0741],"yaw":-3.85718,"spawnMask":1},{"id":"creature-90818","entityId":"entry-8896","position":[-1384.9005,-47.9278,-669.8039],"yaw":-2.16421,"spawnMask":1},{"id":"creature-90819","entityId":"entry-8896","position":[-1379.8125,-47.9413,-667.3959],"yaw":-0.314159,"spawnMask":1},{"id":"creature-90820","entityId":"entry-8913","position":[-1387.3465,-47.9517,-666.0159],"yaw":-3.22886,"spawnMask":1},{"id":"creature-90821","entityId":"entry-8897","position":[-1384.5755,-47.9532,-664.7149],"yaw":-3.87463,"spawnMask":1},{"id":"creature-90822","entityId":"entry-8895","position":[-1381.5385,-47.9386,-668.7189],"yaw":-1.11701,"spawnMask":1},{"id":"creature-90823","entityId":"entry-8913","position":[-1380.8815,-47.9654,-663.3019],"yaw":-5.23599,"spawnMask":1},{"id":"creature-90824","entityId":"entry-8896","position":[-1282.5475,-40.8378,-683.5889],"yaw":-3.63029,"spawnMask":1},{"id":"creature-90825","entityId":"entry-8913","position":[-1270.8465,-40.8269,-685.1209],"yaw":-6.17846,"spawnMask":1},{"id":"creature-90826","entityId":"entry-8910","position":[-1282.3415,-40.8455,-687.7649],"yaw":-2.72271,"spawnMask":1},{"id":"creature-90827","entityId":"entry-8922","position":[-1274.9915,-40.8269,-687.7009],"yaw":-0.506145,"spawnMask":1},{"id":"creature-90828","entityId":"entry-8910","position":[-1384.4745,-48.0111,-694.1869],"yaw":-1.98067,"spawnMask":1},{"id":"creature-90829","entityId":"entry-8896","position":[-1121.8255,-41.0931,-690.7179],"yaw":-5.48033,"spawnMask":1},{"id":"creature-90830","entityId":"entry-8896","position":[-1126.4315,-41.0936,-689.9699],"yaw":-4.50295,"spawnMask":1},{"id":"creature-90831","entityId":"entry-8896","position":[-1124.3435,-41.0961,-699.2729],"yaw":-1.32645,"spawnMask":1},{"id":"creature-90832","entityId":"entry-8913","position":[-1121.3255,-41.0944,-695.4369],"yaw":-0.20944,"spawnMask":1},{"id":"creature-90833","entityId":"entry-8913","position":[-1130.2805,-41.0951,-692.8639],"yaw":-3.47321,"spawnMask":1},{"id":"creature-90834","entityId":"entry-8914","position":[-1129.6395,-41.0966,-698.1529],"yaw":-2.42601,"spawnMask":1},{"id":"creature-90835","entityId":"entry-8896","position":[-1303.4165,-41.2922,-713.3409],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90836","entityId":"entry-8896","position":[-1308.4155,-41.2906,-721.6219],"yaw":-2.14675,"spawnMask":1},{"id":"creature-90837","entityId":"entry-8896","position":[-1299.6695,-41.2919,-721.0899],"yaw":-1.02974,"spawnMask":1},{"id":"creature-90838","entityId":"entry-8922","position":[-1304.0465,-41.2911,-726.8649],"yaw":-1.58825,"spawnMask":1},{"id":"creature-90839","entityId":"entry-8895","position":[-1201.1505,-71.3865,-445.0766],"yaw":-0.244346,"spawnMask":1},{"id":"creature-90840","entityId":"entry-8893","position":[-1196.8865,-71.3863,-443.5184],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90841","entityId":"entry-8893","position":[-1200.4745,-71.3885,-440.2999],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90842","entityId":"entry-8893","position":[-1193.3625,-71.3646,-438.6257],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90843","entityId":"entry-8894","position":[-1196.8365,-71.9499,-435.3271],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90844","entityId":"entry-8910","position":[-1399.4995,-69.7527,-649.4759],"yaw":-4.06662,"spawnMask":1},{"id":"creature-90845","entityId":"entry-8910","position":[-1393.1255,-69.7507,-660.9829],"yaw":-1.29154,"spawnMask":1},{"id":"creature-90846","entityId":"entry-8921","position":[-890.8775,-64.7808,-468.534],"yaw":-2.49582,"spawnMask":1},{"id":"creature-90847","entityId":"entry-8890","position":[-940.4065,-61.5405,-577.8839],"yaw":-1.24097,"spawnMask":1},{"id":"creature-90848","entityId":"entry-8921","position":[-986.8735,-61.8896,-550.9389],"yaw":-1.78024,"spawnMask":1},{"id":"creature-90849","entityId":"entry-8921","position":[-853.9375,-76.2893,-622.1629],"yaw":-0.698132,"spawnMask":1},{"id":"creature-90850","entityId":"entry-8890","position":[-884.9885,-62.9408,-571.7979],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90851","entityId":"entry-8921","position":[-886.7815,-65.4563,-468.1888],"yaw":-1.20428,"spawnMask":1},{"id":"creature-90852","entityId":"entry-8921","position":[-914.1835,-62.0661,-488.4706],"yaw":-1.65806,"spawnMask":1},{"id":"creature-90853","entityId":"entry-8921","position":[-868.4425,-68.4675,-486.2668],"yaw":-4.71239,"spawnMask":1},{"id":"creature-90854","entityId":"entry-8912","position":[-793.7685,-70.6159,-559.8739],"yaw":-0.907571,"spawnMask":1},{"id":"creature-90855","entityId":"entry-8921","position":[-938.5245,-61.8239,-594.4699],"yaw":-3.89351,"spawnMask":1},{"id":"creature-90856","entityId":"entry-8921","position":[-943.2395,-61.0914,-591.7689],"yaw":-4.07896,"spawnMask":1},{"id":"creature-90857","entityId":"entry-8921","position":[-942.8155,-61.0406,-588.9659],"yaw":-4.07896,"spawnMask":1},{"id":"creature-90858","entityId":"entry-8892","position":[-1084.8995,-73.6817,-684.6939],"yaw":-2.77507,"spawnMask":1},{"id":"creature-90859","entityId":"entry-8891","position":[-1164.4175,-69.0375,-569.0709],"yaw":-2.53073,"spawnMask":1},{"id":"creature-90860","entityId":"entry-8921","position":[-1149.4435,-81.8715,-686.9359],"yaw":-1.32645,"spawnMask":1},{"id":"creature-90861","entityId":"entry-8921","position":[-1155.5635,-81.9963,-682.4669],"yaw":-5.46288,"spawnMask":1},{"id":"creature-90862","entityId":"entry-8909","position":[-1162.5805,-81.2946,-677.2979],"yaw":-1.8675,"spawnMask":1},{"id":"creature-90863","entityId":"entry-8892","position":[-1177.9275,-74.3919,-605.9249],"yaw":-1.62316,"spawnMask":1},{"id":"creature-90864","entityId":"entry-8891","position":[-1161.7545,-68.7797,-564.3369],"yaw":-5.23599,"spawnMask":1},{"id":"creature-90865","entityId":"entry-8892","position":[-1135.9695,-81.5605,-673.0649],"yaw":-2.9147,"spawnMask":1},{"id":"creature-90866","entityId":"entry-8891","position":[-1164.0035,-81.5831,-662.7969],"yaw":-4.04995,"spawnMask":1},{"id":"creature-90867","entityId":"entry-8921","position":[-1156.4915,-81.9616,-671.9199],"yaw":-3.85347,"spawnMask":1},{"id":"creature-90868","entityId":"entry-8921","position":[-1156.6995,-81.8251,-669.0989],"yaw":-3.85346,"spawnMask":1},{"id":"creature-90869","entityId":"entry-8891","position":[-1135.2035,-81.3165,-674.9309],"yaw":-2.79253,"spawnMask":1},{"id":"creature-90870","entityId":"entry-8892","position":[-1085.4865,-68.6843,-658.3119],"yaw":-2.49582,"spawnMask":1},{"id":"creature-90872","entityId":"entry-8892","position":[-1192.7265,-71.8482,-564.5469],"yaw":-2.30383,"spawnMask":1},{"id":"creature-90874","entityId":"entry-8891","position":[-1123.9445,-58.0429,-464.6709],"yaw":-3.56047,"spawnMask":1},{"id":"creature-90875","entityId":"entry-8891","position":[-1123.7705,-58.0351,-466.7598],"yaw":-3.00197,"spawnMask":1},{"id":"creature-90876","entityId":"entry-8891","position":[-1195.5325,-44.2255,-553.0359],"yaw":-6.02139,"spawnMask":1},{"id":"creature-90877","entityId":"entry-8892","position":[-1138.7605,-43.8083,-507.918],"yaw":-5.5676,"spawnMask":1},{"id":"creature-90878","entityId":"entry-8909","position":[-1157.4585,-58.0512,-467.2354],"yaw":-0.820305,"spawnMask":1},{"id":"creature-90879","entityId":"entry-8909","position":[-1158.5465,-43.6204,-483.8645],"yaw":-5.34071,"spawnMask":1},{"id":"creature-90880","entityId":"entry-8892","position":[-1160.2945,-44.0268,-515.7029],"yaw":-5.0091,"spawnMask":1},{"id":"creature-90881","entityId":"entry-9545","position":[-1354.2775,-47.745,-576.5369],"yaw":-4.27777,"spawnMask":1},{"id":"creature-90882","entityId":"entry-9545","position":[-1410.8185,-47.7505,-573.3769],"yaw":-3.72741,"spawnMask":1},{"id":"creature-90883","entityId":"entry-9545","position":[-1387.0875,-47.7468,-572.8869],"yaw":-6.04803,"spawnMask":1},{"id":"creature-90884","entityId":"entry-9547","position":[-1407.1595,-41.6955,-616.1169],"yaw":-2.24715,"spawnMask":1},{"id":"creature-90885","entityId":"entry-9545","position":[-1395.8755,-41.6955,-606.0979],"yaw":-5.48534,"spawnMask":1},{"id":"creature-90886","entityId":"entry-9547","position":[-1416.9475,-41.6955,-618.4489],"yaw":-2.07571,"spawnMask":1},{"id":"creature-90887","entityId":"entry-9545","position":[-1359.5825,-47.745,-567.7559],"yaw":-0.53946,"spawnMask":1},{"id":"creature-90888","entityId":"entry-9554","position":[-1401.8235,-40.6885,-620.9119],"yaw":-2.4924,"spawnMask":1},{"id":"creature-90889","entityId":"entry-9545","position":[-1390.6815,-47.7475,-577.9719],"yaw":-2.18598,"spawnMask":1},{"id":"creature-90890","entityId":"entry-9547","position":[-1392.2095,-41.6955,-610.3419],"yaw":-3.4411,"spawnMask":1},{"id":"creature-90892","entityId":"entry-8920","position":[-1284.6655,-51.6451,-359.0593],"yaw":-1.0472,"spawnMask":1},{"id":"creature-90894","entityId":"entry-8920","position":[-1288.9475,-51.6493,-348.7199],"yaw":-3.21141,"spawnMask":1},{"id":"creature-90895","entityId":"entry-8920","position":[-1312.5435,-51.7267,-415.234],"yaw":-2.3911,"spawnMask":1},{"id":"creature-90896","entityId":"entry-8921","position":[-943.6655,-61.5417,-576.2879],"yaw":-3.40339,"spawnMask":1},{"id":"creature-90897","entityId":"entry-8912","position":[-909.2835,-62.3238,-491.5741],"yaw":-6.02139,"spawnMask":1},{"id":"creature-90898","entityId":"entry-8921","position":[-930.5655,-63.2983,-523.2309],"yaw":-4.45059,"spawnMask":1},{"id":"creature-90899","entityId":"entry-8912","position":[-869.4625,-62.9408,-527.1989],"yaw":-5.09636,"spawnMask":1},{"id":"creature-90900","entityId":"entry-8921","position":[-939.0925,-62.8499,-606.1519],"yaw":-4.15388,"spawnMask":1},{"id":"creature-90901","entityId":"entry-8890","position":[-862.6115,-76.2977,-605.3369],"yaw":-0.087266,"spawnMask":1},{"id":"creature-90902","entityId":"entry-8912","position":[-905.2835,-62.9408,-517.9659],"yaw":-2.75762,"spawnMask":1},{"id":"creature-90903","entityId":"entry-8890","position":[-847.5845,-73.2287,-472.9556],"yaw":-3.35103,"spawnMask":1},{"id":"creature-90904","entityId":"entry-8890","position":[-936.8745,-63.4049,-610.2929],"yaw":-0.122173,"spawnMask":1},{"id":"creature-90905","entityId":"entry-8921","position":[-817.6625,-73.6719,-503.1372],"yaw":-0.610865,"spawnMask":1},{"id":"creature-90906","entityId":"entry-8892","position":[-1112.4015,-80.2339,-696.7409],"yaw":-6.0912,"spawnMask":1},{"id":"creature-90907","entityId":"entry-8892","position":[-1117.2575,-80.7819,-699.7959],"yaw":-2.21657,"spawnMask":1},{"id":"creature-90908","entityId":"entry-8909","position":[-1145.5975,-69.7452,-535.6249],"yaw":-2.07694,"spawnMask":1},{"id":"creature-90910","entityId":"entry-8909","position":[-1150.8925,-70.6787,-537.8449],"yaw":-1.67552,"spawnMask":1},{"id":"creature-90911","entityId":"entry-8909","position":[-1073.4865,-67.3341,-656.7489],"yaw":-2.47837,"spawnMask":1},{"id":"creature-90912","entityId":"entry-8891","position":[-1083.7825,-73.7556,-686.8019],"yaw":-2.49582,"spawnMask":1},{"id":"creature-90913","entityId":"entry-8892","position":[-1035.3805,-58.0905,-607.0819],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90914","entityId":"entry-8892","position":[-1198.1605,-76.2676,-607.7569],"yaw":-1.5708,"spawnMask":1},{"id":"creature-90915","entityId":"entry-8892","position":[-1078.6345,-72.1281,-682.4559],"yaw":-5.53269,"spawnMask":1},{"id":"creature-90916","entityId":"entry-8921","position":[-1117.1845,-66.6301,-534.9069],"yaw":-5.95941,"spawnMask":1},{"id":"creature-90917","entityId":"entry-8921","position":[-1099.1505,-62.071,-530.8759],"yaw":-1.65336,"spawnMask":1},{"id":"creature-90918","entityId":"entry-8921","position":[-1098.7835,-62.1592,-534.7499],"yaw":-4.46512,"spawnMask":1},{"id":"creature-90919","entityId":"entry-8892","position":[-1199.5115,-76.1314,-606.2759],"yaw":-1.95477,"spawnMask":1},{"id":"creature-91010","entityId":"entry-9547","position":[-1397.8455,-47.7484,-571.5349],"yaw":-5.34704,"spawnMask":1},{"id":"creature-91011","entityId":"entry-9545","position":[-1415.1045,-40.7719,-618.8889],"yaw":-3.6626,"spawnMask":1},{"id":"creature-91012","entityId":"entry-9545","position":[-1384.3775,-41.6955,-616.6599],"yaw":-2.05573,"spawnMask":1},{"id":"creature-91013","entityId":"entry-9545","position":[-1416.2975,-41.917,-588.9509],"yaw":-5.17016,"spawnMask":1},{"id":"creature-91014","entityId":"entry-9545","position":[-1352.1105,-47.745,-581.2039],"yaw":-1.18745,"spawnMask":1},{"id":"creature-91015","entityId":"entry-9545","position":[-1361.6935,-47.745,-572.6209],"yaw":-3.26892,"spawnMask":1},{"id":"creature-91016","entityId":"entry-9545","position":[-1408.8775,-41.917,-591.2179],"yaw":-0.68901,"spawnMask":1},{"id":"creature-91017","entityId":"entry-9545","position":[-1383.3715,-41.6955,-614.7499],"yaw":-1.73405,"spawnMask":1},{"id":"creature-91018","entityId":"entry-9545","position":[-1391.1665,-47.7478,-551.7649],"yaw":-3.48803,"spawnMask":1},{"id":"creature-91019","entityId":"entry-9545","position":[-1403.4275,-41.6955,-615.3479],"yaw":-4.78717,"spawnMask":1},{"id":"creature-91027","entityId":"entry-8912","position":[-957.9135,-63.3684,-521.0519],"yaw":-3.7001,"spawnMask":1},{"id":"creature-91028","entityId":"entry-8912","position":[-821.8745,-67.729,-529.2349],"yaw":-0.767945,"spawnMask":1},{"id":"creature-91029","entityId":"entry-8912","position":[-798.4235,-69.5424,-554.3999],"yaw":-3.90954,"spawnMask":1},{"id":"creature-91030","entityId":"entry-8921","position":[-906.9785,-68.1248,-607.4769],"yaw":-3.4383,"spawnMask":1},{"id":"creature-91031","entityId":"entry-8912","position":[-852.2135,-76.0327,-624.9359],"yaw":-2.72271,"spawnMask":1},{"id":"creature-91032","entityId":"entry-8921","position":[-937.9355,-63.6067,-530.1939],"yaw":-3.44326,"spawnMask":1},{"id":"creature-91033","entityId":"entry-8921","position":[-940.4595,-63.7353,-531.5029],"yaw":-3.44326,"spawnMask":1},{"id":"creature-91034","entityId":"entry-8921","position":[-941.7745,-63.8313,-528.9999],"yaw":-3.59174,"spawnMask":1},{"id":"creature-91035","entityId":"entry-8921","position":[-843.4955,-74.8541,-477.2689],"yaw":-2.75762,"spawnMask":1},{"id":"creature-91036","entityId":"entry-8891","position":[-942.1405,-62.5591,-608.3359],"yaw":-3.89208,"spawnMask":1},{"id":"creature-91037","entityId":"entry-8890","position":[-880.2005,-62.9408,-524.1499],"yaw":-2.75762,"spawnMask":1},{"id":"creature-91038","entityId":"entry-8891","position":[-898.4245,-71.0498,-628.0319],"yaw":-3.40339,"spawnMask":1},{"id":"creature-91039","entityId":"entry-8892","position":[-1080.5815,-68.0895,-654.9429],"yaw":-5.72468,"spawnMask":1},{"id":"creature-91040","entityId":"entry-8891","position":[-1160.1465,-68.9454,-565.6749],"yaw":-5.55015,"spawnMask":1},{"id":"creature-91041","entityId":"entry-8892","position":[-1113.8005,-80.2631,-694.9139],"yaw":-5.74213,"spawnMask":1},{"id":"creature-91042","entityId":"entry-8891","position":[-1038.1725,-57.8479,-614.0489],"yaw":-2.05949,"spawnMask":1},{"id":"creature-91043","entityId":"entry-9547","position":[-1353.6475,-47.745,-579.7849],"yaw":-3.88715,"spawnMask":1},{"id":"creature-91044","entityId":"entry-9547","position":[-1401.3575,-47.7491,-576.3059],"yaw":-3.70043,"spawnMask":1},{"id":"creature-91045","entityId":"entry-9545","position":[-1415.4655,-41.6955,-615.7679],"yaw":-4.59701,"spawnMask":1},{"id":"creature-91046","entityId":"entry-9547","position":[-1409.1245,-47.7503,-574.5009],"yaw":-2.58739,"spawnMask":1},{"id":"creature-91047","entityId":"entry-9547","position":[-1353.5815,-47.745,-577.5569],"yaw":-0.972107,"spawnMask":1},{"id":"creature-91048","entityId":"entry-9554","position":[-1400.3585,-41.6955,-619.7999],"yaw":-6.03945,"spawnMask":1},{"id":"creature-91049","entityId":"entry-9545","position":[-1407.7125,-47.75,-568.3229],"yaw":-4.01626,"spawnMask":1},{"id":"creature-91050","entityId":"entry-9547","position":[-1354.8405,-47.745,-593.6959],"yaw":-2.56911,"spawnMask":1},{"id":"creature-91051","entityId":"entry-9547","position":[-1402.2835,-47.7494,-581.1339],"yaw":-1.7603,"spawnMask":1},{"id":"creature-91052","entityId":"entry-9547","position":[-1389.9945,-47.7472,-572.0359],"yaw":-3.42633,"spawnMask":1},{"id":"creature-91053","entityId":"entry-8912","position":[-798.2495,-70.1014,-558.3199],"yaw":-2.09439,"spawnMask":1},{"id":"creature-91054","entityId":"entry-8890","position":[-896.4805,-62.9408,-562.7209],"yaw":-4.50295,"spawnMask":1},{"id":"creature-91055","entityId":"entry-8921","position":[-825.8675,-73.8368,-589.0939],"yaw":-1.20428,"spawnMask":1},{"id":"creature-91056","entityId":"entry-8921","position":[-890.5915,-72.062,-627.1199],"yaw":-5.46288,"spawnMask":1},{"id":"creature-91057","entityId":"entry-8891","position":[-892.7855,-71.6573,-629.4169],"yaw":-0.226893,"spawnMask":1},{"id":"creature-91058","entityId":"entry-8890","position":[-992.6095,-59.8479,-551.7819],"yaw":-0.628319,"spawnMask":1},{"id":"creature-91059","entityId":"entry-8890","position":[-986.4605,-61.4659,-544.7099],"yaw":-0.541052,"spawnMask":1},{"id":"creature-91060","entityId":"entry-8891","position":[-866.2715,-68.6688,-489.958],"yaw":-0.174533,"spawnMask":1},{"id":"creature-91061","entityId":"entry-8921","position":[-839.3385,-75.1817,-478.9134],"yaw":-3.92699,"spawnMask":1},{"id":"creature-91062","entityId":"entry-8891","position":[-897.3845,-62.9408,-516.8189],"yaw":-5.81195,"spawnMask":1},{"id":"creature-91063","entityId":"entry-8921","position":[-828.8745,-73.8952,-592.0549],"yaw":-2.60054,"spawnMask":1},{"id":"creature-91064","entityId":"entry-9547","position":[-1382.7885,-41.6955,-611.2129],"yaw":-6.21552,"spawnMask":1},{"id":"creature-91065","entityId":"entry-9547","position":[-1358.3235,-47.745,-574.8229],"yaw":-0.578797,"spawnMask":1},{"id":"creature-91066","entityId":"entry-9547","position":[-1405.0855,-40.751,-613.5339],"yaw":-5.38874,"spawnMask":1},{"id":"creature-91067","entityId":"entry-9547","position":[-1348.8075,-47.745,-572.1169],"yaw":-5.60345,"spawnMask":1},{"id":"creature-91068","entityId":"entry-9547","position":[-1388.2015,-41.6955,-611.5789],"yaw":-4.06716,"spawnMask":1},{"id":"creature-91069","entityId":"entry-9547","position":[-1417.1295,-41.917,-590.6399],"yaw":-3.0787,"spawnMask":1},{"id":"creature-91070","entityId":"entry-9545","position":[-1418.4795,-41.6955,-614.5999],"yaw":-3.51151,"spawnMask":1},{"id":"creature-91071","entityId":"entry-9554","position":[-1340.4265,-47.745,-579.1529],"yaw":-0.698433,"spawnMask":1},{"id":"creature-91072","entityId":"entry-8912","position":[-919.9585,-62.9408,-560.0929],"yaw":-1.02974,"spawnMask":1},{"id":"creature-91073","entityId":"entry-8921","position":[-851.3305,-72.7477,-474.5896],"yaw":-0.715585,"spawnMask":1},{"id":"creature-91074","entityId":"entry-8921","position":[-847.0705,-73.928,-476.9729],"yaw":-1.16937,"spawnMask":1},{"id":"creature-91075","entityId":"entry-8891","position":[-955.2155,-63.5242,-522.6749],"yaw":-0.523599,"spawnMask":1},{"id":"creature-91076","entityId":"entry-8921","position":[-876.1275,-62.9408,-527.8799],"yaw":0,"spawnMask":1},{"id":"creature-91077","entityId":"entry-8890","position":[-814.5005,-74.0446,-501.6702],"yaw":-1.11701,"spawnMask":1},{"id":"creature-91078","entityId":"entry-8921","position":[-821.4465,-68.5486,-523.6639],"yaw":-1.8675,"spawnMask":1},{"id":"creature-91079","entityId":"entry-8921","position":[-973.7255,-61.6625,-497.3516],"yaw":-3.01942,"spawnMask":1},{"id":"creature-91080","entityId":"entry-8891","position":[-863.0485,-76.1238,-603.5559],"yaw":-5.5676,"spawnMask":1},{"id":"creature-91081","entityId":"entry-8912","position":[-928.2015,-63.1483,-526.0549],"yaw":-1.65806,"spawnMask":1},{"id":"creature-91082","entityId":"entry-8912","position":[-895.6795,-62.9408,-569.1799],"yaw":-1.55334,"spawnMask":1},{"id":"creature-91083","entityId":"entry-8891","position":[-958.2015,-63.5079,-527.8939],"yaw":-0.20944,"spawnMask":1},{"id":"creature-91084","entityId":"entry-8890","position":[-948.2585,-61.4095,-488.4178],"yaw":-2.68535,"spawnMask":1},{"id":"creature-91085","entityId":"entry-8921","position":[-946.5325,-61.1531,-489.7989],"yaw":-2.68535,"spawnMask":1},{"id":"creature-91086","entityId":"entry-8921","position":[-949.2275,-61.5792,-488.8935],"yaw":-2.68535,"spawnMask":1},{"id":"creature-91087","entityId":"entry-8912","position":[-870.6485,-62.9408,-532.1069],"yaw":-1.98968,"spawnMask":1},{"id":"creature-91088","entityId":"entry-8890","position":[-831.1655,-74.5797,-589.1549],"yaw":-2.30383,"spawnMask":1},{"id":"creature-91089","entityId":"entry-8890","position":[-938.9095,-61.4119,-577.0629],"yaw":-0.959931,"spawnMask":1},{"id":"creature-91090","entityId":"entry-8891","position":[-794.7385,-70.2765,-551.7819],"yaw":-5.20108,"spawnMask":1},{"id":"creature-91091","entityId":"entry-8912","position":[-871.4125,-68.2095,-488.6876],"yaw":-3.4383,"spawnMask":1},{"id":"creature-91092","entityId":"entry-8912","position":[-817.8025,-74.9618,-496.0529],"yaw":-4.08407,"spawnMask":1},{"id":"creature-91093","entityId":"entry-8921","position":[-835.0855,-74.2612,-594.3499],"yaw":-2.19912,"spawnMask":1},{"id":"creature-91094","entityId":"entry-8912","position":[-827.3965,-74.3314,-584.8119],"yaw":-5.39307,"spawnMask":1},{"id":"creature-91095","entityId":"entry-8912","position":[-924.8215,-62.9408,-558.6949],"yaw":-2.02458,"spawnMask":1},{"id":"creature-91096","entityId":"entry-8891","position":[-867.2385,-75.9602,-604.9569],"yaw":-3.22886,"spawnMask":1},{"id":"creature-91097","entityId":"entry-8890","position":[-841.3375,-74.4386,-474.7911],"yaw":-0.349066,"spawnMask":1},{"id":"creature-91098","entityId":"entry-8912","position":[-898.7085,-62.9408,-520.7749],"yaw":-0.872665,"spawnMask":1},{"id":"creature-91099","entityId":"entry-8890","position":[-910.9535,-63.0241,-538.2489],"yaw":-0.267563,"spawnMask":1},{"id":"creature-91102","entityId":"entry-8891","position":[-938.4915,-61.9545,-459.1006],"yaw":-2.46091,"spawnMask":1},{"id":"creature-91103","entityId":"entry-8921","position":[-912.7745,-66.554,-602.3929],"yaw":-2.3911,"spawnMask":1},{"id":"creature-91104","entityId":"entry-8921","position":[-932.2375,-63.2132,-518.6459],"yaw":-1.65806,"spawnMask":1},{"id":"creature-91105","entityId":"entry-8891","position":[-848.4835,-76.0588,-622.7719],"yaw":-5.65487,"spawnMask":1},{"id":"creature-91106","entityId":"entry-8891","position":[-1171.6855,-41.1843,-684.6649],"yaw":-0.471239,"spawnMask":1},{"id":"creature-91107","entityId":"entry-8891","position":[-1269.4335,-40.8259,-693.4939],"yaw":-2.86234,"spawnMask":1},{"id":"creature-91108","entityId":"entry-8901","position":[-1860.7795,-90.0349,-937.3499],"yaw":-2.6529,"spawnMask":1},{"id":"creature-91109","entityId":"entry-8901","position":[-1845.4395,-90.0345,-933.8559],"yaw":-0.366519,"spawnMask":1},{"id":"creature-91110","entityId":"entry-8901","position":[-1961.7995,-90.0727,-824.3379],"yaw":-1.80106,"spawnMask":1},{"id":"creature-91112","entityId":"entry-8901","position":[-1958.3995,-90.0743,-825.6969],"yaw":-1.72027,"spawnMask":1},{"id":"creature-91119","entityId":"entry-9956","position":[-1960.6995,-90.0099,-872.3899],"yaw":-5.18363,"spawnMask":1}],"roamingPacks":[{"id":"patrol-45868","name":"Blazing Fireguard Patrol","speed":1.15,"pathId":458680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1149.8685,-72.1672,-377.12],[-1152.4185,-71.7341,-387.2478],[-1158.1325,-71.3211,-407.7452],[-1167.1515,-71.3211,-426.5667],[-1177.1875,-71.3211,-439.5788],[-1194.4615,-71.2351,-458.1445],[-1176.8305,-71.3226,-436.4656],[-1159.7815,-71.3226,-408.3153],[-1153.6985,-71.8799,-384.0067],[-1157.7635,-71.3212,-347.4318],[-1167.3505,-71.3212,-323.8543],[-1181.3115,-71.3385,-300.0519],[-1204.1975,-71.1625,-263.9779],[-1197.2195,-71.3887,-276.1099],[-1173.6725,-71.3225,-310.8575],[-1161.5085,-71.3225,-334.9697],[-1152.0985,-71.7544,-367.6676]],"members":[{"id":"member","entityId":"entry-8910","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-45943","name":"Fireguard Patrol","speed":1.15,"pathId":459430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1120.4315,-43.5161,-501.4355],[-1110.6295,-43.5288,-501.2492],[-1107.8445,-43.0961,-501.1871],[-1110.8405,-43.5278,-501.1803],[-1124.2805,-43.5155,-501.1106],[-1151.1545,-44.0095,-500.5548],[-1155.9405,-44.1813,-524.7249],[-1151.9615,-44.045,-501.5441],[-1119.5945,-43.5117,-502.4701]],"members":[{"id":"member","entityId":"entry-8909","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47302","name":"Shadowforge Flame Keeper Patrol","speed":1.15,"pathId":473020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1911.7395,-92.6861,-806.7059],[-1911.6295,-90.2769,-797.7469],[-1913.8495,-90.1111,-794.7619],[-1913.4895,-90.1069,-796.9619],[-1913.0095,-92.7496,-807.2749],[-1912.8995,-92.7496,-810.2689],[-1907.2895,-92.7496,-833.1089],[-1914.2395,-92.7496,-808.3159],[-1913.6495,-92.3682,-805.5309],[-1911.8995,-90.2254,-797.5469],[-1911.3295,-92.6189,-806.4569]],"members":[{"id":"member","entityId":"entry-9956","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47303","name":"Shadowforge Flame Keeper Patrol","speed":1.15,"pathId":473030,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1914.1195,-92.7497,-850.2969],[-1911.4895,-92.7497,-836.3549],[-1911.6795,-92.7497,-849.0369],[-1922.8795,-92.7497,-849.1439],[-1933.2395,-90.1027,-850.9099],[-1939.1995,-90.099,-851.0329],[-1932.5195,-90.2402,-850.2939],[-1922.8595,-92.7497,-849.5989],[-1913.9695,-92.7497,-848.8009]],"members":[{"id":"member","entityId":"entry-9956","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47703","name":"Plugger Spazzring Patrol","speed":1.15,"pathId":477030,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1417.5555,-41.0375,-587.9579],[-1416.1105,-41.0375,-585.3339],[-1415.9055,-41.0375,-585.0429],[-1407.4525,-41.0374,-589.6849],[-1415.8975,-41.0374,-584.9169],[-1417.7735,-41.0374,-588.1339]],"members":[{"id":"member","entityId":"entry-9499","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47716","name":"Warbringer Construct Patrol","speed":1.15,"pathId":477160,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1439.1655,-47.3857,-800.5149],[-1448.7325,-47.532,-809.9149],[-1462.0425,-53.462,-822.9129],[-1469.2755,-53.1419,-828.1999],[-1474.6635,-53.142,-823.0269],[-1486.8525,-58.707,-810.9069],[-1499.4555,-59.1525,-797.4089],[-1510.2315,-64.3636,-784.7419],[-1516.2255,-64.4801,-777.0959],[-1511.6775,-64.0527,-772.2009],[-1497.8695,-69.4615,-760.4829],[-1494.6885,-69.8145,-757.3279],[-1496.8135,-69.5234,-759.4389],[-1510.5495,-64.2384,-772.6239],[-1511.3785,-64.0375,-773.8549],[-1514.4405,-64.6046,-780.2429],[-1510.5485,-64.3636,-784.7609],[-1499.2375,-59.0572,-797.6319],[-1486.7205,-58.7978,-810.3539],[-1474.8885,-53.289,-822.2809],[-1469.0555,-53.1553,-828.0149],[-1460.5395,-52.9524,-820.7879],[-1448.8185,-47.5694,-810.4569],[-1442.1655,-47.3679,-803.9259]],"members":[{"id":"member","entityId":"entry-8905","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47777","name":"Molten War Golem Patrol","speed":1.15,"pathId":477770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1655.6295,-63.5293,-607.1139],[-1662.0495,-63.5075,-612.2259],[-1670.5995,-63.4274,-613.0679],[-1684.7695,-63.5288,-612.3689],[-1694.6195,-63.5182,-608.9729],[-1703.0695,-63.5262,-599.8189],[-1688.8695,-63.5216,-612.4989],[-1675.8095,-63.4115,-613.0189],[-1660.6495,-63.5105,-611.2789],[-1643.0795,-63.4142,-596.8029],[-1654.2095,-63.5311,-606.7849]],"members":[{"id":"member","entityId":"entry-8908","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47795","name":"Blazing Fireguard Patrol","speed":1.15,"pathId":477950,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1068.3905,-68.8682,-380.9279],[-1059.2035,-68.9011,-384.0914],[-1038.5055,-68.9851,-391.6518],[-1061.9965,-69.0809,-392.657],[-1083.6085,-68.1478,-399.7492],[-1097.0255,-68.5884,-399.0032],[-1109.4805,-69.3862,-387.1961],[-1092.3845,-68.9244,-383.3327],[-1071.9415,-68.9187,-381.5414]],"members":[{"id":"member","entityId":"entry-8910","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47836","name":"Fireguard Patrol","speed":1.15,"pathId":478360,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1124.4255,-43.5344,-494.89],[-1124.6175,-43.5415,-489.6856],[-1125.0165,-50.1314,-477.9701],[-1125.0305,-50.1518,-472.7561],[-1118.3725,-50.2678,-472.95],[-1108.0655,-58.084,-473.1654],[-1099.1055,-58.1003,-473.2823],[-1101.6985,-58.0859,-462.0416],[-1118.5675,-58.1286,-458.9157],[-1128.9875,-58.1307,-458.2413],[-1114.0885,-58.1193,-457.4051],[-1098.7485,-58.0843,-464.2411],[-1097.7465,-58.1004,-471.6446],[-1108.3505,-57.9962,-473.1777],[-1118.8195,-50.1445,-473.0162],[-1123.2985,-50.1479,-473.0926],[-1124.6435,-50.0303,-478.9028],[-1124.7245,-43.6764,-489.3465],[-1124.7145,-43.54,-493.0705]],"members":[{"id":"member","entityId":"entry-8909","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48090","name":"Fireguard Destroyer Patrol","speed":1.15,"pathId":480900,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1670.9595,-114.4981,-649.5899],[-1661.6995,-114.4981,-652.1969],[-1652.4995,-114.4981,-658.2219],[-1644.9595,-114.4981,-669.4289],[-1652.2995,-114.4981,-673.9769],[-1656.8395,-114.4981,-665.3959],[-1659.8295,-114.4981,-653.0669],[-1668.1295,-114.4981,-650.2849]],"members":[{"id":"member","entityId":"entry-8911","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-90728","name":"Fireguard Destroyer Patrol","speed":1.15,"pathId":907280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1235.8035,-43.7682,-399.5204],[-1228.0315,-43.8045,-417.2476],[-1247.1865,-44.0992,-420.5176],[-1243.8555,-44.0772,-406.9236],[-1242.1945,-43.5034,-384.8348],[-1234.8425,-43.7404,-399.0736]],"members":[{"id":"member","entityId":"entry-8911","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91100","name":"Bloodhound Patrol","speed":1.15,"pathId":911000,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-907.6115,-63.0241,-538.1979],[-901.8935,-63.0241,-523.6259],[-910.2215,-63.0241,-549.5609],[-916.7965,-63.0241,-558.6269],[-911.1075,-63.0241,-549.8759],[-907.5775,-63.0241,-539.2739]],"members":[{"id":"member","entityId":"entry-8921","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91101","name":"Bloodhound Patrol","speed":1.15,"pathId":911010,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-905.7955,-63.0241,-538.7809],[-910.6855,-63.0241,-551.7199],[-915.6465,-63.0241,-557.2679],[-909.3675,-63.0241,-548.8899],[-902.6905,-63.0241,-525.5589],[-906.4615,-63.0241,-538.4579]],"members":[{"id":"member","entityId":"entry-8921","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91120","name":"Shadowforge Flame Keeper Patrol","speed":1.15,"pathId":911200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1910.9895,-90.1222,-937.1409],[-1911.2595,-90.1215,-900.6469],[-1910.9095,-90.1229,-914.6419],[-1910.1095,-90.1289,-953.2739],[-1896.1095,-90.1054,-953.4429],[-1882.4995,-90.1054,-953.4279],[-1894.4795,-90.1068,-953.8499],[-1921.3095,-90.1091,-954.9109],[-1940.6995,-90.1105,-955.5539],[-1909.7495,-90.1293,-954.7819],[-1910.5795,-90.1253,-939.1049]],"members":[{"id":"member","entityId":"entry-9956","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-300627","name":"Panzor the Invincible Patrol","speed":1.15,"pathId":3000627,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1664.7895,-72.9992,-573.1719],[-1680.6595,-72.986,-559.8979],[-1704.1395,-72.436,-568.0779],[-1715.2695,-72.4403,-560.9019],[-1700.4395,-72.4403,-546.1949],[-1687.9895,-72.4403,-541.9209],[-1662.7095,-72.4373,-537.7039],[-1641.0595,-72.4214,-547.0959],[-1627.8195,-63.465,-560.3849],[-1613.1595,-63.3852,-576.4809],[-1598.1795,-62.1852,-595.6789],[-1584.8495,-60.9127,-607.9779],[-1574.5995,-59.915,-618.4269],[-1590.4095,-61.3053,-604.9799],[-1604.4995,-63.1348,-588.9789],[-1613.3795,-63.3833,-578.6859],[-1623.3895,-63.3833,-577.4259],[-1642.4195,-63.4926,-598.0439],[-1655.8095,-63.5253,-608.9079],[-1669.7995,-63.4253,-612.7199],[-1682.5295,-63.4491,-611.5949],[-1702.1795,-63.5206,-601.5859],[-1689.1195,-63.5198,-613.1789],[-1673.7895,-63.3923,-612.8669],[-1653.8495,-63.5318,-606.2519],[-1643.4195,-63.3835,-596.0129],[-1629.8395,-63.3835,-581.1539],[-1628.4995,-63.3849,-561.3959],[-1640.2495,-72.3281,-549.2689],[-1657.6095,-72.4333,-546.9159],[-1664.5195,-72.4333,-558.9849],[-1665.6095,-72.9923,-565.8209]],"members":[{"id":"member","entityId":"entry-8923","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-47250","name":"High Interrogator Gerstahn","position":[-839.8775,-68.378,-556.3999]},{"id":"creature-47304","name":"Lord Roccor","position":[-1144.8415,-81.6658,-677.5459]},{"id":"creature-46284","name":"Houndmaster Grebmar","position":[-1136.9905,-82.5615,-584.9169]},{"id":"creature-47771","name":"Pyromancer Loregrain","position":[-1059.4875,-41.0931,-654.0789]},{"id":"creature-47733","name":"Lord Incendius","position":[-1422.8655,-69.9753,-677.2049]},{"id":"creature-47774","name":"Warder Stilgiss","position":[-1352.7065,-48.1828,-752.4269]},{"id":"creature-47631","name":"Fineous Darkvire","position":[-1492.5865,-69.8145,-753.8839]},{"id":"creature-45885","name":"Bael'Gar","position":[-1231.7355,-70.0631,-225.6869]},{"id":"creature-45954","name":"General Angerforge","position":[-1181.7095,-58.0511,-388.7752]},{"id":"creature-45931","name":"Golem Lord Argelmach","position":[-1376.1205,-51.7146,-393.8683]},{"id":"creature-47778","name":"Ambassador Flamelash","position":[-1539.0695,-59.3789,-649.1659]},{"id":"creature-47477","name":"Magmus","position":[-1910.0395,-90.0462,-1069.4629]},{"id":"creature-47613","name":"Emperor Dagran Thaurissan","position":[-1909.4995,-85.6651,-1241.7939]}],"objectiveOrder":[{"id":"creature-47250","name":"High Interrogator Gerstahn","position":[-839.8775,-68.378,-556.3999]},{"id":"creature-47304","name":"Lord Roccor","position":[-1144.8415,-81.6658,-677.5459]},{"id":"creature-46284","name":"Houndmaster Grebmar","position":[-1136.9905,-82.5615,-584.9169]},{"id":"creature-47771","name":"Pyromancer Loregrain","position":[-1059.4875,-41.0931,-654.0789]},{"id":"creature-47733","name":"Lord Incendius","position":[-1422.8655,-69.9753,-677.2049]},{"id":"creature-47774","name":"Warder Stilgiss","position":[-1352.7065,-48.1828,-752.4269]},{"id":"creature-47631","name":"Fineous Darkvire","position":[-1492.5865,-69.8145,-753.8839]},{"id":"creature-45885","name":"Bael'Gar","position":[-1231.7355,-70.0631,-225.6869]},{"id":"creature-45954","name":"General Angerforge","position":[-1181.7095,-58.0511,-388.7752]},{"id":"creature-45931","name":"Golem Lord Argelmach","position":[-1376.1205,-51.7146,-393.8683]},{"id":"creature-47778","name":"Ambassador Flamelash","position":[-1539.0695,-59.3789,-649.1659]},{"id":"creature-47477","name":"Magmus","position":[-1910.0395,-90.0462,-1069.4629]},{"id":"creature-47613","name":"Emperor Dagran Thaurissan","position":[-1909.4995,-85.6651,-1241.7939]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":563,"id":179552,"map":230,"orientation":1.68579,"phaseMask":1,"position_x":839.6,"position_y":9.86411,"position_z":-53.7335,"rotation0":0,"rotation1":0,"rotation2":0.746572,"rotation3":0.665304,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":1584,"guid":9468,"id":165738,"map":230,"orientation":4.98,"phaseMask":1,"position_x":891.99,"position_y":-181.77,"position_z":-42.811,"rotation0":0,"rotation1":0,"rotation2":0.606454,"rotation3":-0.795119,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":1584,"guid":9469,"id":165738,"map":230,"orientation":3.6782,"phaseMask":1,"position_x":891.36,"position_y":-182.133,"position_z":-42.811,"rotation0":0,"rotation1":0,"rotation2":0.964222,"rotation3":-0.265096,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":1584,"guid":9470,"id":165738,"map":230,"orientation":4.55,"phaseMask":1,"position_x":891.299,"position_y":-183.168,"position_z":-42.811,"rotation0":0,"rotation1":0,"rotation2":0.762127,"rotation3":-0.647427,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":1584,"guid":9471,"id":165738,"map":230,"orientation":0.597,"phaseMask":1,"position_x":891.788,"position_y":-182.847,"position_z":-42.811,"rotation0":0,"rotation1":0,"rotation2":0.294087,"rotation3":0.955779,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":1584,"guid":9472,"id":165738,"map":230,"orientation":4.673,"phaseMask":1,"position_x":891.7,"position_y":-184.356,"position_z":-42.811,"rotation0":0,"rotation1":0,"rotation2":0.720895,"rotation3":-0.693044,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10617,"id":165658,"map":230,"orientation":-1.18682,"phaseMask":1,"position_x":679.721,"position_y":102.181,"position_z":-73.2564,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10618,"id":165658,"map":230,"orientation":2.96704,"phaseMask":1,"position_x":634.768,"position_y":-56.406,"position_z":-73.6264,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.0871655,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10619,"id":165658,"map":230,"orientation":0.715585,"phaseMask":1,"position_x":327.184,"position_y":-58.5715,"position_z":-71.3615,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10620,"id":165658,"map":230,"orientation":0.59341,"phaseMask":1,"position_x":1204.1,"position_y":-350.158,"position_z":-93.6315,"rotation0":0,"rotation1":0,"rotation2":0.292371,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10621,"id":165658,"map":230,"orientation":0.261798,"phaseMask":1,"position_x":918.903,"position_y":-447.008,"position_z":-53.8907,"rotation0":0,"rotation1":0,"rotation2":0.130525,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10622,"id":165658,"map":230,"orientation":2.96706,"phaseMask":1,"position_x":748.476,"position_y":-53.7894,"position_z":-71.278,"rotation0":0,"rotation1":0,"rotation2":0.996195,"rotation3":0.0871556,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10623,"id":165658,"map":230,"orientation":1.41372,"phaseMask":1,"position_x":291.891,"position_y":-122.786,"position_z":-69.1713,"rotation0":0,"rotation1":0,"rotation2":0.649449,"rotation3":0.760405,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10624,"id":165658,"map":230,"orientation":-0.401426,"phaseMask":1,"position_x":503.193,"position_y":-190.118,"position_z":-59.3156,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10625,"id":165658,"map":230,"orientation":0.523598,"phaseMask":1,"position_x":643.342,"position_y":144.62,"position_z":-73.8284,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10626,"id":165658,"map":230,"orientation":5.96903,"phaseMask":1,"position_x":964.466,"position_y":-436.64,"position_z":-54.6864,"rotation0":0,"rotation1":0,"rotation2":0.156433,"rotation3":-0.987689,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15229,"id":174744,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1330.14,"position_y":-508.858,"position_z":-88.8709,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15230,"id":174698,"map":230,"orientation":3.38594,"phaseMask":1,"position_x":337.824,"position_y":-145.837,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-0.992546,"rotation3":0.12187,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15232,"id":140439,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":782.058,"position_y":-37.7377,"position_z":-53.7351,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15233,"id":140376,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":631.595,"position_y":-146.055,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15241,"id":140378,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":634.43,"position_y":-148.843,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15248,"id":140401,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":576.696,"position_y":-248.789,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15249,"id":140402,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":572.998,"position_y":-247.158,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15250,"id":140403,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":569.286,"position_y":-245.732,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15251,"id":140373,"map":230,"orientation":3.52557,"phaseMask":1,"position_x":649.304,"position_y":-172.329,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190812,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15252,"id":140374,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":637.171,"position_y":-151.813,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15253,"id":140396,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":538.074,"position_y":-190.059,"position_z":-35.5994,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15254,"id":140397,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":581.72,"position_y":-246.604,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15255,"id":140400,"map":230,"orientation":1.91114,"phaseMask":1,"position_x":581.661,"position_y":-253.098,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.816642,"rotation3":0.577145,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15256,"id":174434,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":707.989,"position_y":58.1926,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15257,"id":140372,"map":230,"orientation":3.52557,"phaseMask":1,"position_x":650.824,"position_y":-176.003,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190812,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15258,"id":158583,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":582.324,"position_y":-254.622,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15259,"id":158585,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":571.203,"position_y":-250.139,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15260,"id":170503,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-786.485,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15261,"id":158674,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-783.717,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15262,"id":140382,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":640.006,"position_y":-148.657,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15263,"id":140383,"map":230,"orientation":4.64258,"phaseMask":1,"position_x":637.074,"position_y":-136.967,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15265,"id":158581,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":580.42,"position_y":-137.035,"position_z":-36.9204,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15266,"id":158582,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":583.853,"position_y":-131.551,"position_z":-35.6645,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15267,"id":170502,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-792.107,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15268,"id":174411,"map":230,"orientation":4.30224,"phaseMask":1,"position_x":571.652,"position_y":-84.3746,"position_z":-45.0172,"rotation0":0,"rotation1":0,"rotation2":-0.836286,"rotation3":0.548294,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15269,"id":170456,"map":230,"orientation":5.73341,"phaseMask":1,"position_x":976.336,"position_y":-323.201,"position_z":-70.7043,"rotation0":0,"rotation1":0,"rotation2":-0.27144,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15270,"id":170458,"map":230,"orientation":4.38078,"phaseMask":1,"position_x":988.142,"position_y":-380.085,"position_z":-66.2875,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15271,"id":158678,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":581.15,"position_y":-132.632,"position_z":-35.6645,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15272,"id":170487,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-778.143,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15273,"id":174432,"map":230,"orientation":6.09993,"phaseMask":1,"position_x":707.989,"position_y":55.8425,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.0915012,"rotation3":0.995805,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15274,"id":170462,"map":230,"orientation":4.09652,"phaseMask":1,"position_x":959.945,"position_y":-436.884,"position_z":-55.3675,"rotation0":0.045383,"rotation1":0.0708761,"rotation2":-0.883594,"rotation3":0.460629,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15275,"id":170463,"map":230,"orientation":5.63333,"phaseMask":1,"position_x":925.641,"position_y":-436.307,"position_z":-56.0272,"rotation0":-0.0749898,"rotation1":0.0214796,"rotation2":-0.318531,"rotation3":0.944697,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15276,"id":170464,"map":230,"orientation":5.63333,"phaseMask":1,"position_x":916.325,"position_y":-435.013,"position_z":-55.5633,"rotation0":-0.0749898,"rotation1":0.0214796,"rotation2":-0.318531,"rotation3":0.944697,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15277,"id":170470,"map":230,"orientation":2.01585,"phaseMask":1,"position_x":797.143,"position_y":-214.991,"position_z":-43.2866,"rotation0":0,"rotation1":0,"rotation2":0.845727,"rotation3":0.533616,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15278,"id":174437,"map":230,"orientation":2.58309,"phaseMask":1,"position_x":711.074,"position_y":47.553,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.961262,"rotation3":0.275637,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15279,"id":170454,"map":230,"orientation":1.0472,"phaseMask":1,"position_x":861.908,"position_y":-198.118,"position_z":-43.6942,"rotation0":0,"rotation1":0,"rotation2":0.5,"rotation3":0.866025,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15280,"id":140381,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":637.171,"position_y":-145.869,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15281,"id":170455,"map":230,"orientation":2.53072,"phaseMask":1,"position_x":877.22,"position_y":-203.719,"position_z":-43.7001,"rotation0":0,"rotation1":0,"rotation2":0.953716,"rotation3":0.300708,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15282,"id":158545,"map":230,"orientation":2.37364,"phaseMask":1,"position_x":634.132,"position_y":-227.8,"position_z":-37.0216,"rotation0":0,"rotation1":0,"rotation2":0.927183,"rotation3":0.374608,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15283,"id":170478,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1348.43,"position_y":-778.283,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15284,"id":158549,"map":230,"orientation":2.74016,"phaseMask":1,"position_x":647.252,"position_y":-220.081,"position_z":-35.3726,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15285,"id":170486,"map":230,"orientation":0,"phaseMask":1,"position_x":1346.59,"position_y":-772.353,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15286,"id":140390,"map":230,"orientation":0.794123,"phaseMask":1,"position_x":551.528,"position_y":-221.466,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.38671,"rotation3":0.922201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15287,"id":140384,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":639.909,"position_y":-142.899,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15288,"id":140385,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":642.65,"position_y":-145.869,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15289,"id":140386,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":645.485,"position_y":-148.657,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15290,"id":140389,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":645.485,"position_y":-143.851,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15291,"id":140391,"map":230,"orientation":0.794123,"phaseMask":1,"position_x":554.387,"position_y":-224.229,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.38671,"rotation3":0.922201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15292,"id":140392,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":575.652,"position_y":-239.522,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15293,"id":140393,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":571.941,"position_y":-238.096,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15294,"id":158559,"map":230,"orientation":0.776672,"phaseMask":1,"position_x":550.548,"position_y":-226.078,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":0.378649,"rotation3":0.92554,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15295,"id":161524,"map":230,"orientation":1.8326,"phaseMask":1,"position_x":585.739,"position_y":-147.762,"position_z":-52.8988,"rotation0":0,"rotation1":0,"rotation2":0.793355,"rotation3":0.60876,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15296,"id":170489,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1414.79,"position_y":-775.303,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15297,"id":170494,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-763.826,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15298,"id":170571,"map":230,"orientation":2.16421,"phaseMask":1,"position_x":870.693,"position_y":-228.936,"position_z":-43.7509,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15299,"id":170515,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-792.355,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15300,"id":170516,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1293.62,"position_y":-399.635,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15301,"id":170550,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-402.735,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15302,"id":170551,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":1376.16,"position_y":-828.828,"position_z":-91.9804,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15303,"id":170514,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-789.586,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15304,"id":170568,"map":230,"orientation":1.20428,"phaseMask":1,"position_x":589.74,"position_y":-141.631,"position_z":-68.4205,"rotation0":0,"rotation1":0,"rotation2":0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15305,"id":158567,"map":230,"orientation":5.9254,"phaseMask":1,"position_x":544.504,"position_y":-161.737,"position_z":-35.6229,"rotation0":0,"rotation1":0,"rotation2":-0.177942,"rotation3":0.984041,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15306,"id":174566,"map":230,"orientation":-0.820305,"phaseMask":1,"position_x":806.764,"position_y":-335.402,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":-0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15307,"id":164689,"map":230,"orientation":-0.837759,"phaseMask":1,"position_x":525.063,"position_y":-238.897,"position_z":-41.0423,"rotation0":0,"rotation1":0,"rotation2":-0.406737,"rotation3":0.913545,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15308,"id":174407,"map":230,"orientation":3.51685,"phaseMask":1,"position_x":359.07,"position_y":-122.451,"position_z":-64.9464,"rotation0":0,"rotation1":0,"rotation2":-0.98245,"rotation3":0.186529,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15309,"id":161523,"map":230,"orientation":0.261799,"phaseMask":1,"position_x":555.751,"position_y":-199.744,"position_z":-52.908,"rotation0":0,"rotation1":0,"rotation2":0.130526,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":600,"state":0,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15310,"id":170439,"map":230,"orientation":4.89565,"phaseMask":1,"position_x":387.75,"position_y":-158.397,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-0.639439,"rotation3":0.768842,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15311,"id":174548,"map":230,"orientation":0,"phaseMask":1,"position_x":807.73,"position_y":-218.651,"position_z":-43.2779,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15312,"id":170448,"map":230,"orientation":3.72628,"phaseMask":1,"position_x":864.765,"position_y":-138.702,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.957571,"rotation3":0.288197,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15313,"id":158560,"map":230,"orientation":0.776672,"phaseMask":1,"position_x":555.782,"position_y":-230.75,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":0.378649,"rotation3":0.92554,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15314,"id":158561,"map":230,"orientation":0.776672,"phaseMask":1,"position_x":564.607,"position_y":-239.377,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":0.378649,"rotation3":0.92554,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15315,"id":158563,"map":230,"orientation":5.9254,"phaseMask":1,"position_x":544.525,"position_y":-171.697,"position_z":-37.0216,"rotation0":0,"rotation1":0,"rotation2":-0.177942,"rotation3":0.984041,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15316,"id":158564,"map":230,"orientation":5.9254,"phaseMask":1,"position_x":546.181,"position_y":-167.31,"position_z":-37.0216,"rotation0":0,"rotation1":0,"rotation2":-0.177942,"rotation3":0.984041,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15317,"id":170548,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-411.637,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15318,"id":170549,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-406.046,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15319,"id":158565,"map":230,"orientation":0.00872424,"phaseMask":1,"position_x":537.947,"position_y":-179.56,"position_z":-35.5946,"rotation0":0,"rotation1":0,"rotation2":0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15320,"id":170440,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":328.053,"position_y":-145.898,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15321,"id":158555,"map":230,"orientation":0.410153,"phaseMask":1,"position_x":548.262,"position_y":-215.418,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.203642,"rotation3":0.979045,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15322,"id":158572,"map":230,"orientation":2.37364,"phaseMask":1,"position_x":637.401,"position_y":-224.436,"position_z":-37.0216,"rotation0":0,"rotation1":0,"rotation2":0.927183,"rotation3":0.374608,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15323,"id":158576,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":328.053,"position_y":-143.881,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15324,"id":174468,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":858.563,"position_y":-141.575,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15325,"id":174494,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":828.191,"position_y":-154.672,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15326,"id":174508,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":880.718,"position_y":-161.082,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15327,"id":174547,"map":230,"orientation":4.72112,"phaseMask":1,"position_x":796.519,"position_y":-211.351,"position_z":-43.2866,"rotation0":0,"rotation1":0,"rotation2":-0.704015,"rotation3":0.710185,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15328,"id":158568,"map":230,"orientation":0.776672,"phaseMask":1,"position_x":531.751,"position_y":-180.286,"position_z":-34.2119,"rotation0":0,"rotation1":0,"rotation2":0.378649,"rotation3":0.92554,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15329,"id":174555,"map":230,"orientation":0.776671,"phaseMask":1,"position_x":797.782,"position_y":-349.003,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.378648,"rotation3":0.925541,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15330,"id":174556,"map":230,"orientation":-0.794125,"phaseMask":1,"position_x":797.862,"position_y":-343.729,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":-0.386711,"rotation3":0.922201,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15331,"id":174557,"map":230,"orientation":-0.820305,"phaseMask":1,"position_x":802.325,"position_y":-339.54,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":-0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15332,"id":161522,"map":230,"orientation":0.261799,"phaseMask":1,"position_x":637.64,"position_y":-177.801,"position_z":-52.8988,"rotation0":0,"rotation1":0,"rotation2":0.130526,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15333,"id":174422,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":564.942,"position_y":-84.6081,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15334,"id":170577,"map":230,"orientation":-0.785397,"phaseMask":1,"position_x":1262.85,"position_y":-293.797,"position_z":-78.1676,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15335,"id":170556,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":496.211,"position_y":121.043,"position_z":0,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15336,"id":174423,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":564.942,"position_y":-93.1329,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15337,"id":170518,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1293.64,"position_y":-404.209,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15338,"id":170491,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1414.79,"position_y":-772.525,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15339,"id":170523,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1470.93,"position_y":-451.666,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15340,"id":170524,"map":230,"orientation":-1.5708,"phaseMask":1,"position_x":1468.17,"position_y":-451.666,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15341,"id":158550,"map":230,"orientation":2.74016,"phaseMask":1,"position_x":649.098,"position_y":-215.769,"position_z":-35.1574,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15342,"id":158552,"map":230,"orientation":4.18879,"phaseMask":1,"position_x":628.817,"position_y":-238.586,"position_z":-35.6229,"rotation0":0,"rotation1":0,"rotation2":-0.866025,"rotation3":0.500001,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15343,"id":174429,"map":230,"orientation":1.53589,"phaseMask":1,"position_x":714.676,"position_y":46.4855,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.694657,"rotation3":0.719341,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15344,"id":170522,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1290.85,"position_y":-447.092,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15345,"id":170525,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1470.91,"position_y":-447.092,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15346,"id":170529,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1468.14,"position_y":-399.635,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15347,"id":158558,"map":230,"orientation":3.50812,"phaseMask":1,"position_x":626.093,"position_y":-133.305,"position_z":-34.2415,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15348,"id":170459,"map":230,"orientation":4.38924,"phaseMask":1,"position_x":975.157,"position_y":-397.196,"position_z":-61.1861,"rotation0":-0.0529556,"rotation1":0.122543,"rotation2":-0.802181,"rotation3":0.581966,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15349,"id":170519,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1290.87,"position_y":-404.209,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15350,"id":170520,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1293.64,"position_y":-451.666,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15351,"id":161460,"map":230,"orientation":2.07694,"phaseMask":1,"position_x":615.614,"position_y":-49.7823,"position_z":-60.0557,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15352,"id":161516,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":702.108,"position_y":-125.745,"position_z":-45.7123,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15353,"id":174410,"map":230,"orientation":2.21657,"phaseMask":1,"position_x":358.277,"position_y":-124.572,"position_z":-64.9464,"rotation0":0,"rotation1":0,"rotation2":0.894934,"rotation3":0.446199,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15354,"id":170484,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1350.63,"position_y":-763.966,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15355,"id":170485,"map":230,"orientation":0,"phaseMask":1,"position_x":1346.59,"position_y":-774.923,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15356,"id":170495,"map":230,"orientation":0,"phaseMask":1,"position_x":1414.93,"position_y":-763.826,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15357,"id":170465,"map":230,"orientation":1.28746,"phaseMask":1,"position_x":908.452,"position_y":-407.597,"position_z":-49.1449,"rotation0":-0.0601768,"rotation1":-0.0496349,"rotation2":0.598132,"rotation3":0.797592,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15358,"id":170481,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1350.63,"position_y":-781.052,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15359,"id":174408,"map":230,"orientation":0.453785,"phaseMask":1,"position_x":356.266,"position_y":-123.488,"position_z":-64.9464,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15360,"id":158546,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":651.512,"position_y":-180.2,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15361,"id":170441,"map":230,"orientation":3.90081,"phaseMask":1,"position_x":781.014,"position_y":-35.2817,"position_z":-53.7351,"rotation0":0,"rotation1":0,"rotation2":-0.928809,"rotation3":0.370558,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15362,"id":170444,"map":230,"orientation":3.1678,"phaseMask":1,"position_x":714.772,"position_y":54.9921,"position_z":-45.0278,"rotation0":0,"rotation1":0,"rotation2":-0.999914,"rotation3":0.013102,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15363,"id":174560,"map":230,"orientation":0.759217,"phaseMask":1,"position_x":810.909,"position_y":-363.11,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.370557,"rotation3":0.92881,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15364,"id":174561,"map":230,"orientation":2.32129,"phaseMask":1,"position_x":816.412,"position_y":-363.597,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15365,"id":174562,"map":230,"orientation":2.32129,"phaseMask":1,"position_x":820.844,"position_y":-359.464,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15366,"id":170461,"map":230,"orientation":4.09652,"phaseMask":1,"position_x":953.668,"position_y":-429.444,"position_z":-54.8981,"rotation0":0.045383,"rotation1":0.0708761,"rotation2":-0.883594,"rotation3":0.460629,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15367,"id":174421,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":568.026,"position_y":-84.5912,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15368,"id":170477,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1348.43,"position_y":-781.052,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15369,"id":170479,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1348.43,"position_y":-766.735,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15370,"id":174497,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":877.092,"position_y":-142.478,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15371,"id":174551,"map":230,"orientation":0.95993,"phaseMask":1,"position_x":790.243,"position_y":-265.338,"position_z":-43.3257,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15372,"id":158608,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1293.62,"position_y":-447.092,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15373,"id":170473,"map":230,"orientation":0,"phaseMask":1,"position_x":1346.59,"position_y":-769.575,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15374,"id":174419,"map":230,"orientation":2.58309,"phaseMask":1,"position_x":568.026,"position_y":-95.2477,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.961262,"rotation3":0.275637,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15375,"id":174438,"map":230,"orientation":4.30224,"phaseMask":1,"position_x":714.699,"position_y":58.4261,"position_z":-45.0278,"rotation0":0,"rotation1":0,"rotation2":-0.836286,"rotation3":0.548294,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15376,"id":170483,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1350.63,"position_y":-766.735,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15377,"id":170469,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":798.546,"position_y":-212.559,"position_z":-43.2866,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15378,"id":170511,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-755.484,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15379,"id":170512,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-752.716,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15380,"id":170561,"map":230,"orientation":-1.8326,"phaseMask":1,"position_x":404.642,"position_y":-60.5172,"position_z":-63.8164,"rotation0":0,"rotation1":0,"rotation2":-0.793355,"rotation3":0.60876,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15381,"id":174420,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":564.942,"position_y":-95.2646,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15382,"id":174413,"map":230,"orientation":2.71399,"phaseMask":1,"position_x":571.919,"position_y":-103.167,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.977231,"rotation3":0.212178,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15383,"id":170471,"map":230,"orientation":2.53072,"phaseMask":1,"position_x":809.888,"position_y":-218.725,"position_z":-43.2779,"rotation0":0,"rotation1":0,"rotation2":0.953716,"rotation3":0.300708,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15384,"id":170475,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1346.45,"position_y":-781.052,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15385,"id":170476,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1346.45,"position_y":-778.283,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15386,"id":158547,"map":230,"orientation":3.71755,"phaseMask":1,"position_x":326.075,"position_y":-138.218,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-0.958819,"rotation3":0.284016,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15387,"id":158548,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":651.497,"position_y":-184.89,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15514,"id":158553,"map":230,"orientation":3.50812,"phaseMask":1,"position_x":653.562,"position_y":-172.165,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15515,"id":158554,"map":230,"orientation":3.50812,"phaseMask":1,"position_x":651.895,"position_y":-167.781,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15516,"id":158557,"map":230,"orientation":3.50812,"phaseMask":1,"position_x":647.242,"position_y":-156.35,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15517,"id":174478,"map":230,"orientation":0.610865,"phaseMask":1,"position_x":865.286,"position_y":-177.086,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15518,"id":170501,"map":230,"orientation":0,"phaseMask":1,"position_x":1414.93,"position_y":-780.912,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15519,"id":170482,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1350.63,"position_y":-778.283,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15520,"id":170446,"map":230,"orientation":3.72628,"phaseMask":1,"position_x":814.658,"position_y":-174.76,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.957571,"rotation3":0.288197,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15521,"id":170506,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-758.089,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15522,"id":170507,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-755.236,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15523,"id":170509,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-761.106,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15524,"id":170510,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-758.337,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15525,"id":174424,"map":230,"orientation":6.09993,"phaseMask":1,"position_x":564.942,"position_y":-86.9582,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.0915012,"rotation3":0.995805,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15526,"id":170447,"map":230,"orientation":2.07694,"phaseMask":1,"position_x":841.268,"position_y":-191.12,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15527,"id":170451,"map":230,"orientation":3.10665,"phaseMask":1,"position_x":857.4,"position_y":-203.156,"position_z":-43.7186,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174693,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15528,"id":174409,"map":230,"orientation":5.16618,"phaseMask":1,"position_x":356.917,"position_y":-121.018,"position_z":-64.9464,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15529,"id":140387,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":637.074,"position_y":-135.305,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15530,"id":174426,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":568.026,"position_y":-93.4484,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15531,"id":174427,"map":230,"orientation":4.7473,"phaseMask":1,"position_x":572.025,"position_y":-93.24,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.694657,"rotation3":0.719341,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15532,"id":174496,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":878.337,"position_y":-144.471,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15533,"id":174512,"map":230,"orientation":3.73501,"phaseMask":1,"position_x":875.812,"position_y":-213.275,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15534,"id":174513,"map":230,"orientation":3.73501,"phaseMask":1,"position_x":874.798,"position_y":-211.648,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15535,"id":174515,"map":230,"orientation":0.349065,"phaseMask":1,"position_x":874.356,"position_y":-216.88,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15536,"id":174564,"map":230,"orientation":2.32129,"phaseMask":1,"position_x":829.574,"position_y":-351.323,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15537,"id":174430,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":711.074,"position_y":49.3523,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15538,"id":174539,"map":230,"orientation":1.11701,"phaseMask":1,"position_x":840.772,"position_y":-340.139,"position_z":-50.2247,"rotation0":0,"rotation1":0,"rotation2":0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15539,"id":174546,"map":230,"orientation":1.05592,"phaseMask":1,"position_x":795.8,"position_y":-213.383,"position_z":-43.2866,"rotation0":0,"rotation1":0,"rotation2":0.503774,"rotation3":0.863836,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15540,"id":170573,"map":230,"orientation":-1.5708,"phaseMask":1,"position_x":1389.55,"position_y":-555.851,"position_z":-92.0093,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15541,"id":174522,"map":230,"orientation":4.24115,"phaseMask":1,"position_x":857.538,"position_y":-199.724,"position_z":-43.7186,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15542,"id":174523,"map":230,"orientation":2.05076,"phaseMask":1,"position_x":884.439,"position_y":-210.863,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.854912,"rotation3":0.518773,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15543,"id":174526,"map":230,"orientation":5.26217,"phaseMask":1,"position_x":885.051,"position_y":-207.044,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.488621,"rotation3":0.872496,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15544,"id":174745,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1431.13,"position_y":-508.938,"position_z":-88.8709,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15545,"id":174501,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":874.79,"position_y":-138.886,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15546,"id":174542,"map":230,"orientation":4.06662,"phaseMask":1,"position_x":843.322,"position_y":-337.313,"position_z":-50.2247,"rotation0":0,"rotation1":0,"rotation2":-0.894934,"rotation3":0.446199,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15547,"id":170581,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1029.29,"position_y":-224.058,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15548,"id":140398,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":578.022,"position_y":-244.973,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15549,"id":170468,"map":230,"orientation":2.57787,"phaseMask":1,"position_x":897.003,"position_y":-414.01,"position_z":-49.47,"rotation0":0,"rotation1":0,"rotation2":0.96054,"rotation3":0.278143,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15550,"id":170584,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":978.344,"position_y":-240.967,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15551,"id":170576,"map":230,"orientation":-0.767945,"phaseMask":1,"position_x":1230.33,"position_y":-205.21,"position_z":-85.6843,"rotation0":0,"rotation1":0,"rotation2":-0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":600,"state":0,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15552,"id":170578,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1029.22,"position_y":-257.987,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15553,"id":174477,"map":230,"orientation":5.86431,"phaseMask":1,"position_x":865.75,"position_y":-143.843,"position_z":-49.7157,"rotation0":0,"rotation1":0,"rotation2":-0.207911,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15554,"id":174490,"map":230,"orientation":4.86074,"phaseMask":1,"position_x":844.962,"position_y":-145.934,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.65276,"rotation3":0.757565,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15555,"id":170490,"map":230,"orientation":0,"phaseMask":1,"position_x":1414.93,"position_y":-778.143,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15556,"id":174491,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":837.766,"position_y":-153.555,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15557,"id":174492,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":832.043,"position_y":-155.015,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15558,"id":174498,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":874.485,"position_y":-144.127,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15559,"id":174499,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":875.73,"position_y":-146.12,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15562,"id":174509,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":879.473,"position_y":-159.089,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15563,"id":174504,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":870.833,"position_y":-132.549,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15564,"id":174505,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":869.588,"position_y":-130.556,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15571,"id":170498,"map":230,"orientation":0,"phaseMask":1,"position_x":1410.75,"position_y":-766.594,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15572,"id":170540,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-442.487,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15573,"id":170541,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-435.961,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15574,"id":140399,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":574.311,"position_y":-243.547,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15575,"id":174479,"map":230,"orientation":3.72628,"phaseMask":1,"position_x":886.162,"position_y":-164.351,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.957571,"rotation3":0.288197,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15576,"id":157923,"map":230,"orientation":2.35619,"phaseMask":1,"position_x":723.106,"position_y":-105.874,"position_z":-71.4839,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":0,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15577,"id":170582,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":995.262,"position_y":-257.966,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15578,"id":174451,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":824.111,"position_y":-172.223,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15579,"id":174452,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":819.593,"position_y":-164.994,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15580,"id":174540,"map":230,"orientation":2.41728,"phaseMask":1,"position_x":843.022,"position_y":-339.882,"position_z":-50.2247,"rotation0":0,"rotation1":0,"rotation2":0.935135,"rotation3":0.354292,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15581,"id":174510,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":876.866,"position_y":-160.738,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15582,"id":174511,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":878.111,"position_y":-162.731,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15583,"id":174544,"map":230,"orientation":4.18879,"phaseMask":1,"position_x":807.868,"position_y":-301.474,"position_z":-43.2868,"rotation0":0,"rotation1":0,"rotation2":-0.866025,"rotation3":0.500001,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15584,"id":174545,"map":230,"orientation":2.61799,"phaseMask":1,"position_x":808.709,"position_y":-303.887,"position_z":-43.2868,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15585,"id":174436,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":707.989,"position_y":47.5361,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15586,"id":174503,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":873.428,"position_y":-142.527,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15587,"id":170545,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-442.487,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15588,"id":170546,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-445.798,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15589,"id":170538,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-411.637,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15590,"id":170539,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-445.798,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15591,"id":170543,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-435.961,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15592,"id":174480,"map":230,"orientation":3.27252,"phaseMask":1,"position_x":878.786,"position_y":-168.69,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.997858,"rotation3":0.0654165,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15593,"id":174414,"map":230,"orientation":3.1678,"phaseMask":1,"position_x":578.09,"position_y":-100.769,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.999914,"rotation3":0.013102,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15594,"id":174484,"map":230,"orientation":0.183259,"phaseMask":1,"position_x":858.867,"position_y":-166.316,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.0915012,"rotation3":0.995805,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15595,"id":170542,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-432.65,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15596,"id":174481,"map":230,"orientation":6.25701,"phaseMask":1,"position_x":883.364,"position_y":-165.954,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.0130892,"rotation3":0.999914,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15597,"id":174482,"map":230,"orientation":3.74374,"phaseMask":1,"position_x":867.799,"position_y":-175.515,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.955019,"rotation3":0.296545,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15598,"id":174483,"map":230,"orientation":0.183259,"phaseMask":1,"position_x":858.46,"position_y":-164.224,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.0915012,"rotation3":0.995805,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15599,"id":174485,"map":230,"orientation":3.4034,"phaseMask":1,"position_x":861.834,"position_y":-165.583,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15600,"id":174486,"map":230,"orientation":3.4034,"phaseMask":1,"position_x":861.265,"position_y":-163.529,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15601,"id":174487,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":840.372,"position_y":-151.906,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15602,"id":170532,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1379.53,"position_y":-385.027,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15603,"id":170533,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1382.29,"position_y":-398.309,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15604,"id":170536,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-402.735,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15605,"id":170562,"map":230,"orientation":-0.523598,"phaseMask":1,"position_x":284.599,"position_y":-85.7571,"position_z":-76.9561,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15606,"id":170564,"map":230,"orientation":-1.23046,"phaseMask":1,"position_x":375.598,"position_y":-189.419,"position_z":-70.0353,"rotation0":0,"rotation1":0,"rotation2":-0.577146,"rotation3":0.816641,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15607,"id":170569,"map":230,"orientation":0.898845,"phaseMask":1,"position_x":630.367,"position_y":-160.274,"position_z":-71.0334,"rotation0":0,"rotation1":0,"rotation2":0.434445,"rotation3":0.900698,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15608,"id":174045,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1211.41,"position_y":-443.718,"position_z":-102.585,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15609,"id":174472,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":868.681,"position_y":-165.685,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15610,"id":174470,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":857.317,"position_y":-139.582,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15611,"id":174471,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":859.924,"position_y":-137.933,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15612,"id":174495,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":829.437,"position_y":-156.665,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15613,"id":170492,"map":230,"orientation":0,"phaseMask":1,"position_x":1414.93,"position_y":-766.594,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15614,"id":174449,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":823.445,"position_y":-165.337,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15615,"id":170528,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1470.91,"position_y":-399.635,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15616,"id":170534,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1378.98,"position_y":-398.309,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15617,"id":170559,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":496.397,"position_y":16.0126,"position_z":-70.2566,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15618,"id":174514,"map":230,"orientation":0.523598,"phaseMask":1,"position_x":873.163,"position_y":-214.855,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15619,"id":174525,"map":230,"orientation":2.05076,"phaseMask":1,"position_x":889.649,"position_y":-207.771,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.854912,"rotation3":0.518773,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15620,"id":170552,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":1384.54,"position_y":-828.828,"position_z":-91.9804,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15621,"id":158570,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":572.759,"position_y":-139.973,"position_z":-36.9204,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15622,"id":174417,"map":230,"orientation":0.0523589,"phaseMask":1,"position_x":556.021,"position_y":-103.134,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.0261765,"rotation3":0.999657,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15623,"id":174418,"map":230,"orientation":3.18527,"phaseMask":1,"position_x":558.985,"position_y":-103.134,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.999762,"rotation3":0.0218352,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15624,"id":170513,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-783.965,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15625,"id":174463,"map":230,"orientation":6.25701,"phaseMask":1,"position_x":857.41,"position_y":-173.557,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.0130892,"rotation3":0.999914,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15626,"id":174469,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":867.552,"position_y":-163.878,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15627,"id":170505,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-760.858,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15628,"id":170567,"map":230,"orientation":-2.33874,"phaseMask":1,"position_x":556.919,"position_y":-243.199,"position_z":-70.249,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15629,"id":170579,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1046.23,"position_y":-241.007,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15630,"id":174441,"map":230,"orientation":5.6985,"phaseMask":1,"position_x":717.915,"position_y":42.1551,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.288196,"rotation3":0.957572,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15631,"id":174443,"map":230,"orientation":2.71399,"phaseMask":1,"position_x":714.967,"position_y":39.6332,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.977231,"rotation3":0.212178,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15635,"id":174444,"map":230,"orientation":3.1678,"phaseMask":1,"position_x":721.137,"position_y":42.032,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.999914,"rotation3":0.013102,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15636,"id":174445,"map":230,"orientation":0.0523589,"phaseMask":1,"position_x":699.069,"position_y":39.6672,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.0261765,"rotation3":0.999657,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15637,"id":174440,"map":230,"orientation":2.58309,"phaseMask":1,"position_x":708.651,"position_y":42.1332,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.961262,"rotation3":0.275637,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15638,"id":174465,"map":230,"orientation":2.65289,"phaseMask":1,"position_x":868.341,"position_y":-145.547,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.970295,"rotation3":0.241925,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15639,"id":161461,"map":230,"orientation":-2.63545,"phaseMask":1,"position_x":614.021,"position_y":-46.8877,"position_z":-59.636,"rotation0":0,"rotation1":0,"rotation2":-0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15640,"id":161462,"map":230,"orientation":2.35619,"phaseMask":1,"position_x":723.114,"position_y":-105.856,"position_z":-71.4763,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15641,"id":174435,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":711.074,"position_y":58.2095,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15642,"id":170583,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1012.31,"position_y":-207.095,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15643,"id":158566,"map":230,"orientation":0.00872424,"phaseMask":1,"position_x":537.973,"position_y":-184.249,"position_z":-35.5492,"rotation0":0,"rotation1":0,"rotation2":0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15644,"id":174447,"map":230,"orientation":2.09439,"phaseMask":1,"position_x":831.309,"position_y":-165.398,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.866025,"rotation3":0.500001,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15645,"id":170566,"map":230,"orientation":1.08211,"phaseMask":1,"position_x":550.306,"position_y":-277.685,"position_z":-75.2609,"rotation0":0,"rotation1":0,"rotation2":0.515041,"rotation3":0.857166,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15646,"id":174565,"map":230,"orientation":0.75049,"phaseMask":1,"position_x":804.315,"position_y":-356.08,"position_z":-49.3661,"rotation0":0,"rotation1":0,"rotation2":0.3665,"rotation3":0.930418,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15647,"id":174473,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":871.288,"position_y":-164.036,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15648,"id":174475,"map":230,"orientation":5.37562,"phaseMask":1,"position_x":870.39,"position_y":-169.872,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.438371,"rotation3":0.898794,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15649,"id":174466,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":870.335,"position_y":-162.511,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15650,"id":170531,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1382.29,"position_y":-385.027,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15651,"id":170574,"map":230,"orientation":-1.5708,"phaseMask":1,"position_x":1370.65,"position_y":-555.846,"position_z":-92.0093,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15652,"id":172911,"map":230,"orientation":2.37364,"phaseMask":1,"position_x":895.106,"position_y":-273.564,"position_z":-71.8876,"rotation0":0,"rotation1":0,"rotation2":0.927183,"rotation3":0.374608,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15653,"id":158569,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":568.548,"position_y":-141.397,"position_z":-36.9204,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15654,"id":140395,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":579.35,"position_y":-241.153,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15655,"id":174457,"map":230,"orientation":5.20981,"phaseMask":1,"position_x":816.703,"position_y":-178.889,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.511292,"rotation3":0.859407,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15656,"id":174459,"map":230,"orientation":5.3058,"phaseMask":1,"position_x":830.015,"position_y":-162.58,"position_z":-49.7157,"rotation0":0,"rotation1":0,"rotation2":-0.46947,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15657,"id":174460,"map":230,"orientation":0.610865,"phaseMask":1,"position_x":822.982,"position_y":-182.302,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15658,"id":174461,"map":230,"orientation":3.72628,"phaseMask":1,"position_x":860.208,"position_y":-171.954,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.957571,"rotation3":0.288197,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15659,"id":170449,"map":230,"orientation":2.13803,"phaseMask":1,"position_x":875.88,"position_y":-170.521,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.876726,"rotation3":0.48099,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15660,"id":170450,"map":230,"orientation":3.72628,"phaseMask":1,"position_x":846.843,"position_y":-148.808,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.957571,"rotation3":0.288197,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15661,"id":174500,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":876.035,"position_y":-140.878,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15662,"id":170555,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":436.751,"position_y":-343.548,"position_z":0,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15663,"id":170537,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-414.949,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15664,"id":170570,"map":230,"orientation":2.62672,"phaseMask":1,"position_x":560.531,"position_y":-51.8159,"position_z":-60.094,"rotation0":0,"rotation1":0,"rotation2":0.967046,"rotation3":0.254602,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15665,"id":174446,"map":230,"orientation":3.18527,"phaseMask":1,"position_x":702.032,"position_y":39.6672,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.999762,"rotation3":0.0218352,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15666,"id":158584,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":578.612,"position_y":-253.196,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15667,"id":174416,"map":230,"orientation":0.0523589,"phaseMask":1,"position_x":562.379,"position_y":-100.629,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.0261765,"rotation3":0.999657,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15668,"id":140388,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":639.909,"position_y":-138.093,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15669,"id":170466,"map":230,"orientation":2.57787,"phaseMask":1,"position_x":899.684,"position_y":-408.182,"position_z":-49.47,"rotation0":0,"rotation1":0,"rotation2":0.96054,"rotation3":0.278143,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15670,"id":170467,"map":230,"orientation":1.28633,"phaseMask":1,"position_x":892.737,"position_y":-407.466,"position_z":-49.47,"rotation0":0,"rotation1":0,"rotation2":0.599732,"rotation3":0.800201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15671,"id":174439,"map":230,"orientation":0.0523589,"phaseMask":1,"position_x":705.427,"position_y":42.172,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.0261765,"rotation3":0.999657,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":16717,"id":174549,"map":230,"orientation":4.18007,"phaseMask":1,"position_x":793.602,"position_y":-263.943,"position_z":-43.3257,"rotation0":0,"rotation1":0,"rotation2":-0.868198,"rotation3":0.496217,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":16733,"id":174450,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":820.839,"position_y":-166.987,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17102,"id":174453,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":822.2,"position_y":-163.345,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17103,"id":174488,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":839.127,"position_y":-149.913,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17104,"id":174535,"map":230,"orientation":0.130899,"phaseMask":1,"position_x":902.35,"position_y":-200.156,"position_z":-43.7186,"rotation0":0,"rotation1":0,"rotation2":0.065403,"rotation3":0.997859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17105,"id":174537,"map":230,"orientation":0.0872641,"phaseMask":1,"position_x":862.476,"position_y":-196.087,"position_z":-43.6942,"rotation0":0,"rotation1":0,"rotation2":0.0436182,"rotation3":0.999048,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17106,"id":174538,"map":230,"orientation":0,"phaseMask":1,"position_x":875.048,"position_y":-203.645,"position_z":-43.7001,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17107,"id":174543,"map":230,"orientation":0.968655,"phaseMask":1,"position_x":806.124,"position_y":-303.902,"position_z":-43.2868,"rotation0":0,"rotation1":0,"rotation2":0.465613,"rotation3":0.884988,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17108,"id":170493,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-766.594,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17109,"id":170496,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-780.912,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17110,"id":170497,"map":230,"orientation":0,"phaseMask":1,"position_x":1410.75,"position_y":-763.826,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17111,"id":174527,"map":230,"orientation":5.26217,"phaseMask":1,"position_x":890.261,"position_y":-203.953,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.488621,"rotation3":0.872496,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17112,"id":174528,"map":230,"orientation":5.26217,"phaseMask":1,"position_x":882.976,"position_y":-208.147,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.488621,"rotation3":0.872496,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17113,"id":174529,"map":230,"orientation":5.26217,"phaseMask":1,"position_x":888.187,"position_y":-205.056,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.488621,"rotation3":0.872496,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17114,"id":174532,"map":230,"orientation":0.532325,"phaseMask":1,"position_x":894.583,"position_y":-203.381,"position_z":-43.6971,"rotation0":0,"rotation1":0,"rotation2":0.263031,"rotation3":0.964787,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17115,"id":174431,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":711.074,"position_y":55.8596,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17116,"id":174454,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":825.24,"position_y":-174.031,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17117,"id":174456,"map":230,"orientation":4.86074,"phaseMask":1,"position_x":812.777,"position_y":-171.886,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.65276,"rotation3":0.757565,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17118,"id":174489,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":836.52,"position_y":-151.562,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17119,"id":170442,"map":230,"orientation":3.1678,"phaseMask":1,"position_x":571.724,"position_y":-87.8086,"position_z":-45.0172,"rotation0":0,"rotation1":0,"rotation2":-0.999914,"rotation3":0.013102,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17120,"id":170443,"map":230,"orientation":1.57952,"phaseMask":1,"position_x":568.484,"position_y":-103.18,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.710185,"rotation3":0.704015,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17121,"id":174458,"map":230,"orientation":1.45735,"phaseMask":1,"position_x":818.056,"position_y":-181.816,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.665882,"rotation3":0.746057,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":17122,"id":170553,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":1381.39,"position_y":-827.561,"position_z":-91.9804,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17123,"id":170521,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1290.87,"position_y":-451.666,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":17124,"id":170580,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1012.28,"position_y":-274.911,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17125,"id":174518,"map":230,"orientation":0.523598,"phaseMask":1,"position_x":870.956,"position_y":-211.203,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17126,"id":174519,"map":230,"orientation":0.349065,"phaseMask":1,"position_x":872.149,"position_y":-213.228,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17127,"id":174520,"map":230,"orientation":2.03331,"phaseMask":1,"position_x":853.396,"position_y":-208.027,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.850351,"rotation3":0.526215,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":17128,"id":158556,"map":230,"orientation":0.410153,"phaseMask":1,"position_x":546.405,"position_y":-211.112,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.203642,"rotation3":0.979045,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17129,"id":174516,"map":230,"orientation":3.73501,"phaseMask":1,"position_x":877.005,"position_y":-215.3,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17130,"id":174428,"map":230,"orientation":1.53589,"phaseMask":1,"position_x":571.629,"position_y":-96.3151,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.694657,"rotation3":0.719341,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17131,"id":170526,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1468.14,"position_y":-447.092,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":17132,"id":170488,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1414.79,"position_y":-769.955,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":17133,"id":174699,"map":230,"orientation":3.38594,"phaseMask":1,"position_x":334.587,"position_y":-133.674,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-0.992546,"rotation3":0.12187,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17635,"id":174530,"map":230,"orientation":1.87623,"phaseMask":1,"position_x":891.724,"position_y":-206.668,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.806444,"rotation3":0.59131,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17899,"id":170452,"map":230,"orientation":5.27962,"phaseMask":1,"position_x":905.256,"position_y":-198.325,"position_z":-43.7186,"rotation0":0,"rotation1":0,"rotation2":-0.480989,"rotation3":0.876727,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17900,"id":174425,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":568.026,"position_y":-86.9411,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17901,"id":170508,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-752.468,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":17902,"id":170517,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1290.85,"position_y":-399.635,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17903,"id":170535,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-406.046,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":17904,"id":174554,"map":230,"orientation":0.776671,"phaseMask":1,"position_x":802.021,"position_y":-353.522,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.378648,"rotation3":0.925541,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17905,"id":174462,"map":230,"orientation":3.21142,"phaseMask":1,"position_x":844.28,"position_y":-189.47,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349061,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":17906,"id":170558,"map":230,"orientation":-0.785397,"phaseMask":1,"position_x":1311.48,"position_y":-343.072,"position_z":-92.0093,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17962,"id":174493,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":830.798,"position_y":-153.023,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":18196,"id":174531,"map":230,"orientation":3.60411,"phaseMask":1,"position_x":897.474,"position_y":-202.262,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.973379,"rotation3":0.229201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":18197,"id":170557,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":488.845,"position_y":87.2209,"position_z":0,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":18216,"id":170565,"map":230,"orientation":2.24275,"phaseMask":1,"position_x":412.167,"position_y":-202.4,"position_z":-65.0041,"rotation0":0,"rotation1":0,"rotation2":0.900699,"rotation3":0.434444,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":18217,"id":174521,"map":230,"orientation":5.24472,"phaseMask":1,"position_x":852.277,"position_y":-205.136,"position_z":-43.6971,"rotation0":0,"rotation1":0,"rotation2":-0.496216,"rotation3":0.868199,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":18280,"id":161525,"map":230,"orientation":1.8326,"phaseMask":1,"position_x":607.668,"position_y":-229.653,"position_z":-52.8988,"rotation0":0,"rotation1":0,"rotation2":0.793355,"rotation3":0.60876,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":18875,"id":170544,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-432.65,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":20541,"id":158680,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":571.139,"position_y":-136.509,"position_z":-35.6645,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":20861,"id":174476,"map":230,"orientation":1.62316,"phaseMask":1,"position_x":872.208,"position_y":-172.535,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.725374,"rotation3":0.688355,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":26225,"id":170499,"map":230,"orientation":0,"phaseMask":1,"position_x":1410.75,"position_y":-778.143,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35794,"id":170530,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1468.17,"position_y":-404.209,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35795,"id":170547,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-414.949,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35801,"id":174563,"map":230,"orientation":2.32129,"phaseMask":1,"position_x":825.268,"position_y":-355.339,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35802,"id":174536,"map":230,"orientation":3.75246,"phaseMask":1,"position_x":864.572,"position_y":-195.525,"position_z":-43.6942,"rotation0":0,"rotation1":0,"rotation2":-0.953716,"rotation3":0.300708,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35803,"id":174415,"map":230,"orientation":2.58309,"phaseMask":1,"position_x":565.604,"position_y":-100.667,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.961262,"rotation3":0.275637,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35804,"id":170445,"map":230,"orientation":1.57952,"phaseMask":1,"position_x":711.532,"position_y":39.6208,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.710185,"rotation3":0.704015,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35805,"id":158580,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":577.717,"position_y":-138.115,"position_z":-36.9204,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35806,"id":174534,"map":230,"orientation":0.532325,"phaseMask":1,"position_x":891.735,"position_y":-198.835,"position_z":-43.6971,"rotation0":0,"rotation1":0,"rotation2":0.263031,"rotation3":0.964787,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35807,"id":170572,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1449.13,"position_y":-342.325,"position_z":-92.0093,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":35808,"id":158571,"map":230,"orientation":3.71755,"phaseMask":1,"position_x":327.122,"position_y":-139.953,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-0.958819,"rotation3":0.284016,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":35809,"id":158551,"map":230,"orientation":2.37364,"phaseMask":1,"position_x":634.132,"position_y":-233.81,"position_z":-35.6229,"rotation0":0,"rotation1":0,"rotation2":0.927183,"rotation3":0.374608,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35810,"id":170563,"map":230,"orientation":1.02102,"phaseMask":1,"position_x":319.473,"position_y":-216.317,"position_z":-77.7557,"rotation0":0,"rotation1":0,"rotation2":0.488622,"rotation3":0.872495,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35811,"id":170480,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1348.43,"position_y":-763.966,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":35812,"id":170554,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":1379.13,"position_y":-827.561,"position_z":-91.9804,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35813,"id":170474,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1346.45,"position_y":-766.735,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35814,"id":174467,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":861.169,"position_y":-139.926,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":35815,"id":170457,"map":230,"orientation":4.38078,"phaseMask":1,"position_x":991.852,"position_y":-356.764,"position_z":-65.3932,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35816,"id":170504,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-789.338,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":35817,"id":140380,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":634.43,"position_y":-142.899,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35818,"id":170472,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1346.45,"position_y":-763.966,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35819,"id":174524,"map":230,"orientation":1.87623,"phaseMask":1,"position_x":886.514,"position_y":-209.76,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.806444,"rotation3":0.59131,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35820,"id":170575,"map":230,"orientation":-1.5708,"phaseMask":1,"position_x":1380.12,"position_y":-710.482,"position_z":-92.0093,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35821,"id":170560,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":569.589,"position_y":-9.36154,"position_z":-70.2566,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35822,"id":170453,"map":230,"orientation":2.79252,"phaseMask":1,"position_x":864.724,"position_y":-197.895,"position_z":-43.6942,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35823,"id":174474,"map":230,"orientation":4.86074,"phaseMask":1,"position_x":862.884,"position_y":-135.828,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.65276,"rotation3":0.757565,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35824,"id":174433,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":707.989,"position_y":49.6678,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35825,"id":158679,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":573.842,"position_y":-135.429,"position_z":-35.6645,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35826,"id":174550,"map":230,"orientation":0.95993,"phaseMask":1,"position_x":792,"position_y":-266.546,"position_z":-43.3257,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":35827,"id":170460,"map":230,"orientation":4.39999,"phaseMask":1,"position_x":972.812,"position_y":-408.586,"position_z":-60.673,"rotation0":-0.0449386,"rotation1":-0.0442982,"rotation2":-0.806544,"rotation3":0.587796,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35828,"id":174533,"map":230,"orientation":3.60411,"phaseMask":1,"position_x":894.627,"position_y":-197.716,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.973379,"rotation3":0.229201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35862,"id":170592,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":1380.52,"position_y":-834.296,"position_z":-86.6783,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35863,"id":174502,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":872.183,"position_y":-140.534,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35864,"id":174558,"map":230,"orientation":-0.820305,"phaseMask":1,"position_x":811.128,"position_y":-331.38,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":-0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35865,"id":174517,"map":230,"orientation":3.73501,"phaseMask":1,"position_x":873.605,"position_y":-209.623,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35866,"id":170500,"map":230,"orientation":0,"phaseMask":1,"position_x":1410.75,"position_y":-780.912,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":39923,"id":164688,"map":230,"orientation":-0.881392,"phaseMask":1,"position_x":525.067,"position_y":-238.766,"position_z":-41.0167,"rotation0":0,"rotation1":0,"rotation2":-0.426569,"rotation3":0.904455,"spawnMask":1,"spawntimesecs":600,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":39924,"id":174559,"map":230,"orientation":0.759217,"phaseMask":1,"position_x":806.742,"position_y":-358.63,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.370557,"rotation3":0.92881,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":39925,"id":170607,"map":230,"orientation":-1.03847,"phaseMask":1,"position_x":848.268,"position_y":-197.164,"position_z":-43.6743,"rotation0":0,"rotation1":0,"rotation2":-0.496216,"rotation3":0.868199,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":39926,"id":174448,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":826.894,"position_y":-170.856,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":43082,"id":158562,"map":230,"orientation":1.45735,"phaseMask":1,"position_x":547.474,"position_y":-155.238,"position_z":-35.6229,"rotation0":0,"rotation1":0,"rotation2":0.665882,"rotation3":0.746057,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":43083,"id":140375,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":640.006,"position_y":-154.601,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43084,"id":174412,"map":230,"orientation":5.6985,"phaseMask":1,"position_x":574.867,"position_y":-100.646,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.288196,"rotation3":0.957572,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43085,"id":174541,"map":230,"orientation":5.63741,"phaseMask":1,"position_x":840.824,"position_y":-337.855,"position_z":-50.2247,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43086,"id":174442,"map":230,"orientation":4.7473,"phaseMask":1,"position_x":715.072,"position_y":49.5606,"position_z":-45.0064,"rotation0":0,"rotation1":0,"rotation2":-0.694657,"rotation3":0.719341,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43087,"id":174455,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":827.847,"position_y":-172.382,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43088,"id":174506,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":866.981,"position_y":-132.205,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":43089,"id":140394,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":583.062,"position_y":-242.579,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43090,"id":174464,"map":230,"orientation":3.74374,"phaseMask":1,"position_x":825.495,"position_y":-180.731,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.955019,"rotation3":0.296545,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43091,"id":158599,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-786.733,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43092,"id":170527,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1470.93,"position_y":-404.209,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43093,"id":174552,"map":230,"orientation":4.18007,"phaseMask":1,"position_x":791.756,"position_y":-262.877,"position_z":-43.3257,"rotation0":0,"rotation1":0,"rotation2":-0.868198,"rotation3":0.496217,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43094,"id":174553,"map":230,"orientation":-2.3911,"phaseMask":1,"position_x":804.221,"position_y":-356.07,"position_z":-48.9646,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43095,"id":174507,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":868.226,"position_y":-134.198,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":43096,"id":140379,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":631.595,"position_y":-140.111,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43100,"id":175736,"map":230,"orientation":-2.89725,"phaseMask":1,"position_x":796.877,"position_y":-259.958,"position_z":-43.2215,"rotation0":0,"rotation1":0,"rotation2":-0.992546,"rotation3":0.121868,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43101,"id":175739,"map":230,"orientation":1.309,"phaseMask":1,"position_x":768.508,"position_y":-313.491,"position_z":-42.3144,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43102,"id":175725,"map":230,"orientation":1.69297,"phaseMask":1,"position_x":816.034,"position_y":-310.85,"position_z":-42.3211,"rotation0":0,"rotation1":0,"rotation2":0.748956,"rotation3":0.66262,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43109,"id":165739,"map":230,"orientation":-2.63545,"phaseMask":1,"position_x":896.804,"position_y":-180.447,"position_z":-42.8357,"rotation0":0,"rotation1":0,"rotation2":-0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43110,"id":165739,"map":230,"orientation":0.523599,"phaseMask":1,"position_x":892.705,"position_y":-183.942,"position_z":-42.8634,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43111,"id":165738,"map":230,"orientation":0.436332,"phaseMask":1,"position_x":890.764,"position_y":-182.514,"position_z":-42.8079,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43116,"id":171941,"map":230,"orientation":-1.22173,"phaseMask":1,"position_x":848.112,"position_y":-194.884,"position_z":-43.7037,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43117,"id":173234,"map":230,"orientation":-1.20428,"phaseMask":1,"position_x":388.327,"position_y":-159.248,"position_z":-64.0879,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43118,"id":173232,"map":230,"orientation":1.74533,"phaseMask":1,"position_x":793.133,"position_y":-32.2615,"position_z":-52.628,"rotation0":0,"rotation1":0,"rotation2":0.766045,"rotation3":0.642787,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43119,"id":166872,"map":230,"orientation":0.331613,"phaseMask":1,"position_x":401.911,"position_y":-52.3001,"position_z":-63.939,"rotation0":0,"rotation1":0,"rotation2":0.165048,"rotation3":0.986286,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43120,"id":160836,"map":230,"orientation":0.767945,"phaseMask":1,"position_x":800.501,"position_y":-354.719,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43121,"id":160836,"map":230,"orientation":2.33874,"phaseMask":1,"position_x":830.274,"position_y":-352.138,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43122,"id":160836,"map":230,"orientation":-0.802851,"phaseMask":1,"position_x":805.92,"position_y":-334.672,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":-0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43123,"id":160836,"map":230,"orientation":0.802851,"phaseMask":1,"position_x":805.943,"position_y":-359.275,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43124,"id":160836,"map":230,"orientation":-0.802851,"phaseMask":1,"position_x":801.531,"position_y":-338.64,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":-0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43125,"id":160836,"map":230,"orientation":-0.820305,"phaseMask":1,"position_x":810.212,"position_y":-330.354,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":-0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43126,"id":160836,"map":230,"orientation":2.26893,"phaseMask":1,"position_x":826.025,"position_y":-356.067,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.906308,"rotation3":0.422617,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43127,"id":160836,"map":230,"orientation":2.23402,"phaseMask":1,"position_x":821.327,"position_y":-360.303,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43128,"id":160836,"map":230,"orientation":2.35619,"phaseMask":1,"position_x":817.216,"position_y":-364.331,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43129,"id":160836,"map":230,"orientation":-0.802851,"phaseMask":1,"position_x":796.978,"position_y":-342.902,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":-0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43130,"id":164819,"map":230,"orientation":0.820305,"phaseMask":1,"position_x":831.471,"position_y":-339.58,"position_z":-46.7698,"rotation0":0,"rotation1":0,"rotation2":0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43131,"id":164825,"map":230,"orientation":0.802851,"phaseMask":1,"position_x":831.54,"position_y":-339.529,"position_z":-46.682,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43133,"id":179553,"map":230,"orientation":3.01942,"phaseMask":1,"position_x":1128.01,"position_y":-471.763,"position_z":-104.032,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610484,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43134,"id":160845,"map":230,"orientation":0.750492,"phaseMask":1,"position_x":803.861,"position_y":-356.356,"position_z":-47.464,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930417,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43135,"id":160836,"map":230,"orientation":0.785398,"phaseMask":1,"position_x":810.224,"position_y":-363.701,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43136,"id":160836,"map":230,"orientation":0.767945,"phaseMask":1,"position_x":796.287,"position_y":-350.17,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43137,"id":161495,"map":230,"orientation":0.733038,"phaseMask":1,"position_x":803.48,"position_y":-357.449,"position_z":-48.9414,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67022,"id":195253,"map":230,"orientation":2.09439,"phaseMask":1,"position_x":876.175,"position_y":-218.116,"position_z":-37.5498,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67023,"id":195253,"map":230,"orientation":-2.61799,"phaseMask":1,"position_x":892.459,"position_y":-168.132,"position_z":-37.2257,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67024,"id":195253,"map":230,"orientation":2.07694,"phaseMask":1,"position_x":897.07,"position_y":-206.645,"position_z":-37.4959,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67025,"id":195253,"map":230,"orientation":2.07694,"phaseMask":1,"position_x":886.68,"position_y":-212.39,"position_z":-37.4664,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67026,"id":195253,"map":230,"orientation":2.11185,"phaseMask":1,"position_x":855.381,"position_y":-230.789,"position_z":-37.2527,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67027,"id":195253,"map":230,"orientation":-2.61799,"phaseMask":1,"position_x":898.565,"position_y":-178.468,"position_z":-37.0915,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67028,"id":195253,"map":230,"orientation":0.558504,"phaseMask":1,"position_x":843.094,"position_y":-229.722,"position_z":-36.9933,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67871,"id":164869,"map":230,"orientation":0.0494741,"phaseMask":1,"position_x":1225.07,"position_y":-244.98,"position_z":-85.67,"rotation0":0,"rotation1":0,"rotation2":0.0247345,"rotation3":0.999694,"spawnMask":1,"spawntimesecs":-250,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":67872,"id":169243,"map":230,"orientation":0.786698,"phaseMask":1,"position_x":1265.55,"position_y":-284.421,"position_z":-78.2193,"rotation0":0,"rotation1":0,"rotation2":0.383284,"rotation3":0.923631,"spawnMask":1,"spawntimesecs":-300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67915,"id":195256,"map":230,"orientation":-1.11701,"phaseMask":1,"position_x":855.561,"position_y":-142.067,"position_z":-48.0872,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67917,"id":195256,"map":230,"orientation":-1.85005,"phaseMask":1,"position_x":879.826,"position_y":-145.935,"position_z":-49.7594,"rotation0":0,"rotation1":0,"rotation2":-0.798636,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67918,"id":195256,"map":230,"orientation":-1.11701,"phaseMask":1,"position_x":874.269,"position_y":-182.294,"position_z":-43.7037,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67919,"id":195256,"map":230,"orientation":2.96704,"phaseMask":1,"position_x":870.174,"position_y":-219.478,"position_z":-43.7037,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.0871655,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67920,"id":195256,"map":230,"orientation":-3.03684,"phaseMask":1,"position_x":886.752,"position_y":-156.676,"position_z":-49.7605,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523524,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67921,"id":195256,"map":230,"orientation":-1.11701,"phaseMask":1,"position_x":848.401,"position_y":-146.281,"position_z":-48.0859,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80698,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":830.654,"position_y":-163.978,"position_z":-48.88,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80699,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":891.046,"position_y":-170.57,"position_z":-42.8332,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80700,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":821.517,"position_y":-174.795,"position_z":-48.8382,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80701,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":858.851,"position_y":-172.606,"position_z":-48.8478,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80702,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":866.958,"position_y":-144.804,"position_z":-48.8856,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80703,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":877.285,"position_y":-169.196,"position_z":-48.8409,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80704,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":893.253,"position_y":-198.25,"position_z":-42.8703,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80705,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":830.051,"position_y":-154.908,"position_z":-48.8725,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80706,"id":195264,"map":230,"orientation":-1.16937,"phaseMask":1,"position_x":845.779,"position_y":-147.699,"position_z":-48.8352,"rotation0":0,"rotation1":0,"rotation2":-0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80707,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":896.01,"position_y":-202.806,"position_z":-42.8655,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80708,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":821.511,"position_y":-165.19,"position_z":-48.8584,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80709,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":869.124,"position_y":-163.9,"position_z":-48.864,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80710,"id":195264,"map":230,"orientation":-0.471238,"phaseMask":1,"position_x":817.588,"position_y":-180.07,"position_z":-48.8832,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80711,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":842.664,"position_y":-190.035,"position_z":-48.9151,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80712,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":859.877,"position_y":-164.822,"position_z":-48.8168,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80713,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":814.409,"position_y":-163.35,"position_z":-48.8338,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80714,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":874.01,"position_y":-140.864,"position_z":-48.8708,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80715,"id":195264,"map":230,"orientation":2.93214,"phaseMask":1,"position_x":876.237,"position_y":-144.417,"position_z":-48.8697,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104535,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80716,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":825.645,"position_y":-172.156,"position_z":-48.8906,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80717,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":863.471,"position_y":-196.908,"position_z":-42.7922,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80718,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":857.5,"position_y":-201.502,"position_z":-42.8256,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80719,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":838.307,"position_y":-151.834,"position_z":-48.8711,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80720,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":813.797,"position_y":-173.237,"position_z":-48.8576,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80721,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":884.739,"position_y":-164.978,"position_z":-48.8522,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80722,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":824.186,"position_y":-181.403,"position_z":-48.8683,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80723,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":859.089,"position_y":-139.845,"position_z":-48.8765,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80724,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":866.536,"position_y":-176.091,"position_z":-48.8598,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80725,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":852.691,"position_y":-206.595,"position_z":-42.8749,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80726,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":878.632,"position_y":-161.085,"position_z":-48.8504,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80727,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":868.826,"position_y":-132.477,"position_z":-48.8574,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80890,"id":195266,"map":230,"orientation":2.09439,"phaseMask":1,"position_x":904.153,"position_y":-202.728,"position_z":-37.4635,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80891,"id":195266,"map":230,"orientation":2.16421,"phaseMask":1,"position_x":862.141,"position_y":-226.757,"position_z":-37.2087,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80892,"id":195266,"map":230,"orientation":2.16421,"phaseMask":1,"position_x":848.73,"position_y":-234.751,"position_z":-37.2759,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80893,"id":195266,"map":230,"orientation":2.09439,"phaseMask":1,"position_x":907.949,"position_y":-200.629,"position_z":-37.4735,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80894,"id":195266,"map":230,"orientation":0.575957,"phaseMask":1,"position_x":838.715,"position_y":-222.66,"position_z":-37.0062,"rotation0":0,"rotation1":0,"rotation2":0.284015,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81065,"id":195273,"map":230,"orientation":-1.15192,"phaseMask":1,"position_x":867.617,"position_y":-130.514,"position_z":-45.2255,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81066,"id":195273,"map":230,"orientation":-1.15192,"phaseMask":1,"position_x":860.128,"position_y":-134.844,"position_z":-45.1896,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81067,"id":195273,"map":230,"orientation":-1.15192,"phaseMask":1,"position_x":839.243,"position_y":-146.911,"position_z":-45.1784,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81068,"id":195273,"map":230,"orientation":-1.11701,"phaseMask":1,"position_x":813.863,"position_y":-161.558,"position_z":-45.3045,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81069,"id":195273,"map":230,"orientation":1.91986,"phaseMask":1,"position_x":838.528,"position_y":-216.232,"position_z":-40.4566,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81070,"id":195273,"map":230,"orientation":-2.67035,"phaseMask":1,"position_x":888.095,"position_y":-157.43,"position_z":-45.9001,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81071,"id":195273,"map":230,"orientation":1.91986,"phaseMask":1,"position_x":850.869,"position_y":-209.102,"position_z":-40.4154,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81072,"id":195273,"map":230,"orientation":-2.67035,"phaseMask":1,"position_x":880.24,"position_y":-144.102,"position_z":-45.7563,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81073,"id":195273,"map":230,"orientation":-1.15192,"phaseMask":1,"position_x":831.004,"position_y":-151.674,"position_z":-45.2715,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81074,"id":195273,"map":230,"orientation":0.488691,"phaseMask":1,"position_x":825.044,"position_y":-196.507,"position_z":-45.1789,"rotation0":0,"rotation1":0,"rotation2":0.241921,"rotation3":0.970296,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99906,"id":181059,"map":230,"orientation":0,"phaseMask":1,"position_x":596.82,"position_y":-188.77,"position_z":-54.15,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":265712,"id":164911,"map":230,"orientation":3.64769,"phaseMask":1,"position_x":914.763,"position_y":-146.862,"position_z":-49.7579,"rotation0":0,"rotation1":0,"rotation2":0.968154,"rotation3":-0.250357,"spawnMask":1,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":265713,"id":164911,"map":230,"orientation":3.71367,"phaseMask":1,"position_x":918.736,"position_y":-153.958,"position_z":-49.758,"rotation0":0,"rotation1":0,"rotation2":0.959369,"rotation3":-0.282154,"spawnMask":1,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":265714,"id":164911,"map":230,"orientation":3.70111,"phaseMask":1,"position_x":916.727,"position_y":-150.147,"position_z":-49.7584,"rotation0":0,"rotation1":0,"rotation2":0.961122,"rotation3":-0.276124,"spawnMask":1,"spawntimesecs":43200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/BlackrockDepths":"eb49782515a1ecd22c4e503f23d4d007d20b112ecfc022a2fe25089f577a70d0","patch/World/maps/BlackrockDepths":"6c44ae01b480a2c6aed30d86da46ca65f65212fffc9ea7b3ad7967f96e46dc14"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/blackrock-depths/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["61/61 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"scholomance","title":"Scholomance","mapId":289,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[55,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Scholomance","theme":"Instanced dungeon","summary":"Fight through Scholomance, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Scholomance...","unchartedAreaName":"Uncharted Scholomance","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":340.6629},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/289-schoolofnecromancy/visual.glb","checksum":"e07fd81044b6b5ea46b881e9028ee1f7802f9ddb2af93e77e3fe0e722bdb255d","size":5749272,"triangleCount":137577}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/289-schoolofnecromancy/collision.glb","checksum":"b3e631bba1aa625fcb824fe1eafd1c640f372cda7c640d56402a73d91a40034d","size":856364,"triangleCount":80478}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/289-schoolofnecromancy/navigation.glb","checksum":"ca327ee985145aa0675c2d60ec7b74ea93836d4d7e331af9d6c7e264eacb6948","size":92620,"triangleCount":6886}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-244.0128,-156.7334,-376.0589],"max":[229.1301,-25.2802,82.2511]},"entrance":{"name":"Scholomance Entrance","footPosition":[-113.0128,-72.6802,-108.5718],"forward":[0.9020474555642062,0,0.43163687042482995],"yaw":1.1244897192524548},"areas":[{"id":"entrance","name":"Scholomance Entrance","center":[-113.0128,-72.6802,-108.5718],"radius":35},{"id":"area-jandice-barov","name":"Jandice Barov's Encounter","center":[-184.8658,-111.6657,-161.9888],"radius":42},{"id":"area-rattlegore","name":"Rattlegore's Encounter","center":[-53.7878,-111.6238,-63.9458],"radius":42},{"id":"area-instructor-malicia","name":"Instructor Malicia's Encounter","center":[-3.3062,-122.2785,-237.5822],"radius":42},{"id":"area-doctor-theolen-krastinov","name":"Doctor Theolen Krastinov's Encounter","center":[-98.8888,-122.2785,-331.0589],"radius":42},{"id":"area-lorekeeper-polkelt","name":"Lorekeeper Polkelt's Encounter","center":[-191.5198,-122.2785,-234.2881],"radius":42},{"id":"area-lord-alexei-barov","name":"Lord Alexei Barov's Encounter","center":[-95.3668,-136.7334,-326.645],"radius":42},{"id":"area-lady-illucia-barov","name":"Lady Illucia Barov's Encounter","center":[-182.5988,-132.2568,-234.7184],"radius":42},{"id":"area-ras-frostwhisper","name":"Ras Frostwhisper's Encounter","center":[108.4651,-123.6819,-94.3378],"radius":42}],"entities":{"entry-10480":{"id":"entry-10480","kind":"mob","name":"Unstable Corpse","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17689","name":"Disease Burst","spellId":17689,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6903,"damageMultiplier":1.12},{"id":"spell-15571","name":"Dazed","spellId":15571,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6903,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10978-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.127,"markerRadius":0.65}}},"entry-10481":{"id":"entry-10481","kind":"mob","name":"Reanimated Corpse","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18270","name":"Dark Plague","spellId":18270,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6224,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10975-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5887,"markerRadius":0.65}}},"entry-10475":{"id":"entry-10475","kind":"mob","name":"Scholomance Student","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11161-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-11551":{"id":"entry-11551","kind":"mob","name":"Necrofiend","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16469","name":"Web Explosion","spellId":16469,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4924,"damageMultiplier":0.62,"radius":8},{"id":"spell-25349","name":"Deadly Poison V","spellId":25349,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4924,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11178-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1531,"labelHeight":3.5363,"markerRadius":1.6675}}},"entry-10485":{"id":"entry-10485","kind":"mob","name":"Risen Aberration","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12021","name":"Fixate","spellId":12021,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7184,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c507c6b298bda6969a80215b8be3a3eb943fdacf22ee5ffc13becfd9fd7f686e.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-10495":{"id":"entry-10495","kind":"mob","name":"Diseased Ghoul","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1},{"id":"spell-24063","name":"Disease Cloud","spellId":24063,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5716,"damageMultiplier":1.12},{"id":"spell-18270","name":"Dark Plague","spellId":18270,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5716,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/46dbc556794b321a584218463446041b44ea68c28fb0be594db6c7c669f7125f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8357,"markerRadius":0.6634}}},"entry-10469":{"id":"entry-10469","kind":"mob","name":"Scholomance Adept","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15043","name":"Frostbolt","spellId":15043,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7332,"damageMultiplier":1.12},{"id":"spell-15499","name":"Frost Shock","spellId":15499,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7332,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11161-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10477":{"id":"entry-10477","kind":"mob","name":"Scholomance Necromancer","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17616","name":"Corpse Explosion","spellId":17616,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4104,"damageMultiplier":0.62,"radius":8},{"id":"spell-12020","name":"Call of the Grave","spellId":12020,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4104,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11163-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10498":{"id":"entry-10498","kind":"mob","name":"Spectral Tutor","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17630","name":"Mana Burn","spellId":17630,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4282,"damageMultiplier":1.12},{"id":"spell-12528","name":"Silence","spellId":12528,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4282,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-3942-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-10487":{"id":"entry-10487","kind":"mob","name":"Risen Protector","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17439","name":"Shadow Shock","spellId":17439,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4381,"damageMultiplier":1.12},{"id":"spell-6726","name":"Silence","spellId":6726,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4381,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11489-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":3.6388,"markerRadius":0.7423}}},"entry-11582":{"id":"entry-11582","kind":"mob","name":"Scholomance Dark Summoner","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15042","name":"Curse of Blood","spellId":15042,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4877,"damageMultiplier":1.12},{"id":"spell-17620","name":"Drain Life","spellId":17620,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4877,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11163-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10489":{"id":"entry-10489","kind":"mob","name":"Risen Guard","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5396,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":8000,"magnitude":0.15}},{"id":"spell-15572","name":"Sunder Armor","spellId":15572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5396,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/70ea1c98df2681d8282db8d3c117575ba28c9de492c29ced19580955691a5080.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":3.1657,"markerRadius":0.65}}},"entry-10476":{"id":"entry-10476","kind":"mob","name":"Scholomance Necrolyte","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6913,"damageMultiplier":1.12},{"id":"spell-17151","name":"Shadow Barrier","spellId":17151,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6913,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11161-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10488":{"id":"entry-10488","kind":"mob","name":"Risen Construct","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.809536,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":7379,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7379,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-12074-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6817,"markerRadius":0.7285}}},"entry-10432":{"id":"entry-10432","kind":"mob","name":"Vectus","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18399","name":"Flamestrike","spellId":18399,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7368,"damageMultiplier":1.12},{"id":"spell-16046","name":"Blast Wave","spellId":16046,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7368,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/84695efc6bafcc2d2fb5df07bd44d55d4c65562c3818de690087991d6294cf97.glb","rotationY":-1.5707963267948966,"groundOffset":0.0045,"labelHeight":3.834,"markerRadius":0.7434}}},"entry-10433":{"id":"entry-10433","kind":"mob","name":"Marduk Blackpool","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-17228","name":"Shadow Bolt Volley","spellId":17228,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6270,"damageMultiplier":0.62,"radius":8},{"id":"spell-12040","name":"Shadow Shield","spellId":12040,"delivery":"area","target":"self","school":"shadow","animation":"cast","range":0,"cooldownMs":6270,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-12040","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10248-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0033,"labelHeight":3.4391,"markerRadius":0.65}}},"entry-10503":{"id":"entry-10503","kind":"boss","name":"Jandice Barov","title":"Dungeon Boss","hasLoot":true,"combat":{"level":61,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-24673","name":"Curse of Blood","spellId":24673,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7311,"damageMultiplier":1.35},{"id":"spell-18270","name":"Dark Plague","spellId":18270,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7311,"damageMultiplier":1.35},{"id":"spell-18116","name":"Kirtonos Gargoyle Passive","spellId":18116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7311,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11073-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7721,"markerRadius":0.65}}},"entry-10470":{"id":"entry-10470","kind":"mob","name":"Scholomance Neophyte","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6172,"damageMultiplier":1.12},{"id":"spell-12542","name":"Fear","spellId":12542,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6172,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11164-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10471":{"id":"entry-10471","kind":"mob","name":"Scholomance Acolyte","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17613","name":"Dark Mending","spellId":17613,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4600,"damageMultiplier":1.12},{"id":"spell-11443","name":"Cripple","spellId":11443,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4600,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11157-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10508":{"id":"entry-10508","kind":"boss","name":"Ras Frostwhisper","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18099","name":"Chill Nova","spellId":18099,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7250,"damageMultiplier":0.82,"radius":11},{"id":"spell-8398","name":"Frostbolt Volley","spellId":8398,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7250,"damageMultiplier":0.82,"radius":11},{"id":"spell-12096","name":"Fear","spellId":12096,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7250,"damageMultiplier":0,"radius":11,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}},{"id":"spell-18763","name":"Freeze","spellId":18763,"delivery":"projectile","target":"random-party","school":"frost","animation":"cast","range":28,"cooldownMs":7250,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/39bfb5c35e192459b036ef2b5f276819df5e8591dda7c03082ce9968b53365b2.glb","rotationY":-1.5707963267948966,"groundOffset":0.4975,"labelHeight":6.7656,"markerRadius":1.4989}}},"entry-10478":{"id":"entry-10478","kind":"mob","name":"Splintered Skeleton","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11401-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0019,"labelHeight":3.4636,"markerRadius":0.65}}},"entry-10507":{"id":"entry-10507","kind":"mob","name":"The Ravenian","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17963","name":"Sundering Cleave","spellId":17963,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4448,"damageMultiplier":0.62,"radius":8},{"id":"spell-15550","name":"Trample","spellId":15550,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4448,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/e814a203d28d25862645cdbba9124e4b453ad5e05bdaaaad0695e3937bb57f27.glb","rotationY":-1.5707963267948966,"groundOffset":0.0443,"labelHeight":3.6969,"markerRadius":1.1544}}},"entry-10502":{"id":"entry-10502","kind":"boss","name":"Lady Illucia Barov","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18116","name":"Kirtonos Gargoyle Passive","spellId":18116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6751,"damageMultiplier":1.35},{"id":"spell-19460","name":"Shadow Shock","spellId":19460,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6751,"damageMultiplier":1.35},{"id":"spell-6215","name":"Fear","spellId":6215,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6751,"damageMultiplier":0,"radius":11,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}},{"id":"spell-15487","name":"Silence","spellId":15487,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11835-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7721,"markerRadius":0.65}}},"entry-10491":{"id":"entry-10491","kind":"mob","name":"Risen Bonewarder","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17620","name":"Drain Life","spellId":17620,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4651,"damageMultiplier":0.62,"radius":8},{"id":"spell-16431","name":"Bone Armor","spellId":16431,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4651,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11397-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0034,"labelHeight":2.9745,"markerRadius":0.65}}},"entry-10504":{"id":"entry-10504","kind":"boss","name":"Lord Alexei Barov","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11668","name":"Immolate","spellId":11668,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5855,"damageMultiplier":1.35},{"id":"spell-11700","name":"Drain Life","spellId":11700,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5855,"damageMultiplier":0.82,"radius":11},{"id":"spell-18116","name":"Kirtonos Gargoyle Passive","spellId":18116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5855,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11072-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0012,"labelHeight":4.171,"markerRadius":0.8719}}},"entry-10486":{"id":"entry-10486","kind":"mob","name":"Risen Warrior","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-14516","name":"Strike","spellId":14516,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6538,"damageMultiplier":1.12},{"id":"spell-11428","name":"Stunning Strike","spellId":11428,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6538,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/9a6dd0a8f5d239e51ad1ceaed4079f25646ad7be2e952cc4feef7bbcda29613b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":3.6388,"markerRadius":0.7423}}},"entry-10505":{"id":"entry-10505","kind":"boss","name":"Instructor Malicia","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18376","name":"Corruption","spellId":18376,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4194,"damageMultiplier":1.35},{"id":"spell-12020","name":"Call of the Grave","spellId":12020,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4194,"damageMultiplier":1.35},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4194,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-17843","name":"Flash Heal","spellId":17843,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4194,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-20981-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0012,"labelHeight":2.3842,"markerRadius":0.65}}},"entry-10472":{"id":"entry-10472","kind":"mob","name":"Scholomance Occultist","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15122","name":"Counterspell","spellId":15122,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5274,"damageMultiplier":1.12},{"id":"spell-17682","name":"Drain Mana","spellId":17682,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5274,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11157-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10500":{"id":"entry-10500","kind":"mob","name":"Spectral Teacher","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17630","name":"Mana Burn","spellId":17630,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5754,"damageMultiplier":1.12},{"id":"spell-17633","name":"Arcane Focus","spellId":17633,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5754,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-3942-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-11622":{"id":"entry-11622","kind":"boss","name":"Rattlegore","title":"Dungeon Boss","hasLoot":true,"combat":{"level":61,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.809536,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5433,"damageMultiplier":1.35},{"id":"spell-16727","name":"War Stomp","spellId":16727,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5433,"damageMultiplier":0.82,"radius":11},{"id":"spell-18116","name":"Kirtonos Gargoyle Passive","spellId":18116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5433,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-12073-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.1783,"markerRadius":1.1657}}},"entry-11261":{"id":"entry-11261","kind":"boss","name":"Doctor Theolen Krastinov","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-16509","name":"Rend","spellId":16509,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5566,"damageMultiplier":1.35},{"id":"spell-18103","name":"Backhand","spellId":18103,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5566,"damageMultiplier":1.35},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5566,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10901-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10678":{"id":"entry-10678","kind":"mob","name":"Plagued Hatchling","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10007-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6266,"markerRadius":1.0609}}},"entry-11257":{"id":"entry-11257","kind":"mob","name":"Scholomance Handler","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10833","name":"Arcane Blast","spellId":10833,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4402,"damageMultiplier":1.12},{"id":"spell-15244","name":"Cone of Cold","spellId":15244,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4402,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11161-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10901":{"id":"entry-10901","kind":"boss","name":"Lorekeeper Polkelt","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8245","name":"Corrosive Acid","spellId":8245,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6412,"damageMultiplier":1.35},{"id":"spell-18149","name":"Volatile Infection","spellId":18149,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6412,"damageMultiplier":1.35},{"id":"spell-18116","name":"Kirtonos Gargoyle Passive","spellId":18116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6412,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11492-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.1868,"markerRadius":0.65}}},"entry-10499":{"id":"entry-10499","kind":"mob","name":"Spectral Researcher","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17630","name":"Mana Burn","spellId":17630,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6539,"damageMultiplier":1.12},{"id":"spell-17631","name":"Wail of Souls","spellId":17631,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6539,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-3942-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-14861":{"id":"entry-14861","kind":"mob","name":"Blood Steward of Kirtonos","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22371","name":"Curse of Impotence","spellId":22371,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6244,"damageMultiplier":1.12},{"id":"spell-12493","name":"Curse of Weakness","spellId":12493,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6244,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10925-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0019,"labelHeight":3.3747,"markerRadius":2.5476}}},"entry-14695":{"id":"entry-14695","kind":"mob","name":"Lord Blackwood","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-14699-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":5.7727,"markerRadius":0.7378}}},"entry-1853":{"id":"entry-1853","kind":"mob","name":"Darkmaster Gandling","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17950","name":"Shadow Portal","spellId":17950,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7201,"damageMultiplier":1.12},{"id":"spell-12040","name":"Shadow Shield","spellId":12040,"delivery":"area","target":"self","school":"shadow","animation":"cast","range":0,"cooldownMs":7201,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-12040","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11070-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.001,"labelHeight":3.5751,"markerRadius":0.7474}}}},"staticSpawns":[{"id":"creature-48361","entityId":"entry-10480","position":[-166.3578,-122.4845,-241.5994],"yaw":-3.1765,"spawnMask":1},{"id":"creature-48363","entityId":"entry-10481","position":[-184.2888,-122.2785,-227.1569],"yaw":-3.50811,"spawnMask":1},{"id":"creature-48374","entityId":"entry-10480","position":[-184.7868,-122.2785,-243.2529],"yaw":-4.17134,"spawnMask":1},{"id":"creature-48375","entityId":"entry-10480","position":[-172.2378,-122.2785,-225.2455],"yaw":-5.58505,"spawnMask":1},{"id":"creature-48385","entityId":"entry-10480","position":[-144.8138,-122.2785,-226.1471],"yaw":-5.63741,"spawnMask":1},{"id":"creature-48389","entityId":"entry-10480","position":[-174.2428,-122.666,-230.6607],"yaw":-1.65806,"spawnMask":1},{"id":"creature-48428","entityId":"entry-10480","position":[-179.0988,-122.666,-230.545],"yaw":-2.35619,"spawnMask":1},{"id":"creature-48436","entityId":"entry-10481","position":[-150.3858,-122.666,-240.4754],"yaw":-4.18879,"spawnMask":1},{"id":"creature-48457","entityId":"entry-10480","position":[-175.9708,-122.666,-240.6821],"yaw":-2.96706,"spawnMask":1},{"id":"creature-48458","entityId":"entry-10480","position":[-146.6928,-122.2785,-245.5678],"yaw":-5.84685,"spawnMask":1},{"id":"creature-48459","entityId":"entry-10475","position":[-26.6958,-107.7907,-136.8195],"yaw":-1.64061,"spawnMask":1},{"id":"creature-48460","entityId":"entry-10475","position":[-11.5416,-109.8139,-162.1164],"yaw":-0.872665,"spawnMask":1},{"id":"creature-48461","entityId":"entry-10475","position":[-20.4648,-108.9729,-128.6888],"yaw":-0.558505,"spawnMask":1},{"id":"creature-48462","entityId":"entry-10475","position":[-40.2328,-105.8922,-155.8603],"yaw":-0.383972,"spawnMask":1},{"id":"creature-48463","entityId":"entry-10475","position":[-27.8818,-108.5552,-170.7839],"yaw":-1.46608,"spawnMask":1},{"id":"creature-48464","entityId":"entry-10475","position":[-52.7458,-105.4602,-148.2979],"yaw":-3.94444,"spawnMask":1},{"id":"creature-48465","entityId":"entry-10475","position":[-14.5674,-109.6276,-160.5333],"yaw":-3.40339,"spawnMask":1},{"id":"creature-48466","entityId":"entry-10475","position":[-26.9648,-107.6668,-150.6356],"yaw":-0.453786,"spawnMask":1},{"id":"creature-48467","entityId":"entry-10475","position":[-13.7689,-109.7843,-138.0615],"yaw":-5.044,"spawnMask":1},{"id":"creature-48468","entityId":"entry-10475","position":[-25.8878,-108.6519,-166.8186],"yaw":-5.8294,"spawnMask":1},{"id":"creature-48470","entityId":"entry-10485","position":[-114.7868,-102.9242,-161.7328],"yaw":-0.058792,"spawnMask":1},{"id":"creature-48476","entityId":"entry-10481","position":[-114.2018,-103.2632,-156.0327],"yaw":-1.99957,"spawnMask":1},{"id":"creature-48477","entityId":"entry-10495","position":[-120.8338,-102.7922,-162.5566],"yaw":-5.23599,"spawnMask":1},{"id":"creature-48478","entityId":"entry-10481","position":[-96.0268,-102.7902,-151.9548],"yaw":-1.40979,"spawnMask":1},{"id":"creature-48479","entityId":"entry-10485","position":[-107.9858,-103.2632,-152.1615],"yaw":-2.59332,"spawnMask":1},{"id":"creature-48548","entityId":"entry-10481","position":[-108.3308,-103.2632,-144.7644],"yaw":-5.79797,"spawnMask":1},{"id":"creature-48563","entityId":"entry-10495","position":[-103.6768,-102.7922,-149.1206],"yaw":-1.70667,"spawnMask":1},{"id":"creature-48570","entityId":"entry-10485","position":[-95.7688,-102.7902,-140.9537],"yaw":-0.762391,"spawnMask":1},{"id":"creature-48575","entityId":"entry-10485","position":[-103.7288,-102.8232,-143.0848],"yaw":-3.50555,"spawnMask":1},{"id":"creature-48585","entityId":"entry-10495","position":[-96.9988,-102.7922,-132.7208],"yaw":-0.181816,"spawnMask":1},{"id":"creature-48586","entityId":"entry-10485","position":[-131.0228,-102.7922,-162.5201],"yaw":-1.15192,"spawnMask":1},{"id":"creature-48760","entityId":"entry-10481","position":[-138.6448,-102.7922,-153.3603],"yaw":-1.62244,"spawnMask":1},{"id":"creature-48761","entityId":"entry-10495","position":[-137.0148,-102.7922,-162.1011],"yaw":-5.64305,"spawnMask":1},{"id":"creature-48762","entityId":"entry-10485","position":[-132.2758,-102.7922,-155.8108],"yaw":-6.26976,"spawnMask":1},{"id":"creature-48763","entityId":"entry-10485","position":[-127.9558,-103.2632,-146.7486],"yaw":-3.96787,"spawnMask":1},{"id":"creature-48764","entityId":"entry-10485","position":[-123.2248,-103.2632,-149.7157],"yaw":-3.7241,"spawnMask":1},{"id":"creature-48765","entityId":"entry-10495","position":[-128.4048,-103.2632,-152.9186],"yaw":-3.23844,"spawnMask":1},{"id":"creature-48766","entityId":"entry-10485","position":[-113.3638,-103.2632,-143.7201],"yaw":-3.12665,"spawnMask":1},{"id":"creature-48767","entityId":"entry-10485","position":[-119.6808,-102.7922,-136.9226],"yaw":-0.305482,"spawnMask":1},{"id":"creature-48768","entityId":"entry-10495","position":[-113.7608,-102.7922,-137.5402],"yaw":-2.56765,"spawnMask":1},{"id":"creature-48769","entityId":"entry-10495","position":[-121.0128,-103.2632,-143.1212],"yaw":-4.0093,"spawnMask":1},{"id":"creature-48770","entityId":"entry-10485","position":[-138.5598,-102.7922,-139.2172],"yaw":-4.38522,"spawnMask":1},{"id":"creature-48771","entityId":"entry-10481","position":[-138.5988,-102.7922,-131.7318],"yaw":-3.64813,"spawnMask":1},{"id":"creature-48772","entityId":"entry-10495","position":[-132.6388,-102.7922,-143.8732],"yaw":-5.54672,"spawnMask":1},{"id":"creature-48773","entityId":"entry-10485","position":[-134.1788,-102.7922,-136.2087],"yaw":-5.86525,"spawnMask":1},{"id":"creature-48774","entityId":"entry-10469","position":[-126.9638,-97.7832,-86.6888],"yaw":-5.13127,"spawnMask":1},{"id":"creature-48775","entityId":"entry-10469","position":[-138.3298,-97.8672,-114.5498],"yaw":-5.84685,"spawnMask":1},{"id":"creature-48776","entityId":"entry-10477","position":[-137.9608,-97.8662,-112.3908],"yaw":-6.14356,"spawnMask":1},{"id":"creature-48777","entityId":"entry-10477","position":[-131.6748,-97.8572,-112.3468],"yaw":-3.36848,"spawnMask":1},{"id":"creature-48778","entityId":"entry-10498","position":[-88.6258,-97.9232,-63.0538],"yaw":-5.74213,"spawnMask":1},{"id":"creature-48779","entityId":"entry-10498","position":[-193.3548,-97.7212,-81.7468],"yaw":-3.14159,"spawnMask":1},{"id":"creature-48780","entityId":"entry-10487","position":[-89.8028,-97.8812,-108.4328],"yaw":-0.680678,"spawnMask":1},{"id":"creature-48782","entityId":"entry-10477","position":[-98.3668,-97.8672,-120.3298],"yaw":-5.3058,"spawnMask":1},{"id":"creature-48783","entityId":"entry-10498","position":[-104.3568,-97.7992,-61.6258],"yaw":-4.64258,"spawnMask":1},{"id":"creature-48784","entityId":"entry-10469","position":[-91.8768,-97.9532,-98.9168],"yaw":-3.92699,"spawnMask":1},{"id":"creature-48785","entityId":"entry-10469","position":[-88.0228,-97.9522,-99.0858],"yaw":-5.49779,"spawnMask":1},{"id":"creature-48786","entityId":"entry-10477","position":[-92.3638,-97.9262,-102.5198],"yaw":-2.58309,"spawnMask":1},{"id":"creature-48787","entityId":"entry-10469","position":[-136.7408,-97.8672,-59.8818],"yaw":-2.28638,"spawnMask":1},{"id":"creature-48788","entityId":"entry-11582","position":[-196.6218,-97.7482,-156.7133],"yaw":-2.44346,"spawnMask":1},{"id":"creature-48790","entityId":"entry-10476","position":[-190.3808,-97.7412,-114.7278],"yaw":-0.034907,"spawnMask":1},{"id":"creature-48791","entityId":"entry-11582","position":[-165.8218,-97.7842,-136.2657],"yaw":-2.68781,"spawnMask":1},{"id":"creature-48792","entityId":"entry-10476","position":[-193.2898,-97.8322,-129.5208],"yaw":-4.69494,"spawnMask":1},{"id":"creature-48793","entityId":"entry-11582","position":[-165.8658,-97.5882,-114.1388],"yaw":-3.56047,"spawnMask":1},{"id":"creature-48795","entityId":"entry-10488","position":[-70.2618,-114.4216,-43.5028],"yaw":-4.82485,"spawnMask":1},{"id":"creature-48796","entityId":"entry-10488","position":[-24.9298,-109.9454,-99.1078],"yaw":-1.31211,"spawnMask":1},{"id":"creature-48797","entityId":"entry-10488","position":[-35.6948,-115.3479,-78.8518],"yaw":-2.92533,"spawnMask":1},{"id":"creature-48798","entityId":"entry-10488","position":[-62.8158,-114.4748,-77.6958],"yaw":-4.14954,"spawnMask":1},{"id":"creature-48799","entityId":"entry-10488","position":[-74.1048,-114.4216,-90.9618],"yaw":-4.77398,"spawnMask":1},{"id":"creature-48800","entityId":"entry-10488","position":[-38.0068,-112.4211,-40.2898],"yaw":-4.18879,"spawnMask":1},{"id":"creature-48801","entityId":"entry-10488","position":[-60.7658,-112.5283,-59.4238],"yaw":-0.460671,"spawnMask":1},{"id":"creature-48802","entityId":"entry-10488","position":[-35.8308,-114.8642,-58.9638],"yaw":-0.597001,"spawnMask":1},{"id":"creature-48803","entityId":"entry-10488","position":[-53.6018,-114.0449,-41.6718],"yaw":-6.13,"spawnMask":1},{"id":"creature-48804","entityId":"entry-10488","position":[-53.8798,-114.4535,-95.2108],"yaw":-4.42364,"spawnMask":1},{"id":"creature-48806","entityId":"entry-10433","position":[-67.0108,-102.9292,-119.4018],"yaw":-3.83972,"spawnMask":1},{"id":"creature-48807","entityId":"entry-10503","position":[-184.8658,-111.6657,-161.9888],"yaw":-1.64061,"spawnMask":1},{"id":"creature-48808","entityId":"entry-10481","position":[-171.5358,-111.6839,-140.8869],"yaw":-3.18587,"spawnMask":1},{"id":"creature-48809","entityId":"entry-10495","position":[-167.5298,-111.684,-145.0683],"yaw":-1.65319,"spawnMask":1},{"id":"creature-48810","entityId":"entry-10485","position":[-166.3348,-111.684,-136.923],"yaw":-2.74121,"spawnMask":1},{"id":"creature-48811","entityId":"entry-10485","position":[-173.6738,-111.6841,-134.5658],"yaw":-5.5676,"spawnMask":1},{"id":"creature-48813","entityId":"entry-10485","position":[-173.0698,-111.6843,-110.9618],"yaw":-4.32302,"spawnMask":1},{"id":"creature-48814","entityId":"entry-10485","position":[-179.8508,-111.6843,-113.6528],"yaw":-0.267297,"spawnMask":1},{"id":"creature-48815","entityId":"entry-10485","position":[-170.4458,-111.6843,-121.8748],"yaw":-5.45107,"spawnMask":1},{"id":"creature-48816","entityId":"entry-10495","position":[-176.6578,-111.6843,-121.6518],"yaw":-0.133371,"spawnMask":1},{"id":"creature-48817","entityId":"entry-10481","position":[-152.1318,-111.6843,-117.2338],"yaw":-2.45582,"spawnMask":1},{"id":"creature-48818","entityId":"entry-10495","position":[-148.4098,-111.6843,-123.1058],"yaw":-0.031724,"spawnMask":1},{"id":"creature-48819","entityId":"entry-10485","position":[-146.3878,-111.6843,-116.6898],"yaw":-3.36618,"spawnMask":1},{"id":"creature-48820","entityId":"entry-10485","position":[-150.7288,-111.6843,-109.9688],"yaw":-3.02623,"spawnMask":1},{"id":"creature-48821","entityId":"entry-10485","position":[-157.1698,-111.6843,-114.0708],"yaw":-3.05655,"spawnMask":1},{"id":"creature-48822","entityId":"entry-10481","position":[-189.3708,-111.6841,-138.7449],"yaw":-5.8101,"spawnMask":1},{"id":"creature-48823","entityId":"entry-10481","position":[-195.1198,-111.6842,-132.7878],"yaw":-2.64623,"spawnMask":1},{"id":"creature-48824","entityId":"entry-10485","position":[-195.1938,-111.7676,-141.6654],"yaw":-3.25042,"spawnMask":1},{"id":"creature-48825","entityId":"entry-10485","position":[-187.9478,-111.6841,-145.3142],"yaw":-2.87892,"spawnMask":1},{"id":"creature-48826","entityId":"entry-10485","position":[-183.9958,-111.684,-139.3142],"yaw":-0.032736,"spawnMask":1},{"id":"creature-48827","entityId":"entry-10495","position":[-186.9078,-111.6841,-133.4878],"yaw":-0.883407,"spawnMask":1},{"id":"creature-48828","entityId":"entry-10481","position":[-191.0638,-111.6842,-63.8308],"yaw":-3.52556,"spawnMask":1},{"id":"creature-48829","entityId":"entry-10485","position":[-197.2048,-111.7677,-57.0978],"yaw":-2.77441,"spawnMask":1},{"id":"creature-48830","entityId":"entry-10485","position":[-197.5768,-111.7677,-63.7058],"yaw":-0.631015,"spawnMask":1},{"id":"creature-48831","entityId":"entry-10485","position":[-192.4968,-111.6842,-68.7718],"yaw":-1.71042,"spawnMask":1},{"id":"creature-48832","entityId":"entry-10495","position":[-187.8118,-111.6842,-66.3148],"yaw":-4.45059,"spawnMask":1},{"id":"creature-48833","entityId":"entry-10481","position":[-146.5618,-111.6843,-89.0438],"yaw":-2.82045,"spawnMask":1},{"id":"creature-48834","entityId":"entry-10485","position":[-154.3688,-111.6843,-86.3408],"yaw":-2.05128,"spawnMask":1},{"id":"creature-48835","entityId":"entry-10485","position":[-154.3518,-111.6843,-97.9048],"yaw":-0.231746,"spawnMask":1},{"id":"creature-48836","entityId":"entry-10495","position":[-148.0448,-111.6843,-97.4578],"yaw":-5.61193,"spawnMask":1},{"id":"creature-48837","entityId":"entry-10495","position":[-165.3178,-111.6843,-87.6068],"yaw":-6.24893,"spawnMask":1},{"id":"creature-48838","entityId":"entry-10485","position":[-175.8828,-111.6843,-91.0668],"yaw":-3.07471,"spawnMask":1},{"id":"creature-48839","entityId":"entry-10485","position":[-162.6148,-111.7677,-122.1018],"yaw":-3.00302,"spawnMask":1},{"id":"creature-48840","entityId":"entry-10470","position":[-149.0758,-91.7992,-235.1444],"yaw":-4.46804,"spawnMask":1},{"id":"creature-48841","entityId":"entry-10471","position":[-147.3628,-91.7812,-215.7033],"yaw":-4.67748,"spawnMask":1},{"id":"creature-48842","entityId":"entry-10471","position":[-138.4108,-91.7992,-254.1057],"yaw":-6.21337,"spawnMask":1},{"id":"creature-48843","entityId":"entry-10470","position":[-133.8668,-91.7992,-243.4191],"yaw":-5.65487,"spawnMask":1},{"id":"creature-48844","entityId":"entry-10470","position":[-159.4228,-91.7992,-203.4788],"yaw":-5.16617,"spawnMask":1},{"id":"creature-48845","entityId":"entry-10470","position":[-126.0178,-91.7992,-223.1846],"yaw":-5.32325,"spawnMask":1},{"id":"creature-48847","entityId":"entry-10470","position":[-88.6718,-91.7992,-232.2864],"yaw":-0.750492,"spawnMask":1},{"id":"creature-48848","entityId":"entry-10470","position":[-146.2058,-91.7822,-217.809],"yaw":-0.593412,"spawnMask":1},{"id":"creature-48849","entityId":"entry-10471","position":[-155.9238,-91.7992,-181.9627],"yaw":-6.10865,"spawnMask":1},{"id":"creature-48850","entityId":"entry-10508","position":[108.4651,-123.6819,-94.3378],"yaw":-0.034907,"spawnMask":1},{"id":"creature-48851","entityId":"entry-10478","position":[-40.0718,-132.1923,-229.7224],"yaw":-3.36196,"spawnMask":1},{"id":"creature-48852","entityId":"entry-10478","position":[-41.6838,-132.1923,-243.4265],"yaw":-4.7045,"spawnMask":1},{"id":"creature-48853","entityId":"entry-10478","position":[-47.0968,-132.1923,-224.4667],"yaw":-2.60897,"spawnMask":1},{"id":"creature-48854","entityId":"entry-10507","position":[-19.9478,-132.3719,-237.2993],"yaw":-6.17846,"spawnMask":1},{"id":"creature-48855","entityId":"entry-10478","position":[-47.2328,-132.1923,-238.5713],"yaw":-3.88106,"spawnMask":1},{"id":"creature-48856","entityId":"entry-10478","position":[-47.4028,-132.1923,-249.2618],"yaw":-1.99339,"spawnMask":1},{"id":"creature-48857","entityId":"entry-10502","position":[-182.5988,-132.2568,-234.7184],"yaw":-3.07178,"spawnMask":1},{"id":"creature-48858","entityId":"entry-10491","position":[-164.7578,-134.9218,-232.8126],"yaw":-4.66764,"spawnMask":1},{"id":"creature-48859","entityId":"entry-10491","position":[-143.4968,-134.9172,-235.3602],"yaw":-3.16098,"spawnMask":1},{"id":"creature-48860","entityId":"entry-10491","position":[-151.8498,-134.9172,-228.3259],"yaw":-1.55028,"spawnMask":1},{"id":"creature-48861","entityId":"entry-10491","position":[-157.4508,-134.9172,-226.857],"yaw":-1.5994,"spawnMask":1},{"id":"creature-48862","entityId":"entry-10489","position":[-91.9088,-136.7334,-323.8033],"yaw":-1.5708,"spawnMask":1},{"id":"creature-48863","entityId":"entry-10504","position":[-95.3668,-136.7334,-326.645],"yaw":-1.64061,"spawnMask":1},{"id":"creature-48864","entityId":"entry-10489","position":[-99.7308,-136.7334,-323.6452],"yaw":-1.53589,"spawnMask":1},{"id":"creature-48865","entityId":"entry-10486","position":[-103.9378,-132.109,-293.4283],"yaw":-1.76278,"spawnMask":1},{"id":"creature-48866","entityId":"entry-10486","position":[-93.3048,-132.109,-293.5556],"yaw":-1.41372,"spawnMask":1},{"id":"creature-48867","entityId":"entry-10505","position":[-3.3062,-122.2785,-237.5822],"yaw":-0.017453,"spawnMask":1},{"id":"creature-48868","entityId":"entry-10472","position":[-42.0388,-122.1523,-233.0258],"yaw":-2.72271,"spawnMask":1},{"id":"creature-48869","entityId":"entry-10472","position":[-17.7248,-122.2785,-229.2199],"yaw":-5.2709,"spawnMask":1},{"id":"creature-48870","entityId":"entry-10469","position":[-19.0968,-122.2785,-231.2476],"yaw":-2.18166,"spawnMask":1},{"id":"creature-48871","entityId":"entry-10472","position":[-27.5348,-122.2785,-242.0846],"yaw":-0.436332,"spawnMask":1},{"id":"creature-48896","entityId":"entry-10477","position":[-29.5638,-122.1304,-240.0727],"yaw":-4.57276,"spawnMask":1},{"id":"creature-48897","entityId":"entry-10472","position":[-30.3788,-122.2785,-242.7186],"yaw":-2.56563,"spawnMask":1},{"id":"creature-48898","entityId":"entry-10469","position":[-39.9488,-122.2785,-231.689],"yaw":-6.05629,"spawnMask":1},{"id":"creature-48899","entityId":"entry-10472","position":[-43.1158,-122.2785,-230.7405],"yaw":-3.85718,"spawnMask":1},{"id":"creature-48900","entityId":"entry-10471","position":[45.2969,-123.9612,-74.5128],"yaw":-6.24828,"spawnMask":1},{"id":"creature-48901","entityId":"entry-10477","position":[66.7255,-123.9612,-78.5078],"yaw":-6.14356,"spawnMask":1},{"id":"creature-48902","entityId":"entry-10500","position":[43.2974,-123.9612,-76.0848],"yaw":-0.698132,"spawnMask":1},{"id":"creature-48903","entityId":"entry-10470","position":[51.6151,-123.9612,-104.3718],"yaw":-5.65487,"spawnMask":1},{"id":"creature-48904","entityId":"entry-10471","position":[61.4371,-123.9612,-78.6608],"yaw":-2.87979,"spawnMask":1},{"id":"creature-48905","entityId":"entry-10477","position":[41.6827,-123.9612,-77.9998],"yaw":-1.79769,"spawnMask":1},{"id":"creature-48906","entityId":"entry-10469","position":[47.4413,-123.9612,-108.8728],"yaw":-1.64061,"spawnMask":1},{"id":"creature-48907","entityId":"entry-10500","position":[64.4126,-123.9612,-79.3618],"yaw":-1.5708,"spawnMask":1},{"id":"creature-48908","entityId":"entry-10500","position":[47.7514,-123.9612,-105.8628],"yaw":-3.9619,"spawnMask":1},{"id":"creature-48910","entityId":"entry-11622","position":[-53.7878,-111.6238,-63.9458],"yaw":-3.28122,"spawnMask":1},{"id":"creature-48921","entityId":"entry-10495","position":[-109.3818,-122.2785,-304.6683],"yaw":-4.81711,"spawnMask":1},{"id":"creature-48922","entityId":"entry-10495","position":[-91.3878,-122.2785,-300.9125],"yaw":-0.314159,"spawnMask":1},{"id":"creature-48923","entityId":"entry-10495","position":[-97.3508,-122.666,-311.4395],"yaw":-1.39626,"spawnMask":1},{"id":"creature-48924","entityId":"entry-10495","position":[-102.3218,-122.666,-300.2489],"yaw":-5.55015,"spawnMask":1},{"id":"creature-48925","entityId":"entry-11261","position":[-98.8888,-122.2785,-331.0589],"yaw":-4.72984,"spawnMask":1},{"id":"creature-48926","entityId":"entry-10495","position":[-86.6478,-122.2785,-313.7724],"yaw":-4.27606,"spawnMask":1},{"id":"creature-48927","entityId":"entry-10678","position":[-23.3388,-98.0192,-74.3768],"yaw":-5.98648,"spawnMask":1},{"id":"creature-48928","entityId":"entry-11257","position":[-28.6858,-98.0992,-82.3378],"yaw":-3.53422,"spawnMask":1},{"id":"creature-48929","entityId":"entry-10678","position":[-59.4248,-97.9022,-51.7928],"yaw":-0.331613,"spawnMask":1},{"id":"creature-48930","entityId":"entry-10678","position":[-24.1688,-98.0332,-59.3538],"yaw":-3.29867,"spawnMask":1},{"id":"creature-48931","entityId":"entry-10678","position":[-58.9968,-97.9122,-66.5308],"yaw":-4.04916,"spawnMask":1},{"id":"creature-48932","entityId":"entry-10678","position":[-39.2748,-97.9822,-81.6268],"yaw":-4.55531,"spawnMask":1},{"id":"creature-48933","entityId":"entry-10678","position":[-62.9608,-97.9202,-56.1828],"yaw":-4.08407,"spawnMask":1},{"id":"creature-48934","entityId":"entry-10678","position":[-72.6298,-97.9982,-85.6518],"yaw":-0.436332,"spawnMask":1},{"id":"creature-48935","entityId":"entry-10678","position":[-34.6478,-97.9882,-70.9788],"yaw":-3.05433,"spawnMask":1},{"id":"creature-48936","entityId":"entry-10678","position":[-67.2108,-97.9072,-52.7278],"yaw":-4.90438,"spawnMask":1},{"id":"creature-48938","entityId":"entry-10480","position":[-172.9318,-122.666,-234.9702],"yaw":-4.76475,"spawnMask":1},{"id":"creature-48939","entityId":"entry-10480","position":[-186.7358,-122.2785,-233.3533],"yaw":-3.26377,"spawnMask":1},{"id":"creature-48940","entityId":"entry-10481","position":[-152.2668,-122.2785,-252.3137],"yaw":-3.87463,"spawnMask":1},{"id":"creature-48941","entityId":"entry-10480","position":[-151.3658,-122.666,-230.4191],"yaw":-1.44862,"spawnMask":1},{"id":"creature-48942","entityId":"entry-10480","position":[-167.0298,-122.666,-236.0923],"yaw":-5.77704,"spawnMask":1},{"id":"creature-48943","entityId":"entry-10481","position":[-180.3758,-122.666,-239.9114],"yaw":-0.418879,"spawnMask":1},{"id":"creature-48944","entityId":"entry-10480","position":[-160.2808,-122.2785,-227.2942],"yaw":-4.55531,"spawnMask":1},{"id":"creature-48945","entityId":"entry-10480","position":[-161.6518,-122.666,-237.9402],"yaw":-3.35103,"spawnMask":1},{"id":"creature-48946","entityId":"entry-10901","position":[-191.5198,-122.2785,-234.2881],"yaw":-3.22886,"spawnMask":1},{"id":"creature-48947","entityId":"entry-10480","position":[-173.2098,-122.2785,-243.9824],"yaw":-3.52556,"spawnMask":1},{"id":"creature-48948","entityId":"entry-10475","position":[-29.3038,-107.934,-149.4428],"yaw":-3.08923,"spawnMask":1},{"id":"creature-48950","entityId":"entry-10475","position":[-27.0768,-107.4802,-133.8368],"yaw":-3.28122,"spawnMask":1},{"id":"creature-48951","entityId":"entry-10475","position":[-59.7568,-104.3642,-170.5214],"yaw":-1.90241,"spawnMask":1},{"id":"creature-48952","entityId":"entry-10475","position":[-60.8708,-104.1172,-167.4334],"yaw":-3.735,"spawnMask":1},{"id":"creature-48953","entityId":"entry-10475","position":[-21.9698,-108.7217,-125.2708],"yaw":-4.88692,"spawnMask":1},{"id":"creature-48954","entityId":"entry-10475","position":[-13.4405,-110.1742,-141.719],"yaw":-1.16937,"spawnMask":1},{"id":"creature-48955","entityId":"entry-10475","position":[-48.2688,-105.5342,-149.0328],"yaw":-5.95157,"spawnMask":1},{"id":"creature-48956","entityId":"entry-10475","position":[-56.4898,-104.3832,-167.0576],"yaw":-5.96903,"spawnMask":1},{"id":"creature-48957","entityId":"entry-10475","position":[-16.633,-109.832,-140.4912],"yaw":-2.79253,"spawnMask":1},{"id":"creature-48958","entityId":"entry-10469","position":[-92.0368,-97.9272,-63.4418],"yaw":-2.9147,"spawnMask":1},{"id":"creature-48959","entityId":"entry-10498","position":[-129.6628,-97.8672,-66.8658],"yaw":-0.314159,"spawnMask":1},{"id":"creature-48960","entityId":"entry-10498","position":[-87.6028,-97.9232,-102.9648],"yaw":-0.733038,"spawnMask":1},{"id":"creature-48961","entityId":"entry-10477","position":[-126.7198,-97.7732,-89.9638],"yaw":-1.27409,"spawnMask":1},{"id":"creature-48963","entityId":"entry-10487","position":[-176.4768,-97.7422,-70.9988],"yaw":-4.81711,"spawnMask":1},{"id":"creature-48964","entityId":"entry-10469","position":[-102.9878,-97.8522,-64.0708],"yaw":-1.09956,"spawnMask":1},{"id":"creature-48965","entityId":"entry-10469","position":[-101.0908,-97.8672,-119.0518],"yaw":-4.53786,"spawnMask":1},{"id":"creature-48966","entityId":"entry-10498","position":[-147.8608,-97.8672,-92.3188],"yaw":-4.81711,"spawnMask":1},{"id":"creature-48967","entityId":"entry-10469","position":[-188.9998,-97.7252,-80.0218],"yaw":-5.67232,"spawnMask":1},{"id":"creature-48968","entityId":"entry-10476","position":[-160.5138,-97.6732,-152.6533],"yaw":-6.00393,"spawnMask":1},{"id":"creature-48969","entityId":"entry-10476","position":[-165.8928,-97.6032,-117.6108],"yaw":-2.40855,"spawnMask":1},{"id":"creature-48970","entityId":"entry-10476","position":[-160.2778,-97.7072,-134.4268],"yaw":-0.139626,"spawnMask":1},{"id":"creature-48971","entityId":"entry-11582","position":[-191.9218,-97.7482,-110.9808],"yaw":-5.11381,"spawnMask":1},{"id":"creature-48972","entityId":"entry-10476","position":[-193.9728,-97.6082,-157.1375],"yaw":-1.13446,"spawnMask":1},{"id":"creature-48973","entityId":"entry-10476","position":[-195.6838,-97.8152,-111.2918],"yaw":-4.06662,"spawnMask":1},{"id":"creature-48974","entityId":"entry-10476","position":[-190.2798,-97.5572,-134.5368],"yaw":-0.226893,"spawnMask":1},{"id":"creature-48976","entityId":"entry-10488","position":[-39.2938,-114.4216,-97.7618],"yaw":-1.44862,"spawnMask":1},{"id":"creature-48977","entityId":"entry-10488","position":[-20.6088,-113.7277,-39.9288],"yaw":-1.44862,"spawnMask":1},{"id":"creature-48978","entityId":"entry-10481","position":[-152.6498,-111.6841,-141.1848],"yaw":-0.034907,"spawnMask":1},{"id":"creature-48979","entityId":"entry-10481","position":[-149.7818,-111.6842,-147.6516],"yaw":-4.57276,"spawnMask":1},{"id":"creature-48980","entityId":"entry-10485","position":[-147.6228,-111.6842,-139.2117],"yaw":-3.85718,"spawnMask":1},{"id":"creature-48981","entityId":"entry-10485","position":[-156.6128,-111.6841,-135.5728],"yaw":-2.35619,"spawnMask":1},{"id":"creature-48982","entityId":"entry-10485","position":[-159.7258,-111.6841,-140.9908],"yaw":-1.41372,"spawnMask":1},{"id":"creature-48983","entityId":"entry-10495","position":[-158.1108,-111.6841,-146.5576],"yaw":-4.24115,"spawnMask":1},{"id":"creature-48984","entityId":"entry-10481","position":[-162.3198,-111.6841,-146.0091],"yaw":-5.06145,"spawnMask":1},{"id":"creature-48985","entityId":"entry-10481","position":[-167.4508,-111.6843,-93.1598],"yaw":-0.575959,"spawnMask":1},{"id":"creature-48986","entityId":"entry-10485","position":[-169.5858,-111.6843,-86.0708],"yaw":-0.191986,"spawnMask":1},{"id":"creature-48987","entityId":"entry-10495","position":[-173.0988,-111.6843,-99.3868],"yaw":-4.03171,"spawnMask":1},{"id":"creature-48988","entityId":"entry-10481","position":[-191.3708,-111.6843,-115.0658],"yaw":-3.4383,"spawnMask":1},{"id":"creature-48989","entityId":"entry-10481","position":[-194.9228,-111.6843,-110.3038],"yaw":-5.88176,"spawnMask":1},{"id":"creature-48990","entityId":"entry-10485","position":[-196.8248,-111.6843,-117.9178],"yaw":-6.07375,"spawnMask":1},{"id":"creature-48991","entityId":"entry-10485","position":[-188.7928,-111.6843,-110.5668],"yaw":-1.67552,"spawnMask":1},{"id":"creature-48992","entityId":"entry-10485","position":[-185.4198,-111.6843,-116.0698],"yaw":-5.68977,"spawnMask":1},{"id":"creature-48993","entityId":"entry-10495","position":[-189.0108,-111.6843,-121.4698],"yaw":-4.41568,"spawnMask":1},{"id":"creature-48994","entityId":"entry-10481","position":[-169.0638,-111.7677,-117.3608],"yaw":-0.032734,"spawnMask":1},{"id":"creature-48995","entityId":"entry-10481","position":[-193.7868,-111.6843,-85.7558],"yaw":-1.11701,"spawnMask":1},{"id":"creature-48996","entityId":"entry-10485","position":[-195.9238,-111.7315,-92.1838],"yaw":-3.32769,"spawnMask":1},{"id":"creature-48997","entityId":"entry-10485","position":[-193.2548,-111.6843,-98.3608],"yaw":-1.5708,"spawnMask":1},{"id":"creature-48998","entityId":"entry-10485","position":[-186.5788,-111.6843,-86.8088],"yaw":-3.00197,"spawnMask":1},{"id":"creature-48999","entityId":"entry-10495","position":[-186.6128,-111.6843,-95.6468],"yaw":-6.19592,"spawnMask":1},{"id":"creature-49000","entityId":"entry-10485","position":[-162.6708,-111.6842,-66.1958],"yaw":-0.890118,"spawnMask":1},{"id":"creature-49001","entityId":"entry-10485","position":[-181.1018,-111.6843,-111.4248],"yaw":-1.88496,"spawnMask":1},{"id":"creature-49002","entityId":"entry-10489","position":[-127.2188,-91.7992,-227.5791],"yaw":-1.74533,"spawnMask":1},{"id":"creature-49003","entityId":"entry-10499","position":[-92.3198,-91.8822,-205.9854],"yaw":-0.026647,"spawnMask":1},{"id":"creature-49004","entityId":"entry-10471","position":[-157.4208,-91.7992,-190.2674],"yaw":-0.767945,"spawnMask":1},{"id":"creature-49005","entityId":"entry-10499","position":[-158.2448,-91.7992,-187.2231],"yaw":-4.43314,"spawnMask":1},{"id":"creature-49006","entityId":"entry-10471","position":[-100.8548,-91.7992,-254.5348],"yaw":-2.87979,"spawnMask":1},{"id":"creature-49008","entityId":"entry-10471","position":[-112.0128,-91.7992,-238.5561],"yaw":-3.9619,"spawnMask":1},{"id":"creature-49009","entityId":"entry-10470","position":[-156.9358,-91.7902,-207.7882],"yaw":-4.83456,"spawnMask":1},{"id":"creature-49010","entityId":"entry-10489","position":[-126.4508,-79.0722,-155.7536],"yaw":-2.58309,"spawnMask":1},{"id":"creature-49011","entityId":"entry-10470","position":[-157.6578,-91.7992,-183.5513],"yaw":-1.72788,"spawnMask":1},{"id":"creature-91294","entityId":"entry-10678","position":[-66.5268,-97.9442,-86.3408],"yaw":-5.48033,"spawnMask":1},{"id":"creature-91295","entityId":"entry-11257","position":[-63.3948,-98.0282,-57.1978],"yaw":-0.046656,"spawnMask":1},{"id":"creature-91296","entityId":"entry-11257","position":[-66.2578,-97.9392,-78.7678],"yaw":-0.959931,"spawnMask":1},{"id":"creature-91297","entityId":"entry-10678","position":[-21.2288,-98.0562,-48.7508],"yaw":-5.09636,"spawnMask":1},{"id":"creature-91298","entityId":"entry-10678","position":[-38.9578,-97.9922,-62.4538],"yaw":-1.25664,"spawnMask":1},{"id":"creature-91299","entityId":"entry-10678","position":[-46.8668,-97.9642,-53.0158],"yaw":-2.9147,"spawnMask":1},{"id":"creature-91300","entityId":"entry-10678","position":[-37.5248,-98.0092,-51.8318],"yaw":-4.29351,"spawnMask":1},{"id":"creature-91301","entityId":"entry-10678","position":[-54.3738,-97.9312,-69.1008],"yaw":-0.226893,"spawnMask":1},{"id":"creature-91302","entityId":"entry-11257","position":[-46.1798,-98.0472,-69.0798],"yaw":-4.11946,"spawnMask":1},{"id":"creature-91303","entityId":"entry-10678","position":[-61.5838,-97.9032,-82.5368],"yaw":-3.63029,"spawnMask":1},{"id":"creature-91304","entityId":"entry-10481","position":[-157.9878,-122.666,-231.3906],"yaw":-5.06145,"spawnMask":1},{"id":"creature-91305","entityId":"entry-10480","position":[-155.1898,-122.666,-235.7662],"yaw":-1.90241,"spawnMask":1},{"id":"creature-91306","entityId":"entry-10481","position":[-167.6738,-122.4648,-228.1657],"yaw":-1.44862,"spawnMask":1},{"id":"creature-91307","entityId":"entry-10480","position":[-157.3188,-122.2785,-224.4697],"yaw":-4.97419,"spawnMask":1},{"id":"creature-91308","entityId":"entry-10480","position":[-149.7488,-122.666,-235.2783],"yaw":-0.10472,"spawnMask":1},{"id":"creature-91309","entityId":"entry-10480","position":[-163.3908,-122.666,-232.1019],"yaw":-5.09636,"spawnMask":1},{"id":"creature-91310","entityId":"entry-10480","position":[-156.8808,-122.666,-240.8607],"yaw":-0.872665,"spawnMask":1},{"id":"creature-91311","entityId":"entry-10480","position":[-154.2548,-122.2785,-245.8611],"yaw":-1.0821,"spawnMask":1},{"id":"creature-91312","entityId":"entry-10475","position":[-34.9458,-106.0032,-120.0448],"yaw":-4.92183,"spawnMask":1},{"id":"creature-91313","entityId":"entry-10475","position":[-42.9708,-105.7222,-154.4378],"yaw":-3.7001,"spawnMask":1},{"id":"creature-91314","entityId":"entry-10475","position":[-30.4188,-107.7564,-166.7085],"yaw":-3.89208,"spawnMask":1},{"id":"creature-91315","entityId":"entry-10475","position":[-37.5988,-106.2312,-138.5488],"yaw":-0.349066,"spawnMask":1},{"id":"creature-91316","entityId":"entry-10475","position":[-34.8238,-105.7632,-121.9748],"yaw":-1.51844,"spawnMask":1},{"id":"creature-91317","entityId":"entry-10475","position":[-40.1428,-105.5842,-136.3072],"yaw":-4.2586,"spawnMask":1},{"id":"creature-91318","entityId":"entry-10475","position":[-50.4118,-105.1672,-152.6563],"yaw":-1.32645,"spawnMask":1},{"id":"creature-91319","entityId":"entry-10475","position":[-22.3408,-109.3133,-147.0135],"yaw":-1.65846,"spawnMask":1},{"id":"creature-91320","entityId":"entry-10475","position":[-11.928,-109.8027,-159.1126],"yaw":-5.37561,"spawnMask":1},{"id":"creature-91321","entityId":"entry-10475","position":[-23.6758,-108.4544,-128.7928],"yaw":-2.35619,"spawnMask":1},{"id":"creature-91322","entityId":"entry-10469","position":[-130.0648,-97.8672,-89.7108],"yaw":-2.47837,"spawnMask":1},{"id":"creature-91323","entityId":"entry-10477","position":[-131.2098,-97.8672,-64.4388],"yaw":-4.10152,"spawnMask":1},{"id":"creature-91324","entityId":"entry-10498","position":[-100.4578,-97.8672,-122.3828],"yaw":-1.8675,"spawnMask":1},{"id":"creature-91325","entityId":"entry-10477","position":[-105.8928,-97.7432,-64.0318],"yaw":-2.09439,"spawnMask":1},{"id":"creature-91326","entityId":"entry-10477","position":[-192.8378,-97.7222,-84.7558],"yaw":-2.61799,"spawnMask":1},{"id":"creature-91328","entityId":"entry-10469","position":[-159.2978,-97.8512,-69.6788],"yaw":-0.349066,"spawnMask":1},{"id":"creature-91329","entityId":"entry-10469","position":[-153.7198,-97.8612,-69.1058],"yaw":-1.53589,"spawnMask":1},{"id":"creature-91330","entityId":"entry-10477","position":[-160.5448,-97.8482,-71.5028],"yaw":-1.15192,"spawnMask":1},{"id":"creature-91331","entityId":"entry-10477","position":[-90.2308,-97.9482,-65.9888],"yaw":-2.26893,"spawnMask":1},{"id":"creature-91333","entityId":"entry-10469","position":[-152.3678,-97.8622,-93.8178],"yaw":-3.49066,"spawnMask":1},{"id":"creature-91334","entityId":"entry-10477","position":[-146.7118,-97.8672,-95.3658],"yaw":-0.925025,"spawnMask":1},{"id":"creature-91335","entityId":"entry-10477","position":[-149.4078,-97.8662,-95.3588],"yaw":-2.6529,"spawnMask":1},{"id":"creature-91336","entityId":"entry-10476","position":[-166.2498,-97.5572,-132.3288],"yaw":-3.33358,"spawnMask":1},{"id":"creature-91337","entityId":"entry-10476","position":[-162.7448,-97.7822,-111.5678],"yaw":-4.86947,"spawnMask":1},{"id":"creature-91338","entityId":"entry-11582","position":[-190.1388,-97.5352,-132.6948],"yaw":-5.96903,"spawnMask":1},{"id":"creature-91340","entityId":"entry-11582","position":[-160.1298,-97.5352,-155.0469],"yaw":0,"spawnMask":1},{"id":"creature-91341","entityId":"entry-10471","position":[-112.6658,-92.5422,-215.9596],"yaw":-4.99164,"spawnMask":1},{"id":"creature-91342","entityId":"entry-10471","position":[-83.8618,-91.7992,-210.0455],"yaw":-5.41052,"spawnMask":1},{"id":"creature-91343","entityId":"entry-10470","position":[-140.4098,-91.7992,-253.2729],"yaw":-4.31096,"spawnMask":1},{"id":"creature-91344","entityId":"entry-10471","position":[-155.9098,-91.7852,-210.3579],"yaw":-0.593412,"spawnMask":1},{"id":"creature-91345","entityId":"entry-10471","position":[-121.3838,-91.7992,-245.349],"yaw":-3.49066,"spawnMask":1},{"id":"creature-91346","entityId":"entry-10470","position":[-119.1038,-91.7992,-244.8098],"yaw":-4.90438,"spawnMask":1},{"id":"creature-91347","entityId":"entry-10470","position":[-117.6178,-91.7992,-247.244],"yaw":-0.593412,"spawnMask":1},{"id":"creature-91348","entityId":"entry-10470","position":[-110.4768,-91.7992,-240.7172],"yaw":-1.09956,"spawnMask":1},{"id":"creature-91349","entityId":"entry-10499","position":[-97.5908,-91.7992,-254.1999],"yaw":-6.23082,"spawnMask":1},{"id":"creature-91350","entityId":"entry-10499","position":[-112.7508,-92.5112,-219.4429],"yaw":-1.91986,"spawnMask":1},{"id":"creature-91352","entityId":"entry-10489","position":[-115.0288,-79.0722,-171.3661],"yaw":-1.44862,"spawnMask":1},{"id":"creature-91363","entityId":"entry-10678","position":[-69.7048,-97.9652,-71.7868],"yaw":-1.44862,"spawnMask":1},{"id":"creature-91364","entityId":"entry-10678","position":[-46.6118,-97.9642,-74.8538],"yaw":-2.72271,"spawnMask":1},{"id":"creature-91365","entityId":"entry-11257","position":[-29.0158,-98.0722,-56.9808],"yaw":-1.13787,"spawnMask":1},{"id":"creature-91366","entityId":"entry-10678","position":[-47.2948,-97.9672,-85.6248],"yaw":-3.78736,"spawnMask":1},{"id":"creature-91367","entityId":"entry-10678","position":[-67.8118,-97.9112,-61.0138],"yaw":-5.8294,"spawnMask":1},{"id":"creature-91368","entityId":"entry-10678","position":[-31.1408,-97.9902,-87.0128],"yaw":-5.48033,"spawnMask":1},{"id":"creature-91369","entityId":"entry-10678","position":[-29.1418,-97.9992,-68.4918],"yaw":-4.18879,"spawnMask":1},{"id":"creature-91370","entityId":"entry-10475","position":[-40.2138,-105.9752,-139.7325],"yaw":-1.98968,"spawnMask":1},{"id":"creature-91371","entityId":"entry-10475","position":[-27.0378,-107.7647,-148.4758],"yaw":-5.75959,"spawnMask":1},{"id":"creature-91372","entityId":"entry-10469","position":[-132.6918,-97.8672,-67.4098],"yaw":-3.01942,"spawnMask":1},{"id":"creature-91373","entityId":"entry-10470","position":[-87.2268,-91.7992,-210.5316],"yaw":-3.52556,"spawnMask":1},{"id":"creature-91375","entityId":"entry-10489","position":[-120.3218,-79.0722,-170.9643],"yaw":-1.53589,"spawnMask":1},{"id":"creature-91376","entityId":"entry-10489","position":[-107.7268,-79.0722,-155.8788],"yaw":-0.628319,"spawnMask":1},{"id":"creature-91377","entityId":"entry-10499","position":[-117.6978,-91.7992,-175.3236],"yaw":-0.471239,"spawnMask":1},{"id":"creature-91378","entityId":"entry-10471","position":[-135.3288,-91.7992,-244.1806],"yaw":-2.93215,"spawnMask":1},{"id":"creature-91379","entityId":"entry-10470","position":[-97.8318,-91.7992,-252.6751],"yaw":-5.72468,"spawnMask":1},{"id":"creature-91380","entityId":"entry-10471","position":[-147.0258,-91.7992,-237.3222],"yaw":-0.087266,"spawnMask":1},{"id":"creature-91381","entityId":"entry-10499","position":[-129.2938,-91.7992,-225.8946],"yaw":-2.51327,"spawnMask":1},{"id":"creature-91382","entityId":"entry-10470","position":[-91.5808,-91.7992,-230.0689],"yaw":-3.47321,"spawnMask":1},{"id":"creature-91393","entityId":"entry-10470","position":[-78.0008,-91.7992,-190.4167],"yaw":-2.98451,"spawnMask":1},{"id":"creature-91408","entityId":"entry-10485","position":[-135.6448,-102.8752,-165.0991],"yaw":-4.14758,"spawnMask":1},{"id":"creature-91409","entityId":"entry-10485","position":[-97.2548,-102.7922,-135.4458],"yaw":-0.465572,"spawnMask":1},{"id":"creature-91410","entityId":"entry-10485","position":[-102.5688,-102.7922,-135.5428],"yaw":-3.5243,"spawnMask":1},{"id":"creature-91411","entityId":"entry-10495","position":[-101.8108,-102.7912,-140.6134],"yaw":-2.84489,"spawnMask":1},{"id":"creature-91412","entityId":"entry-10495","position":[-95.7598,-102.7902,-140.1052],"yaw":-2.14675,"spawnMask":1},{"id":"creature-91413","entityId":"entry-10485","position":[-133.3648,-102.7922,-139.0433],"yaw":-1.8817,"spawnMask":1},{"id":"creature-91414","entityId":"entry-10481","position":[-138.5598,-102.7922,-139.2172],"yaw":-3.82625,"spawnMask":1},{"id":"creature-91415","entityId":"entry-10495","position":[-138.5988,-102.7922,-131.7318],"yaw":-3.4383,"spawnMask":1},{"id":"creature-91416","entityId":"entry-10485","position":[-131.2168,-102.7922,-133.7048],"yaw":-2.70261,"spawnMask":1},{"id":"creature-91417","entityId":"entry-10485","position":[-97.1258,-102.7912,-161.4682],"yaw":-2.8371,"spawnMask":1},{"id":"creature-91418","entityId":"entry-10485","position":[-97.8568,-102.7912,-155.0189],"yaw":-0.386879,"spawnMask":1},{"id":"creature-91419","entityId":"entry-10495","position":[-102.5458,-102.7922,-165.2095],"yaw":-1.36245,"spawnMask":1},{"id":"creature-153321","entityId":"entry-14695","position":[-116.8438,-97.7112,-84.7828],"yaw":-5.06145,"spawnMask":1},{"id":"creature-247104","entityId":"entry-1853","position":[-97.4138,-132.02,-241.0504],"yaw":-1.29154,"spawnMask":1}],"roamingPacks":[{"id":"patrol-48469","name":"Necrofiend Patrol","speed":1.15,"pathId":484690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-124.5548,-103.2462,-160.7131],[-128.6718,-103.3462,-154.527],[-132.5458,-102.8752,-149.0358],[-126.5538,-103.3462,-142.0024],[-116.9208,-102.8752,-133.4638],[-109.0378,-103.3462,-141.7709],[-101.4948,-102.8752,-150.7906],[-109.1618,-103.3462,-158.5267],[-114.3558,-102.8752,-164.7499]],"members":[{"id":"member","entityId":"entry-11551","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48781","name":"Risen Protector Patrol","speed":1.15,"pathId":487810,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-87.3378,-98.0742,-82.6088],[-110.5228,-97.7952,-81.2448],[-133.2008,-97.9492,-81.0408],[-171.8358,-97.8412,-81.0398],[-148.0818,-97.9492,-82.0968],[-116.5848,-97.7952,-82.5548],[-99.6608,-97.9762,-82.8208]],"members":[{"id":"member","entityId":"entry-10487","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48789","name":"Risen Guard Patrol","speed":1.15,"pathId":487890,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-198.5868,-97.6172,-109.5708],[-181.0968,-97.6172,-107.2978],[-157.7168,-97.6172,-109.0078],[-158.1938,-97.6172,-121.8918],[-180.1868,-97.6192,-124.1728],[-197.7058,-97.6182,-119.7338],[-198.4178,-97.6182,-111.9488]],"members":[{"id":"member","entityId":"entry-10489","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48794","name":"Necrofiend Patrol","speed":1.15,"pathId":487940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-160.5638,-97.6192,-143.5141],[-171.0628,-97.6192,-143.3656],[-197.5698,-97.6172,-142.8559],[-177.4468,-97.6192,-143.9797]],"members":[{"id":"member","entityId":"entry-11551","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48805","name":"Vectus Patrol","speed":1.15,"pathId":488050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-60.1238,-102.9312,-136.5254],[-60.1238,-102.9312,-136.5254],[-60.1238,-102.9312,-136.5254],[-60.1238,-102.9312,-136.5254],[-60.1238,-102.9312,-136.5254]],"members":[{"id":"member","entityId":"entry-10432","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48812","name":"Diseased Ghoul Patrol","speed":1.15,"pathId":488120,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-181.2828,-111.7677,-71.7328],[-162.8028,-111.7677,-71.6688],[-147.9968,-111.7677,-72.3798],[-147.9648,-111.7668,-87.4998],[-167.8078,-111.7668,-88.4268],[-193.5208,-111.7668,-88.1968],[-193.5538,-111.7668,-72.1058]],"members":[{"id":"member","entityId":"entry-10495","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48846","name":"Risen Guard Patrol","speed":1.15,"pathId":488460,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-100.2478,-91.8822,-204.9627],[-104.5758,-91.9482,-222.6251],[-120.3188,-91.8822,-237.3165],[-136.2968,-91.8812,-226.6008],[-140.5818,-91.8782,-200.9969],[-117.9088,-91.8812,-201.123],[-117.7048,-91.8782,-181.6222],[-117.9758,-91.8822,-198.6761],[-104.5478,-91.8822,-202.6385]],"members":[{"id":"member","entityId":"entry-10489","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48949","name":"Scholomance Student Patrol","speed":1.15,"pathId":489490,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-30.8498,-107.7341,-129.4608],[-30.3398,-108.5769,-137.9514],[-36.2138,-106.3012,-150.638],[-41.1268,-106.0132,-166.3956],[-52.1778,-104.6722,-164.6161],[-48.7168,-105.1342,-155.1543],[-46.4428,-106.2492,-150.7868],[-42.8078,-105.8892,-146.5318],[-36.4678,-107.3942,-140.0507],[-34.1398,-106.1322,-131.9808],[-30.9308,-107.6761,-130.2808]],"members":[{"id":"member","entityId":"entry-10475","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48975","name":"Risen Guard Patrol","speed":1.15,"pathId":489750,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-177.5468,-97.6172,-105.2978],[-177.7388,-97.6192,-127.6818],[-178.1918,-97.6192,-148.6767],[-178.4328,-97.6172,-166.0418],[-178.3698,-97.6192,-145.042],[-177.7578,-97.6192,-116.2158]],"members":[{"id":"member","entityId":"entry-10489","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-49007","name":"Risen Guard Patrol","speed":1.15,"pathId":490070,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-117.8948,-78.8142,-184.8863],[-109.2248,-79.1542,-185.1119],[-89.8678,-91.6572,-185.9804],[-83.1518,-91.8822,-186.2378],[-84.4438,-91.8822,-199.0416],[-103.8898,-91.8872,-202.972],[-131.8278,-91.9412,-202.6781],[-152.4468,-91.8812,-197.886],[-152.3068,-91.8812,-184.5526],[-146.9818,-91.8192,-184.8487],[-127.0688,-78.7492,-185.2515]],"members":[{"id":"member","entityId":"entry-10489","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91327","name":"Necrofiend Patrol","speed":1.15,"pathId":913270,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-136.7208,-97.9502,-101.2068],[-136.3788,-97.9502,-78.2368],[-109.5718,-97.7952,-70.2318],[-97.9038,-97.9912,-84.9108],[-120.6228,-97.7952,-101.2628]],"members":[{"id":"member","entityId":"entry-11551","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91332","name":"Risen Protector Patrol","speed":1.15,"pathId":913320,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-115.0148,-97.7952,-62.9918],[-115.0438,-97.7952,-81.1768],[-115.9478,-97.7952,-105.8468],[-115.7928,-97.7952,-85.1428]],"members":[{"id":"member","entityId":"entry-10487","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91339","name":"Risen Guard Patrol","speed":1.15,"pathId":913390,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-157.5898,-97.6182,-159.9642],[-169.6438,-97.6182,-159.8884],[-184.1888,-97.6182,-160.366],[-199.0128,-97.6182,-159.5655],[-198.6468,-97.6182,-143.9042],[-185.7748,-97.6182,-144.0576],[-158.0308,-97.6182,-147.6542]],"members":[{"id":"member","entityId":"entry-10489","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91351","name":"Spectral Researcher Patrol","speed":1.15,"pathId":913510,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-109.8218,-91.8822,-247.514],[-110.4278,-91.8822,-257.5757],[-110.2008,-91.8822,-246.9474],[-105.1258,-91.8822,-234.5259],[-122.3748,-91.8822,-236.3481],[-123.8628,-91.8822,-246.8662],[-124.2488,-91.8822,-254.4373],[-124.0888,-91.8822,-246.0391],[-122.7918,-91.8822,-237.7439],[-110.6528,-91.8822,-233.6789],[-105.5008,-91.8822,-240.4469],[-109.0398,-91.8822,-246.5789]],"members":[{"id":"member","entityId":"entry-10499","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91374","name":"Blood Steward of Kirtonos Patrol","speed":1.15,"pathId":913740,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-78.2698,-91.8822,-237.1133],[-90.5648,-91.8822,-236.637],[-104.5578,-91.8822,-236.0077],[-119.6768,-91.8822,-235.213],[-133.0068,-91.8822,-233.504],[-139.5708,-91.8822,-243.2532],[-134.8048,-91.8822,-235.9316],[-113.8088,-91.8822,-235.624],[-88.8928,-91.8822,-236.3466]],"members":[{"id":"member","entityId":"entry-14861","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91420","name":"Necrofiend Patrol","speed":1.15,"pathId":914200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-118.4128,-103.3462,-139.5975],[-106.1968,-103.3462,-148.8487],[-101.0588,-102.8752,-153.1798],[-108.0048,-103.3462,-156.1634],[-112.1338,-103.2962,-160.7539],[-117.3598,-102.8752,-166.5878],[-121.9758,-102.9792,-161.7048],[-129.8078,-103.1302,-152.5864]],"members":[{"id":"member","entityId":"entry-11551","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-48807","name":"Jandice Barov","position":[-184.8658,-111.6657,-161.9888]},{"id":"creature-48910","name":"Rattlegore","position":[-53.7878,-111.6238,-63.9458]},{"id":"creature-48867","name":"Instructor Malicia","position":[-3.3062,-122.2785,-237.5822]},{"id":"creature-48925","name":"Doctor Theolen Krastinov","position":[-98.8888,-122.2785,-331.0589]},{"id":"creature-48946","name":"Lorekeeper Polkelt","position":[-191.5198,-122.2785,-234.2881]},{"id":"creature-48863","name":"Lord Alexei Barov","position":[-95.3668,-136.7334,-326.645]},{"id":"creature-48857","name":"Lady Illucia Barov","position":[-182.5988,-132.2568,-234.7184]},{"id":"creature-48850","name":"Ras Frostwhisper","position":[108.4651,-123.6819,-94.3378]}],"objectiveOrder":[{"id":"creature-48807","name":"Jandice Barov","position":[-184.8658,-111.6657,-161.9888]},{"id":"creature-48910","name":"Rattlegore","position":[-53.7878,-111.6238,-63.9458]},{"id":"creature-48867","name":"Instructor Malicia","position":[-3.3062,-122.2785,-237.5822]},{"id":"creature-48925","name":"Doctor Theolen Krastinov","position":[-98.8888,-122.2785,-331.0589]},{"id":"creature-48946","name":"Lorekeeper Polkelt","position":[-191.5198,-122.2785,-234.2881]},{"id":"creature-48863","name":"Lord Alexei Barov","position":[-95.3668,-136.7334,-326.645]},{"id":"creature-48857","name":"Lady Illucia Barov","position":[-182.5988,-132.2568,-234.7184]},{"id":"creature-48850","name":"Ras Frostwhisper","position":[108.4651,-123.6819,-94.3378]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14220,"id":181096,"map":289,"orientation":0,"phaseMask":1,"position_x":-3.82,"position_y":141.88,"position_z":83.9,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15231,"id":177381,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":241.399,"position_y":129.666,"position_z":110.012,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2057,"guid":18892,"id":175570,"map":289,"orientation":-3.12414,"phaseMask":1,"position_x":288.435,"position_y":92.9581,"position_z":109.974,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2057},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35798,"id":177371,"map":289,"orientation":-1.55334,"phaseMask":1,"position_x":204.326,"position_y":0.011124,"position_z":76.1678,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35799,"id":177379,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":280.912,"position_y":72.2313,"position_z":110.012,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47168,"animprogress":255,"areaId":0,"guid":35830,"id":177378,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":242.413,"position_y":71.5593,"position_z":110.012,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47168,"animprogress":255,"areaId":0,"guid":42985,"id":177383,"map":289,"orientation":3.15543,"phaseMask":1,"position_x":111.627,"position_y":67.163,"position_z":99.1107,"rotation0":0.0646195,"rotation1":0.0148668,"rotation2":-0.997768,"rotation3":0.00783916,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":43177,"id":177385,"map":289,"orientation":0.0174525,"phaseMask":1,"position_x":227.259,"position_y":88.3103,"position_z":99.1948,"rotation0":0,"rotation1":0,"rotation2":0.00872612,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":43178,"id":175610,"map":289,"orientation":4.72984,"phaseMask":1,"position_x":172.045,"position_y":99.4433,"position_z":105.135,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43179,"id":175613,"map":289,"orientation":-1.55334,"phaseMask":1,"position_x":261.929,"position_y":64.9468,"position_z":110.028,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43180,"id":177380,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":279.898,"position_y":130.338,"position_z":110.012,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43182,"id":177382,"map":289,"orientation":3.15548,"phaseMask":1,"position_x":142.413,"position_y":67.2058,"position_z":103.283,"rotation0":0.0384789,"rotation1":0.0146103,"rotation2":-0.999125,"rotation3":0.00748919,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43184,"id":177375,"map":289,"orientation":-3.12414,"phaseMask":1,"position_x":151.773,"position_y":-0.602287,"position_z":88.9039,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43185,"id":175616,"map":289,"orientation":0.017453,"phaseMask":1,"position_x":166.337,"position_y":153.214,"position_z":109.639,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43186,"id":175617,"map":289,"orientation":0.017453,"phaseMask":1,"position_x":91.0901,"position_y":100.655,"position_z":97.6291,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43187,"id":177372,"map":289,"orientation":-1.55334,"phaseMask":1,"position_x":159.746,"position_y":-0.767021,"position_z":76.1678,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43188,"id":177373,"map":289,"orientation":0.017453,"phaseMask":1,"position_x":181.054,"position_y":-21.3466,"position_z":76.1317,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43189,"id":175618,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":135.951,"position_y":59.0352,"position_z":102.766,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43190,"id":175614,"map":289,"orientation":-1.55334,"phaseMask":1,"position_x":260.844,"position_y":137.045,"position_z":110.028,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43191,"id":179724,"map":289,"orientation":0.017453,"phaseMask":1,"position_x":94.1333,"position_y":181.318,"position_z":93.2171,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43192,"id":175167,"map":289,"orientation":-3.12414,"phaseMask":1,"position_x":174.378,"position_y":77.9398,"position_z":104.802,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43193,"id":177384,"map":289,"orientation":3.15543,"phaseMask":1,"position_x":105.716,"position_y":108.08,"position_z":98.0796,"rotation0":0.0646195,"rotation1":0.0148668,"rotation2":-0.997768,"rotation3":0.00783916,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":43195,"id":177370,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":57.4782,"position_y":142.856,"position_z":83.4797,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43196,"id":177376,"map":289,"orientation":-3.12414,"phaseMask":1,"position_x":209.065,"position_y":0.011116,"position_z":88.9113,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43197,"id":175615,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":199.721,"position_y":125.504,"position_z":110.028,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43198,"id":175611,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":201.211,"position_y":58.2171,"position_z":128.794,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43199,"id":175612,"map":289,"orientation":-3.12414,"phaseMask":1,"position_x":247.466,"position_y":37.5645,"position_z":115.725,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43200,"id":175619,"map":289,"orientation":4.72984,"phaseMask":1,"position_x":198.878,"position_y":180.594,"position_z":110.108,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43201,"id":177374,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":179.137,"position_y":29.0423,"position_z":88.8537,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43202,"id":175620,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":241.679,"position_y":181.246,"position_z":95.8874,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43203,"id":177377,"map":289,"orientation":-1.55334,"phaseMask":1,"position_x":181.244,"position_y":-29.1116,"position_z":88.9104,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43204,"id":177387,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":38.8082,"position_y":163.686,"position_z":83.5698,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43205,"id":175965,"map":289,"orientation":1.53589,"phaseMask":1,"position_x":-17.8299,"position_y":124.581,"position_z":84.8528,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43206,"id":176544,"map":289,"orientation":2.46091,"phaseMask":1,"position_x":196.871,"position_y":-73.8801,"position_z":85.2284,"rotation0":0,"rotation1":0,"rotation2":0.942641,"rotation3":0.333809,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43207,"id":176545,"map":289,"orientation":3.00197,"phaseMask":1,"position_x":165.317,"position_y":-81.145,"position_z":85.2284,"rotation0":0,"rotation1":0,"rotation2":0.997564,"rotation3":0.0697546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47168,"animprogress":255,"areaId":0,"guid":43208,"id":175564,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":325.122,"position_y":93.6436,"position_z":101.637,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43209,"id":175763,"map":289,"orientation":-1.81514,"phaseMask":1,"position_x":185.373,"position_y":175.628,"position_z":110.747,"rotation0":0,"rotation1":0,"rotation2":-0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43210,"id":175753,"map":289,"orientation":0.872665,"phaseMask":1,"position_x":236.514,"position_y":25.5745,"position_z":116.662,"rotation0":0,"rotation1":0,"rotation2":0.422618,"rotation3":0.906308,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43211,"id":175760,"map":289,"orientation":-1.18682,"phaseMask":1,"position_x":174.178,"position_y":165.658,"position_z":110.788,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43212,"id":175762,"map":289,"orientation":0.471239,"phaseMask":1,"position_x":170.06,"position_y":23.499,"position_z":116.652,"rotation0":0,"rotation1":0,"rotation2":0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43213,"id":175749,"map":289,"orientation":-2.19912,"phaseMask":1,"position_x":233.369,"position_y":20.1783,"position_z":116.667,"rotation0":0,"rotation1":0,"rotation2":-0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43214,"id":175748,"map":289,"orientation":1.69297,"phaseMask":1,"position_x":171.383,"position_y":5.92264,"position_z":116.625,"rotation0":0,"rotation1":0,"rotation2":0.748956,"rotation3":0.66262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43215,"id":175754,"map":289,"orientation":-1.88496,"phaseMask":1,"position_x":173.759,"position_y":3.56098,"position_z":116.652,"rotation0":0,"rotation1":0,"rotation2":-0.809018,"rotation3":0.587783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43216,"id":175737,"map":289,"orientation":-2.25148,"phaseMask":1,"position_x":243.078,"position_y":49.9478,"position_z":116.638,"rotation0":0,"rotation1":0,"rotation2":-0.902586,"rotation3":0.430509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43217,"id":175725,"map":289,"orientation":-2.87979,"phaseMask":1,"position_x":273.328,"position_y":154.363,"position_z":111.123,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43218,"id":175745,"map":289,"orientation":2.02458,"phaseMask":1,"position_x":231.868,"position_y":-4.19412,"position_z":117.052,"rotation0":0,"rotation1":0,"rotation2":0.848047,"rotation3":0.529921,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43219,"id":176944,"map":289,"orientation":0.034907,"phaseMask":1,"position_x":167.378,"position_y":98.986,"position_z":104.727,"rotation0":0,"rotation1":0,"rotation2":0.0174526,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43220,"id":176561,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":182.53,"position_y":-100.098,"position_z":85.2284,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43221,"id":176484,"map":289,"orientation":1.46608,"phaseMask":1,"position_x":-16.4044,"position_y":158.618,"position_z":84.8517,"rotation0":0,"rotation1":0,"rotation2":0.669132,"rotation3":0.743144,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43222,"id":176485,"map":289,"orientation":-1.02974,"phaseMask":1,"position_x":185.297,"position_y":-90.6366,"position_z":72.5991,"rotation0":0,"rotation1":0,"rotation2":-0.492422,"rotation3":0.870357,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43223,"id":176486,"map":289,"orientation":-1.6057,"phaseMask":1,"position_x":223.524,"position_y":-21.3739,"position_z":116.694,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43224,"id":176487,"map":289,"orientation":-2.26893,"phaseMask":1,"position_x":175.154,"position_y":167.22,"position_z":110.734,"rotation0":0,"rotation1":0,"rotation2":-0.906308,"rotation3":0.422617,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43225,"id":175731,"map":289,"orientation":-1.88496,"phaseMask":1,"position_x":179.786,"position_y":106.997,"position_z":106.099,"rotation0":0,"rotation1":0,"rotation2":-0.809018,"rotation3":0.587783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43226,"id":175756,"map":289,"orientation":1.27409,"phaseMask":1,"position_x":195.84,"position_y":-9.33474,"position_z":116.638,"rotation0":0,"rotation1":0,"rotation2":0.594823,"rotation3":0.803857,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43227,"id":175733,"map":289,"orientation":-0.680679,"phaseMask":1,"position_x":150.812,"position_y":120.409,"position_z":105.659,"rotation0":0,"rotation1":0,"rotation2":-0.333807,"rotation3":0.942641,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43228,"id":175747,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":216.765,"position_y":64.7193,"position_z":106.099,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43229,"id":175741,"map":289,"orientation":-0.017453,"phaseMask":1,"position_x":170.056,"position_y":171.955,"position_z":110.725,"rotation0":0,"rotation1":0,"rotation2":-0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43230,"id":175724,"map":289,"orientation":-1.09956,"phaseMask":1,"position_x":224.275,"position_y":-21.3776,"position_z":116.666,"rotation0":0,"rotation1":0,"rotation2":-0.5225,"rotation3":0.852639,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99866,"id":179746,"map":289,"orientation":3.60657,"phaseMask":1,"position_x":139.496,"position_y":174.816,"position_z":95.5388,"rotation0":0,"rotation1":0,"rotation2":0.973096,"rotation3":-0.2304,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99890,"id":176111,"map":289,"orientation":0,"phaseMask":1,"position_x":133.69,"position_y":91.67,"position_z":101.73,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99904,"id":181049,"map":289,"orientation":0,"phaseMask":1,"position_x":-3.82,"position_y":141.88,"position_z":83.9,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268879,"id":181094,"map":289,"orientation":0,"phaseMask":1,"position_x":-3.82,"position_y":141.88,"position_z":83.9,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/SchoolofNecromancy":"5d4a94bd2ec0dc65901a4ad706dcfef52e4987f9474f6e6b26b10d38ea43683e","patch/World/maps/SchoolofNecromancy":"980652e632b1c397703455fb77ee9f8dad9e349de4df385cbe1be834a5c28cfc"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/scholomance/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["38/38 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"stratholme","title":"Stratholme","mapId":329,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[55,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Stratholme","theme":"Instanced dungeon","summary":"Fight through Stratholme, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Stratholme...","unchartedAreaName":"Uncharted Stratholme","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":922.7909},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/329-stratholme/visual.glb","checksum":"9950e7baac4fdb241162de1f29f1fae3b3cc1054521a5f959e9a686c3414ffc8","size":9125544,"triangleCount":197572}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/329-stratholme/collision.glb","checksum":"f6482e63a2547489bb27a6eb5ac1c556af5a93dd7995ce5fe78e96bc300e53df","size":1981248,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/329-stratholme/navigation.glb","checksum":"987b03c42d5a9d112baf9b8f5b0b51b5e0f9c760c5769bf350d2e8cfebb19f2f","size":683920,"triangleCount":53098}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-1200.405,-70.5061,-203.6636],"max":[81.249,18.3499,703.3964]},"entrance":{"name":"Stratholme Entrance","footPosition":[-650.575,-27.1501,-50.8536],"forward":[0.9920429711174936,0,-0.12589973572798177],"yaw":1.6970310582719639},"areas":[{"id":"entrance","name":"Stratholme Entrance","center":[-650.575,-27.1501,-50.8536],"radius":35},{"id":"area-the-unforgiven","name":"The Unforgiven's Encounter","center":[-764.205,-33.6001,182.7364],"radius":42},{"id":"area-cannon-master-willey","name":"Cannon Master Willey's Encounter","center":[-630.995,-40.5651,658.3964],"radius":42},{"id":"area-malor-the-zealous","name":"Malor the Zealous's Encounter","center":[-678.495,-29.9021,468.8864],"radius":42},{"id":"area-archivist-galford","name":"Archivist Galford's Encounter","center":[-513.385,-29.1051,492.2964],"radius":42},{"id":"area-balnazzar","name":"Balnazzar's Encounter","center":[-100.5006,-6.2831,-38.3734],"radius":42},{"id":"area-baroness-anastari","name":"Baroness Anastari's Encounter","center":[-912.765,-17.4751,-120.0436],"radius":42},{"id":"area-nerub-enkan","name":"Nerub'enkan's Encounter","center":[-912.405,-21.3571,66.8664],"radius":42},{"id":"area-maleki-the-pallid","name":"Maleki the Pallid's Encounter","center":[-1093.235,-29.9121,-52.0736],"radius":42},{"id":"area-magistrate-barthilas","name":"Magistrate Barthilas's Encounter","center":[-720.655,-27.6661,-23.4336],"radius":42}],"entities":{"entry-11032":{"id":"entry-11032","kind":"boss","name":"Malor the Zealous","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12734","name":"Ground Smash","spellId":12734,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5278,"damageMultiplier":1.35},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5278,"damageMultiplier":1.35},{"id":"spell-17233","name":"Lay on Hands","spellId":17233,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5278,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15493","name":"Holy Light","spellId":15493,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5278,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10458-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-11043":{"id":"entry-11043","kind":"mob","name":"Crimson Monk","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4645,"damageMultiplier":1.12},{"id":"spell-11978","name":"Kick","spellId":11978,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4645,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10463-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10809":{"id":"entry-10809","kind":"mob","name":"Stonespine","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14331","name":"Vicious Rend","spellId":14331,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7464,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-7856-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.9019,"labelHeight":5.6459,"markerRadius":3.3105}}},"entry-10811":{"id":"entry-10811","kind":"boss","name":"Archivist Galford","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17293","name":"Burning Winds","spellId":17293,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7441,"damageMultiplier":1.35},{"id":"spell-23462","name":"Fire Nova","spellId":23462,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":7441,"damageMultiplier":0.82,"radius":11},{"id":"spell-17274","name":"Pyroblast","spellId":17274,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7441,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10544-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10812":{"id":"entry-10812","kind":"mob","name":"Grand Crusader Dathrohan","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17286","name":"Crusader's Hammer","spellId":17286,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7322,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7322,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10545-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10558":{"id":"entry-10558","kind":"mob","name":"Hearthsinger Forresten","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16798","name":"Enchanting Lullaby","spellId":16798,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4481,"damageMultiplier":1.12},{"id":"spell-16244","name":"Demoralizing Shout","spellId":16244,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4481,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10482-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-11082":{"id":"entry-11082","kind":"mob","name":"Stratholme Courier","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10547-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10381":{"id":"entry-10381","kind":"mob","name":"Ravaged Cadaver","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10974-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.127,"markerRadius":0.65}}},"entry-10382":{"id":"entry-10382","kind":"mob","name":"Mangled Cadaver","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16143","name":"Cadaver Worms","spellId":16143,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6194,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6194,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10972-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9022,"markerRadius":0.65}}},"entry-10384":{"id":"entry-10384","kind":"mob","name":"Spectral Citizen","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16333","name":"Debilitating Touch","spellId":16333,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6986,"damageMultiplier":1.12},{"id":"spell-16336","name":"Haunting Phantoms","spellId":16336,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6986,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10483-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10385":{"id":"entry-10385","kind":"mob","name":"Ghostly Citizen","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22687","name":"Veil of Shadow","spellId":22687,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4753,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4753,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10478-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10390":{"id":"entry-10390","kind":"mob","name":"Skeletal Guardian","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9672","name":"Frostbolt","spellId":9672,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6589,"damageMultiplier":1.12},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6589,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-9789-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.0302,"markerRadius":0.65}}},"entry-10391":{"id":"entry-10391","kind":"mob","name":"Skeletal Berserker","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6146,"damageMultiplier":1.12},{"id":"spell-11971","name":"Sunder Armor","spellId":11971,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6146,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-9784-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-10398":{"id":"entry-10398","kind":"mob","name":"Thuzadin Shadowcaster","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10631-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10399":{"id":"entry-10399","kind":"mob","name":"Thuzadin Acolyte","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10535-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10400":{"id":"entry-10400","kind":"mob","name":"Thuzadin Necromancer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10539-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10405":{"id":"entry-10405","kind":"mob","name":"Plague Ghoul","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-559-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8357,"markerRadius":0.6634}}},"entry-10406":{"id":"entry-10406","kind":"mob","name":"Ghoul Ravener","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1},{"id":"spell-12538","name":"Ravenous Claw","spellId":12538,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4321,"damageMultiplier":1.12},{"id":"spell-15608","name":"Ravenous Claw","spellId":15608,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4321,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10626-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.1599,"markerRadius":0.75}}},"entry-10407":{"id":"entry-10407","kind":"mob","name":"Fleshflayer Ghoul","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18200","name":"Rend","spellId":18200,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6194,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6194,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-414-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.1599,"markerRadius":0.75}}},"entry-10408":{"id":"entry-10408","kind":"mob","name":"Rockwing Gargoyle","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"winged","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-7533-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.6938,"labelHeight":4.343,"markerRadius":2.5465}}},"entry-10409":{"id":"entry-10409","kind":"mob","name":"Rockwing Screecher","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-11071-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.7979,"labelHeight":4.9944,"markerRadius":2.9285}}},"entry-10412":{"id":"entry-10412","kind":"mob","name":"Crypt Crawler","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15471","name":"Enveloping Web","spellId":15471,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5832,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5832,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-6841-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":4.1603,"markerRadius":1.9618}}},"entry-10413":{"id":"entry-10413","kind":"mob","name":"Crypt Beast","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-4962","name":"Encasing Webs","spellId":4962,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6540,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6540,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-9758-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":4.1603,"markerRadius":1.9618}}},"entry-10414":{"id":"entry-10414","kind":"mob","name":"Patchwork Horror","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/2f64a293ef2b8514538c3e3c90e480b7f8d3c71dc2855c2183bad097933f4da2.glb","rotationY":-1.5707963267948966,"groundOffset":0.0061,"labelHeight":5.6966,"markerRadius":2.5109}}},"entry-10416":{"id":"entry-10416","kind":"mob","name":"Bile Spewer","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5050,"damageMultiplier":1.12},{"id":"spell-16866","name":"Venom Spit","spellId":16866,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5050,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-9760-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0073,"labelHeight":6.8752,"markerRadius":3.0304}}},"entry-10417":{"id":"entry-10417","kind":"mob","name":"Venom Belcher","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-12819-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0073,"labelHeight":6.8752,"markerRadius":3.0304}}},"entry-10418":{"id":"entry-10418","kind":"mob","name":"Crimson Guardsman","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15749","name":"Shield Charge","spellId":15749,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4797,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15749","durationMs":8000,"magnitude":0.15}},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4797,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10492-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10419":{"id":"entry-10419","kind":"mob","name":"Crimson Conjuror","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12675","name":"Frostbolt","spellId":12675,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6100,"damageMultiplier":1.12},{"id":"spell-12674","name":"Frost Nova","spellId":12674,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6100,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10488-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10420":{"id":"entry-10420","kind":"mob","name":"Crimson Initiate","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4239,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-17138","name":"Flash Heal","spellId":17138,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4239,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10496-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10421":{"id":"entry-10421","kind":"mob","name":"Crimson Defender","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4738,"damageMultiplier":1.12},{"id":"spell-15493","name":"Holy Light","spellId":15493,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4738,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10500-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10422":{"id":"entry-10422","kind":"mob","name":"Crimson Sorcerer","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15230","name":"Arcane Bolt","spellId":15230,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6475,"damageMultiplier":1.12},{"id":"spell-13323","name":"Polymorph","spellId":13323,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6475,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10504-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10423":{"id":"entry-10423","kind":"mob","name":"Crimson Priest","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15586","name":"Heal","spellId":15586,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5520,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15238","name":"Holy Smite","spellId":15238,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5520,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10508-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10424":{"id":"entry-10424","kind":"mob","name":"Crimson Gallant","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17143","name":"Holy Strike","spellId":17143,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4581,"damageMultiplier":1.12},{"id":"spell-14518","name":"Crusader Strike","spellId":14518,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4581,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10512-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10425":{"id":"entry-10425","kind":"mob","name":"Crimson Battle Mage","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12742","name":"Immolate","spellId":12742,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5327,"damageMultiplier":1.12},{"id":"spell-15253","name":"Arcane Explosion","spellId":15253,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5327,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"winged","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10529-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10426":{"id":"entry-10426","kind":"mob","name":"Crimson Inquisitor","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15785","name":"Mana Burn","spellId":15785,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5671,"damageMultiplier":1.12},{"id":"spell-17146","name":"Shadow Word: Pain","spellId":17146,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5671,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10516-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10435":{"id":"entry-10435","kind":"boss","name":"Magistrate Barthilas","title":"Dungeon Boss","hasLoot":true,"combat":{"level":58,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-10887","name":"Crowd Pummel","spellId":10887,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7146,"damageMultiplier":1.35},{"id":"spell-14099","name":"Mighty Blow","spellId":14099,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-16793","name":"Draining Blow","spellId":16793,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7146,"damageMultiplier":0.82,"radius":11},{"id":"spell-16791","name":"Furious Anger","spellId":16791,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7146,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/e814a203d28d25862645cdbba9124e4b453ad5e05bdaaaad0695e3937bb57f27.glb","rotationY":-1.5707963267948966,"groundOffset":0.0443,"labelHeight":3.6969,"markerRadius":1.1544}}},"entry-10436":{"id":"entry-10436","kind":"boss","name":"Baroness Anastari","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16867","name":"Banshee Curse","spellId":16867,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7304,"damageMultiplier":1.35},{"id":"spell-16565","name":"Banshee Wail","spellId":16565,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7304,"damageMultiplier":1.35},{"id":"spell-18327","name":"Silence","spellId":18327,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7304,"damageMultiplier":1.35},{"id":"spell-17244","name":"Possess","spellId":17244,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7304,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/665ecc22aef511be0a627a08dde9c3b544903a64eeb2323c96fbbc3dfd76cf14.glb","rotationY":-1.5707963267948966,"groundOffset":0.5402,"labelHeight":5.6694,"markerRadius":1.2275}}},"entry-10437":{"id":"entry-10437","kind":"boss","name":"Nerub'enkan","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6183,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/ed106356c4811ff2d38eb79b7cc1d330b013d79ce241aca42ac86898efb56ea0.glb","rotationY":-1.5707963267948966,"groundOffset":0.2252,"labelHeight":5.2004,"markerRadius":2.4522}}},"entry-10438":{"id":"entry-10438","kind":"boss","name":"Maleki the Pallid","title":"Dungeon Boss","hasLoot":true,"combat":{"level":61,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17238","name":"Drain Life","spellId":17238,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5708,"damageMultiplier":0.82,"radius":11},{"id":"spell-16869","name":"Ice Tomb","spellId":16869,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5708,"damageMultiplier":1.35},{"id":"spell-17503","name":"Frostbolt","spellId":17503,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5708,"damageMultiplier":1.35},{"id":"spell-17243","name":"Drain Mana","spellId":17243,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5708,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10546-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10440":{"id":"entry-10440","kind":"mob","name":"Baron Rivendare","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0088,"labelHeight":5.1505,"markerRadius":2.0388}}},"entry-10463":{"id":"entry-10463","kind":"mob","name":"Shrieking Banshee","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10728-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4141,"labelHeight":4.3465,"markerRadius":0.9411}}},"entry-10464":{"id":"entry-10464","kind":"mob","name":"Wailing Banshee","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-19645","name":"Anti-Magic Shield","spellId":19645,"delivery":"area","target":"self","school":"shadow","animation":"cast","range":0,"cooldownMs":5746,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-19645","durationMs":8000,"magnitude":0.15}},{"id":"spell-17105","name":"Banshee Curse","spellId":17105,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5746,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-8782-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4682,"labelHeight":4.9135,"markerRadius":1.0639}}},"entry-10997":{"id":"entry-10997","kind":"boss","name":"Cannon Master Willey","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5185,"damageMultiplier":1.35},{"id":"spell-16615","name":"Add Lightning Dam - Weap 03","spellId":16615,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5185,"damageMultiplier":1.35},{"id":"spell-11729","name":"Create Healthstone","spellId":11729,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5185,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10674-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10411":{"id":"entry-10411","kind":"mob","name":"Eye of Naxxramas","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c55728c00da7742391fcf25802b59d661f313cdc864a9cdc4036d3a240cbbf5b.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.2201,"markerRadius":0.65}}},"entry-10393":{"id":"entry-10393","kind":"mob","name":"Skul","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16799","name":"Frostbolt","spellId":16799,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4149,"damageMultiplier":1.12},{"id":"spell-31256","name":"Frost Armor","spellId":31256,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/84695efc6bafcc2d2fb5df07bd44d55d4c65562c3818de690087991d6294cf97.glb","rotationY":-1.5707963267948966,"groundOffset":0.0045,"labelHeight":3.834,"markerRadius":0.7434}}},"entry-10516":{"id":"entry-10516","kind":"boss","name":"The Unforgiven","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14907","name":"Frost Nova","spellId":14907,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4199,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10771-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-10808":{"id":"entry-10808","kind":"mob","name":"Timmy the Cruel","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1},{"id":"spell-3417","name":"Thrash","spellId":3417,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5029,"damageMultiplier":1.12},{"id":"spell-17470","name":"Ravenous Claw","spellId":17470,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5029,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-571-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0019,"labelHeight":3.6312,"markerRadius":0.8654}}},"entry-16031":{"id":"entry-16031","kind":"mob","name":"Ysida Harmon","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-15967-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-14684":{"id":"entry-14684","kind":"mob","name":"Balzaphon","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12096","name":"Fear","spellId":12096,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4066,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}},{"id":"spell-37265","name":"Cone of Cold","spellId":37265,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4066,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/39bfb5c35e192459b036ef2b5f276819df5e8591dda7c03082ce9968b53365b2.glb","rotationY":-1.5707963267948966,"groundOffset":0.4975,"labelHeight":6.7656,"markerRadius":1.4989}}},"entry-10813":{"id":"entry-10813","kind":"boss","name":"Balnazzar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17287","name":"Mind Blast","spellId":17287,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5522,"damageMultiplier":1.35},{"id":"spell-17399","name":"Shadow Shock","spellId":17399,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5522,"damageMultiplier":1.35},{"id":"spell-12098","name":"Sleep","spellId":12098,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":5522,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":4500}},{"id":"spell-13704","name":"Psychic Scream","spellId":13704,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5522,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10691-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.5559,"labelHeight":11.4183,"markerRadius":3.55}}}},"staticSpawns":[{"id":"creature-52122","entityId":"entry-11032","position":[-678.495,-29.9021,468.8864],"yaw":-2.18166,"spawnMask":1},{"id":"creature-52142","entityId":"entry-11043","position":[-530.485,-29.0211,501.9464],"yaw":-3.68265,"spawnMask":1},{"id":"creature-52143","entityId":"entry-11043","position":[-535.935,-29.0211,505.9764],"yaw":-0.610865,"spawnMask":1},{"id":"creature-52147","entityId":"entry-10809","position":[-1058.665,-36.8331,10.4864],"yaw":-4.44992,"spawnMask":1},{"id":"creature-52148","entityId":"entry-10811","position":[-513.385,-29.1051,492.2964],"yaw":-3.29655,"spawnMask":1},{"id":"creature-52149","entityId":"entry-10812","position":[-473.265,-28.8361,551.1664],"yaw":-5.42797,"spawnMask":1},{"id":"creature-52150","entityId":"entry-10558","position":[-653.175,-28.1491,85.7764],"yaw":-5.74213,"spawnMask":1},{"id":"creature-52151","entityId":"entry-11082","position":[-532.965,-33.5961,302.4364],"yaw":-2.00713,"spawnMask":1},{"id":"creature-52152","entityId":"entry-10381","position":[-718.865,-29.0511,97.2764],"yaw":-3.24898,"spawnMask":1},{"id":"creature-52153","entityId":"entry-10381","position":[-724.235,-28.7271,82.4164],"yaw":-3.08573,"spawnMask":1},{"id":"creature-52154","entityId":"entry-10381","position":[-715.325,-28.8121,105.1964],"yaw":-3.2922,"spawnMask":1},{"id":"creature-52155","entityId":"entry-10381","position":[-707.545,-27.1601,-47.3836],"yaw":-1.22656,"spawnMask":1},{"id":"creature-52156","entityId":"entry-10381","position":[-693.485,-27.4321,-41.1136],"yaw":-0.454397,"spawnMask":1},{"id":"creature-52157","entityId":"entry-10381","position":[-739.835,-28.0291,-5.8336],"yaw":-2.18111,"spawnMask":1},{"id":"creature-52158","entityId":"entry-10381","position":[-767.935,-24.1031,-24.4536],"yaw":-0.100955,"spawnMask":1},{"id":"creature-52159","entityId":"entry-10381","position":[-597.205,-35.9531,252.3964],"yaw":-1.47985,"spawnMask":1},{"id":"creature-52160","entityId":"entry-10381","position":[-514.115,-26.1591,215.4264],"yaw":-0.128416,"spawnMask":1},{"id":"creature-52161","entityId":"entry-10381","position":[-598.715,-30.1041,170.5464],"yaw":-2.4321,"spawnMask":1},{"id":"creature-52162","entityId":"entry-10381","position":[-654.885,-30.7041,123.1364],"yaw":-4.09147,"spawnMask":1},{"id":"creature-52163","entityId":"entry-10381","position":[-740.155,-38.1071,237.7564],"yaw":-0.76348,"spawnMask":1},{"id":"creature-52164","entityId":"entry-10381","position":[-562.695,-31.0681,216.8264],"yaw":-0.153494,"spawnMask":1},{"id":"creature-52165","entityId":"entry-10381","position":[-617.595,-35.2301,282.7264],"yaw":-2.319,"spawnMask":1},{"id":"creature-52166","entityId":"entry-10381","position":[-629.295,-35.4581,276.0864],"yaw":-2.29236,"spawnMask":1},{"id":"creature-52167","entityId":"entry-10381","position":[-532.165,-33.4761,295.5564],"yaw":-4.36771,"spawnMask":1},{"id":"creature-52168","entityId":"entry-10381","position":[-535.285,-34.7791,289.9764],"yaw":-5.1335,"spawnMask":1},{"id":"creature-52169","entityId":"entry-10381","position":[-538.475,-35.2511,287.5464],"yaw":-1.73816,"spawnMask":1},{"id":"creature-52170","entityId":"entry-10381","position":[-740.335,-37.7441,303.5764],"yaw":-1.72944,"spawnMask":1},{"id":"creature-52171","entityId":"entry-10381","position":[-744.345,-37.5861,300.5564],"yaw":-2.60413,"spawnMask":1},{"id":"creature-52172","entityId":"entry-10381","position":[-604.205,-32.6021,208.7464],"yaw":-4.91979,"spawnMask":1},{"id":"creature-52173","entityId":"entry-10381","position":[-794.085,-36.3691,339.1364],"yaw":-0.377382,"spawnMask":1},{"id":"creature-52174","entityId":"entry-10381","position":[-746.475,-34.0741,206.8264],"yaw":-6.22011,"spawnMask":1},{"id":"creature-52175","entityId":"entry-10381","position":[-745.565,-33.5791,201.8964],"yaw":-0.653204,"spawnMask":1},{"id":"creature-52176","entityId":"entry-10381","position":[-758.465,-33.6451,205.0264],"yaw":-5.24097,"spawnMask":1},{"id":"creature-52177","entityId":"entry-10381","position":[-669.735,-28.8561,100.6664],"yaw":-5.95079,"spawnMask":1},{"id":"creature-52179","entityId":"entry-10381","position":[-743.665,-30.9141,99.7264],"yaw":-3.12041,"spawnMask":1},{"id":"creature-52180","entityId":"entry-10381","position":[-696.055,-28.8841,74.0964],"yaw":-0.01085,"spawnMask":1},{"id":"creature-52181","entityId":"entry-10381","position":[-693.105,-28.6621,69.7664],"yaw":-2.67903,"spawnMask":1},{"id":"creature-52182","entityId":"entry-10381","position":[-686.825,-28.5441,69.4964],"yaw":-5.41519,"spawnMask":1},{"id":"creature-52183","entityId":"entry-10382","position":[-702.215,-27.7021,-32.2236],"yaw":-1.51418,"spawnMask":1},{"id":"creature-52184","entityId":"entry-10382","position":[-746.795,-27.2531,-12.2736],"yaw":-0.26182,"spawnMask":1},{"id":"creature-52185","entityId":"entry-10382","position":[-739.295,-28.0311,1.6264],"yaw":-5.50927,"spawnMask":1},{"id":"creature-52186","entityId":"entry-10382","position":[-572.465,-34.3001,279.1364],"yaw":-4.23023,"spawnMask":1},{"id":"creature-52187","entityId":"entry-10382","position":[-564.295,-34.6761,272.2264],"yaw":-4.2854,"spawnMask":1},{"id":"creature-52188","entityId":"entry-10382","position":[-566.665,-34.7091,282.0964],"yaw":-2.70836,"spawnMask":1},{"id":"creature-52189","entityId":"entry-10382","position":[-772.495,-23.9431,-1.8036],"yaw":-2.80487,"spawnMask":1},{"id":"creature-52190","entityId":"entry-10382","position":[-591.635,-34.9971,250.1164],"yaw":-0.980717,"spawnMask":1},{"id":"creature-52191","entityId":"entry-10382","position":[-542.575,-30.3501,214.2364],"yaw":-2.02046,"spawnMask":1},{"id":"creature-52192","entityId":"entry-10382","position":[-543.745,-30.5501,223.9664],"yaw":-1.54922,"spawnMask":1},{"id":"creature-52193","entityId":"entry-10382","position":[-542.915,-30.5841,219.4664],"yaw":-4.5298,"spawnMask":1},{"id":"creature-52194","entityId":"entry-10382","position":[-512.255,-24.9731,204.2664],"yaw":-5.42154,"spawnMask":1},{"id":"creature-52195","entityId":"entry-10382","position":[-607.635,-29.7761,173.7464],"yaw":-4.81375,"spawnMask":1},{"id":"creature-52196","entityId":"entry-10382","position":[-599.685,-30.6191,176.6664],"yaw":-4.51707,"spawnMask":1},{"id":"creature-52197","entityId":"entry-10382","position":[-653.565,-30.6061,114.1164],"yaw":-3.87758,"spawnMask":1},{"id":"creature-52198","entityId":"entry-10382","position":[-731.965,-38.5031,229.2964],"yaw":-1.66585,"spawnMask":1},{"id":"creature-52199","entityId":"entry-10382","position":[-725.375,-39.6741,236.0264],"yaw":-0.005031,"spawnMask":1},{"id":"creature-52200","entityId":"entry-10382","position":[-571.695,-32.4281,207.6264],"yaw":-2.43279,"spawnMask":1},{"id":"creature-52201","entityId":"entry-10382","position":[-560.805,-30.8141,207.4364],"yaw":-3.20638,"spawnMask":1},{"id":"creature-52202","entityId":"entry-10382","position":[-620.285,-35.9751,271.6064],"yaw":-0.43437,"spawnMask":1},{"id":"creature-52203","entityId":"entry-10382","position":[-636.095,-35.9971,247.7364],"yaw":-5.12787,"spawnMask":1},{"id":"creature-52204","entityId":"entry-10382","position":[-632.395,-36.6671,252.5264],"yaw":-4.10899,"spawnMask":1},{"id":"creature-52205","entityId":"entry-10382","position":[-626.835,-35.7261,249.5464],"yaw":-2.61909,"spawnMask":1},{"id":"creature-52206","entityId":"entry-10382","position":[-736.345,-37.8171,312.5964],"yaw":-2.06272,"spawnMask":1},{"id":"creature-52207","entityId":"entry-10382","position":[-602.695,-33.1031,213.8564],"yaw":-0.867061,"spawnMask":1},{"id":"creature-52208","entityId":"entry-10382","position":[-612.215,-33.0721,226.0264],"yaw":-1.02675,"spawnMask":1},{"id":"creature-52209","entityId":"entry-10382","position":[-792.405,-36.5171,328.4364],"yaw":-4.71749,"spawnMask":1},{"id":"creature-52210","entityId":"entry-10382","position":[-783.135,-37.7901,332.9764],"yaw":-3.85656,"spawnMask":1},{"id":"creature-52211","entityId":"entry-10382","position":[-689.315,-28.6361,102.9564],"yaw":-0.00543,"spawnMask":1},{"id":"creature-52212","entityId":"entry-10382","position":[-676.175,-28.4571,98.6964],"yaw":-5.60792,"spawnMask":1},{"id":"creature-52213","entityId":"entry-10382","position":[-749.355,-33.1131,105.0064],"yaw":-6.19207,"spawnMask":1},{"id":"creature-52214","entityId":"entry-10382","position":[-756.275,-33.5281,101.4264],"yaw":-6.14401,"spawnMask":1},{"id":"creature-52215","entityId":"entry-10382","position":[-725.055,-41.8921,267.3364],"yaw":-5.9826,"spawnMask":1},{"id":"creature-52216","entityId":"entry-10382","position":[-716.315,-41.7721,275.3164],"yaw":-1.7659,"spawnMask":1},{"id":"creature-52217","entityId":"entry-10382","position":[-722.235,-41.2841,276.6964],"yaw":-0.415108,"spawnMask":1},{"id":"creature-52218","entityId":"entry-10384","position":[-541.055,-30.4531,216.1364],"yaw":-3.12449,"spawnMask":1},{"id":"creature-52219","entityId":"entry-10384","position":[-727.805,-37.7571,334.2964],"yaw":-4.85202,"spawnMask":1},{"id":"creature-52220","entityId":"entry-10384","position":[-761.685,-33.5441,187.1664],"yaw":-5.41942,"spawnMask":1},{"id":"creature-52221","entityId":"entry-10384","position":[-585.765,-32.7361,240.9864],"yaw":-1.43117,"spawnMask":1},{"id":"creature-52222","entityId":"entry-10384","position":[-587.465,-33.2711,244.9264],"yaw":-3.9619,"spawnMask":1},{"id":"creature-52223","entityId":"entry-10384","position":[-537.705,-35.0671,293.1364],"yaw":-2.23402,"spawnMask":1},{"id":"creature-52224","entityId":"entry-10384","position":[-771.465,-35.9491,114.8764],"yaw":-0.876692,"spawnMask":1},{"id":"creature-52225","entityId":"entry-10384","position":[-727.495,-37.7641,331.5264],"yaw":-1.16937,"spawnMask":1},{"id":"creature-52227","entityId":"entry-10384","position":[-755.045,-34.4041,220.9364],"yaw":-4.36332,"spawnMask":1},{"id":"creature-52228","entityId":"entry-10384","position":[-754.085,-34.2741,218.7664],"yaw":-1.0821,"spawnMask":1},{"id":"creature-52229","entityId":"entry-10384","position":[-539.775,-34.2751,300.1164],"yaw":-5.33953,"spawnMask":1},{"id":"creature-52233","entityId":"entry-10384","position":[-740.735,-40.6901,267.7364],"yaw":-0.162112,"spawnMask":1},{"id":"creature-52234","entityId":"entry-10384","position":[-720.075,-41.7371,258.2664],"yaw":-5.27352,"spawnMask":1},{"id":"creature-52235","entityId":"entry-10385","position":[-727.495,-37.7641,331.5264],"yaw":-1.16937,"spawnMask":1},{"id":"creature-52248","entityId":"entry-10385","position":[-783.335,-35.4561,114.9364],"yaw":-2.45175,"spawnMask":1},{"id":"creature-52249","entityId":"entry-10385","position":[-591.465,-27.5681,164.9164],"yaw":-4.74729,"spawnMask":1},{"id":"creature-52258","entityId":"entry-10385","position":[-686.595,-27.1091,59.4064],"yaw":-3.36848,"spawnMask":1},{"id":"creature-52599","entityId":"entry-10385","position":[-683.775,-27.0941,59.1064],"yaw":0,"spawnMask":1},{"id":"creature-52600","entityId":"entry-10385","position":[-714.235,-39.5831,240.6864],"yaw":-0.972282,"spawnMask":1},{"id":"creature-52601","entityId":"entry-10385","position":[-755.045,-34.4041,220.9364],"yaw":-4.36332,"spawnMask":1},{"id":"creature-52602","entityId":"entry-10385","position":[-754.085,-34.2741,218.7664],"yaw":-1.0821,"spawnMask":1},{"id":"creature-52605","entityId":"entry-10385","position":[-790.145,-34.2071,109.4264],"yaw":-2.32129,"spawnMask":1},{"id":"creature-52612","entityId":"entry-10385","position":[-593.275,-29.0301,167.2964],"yaw":-0.920928,"spawnMask":1},{"id":"creature-52613","entityId":"entry-10385","position":[-528.725,-28.2961,231.8764],"yaw":-5.09636,"spawnMask":1},{"id":"creature-52614","entityId":"entry-10385","position":[-698.725,-28.2301,108.4064],"yaw":-3.92997,"spawnMask":1},{"id":"creature-52615","entityId":"entry-10390","position":[-717.905,-28.9511,90.6964],"yaw":-3.58451,"spawnMask":1},{"id":"creature-52616","entityId":"entry-10390","position":[-714.805,-29.0671,91.9264],"yaw":-5.42045,"spawnMask":1},{"id":"creature-52617","entityId":"entry-10390","position":[-702.725,-27.0941,-42.7036],"yaw":-3.69155,"spawnMask":1},{"id":"creature-52618","entityId":"entry-10390","position":[-698.565,-27.0451,-51.6336],"yaw":-2.07028,"spawnMask":1},{"id":"creature-52619","entityId":"entry-10390","position":[-747.105,-27.5421,0.7564],"yaw":-1.03683,"spawnMask":1},{"id":"creature-52620","entityId":"entry-10390","position":[-748.095,-27.3481,-4.7536],"yaw":-5.06276,"spawnMask":1},{"id":"creature-52621","entityId":"entry-10390","position":[-563.955,-34.9701,280.4564],"yaw":-4.71131,"spawnMask":1},{"id":"creature-52622","entityId":"entry-10390","position":[-568.695,-34.3921,277.5664],"yaw":-0.848166,"spawnMask":1},{"id":"creature-52623","entityId":"entry-10390","position":[-762.555,-25.0641,-17.1236],"yaw":-4.44236,"spawnMask":1},{"id":"creature-52643","entityId":"entry-10390","position":[-761.095,-24.8851,-22.8636],"yaw":-2.96533,"spawnMask":1},{"id":"creature-52644","entityId":"entry-10390","position":[-773.835,-24.0361,-8.4236],"yaw":-1.2528,"spawnMask":1},{"id":"creature-52645","entityId":"entry-10390","position":[-602.015,-36.2181,254.7964],"yaw":-1.01358,"spawnMask":1},{"id":"creature-52646","entityId":"entry-10390","position":[-593.315,-34.4041,244.3264],"yaw":-0.93052,"spawnMask":1},{"id":"creature-52647","entityId":"entry-10390","position":[-598.095,-35.1991,244.6164],"yaw":-5.39423,"spawnMask":1},{"id":"creature-52648","entityId":"entry-10390","position":[-536.055,-30.3731,223.8964],"yaw":-0.453583,"spawnMask":1},{"id":"creature-52649","entityId":"entry-10390","position":[-542.915,-30.5841,219.4664],"yaw":-3.41846,"spawnMask":1},{"id":"creature-52650","entityId":"entry-10390","position":[-513.355,-25.6961,208.8264],"yaw":-5.62357,"spawnMask":1},{"id":"creature-52651","entityId":"entry-10390","position":[-509.695,-24.0461,201.9864],"yaw":-5.49792,"spawnMask":1},{"id":"creature-52652","entityId":"entry-10390","position":[-518.125,-26.3441,207.5064],"yaw":-4.49728,"spawnMask":1},{"id":"creature-52653","entityId":"entry-10390","position":[-593.255,-30.9891,179.4764],"yaw":-6.25018,"spawnMask":1},{"id":"creature-52683","entityId":"entry-10390","position":[-605.395,-29.9211,168.2664],"yaw":-4.89957,"spawnMask":1},{"id":"creature-52837","entityId":"entry-10390","position":[-647.665,-30.7161,120.5964],"yaw":-2.18971,"spawnMask":1},{"id":"creature-52838","entityId":"entry-10390","position":[-641.865,-30.3071,129.5164],"yaw":-1.67972,"spawnMask":1},{"id":"creature-52852","entityId":"entry-10390","position":[-649.215,-30.5401,110.7364],"yaw":-3.90172,"spawnMask":1},{"id":"creature-52853","entityId":"entry-10390","position":[-738.125,-37.6291,232.1464],"yaw":-0.674902,"spawnMask":1},{"id":"creature-52934","entityId":"entry-10390","position":[-728.015,-40.2431,243.3064],"yaw":-5.92991,"spawnMask":1},{"id":"creature-52992","entityId":"entry-10390","position":[-569.735,-31.0631,219.2564],"yaw":-3.2928,"spawnMask":1},{"id":"creature-52993","entityId":"entry-10390","position":[-570.665,-30.7671,220.3664],"yaw":-2.56238,"spawnMask":1},{"id":"creature-52994","entityId":"entry-10390","position":[-612.335,-35.2221,284.6564],"yaw":-0.905975,"spawnMask":1},{"id":"creature-52995","entityId":"entry-10390","position":[-609.175,-35.8731,277.0064],"yaw":-0.119286,"spawnMask":1},{"id":"creature-52996","entityId":"entry-10390","position":[-547.705,-35.1521,300.4264],"yaw":-5.25262,"spawnMask":1},{"id":"creature-52997","entityId":"entry-10390","position":[-541.285,-34.7941,296.1464],"yaw":-3.44909,"spawnMask":1},{"id":"creature-52998","entityId":"entry-10390","position":[-482.945,-24.1081,219.9864],"yaw":-2.21531,"spawnMask":1},{"id":"creature-52999","entityId":"entry-10390","position":[-494.085,-24.5791,218.9364],"yaw":-5.23948,"spawnMask":1},{"id":"creature-53000","entityId":"entry-10390","position":[-487.885,-24.3781,215.9764],"yaw":-1.38518,"spawnMask":1},{"id":"creature-53001","entityId":"entry-10390","position":[-621.335,-35.0881,243.9464],"yaw":-2.94869,"spawnMask":1},{"id":"creature-53002","entityId":"entry-10390","position":[-622.085,-35.8161,248.5864],"yaw":-1.12573,"spawnMask":1},{"id":"creature-53003","entityId":"entry-10390","position":[-744.725,-38.1421,291.9464],"yaw":-2.81471,"spawnMask":1},{"id":"creature-53004","entityId":"entry-10390","position":[-739.045,-38.1931,297.3564],"yaw":-1.36652,"spawnMask":1},{"id":"creature-53005","entityId":"entry-10390","position":[-608.225,-32.0531,209.6764],"yaw":-2.73201,"spawnMask":1},{"id":"creature-53006","entityId":"entry-10390","position":[-609.395,-33.3361,224.2564],"yaw":-1.29948,"spawnMask":1},{"id":"creature-53007","entityId":"entry-10390","position":[-794.405,-36.5361,332.3664],"yaw":-6.1695,"spawnMask":1},{"id":"creature-53008","entityId":"entry-10390","position":[-788.035,-37.4611,338.8264],"yaw":-5.52214,"spawnMask":1},{"id":"creature-53009","entityId":"entry-10390","position":[-755.685,-33.6201,198.9264],"yaw":-1.53061,"spawnMask":1},{"id":"creature-53010","entityId":"entry-10390","position":[-750.215,-34.1351,207.8064],"yaw":-0.550583,"spawnMask":1},{"id":"creature-53011","entityId":"entry-10390","position":[-680.095,-28.2101,107.8464],"yaw":-0.861748,"spawnMask":1},{"id":"creature-53090","entityId":"entry-10390","position":[-684.965,-28.6161,102.7564],"yaw":-5.1846,"spawnMask":1},{"id":"creature-53091","entityId":"entry-10390","position":[-751.855,-33.9691,113.1664],"yaw":-4.7017,"spawnMask":1},{"id":"creature-53092","entityId":"entry-10390","position":[-755.825,-34.5941,106.2764],"yaw":-3.00634,"spawnMask":1},{"id":"creature-53093","entityId":"entry-10390","position":[-724.325,-42.0371,272.9464],"yaw":-3.05136,"spawnMask":1},{"id":"creature-53094","entityId":"entry-10390","position":[-719.055,-42.0921,266.0964],"yaw":-1.62985,"spawnMask":1},{"id":"creature-53095","entityId":"entry-10390","position":[-677.695,-28.1571,75.6164],"yaw":-4.69301,"spawnMask":1},{"id":"creature-53096","entityId":"entry-10390","position":[-678.925,-28.5421,81.2664],"yaw":-1.23412,"spawnMask":1},{"id":"creature-53097","entityId":"entry-10390","position":[-692.865,-36.8881,420.8764],"yaw":-1.97532,"spawnMask":1},{"id":"creature-53098","entityId":"entry-10390","position":[-744.435,-38.4631,439.8264],"yaw":-2.71755,"spawnMask":1},{"id":"creature-53101","entityId":"entry-10391","position":[-708.695,-28.9701,101.3764],"yaw":-2.60556,"spawnMask":1},{"id":"creature-53102","entityId":"entry-10391","position":[-710.685,-29.1431,96.0464],"yaw":-4.35522,"spawnMask":1},{"id":"creature-53103","entityId":"entry-10391","position":[-695.985,-27.6041,-33.1336],"yaw":-5.72918,"spawnMask":1},{"id":"creature-53104","entityId":"entry-10391","position":[-699.815,-27.1171,-41.5436],"yaw":-2.55826,"spawnMask":1},{"id":"creature-53105","entityId":"entry-10391","position":[-751.925,-26.9271,-7.5236],"yaw":-6.22235,"spawnMask":1},{"id":"creature-53106","entityId":"entry-10391","position":[-745.685,-27.4521,9.4964],"yaw":-5.43384,"spawnMask":1},{"id":"creature-53120","entityId":"entry-10391","position":[-561.645,-34.4891,267.2564],"yaw":-0.131781,"spawnMask":1},{"id":"creature-53121","entityId":"entry-10391","position":[-571.175,-33.9041,269.7864],"yaw":-4.54294,"spawnMask":1},{"id":"creature-53122","entityId":"entry-10391","position":[-767.325,-24.6151,-9.9336],"yaw":-2.50183,"spawnMask":1},{"id":"creature-53123","entityId":"entry-10391","position":[-770.035,-23.9881,-18.1836],"yaw":-4.0373,"spawnMask":1},{"id":"creature-53124","entityId":"entry-10391","position":[-595.105,-34.3091,239.8364],"yaw":-2.96323,"spawnMask":1},{"id":"creature-53125","entityId":"entry-10391","position":[-600.825,-35.7371,245.7564],"yaw":-3.72522,"spawnMask":1},{"id":"creature-53126","entityId":"entry-10391","position":[-531.385,-30.0431,220.5164],"yaw":-1.93423,"spawnMask":1},{"id":"creature-53127","entityId":"entry-10391","position":[-545.205,-30.1961,227.9664],"yaw":-2.53882,"spawnMask":1},{"id":"creature-53128","entityId":"entry-10391","position":[-513.875,-25.8551,209.0564],"yaw":-3.53628,"spawnMask":1},{"id":"creature-53129","entityId":"entry-10391","position":[-506.995,-24.6901,206.9364],"yaw":-2.57412,"spawnMask":1},{"id":"creature-53130","entityId":"entry-10391","position":[-599.255,-31.1831,181.8364],"yaw":-0.854294,"spawnMask":1},{"id":"creature-53131","entityId":"entry-10391","position":[-594.165,-29.9721,171.7964],"yaw":-2.8578,"spawnMask":1},{"id":"creature-53132","entityId":"entry-10391","position":[-644.215,-30.5381,120.2964],"yaw":-3.26768,"spawnMask":1},{"id":"creature-53133","entityId":"entry-10391","position":[-651.675,-30.6701,124.7264],"yaw":-2.03961,"spawnMask":1},{"id":"creature-53140","entityId":"entry-10391","position":[-733.145,-39.5861,239.9964],"yaw":-2.73409,"spawnMask":1},{"id":"creature-53141","entityId":"entry-10391","position":[-737.335,-39.8601,247.2064],"yaw":-0.569313,"spawnMask":1},{"id":"creature-53142","entityId":"entry-10391","position":[-571.695,-31.9361,202.0764],"yaw":-1.98904,"spawnMask":1},{"id":"creature-53143","entityId":"entry-10391","position":[-554.905,-30.3971,216.5964],"yaw":-5.44695,"spawnMask":1},{"id":"creature-53144","entityId":"entry-10391","position":[-618.385,-35.4171,278.3864],"yaw":-5.46213,"spawnMask":1},{"id":"creature-53145","entityId":"entry-10391","position":[-622.465,-35.5571,275.4264],"yaw":-2.92852,"spawnMask":1},{"id":"creature-53146","entityId":"entry-10391","position":[-535.405,-34.1511,298.5264],"yaw":-2.01543,"spawnMask":1},{"id":"creature-53147","entityId":"entry-10391","position":[-544.865,-34.7661,302.2964],"yaw":-6.23791,"spawnMask":1},{"id":"creature-53148","entityId":"entry-10391","position":[-493.175,-24.5431,212.2964],"yaw":-2.83097,"spawnMask":1},{"id":"creature-53149","entityId":"entry-10391","position":[-484.345,-24.1971,213.0564],"yaw":-3.36123,"spawnMask":1},{"id":"creature-53150","entityId":"entry-10391","position":[-637.425,-37.2041,254.9064],"yaw":-2.13152,"spawnMask":1},{"id":"creature-53151","entityId":"entry-10391","position":[-642.715,-37.5991,251.8864],"yaw":-0.488365,"spawnMask":1},{"id":"creature-53152","entityId":"entry-10391","position":[-737.135,-37.7071,304.5464],"yaw":-5.03931,"spawnMask":1},{"id":"creature-53153","entityId":"entry-10391","position":[-733.735,-37.8931,300.6764],"yaw":-1.0917,"spawnMask":1},{"id":"creature-53161","entityId":"entry-10391","position":[-608.345,-32.8861,217.1264],"yaw":-1.63767,"spawnMask":1},{"id":"creature-53162","entityId":"entry-10391","position":[-603.445,-33.1641,219.3764],"yaw":-2.03614,"spawnMask":1},{"id":"creature-53163","entityId":"entry-10391","position":[-788.615,-37.3551,332.6964],"yaw":-0.845726,"spawnMask":1},{"id":"creature-53164","entityId":"entry-10391","position":[-785.225,-37.2061,328.8264],"yaw":-2.52093,"spawnMask":1},{"id":"creature-53165","entityId":"entry-10391","position":[-750.935,-33.7971,204.5864],"yaw":-3.44242,"spawnMask":1},{"id":"creature-53179","entityId":"entry-10391","position":[-750.095,-33.4571,197.9364],"yaw":-1.6202,"spawnMask":1},{"id":"creature-53180","entityId":"entry-10391","position":[-673.395,-28.8451,103.9364],"yaw":-3.51649,"spawnMask":1},{"id":"creature-53184","entityId":"entry-10391","position":[-685.315,-28.8151,97.0364],"yaw":-6.03546,"spawnMask":1},{"id":"creature-53185","entityId":"entry-10391","position":[-743.995,-31.8861,112.2664],"yaw":-3.55056,"spawnMask":1},{"id":"creature-53186","entityId":"entry-10391","position":[-737.185,-30.9891,109.9264],"yaw":-3.2347,"spawnMask":1},{"id":"creature-53187","entityId":"entry-10391","position":[-722.005,-42.1181,270.3364],"yaw":-1.2766,"spawnMask":1},{"id":"creature-53188","entityId":"entry-10391","position":[-713.895,-42.0431,267.4864],"yaw":-2.15457,"spawnMask":1},{"id":"creature-53189","entityId":"entry-10391","position":[-691.335,-29.1841,83.9564],"yaw":-1.35692,"spawnMask":1},{"id":"creature-53190","entityId":"entry-10391","position":[-688.225,-29.1521,81.7064],"yaw":-0.301834,"spawnMask":1},{"id":"creature-53191","entityId":"entry-10391","position":[-744.225,-38.2781,443.4664],"yaw":-1.88714,"spawnMask":1},{"id":"creature-53192","entityId":"entry-10391","position":[-698.365,-37.6051,418.6564],"yaw":-6.02752,"spawnMask":1},{"id":"creature-53238","entityId":"entry-10391","position":[-762.595,-37.9201,427.6864],"yaw":-5.48033,"spawnMask":1},{"id":"creature-53240","entityId":"entry-10391","position":[-755.895,-37.7581,398.3864],"yaw":-2.16421,"spawnMask":1},{"id":"creature-53241","entityId":"entry-10391","position":[-703.005,-36.5271,386.6764],"yaw":-1.27409,"spawnMask":1},{"id":"creature-53242","entityId":"entry-10391","position":[-670.455,-33.5441,418.9464],"yaw":-4.72984,"spawnMask":1},{"id":"creature-53243","entityId":"entry-10398","position":[-887.035,-22.2631,-102.5736],"yaw":-0.383972,"spawnMask":1},{"id":"creature-53244","entityId":"entry-10398","position":[-941.735,-26.9281,59.3664],"yaw":-4.13643,"spawnMask":1},{"id":"creature-53245","entityId":"entry-10398","position":[-938.935,-26.4591,65.9664],"yaw":-3.33358,"spawnMask":1},{"id":"creature-53246","entityId":"entry-10398","position":[-1058.195,-33.7371,-46.8236],"yaw":-0.523599,"spawnMask":1},{"id":"creature-53247","entityId":"entry-10398","position":[-1009.695,-34.7981,31.0264],"yaw":-5.74213,"spawnMask":1},{"id":"creature-53248","entityId":"entry-10398","position":[-1078.835,-34.6121,-22.8136],"yaw":-5.84685,"spawnMask":1},{"id":"creature-53249","entityId":"entry-10398","position":[-1057.345,-33.7411,-43.9336],"yaw":-5.98648,"spawnMask":1},{"id":"creature-53250","entityId":"entry-10398","position":[-946.365,-21.9681,-112.9036],"yaw":-4.41568,"spawnMask":1},{"id":"creature-53251","entityId":"entry-10398","position":[-910.605,-25.8781,41.8164],"yaw":-5.13127,"spawnMask":1},{"id":"creature-53252","entityId":"entry-10398","position":[-1082.865,-34.5291,-25.2536],"yaw":-2.56563,"spawnMask":1},{"id":"creature-53253","entityId":"entry-10398","position":[-912.945,-25.1131,35.3464],"yaw":-1.8675,"spawnMask":1},{"id":"creature-53254","entityId":"entry-10398","position":[-1086.985,-31.9121,-43.5636],"yaw":-5.23599,"spawnMask":1},{"id":"creature-53255","entityId":"entry-10398","position":[-1012.855,-35.7241,27.6164],"yaw":-2.11185,"spawnMask":1},{"id":"creature-53256","entityId":"entry-10398","position":[-911.725,-20.7891,-14.2836],"yaw":-4.34587,"spawnMask":1},{"id":"creature-53257","entityId":"entry-10399","position":[-1114.975,-29.9131,-70.8536],"yaw":-2.51327,"spawnMask":1},{"id":"creature-53258","entityId":"entry-10399","position":[-1109.785,-32.9121,-77.1136],"yaw":-0.977384,"spawnMask":1},{"id":"creature-53259","entityId":"entry-10399","position":[-1114.485,-32.9121,-79.1936],"yaw":-1.5708,"spawnMask":1},{"id":"creature-53260","entityId":"entry-10399","position":[-1123.145,-32.9121,-69.4636],"yaw":-3.24631,"spawnMask":1},{"id":"creature-53261","entityId":"entry-10399","position":[-1120.595,-32.9121,-65.1036],"yaw":-3.83972,"spawnMask":1},{"id":"creature-53262","entityId":"entry-10399","position":[-897.145,-21.3571,95.5664],"yaw":-5.23599,"spawnMask":1},{"id":"creature-53263","entityId":"entry-10399","position":[-904.355,-24.3571,99.4064],"yaw":-3.64774,"spawnMask":1},{"id":"creature-53264","entityId":"entry-10399","position":[-900.845,-24.3571,102.8964],"yaw":-4.2586,"spawnMask":1},{"id":"creature-53265","entityId":"entry-10399","position":[-889.185,-24.3571,97.0164],"yaw":-6.0912,"spawnMask":1},{"id":"creature-53266","entityId":"entry-10399","position":[-889.925,-24.3561,92.2664],"yaw":-0.401426,"spawnMask":1},{"id":"creature-53267","entityId":"entry-10399","position":[-987.215,-9.0951,-78.6336],"yaw":-5.18363,"spawnMask":1},{"id":"creature-53268","entityId":"entry-10399","position":[-905.605,-17.4761,-152.0336],"yaw":-1.39626,"spawnMask":1},{"id":"creature-53269","entityId":"entry-10399","position":[-897.195,-20.4751,-151.0836],"yaw":-6.23082,"spawnMask":1},{"id":"creature-53270","entityId":"entry-10399","position":[-897.775,-20.4751,-155.8936],"yaw":-0.506145,"spawnMask":1},{"id":"creature-53271","entityId":"entry-10399","position":[-910.295,-20.4751,-158.6636],"yaw":-2.14675,"spawnMask":1},{"id":"creature-53272","entityId":"entry-10399","position":[-913.025,-20.4751,-154.2336],"yaw":-2.79253,"spawnMask":1},{"id":"creature-53273","entityId":"entry-10400","position":[-951.815,-24.5531,-69.4636],"yaw":-0.087266,"spawnMask":1},{"id":"creature-53274","entityId":"entry-10400","position":[-1014.405,-36.3751,30.9164],"yaw":-3.45575,"spawnMask":1},{"id":"creature-53275","entityId":"entry-10400","position":[-931.735,-27.2191,65.0964],"yaw":-0.05236,"spawnMask":1},{"id":"creature-53276","entityId":"entry-10400","position":[-891.165,-22.3841,-98.4136],"yaw":-4.27606,"spawnMask":1},{"id":"creature-53277","entityId":"entry-10400","position":[-1083.655,-31.8131,-47.6836],"yaw":-5.91667,"spawnMask":1},{"id":"creature-53278","entityId":"entry-10400","position":[-1061.525,-33.9481,-44.1236],"yaw":-3.61283,"spawnMask":1},{"id":"creature-53279","entityId":"entry-10400","position":[-960.315,-25.7671,-68.4636],"yaw":-3.28122,"spawnMask":1},{"id":"creature-53280","entityId":"entry-10400","position":[-1077.385,-34.0441,-18.5636],"yaw":-5.48033,"spawnMask":1},{"id":"creature-53281","entityId":"entry-10400","position":[-892.685,-22.7741,-102.3336],"yaw":-2.84489,"spawnMask":1},{"id":"creature-53282","entityId":"entry-10400","position":[-910.245,-20.1831,-18.9036],"yaw":-1.32645,"spawnMask":1},{"id":"creature-53283","entityId":"entry-10400","position":[-1045.855,-40.9881,55.1364],"yaw":-6.00393,"spawnMask":1},{"id":"creature-53284","entityId":"entry-10400","position":[-1085.205,-32.0211,-45.3936],"yaw":-5.5676,"spawnMask":1},{"id":"creature-53285","entityId":"entry-10400","position":[-1049.735,-41.1411,54.0564],"yaw":-2.87979,"spawnMask":1},{"id":"creature-53286","entityId":"entry-10400","position":[-943.475,-22.0361,-112.4736],"yaw":-5.32325,"spawnMask":1},{"id":"creature-53287","entityId":"entry-10400","position":[-1081.015,-34.0181,-21.0836],"yaw":-2.49582,"spawnMask":1},{"id":"creature-53288","entityId":"entry-10400","position":[-945.785,-22.2961,-117.0136],"yaw":-1.69297,"spawnMask":1},{"id":"creature-53289","entityId":"entry-10400","position":[-937.515,-27.3661,54.8764],"yaw":-0.698132,"spawnMask":1},{"id":"creature-53291","entityId":"entry-10405","position":[-699.085,-26.8981,123.0764],"yaw":-5.75959,"spawnMask":1},{"id":"creature-53292","entityId":"entry-10405","position":[-786.255,-35.3931,141.9164],"yaw":-4.95674,"spawnMask":1},{"id":"creature-53293","entityId":"entry-10405","position":[-661.165,-29.8901,109.0064],"yaw":-4.17336,"spawnMask":1},{"id":"creature-53294","entityId":"entry-10405","position":[-1111.995,-43.5801,80.8764],"yaw":-5.84685,"spawnMask":1},{"id":"creature-53295","entityId":"entry-10405","position":[-1077.395,-39.0201,34.3664],"yaw":-0.698132,"spawnMask":1},{"id":"creature-53296","entityId":"entry-10405","position":[-912.965,-21.1381,-68.9036],"yaw":-2.33874,"spawnMask":1},{"id":"creature-53298","entityId":"entry-10405","position":[-728.815,-37.7781,329.2964],"yaw":-0.942478,"spawnMask":1},{"id":"creature-53300","entityId":"entry-10405","position":[-787.305,-35.2781,138.0364],"yaw":-1.85005,"spawnMask":1},{"id":"creature-53587","entityId":"entry-10405","position":[-745.645,-32.4511,182.6364],"yaw":-0.733038,"spawnMask":1},{"id":"creature-53588","entityId":"entry-10405","position":[-657.255,-27.8681,83.6364],"yaw":-6.23082,"spawnMask":1},{"id":"creature-53589","entityId":"entry-10405","position":[-663.235,-27.5781,80.7064],"yaw":-2.68781,"spawnMask":1},{"id":"creature-53590","entityId":"entry-10405","position":[-749.275,-32.5801,184.5764],"yaw":-3.4383,"spawnMask":1},{"id":"creature-53591","entityId":"entry-10405","position":[-1069.725,-43.5881,70.7164],"yaw":-0.767945,"spawnMask":1},{"id":"creature-53592","entityId":"entry-10405","position":[-1063.785,-35.4471,-0.4636],"yaw":-0.610865,"spawnMask":1},{"id":"creature-53593","entityId":"entry-10405","position":[-1030.015,-31.1281,-53.2936],"yaw":-5.8294,"spawnMask":1},{"id":"creature-53595","entityId":"entry-10405","position":[-730.155,-37.7671,332.8564],"yaw":-4.60767,"spawnMask":1},{"id":"creature-53596","entityId":"entry-10405","position":[-955.705,-25.6421,-71.2336],"yaw":-1.55334,"spawnMask":1},{"id":"creature-53597","entityId":"entry-10405","position":[-1028.815,-37.2861,12.1164],"yaw":-4.92183,"spawnMask":1},{"id":"creature-53598","entityId":"entry-10405","position":[-1080.335,-43.5431,78.3764],"yaw":-3.54302,"spawnMask":1},{"id":"creature-53599","entityId":"entry-10405","position":[-703.765,-27.3661,122.9064],"yaw":-3.68265,"spawnMask":1},{"id":"creature-53600","entityId":"entry-10405","position":[-740.455,-37.7831,303.0764],"yaw":-0.932354,"spawnMask":1},{"id":"creature-53654","entityId":"entry-10405","position":[-878.735,-20.7561,-89.3636],"yaw":-1.0472,"spawnMask":1},{"id":"creature-53669","entityId":"entry-10405","position":[-1030.375,-36.8741,4.1164],"yaw":-1.74533,"spawnMask":1},{"id":"creature-53672","entityId":"entry-10405","position":[-1074.025,-43.5201,79.4564],"yaw":-5.14872,"spawnMask":1},{"id":"creature-53673","entityId":"entry-10405","position":[-1030.495,-35.5411,-27.4036],"yaw":-0.418879,"spawnMask":1},{"id":"creature-53677","entityId":"entry-10405","position":[-701.825,-27.2151,118.5264],"yaw":-1.62316,"spawnMask":1},{"id":"creature-53678","entityId":"entry-10406","position":[-1032.575,-31.8181,-52.5936],"yaw":-5.19185,"spawnMask":1},{"id":"creature-53691","entityId":"entry-10406","position":[-1083.655,-39.4931,38.5264],"yaw":-3.45575,"spawnMask":1},{"id":"creature-53692","entityId":"entry-10406","position":[-909.835,-21.1001,-64.7536],"yaw":-5.21853,"spawnMask":1},{"id":"creature-53693","entityId":"entry-10406","position":[-1115.695,-43.2611,77.9464],"yaw":-2.30383,"spawnMask":1},{"id":"creature-53694","entityId":"entry-10406","position":[-880.885,-20.6221,-86.6836],"yaw":-3.92699,"spawnMask":1},{"id":"creature-53695","entityId":"entry-10406","position":[-892.445,-20.5921,3.9764],"yaw":-2.79253,"spawnMask":1},{"id":"creature-53697","entityId":"entry-10406","position":[-955.885,-23.3881,-88.1736],"yaw":-2.93215,"spawnMask":1},{"id":"creature-53698","entityId":"entry-10406","position":[-862.055,-18.2741,-57.8136],"yaw":-0.855211,"spawnMask":1},{"id":"creature-53702","entityId":"entry-10406","position":[-1078.275,-40.0531,39.1564],"yaw":-5.95157,"spawnMask":1},{"id":"creature-53706","entityId":"entry-10406","position":[-868.435,-18.4111,-55.8936],"yaw":-3.28122,"spawnMask":1},{"id":"creature-53707","entityId":"entry-10406","position":[-1065.345,-35.5211,5.9764],"yaw":-4.93928,"spawnMask":1},{"id":"creature-53708","entityId":"entry-10406","position":[-1009.105,-28.7361,-52.7836],"yaw":-1.95477,"spawnMask":1},{"id":"creature-53709","entityId":"entry-10406","position":[-897.455,-19.4021,-40.9736],"yaw":-1.01229,"spawnMask":1},{"id":"creature-53715","entityId":"entry-10406","position":[-1068.845,-34.7451,-0.6736],"yaw":-2.46091,"spawnMask":1},{"id":"creature-53716","entityId":"entry-10406","position":[-901.515,-19.0221,-36.8736],"yaw":-3.68265,"spawnMask":1},{"id":"creature-53726","entityId":"entry-10406","position":[-1029.035,-39.2821,52.1564],"yaw":-4.79965,"spawnMask":1},{"id":"creature-53727","entityId":"entry-10407","position":[-1036.495,-35.8931,-25.0436],"yaw":-3.47321,"spawnMask":1},{"id":"creature-53728","entityId":"entry-10407","position":[-1030.935,-39.7591,45.6864],"yaw":-2.26893,"spawnMask":1},{"id":"creature-53729","entityId":"entry-10407","position":[-864.835,-18.6511,-51.1236],"yaw":-4.39823,"spawnMask":1},{"id":"creature-53761","entityId":"entry-10407","position":[-887.845,-20.1391,2.9564],"yaw":-0.750492,"spawnMask":1},{"id":"creature-53777","entityId":"entry-10407","position":[-1000.365,-28.7301,-42.4436],"yaw":-0.331613,"spawnMask":1},{"id":"creature-53778","entityId":"entry-10407","position":[-1076.525,-43.5481,72.7164],"yaw":-1.85005,"spawnMask":1},{"id":"creature-53779","entityId":"entry-10407","position":[-1007.395,-31.0591,-40.2936],"yaw":-3.38594,"spawnMask":1},{"id":"creature-53780","entityId":"entry-10407","position":[-948.825,-22.2631,-93.2936],"yaw":-1.43117,"spawnMask":1},{"id":"creature-53781","entityId":"entry-10407","position":[-1023.955,-38.4251,49.5164],"yaw":-5.93412,"spawnMask":1},{"id":"creature-53782","entityId":"entry-10407","position":[-889.445,-20.4331,7.4364],"yaw":-4.90438,"spawnMask":1},{"id":"creature-53784","entityId":"entry-10408","position":[-915.675,-22.8751,-87.5236],"yaw":-3.83062,"spawnMask":1},{"id":"creature-53785","entityId":"entry-10408","position":[-890.655,-23.4691,-115.5036],"yaw":-4.14354,"spawnMask":1},{"id":"creature-53786","entityId":"entry-10408","position":[-1063.635,-42.2211,51.2164],"yaw":-0.052646,"spawnMask":1},{"id":"creature-53787","entityId":"entry-10408","position":[-918.465,-26.1701,33.9864],"yaw":-1.89164,"spawnMask":1},{"id":"creature-53792","entityId":"entry-10408","position":[-875.265,-19.3811,-43.3136],"yaw":-0.771651,"spawnMask":1},{"id":"creature-53852","entityId":"entry-10408","position":[-1029.865,-39.5441,32.8364],"yaw":-3.67678,"spawnMask":1},{"id":"creature-53853","entityId":"entry-10408","position":[-879.245,-19.3821,-39.3436],"yaw":-1.95872,"spawnMask":1},{"id":"creature-53854","entityId":"entry-10409","position":[-1058.565,-38.1171,20.8764],"yaw":-4.2764,"spawnMask":1},{"id":"creature-53894","entityId":"entry-10412","position":[-911.415,-23.1271,5.3664],"yaw":-0.88975,"spawnMask":1},{"id":"creature-53900","entityId":"entry-10412","position":[-944.585,-23.9861,-81.7936],"yaw":-0.902485,"spawnMask":1},{"id":"creature-53901","entityId":"entry-10412","position":[-912.965,-25.9501,38.6564],"yaw":-3.86782,"spawnMask":1},{"id":"creature-53902","entityId":"entry-10412","position":[-919.105,-23.1881,-90.6436],"yaw":-0.360177,"spawnMask":1},{"id":"creature-53903","entityId":"entry-10412","position":[-1046.585,-35.4981,-29.7536],"yaw":-4.95631,"spawnMask":1},{"id":"creature-53904","entityId":"entry-10412","position":[-1052.755,-40.9391,40.5264],"yaw":-2.90855,"spawnMask":1},{"id":"creature-53932","entityId":"entry-10413","position":[-897.445,-21.1421,-69.1236],"yaw":-4.3269,"spawnMask":1},{"id":"creature-53934","entityId":"entry-10413","position":[-880.945,-20.0891,-30.0136],"yaw":-5.53816,"spawnMask":1},{"id":"creature-53935","entityId":"entry-10413","position":[-927.215,-25.7561,22.0764],"yaw":-0.381868,"spawnMask":1},{"id":"creature-53936","entityId":"entry-10413","position":[-930.515,-27.7021,60.2364],"yaw":-2.4098,"spawnMask":1},{"id":"creature-53969","entityId":"entry-10416","position":[-1048.205,-46.9261,213.7764],"yaw":-3.3588,"spawnMask":1},{"id":"creature-54002","entityId":"entry-10416","position":[-1066.585,-44.6991,161.0264],"yaw":-2.33062,"spawnMask":1},{"id":"creature-54018","entityId":"entry-10416","position":[-1155.405,-49.6571,197.7464],"yaw":-0.935985,"spawnMask":1},{"id":"creature-54019","entityId":"entry-10416","position":[-1111.405,-49.5741,182.4064],"yaw":-3.38611,"spawnMask":1},{"id":"creature-54020","entityId":"entry-10417","position":[-1080.255,-48.1011,171.3164],"yaw":-3.00096,"spawnMask":1},{"id":"creature-54021","entityId":"entry-10417","position":[-1110.325,-47.1221,163.0064],"yaw":-1.09369,"spawnMask":1},{"id":"creature-54022","entityId":"entry-10417","position":[-1056.375,-48.1301,192.4164],"yaw":-3.13568,"spawnMask":1},{"id":"creature-54026","entityId":"entry-10417","position":[-1147.035,-48.7051,164.3864],"yaw":-1.1363,"spawnMask":1},{"id":"creature-54027","entityId":"entry-10417","position":[-1141.415,-49.3321,215.8664],"yaw":-5.4536,"spawnMask":1},{"id":"creature-54039","entityId":"entry-10417","position":[-1052.735,-44.6591,170.4764],"yaw":-5.27334,"spawnMask":1},{"id":"creature-54040","entityId":"entry-10417","position":[-1097.645,-45.8991,151.8964],"yaw":-5.7582,"spawnMask":1},{"id":"creature-54041","entityId":"entry-10417","position":[-1129.435,-49.9971,194.6964],"yaw":-3.69658,"spawnMask":1},{"id":"creature-54050","entityId":"entry-10417","position":[-1069.795,-49.5771,194.2264],"yaw":-0.155868,"spawnMask":1},{"id":"creature-54052","entityId":"entry-10418","position":[-691.005,-36.5941,425.2164],"yaw":-4.76475,"spawnMask":1},{"id":"creature-54054","entityId":"entry-10418","position":[-717.995,-31.4501,498.7264],"yaw":-3.49066,"spawnMask":1},{"id":"creature-54055","entityId":"entry-10418","position":[-715.565,-31.4501,502.8564],"yaw":-3.92699,"spawnMask":1},{"id":"creature-54056","entityId":"entry-10418","position":[-738.145,-38.2451,447.3264],"yaw":-3.85718,"spawnMask":1},{"id":"creature-54067","entityId":"entry-10418","position":[-651.005,-29.5751,524.0864],"yaw":-4.79965,"spawnMask":1},{"id":"creature-54068","entityId":"entry-10418","position":[-680.625,-31.4431,495.4064],"yaw":-1.65806,"spawnMask":1},{"id":"creature-54069","entityId":"entry-10418","position":[-714.335,-37.2911,433.7664],"yaw":-5.39307,"spawnMask":1},{"id":"creature-54070","entityId":"entry-10418","position":[-721.715,-37.2931,438.6464],"yaw":-5.18363,"spawnMask":1},{"id":"creature-54071","entityId":"entry-10418","position":[-673.865,-31.2781,498.2864],"yaw":-3.73462,"spawnMask":1},{"id":"creature-54072","entityId":"entry-10418","position":[-637.585,-29.5771,502.7664],"yaw":-0.20944,"spawnMask":1},{"id":"creature-54073","entityId":"entry-10418","position":[-715.855,-38.9541,417.6364],"yaw":-5.23599,"spawnMask":1},{"id":"creature-54074","entityId":"entry-10418","position":[-723.045,-39.0991,421.8264],"yaw":-5.02655,"spawnMask":1},{"id":"creature-54075","entityId":"entry-10418","position":[-723.285,-39.3261,404.9264],"yaw":-5.16617,"spawnMask":1},{"id":"creature-54076","entityId":"entry-10418","position":[-716.435,-38.7011,398.8564],"yaw":-5.61996,"spawnMask":1},{"id":"creature-54077","entityId":"entry-10418","position":[-696.405,-31.4451,520.6964],"yaw":-5.28835,"spawnMask":1},{"id":"creature-54079","entityId":"entry-10419","position":[-740.605,-39.0541,419.3864],"yaw":-4.60767,"spawnMask":1},{"id":"creature-54082","entityId":"entry-10419","position":[-738.085,-38.3811,387.7464],"yaw":-5.09636,"spawnMask":1},{"id":"creature-54084","entityId":"entry-10419","position":[-673.525,-31.4451,504.2064],"yaw":-6.00393,"spawnMask":1},{"id":"creature-54086","entityId":"entry-10419","position":[-638.855,-29.5751,508.9164],"yaw":-6.07375,"spawnMask":1},{"id":"creature-54087","entityId":"entry-10419","position":[-720.265,-39.0911,420.5564],"yaw":-5.11381,"spawnMask":1},{"id":"creature-54088","entityId":"entry-10419","position":[-703.885,-31.4451,518.9564],"yaw":-4.53786,"spawnMask":1},{"id":"creature-54089","entityId":"entry-10420","position":[-656.705,-31.4461,487.7964],"yaw":-0.523599,"spawnMask":1},{"id":"creature-54090","entityId":"entry-10420","position":[-720.835,-31.4501,502.0764],"yaw":-3.63029,"spawnMask":1},{"id":"creature-54091","entityId":"entry-10420","position":[-719.025,-31.4501,504.4764],"yaw":-3.83972,"spawnMask":1},{"id":"creature-54115","entityId":"entry-10420","position":[-653.225,-29.5841,528.1164],"yaw":-4.67748,"spawnMask":1},{"id":"creature-54116","entityId":"entry-10420","position":[-659.325,-31.5281,485.3664],"yaw":-0.597236,"spawnMask":1},{"id":"creature-54117","entityId":"entry-10420","position":[-718.995,-36.7051,437.9064],"yaw":-5.23599,"spawnMask":1},{"id":"creature-54137","entityId":"entry-10420","position":[-634.195,-29.5821,510.3764],"yaw":-6.03884,"spawnMask":1},{"id":"creature-54138","entityId":"entry-10420","position":[-719.315,-38.9591,402.8164],"yaw":-5.37561,"spawnMask":1},{"id":"creature-54139","entityId":"entry-10420","position":[-703.915,-31.4431,522.8664],"yaw":-4.59022,"spawnMask":1},{"id":"creature-54140","entityId":"entry-10421","position":[-587.675,-40.5651,625.8164],"yaw":-6.10865,"spawnMask":1},{"id":"creature-54141","entityId":"entry-10421","position":[-584.805,-40.5661,629.6564],"yaw":-5.86431,"spawnMask":1},{"id":"creature-54142","entityId":"entry-10421","position":[-622.555,-40.5651,627.4664],"yaw":-5.32325,"spawnMask":1},{"id":"creature-54144","entityId":"entry-10421","position":[-631.065,-40.5651,626.7664],"yaw":-4.4855,"spawnMask":1},{"id":"creature-54146","entityId":"entry-10421","position":[-635.365,-40.5651,595.9064],"yaw":-3.59538,"spawnMask":1},{"id":"creature-54147","entityId":"entry-10421","position":[-598.845,-40.5661,609.8564],"yaw":-0.244346,"spawnMask":1},{"id":"creature-54162","entityId":"entry-10421","position":[-600.525,-40.5651,606.0364],"yaw":-0.331613,"spawnMask":1},{"id":"creature-54166","entityId":"entry-10421","position":[-600.055,-40.5661,574.7964],"yaw":-5.61996,"spawnMask":1},{"id":"creature-54167","entityId":"entry-10421","position":[-603.205,-40.5671,578.2464],"yaw":-5.3058,"spawnMask":1},{"id":"creature-54168","entityId":"entry-10422","position":[-632.865,-40.5651,598.1564],"yaw":-3.82227,"spawnMask":1},{"id":"creature-54169","entityId":"entry-10422","position":[-593.145,-30.3181,537.7964],"yaw":-2.40187,"spawnMask":1},{"id":"creature-54170","entityId":"entry-10422","position":[-500.835,-30.6481,512.1464],"yaw":-4.13137,"spawnMask":1},{"id":"creature-54171","entityId":"entry-10423","position":[-587.055,-40.5671,635.3164],"yaw":-5.48033,"spawnMask":1},{"id":"creature-54172","entityId":"entry-10423","position":[-591.575,-40.5671,636.1564],"yaw":-5.06145,"spawnMask":1},{"id":"creature-54173","entityId":"entry-10423","position":[-626.205,-40.5661,629.2964],"yaw":-4.95674,"spawnMask":1},{"id":"creature-54174","entityId":"entry-10423","position":[-639.055,-40.5671,599.1664],"yaw":-3.64774,"spawnMask":1},{"id":"creature-54175","entityId":"entry-10423","position":[-604.925,-40.5661,602.5764],"yaw":-1.02974,"spawnMask":1},{"id":"creature-54179","entityId":"entry-10423","position":[-600.905,-40.5671,583.6264],"yaw":-5.25344,"spawnMask":1},{"id":"creature-54180","entityId":"entry-10424","position":[-731.355,-39.3321,413.1064],"yaw":-4.93928,"spawnMask":1},{"id":"creature-54201","entityId":"entry-10424","position":[-528.285,-30.5621,521.8464],"yaw":-0.907571,"spawnMask":1},{"id":"creature-54204","entityId":"entry-10424","position":[-523.035,-30.5661,529.9864],"yaw":-0.20944,"spawnMask":1},{"id":"creature-54206","entityId":"entry-10424","position":[-604.535,-40.6511,610.1564],"yaw":-5.36522,"spawnMask":1},{"id":"creature-54207","entityId":"entry-10424","position":[-731.775,-38.4871,384.2264],"yaw":-5.28835,"spawnMask":1},{"id":"creature-54208","entityId":"entry-10424","position":[-602.975,-30.5701,516.0764],"yaw":-0.855211,"spawnMask":1},{"id":"creature-54219","entityId":"entry-10424","position":[-600.175,-30.5701,520.6564],"yaw":-0.401426,"spawnMask":1},{"id":"creature-54220","entityId":"entry-10424","position":[-646.535,-13.8911,479.2364],"yaw":-5.18363,"spawnMask":1},{"id":"creature-54221","entityId":"entry-10424","position":[-558.205,-29.8991,501.3264],"yaw":-1.81514,"spawnMask":1},{"id":"creature-54222","entityId":"entry-10424","position":[-564.265,-29.8991,502.0964],"yaw":-2.46091,"spawnMask":1},{"id":"creature-54223","entityId":"entry-10424","position":[-544.555,-30.5701,515.5864],"yaw":-0.383972,"spawnMask":1},{"id":"creature-54224","entityId":"entry-10424","position":[-547.695,-30.5701,510.7264],"yaw":-0.890118,"spawnMask":1},{"id":"creature-54225","entityId":"entry-10424","position":[-573.725,-30.5701,527.9064],"yaw":-0.837758,"spawnMask":1},{"id":"creature-54227","entityId":"entry-10424","position":[-571.105,-30.5701,531.9664],"yaw":-0.401426,"spawnMask":1},{"id":"creature-54228","entityId":"entry-10424","position":[-495.715,-30.5651,509.3364],"yaw":-6.19592,"spawnMask":1},{"id":"creature-54229","entityId":"entry-10424","position":[-499.405,-30.5641,503.5364],"yaw":-1.309,"spawnMask":1},{"id":"creature-54230","entityId":"entry-10425","position":[-523.315,-30.5641,522.4964],"yaw":-0.645772,"spawnMask":1},{"id":"creature-54231","entityId":"entry-10425","position":[-543.405,-30.5701,508.6864],"yaw":-0.767945,"spawnMask":1},{"id":"creature-54232","entityId":"entry-10425","position":[-567.505,-30.5701,529.9364],"yaw":-0.436332,"spawnMask":1},{"id":"creature-54233","entityId":"entry-10425","position":[-494.165,-30.5651,505.5164],"yaw":-0.471239,"spawnMask":1},{"id":"creature-54234","entityId":"entry-10426","position":[-599.175,-30.5701,515.1364],"yaw":-0.715585,"spawnMask":1},{"id":"creature-54235","entityId":"entry-10426","position":[-597.105,-30.5701,517.3464],"yaw":-0.523599,"spawnMask":1},{"id":"creature-54236","entityId":"entry-10426","position":[-561.265,-29.8991,500.1264],"yaw":-2.04204,"spawnMask":1},{"id":"creature-54237","entityId":"entry-10435","position":[-720.655,-27.6661,-23.4336],"yaw":-5.34071,"spawnMask":1},{"id":"creature-54238","entityId":"entry-10436","position":[-912.765,-17.4751,-120.0436],"yaw":-1.27409,"spawnMask":1},{"id":"creature-54239","entityId":"entry-10437","position":[-912.405,-21.3571,66.8664],"yaw":-5.23599,"spawnMask":1},{"id":"creature-54240","entityId":"entry-10438","position":[-1093.235,-29.9121,-52.0736],"yaw":-2.42601,"spawnMask":1},{"id":"creature-54241","entityId":"entry-10440","position":[-1093.255,-50.5061,259.3964],"yaw":-4.67748,"spawnMask":1},{"id":"creature-54242","entityId":"entry-10463","position":[-1032.235,-33.4731,-44.7936],"yaw":-4.30977,"spawnMask":1},{"id":"creature-54243","entityId":"entry-10463","position":[-894.085,-20.5361,-23.8736],"yaw":-5.03545,"spawnMask":1},{"id":"creature-54244","entityId":"entry-10463","position":[-944.945,-23.4801,-127.0636],"yaw":-0.02584,"spawnMask":1},{"id":"creature-54245","entityId":"entry-10463","position":[-918.775,-23.6601,12.4064],"yaw":-0.741322,"spawnMask":1},{"id":"creature-54251","entityId":"entry-10463","position":[-895.615,-21.4121,-80.9536],"yaw":-3.30649,"spawnMask":1},{"id":"creature-54253","entityId":"entry-10463","position":[-883.865,-19.6991,-50.4036],"yaw":-2.62055,"spawnMask":1},{"id":"creature-54276","entityId":"entry-10463","position":[-896.805,-24.0461,-114.0936],"yaw":-6.17436,"spawnMask":1},{"id":"creature-54286","entityId":"entry-10464","position":[-931.375,-22.9051,-83.9536],"yaw":-4.24564,"spawnMask":1},{"id":"creature-54304","entityId":"entry-10464","position":[-932.365,-28.2831,37.4164],"yaw":-2.969,"spawnMask":1},{"id":"creature-54413","entityId":"entry-10464","position":[-863.845,-20.4481,-32.3736],"yaw":-4.58668,"spawnMask":1},{"id":"creature-54414","entityId":"entry-10464","position":[-1071.675,-42.7801,55.0664],"yaw":-4.1331,"spawnMask":1},{"id":"creature-54433","entityId":"entry-10997","position":[-630.995,-40.5651,658.3964],"yaw":-3.78736,"spawnMask":1},{"id":"creature-247225","entityId":"entry-10393","position":[-539.105,-34.8701,277.6464],"yaw":0,"spawnMask":1},{"id":"creature-247226","entityId":"entry-10516","position":[-764.205,-33.6001,182.7364],"yaw":-2.08,"spawnMask":1},{"id":"creature-247227","entityId":"entry-10808","position":[-709.045,-38.6901,405.6264],"yaw":0,"spawnMask":1},{"id":"creature-247229","entityId":"entry-16031","position":[-1101.475,-50.1101,261.1564],"yaw":-4.12,"spawnMask":1},{"id":"creature-248654","entityId":"entry-14684","position":[-790.695,-34.6101,115.5964],"yaw":-3.05433,"spawnMask":1},{"id":"encounter-478","entityId":"entry-10813","position":[-100.5006,-6.2831,-38.3734],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-52141","name":"Crimson Monk Patrol","speed":1.15,"pathId":521410,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-593.145,-30.3181,537.7964],[-594.725,-29.9831,534.8264],[-592.955,-30.0681,537.6864],[-586.665,-30.6531,546.7764],[-586.525,-30.4031,541.0164],[-582.325,-30.4031,538.6364],[-572.625,-30.6531,531.7364],[-570.055,-30.4031,530.0464],[-569.825,-30.4031,529.8464],[-558.715,-30.6531,521.9364],[-557.605,-30.4031,521.0564],[-555.505,-30.6531,519.5064],[-554.065,-30.4031,518.5064],[-557.875,-30.4031,521.1664],[-566.975,-30.6531,527.9364],[-569.815,-30.4031,529.7664],[-576.955,-30.6531,534.7864],[-581.975,-30.6531,538.2564],[-582.815,-30.4031,538.7964],[-585.345,-30.6531,540.3864],[-589.925,-30.6531,541.2264]],"members":[{"id":"member","entityId":"entry-11043","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-52144","name":"Crimson Monk Patrol","speed":1.15,"pathId":521440,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-500.835,-30.6481,512.1464],[-496.015,-30.6481,517.1064],[-501.995,-30.6481,511.0564],[-504.205,-30.4021,512.3364],[-507.235,-30.4041,513.2164],[-513.405,-30.6541,517.3364],[-517.815,-30.4021,520.4964],[-522.495,-30.3991,524.0464],[-529.935,-30.6471,529.1164],[-532.195,-30.3981,530.7264],[-539.905,-30.6481,536.0064],[-535.755,-30.6481,533.1264],[-532.535,-30.3981,530.9964],[-528.755,-30.6471,528.2764],[-523.705,-30.6471,524.7864],[-517.985,-30.3991,520.9464],[-517.655,-30.4021,520.4264],[-514.125,-30.6531,517.9864],[-509.125,-30.6591,514.4164],[-504.895,-30.4031,511.5464],[-502.715,-30.6481,512.0364]],"members":[{"id":"member","entityId":"entry-11043","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53290","name":"Plague Ghoul Patrol","speed":1.15,"pathId":532900,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-778.145,-35.8541,124.5064],[-777.115,-35.9191,136.5764],[-776.185,-36.2851,147.4564],[-772.515,-36.1821,156.6164],[-771.865,-34.7051,164.2864],[-769.055,-34.2521,171.3864],[-765.525,-33.9471,176.8564],[-761.725,-33.5341,186.7664],[-758.945,-33.6281,195.0664],[-755.375,-33.6321,200.5964],[-748.295,-34.7171,211.5964],[-753.475,-33.6281,202.0864],[-759.865,-33.4341,188.1364],[-769.205,-34.4411,169.1864],[-772.745,-35.9701,157.6764],[-775.645,-36.3481,148.2464],[-780.125,-35.8811,133.6564],[-782.695,-35.7801,127.5364]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53299","name":"Plague Ghoul Patrol","speed":1.15,"pathId":532990,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-755.455,-33.5251,195.4964],[-747.455,-34.1301,207.2364],[-741.305,-35.9761,216.2664],[-737.895,-37.0431,225.5264],[-731.325,-39.7951,240.5564],[-726.155,-41.0861,252.6564],[-721.575,-42.0951,268.2364],[-723.085,-41.7471,274.6364],[-726.035,-39.4741,284.0264],[-734.235,-38.8631,289.4064],[-744.135,-37.6091,300.5064],[-750.275,-37.0861,313.3164],[-755.015,-37.5081,323.2364],[-758.795,-37.9671,331.1264],[-753.165,-37.1921,318.2364],[-746.295,-37.2281,304.6864],[-739.365,-38.6211,291.1364],[-734.225,-39.1901,282.7064],[-730.255,-40.7171,276.1964],[-724.275,-41.9251,263.6764],[-721.395,-41.2841,253.2064],[-724.555,-40.5341,245.0464],[-729.875,-39.1381,231.9064],[-736.915,-36.8901,220.8664],[-742.825,-35.0451,211.5964],[-745.755,-34.1091,206.9864]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53594","name":"Plague Ghoul Patrol","speed":1.15,"pathId":535940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-531.205,-29.1431,228.7764],[-547.735,-30.4421,219.1564],[-560.835,-31.0851,214.2164],[-592.625,-33.2731,206.9164],[-595.115,-33.2731,200.9164],[-604.655,-30.2221,173.4764],[-599.595,-31.6721,186.5364],[-592.355,-33.2741,204.7164],[-572.025,-32.6961,209.8764],[-547.935,-30.3741,216.1164]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53601","name":"Plague Ghoul Patrol","speed":1.15,"pathId":536010,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-647.545,-30.6041,123.4664],[-663.255,-29.7121,108.2764],[-672.785,-28.5891,98.0264],[-684.985,-28.9571,80.9664],[-696.285,-28.6761,72.1964],[-711.625,-28.8081,78.2464],[-718.635,-28.9291,90.4564],[-713.415,-28.8521,103.8764],[-698.355,-28.1981,108.1864],[-688.445,-28.2551,106.3864],[-670.845,-28.7591,99.7664],[-658.835,-29.8101,106.5264]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53650","name":"Plague Ghoul Patrol","speed":1.15,"pathId":536500,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-597.825,-33.5291,227.6164],[-600.205,-34.3361,234.1964],[-607.345,-36.4261,253.9464],[-617.455,-36.3221,260.5164],[-631.445,-37.0131,260.2264],[-631.065,-36.9721,260.5464],[-612.855,-36.3161,262.1064],[-608.565,-36.4721,248.7764],[-601.365,-33.8951,229.0564],[-596.225,-33.2741,212.1764],[-598.635,-31.7261,186.7364],[-600.905,-30.9551,180.1264],[-601.845,-30.9451,180.3064],[-597.595,-32.5411,193.6464],[-597.095,-33.2741,218.6564]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53674","name":"Plague Ghoul Patrol","speed":1.15,"pathId":536740,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-579.925,-34.6011,272.7064],[-559.725,-35.4261,279.3264],[-584.305,-34.9131,273.3864],[-597.925,-36.2651,270.1364],[-618.415,-36.2541,265.5564],[-642.105,-37.8971,261.3964],[-628.425,-36.5791,264.2364],[-614.675,-36.2541,266.8664],[-589.555,-35.5631,272.1664]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53675","name":"Plague Ghoul Patrol","speed":1.15,"pathId":536750,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-769.385,-34.5671,167.6864],[-772.775,-36.1821,156.6464],[-776.975,-36.0461,143.2964],[-781.295,-35.8121,125.2364],[-769.025,-35.9481,109.9664],[-754.335,-34.4341,107.8464],[-733.375,-30.2711,106.6064],[-708.265,-28.7611,105.3064],[-722.165,-29.0171,106.8664],[-750.055,-33.6321,109.3064],[-770.965,-35.9491,113.6864],[-776.665,-35.9091,129.6964],[-775.365,-36.2901,151.1064],[-773.855,-36.2571,156.2364]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53676","name":"Plague Ghoul Patrol","speed":1.15,"pathId":536760,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-601.985,-30.5721,176.8064],[-600.595,-31.4061,184.3164],[-598.795,-32.6571,194.0164],[-596.995,-33.2731,203.7164],[-585.105,-33.2731,205.6264],[-574.595,-32.9791,208.6264],[-568.095,-31.9811,209.6664],[-558.345,-30.8201,211.2264],[-552.955,-30.4021,212.0964],[-542.105,-30.2961,213.8364],[-535.935,-30.1341,216.1164],[-530.505,-29.7341,216.6864],[-522.915,-27.9661,217.4964],[-516.375,-26.5171,218.1864],[-508.845,-25.2651,218.9864],[-508.845,-25.2651,218.9864],[-499.075,-24.7721,217.6164],[-492.555,-24.5551,216.6964],[-487.105,-24.3351,217.0064],[-479.485,-23.9161,217.4264],[-494.795,-24.6271,216.5764],[-506.745,-25.1201,215.9164],[-511.135,-25.6401,216.3064],[-523.125,-28.0221,217.3764],[-529.685,-29.7411,217.9664],[-546.085,-30.4391,218.2964],[-555.505,-30.3891,215.3464],[-564.925,-31.6161,212.3964],[-576.565,-33.1891,209.3364],[-589.205,-33.2731,202.7164],[-595.345,-32.8811,196.4864],[-599.975,-31.5471,185.4664]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53696","name":"Ghoul Ravener Patrol","speed":1.15,"pathId":536960,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-931.985,-22.9541,-84.5036],[-945.755,-24.0271,-81.9736],[-967.965,-26.9951,-74.2536],[-985.325,-26.2501,-65.1536],[-994.525,-25.5651,-57.8336],[-1008.755,-30.1611,-48.3836],[-1023.695,-33.2161,-41.3336],[-1038.915,-35.6401,-30.6136],[-1051.925,-36.2401,-20.4236],[-1041.675,-35.6291,-29.5436],[-1030.175,-34.4471,-39.7836],[-1014.315,-31.6091,-48.9536],[-999.015,-26.4321,-54.4136],[-987.575,-26.0811,-62.4736],[-976.125,-27.9401,-70.5436],[-960.165,-26.2651,-78.3836],[-953.685,-25.0601,-81.0136]],"members":[{"id":"member","entityId":"entry-10406","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53899","name":"Crypt Crawler Patrol","speed":1.15,"pathId":538990,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1042.575,-38.0431,7.4764],[-1038.775,-36.8531,-1.4536]],"members":[{"id":"member","entityId":"entry-10412","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53905","name":"Crypt Beast Patrol","speed":1.15,"pathId":539050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1054.465,-37.2241,7.1364],[-1059.445,-36.1661,0.2564]],"members":[{"id":"member","entityId":"entry-10413","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53943","name":"Patchwork Horror Patrol","speed":1.15,"pathId":539430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-716.255,-29.0131,100.9264],[-700.895,-28.3221,107.5464],[-684.855,-28.7011,101.7564],[-670.745,-28.8131,100.7464],[-652.935,-30.8001,116.4064],[-669.385,-28.4321,92.7164],[-685.945,-28.8471,73.7364],[-704.395,-28.9831,76.5364],[-714.965,-28.9021,83.0464]],"members":[{"id":"member","entityId":"entry-10414","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53953","name":"Patchwork Horror Patrol","speed":1.15,"pathId":539530,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-617.425,-36.3051,262.1464],[-644.085,-38.1181,262.0364],[-605.385,-35.9791,245.2264],[-592.685,-33.2741,209.2964],[-604.745,-30.0581,170.1764],[-592.685,-33.2741,209.2964],[-605.385,-35.9791,245.2264],[-644.085,-38.1181,262.0364],[-617.425,-36.3051,262.1464],[-591.435,-35.8521,271.2764],[-572.135,-34.2831,279.5064],[-591.435,-35.8521,271.2764]],"members":[{"id":"member","entityId":"entry-10414","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53954","name":"Patchwork Horror Patrol","speed":1.15,"pathId":539540,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-717.015,-41.8371,259.5464],[-733.815,-38.7401,233.7064],[-741.905,-36.1161,219.0764],[-749.585,-33.8471,204.9364],[-762.245,-33.5141,185.7164],[-764.865,-33.7881,179.9564],[-770.545,-34.5981,166.6164],[-764.865,-33.7881,179.9564],[-762.245,-33.5141,185.7164],[-749.585,-33.8471,204.9364],[-741.905,-36.1161,219.0764],[-733.985,-38.6621,233.4464],[-717.015,-41.8371,259.5464],[-733.805,-39.0751,287.3164],[-742.135,-37.8621,318.3264],[-767.785,-38.2361,337.4764],[-742.135,-37.8621,318.3264],[-733.805,-39.0751,287.3164]],"members":[{"id":"member","entityId":"entry-10414","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54053","name":"Crimson Guardsman Patrol","speed":1.15,"pathId":540530,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-659.465,-31.5291,491.1364],[-699.855,-31.5291,519.4564]],"members":[{"id":"member","entityId":"entry-10418","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54066","name":"Crimson Guardsman Patrol","speed":1.15,"pathId":540660,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-647.855,-29.6551,531.8664],[-653.495,-29.6631,523.4164],[-654.645,-29.6631,521.6964],[-652.755,-29.7971,515.3064],[-651.195,-29.9851,510.0664],[-645.035,-29.7581,505.4664],[-640.665,-29.6571,502.5864],[-635.185,-29.6631,511.1464],[-631.075,-29.6611,516.8164],[-634.615,-29.6501,519.1264],[-638.915,-29.9861,521.9464],[-643.915,-29.9861,525.8664],[-648.505,-29.6591,529.3364],[-644.255,-29.7911,526.2564],[-640.525,-29.9871,523.5564],[-635.025,-29.6631,519.5664],[-630.955,-29.6601,516.6164],[-637.465,-29.6621,507.8864],[-644.135,-29.6521,506.4064],[-650.695,-29.9851,510.3764],[-654.755,-29.6601,520.6364],[-648.975,-29.6611,529.1364]],"members":[{"id":"member","entityId":"entry-10418","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54081","name":"Crimson Conjuror Patrol","speed":1.15,"pathId":540810,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-662.355,-31.5291,486.8464],[-702.735,-31.5291,515.2164]],"members":[{"id":"member","entityId":"entry-10419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54083","name":"Crimson Conjuror Patrol","speed":1.15,"pathId":540830,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-650.375,-29.6591,531.2164],[-640.365,-29.9851,523.8464],[-651.605,-29.6641,527.4364],[-658.145,-29.6611,516.2164],[-653.715,-29.8531,512.4264],[-644.555,-29.7971,506.6564],[-639.365,-29.6591,503.0264],[-645.275,-29.7881,507.1764],[-654.405,-29.7651,513.5864],[-657.665,-29.6631,518.6064],[-651.995,-29.6641,526.4164],[-638.655,-29.9861,521.8064],[-648.205,-29.6581,529.5464]],"members":[{"id":"member","entityId":"entry-10419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54085","name":"Crimson Conjuror Patrol","speed":1.15,"pathId":540850,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-673.865,-31.2781,498.2864],[-669.865,-31.2781,496.5364],[-664.155,-31.0091,494.2964],[-657.655,-31.0091,499.0464],[-655.655,-29.7591,501.5464],[-645.215,-29.7371,516.5964],[-645.585,-29.7391,516.1264],[-655.855,-29.7591,501.4164],[-657.355,-30.7591,499.1664],[-663.845,-31.4651,494.2264],[-671.595,-31.4651,497.4764],[-674.195,-31.2861,498.5964],[-680.945,-31.2861,503.5964],[-690.475,-31.2841,509.8064],[-693.975,-31.2841,512.0564],[-696.975,-31.2841,513.8064],[-695.455,-31.2841,512.8964]],"members":[{"id":"member","entityId":"entry-10419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54205","name":"Crimson Gallant Patrol","speed":1.15,"pathId":542050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-638.725,-40.4001,601.4364],[-638.475,-40.4001,599.9364],[-630.475,-40.4001,594.4364],[-626.725,-40.4001,591.6864],[-620.125,-40.4001,587.1664],[-611.375,-40.4001,580.4164],[-604.395,-40.2701,575.0664],[-608.395,-40.2701,568.5664],[-610.145,-40.2701,565.8164],[-611.355,-39.5211,563.9764],[-609.605,-40.2711,566.7264],[-607.855,-40.2711,569.7264],[-609.285,-40.4011,579.0564],[-612.785,-40.4011,581.5564],[-622.555,-40.4011,589.0164],[-629.305,-40.4011,593.5164],[-632.805,-40.4011,595.7664]],"members":[{"id":"member","entityId":"entry-10424","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54252","name":"Shrieking Banshee Patrol","speed":1.15,"pathId":542520,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1058.885,-35.6041,-34.6236],[-1057.705,-36.6981,-26.0336],[-1057.095,-36.5491,-21.7436],[-1057.715,-36.3751,-28.2936]],"members":[{"id":"member","entityId":"entry-10463","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54268","name":"Shrieking Banshee Patrol","speed":1.15,"pathId":542680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1055.085,-39.3471,29.0764],[-1067.915,-39.6201,34.2264]],"members":[{"id":"member","entityId":"entry-10463","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54287","name":"Wailing Banshee Patrol","speed":1.15,"pathId":542870,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1050.625,-36.7771,-7.0136],[-1055.715,-36.2411,-9.3136],[-1058.205,-35.9121,-10.4436],[-1061.145,-35.6231,-11.6236],[-1053.825,-36.4641,-8.7236]],"members":[{"id":"member","entityId":"entry-10464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54415","name":"Wailing Banshee Patrol","speed":1.15,"pathId":544150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1029.425,-39.5191,28.1364],[-1022.875,-38.3411,32.0164]],"members":[{"id":"member","entityId":"entry-10464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-73922","name":"Eye of Naxxramas Patrol","speed":1.15,"pathId":739220,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-554.035,-35.4021,291.2164],[-558.445,-35.4511,274.7664],[-574.315,-34.3471,274.3964],[-590.935,-35.7551,269.9664],[-621.275,-36.2911,262.1264],[-644.745,-38.4331,260.2864],[-612.715,-36.4231,252.6264],[-599.375,-33.6201,227.3864],[-596.565,-33.2741,205.0964],[-603.455,-30.3841,174.5964],[-586.045,-33.2741,203.0564],[-576.565,-33.1941,208.5764],[-551.315,-30.4211,214.2364],[-513.665,-26.0791,217.0664],[-477.045,-23.7751,216.7764],[-513.665,-26.0791,217.0664],[-551.155,-30.4181,214.2864],[-576.565,-33.1941,208.5764],[-586.045,-33.2741,203.0564],[-603.455,-30.3841,174.5964],[-596.565,-33.2741,205.0964],[-599.375,-33.6201,227.3864],[-612.715,-36.4231,252.6264],[-644.745,-38.4331,260.2864],[-621.275,-36.2911,262.1264],[-590.935,-35.7551,269.9664],[-574.315,-34.3471,274.3964],[-558.445,-35.4511,274.7664],[-554.035,-35.4021,291.2164],[-537.815,-35.2371,288.5964]],"members":[{"id":"member","entityId":"entry-10411","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-73923","name":"Eye of Naxxramas Patrol","speed":1.15,"pathId":739230,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-660.345,-29.7711,107.6464],[-705.815,-28.9801,76.8464],[-686.815,-28.1351,108.4764],[-771.375,-35.9491,112.8564],[-762.715,-33.5041,184.4464],[-727.145,-40.4091,245.1564],[-730.915,-39.1651,286.1664],[-751.595,-37.8291,325.8064],[-787.385,-37.6911,336.3864],[-751.595,-37.8291,325.8064],[-730.915,-39.1651,286.1664],[-727.145,-40.4091,245.1564],[-762.715,-33.5041,184.4464],[-771.375,-35.9491,112.8564],[-686.815,-28.1351,108.4764],[-705.815,-28.9801,76.8464],[-660.345,-29.7711,107.6464]],"members":[{"id":"member","entityId":"entry-10411","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-73924","name":"Eye of Naxxramas Patrol","speed":1.15,"pathId":739240,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1102.265,-43.9511,74.9464],[-1055.105,-40.8531,39.5064],[-1037.245,-37.9871,8.7664],[-1066.035,-36.2631,-33.3636],[-1020.695,-32.4051,-46.6836],[-992.465,-25.6861,-56.9336],[-937.565,-23.4211,-86.8436],[-918.315,-22.1871,-81.3536],[-904.075,-21.4781,-76.1636],[-879.655,-19.5281,-37.8436],[-881.175,-20.1211,-29.3136],[-922.985,-24.7561,19.0164],[-945.255,-27.8861,50.2564],[-922.985,-24.7561,19.0164],[-881.175,-20.1211,-29.3136],[-922.985,-24.7561,19.0164],[-945.255,-27.8861,50.2564],[-922.985,-24.7561,19.0164],[-881.175,-20.1211,-29.3136],[-879.655,-19.5281,-37.8436],[-904.075,-21.4781,-76.1636],[-918.315,-22.1871,-81.3536],[-937.565,-23.4211,-86.8436],[-992.465,-25.6861,-56.9336],[-1020.695,-32.4051,-46.6836],[-1066.035,-36.2631,-33.3636],[-1037.245,-37.9871,8.7664],[-1055.105,-40.8531,39.5064],[-1102.265,-43.9511,74.9464]],"members":[{"id":"member","entityId":"entry-10411","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-247226","name":"The Unforgiven","position":[-764.205,-33.6001,182.7364]},{"id":"creature-54433","name":"Cannon Master Willey","position":[-630.995,-40.5651,658.3964]},{"id":"creature-52122","name":"Malor the Zealous","position":[-678.495,-29.9021,468.8864]},{"id":"creature-52148","name":"Archivist Galford","position":[-513.385,-29.1051,492.2964]},{"id":"encounter-478","name":"Balnazzar","position":[-100.5006,-6.2831,-38.3734]},{"id":"creature-54238","name":"Baroness Anastari","position":[-912.765,-17.4751,-120.0436]},{"id":"creature-54239","name":"Nerub'enkan","position":[-912.405,-21.3571,66.8664]},{"id":"creature-54240","name":"Maleki the Pallid","position":[-1093.235,-29.9121,-52.0736]},{"id":"creature-54237","name":"Magistrate Barthilas","position":[-720.655,-27.6661,-23.4336]}],"objectiveOrder":[{"id":"creature-247226","name":"The Unforgiven","position":[-764.205,-33.6001,182.7364]},{"id":"creature-54433","name":"Cannon Master Willey","position":[-630.995,-40.5651,658.3964]},{"id":"creature-52122","name":"Malor the Zealous","position":[-678.495,-29.9021,468.8864]},{"id":"creature-52148","name":"Archivist Galford","position":[-513.385,-29.1051,492.2964]},{"id":"encounter-478","name":"Balnazzar","position":[-100.5006,-6.2831,-38.3734]},{"id":"creature-54238","name":"Baroness Anastari","position":[-912.765,-17.4751,-120.0436]},{"id":"creature-54239","name":"Nerub'enkan","position":[-912.405,-21.3571,66.8664]},{"id":"creature-54240","name":"Maleki the Pallid","position":[-1093.235,-29.9121,-52.0736]},{"id":"creature-54237","name":"Magistrate Barthilas","position":[-720.655,-27.6661,-23.4336]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":6851,"id":175368,"map":329,"orientation":-2.68781,"phaseMask":1,"position_x":3624.91,"position_y":-3642.16,"position_z":138.445,"rotation0":0,"rotation1":0,"rotation2":-0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":6852,"id":175372,"map":329,"orientation":-2.83616,"phaseMask":1,"position_x":3650.43,"position_y":-3535.92,"position_z":137.868,"rotation0":0,"rotation1":0,"rotation2":-0.988361,"rotation3":0.152123,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":6908,"id":175373,"map":329,"orientation":-3.05433,"phaseMask":1,"position_x":4037.15,"position_y":-3469.15,"position_z":121.804,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":6911,"id":175374,"map":329,"orientation":-3.05433,"phaseMask":1,"position_x":4039.97,"position_y":-3504.3,"position_z":121.711,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":9985,"id":175375,"map":329,"orientation":-2.70526,"phaseMask":1,"position_x":3677.37,"position_y":-3212.33,"position_z":127.081,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":10881,"id":175376,"map":329,"orientation":-2.70526,"phaseMask":1,"position_x":3692.86,"position_y":-3244.1,"position_z":127.346,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11165,"id":175377,"map":329,"orientation":-2.83616,"phaseMask":1,"position_x":3661.38,"position_y":-3569.44,"position_z":138.133,"rotation0":0,"rotation1":0,"rotation2":-0.988361,"rotation3":0.152123,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11414,"id":175379,"map":329,"orientation":-1.09083,"phaseMask":1,"position_x":3851.7,"position_y":-3522.96,"position_z":144.213,"rotation0":0,"rotation1":0,"rotation2":-0.518773,"rotation3":0.854912,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11415,"id":175380,"map":329,"orientation":1.35263,"phaseMask":1,"position_x":3853.47,"position_y":-3722.94,"position_z":148.094,"rotation0":0,"rotation1":0,"rotation2":0.625923,"rotation3":0.779885,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11416,"id":175381,"map":329,"orientation":2.44346,"phaseMask":1,"position_x":4038.13,"position_y":-3649.91,"position_z":135.658,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.342021,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11417,"id":176424,"map":329,"orientation":-1.46608,"phaseMask":1,"position_x":3929.59,"position_y":-3384.95,"position_z":119.008,"rotation0":0,"rotation1":0,"rotation2":-0.669132,"rotation3":0.743144,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11808,"id":175405,"map":329,"orientation":-1.5708,"phaseMask":1,"position_x":4032.85,"position_y":-3388.84,"position_z":119.667,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12043,"id":182068,"map":329,"orientation":-2.80998,"phaseMask":1,"position_x":3688.13,"position_y":-3643.51,"position_z":141.964,"rotation0":0,"rotation1":0,"rotation2":-0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12044,"id":176194,"map":329,"orientation":-0.959931,"phaseMask":1,"position_x":3541.94,"position_y":-3068.55,"position_z":135.657,"rotation0":0,"rotation1":0,"rotation2":-0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12045,"id":175433,"map":329,"orientation":-2.9723,"phaseMask":1,"position_x":3707.61,"position_y":-3402.7,"position_z":132.405,"rotation0":0,"rotation1":-0.173648,"rotation2":0.98106,"rotation3":-0.085832,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12145,"id":175434,"map":329,"orientation":0.174533,"phaseMask":1,"position_x":3707.41,"position_y":-3402.1,"position_z":132.437,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12152,"id":175435,"map":329,"orientation":2.09439,"phaseMask":1,"position_x":3652.91,"position_y":-3325.34,"position_z":123.989,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12153,"id":175436,"map":329,"orientation":-2.61799,"phaseMask":1,"position_x":3654.43,"position_y":-3325.95,"position_z":123.541,"rotation0":-0.01129,"rotation1":0.042133,"rotation2":0.965006,"rotation3":-0.258573,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12155,"id":175437,"map":329,"orientation":-1.0472,"phaseMask":1,"position_x":3655.42,"position_y":-3323.93,"position_z":124.336,"rotation0":0.113039,"rotation1":-0.065263,"rotation2":-0.495723,"rotation3":0.858616,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12158,"id":175438,"map":329,"orientation":-1.48353,"phaseMask":1,"position_x":3649.88,"position_y":-3496.59,"position_z":137.059,"rotation0":0.096234,"rotation1":-0.088182,"rotation2":-0.66981,"rotation3":0.73097,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14222,"id":181096,"map":329,"orientation":6.00568,"phaseMask":1,"position_x":3423.47,"position_y":-3055.73,"position_z":136.499,"rotation0":0,"rotation1":0,"rotation2":0.138308,"rotation3":-0.990389,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14223,"id":181048,"map":329,"orientation":6.00568,"phaseMask":1,"position_x":3423.47,"position_y":-3055.73,"position_z":136.499,"rotation0":0,"rotation1":0,"rotation2":0.138308,"rotation3":-0.990389,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":15560,"id":175439,"map":329,"orientation":1.65806,"phaseMask":1,"position_x":3647.01,"position_y":-3496.81,"position_z":136.712,"rotation0":0,"rotation1":0,"rotation2":0.737276,"rotation3":0.675591,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":15561,"id":175440,"map":329,"orientation":-3.05433,"phaseMask":1,"position_x":3648.13,"position_y":-3498,"position_z":136.264,"rotation0":-0.001903,"rotation1":0.043578,"rotation2":0.998097,"rotation3":-0.043578,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":18209,"id":175441,"map":329,"orientation":2.96706,"phaseMask":1,"position_x":3524.13,"position_y":-3377.81,"position_z":133.013,"rotation0":-0.003802,"rotation1":-0.043453,"rotation2":0.995247,"rotation3":0.087073,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20638,"id":175442,"map":329,"orientation":2.96706,"phaseMask":1,"position_x":3524.41,"position_y":-3376.47,"position_z":132.171,"rotation0":-0.018864,"rotation1":-0.215616,"rotation2":0.972581,"rotation3":0.08509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20733,"id":175443,"map":329,"orientation":-0.174533,"phaseMask":1,"position_x":3524.43,"position_y":-3376.18,"position_z":133.056,"rotation0":0,"rotation1":0,"rotation2":-0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20746,"id":175444,"map":329,"orientation":1.39627,"phaseMask":1,"position_x":3523.58,"position_y":-3377.04,"position_z":132.509,"rotation0":-0.033414,"rotation1":-0.028038,"rotation2":0.642176,"rotation3":0.765315,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20747,"id":175445,"map":329,"orientation":-1.8326,"phaseMask":1,"position_x":3558.12,"position_y":-3320.44,"position_z":130.295,"rotation0":0.079459,"rotation1":-0.103553,"rotation2":-0.786566,"rotation3":0.603553,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20748,"id":175447,"map":329,"orientation":2.87979,"phaseMask":1,"position_x":3555.99,"position_y":-3321.16,"position_z":129.5,"rotation0":0.005693,"rotation1":0.043246,"rotation2":0.990501,"rotation3":0.130402,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20756,"id":176215,"map":329,"orientation":-2.53073,"phaseMask":1,"position_x":3577.97,"position_y":-2940.95,"position_z":125.002,"rotation0":0,"rotation1":0,"rotation2":-0.953717,"rotation3":0.300705,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20757,"id":176215,"map":329,"orientation":-2.51327,"phaseMask":1,"position_x":3575.46,"position_y":-2937.3,"position_z":125.002,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20758,"id":176215,"map":329,"orientation":-2.46091,"phaseMask":1,"position_x":3562.64,"position_y":-2936.15,"position_z":125.001,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333809,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20759,"id":176215,"map":329,"orientation":-2.53073,"phaseMask":1,"position_x":3572.97,"position_y":-2933.9,"position_z":125.002,"rotation0":0,"rotation1":0,"rotation2":-0.953717,"rotation3":0.300705,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20760,"id":176215,"map":329,"orientation":2.1293,"phaseMask":1,"position_x":3573.9,"position_y":-2947.05,"position_z":125,"rotation0":0,"rotation1":0,"rotation2":0.874619,"rotation3":0.48481,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20761,"id":176216,"map":329,"orientation":-2.58309,"phaseMask":1,"position_x":3567.81,"position_y":-2947.28,"position_z":124.962,"rotation0":0,"rotation1":0,"rotation2":-0.961262,"rotation3":0.275636,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20768,"id":176217,"map":329,"orientation":-2.43474,"phaseMask":1,"position_x":3562.45,"position_y":-2939.42,"position_z":124.962,"rotation0":0,"rotation1":0,"rotation2":-0.938192,"rotation3":0.346114,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20777,"id":175449,"map":329,"orientation":-0.837757,"phaseMask":1,"position_x":3812.27,"position_y":-3615.74,"position_z":145.239,"rotation0":0.039848,"rotation1":-0.017742,"rotation2":-0.406349,"rotation3":0.912676,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20850,"id":175450,"map":329,"orientation":0.733039,"phaseMask":1,"position_x":3810.09,"position_y":-3615.18,"position_z":146.034,"rotation0":0.121857,"rotation1":0.046776,"rotation2":0.355302,"rotation3":0.925593,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20851,"id":181085,"map":329,"orientation":1.23918,"phaseMask":1,"position_x":4074.52,"position_y":-3342.64,"position_z":117.693,"rotation0":0,"rotation1":0,"rotation2":0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20852,"id":181085,"map":329,"orientation":-1.309,"phaseMask":1,"position_x":3981.04,"position_y":-3363.18,"position_z":119.539,"rotation0":0,"rotation1":0,"rotation2":-0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20859,"id":181085,"map":329,"orientation":-1.88496,"phaseMask":1,"position_x":4012.71,"position_y":-3465.33,"position_z":122.372,"rotation0":0,"rotation1":0,"rotation2":-0.809018,"rotation3":0.587783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20871,"id":175454,"map":329,"orientation":1.94604,"phaseMask":1,"position_x":3993.23,"position_y":-3547.21,"position_z":124.481,"rotation0":0,"rotation1":0,"rotation2":0.826589,"rotation3":0.562806,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20872,"id":175966,"map":329,"orientation":-2.84489,"phaseMask":1,"position_x":3614.64,"position_y":-3124.92,"position_z":137.012,"rotation0":0,"rotation1":0,"rotation2":-0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20873,"id":175455,"map":329,"orientation":-1.19555,"phaseMask":1,"position_x":3994.78,"position_y":-3546.62,"position_z":124.439,"rotation0":-0.036055,"rotation1":0.024549,"rotation2":-0.562269,"rotation3":0.825803,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20916,"id":175967,"map":329,"orientation":-1.00356,"phaseMask":1,"position_x":3645.56,"position_y":-3136.76,"position_z":134.76,"rotation0":0,"rotation1":0,"rotation2":-0.480987,"rotation3":0.876728,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20917,"id":175968,"map":329,"orientation":-0.959931,"phaseMask":1,"position_x":3567.34,"position_y":-3050.77,"position_z":135.651,"rotation0":0,"rotation1":0,"rotation2":-0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20959,"id":176224,"map":329,"orientation":0.610865,"phaseMask":1,"position_x":3584.93,"position_y":-3482.1,"position_z":135.124,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20960,"id":176224,"map":329,"orientation":-1.98968,"phaseMask":1,"position_x":3508.78,"position_y":-3372.3,"position_z":135.379,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":21114,"id":176224,"map":329,"orientation":-2.37365,"phaseMask":1,"position_x":3973.62,"position_y":-3619.9,"position_z":129.999,"rotation0":0,"rotation1":0,"rotation2":-0.927184,"rotation3":0.374606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":21115,"id":176224,"map":329,"orientation":1.46608,"phaseMask":1,"position_x":3486.79,"position_y":-3331.54,"position_z":131.38,"rotation0":0,"rotation1":0,"rotation2":0.669132,"rotation3":0.743144,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":21116,"id":176224,"map":329,"orientation":-0.244346,"phaseMask":1,"position_x":3961.73,"position_y":-3539.9,"position_z":127.744,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":21156,"id":176224,"map":329,"orientation":-0.855212,"phaseMask":1,"position_x":3666.63,"position_y":-3182.46,"position_z":126.252,"rotation0":0,"rotation1":0,"rotation2":-0.414694,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22022,"id":176224,"map":329,"orientation":-1.67552,"phaseMask":1,"position_x":3877.03,"position_y":-3663.46,"position_z":143.9,"rotation0":0,"rotation1":0,"rotation2":-0.743146,"rotation3":0.669129,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22023,"id":176224,"map":329,"orientation":0.715585,"phaseMask":1,"position_x":3636.53,"position_y":-3347.54,"position_z":125.592,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22030,"id":176224,"map":329,"orientation":-0.383972,"phaseMask":1,"position_x":3888.71,"position_y":-3699.08,"position_z":143.85,"rotation0":0,"rotation1":0,"rotation2":-0.190809,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22031,"id":176224,"map":329,"orientation":2.74017,"phaseMask":1,"position_x":4104.72,"position_y":-3435.93,"position_z":117.802,"rotation0":0,"rotation1":0,"rotation2":0.979925,"rotation3":0.199366,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22032,"id":176224,"map":329,"orientation":-2.28638,"phaseMask":1,"position_x":3892.38,"position_y":-3563.78,"position_z":138.099,"rotation0":0,"rotation1":0,"rotation2":-0.909961,"rotation3":0.414694,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22033,"id":176224,"map":329,"orientation":-2.86234,"phaseMask":1,"position_x":3738.43,"position_y":-3477.54,"position_z":131.393,"rotation0":0,"rotation1":0,"rotation2":-0.990268,"rotation3":0.139173,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22034,"id":175457,"map":329,"orientation":0.698131,"phaseMask":1,"position_x":3704.02,"position_y":-3246.32,"position_z":127.442,"rotation0":0,"rotation1":0,"rotation2":0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":24059,"id":175969,"map":329,"orientation":0.610866,"phaseMask":1,"position_x":3575.01,"position_y":-2984,"position_z":125.33,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":25119,"id":175458,"map":329,"orientation":2.26893,"phaseMask":1,"position_x":3704.12,"position_y":-3247.53,"position_z":126.895,"rotation0":-0.018434,"rotation1":-0.039533,"rotation2":0.905445,"rotation3":0.422216,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":25329,"id":175459,"map":329,"orientation":1.65806,"phaseMask":1,"position_x":3446.54,"position_y":-3370.09,"position_z":140.956,"rotation0":0,"rotation1":0,"rotation2":0.737276,"rotation3":0.675591,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27141,"id":175460,"map":329,"orientation":-1.48877,"phaseMask":1,"position_x":3447.17,"position_y":-3369.94,"position_z":140.925,"rotation0":-0.117315,"rotation1":0.128027,"rotation2":-0.665327,"rotation3":0.726076,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27561,"id":175461,"map":329,"orientation":1.8326,"phaseMask":1,"position_x":3683.66,"position_y":-3612.59,"position_z":138.91,"rotation0":0.079459,"rotation1":0.103553,"rotation2":0.786567,"rotation3":0.603553,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27562,"id":175462,"map":329,"orientation":-1.309,"phaseMask":1,"position_x":3686.45,"position_y":-3611.89,"position_z":138.563,"rotation0":0,"rotation1":0,"rotation2":-0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27587,"id":175463,"map":329,"orientation":0.2618,"phaseMask":1,"position_x":3685.14,"position_y":-3610.9,"position_z":138.115,"rotation0":0.043246,"rotation1":0.005693,"rotation2":0.130402,"rotation3":0.990501,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27634,"id":175466,"map":329,"orientation":-3.05433,"phaseMask":1,"position_x":3670.92,"position_y":-3333.54,"position_z":138.502,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27825,"id":175467,"map":329,"orientation":2.30383,"phaseMask":1,"position_x":3730.97,"position_y":-3493.46,"position_z":144.672,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27826,"id":175469,"map":329,"orientation":-1.48353,"phaseMask":1,"position_x":3661.27,"position_y":-3479.86,"position_z":153.273,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737277,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27863,"id":175470,"map":329,"orientation":2.23402,"phaseMask":1,"position_x":3686.23,"position_y":-3499.92,"position_z":148.561,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27864,"id":175471,"map":329,"orientation":1.13446,"phaseMask":1,"position_x":3506.49,"position_y":-3395.26,"position_z":147.507,"rotation0":0,"rotation1":0,"rotation2":0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27865,"id":175472,"map":329,"orientation":2.96706,"phaseMask":1,"position_x":3550.09,"position_y":-3383.72,"position_z":144.137,"rotation0":0,"rotation1":0,"rotation2":0.996195,"rotation3":0.0871556,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27866,"id":175474,"map":329,"orientation":2.00713,"phaseMask":1,"position_x":4065.84,"position_y":-3449.08,"position_z":132.23,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27867,"id":175477,"map":329,"orientation":2.53073,"phaseMask":1,"position_x":3876.35,"position_y":-3588.01,"position_z":151.74,"rotation0":0,"rotation1":0,"rotation2":0.953717,"rotation3":0.300705,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27868,"id":176245,"map":329,"orientation":2.18166,"phaseMask":1,"position_x":3456.98,"position_y":-3106.54,"position_z":137.908,"rotation0":0,"rotation1":0,"rotation2":0.88701,"rotation3":0.461749,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27869,"id":175478,"map":329,"orientation":2.40856,"phaseMask":1,"position_x":3887.01,"position_y":-3571.79,"position_z":156.622,"rotation0":0,"rotation1":0,"rotation2":0.933581,"rotation3":0.358365,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27870,"id":175479,"map":329,"orientation":0.488692,"phaseMask":1,"position_x":3802.17,"position_y":-3648.13,"position_z":162.065,"rotation0":0,"rotation1":0,"rotation2":0.241922,"rotation3":0.970296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27871,"id":153464,"map":329,"orientation":2.3911,"phaseMask":1,"position_x":3555.39,"position_y":-3424.3,"position_z":136.745,"rotation0":0,"rotation1":0,"rotation2":0.930417,"rotation3":0.366502,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27872,"id":176248,"map":329,"orientation":-1.11701,"phaseMask":1,"position_x":3480.75,"position_y":-3290.46,"position_z":131.762,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27873,"id":175481,"map":329,"orientation":-0.261799,"phaseMask":1,"position_x":3830.23,"position_y":-3704.26,"position_z":153.273,"rotation0":0,"rotation1":0,"rotation2":-0.130526,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27880,"id":176249,"map":329,"orientation":-2.58309,"phaseMask":1,"position_x":3858.25,"position_y":-3757.06,"position_z":145.091,"rotation0":0,"rotation1":0,"rotation2":-0.961262,"rotation3":0.275636,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27881,"id":175737,"map":329,"orientation":2.35619,"phaseMask":1,"position_x":3614.39,"position_y":-3125.01,"position_z":137.009,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27883,"id":175483,"map":329,"orientation":-1.5708,"phaseMask":1,"position_x":3477.52,"position_y":-3359.29,"position_z":151.06,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27884,"id":175484,"map":329,"orientation":-1.13446,"phaseMask":1,"position_x":3473.01,"position_y":-3294.13,"position_z":147.507,"rotation0":0,"rotation1":0,"rotation2":-0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27888,"id":153469,"map":329,"orientation":-3.00197,"phaseMask":1,"position_x":4080.21,"position_y":-3533.44,"position_z":124.622,"rotation0":0,"rotation1":0,"rotation2":-0.997564,"rotation3":0.0697546,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27889,"id":175741,"map":329,"orientation":-0.523599,"phaseMask":1,"position_x":3615.47,"position_y":-3125.96,"position_z":137.01,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27890,"id":175748,"map":329,"orientation":2.98451,"phaseMask":1,"position_x":3479.83,"position_y":-3089.39,"position_z":137.671,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27891,"id":175749,"map":329,"orientation":1.48353,"phaseMask":1,"position_x":3471.25,"position_y":-3095.42,"position_z":137.664,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737277,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":28477,"id":177287,"map":329,"orientation":0.610865,"phaseMask":1,"position_x":3450.79,"position_y":-3105.5,"position_z":138.456,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":28515,"id":175753,"map":329,"orientation":0.314159,"phaseMask":1,"position_x":3470.62,"position_y":-3094.68,"position_z":137.664,"rotation0":0,"rotation1":0,"rotation2":0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29190,"id":175754,"map":329,"orientation":-2.28638,"phaseMask":1,"position_x":3480.58,"position_y":-3089.02,"position_z":137.671,"rotation0":0,"rotation1":0,"rotation2":-0.909961,"rotation3":0.414694,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29191,"id":175756,"map":329,"orientation":-0.645772,"phaseMask":1,"position_x":3458.6,"position_y":-3107.46,"position_z":137.9,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29192,"id":175761,"map":329,"orientation":2.96706,"phaseMask":1,"position_x":3476.46,"position_y":-3096.2,"position_z":136.546,"rotation0":0,"rotation1":0,"rotation2":0.996195,"rotation3":0.0871556,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29193,"id":175762,"map":329,"orientation":-2.58309,"phaseMask":1,"position_x":3479.95,"position_y":-3088.35,"position_z":137.664,"rotation0":0,"rotation1":0,"rotation2":-0.961262,"rotation3":0.275636,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29194,"id":176304,"map":329,"orientation":-2.21657,"phaseMask":1,"position_x":3599.32,"position_y":-3460.67,"position_z":136.472,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29204,"id":176304,"map":329,"orientation":-1.98968,"phaseMask":1,"position_x":3476.95,"position_y":-3363.85,"position_z":136.242,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29659,"id":176304,"map":329,"orientation":-2.51327,"phaseMask":1,"position_x":3952.68,"position_y":-3632.92,"position_z":133.41,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29805,"id":176304,"map":329,"orientation":1.6057,"phaseMask":1,"position_x":3581.11,"position_y":-3351,"position_z":129.513,"rotation0":0,"rotation1":0,"rotation2":0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31986,"id":176304,"map":329,"orientation":-2.04204,"phaseMask":1,"position_x":4062.22,"position_y":-3515.15,"position_z":123.116,"rotation0":0,"rotation1":0,"rotation2":-0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31987,"id":176304,"map":329,"orientation":1.44862,"phaseMask":1,"position_x":3656.34,"position_y":-3210.08,"position_z":128.257,"rotation0":0,"rotation1":0,"rotation2":0.662619,"rotation3":0.748957,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35461,"id":176304,"map":329,"orientation":0.610865,"phaseMask":1,"position_x":3682.68,"position_y":-3416.87,"position_z":133.312,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35475,"id":176304,"map":329,"orientation":0.034907,"phaseMask":1,"position_x":3668.9,"position_y":-3284.14,"position_z":128.53,"rotation0":0,"rotation1":0,"rotation2":0.0174526,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35789,"id":176304,"map":329,"orientation":0.314159,"phaseMask":1,"position_x":3788.89,"position_y":-3624.55,"position_z":146.377,"rotation0":0,"rotation1":0,"rotation2":0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35791,"id":176304,"map":329,"orientation":0.628319,"phaseMask":1,"position_x":3998.96,"position_y":-3448.72,"position_z":122.307,"rotation0":0,"rotation1":0,"rotation2":0.309017,"rotation3":0.951056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35796,"id":176304,"map":329,"orientation":-2.58309,"phaseMask":1,"position_x":3880.02,"position_y":-3517.12,"position_z":139.189,"rotation0":0,"rotation1":0,"rotation2":-0.961262,"rotation3":0.275636,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35835,"id":176304,"map":329,"orientation":-0.855212,"phaseMask":1,"position_x":3630.3,"position_y":-3469.46,"position_z":138.793,"rotation0":0,"rotation1":0,"rotation2":-0.414694,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35836,"id":176307,"map":329,"orientation":0,"phaseMask":1,"position_x":3638.04,"position_y":-3534.9,"position_z":138.45,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35837,"id":176307,"map":329,"orientation":1.20428,"phaseMask":1,"position_x":3543.4,"position_y":-3432.62,"position_z":136.636,"rotation0":0,"rotation1":0,"rotation2":0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35838,"id":176307,"map":329,"orientation":0.069813,"phaseMask":1,"position_x":4011.06,"position_y":-3646.39,"position_z":131.552,"rotation0":0,"rotation1":0,"rotation2":0.0348994,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35839,"id":176307,"map":329,"orientation":-0.698132,"phaseMask":1,"position_x":3466.64,"position_y":-3298.56,"position_z":132.741,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35840,"id":176307,"map":329,"orientation":-0.698132,"phaseMask":1,"position_x":4011.67,"position_y":-3518.38,"position_z":122.346,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35841,"id":176307,"map":329,"orientation":2.51327,"phaseMask":1,"position_x":3696.27,"position_y":-3195.51,"position_z":127.796,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35842,"id":176307,"map":329,"orientation":2.02458,"phaseMask":1,"position_x":3665.47,"position_y":-3662.99,"position_z":138.414,"rotation0":0,"rotation1":0,"rotation2":0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35843,"id":176307,"map":329,"orientation":-0.10472,"phaseMask":1,"position_x":3669.82,"position_y":-3263.99,"position_z":127.804,"rotation0":0,"rotation1":0,"rotation2":-0.0523361,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35844,"id":176307,"map":329,"orientation":2.11185,"phaseMask":1,"position_x":3887.52,"position_y":-3745.81,"position_z":142.36,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35845,"id":176307,"map":329,"orientation":2.98451,"phaseMask":1,"position_x":4113.99,"position_y":-3383.44,"position_z":117.806,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35846,"id":176307,"map":329,"orientation":2.84489,"phaseMask":1,"position_x":3862.17,"position_y":-3610.11,"position_z":144.137,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35847,"id":176307,"map":329,"orientation":2.04204,"phaseMask":1,"position_x":3720.45,"position_y":-3502.32,"position_z":130.548,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35848,"id":175796,"map":329,"orientation":1.5708,"phaseMask":1,"position_x":4032.69,"position_y":-3364.54,"position_z":115.054,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35849,"id":176308,"map":329,"orientation":-0.663225,"phaseMask":1,"position_x":3592.94,"position_y":-3512.49,"position_z":137.395,"rotation0":0,"rotation1":0,"rotation2":-0.325568,"rotation3":0.945519,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35850,"id":176308,"map":329,"orientation":1.41372,"phaseMask":1,"position_x":3477.72,"position_y":-3397.27,"position_z":138.636,"rotation0":0,"rotation1":0,"rotation2":0.649449,"rotation3":0.760405,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35851,"id":176308,"map":329,"orientation":0.558505,"phaseMask":1,"position_x":3968.17,"position_y":-3592.17,"position_z":129.298,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35852,"id":176308,"map":329,"orientation":-1.98968,"phaseMask":1,"position_x":3546.42,"position_y":-3307.08,"position_z":130.52,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35853,"id":176308,"map":329,"orientation":0.767945,"phaseMask":1,"position_x":3956.05,"position_y":-3570.05,"position_z":129.894,"rotation0":0,"rotation1":0,"rotation2":0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35854,"id":176308,"map":329,"orientation":2.87979,"phaseMask":1,"position_x":3704.46,"position_y":-3168.81,"position_z":127.617,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35855,"id":176308,"map":329,"orientation":-2.30383,"phaseMask":1,"position_x":4095.95,"position_y":-3361.53,"position_z":117.661,"rotation0":0,"rotation1":0,"rotation2":-0.913544,"rotation3":0.406739,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35856,"id":176308,"map":329,"orientation":2.79253,"phaseMask":1,"position_x":3695.37,"position_y":-3301.16,"position_z":128.532,"rotation0":0,"rotation1":0,"rotation2":0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35857,"id":176308,"map":329,"orientation":-0.10472,"phaseMask":1,"position_x":3818.95,"position_y":-3687.04,"position_z":144.695,"rotation0":0,"rotation1":0,"rotation2":-0.0523361,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35858,"id":176308,"map":329,"orientation":1.29154,"phaseMask":1,"position_x":3973.82,"position_y":-3419.91,"position_z":120.918,"rotation0":0,"rotation1":0,"rotation2":0.601814,"rotation3":0.798637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35859,"id":176308,"map":329,"orientation":2.61799,"phaseMask":1,"position_x":3870.84,"position_y":-3598.91,"position_z":143.474,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35867,"id":176308,"map":329,"orientation":2.6529,"phaseMask":1,"position_x":3672.29,"position_y":-3523.02,"position_z":137.733,"rotation0":0,"rotation1":0,"rotation2":0.970296,"rotation3":0.241922,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42059,"id":176309,"map":329,"orientation":0.785398,"phaseMask":1,"position_x":3615.6,"position_y":-3535.18,"position_z":138.505,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42060,"id":176309,"map":329,"orientation":0.785398,"phaseMask":1,"position_x":3521.19,"position_y":-3409.08,"position_z":134.254,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42450,"id":176309,"map":329,"orientation":-1.91986,"phaseMask":1,"position_x":4009.57,"position_y":-3585.86,"position_z":130.177,"rotation0":0,"rotation1":0,"rotation2":-0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42453,"id":176309,"map":329,"orientation":-2.05949,"phaseMask":1,"position_x":3561.1,"position_y":-3307.54,"position_z":130.66,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42455,"id":176309,"map":329,"orientation":1.43117,"phaseMask":1,"position_x":4065.88,"position_y":-3548.68,"position_z":124.621,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42464,"id":176309,"map":329,"orientation":0.855211,"phaseMask":1,"position_x":3622.79,"position_y":-3196.69,"position_z":131.094,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42882,"id":176309,"map":329,"orientation":-2.94961,"phaseMask":1,"position_x":3711.94,"position_y":-3147.64,"position_z":128.189,"rotation0":0,"rotation1":0,"rotation2":-0.995396,"rotation3":0.095844,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42883,"id":176309,"map":329,"orientation":-0.244346,"phaseMask":1,"position_x":3658.95,"position_y":-3364.85,"position_z":126.05,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42884,"id":176309,"map":329,"orientation":3.10669,"phaseMask":1,"position_x":3862.64,"position_y":-3663.65,"position_z":144.775,"rotation0":0,"rotation1":0,"rotation2":0.999848,"rotation3":0.0174505,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42885,"id":176309,"map":329,"orientation":-1.25664,"phaseMask":1,"position_x":4066.38,"position_y":-3455.35,"position_z":120.555,"rotation0":0,"rotation1":0,"rotation2":-0.587786,"rotation3":0.809016,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42886,"id":176309,"map":329,"orientation":0.925024,"phaseMask":1,"position_x":3838.05,"position_y":-3553.55,"position_z":140.413,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42887,"id":176309,"map":329,"orientation":-2.1293,"phaseMask":1,"position_x":3729.11,"position_y":-3450.53,"position_z":130.433,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42888,"id":176325,"map":329,"orientation":2.19912,"phaseMask":1,"position_x":3585.5,"position_y":-3000.15,"position_z":125,"rotation0":0,"rotation1":0,"rotation2":0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42959,"id":176327,"map":329,"orientation":0.261799,"phaseMask":1,"position_x":3818.4,"position_y":-3693.32,"position_z":144.242,"rotation0":0,"rotation1":0,"rotation2":0.130526,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42972,"id":175824,"map":329,"orientation":-0.174117,"phaseMask":1,"position_x":3524.5,"position_y":-3375.93,"position_z":132.258,"rotation0":0.034767,"rotation1":0.003042,"rotation2":-0.087103,"rotation3":0.995588,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":45054,"id":175825,"map":329,"orientation":-1.828,"phaseMask":1,"position_x":3557.53,"position_y":-3320.44,"position_z":129.254,"rotation0":0.003704,"rotation1":-0.045229,"rotation2":-0.790561,"rotation3":0.6107,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":45172,"id":181206,"map":329,"orientation":2.14675,"phaseMask":1,"position_x":3642.07,"position_y":-3486.78,"position_z":137.613,"rotation0":0,"rotation1":0,"rotation2":0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":45220,"id":176346,"map":329,"orientation":-1.74533,"phaseMask":1,"position_x":3690.03,"position_y":-3405.43,"position_z":132.838,"rotation0":0,"rotation1":0,"rotation2":-0.766045,"rotation3":0.642787,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47273,"id":176349,"map":329,"orientation":2.02458,"phaseMask":1,"position_x":3651.28,"position_y":-3165.66,"position_z":128.177,"rotation0":0,"rotation1":0,"rotation2":0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47274,"id":176350,"map":329,"orientation":1.02974,"phaseMask":1,"position_x":3659.79,"position_y":-3476.73,"position_z":138.381,"rotation0":0,"rotation1":0,"rotation2":0.492422,"rotation3":0.870357,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47275,"id":176351,"map":329,"orientation":-1.23918,"phaseMask":1,"position_x":3639.65,"position_y":-3641.33,"position_z":138.541,"rotation0":0,"rotation1":0,"rotation2":-0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47276,"id":176352,"map":329,"orientation":-0.855212,"phaseMask":1,"position_x":3564.92,"position_y":-3353.24,"position_z":130.67,"rotation0":0,"rotation1":0,"rotation2":-0.414694,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47277,"id":176353,"map":329,"orientation":2.19912,"phaseMask":1,"position_x":3473.59,"position_y":-3294.16,"position_z":132.052,"rotation0":0,"rotation1":0,"rotation2":0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47278,"id":176112,"map":329,"orientation":2.14675,"phaseMask":1,"position_x":3617.53,"position_y":-3130.55,"position_z":135.665,"rotation0":0,"rotation1":0,"rotation2":0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":47279,"id":175857,"map":329,"orientation":2.40855,"phaseMask":1,"position_x":3616.72,"position_y":-3126.52,"position_z":135.779,"rotation0":0,"rotation1":0,"rotation2":0.933579,"rotation3":0.35837,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":47280,"id":175858,"map":329,"orientation":2.11185,"phaseMask":1,"position_x":3615.18,"position_y":-3127.7,"position_z":135.779,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492424,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47281,"id":175350,"map":329,"orientation":3.14159,"phaseMask":1,"position_x":3621.54,"position_y":-3335.55,"position_z":123.501,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47282,"id":175351,"map":329,"orientation":3.14159,"phaseMask":1,"position_x":3603.04,"position_y":-3335.24,"position_z":125.354,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47644,"id":176631,"map":329,"orientation":1.20428,"phaseMask":1,"position_x":4032.77,"position_y":-3350.6,"position_z":115.06,"rotation0":0,"rotation1":0,"rotation2":0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47707,"id":175352,"map":329,"orientation":2.31256,"phaseMask":1,"position_x":3571.57,"position_y":-3451.68,"position_z":136.357,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402747,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47985,"id":175353,"map":329,"orientation":2.31256,"phaseMask":1,"position_x":3555.83,"position_y":-3434.89,"position_z":136.357,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402747,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":48786,"id":175354,"map":329,"orientation":2.94961,"phaseMask":1,"position_x":3931.2,"position_y":-3549.38,"position_z":133.961,"rotation0":0,"rotation1":0,"rotation2":0.995396,"rotation3":0.095844,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":49006,"id":175355,"map":329,"orientation":2.94961,"phaseMask":1,"position_x":3908.55,"position_y":-3545.29,"position_z":135.908,"rotation0":0,"rotation1":0,"rotation2":0.995396,"rotation3":0.095844,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":49413,"id":175356,"map":329,"orientation":1.94604,"phaseMask":1,"position_x":3782.58,"position_y":-3590.48,"position_z":143.987,"rotation0":0,"rotation1":0,"rotation2":0.826589,"rotation3":0.562806,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":49592,"id":175357,"map":329,"orientation":-2.76635,"phaseMask":1,"position_x":3727.29,"position_y":-3599.08,"position_z":142.22,"rotation0":0,"rotation1":0,"rotation2":-0.982451,"rotation3":0.186522,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":49594,"id":175358,"map":329,"orientation":-3.08923,"phaseMask":1,"position_x":3960.6,"position_y":-3392.89,"position_z":119.662,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0261783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":49649,"id":175359,"map":329,"orientation":-1.85878,"phaseMask":1,"position_x":3908.78,"position_y":-3320.21,"position_z":120.904,"rotation0":0,"rotation1":0,"rotation2":-0.801255,"rotation3":0.598323,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50455,"id":182071,"map":329,"orientation":0.00278044,"phaseMask":1,"position_x":3687.4,"position_y":-3644.84,"position_z":140.638,"rotation0":0,"rotation1":0,"rotation2":0.00139022,"rotation3":0.999999,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50456,"id":182071,"map":329,"orientation":5.38276,"phaseMask":1,"position_x":3683.72,"position_y":-3648.49,"position_z":140.638,"rotation0":0,"rotation1":0,"rotation2":0.435157,"rotation3":-0.900355,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50457,"id":182071,"map":329,"orientation":4.22822,"phaseMask":1,"position_x":3671.68,"position_y":-3643.77,"position_z":139.943,"rotation0":0,"rotation1":0,"rotation2":0.856,"rotation3":-0.516975,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50459,"id":182071,"map":329,"orientation":4.72695,"phaseMask":1,"position_x":3680.14,"position_y":-3652.72,"position_z":140.639,"rotation0":0,"rotation1":0,"rotation2":0.70194,"rotation3":-0.712236,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50460,"id":182071,"map":329,"orientation":0.987666,"phaseMask":1,"position_x":3664.39,"position_y":-3638.14,"position_z":140.384,"rotation0":0,"rotation1":0,"rotation2":0.474004,"rotation3":0.880522,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50461,"id":182071,"map":329,"orientation":0.394683,"phaseMask":1,"position_x":3673.38,"position_y":-3645.99,"position_z":150.796,"rotation0":0,"rotation1":0,"rotation2":0.196063,"rotation3":0.980591,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50462,"id":182071,"map":329,"orientation":2.17519,"phaseMask":1,"position_x":3674.34,"position_y":-3635.08,"position_z":154.887,"rotation0":0,"rotation1":0,"rotation2":0.885512,"rotation3":0.464616,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50463,"id":182071,"map":329,"orientation":5.26573,"phaseMask":1,"position_x":3667.09,"position_y":-3624.71,"position_z":148.081,"rotation0":0,"rotation1":0,"rotation2":0.487066,"rotation3":-0.873365,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50464,"id":182071,"map":329,"orientation":2.08485,"phaseMask":1,"position_x":3674.15,"position_y":-3635.58,"position_z":162.46,"rotation0":0,"rotation1":0,"rotation2":0.863629,"rotation3":0.504127,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50465,"id":182071,"map":329,"orientation":2.19481,"phaseMask":1,"position_x":3671.84,"position_y":-3631.23,"position_z":169.458,"rotation0":0,"rotation1":0,"rotation2":0.890027,"rotation3":0.455907,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50466,"id":182071,"map":329,"orientation":3.7774,"phaseMask":1,"position_x":3681.39,"position_y":-3623.82,"position_z":146.995,"rotation0":0,"rotation1":0,"rotation2":0.949893,"rotation3":-0.312576,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50467,"id":182071,"map":329,"orientation":4.28791,"phaseMask":1,"position_x":3690.96,"position_y":-3644.84,"position_z":150.472,"rotation0":0,"rotation1":0,"rotation2":0.840192,"rotation3":-0.542289,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50468,"id":182071,"map":329,"orientation":2.94089,"phaseMask":1,"position_x":3668.28,"position_y":-3628.68,"position_z":139.944,"rotation0":0,"rotation1":0,"rotation2":0.994969,"rotation3":0.100183,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50469,"id":182071,"map":329,"orientation":0.172363,"phaseMask":1,"position_x":3671.21,"position_y":-3628.02,"position_z":139.944,"rotation0":0,"rotation1":0,"rotation2":0.0860749,"rotation3":0.996289,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50470,"id":182072,"map":329,"orientation":3.7813,"phaseMask":1,"position_x":3670.55,"position_y":-3629.58,"position_z":164.292,"rotation0":0,"rotation1":0,"rotation2":0.949281,"rotation3":-0.314428,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50471,"id":182072,"map":329,"orientation":0.65147,"phaseMask":1,"position_x":3680.86,"position_y":-3644.45,"position_z":150.394,"rotation0":0,"rotation1":0,"rotation2":0.320005,"rotation3":0.947416,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50472,"id":182072,"map":329,"orientation":2.21834,"phaseMask":1,"position_x":3676.3,"position_y":-3637.77,"position_z":150.766,"rotation0":0,"rotation1":0,"rotation2":0.895329,"rotation3":0.445405,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268437,"id":181071,"map":329,"orientation":2.74016,"phaseMask":1,"position_x":4044.34,"position_y":-3334.22,"position_z":115.06,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.199371,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268438,"id":181072,"map":329,"orientation":1.16937,"phaseMask":1,"position_x":4044.34,"position_y":-3334.23,"position_z":115.06,"rotation0":0,"rotation1":0,"rotation2":0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/Stratholme":"46bd6ecbb671598b26cf83c4f7ecc837f0679884495629e0ee91406e0a1cb05d","patch/World/maps/Stratholme":"891eca15a7f981c5939925a7d00d2fa0580b970e1c4c48585dc28a950d9265c5"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/stratholme/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["50/50 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"maraudon","title":"Maraudon","mapId":349,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[40,55]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Maraudon","theme":"Instanced dungeon","summary":"Fight through Maraudon, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Maraudon...","unchartedAreaName":"Uncharted Maraudon","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1000.8667},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/349-mauradon/visual.glb","checksum":"5a650c11912730e67d4e3bd75d0d1d89e1db8ad88ca3ecc4e3ae7fa6df4c98ba","size":6861940,"triangleCount":129277}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/349-mauradon/collision.glb","checksum":"471eb50b6a3c923363404555572768aee09e9005c5fe7e2230c33262808a912b","size":992804,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/349-mauradon/navigation.glb","checksum":"af2227f0940b81a01b9c9df004692598c2d41b1ce33d51a70bdde2e66d8115aa","size":435520,"triangleCount":34479}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-1241.9529,-257.782,-459.4803],"max":[148.1398,-35.128,459.8317]},"entrance":{"name":"Maraudon Entrance","footPosition":[-1086.2429,-72.528,-311.2733],"forward":[0.9576462295988111,0,0.28794738917931023],"yaw":1.2787135733552053},"areas":[{"id":"entrance","name":"Maraudon Entrance","center":[-1086.2429,-72.528,-311.2733],"radius":35},{"id":"area-noxxion","name":"Noxxion's Encounter","center":[-1196.9529,-109.0994,-44.3053],"radius":42},{"id":"area-razorlash","name":"Razorlash's Encounter","center":[-1045.4399,-91.6015,136.8847],"radius":42},{"id":"area-lord-vyletongue","name":"Lord Vyletongue's Encounter","center":[-815.4269,-76.7906,-72.6103],"radius":42},{"id":"area-celebras-the-cursed","name":"Celebras the Cursed's Encounter","center":[-792.6589,-115.6893,225.0131],"radius":42},{"id":"area-landslide","name":"Landslide's Encounter","center":[-423.2339,-88.9136,-38.4183],"radius":42},{"id":"area-tinkerer-gizlock","name":"Tinkerer Gizlock's Encounter","center":[-201.4549,-202.653,-166.6943],"radius":42},{"id":"area-princess-theradras","name":"Princess Theradras's Encounter","center":[-94.451,-153.581,230.2299],"radius":42},{"id":"area-meshlok-the-harvester","name":"Meshlok the Harvester's Encounter","center":[-836.1879,-85.3403,72.7604],"radius":42}],"entities":{"entry-12219":{"id":"entry-12219","kind":"mob","name":"Barbed Lasher","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6162,"damageMultiplier":1.12},{"id":"spell-21749","name":"Thorn Volley","spellId":21749,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6162,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12347-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.064,"labelHeight":5.2266,"markerRadius":3.477}}},"entry-12218":{"id":"entry-12218","kind":"mob","name":"Vile Larva","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12346-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0066,"labelHeight":1.0705,"markerRadius":0.9519}}},"entry-12220":{"id":"entry-12220","kind":"mob","name":"Constrictor Vine","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11922","name":"Entangling Roots","spellId":11922,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":4579,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4579,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12348-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0457,"labelHeight":3.7333,"markerRadius":2.4836}}},"entry-11793":{"id":"entry-11793","kind":"mob","name":"Celebrian Dryad","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16000","name":"Throw","spellId":16000,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4330,"damageMultiplier":1.12},{"id":"spell-7992","name":"Slowing Poison","spellId":7992,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4330,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-11714-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0049,"labelHeight":2.9558,"markerRadius":0.7741}}},"entry-12222":{"id":"entry-12222","kind":"mob","name":"Creeping Sludge","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-14350-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.8564,"labelHeight":2.8048,"markerRadius":1.2622}}},"entry-13533":{"id":"entry-13533","kind":"mob","name":"Spewed Larva","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-13609-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0166,"labelHeight":2.1512,"markerRadius":2.3797}}},"entry-12216":{"id":"entry-12216","kind":"mob","name":"Poison Sprite","combat":{"level":42,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-2452-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.4642,"markerRadius":0.7149}}},"entry-12217":{"id":"entry-12217","kind":"mob","name":"Corruptor","combat":{"level":42,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5413","name":"Noxious Catalyst","spellId":5413,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5851,"damageMultiplier":1.12},{"id":"spell-21068","name":"Corruption","spellId":21068,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5851,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12345-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.4642,"markerRadius":0.7149}}},"entry-11790":{"id":"entry-11790","kind":"mob","name":"Putridus Satyr","combat":{"level":43,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-15667","name":"Sinister Strike","spellId":15667,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6817,"damageMultiplier":1.12},{"id":"spell-12540","name":"Gouge","spellId":12540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6817,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/d46221744014c9f7e60e192eb6da90d29b6bb6547f467db7d4b65e3a3503dab7.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-11791":{"id":"entry-11791","kind":"mob","name":"Putridus Trickster","combat":{"level":43,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-15657","name":"Backstab","spellId":15657,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6704,"damageMultiplier":1.12},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6704,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-11338-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0072,"labelHeight":4.6121,"markerRadius":1.3367}}},"entry-11794":{"id":"entry-11794","kind":"mob","name":"Sister of Celebras","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15795","name":"Throw","spellId":15795,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5822,"damageMultiplier":1.12},{"id":"spell-14516","name":"Strike","spellId":14516,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5822,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12337-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0055,"labelHeight":3.2992,"markerRadius":0.8751}}},"entry-12221":{"id":"entry-12221","kind":"mob","name":"Noxious Slime","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"ooze","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-1145-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.8207,"labelHeight":3.1527,"markerRadius":1.5483}}},"entry-13141":{"id":"entry-13141","kind":"mob","name":"Deeprot Stomper","combat":{"level":43,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11876","name":"War Stomp","spellId":11876,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6541,"damageMultiplier":0.62,"radius":8},{"id":"spell-13446","name":"Strike","spellId":13446,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6541,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-2079-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0372,"labelHeight":5.5754,"markerRadius":1.3394}}},"entry-13282":{"id":"entry-13282","kind":"boss","name":"Noxxion","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21687","name":"Toxic Volley","spellId":21687,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6859,"damageMultiplier":0.82,"radius":11},{"id":"spell-21547","name":"Spore Cloud","spellId":21547,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6859,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-11172-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5891,"markerRadius":2.6624}}},"entry-12258":{"id":"entry-12258","kind":"boss","name":"Razorlash","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12787","name":"Thrash","spellId":12787,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6654,"damageMultiplier":1.35},{"id":"spell-40504","name":"Cleave","spellId":40504,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":6654,"damageMultiplier":0.82,"radius":11},{"id":"spell-15976","name":"Puncture","spellId":15976,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6654,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"plant","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12389-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0914,"labelHeight":7.4665,"markerRadius":4.5}}},"entry-12223":{"id":"entry-12223","kind":"mob","name":"Cavern Lurker","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-11428","name":"Stunning Strike","spellId":11428,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5924,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-3386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1511,"labelHeight":4.9521,"markerRadius":1.4299}}},"entry-12224":{"id":"entry-12224","kind":"mob","name":"Cavern Shambler","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-7948","name":"Wild Regeneration","spellId":7948,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5166,"damageMultiplier":1.12},{"id":"spell-16790","name":"Stunning Strike","spellId":16790,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-9014-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1743,"labelHeight":5.714,"markerRadius":1.6499}}},"entry-12236":{"id":"entry-12236","kind":"boss","name":"Lord Vyletongue","title":"Dungeon Boss","hasLoot":true,"combat":{"level":44,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21080","name":"Putrid Breath","spellId":21080,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6653,"damageMultiplier":0.82,"radius":11},{"id":"spell-8817","name":"Smoke Bomb","spellId":8817,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6653,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/b0222314bf55f489e9328677ef322c3cbc243b8c297b2916088350f11848173b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0096,"labelHeight":6.1495,"markerRadius":1.7823}}},"entry-11792":{"id":"entry-11792","kind":"mob","name":"Putridus Shadowstalker","combat":{"level":43,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9080","name":"Hamstring","spellId":9080,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12},{"id":"spell-15087","name":"Evasion","spellId":15087,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6368,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c40245171481eb04ae88340d52e24044e16b3e0053584016264adcf3e83f9bbf.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-13142":{"id":"entry-13142","kind":"mob","name":"Deeprot Tangler","combat":{"level":43,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21331","name":"Entangling Roots","spellId":21331,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":4069,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-21337","name":"Thorns","spellId":21337,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4069,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-13098-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0372,"labelHeight":5.5754,"markerRadius":1.3394}}},"entry-12206":{"id":"entry-12206","kind":"mob","name":"Primordial Behemoth","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12309-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0128,"labelHeight":11.6171,"markerRadius":3.7088}}},"entry-12225":{"id":"entry-12225","kind":"boss","name":"Celebras the Cursed","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21793","name":"Twisted Tranquility","spellId":21793,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7092,"damageMultiplier":1.35},{"id":"spell-21807","name":"Wrath","spellId":21807,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7092,"damageMultiplier":1.35},{"id":"spell-12747","name":"Entangling Roots","spellId":12747,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":7092,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12350-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0239,"labelHeight":6.0275,"markerRadius":1.4532}}},"entry-13743":{"id":"entry-13743","kind":"mob","name":"Corrupt Force of Nature","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-9593-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0372,"labelHeight":5.5754,"markerRadius":1.3394}}},"entry-13599":{"id":"entry-13599","kind":"mob","name":"Stolid Snapjaw","combat":{"level":46,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14104","name":"Spikes","spellId":14104,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6028,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-6368-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.008,"labelHeight":1.552,"markerRadius":0.8729}}},"entry-12201":{"id":"entry-12201","kind":"boss","name":"Princess Theradras","title":"Dungeon Boss","hasLoot":true,"combat":{"level":48,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5235,"damageMultiplier":1.35},{"id":"spell-21869","name":"Repulsive Gaze","spellId":21869,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5235,"damageMultiplier":1.35},{"id":"spell-21832","name":"Boulder","spellId":21832,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5235,"damageMultiplier":1.35},{"id":"spell-21909","name":"Dust Field","spellId":21909,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5235,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12292-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0027,"labelHeight":9.8467,"markerRadius":3.2057}}},"entry-12207":{"id":"entry-12207","kind":"mob","name":"Thessala Hydra","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6613,"damageMultiplier":1.12},{"id":"spell-21790","name":"Aqua Jet","spellId":21790,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6613,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-6737-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0153,"labelHeight":8.4414,"markerRadius":4.5}}},"entry-11789":{"id":"entry-11789","kind":"mob","name":"Deep Borer","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5054,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12333-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2828,"labelHeight":0.9928,"markerRadius":2.3087}}},"entry-11784":{"id":"entry-11784","kind":"mob","name":"Theradrim Guardian","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16790","name":"Stunning Strike","spellId":16790,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-11712-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1656,"labelHeight":3.6208,"markerRadius":1.7178}}},"entry-13323":{"id":"entry-13323","kind":"mob","name":"Subterranean Diemetradon","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8281","name":"Sonic Burst","spellId":8281,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6130,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-13209-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.058,"markerRadius":3.4369}}},"entry-13601":{"id":"entry-13601","kind":"boss","name":"Tinkerer Gizlock","title":"Dungeon Boss","hasLoot":true,"combat":{"level":48,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9143","name":"Bomb","spellId":9143,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4474,"damageMultiplier":1.35},{"id":"spell-16100","name":"Shoot","spellId":16100,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4474,"damageMultiplier":1.35},{"id":"spell-21833","name":"Goblin Dragon Gun","spellId":21833,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4474,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-7125-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-13596":{"id":"entry-13596","kind":"mob","name":"Rotgrip","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16495","name":"Fatal Bite","spellId":16495,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6481,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-13589-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.8224,"markerRadius":4.5}}},"entry-12203":{"id":"entry-12203","kind":"boss","name":"Landslide","title":"Dungeon Boss","hasLoot":true,"combat":{"level":48,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6376,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12293-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0157,"labelHeight":14.298,"markerRadius":4.5}}},"entry-12237":{"id":"entry-12237","kind":"boss","name":"Meshlok the Harvester","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15593","name":"War Stomp","spellId":15593,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4497,"damageMultiplier":0.82,"radius":11},{"id":"spell-13446","name":"Strike","spellId":13446,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4497,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.34,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-9014-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1743,"labelHeight":5.714,"markerRadius":1.6499}}}},"staticSpawns":[{"id":"creature-53971","entityId":"entry-12219","position":[-1129.2629,-60.6707,-277.1113],"yaw":-0.977384,"spawnMask":1},{"id":"creature-53972","entityId":"entry-12218","position":[-1036.3689,-78.699,-225.6203],"yaw":-2.28638,"spawnMask":1},{"id":"creature-53973","entityId":"entry-12218","position":[-1021.6509,-79.1968,-244.3963],"yaw":-0.349066,"spawnMask":1},{"id":"creature-53983","entityId":"entry-12218","position":[-1024.6139,-79.0228,-238.3583],"yaw":-0.296706,"spawnMask":1},{"id":"creature-53984","entityId":"entry-12218","position":[-1038.1829,-78.8077,-234.9723],"yaw":-3.19395,"spawnMask":1},{"id":"creature-53985","entityId":"entry-12218","position":[-1031.1839,-78.7825,-230.6843],"yaw":-0.733038,"spawnMask":1},{"id":"creature-53986","entityId":"entry-12219","position":[-1115.8729,-65.2906,-232.4323],"yaw":-4.55531,"spawnMask":1},{"id":"creature-53987","entityId":"entry-12220","position":[-1057.5589,-79.126,-230.6753],"yaw":-3.56047,"spawnMask":1},{"id":"creature-53988","entityId":"entry-12220","position":[-1052.2439,-79.1395,-235.1113],"yaw":-3.14159,"spawnMask":1},{"id":"creature-53989","entityId":"entry-12220","position":[-1051.7939,-79.0276,-227.9143],"yaw":-3.14159,"spawnMask":1},{"id":"creature-53991","entityId":"entry-11793","position":[-1109.6029,-65.4241,-221.3983],"yaw":-1.83132,"spawnMask":1},{"id":"creature-53993","entityId":"entry-12220","position":[-1111.8029,-67.1153,-184.6493],"yaw":-2.74017,"spawnMask":1},{"id":"creature-53994","entityId":"entry-12219","position":[-1075.9429,-69.781,-206.7653],"yaw":-4.64258,"spawnMask":1},{"id":"creature-54005","entityId":"entry-12220","position":[-1111.3429,-67.2634,-179.7523],"yaw":-5.26045,"spawnMask":1},{"id":"creature-54006","entityId":"entry-12220","position":[-1116.4929,-67.4104,-179.0683],"yaw":-4.40843,"spawnMask":1},{"id":"creature-54007","entityId":"entry-12218","position":[-1019.6569,-79.1044,-230.3053],"yaw":-1.97049,"spawnMask":1},{"id":"creature-54008","entityId":"entry-12218","position":[-1026.0999,-78.9838,-222.4103],"yaw":-4.7595,"spawnMask":1},{"id":"creature-54009","entityId":"entry-12220","position":[-1139.7529,-101.5767,-167.4613],"yaw":-6.05629,"spawnMask":1},{"id":"creature-54010","entityId":"entry-12220","position":[-1135.0429,-101.5767,-166.6843],"yaw":0,"spawnMask":1},{"id":"creature-54011","entityId":"entry-12220","position":[-1140.3929,-101.5767,-161.8633],"yaw":0,"spawnMask":1},{"id":"creature-54012","entityId":"entry-12218","position":[-1019.0209,-79.1997,-215.6653],"yaw":-3.22074,"spawnMask":1},{"id":"creature-54013","entityId":"entry-12218","position":[-1131.5129,-102.3306,-127.3933],"yaw":-2.99423,"spawnMask":1},{"id":"creature-54014","entityId":"entry-12220","position":[-1096.1229,-100.8317,-155.1133],"yaw":-0.069813,"spawnMask":1},{"id":"creature-54057","entityId":"entry-12220","position":[-1091.9929,-100.9513,-150.9073],"yaw":0,"spawnMask":1},{"id":"creature-54058","entityId":"entry-12220","position":[-1097.1329,-101.0005,-150.4383],"yaw":0,"spawnMask":1},{"id":"creature-54059","entityId":"entry-12219","position":[-1047.7809,-74.7374,-157.7143],"yaw":-5.41052,"spawnMask":1},{"id":"creature-54061","entityId":"entry-12218","position":[-1138.3329,-101.8251,-128.5653],"yaw":-1.70784,"spawnMask":1},{"id":"creature-54062","entityId":"entry-12218","position":[-1145.5329,-101.1652,-132.2943],"yaw":-5.3058,"spawnMask":1},{"id":"creature-54063","entityId":"entry-12218","position":[-992.4849,-79.5744,-211.3573],"yaw":-2.56199,"spawnMask":1},{"id":"creature-54064","entityId":"entry-12218","position":[-998.2089,-79.5744,-216.4503],"yaw":-1.82313,"spawnMask":1},{"id":"creature-54065","entityId":"entry-12218","position":[-995.1919,-79.4382,-232.2273],"yaw":-1.11734,"spawnMask":1},{"id":"creature-54093","entityId":"entry-12218","position":[-998.2529,-79.5105,-227.0053],"yaw":-5.28588,"spawnMask":1},{"id":"creature-54094","entityId":"entry-12219","position":[-993.2419,-78.8087,-165.3893],"yaw":-4.86947,"spawnMask":1},{"id":"creature-54095","entityId":"entry-12218","position":[-1002.9179,-79.5744,-211.6193],"yaw":-1.72337,"spawnMask":1},{"id":"creature-54096","entityId":"entry-12218","position":[-1006.1159,-79.4608,-221.7273],"yaw":-1.91986,"spawnMask":1},{"id":"creature-54097","entityId":"entry-12222","position":[-1012.2879,-74.9631,-129.4813],"yaw":-4.11898,"spawnMask":1},{"id":"creature-54098","entityId":"entry-12222","position":[-1019.3759,-74.6607,-138.9823],"yaw":-4.93928,"spawnMask":1},{"id":"creature-54099","entityId":"entry-12218","position":[-1125.2329,-102.329,-120.8533],"yaw":-0.878976,"spawnMask":1},{"id":"creature-54100","entityId":"entry-12222","position":[-1019.6409,-74.6795,-133.7533],"yaw":-0.453786,"spawnMask":1},{"id":"creature-54101","entityId":"entry-12218","position":[-1137.0129,-102.2771,-122.0783],"yaw":-3.82749,"spawnMask":1},{"id":"creature-54102","entityId":"entry-12218","position":[-1145.4729,-101.6601,-121.6303],"yaw":-4.12956,"spawnMask":1},{"id":"creature-54103","entityId":"entry-12218","position":[-1098.5629,-101.3387,-105.8993],"yaw":-2.45657,"spawnMask":1},{"id":"creature-54104","entityId":"entry-12218","position":[-1106.8329,-101.4096,-108.6273],"yaw":-3.38751,"spawnMask":1},{"id":"creature-54105","entityId":"entry-12222","position":[-1057.2719,-74.7261,-101.5233],"yaw":-0.244346,"spawnMask":1},{"id":"creature-54106","entityId":"entry-12218","position":[-1131.8229,-102.3269,-116.3803],"yaw":-4.11447,"spawnMask":1},{"id":"creature-54118","entityId":"entry-12222","position":[-1058.5749,-74.7261,-105.1423],"yaw":-3.66519,"spawnMask":1},{"id":"creature-54121","entityId":"entry-12222","position":[-1040.4349,-77.8517,-107.6933],"yaw":-3.82227,"spawnMask":1},{"id":"creature-54122","entityId":"entry-12218","position":[-991.6679,-79.5475,-224.8683],"yaw":-0.151607,"spawnMask":1},{"id":"creature-54123","entityId":"entry-12218","position":[-988.1459,-79.5744,-216.3103],"yaw":-5.25939,"spawnMask":1},{"id":"creature-54127","entityId":"entry-12219","position":[-984.6679,-78.627,-194.7953],"yaw":-1.06465,"spawnMask":1},{"id":"creature-54129","entityId":"entry-11793","position":[-968.2569,-78.5656,-183.1363],"yaw":-4.89489,"spawnMask":1},{"id":"creature-54130","entityId":"entry-13533","position":[-991.8629,-78.3864,-180.4723],"yaw":-0.030144,"spawnMask":1},{"id":"creature-54131","entityId":"entry-12222","position":[-1009.1589,-74.8357,-124.6363],"yaw":-3.9968,"spawnMask":1},{"id":"creature-54132","entityId":"entry-12222","position":[-1041.0629,-77.8043,-100.3253],"yaw":-5.86431,"spawnMask":1},{"id":"creature-54133","entityId":"entry-12218","position":[-1102.2829,-101.3371,-91.1923],"yaw":-5.59064,"spawnMask":1},{"id":"creature-54134","entityId":"entry-12218","position":[-1096.8629,-101.3366,-91.2723],"yaw":-2.40222,"spawnMask":1},{"id":"creature-54135","entityId":"entry-12218","position":[-1102.7929,-101.3381,-99.9783],"yaw":-2.02142,"spawnMask":1},{"id":"creature-54136","entityId":"entry-12218","position":[-1092.3829,-101.3384,-98.4983],"yaw":-0.013524,"spawnMask":1},{"id":"creature-54148","entityId":"entry-12218","position":[-1108.3329,-101.3386,-100.0463],"yaw":-5.11537,"spawnMask":1},{"id":"creature-54149","entityId":"entry-12222","position":[-1031.0219,-77.999,-107.2383],"yaw":-5.41052,"spawnMask":1},{"id":"creature-54150","entityId":"entry-12222","position":[-1033.3179,-77.8911,-99.3623],"yaw":-6.14356,"spawnMask":1},{"id":"creature-54151","entityId":"entry-12222","position":[-1035.9719,-77.9124,-104.6773],"yaw":-3.19395,"spawnMask":1},{"id":"creature-54152","entityId":"entry-12216","position":[-942.8139,-79.303,-190.3203],"yaw":-3.97935,"spawnMask":1},{"id":"creature-54153","entityId":"entry-12217","position":[-938.7149,-79.2268,-189.9633],"yaw":-0.820305,"spawnMask":1},{"id":"creature-54154","entityId":"entry-11790","position":[-936.5869,-77.896,-182.3483],"yaw":-0.279253,"spawnMask":1},{"id":"creature-54155","entityId":"entry-11791","position":[-940.2099,-77.9093,-184.5993],"yaw":-1.39626,"spawnMask":1},{"id":"creature-54156","entityId":"entry-12220","position":[-953.8579,-74.9428,-131.6583],"yaw":-6.07375,"spawnMask":1},{"id":"creature-54157","entityId":"entry-12220","position":[-956.2809,-74.9428,-135.1473],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54158","entityId":"entry-12220","position":[-954.8219,-74.8122,-128.0213],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54159","entityId":"entry-12220","position":[-998.5999,-75.5538,-86.1443],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54160","entityId":"entry-12219","position":[-1068.4229,-96.4691,-69.3303],"yaw":-5.07891,"spawnMask":1},{"id":"creature-54161","entityId":"entry-12222","position":[-1033.1879,-76.0431,-68.9423],"yaw":-1.39626,"spawnMask":1},{"id":"creature-54200","entityId":"entry-12220","position":[-1002.9379,-75.575,-85.6193],"yaw":-3.68265,"spawnMask":1},{"id":"creature-54202","entityId":"entry-12220","position":[-1005.3999,-75.5713,-80.2223],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54226","entityId":"entry-12222","position":[-1022.4239,-75.5693,-71.0063],"yaw":-3.97935,"spawnMask":1},{"id":"creature-54278","entityId":"entry-12222","position":[-1026.1189,-75.5693,-67.9613],"yaw":-3.75246,"spawnMask":1},{"id":"creature-54279","entityId":"entry-12222","position":[-1028.7679,-75.8596,-72.6313],"yaw":-0.645772,"spawnMask":1},{"id":"creature-54280","entityId":"entry-12220","position":[-948.1659,-82.0093,-83.5223],"yaw":-1.95477,"spawnMask":1},{"id":"creature-54281","entityId":"entry-12220","position":[-941.2909,-82.5239,-84.3913],"yaw":0,"spawnMask":1},{"id":"creature-54282","entityId":"entry-12220","position":[-943.8419,-83.2804,-78.4073],"yaw":0,"spawnMask":1},{"id":"creature-54283","entityId":"entry-12219","position":[-966.4749,-81.4781,-53.0683],"yaw":-0.488692,"spawnMask":1},{"id":"creature-54284","entityId":"entry-12220","position":[-984.2339,-86.314,-40.9243],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54285","entityId":"entry-12218","position":[-1109.9229,-101.3379,-93.2093],"yaw":-4.51294,"spawnMask":1},{"id":"creature-54305","entityId":"entry-12220","position":[-1007.8199,-91.9338,-31.7463],"yaw":0,"spawnMask":1},{"id":"creature-54306","entityId":"entry-12219","position":[-1049.0599,-97.0742,-33.5673],"yaw":-1.309,"spawnMask":1},{"id":"creature-54307","entityId":"entry-12220","position":[-1069.4929,-96.6561,-47.6763],"yaw":-2.26893,"spawnMask":1},{"id":"creature-54308","entityId":"entry-12220","position":[-1073.1929,-96.7037,-52.0413],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54309","entityId":"entry-12220","position":[-1064.0809,-96.5428,-53.5893],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54310","entityId":"entry-12219","position":[-1052.8309,-96.9226,-37.9043],"yaw":-2.9147,"spawnMask":1},{"id":"creature-54311","entityId":"entry-12219","position":[-918.9449,-83.6536,-87.6113],"yaw":-0.855211,"spawnMask":1},{"id":"creature-54312","entityId":"entry-12219","position":[-921.7339,-83.1361,-94.3913],"yaw":-6.07375,"spawnMask":1},{"id":"creature-54313","entityId":"entry-12219","position":[-945.3179,-104.2222,-54.8493],"yaw":-2.37365,"spawnMask":1},{"id":"creature-54314","entityId":"entry-12220","position":[-927.3699,-82.1542,-98.6743],"yaw":-2.30383,"spawnMask":1},{"id":"creature-54315","entityId":"entry-12220","position":[-921.2659,-83.1429,-101.6013],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54316","entityId":"entry-12220","position":[-926.0589,-81.7642,-103.0993],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54317","entityId":"entry-12220","position":[-960.0239,-81.61,-44.9843],"yaw":-0.785398,"spawnMask":1},{"id":"creature-54318","entityId":"entry-12220","position":[-966.0609,-81.8723,-41.3193],"yaw":0,"spawnMask":1},{"id":"creature-54319","entityId":"entry-12220","position":[-963.7669,-81.4858,-47.9203],"yaw":0,"spawnMask":1},{"id":"creature-54320","entityId":"entry-12220","position":[-984.4169,-87.2862,-33.2453],"yaw":-1.76835,"spawnMask":1},{"id":"creature-54321","entityId":"entry-12220","position":[-980.7849,-86.5458,-37.9513],"yaw":-5.66455,"spawnMask":1},{"id":"creature-54322","entityId":"entry-12220","position":[-1003.4119,-91.4001,-26.1223],"yaw":-2.04047,"spawnMask":1},{"id":"creature-54323","entityId":"entry-12220","position":[-1009.0239,-91.7323,-25.9383],"yaw":-1.51313,"spawnMask":1},{"id":"creature-54324","entityId":"entry-12220","position":[-1023.7829,-88.2355,-9.9923],"yaw":-6.21337,"spawnMask":1},{"id":"creature-54325","entityId":"entry-12220","position":[-1027.7489,-87.8998,-15.7783],"yaw":0,"spawnMask":1},{"id":"creature-54327","entityId":"entry-11794","position":[-1009.3719,-89.4026,-8.9453],"yaw":-1.20594,"spawnMask":1},{"id":"creature-54328","entityId":"entry-12221","position":[-906.6059,-104.6725,-61.8773],"yaw":-2.96706,"spawnMask":1},{"id":"creature-54329","entityId":"entry-12220","position":[-1026.8129,-88.4272,-3.7153],"yaw":-6.2241,"spawnMask":1},{"id":"creature-54330","entityId":"entry-12216","position":[-934.6049,-79.3539,-188.0023],"yaw":-3.88721,"spawnMask":1},{"id":"creature-54331","entityId":"entry-12216","position":[-932.9379,-79.1864,-183.3163],"yaw":-1.42954,"spawnMask":1},{"id":"creature-54332","entityId":"entry-12221","position":[-879.2719,-89.7505,-101.6163],"yaw":-0.10472,"spawnMask":1},{"id":"creature-54333","entityId":"entry-12221","position":[-903.9649,-104.1948,-52.4753],"yaw":-2.98451,"spawnMask":1},{"id":"creature-54334","entityId":"entry-12221","position":[-883.2789,-89.4802,-109.2293],"yaw":-2.79253,"spawnMask":1},{"id":"creature-54335","entityId":"entry-12221","position":[-899.5749,-103.8704,-58.8183],"yaw":-6.10865,"spawnMask":1},{"id":"creature-54336","entityId":"entry-12221","position":[-888.6889,-103.6859,-87.3683],"yaw":-0.645772,"spawnMask":1},{"id":"creature-54341","entityId":"entry-12221","position":[-882.5119,-103.6519,-85.7973],"yaw":-1.85005,"spawnMask":1},{"id":"creature-54342","entityId":"entry-12221","position":[-876.0219,-89.4461,-110.0173],"yaw":-2.26893,"spawnMask":1},{"id":"creature-54343","entityId":"entry-12221","position":[-897.3299,-103.8562,-50.8283],"yaw":-6.10865,"spawnMask":1},{"id":"creature-54344","entityId":"entry-12221","position":[-870.7459,-89.8688,-103.7583],"yaw":-0.349066,"spawnMask":1},{"id":"creature-54345","entityId":"entry-11790","position":[-871.6979,-80.6508,-190.6903],"yaw":-3.83972,"spawnMask":1},{"id":"creature-54347","entityId":"entry-12217","position":[-907.8619,-81.0643,-207.7013],"yaw":-2.75762,"spawnMask":1},{"id":"creature-54348","entityId":"entry-12217","position":[-910.5279,-80.6239,-212.0153],"yaw":-5.32325,"spawnMask":1},{"id":"creature-54349","entityId":"entry-12217","position":[-896.6689,-81.0643,-207.7093],"yaw":-5.11381,"spawnMask":1},{"id":"creature-54350","entityId":"entry-12216","position":[-902.1099,-81.0643,-205.9103],"yaw":-4.08407,"spawnMask":1},{"id":"creature-54351","entityId":"entry-12216","position":[-873.2569,-80.7046,-194.7893],"yaw":-1.15192,"spawnMask":1},{"id":"creature-54352","entityId":"entry-13141","position":[-946.6659,-81.0643,-220.9133],"yaw":-4.2237,"spawnMask":1},{"id":"creature-54353","entityId":"entry-13141","position":[-921.8689,-93.1011,-235.3173],"yaw":-0.890118,"spawnMask":1},{"id":"creature-54354","entityId":"entry-11790","position":[-900.6889,-81.0643,-209.2213],"yaw":-0.890118,"spawnMask":1},{"id":"creature-54355","entityId":"entry-11791","position":[-903.7409,-80.614,-215.2933],"yaw":-1.6057,"spawnMask":1},{"id":"creature-54356","entityId":"entry-12216","position":[-961.5779,-81.5994,-265.6663],"yaw":-2.61799,"spawnMask":1},{"id":"creature-54357","entityId":"entry-12216","position":[-961.7809,-81.8742,-273.6363],"yaw":-3.21141,"spawnMask":1},{"id":"creature-54358","entityId":"entry-12216","position":[-957.6509,-81.5086,-269.3003],"yaw":-3.19395,"spawnMask":1},{"id":"creature-54359","entityId":"entry-12217","position":[-959.8149,-81.6765,-259.5553],"yaw":-3.92699,"spawnMask":1},{"id":"creature-54360","entityId":"entry-11790","position":[-966.3639,-82.0205,-270.6153],"yaw":-2.60054,"spawnMask":1},{"id":"creature-54361","entityId":"entry-11790","position":[-964.3489,-81.9587,-259.0343],"yaw":-3.36848,"spawnMask":1},{"id":"creature-54362","entityId":"entry-13141","position":[-947.0039,-81.03,-255.9483],"yaw":-1.50613,"spawnMask":1},{"id":"creature-54363","entityId":"entry-12218","position":[-1137.9629,-102.2057,-113.8033],"yaw":-5.81745,"spawnMask":1},{"id":"creature-54364","entityId":"entry-12218","position":[-1122.6629,-101.1815,-77.9943],"yaw":-1.15779,"spawnMask":1},{"id":"creature-54365","entityId":"entry-12218","position":[-1133.1229,-101.5784,-80.8933],"yaw":-6.06374,"spawnMask":1},{"id":"creature-54366","entityId":"entry-12218","position":[-1127.6429,-101.6241,-70.0213],"yaw":-3.66481,"spawnMask":1},{"id":"creature-54367","entityId":"entry-12218","position":[-1121.1729,-101.3057,-73.0473],"yaw":-3.32482,"spawnMask":1},{"id":"creature-54368","entityId":"entry-12218","position":[-1131.0029,-101.5984,-75.8693],"yaw":-5.66331,"spawnMask":1},{"id":"creature-54369","entityId":"entry-12218","position":[-1169.3629,-105.068,-96.4553],"yaw":-2.18068,"spawnMask":1},{"id":"creature-54370","entityId":"entry-12218","position":[-1150.9829,-102.1751,-106.5433],"yaw":-3.12597,"spawnMask":1},{"id":"creature-54371","entityId":"entry-12218","position":[-1164.6929,-104.3146,-92.0963],"yaw":-5.46898,"spawnMask":1},{"id":"creature-54372","entityId":"entry-12218","position":[-1171.5829,-105.1443,-106.8163],"yaw":-4.50295,"spawnMask":1},{"id":"creature-54373","entityId":"entry-12218","position":[-1171.0829,-104.9214,-114.8673],"yaw":-4.63901,"spawnMask":1},{"id":"creature-54374","entityId":"entry-12218","position":[-1158.2729,-103.2924,-97.5253],"yaw":-2.80998,"spawnMask":1},{"id":"creature-54375","entityId":"entry-12218","position":[-1161.7329,-103.3641,-117.8043],"yaw":-0.753238,"spawnMask":1},{"id":"creature-54376","entityId":"entry-12218","position":[-1162.7029,-103.8566,-99.7453],"yaw":-1.5184,"spawnMask":1},{"id":"creature-54377","entityId":"entry-12218","position":[-1136.7429,-101.7627,-82.4283],"yaw":-5.53495,"spawnMask":1},{"id":"creature-54378","entityId":"entry-12218","position":[-1138.1829,-101.9658,-75.4613],"yaw":-1.18682,"spawnMask":1},{"id":"creature-54379","entityId":"entry-12218","position":[-1136.2629,-102.0513,-69.7583],"yaw":-0.76709,"spawnMask":1},{"id":"creature-54380","entityId":"entry-12218","position":[-1170.4429,-103.6205,-62.7883],"yaw":-5.49286,"spawnMask":1},{"id":"creature-54391","entityId":"entry-12218","position":[-1158.2329,-103.7888,-61.8123],"yaw":-2.45877,"spawnMask":1},{"id":"creature-54418","entityId":"entry-12218","position":[-1160.0629,-103.8429,-68.4973],"yaw":-0.628319,"spawnMask":1},{"id":"creature-54443","entityId":"entry-12218","position":[-1151.7229,-103.6732,-57.9563],"yaw":-4.2371,"spawnMask":1},{"id":"creature-54444","entityId":"entry-12218","position":[-1163.6529,-103.6548,-65.1373],"yaw":-3.73809,"spawnMask":1},{"id":"creature-54445","entityId":"entry-13282","position":[-1196.9529,-109.0994,-44.3053],"yaw":-4.64258,"spawnMask":1},{"id":"creature-54446","entityId":"entry-12218","position":[-1161.2629,-103.892,-52.8473],"yaw":-1.77423,"spawnMask":1},{"id":"creature-54447","entityId":"entry-12218","position":[-1169.4129,-103.8548,-54.4683],"yaw":-5.99821,"spawnMask":1},{"id":"creature-54448","entityId":"entry-12218","position":[-1164.2529,-104.1643,-49.5933],"yaw":-0.98362,"spawnMask":1},{"id":"creature-54449","entityId":"entry-12219","position":[-1008.7199,-89.4723,1.6577],"yaw":-1.81514,"spawnMask":1},{"id":"creature-54450","entityId":"entry-12220","position":[-988.4099,-91.0704,28.3497],"yaw":-0.977384,"spawnMask":1},{"id":"creature-54451","entityId":"entry-12220","position":[-1029.6989,-92.8356,38.8217],"yaw":-3.08923,"spawnMask":1},{"id":"creature-54452","entityId":"entry-12220","position":[-1032.8419,-92.9344,38.8677],"yaw":0,"spawnMask":1},{"id":"creature-54453","entityId":"entry-12220","position":[-1031.9509,-92.8035,43.7837],"yaw":0,"spawnMask":1},{"id":"creature-54454","entityId":"entry-12219","position":[-983.0779,-91.016,27.8357],"yaw":-0.418879,"spawnMask":1},{"id":"creature-54455","entityId":"entry-12220","position":[-985.2619,-90.9413,34.4737],"yaw":-2.67135,"spawnMask":1},{"id":"creature-54456","entityId":"entry-12220","position":[-979.0629,-90.8368,32.7367],"yaw":0,"spawnMask":1},{"id":"creature-54457","entityId":"entry-12221","position":[-935.5009,-116.0785,13.1167],"yaw":-1.23918,"spawnMask":1},{"id":"creature-54458","entityId":"entry-12221","position":[-936.1979,-116.1086,18.1437],"yaw":-5.2709,"spawnMask":1},{"id":"creature-54459","entityId":"entry-12221","position":[-940.5709,-116.0511,15.2367],"yaw":-3.40339,"spawnMask":1},{"id":"creature-54460","entityId":"entry-12221","position":[-939.8279,-116.2172,23.1397],"yaw":-2.07694,"spawnMask":1},{"id":"creature-54461","entityId":"entry-12219","position":[-1025.2519,-90.9135,74.2178],"yaw":-1.16937,"spawnMask":1},{"id":"creature-54462","entityId":"entry-12220","position":[-1018.7089,-90.9953,77.4149],"yaw":-1.46608,"spawnMask":1},{"id":"creature-54463","entityId":"entry-12220","position":[-961.1589,-88.1779,83.3599],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54464","entityId":"entry-12220","position":[-957.4429,-88.3223,78.5625],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54465","entityId":"entry-11794","position":[-939.8889,-116.1629,52.6575],"yaw":-0.033702,"spawnMask":1},{"id":"creature-54466","entityId":"entry-12219","position":[-988.8779,-88.6477,88.6187],"yaw":-1.76278,"spawnMask":1},{"id":"creature-54467","entityId":"entry-12219","position":[-953.8459,-88.1858,83.9414],"yaw":-0.890118,"spawnMask":1},{"id":"creature-54468","entityId":"entry-12220","position":[-1049.2479,-90.9246,84.8741],"yaw":-3.22886,"spawnMask":1},{"id":"creature-54469","entityId":"entry-12220","position":[-1047.3449,-90.9272,92.5708],"yaw":0,"spawnMask":1},{"id":"creature-54470","entityId":"entry-12220","position":[-1042.6849,-90.926,88.4621],"yaw":0,"spawnMask":1},{"id":"creature-54471","entityId":"entry-12220","position":[-1025.1679,-91.1522,82.2887],"yaw":-1.80317,"spawnMask":1},{"id":"creature-54472","entityId":"entry-12220","position":[-1020.8879,-91.1541,85.367],"yaw":-4.48323,"spawnMask":1},{"id":"creature-54473","entityId":"entry-12220","position":[-946.8349,-88.2767,86.6441],"yaw":-5.60564,"spawnMask":1},{"id":"creature-54474","entityId":"entry-12258","position":[-1045.4399,-91.6015,136.8847],"yaw":-4.60767,"spawnMask":1},{"id":"creature-54475","entityId":"entry-11794","position":[-932.7489,-116.4188,54.3375],"yaw":-5.64039,"spawnMask":1},{"id":"creature-54476","entityId":"entry-11794","position":[-929.8969,-116.1538,65.0049],"yaw":-1.49697,"spawnMask":1},{"id":"creature-54477","entityId":"entry-11794","position":[-930.6499,-116.5031,58.6886],"yaw":-5.42058,"spawnMask":1},{"id":"creature-54478","entityId":"entry-12221","position":[-913.0189,-115.7557,132.8791],"yaw":-0.715585,"spawnMask":1},{"id":"creature-54479","entityId":"entry-12221","position":[-907.4419,-116.1359,128.0273],"yaw":-5.32325,"spawnMask":1},{"id":"creature-54480","entityId":"entry-12223","position":[-897.8199,-117.782,52.9053],"yaw":-5.0091,"spawnMask":1},{"id":"creature-54481","entityId":"entry-12223","position":[-915.5319,-117.6912,33.6617],"yaw":-1.5708,"spawnMask":1},{"id":"creature-54482","entityId":"entry-12221","position":[-901.1169,-116.101,134.0793],"yaw":-6.07375,"spawnMask":1},{"id":"creature-54483","entityId":"entry-12221","position":[-896.9409,-115.9928,127.2384],"yaw":-3.45575,"spawnMask":1},{"id":"creature-54484","entityId":"entry-12221","position":[-905.8189,-116.2302,138.8851],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54485","entityId":"entry-12224","position":[-907.4279,-117.356,-1.7013],"yaw":-0.122173,"spawnMask":1},{"id":"creature-54566","entityId":"entry-11794","position":[-941.2949,-116.1884,-9.0943],"yaw":-1.72611,"spawnMask":1},{"id":"creature-54567","entityId":"entry-11794","position":[-939.0299,-116.3338,-9.5283],"yaw":-1.62768,"spawnMask":1},{"id":"creature-54568","entityId":"entry-12223","position":[-907.1449,-117.356,-27.8453],"yaw":-3.83972,"spawnMask":1},{"id":"creature-54569","entityId":"entry-12221","position":[-888.4639,-103.8516,-45.8833],"yaw":-3.07178,"spawnMask":1},{"id":"creature-54570","entityId":"entry-12221","position":[-853.4989,-94.0544,-69.7913],"yaw":-5.06145,"spawnMask":1},{"id":"creature-54571","entityId":"entry-12224","position":[-870.7519,-106.1636,-53.5623],"yaw":-0.226893,"spawnMask":1},{"id":"creature-54572","entityId":"entry-12221","position":[-841.7669,-93.6167,-69.4983],"yaw":-0.925025,"spawnMask":1},{"id":"creature-54573","entityId":"entry-12221","position":[-830.8859,-88.6799,-41.1273],"yaw":-5.75959,"spawnMask":1},{"id":"creature-54574","entityId":"entry-11794","position":[-859.7009,-103.4801,-13.8423],"yaw":-4.95674,"spawnMask":1},{"id":"creature-54575","entityId":"entry-11794","position":[-863.6889,-103.881,-16.2433],"yaw":-4.81711,"spawnMask":1},{"id":"creature-54576","entityId":"entry-12221","position":[-849.7229,-94.0375,-64.7993],"yaw":-1.98968,"spawnMask":1},{"id":"creature-54577","entityId":"entry-12221","position":[-847.7929,-93.8135,-69.5523],"yaw":-0.296706,"spawnMask":1},{"id":"creature-54578","entityId":"entry-12221","position":[-846.1019,-93.8221,-75.3563],"yaw":-6.05629,"spawnMask":1},{"id":"creature-54579","entityId":"entry-12236","position":[-815.4269,-76.7906,-72.6103],"yaw":-3.1765,"spawnMask":1},{"id":"creature-54580","entityId":"entry-12221","position":[-832.2369,-87.5362,-37.0923],"yaw":-0.994838,"spawnMask":1},{"id":"creature-54581","entityId":"entry-12216","position":[-862.5559,-79.9869,-185.9373],"yaw":-0.223871,"spawnMask":1},{"id":"creature-54582","entityId":"entry-12217","position":[-864.2549,-80.618,-194.5543],"yaw":-5.42127,"spawnMask":1},{"id":"creature-54583","entityId":"entry-11791","position":[-866.8149,-80.5572,-187.6383],"yaw":-4.57276,"spawnMask":1},{"id":"creature-54584","entityId":"entry-12216","position":[-867.6979,-80.7099,-190.6223],"yaw":-1.00031,"spawnMask":1},{"id":"creature-54585","entityId":"entry-11792","position":[-788.1259,-76.264,-64.0383],"yaw":-3.31613,"spawnMask":1},{"id":"creature-54586","entityId":"entry-11792","position":[-788.1949,-76.264,-80.4703],"yaw":-2.80998,"spawnMask":1},{"id":"creature-54587","entityId":"entry-12222","position":[-845.2849,-85.0974,1.5387],"yaw":-1.41372,"spawnMask":1},{"id":"creature-54588","entityId":"entry-12222","position":[-838.1779,-85.3779,6.2337],"yaw":-3.64774,"spawnMask":1},{"id":"creature-54589","entityId":"entry-13142","position":[-758.8649,-81.9036,-118.5863],"yaw":-4.55531,"spawnMask":1},{"id":"creature-54590","entityId":"entry-12222","position":[-851.8229,-84.9245,10.5327],"yaw":-6.07375,"spawnMask":1},{"id":"creature-54591","entityId":"entry-12216","position":[-770.6799,-76.264,-49.8923],"yaw":-3.07178,"spawnMask":1},{"id":"creature-54592","entityId":"entry-12216","position":[-774.6049,-76.264,-39.5033],"yaw":-3.83972,"spawnMask":1},{"id":"creature-54613","entityId":"entry-12216","position":[-775.3779,-76.264,-49.9943],"yaw":-0.226893,"spawnMask":1},{"id":"creature-54618","entityId":"entry-12217","position":[-772.7259,-76.264,-59.3873],"yaw":-2.04204,"spawnMask":1},{"id":"creature-54626","entityId":"entry-11791","position":[-776.3999,-76.264,-46.4103],"yaw":-4.76475,"spawnMask":1},{"id":"creature-54627","entityId":"entry-11791","position":[-776.5729,-76.264,-54.6013],"yaw":-1.5708,"spawnMask":1},{"id":"creature-54628","entityId":"entry-12222","position":[-843.8959,-85.1377,10.2457],"yaw":-1.309,"spawnMask":1},{"id":"creature-54629","entityId":"entry-11791","position":[-752.8749,-89.5301,-49.1633],"yaw":-2.37365,"spawnMask":1},{"id":"creature-54630","entityId":"entry-12217","position":[-750.5029,-89.5374,-55.7743],"yaw":-5.09636,"spawnMask":1},{"id":"creature-54631","entityId":"entry-11791","position":[-747.9219,-89.5083,-44.1703],"yaw":-5.48033,"spawnMask":1},{"id":"creature-54632","entityId":"entry-12217","position":[-746.4729,-89.6328,-50.1213],"yaw":-3.73611,"spawnMask":1},{"id":"creature-54633","entityId":"entry-12217","position":[-742.6859,-89.5766,-45.9723],"yaw":-5.31158,"spawnMask":1},{"id":"creature-54634","entityId":"entry-12216","position":[-743.9319,-89.6394,-55.2583],"yaw":-3.10762,"spawnMask":1},{"id":"creature-54635","entityId":"entry-13142","position":[-755.4389,-77.7641,-17.6693],"yaw":-1.3439,"spawnMask":1},{"id":"creature-54636","entityId":"entry-11791","position":[-809.4759,-85.3486,19.0757],"yaw":-3.29867,"spawnMask":1},{"id":"creature-54640","entityId":"entry-11791","position":[-806.4629,-85.6633,24.8427],"yaw":-3.97935,"spawnMask":1},{"id":"creature-54641","entityId":"entry-12223","position":[-831.6499,-86.5147,34.4987],"yaw":-2.14675,"spawnMask":1},{"id":"creature-54642","entityId":"entry-12217","position":[-816.7769,-85.4212,17.5037],"yaw":-3.68265,"spawnMask":1},{"id":"creature-54643","entityId":"entry-12216","position":[-814.3909,-85.5973,25.6967],"yaw":-3.01942,"spawnMask":1},{"id":"creature-54644","entityId":"entry-12216","position":[-803.3189,-85.5368,32.0407],"yaw":-0.645772,"spawnMask":1},{"id":"creature-54645","entityId":"entry-12223","position":[-806.8119,-86.5132,64.9597],"yaw":-0.628319,"spawnMask":1},{"id":"creature-54646","entityId":"entry-11791","position":[-824.6749,-85.0554,104.2012],"yaw":-2.1293,"spawnMask":1},{"id":"creature-54647","entityId":"entry-11791","position":[-816.6759,-85.2511,104.159],"yaw":-0.959931,"spawnMask":1},{"id":"creature-54648","entityId":"entry-12217","position":[-811.4719,-85.1111,95.9578],"yaw":-4.64258,"spawnMask":1},{"id":"creature-54649","entityId":"entry-12217","position":[-820.5519,-85.2347,100.4662],"yaw":-5.13127,"spawnMask":1},{"id":"creature-54650","entityId":"entry-12217","position":[-822.1779,-85.2066,93.2103],"yaw":-0.331613,"spawnMask":1},{"id":"creature-54651","entityId":"entry-12216","position":[-829.5259,-85.0274,105.1404],"yaw":-0.20944,"spawnMask":1},{"id":"creature-54653","entityId":"entry-12224","position":[-879.1879,-117.2956,109.763],"yaw":-5.23599,"spawnMask":1},{"id":"creature-54654","entityId":"entry-12222","position":[-742.7219,-85.0597,36.2907],"yaw":-4.69494,"spawnMask":1},{"id":"creature-54655","entityId":"entry-12223","position":[-765.7129,-86.598,57.951],"yaw":-0.525737,"spawnMask":1},{"id":"creature-54656","entityId":"entry-12222","position":[-730.6119,-85.3673,37.7127],"yaw":-0.20944,"spawnMask":1},{"id":"creature-54657","entityId":"entry-12222","position":[-736.3939,-85.1669,37.0117],"yaw":-0.523599,"spawnMask":1},{"id":"creature-54658","entityId":"entry-12206","position":[-368.7509,-88.9138,-40.8703],"yaw":-2.32129,"spawnMask":1},{"id":"creature-54659","entityId":"entry-13142","position":[-709.4149,-82.0483,-13.1453],"yaw":-5.68977,"spawnMask":1},{"id":"creature-54660","entityId":"entry-13141","position":[-735.9029,-79.2015,-5.9543],"yaw":-0.593412,"spawnMask":1},{"id":"creature-54661","entityId":"entry-12222","position":[-685.8329,-83.9598,15.3527],"yaw":-5.28835,"spawnMask":1},{"id":"creature-54662","entityId":"entry-12223","position":[-683.9269,-86.5147,47.0789],"yaw":-2.04204,"spawnMask":1},{"id":"creature-54663","entityId":"entry-12222","position":[-691.0239,-84.2435,20.2217],"yaw":-1.85005,"spawnMask":1},{"id":"creature-54664","entityId":"entry-12206","position":[-356.6389,-88.9138,-56.2243],"yaw":-1.55334,"spawnMask":1},{"id":"creature-54666","entityId":"entry-13141","position":[-700.2429,-82.6856,-20.6743],"yaw":-2.18166,"spawnMask":1},{"id":"creature-54667","entityId":"entry-11791","position":[-663.8389,-84.2037,-12.0933],"yaw":-3.87463,"spawnMask":1},{"id":"creature-54668","entityId":"entry-11791","position":[-663.7549,-84.1997,1.4447],"yaw":-2.1293,"spawnMask":1},{"id":"creature-54669","entityId":"entry-12206","position":[-309.0129,-116.2485,41.4907],"yaw":-4.67748,"spawnMask":1},{"id":"creature-54670","entityId":"entry-13142","position":[-681.2619,-93.3943,-59.4993],"yaw":-4.76475,"spawnMask":1},{"id":"creature-54671","entityId":"entry-13141","position":[-713.5979,-93.4059,-54.5683],"yaw":-3.08923,"spawnMask":1},{"id":"creature-54672","entityId":"entry-13142","position":[-723.4879,-93.4059,-80.1093],"yaw":-2.11185,"spawnMask":1},{"id":"creature-54673","entityId":"entry-13142","position":[-706.1669,-81.8767,-114.6123],"yaw":-5.46288,"spawnMask":1},{"id":"creature-54674","entityId":"entry-13141","position":[-694.1889,-82.3412,-113.3683],"yaw":-0.506145,"spawnMask":1},{"id":"creature-54675","entityId":"entry-11792","position":[-807.2349,-76.8334,-87.3993],"yaw":-2.79253,"spawnMask":1},{"id":"creature-54676","entityId":"entry-11792","position":[-807.4889,-76.7862,-57.9493],"yaw":-3.54302,"spawnMask":1},{"id":"creature-54677","entityId":"entry-12217","position":[-704.5559,-81.0344,-161.4743],"yaw":-2.53073,"spawnMask":1},{"id":"creature-54678","entityId":"entry-12217","position":[-707.2989,-81.0804,-168.8083],"yaw":-1.46608,"spawnMask":1},{"id":"creature-54679","entityId":"entry-12216","position":[-705.1849,-81.0855,-165.2113],"yaw":-5.60251,"spawnMask":1},{"id":"creature-54680","entityId":"entry-11791","position":[-701.1549,-80.06,-167.2713],"yaw":-4.46804,"spawnMask":1},{"id":"creature-54681","entityId":"entry-11791","position":[-703.9359,-80.0819,-171.3763],"yaw":-3.28122,"spawnMask":1},{"id":"creature-54682","entityId":"entry-13142","position":[-717.0739,-81.034,-202.2903],"yaw":-1.41372,"spawnMask":1},{"id":"creature-54683","entityId":"entry-13141","position":[-687.4299,-81.034,-202.1933],"yaw":-6.17846,"spawnMask":1},{"id":"creature-54691","entityId":"entry-11790","position":[-740.6579,-80.6478,-196.9823],"yaw":-5.89921,"spawnMask":1},{"id":"creature-54693","entityId":"entry-13142","position":[-684.0059,-81.1174,-207.9563],"yaw":-1.07088,"spawnMask":1},{"id":"creature-54694","entityId":"entry-12217","position":[-752.2169,-81.1994,-198.0293],"yaw":-5.95157,"spawnMask":1},{"id":"creature-54695","entityId":"entry-12216","position":[-744.8979,-81.3421,-202.2743],"yaw":-0.610865,"spawnMask":1},{"id":"creature-54696","entityId":"entry-12216","position":[-749.8229,-81.193,-204.3313],"yaw":-0.20944,"spawnMask":1},{"id":"creature-54697","entityId":"entry-12217","position":[-794.4589,-79.8867,-185.2593],"yaw":-2.72271,"spawnMask":1},{"id":"creature-54698","entityId":"entry-13142","position":[-763.6409,-81.034,-225.9183],"yaw":-1.06465,"spawnMask":1},{"id":"creature-54720","entityId":"entry-11791","position":[-757.8989,-80.2656,-202.2603],"yaw":-2.93215,"spawnMask":1},{"id":"creature-54721","entityId":"entry-11792","position":[-731.5879,-81.5836,-193.4613],"yaw":-0.919615,"spawnMask":1},{"id":"creature-54722","entityId":"entry-11790","position":[-667.6199,-81.034,-255.4853],"yaw":-2.6529,"spawnMask":1},{"id":"creature-54723","entityId":"entry-11791","position":[-681.5039,-81.034,-253.1053],"yaw":-2.23402,"spawnMask":1},{"id":"creature-54724","entityId":"entry-11791","position":[-648.3389,-81.034,-243.2123],"yaw":-0.820305,"spawnMask":1},{"id":"creature-54725","entityId":"entry-11791","position":[-647.3619,-81.034,-237.1353],"yaw":-0.383972,"spawnMask":1},{"id":"creature-54726","entityId":"entry-11791","position":[-661.2009,-81.034,-252.8463],"yaw":-5.8294,"spawnMask":1},{"id":"creature-54727","entityId":"entry-11791","position":[-683.0809,-81.034,-245.2383],"yaw":-2.9147,"spawnMask":1},{"id":"creature-54728","entityId":"entry-12216","position":[-810.6609,-79.8617,-196.3903],"yaw":-4.3986,"spawnMask":1},{"id":"creature-54729","entityId":"entry-12216","position":[-800.0459,-79.8942,-186.4443],"yaw":-1.49642,"spawnMask":1},{"id":"creature-54730","entityId":"entry-12217","position":[-805.9929,-79.8744,-190.9343],"yaw":-5.55699,"spawnMask":1},{"id":"creature-54731","entityId":"entry-11790","position":[-805.1369,-79.8217,-183.4013],"yaw":-4.50295,"spawnMask":1},{"id":"creature-54732","entityId":"entry-11791","position":[-801.7049,-79.8063,-195.5043],"yaw":-1.37881,"spawnMask":1},{"id":"creature-54734","entityId":"entry-13142","position":[-837.9359,-90.6693,-205.8313],"yaw":-5.74213,"spawnMask":1},{"id":"creature-54735","entityId":"entry-13141","position":[-862.9129,-88.1643,-226.8663],"yaw":-6.21337,"spawnMask":1},{"id":"creature-54736","entityId":"entry-11790","position":[-856.0789,-82.6329,-277.0193],"yaw":-5.3058,"spawnMask":1},{"id":"creature-54737","entityId":"entry-11790","position":[-857.0519,-82.4336,-266.3683],"yaw":-4.95674,"spawnMask":1},{"id":"creature-54738","entityId":"entry-12217","position":[-855.9419,-82.6473,-272.1423],"yaw":-1.91986,"spawnMask":1},{"id":"creature-54739","entityId":"entry-12216","position":[-860.1669,-82.5487,-266.3503],"yaw":-5.67232,"spawnMask":1},{"id":"creature-54741","entityId":"entry-13141","position":[-883.0549,-88.199,-229.7023],"yaw":-6.16101,"spawnMask":1},{"id":"creature-54743","entityId":"entry-12216","position":[-858.2049,-82.8008,-277.8423],"yaw":-2.4517,"spawnMask":1},{"id":"creature-54767","entityId":"entry-11792","position":[-940.2759,-80.4469,-205.3893],"yaw":-1.89681,"spawnMask":1},{"id":"creature-55070","entityId":"entry-13141","position":[-896.5689,-85.3487,-301.1183],"yaw":-3.33358,"spawnMask":1},{"id":"creature-55071","entityId":"entry-13533","position":[-994.8639,-79.5746,-222.7773],"yaw":-2.38871,"spawnMask":1},{"id":"creature-55072","entityId":"entry-12217","position":[-835.6259,-70.0957,-322.2153],"yaw":-2.6529,"spawnMask":1},{"id":"creature-55073","entityId":"entry-12217","position":[-843.6669,-70.2375,-321.1423],"yaw":-4.15388,"spawnMask":1},{"id":"creature-55074","entityId":"entry-11790","position":[-841.6339,-70.2856,-316.4813],"yaw":-3.78736,"spawnMask":1},{"id":"creature-55075","entityId":"entry-12216","position":[-878.1469,-69.7024,-354.3443],"yaw":-3.33358,"spawnMask":1},{"id":"creature-55076","entityId":"entry-12216","position":[-879.0299,-69.1191,-349.3413],"yaw":-2.26893,"spawnMask":1},{"id":"creature-55077","entityId":"entry-12216","position":[-868.4519,-68.7259,-345.6493],"yaw":-6.03884,"spawnMask":1},{"id":"creature-55078","entityId":"entry-12217","position":[-880.6329,-70.1825,-364.4623],"yaw":-5.74213,"spawnMask":1},{"id":"creature-55079","entityId":"entry-11790","position":[-881.2949,-69.9151,-357.8133],"yaw":-2.80998,"spawnMask":1},{"id":"creature-55080","entityId":"entry-12217","position":[-821.1589,-82.1497,-370.4923],"yaw":-0.506145,"spawnMask":1},{"id":"creature-55081","entityId":"entry-12216","position":[-828.7609,-82.1375,-375.2033],"yaw":-5.91667,"spawnMask":1},{"id":"creature-55082","entityId":"entry-12216","position":[-828.6179,-82.0443,-361.6483],"yaw":-4.60767,"spawnMask":1},{"id":"creature-55083","entityId":"entry-11790","position":[-822.4759,-82.1497,-374.5513],"yaw":-0.331613,"spawnMask":1},{"id":"creature-55084","entityId":"entry-11790","position":[-824.3369,-82.1497,-365.4943],"yaw":-5.65487,"spawnMask":1},{"id":"creature-55085","entityId":"entry-12217","position":[-825.1429,-69.9311,-314.8213],"yaw":-0.64812,"spawnMask":1},{"id":"creature-55086","entityId":"entry-12216","position":[-829.7929,-69.9986,-319.7323],"yaw":-5.68977,"spawnMask":1},{"id":"creature-55088","entityId":"entry-12216","position":[-829.1069,-62.6185,-406.9813],"yaw":-3.92462,"spawnMask":1},{"id":"creature-55090","entityId":"entry-13141","position":[-832.5519,-63.5207,-402.6603],"yaw":-4.26076,"spawnMask":1},{"id":"creature-55091","entityId":"entry-12216","position":[-824.5539,-62.1476,-411.5163],"yaw":-3.92961,"spawnMask":1},{"id":"creature-55092","entityId":"entry-12217","position":[-782.8919,-65.4697,-355.5483],"yaw":-5.74213,"spawnMask":1},{"id":"creature-55093","entityId":"entry-12216","position":[-782.8389,-65.6668,-349.8713],"yaw":-3.40339,"spawnMask":1},{"id":"creature-55094","entityId":"entry-12216","position":[-777.0239,-65.5168,-351.4463],"yaw":-5.81195,"spawnMask":1},{"id":"creature-55095","entityId":"entry-11790","position":[-811.8939,-70.4131,-358.8233],"yaw":-3.35103,"spawnMask":1},{"id":"creature-55096","entityId":"entry-11790","position":[-806.8969,-70.0552,-353.6733],"yaw":-4.2586,"spawnMask":1},{"id":"creature-55097","entityId":"entry-13533","position":[-982.6049,-79.5747,-208.2803],"yaw":-2.27274,"spawnMask":1},{"id":"creature-55099","entityId":"entry-11793","position":[-872.8809,-115.8938,219.7953],"yaw":-5.1642,"spawnMask":1},{"id":"creature-55100","entityId":"entry-11794","position":[-877.0859,-115.5607,222.4631],"yaw":-1.8326,"spawnMask":1},{"id":"creature-55101","entityId":"entry-11793","position":[-867.8679,-115.7433,228.0407],"yaw":-4.8359,"spawnMask":1},{"id":"creature-55103","entityId":"entry-11794","position":[-869.1279,-115.9338,222.7842],"yaw":-5.31355,"spawnMask":1},{"id":"creature-55104","entityId":"entry-12225","position":[-792.6589,-115.6893,225.0131],"yaw":-6.00393,"spawnMask":1},{"id":"creature-55107","entityId":"entry-13743","position":[-792.5009,-116.0248,232.3255],"yaw":-4.46804,"spawnMask":1},{"id":"creature-55108","entityId":"entry-13743","position":[-785.5589,-116.0707,226.0436],"yaw":-3.9968,"spawnMask":1},{"id":"creature-55109","entityId":"entry-13743","position":[-790.9359,-116.0095,217.7171],"yaw":-0.174533,"spawnMask":1},{"id":"creature-55111","entityId":"entry-13599","position":[-684.7309,-125.3275,175.0144],"yaw":-3.89208,"spawnMask":1},{"id":"creature-55112","entityId":"entry-13599","position":[-660.7399,-125.3275,146.3653],"yaw":-4.93928,"spawnMask":1},{"id":"creature-55114","entityId":"entry-13599","position":[-642.4479,-125.3275,187.637],"yaw":-4.59022,"spawnMask":1},{"id":"creature-55115","entityId":"entry-13599","position":[-632.2749,-125.4108,219.6523],"yaw":-2.197,"spawnMask":1},{"id":"creature-55116","entityId":"entry-13599","position":[-632.8729,-125.4108,223.2956],"yaw":-2.08147,"spawnMask":1},{"id":"creature-55117","entityId":"entry-13599","position":[-630.2089,-125.4108,217.0876],"yaw":-2.07909,"spawnMask":1},{"id":"creature-55120","entityId":"entry-13599","position":[-628.0959,-125.3275,253.6347],"yaw":-1.78024,"spawnMask":1},{"id":"creature-55122","entityId":"entry-13599","position":[-623.9329,-125.3275,161.8478],"yaw":-3.50811,"spawnMask":1},{"id":"creature-55123","entityId":"entry-13599","position":[-632.1289,-125.4108,258.1357],"yaw":-1.09958,"spawnMask":1},{"id":"creature-55125","entityId":"entry-13599","position":[-556.0669,-125.3275,217.8116],"yaw":-2.07694,"spawnMask":1},{"id":"creature-55126","entityId":"entry-13599","position":[-568.2489,-125.3275,163.0151],"yaw":-5.42797,"spawnMask":1},{"id":"creature-55128","entityId":"entry-13599","position":[-564.7869,-125.4109,113.7884],"yaw":-3.48156,"spawnMask":1},{"id":"creature-55129","entityId":"entry-13599","position":[-550.5909,-125.4108,106.0386],"yaw":-0.733645,"spawnMask":1},{"id":"creature-55130","entityId":"entry-13599","position":[-546.4139,-125.4108,99.9135],"yaw":-0.335294,"spawnMask":1},{"id":"creature-55131","entityId":"entry-13599","position":[-543.6749,-125.4108,99.4925],"yaw":-0.522017,"spawnMask":1},{"id":"creature-55132","entityId":"entry-13599","position":[-545.5149,-125.4108,103.2028],"yaw":-0.51851,"spawnMask":1},{"id":"creature-55166","entityId":"entry-13599","position":[-543.7419,-125.4108,104.3524],"yaw":-0.534915,"spawnMask":1},{"id":"creature-55167","entityId":"entry-12206","position":[-238.0199,-140.001,-42.9813],"yaw":-0.069813,"spawnMask":1},{"id":"creature-55338","entityId":"entry-12206","position":[-104.8726,-157.248,111.8152],"yaw":-4.46804,"spawnMask":1},{"id":"creature-55340","entityId":"entry-12206","position":[-143.2714,-198.965,-21.9333],"yaw":-5.74213,"spawnMask":1},{"id":"creature-55341","entityId":"entry-12206","position":[-87.8532,-156.906,112.849],"yaw":-4.60767,"spawnMask":1},{"id":"creature-55342","entityId":"entry-12201","position":[-94.451,-153.581,230.2299],"yaw":-0.240237,"spawnMask":1},{"id":"creature-55344","entityId":"entry-12206","position":[-139.5609,-138.955,-50.5983],"yaw":-4.45059,"spawnMask":1},{"id":"creature-55345","entityId":"entry-12206","position":[-83.9857,-152.97,32.3257],"yaw":-4.69494,"spawnMask":1},{"id":"creature-55347","entityId":"entry-12206","position":[-122.6408,-138.718,-61.3693],"yaw":-5.32325,"spawnMask":1},{"id":"creature-55348","entityId":"entry-12206","position":[-66.2566,-153.001,27.8207],"yaw":-5.23599,"spawnMask":1},{"id":"creature-55376","entityId":"entry-12207","position":[-343.6699,-160.108,189.0265],"yaw":-2.1298,"spawnMask":1},{"id":"creature-55377","entityId":"entry-12207","position":[-376.1829,-160.85,244.9336],"yaw":-4.24793,"spawnMask":1},{"id":"creature-55381","entityId":"entry-11789","position":[-425.4289,-132.688,345.0457],"yaw":-0.802851,"spawnMask":1},{"id":"creature-55382","entityId":"entry-11789","position":[-416.0019,-130.95,346.3417],"yaw":-1.23918,"spawnMask":1},{"id":"creature-55383","entityId":"entry-11789","position":[-410.0079,-131.017,356.3047],"yaw":-2.7843,"spawnMask":1},{"id":"creature-55384","entityId":"entry-11789","position":[-417.3199,-131.22,350.9987],"yaw":-5.78446,"spawnMask":1},{"id":"creature-55385","entityId":"entry-11789","position":[-421.8469,-131.311,352.2527],"yaw":-3.69712,"spawnMask":1},{"id":"creature-55386","entityId":"entry-11789","position":[-415.6729,-131.017,361.3407],"yaw":-2.48562,"spawnMask":1},{"id":"creature-55388","entityId":"entry-11789","position":[-492.9729,-141.907,333.6077],"yaw":-0.977384,"spawnMask":1},{"id":"creature-55389","entityId":"entry-11789","position":[-498.8439,-141.907,334.8107],"yaw":-5.70723,"spawnMask":1},{"id":"creature-55390","entityId":"entry-11789","position":[-501.1799,-142.347,323.4877],"yaw":-2.96706,"spawnMask":1},{"id":"creature-55424","entityId":"entry-11789","position":[-502.3879,-142.187,329.0977],"yaw":-0.296706,"spawnMask":1},{"id":"creature-55425","entityId":"entry-11789","position":[-493.0489,-142.321,321.4057],"yaw":-0.610865,"spawnMask":1},{"id":"creature-55427","entityId":"entry-11789","position":[-511.3789,-123.0615,369.8077],"yaw":-4.17134,"spawnMask":1},{"id":"creature-55428","entityId":"entry-11789","position":[-440.5259,-123.064,401.6537],"yaw":-0.680678,"spawnMask":1},{"id":"creature-55429","entityId":"entry-11789","position":[-489.5109,-141.907,399.0797],"yaw":-0.226893,"spawnMask":1},{"id":"creature-55430","entityId":"entry-11789","position":[-478.6509,-141.907,399.0337],"yaw":-0.017453,"spawnMask":1},{"id":"creature-55432","entityId":"entry-11789","position":[-480.2749,-142.176,409.7017],"yaw":-5.32325,"spawnMask":1},{"id":"creature-55433","entityId":"entry-11789","position":[-485.2059,-142.061,404.9207],"yaw":-5.07891,"spawnMask":1},{"id":"creature-55434","entityId":"entry-11789","position":[-512.4899,-123.1449,378.0107],"yaw":-1.77473,"spawnMask":1},{"id":"creature-55435","entityId":"entry-11789","position":[-509.9839,-123.1449,384.9657],"yaw":-0.284811,"spawnMask":1},{"id":"creature-55436","entityId":"entry-11789","position":[-518.8609,-123.1449,369.9257],"yaw":-5.21707,"spawnMask":1},{"id":"creature-55437","entityId":"entry-11789","position":[-513.9119,-123.1449,383.8567],"yaw":-6.2066,"spawnMask":1},{"id":"creature-55438","entityId":"entry-11789","position":[-487.6179,-141.975,414.8317],"yaw":-3.66519,"spawnMask":1},{"id":"creature-55441","entityId":"entry-11789","position":[-436.1249,-123.064,406.8437],"yaw":-5.8294,"spawnMask":1},{"id":"creature-55442","entityId":"entry-11789","position":[-430.7379,-123.1711,408.0627],"yaw":-6.1056,"spawnMask":1},{"id":"creature-55443","entityId":"entry-11789","position":[-424.4699,-123.1746,409.0187],"yaw":-3.98254,"spawnMask":1},{"id":"creature-55444","entityId":"entry-11789","position":[-430.4349,-123.1816,402.6047],"yaw":-3.50857,"spawnMask":1},{"id":"creature-55445","entityId":"entry-11789","position":[-430.3259,-123.1627,412.7657],"yaw":-3.1204,"spawnMask":1},{"id":"creature-55446","entityId":"entry-11789","position":[-564.3929,-123.064,403.7027],"yaw":-5.49779,"spawnMask":1},{"id":"creature-55447","entityId":"entry-11789","position":[-558.8199,-123.064,406.7077],"yaw":-3.50811,"spawnMask":1},{"id":"creature-55449","entityId":"entry-11789","position":[-567.2839,-123.064,407.7077],"yaw":-1.01229,"spawnMask":1},{"id":"creature-55450","entityId":"entry-11789","position":[-569.0559,-123.064,401.8767],"yaw":-3.52556,"spawnMask":1},{"id":"creature-55451","entityId":"entry-11789","position":[-556.8069,-123.064,412.2217],"yaw":-0.890118,"spawnMask":1},{"id":"creature-55452","entityId":"entry-11789","position":[-563.8059,-123.064,412.5267],"yaw":-2.3911,"spawnMask":1},{"id":"creature-55453","entityId":"entry-11789","position":[-579.7509,-123.064,355.4807],"yaw":-5.23599,"spawnMask":1},{"id":"creature-55454","entityId":"entry-11789","position":[-583.2149,-123.064,362.1477],"yaw":-2.77507,"spawnMask":1},{"id":"creature-55455","entityId":"entry-11789","position":[-585.2159,-123.064,350.9367],"yaw":-2.32129,"spawnMask":1},{"id":"creature-55456","entityId":"entry-11789","position":[-590.9019,-123.064,365.9787],"yaw":-4.20624,"spawnMask":1},{"id":"creature-55457","entityId":"entry-11789","position":[-594.4749,-123.064,358.7287],"yaw":-0.541052,"spawnMask":1},{"id":"creature-55459","entityId":"entry-12206","position":[-104.283,-198.778,-107.9193],"yaw":-2.11185,"spawnMask":1},{"id":"creature-55461","entityId":"entry-12207","position":[-399.2989,-160.108,56.8273],"yaw":-2.12854,"spawnMask":1},{"id":"creature-55463","entityId":"entry-12206","position":[-116.2697,-137.693,-133.8883],"yaw":-0.698132,"spawnMask":1},{"id":"creature-55464","entityId":"entry-12206","position":[-126.1237,-136.954,-146.1233],"yaw":-1.01229,"spawnMask":1},{"id":"creature-55467","entityId":"entry-12207","position":[-315.2959,-160.108,138.6177],"yaw":-3.50653,"spawnMask":1},{"id":"creature-55468","entityId":"entry-13323","position":[-283.2459,-158.609,48.3477],"yaw":-3.33358,"spawnMask":1},{"id":"creature-55469","entityId":"entry-13323","position":[-294.3359,-158.624,53.3313],"yaw":0,"spawnMask":1},{"id":"creature-55470","entityId":"entry-13323","position":[-285.2209,-158.627,61.2841],"yaw":0,"spawnMask":1},{"id":"creature-56345","entityId":"entry-13323","position":[-334.1859,-139.956,-12.2333],"yaw":-1.0472,"spawnMask":1},{"id":"creature-56347","entityId":"entry-13323","position":[-331.8519,-140.063,-22.4463],"yaw":-5.03973,"spawnMask":1},{"id":"creature-56399","entityId":"entry-13323","position":[-325.6669,-140.059,-26.1913],"yaw":-1.48512,"spawnMask":1},{"id":"creature-56400","entityId":"entry-13323","position":[-291.2809,-160.119,-37.4903],"yaw":-0.226893,"spawnMask":1},{"id":"creature-56401","entityId":"entry-13323","position":[-291.9259,-160.215,-26.6753],"yaw":-2.00713,"spawnMask":1},{"id":"creature-56402","entityId":"entry-13323","position":[-283.3119,-160.174,-30.4183],"yaw":0,"spawnMask":1},{"id":"creature-56468","entityId":"entry-11789","position":[-235.7539,-200.89,-37.7183],"yaw":-1.67552,"spawnMask":1},{"id":"creature-56469","entityId":"entry-13323","position":[-280.9229,-160.174,-65.2273],"yaw":-0.418879,"spawnMask":1},{"id":"creature-56470","entityId":"entry-13323","position":[-291.7669,-160.127,-76.8083],"yaw":-5.02655,"spawnMask":1},{"id":"creature-56471","entityId":"entry-13323","position":[-285.9639,-160.162,-70.1073],"yaw":0,"spawnMask":1},{"id":"creature-56472","entityId":"entry-11789","position":[-229.2719,-200.968,-43.3673],"yaw":-1.81697,"spawnMask":1},{"id":"creature-56473","entityId":"entry-11789","position":[-222.4999,-200.884,-49.2983],"yaw":-3.01942,"spawnMask":1},{"id":"creature-56474","entityId":"entry-11789","position":[-228.5139,-200.971,-32.8783],"yaw":-0.59168,"spawnMask":1},{"id":"creature-56476","entityId":"entry-13323","position":[-305.1779,-160.61,-125.9543],"yaw":-0.558505,"spawnMask":1},{"id":"creature-56477","entityId":"entry-13323","position":[-314.9329,-160.61,-123.4533],"yaw":-4.38078,"spawnMask":1},{"id":"creature-56478","entityId":"entry-11789","position":[-218.9089,-200.577,-43.8873],"yaw":-2.8304,"spawnMask":1},{"id":"creature-56479","entityId":"entry-11789","position":[-216.9079,-200.956,-52.4023],"yaw":-0.525435,"spawnMask":1},{"id":"creature-56481","entityId":"entry-13323","position":[-304.3399,-160.156,-116.5813],"yaw":0,"spawnMask":1},{"id":"creature-56482","entityId":"entry-13323","position":[-216.9389,-137.866,-93.0693],"yaw":-4.55531,"spawnMask":1},{"id":"creature-56483","entityId":"entry-13323","position":[-206.3829,-137.866,-74.4663],"yaw":-5.14872,"spawnMask":1},{"id":"creature-56484","entityId":"entry-13323","position":[-210.1239,-137.866,-82.3823],"yaw":0,"spawnMask":1},{"id":"creature-56489","entityId":"entry-11789","position":[-244.0149,-199.864,-133.4933],"yaw":-1.39626,"spawnMask":1},{"id":"creature-56490","entityId":"entry-13323","position":[-201.5089,-137.949,-85.3583],"yaw":-4.8904,"spawnMask":1},{"id":"creature-56491","entityId":"entry-11789","position":[-327.3309,-169.177,-177.7373],"yaw":-2.32129,"spawnMask":1},{"id":"creature-56492","entityId":"entry-11789","position":[-317.4269,-169.723,-175.6913],"yaw":-0.122173,"spawnMask":1},{"id":"creature-56493","entityId":"entry-11789","position":[-311.6059,-170.996,-181.6183],"yaw":-0.610865,"spawnMask":1},{"id":"creature-56494","entityId":"entry-11789","position":[-244.4579,-200.156,-145.3023],"yaw":-1.50897,"spawnMask":1},{"id":"creature-56495","entityId":"entry-11789","position":[-246.7179,-201.557,-158.1593],"yaw":-4.07627,"spawnMask":1},{"id":"creature-56496","entityId":"entry-11789","position":[-236.3569,-199.689,-140.6843],"yaw":-4.33353,"spawnMask":1},{"id":"creature-56500","entityId":"entry-11789","position":[-251.0909,-200.599,-149.7503],"yaw":-3.03901,"spawnMask":1},{"id":"creature-56506","entityId":"entry-11789","position":[-388.4619,-146.872,-123.4883],"yaw":-1.15192,"spawnMask":1},{"id":"creature-56507","entityId":"entry-11789","position":[-325.3409,-169.087,-197.1063],"yaw":-2.65193,"spawnMask":1},{"id":"creature-56508","entityId":"entry-11789","position":[-327.9629,-168.932,-187.9203],"yaw":-2.91676,"spawnMask":1},{"id":"creature-56509","entityId":"entry-11789","position":[-390.2559,-147.173,-135.5353],"yaw":-6.01,"spawnMask":1},{"id":"creature-56510","entityId":"entry-11789","position":[-399.3879,-147.163,-140.5313],"yaw":-5.66725,"spawnMask":1},{"id":"creature-56511","entityId":"entry-11789","position":[-407.7499,-147.079,-132.9343],"yaw":-4.13682,"spawnMask":1},{"id":"creature-56513","entityId":"entry-11789","position":[-395.2589,-147.15,-115.7693],"yaw":-4.2461,"spawnMask":1},{"id":"creature-56514","entityId":"entry-11789","position":[-408.0039,-147.148,-116.6083],"yaw":-3.52021,"spawnMask":1},{"id":"creature-56521","entityId":"entry-11789","position":[-388.2109,-153.882,-249.9343],"yaw":-1.88496,"spawnMask":1},{"id":"creature-56522","entityId":"entry-11789","position":[-391.4319,-153.882,-240.9313],"yaw":-4.76475,"spawnMask":1},{"id":"creature-56523","entityId":"entry-11789","position":[-399.4169,-153.882,-245.8403],"yaw":-1.53589,"spawnMask":1},{"id":"creature-56524","entityId":"entry-13323","position":[-320.2489,-168.57,-254.5363],"yaw":-0.767945,"spawnMask":1},{"id":"creature-56525","entityId":"entry-11789","position":[-391.9739,-153.965,-258.8213],"yaw":-5.46163,"spawnMask":1},{"id":"creature-56526","entityId":"entry-11789","position":[-401.7179,-153.965,-255.8313],"yaw":-5.57879,"spawnMask":1},{"id":"creature-56527","entityId":"entry-11789","position":[-386.9029,-153.965,-259.1003],"yaw":-6.11241,"spawnMask":1},{"id":"creature-56528","entityId":"entry-13323","position":[-318.4809,-168.57,-242.6443],"yaw":-2.6529,"spawnMask":1},{"id":"creature-56529","entityId":"entry-13323","position":[-309.7229,-168.57,-243.6013],"yaw":0,"spawnMask":1},{"id":"creature-56530","entityId":"entry-13323","position":[-311.0619,-168.653,-251.8293],"yaw":-2.45964,"spawnMask":1},{"id":"creature-56531","entityId":"entry-13323","position":[-286.5059,-189.864,-213.7873],"yaw":-0.087266,"spawnMask":1},{"id":"creature-56532","entityId":"entry-13323","position":[-282.9059,-189.328,-224.0083],"yaw":-5.09636,"spawnMask":1},{"id":"creature-56533","entityId":"entry-13323","position":[-272.7909,-189.328,-210.8063],"yaw":-5.48033,"spawnMask":1},{"id":"creature-56534","entityId":"entry-13323","position":[-283.8679,-189.864,-208.4193],"yaw":0,"spawnMask":1},{"id":"creature-56536","entityId":"entry-12206","position":[70.4591,-218.277,-265.6193],"yaw":-0.087266,"spawnMask":1},{"id":"creature-56538","entityId":"entry-13601","position":[-201.4549,-202.653,-166.6943],"yaw":-6.07375,"spawnMask":1},{"id":"creature-56539","entityId":"entry-13323","position":[-212.7879,-204.016,-234.3353],"yaw":-0.820305,"spawnMask":1},{"id":"creature-56540","entityId":"entry-13323","position":[-219.2169,-204.016,-225.9533],"yaw":-4.38078,"spawnMask":1},{"id":"creature-56541","entityId":"entry-13323","position":[-211.3879,-204.016,-216.0433],"yaw":-1.18682,"spawnMask":1},{"id":"creature-56542","entityId":"entry-13323","position":[-205.1729,-204.504,-223.5513],"yaw":0,"spawnMask":1},{"id":"creature-56543","entityId":"entry-11789","position":[-194.7429,-197.542,-120.2643],"yaw":-5.74213,"spawnMask":1},{"id":"creature-56544","entityId":"entry-11789","position":[-180.2299,-196.847,-109.8103],"yaw":-0.05236,"spawnMask":1},{"id":"creature-56545","entityId":"entry-11789","position":[-188.3469,-197.287,-114.0713],"yaw":-5.2709,"spawnMask":1},{"id":"creature-56546","entityId":"entry-11789","position":[-198.3329,-197.153,-111.1553],"yaw":-1.95477,"spawnMask":1},{"id":"creature-56547","entityId":"entry-11789","position":[-201.2169,-197.496,-99.8323],"yaw":-4.98258,"spawnMask":1},{"id":"creature-88994","entityId":"entry-11789","position":[-184.6329,-196.472,-17.5853],"yaw":-4.01426,"spawnMask":1},{"id":"creature-88995","entityId":"entry-11789","position":[-175.2269,-196.472,-40.7373],"yaw":-3.00197,"spawnMask":1},{"id":"creature-88996","entityId":"entry-11789","position":[-188.6609,-196.472,-30.3653],"yaw":-5.84685,"spawnMask":1},{"id":"creature-88997","entityId":"entry-11789","position":[-168.4339,-196.472,-31.8543],"yaw":-1.72788,"spawnMask":1},{"id":"creature-88998","entityId":"entry-11789","position":[-183.3589,-196.472,-38.2783],"yaw":-4.06662,"spawnMask":1},{"id":"creature-88999","entityId":"entry-11789","position":[-175.4099,-196.434,-15.7693],"yaw":-2.20701,"spawnMask":1},{"id":"creature-89000","entityId":"entry-12207","position":[-121.3354,-233.882,13.6697],"yaw":-3.80482,"spawnMask":1},{"id":"creature-89005","entityId":"entry-12207","position":[-61.7615,-237.782,-91.5363],"yaw":-2.51327,"spawnMask":1},{"id":"creature-89007","entityId":"entry-12207","position":[-81.9747,-236.027,-163.6683],"yaw":-3.4383,"spawnMask":1},{"id":"creature-89008","entityId":"entry-11789","position":[23.9178,-199.434,-119.7643],"yaw":-2.68781,"spawnMask":1},{"id":"creature-89009","entityId":"entry-11789","position":[26.7403,-199.434,-105.7633],"yaw":-2.89725,"spawnMask":1},{"id":"creature-89010","entityId":"entry-11789","position":[28.4099,-199.434,-113.2243],"yaw":-3.52556,"spawnMask":1},{"id":"creature-89011","entityId":"entry-11789","position":[33.7961,-199.434,-104.5363],"yaw":-0.506145,"spawnMask":1},{"id":"creature-89012","entityId":"entry-11789","position":[36.6711,-199.431,-171.9803],"yaw":-4.45059,"spawnMask":1},{"id":"creature-89013","entityId":"entry-11789","position":[38.5921,-199.433,-161.2683],"yaw":-1.8675,"spawnMask":1},{"id":"creature-89014","entityId":"entry-11789","position":[39.1801,-199.431,-167.6333],"yaw":-2.30383,"spawnMask":1},{"id":"creature-89015","entityId":"entry-11789","position":[33.1516,-199.432,-165.5303],"yaw":-3.35103,"spawnMask":1},{"id":"creature-89016","entityId":"entry-11789","position":[38.9461,-199.517,-113.5813],"yaw":-6.03759,"spawnMask":1},{"id":"creature-89017","entityId":"entry-11789","position":[42.9711,-199.516,-167.7553],"yaw":-5.50949,"spawnMask":1},{"id":"creature-89018","entityId":"entry-12203","position":[-423.2339,-88.9136,-38.4183],"yaw":-3.45575,"spawnMask":1},{"id":"creature-89020","entityId":"entry-12207","position":[-40.3619,-235.544,59.7971],"yaw":-3.28122,"spawnMask":1},{"id":"creature-89025","entityId":"entry-13599","position":[-37.3637,-160.222,156.929],"yaw":-0.942478,"spawnMask":1},{"id":"creature-89026","entityId":"entry-13599","position":[-151.5379,-160.171,154.1225],"yaw":-5.49779,"spawnMask":1},{"id":"creature-89029","entityId":"entry-13599","position":[-21.9246,-160.171,205.1216],"yaw":-1.74533,"spawnMask":1},{"id":"creature-89030","entityId":"entry-13599","position":[-167.8449,-160.171,194.0811],"yaw":-4.27606,"spawnMask":1},{"id":"creature-89033","entityId":"entry-13599","position":[-47.749,-160.171,243.279],"yaw":-0.855211,"spawnMask":1},{"id":"creature-89034","entityId":"entry-13599","position":[-157.1012,-160.171,231.8439],"yaw":-2.00713,"spawnMask":1},{"id":"creature-89035","entityId":"entry-13599","position":[-121.383,-160.171,260.9167],"yaw":-2.80998,"spawnMask":1},{"id":"creature-89037","entityId":"entry-13599","position":[-80.2734,-160.171,264.5837],"yaw":-2.32129,"spawnMask":1},{"id":"creature-89040","entityId":"entry-12207","position":[13.9411,-218.903,-248.2123],"yaw":-5.39307,"spawnMask":1},{"id":"creature-89041","entityId":"entry-11789","position":[57.9801,-199.434,-242.4053],"yaw":-4.93928,"spawnMask":1},{"id":"creature-89042","entityId":"entry-11789","position":[51.8511,-199.434,-229.0413],"yaw":-4.36332,"spawnMask":1},{"id":"creature-89043","entityId":"entry-11789","position":[49.9681,-199.434,-238.7883],"yaw":-3.735,"spawnMask":1},{"id":"creature-89044","entityId":"entry-11789","position":[41.6211,-199.434,-233.3473],"yaw":-2.28638,"spawnMask":1},{"id":"creature-89045","entityId":"entry-11789","position":[59.9021,-199.517,-234.5673],"yaw":-2.77572,"spawnMask":1},{"id":"creature-89047","entityId":"entry-11784","position":[66.4621,-199.517,-216.3833],"yaw":-4.37615,"spawnMask":1},{"id":"creature-89052","entityId":"entry-11789","position":[76.8151,-199.434,-187.4863],"yaw":-4.08407,"spawnMask":1},{"id":"creature-89053","entityId":"entry-11789","position":[77.6841,-199.434,-171.9103],"yaw":-1.79769,"spawnMask":1},{"id":"creature-89054","entityId":"entry-11789","position":[75.5151,-199.434,-180.5243],"yaw":-2.21657,"spawnMask":1},{"id":"creature-89055","entityId":"entry-11789","position":[79.1871,-199.434,-192.3743],"yaw":-1.97222,"spawnMask":1},{"id":"creature-89056","entityId":"entry-11789","position":[81.1401,-199.434,-183.5513],"yaw":-0.558505,"spawnMask":1},{"id":"creature-89057","entityId":"entry-11789","position":[44.8951,-199.516,-173.9133],"yaw":-1.83066,"spawnMask":1},{"id":"creature-160510","entityId":"entry-12224","position":[-880.0059,-88.3074,-223.4123],"yaw":-6.02488,"spawnMask":1},{"id":"creature-160511","entityId":"entry-12224","position":[-786.4519,-86.3135,63.1652],"yaw":-3.48941,"spawnMask":1},{"id":"creature-203506","entityId":"entry-12237","position":[-836.1879,-85.3403,72.7604],"yaw":-3.54447,"spawnMask":1}],"roamingPacks":[{"id":"patrol-53990","name":"Celebrian Dryad Patrol","speed":1.15,"pathId":539900,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1111.4029,-66.259,-216.5383],[-1108.5029,-67.7507,-204.0663],[-1091.0929,-70.1779,-198.5133],[-1072.9729,-70.3041,-202.7943],[-1069.4629,-71.8098,-186.8833],[-1062.2999,-74.3797,-164.9213],[-1041.4049,-74.5662,-144.6423],[-1016.2439,-75.0229,-123.8823],[-996.4919,-75.485,-97.0363],[-1014.9139,-75.6544,-79.1383],[-1026.0429,-75.8388,-75.3243],[-1047.2539,-77.827,-91.5423],[-1057.3519,-74.8094,-106.7023],[-1043.4969,-74.8094,-126.9573],[-1047.6939,-74.7269,-154.7483],[-1060.6269,-74.3724,-175.4993],[-1067.5229,-71.0081,-196.5653],[-1075.8229,-68.7914,-217.0743],[-1090.2429,-66.3802,-231.1573],[-1108.9729,-65.3628,-236.2643],[-1114.5729,-65.374,-222.5163]],"members":[{"id":"member","entityId":"entry-11793","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54128","name":"Celebrian Dryad Patrol","speed":1.15,"pathId":541280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-974.4419,-78.504,-184.3853],[-979.7469,-78.4072,-190.5323],[-989.4629,-79.2019,-200.6113],[-982.5199,-78.6574,-194.4083],[-974.6349,-78.5023,-187.4753],[-968.3429,-78.8141,-177.6233],[-963.2149,-77.4637,-167.1883],[-961.8349,-75.4731,-161.4723],[-959.2969,-75.1688,-152.5153],[-954.8489,-75.0261,-136.8233],[-954.1359,-74.8389,-126.3483],[-957.5469,-74.585,-118.9023],[-964.8439,-75.2144,-111.3523],[-974.3159,-75.4206,-104.6213],[-982.8179,-75.6215,-98.5803],[-975.1429,-75.4628,-103.8103],[-964.2549,-75.2134,-110.5603],[-953.9829,-74.6759,-121.6473],[-955.1079,-75.0249,-132.0873],[-958.7459,-75.1123,-144.3693],[-960.8999,-75.1235,-159.3703],[-963.7749,-77.7652,-168.2993],[-965.9199,-78.5242,-174.9623]],"members":[{"id":"member","entityId":"entry-11793","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54326","name":"Sister of Celebras Patrol","speed":1.15,"pathId":543260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1007.1939,-89.4286,-10.4363],[-1002.9129,-91.2753,-23.4943],[-1016.9789,-92.8033,-34.3063],[-1036.6419,-95.1593,-36.7163],[-1052.5429,-96.7913,-45.7173],[-1071.8929,-96.6304,-59.4183],[-1090.1229,-98.9514,-66.7493],[-1100.7029,-101.4177,-82.0953],[-1113.8729,-101.3372,-94.3923],[-1126.1829,-101.3372,-92.6863],[-1134.6729,-101.6858,-80.5813],[-1122.1629,-101.7266,-68.1713],[-1107.5229,-101.1923,-72.2333],[-1095.7129,-98.6402,-62.9573],[-1071.3429,-96.7457,-49.1763],[-1039.7499,-96.3287,-33.7923],[-1008.9809,-91.631,-23.8803],[-1012.0969,-89.2037,-10.1793],[-1023.9159,-88.5416,-4.3493],[-1022.4839,-90.5651,11.0767],[-1009.8869,-90.0799,9.7397],[-1004.0329,-89.8576,-5.1133]],"members":[{"id":"member","entityId":"entry-11794","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54652","name":"Cavern Lurker Patrol","speed":1.15,"pathId":546520,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-797.6579,-86.5967,70.0504],[-741.9649,-86.598,51.8182],[-715.0489,-86.5979,59.4902],[-741.9649,-86.598,51.8182]],"members":[{"id":"member","entityId":"entry-12223","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54733","name":"Putridus Shadowstalker Patrol","speed":1.15,"pathId":547330,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-673.5739,-81.1173,-233.3423],[-688.2349,-81.1173,-204.2413],[-709.6689,-81.1173,-203.2893],[-688.2349,-81.1173,-204.2413]],"members":[{"id":"member","entityId":"entry-11792","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55087","name":"Corruptor Patrol","speed":1.15,"pathId":550870,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-822.0379,-62.1717,-410.5493],[-811.5409,-61.9302,-405.4033],[-805.0669,-62.6637,-394.3503],[-808.7159,-62.2627,-398.8713],[-815.1669,-61.9539,-405.5843],[-822.0719,-62.1581,-409.8563],[-832.1189,-61.909,-412.9073],[-837.5939,-64.6189,-396.4333],[-837.4069,-62.0582,-408.1223],[-827.9219,-62.0557,-414.4803]],"members":[{"id":"member","entityId":"entry-12217","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55098","name":"Primordial Behemoth Patrol","speed":1.15,"pathId":550980,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-363.7509,-89.0936,-23.7733],[-361.8869,-99.32,-3.3443],[-346.4279,-111.9695,24.8437],[-291.3199,-118.8013,37.2987],[-256.4859,-137.502,-6.5413],[-244.2549,-140.1,-51.9263],[-256.4859,-137.502,-6.5413],[-291.3199,-118.8013,37.2987],[-346.4279,-111.9695,24.8437],[-361.8869,-99.32,-3.3443]],"members":[{"id":"member","entityId":"entry-12206","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55118","name":"Stolid Snapjaw Patrol","speed":1.15,"pathId":551180,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-626.9929,-125.4108,221.1783],[-622.5539,-125.4108,244.5965],[-629.3739,-125.4108,263.9747],[-625.2899,-125.4108,227.239],[-634.4469,-125.4108,194.8138],[-640.1759,-125.4108,171.2125],[-649.6599,-125.4108,153.9399],[-664.0619,-125.4108,152.1157],[-666.5659,-125.4108,168.655],[-641.7549,-125.4108,193.25]],"members":[{"id":"member","entityId":"entry-13599","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55458","name":"Thessala Hydra Patrol","speed":1.15,"pathId":554580,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-347.2659,-160.108,172.455],[-380.7539,-160.108,84.9049]],"members":[{"id":"member","entityId":"entry-12207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55462","name":"Thessala Hydra Patrol","speed":1.15,"pathId":554620,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-341.5809,-160.108,88.0846],[-344.8379,-160.107,168.0567]],"members":[{"id":"member","entityId":"entry-12207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55465","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":554650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-315.0909,-158.718,54.0127],[-285.5739,-158.705,54.9196],[-324.6929,-158.717,49.8634],[-313.5199,-159.942,1.7327],[-280.4869,-160.257,-52.8363],[-315.1799,-160.103,6.2977],[-326.3529,-158.717,48.8122]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55471","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":554710,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-266.9069,-130.156,13.5317],[-297.3939,-117.9667,37.3487],[-344.7259,-112.5787,26.0347],[-366.7399,-98.8482,-2.0383],[-365.3129,-88.9971,-31.2753],[-366.1299,-99.0413,-1.7573],[-342.9609,-112.7476,25.9887],[-293.5079,-118.8417,34.2257],[-266.2389,-130.639,12.3527],[-249.8819,-140.473,-38.5073]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-56485","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":564850,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-217.0429,-200.845,-46.8613],[-218.7859,-199.48,-84.8543],[-192.3939,-197.211,-110.6233],[-222.5399,-198.087,-136.9973],[-215.0079,-198.641,-91.7223],[-221.6149,-201.055,-52.4933],[-171.4899,-196.555,-38.6213],[-166.7509,-196.555,-29.0453],[-178.4459,-196.426,-13.5593],[-187.8569,-196.555,-29.9023],[-194.8369,-197.358,-44.0833]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-56501","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":565010,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-243.6319,-201.426,-156.9943],[-213.0719,-203.689,-169.3663],[-220.2859,-204.101,-229.5393],[-277.9339,-189.789,-234.6353],[-223.1679,-204.1,-229.0733],[-215.0139,-203.687,-170.0933]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-56515","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":565150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-379.2899,-146.446,-196.2043],[-395.4629,-147.167,-140.9763],[-387.1899,-147.01,-121.7133],[-404.2499,-147.147,-115.2723],[-412.1869,-147.039,-129.8963],[-398.2179,-147.159,-143.3583],[-384.4009,-145.875,-184.7903],[-391.6929,-153.965,-247.1863],[-316.8979,-168.653,-249.6313],[-323.5179,-169.549,-181.3903],[-318.3309,-168.653,-249.6833],[-385.6779,-153.964,-256.7143]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-88989","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":889890,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-175.5899,-137.775,-121.5163],[-218.4369,-137.775,-128.6753],[-210.2189,-137.95,-84.1363],[-222.7229,-137.774,-128.2493],[-205.4289,-137.774,-131.5403],[-146.1133,-137.776,-112.9513],[-128.9689,-138.757,-60.1513],[-74.7399,-152.943,19.6887],[-95.2579,-157.859,109.0117],[-74.7399,-152.943,19.6887],[-128.9689,-138.757,-60.1513],[-145.5912,-137.775,-108.5183]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-89002","name":"Rotgrip Patrol","speed":1.15,"pathId":890020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-108.6355,-228.652,81.0856],[-104.6605,-232.282,5.1477],[-73.5018,-236.142,-85.7863],[-88.8722,-233.204,-140.0783],[-73.5018,-236.142,-85.7863],[-104.6605,-232.282,5.1477]],"members":[{"id":"member","entityId":"entry-13596","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-160507","name":"Cavern Shambler Patrol","speed":1.15,"pathId":1605070,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-814.3589,-86.5724,67.0679],[-817.4189,-86.5575,60.156],[-807.5689,-86.5958,52.1714],[-812.3559,-86.5813,62.9619],[-805.1599,-86.5957,76.4915],[-817.8059,-86.4892,76.3465],[-810.9199,-86.5867,68.2659],[-823.1409,-86.4707,66.5388],[-803.0139,-86.5976,57.6939],[-801.2529,-86.5976,66.7084],[-810.7619,-86.5895,67.4523],[-800.5969,-86.5957,75.3357]],"members":[{"id":"member","entityId":"entry-12224","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-160508","name":"Cavern Shambler Patrol","speed":1.15,"pathId":1605080,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-698.6539,-86.5979,54.6277],[-709.4479,-86.5979,57.8117],[-720.7459,-86.5979,58.503],[-733.2809,-86.5979,55.2649],[-742.1019,-86.5979,53.117],[-757.3169,-86.5979,57.2821],[-769.3829,-86.5611,62.2837],[-781.7119,-86.2173,63.2457],[-775.0559,-86.3534,63.0482],[-765.9059,-86.598,60.3897],[-748.3869,-86.598,53.555],[-741.4909,-86.598,54.033],[-732.0609,-86.598,56.4029],[-719.4879,-86.598,59.3425],[-700.7199,-86.598,55.0354]],"members":[{"id":"member","entityId":"entry-12224","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-160509","name":"Cavern Shambler Patrol","speed":1.15,"pathId":1605090,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-885.4259,-106.2469,-69.3063],[-880.0399,-106.2469,-63.2913],[-873.4279,-106.2469,-57.5973],[-871.3639,-106.2469,-46.4633],[-872.9089,-106.2469,-37.0873],[-879.8719,-106.3975,-26.5633],[-875.3999,-106.4054,-27.9693],[-872.0539,-106.2469,-35.2403],[-871.0909,-106.2469,-46.0143],[-874.4589,-106.2469,-56.4643]],"members":[{"id":"member","entityId":"entry-12224","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-54445","name":"Noxxion","position":[-1196.9529,-109.0994,-44.3053]},{"id":"creature-54474","name":"Razorlash","position":[-1045.4399,-91.6015,136.8847]},{"id":"creature-54579","name":"Lord Vyletongue","position":[-815.4269,-76.7906,-72.6103]},{"id":"creature-55104","name":"Celebras the Cursed","position":[-792.6589,-115.6893,225.0131]},{"id":"creature-89018","name":"Landslide","position":[-423.2339,-88.9136,-38.4183]},{"id":"creature-56538","name":"Tinkerer Gizlock","position":[-201.4549,-202.653,-166.6943]},{"id":"creature-55342","name":"Princess Theradras","position":[-94.451,-153.581,230.2299]},{"id":"creature-203506","name":"Meshlok the Harvester","position":[-836.1879,-85.3403,72.7604]}],"objectiveOrder":[{"id":"creature-54445","name":"Noxxion","position":[-1196.9529,-109.0994,-44.3053]},{"id":"creature-54474","name":"Razorlash","position":[-1045.4399,-91.6015,136.8847]},{"id":"creature-54579","name":"Lord Vyletongue","position":[-815.4269,-76.7906,-72.6103]},{"id":"creature-55104","name":"Celebras the Cursed","position":[-792.6589,-115.6893,225.0131]},{"id":"creature-89018","name":"Landslide","position":[-423.2339,-88.9136,-38.4183]},{"id":"creature-56538","name":"Tinkerer Gizlock","position":[-201.4549,-202.653,-166.6943]},{"id":"creature-55342","name":"Princess Theradras","position":[-94.451,-153.581,230.2299]},{"id":"creature-203506","name":"Meshlok the Harvester","position":[-836.1879,-85.3403,72.7604]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32886,"id":178908,"map":349,"orientation":-2.04204,"phaseMask":1,"position_x":989.642,"position_y":-392.402,"position_z":-50.3576,"rotation0":0,"rotation1":0,"rotation2":-0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32887,"id":178908,"map":349,"orientation":0,"phaseMask":1,"position_x":1064.95,"position_y":-375.428,"position_z":-36.3821,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32888,"id":178908,"map":349,"orientation":1.50098,"phaseMask":1,"position_x":1041.07,"position_y":-330.69,"position_z":-38.209,"rotation0":0,"rotation1":0,"rotation2":0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32889,"id":178908,"map":349,"orientation":-0.593412,"phaseMask":1,"position_x":951.301,"position_y":-351.813,"position_z":-50.2403,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32890,"id":178908,"map":349,"orientation":-2.21657,"phaseMask":1,"position_x":1083.37,"position_y":-290.819,"position_z":-72.6456,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32891,"id":178561,"map":349,"orientation":-1.53589,"phaseMask":1,"position_x":1060.74,"position_y":-268.217,"position_z":-73.4903,"rotation0":-0.000001,"rotation1":0.000001,"rotation2":-0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32892,"id":178559,"map":349,"orientation":3.0456,"phaseMask":1,"position_x":937.838,"position_y":-378.811,"position_z":-50.3032,"rotation0":0,"rotation1":0,"rotation2":0.998848,"rotation3":0.0479779,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32893,"id":178908,"map":349,"orientation":2.49582,"phaseMask":1,"position_x":1037.18,"position_y":-256.586,"position_z":-72.4103,"rotation0":0,"rotation1":0,"rotation2":0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32894,"id":142144,"map":349,"orientation":0,"phaseMask":1,"position_x":926.314,"position_y":-292.831,"position_z":-49.8022,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32895,"id":178568,"map":349,"orientation":-0.218167,"phaseMask":1,"position_x":1032.63,"position_y":-243.233,"position_z":-72.6557,"rotation0":0,"rotation1":0.000001,"rotation2":-0.108867,"rotation3":0.994056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32896,"id":178569,"map":349,"orientation":-1.87623,"phaseMask":1,"position_x":1007.36,"position_y":-232.888,"position_z":-67.5961,"rotation0":-0.000001,"rotation1":0,"rotation2":-0.806444,"rotation3":0.59131,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32897,"id":178908,"map":349,"orientation":1.22173,"phaseMask":1,"position_x":960.01,"position_y":-259.707,"position_z":-49.0976,"rotation0":0,"rotation1":0,"rotation2":0.573576,"rotation3":0.819152,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32898,"id":178908,"map":349,"orientation":0.994838,"phaseMask":1,"position_x":924.664,"position_y":-231.712,"position_z":-46.6095,"rotation0":0,"rotation1":0,"rotation2":0.477159,"rotation3":0.878817,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32899,"id":178567,"map":349,"orientation":-0.218167,"phaseMask":1,"position_x":1013.67,"position_y":-227.789,"position_z":-67.5961,"rotation0":0,"rotation1":0.000001,"rotation2":-0.108867,"rotation3":0.994056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32900,"id":2040,"map":349,"orientation":-2.11185,"phaseMask":1,"position_x":943.325,"position_y":-215.377,"position_z":-46.5547,"rotation0":0,"rotation1":0,"rotation2":-0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32901,"id":178564,"map":349,"orientation":2.25148,"phaseMask":1,"position_x":1091.48,"position_y":-239.483,"position_z":-75.062,"rotation0":0.000001,"rotation1":0,"rotation2":0.902585,"rotation3":0.430511,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32902,"id":178562,"map":349,"orientation":0.446882,"phaseMask":1,"position_x":1114.76,"position_y":-261.923,"position_z":-78.7819,"rotation0":0.023724,"rotation1":0.021276,"rotation2":0.221053,"rotation3":0.974741,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32903,"id":178566,"map":349,"orientation":-0.218167,"phaseMask":1,"position_x":1039.73,"position_y":-204.988,"position_z":-71.6528,"rotation0":0,"rotation1":0.000001,"rotation2":-0.108867,"rotation3":0.994056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32904,"id":178565,"map":349,"orientation":-2.74889,"phaseMask":1,"position_x":1047.68,"position_y":-204.189,"position_z":-70.4171,"rotation0":0.000001,"rotation1":0,"rotation2":0.980785,"rotation3":-0.19509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32905,"id":178563,"map":349,"orientation":0.445059,"phaseMask":1,"position_x":1077.81,"position_y":-208.096,"position_z":-74.1736,"rotation0":0,"rotation1":0.000001,"rotation2":0.220697,"rotation3":0.975342,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32906,"id":178570,"map":349,"orientation":0.959931,"phaseMask":1,"position_x":1141.01,"position_y":-191.389,"position_z":-79.012,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32907,"id":178908,"map":349,"orientation":0.942478,"phaseMask":1,"position_x":941.809,"position_y":-136.609,"position_z":-61.1079,"rotation0":0,"rotation1":0,"rotation2":0.453991,"rotation3":0.891006,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32908,"id":178908,"map":349,"orientation":1.53589,"phaseMask":1,"position_x":883.578,"position_y":-67.2601,"position_z":-59.2139,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32909,"id":178908,"map":349,"orientation":-2.18166,"phaseMask":1,"position_x":983.297,"position_y":-67.8987,"position_z":-62.0587,"rotation0":0,"rotation1":0,"rotation2":-0.88701,"rotation3":0.461749,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32910,"id":178908,"map":349,"orientation":0.820305,"phaseMask":1,"position_x":960.397,"position_y":-10.6216,"position_z":-62.9832,"rotation0":0,"rotation1":0,"rotation2":0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32911,"id":142144,"map":349,"orientation":1.50098,"phaseMask":1,"position_x":879.252,"position_y":-60.7925,"position_z":-59.1787,"rotation0":0,"rotation1":0,"rotation2":0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32912,"id":142144,"map":349,"orientation":-0.558505,"phaseMask":1,"position_x":731.282,"position_y":-113.686,"position_z":-56.2199,"rotation0":0,"rotation1":0,"rotation2":-0.275637,"rotation3":0.961262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32913,"id":142144,"map":349,"orientation":0.017453,"phaseMask":1,"position_x":618.634,"position_y":-375.951,"position_z":-52.0194,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32914,"id":1734,"map":349,"orientation":0,"phaseMask":1,"position_x":591.887,"position_y":-392.592,"position_z":-52.0194,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32915,"id":142144,"map":349,"orientation":-1.50098,"phaseMask":1,"position_x":716.474,"position_y":-509.132,"position_z":-36.4142,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32916,"id":142144,"map":349,"orientation":0.750492,"phaseMask":1,"position_x":802.402,"position_y":85.6517,"position_z":-86.3652,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930417,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32917,"id":178560,"map":349,"orientation":1.45735,"phaseMask":1,"position_x":650.99,"position_y":74.458,"position_z":-86.8651,"rotation0":0,"rotation1":0,"rotation2":0.665882,"rotation3":0.746057,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32918,"id":2040,"map":349,"orientation":2.30383,"phaseMask":1,"position_x":318.675,"position_y":13.3193,"position_z":-130.733,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32919,"id":142143,"map":349,"orientation":-1.91986,"phaseMask":1,"position_x":317.784,"position_y":163.933,"position_z":-131.715,"rotation0":0,"rotation1":0,"rotation2":-0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32920,"id":142144,"map":349,"orientation":-3.08923,"phaseMask":1,"position_x":347.821,"position_y":249.205,"position_z":-94.2677,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0261783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32921,"id":2040,"map":349,"orientation":1.71042,"phaseMask":1,"position_x":349.508,"position_y":-405.274,"position_z":-124.867,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32922,"id":2047,"map":349,"orientation":-0.523599,"phaseMask":1,"position_x":225.88,"position_y":-381.777,"position_z":-160.314,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":2700,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32923,"id":142143,"map":349,"orientation":-2.14675,"phaseMask":1,"position_x":228.621,"position_y":-358.796,"position_z":-160.849,"rotation0":0,"rotation1":0,"rotation2":-0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32924,"id":2045,"map":349,"orientation":1.95477,"phaseMask":1,"position_x":55.738,"position_y":-123.624,"position_z":-205.301,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32925,"id":2045,"map":349,"orientation":2.60054,"phaseMask":1,"position_x":-8.19321,"position_y":-211.133,"position_z":-207.641,"rotation0":0,"rotation1":0,"rotation2":0.96363,"rotation3":0.267239,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32926,"id":2045,"map":349,"orientation":-1.3439,"phaseMask":1,"position_x":-32.5801,"position_y":-134.583,"position_z":-208.084,"rotation0":0,"rotation1":0,"rotation2":-0.622513,"rotation3":0.782609,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32927,"id":142143,"map":349,"orientation":-2.37365,"phaseMask":1,"position_x":7.35923,"position_y":-12.3294,"position_z":-131.156,"rotation0":0,"rotation1":0,"rotation2":-0.927184,"rotation3":0.374606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32928,"id":1734,"map":349,"orientation":2.35619,"phaseMask":1,"position_x":-157.535,"position_y":-284.373,"position_z":-170.383,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32929,"id":142144,"map":349,"orientation":-2.72271,"phaseMask":1,"position_x":-146.257,"position_y":-268.381,"position_z":-170.419,"rotation0":0,"rotation1":0,"rotation2":-0.978147,"rotation3":0.207914,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":62461,"id":142143,"map":349,"orientation":-1.16937,"phaseMask":1,"position_x":209.111,"position_y":-181.189,"position_z":-131.517,"rotation0":0,"rotation1":0,"rotation2":-0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":62470,"id":142143,"map":349,"orientation":-1.85005,"phaseMask":1,"position_x":-89.0383,"position_y":-389.406,"position_z":-189.896,"rotation0":0,"rotation1":0,"rotation2":-0.798636,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":62471,"id":142143,"map":349,"orientation":0.942477,"phaseMask":1,"position_x":308.052,"position_y":-88.2435,"position_z":-131.01,"rotation0":0,"rotation1":0,"rotation2":0.45399,"rotation3":0.891007,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63112,"id":142144,"map":349,"orientation":1.5708,"phaseMask":1,"position_x":937.457,"position_y":-394.879,"position_z":-50.2743,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63135,"id":142144,"map":349,"orientation":0.977383,"phaseMask":1,"position_x":640.385,"position_y":-101.812,"position_z":-56.1699,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63136,"id":142144,"map":349,"orientation":-0.349065,"phaseMask":1,"position_x":992.133,"position_y":-1.21648,"position_z":-62.5453,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63137,"id":142144,"map":349,"orientation":-1.32645,"phaseMask":1,"position_x":525.289,"position_y":230.219,"position_z":-94.0493,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63146,"id":142144,"map":349,"orientation":-1.58825,"phaseMask":1,"position_x":677.736,"position_y":-382.136,"position_z":-52.0194,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63147,"id":142144,"map":349,"orientation":2.74016,"phaseMask":1,"position_x":828.923,"position_y":-370.214,"position_z":-58.7417,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.199371,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63965,"id":2040,"map":349,"orientation":-0.523598,"phaseMask":1,"position_x":225.88,"position_y":-381.777,"position_z":-160.314,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63966,"id":2040,"map":349,"orientation":1.51844,"phaseMask":1,"position_x":814.429,"position_y":-238.968,"position_z":-74.3798,"rotation0":0,"rotation1":0,"rotation2":0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63967,"id":2040,"map":349,"orientation":-2.47837,"phaseMask":1,"position_x":103.565,"position_y":-257.051,"position_z":-167.439,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63968,"id":2040,"map":349,"orientation":-0.191985,"phaseMask":1,"position_x":719.844,"position_y":-389.394,"position_z":-52.0194,"rotation0":0,"rotation1":0,"rotation2":-0.0958451,"rotation3":0.995396,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63969,"id":2040,"map":349,"orientation":1.23918,"phaseMask":1,"position_x":-93.9523,"position_y":-311.759,"position_z":-170.417,"rotation0":0,"rotation1":0,"rotation2":0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64046,"id":2045,"map":349,"orientation":-0.383971,"phaseMask":1,"position_x":-15.7328,"position_y":-99.223,"position_z":-207.312,"rotation0":0,"rotation1":0,"rotation2":-0.190808,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64047,"id":2045,"map":349,"orientation":3.07177,"phaseMask":1,"position_x":1.16174,"position_y":-258.687,"position_z":-208.415,"rotation0":0,"rotation1":0,"rotation2":0.999391,"rotation3":0.0349043,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/Mauradon":"42cee0ea3bdeeabaddeb2f118cae8be5ae2756ab4b0ec2978eabe6f977ef4b99","patch/World/maps/Mauradon":"5826acde9de47e6748aa7b8bd5425e931ac4b455cf8fe7517062c2bf3202d2b5"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/maraudon/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["33/33 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"ragefire-chasm","title":"Ragefire Chasm","mapId":389,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[13,25]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Ragefire Chasm","theme":"Instanced dungeon","summary":"Fight through Ragefire Chasm, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Ragefire Chasm...","unchartedAreaName":"Uncharted Ragefire Chasm","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":404.928},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/389-orgrimmarinstance/visual.glb","checksum":"81037802c292cddc9cfe3606e90bb27525945f474e2aee41baa0b3f60934db9f","size":3035420,"triangleCount":93703}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/389-orgrimmarinstance/collision.glb","checksum":"7e690b5792ddc9f0e096ea537fd46f5ba999d72497bbd9efb7fd463b2c9a5862","size":762756,"triangleCount":88071}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/389-orgrimmarinstance/navigation.glb","checksum":"479f5bf477d1a5bbbcc1a2de078fcd04dfc086c15069257a71c1ba1e07fb4ecc","size":245956,"triangleCount":18137}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-121.7279,-71.9525,-35.1396],"max":[440.6721,39.7981,416.9012]},"entrance":{"name":"Ragefire Chasm Entrance","footPosition":[-76.7279,-5.8637,91.9272],"forward":[0.9927077551855392,0,-0.12054589497153118],"yaw":1.6916360958719794},"areas":[{"id":"entrance","name":"Ragefire Chasm Entrance","center":[-76.7279,-5.8637,91.9272],"radius":35},{"id":"area-oggleflint","name":"Oggleflint's Encounter","center":[74.6301,-26.8276,145.4599],"radius":42},{"id":"area-taragaman-the-hungerer","name":"Taragaman the Hungerer's Encounter","center":[171.8251,-6.7731,256.8322],"radius":42},{"id":"area-jergosh-the-invoker","name":"Jergosh the Invoker's Encounter","center":[303.8931,-9.8247,315.9712],"radius":42},{"id":"area-bazzalan","name":"Bazzalan's Encounter","center":[311.9491,19.7981,252.7922],"radius":42}],"entities":{"entry-11320":{"id":"entry-11320","kind":"mob","name":"Earthborer","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18070","name":"Earthborer Acid","spellId":18070,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6671,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11010-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1885,"labelHeight":0.7785,"markerRadius":1.5392}}},"entry-11321":{"id":"entry-11321","kind":"mob","name":"Molten Elemental","combat":{"level":13,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-2075-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1656,"labelHeight":3.6208,"markerRadius":1.7178}}},"entry-11319":{"id":"entry-11319","kind":"mob","name":"Ragefire Shaman","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11610-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.7502,"markerRadius":0.65}}},"entry-11318":{"id":"entry-11318","kind":"mob","name":"Ragefire Trogg","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4014,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11609-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0503,"markerRadius":0.65}}},"entry-11517":{"id":"entry-11517","kind":"boss","name":"Oggleflint","title":"Dungeon Boss","hasLoot":true,"combat":{"level":16,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":7903,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11611-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3504,"markerRadius":0.65}}},"entry-11322":{"id":"entry-11322","kind":"mob","name":"Searing Blade Cultist","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18266","name":"Curse of Agony","spellId":18266,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4908,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11434-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-11323":{"id":"entry-11323","kind":"mob","name":"Searing Blade Enforcer","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8242","name":"Shield Slam","spellId":8242,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6353,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8242","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11430-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-11324":{"id":"entry-11324","kind":"mob","name":"Searing Blade Warlock","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-20791","name":"Shadow Bolt","spellId":20791,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5555,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11438-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-11520":{"id":"entry-11520","kind":"boss","name":"Taragaman the Hungerer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":16,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11970","name":"Fire Nova","spellId":11970,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4746,"damageMultiplier":0.82,"radius":11},{"id":"spell-18072","name":"Uppercut","spellId":18072,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4746,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-7970-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0115,"labelHeight":6.5047,"markerRadius":0.9622}}},"entry-11518":{"id":"entry-11518","kind":"boss","name":"Jergosh the Invoker","title":"Dungeon Boss","hasLoot":true,"combat":{"level":16,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5094,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11429-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-11519":{"id":"entry-11519","kind":"boss","name":"Bazzalan","title":"Dungeon Boss","hasLoot":true,"combat":{"level":16,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6713,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-2007-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0048,"labelHeight":3.0953,"markerRadius":0.8912}}}},"staticSpawns":[{"id":"creature-38041","entityId":"entry-11320","position":[-27.8881,-9.3154,78.9827],"yaw":-1.70311,"spawnMask":1},{"id":"creature-38042","entityId":"entry-11321","position":[-36.4575,-9.7967,64.6609],"yaw":-0.809754,"spawnMask":1},{"id":"creature-38043","entityId":"entry-11320","position":[-56.9314,-9.8041,56.5779],"yaw":-3.57792,"spawnMask":1},{"id":"creature-38044","entityId":"entry-11320","position":[-2.3057,-6.5109,73.918],"yaw":-2.57425,"spawnMask":1},{"id":"creature-38045","entityId":"entry-11320","position":[-49.1145,-9.3941,44.5916],"yaw":-4.06767,"spawnMask":1},{"id":"creature-38046","entityId":"entry-11320","position":[33.4021,-18.0685,69.0898],"yaw":-5.36449,"spawnMask":1},{"id":"creature-38047","entityId":"entry-11320","position":[56.2171,-21.2864,71.5894],"yaw":-3.7001,"spawnMask":1},{"id":"creature-38048","entityId":"entry-11320","position":[22.8883,-5.4329,152.0913],"yaw":-1.72232,"spawnMask":1},{"id":"creature-38049","entityId":"entry-11319","position":[63.8861,-41.0816,102.9001],"yaw":-5.37443,"spawnMask":1},{"id":"creature-38050","entityId":"entry-11318","position":[84.3501,-45.2945,85.0223],"yaw":-5.39606,"spawnMask":1},{"id":"creature-42629","entityId":"entry-11319","position":[72.8201,-46.4382,48.9671],"yaw":-2.6529,"spawnMask":1},{"id":"creature-43579","entityId":"entry-11318","position":[75.2651,-45.8089,54.2854],"yaw":-2.93215,"spawnMask":1},{"id":"creature-43580","entityId":"entry-11319","position":[68.9451,-42.7714,88.1326],"yaw":-0.715585,"spawnMask":1},{"id":"creature-43581","entityId":"entry-11318","position":[69.3791,-41.2131,100.5636],"yaw":-0.975298,"spawnMask":1},{"id":"creature-43582","entityId":"entry-11319","position":[74.7631,-27.174,107.1911],"yaw":-5.74279,"spawnMask":1},{"id":"creature-43583","entityId":"entry-11318","position":[79.5351,-28.6137,110.6566],"yaw":-2.53152,"spawnMask":1},{"id":"creature-44184","entityId":"entry-11321","position":[21.6861,-6.0066,160.9364],"yaw":-5.00078,"spawnMask":1},{"id":"creature-48637","entityId":"entry-11319","position":[89.6351,-45.8731,79.9047],"yaw":-4.35569,"spawnMask":1},{"id":"creature-48638","entityId":"entry-11318","position":[89.2101,-47.1477,63.2421],"yaw":-2.21657,"spawnMask":1},{"id":"creature-48639","entityId":"entry-11319","position":[101.4981,-45.857,41.3436],"yaw":-1.31717,"spawnMask":1},{"id":"creature-48640","entityId":"entry-11318","position":[87.8361,-47.4579,41.6962],"yaw":-0.041957,"spawnMask":1},{"id":"creature-48642","entityId":"entry-11320","position":[95.6241,-17.6395,120.0733],"yaw":-0.190191,"spawnMask":1},{"id":"creature-48643","entityId":"entry-11319","position":[75.1231,-26.8775,133.9415],"yaw":-3.74643,"spawnMask":1},{"id":"creature-48644","entityId":"entry-11517","position":[74.6301,-26.8276,145.4599],"yaw":-4.39823,"spawnMask":1},{"id":"creature-48645","entityId":"entry-11318","position":[81.1191,-26.5906,134.7148],"yaw":-2.3911,"spawnMask":1},{"id":"creature-48646","entityId":"entry-11321","position":[38.4261,-6.7143,158.7967],"yaw":-5.17827,"spawnMask":1},{"id":"creature-48647","entityId":"entry-11318","position":[127.4911,-51.247,36.9488],"yaw":-1.13289,"spawnMask":1},{"id":"creature-48649","entityId":"entry-11318","position":[131.8051,-49.7001,105.5046],"yaw":-3.33479,"spawnMask":1},{"id":"creature-48650","entityId":"entry-11318","position":[110.4751,-44.8329,109.5463],"yaw":-5.4162,"spawnMask":1},{"id":"creature-48651","entityId":"entry-11318","position":[156.3631,-49.3354,46.9638],"yaw":-4.95529,"spawnMask":1},{"id":"creature-48652","entityId":"entry-11319","position":[138.1521,-49.8281,99.4969],"yaw":-4.81248,"spawnMask":1},{"id":"creature-48653","entityId":"entry-11318","position":[165.0671,-44.2943,66.3996],"yaw":-1.3439,"spawnMask":1},{"id":"creature-48654","entityId":"entry-11318","position":[165.7381,-44.6451,75.1824],"yaw":-5.07891,"spawnMask":1},{"id":"creature-48656","entityId":"entry-11318","position":[144.7511,-49.8236,101.631],"yaw":-4.29193,"spawnMask":1},{"id":"creature-48657","entityId":"entry-11319","position":[193.8121,-48.6322,78.7191],"yaw":-5.02655,"spawnMask":1},{"id":"creature-48658","entityId":"entry-11318","position":[193.6921,-48.8725,62.3448],"yaw":-0.279253,"spawnMask":1},{"id":"creature-48659","entityId":"entry-11318","position":[188.8631,-51.9525,100.9829],"yaw":-0.762733,"spawnMask":1},{"id":"creature-48660","entityId":"entry-11318","position":[189.2981,-48.6322,76.8529],"yaw":-4.76475,"spawnMask":1},{"id":"creature-48661","entityId":"entry-11318","position":[167.7961,-49.5472,98.7157],"yaw":-0.060824,"spawnMask":1},{"id":"creature-48662","entityId":"entry-11319","position":[180.9681,-48.483,67.8631],"yaw":-2.17095,"spawnMask":1},{"id":"creature-48663","entityId":"entry-11318","position":[182.5131,-50.1309,40.2954],"yaw":-1.43574,"spawnMask":1},{"id":"creature-48664","entityId":"entry-11321","position":[179.1721,-38.051,113.9069],"yaw":-4.56215,"spawnMask":1},{"id":"creature-48665","entityId":"entry-11318","position":[204.0121,-48.3803,43.4177],"yaw":-1.58825,"spawnMask":1},{"id":"creature-48666","entityId":"entry-11318","position":[197.2091,-48.6322,74.8666],"yaw":-5.11381,"spawnMask":1},{"id":"creature-48667","entityId":"entry-11318","position":[196.3621,-48.3803,46.744],"yaw":-2.26893,"spawnMask":1},{"id":"creature-48668","entityId":"entry-11319","position":[197.1711,-49.925,9.8604],"yaw":-4.87834,"spawnMask":1},{"id":"creature-48670","entityId":"entry-11319","position":[207.9841,-48.9559,57.5682],"yaw":-3.31393,"spawnMask":1},{"id":"creature-48671","entityId":"entry-11319","position":[198.9091,-48.3803,42.3472],"yaw":-2.04204,"spawnMask":1},{"id":"creature-48672","entityId":"entry-11318","position":[212.6041,-48.4382,85.865],"yaw":-3.38594,"spawnMask":1},{"id":"creature-48673","entityId":"entry-11318","position":[217.8941,-48.9137,59.6643],"yaw":-0.231919,"spawnMask":1},{"id":"creature-48674","entityId":"entry-11318","position":[191.2781,-49.82,14.1759],"yaw":-2.57623,"spawnMask":1},{"id":"creature-48675","entityId":"entry-11320","position":[199.6001,-38.0209,115.4036],"yaw":-5.8991,"spawnMask":1},{"id":"creature-48676","entityId":"entry-11321","position":[135.6401,-1.9684,162.6046],"yaw":-5.91302,"spawnMask":1},{"id":"creature-48677","entityId":"entry-11318","position":[227.5941,-48.4811,78.3394],"yaw":-2.53073,"spawnMask":1},{"id":"creature-48678","entityId":"entry-11318","position":[233.3961,-48.1981,77.6196],"yaw":-1.22173,"spawnMask":1},{"id":"creature-48679","entityId":"entry-11320","position":[223.6451,-35.5506,114.3006],"yaw":-1.92697,"spawnMask":1},{"id":"creature-48680","entityId":"entry-11321","position":[51.2431,-9.238,170.7084],"yaw":-3.13162,"spawnMask":1},{"id":"creature-48681","entityId":"entry-11321","position":[103.7361,-9.9194,182.0414],"yaw":-0.992464,"spawnMask":1},{"id":"creature-48682","entityId":"entry-11321","position":[125.7031,-1.8848,166.9168],"yaw":-0.541052,"spawnMask":1},{"id":"creature-48683","entityId":"entry-11321","position":[72.0231,-9.002,185.8973],"yaw":-3.0239,"spawnMask":1},{"id":"creature-48684","entityId":"entry-11320","position":[52.1941,-9.3439,186.8433],"yaw":-5.45818,"spawnMask":1},{"id":"creature-48685","entityId":"entry-11321","position":[38.2861,-8.1662,183.1079],"yaw":-3.19314,"spawnMask":1},{"id":"creature-48686","entityId":"entry-11321","position":[54.9881,-9.907,182.2914],"yaw":-6.0452,"spawnMask":1},{"id":"creature-48687","entityId":"entry-11322","position":[137.0901,-12.8757,192.6873],"yaw":-3.58789,"spawnMask":1},{"id":"creature-48688","entityId":"entry-11323","position":[150.5361,-12.9588,194.0309],"yaw":-5.93412,"spawnMask":1},{"id":"creature-48689","entityId":"entry-11322","position":[120.9661,-12.6542,200.9663],"yaw":-5.48868,"spawnMask":1},{"id":"creature-48690","entityId":"entry-11323","position":[130.2671,-13.4949,206.1604],"yaw":-4.40747,"spawnMask":1},{"id":"creature-48691","entityId":"entry-11323","position":[122.4291,-12.3152,215.2542],"yaw":-4.36332,"spawnMask":1},{"id":"creature-48692","entityId":"entry-11322","position":[196.3361,-12.9528,198.7356],"yaw":-1.39626,"spawnMask":1},{"id":"creature-48693","entityId":"entry-11324","position":[188.5101,-12.9572,201.6381],"yaw":-3.9619,"spawnMask":1},{"id":"creature-48694","entityId":"entry-11323","position":[146.3821,-12.9588,201.2956],"yaw":-5.42797,"spawnMask":1},{"id":"creature-48695","entityId":"entry-11323","position":[130.3001,-13.0237,214.1362],"yaw":-5.32325,"spawnMask":1},{"id":"creature-48696","entityId":"entry-11323","position":[135.1401,-13.4188,202.1036],"yaw":-3.84374,"spawnMask":1},{"id":"creature-48697","entityId":"entry-11321","position":[12.8276,4.5794,204.1104],"yaw":-2.99045,"spawnMask":1},{"id":"creature-48698","entityId":"entry-11321","position":[1.7816,4.6479,196.7045],"yaw":-2.48512,"spawnMask":1},{"id":"creature-48699","entityId":"entry-11323","position":[126.0461,-13.1603,257.9732],"yaw":-0.907571,"spawnMask":1},{"id":"creature-48700","entityId":"entry-11323","position":[126.2761,-13.1603,265.7622],"yaw":-5.51524,"spawnMask":1},{"id":"creature-48701","entityId":"entry-11322","position":[114.6031,-13.1603,259.9712],"yaw":-2.9147,"spawnMask":1},{"id":"creature-48702","entityId":"entry-11324","position":[110.7301,-13.2436,266.8972],"yaw":-2.14356,"spawnMask":1},{"id":"creature-48703","entityId":"entry-11323","position":[184.5411,-12.9605,212.9312],"yaw":-3.85718,"spawnMask":1},{"id":"creature-48704","entityId":"entry-11323","position":[194.4481,-12.9598,217.5042],"yaw":-4.76475,"spawnMask":1},{"id":"creature-48705","entityId":"entry-11322","position":[192.2901,-12.968,207.3462],"yaw":-2.75762,"spawnMask":1},{"id":"creature-48706","entityId":"entry-11520","position":[171.8251,-6.7731,256.8322],"yaw":-4.28461,"spawnMask":1},{"id":"creature-48708","entityId":"entry-11323","position":[210.6681,-13.3225,250.6032],"yaw":-2.44346,"spawnMask":1},{"id":"creature-48709","entityId":"entry-11324","position":[224.1491,-13.1532,260.7722],"yaw":-3.14651,"spawnMask":1},{"id":"creature-48710","entityId":"entry-11322","position":[223.9891,-13.027,253.7032],"yaw":-2.2928,"spawnMask":1},{"id":"creature-48711","entityId":"entry-11323","position":[210.8441,-13.3486,259.2482],"yaw":-3.52556,"spawnMask":1},{"id":"creature-48712","entityId":"entry-11323","position":[164.4991,-12.3822,299.5982],"yaw":-0.645772,"spawnMask":1},{"id":"creature-48713","entityId":"entry-11323","position":[157.2151,-12.9428,297.8322],"yaw":-1.79769,"spawnMask":1},{"id":"creature-48714","entityId":"entry-11322","position":[227.2271,-13.1456,311.6792],"yaw":-2.83371,"spawnMask":1},{"id":"creature-48715","entityId":"entry-11324","position":[211.9951,-13.0421,322.8202],"yaw":-2.53073,"spawnMask":1},{"id":"creature-48716","entityId":"entry-11324","position":[226.2551,-12.8089,305.8512],"yaw":-3.08923,"spawnMask":1},{"id":"creature-48717","entityId":"entry-11322","position":[206.6591,-13.0421,317.0432],"yaw":-5.48262,"spawnMask":1},{"id":"creature-48718","entityId":"entry-11322","position":[221.7181,-13.4387,303.6102],"yaw":-1.26676,"spawnMask":1},{"id":"creature-48719","entityId":"entry-11322","position":[151.4771,-13.0055,319.9302],"yaw":-1.76312,"spawnMask":1},{"id":"creature-48720","entityId":"entry-11322","position":[156.4761,-12.8185,313.3442],"yaw":-5.65487,"spawnMask":1},{"id":"creature-48721","entityId":"entry-11324","position":[158.2491,-12.9472,318.8112],"yaw":-5.09528,"spawnMask":1},{"id":"creature-48722","entityId":"entry-11322","position":[202.9051,-13.0421,326.5682],"yaw":-0.090169,"spawnMask":1},{"id":"creature-48723","entityId":"entry-11322","position":[236.2281,-11.7704,330.9752],"yaw":-4.62512,"spawnMask":1},{"id":"creature-48724","entityId":"entry-11324","position":[243.6381,-10.1955,329.3802],"yaw":-4.07439,"spawnMask":1},{"id":"creature-48725","entityId":"entry-11323","position":[256.8641,-7.9398,317.3832],"yaw":-0.820305,"spawnMask":1},{"id":"creature-48726","entityId":"entry-11322","position":[228.3221,-1.0772,357.8392],"yaw":-1.22761,"spawnMask":1},{"id":"creature-48727","entityId":"entry-11322","position":[220.3741,-2.8261,363.3502],"yaw":-3.12128,"spawnMask":1},{"id":"creature-48728","entityId":"entry-11322","position":[267.2651,-9.5114,314.2182],"yaw":-0.777513,"spawnMask":1},{"id":"creature-48729","entityId":"entry-11323","position":[248.9571,0.4687,354.3072],"yaw":-0.226893,"spawnMask":1},{"id":"creature-48730","entityId":"entry-11323","position":[246.0331,0.4705,363.3892],"yaw":-5.21853,"spawnMask":1},{"id":"creature-48731","entityId":"entry-11323","position":[263.4431,-8.2915,331.0042],"yaw":-5.98648,"spawnMask":1},{"id":"creature-48732","entityId":"entry-11322","position":[273.7251,-9.4136,320.7412],"yaw":-4.62512,"spawnMask":1},{"id":"creature-48733","entityId":"entry-11322","position":[269.3971,3.9998,363.1702],"yaw":-3.64774,"spawnMask":1},{"id":"creature-48734","entityId":"entry-11322","position":[299.3521,7.1297,371.9012],"yaw":-3.80391,"spawnMask":1},{"id":"creature-48735","entityId":"entry-11322","position":[294.6711,6.9289,360.9932],"yaw":-1.40766,"spawnMask":1},{"id":"creature-48736","entityId":"entry-11324","position":[302.8781,7.1297,363.0262],"yaw":-5.98416,"spawnMask":1},{"id":"creature-48737","entityId":"entry-11322","position":[296.4381,-9.8247,317.9132],"yaw":-2.00713,"spawnMask":1},{"id":"creature-48738","entityId":"entry-11324","position":[312.2041,7.1297,346.3682],"yaw":-4.5914,"spawnMask":1},{"id":"creature-48739","entityId":"entry-11322","position":[288.0151,-10.2183,285.8082],"yaw":-0.722725,"spawnMask":1},{"id":"creature-48740","entityId":"entry-11518","position":[303.8931,-9.8247,315.9712],"yaw":-5.91667,"spawnMask":1},{"id":"creature-48741","entityId":"entry-11322","position":[301.2091,-9.8247,307.9872],"yaw":-4.50295,"spawnMask":1},{"id":"creature-48742","entityId":"entry-11322","position":[327.5181,10.9658,322.9272],"yaw":-0.794809,"spawnMask":1},{"id":"creature-48743","entityId":"entry-11322","position":[314.1201,7.1297,366.4762],"yaw":-3.08605,"spawnMask":1},{"id":"creature-48744","entityId":"entry-11324","position":[294.2721,-10.181,287.1822],"yaw":-1.02974,"spawnMask":1},{"id":"creature-48745","entityId":"entry-11322","position":[294.1421,-10.0313,280.4422],"yaw":-3.50908,"spawnMask":1},{"id":"creature-48746","entityId":"entry-11322","position":[319.1051,7.1297,351.0092],"yaw":-2.50107,"spawnMask":1},{"id":"creature-48747","entityId":"entry-11323","position":[332.0111,18.5544,288.1312],"yaw":-1.91986,"spawnMask":1},{"id":"creature-48748","entityId":"entry-11323","position":[339.4461,18.685,284.0892],"yaw":-1.36136,"spawnMask":1},{"id":"creature-48749","entityId":"entry-11322","position":[312.2391,19.7148,263.3502],"yaw":-0.844909,"spawnMask":1},{"id":"creature-48750","entityId":"entry-11519","position":[311.9491,19.7981,252.7922],"yaw":-2.51327,"spawnMask":1},{"id":"creature-48751","entityId":"entry-11322","position":[323.3911,19.7981,257.5752],"yaw":-4.67748,"spawnMask":1}],"roamingPacks":[{"id":"patrol-48648","name":"Ragefire Trogg Patrol","speed":1.15,"pathId":486480,"formationSource":"database-solo","spawnMask":1,"waypoints":[[108.5931,-32.4544,74.6801],[148.3011,-43.1818,72.0825],[161.4571,-43.6839,70.3805],[202.3911,-48.8302,64.7349],[212.3561,-48.83,52.6162],[165.7651,-44.7164,69.9732],[120.9411,-34.1207,71.4251],[76.5361,-23.3467,72.8719],[102.8611,-31.6524,77.0588]],"members":[{"id":"member","entityId":"entry-11318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48655","name":"Ragefire Trogg Patrol","speed":1.15,"pathId":486550,"formationSource":"database-solo","spawnMask":1,"waypoints":[[142.5281,-49.8269,90.8128],[144.7601,-49.8269,95.0261],[204.6321,-50.5721,97.8191],[214.4741,-47.9748,83.0585],[191.4401,-51.9046,100.4275],[143.8931,-49.828,95.5884]],"members":[{"id":"member","entityId":"entry-11318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48669","name":"Ragefire Shaman Patrol","speed":1.15,"pathId":486690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[214.8261,-48.5471,32.8148],[211.4791,-49.925,15.3884],[187.9501,-49.3123,14.3049],[181.2811,-50.026,44.518],[159.6391,-49.1553,45.6113],[121.5781,-50.0423,32.6995],[151.8051,-49.3101,41.8457],[167.4911,-49.8683,48.5126],[182.5251,-50.0708,42.4315],[187.8841,-49.3455,13.8625],[209.3381,-49.9249,13.5923]],"members":[{"id":"member","entityId":"entry-11319","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48707","name":"Searing Blade Enforcer Patrol","speed":1.15,"pathId":487070,"formationSource":"database-solo","spawnMask":1,"waypoints":[[190.6011,-7.0192,257.2132],[202.9611,-10.2546,255.7462],[210.1561,-13.4549,254.8932],[202.9611,-10.2546,255.7462],[190.6011,-7.0192,257.2132],[174.9681,-6.593,246.9492],[152.1261,-7.0682,259.8682],[139.8161,-9.4992,261.6042],[126.5821,-13.2683,262.1552],[139.8161,-9.4992,261.6042],[152.1261,-7.0682,259.8682],[167.9711,-6.5754,271.7742]],"members":[{"id":"member","entityId":"entry-11323","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-48644","name":"Oggleflint","position":[74.6301,-26.8276,145.4599]},{"id":"creature-48706","name":"Taragaman the Hungerer","position":[171.8251,-6.7731,256.8322]},{"id":"creature-48740","name":"Jergosh the Invoker","position":[303.8931,-9.8247,315.9712]},{"id":"creature-48750","name":"Bazzalan","position":[311.9491,19.7981,252.7922]}],"objectiveOrder":[{"id":"creature-48644","name":"Oggleflint","position":[74.6301,-26.8276,145.4599]},{"id":"creature-48706","name":"Taragaman the Hungerer","position":[171.8251,-6.7731,256.8322]},{"id":"creature-48740","name":"Jergosh the Invoker","position":[303.8931,-9.8247,315.9712]},{"id":"creature-48750","name":"Bazzalan","position":[311.9491,19.7981,252.7922]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":28517,"id":175290,"map":389,"orientation":2.87056,"phaseMask":1,"position_x":25.4365,"position_y":6.90505,"position_z":11.0928,"rotation0":0.0233526,"rotation1":0.0023613,"rotation2":0.990576,"rotation3":0.13494,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35577,"id":175294,"map":389,"orientation":2.36492,"phaseMask":1,"position_x":51.6565,"position_y":38.0719,"position_z":-8.68831,"rotation0":0,"rotation1":0,"rotation2":0.92554,"rotation3":0.378649,"spawnMask":1,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35578,"id":175288,"map":389,"orientation":2.7838,"phaseMask":1,"position_x":17.9346,"position_y":52.2161,"position_z":-11.1568,"rotation0":0,"rotation1":0,"rotation2":0.98404,"rotation3":0.177946,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35579,"id":175292,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":39.1689,"position_y":52.8595,"position_z":-3.46941,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35580,"id":175307,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":62.3991,"position_y":61.4202,"position_z":-9.25621,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35581,"id":175305,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":2.43144,"position_y":65.4367,"position_z":-9.98579,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35582,"id":175293,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":1.82074,"position_y":32.2247,"position_z":-11.459,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35583,"id":175308,"map":389,"orientation":-0.610865,"phaseMask":1,"position_x":5.65531,"position_y":68.3387,"position_z":-9.77679,"rotation0":0,"rotation1":0,"rotation2":-0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35584,"id":175291,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":59.6263,"position_y":56.4047,"position_z":-8.96765,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35585,"id":175287,"map":389,"orientation":2.7838,"phaseMask":1,"position_x":66.6137,"position_y":34.3891,"position_z":-8.68421,"rotation0":0,"rotation1":0,"rotation2":0.98404,"rotation3":0.177946,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35586,"id":175289,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":42.1618,"position_y":8.73129,"position_z":10.9549,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35587,"id":175298,"map":389,"orientation":2.02458,"phaseMask":1,"position_x":-4.42081,"position_y":120.719,"position_z":12.2467,"rotation0":0,"rotation1":0,"rotation2":0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35588,"id":175310,"map":389,"orientation":-2.54818,"phaseMask":1,"position_x":13.7698,"position_y":100.689,"position_z":-1.96314,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35589,"id":182024,"map":389,"orientation":-1.29154,"phaseMask":1,"position_x":-370.133,"position_y":162.519,"position_z":-21.1299,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/OrgrimmarInstance":"d7902c57f230e172a480cbc3be415489a6718b793674904ca3b73c6e2815b2bd","patch/World/maps/OrgrimmarInstance":"a25d78ffa0b5ad573b9b46709375dae8df6e335f316e0f2ea11707428f22ccd1"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/ragefire-chasm/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["11/11 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"dire-maul","title":"Dire Maul","mapId":429,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[50,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Dire Maul","theme":"Instanced dungeon","summary":"Fight through Dire Maul, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Dire Maul...","unchartedAreaName":"Uncharted Dire Maul","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1410.2315},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/429-diremaul/visual.glb","checksum":"51910d8ccaadd84299620cdbed2934e770ea0f2c2858dea8a0625daaed3c64ae","size":7937728,"triangleCount":166505}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/429-diremaul/collision.glb","checksum":"90a73cfc0221c68f6416227414f38dbc80045548cfb316ca227921dbb5ce5866","size":1284572,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/429-diremaul/navigation.glb","checksum":"53cbf4381ae47fe2d69a2c08318df7d7fa6b08ace81d6e981a56280f83764405","size":583284,"triangleCount":48905}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-955.542,-161.7118,-1570.874],"max":[223.418,38.7323,387.7808]},"entrance":{"name":"Dire Maul Entrance","footPosition":[-44.5229,-24.4618,-915.037],"forward":[0.267368831799124,0,0.9635942651253024],"yaw":0.27066141600957744},"areas":[{"id":"entrance","name":"Dire Maul Entrance","center":[-44.5229,-24.4618,-915.037],"radius":35},{"id":"area-lord-hel-nurath","name":"Lord Hel'nurath's Encounter","center":[115.657,-4.6998,-133.6709],"radius":42},{"id":"area-zevrim-thornhoof","name":"Zevrim Thornhoof's Encounter","center":[34.91,-59.6283,-1208.215],"radius":42},{"id":"area-hydrospawn","name":"Hydrospawn's Encounter","center":[-4.6519,-81.7038,-1198.622],"radius":42},{"id":"area-lethtendris","name":"Lethtendris's Encounter","center":[5.3776,-5.3319,-1201.341],"radius":42},{"id":"area-illyanna-ravenoak","name":"Illyanna Ravenoak's Encounter","center":[84.2739,6.8653,-216.257],"radius":42},{"id":"area-magister-kalendris","name":"Magister Kalendris's Encounter","center":[-33.213,-26.0603,-184.663],"radius":42},{"id":"area-immol-thar","name":"Immol'thar's Encounter","center":[38.0077,-51.2023,52.225],"radius":42},{"id":"area-guard-mol-dar","name":"Guard Mol'dar's Encounter","center":[-410.784,-46.3078,-763.3654],"radius":42},{"id":"area-guard-fengus","name":"Guard Fengus's Encounter","center":[-356.868,-10.096,-501.909],"radius":42},{"id":"area-guard-slip-kik","name":"Guard Slip'kik's Encounter","center":[-550.453,-47.0683,-226.49],"radius":42},{"id":"area-captain-kromcrush","name":"Captain Kromcrush's Encounter","center":[-627.663,7.7129,-278.494],"radius":42},{"id":"area-king-gordok","name":"King Gordok's Encounter","center":[-828.147,15.5682,-279.464],"radius":42}],"entities":{"entry-11467":{"id":"entry-11467","kind":"mob","name":"Tsu'zee","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-12540","name":"Gouge","spellId":12540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4458,"damageMultiplier":1.12},{"id":"spell-14873","name":"Sinister Strike","spellId":14873,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4458,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11250-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":2.9858,"markerRadius":0.65}}},"entry-14358":{"id":"entry-14358","kind":"mob","name":"Shen'dralar Ancient","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14393-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":2.9858,"markerRadius":0.65}}},"entry-14366":{"id":"entry-14366","kind":"mob","name":"Warpwood Spores","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"plant","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11686-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-14368":{"id":"entry-14368","kind":"mob","name":"Lorekeeper Lydros","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14407-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-14369":{"id":"entry-14369","kind":"mob","name":"Shen'dralar Zealot","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14408-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-14371":{"id":"entry-14371","kind":"mob","name":"Shen'dralar Provisioner","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14412-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-14381":{"id":"entry-14381","kind":"mob","name":"Lorekeeper Javon","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14422-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-14382":{"id":"entry-14382","kind":"mob","name":"Lorekeeper Mykos","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14421-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.642,"markerRadius":0.65}}},"entry-14383":{"id":"entry-14383","kind":"mob","name":"Lorekeeper Kildrath","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14420-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-14398":{"id":"entry-14398","kind":"mob","name":"Eldreth Darter","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22947","name":"Mana Burn","spellId":22947,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4633,"damageMultiplier":1.12},{"id":"spell-17139","name":"Power Word: Shield","spellId":17139,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":4633,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-17139","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-8471-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1618,"labelHeight":1.9876,"markerRadius":2.2608}}},"entry-14399":{"id":"entry-14399","kind":"mob","name":"Arcane Torrent","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-10315-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":9.3077,"markerRadius":2.881}}},"entry-14400":{"id":"entry-14400","kind":"mob","name":"Arcane Feedback","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-5490-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.6538,"markerRadius":1.4405}}},"entry-13916":{"id":"entry-13916","kind":"mob","name":"Dire Maul Crystal Totem","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11686-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-16032":{"id":"entry-16032","kind":"mob","name":"Falrin Treeshaper","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-15996-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-11441":{"id":"entry-11441","kind":"mob","name":"Gordok Brute","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-13737","name":"Mortal Strike","spellId":13737,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.12},{"id":"spell-20677","name":"Cleave","spellId":20677,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5017,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-12473-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-11444":{"id":"entry-11444","kind":"mob","name":"Gordok Mage-Lord","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-20832","name":"Fire Blast","spellId":20832,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5290,"damageMultiplier":1.12},{"id":"spell-16102","name":"Flamestrike","spellId":16102,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5290,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11537-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-11445":{"id":"entry-11445","kind":"mob","name":"Gordok Captain","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11564-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0264,"labelHeight":8.2346,"markerRadius":2.605}}},"entry-11446":{"id":"entry-11446","kind":"mob","name":"Gordok Spirit","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13093-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-11448":{"id":"entry-11448","kind":"mob","name":"Gordok Warlock","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14423-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0232,"labelHeight":7.2918,"markerRadius":2.0153}}},"entry-14386":{"id":"entry-14386","kind":"mob","name":"Wandering Eye of Kilrogg","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14430-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7083,"markerRadius":0.65}}},"entry-11458":{"id":"entry-11458","kind":"mob","name":"Petrified Treant","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22693","name":"Harden Skin","spellId":22693,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6627,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-2078-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0496,"labelHeight":7.4338,"markerRadius":1.7859}}},"entry-11459":{"id":"entry-11459","kind":"mob","name":"Ironbark Protector","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5568","name":"Trample","spellId":5568,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7234,"damageMultiplier":1.12},{"id":"spell-18670","name":"Knock Away","spellId":18670,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7234,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13489-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1253,"labelHeight":10.5668,"markerRadius":3.3218}}},"entry-11466":{"id":"entry-11466","kind":"mob","name":"Highborne Summoner","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11207-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-11469":{"id":"entry-11469","kind":"mob","name":"Eldreth Seether","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-16843","name":"Crimson Fury","spellId":16843,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5281,"damageMultiplier":1.12},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5281,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11213-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-11470":{"id":"entry-11470","kind":"mob","name":"Eldreth Sorcerer","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13323","name":"Polymorph","spellId":13323,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4556,"damageMultiplier":1.12},{"id":"spell-22823","name":"Starshards","spellId":22823,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4556,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11205-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-11471":{"id":"entry-11471","kind":"mob","name":"Eldreth Apparition","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16799","name":"Frostbolt","spellId":16799,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5689,"damageMultiplier":1.12},{"id":"spell-18100","name":"Frost Armor","spellId":18100,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14365-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4146,"labelHeight":4.2683,"markerRadius":1.5877}}},"entry-11472":{"id":"entry-11472","kind":"mob","name":"Eldreth Spirit","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16838","name":"Banshee Shriek","spellId":16838,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4954,"damageMultiplier":1.12},{"id":"spell-22743","name":"Ribbon of Souls","spellId":22743,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4954,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-10751-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4682,"labelHeight":4.9135,"markerRadius":1.0639}}},"entry-11473":{"id":"entry-11473","kind":"mob","name":"Eldreth Spectre","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17201","name":"Dispel Magic","spellId":17201,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7370,"damageMultiplier":1.12},{"id":"spell-7154","name":"Dark Offering","spellId":7154,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7370,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14366-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4146,"labelHeight":4.2683,"markerRadius":1.5877}}},"entry-11475":{"id":"entry-11475","kind":"mob","name":"Eldreth Phantasm","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15802","name":"Shrink","spellId":15802,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4212,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14368-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4975,"labelHeight":5.122,"markerRadius":1.9052}}},"entry-11476":{"id":"entry-11476","kind":"mob","name":"Skeletal Highborne","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21081","name":"Sunder Armor","spellId":21081,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7380,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11078-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.0302,"markerRadius":0.65}}},"entry-11477":{"id":"entry-11477","kind":"mob","name":"Rotting Highborne","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14391-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.7209,"markerRadius":0.65}}},"entry-11480":{"id":"entry-11480","kind":"mob","name":"Arcane Aberration","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/8187e4a71114ff6b55fb6d59315498e3bb5fb606ba216b886ab82438c8764515.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.7735,"markerRadius":1.8878}}},"entry-11483":{"id":"entry-11483","kind":"mob","name":"Mana Remnant","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14272-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.8113,"markerRadius":1.5732}}},"entry-11484":{"id":"entry-11484","kind":"mob","name":"Residual Monstrosity","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14254-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.7735,"markerRadius":1.8878}}},"entry-11486":{"id":"entry-11486","kind":"mob","name":"Prince Tortheldrin","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-20691","name":"Cleave","spellId":20691,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4432,"damageMultiplier":0.62,"radius":8},{"id":"spell-22920","name":"Arcane Blast","spellId":22920,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4432,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11256-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-14303":{"id":"entry-14303","kind":"mob","name":"Petrified Guardian","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22695","name":"Regrowth","spellId":22695,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5702,"damageMultiplier":1.12},{"id":"spell-22696","name":"Thorns","spellId":22696,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5702,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-5848-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0496,"labelHeight":7.4338,"markerRadius":1.7859}}},"entry-11487":{"id":"entry-11487","kind":"boss","name":"Magister Kalendris","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17146","name":"Shadow Word: Pain","spellId":17146,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4654,"damageMultiplier":1.35},{"id":"spell-22919","name":"Mind Flay","spellId":22919,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4654,"damageMultiplier":1.35},{"id":"spell-17287","name":"Mind Blast","spellId":17287,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4654,"damageMultiplier":1.35},{"id":"spell-7645","name":"Dominate Mind","spellId":7645,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4654,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14384-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0142,"labelHeight":3.4605,"markerRadius":0.65}}},"entry-11488":{"id":"entry-11488","kind":"boss","name":"Illyanna Ravenoak","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5116","name":"Concussive Shot","spellId":5116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5041,"damageMultiplier":1.35},{"id":"spell-20904","name":"Aimed Shot","spellId":20904,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5041,"damageMultiplier":1.35},{"id":"spell-14290","name":"Multi-Shot","spellId":14290,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5041,"damageMultiplier":1.35},{"id":"spell-14295","name":"Volley","spellId":14295,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5041,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11270-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.1004,"markerRadius":0.65}}},"entry-11489":{"id":"entry-11489","kind":"mob","name":"Tendris Warpwood","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5568","name":"Trample","spellId":5568,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5695,"damageMultiplier":1.12},{"id":"spell-22924","name":"Grasping Vines","spellId":22924,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5695,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14383-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0709,"labelHeight":21.4911,"markerRadius":4.5}}},"entry-14308":{"id":"entry-14308","kind":"mob","name":"Ferra","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22911","name":"Charge","spellId":22911,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6382,"damageMultiplier":1.12},{"id":"spell-17156","name":"Maul","spellId":17156,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6382,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-1083-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0037,"labelHeight":3.1607,"markerRadius":1.8545}}},"entry-11496":{"id":"entry-11496","kind":"boss","name":"Immol'thar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":61,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16128","name":"Infected Bite","spellId":16128,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5467,"damageMultiplier":1.35},{"id":"spell-15550","name":"Trample","spellId":15550,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5467,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14173-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0402,"labelHeight":16.7964,"markerRadius":4.5}}},"entry-11501":{"id":"entry-11501","kind":"boss","name":"King Gordok","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22886","name":"Berserker Charge","spellId":22886,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7009,"damageMultiplier":1.35},{"id":"spell-15708","name":"Mortal Strike","spellId":15708,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7009,"damageMultiplier":1.35},{"id":"spell-15572","name":"Sunder Armor","spellId":15572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7009,"damageMultiplier":1.35},{"id":"spell-16727","name":"War Stomp","spellId":16727,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":7009,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11583-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0296,"labelHeight":9.2227,"markerRadius":2.9176}}},"entry-14326":{"id":"entry-14326","kind":"boss","name":"Guard Mol'dar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7463,"damageMultiplier":1.35},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":7463,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":12000,"magnitude":0.25}},{"id":"spell-20691","name":"Cleave","spellId":20691,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":7463,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11561-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7405,"markerRadius":2.4487}}},"entry-14322":{"id":"entry-14322","kind":"mob","name":"Stomper Kreeg","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22833","name":"Booze Spit","spellId":22833,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5640,"damageMultiplier":1.12},{"id":"spell-16740","name":"War Stomp","spellId":16740,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5640,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11545-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0216,"labelHeight":6.7946,"markerRadius":1.8779}}},"entry-14321":{"id":"entry-14321","kind":"boss","name":"Guard Fengus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5376,"damageMultiplier":1.35},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5376,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":12000,"magnitude":0.25}},{"id":"spell-22572","name":"Bruising Blow","spellId":22572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5376,"damageMultiplier":1.35},{"id":"spell-20691","name":"Cleave","spellId":20691,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5376,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11561-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7405,"markerRadius":2.4487}}},"entry-14323":{"id":"entry-14323","kind":"boss","name":"Guard Slip'kik","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4152,"damageMultiplier":1.35},{"id":"spell-17307","name":"Knockout","spellId":17307,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4152,"damageMultiplier":1.35},{"id":"spell-20691","name":"Cleave","spellId":20691,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4152,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11561-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7405,"markerRadius":2.4487}}},"entry-14325":{"id":"entry-14325","kind":"boss","name":"Captain Kromcrush","title":"Dungeon Boss","hasLoot":true,"combat":{"level":61,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22857","name":"Retaliation","spellId":22857,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-22859","name":"Mortal Cleave","spellId":22859,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5699,"damageMultiplier":0.82,"radius":11},{"id":"spell-5246","name":"Intimidating Shout","spellId":5246,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11564-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0264,"labelHeight":8.2346,"markerRadius":2.605}}},"entry-14324":{"id":"entry-14324","kind":"mob","name":"Cho'Rush the Observer","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10947","name":"Mind Blast","spellId":10947,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5258,"damageMultiplier":1.12},{"id":"spell-10151","name":"Fireball","spellId":10151,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5258,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11537-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-13036":{"id":"entry-13036","kind":"mob","name":"Gordok Mastiff","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-12966-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0174,"markerRadius":1.6004}}},"entry-11450":{"id":"entry-11450","kind":"mob","name":"Gordok Reaver","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22572","name":"Bruising Blow","spellId":22572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7228,"damageMultiplier":1.12},{"id":"spell-22916","name":"Uppercut","spellId":22916,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7228,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-10709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0264,"labelHeight":8.2861,"markerRadius":2.2901}}},"entry-13160":{"id":"entry-13160","kind":"mob","name":"Carrion Swarmer","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13096-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0018,"labelHeight":1.9188,"markerRadius":1.2032}}},"entry-11454":{"id":"entry-11454","kind":"mob","name":"Wildspawn Betrayer","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16100","name":"Shoot","spellId":16100,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7474,"damageMultiplier":1.12},{"id":"spell-18649","name":"Shadow Shot","spellId":18649,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7474,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-10032-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0072,"labelHeight":4.6121,"markerRadius":1.3367}}},"entry-11451":{"id":"entry-11451","kind":"mob","name":"Wildspawn Satyr","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6600,"damageMultiplier":1.12},{"id":"spell-9080","name":"Hamstring","spellId":9080,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/d46221744014c9f7e60e192eb6da90d29b6bb6547f467db7d4b65e3a3503dab7.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-11455":{"id":"entry-11455","kind":"mob","name":"Wildspawn Felsworn","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22418","name":"Chaotic Focus","spellId":22418,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.12},{"id":"spell-15654","name":"Shadow Word: Pain","spellId":15654,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5435,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-7649-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-13196":{"id":"entry-13196","kind":"mob","name":"Phase Lasher","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17228","name":"Shadow Bolt Volley","spellId":17228,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5566,"damageMultiplier":0.62,"radius":8},{"id":"spell-15285","name":"Fireball Volley","spellId":15285,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5566,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"plant","model":{"url":"/assets/game/creatures/shared/d18a720702d5501d87412111e5848a230248ebf06f9f6afba8973a36b21ae84f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0732,"labelHeight":5.9732,"markerRadius":3.9737}}},"entry-13197":{"id":"entry-13197","kind":"mob","name":"Fel Lash","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22271","name":"Arcane Explosion","spellId":22271,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6136,"damageMultiplier":0.62,"radius":8},{"id":"spell-15230","name":"Arcane Bolt","spellId":15230,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6136,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"plant","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13110-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0732,"labelHeight":5.9732,"markerRadius":3.9737}}},"entry-11456":{"id":"entry-11456","kind":"mob","name":"Wildspawn Shadowstalker","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-14897","name":"Slowing Poison","spellId":14897,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4070,"damageMultiplier":1.12},{"id":"spell-22416","name":"Backstab","spellId":22416,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4070,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/a8b97785230064bd46404c9b8eaf50380f71ee24f3c78ccedb3746d7e59764a6.glb","rotationY":-1.5707963267948966,"groundOffset":0.0055,"labelHeight":3.536,"markerRadius":1.0248}}},"entry-14327":{"id":"entry-14327","kind":"boss","name":"Lethtendris","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11668","name":"Immolate","spellId":11668,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5237,"damageMultiplier":1.35},{"id":"spell-14887","name":"Shadow Bolt Volley","spellId":14887,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5237,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-21012-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.7911,"markerRadius":0.65}}},"entry-14349":{"id":"entry-14349","kind":"mob","name":"Pimgib","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15744","name":"Blast Wave","spellId":15744,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6151,"damageMultiplier":1.12},{"id":"spell-15228","name":"Fireball","spellId":15228,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6151,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14380-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3095,"markerRadius":0.8081}}},"entry-13021":{"id":"entry-13021","kind":"mob","name":"Warpwood Crusher","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-22426","name":"Crush Armor","spellId":22426,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5852,"damageMultiplier":1.12},{"id":"spell-15550","name":"Trample","spellId":15550,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5852,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-12929-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2506,"labelHeight":21.1336,"markerRadius":4.5}}},"entry-13022":{"id":"entry-13022","kind":"mob","name":"Whip Lasher","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21987","name":"Lash of Pain","spellId":21987,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7261,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-12962-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0274,"labelHeight":2.35,"markerRadius":1.4901}}},"entry-11464":{"id":"entry-11464","kind":"mob","name":"Warpwood Tangler","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22415","name":"Entangling Roots","spellId":22415,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":4044,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-22414","name":"Lightning Bolt","spellId":22414,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4044,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-9592-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0434,"labelHeight":6.5046,"markerRadius":1.5627}}},"entry-11462":{"id":"entry-11462","kind":"mob","name":"Warpwood Treant","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14331","name":"Vicious Rend","spellId":14331,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5809,"damageMultiplier":1.12},{"id":"spell-11428","name":"Stunning Strike","spellId":11428,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5809,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-10621-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0372,"labelHeight":5.5754,"markerRadius":1.3394}}},"entry-11453":{"id":"entry-11453","kind":"mob","name":"Wildspawn Trickster","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12493","name":"Curse of Weakness","spellId":12493,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7426,"damageMultiplier":1.12},{"id":"spell-22371","name":"Curse of Impotence","spellId":22371,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7426,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-2020-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0072,"labelHeight":4.6121,"markerRadius":1.3367}}},"entry-11452":{"id":"entry-11452","kind":"mob","name":"Wildspawn Rogue","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-15583","name":"Rupture","spellId":15583,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4712,"damageMultiplier":1.12},{"id":"spell-15667","name":"Sinister Strike","spellId":15667,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4712,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c40245171481eb04ae88340d52e24044e16b3e0053584016264adcf3e83f9bbf.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-11457":{"id":"entry-11457","kind":"mob","name":"Wildspawn Hellcaller","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15228","name":"Fireball","spellId":15228,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6979,"damageMultiplier":1.12},{"id":"spell-20754","name":"Rain of Fire","spellId":20754,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6979,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11340-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0084,"labelHeight":5.3808,"markerRadius":1.5595}}},"entry-13276":{"id":"entry-13276","kind":"mob","name":"Wildspawn Imp","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13340","name":"Fire Blast","spellId":13340,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4998,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-911-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.1885,"markerRadius":0.65}}},"entry-13280":{"id":"entry-13280","kind":"boss","name":"Hydrospawn","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.126976,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22419","name":"Riptide","spellId":22419,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4739,"damageMultiplier":1.35},{"id":"spell-22420","name":"Submersion","spellId":22420,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4739,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-5489-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.7654,"markerRadius":2.3296}}},"entry-11490":{"id":"entry-11490","kind":"boss","name":"Zevrim Thornhoof","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22478","name":"Intense Pain","spellId":22478,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4883,"damageMultiplier":1.35},{"id":"spell-22651","name":"Sacrifice","spellId":22651,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4883,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11335-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0096,"labelHeight":6.1495,"markerRadius":1.7823}}},"entry-13285":{"id":"entry-13285","kind":"mob","name":"Death Lash","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22351","name":"Thorns","spellId":22351,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4325,"damageMultiplier":1.12},{"id":"spell-3417","name":"Thrash","spellId":3417,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4325,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"plant","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13172-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0732,"labelHeight":5.9732,"markerRadius":3.9737}}},"entry-11465":{"id":"entry-11465","kind":"mob","name":"Warpwood Stomper","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-16727","name":"War Stomp","spellId":16727,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5044,"damageMultiplier":0.62,"radius":8},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5044,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-6350-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.062,"labelHeight":9.2923,"markerRadius":2.2324}}},"entry-11461":{"id":"entry-11461","kind":"mob","name":"Warpwood Guardian","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7393,"damageMultiplier":1.12},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7393,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13173-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0558,"labelHeight":8.363,"markerRadius":2.0092}}},"entry-11492":{"id":"entry-11492","kind":"mob","name":"Alzzin the Wildshaper","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1300,"damageMultiplier":1},{"id":"spell-22689","name":"Mangle","spellId":22689,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4267,"damageMultiplier":1.12},{"id":"spell-22662","name":"Wither","spellId":22662,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4267,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/928658948713f14e42fc755dc19a6deaf554dccb1e1f85d7dbeac55454539957.glb","rotationY":-1.5707963267948966,"groundOffset":0.0121,"labelHeight":7.6869,"markerRadius":2.2279}}},"entry-14690":{"id":"entry-14690","kind":"mob","name":"Revanchion","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-29849","name":"Frost Nova","spellId":29849,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6469,"damageMultiplier":0.62,"radius":8},{"id":"spell-30267","name":"Shadow Bolt Volley","spellId":30267,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6469,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14695-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.6633,"labelHeight":6.8293,"markerRadius":2.5403}}},"entry-14506":{"id":"entry-14506","kind":"boss","name":"Lord Hel'nurath","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6700,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.34,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14556-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4447,"labelHeight":9.1346,"markerRadius":2.84}}}},"staticSpawns":[{"id":"creature-56961","entityId":"entry-11467","position":[-128.716,-26.062,-198.456],"yaw":-3.12414,"spawnMask":1},{"id":"creature-247502","entityId":"entry-14358","position":[-11.8214,3.3896,-364.11],"yaw":-2.9147,"spawnMask":1},{"id":"creature-247557","entityId":"entry-14366","position":[6.8163,-25.7985,-959.872],"yaw":0.453785,"spawnMask":1},{"id":"creature-247558","entityId":"entry-14366","position":[-133.957,-25.8111,-1022.205],"yaw":0.488691,"spawnMask":1},{"id":"creature-247559","entityId":"entry-14366","position":[-44.8652,-46.7694,-1387.684],"yaw":2.47837,"spawnMask":1},{"id":"creature-247560","entityId":"entry-14366","position":[-65.8681,-80.2622,-1160.507],"yaw":0.628317,"spawnMask":1},{"id":"creature-247561","entityId":"entry-14366","position":[93.4564,-80.2111,-1166.216],"yaw":0,"spawnMask":1},{"id":"creature-247562","entityId":"entry-14366","position":[-243.006,-141.6278,-1180.347],"yaw":0.069812,"spawnMask":1},{"id":"creature-247563","entityId":"entry-14366","position":[-468.279,-15.2183,-501.235],"yaw":-1.02974,"spawnMask":1},{"id":"creature-247564","entityId":"entry-14366","position":[156.68,-25.8135,-1080.424],"yaw":-1.25664,"spawnMask":1},{"id":"creature-247565","entityId":"entry-14366","position":[-22.0056,-80.2817,-1169.01],"yaw":0,"spawnMask":1},{"id":"creature-247566","entityId":"entry-14366","position":[26.4006,-80.2817,-1163.65],"yaw":-0.226892,"spawnMask":1},{"id":"creature-247567","entityId":"entry-14368","position":[-164.408,-70.1334,-237.718],"yaw":-3.07178,"spawnMask":1},{"id":"creature-247568","entityId":"entry-14369","position":[-121.245,-70.1297,-291.436],"yaw":-4.67748,"spawnMask":1},{"id":"creature-247569","entityId":"entry-14369","position":[-121.827,-70.1314,-283.632],"yaw":-1.58825,"spawnMask":1},{"id":"creature-247570","entityId":"entry-14369","position":[-186.748,-70.1092,-302.597],"yaw":-4.79965,"spawnMask":1},{"id":"creature-247571","entityId":"entry-14369","position":[-187.056,-70.1208,-280.963],"yaw":-1.5708,"spawnMask":1},{"id":"creature-247572","entityId":"entry-14369","position":[-114.513,-49.558,-158.037],"yaw":-3.10669,"spawnMask":1},{"id":"creature-247573","entityId":"entry-14369","position":[-153.498,-49.6397,-133.249],"yaw":-0.017453,"spawnMask":1},{"id":"creature-247574","entityId":"entry-14369","position":[-193.001,-70.1334,-172.83],"yaw":-6.17846,"spawnMask":1},{"id":"creature-247575","entityId":"entry-14369","position":[-163.806,-70.1334,-204.824],"yaw":-3.1765,"spawnMask":1},{"id":"creature-247578","entityId":"entry-14369","position":[-132.323,-70.2098,-244.235],"yaw":-1.5966,"spawnMask":1},{"id":"creature-247579","entityId":"entry-14371","position":[-120.734,-70.1283,-301.004],"yaw":-6.21337,"spawnMask":1},{"id":"creature-247580","entityId":"entry-14381","position":[-193.68,-70.1334,-245.369],"yaw":-0.122173,"spawnMask":1},{"id":"creature-247581","entityId":"entry-14382","position":[-193.24,-70.2182,-286.976],"yaw":-0.069813,"spawnMask":1},{"id":"creature-247582","entityId":"entry-14383","position":[-135.223,-70.2117,-318.763],"yaw":-4.849,"spawnMask":1},{"id":"creature-247583","entityId":"entry-14398","position":[-48.1972,-25.2342,-251.614],"yaw":-6.21337,"spawnMask":1},{"id":"creature-247584","entityId":"entry-14398","position":[-90.8405,6.9346,-274.437],"yaw":-0.314159,"spawnMask":1},{"id":"creature-247585","entityId":"entry-14398","position":[-4.4826,-25.233,-254.982],"yaw":-0.942478,"spawnMask":1},{"id":"creature-247587","entityId":"entry-14398","position":[-56.348,6.9359,-233.405],"yaw":-6.00393,"spawnMask":1},{"id":"creature-247588","entityId":"entry-14398","position":[54.8492,6.9479,-191.733],"yaw":-3.61283,"spawnMask":1},{"id":"creature-247589","entityId":"entry-14398","position":[-5.7196,6.9388,-193.068],"yaw":-5.65487,"spawnMask":1},{"id":"creature-247591","entityId":"entry-14398","position":[17.0245,6.9357,-228.842],"yaw":-0.087266,"spawnMask":1},{"id":"creature-247604","entityId":"entry-14400","position":[157.584,-46.3279,21.13],"yaw":-0.699599,"spawnMask":1},{"id":"creature-247605","entityId":"entry-14400","position":[163.22,-46.3273,21.615],"yaw":-0.699554,"spawnMask":1},{"id":"creature-247606","entityId":"entry-14400","position":[163.705,-46.3297,15.979],"yaw":-0.699584,"spawnMask":1},{"id":"creature-247607","entityId":"entry-14400","position":[158.069,-46.3296,15.494],"yaw":-0.699584,"spawnMask":1},{"id":"creature-247612","entityId":"entry-14400","position":[-2.3516,-46.3443,-80.725],"yaw":-0.367713,"spawnMask":1},{"id":"creature-247613","entityId":"entry-14400","position":[2.819,-46.3492,-78.431],"yaw":-0.367712,"spawnMask":1},{"id":"creature-247614","entityId":"entry-14400","position":[5.1137,-46.3519,-83.601],"yaw":-0.367712,"spawnMask":1},{"id":"creature-247615","entityId":"entry-14400","position":[-0.0569,-46.3471,-85.896],"yaw":-0.367701,"spawnMask":1},{"id":"creature-247626","entityId":"entry-14400","position":[-80.2173,-46.3302,73.641],"yaw":-4.63658,"spawnMask":1},{"id":"creature-247627","entityId":"entry-14400","position":[-84.5087,-46.3308,77.327],"yaw":-4.63659,"spawnMask":1},{"id":"creature-247628","entityId":"entry-14400","position":[-80.8232,-46.3302,81.618],"yaw":-4.63658,"spawnMask":1},{"id":"creature-247629","entityId":"entry-14400","position":[-76.5317,-46.3302,77.933],"yaw":-4.63658,"spawnMask":1},{"id":"creature-247636","entityId":"entry-14400","position":[4.2142,-46.3257,193.765],"yaw":-0.35092,"spawnMask":1},{"id":"creature-247637","entityId":"entry-14400","position":[9.3454,-46.326,196.147],"yaw":-0.35092,"spawnMask":1},{"id":"creature-247638","entityId":"entry-14400","position":[11.7266,-46.326,191.015],"yaw":-0.35092,"spawnMask":1},{"id":"creature-247639","entityId":"entry-14400","position":[6.5954,-46.3257,188.634],"yaw":-0.35092,"spawnMask":1},{"id":"creature-247640","entityId":"entry-13916","position":[-13.5244,-20.2355,-482.587],"yaw":-2.28638,"spawnMask":1},{"id":"creature-247694","entityId":"entry-16032","position":[-122.742,-70.1266,-315.637],"yaw":-5.42797,"spawnMask":1},{"id":"creature-247695","entityId":"entry-11441","position":[-402.523,-18.8186,-426.978],"yaw":-0.191986,"spawnMask":1},{"id":"creature-247696","entityId":"entry-11441","position":[-439.715,-24.2485,-625.653],"yaw":-6.19592,"spawnMask":1},{"id":"creature-247697","entityId":"entry-11441","position":[-450.144,-24.2488,-626.171],"yaw":-3.14159,"spawnMask":1},{"id":"creature-247698","entityId":"entry-11441","position":[-445.111,-18.8135,-409.527],"yaw":-1.62316,"spawnMask":1},{"id":"creature-247699","entityId":"entry-11441","position":[-289.361,-25.5535,-835.5543],"yaw":-0.855211,"spawnMask":1},{"id":"creature-247700","entityId":"entry-11441","position":[-297.441,-25.5536,-826.9531],"yaw":-3.92699,"spawnMask":1},{"id":"creature-247701","entityId":"entry-11441","position":[-404.515,-18.8146,-579.932],"yaw":-5.39307,"spawnMask":1},{"id":"creature-247702","entityId":"entry-11441","position":[-367.156,-46.4616,-723.504],"yaw":-4.64258,"spawnMask":1},{"id":"creature-247703","entityId":"entry-11441","position":[-375.538,-47.6378,-733.704],"yaw":-3.05433,"spawnMask":1},{"id":"creature-247704","entityId":"entry-11441","position":[-417.988,-10.5516,-467.963],"yaw":-3.60941,"spawnMask":1},{"id":"creature-247705","entityId":"entry-11441","position":[-312.159,-18.8135,-577.298],"yaw":-4.36332,"spawnMask":1},{"id":"creature-247706","entityId":"entry-11441","position":[-326.985,-18.8135,-399.247],"yaw":-4.74729,"spawnMask":1},{"id":"creature-247709","entityId":"entry-11441","position":[-310.761,-25.5511,-772.9344],"yaw":-6.19592,"spawnMask":1},{"id":"creature-247710","entityId":"entry-11441","position":[-387.619,-24.2499,-624.653],"yaw":-2.00713,"spawnMask":1},{"id":"creature-247711","entityId":"entry-11441","position":[-301.691,-25.6352,-711.2712],"yaw":-0.541052,"spawnMask":1},{"id":"creature-247712","entityId":"entry-11441","position":[-391.785,-25.5534,-657.629],"yaw":-0.541052,"spawnMask":1},{"id":"creature-247713","entityId":"entry-11441","position":[-262.475,-24.2261,-665.3878],"yaw":-3.21141,"spawnMask":1},{"id":"creature-247714","entityId":"entry-11441","position":[-431.344,-45.3053,-684.2633],"yaw":-3.76991,"spawnMask":1},{"id":"creature-247715","entityId":"entry-11441","position":[-321.986,-24.2492,-627.338],"yaw":-5.37561,"spawnMask":1},{"id":"creature-247716","entityId":"entry-11441","position":[-317.018,-10.5405,-520.327],"yaw":-3.14159,"spawnMask":1},{"id":"creature-247717","entityId":"entry-11441","position":[-293.005,-18.7999,-495.483],"yaw":-3.7001,"spawnMask":1},{"id":"creature-247718","entityId":"entry-11441","position":[-281.957,-18.8134,-502.227],"yaw":-0.541052,"spawnMask":1},{"id":"creature-247719","entityId":"entry-11441","position":[-469.834,-25.5527,-693.8654],"yaw":-4.27606,"spawnMask":1},{"id":"creature-247720","entityId":"entry-11441","position":[-352.365,-10.4627,-541.009],"yaw":-4.60767,"spawnMask":1},{"id":"creature-247721","entityId":"entry-11441","position":[-484.863,-18.8135,-567.679],"yaw":-3.22886,"spawnMask":1},{"id":"creature-247722","entityId":"entry-11441","position":[-480.565,-18.8135,-588.643],"yaw":-0.855211,"spawnMask":1},{"id":"creature-247723","entityId":"entry-11441","position":[-357.174,-25.5529,-865.448],"yaw":-3.735,"spawnMask":1},{"id":"creature-247724","entityId":"entry-11441","position":[-420.781,-10.535,-547.281],"yaw":-4.02882,"spawnMask":1},{"id":"creature-247725","entityId":"entry-11441","position":[-253.992,-24.2261,-658.731],"yaw":-4.79965,"spawnMask":1},{"id":"creature-247726","entityId":"entry-11441","position":[-293.503,-25.583,-737.5379],"yaw":-1.71042,"spawnMask":1},{"id":"creature-247727","entityId":"entry-11441","position":[-290.073,-25.5962,-716.2784],"yaw":-4.88692,"spawnMask":1},{"id":"creature-247729","entityId":"entry-11441","position":[-414.97,-10.5437,-499.946],"yaw":-4.6183,"spawnMask":1},{"id":"creature-247730","entityId":"entry-11441","position":[-378.512,-24.2505,-624.082],"yaw":-0.925025,"spawnMask":1},{"id":"creature-247731","entityId":"entry-11441","position":[-326.013,-25.5534,-635.704],"yaw":-1.88496,"spawnMask":1},{"id":"creature-247732","entityId":"entry-11441","position":[-350.789,-10.543,-453.747],"yaw":-1.12018,"spawnMask":1},{"id":"creature-247733","entityId":"entry-11441","position":[-338.881,-10.4623,-551.878],"yaw":-1.37881,"spawnMask":1},{"id":"creature-247734","entityId":"entry-11444","position":[-278.363,-24.2133,-727.284],"yaw":-0.05236,"spawnMask":1},{"id":"creature-247735","entityId":"entry-11444","position":[-356.381,-46.6537,-732.3712],"yaw":-6.23082,"spawnMask":1},{"id":"creature-247736","entityId":"entry-11444","position":[-364.418,-47.2536,-742.8524],"yaw":-1.36136,"spawnMask":1},{"id":"creature-247737","entityId":"entry-11444","position":[-413.381,-10.4515,-559.748],"yaw":-0.261799,"spawnMask":1},{"id":"creature-247738","entityId":"entry-11444","position":[-425.776,-10.4594,-556.76],"yaw":-3.35103,"spawnMask":1},{"id":"creature-247739","entityId":"entry-11444","position":[-324.085,-10.46,-463.814],"yaw":-1.36136,"spawnMask":1},{"id":"creature-247740","entityId":"entry-11444","position":[-325.772,-10.4636,-454.861],"yaw":-4.53786,"spawnMask":1},{"id":"creature-247741","entityId":"entry-11444","position":[-288.73,-18.8134,-442.366],"yaw":-2.42601,"spawnMask":1},{"id":"creature-247742","entityId":"entry-11444","position":[-279.38,-18.8134,-434.944],"yaw":-5.65487,"spawnMask":1},{"id":"creature-247744","entityId":"entry-11444","position":[-253.135,-24.226,-667.416],"yaw":-0.802851,"spawnMask":1},{"id":"creature-247745","entityId":"entry-11444","position":[-273.079,-18.8135,-565.094],"yaw":-0.855211,"spawnMask":1},{"id":"creature-247746","entityId":"entry-11444","position":[-280.601,-18.8135,-555.86],"yaw":-4.06662,"spawnMask":1},{"id":"creature-247747","entityId":"entry-11444","position":[-334.005,-24.2494,-627.57],"yaw":-3.40339,"spawnMask":1},{"id":"creature-247748","entityId":"entry-11444","position":[-463.052,-25.5531,-704.2774],"yaw":-0.541052,"spawnMask":1},{"id":"creature-247749","entityId":"entry-11444","position":[-349.285,-25.5525,-870.515],"yaw":-0.733038,"spawnMask":1},{"id":"creature-247750","entityId":"entry-11444","position":[-341.457,-10.4628,-540.519],"yaw":-4.27606,"spawnMask":1},{"id":"creature-247751","entityId":"entry-11444","position":[-487.262,-18.8135,-580.395],"yaw":-4.06662,"spawnMask":1},{"id":"creature-247752","entityId":"entry-11444","position":[-735.4,6.5135,-336.385],"yaw":-0.750492,"spawnMask":1},{"id":"creature-247753","entityId":"entry-11444","position":[-299.989,-25.6226,-720.1502],"yaw":-3.80482,"spawnMask":1},{"id":"creature-247754","entityId":"entry-11444","position":[-384.149,-21.0948,-615.562],"yaw":-4.57276,"spawnMask":1},{"id":"creature-247755","entityId":"entry-11444","position":[-314.34,-25.5534,-635.138],"yaw":-0.453786,"spawnMask":1},{"id":"creature-247756","entityId":"entry-11444","position":[-471.842,-18.8135,-567.353],"yaw":-6.12611,"spawnMask":1},{"id":"creature-247757","entityId":"entry-11444","position":[-479.555,-25.5527,-701.0365],"yaw":-3.24631,"spawnMask":1},{"id":"creature-247759","entityId":"entry-11444","position":[-350.524,-10.457,-557.14],"yaw":-1.44862,"spawnMask":1},{"id":"creature-247760","entityId":"entry-11445","position":[-692.268,6.5096,-248.798],"yaw":-2.87979,"spawnMask":1},{"id":"creature-247761","entityId":"entry-11445","position":[-743.252,6.5159,-323.836],"yaw":-4.17134,"spawnMask":1},{"id":"creature-247762","entityId":"entry-11445","position":[-667.557,7.7893,-292.91],"yaw":-4.20624,"spawnMask":1},{"id":"creature-247763","entityId":"entry-11445","position":[-676.702,7.791,-299.868],"yaw":-3.19395,"spawnMask":1},{"id":"creature-247764","entityId":"entry-11445","position":[-681.103,7.7939,-255.94],"yaw":-1.48353,"spawnMask":1},{"id":"creature-247765","entityId":"entry-11446","position":[-910.542,18.7296,-299.973],"yaw":-2.93215,"spawnMask":1},{"id":"creature-247766","entityId":"entry-11446","position":[-794.864,18.73,-194.528],"yaw":-5.07891,"spawnMask":1},{"id":"creature-247767","entityId":"entry-11446","position":[-879.342,18.7302,-346.78],"yaw":-2.23402,"spawnMask":1},{"id":"creature-247768","entityId":"entry-11446","position":[-759.779,18.7296,-344.737],"yaw":-0.750492,"spawnMask":1},{"id":"creature-247769","entityId":"entry-11446","position":[-819.989,18.7299,-368.849],"yaw":-1.48353,"spawnMask":1},{"id":"creature-247770","entityId":"entry-11446","position":[-764.614,18.7323,-211.297],"yaw":-5.44543,"spawnMask":1},{"id":"creature-247771","entityId":"entry-11446","position":[-814.549,18.7292,-189.692],"yaw":-4.86947,"spawnMask":1},{"id":"creature-247772","entityId":"entry-11446","position":[-879.54,18.7302,-210.433],"yaw":-4.08407,"spawnMask":1},{"id":"creature-247773","entityId":"entry-11446","position":[-909.989,18.7292,-254.511],"yaw":-3.47321,"spawnMask":1},{"id":"creature-247774","entityId":"entry-11446","position":[-852.65,18.7304,-195.577],"yaw":-4.43314,"spawnMask":1},{"id":"creature-247775","entityId":"entry-11446","position":[-851.812,18.7303,-362.12],"yaw":-1.85005,"spawnMask":1},{"id":"creature-247776","entityId":"entry-11446","position":[-903.063,18.7295,-318.075],"yaw":-2.68781,"spawnMask":1},{"id":"creature-247777","entityId":"entry-11446","position":[-794.762,18.73,-365.295],"yaw":-1.20428,"spawnMask":1},{"id":"creature-247778","entityId":"entry-11448","position":[-379.698,-28.8987,-293.382],"yaw":-5.77704,"spawnMask":1},{"id":"creature-247779","entityId":"entry-11448","position":[-581.576,-26.4212,-163.937],"yaw":-0.05236,"spawnMask":1},{"id":"creature-247780","entityId":"entry-11448","position":[-593.083,-26.4212,-163.484],"yaw":-3.15905,"spawnMask":1},{"id":"creature-247781","entityId":"entry-11448","position":[-568.277,7.7977,-280.69],"yaw":-3.22886,"spawnMask":1},{"id":"creature-247782","entityId":"entry-11448","position":[-518.113,6.2496,-198.003],"yaw":-5.21853,"spawnMask":1},{"id":"creature-247783","entityId":"entry-11448","position":[-477.071,6.2481,-194.667],"yaw":-5.44543,"spawnMask":1},{"id":"creature-247784","entityId":"entry-11448","position":[-580.438,-26.4212,-194.75],"yaw":-0.034907,"spawnMask":1},{"id":"creature-247785","entityId":"entry-11448","position":[-480.885,-47.0701,-160.095],"yaw":-1.13446,"spawnMask":1},{"id":"creature-247786","entityId":"entry-11448","position":[-484.064,-47.0712,-152.459],"yaw":-4.38078,"spawnMask":1},{"id":"creature-247787","entityId":"entry-11448","position":[-579.446,-47.0692,-169.484],"yaw":-1.88496,"spawnMask":1},{"id":"creature-247788","entityId":"entry-11448","position":[-572.474,-47.0692,-160.705],"yaw":-5.49779,"spawnMask":1},{"id":"creature-247789","entityId":"entry-11448","position":[-549.006,-26.4212,-184.288],"yaw":-2.28638,"spawnMask":1},{"id":"creature-247790","entityId":"entry-11448","position":[-425.487,-40.0098,-217.189],"yaw":-3.61283,"spawnMask":1},{"id":"creature-247791","entityId":"entry-11448","position":[-584.906,-47.0657,-215.643],"yaw":-2.28638,"spawnMask":1},{"id":"creature-247792","entityId":"entry-11448","position":[-577.516,-47.065,-211.067],"yaw":-5.37561,"spawnMask":1},{"id":"creature-247795","entityId":"entry-11458","position":[-66.0648,-30.0873,-499.753],"yaw":-1.65806,"spawnMask":1},{"id":"creature-247796","entityId":"entry-11458","position":[91.9472,-26.6523,-556.927],"yaw":-3.19395,"spawnMask":1},{"id":"creature-247797","entityId":"entry-11458","position":[98.7807,-25.1418,-562.104],"yaw":-1.8675,"spawnMask":1},{"id":"creature-247798","entityId":"entry-11458","position":[107.449,-25.1419,-562.049],"yaw":-0.453786,"spawnMask":1},{"id":"creature-247799","entityId":"entry-11458","position":[-49.6826,-30.0876,-459.997],"yaw":-1.72788,"spawnMask":1},{"id":"creature-247800","entityId":"entry-11458","position":[83.9674,-25.1434,-398.736],"yaw":-5.53269,"spawnMask":1},{"id":"creature-247801","entityId":"entry-11458","position":[-120.786,-26.6523,-553.842],"yaw":-5.5676,"spawnMask":1},{"id":"creature-247802","entityId":"entry-11458","position":[-135.652,-25.1408,-568.167],"yaw":-2.32129,"spawnMask":1},{"id":"creature-247803","entityId":"entry-11458","position":[-121.831,-26.6523,-407.284],"yaw":-2.84489,"spawnMask":1},{"id":"creature-247804","entityId":"entry-11458","position":[-138.411,-25.1465,-399.65],"yaw":-2.00713,"spawnMask":1},{"id":"creature-247805","entityId":"entry-11458","position":[-114.875,-25.1446,-399.178],"yaw":-3.87463,"spawnMask":1},{"id":"creature-247806","entityId":"entry-11458","position":[52.3268,-29.0709,-471.426],"yaw":-1.62316,"spawnMask":1},{"id":"creature-247807","entityId":"entry-11458","position":[32.2882,-28.8157,-470.041],"yaw":-2.46091,"spawnMask":1},{"id":"creature-247808","entityId":"entry-11458","position":[12.7528,-30.1922,-509.915],"yaw":-0.780131,"spawnMask":1},{"id":"creature-247809","entityId":"entry-11458","position":[27.6619,-30.5658,-493.714],"yaw":-3.61916,"spawnMask":1},{"id":"creature-247810","entityId":"entry-11458","position":[-73.3596,-29.2926,-484.665],"yaw":-6.14356,"spawnMask":1},{"id":"creature-247811","entityId":"entry-11458","position":[-80.749,-29.3109,-501.513],"yaw":-2.21657,"spawnMask":1},{"id":"creature-247812","entityId":"entry-11458","position":[22.6595,-25.2254,-573.516],"yaw":-3.16307,"spawnMask":1},{"id":"creature-247813","entityId":"entry-11458","position":[3.304,-25.2254,-575.426],"yaw":-0.214215,"spawnMask":1},{"id":"creature-247814","entityId":"entry-11458","position":[13.4773,-25.2254,-566.019],"yaw":-0.255774,"spawnMask":1},{"id":"creature-247815","entityId":"entry-11458","position":[94.5002,-25.2294,-402.447],"yaw":-0.014872,"spawnMask":1},{"id":"creature-247831","entityId":"entry-11466","position":[66.6413,-45.7127,130.273],"yaw":-5.06145,"spawnMask":1},{"id":"creature-247832","entityId":"entry-11466","position":[38.7367,-45.6102,135.34],"yaw":-4.72984,"spawnMask":1},{"id":"creature-247833","entityId":"entry-11466","position":[10.0816,-45.611,130.325],"yaw":-4.34587,"spawnMask":1},{"id":"creature-247834","entityId":"entry-11466","position":[-14.4145,-45.6505,116.176],"yaw":-4.01426,"spawnMask":1},{"id":"creature-247835","entityId":"entry-11466","position":[-33.1627,-45.6157,94.067],"yaw":-3.64774,"spawnMask":1},{"id":"creature-247836","entityId":"entry-11466","position":[-43.0142,-45.5353,68.11],"yaw":-3.31613,"spawnMask":1},{"id":"creature-247837","entityId":"entry-11466","position":[-43.0768,-45.6038,37.907],"yaw":-2.94961,"spawnMask":1},{"id":"creature-247838","entityId":"entry-11466","position":[-32.8084,-45.6467,10.417],"yaw":-2.60054,"spawnMask":1},{"id":"creature-247839","entityId":"entry-11466","position":[-14.7129,-45.5858,-11.056],"yaw":-2.25148,"spawnMask":1},{"id":"creature-247840","entityId":"entry-11466","position":[10.5708,-45.4197,-25.83],"yaw":-1.90241,"spawnMask":1},{"id":"creature-247841","entityId":"entry-11466","position":[38.9825,-45.3755,-30.61],"yaw":-1.5708,"spawnMask":1},{"id":"creature-247842","entityId":"entry-11466","position":[67.8321,-45.2851,-25.577],"yaw":-1.22173,"spawnMask":1},{"id":"creature-247843","entityId":"entry-11466","position":[92.6286,-45.336,-10.89],"yaw":-0.872665,"spawnMask":1},{"id":"creature-247844","entityId":"entry-11466","position":[111.131,-45.2327,11.198],"yaw":-0.523599,"spawnMask":1},{"id":"creature-247845","entityId":"entry-11466","position":[121.285,-45.0692,39.183],"yaw":-0.174533,"spawnMask":1},{"id":"creature-247846","entityId":"entry-11466","position":[120.801,-45.2117,67.199],"yaw":-6.10865,"spawnMask":1},{"id":"creature-247847","entityId":"entry-11466","position":[110.342,-45.2295,95.197],"yaw":-5.75959,"spawnMask":1},{"id":"creature-247848","entityId":"entry-11466","position":[91.978,-45.4217,116.26],"yaw":-5.42797,"spawnMask":1},{"id":"creature-247849","entityId":"entry-11469","position":[-55.0951,-25.2342,-251.58],"yaw":-3.15905,"spawnMask":1},{"id":"creature-247850","entityId":"entry-11469","position":[-121.132,6.9346,-271.713],"yaw":-4.5204,"spawnMask":1},{"id":"creature-247851","entityId":"entry-11469","position":[-100.227,6.9456,-192.882],"yaw":-1.39626,"spawnMask":1},{"id":"creature-247852","entityId":"entry-11469","position":[-62.6761,6.9356,-234.474],"yaw":-2.93215,"spawnMask":1},{"id":"creature-247853","entityId":"entry-11469","position":[60.8003,6.9474,-194.393],"yaw":-0.174533,"spawnMask":1},{"id":"creature-247855","entityId":"entry-11469","position":[-78.0923,6.9473,-188.147],"yaw":-5.60251,"spawnMask":1},{"id":"creature-247856","entityId":"entry-11469","position":[28.5108,-25.2351,-249.076],"yaw":-5.02655,"spawnMask":1},{"id":"creature-247857","entityId":"entry-11469","position":[106.021,6.9471,-228.065],"yaw":-4.34587,"spawnMask":1},{"id":"creature-247858","entityId":"entry-11469","position":[-8.0568,6.9381,-196.056],"yaw":-2.02458,"spawnMask":1},{"id":"creature-247860","entityId":"entry-11469","position":[67.1718,6.9363,-235.562],"yaw":-6.23082,"spawnMask":1},{"id":"creature-247861","entityId":"entry-11470","position":[-55.1596,-25.2331,-254.489],"yaw":-2.67035,"spawnMask":1},{"id":"creature-247862","entityId":"entry-11470","position":[-97.1784,6.9346,-271.872],"yaw":-3.10669,"spawnMask":1},{"id":"creature-247863","entityId":"entry-11470","position":[-5.9908,-25.2346,-250.378],"yaw":-4.59022,"spawnMask":1},{"id":"creature-247864","entityId":"entry-11470","position":[-122.604,6.9346,-278.827],"yaw":-1.58825,"spawnMask":1},{"id":"creature-247865","entityId":"entry-11470","position":[-118.794,6.9346,-278.572],"yaw":-1.01229,"spawnMask":1},{"id":"creature-247866","entityId":"entry-11470","position":[-99.0758,6.9466,-189.217],"yaw":-5.2709,"spawnMask":1},{"id":"creature-247868","entityId":"entry-11470","position":[-56.6874,6.9352,-235.9],"yaw":-0.523599,"spawnMask":1},{"id":"creature-247869","entityId":"entry-11470","position":[54.1072,6.9474,-193.991],"yaw":-3.1765,"spawnMask":1},{"id":"creature-247870","entityId":"entry-11470","position":[12.0229,6.9352,-230.129],"yaw":-3.1765,"spawnMask":1},{"id":"creature-247871","entityId":"entry-11470","position":[16.8954,6.935,-232.888],"yaw":-0.610865,"spawnMask":1},{"id":"creature-247872","entityId":"entry-11470","position":[-82.6988,6.9479,-189.848],"yaw":-3.08923,"spawnMask":1},{"id":"creature-247873","entityId":"entry-11470","position":[-80.0483,6.9466,-195.219],"yaw":-1.5708,"spawnMask":1},{"id":"creature-247874","entityId":"entry-11470","position":[27.355,-25.2336,-253.198],"yaw":-1.85005,"spawnMask":1},{"id":"creature-247875","entityId":"entry-11470","position":[108.24,6.9468,-234.012],"yaw":-1.25664,"spawnMask":1},{"id":"creature-247876","entityId":"entry-11470","position":[24.8472,-25.2344,-250.987],"yaw":-2.44346,"spawnMask":1},{"id":"creature-247877","entityId":"entry-11470","position":[-9.7378,6.9384,-192.154],"yaw":-3.75246,"spawnMask":1},{"id":"creature-247878","entityId":"entry-11470","position":[-7.3699,-25.2343,-251.206],"yaw":-3.80482,"spawnMask":1},{"id":"creature-247880","entityId":"entry-11470","position":[61.564,6.9355,-233.438],"yaw":-3.28122,"spawnMask":1},{"id":"creature-247881","entityId":"entry-11471","position":[12.1084,-26.1457,-201.511],"yaw":-5.99616,"spawnMask":1},{"id":"creature-247882","entityId":"entry-11471","position":[-109.238,-26.0624,-280.378],"yaw":-5.37561,"spawnMask":1},{"id":"creature-247883","entityId":"entry-11471","position":[-107.975,-26.0625,-286.72],"yaw":-0.663225,"spawnMask":1},{"id":"creature-247884","entityId":"entry-11471","position":[-98.8727,-26.062,-213.776],"yaw":-6.12611,"spawnMask":1},{"id":"creature-247885","entityId":"entry-11471","position":[-128.716,-26.062,-198.456],"yaw":-3.12414,"spawnMask":1},{"id":"creature-247886","entityId":"entry-11471","position":[96.0722,-26.065,-294.247],"yaw":-6.00393,"spawnMask":1},{"id":"creature-247887","entityId":"entry-11471","position":[90.6332,-26.0635,-242.6],"yaw":-3.15905,"spawnMask":1},{"id":"creature-247888","entityId":"entry-11471","position":[-103.954,-26.062,-258.236],"yaw":-2.16421,"spawnMask":1},{"id":"creature-247889","entityId":"entry-11471","position":[-54.149,-26.1454,-217.518],"yaw":-4.00858,"spawnMask":1},{"id":"creature-247890","entityId":"entry-11471","position":[-68.7576,-26.1474,-213.962],"yaw":-4.57106,"spawnMask":1},{"id":"creature-247891","entityId":"entry-11471","position":[54.4574,-26.062,-221.381],"yaw":-5.63741,"spawnMask":1},{"id":"creature-247892","entityId":"entry-11471","position":[53.1943,-26.1526,-204.974],"yaw":-0.570829,"spawnMask":1},{"id":"creature-247893","entityId":"entry-11471","position":[-32.2099,-26.062,-193.237],"yaw":-2.87979,"spawnMask":1},{"id":"creature-247894","entityId":"entry-11471","position":[-128.728,-26.0529,-320.87],"yaw":-0.750492,"spawnMask":1},{"id":"creature-247895","entityId":"entry-11472","position":[20.2976,-26.062,-220.718],"yaw":-5.96903,"spawnMask":1},{"id":"creature-247896","entityId":"entry-11472","position":[-115.567,-26.0661,-297.62],"yaw":0,"spawnMask":1},{"id":"creature-247897","entityId":"entry-11472","position":[-90.2455,-26.062,-202.049],"yaw":-0.506145,"spawnMask":1},{"id":"creature-247898","entityId":"entry-11472","position":[-135.275,-26.062,-195.393],"yaw":-3.14159,"spawnMask":1},{"id":"creature-247899","entityId":"entry-11472","position":[85.6847,-26.0667,-286.145],"yaw":-0.174533,"spawnMask":1},{"id":"creature-247900","entityId":"entry-11472","position":[78.7921,-26.0646,-245.696],"yaw":-2.40855,"spawnMask":1},{"id":"creature-247901","entityId":"entry-11472","position":[96.0543,-26.065,-250.745],"yaw":-2.18166,"spawnMask":1},{"id":"creature-247902","entityId":"entry-11472","position":[-99.224,-26.062,-250.183],"yaw":-1.06465,"spawnMask":1},{"id":"creature-247903","entityId":"entry-11472","position":[-102.699,-26.1452,-241.869],"yaw":-2.62741,"spawnMask":1},{"id":"creature-247904","entityId":"entry-11472","position":[-60.0116,-26.062,-224.323],"yaw":-2.18166,"spawnMask":1},{"id":"creature-247905","entityId":"entry-11472","position":[60.3952,-26.1539,-211.12],"yaw":-3.71401,"spawnMask":1},{"id":"creature-247906","entityId":"entry-11472","position":[58.612,-26.062,-193.888],"yaw":0,"spawnMask":1},{"id":"creature-247907","entityId":"entry-11472","position":[-33.9702,-26.062,-202.41],"yaw":-4.2586,"spawnMask":1},{"id":"creature-247908","entityId":"entry-11472","position":[-120.659,-26.0609,-321.694],"yaw":-1.65806,"spawnMask":1},{"id":"creature-247909","entityId":"entry-11472","position":[-62.5089,-26.0572,-203.296],"yaw":0,"spawnMask":1},{"id":"creature-247926","entityId":"entry-11475","position":[20.7918,-26.1472,-208.619],"yaw":-4.71914,"spawnMask":1},{"id":"creature-247927","entityId":"entry-11475","position":[-101.366,-26.0628,-280.364],"yaw":-4.50295,"spawnMask":1},{"id":"creature-247928","entityId":"entry-11475","position":[-88.1823,-26.062,-211.273],"yaw":-3.80482,"spawnMask":1},{"id":"creature-247929","entityId":"entry-11475","position":[-135.886,-26.062,-200.651],"yaw":-3.12414,"spawnMask":1},{"id":"creature-247930","entityId":"entry-11475","position":[98.1319,-26.0647,-283.441],"yaw":-1.85005,"spawnMask":1},{"id":"creature-247931","entityId":"entry-11475","position":[55.1259,-26.153,-196.766],"yaw":-5.51304,"spawnMask":1},{"id":"creature-247932","entityId":"entry-11475","position":[-29.0108,-44.9717,-205.704],"yaw":-3.83972,"spawnMask":1},{"id":"creature-247933","entityId":"entry-11475","position":[17.458,-44.9717,-202.199],"yaw":-4.43314,"spawnMask":1},{"id":"creature-247934","entityId":"entry-11475","position":[-21.8989,-26.1492,-208.463],"yaw":-2.73993,"spawnMask":1},{"id":"creature-247935","entityId":"entry-11475","position":[-119.873,-26.0592,-332.654],"yaw":-1.43117,"spawnMask":1},{"id":"creature-247936","entityId":"entry-11475","position":[-57.6312,-26.062,-213.967],"yaw":-0.122173,"spawnMask":1},{"id":"creature-247937","entityId":"entry-11476","position":[-125.788,6.9386,-375.986],"yaw":-4.85202,"spawnMask":1},{"id":"creature-247938","entityId":"entry-11476","position":[-117.226,6.9346,-369.333],"yaw":-3.92699,"spawnMask":1},{"id":"creature-247939","entityId":"entry-11476","position":[92.719,6.9357,-372.749],"yaw":-3.33358,"spawnMask":1},{"id":"creature-247940","entityId":"entry-11476","position":[63.9565,6.947,-195.716],"yaw":-4.83456,"spawnMask":1},{"id":"creature-247941","entityId":"entry-11476","position":[56.2881,6.9457,-200.137],"yaw":-4.59022,"spawnMask":1},{"id":"creature-247942","entityId":"entry-11476","position":[104.11,6.9464,-233.523],"yaw":-1.0472,"spawnMask":1},{"id":"creature-247943","entityId":"entry-11476","position":[-106.26,6.9346,-364.836],"yaw":-2.87979,"spawnMask":1},{"id":"creature-247944","entityId":"entry-11476","position":[-107.88,6.9347,-377.853],"yaw":-3.28122,"spawnMask":1},{"id":"creature-247945","entityId":"entry-11476","position":[21.3899,6.936,-230.801],"yaw":-1.25664,"spawnMask":1},{"id":"creature-247946","entityId":"entry-11476","position":[81.6231,6.9346,-357.067],"yaw":-2.86234,"spawnMask":1},{"id":"creature-247947","entityId":"entry-11476","position":[80.6243,6.9394,-379.93],"yaw":-4.50295,"spawnMask":1},{"id":"creature-247948","entityId":"entry-11476","position":[81.7763,6.9346,-368.252],"yaw":-5.58505,"spawnMask":1},{"id":"creature-247949","entityId":"entry-11476","position":[1.216,-25.2333,-253.923],"yaw":-0.750492,"spawnMask":1},{"id":"creature-247950","entityId":"entry-11476","position":[-10.4231,-25.2327,-255.612],"yaw":-4.60767,"spawnMask":1},{"id":"creature-247951","entityId":"entry-11476","position":[-118.927,6.9346,-363.703],"yaw":-4.76475,"spawnMask":1},{"id":"creature-247952","entityId":"entry-11476","position":[-120.101,6.9384,-377.054],"yaw":-5.81195,"spawnMask":1},{"id":"creature-247953","entityId":"entry-11476","position":[90.2962,6.9346,-364.29],"yaw":-0.733038,"spawnMask":1},{"id":"creature-247954","entityId":"entry-11476","position":[-95.6505,6.9346,-279.971],"yaw":-3.01942,"spawnMask":1},{"id":"creature-247955","entityId":"entry-11476","position":[-97.1362,6.9462,-195.781],"yaw":-0.523599,"spawnMask":1},{"id":"creature-247956","entityId":"entry-11477","position":[-93.1863,6.9346,-267.881],"yaw":-3.68265,"spawnMask":1},{"id":"creature-247957","entityId":"entry-11477","position":[-49.3932,-25.2325,-256.313],"yaw":-1.65806,"spawnMask":1},{"id":"creature-247958","entityId":"entry-11477","position":[-61.3733,-25.2339,-252.266],"yaw":-0.418879,"spawnMask":1},{"id":"creature-247959","entityId":"entry-11477","position":[-105.192,6.9447,-189.839],"yaw":-4.81711,"spawnMask":1},{"id":"creature-247960","entityId":"entry-11477","position":[81.0784,6.9346,-363.916],"yaw":-0.907571,"spawnMask":1},{"id":"creature-247961","entityId":"entry-11477","position":[105.646,6.946,-224.581],"yaw":-1.72788,"spawnMask":1},{"id":"creature-247962","entityId":"entry-11477","position":[-109.826,6.9346,-368.785],"yaw":-0.191986,"spawnMask":1},{"id":"creature-247963","entityId":"entry-11477","position":[-104.1,6.9412,-382.858],"yaw":-2.61799,"spawnMask":1},{"id":"creature-247964","entityId":"entry-11477","position":[87.1143,6.9346,-368.853],"yaw":-4.93928,"spawnMask":1},{"id":"creature-247965","entityId":"entry-11477","position":[-113.025,6.9346,-363.912],"yaw":-3.735,"spawnMask":1},{"id":"creature-247966","entityId":"entry-11477","position":[-113.56,6.9364,-378.296],"yaw":-3.22886,"spawnMask":1},{"id":"creature-247967","entityId":"entry-11477","position":[33.3651,-25.2329,-255.019],"yaw":-1.06465,"spawnMask":1},{"id":"creature-247968","entityId":"entry-11477","position":[22.3325,-25.2328,-255.325],"yaw":-4.45059,"spawnMask":1},{"id":"creature-247969","entityId":"entry-11477","position":[92.134,6.9394,-379.928],"yaw":-4.76475,"spawnMask":1},{"id":"creature-247970","entityId":"entry-11477","position":[86.1041,6.9346,-360.945],"yaw":-5.35816,"spawnMask":1},{"id":"creature-247971","entityId":"entry-11477","position":[8.4794,6.935,-233.315],"yaw":-5.41052,"spawnMask":1},{"id":"creature-247972","entityId":"entry-11477","position":[90.6788,6.9346,-355.749],"yaw":-0.558505,"spawnMask":1},{"id":"creature-247973","entityId":"entry-11480","position":[-0.2574,-30.1057,-482.631],"yaw":-3.03687,"spawnMask":1},{"id":"creature-247974","entityId":"entry-11480","position":[-22.3633,-29.5062,-491.285],"yaw":-5.61996,"spawnMask":1},{"id":"creature-247975","entityId":"entry-11480","position":[-13.8123,-30.564,-470.191],"yaw":-1.43117,"spawnMask":1},{"id":"creature-247976","entityId":"entry-11480","position":[-109.26,6.9346,-327.484],"yaw":-2.93215,"spawnMask":1},{"id":"creature-247977","entityId":"entry-11480","position":[-116.312,6.9346,-342.747],"yaw":-4.41568,"spawnMask":1},{"id":"creature-247978","entityId":"entry-11480","position":[-126.685,6.9346,-319.39],"yaw":-1.18682,"spawnMask":1},{"id":"creature-247979","entityId":"entry-11480","position":[79.3352,6.9361,-322.698],"yaw":-5.61996,"spawnMask":1},{"id":"creature-247980","entityId":"entry-11480","position":[86.3381,6.9366,-305.603],"yaw":-1.18682,"spawnMask":1},{"id":"creature-247981","entityId":"entry-11480","position":[98.4269,6.9356,-330.85],"yaw":-4.20624,"spawnMask":1},{"id":"creature-247982","entityId":"entry-11480","position":[-78.1799,-46.2454,-35.892],"yaw":-4.67748,"spawnMask":1},{"id":"creature-247983","entityId":"entry-11480","position":[-89.9192,-46.2468,-15.021],"yaw":-0.715585,"spawnMask":1},{"id":"creature-247984","entityId":"entry-11480","position":[-64.7134,-46.2468,-23.391],"yaw":-3.33358,"spawnMask":1},{"id":"creature-247985","entityId":"entry-11480","position":[154.568,-46.245,-39.097],"yaw":-4.64258,"spawnMask":1},{"id":"creature-247986","entityId":"entry-11480","position":[142.883,-46.2468,-16.329],"yaw":-0.715585,"spawnMask":1},{"id":"creature-247987","entityId":"entry-11480","position":[170.766,-46.2468,-24.891],"yaw":-3.14159,"spawnMask":1},{"id":"creature-247988","entityId":"entry-11480","position":[-133.61,6.9346,-325.81],"yaw":-0.471239,"spawnMask":1},{"id":"creature-247989","entityId":"entry-11483","position":[-4.5858,-29.7836,-491.296],"yaw":-3.83972,"spawnMask":1},{"id":"creature-247990","entityId":"entry-11483","position":[-13.4083,-29.2285,-494.711],"yaw":-4.85202,"spawnMask":1},{"id":"creature-247991","entityId":"entry-11483","position":[-24.4817,-30.1582,-482.228],"yaw":-6.0912,"spawnMask":1},{"id":"creature-247992","entityId":"entry-11483","position":[-22.3362,-30.4271,-474.183],"yaw":-0.855211,"spawnMask":1},{"id":"creature-247993","entityId":"entry-11483","position":[-4.9408,-30.2462,-474.045],"yaw":-2.51327,"spawnMask":1},{"id":"creature-247994","entityId":"entry-11483","position":[-116.645,6.9346,-319.189],"yaw":-1.90241,"spawnMask":1},{"id":"creature-247995","entityId":"entry-11483","position":[-109.572,6.9346,-337.115],"yaw":-3.31613,"spawnMask":1},{"id":"creature-247996","entityId":"entry-11483","position":[-126.165,6.9346,-343.27],"yaw":-4.99164,"spawnMask":1},{"id":"creature-247997","entityId":"entry-11483","position":[-133.141,6.9346,-336.804],"yaw":-5.93412,"spawnMask":1},{"id":"creature-247998","entityId":"entry-11483","position":[86.7138,6.9357,-329.986],"yaw":-4.83456,"spawnMask":1},{"id":"creature-247999","entityId":"entry-11483","position":[79.6065,6.9361,-312.865],"yaw":-0.401426,"spawnMask":1},{"id":"creature-248000","entityId":"entry-11483","position":[97.5416,6.9375,-305.913],"yaw":-2.21657,"spawnMask":1},{"id":"creature-248001","entityId":"entry-11483","position":[104.176,6.938,-312.963],"yaw":-2.75762,"spawnMask":1},{"id":"creature-248002","entityId":"entry-11483","position":[104.347,6.9367,-323.332],"yaw":-3.36848,"spawnMask":1},{"id":"creature-248003","entityId":"entry-11483","position":[-87.3231,-46.2468,-32.572],"yaw":-5.16617,"spawnMask":1},{"id":"creature-248004","entityId":"entry-11483","position":[-91.858,-46.2468,-22.429],"yaw":0,"spawnMask":1},{"id":"creature-248005","entityId":"entry-11483","position":[-78.17,-46.2468,-10.373],"yaw":-1.41372,"spawnMask":1},{"id":"creature-248006","entityId":"entry-11483","position":[-68.8065,-46.2468,-12.449],"yaw":-2.33874,"spawnMask":1},{"id":"creature-248007","entityId":"entry-11483","position":[-68.5476,-46.2454,-31.744],"yaw":-3.9619,"spawnMask":1},{"id":"creature-248008","entityId":"entry-11483","position":[146.036,-46.2449,-35.694],"yaw":-5.48033,"spawnMask":1},{"id":"creature-248009","entityId":"entry-11483","position":[140.204,-46.2464,-25.848],"yaw":-6.07375,"spawnMask":1},{"id":"creature-248010","entityId":"entry-11483","position":[153.991,-46.2468,-12.046],"yaw":-1.50098,"spawnMask":1},{"id":"creature-248011","entityId":"entry-11483","position":[165.257,-46.2468,-13.957],"yaw":-2.19912,"spawnMask":1},{"id":"creature-248012","entityId":"entry-11483","position":[164.893,-46.2466,-35.913],"yaw":-3.78736,"spawnMask":1},{"id":"creature-248022","entityId":"entry-11486","position":[-132.699,-70.1334,-134.302],"yaw":-4.62512,"spawnMask":1},{"id":"creature-248023","entityId":"entry-14303","position":[-58.3478,-29.1911,-468.639],"yaw":0,"spawnMask":1},{"id":"creature-248024","entityId":"entry-14303","position":[25.9002,-25.1634,-561.581],"yaw":-1.22173,"spawnMask":1},{"id":"creature-248025","entityId":"entry-11487","position":[-33.213,-26.0603,-184.663],"yaw":-4.53786,"spawnMask":1},{"id":"creature-248026","entityId":"entry-14303","position":[-134.792,-26.6523,-557.262],"yaw":-3.7001,"spawnMask":1},{"id":"creature-248027","entityId":"entry-14303","position":[-131.396,-26.6523,-408.44],"yaw":-5.18363,"spawnMask":1},{"id":"creature-248028","entityId":"entry-14303","position":[39.8198,-29.1396,-474.064],"yaw":-0.174533,"spawnMask":1},{"id":"creature-248029","entityId":"entry-14303","position":[-50.0505,-29.7574,-476.763],"yaw":-3.46971,"spawnMask":1},{"id":"creature-248030","entityId":"entry-14303","position":[30.4994,-30.4889,-508.75],"yaw":-5.77788,"spawnMask":1},{"id":"creature-248031","entityId":"entry-14303","position":[-74.2063,-29.8855,-494.784],"yaw":-3.33358,"spawnMask":1},{"id":"creature-248032","entityId":"entry-14303","position":[-118.824,-25.1413,-563.395],"yaw":-0.244346,"spawnMask":1},{"id":"creature-248033","entityId":"entry-14303","position":[101.695,-26.7411,-408.019],"yaw":-4.50226,"spawnMask":1},{"id":"creature-248034","entityId":"entry-11488","position":[84.2739,6.8653,-216.257],"yaw":-0.838618,"spawnMask":1},{"id":"creature-248035","entityId":"entry-11489","position":[-14.4655,-45.0526,-284.367],"yaw":-4.71239,"spawnMask":1},{"id":"creature-248036","entityId":"entry-14308","position":[87.2697,6.8653,-216.417],"yaw":-0.838618,"spawnMask":1},{"id":"creature-248037","entityId":"entry-11496","position":[38.0077,-51.2023,52.225],"yaw":-4.69494,"spawnMask":1},{"id":"creature-248076","entityId":"entry-11501","position":[-828.147,15.5682,-279.464],"yaw":-3.184,"spawnMask":1},{"id":"creature-248077","entityId":"entry-14326","position":[-410.784,-46.3078,-763.3654],"yaw":-5.28835,"spawnMask":1},{"id":"creature-248078","entityId":"entry-14322","position":[-491.304,-24.2502,-662.8271],"yaw":-4.03171,"spawnMask":1},{"id":"creature-248079","entityId":"entry-14321","position":[-356.868,-10.096,-501.909],"yaw":-3.14258,"spawnMask":1},{"id":"creature-248080","entityId":"entry-14323","position":[-550.453,-47.0683,-226.49],"yaw":-3.92699,"spawnMask":1},{"id":"creature-248081","entityId":"entry-14325","position":[-627.663,7.7129,-278.494],"yaw":-3.13558,"spawnMask":1},{"id":"creature-248082","entityId":"entry-14324","position":[-834.068,15.6517,-270.672],"yaw":-3.21141,"spawnMask":1},{"id":"creature-248083","entityId":"entry-13036","position":[-725.159,6.5144,-273.845],"yaw":-4.36332,"spawnMask":1},{"id":"creature-248084","entityId":"entry-13036","position":[-719.476,6.5132,-282.987],"yaw":-5.86431,"spawnMask":1},{"id":"creature-248085","entityId":"entry-13036","position":[-712.876,6.5118,-291.538],"yaw":-5.06145,"spawnMask":1},{"id":"creature-248086","entityId":"entry-13036","position":[-724.283,6.5136,-295.701],"yaw":-0.925025,"spawnMask":1},{"id":"creature-248087","entityId":"entry-13036","position":[-715.429,6.513,-267.641],"yaw":-4.74729,"spawnMask":1},{"id":"creature-248088","entityId":"entry-13036","position":[-729.855,6.4311,-262.238],"yaw":-1.0012,"spawnMask":1},{"id":"creature-248089","entityId":"entry-13036","position":[-731.429,6.4311,-319.31],"yaw":-3.69297,"spawnMask":1},{"id":"creature-248090","entityId":"entry-13036","position":[-730.93,6.432,-306.013],"yaw":-4.64055,"spawnMask":1},{"id":"creature-248091","entityId":"entry-13036","position":[-735.39,6.4325,-315.798],"yaw":-0.813315,"spawnMask":1},{"id":"creature-248093","entityId":"entry-13036","position":[-340.957,-46.7954,-782.3859],"yaw":-5.84685,"spawnMask":1},{"id":"creature-248094","entityId":"entry-13036","position":[-357.679,-47.0585,-791.2769],"yaw":-1.57987,"spawnMask":1},{"id":"creature-248095","entityId":"entry-13036","position":[-349.211,-47.1273,-796.4607],"yaw":-0.750492,"spawnMask":1},{"id":"creature-248096","entityId":"entry-13036","position":[-341.819,-46.9436,-790.332],"yaw":-3.12414,"spawnMask":1},{"id":"creature-248097","entityId":"entry-13036","position":[-382.379,-45.3073,-829.2519],"yaw":-1.91986,"spawnMask":1},{"id":"creature-248098","entityId":"entry-13036","position":[-377.556,-45.8563,-811.9771],"yaw":-2.63545,"spawnMask":1},{"id":"creature-248099","entityId":"entry-13036","position":[-382.851,-45.6558,-807.2155],"yaw":-4.95674,"spawnMask":1},{"id":"creature-248100","entityId":"entry-13036","position":[-374.904,-45.9017,-819.345],"yaw":-0.418879,"spawnMask":1},{"id":"creature-248101","entityId":"entry-13036","position":[-399.253,-47.3049,-743.965],"yaw":-4.4731,"spawnMask":1},{"id":"creature-248106","entityId":"entry-13036","position":[-407.862,-44.8471,-810.9351],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248107","entityId":"entry-13036","position":[-428.723,-46.4599,-795.2484],"yaw":-0.884373,"spawnMask":1},{"id":"creature-248108","entityId":"entry-13036","position":[-415.393,-45.6856,-797.2681],"yaw":-4.29386,"spawnMask":1},{"id":"creature-248109","entityId":"entry-13036","position":[-428.198,-45.4771,-680.6923],"yaw":-3.03687,"spawnMask":1},{"id":"creature-248110","entityId":"entry-13036","position":[-426.124,-45.2024,-686.9319],"yaw":-0.296706,"spawnMask":1},{"id":"creature-248111","entityId":"entry-13036","position":[-434.445,-44.9754,-691.34],"yaw":-5.39307,"spawnMask":1},{"id":"creature-248117","entityId":"entry-13036","position":[-448.432,-10.5465,-456.035],"yaw":-3.98352,"spawnMask":1},{"id":"creature-248118","entityId":"entry-13036","position":[-441.946,-10.4621,-467.919],"yaw":-1.20428,"spawnMask":1},{"id":"creature-248119","entityId":"entry-13036","position":[-399.819,-25.5535,-657.389],"yaw":-1.8326,"spawnMask":1},{"id":"creature-248120","entityId":"entry-13036","position":[-402.482,-18.8146,-588.686],"yaw":-3.28122,"spawnMask":1},{"id":"creature-248121","entityId":"entry-13036","position":[-410.954,-18.8146,-585.697],"yaw":-1.67552,"spawnMask":1},{"id":"creature-248122","entityId":"entry-13036","position":[-412.873,-18.8142,-576.769],"yaw":-0.645772,"spawnMask":1},{"id":"creature-248125","entityId":"entry-13036","position":[-433.999,-18.8976,-591.772],"yaw":-3.27681,"spawnMask":1},{"id":"creature-248126","entityId":"entry-13036","position":[-436.594,-18.8975,-588.415],"yaw":-3.38357,"spawnMask":1},{"id":"creature-248130","entityId":"entry-13036","position":[-409.212,-18.8157,-433.105],"yaw":-6.0912,"spawnMask":1},{"id":"creature-248131","entityId":"entry-13036","position":[-408.15,-47.1058,-736.8112],"yaw":-5.84685,"spawnMask":1},{"id":"creature-248132","entityId":"entry-13036","position":[-414.047,-46.8377,-744.466],"yaw":-2.54818,"spawnMask":1},{"id":"creature-248135","entityId":"entry-13036","position":[-341.296,-47.2195,-822.0018],"yaw":-2.46091,"spawnMask":1},{"id":"creature-248136","entityId":"entry-13036","position":[-352.359,-47.5739,-817.9906],"yaw":-0.804581,"spawnMask":1},{"id":"creature-248137","entityId":"entry-13036","position":[-335.383,-47.5676,-815.0791],"yaw":-1.0472,"spawnMask":1},{"id":"creature-248138","entityId":"entry-13036","position":[-356.917,-47.9341,-827.7847],"yaw":-4.65561,"spawnMask":1},{"id":"creature-248139","entityId":"entry-13036","position":[-439.199,-17.887,-401.044],"yaw":-0.384838,"spawnMask":1},{"id":"creature-248140","entityId":"entry-13036","position":[-444.405,-18.8135,-417.944],"yaw":-1.16937,"spawnMask":1},{"id":"creature-248141","entityId":"entry-13036","position":[-451.304,-17.887,-402.114],"yaw":-3.69278,"spawnMask":1},{"id":"creature-248142","entityId":"entry-13036","position":[-312.051,-18.8135,-586.881],"yaw":-2.00713,"spawnMask":1},{"id":"creature-248143","entityId":"entry-13036","position":[-318.451,-18.8969,-399.783],"yaw":-5.02763,"spawnMask":1},{"id":"creature-248144","entityId":"entry-13036","position":[-325.148,-18.8135,-408.341],"yaw":-1.3439,"spawnMask":1},{"id":"creature-248145","entityId":"entry-13036","position":[-780.945,14.2995,-276.419],"yaw":-4.05614,"spawnMask":1},{"id":"creature-248146","entityId":"entry-13036","position":[-792.791,15.5684,-264.687],"yaw":-3.61377,"spawnMask":1},{"id":"creature-248147","entityId":"entry-13036","position":[-778.921,13.4,-270.153],"yaw":-3.45469,"spawnMask":1},{"id":"creature-248153","entityId":"entry-13036","position":[-399.909,-10.5385,-539.342],"yaw":-4.08073,"spawnMask":1},{"id":"creature-248154","entityId":"entry-13036","position":[-387.211,-10.5337,-556.757],"yaw":-4.61475,"spawnMask":1},{"id":"creature-248155","entityId":"entry-13036","position":[-355.311,-46.8947,-778.6595],"yaw":-2.0674,"spawnMask":1},{"id":"creature-248156","entityId":"entry-13036","position":[-410.008,-18.9028,-424.25],"yaw":-3.19855,"spawnMask":1},{"id":"creature-248157","entityId":"entry-13036","position":[-404.331,-18.903,-417.952],"yaw":-0.80796,"spawnMask":1},{"id":"creature-248163","entityId":"entry-13036","position":[-412.768,-47.1382,-821.7431],"yaw":-6.03884,"spawnMask":1},{"id":"creature-248164","entityId":"entry-13036","position":[-420.721,-45.5598,-809.4483],"yaw":-0.958851,"spawnMask":1},{"id":"creature-248165","entityId":"entry-13036","position":[-334.308,-18.8135,-403.186],"yaw":-3.4383,"spawnMask":1},{"id":"creature-248166","entityId":"entry-13036","position":[-464.297,-25.6752,-733.9552],"yaw":-1.44948,"spawnMask":1},{"id":"creature-248167","entityId":"entry-13036","position":[-466.899,-25.6765,-737.3059],"yaw":-1.52329,"spawnMask":1},{"id":"creature-248170","entityId":"entry-13036","position":[-434.573,-10.4636,-455.581],"yaw":-1.8326,"spawnMask":1},{"id":"creature-248171","entityId":"entry-13036","position":[-386.253,-44.8355,-819.8434],"yaw":-3.68265,"spawnMask":1},{"id":"creature-248176","entityId":"entry-13036","position":[-404.829,-46.7304,-751.0477],"yaw":-5.37936,"spawnMask":1},{"id":"creature-248177","entityId":"entry-13036","position":[-304.165,-18.8135,-576.9],"yaw":-0.314159,"spawnMask":1},{"id":"creature-248178","entityId":"entry-13036","position":[-319.134,-18.8135,-578.809],"yaw":-3.36848,"spawnMask":1},{"id":"creature-248179","entityId":"entry-13036","position":[-415.365,-46.8229,-728.1907],"yaw":-2.00533,"spawnMask":1},{"id":"creature-248180","entityId":"entry-13036","position":[-404.71,-47.0972,-726.8922],"yaw":-1.09309,"spawnMask":1},{"id":"creature-248182","entityId":"entry-13036","position":[-397.124,-25.5534,-651.323],"yaw":-3.85718,"spawnMask":1},{"id":"creature-248183","entityId":"entry-13036","position":[-391.789,-25.5534,-649.73],"yaw":-5.81195,"spawnMask":1},{"id":"creature-248186","entityId":"entry-13036","position":[-347.256,-47.6297,-828.1696],"yaw":-0.77538,"spawnMask":1},{"id":"creature-248187","entityId":"entry-11450","position":[-387.482,-28.8987,-297.443],"yaw":-2.68781,"spawnMask":1},{"id":"creature-248188","entityId":"entry-11450","position":[-419.088,-40.0098,-221.946],"yaw":-0.488692,"spawnMask":1},{"id":"creature-248189","entityId":"entry-11450","position":[-530.242,-47.0692,-179.776],"yaw":-1.41372,"spawnMask":1},{"id":"creature-248190","entityId":"entry-11450","position":[-530.279,-47.0692,-159.34],"yaw":-4.86947,"spawnMask":1},{"id":"creature-248191","entityId":"entry-11450","position":[-593.301,-26.4212,-195.095],"yaw":-3.10669,"spawnMask":1},{"id":"creature-248192","entityId":"entry-11450","position":[-484.174,6.2479,-236.407],"yaw":-1.44862,"spawnMask":1},{"id":"creature-248193","entityId":"entry-11450","position":[-497.806,6.2484,-236.408],"yaw":-1.64061,"spawnMask":1},{"id":"creature-248194","entityId":"entry-11450","position":[-480.337,6.2455,-202.047],"yaw":-1.85005,"spawnMask":1},{"id":"creature-248195","entityId":"entry-11450","position":[-485.214,6.2453,-195.269],"yaw":-3.21141,"spawnMask":1},{"id":"creature-248196","entityId":"entry-11450","position":[-566.009,7.7976,-273.49],"yaw":-4.2586,"spawnMask":1},{"id":"creature-248197","entityId":"entry-11450","position":[-559.293,7.7976,-282.901],"yaw":-0.855211,"spawnMask":1},{"id":"creature-248198","entityId":"entry-11450","position":[-688.532,7.8031,-254.299],"yaw":-2.30383,"spawnMask":1},{"id":"creature-248199","entityId":"entry-11450","position":[-541.768,-26.4212,-177.474],"yaw":-5.67232,"spawnMask":1},{"id":"creature-248200","entityId":"entry-11450","position":[-523.031,6.2508,-205.711],"yaw":-2.19911,"spawnMask":1},{"id":"creature-248201","entityId":"entry-11450","position":[-748.556,6.5167,-327.054],"yaw":-3.56047,"spawnMask":1},{"id":"creature-248202","entityId":"entry-13160","position":[-532.802,-47.0692,-224.757],"yaw":-4.4855,"spawnMask":1},{"id":"creature-248203","entityId":"entry-13160","position":[-478.845,-47.0365,-217.578],"yaw":-4.62512,"spawnMask":1},{"id":"creature-248204","entityId":"entry-13160","position":[-506.509,-47.055,-218.57],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248205","entityId":"entry-13160","position":[-494.143,-47.0588,-228.489],"yaw":-4.59022,"spawnMask":1},{"id":"creature-248206","entityId":"entry-13160","position":[-512.413,-47.0651,-203.461],"yaw":-4.53786,"spawnMask":1},{"id":"creature-248207","entityId":"entry-13160","position":[-479.504,-47.0501,-226.032],"yaw":-4.62512,"spawnMask":1},{"id":"creature-248208","entityId":"entry-13160","position":[-520.507,-47.0644,-228.74],"yaw":-4.5204,"spawnMask":1},{"id":"creature-248209","entityId":"entry-13160","position":[-480.451,-47.0487,-208.247],"yaw":-4.62512,"spawnMask":1},{"id":"creature-248210","entityId":"entry-13160","position":[-522.128,-47.0655,-216.567],"yaw":-4.5204,"spawnMask":1},{"id":"creature-248211","entityId":"entry-13160","position":[-533.865,-47.0692,-207.808],"yaw":-4.50295,"spawnMask":1},{"id":"creature-248212","entityId":"entry-13160","position":[-462.891,-12.9324,-508.68],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248213","entityId":"entry-13160","position":[-449.841,-10.4521,-516.736],"yaw":-4.66003,"spawnMask":1},{"id":"creature-248214","entityId":"entry-13160","position":[-462.675,-12.8402,-499.37],"yaw":-4.57276,"spawnMask":1},{"id":"creature-248215","entityId":"entry-13160","position":[-477.259,-18.7986,-509.216],"yaw":-4.43314,"spawnMask":1},{"id":"creature-248216","entityId":"entry-13160","position":[-471.968,-16.7841,-507.278],"yaw":-4.4855,"spawnMask":1},{"id":"creature-248217","entityId":"entry-13160","position":[-452.545,-10.4466,-499.725],"yaw":-4.64258,"spawnMask":1},{"id":"creature-248218","entityId":"entry-13160","position":[-448.175,-10.4534,-508.589],"yaw":-4.67748,"spawnMask":1},{"id":"creature-248219","entityId":"entry-13160","position":[-452.794,-10.4497,-512.82],"yaw":-4.64258,"spawnMask":1},{"id":"creature-248220","entityId":"entry-13160","position":[-455.446,-10.4459,-506.3],"yaw":-4.62512,"spawnMask":1},{"id":"creature-248221","entityId":"entry-13160","position":[-448.543,-10.4509,-501.498],"yaw":-4.67748,"spawnMask":1},{"id":"creature-248222","entityId":"entry-13160","position":[-474.662,-18.8136,-443.512],"yaw":-4.53786,"spawnMask":1},{"id":"creature-248223","entityId":"entry-13160","position":[-467.544,-18.8136,-443.629],"yaw":-4.59022,"spawnMask":1},{"id":"creature-248224","entityId":"entry-13160","position":[-483.989,-18.8136,-431.216],"yaw":-4.50295,"spawnMask":1},{"id":"creature-248225","entityId":"entry-13160","position":[-494.286,-18.8136,-440.855],"yaw":-4.45059,"spawnMask":1},{"id":"creature-248226","entityId":"entry-13160","position":[-490.953,-18.8136,-430.454],"yaw":-4.46804,"spawnMask":1},{"id":"creature-248227","entityId":"entry-13160","position":[-472.02,-18.8135,-435.582],"yaw":-4.57276,"spawnMask":1},{"id":"creature-248228","entityId":"entry-13160","position":[-485.26,-18.8136,-439.504],"yaw":-4.4855,"spawnMask":1},{"id":"creature-248229","entityId":"entry-13160","position":[-478.354,-18.8136,-436.177],"yaw":-4.53786,"spawnMask":1},{"id":"creature-248230","entityId":"entry-13160","position":[-486.561,-18.8136,-446.615],"yaw":-4.4855,"spawnMask":1},{"id":"creature-248231","entityId":"entry-13160","position":[-493.252,-18.8136,-450.363],"yaw":-4.43314,"spawnMask":1},{"id":"creature-248232","entityId":"entry-13160","position":[-396.903,-25.5534,-858.5371],"yaw":-1.37881,"spawnMask":1},{"id":"creature-248233","entityId":"entry-13160","position":[-400.121,-25.5529,-865.246],"yaw":-1.39626,"spawnMask":1},{"id":"creature-248234","entityId":"entry-13160","position":[-403.722,-25.5526,-870.447],"yaw":-1.41372,"spawnMask":1},{"id":"creature-248235","entityId":"entry-13160","position":[-415.05,-25.5535,-858.9606],"yaw":-1.44862,"spawnMask":1},{"id":"creature-248236","entityId":"entry-13160","position":[-414.559,-25.5527,-868.839],"yaw":-1.44862,"spawnMask":1},{"id":"creature-248237","entityId":"entry-13160","position":[-427.725,-25.5534,-861.04],"yaw":-1.50098,"spawnMask":1},{"id":"creature-248238","entityId":"entry-13160","position":[-424.948,-25.5526,-870.573],"yaw":-1.50098,"spawnMask":1},{"id":"creature-248239","entityId":"entry-13160","position":[-437.603,-25.5528,-868.65],"yaw":-1.55334,"spawnMask":1},{"id":"creature-248240","entityId":"entry-13160","position":[-445.818,-25.5524,-874.154],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248241","entityId":"entry-13160","position":[-444.743,-25.5535,-859.9704],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248242","entityId":"entry-13160","position":[-460.309,-25.5534,-829.1881],"yaw":-1.50098,"spawnMask":1},{"id":"creature-248243","entityId":"entry-13160","position":[-456.756,-26.0032,-817.5039],"yaw":-1.50098,"spawnMask":1},{"id":"creature-248244","entityId":"entry-13160","position":[-464.723,-25.553,-814.196],"yaw":-1.55334,"spawnMask":1},{"id":"creature-248245","entityId":"entry-13160","position":[-470.572,-25.5527,-820.5903],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248246","entityId":"entry-13160","position":[-470.72,-25.5528,-830.2159],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248247","entityId":"entry-13160","position":[-471.313,-25.5526,-807.0155],"yaw":-1.71042,"spawnMask":1},{"id":"creature-248248","entityId":"entry-13160","position":[-461.941,-25.5532,-801.0515],"yaw":-1.65806,"spawnMask":1},{"id":"creature-248249","entityId":"entry-13160","position":[-472.73,-25.5522,-793.9278],"yaw":-1.72788,"spawnMask":1},{"id":"creature-248250","entityId":"entry-13160","position":[-460.436,-25.5532,-784.7519],"yaw":-1.65806,"spawnMask":1},{"id":"creature-248251","entityId":"entry-13160","position":[-473.549,-25.5516,-783.0755],"yaw":-1.74533,"spawnMask":1},{"id":"creature-248252","entityId":"entry-11454","position":[-55.4497,-46.8273,-1473.976],"yaw":-3.61283,"spawnMask":1},{"id":"creature-248253","entityId":"entry-11451","position":[-56.0148,-46.8273,-1480.956],"yaw":-6.24828,"spawnMask":1},{"id":"creature-248254","entityId":"entry-11451","position":[-56.7951,-46.8273,-1467.156],"yaw":-4.5204,"spawnMask":1},{"id":"creature-248255","entityId":"entry-11454","position":[-22.8691,-46.8281,-1440.261],"yaw":-3.89208,"spawnMask":1},{"id":"creature-248256","entityId":"entry-11451","position":[-24.2954,-46.9114,-1435.166],"yaw":-4.14954,"spawnMask":1},{"id":"creature-248257","entityId":"entry-11451","position":[-15.5803,-46.8281,-1440.522],"yaw":-5.81195,"spawnMask":1},{"id":"creature-248258","entityId":"entry-11454","position":[-59.7454,-46.88,-1364.166],"yaw":-5.07981,"spawnMask":1},{"id":"creature-248259","entityId":"entry-11451","position":[-55.0855,-46.8144,-1362.255],"yaw":-3.37677,"spawnMask":1},{"id":"creature-248260","entityId":"entry-11451","position":[-65.1024,-46.8217,-1368.236],"yaw":-6.16101,"spawnMask":1},{"id":"creature-248270","entityId":"entry-11456","position":[-12.2893,-46.8281,-1467.765],"yaw":-1.93732,"spawnMask":1},{"id":"creature-248271","entityId":"entry-11456","position":[-64.4801,-46.827,-1438.687],"yaw":-4.13643,"spawnMask":1},{"id":"creature-248272","entityId":"entry-11456","position":[-30.1741,-46.822,-1378.725],"yaw":-2.37365,"spawnMask":1},{"id":"creature-248274","entityId":"entry-11454","position":[-57.6606,-25.886,-1161.025],"yaw":-2.07694,"spawnMask":1},{"id":"creature-248275","entityId":"entry-11451","position":[-52.3725,-25.887,-1158.125],"yaw":-0.523599,"spawnMask":1},{"id":"creature-248276","entityId":"entry-11451","position":[-62.014,-25.8867,-1159.365],"yaw":-2.51327,"spawnMask":1},{"id":"creature-248277","entityId":"entry-11454","position":[21.4071,-25.8878,-1161.48],"yaw":-1.27409,"spawnMask":1},{"id":"creature-248278","entityId":"entry-11451","position":[27.3692,-25.9703,-1159.08],"yaw":-4.90128,"spawnMask":1},{"id":"creature-248279","entityId":"entry-11451","position":[14.4255,-25.8877,-1159.355],"yaw":-2.23402,"spawnMask":1},{"id":"creature-248280","entityId":"entry-11454","position":[80.3707,-25.8853,-1161.817],"yaw":-1.8326,"spawnMask":1},{"id":"creature-248281","entityId":"entry-11451","position":[75.4673,-25.8872,-1156.065],"yaw":-2.54818,"spawnMask":1},{"id":"creature-248282","entityId":"entry-11451","position":[86.5274,-25.9688,-1161.197],"yaw":-1.08976,"spawnMask":1},{"id":"creature-248283","entityId":"entry-11454","position":[17.6555,-25.8974,-1219.691],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248284","entityId":"entry-11451","position":[12.4248,-25.9031,-1222.92],"yaw":-3.61283,"spawnMask":1},{"id":"creature-248285","entityId":"entry-11451","position":[25.704,-25.8959,-1222.285],"yaw":-5.79449,"spawnMask":1},{"id":"creature-248286","entityId":"entry-11455","position":[-53.2855,-25.8815,-1219.13],"yaw":-6.26573,"spawnMask":1},{"id":"creature-248291","entityId":"entry-13196","position":[-21.0776,-25.9095,-1217.407],"yaw":-0.715585,"spawnMask":1},{"id":"creature-248292","entityId":"entry-13197","position":[-21.0776,-25.9095,-1217.407],"yaw":-0.715585,"spawnMask":1},{"id":"creature-248293","entityId":"entry-13196","position":[-15.2494,-25.8878,-1162.941],"yaw":-4.92183,"spawnMask":1},{"id":"creature-248294","entityId":"entry-13197","position":[-15.2494,-25.8878,-1162.941],"yaw":-4.92183,"spawnMask":1},{"id":"creature-248295","entityId":"entry-13196","position":[48.3799,-25.8878,-1161.837],"yaw":-5.13127,"spawnMask":1},{"id":"creature-248296","entityId":"entry-13197","position":[48.3799,-25.8878,-1161.837],"yaw":-5.13127,"spawnMask":1},{"id":"creature-248297","entityId":"entry-13196","position":[104.703,-25.884,-1165.839],"yaw":-5.55015,"spawnMask":1},{"id":"creature-248298","entityId":"entry-13197","position":[104.703,-25.884,-1165.839],"yaw":-5.55015,"spawnMask":1},{"id":"creature-248299","entityId":"entry-14327","position":[5.3776,-5.3319,-1201.341],"yaw":-0.531164,"spawnMask":1},{"id":"creature-248300","entityId":"entry-14349","position":[6.8374,-5.332,-1200.951],"yaw":-6.0218,"spawnMask":1},{"id":"creature-248301","entityId":"entry-13196","position":[25.7945,-25.7203,-968.647],"yaw":-0.820305,"spawnMask":1},{"id":"creature-248302","entityId":"entry-13196","position":[85.8617,-25.7187,-968.397],"yaw":-0.541052,"spawnMask":1},{"id":"creature-248303","entityId":"entry-13196","position":[166.653,-25.8129,-1031.702],"yaw":-5.68977,"spawnMask":1},{"id":"creature-248304","entityId":"entry-13196","position":[146.354,-25.8181,-1126.854],"yaw":-1.90241,"spawnMask":1},{"id":"creature-248305","entityId":"entry-13196","position":[51.357,-25.8043,-1118.334],"yaw":-2.16421,"spawnMask":1},{"id":"creature-248306","entityId":"entry-13196","position":[-70.9732,-25.7979,-1117.438],"yaw":-0.977384,"spawnMask":1},{"id":"creature-248307","entityId":"entry-13021","position":[16.8075,-24.3809,-937.305],"yaw":-4.81711,"spawnMask":1},{"id":"creature-248308","entityId":"entry-13021","position":[87.1125,-24.3809,-933.508],"yaw":-4.86947,"spawnMask":1},{"id":"creature-248309","entityId":"entry-13021","position":[135.847,-25.7229,-1038.835],"yaw":-3.47321,"spawnMask":1},{"id":"creature-248310","entityId":"entry-13021","position":[110.614,-25.8018,-1117.835],"yaw":-1.65806,"spawnMask":1},{"id":"creature-248311","entityId":"entry-13021","position":[19.9482,-25.7899,-1126.605],"yaw":-1.81514,"spawnMask":1},{"id":"creature-248312","entityId":"entry-13021","position":[-131.656,-25.8187,-1113.053],"yaw":-3.36849,"spawnMask":1},{"id":"creature-248313","entityId":"entry-13021","position":[-134.979,-25.8129,-1049.131],"yaw":-3.54302,"spawnMask":1},{"id":"creature-248314","entityId":"entry-13022","position":[148.77,-25.9606,-960.964],"yaw":-4.27233,"spawnMask":1},{"id":"creature-248315","entityId":"entry-13022","position":[149.629,-25.9601,-958.108],"yaw":-5.77921,"spawnMask":1},{"id":"creature-248316","entityId":"entry-13022","position":[156.872,-25.8192,-961.693],"yaw":-5.21853,"spawnMask":1},{"id":"creature-248317","entityId":"entry-13022","position":[152.593,-25.819,-963.017],"yaw":-3.33358,"spawnMask":1},{"id":"creature-248318","entityId":"entry-13022","position":[157.806,-25.9396,-959.08],"yaw":-0.402479,"spawnMask":1},{"id":"creature-248319","entityId":"entry-13022","position":[153.985,-25.949,-958.909],"yaw":-2.28912,"spawnMask":1},{"id":"creature-248320","entityId":"entry-13022","position":[154.026,-25.9504,-956.172],"yaw":-4.23252,"spawnMask":1},{"id":"creature-248321","entityId":"entry-13022","position":[147.343,-25.8981,-1085.537],"yaw":-1.5089,"spawnMask":1},{"id":"creature-248322","entityId":"entry-13022","position":[143.016,-25.7792,-1090.43],"yaw":-0.959931,"spawnMask":1},{"id":"creature-248323","entityId":"entry-13022","position":[140.058,-25.842,-1086.148],"yaw":-5.21016,"spawnMask":1},{"id":"creature-248324","entityId":"entry-13022","position":[139.647,-25.8386,-1080.781],"yaw":-4.80789,"spawnMask":1},{"id":"creature-248325","entityId":"entry-13022","position":[142.43,-25.8599,-1075.44],"yaw":-1.66281,"spawnMask":1},{"id":"creature-248326","entityId":"entry-13022","position":[138.544,-25.7436,-1088.232],"yaw":-2.25147,"spawnMask":1},{"id":"creature-248327","entityId":"entry-13022","position":[135.927,-25.8101,-1083.856],"yaw":-4.8053,"spawnMask":1},{"id":"creature-248328","entityId":"entry-13022","position":[80.1725,-25.7448,-1110.975],"yaw":-1.93732,"spawnMask":1},{"id":"creature-248329","entityId":"entry-13022","position":[83.9586,-25.8065,-1109.227],"yaw":-3.99263,"spawnMask":1},{"id":"creature-248330","entityId":"entry-13022","position":[77.9534,-25.7952,-1106.957],"yaw":-5.75634,"spawnMask":1},{"id":"creature-248331","entityId":"entry-13022","position":[83.1917,-25.8281,-1112.846],"yaw":-5.93665,"spawnMask":1},{"id":"creature-248332","entityId":"entry-13022","position":[88.5384,-25.8335,-1113.733],"yaw":-5.33838,"spawnMask":1},{"id":"creature-248333","entityId":"entry-13022","position":[85.9511,-25.8007,-1117.785],"yaw":-5.48033,"spawnMask":1},{"id":"creature-248334","entityId":"entry-13022","position":[75.395,-25.7384,-1110.205],"yaw":-1.71042,"spawnMask":1},{"id":"creature-248335","entityId":"entry-13022","position":[-53.7073,-25.767,-1113.501],"yaw":-3.92699,"spawnMask":1},{"id":"creature-248336","entityId":"entry-13022","position":[-49.1937,-25.7707,-1113.92],"yaw":-3.01942,"spawnMask":1},{"id":"creature-248337","entityId":"entry-13022","position":[-44.548,-25.7783,-1114.825],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248338","entityId":"entry-13022","position":[-39.6607,-25.7864,-1115.785],"yaw":-0.10472,"spawnMask":1},{"id":"creature-248339","entityId":"entry-13022","position":[-51.6478,-25.7366,-1109.746],"yaw":-0.122173,"spawnMask":1},{"id":"creature-248340","entityId":"entry-13022","position":[-45.8668,-25.7329,-1109.24],"yaw":-3.21141,"spawnMask":1},{"id":"creature-248341","entityId":"entry-13022","position":[-40.7854,-25.7528,-1111.657],"yaw":-2.47837,"spawnMask":1},{"id":"creature-248342","entityId":"entry-13022","position":[-111.138,-25.7626,-1084.88],"yaw":-2.42601,"spawnMask":1},{"id":"creature-248343","entityId":"entry-13022","position":[-116.912,-25.8987,-1090.099],"yaw":-2.53066,"spawnMask":1},{"id":"creature-248344","entityId":"entry-13022","position":[-121.197,-25.9116,-1086.197],"yaw":-5.76204,"spawnMask":1},{"id":"creature-248345","entityId":"entry-13022","position":[-115.821,-25.895,-1087.754],"yaw":-0.318494,"spawnMask":1},{"id":"creature-248346","entityId":"entry-13022","position":[-109.975,-25.7533,-1089.992],"yaw":-2.84489,"spawnMask":1},{"id":"creature-248347","entityId":"entry-13022","position":[-112.893,-25.8867,-1094.259],"yaw":-1.36265,"spawnMask":1},{"id":"creature-248348","entityId":"entry-13022","position":[-115.013,-25.7954,-1080.942],"yaw":-1.32645,"spawnMask":1},{"id":"creature-248349","entityId":"entry-13022","position":[-110.917,-25.8438,-1015.275],"yaw":-3.22507,"spawnMask":1},{"id":"creature-248350","entityId":"entry-13022","position":[-115.802,-25.8803,-1019.472],"yaw":-1.7137,"spawnMask":1},{"id":"creature-248351","entityId":"entry-13022","position":[-111.474,-25.8485,-1020.252],"yaw":-4.40331,"spawnMask":1},{"id":"creature-248352","entityId":"entry-13022","position":[-115.505,-25.8801,-1023.609],"yaw":-1.33576,"spawnMask":1},{"id":"creature-248353","entityId":"entry-13022","position":[-110.326,-25.8389,-1029.244],"yaw":-4.45622,"spawnMask":1},{"id":"creature-248354","entityId":"entry-13022","position":[-106.371,-25.7225,-1026.858],"yaw":-0.314159,"spawnMask":1},{"id":"creature-248355","entityId":"entry-13022","position":[-111.966,-25.8526,-1032.772],"yaw":-1.21066,"spawnMask":1},{"id":"creature-248357","entityId":"entry-11462","position":[36.12,-25.8569,-965.255],"yaw":0,"spawnMask":1},{"id":"creature-248358","entityId":"entry-11462","position":[36.12,-25.8569,-965.255],"yaw":0,"spawnMask":1},{"id":"creature-248360","entityId":"entry-11462","position":[115.459,-25.8418,-961.198],"yaw":0,"spawnMask":1},{"id":"creature-248361","entityId":"entry-11462","position":[115.459,-25.8418,-961.198],"yaw":0,"spawnMask":1},{"id":"creature-248363","entityId":"entry-11462","position":[158.992,-25.925,-1046.05],"yaw":0,"spawnMask":1},{"id":"creature-248364","entityId":"entry-11462","position":[158.992,-25.925,-1046.05],"yaw":0,"spawnMask":1},{"id":"creature-248366","entityId":"entry-11462","position":[33.9481,-25.8505,-1128.365],"yaw":0,"spawnMask":1},{"id":"creature-248367","entityId":"entry-11462","position":[33.9481,-25.8505,-1128.365],"yaw":0,"spawnMask":1},{"id":"creature-248369","entityId":"entry-11462","position":[96.4453,-25.7979,-1107.774],"yaw":0,"spawnMask":1},{"id":"creature-248370","entityId":"entry-11462","position":[96.4453,-25.7979,-1107.774],"yaw":0,"spawnMask":1},{"id":"creature-248372","entityId":"entry-11462","position":[-72.0594,-25.7879,-1105.98],"yaw":0,"spawnMask":1},{"id":"creature-248373","entityId":"entry-11462","position":[-72.0594,-25.7879,-1105.98],"yaw":0,"spawnMask":1},{"id":"creature-248379","entityId":"entry-13197","position":[35.108,-80.2825,-1219.095],"yaw":-2.26893,"spawnMask":1},{"id":"creature-248380","entityId":"entry-13197","position":[-47.4594,-80.2723,-1207.979],"yaw":-3.75246,"spawnMask":1},{"id":"creature-248381","entityId":"entry-13197","position":[-55.6676,-80.2709,-1165.491],"yaw":-3.9968,"spawnMask":1},{"id":"creature-248382","entityId":"entry-11453","position":[92.9904,-80.3719,-1221.391],"yaw":-5.70493,"spawnMask":1},{"id":"creature-248383","entityId":"entry-11452","position":[94.5103,-80.3744,-1226.42],"yaw":-2.23612,"spawnMask":1},{"id":"creature-248384","entityId":"entry-11452","position":[84.6648,-80.2792,-1220.888],"yaw":-2.68781,"spawnMask":1},{"id":"creature-248385","entityId":"entry-11457","position":[68.9817,-80.364,-1202.751],"yaw":-1.13804,"spawnMask":1},{"id":"creature-248386","entityId":"entry-13276","position":[70.8323,-80.3625,-1200.172],"yaw":-0.913746,"spawnMask":1},{"id":"creature-248387","entityId":"entry-13276","position":[64.3315,-80.3643,-1202.658],"yaw":-1.04908,"spawnMask":1},{"id":"creature-248388","entityId":"entry-13276","position":[72.4447,-80.3608,-1197.091],"yaw":-4.10582,"spawnMask":1},{"id":"creature-248389","entityId":"entry-13276","position":[61.361,-80.2805,-1205.017],"yaw":-6.16101,"spawnMask":1},{"id":"creature-248390","entityId":"entry-13276","position":[71.5639,-80.3626,-1200.534],"yaw":-0.256474,"spawnMask":1},{"id":"creature-248391","entityId":"entry-11457","position":[6.8108,-80.2959,-1219.59],"yaw":-0.872665,"spawnMask":1},{"id":"creature-248392","entityId":"entry-13276","position":[3.148,-80.2988,-1220.753],"yaw":-1.3439,"spawnMask":1},{"id":"creature-248393","entityId":"entry-13276","position":[14.0835,-80.3735,-1221.103],"yaw":-4.10695,"spawnMask":1},{"id":"creature-248394","entityId":"entry-13276","position":[6.7593,-80.2931,-1215.698],"yaw":-0.366519,"spawnMask":1},{"id":"creature-248395","entityId":"entry-13276","position":[2.985,-80.2962,-1217.032],"yaw":-0.366519,"spawnMask":1},{"id":"creature-248396","entityId":"entry-13276","position":[10.8449,-80.3747,-1216.457],"yaw":-0.31074,"spawnMask":1},{"id":"creature-248397","entityId":"entry-11453","position":[-74.9023,-80.265,-1195.216],"yaw":-1.06465,"spawnMask":1},{"id":"creature-248398","entityId":"entry-11453","position":[-68.8015,-80.3513,-1182.645],"yaw":-5.77543,"spawnMask":1},{"id":"creature-248399","entityId":"entry-11452","position":[-70.5014,-80.351,-1190.04],"yaw":-0.320256,"spawnMask":1},{"id":"creature-248400","entityId":"entry-11452","position":[-75.0276,-80.3493,-1178.128],"yaw":-0.030332,"spawnMask":1},{"id":"creature-248401","entityId":"entry-11457","position":[-37.4282,-80.277,-1152.483],"yaw":-2.37365,"spawnMask":1},{"id":"creature-248402","entityId":"entry-13276","position":[-32.2647,-80.3616,-1153.866],"yaw":-0.535442,"spawnMask":1},{"id":"creature-248403","entityId":"entry-13276","position":[-42.3646,-80.2779,-1148.387],"yaw":-5.48033,"spawnMask":1},{"id":"creature-248404","entityId":"entry-13276","position":[-40.5119,-80.2756,-1157.568],"yaw":-1.71042,"spawnMask":1},{"id":"creature-248405","entityId":"entry-13276","position":[-34.5624,-80.2775,-1156.374],"yaw":-1.20428,"spawnMask":1},{"id":"creature-248406","entityId":"entry-13276","position":[-43.4759,-80.2764,-1152.384],"yaw":-4.11898,"spawnMask":1},{"id":"creature-248407","entityId":"entry-11453","position":[23.5974,-80.3662,-1158.907],"yaw":-0.80207,"spawnMask":1},{"id":"creature-248408","entityId":"entry-11453","position":[10.2751,-80.2802,-1153.347],"yaw":-1.90241,"spawnMask":1},{"id":"creature-248409","entityId":"entry-11452","position":[15.9289,-80.2802,-1155.669],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248410","entityId":"entry-11452","position":[28.2773,-80.3678,-1152.155],"yaw":-2.83299,"spawnMask":1},{"id":"creature-248411","entityId":"entry-11453","position":[90.2106,-80.232,-1152.149],"yaw":-3.01942,"spawnMask":1},{"id":"creature-248412","entityId":"entry-11453","position":[79.6683,-80.2607,-1149.539],"yaw":-1.25664,"spawnMask":1},{"id":"creature-248413","entityId":"entry-11452","position":[83.9883,-80.2297,-1152.345],"yaw":-0.959931,"spawnMask":1},{"id":"creature-248414","entityId":"entry-11452","position":[96.5746,-80.2698,-1148.733],"yaw":-4.5204,"spawnMask":1},{"id":"creature-248418","entityId":"entry-13280","position":[-4.6519,-81.7038,-1198.622],"yaw":0,"spawnMask":1},{"id":"creature-248422","entityId":"entry-11456","position":[-4.5828,-80.2814,-1146.262],"yaw":-1.16937,"spawnMask":1},{"id":"creature-248423","entityId":"entry-11457","position":[-4.6736,-59.628,-1197.395],"yaw":-4.27606,"spawnMask":1},{"id":"creature-248424","entityId":"entry-13276","position":[-7.6391,-59.6277,-1200.905],"yaw":-3.89208,"spawnMask":1},{"id":"creature-248425","entityId":"entry-13276","position":[-1.7306,-59.7106,-1195.047],"yaw":-0.775787,"spawnMask":1},{"id":"creature-248426","entityId":"entry-13276","position":[-1.6103,-59.7104,-1198.956],"yaw":-1.07755,"spawnMask":1},{"id":"creature-248427","entityId":"entry-13276","position":[-7.8071,-59.6274,-1203.888],"yaw":-3.12414,"spawnMask":1},{"id":"creature-248428","entityId":"entry-13276","position":[0.9661,-59.7107,-1195.474],"yaw":-5.92277,"spawnMask":1},{"id":"creature-248429","entityId":"entry-11490","position":[34.91,-59.6283,-1208.215],"yaw":-0.191986,"spawnMask":1},{"id":"creature-248430","entityId":"entry-13022","position":[-122.581,-77.0032,-953.807],"yaw":-3.11933,"spawnMask":1},{"id":"creature-248431","entityId":"entry-13022","position":[-119.028,-76.3771,-950.011],"yaw":-3.18426,"spawnMask":1},{"id":"creature-248432","entityId":"entry-13022","position":[-115.301,-76.7924,-953.034],"yaw":-2.91091,"spawnMask":1},{"id":"creature-248433","entityId":"entry-13022","position":[-115.301,-77.3613,-956.182],"yaw":-3.54147,"spawnMask":1},{"id":"creature-248434","entityId":"entry-13022","position":[-118.678,-77.6329,-959.21],"yaw":-4.91481,"spawnMask":1},{"id":"creature-248435","entityId":"entry-13022","position":[-126.555,-78.0373,-964.688],"yaw":-4.26236,"spawnMask":1},{"id":"creature-248436","entityId":"entry-13022","position":[-110.834,-77.4166,-957.819],"yaw":-4.2586,"spawnMask":1},{"id":"creature-248437","entityId":"entry-13022","position":[-109.928,-76.2498,-951.538],"yaw":-5.53269,"spawnMask":1},{"id":"creature-248438","entityId":"entry-13022","position":[-106.991,-75.7991,-949.394],"yaw":-1.81514,"spawnMask":1},{"id":"creature-248439","entityId":"entry-13022","position":[-103.974,-76.7076,-954.715],"yaw":-4.32842,"spawnMask":1},{"id":"creature-248440","entityId":"entry-13022","position":[-71.3281,-77.2864,-1006.359],"yaw":-4.09156,"spawnMask":1},{"id":"creature-248441","entityId":"entry-13022","position":[-63.9679,-76.805,-1009.4],"yaw":-4.85084,"spawnMask":1},{"id":"creature-248442","entityId":"entry-13022","position":[-59.8636,-75.8031,-1009.207],"yaw":-4.72984,"spawnMask":1},{"id":"creature-248443","entityId":"entry-13022","position":[-55.8265,-75.3505,-1002.531],"yaw":-5.58505,"spawnMask":1},{"id":"creature-248444","entityId":"entry-13022","position":[-56.7937,-76.1085,-998.299],"yaw":-1.3439,"spawnMask":1},{"id":"creature-248445","entityId":"entry-13022","position":[-56.8216,-75.185,-1006.664],"yaw":-0.837758,"spawnMask":1},{"id":"creature-248446","entityId":"entry-13022","position":[-57.528,-75.1672,-1012.188],"yaw":-0.366519,"spawnMask":1},{"id":"creature-248447","entityId":"entry-13022","position":[-63.6199,-76.4579,-1012.784],"yaw":-0.366519,"spawnMask":1},{"id":"creature-248448","entityId":"entry-13022","position":[-67.8511,-77.0462,-1007.968],"yaw":-1.98623,"spawnMask":1},{"id":"creature-248449","entityId":"entry-13022","position":[-53.5848,-74.7079,-1009.837],"yaw":-0.802851,"spawnMask":1},{"id":"creature-248450","entityId":"entry-13022","position":[-5.0816,-73.9553,-980.427],"yaw":-3.47481,"spawnMask":1},{"id":"creature-248451","entityId":"entry-13022","position":[-9.5101,-73.679,-984.793],"yaw":-0.964966,"spawnMask":1},{"id":"creature-248452","entityId":"entry-13022","position":[-12.203,-73.5719,-986.105],"yaw":-1.91029,"spawnMask":1},{"id":"creature-248453","entityId":"entry-13022","position":[-22.4503,-74.8638,-981.416],"yaw":-1.01456,"spawnMask":1},{"id":"creature-248454","entityId":"entry-13022","position":[-1.0855,-74.7193,-976.986],"yaw":-3.64775,"spawnMask":1},{"id":"creature-248455","entityId":"entry-13022","position":[1.8894,-74.6537,-971.587],"yaw":-4.5204,"spawnMask":1},{"id":"creature-248456","entityId":"entry-13022","position":[-1.7408,-74.4443,-979.964],"yaw":-2.32129,"spawnMask":1},{"id":"creature-248457","entityId":"entry-13022","position":[-3.9761,-73.924,-984.36],"yaw":-1.67569,"spawnMask":1},{"id":"creature-248458","entityId":"entry-13022","position":[-10.2644,-73.5222,-987.956],"yaw":-1.31605,"spawnMask":1},{"id":"creature-248459","entityId":"entry-13022","position":[-19.7514,-74.0278,-987.357],"yaw":-3.83149,"spawnMask":1},{"id":"creature-248460","entityId":"entry-13022","position":[-7.438,-72.861,-1069.9],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248461","entityId":"entry-13022","position":[-11.1698,-72.8617,-1070.957],"yaw":-5.48033,"spawnMask":1},{"id":"creature-248462","entityId":"entry-13022","position":[-2.4566,-72.8683,-1071.747],"yaw":-1.71042,"spawnMask":1},{"id":"creature-248463","entityId":"entry-13022","position":[0.8953,-72.3836,-1076.361],"yaw":-1.20428,"spawnMask":1},{"id":"creature-248464","entityId":"entry-13022","position":[-16.4061,-72.8489,-1075.367],"yaw":-4.11898,"spawnMask":1},{"id":"creature-248465","entityId":"entry-13022","position":[-14.7313,-73.0754,-1070.552],"yaw":-2.1293,"spawnMask":1},{"id":"creature-248466","entityId":"entry-13022","position":[-9.3199,-73.0921,-1068.581],"yaw":-4.19783,"spawnMask":1},{"id":"creature-248467","entityId":"entry-13022","position":[-3.2655,-73.4982,-1066.37],"yaw":-2.2254,"spawnMask":1},{"id":"creature-248468","entityId":"entry-13022","position":[0.4568,-73.2425,-1070.251],"yaw":-5.50781,"spawnMask":1},{"id":"creature-248469","entityId":"entry-13022","position":[-13.8405,-73.3933,-1066.932],"yaw":-3.9968,"spawnMask":1},{"id":"creature-248470","entityId":"entry-13022","position":[54.067,-78.9268,-981.051],"yaw":-4.77728,"spawnMask":1},{"id":"creature-248471","entityId":"entry-13022","position":[54.1852,-78.9843,-983.474],"yaw":-3.52189,"spawnMask":1},{"id":"creature-248472","entityId":"entry-13022","position":[59.0482,-78.9715,-982.94],"yaw":-5.44105,"spawnMask":1},{"id":"creature-248473","entityId":"entry-13022","position":[62.8988,-78.9153,-980.581],"yaw":-5.67601,"spawnMask":1},{"id":"creature-248474","entityId":"entry-13022","position":[62.4086,-78.9515,-985.615],"yaw":-0.767945,"spawnMask":1},{"id":"creature-248475","entityId":"entry-13022","position":[59.5582,-79.0548,-989.962],"yaw":-5.07891,"spawnMask":1},{"id":"creature-248476","entityId":"entry-13022","position":[54.8,-79.1504,-990.47],"yaw":-5.35956,"spawnMask":1},{"id":"creature-248477","entityId":"entry-13022","position":[55.8757,-79.0405,-985.845],"yaw":-0.44899,"spawnMask":1},{"id":"creature-248478","entityId":"entry-13022","position":[49.6663,-79.1524,-987.762],"yaw":-2.81523,"spawnMask":1},{"id":"creature-248479","entityId":"entry-13022","position":[50.0778,-78.9924,-983.808],"yaw":-0.113913,"spawnMask":1},{"id":"creature-248480","entityId":"entry-13022","position":[54.0793,-75.9017,-1106.527],"yaw":-2.58309,"spawnMask":1},{"id":"creature-248481","entityId":"entry-13022","position":[56.8544,-76.0878,-1105.145],"yaw":-1.06465,"spawnMask":1},{"id":"creature-248482","entityId":"entry-13022","position":[57.6583,-75.7818,-1101.622],"yaw":-4.97419,"spawnMask":1},{"id":"creature-248483","entityId":"entry-13022","position":[60.1348,-75.6712,-1099.27],"yaw":-1.6057,"spawnMask":1},{"id":"creature-248484","entityId":"entry-13022","position":[62.9327,-75.4488,-1095.969],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248485","entityId":"entry-13022","position":[61.8179,-74.9305,-1093.276],"yaw":-4.17134,"spawnMask":1},{"id":"creature-248486","entityId":"entry-13022","position":[57.2691,-74.289,-1091.822],"yaw":-1.90241,"spawnMask":1},{"id":"creature-248487","entityId":"entry-13022","position":[61.0638,-74.4675,-1090.641],"yaw":-5.98648,"spawnMask":1},{"id":"creature-248488","entityId":"entry-13022","position":[65.555,-75.4835,-1094.48],"yaw":-5.86431,"spawnMask":1},{"id":"creature-248489","entityId":"entry-13022","position":[54.3955,-76.0925,-1110.038],"yaw":-2.94961,"spawnMask":1},{"id":"creature-248490","entityId":"entry-13022","position":[114.457,-78.9256,-1058.246],"yaw":-2.37651,"spawnMask":1},{"id":"creature-248491","entityId":"entry-13022","position":[119.395,-78.6469,-1055.68],"yaw":-3.50826,"spawnMask":1},{"id":"creature-248492","entityId":"entry-13022","position":[115.247,-78.9186,-1055.268],"yaw":-3.51589,"spawnMask":1},{"id":"creature-248493","entityId":"entry-13022","position":[113.57,-79.1456,-1047.111],"yaw":-0.44145,"spawnMask":1},{"id":"creature-248494","entityId":"entry-13022","position":[112.417,-79.1439,-1052.262],"yaw":-3.20386,"spawnMask":1},{"id":"creature-248495","entityId":"entry-13022","position":[113.059,-79.0295,-1057.264],"yaw":-2.96803,"spawnMask":1},{"id":"creature-248496","entityId":"entry-13022","position":[114.498,-78.8064,-1063.319],"yaw":-0.488692,"spawnMask":1},{"id":"creature-248497","entityId":"entry-13022","position":[118.76,-78.7897,-1062.282],"yaw":-4.88111,"spawnMask":1},{"id":"creature-248498","entityId":"entry-13022","position":[110.994,-79.0017,-1062.503],"yaw":-0.994838,"spawnMask":1},{"id":"creature-248499","entityId":"entry-13022","position":[107.435,-79.4072,-1056.072],"yaw":-3.88216,"spawnMask":1},{"id":"creature-248500","entityId":"entry-13022","position":[149.515,-71.9891,-951.765],"yaw":-4.06322,"spawnMask":1},{"id":"creature-248501","entityId":"entry-13022","position":[148.091,-72.9219,-955.066],"yaw":-5.45461,"spawnMask":1},{"id":"creature-248502","entityId":"entry-13022","position":[149.737,-73.8525,-960.051],"yaw":-2.33874,"spawnMask":1},{"id":"creature-248503","entityId":"entry-13022","position":[148.017,-74.828,-964.638],"yaw":-1.0472,"spawnMask":1},{"id":"creature-248504","entityId":"entry-13022","position":[139.963,-74.9859,-960.541],"yaw":-0.174533,"spawnMask":1},{"id":"creature-248505","entityId":"entry-13022","position":[141.876,-73.3454,-954.128],"yaw":-2.64255,"spawnMask":1},{"id":"creature-248506","entityId":"entry-13022","position":[134.333,-72.0722,-950.009],"yaw":-6.12191,"spawnMask":1},{"id":"creature-248507","entityId":"entry-13022","position":[141.72,-72.286,-949.867],"yaw":-5.3421,"spawnMask":1},{"id":"creature-248508","entityId":"entry-13022","position":[135.174,-72.6208,-951.599],"yaw":-0.344104,"spawnMask":1},{"id":"creature-248509","entityId":"entry-13022","position":[143.951,-73.9956,-958.121],"yaw":-0.750492,"spawnMask":1},{"id":"creature-248510","entityId":"entry-13285","position":[-83.441,-78.4644,-964.822],"yaw":-4.13643,"spawnMask":1},{"id":"creature-248511","entityId":"entry-13285","position":[-42.3261,-74.8478,-956.309],"yaw":-2.32129,"spawnMask":1},{"id":"creature-248512","entityId":"entry-13285","position":[38.4242,-77.5335,-954.612],"yaw":-5.37561,"spawnMask":1},{"id":"creature-248513","entityId":"entry-13285","position":[114.759,-74.3957,-955.991],"yaw":-0.331613,"spawnMask":1},{"id":"creature-248514","entityId":"entry-13285","position":[-115.939,-76.7488,-1116.339],"yaw":-4.36332,"spawnMask":1},{"id":"creature-248515","entityId":"entry-13285","position":[-80.2562,-75.5587,-1094.366],"yaw":-2.1293,"spawnMask":1},{"id":"creature-248516","entityId":"entry-13285","position":[-40.6877,-75.7933,-1121.397],"yaw":-1.58825,"spawnMask":1},{"id":"creature-248517","entityId":"entry-13285","position":[129.794,-78.549,-1094.456],"yaw":-5.16617,"spawnMask":1},{"id":"creature-248518","entityId":"entry-13285","position":[-14.4051,-73.8495,-1022.048],"yaw":-4.43314,"spawnMask":1},{"id":"creature-248519","entityId":"entry-13285","position":[99.0692,-78.4271,-1009.825],"yaw":-5.14872,"spawnMask":1},{"id":"creature-248520","entityId":"entry-13285","position":[129.815,-75.7993,-1006.843],"yaw":-5.41052,"spawnMask":1},{"id":"creature-248522","entityId":"entry-11461","position":[64.2495,-77.6646,-1120.005],"yaw":0,"spawnMask":1},{"id":"creature-248523","entityId":"entry-11461","position":[64.2495,-77.6646,-1120.005],"yaw":0,"spawnMask":1},{"id":"creature-248525","entityId":"entry-11461","position":[30.6208,-75.8475,-1060.789],"yaw":0,"spawnMask":1},{"id":"creature-248526","entityId":"entry-11461","position":[30.6208,-75.8475,-1060.789],"yaw":0,"spawnMask":1},{"id":"creature-248528","entityId":"entry-11461","position":[17.6276,-75.8849,-1054.012],"yaw":0,"spawnMask":1},{"id":"creature-248529","entityId":"entry-11461","position":[17.6276,-75.8849,-1054.012],"yaw":0,"spawnMask":1},{"id":"creature-248531","entityId":"entry-11461","position":[-81.9692,-76.9107,-1043.463],"yaw":0,"spawnMask":1},{"id":"creature-248532","entityId":"entry-11461","position":[-81.9692,-76.9107,-1043.463],"yaw":0,"spawnMask":1},{"id":"creature-248534","entityId":"entry-11461","position":[-38.371,-74.2029,-1074.404],"yaw":0,"spawnMask":1},{"id":"creature-248535","entityId":"entry-11461","position":[-38.371,-74.2029,-1074.404],"yaw":0,"spawnMask":1},{"id":"creature-248537","entityId":"entry-13021","position":[-330.724,-92.8014,-1135.598],"yaw":-3.9968,"spawnMask":1},{"id":"creature-248538","entityId":"entry-13021","position":[-360.464,-109.0468,-1197.064],"yaw":-3.31613,"spawnMask":1},{"id":"creature-248539","entityId":"entry-13021","position":[-360.429,-123.7368,-1250.639],"yaw":-3.15905,"spawnMask":1},{"id":"creature-248540","entityId":"entry-13021","position":[-217.051,-89.1924,-1116.505],"yaw":-5.11381,"spawnMask":1},{"id":"creature-248541","entityId":"entry-13021","position":[-187.173,-133.6418,-1303.38],"yaw":-0.680678,"spawnMask":1},{"id":"creature-248543","entityId":"entry-13285","position":[-290.428,-141.6278,-1230.257],"yaw":-3.31613,"spawnMask":1},{"id":"creature-248544","entityId":"entry-13197","position":[-290.428,-141.6278,-1230.257],"yaw":-3.31613,"spawnMask":1},{"id":"creature-248545","entityId":"entry-13022","position":[-292.77,-140.7858,-1236.793],"yaw":-5.58505,"spawnMask":1},{"id":"creature-248546","entityId":"entry-13022","position":[-287.617,-140.7858,-1240.11],"yaw":-5.74213,"spawnMask":1},{"id":"creature-248547","entityId":"entry-13022","position":[-299.253,-140.7858,-1235.128],"yaw":-2.80998,"spawnMask":1},{"id":"creature-248548","entityId":"entry-13022","position":[-292.897,-140.7858,-1242.334],"yaw":-3.89208,"spawnMask":1},{"id":"creature-248549","entityId":"entry-13285","position":[-285.715,-140.7858,-1262.164],"yaw":-2.14675,"spawnMask":1},{"id":"creature-248550","entityId":"entry-13197","position":[-285.715,-140.7858,-1262.164],"yaw":-2.14675,"spawnMask":1},{"id":"creature-248551","entityId":"entry-13022","position":[-281.26,-140.7858,-1259.473],"yaw":0,"spawnMask":1},{"id":"creature-248552","entityId":"entry-13022","position":[-289.232,-140.7858,-1264.938],"yaw":0,"spawnMask":1},{"id":"creature-248553","entityId":"entry-13022","position":[-282.816,-140.7858,-1264.528],"yaw":0,"spawnMask":1},{"id":"creature-248554","entityId":"entry-13022","position":[-288.718,-140.7858,-1259.597],"yaw":0,"spawnMask":1},{"id":"creature-248555","entityId":"entry-13285","position":[-246.986,-140.7858,-1245.99],"yaw":0,"spawnMask":1},{"id":"creature-248556","entityId":"entry-13197","position":[-246.986,-140.7858,-1245.99],"yaw":0,"spawnMask":1},{"id":"creature-248557","entityId":"entry-13022","position":[-245.409,-140.7858,-1252.777],"yaw":0,"spawnMask":1},{"id":"creature-248558","entityId":"entry-13022","position":[-243.729,-140.7858,-1248.147],"yaw":-5.20108,"spawnMask":1},{"id":"creature-248559","entityId":"entry-13022","position":[-240.068,-140.7858,-1251.682],"yaw":0,"spawnMask":1},{"id":"creature-248560","entityId":"entry-13022","position":[-241.412,-140.7858,-1244.882],"yaw":0,"spawnMask":1},{"id":"creature-248651","entityId":"entry-14690","position":[112.703,-25.2287,-176.392],"yaw":-5.60251,"spawnMask":1},{"id":"encounter-156","entityId":"entry-14506","position":[115.657,-4.6998,-133.6709],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-247577","name":"Shen'dralar Zealot Patrol","speed":1.15,"pathId":2475770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-126.837,-70.2175,-250.534],[-136.116,-70.2156,-285.908],[-167.599,-70.2156,-292.332],[-181.557,-70.2156,-257.117],[-187.741,-70.2156,-225.019],[-184.506,-70.2156,-182.095],[-165.617,-70.2147,-151.988],[-134.393,-70.2164,-160.88],[-121.138,-70.2164,-189.443],[-124.264,-70.2164,-207.413],[-141.034,-70.2164,-203.17],[-142.008,-70.2164,-176.875],[-162.914,-70.2161,-163.123],[-171.1,-70.2161,-187.118],[-165.931,-70.2161,-215.847],[-169.747,-70.2161,-239.371],[-169.487,-70.2161,-273.062],[-147.491,-70.2161,-278.073],[-136.719,-70.2161,-252.935],[-133.328,-66.6842,-228.872],[-133.364,-54.3355,-200.872],[-135.953,-49.7229,-183.965],[-147.458,-49.7229,-159.843],[-140.248,-49.6934,-138.42],[-120.891,-49.6252,-148.922],[-125.792,-49.7227,-178.743],[-126.59,-51.4094,-194.238],[-126.544,-66.8454,-229.238]],"members":[{"id":"member","entityId":"entry-14369","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247592","name":"Arcane Torrent Patrol","speed":1.15,"pathId":2475920,"formationSource":"database-solo","spawnMask":1,"waypoints":[[154.362,-46.3291,12.455],[144.633,-46.3291,7.495],[148.022,-46.3291,-0.572],[157.751,-46.3291,-1.752],[167.681,-46.3291,2.791],[172.856,-46.3291,12.407],[173.622,-46.3278,26.596],[174.635,-46.3278,39.647],[177.062,-46.3293,49.142],[178.418,-46.3293,61.105],[176.52,-46.3293,70.791],[174.503,-46.3293,80.452],[164.654,-46.3293,85.169],[155.998,-46.3293,80.574],[156.181,-46.3293,69.656],[156.45,-46.3293,58.739],[156.798,-46.3293,44.603],[157.067,-46.3293,33.686]],"members":[{"id":"member","entityId":"entry-14399","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247594","name":"Arcane Torrent Patrol","speed":1.15,"pathId":2475940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[5.2367,-46.3301,-86.527],[17.8393,-46.3607,-95.132],[30.6737,-46.3982,-103.387],[44.45,-46.4091,-112.248],[57.3433,-46.4192,-120.541],[68.3526,-46.3301,-127.622],[71.6922,-46.3301,-118.408],[76.5346,-46.3301,-105.049],[80.9954,-46.3301,-92.742],[85.8378,-46.3301,-79.383],[90.2985,-46.3301,-67.076],[95.8804,-46.3301,-51.677],[86.3202,-46.3301,-53.832],[70.341,-46.3301,-57.433],[52.1766,-46.3459,-61.527],[52.1766,-46.3459,-61.527],[38.0615,-46.3488,-63.166],[22.9034,-46.3505,-64.927],[4.3871,-46.3301,-66.878],[-10.8834,-46.3301,-68.228],[-24.9676,-46.3301,-76.591],[-16.1763,-46.3301,-80.922]],"members":[{"id":"member","entityId":"entry-14399","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247598","name":"Arcane Torrent Patrol","speed":1.15,"pathId":2475980,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-83.1815,-46.3301,71.309],[-87.7748,-46.3301,61.402],[-91.1589,-46.3294,49.848],[-92.2838,-46.3284,37.86],[-94.815,-46.3281,25.017],[-97.5627,-46.3295,11.076],[-98.9737,-46.3295,-6.367],[-90.5851,-46.3295,-3.879],[-82.6166,-46.3295,-0.264],[-74.1318,-46.3295,4.64],[-66.4225,-46.3295,10.69],[-66.7418,-46.3295,21.606],[-71.6773,-46.3295,33.73],[-77.035,-46.3295,46.891],[-82.8453,-46.3295,58.699],[-89.6138,-46.3295,72.454],[-97.1547,-46.3295,88.245],[-98.096,-46.3295,96.945],[-87.6901,-46.3295,100.256],[-73.6864,-46.3295,102.668],[-63.9872,-46.3295,101.266],[-64.1249,-46.3295,91.397],[-74.7333,-46.3295,85.703]],"members":[{"id":"member","entityId":"entry-14399","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247601","name":"Arcane Torrent Patrol","speed":1.15,"pathId":2476010,"formationSource":"database-solo","spawnMask":1,"waypoints":[[5.4047,-46.3277,184.624],[0.9638,-46.3277,177.084],[-5.6797,-46.3296,165.805],[-11.7904,-46.3296,155.431],[-21.5895,-46.3296,155.299],[-32.5085,-46.3296,155.151],[-42.3776,-46.3296,155.017],[-54.3465,-46.3296,154.855],[-64.2156,-46.3296,154.722],[-58.0393,-46.3296,160.92],[-50.3313,-46.3296,168.655],[-40.5468,-46.3296,167.358],[-29.7215,-46.3296,165.923],[-17.7858,-46.3296,164.342],[-6.9605,-46.3296,162.907],[12.539,-46.3296,160.323],[23.209,-46.3296,160.068],[34.0515,-46.3296,167.402],[39.4817,-46.3296,175.56],[41.3011,-46.3296,185.189],[36.8634,-46.3296,192.731],[22.3148,-46.3296,197.495]],"members":[{"id":"member","entityId":"entry-14399","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247708","name":"Gordok Brute Patrol","speed":1.15,"pathId":2477080,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-472.27,-25.6361,-707.0005],[-473.045,-25.6361,-684.1581],[-468.01,-25.6361,-656.498],[-446.123,-25.6361,-645.516],[-419.978,-25.6361,-644.152],[-390.532,-25.6361,-641.802],[-358.992,-25.6361,-639.286],[-331.001,-25.6367,-644.201],[-298.745,-25.6367,-649.925],[-291.001,-25.642,-663.405],[-304.583,-25.7069,-672.4185],[-309.526,-25.6367,-654.539],[-331.682,-25.6367,-645.288],[-366.126,-25.6367,-640.226],[-403.23,-25.6367,-641.371],[-437.013,-25.6367,-643.933],[-462.164,-25.6367,-659.76],[-475.235,-25.6363,-686.2414],[-472.709,-25.6363,-714.5487],[-468.381,-25.6571,-741.3957],[-460.486,-25.6475,-750.361],[-464.737,-25.657,-764.7604],[-474.142,-25.6753,-759.8515],[-472.39,-25.6705,-745.7754],[-469.615,-25.6474,-728.5679]],"members":[{"id":"member","entityId":"entry-11441","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247728","name":"Gordok Brute Patrol","speed":1.15,"pathId":2477280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-376.55,-10.5456,-543.308],[-363.805,-10.5454,-537.426],[-355.769,-10.5454,-531.696],[-345.318,-10.5454,-517.746],[-339.605,-10.5454,-502.395],[-337.318,-10.5454,-489.506],[-337.501,-10.5454,-475.297],[-338.472,-10.5454,-462.175],[-352.635,-10.5443,-461.02],[-366.798,-10.5431,-459.865],[-387.573,-10.5427,-459.217],[-401.78,-10.5427,-458.954],[-415.918,-10.5427,-458.692],[-429.93,-10.5444,-460.589],[-437.855,-10.5458,-466.354],[-438.999,-10.5445,-477.214],[-439.494,-10.544,-491.415],[-439.981,-10.5437,-505.617],[-439.192,-10.5437,-518.753],[-438.038,-10.5437,-533.97],[-428.13,-10.5457,-540.687],[-416.85,-10.5457,-544.895],[-404.106,-10.5437,-547.887]],"members":[{"id":"member","entityId":"entry-11441","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247743","name":"Gordok Mage-Lord Patrol","speed":1.15,"pathId":2477430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-442.208,-18.8964,-591.48],[-460.643,-18.8964,-597.921],[-472.672,-18.8964,-591.623],[-472.148,-18.8964,-577.82],[-452.984,-18.8968,-578.732],[-421.551,-18.8968,-587.961],[-392.574,-18.8968,-591.881],[-358.71,-18.8996,-592.908],[-329.253,-18.8983,-593.802],[-309.32,-18.8983,-585.619],[-303.777,-18.8983,-565.581],[-292.142,-18.8983,-557.756],[-276.791,-18.8983,-561.743],[-275.353,-18.8983,-575.633],[-291.469,-18.8983,-586.305],[-320.276,-18.8983,-592.468],[-356.081,-18.8998,-592.544],[-392.094,-18.8963,-593.053],[-417.752,-18.8977,-589.063]],"members":[{"id":"member","entityId":"entry-11444","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247793","name":"Wandering Eye of Kilrogg Patrol","speed":1.15,"pathId":2477930,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-577.177,-47.1527,-189.291],[-572.149,-47.1525,-177.227],[-544.725,-47.1525,-167.034],[-500.904,-47.1508,-181.191],[-484.11,-47.1516,-184.374],[-476.61,-47.1534,-175.476],[-494.458,-42.1487,-168.523],[-534.386,-26.5046,-169.799],[-550.764,-26.5046,-168.814],[-568.924,-26.5046,-176.003],[-581.94,-26.5055,-185.53],[-587.23,-23.4685,-204.172],[-587.095,-14.9796,-224.33],[-569.001,-8.659,-224.864],[-545.566,3.9159,-225.837],[-569.001,-8.659,-224.864],[-587.095,-14.9796,-224.33],[-587.23,-23.4685,-204.172],[-581.94,-26.5055,-185.53],[-568.924,-26.5046,-176.003],[-550.764,-26.5046,-168.814],[-534.386,-26.5046,-169.799],[-494.458,-42.1487,-168.523],[-481.834,-47.1573,-169.601],[-484.11,-47.1516,-184.374],[-500.904,-47.1508,-181.191],[-544.725,-47.1525,-167.034],[-572.149,-47.1525,-177.227],[-577.177,-47.1527,-189.291],[-563.615,-47.1488,-212.532]],"members":[{"id":"member","entityId":"entry-14386","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247794","name":"Wandering Eye of Kilrogg Patrol","speed":1.15,"pathId":2477940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-428.66,-40.0804,-209.861],[-413.321,-40.0804,-211.011],[-410.878,-39.7547,-222.234],[-399.913,-34.5249,-234.644],[-389.76,-33.7651,-259.517],[-385.46,-28.9693,-285.029],[-395.88,-28.9693,-291.343],[-396.255,-28.9693,-304.798],[-388.601,-28.9693,-311.408],[-384.28,-27.3029,-325.374],[-384.595,-24.8778,-336.853],[-385.369,-23.4219,-346.306],[-384.28,-27.3029,-325.374],[-388.601,-28.9693,-311.408],[-396.255,-28.9693,-304.798],[-395.88,-28.9693,-291.343],[-385.46,-28.9693,-285.029],[-389.76,-33.7651,-259.517],[-399.73,-34.5248,-234.851],[-410.878,-39.7547,-222.234],[-413.321,-40.0804,-211.011],[-428.66,-40.0804,-209.861],[-446.044,-43.315,-217.676],[-494.754,-47.1371,-217.338],[-446.044,-43.315,-217.676]],"members":[{"id":"member","entityId":"entry-14386","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247820","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[73.8234,-26.7368,-547.824],[83.4836,-26.7368,-537.498],[88.6469,-26.7368,-518.518],[90.1927,-26.7367,-501.086],[87.1905,-26.7367,-482.806],[86.9075,-26.7367,-462.088],[86.6533,-26.7367,-443.469],[83.9245,-26.7367,-430.667],[70.1188,-26.7367,-424.003],[51.7698,-26.7415,-421.279],[27.9931,-26.736,-417.941],[6.1625,-26.736,-418.582],[-3.7057,-26.736,-418.73],[-38.7056,-26.736,-418.658],[-88.7869,-26.736,-420.437],[-108.682,-26.736,-429.05],[-119.721,-26.736,-441.148],[-120.402,-26.736,-467.312],[-112.048,-26.736,-533.232],[-100.656,-26.736,-543.7],[-82.2912,-26.736,-546.268],[-47.3319,-26.736,-547.783],[-12.332,-26.736,-547.856],[22.665,-26.736,-548.307]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247821","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478210,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-26.9262,-26.7365,-425.051],[-38.894,-26.7365,-425.266],[-73.8765,-26.7365,-424.185],[-110.801,-26.7365,-426],[-110.801,-26.7365,-426],[-121.453,-26.7365,-451.484],[-119.242,-26.7365,-486.37],[-118.943,-26.7365,-501.617],[-107.051,-26.7365,-543.931],[-107.051,-26.7365,-543.931],[-85.286,-26.7365,-542.236],[-50.4055,-26.7365,-544.983],[-15.4062,-26.7365,-545.198],[-15.4062,-26.7365,-545.198],[19.5932,-26.7365,-545.408],[54.5544,-26.7365,-543.901],[82.5799,-26.7365,-535.829],[82.5799,-26.7365,-535.829],[89.6864,-26.7365,-492.844],[88.94,-26.7365,-465.568],[85.437,-26.7365,-441.755],[81.1099,-26.7365,-422.64],[46.1747,-26.741,-420.511],[11.2382,-26.737,-418.449]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247823","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478230,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-114.744,-26.7364,-533.135],[-89.614,-26.7364,-543.528],[-79.8756,-26.7364,-545.104],[-45.0281,-26.7364,-548.339],[-10.0639,-26.7364,-549.893],[24.9291,-26.7364,-549.871],[59.8428,-26.7364,-547.629],[84.4291,-26.7364,-544.056],[84.4291,-26.7364,-544.056],[91.4129,-26.7364,-522.279],[92.1625,-26.7364,-494.997],[90.0016,-26.7364,-460.079],[81.0839,-26.7364,-422.164],[81.0839,-26.7364,-422.164],[47.8274,-26.7394,-416.226],[35.8661,-26.7371,-415.799],[0.9335,-26.7364,-417.871],[-34.0512,-26.7364,-418.627],[-69.0506,-26.7364,-418.828],[-113.872,-26.7364,-425.837],[-113.872,-26.7364,-425.837],[-118.258,-26.7364,-456.029],[-118.755,-26.7364,-491.019],[-120.484,-26.7364,-519.316]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247826","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[89.1753,-26.736,-462.152],[86.5994,-26.736,-443.782],[76.912,-26.736,-426.663],[63.2453,-26.7411,-422.923],[28.3704,-26.7369,-420.021],[-6.5748,-26.7369,-418.066],[-47.9313,-26.7369,-417.067],[-87.1222,-26.7369,-419.847],[-117.847,-26.7369,-436.882],[-123.898,-26.7368,-462.097],[-119.332,-26.7368,-496.79],[-108.57,-26.7368,-534.083],[-82.8724,-26.7368,-545.644],[-82.8724,-26.7368,-545.644],[-12.8754,-26.7368,-545.029],[-12.8754,-26.7368,-545.029],[22.1231,-26.7368,-544.984],[76.5457,-26.7368,-544.173],[87.4034,-26.7368,-531.908],[89.0668,-26.7368,-516.739],[91.189,-26.7368,-497.184]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247827","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478270,"formationSource":"database-solo","spawnMask":1,"waypoints":[[16.3346,-26.7367,-411.619],[16.3346,-26.7367,-411.619],[-18.5928,-26.7367,-413.733],[-53.5911,-26.7367,-413.941],[-88.591,-26.7367,-414.006],[-114.538,-26.7367,-419.947],[-117.491,-26.7367,-436.05],[-118.767,-26.7367,-471.022],[-119.044,-26.7367,-498.312],[-107.102,-26.7367,-544.408],[-107.102,-26.7367,-544.408],[-89.8184,-26.7367,-542.181],[-54.8491,-26.7367,-543.386],[-19.8985,-26.7367,-545.245],[15.0737,-26.7367,-546.272],[50.007,-26.7367,-544.631],[82.3319,-26.7367,-540.868],[82.3319,-26.7367,-540.868],[88.1345,-26.7367,-517.605],[88.8059,-26.7367,-482.624],[86.452,-26.7367,-447.738],[79.1523,-26.7367,-416.098],[79.1523,-26.7367,-416.098],[54.0304,-26.7383,-416.736]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247828","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-115.828,-26.737,-446.042],[-117.635,-26.7367,-462.312],[-118.394,-26.7367,-497.292],[-115.335,-26.7367,-527.652],[-110.46,-26.7367,-547.819],[-110.46,-26.7367,-547.819],[-75.4889,-26.7367,-549.018],[-40.4895,-26.7367,-548.816],[-40.4895,-26.7367,-548.816],[-5.4901,-26.7367,-548.614],[29.4904,-26.7367,-547.885],[71.1983,-26.7367,-541.301],[88.1871,-26.7367,-531.972],[88.1871,-26.7367,-531.972],[89.3383,-26.7367,-499.249],[86.9525,-26.7367,-464.331],[86.9525,-26.7367,-464.331],[79.998,-26.7367,-420.141],[74.538,-26.7367,-420.151],[39.5609,-26.7399,-418.908],[39.5609,-26.7399,-418.908],[-21.4469,-26.7364,-417.06],[-21.4469,-26.7364,-417.06],[-56.4425,-26.7364,-417.583],[-103.335,-26.7364,-418.406]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247829","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-34.6208,-26.7356,-542.637],[0.291,-26.7356,-543.574],[38.5809,-26.7356,-543.502],[77.9208,-26.7356,-543.428],[85.0333,-26.7356,-517.85],[88.0751,-26.7356,-484.253],[88.316,-26.7356,-443.933],[70.4913,-26.7356,-427.93],[39.2857,-26.7424,-422.952],[4.4922,-26.7368,-419.867],[-34.7562,-26.7368,-417.352],[-69.6858,-26.7368,-417.487],[-104.108,-26.7368,-421.468],[-115.631,-26.7368,-450.997],[-118.829,-26.7368,-484.52],[-118.671,-26.7368,-511.819],[-107.552,-26.7368,-539.111],[-76.414,-26.7368,-545.034]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247913","name":"Eldreth Spectre Patrol","speed":1.15,"pathId":2479130,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-106.22,6.8513,-247.413],[-105.981,6.8513,-264.912],[-105.682,6.8513,-286.75],[-105.473,6.8513,-302.008],[-105.294,6.8513,-315.097],[-104.363,6.8513,-331.45],[-101.848,6.8513,-318.545],[-101.317,6.8513,-304.345],[-102.737,6.8513,-290.206],[-103.21,6.8513,-276.004],[-103.755,6.8513,-259.633],[-104.264,6.8513,-244.382],[-104.772,6.8514,-229.13]],"members":[{"id":"member","entityId":"entry-11473","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247915","name":"Eldreth Spectre Patrol","speed":1.15,"pathId":2479150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[38.9851,-45.055,-162.567],[37.764,-45.055,-173.419],[36.0576,-45.055,-188.583],[26.8486,-45.055,-196.23],[13.8879,-45.055,-204.417],[-8.9198,-45.055,-203.361],[-27.2799,-45.055,-206.009],[-16.4147,-45.055,-207.102],[-1.3664,-45.055,-204.569],[15.8908,-45.055,-201.664],[25.5296,-45.055,-199.906],[33.9343,-45.055,-187.169],[37.8095,-45.055,-174.665],[38.8041,-45.055,-159.368],[39.0614,-46.3595,-140.825]],"members":[{"id":"member","entityId":"entry-11473","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247917","name":"Eldreth Spectre Patrol","speed":1.15,"pathId":2479170,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-65.0282,-25.3371,-349.698],[-73.7074,-25.3352,-349.578],[-74.3028,-25.3303,-339.797],[-74.4906,-25.3263,-328.878],[-74.5112,-25.3229,-317.958],[-74.2032,-25.3222,-303.751],[-73.9666,-25.3222,-292.834],[-73.9872,-25.3222,-281.914],[-74.01,-25.3194,-269.874],[-74.0306,-25.3181,-258.954],[-74.0141,-25.3181,-267.704],[-73.9873,-25.321,-281.914],[-73.9564,-25.321,-298.294],[-73.9275,-25.321,-313.624],[-73.8988,-25.3258,-328.884],[-73.8762,-25.3306,-340.854],[-73.8638,-25.3338,-347.434],[-66.7319,-25.3373,-350.146],[-56.8628,-25.3373,-350.011],[-45.9489,-25.3373,-350.376]],"members":[{"id":"member","entityId":"entry-11473","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247923","name":"Eldreth Spectre Patrol","speed":1.15,"pathId":2479230,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-25.1077,6.8542,-214.959],[-8.7756,6.8542,-213.707],[15.1642,6.8551,-211.872],[35.0267,6.8556,-217.771],[55.3166,6.8556,-225.852],[72.2948,6.8539,-233.286],[84.9657,6.8524,-246.834],[88.1149,6.8524,-258.455],[81.8178,6.8524,-267.376],[71.2357,6.8524,-264.681],[73.487,6.8524,-250.65],[73.7276,6.8542,-233.222],[63.0325,6.8562,-218.066],[42.2369,6.8576,-211.393],[23.0493,6.8576,-207.064],[4.5002,6.8546,-206.88],[-10.4798,6.8546,-203.623],[-25.6928,6.8546,-205.514],[-43.0703,6.8563,-204.933],[-59.3684,6.8582,-206.569],[-70.6931,6.8582,-215.036],[-77.7037,6.8568,-223.409],[-71.2958,6.8539,-230.824],[-62.6355,6.8539,-229.574],[-51.4148,6.8539,-225.209]],"members":[{"id":"member","entityId":"entry-11473","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247925","name":"Eldreth Spectre Patrol","speed":1.15,"pathId":2479250,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-17.5297,-45.055,-208.933],[-35.9193,-45.055,-207.409],[-47.1418,-45.055,-217.851],[-50.6163,-45.055,-231.605],[-51.387,-45.055,-250.208],[-51.797,-45.055,-236.075],[-47.316,-45.055,-221.414],[-38.5657,-45.055,-211.687],[-20.2054,-45.055,-205.786],[1.5823,-45.055,-204.441],[21.1237,-45.055,-202.2],[32.3267,-45.055,-190.25],[36.9851,-45.055,-180.374],[39.1221,-45.055,-167.389],[37.1798,-45.055,-178.134],[33.1108,-45.055,-190.61],[18.7963,-45.055,-202.265],[7.9445,-45.055,-203.483]],"members":[{"id":"member","entityId":"entry-11473","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248013","name":"Residual Monstrosity Patrol","speed":1.15,"pathId":2480130,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-55.5517,-46.3296,116.33],[-69.4422,-46.3296,80.773],[-73.5942,-46.3296,33.328],[-66.0047,-46.3296,3.79],[-31.4612,-46.3296,-49.002],[-7.2539,-46.3296,-61.55],[50.5164,-46.3583,-71.192],[93.3138,-46.33,-59.54],[131.344,-46.33,-27.198],[153.114,-46.3297,16.522],[159.282,-46.3296,59.348],[144.676,-46.3296,104.726],[120.19,-46.3296,135.272],[82.9945,-46.3296,159.941],[52.7543,-46.3296,168.689],[0.2563,-46.3296,163.111],[-34.1834,-46.3296,139.891]],"members":[{"id":"member","entityId":"entry-11484","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248015","name":"Residual Monstrosity Patrol","speed":1.15,"pathId":2480150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[50.8216,-46.3298,164.711],[37.8035,-46.3298,166.049],[18.2667,-46.3298,164.476],[-4.1126,-46.3298,159.832],[-34.6879,-46.3298,140.872],[-53.8041,-46.3298,120.27],[-68.1718,-46.3298,94.51],[-68.1718,-46.3298,94.51],[-77.8137,-46.3298,52.082],[-76.5842,-46.3298,33.607],[-71.2101,-46.3298,13.604],[-50.6682,-46.3298,-29.693],[-45.659,-46.3298,-35.441],[-15.87,-46.3298,-59.167],[1.4449,-46.3298,-65.727],[37.0315,-46.3583,-70.524],[65.9266,-46.3301,-65.139],[80.2705,-46.3301,-59.949],[111.331,-46.3301,-41.718],[131.527,-46.3301,-21.801],[146.353,-46.3301,5.887],[149.937,-46.3301,20.785],[154.837,-46.3301,60.851],[152.174,-46.3301,79.137],[140.509,-46.3301,106.173],[122.294,-46.3301,129.359],[96.5688,-46.3301,149.438],[96.5688,-46.3301,149.438],[62.4965,-46.3301,166.753]],"members":[{"id":"member","entityId":"entry-11484","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248016","name":"Residual Monstrosity Patrol","speed":1.15,"pathId":2480160,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-29.6181,-46.3293,-45.392],[10.8301,-46.3293,-64.324],[53.1035,-46.3548,-68.483],[92.7889,-46.3301,-57.4],[126.745,-46.3301,-30.401],[147.482,-46.3301,6.616],[155.474,-46.3297,44.855],[147.309,-46.3297,99.556],[128.92,-46.3294,129.055],[90.6617,-46.3294,159.374],[41.4035,-46.3294,172.953],[13.4042,-46.3294,169.147],[-30.3313,-46.3294,149.468],[-59.4475,-46.3294,121.707],[-77.6464,-46.3294,79.848],[-81.3007,-46.3293,32.619],[-65.9321,-46.3293,-6.987],[-50.9413,-46.3293,-27.106]],"members":[{"id":"member","entityId":"entry-11484","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248261","name":"Wildspawn Felsworn Patrol","speed":1.15,"pathId":2482610,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-51.4255,-46.8936,-1482.13],[-26.3447,-46.9114,-1444.101]],"members":[{"id":"member","entityId":"entry-11455","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248262","name":"Phase Lasher Patrol","speed":1.15,"pathId":2482620,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-51.2003,-46.8501,-1509.05],[-45.865,-46.868,-1498.055],[-41.425,-46.8806,-1490.324],[-45.865,-46.868,-1498.055],[-51.2003,-46.8501,-1509.05],[-45.3612,-46.8382,-1516.509],[-33.1369,-46.8996,-1518.62],[-45.3612,-46.8382,-1516.509]],"members":[{"id":"member","entityId":"entry-13196","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248263","name":"Fel Lash Patrol","speed":1.15,"pathId":2482630,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-51.2003,-46.8501,-1509.05],[-45.865,-46.868,-1498.055],[-41.425,-46.8806,-1490.324],[-45.865,-46.868,-1498.055],[-51.2003,-46.8501,-1509.05],[-45.3612,-46.8382,-1516.509],[-33.1369,-46.8996,-1518.62],[-45.3612,-46.8382,-1516.509]],"members":[{"id":"member","entityId":"entry-13197","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248264","name":"Phase Lasher Patrol","speed":1.15,"pathId":2482640,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-51.2144,-46.8389,-1515.965],[-55.7477,-46.8625,-1501.301],[-38.2425,-46.8894,-1484.941],[-55.7477,-46.8625,-1501.301],[-51.2144,-46.8389,-1515.965],[-32.7135,-46.8988,-1525.874]],"members":[{"id":"member","entityId":"entry-13196","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248265","name":"Fel Lash Patrol","speed":1.15,"pathId":2482650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-51.2144,-46.8389,-1515.965],[-55.7477,-46.8625,-1501.301],[-38.2425,-46.8894,-1484.941],[-55.7477,-46.8625,-1501.301],[-51.2144,-46.8389,-1515.965],[-32.7135,-46.8988,-1525.874]],"members":[{"id":"member","entityId":"entry-13197","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248266","name":"Phase Lasher Patrol","speed":1.15,"pathId":2482660,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-61.9988,-46.8833,-1408.365],[-37.2938,-46.8654,-1395.987]],"members":[{"id":"member","entityId":"entry-13196","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248267","name":"Fel Lash Patrol","speed":1.15,"pathId":2482670,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-61.9988,-46.8833,-1408.365],[-37.2938,-46.8654,-1395.987]],"members":[{"id":"member","entityId":"entry-13197","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248268","name":"Phase Lasher Patrol","speed":1.15,"pathId":2482680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-64.7574,-46.909,-1380.998],[-36.3319,-46.8837,-1384.62]],"members":[{"id":"member","entityId":"entry-13196","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248269","name":"Fel Lash Patrol","speed":1.15,"pathId":2482690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-64.7574,-46.909,-1380.998],[-36.3319,-46.8837,-1384.62]],"members":[{"id":"member","entityId":"entry-13197","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248273","name":"Wildspawn Shadowstalker Patrol","speed":1.15,"pathId":2482730,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-111.633,-25.8531,-1127.873],[-83.6267,-24.4735,-1210.418],[-110.988,-25.0234,-1209.746],[-111.119,-31.5059,-1285.923],[-93.5836,-32.829,-1304.149],[-56.613,-40.4337,-1314.954],[-50.9381,-46.8146,-1368.57],[-57.3353,-40.4546,-1316.12],[-93.2648,-32.8293,-1305.795],[-112.375,-31.4985,-1285.897],[-112.905,-25.0234,-1211.421],[-114.056,-25.0234,-1165.055],[-112.905,-25.0234,-1211.421],[-112.375,-31.4985,-1285.897],[-93.2648,-32.8293,-1305.795],[-57.3353,-40.4546,-1316.12],[-50.9381,-46.8146,-1368.57],[-56.613,-40.4337,-1314.954],[-93.5836,-32.829,-1304.149],[-111.119,-31.5059,-1285.923],[-110.988,-25.0234,-1209.746],[-83.5047,-24.5055,-1210.428]],"members":[{"id":"member","entityId":"entry-11456","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248287","name":"Wildspawn Felsworn Patrol","speed":1.15,"pathId":2482870,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-2.8519,-25.9719,-1186.298],[-4.5672,-25.9763,-1197.943],[-18.6113,-25.9716,-1201.582],[-31.7986,-25.9686,-1196.994],[-35.185,-25.9696,-1185.823],[-29.805,-25.9703,-1176.089],[-15.0338,-25.9679,-1175.742]],"members":[{"id":"member","entityId":"entry-11455","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248288","name":"Wildspawn Felsworn Patrol","speed":1.15,"pathId":2482880,"formationSource":"database-solo","spawnMask":1,"waypoints":[[66.2728,-25.976,-1185.362],[66.3418,-25.9717,-1202.498],[50.3662,-25.9643,-1204.228],[38.7651,-25.9671,-1203.669],[33.5795,-25.9719,-1193.495],[38.6206,-25.9673,-1179.921],[53.8846,-25.9716,-1175.794]],"members":[{"id":"member","entityId":"entry-11455","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248289","name":"Wildspawn Felsworn Patrol","speed":1.15,"pathId":2482890,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-53.5103,-25.9665,-1162.995],[-39.2423,-25.9687,-1175.992],[-24.1216,-25.9712,-1175.804],[10.6204,-25.9709,-1154.91],[-13.5036,-25.9678,-1175.885],[-40.6289,-25.9685,-1176.174]],"members":[{"id":"member","entityId":"entry-11455","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248290","name":"Wildspawn Felsworn Patrol","speed":1.15,"pathId":2482900,"formationSource":"database-solo","spawnMask":1,"waypoints":[[23.0963,-25.9753,-1217.24],[30.7687,-25.9674,-1179.37],[47.4617,-25.9699,-1170.684],[65.7924,-25.9677,-1180.205],[83.4489,-25.9675,-1165.106],[66.8399,-25.9676,-1181.567],[38.9558,-25.9686,-1170.509]],"members":[{"id":"member","entityId":"entry-11455","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248356","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483560,"formationSource":"database-solo","spawnMask":1,"waypoints":[[36.12,-25.8569,-965.255],[-0.0031,-25.8151,-946.36],[-16.9132,-25.8143,-967.737],[-0.1286,-25.8428,-946.519]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248359","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483590,"formationSource":"database-solo","spawnMask":1,"waypoints":[[115.459,-25.8418,-961.198],[133.466,-25.9196,-953.015],[115.459,-25.8418,-961.198],[98.201,-25.8435,-960.908],[88.1574,-25.8843,-951.423],[60.7305,-25.8128,-967.133],[88.1574,-25.8843,-951.423],[98.201,-25.8435,-960.908]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248362","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483620,"formationSource":"database-solo","spawnMask":1,"waypoints":[[158.992,-25.925,-1046.05],[138.745,-25.8313,-1072.366],[158.992,-25.925,-1046.05],[150.443,-25.9033,-1014.4],[164.238,-25.9134,-978.262],[150.443,-25.9033,-1014.4]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248365","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[33.9481,-25.8505,-1128.365],[42.4242,-25.8407,-1110.567],[51.9439,-25.8252,-1110.677],[69.9382,-25.8955,-1124.13],[51.9439,-25.8252,-1110.677],[42.4242,-25.8407,-1110.567]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248368","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[96.4453,-25.7979,-1107.774],[88.6513,-25.843,-1128.515],[96.4453,-25.7979,-1107.774],[122.695,-25.787,-1105.905],[141.618,-25.9008,-1119.223],[122.695,-25.787,-1105.905]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248371","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483710,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-72.0594,-25.7879,-1105.98],[-91.8319,-25.8125,-1110.329],[-72.0594,-25.7879,-1105.98],[-38.8059,-25.8037,-1107.685],[-16.1,-25.8901,-1117.964],[5.3919,-25.8417,-1110.472],[-16.1,-25.8901,-1117.964],[-38.8059,-25.8037,-1107.685]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248374","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483740,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-102.332,-25.8938,-949.256],[-68.6149,-25.8525,-958.508],[-10.1469,-25.9281,-953.954],[69.151,-25.7681,-970.776],[114.867,-25.836,-960.894],[161.777,-25.924,-969.805],[159.288,-25.9257,-1045.839],[158.719,-25.9257,-1106.91],[103.512,-25.7791,-1105.617],[24.6148,-25.8437,-1115.826],[-56.2494,-25.826,-1107.128],[-107.258,-25.8004,-1104.999],[-136.703,-25.8902,-1058.105],[-107.258,-25.8004,-1104.999],[-56.2494,-25.826,-1107.128],[24.6148,-25.8437,-1115.826],[103.512,-25.7791,-1105.617],[158.719,-25.9257,-1106.91],[159.288,-25.9257,-1045.839],[161.777,-25.924,-969.805],[114.867,-25.836,-960.894],[69.151,-25.7681,-970.776],[-10.1469,-25.9281,-953.954],[-68.6149,-25.8525,-958.508]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248375","name":"Warpwood Treant Patrol","speed":1.15,"pathId":2483750,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-102.332,-25.8938,-949.256],[-68.6149,-25.8525,-958.508],[-10.1469,-25.9281,-953.954],[69.151,-25.7681,-970.776],[114.867,-25.836,-960.894],[161.777,-25.924,-969.805],[159.288,-25.9257,-1045.839],[158.719,-25.9257,-1106.91],[103.512,-25.7791,-1105.617],[24.6148,-25.8437,-1115.826],[-56.2494,-25.826,-1107.128],[-107.258,-25.8004,-1104.999],[-136.703,-25.8902,-1058.105],[-107.258,-25.8004,-1104.999],[-56.2494,-25.826,-1107.128],[24.6148,-25.8437,-1115.826],[103.512,-25.7791,-1105.617],[158.719,-25.9257,-1106.91],[159.288,-25.9257,-1045.839],[161.777,-25.924,-969.805],[114.867,-25.836,-960.894],[69.151,-25.7681,-970.776],[-10.1469,-25.9281,-953.954],[-68.6149,-25.8525,-958.508]],"members":[{"id":"member","entityId":"entry-11462","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248376","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483760,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-136.703,-25.8902,-1058.105],[-107.258,-25.8004,-1104.999],[-56.2494,-25.826,-1107.128],[24.6148,-25.8437,-1115.826],[103.512,-25.7791,-1105.617],[158.719,-25.9257,-1106.91],[159.288,-25.9257,-1045.839],[161.777,-25.924,-969.805],[114.867,-25.836,-960.894],[69.151,-25.7681,-970.776],[-10.1469,-25.9281,-953.954],[-68.6149,-25.8525,-958.508],[-102.332,-25.8938,-949.256],[-68.6149,-25.8525,-958.508],[-10.1469,-25.9281,-953.954],[69.151,-25.7681,-970.776],[114.867,-25.836,-960.894],[161.777,-25.924,-969.805],[159.288,-25.9257,-1045.839],[158.719,-25.9257,-1106.91],[103.512,-25.7791,-1105.617],[24.6148,-25.8437,-1115.826],[-56.2494,-25.826,-1107.128],[-107.258,-25.8004,-1104.999]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248377","name":"Warpwood Treant Patrol","speed":1.15,"pathId":2483770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-136.703,-25.8902,-1058.105],[-107.258,-25.8004,-1104.999],[-56.2494,-25.826,-1107.128],[24.6148,-25.8437,-1115.826],[103.512,-25.7791,-1105.617],[158.719,-25.9257,-1106.91],[159.288,-25.9257,-1045.839],[161.777,-25.924,-969.805],[114.867,-25.836,-960.894],[69.151,-25.7681,-970.776],[-10.1469,-25.9281,-953.954],[-68.6149,-25.8525,-958.508],[-102.332,-25.8938,-949.256],[-68.6149,-25.8525,-958.508],[-10.1469,-25.9281,-953.954],[69.151,-25.7681,-970.776],[114.867,-25.836,-960.894],[161.777,-25.924,-969.805],[159.288,-25.9257,-1045.839],[158.719,-25.9257,-1106.91],[103.512,-25.7791,-1105.617],[24.6148,-25.8437,-1115.826],[-56.2494,-25.826,-1107.128],[-107.258,-25.8004,-1104.999]],"members":[{"id":"member","entityId":"entry-11462","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248419","name":"Wildspawn Shadowstalker Patrol","speed":1.15,"pathId":2484190,"formationSource":"database-solo","spawnMask":1,"waypoints":[[148.678,-58.6208,-1247.715],[149.453,-66.672,-1226.005],[143.054,-71.8827,-1215.728],[132.636,-76.8491,-1209.518],[105.812,-80.3663,-1207.952],[132.636,-76.8491,-1209.518],[143.054,-71.8827,-1215.728],[149.453,-66.672,-1226.005],[148.679,-58.6243,-1247.702],[135.019,-50.5672,-1264.653],[113.159,-42.3605,-1268.801],[95.7595,-35.1211,-1258.604],[89.0082,-29.1033,-1244.026],[82.9159,-25.9829,-1226.07],[77.0894,-25.9713,-1218.998],[61.3299,-25.9717,-1212.445],[77.0894,-25.9713,-1218.998],[82.9159,-25.9829,-1226.07],[89.0082,-29.1033,-1244.026],[95.7595,-35.1211,-1258.604],[113.059,-42.3072,-1268.743],[134.805,-50.4657,-1264.693]],"members":[{"id":"member","entityId":"entry-11456","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248420","name":"Wildspawn Shadowstalker Patrol","speed":1.15,"pathId":2484200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-47.0014,-80.3808,-1225.755],[-61.1315,-80.3455,-1215.07],[-85.7535,-78.8891,-1210.515],[-97.0741,-77.681,-1211.91],[-108.241,-75.5146,-1218.237],[-112.736,-72.3733,-1234.147],[-104.849,-69.3258,-1248.125],[-88.6275,-66.3039,-1253.368],[-69.7661,-63.5809,-1253.337],[-32.4235,-58.851,-1253.331],[0.6312,-58.1608,-1252.164],[2.0146,-58.9506,-1229.422],[-15.8908,-59.7116,-1209.406],[2.0146,-58.9506,-1229.422],[0.9096,-58.1608,-1252.154],[-32.4235,-58.851,-1253.331],[-69.7661,-63.5809,-1253.337],[-88.6275,-66.3039,-1253.368],[-104.849,-69.3258,-1248.125],[-112.736,-72.3733,-1234.147],[-108.241,-75.5146,-1218.237],[-97.0741,-77.681,-1211.91],[-85.8696,-78.8587,-1210.53],[-61.1315,-80.3455,-1215.07]],"members":[{"id":"member","entityId":"entry-11456","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248421","name":"Wildspawn Shadowstalker Patrol","speed":1.15,"pathId":2484210,"formationSource":"database-solo","spawnMask":1,"waypoints":[[56.9323,-80.3352,-1161.398],[78.0908,-80.3296,-1171.318],[112.731,-80.2428,-1163.24],[141.143,-79.3253,-1163.274],[142.422,-78.7661,-1129.765],[144.11,-78.5101,-1075.738],[149.434,-78.5573,-1091.166],[144.11,-78.5101,-1075.738],[142.422,-78.1017,-1129.764],[141.143,-79.3253,-1163.274],[112.731,-80.2428,-1163.24],[78.0908,-80.3296,-1171.318]],"members":[{"id":"member","entityId":"entry-11456","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248521","name":"Warpwood Stomper Patrol","speed":1.15,"pathId":2485210,"formationSource":"database-solo","spawnMask":1,"waypoints":[[64.2495,-77.6646,-1120.005],[70.0856,-76.0027,-1094.391],[89.8259,-78.6099,-1078.246],[110.177,-79.378,-1046.085],[121.262,-76.8897,-1026.819],[116.503,-77.0447,-1013.688],[121.262,-76.8897,-1026.819],[110.177,-79.378,-1046.085],[89.8259,-78.6099,-1078.246],[70.0856,-76.0027,-1094.391]],"members":[{"id":"member","entityId":"entry-11465","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248524","name":"Warpwood Stomper Patrol","speed":1.15,"pathId":2485240,"formationSource":"database-solo","spawnMask":1,"waypoints":[[30.6208,-75.8475,-1060.789],[36.7869,-78.3557,-1031.625],[53.9076,-79.8347,-1005.403],[89.3598,-77.9935,-992.956],[53.9076,-79.8347,-1005.403],[36.7869,-78.3557,-1031.625],[30.6208,-75.8475,-1060.789],[32.4111,-72.229,-1087.478]],"members":[{"id":"member","entityId":"entry-11465","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248527","name":"Warpwood Stomper Patrol","speed":1.15,"pathId":2485270,"formationSource":"database-solo","spawnMask":1,"waypoints":[[17.6276,-75.8849,-1054.012],[32.6999,-79.7272,-1010.293],[17.6276,-75.8849,-1054.012],[16.1016,-73.6875,-1096.35]],"members":[{"id":"member","entityId":"entry-11465","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248530","name":"Warpwood Stomper Patrol","speed":1.15,"pathId":2485300,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-81.9692,-76.9107,-1043.463],[-109.515,-77.6217,-1034.093],[-117.909,-78.3585,-1014.923],[-109.515,-77.6217,-1034.093],[-81.9692,-76.9107,-1043.463],[-65.1329,-76.0733,-1073.329],[-76.7669,-77.2113,-1117.053],[-65.1329,-76.0733,-1073.329]],"members":[{"id":"member","entityId":"entry-11465","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248533","name":"Warpwood Stomper Patrol","speed":1.15,"pathId":2485330,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-38.371,-74.2029,-1074.404],[-20.1207,-74.7423,-1034.006],[5.1882,-76.1629,-1005.554],[12.2739,-75.1666,-965.4],[5.1882,-76.1629,-1005.554],[-20.1207,-74.7423,-1034.006]],"members":[{"id":"member","entityId":"entry-11465","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248542","name":"Warpwood Crusher Patrol","speed":1.15,"pathId":2485420,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-197.904,-122.6568,-1243.414],[-188.686,-118.6583,-1231.364],[-187.728,-98.7381,-1173.469],[-246.584,-89.2757,-1129.498],[-289.586,-89.2757,-1131.984],[-333.693,-97.6053,-1168.924],[-341.621,-120.2416,-1238.288],[-341.621,-120.2416,-1238.288],[-333.693,-97.6053,-1168.924],[-289.586,-89.2757,-1131.984],[-246.584,-89.2757,-1129.498],[-187.728,-98.7381,-1173.469],[-188.686,-118.6583,-1231.364],[-197.904,-122.6568,-1243.414],[-183.26,-128.9058,-1271.909],[-241.626,-133.7258,-1317.932],[-241.626,-133.7258,-1317.932],[-183.26,-128.9058,-1271.909]],"members":[{"id":"member","entityId":"entry-13021","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248561","name":"Alzzin the Wildshaper Patrol","speed":1.15,"pathId":2485610,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-274.917,-141.7118,-1187.466],[-262.371,-141.7118,-1205.785]],"members":[{"id":"member","entityId":"entry-11492","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"encounter-156","name":"Lord Hel'nurath","position":[115.657,-4.6998,-133.6709]},{"id":"creature-248429","name":"Zevrim Thornhoof","position":[34.91,-59.6283,-1208.215]},{"id":"creature-248418","name":"Hydrospawn","position":[-4.6519,-81.7038,-1198.622]},{"id":"creature-248299","name":"Lethtendris","position":[5.3776,-5.3319,-1201.341]},{"id":"creature-248034","name":"Illyanna Ravenoak","position":[84.2739,6.8653,-216.257]},{"id":"creature-248025","name":"Magister Kalendris","position":[-33.213,-26.0603,-184.663]},{"id":"creature-248037","name":"Immol'thar","position":[38.0077,-51.2023,52.225]},{"id":"creature-248077","name":"Guard Mol'dar","position":[-410.784,-46.3078,-763.3654]},{"id":"creature-248079","name":"Guard Fengus","position":[-356.868,-10.096,-501.909]},{"id":"creature-248080","name":"Guard Slip'kik","position":[-550.453,-47.0683,-226.49]},{"id":"creature-248081","name":"Captain Kromcrush","position":[-627.663,7.7129,-278.494]},{"id":"creature-248076","name":"King Gordok","position":[-828.147,15.5682,-279.464]}],"objectiveOrder":[{"id":"encounter-156","name":"Lord Hel'nurath","position":[115.657,-4.6998,-133.6709]},{"id":"creature-248429","name":"Zevrim Thornhoof","position":[34.91,-59.6283,-1208.215]},{"id":"creature-248418","name":"Hydrospawn","position":[-4.6519,-81.7038,-1198.622]},{"id":"creature-248299","name":"Lethtendris","position":[5.3776,-5.3319,-1201.341]},{"id":"creature-248034","name":"Illyanna Ravenoak","position":[84.2739,6.8653,-216.257]},{"id":"creature-248025","name":"Magister Kalendris","position":[-33.213,-26.0603,-184.663]},{"id":"creature-248037","name":"Immol'thar","position":[38.0077,-51.2023,52.225]},{"id":"creature-248077","name":"Guard Mol'dar","position":[-410.784,-46.3078,-763.3654]},{"id":"creature-248079","name":"Guard Fengus","position":[-356.868,-10.096,-501.909]},{"id":"creature-248080","name":"Guard Slip'kik","position":[-550.453,-47.0683,-226.49]},{"id":"creature-248081","name":"Captain Kromcrush","position":[-627.663,7.7129,-278.494]},{"id":"creature-248076","name":"King Gordok","position":[-828.147,15.5682,-279.464]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":6,"id":179545,"map":429,"orientation":-0.785397,"phaseMask":1,"position_x":116.135,"position_y":638.836,"position_z":-48.467,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":20,"id":179548,"map":429,"orientation":4.13643,"phaseMask":1,"position_x":4.49781,"position_y":-437.567,"position_z":16.4125,"rotation0":0,"rotation1":0,"rotation2":-0.878817,"rotation3":0.47716,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":159,"id":179485,"map":429,"orientation":3.14159,"phaseMask":1,"position_x":558.806,"position_y":550.065,"position_z":-25.4008,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":508,"id":177213,"map":429,"orientation":3.14159,"phaseMask":1,"position_x":10.5911,"position_y":-154.998,"position_z":-2.69379,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":509,"id":179550,"map":429,"orientation":5.64614,"phaseMask":1,"position_x":83.2552,"position_y":630.546,"position_z":-24.6315,"rotation0":0,"rotation1":0,"rotation2":-0.313164,"rotation3":0.949699,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":2557,"guid":11921,"id":179517,"map":429,"orientation":1.62316,"phaseMask":1,"position_x":129.481,"position_y":544.967,"position_z":-48.4663,"rotation0":0,"rotation1":0,"rotation2":0.725374,"rotation3":0.688355,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14218,"id":181096,"map":429,"orientation":0,"phaseMask":1,"position_x":263.38,"position_y":-452.69,"position_z":-119.96,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29742,"id":177258,"map":429,"orientation":0.418879,"phaseMask":1,"position_x":121.222,"position_y":429.092,"position_z":28.4548,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29743,"id":177259,"map":429,"orientation":0,"phaseMask":1,"position_x":12.9413,"position_y":277.931,"position_z":-8.9329,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29744,"id":177257,"map":429,"orientation":0.418879,"phaseMask":1,"position_x":-92.3456,"position_y":442.67,"position_z":28.547,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29745,"id":179504,"map":429,"orientation":0,"phaseMask":1,"position_x":78.1387,"position_y":737.402,"position_z":-24.6216,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29746,"id":179505,"map":429,"orientation":0,"phaseMask":1,"position_x":-155.433,"position_y":734.166,"position_z":-24.6216,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29747,"id":179503,"map":429,"orientation":0,"phaseMask":1,"position_x":-38.9651,"position_y":813.709,"position_z":-27.3178,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29748,"id":179506,"map":429,"orientation":0,"phaseMask":1,"position_x":-38.7563,"position_y":812.587,"position_z":-3.8761,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29749,"id":179563,"map":429,"orientation":4.52041,"phaseMask":1,"position_x":116.105,"position_y":638.89,"position_z":-48.467,"rotation0":0,"rotation1":0,"rotation2":0.771622,"rotation3":-0.636081,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29750,"id":177219,"map":429,"orientation":1.5708,"phaseMask":1,"position_x":385.327,"position_y":374.232,"position_z":-1.34314,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":29751,"id":177221,"map":429,"orientation":4.71239,"phaseMask":1,"position_x":50.5863,"position_y":501.94,"position_z":-23.1499,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":29752,"id":177211,"map":429,"orientation":0,"phaseMask":1,"position_x":-41.8254,"position_y":159.874,"position_z":-3.44834,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":29753,"id":177212,"map":429,"orientation":3.14159,"phaseMask":1,"position_x":10.7216,"position_y":159.459,"position_z":-3.44834,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":29754,"id":177215,"map":429,"orientation":1.5708,"phaseMask":1,"position_x":255.408,"position_y":10.3791,"position_z":-2.69381,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":29755,"id":179549,"map":429,"orientation":1.5708,"phaseMask":1,"position_x":351.568,"position_y":88.6734,"position_z":-36.393,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29756,"id":177217,"map":429,"orientation":1.5708,"phaseMask":1,"position_x":491.204,"position_y":515.133,"position_z":29.4675,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":35832,"id":179516,"map":429,"orientation":1.6352,"phaseMask":1,"position_x":385.031,"position_y":260.257,"position_z":11.4396,"rotation0":0,"rotation1":0,"rotation2":0.729506,"rotation3":0.683974,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":35833,"id":179547,"map":429,"orientation":3.21621,"phaseMask":1,"position_x":157.708,"position_y":602.89,"position_z":-26.7316,"rotation0":0,"rotation1":0,"rotation2":0.999304,"rotation3":-0.0373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":2557,"guid":44739,"id":179544,"map":429,"orientation":5.02655,"phaseMask":1,"position_x":163.038,"position_y":530.182,"position_z":-48.467,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":44740,"id":179499,"map":429,"orientation":3.74834,"phaseMask":1,"position_x":599.501,"position_y":606.489,"position_z":-4.75246,"rotation0":0,"rotation1":0,"rotation2":0.954334,"rotation3":-0.298741,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73440,"id":179526,"map":429,"orientation":-0.453785,"phaseMask":1,"position_x":-7.83484,"position_y":-199.983,"position_z":-4.12879,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73441,"id":179526,"map":429,"orientation":0.785397,"phaseMask":1,"position_x":102.549,"position_y":-246.011,"position_z":-56.3647,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73442,"id":179526,"map":429,"orientation":-0.488691,"phaseMask":1,"position_x":134.767,"position_y":-262.46,"position_z":-4.14639,"rotation0":0,"rotation1":0,"rotation2":-0.241921,"rotation3":0.970296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73443,"id":179526,"map":429,"orientation":0,"phaseMask":1,"position_x":-114.736,"position_y":-199.653,"position_z":-4.1244,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73444,"id":179526,"map":429,"orientation":0,"phaseMask":1,"position_x":-112.021,"position_y":-258.887,"position_z":-56.2501,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73445,"id":179526,"map":429,"orientation":2.33874,"phaseMask":1,"position_x":-61.5861,"position_y":-306.311,"position_z":-55.7067,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73446,"id":179526,"map":429,"orientation":-0.209439,"phaseMask":1,"position_x":-5.54965,"position_y":-393.198,"position_z":-58.6137,"rotation0":0,"rotation1":0,"rotation2":-0.104528,"rotation3":0.994522,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73447,"id":179526,"map":429,"orientation":0,"phaseMask":1,"position_x":21.9326,"position_y":-409.795,"position_z":-58.6142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73448,"id":179526,"map":429,"orientation":2.32129,"phaseMask":1,"position_x":117.148,"position_y":-408.461,"position_z":-3.27357,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73449,"id":179526,"map":429,"orientation":1.58825,"phaseMask":1,"position_x":36.7152,"position_y":-467.008,"position_z":-4.24876,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73450,"id":179526,"map":429,"orientation":0,"phaseMask":1,"position_x":353.105,"position_y":-447.005,"position_z":-90.0577,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73451,"id":179526,"map":429,"orientation":3.05433,"phaseMask":1,"position_x":66.2358,"position_y":-633.758,"position_z":-25.163,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":73452,"id":179528,"map":429,"orientation":-2.02458,"phaseMask":1,"position_x":-22.3061,"position_y":-349.882,"position_z":-4.07224,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":73453,"id":179528,"map":429,"orientation":-0.453785,"phaseMask":1,"position_x":423.649,"position_y":-94.0369,"position_z":-3.88739,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":73454,"id":179528,"map":429,"orientation":-2.80998,"phaseMask":1,"position_x":509.725,"position_y":523.927,"position_z":-25.4027,"rotation0":0,"rotation1":0,"rotation2":-0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73455,"id":179528,"map":429,"orientation":2.84488,"phaseMask":1,"position_x":101.961,"position_y":-247.727,"position_z":-4.01977,"rotation0":0,"rotation1":0,"rotation2":0.989015,"rotation3":0.147813,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73456,"id":179528,"map":429,"orientation":-1.93732,"phaseMask":1,"position_x":127.199,"position_y":-272.801,"position_z":-4.14639,"rotation0":0,"rotation1":0,"rotation2":-0.824127,"rotation3":0.566404,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73457,"id":179528,"map":429,"orientation":-0.750491,"phaseMask":1,"position_x":-168.656,"position_y":-271.912,"position_z":-4.12082,"rotation0":0,"rotation1":0,"rotation2":-0.366501,"rotation3":0.930418,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73458,"id":179528,"map":429,"orientation":1.25664,"phaseMask":1,"position_x":-156.299,"position_y":-321.1,"position_z":-4.14717,"rotation0":0,"rotation1":0,"rotation2":0.587786,"rotation3":0.809016,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73459,"id":179528,"map":429,"orientation":-2.86233,"phaseMask":1,"position_x":-99.5965,"position_y":-395.866,"position_z":-4.2207,"rotation0":0,"rotation1":0,"rotation2":-0.990267,"rotation3":0.139178,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73460,"id":179528,"map":429,"orientation":-2.07694,"phaseMask":1,"position_x":-109.888,"position_y":-404.549,"position_z":-4.21786,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73461,"id":179528,"map":429,"orientation":0.244346,"phaseMask":1,"position_x":-42.6484,"position_y":-341.5,"position_z":-52.6547,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73462,"id":179528,"map":429,"orientation":0.226893,"phaseMask":1,"position_x":-27.0036,"position_y":-404.283,"position_z":-58.614,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73463,"id":179528,"map":429,"orientation":2.05949,"phaseMask":1,"position_x":-10.2151,"position_y":-349.267,"position_z":-53.8632,"rotation0":0,"rotation1":0,"rotation2":0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73464,"id":179528,"map":429,"orientation":0.314158,"phaseMask":1,"position_x":34.9096,"position_y":-365.079,"position_z":-4.14052,"rotation0":0,"rotation1":0,"rotation2":0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73465,"id":179528,"map":429,"orientation":-2.16421,"phaseMask":1,"position_x":34.5069,"position_y":-391.211,"position_z":-58.6113,"rotation0":0,"rotation1":0,"rotation2":-0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73466,"id":179528,"map":429,"orientation":-0.506145,"phaseMask":1,"position_x":47.8125,"position_y":-334.275,"position_z":-52.0553,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73467,"id":179528,"map":429,"orientation":3.12412,"phaseMask":1,"position_x":71.7209,"position_y":-409.745,"position_z":-4.21656,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73468,"id":179528,"map":429,"orientation":-0.628317,"phaseMask":1,"position_x":64.8074,"position_y":-400.448,"position_z":-58.6044,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73469,"id":179528,"map":429,"orientation":0.872664,"phaseMask":1,"position_x":71.7946,"position_y":-437.261,"position_z":-58.5956,"rotation0":0,"rotation1":0,"rotation2":0.422618,"rotation3":0.906308,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73470,"id":179528,"map":429,"orientation":-2.67035,"phaseMask":1,"position_x":263.393,"position_y":-568.436,"position_z":-111.976,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73471,"id":179528,"map":429,"orientation":-1.23918,"phaseMask":1,"position_x":59.0392,"position_y":-760.028,"position_z":-25.0955,"rotation0":0,"rotation1":0,"rotation2":-0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73472,"id":179528,"map":429,"orientation":-1.309,"phaseMask":1,"position_x":32.7576,"position_y":-775.236,"position_z":-25.1416,"rotation0":0,"rotation1":0,"rotation2":-0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73473,"id":179532,"map":429,"orientation":-0.95993,"phaseMask":1,"position_x":2.64945,"position_y":-210.379,"position_z":-52.3845,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73474,"id":179532,"map":429,"orientation":1.8675,"phaseMask":1,"position_x":50.4484,"position_y":-241.885,"position_z":-53.2931,"rotation0":0,"rotation1":0,"rotation2":0.803856,"rotation3":0.594824,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73475,"id":179532,"map":429,"orientation":0.418879,"phaseMask":1,"position_x":-148.661,"position_y":-210.009,"position_z":-4.1514,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73476,"id":179532,"map":429,"orientation":0.244346,"phaseMask":1,"position_x":-131.851,"position_y":-319.414,"position_z":-56.7906,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73477,"id":179532,"map":429,"orientation":-2.02458,"phaseMask":1,"position_x":-22.3061,"position_y":-349.883,"position_z":-4.07224,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73478,"id":179532,"map":429,"orientation":0,"phaseMask":1,"position_x":-6.16094,"position_y":-433.403,"position_z":-4.22212,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73479,"id":179532,"map":429,"orientation":-0.85521,"phaseMask":1,"position_x":55.8777,"position_y":-438.434,"position_z":-58.5981,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73480,"id":179532,"map":429,"orientation":-1.95477,"phaseMask":1,"position_x":126.758,"position_y":-296.279,"position_z":-4.14639,"rotation0":0,"rotation1":0,"rotation2":-0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73481,"id":179532,"map":429,"orientation":0,"phaseMask":1,"position_x":4.90084,"position_y":-450.306,"position_z":-58.6295,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73482,"id":179532,"map":429,"orientation":1.93731,"phaseMask":1,"position_x":189.484,"position_y":-482.115,"position_z":-100.601,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566409,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73483,"id":179532,"map":429,"orientation":-2.47837,"phaseMask":1,"position_x":44.9141,"position_y":-626.477,"position_z":-25.1061,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73484,"id":179532,"map":429,"orientation":0,"phaseMask":1,"position_x":31.0736,"position_y":-681.584,"position_z":-25.1616,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73485,"id":179533,"map":429,"orientation":-0.314158,"phaseMask":1,"position_x":-124.622,"position_y":-234.072,"position_z":-55.1133,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73486,"id":179533,"map":429,"orientation":2.87979,"phaseMask":1,"position_x":-75.923,"position_y":-358.893,"position_z":-4.14481,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73487,"id":179533,"map":429,"orientation":1.81514,"phaseMask":1,"position_x":-51.4662,"position_y":-358.168,"position_z":-4.13823,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73488,"id":179533,"map":429,"orientation":0,"phaseMask":1,"position_x":-94.2365,"position_y":-406.708,"position_z":-58.6073,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73489,"id":179533,"map":429,"orientation":0,"phaseMask":1,"position_x":-14.44,"position_y":-309.911,"position_z":-52.1458,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73490,"id":179533,"map":429,"orientation":-2.49582,"phaseMask":1,"position_x":36.7851,"position_y":-402.629,"position_z":-4.21849,"rotation0":0,"rotation1":0,"rotation2":-0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73491,"id":179533,"map":429,"orientation":-1.44862,"phaseMask":1,"position_x":119.36,"position_y":-336.64,"position_z":-4.14986,"rotation0":0,"rotation1":0,"rotation2":-0.662619,"rotation3":0.748957,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73492,"id":179533,"map":429,"orientation":0,"phaseMask":1,"position_x":66.1826,"position_y":-315.416,"position_z":-54.2518,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73493,"id":179533,"map":429,"orientation":0.488691,"phaseMask":1,"position_x":-32.8264,"position_y":-463.171,"position_z":-58.6176,"rotation0":0,"rotation1":0,"rotation2":0.241921,"rotation3":0.970296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73494,"id":179533,"map":429,"orientation":-0.0698117,"phaseMask":1,"position_x":242.178,"position_y":-420.788,"position_z":-119.962,"rotation0":0,"rotation1":0,"rotation2":-0.0348988,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73495,"id":179533,"map":429,"orientation":-2.19912,"phaseMask":1,"position_x":17.3334,"position_y":-704.192,"position_z":-12.6426,"rotation0":0,"rotation1":0,"rotation2":-0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73496,"id":179533,"map":429,"orientation":0.104719,"phaseMask":1,"position_x":41.8712,"position_y":-744.931,"position_z":-25.1339,"rotation0":0,"rotation1":0,"rotation2":0.0523356,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":81680,"id":176905,"map":429,"orientation":5.12254,"phaseMask":1,"position_x":-21.1058,"position_y":-392.466,"position_z":-58.1027,"rotation0":0,"rotation1":0,"rotation2":-0.548293,"rotation3":0.836286,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":81681,"id":176906,"map":429,"orientation":3.5692,"phaseMask":1,"position_x":4.30648,"position_y":-441.621,"position_z":-37.9976,"rotation0":0,"rotation1":0,"rotation2":-0.977231,"rotation3":0.212178,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99774,"id":179671,"map":429,"orientation":2.00921,"phaseMask":1,"position_x":-31.5518,"position_y":794.877,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.84395,"rotation3":0.536422,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99775,"id":179670,"map":429,"orientation":2.52128,"phaseMask":1,"position_x":-24.1474,"position_y":801.253,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.952286,"rotation3":0.305207,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99776,"id":179669,"map":429,"orientation":3.15588,"phaseMask":1,"position_x":-19.4947,"position_y":813.068,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.999974,"rotation3":-0.0071436,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99777,"id":179671,"map":429,"orientation":3.83134,"phaseMask":1,"position_x":-25.0153,"position_y":825.11,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.941118,"rotation3":-0.338078,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99778,"id":179670,"map":429,"orientation":4.48085,"phaseMask":1,"position_x":-35.8296,"position_y":831.663,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.784052,"rotation3":-0.620695,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99779,"id":179669,"map":429,"orientation":5.33299,"phaseMask":1,"position_x":-48.6689,"position_y":828.936,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.457425,"rotation3":-0.889248,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99780,"id":179671,"map":429,"orientation":6.0006,"phaseMask":1,"position_x":-56.2721,"position_y":816.969,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.140823,"rotation3":-0.990035,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99781,"id":179670,"map":429,"orientation":0.549925,"phaseMask":1,"position_x":-54.7371,"position_y":803.251,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.271511,"rotation3":0.962435,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99782,"id":179669,"map":429,"orientation":1.35102,"phaseMask":1,"position_x":-42.1705,"position_y":794.235,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.625295,"rotation3":0.780388,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99783,"id":179681,"map":429,"orientation":4.90495,"phaseMask":1,"position_x":-35.712,"position_y":796.486,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.635856,"rotation3":-0.771807,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99784,"id":179668,"map":429,"orientation":4.90495,"phaseMask":1,"position_x":-38.8094,"position_y":812.696,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.635856,"rotation3":-0.771807,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99785,"id":179673,"map":429,"orientation":0.213769,"phaseMask":1,"position_x":-59.7294,"position_y":808.98,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.106681,"rotation3":0.994293,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99786,"id":179672,"map":429,"orientation":3.30353,"phaseMask":1,"position_x":-17.6217,"position_y":816.557,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.996724,"rotation3":-0.0808802,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99787,"id":179674,"map":429,"orientation":4.77773,"phaseMask":1,"position_x":-42.5304,"position_y":835.045,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.683632,"rotation3":-0.729827,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99895,"id":179701,"map":429,"orientation":0,"phaseMask":1,"position_x":-38.94,"position_y":812.86,"position_z":-29.53,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99896,"id":179675,"map":429,"orientation":0,"phaseMask":1,"position_x":-38.94,"position_y":812.85,"position_z":-29.53,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99902,"id":181047,"map":429,"orientation":0,"phaseMask":1,"position_x":263.38,"position_y":-452.69,"position_z":-119.96,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268262,"id":142144,"map":429,"orientation":-1.95477,"phaseMask":1,"position_x":67.4486,"position_y":-467.225,"position_z":-58.6226,"rotation0":0,"rotation1":0,"rotation2":-0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268263,"id":142144,"map":429,"orientation":-2.02458,"phaseMask":1,"position_x":24.717,"position_y":-468.53,"position_z":-4.25922,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268264,"id":142144,"map":429,"orientation":-2.19912,"phaseMask":1,"position_x":68.1034,"position_y":-669.629,"position_z":-25.1653,"rotation0":0,"rotation1":0,"rotation2":-0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268265,"id":142144,"map":429,"orientation":0.174532,"phaseMask":1,"position_x":-46.1853,"position_y":-432.413,"position_z":16.4136,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268266,"id":142144,"map":429,"orientation":-2.47837,"phaseMask":1,"position_x":-110.419,"position_y":-419.615,"position_z":-58.6047,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268267,"id":142145,"map":429,"orientation":-0.506145,"phaseMask":1,"position_x":73.1442,"position_y":-234.595,"position_z":-56.461,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268268,"id":142145,"map":429,"orientation":0.767944,"phaseMask":1,"position_x":-29.2692,"position_y":-335.209,"position_z":-51.8413,"rotation0":0,"rotation1":0,"rotation2":0.374606,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268269,"id":142145,"map":429,"orientation":1.39626,"phaseMask":1,"position_x":-27.8809,"position_y":-392.48,"position_z":-58.6137,"rotation0":0,"rotation1":0,"rotation2":0.642786,"rotation3":0.766046,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268270,"id":142145,"map":429,"orientation":1.95477,"phaseMask":1,"position_x":107.133,"position_y":-465.386,"position_z":-3.27357,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268271,"id":142145,"map":429,"orientation":2.79252,"phaseMask":1,"position_x":-77.444,"position_y":-438.764,"position_z":-58.612,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268272,"id":142145,"map":429,"orientation":1.25664,"phaseMask":1,"position_x":39.6528,"position_y":-322.045,"position_z":-52.2932,"rotation0":0,"rotation1":0,"rotation2":0.587786,"rotation3":0.809016,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268273,"id":142145,"map":429,"orientation":1.32645,"phaseMask":1,"position_x":38.4777,"position_y":-391.213,"position_z":-58.6108,"rotation0":0,"rotation1":0,"rotation2":0.615661,"rotation3":0.788011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268275,"id":176907,"map":429,"orientation":3.14159,"phaseMask":1,"position_x":131.286,"position_y":-278.89,"position_z":-56.5211,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268276,"id":177220,"map":429,"orientation":-1.5708,"phaseMask":1,"position_x":252.327,"position_y":-404.921,"position_z":-120.62,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268277,"id":179502,"map":429,"orientation":-2.92342,"phaseMask":1,"position_x":277.695,"position_y":-423.25,"position_z":-120.04,"rotation0":0,"rotation1":0,"rotation2":-0.994056,"rotation3":0.10887,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268278,"id":185579,"map":429,"orientation":0,"phaseMask":1,"position_x":33.14,"position_y":575.552,"position_z":-4.31,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268279,"id":179511,"map":429,"orientation":-2.79252,"phaseMask":1,"position_x":581.241,"position_y":524.321,"position_z":-25.4027,"rotation0":0,"rotation1":0,"rotation2":-0.984807,"rotation3":0.173652,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268280,"id":179501,"map":429,"orientation":2.77244,"phaseMask":1,"position_x":585.21,"position_y":523.77,"position_z":-25.4,"rotation0":0,"rotation1":0,"rotation2":0.983014,"rotation3":0.18353,"spawnMask":1,"spawntimesecs":-86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268877,"id":181094,"map":429,"orientation":0,"phaseMask":1,"position_x":263.38,"position_y":-452.69,"position_z":-119.96,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2557,"guid":2135399,"id":175404,"map":429,"orientation":3.03684,"phaseMask":1,"position_x":270.596,"position_y":-286.689,"position_z":-70.5572,"rotation0":0,"rotation1":0,"rotation2":0.998629,"rotation3":0.0523524,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2557,"guid":2135400,"id":175404,"map":429,"orientation":5.89921,"phaseMask":1,"position_x":246.195,"position_y":-268.761,"position_z":-52.933,"rotation0":0,"rotation1":0,"rotation2":0.19081,"rotation3":-0.981627,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2557,"guid":2135401,"id":175404,"map":429,"orientation":5.42798,"phaseMask":1,"position_x":276.913,"position_y":-323.602,"position_z":-90.5699,"rotation0":0,"rotation1":0,"rotation2":0.414691,"rotation3":-0.909963,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2557,"guid":2135402,"id":175404,"map":429,"orientation":4.83456,"phaseMask":1,"position_x":288.452,"position_y":-309.522,"position_z":-84.566,"rotation0":0,"rotation1":0,"rotation2":0.662621,"rotation3":-0.748955,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2557,"guid":2135403,"id":175404,"map":429,"orientation":2.94959,"phaseMask":1,"position_x":263.743,"position_y":-266.911,"position_z":-59.9769,"rotation0":0,"rotation1":0,"rotation2":0.995395,"rotation3":0.0958539,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":2557}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/DireMaul":"9dbba84e7d0350efb7196c7ce9fa2d34e94d348220f18cba53a9ab831ac55856","patch/World/maps/DireMaul":"66a31e4d48a2dfe8b940acf8c04c5466214914aae4e97185aca79b72c2c3efc7"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/dire-maul/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["75/75 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"shattered-halls","title":"Hellfire Citadel: The Shattered Halls","mapId":540,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[60,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Hellfire Citadel: The Shattered Halls","theme":"Instanced dungeon","summary":"Fight through Hellfire Citadel: The Shattered Halls, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Hellfire Citadel: The Shattered Halls...","unchartedAreaName":"Uncharted Hellfire Citadel: The Shattered Halls","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":920.411},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/540-hellfiremilitary/visual.glb","checksum":"35c761a37b2a332b1f1697f84f7d5c9b917f0d9448c1802ea57f2e8e4f40444f","size":5546796,"triangleCount":123467}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/540-hellfiremilitary/collision.glb","checksum":"4ddfc2741199bf4c4915315f8690412319476a3e5e4033ba403f4a5c70a44f5b","size":1488152,"triangleCount":99999}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/540-hellfiremilitary/navigation.glb","checksum":"2f7b6b0e32d292eabdf0593ea352a37abb1a4c2143a113ee484bb33bc04417c9","size":197280,"triangleCount":15319}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-1175.5379,-50.7607,-92.6571],"max":[102.8107,43.2496,610.4687]},"entrance":{"name":"Hellfire Citadel: The Shattered Halls Entrance","footPosition":[-530.9893,4.4197,205.3429],"forward":[0.8917600537080059,0,-0.45250857075937745],"yaw":2.0403727204346236},"areas":[{"id":"entrance","name":"Hellfire Citadel: The Shattered Halls Entrance","center":[-530.9893,4.4197,205.3429],"radius":35},{"id":"area-grand-warlock-nethekurse","name":"Grand Warlock Nethekurse's Encounter","center":[-744.5239,10.1108,514.7067],"radius":42},{"id":"area-warbringer-o-mrogg","name":"Warbringer O'mrogg's Encounter","center":[-946.9809,11.0103,282.6748],"radius":42},{"id":"area-warchief-kargath-bladefist","name":"Warchief Kargath Bladefist's Encounter","center":[-803.1109,23.2496,141.4518],"radius":42}],"entities":{"entry-17420":{"id":"entry-17420","kind":"mob","name":"Shattered Hand Heathen","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-30474","name":"Bloodthirst","spellId":30474,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4818,"damageMultiplier":1.12},{"id":"spell-30485","name":"Enrage","spellId":30485,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4818,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-30485","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17013-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-16700":{"id":"entry-16700","kind":"mob","name":"Shattered Hand Legionnaire","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5906,"damageMultiplier":1.12},{"id":"spell-30472","name":"Aura of Discipline","spellId":30472,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5906,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-19275-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.8096,"markerRadius":0.8975}}},"entry-16507":{"id":"entry-16507","kind":"mob","name":"Shattered Hand Sentry","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22911","name":"Charge","spellId":22911,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6219,"damageMultiplier":1.12},{"id":"spell-31553","name":"Hamstring","spellId":31553,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6219,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-19277-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.9176,"markerRadius":0.7578}}},"entry-16594":{"id":"entry-16594","kind":"mob","name":"Shadowmoon Acolyte","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15585","name":"Prayer of Healing","spellId":15585,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5149,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-36052","name":"Power Word: Shield","spellId":36052,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":5149,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-36052","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16581-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-16523":{"id":"entry-16523","kind":"mob","name":"Shattered Hand Savage","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30470","name":"Slice and Dice","spellId":30470,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4775,"damageMultiplier":1.12},{"id":"spell-30485","name":"Enrage","spellId":30485,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4775,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-30485","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16584-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17694":{"id":"entry-17694","kind":"mob","name":"Shadowmoon Darkcaster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12542","name":"Fear","spellId":12542,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7260,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7260,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17189-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-16699":{"id":"entry-16699","kind":"mob","name":"Shattered Hand Reaver","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5983,"damageMultiplier":0.62,"radius":8},{"id":"spell-30485","name":"Enrage","spellId":30485,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5983,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-30485","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16580-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-16704":{"id":"entry-16704","kind":"mob","name":"Shattered Hand Sharpshooter","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-19503","name":"Scatter Shot","spellId":19503,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12},{"id":"spell-30481","name":"Incendiary Shot","spellId":30481,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5631,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16578-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17083":{"id":"entry-17083","kind":"mob","name":"Fel Orc Convert","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30478","name":"Hemorrhage","spellId":30478,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7111,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16839-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.142,"markerRadius":0.7505}}},"entry-16593":{"id":"entry-16593","kind":"mob","name":"Shattered Hand Brawler","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6840,"damageMultiplier":1.12},{"id":"spell-36033","name":"Kick","spellId":36033,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6840,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16577-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17670":{"id":"entry-17670","kind":"mob","name":"Shattered Hand Houndmaster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34100","name":"Volley","spellId":34100,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6802,"damageMultiplier":0.62,"radius":8},{"id":"spell-15620","name":"Shoot","spellId":15620,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6802,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17184-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17669":{"id":"entry-17669","kind":"mob","name":"Rabid Warhound","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.434272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-30636","name":"Furious Howl","spellId":30636,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6397,"damageMultiplier":1.12},{"id":"spell-30639","name":"Carnivorous Bite","spellId":30639,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6397,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/acebaa605ea524a1df51d8ae425890737c096a76fffc27f17d3790073d1a3b7f.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.776,"markerRadius":1.7182}}},"entry-17356":{"id":"entry-17356","kind":"mob","name":"Creeping Ooze","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"ooze","model":{"url":"/assets/game/creatures/shared/2da48b305af87e5b7fe3a62db57cec0b5328ee4b5e390214600ddb6f9428db8b.glb","rotationY":-1.5707963267948966,"groundOffset":0.7137,"labelHeight":2.7872,"markerRadius":1.3463}}},"entry-17357":{"id":"entry-17357","kind":"mob","name":"Creeping Oozeling","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"ooze","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-10029-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3568,"labelHeight":1.3729,"markerRadius":0.65}}},"entry-16807":{"id":"entry-16807","kind":"boss","name":"Grand Warlock Nethekurse","title":"Dungeon Boss","hasLoot":true,"combat":{"level":71,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":7838,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16628-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0094,"labelHeight":4.0675,"markerRadius":0.9443}}},"entry-17693":{"id":"entry-17693","kind":"mob","name":"Shattered Hand Scout","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17727-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17462":{"id":"entry-17462","kind":"mob","name":"Shattered Hand Zealot","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30989","name":"Hamstring","spellId":30989,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4764,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17726-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17461":{"id":"entry-17461","kind":"mob","name":"Shattered Hand Blood Guard","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17725-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.3974,"markerRadius":0.8769}}},"entry-17427":{"id":"entry-17427","kind":"mob","name":"Shattered Hand Archer","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16100","name":"Shoot","spellId":16100,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5551,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16578-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17465":{"id":"entry-17465","kind":"mob","name":"Shattered Hand Centurion","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30931","name":"Battle Shout","spellId":30931,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6123,"damageMultiplier":1.12},{"id":"spell-15572","name":"Sunder Armor","spellId":15572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6123,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17185-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.3974,"markerRadius":0.8769}}},"entry-17464":{"id":"entry-17464","kind":"mob","name":"Shattered Hand Gladiator","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16856","name":"Mortal Strike","spellId":16856,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4074,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17183-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17671":{"id":"entry-17671","kind":"mob","name":"Shattered Hand Champion","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32588","name":"Concussion Blow","spellId":32588,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5626,"damageMultiplier":1.12},{"id":"spell-32587","name":"Shield Block","spellId":32587,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5626,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-32587","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17186-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0094,"labelHeight":4.0675,"markerRadius":0.9443}}},"entry-16809":{"id":"entry-16809","kind":"boss","name":"Warbringer O'mrogg","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30633","name":"Thunderclap","spellId":30633,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5091,"damageMultiplier":1.35},{"id":"spell-30584","name":"Fear","spellId":30584,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5091,"damageMultiplier":0,"radius":11,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}},{"id":"spell-30600","name":"Blast Wave","spellId":30600,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5091,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-18031-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":11.6005,"markerRadius":3.5134}}},"entry-17695":{"id":"entry-17695","kind":"mob","name":"Shattered Hand Assassin","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30991","name":"Stealth","spellId":30991,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5950,"damageMultiplier":1.12},{"id":"spell-30992","name":"Backstab","spellId":30992,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5950,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17190-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-16808":{"id":"entry-16808","kind":"boss","name":"Warchief Kargath Bladefist","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-12328","name":"Sweeping Strikes","spellId":12328,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-25821","name":"Charge","spellId":25821,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-30739","name":"Blade Dance","spellId":30739,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7418,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-19799-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.4989,"markerRadius":1.4563}}},"entry-20709":{"id":"entry-20709","kind":"mob","name":"Blade Dance Target","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-19725-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0236,"labelHeight":2.6514,"markerRadius":0.8681}}},"entry-20923":{"id":"entry-20923","kind":"mob","name":"Blood Guard Porung","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5598,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17725-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.3974,"markerRadius":0.8769}}},"entry-17288":{"id":"entry-17288","kind":"mob","name":"Randy Whizzlesprocket","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16960-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-17289":{"id":"entry-17289","kind":"mob","name":"Rifleman Brownbeard","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16961-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-17290":{"id":"entry-17290","kind":"mob","name":"Captain Alina","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16963-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-17292":{"id":"entry-17292","kind":"mob","name":"Private Jacint","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16964-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-17301":{"id":"entry-17301","kind":"mob","name":"Shattered Hand Executioner","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11876","name":"War Stomp","spellId":11876,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":7406,"damageMultiplier":0.62,"radius":8},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":7406,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16969-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}}},"staticSpawns":[{"id":"creature-151000","entityId":"entry-17420","position":[-631.3278,5.0259,280.824],"yaw":-5.65015,"spawnMask":3},{"id":"creature-151001","entityId":"entry-17420","position":[-628.2349,5.0669,282.3728],"yaw":-6.02974,"spawnMask":3},{"id":"creature-151002","entityId":"entry-17420","position":[-652.6096,5.0802,280.973],"yaw":-3.58081,"spawnMask":3},{"id":"creature-151003","entityId":"entry-17420","position":[-656.8165,5.0964,281.5567],"yaw":-3.48471,"spawnMask":3},{"id":"creature-151004","entityId":"entry-17420","position":[-658.6746,5.1021,282.001],"yaw":-3.32437,"spawnMask":3},{"id":"creature-151005","entityId":"entry-16700","position":[-627.5046,5.0177,227.7292],"yaw":-3.1915,"spawnMask":3},{"id":"creature-151006","entityId":"entry-16507","position":[-638.337,5.0877,266.4644],"yaw":-4.69494,"spawnMask":3},{"id":"creature-151007","entityId":"entry-16507","position":[-644.9845,5.0877,266.3046],"yaw":-4.62512,"spawnMask":3},{"id":"creature-151008","entityId":"entry-16507","position":[-637.1136,5.0877,322.6092],"yaw":-4.69494,"spawnMask":3},{"id":"creature-151009","entityId":"entry-16507","position":[-645.8578,5.0877,321.8686],"yaw":-4.53786,"spawnMask":3},{"id":"creature-151010","entityId":"entry-16700","position":[-629.649,5.0818,298.8187],"yaw":-0.753955,"spawnMask":3},{"id":"creature-151011","entityId":"entry-16594","position":[-626.2614,5.117,302.8155],"yaw":-5.55015,"spawnMask":3},{"id":"creature-151012","entityId":"entry-17420","position":[-628.3219,5.1267,304.3448],"yaw":-5.46288,"spawnMask":3},{"id":"creature-151013","entityId":"entry-16523","position":[-635.1744,5.1106,309.1912],"yaw":-4.66003,"spawnMask":3},{"id":"creature-151014","entityId":"entry-16594","position":[-637.2843,5.1078,309.7068],"yaw":-4.60767,"spawnMask":3},{"id":"creature-151015","entityId":"entry-16594","position":[-647.1955,5.1093,308.8951],"yaw":-4.13643,"spawnMask":3},{"id":"creature-151016","entityId":"entry-17420","position":[-649.2597,5.1161,307.9871],"yaw":-3.9619,"spawnMask":3},{"id":"creature-151017","entityId":"entry-17694","position":[-654.296,5.1141,301.2674],"yaw":-3.735,"spawnMask":3},{"id":"creature-151018","entityId":"entry-17420","position":[-655.9122,5.1059,299.466],"yaw":-3.71755,"spawnMask":3},{"id":"creature-151019","entityId":"entry-16700","position":[-657.2771,5.005,375.4127],"yaw":-3.08167,"spawnMask":3},{"id":"creature-151020","entityId":"entry-16699","position":[-659.878,5.0794,374.4907],"yaw":-3.17592,"spawnMask":3},{"id":"creature-151021","entityId":"entry-16704","position":[-622.0855,5.0829,377.3487],"yaw":-6.16142,"spawnMask":3},{"id":"creature-151022","entityId":"entry-17420","position":[-660.8454,5.0802,375.4857],"yaw":-3.22771,"spawnMask":3},{"id":"creature-151023","entityId":"entry-17694","position":[-622.5003,5.0798,376.4077],"yaw":-6.03849,"spawnMask":3},{"id":"creature-151024","entityId":"entry-16700","position":[-657.86,5.074,412.0827],"yaw":-3.42933,"spawnMask":3},{"id":"creature-151025","entityId":"entry-16699","position":[-625.8155,5.0847,417.5277],"yaw":-6.05308,"spawnMask":3},{"id":"creature-151026","entityId":"entry-16704","position":[-657.2732,5.0838,406.5747],"yaw":-3.67352,"spawnMask":3},{"id":"creature-151027","entityId":"entry-16704","position":[-626.1054,5.0838,406.3387],"yaw":-5.75305,"spawnMask":3},{"id":"creature-151028","entityId":"entry-17694","position":[-657.7093,5.0862,418.1657],"yaw":-3.45011,"spawnMask":3},{"id":"creature-151029","entityId":"entry-16700","position":[-631.1294,5.0895,449.5137],"yaw":-5.21006,"spawnMask":3},{"id":"creature-151030","entityId":"entry-16699","position":[-632.8298,5.0321,444.5297],"yaw":-5.60132,"spawnMask":3},{"id":"creature-151031","entityId":"entry-16699","position":[-635.075,5.0709,447.2907],"yaw":-5.8546,"spawnMask":3},{"id":"creature-151032","entityId":"entry-16704","position":[-648.6504,5.0213,446.9307],"yaw":-3.88154,"spawnMask":3},{"id":"creature-151033","entityId":"entry-16704","position":[-649.1324,5.0209,446.7277],"yaw":-3.70026,"spawnMask":3},{"id":"creature-151034","entityId":"entry-16704","position":[-655.743,5.1083,448.7627],"yaw":-3.9635,"spawnMask":3},{"id":"creature-151035","entityId":"entry-16700","position":[-641.6211,5.0251,488.4977],"yaw":-3.94444,"spawnMask":3},{"id":"creature-151036","entityId":"entry-17083","position":[-639.5458,5.1248,495.9617],"yaw":-4.17134,"spawnMask":3},{"id":"creature-151037","entityId":"entry-16523","position":[-644.5471,5.1239,492.5307],"yaw":-3.94444,"spawnMask":3},{"id":"creature-151038","entityId":"entry-17083","position":[-650.0542,5.1133,489.2187],"yaw":-3.71755,"spawnMask":3},{"id":"creature-151039","entityId":"entry-17694","position":[-644.7319,5.1226,499.1437],"yaw":-4.08407,"spawnMask":3},{"id":"creature-151040","entityId":"entry-16699","position":[-649.7228,5.1117,495.7277],"yaw":-3.89208,"spawnMask":3},{"id":"creature-151041","entityId":"entry-16594","position":[-655.2006,5.1023,490.1007],"yaw":-3.66519,"spawnMask":3},{"id":"creature-151042","entityId":"entry-16593","position":[-615.4523,7.2274,478.8217],"yaw":-1.58825,"spawnMask":3},{"id":"creature-151043","entityId":"entry-16593","position":[-615.4197,7.4479,490.3777],"yaw":-1.65806,"spawnMask":3},{"id":"creature-151044","entityId":"entry-16593","position":[-641.5306,7.3871,511.1307],"yaw":-0.122173,"spawnMask":3},{"id":"creature-151045","entityId":"entry-16594","position":[-655.406,7.3473,511.8467],"yaw":-3.03687,"spawnMask":3},{"id":"creature-151046","entityId":"entry-17670","position":[-674.8979,5.0865,491.4367],"yaw":-2.9147,"spawnMask":3},{"id":"creature-151047","entityId":"entry-17669","position":[-674.8579,5.0865,495.0587],"yaw":-3.19395,"spawnMask":3},{"id":"creature-151048","entityId":"entry-17669","position":[-674.7509,5.0865,487.4377],"yaw":-3.00197,"spawnMask":3},{"id":"creature-151049","entityId":"entry-17356","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151050","entityId":"entry-17357","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151051","entityId":"entry-17357","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151052","entityId":"entry-17357","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151053","entityId":"entry-17357","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151054","entityId":"entry-17357","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151055","entityId":"entry-17356","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151056","entityId":"entry-17357","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151057","entityId":"entry-17357","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151058","entityId":"entry-17357","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151059","entityId":"entry-17357","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151060","entityId":"entry-17357","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151061","entityId":"entry-17356","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151062","entityId":"entry-17357","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151063","entityId":"entry-17357","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151064","entityId":"entry-17357","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151065","entityId":"entry-17357","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151066","entityId":"entry-17357","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151067","entityId":"entry-17356","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151068","entityId":"entry-17357","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151069","entityId":"entry-17357","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151070","entityId":"entry-17357","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151071","entityId":"entry-17357","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151072","entityId":"entry-17357","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151073","entityId":"entry-17356","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151074","entityId":"entry-17357","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151075","entityId":"entry-17357","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151076","entityId":"entry-17357","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151077","entityId":"entry-17357","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151078","entityId":"entry-17357","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151079","entityId":"entry-17356","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151080","entityId":"entry-17357","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151081","entityId":"entry-17357","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151082","entityId":"entry-17357","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151083","entityId":"entry-17357","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151084","entityId":"entry-17357","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151089","entityId":"entry-16807","position":[-744.5239,10.1108,514.7067],"yaw":-6.01108,"spawnMask":3},{"id":"creature-151090","entityId":"entry-17083","position":[-736.5769,5.114,491.3597],"yaw":-1.0472,"spawnMask":3},{"id":"creature-151091","entityId":"entry-17083","position":[-745.9099,5.1713,494.2287],"yaw":-1.44862,"spawnMask":3},{"id":"creature-151092","entityId":"entry-17083","position":[-756.2869,5.1706,494.3907],"yaw":-1.72788,"spawnMask":3},{"id":"creature-151093","entityId":"entry-17083","position":[-766.3449,5.1222,492.1687],"yaw":-2.18166,"spawnMask":3},{"id":"creature-151094","entityId":"entry-17693","position":[-913.1499,20.2389,539.9997],"yaw":-3.14159,"spawnMask":3},{"id":"creature-151095","entityId":"entry-17462","position":[-907.5249,20.251,542.6557],"yaw":-5.28835,"spawnMask":3},{"id":"creature-151096","entityId":"entry-17462","position":[-904.1229,20.2569,539.1817],"yaw":-0.15708,"spawnMask":3},{"id":"creature-151097","entityId":"entry-17462","position":[-907.1919,20.25,536.8057],"yaw":-0.994838,"spawnMask":3},{"id":"creature-151118","entityId":"entry-17461","position":[-1084.5479,20.2667,540.7487],"yaw":-2.98451,"spawnMask":1},{"id":"creature-151119","entityId":"entry-17427","position":[-1086.3619,20.2688,544.7537],"yaw":-3.36849,"spawnMask":3},{"id":"creature-151120","entityId":"entry-17427","position":[-1086.6659,20.2626,537.1377],"yaw":-3.00197,"spawnMask":3},{"id":"creature-151121","entityId":"entry-17462","position":[-1070.9409,20.2576,547.3487],"yaw":-3.28122,"spawnMask":3},{"id":"creature-151122","entityId":"entry-17462","position":[-1071.7149,20.2584,543.9047],"yaw":-3.15905,"spawnMask":3},{"id":"creature-151123","entityId":"entry-17462","position":[-1071.6009,20.2583,538.3767],"yaw":-3.03687,"spawnMask":3},{"id":"creature-151124","entityId":"entry-17462","position":[-1070.7959,20.2569,534.2167],"yaw":-3.00197,"spawnMask":3},{"id":"creature-151126","entityId":"entry-17669","position":[-1093.1659,20.1562,462.1777],"yaw":-1.0861,"spawnMask":3},{"id":"creature-151127","entityId":"entry-17669","position":[-1093.1659,20.1562,462.1777],"yaw":-1.0861,"spawnMask":3},{"id":"creature-151129","entityId":"entry-17669","position":[-1002.5669,20.2311,283.3671],"yaw":-2.91832,"spawnMask":3},{"id":"creature-151130","entityId":"entry-17669","position":[-1002.5669,20.2311,283.3671],"yaw":-2.91832,"spawnMask":3},{"id":"creature-151131","entityId":"entry-16700","position":[-1100.0169,20.1597,453.1697],"yaw":-3.436,"spawnMask":3},{"id":"creature-151132","entityId":"entry-16594","position":[-1097.8149,20.2457,449.1617],"yaw":-2.00713,"spawnMask":3},{"id":"creature-151133","entityId":"entry-17694","position":[-1095.3399,20.2398,447.2347],"yaw":-1.76278,"spawnMask":3},{"id":"creature-151134","entityId":"entry-17420","position":[-1100.5409,20.2493,448.5017],"yaw":-2.1293,"spawnMask":3},{"id":"creature-151135","entityId":"entry-16699","position":[-1097.6229,20.2431,445.8877],"yaw":-1.91986,"spawnMask":3},{"id":"creature-151136","entityId":"entry-17420","position":[-1094.5579,20.2362,444.0527],"yaw":-1.71042,"spawnMask":3},{"id":"creature-151137","entityId":"entry-16700","position":[-1083.2139,20.1574,387.1637],"yaw":-6.00745,"spawnMask":3},{"id":"creature-151138","entityId":"entry-17694","position":[-1094.6809,20.2387,379.5527],"yaw":-2.18166,"spawnMask":3},{"id":"creature-151139","entityId":"entry-16699","position":[-1091.3509,20.2396,377.1007],"yaw":-1.69297,"spawnMask":3},{"id":"creature-151140","entityId":"entry-17420","position":[-1087.4009,20.2378,377.5337],"yaw":-1.23918,"spawnMask":3},{"id":"creature-151141","entityId":"entry-16594","position":[-1084.6089,20.2337,379.7177],"yaw":-0.820305,"spawnMask":3},{"id":"creature-151142","entityId":"entry-16699","position":[-1082.7189,20.2339,382.6697],"yaw":-0.401426,"spawnMask":3},{"id":"creature-151143","entityId":"entry-17465","position":[-1055.0649,18.5628,458.3157],"yaw":-0.261799,"spawnMask":3},{"id":"creature-151144","entityId":"entry-17464","position":[-1060.1819,18.5144,454.3437],"yaw":-2.47837,"spawnMask":3},{"id":"creature-151145","entityId":"entry-17464","position":[-1054.4119,18.5721,453.3427],"yaw":-0.890118,"spawnMask":3},{"id":"creature-151146","entityId":"entry-17464","position":[-1058.1139,18.563,464.7297],"yaw":-3.59538,"spawnMask":3},{"id":"creature-151147","entityId":"entry-17464","position":[-1053.5959,18.5608,461.5417],"yaw":-5.55015,"spawnMask":3},{"id":"creature-151148","entityId":"entry-17465","position":[-1123.6679,18.5629,458.5707],"yaw":-5.25344,"spawnMask":3},{"id":"creature-151149","entityId":"entry-17464","position":[-1126.9599,18.5556,463.8717],"yaw":-3.83972,"spawnMask":3},{"id":"creature-151150","entityId":"entry-17464","position":[-1130.5379,18.5733,459.5527],"yaw":-3.33358,"spawnMask":3},{"id":"creature-151151","entityId":"entry-17464","position":[-1120.4529,18.6307,453.7817],"yaw":-1.27409,"spawnMask":3},{"id":"creature-151152","entityId":"entry-17464","position":[-1127.3039,18.5758,451.6367],"yaw":-1.81514,"spawnMask":3},{"id":"creature-151153","entityId":"entry-17465","position":[-1119.9429,18.5706,372.8417],"yaw":-5.09636,"spawnMask":3},{"id":"creature-151154","entityId":"entry-17464","position":[-1125.8949,18.5657,366.2407],"yaw":-2.33874,"spawnMask":3},{"id":"creature-151155","entityId":"entry-17464","position":[-1123.9929,18.5594,374.6977],"yaw":-3.40339,"spawnMask":3},{"id":"creature-151156","entityId":"entry-17464","position":[-1121.0549,18.5811,366.9317],"yaw":-1.88496,"spawnMask":3},{"id":"creature-151157","entityId":"entry-17464","position":[-1128.2699,18.565,370.2327],"yaw":-2.84489,"spawnMask":3},{"id":"creature-151158","entityId":"entry-17465","position":[-1059.5109,18.5593,370.3907],"yaw":-2.9147,"spawnMask":3},{"id":"creature-151159","entityId":"entry-17464","position":[-1061.4419,18.6932,365.6687],"yaw":-1.88496,"spawnMask":3},{"id":"creature-151160","entityId":"entry-17464","position":[-1055.4089,18.5665,364.5867],"yaw":-1.01229,"spawnMask":3},{"id":"creature-151161","entityId":"entry-17464","position":[-1052.0519,18.567,369.2507],"yaw":-6.16101,"spawnMask":3},{"id":"creature-151162","entityId":"entry-17464","position":[-1056.4819,18.5569,374.2327],"yaw":-5.28835,"spawnMask":3},{"id":"creature-151163","entityId":"entry-16523","position":[-1085.9429,20.2272,432.4247],"yaw":-3.82227,"spawnMask":3},{"id":"creature-151165","entityId":"entry-16593","position":[-1087.1499,20.2292,413.1097],"yaw":-3.735,"spawnMask":3},{"id":"creature-151167","entityId":"entry-17420","position":[-1095.9719,20.2485,404.2797],"yaw":-5.27089,"spawnMask":3},{"id":"creature-151169","entityId":"entry-16699","position":[-1081.6039,20.2437,358.5177],"yaw":-4.10152,"spawnMask":3},{"id":"creature-151171","entityId":"entry-16523","position":[-1086.4619,20.2188,345.5567],"yaw":-3.40339,"spawnMask":3},{"id":"creature-151173","entityId":"entry-16523","position":[-1096.5969,20.2205,345.9667],"yaw":-4.10152,"spawnMask":3},{"id":"creature-151175","entityId":"entry-17671","position":[-1095.2709,20.2428,310.829],"yaw":-1.81514,"spawnMask":3},{"id":"creature-151176","entityId":"entry-17671","position":[-1086.1779,20.2427,311.4296],"yaw":-1.20428,"spawnMask":3},{"id":"creature-151177","entityId":"entry-17671","position":[-1020.2269,20.2491,278.3946],"yaw":-0.488692,"spawnMask":3},{"id":"creature-151178","entityId":"entry-17671","position":[-1020.4949,20.2427,287.4722],"yaw":-5.65487,"spawnMask":3},{"id":"creature-151179","entityId":"entry-16809","position":[-946.9809,11.0103,282.6748],"yaw":-6.17847,"spawnMask":3},{"id":"creature-151181","entityId":"entry-17669","position":[-859.6829,20.1881,140.8532],"yaw":-3.07991,"spawnMask":3},{"id":"creature-151182","entityId":"entry-17669","position":[-859.6829,20.1881,140.8532],"yaw":-3.07991,"spawnMask":3},{"id":"creature-151183","entityId":"entry-17671","position":[-941.8399,20.2314,217.2724],"yaw":-1.32645,"spawnMask":3},{"id":"creature-151184","entityId":"entry-17671","position":[-950.2329,20.2196,217.3627],"yaw":-1.8326,"spawnMask":3},{"id":"creature-151185","entityId":"entry-17695","position":[-1053.8559,20.1613,280.1898],"yaw":-4.88017,"spawnMask":3},{"id":"creature-151192","entityId":"entry-17671","position":[-854.8189,20.3987,144.8091],"yaw":-6.02139,"spawnMask":3},{"id":"creature-151193","entityId":"entry-17671","position":[-855.4129,20.3843,135.6686],"yaw":-0.436332,"spawnMask":3},{"id":"creature-151195","entityId":"entry-16808","position":[-803.1109,23.2496,141.4518],"yaw":-6.26573,"spawnMask":3},{"id":"creature-151197","entityId":"entry-20709","position":[-839.8579,21.4008,140.9604],"yaw":-5.86431,"spawnMask":3},{"id":"creature-151198","entityId":"entry-20709","position":[-832.0089,22.4104,141.298],"yaw":-2.6529,"spawnMask":3},{"id":"creature-151199","entityId":"entry-20709","position":[-823.4839,23.2479,140.9749],"yaw":-5.25344,"spawnMask":3},{"id":"creature-151200","entityId":"entry-20709","position":[-821.8229,23.2489,126.8278],"yaw":-3.61283,"spawnMask":3},{"id":"creature-151201","entityId":"entry-20709","position":[-814.5679,23.2496,134.5067],"yaw":-5.11381,"spawnMask":3},{"id":"creature-151202","entityId":"entry-20709","position":[-815.3109,23.2496,147.8004],"yaw":-4.55531,"spawnMask":3},{"id":"creature-151203","entityId":"entry-20709","position":[-821.4629,23.2484,155.7044],"yaw":-1.39626,"spawnMask":3},{"id":"creature-151204","entityId":"entry-20709","position":[-814.2359,23.2491,161.3182],"yaw":-3.05433,"spawnMask":3},{"id":"creature-151205","entityId":"entry-20709","position":[-808.1419,23.2496,156.236],"yaw":-5.14872,"spawnMask":3},{"id":"creature-151206","entityId":"entry-20709","position":[-801.4349,23.2496,148.653],"yaw":-2.14675,"spawnMask":3},{"id":"creature-151207","entityId":"entry-20709","position":[-807.7789,23.2496,141.1719],"yaw":-1.81514,"spawnMask":3},{"id":"creature-151208","entityId":"entry-20709","position":[-801.0739,23.2496,133.8171],"yaw":-0.244346,"spawnMask":3},{"id":"creature-151209","entityId":"entry-20709","position":[-807.4979,23.2496,125.3505],"yaw":-5.34071,"spawnMask":3},{"id":"creature-151210","entityId":"entry-20709","position":[-801.2179,23.2496,120.3037],"yaw":-3.4383,"spawnMask":3},{"id":"creature-151211","entityId":"entry-20709","position":[-794.7899,23.2496,125.7795],"yaw":-0.366519,"spawnMask":3},{"id":"creature-151212","entityId":"entry-20709","position":[-795.0189,23.2496,141.2243],"yaw":-6.10865,"spawnMask":3},{"id":"creature-151213","entityId":"entry-20709","position":[-795.3469,23.2496,156.7082],"yaw":-0.942478,"spawnMask":3},{"id":"creature-151214","entityId":"entry-20709","position":[-801.2309,23.2496,161.7589],"yaw":-2.75762,"spawnMask":3},{"id":"creature-151215","entityId":"entry-20709","position":[-788.1429,23.249,160.4042],"yaw":-3.75246,"spawnMask":3},{"id":"creature-151216","entityId":"entry-20709","position":[-782.1169,23.249,154.6296],"yaw":-0.925025,"spawnMask":3},{"id":"creature-151217","entityId":"entry-20709","position":[-787.9609,23.2496,146.8384],"yaw":-5.09636,"spawnMask":3},{"id":"creature-151218","entityId":"entry-20709","position":[-787.2819,23.2496,136.0395],"yaw":-5.21853,"spawnMask":3},{"id":"creature-151219","entityId":"entry-20709","position":[-781.2319,23.2488,127.1008],"yaw":-5.25344,"spawnMask":3},{"id":"creature-151220","entityId":"entry-20709","position":[-787.9529,23.249,120.9087],"yaw":-1.48353,"spawnMask":3},{"id":"creature-151221","entityId":"entry-20709","position":[-815.0569,23.2491,120.3947],"yaw":-5.14872,"spawnMask":3},{"id":"creature-151222","entityId":"entry-20709","position":[-779.4089,23.248,140.8781],"yaw":-0.122173,"spawnMask":3},{"id":"creature-151223","entityId":"entry-20709","position":[-770.4249,22.1448,140.8347],"yaw":-4.01426,"spawnMask":3},{"id":"creature-151224","entityId":"entry-20709","position":[-762.7729,20.9105,140.5089],"yaw":-5.75959,"spawnMask":3},{"id":"creature-151283","entityId":"entry-20923","position":[-1084.5479,20.2667,540.7487],"yaw":-2.98451,"spawnMask":2},{"id":"creature-151284","entityId":"entry-17462","position":[-1072.5219,20.4064,560.1797],"yaw":-4.79004,"spawnMask":3},{"id":"creature-151285","entityId":"entry-17462","position":[-1074.1879,20.4186,565.0297],"yaw":-4.68225,"spawnMask":3},{"id":"creature-151286","entityId":"entry-17462","position":[-1079.2909,20.4069,565.4687],"yaw":-4.49735,"spawnMask":3},{"id":"creature-151287","entityId":"entry-17462","position":[-1086.9759,20.4181,564.9187],"yaw":-4.1892,"spawnMask":3},{"id":"creature-151288","entityId":"entry-17462","position":[-1072.2979,20.2615,524.8057],"yaw":-1.83741,"spawnMask":3},{"id":"creature-151289","entityId":"entry-17462","position":[-1072.3159,20.251,520.5407],"yaw":-1.76546,"spawnMask":3},{"id":"creature-151290","entityId":"entry-17462","position":[-1076.8779,20.2476,519.1137],"yaw":-1.93119,"spawnMask":3},{"id":"creature-151291","entityId":"entry-17462","position":[-1082.5299,20.2342,517.5337],"yaw":-2.11297,"spawnMask":3},{"id":"creature-151300","entityId":"entry-17288","position":[-692.7409,3.6562,477.8767],"yaw":-0.82,"spawnMask":2},{"id":"creature-1971577","entityId":"entry-17289","position":[-720.4259,20.1463,147.383],"yaw":-4.71631,"spawnMask":2},{"id":"creature-1971578","entityId":"entry-17290","position":[-713.4189,20.1338,142.3971],"yaw":-6.22428,"spawnMask":2},{"id":"creature-1971579","entityId":"entry-17292","position":[-719.3829,20.1421,136.4056],"yaw":-1.4348,"spawnMask":2},{"id":"creature-1971580","entityId":"entry-17301","position":[-724.7239,20.1633,141.8694],"yaw":-6.25962,"spawnMask":2}],"roamingPacks":[{"id":"patrol-151085","name":"Creeping Oozeling Patrol","speed":1.15,"pathId":1510850,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-777.7799,-24.1991,387.4517],[-764.7249,-24.1362,389.4187],[-749.8889,-23.8711,391.2987],[-738.1789,-23.8775,394.8377],[-726.8909,-25.3856,402.8687],[-714.1269,-28.3645,414.7737],[-703.0009,-30.6132,428.7047],[-699.0529,-30.2177,441.3237],[-698.9159,-28.6521,455.8597],[-699.1299,-26.9276,469.2867],[-696.7809,-27.0214,480.5877],[-692.3129,-26.972,474.5697],[-692.5159,-28.6369,455.9007],[-693.1559,-30.0453,442.4187],[-695.1439,-30.4813,428.6377],[-700.0119,-30.0707,418.3437],[-704.8229,-29.0894,412.8837],[-713.2169,-27.3019,405.7227],[-720.4299,-25.8126,399.8167],[-731.6649,-24.2959,391.6697],[-742.9399,-24.1193,386.6687],[-757.6009,-24.1333,382.8987],[-771.4989,-24.1631,383.1197]],"members":[{"id":"member","entityId":"entry-17357","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151086","name":"Creeping Oozeling Patrol","speed":1.15,"pathId":1510860,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-702.2629,-27.0424,483.2137],[-688.3299,-27.2389,467.1617],[-700.4559,-30.7607,438.2827],[-697.7609,-29.8097,414.0907],[-720.4099,-26.9036,411.5237],[-726.5259,-24.7659,391.5077],[-759.7599,-24.1187,391.9777],[-773.6399,-24.1782,379.4287],[-759.7599,-24.1187,391.9777],[-726.5259,-24.7659,391.5077],[-720.4099,-26.9036,411.5237],[-697.7609,-29.8097,414.0907],[-700.4559,-30.7607,438.2827],[-688.3299,-27.2389,467.1617]],"members":[{"id":"member","entityId":"entry-17357","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151087","name":"Creeping Oozeling Patrol","speed":1.15,"pathId":1510870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-776.2119,-24.1938,382.3157],[-760.6949,-24.1364,381.4137],[-745.6169,-24.1222,383.4397],[-736.7699,-24.1134,387.8877],[-726.9389,-24.8868,394.2787],[-710.0469,-27.9146,407.3057],[-701.3439,-30.0985,420.0007],[-693.0269,-30.4563,438.0297],[-692.4779,-28.2658,458.7827],[-695.2229,-26.9275,470.1967],[-700.3149,-27.5051,464.7857],[-699.1379,-29.4651,448.1857],[-697.8109,-30.1808,440.7627],[-702.1719,-30.2861,423.9377],[-712.9259,-28.0052,411.8417],[-725.3769,-25.3806,400.3277],[-732.6659,-24.394,394.9977],[-745.1289,-24.121,388.3497],[-761.7979,-24.1286,388.3657]],"members":[{"id":"member","entityId":"entry-17357","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151088","name":"Creeping Oozeling Patrol","speed":1.15,"pathId":1510880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-775.7029,-24.1786,391.3287],[-756.2269,-24.1326,379.9287],[-740.6809,-23.6698,396.7577],[-725.2809,-24.8858,391.5727],[-721.2789,-26.8621,412.6337],[-695.3439,-30.2136,419.9477],[-701.9929,-29.211,450.9297],[-690.0099,-27.2459,467.0107],[-701.9929,-29.211,450.9297],[-695.3439,-30.2136,419.9477],[-721.2789,-26.8621,412.6337],[-725.2809,-24.8858,391.5727],[-740.6809,-23.6698,396.7577],[-756.2269,-24.1326,379.9287]],"members":[{"id":"member","entityId":"entry-17357","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151125","name":"Shattered Hand Houndmaster Patrol","speed":1.15,"pathId":1511250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1093.1659,20.1562,462.1777],[-1089.0039,20.1601,474.9147],[-1078.5869,20.1589,465.3307],[-1082.3749,20.1556,454.2837],[-1091.6429,20.0932,433.6937],[-1090.8149,20.1635,422.0087],[-1090.3379,20.1687,401.0347],[-1078.4559,20.1581,388.5377],[-1073.2989,20.1558,377.4907],[-1080.5689,20.1524,366.3217],[-1094.1529,20.1602,366.4077],[-1104.0889,20.1557,374.0727],[-1096.8649,20.1583,395.2677],[-1091.3049,20.169,400.3527],[-1091.5259,20.1627,421.4627],[-1092.8529,20.0894,433.4517],[-1085.0189,20.1604,446.7087]],"members":[{"id":"member","entityId":"entry-17670","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151128","name":"Shattered Hand Houndmaster Patrol","speed":1.15,"pathId":1511280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1002.5669,20.2311,283.3671],[-1008.6199,20.1516,278.9221],[-1021.9649,20.153,282.2664],[-1031.7379,20.1646,282.5834],[-1056.5219,20.1609,282.5882],[-1071.7059,20.1671,282.5288],[-1084.0249,20.1634,284.9162],[-1090.3469,20.1311,299.1988],[-1090.6249,20.1594,309.6425],[-1094.0429,20.1435,318.5986],[-1094.1889,20.1529,329.0917],[-1090.4509,20.1612,334.3797],[-1086.1759,20.1557,330.8147],[-1090.7469,20.1613,311.2389],[-1089.6699,20.1312,299.4394],[-1083.6579,20.1632,285.4927],[-1071.9179,20.1665,283.5725],[-1057.0309,20.1609,283.2511],[-1031.2319,20.1645,283.7982],[-1022.6809,20.1528,283.8801],[-1008.8989,20.1499,287.0093]],"members":[{"id":"member","entityId":"entry-17670","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151180","name":"Shattered Hand Houndmaster Patrol","speed":1.15,"pathId":1511800,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-859.6829,20.1881,140.8532],[-863.0749,20.1392,135.8342],[-878.7019,20.1634,137.9172],[-915.0209,20.1619,138.8237],[-932.6019,20.1445,141.5821],[-945.2969,20.1463,153.166],[-947.6629,20.1622,174.1045],[-950.4649,20.1336,193.282],[-946.8059,20.1373,205.0017],[-941.0619,20.1381,204.5273],[-941.3409,20.1385,189.8139],[-945.3019,20.1623,174.0413],[-943.3689,20.1466,154.3824],[-931.3499,20.1448,142.5643],[-915.0009,20.1612,140.2737],[-882.0459,20.1631,142.3091],[-869.8829,20.1629,145.4481]],"members":[{"id":"member","entityId":"entry-17670","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151186","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511860,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-953.9069,20.134,192.7],[-937.6159,20.1363,200.4467],[-953.1869,20.1364,206.1872],[-937.6159,20.1363,200.4467]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151187","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-954.9419,20.1658,172.1643],[-938.9499,20.1507,181.2142],[-953.5289,20.1403,186.4555],[-938.9499,20.1507,181.2142]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151188","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-953.2529,20.1449,150.5575],[-937.2389,20.1476,156.8808],[-952.9639,20.1555,164.5951],[-937.2389,20.1476,156.8808]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151189","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511890,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-940.4029,20.1381,137.4684],[-928.5029,20.1393,149.6588],[-926.7239,20.1614,134.6871],[-928.5029,20.1393,149.6588]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151190","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511900,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-897.0129,20.1637,133.047],[-904.6869,20.1655,148.2025],[-918.0589,20.1613,136.4035],[-904.6869,20.1655,148.2025]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151191","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511910,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-862.9169,20.1391,134.1776],[-871.3309,20.1627,148.4641],[-886.3149,20.1637,133.9296],[-871.3309,20.1627,148.4641]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-151089","name":"Grand Warlock Nethekurse","position":[-744.5239,10.1108,514.7067]},{"id":"creature-151179","name":"Warbringer O'mrogg","position":[-946.9809,11.0103,282.6748]},{"id":"creature-151195","name":"Warchief Kargath Bladefist","position":[-803.1109,23.2496,141.4518]}],"objectiveOrder":[{"id":"creature-151089","name":"Grand Warlock Nethekurse","position":[-744.5239,10.1108,514.7067]},{"id":"creature-151179","name":"Warbringer O'mrogg","position":[-946.9809,11.0103,282.6748]},{"id":"creature-151195","name":"Warchief Kargath Bladefist","position":[-803.1109,23.2496,141.4518]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4700,"id":182539,"map":540,"orientation":3.14159,"phaseMask":1,"position_x":141.516,"position_y":266.366,"position_z":-11.5682,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4712,"id":182540,"map":540,"orientation":0,"phaseMask":1,"position_x":214.488,"position_y":266.167,"position_z":-11.5181,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4756,"id":181671,"map":540,"orientation":3.15906,"phaseMask":1,"position_x":330.751,"position_y":74.2059,"position_z":1.07924,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":-0.00873356,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4779,"id":181671,"map":540,"orientation":0.0174525,"phaseMask":1,"position_x":330.795,"position_y":41.0261,"position_z":1.0704,"rotation0":0,"rotation1":0,"rotation2":0.00872614,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4796,"id":181439,"map":540,"orientation":5.84685,"phaseMask":1,"position_x":260.319,"position_y":-79.3166,"position_z":-6.41893,"rotation0":0,"rotation1":0,"rotation2":0.216441,"rotation3":-0.976296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4806,"id":181438,"map":540,"orientation":4.45059,"phaseMask":1,"position_x":257.006,"position_y":-102.191,"position_z":-5.66889,"rotation0":0,"rotation1":0,"rotation2":0.793353,"rotation3":-0.608762,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4842,"id":181435,"map":540,"orientation":4.88692,"phaseMask":1,"position_x":242.159,"position_y":-75.0628,"position_z":-9.3041,"rotation0":0,"rotation1":0,"rotation2":0.642788,"rotation3":-0.766044,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4853,"id":181436,"map":540,"orientation":0.698129,"phaseMask":1,"position_x":232.833,"position_y":-98.3243,"position_z":-11.7617,"rotation0":0,"rotation1":0,"rotation2":0.342019,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4857,"id":181441,"map":540,"orientation":2.00712,"phaseMask":1,"position_x":220.309,"position_y":-54.908,"position_z":-6.4563,"rotation0":0,"rotation1":0,"rotation2":0.843389,"rotation3":0.537303,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4932,"id":181437,"map":540,"orientation":3.75246,"phaseMask":1,"position_x":222.686,"position_y":-78.6362,"position_z":-11.1251,"rotation0":0,"rotation1":0,"rotation2":0.953717,"rotation3":-0.300707,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4940,"id":181440,"map":540,"orientation":2.00712,"phaseMask":1,"position_x":215.421,"position_y":-112.643,"position_z":-6.4563,"rotation0":0,"rotation1":0,"rotation2":0.843389,"rotation3":0.537303,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4944,"id":181442,"map":540,"orientation":2.00712,"phaseMask":1,"position_x":197.259,"position_y":-84.1902,"position_z":-7.34571,"rotation0":0,"rotation1":0,"rotation2":0.843389,"rotation3":0.537303,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":99793,"id":181679,"map":540,"orientation":2.44346,"phaseMask":1,"position_x":167.585,"position_y":293.96,"position_z":-8.16966,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.34202,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":99794,"id":181679,"map":540,"orientation":0.506145,"phaseMask":1,"position_x":189.495,"position_y":294.043,"position_z":-8.17125,"rotation0":0,"rotation1":0,"rotation2":0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150008,"id":184177,"map":540,"orientation":1.48438,"phaseMask":1,"position_x":-41.968,"position_y":-26.2,"position_z":-13.5379,"rotation0":0,"rotation1":0,"rotation2":0.675904,"rotation3":0.73699,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150009,"id":184178,"map":540,"orientation":1.48438,"phaseMask":1,"position_x":-41.968,"position_y":-26.2,"position_z":-13.5379,"rotation0":0,"rotation1":0,"rotation2":0.675904,"rotation3":0.73699,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/HellfireMilitary":"6c51b172d05d6bde9e9c8ec3d5d31f6527dfb9fedf7781f4402a353c204705da","patch/World/maps/HellfireMilitary":"d2657f2bc029d2cea7705c6ba9cc800205b85c61161fec3d7c91a1c832c6dcf5"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/shattered-halls/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["32/32 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"blood-furnace","title":"Hellfire Citadel: The Blood Furnace","mapId":542,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[58,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Hellfire Citadel: The Blood Furnace","theme":"Instanced dungeon","summary":"Fight through Hellfire Citadel: The Blood Furnace, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Hellfire Citadel: The Blood Furnace...","unchartedAreaName":"Uncharted Hellfire Citadel: The Blood Furnace","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":780.5079},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/542-hellfiredemon/visual.glb","checksum":"b0a96bfe9fbccd433209de3391729d51c15e75ddbaeebf351ce3768120f7a209","size":5418012,"triangleCount":139088}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/542-hellfiredemon/collision.glb","checksum":"552ec34a2ddc7f2621bc0496a2fa27c105283c36b5f1626cac609c70adbb8a2d","size":1399160,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/542-hellfiredemon/navigation.glb","checksum":"800a067caba512c2e36177b682b548d45d7efecb4944dbafd202e1e651de78ee","size":382552,"triangleCount":28809}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-1034.7467,-102.9463,-188.3626],"max":[49.292,86.1043,296.1984]},"entrance":{"name":"Hellfire Citadel: The Blood Furnace Entrance","footPosition":[-482.708,9.6208,63.5257],"forward":[0.9225408690211957,0,-0.3858993974932029],"yaw":1.9669788642368982},"areas":[{"id":"entrance","name":"Hellfire Citadel: The Blood Furnace Entrance","center":[-482.708,9.6208,63.5257],"radius":35},{"id":"area-the-maker","name":"The Maker's Encounter","center":[-813.8747,64.0372,186.7054],"radius":42},{"id":"area-broggok","name":"Broggok's Encounter","center":[-942.0407,64.0516,47.0602],"radius":42},{"id":"area-keli-dan-the-breaker","name":"Keli'dan the Breaker's Encounter","center":[-813.2077,29.8447,-37.1134],"radius":42}],"entities":{"entry-17491":{"id":"entry-17491","kind":"mob","name":"Laughing Skull Rogue","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17151-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17256":{"id":"entry-17256","kind":"mob","name":"Hellfire Channeler","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30510","name":"Shadow Bolt Volley","spellId":30510,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5644,"damageMultiplier":0.62,"radius":8},{"id":"spell-30530","name":"Fear","spellId":30530,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5644,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-9865-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-17370":{"id":"entry-17370","kind":"mob","name":"Laughing Skull Enforcer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17149-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17380":{"id":"entry-17380","kind":"boss","name":"Broggok","title":"Dungeon Boss","hasLoot":true,"combat":{"level":63,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30917","name":"Poison Bolt","spellId":30917,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5452,"damageMultiplier":1.35},{"id":"spell-30916","name":"Poison Cloud","spellId":30916,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5452,"damageMultiplier":1.35},{"id":"spell-30913","name":"Slime Spray","spellId":30913,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5452,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-19372-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.05,"labelHeight":17.0335,"markerRadius":4.1136}}},"entry-17414":{"id":"entry-17414","kind":"mob","name":"Shadowmoon Technician","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30846","name":"Throw Proximity Bomb","spellId":30846,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6996,"damageMultiplier":1.12},{"id":"spell-40062","name":"Throw Dynamite","spellId":40062,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6996,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17147-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17381":{"id":"entry-17381","kind":"boss","name":"The Maker","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6568,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-18369-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0803,"labelHeight":6.8142,"markerRadius":3.579}}},"entry-17398":{"id":"entry-17398","kind":"mob","name":"Nascent Fel Orc","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-22427","name":"Concussion Blow","spellId":22427,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4085,"damageMultiplier":1.12},{"id":"spell-31900","name":"Stomp","spellId":31900,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4085,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-16332-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0101,"labelHeight":3.9201,"markerRadius":1.0118}}},"entry-18894":{"id":"entry-18894","kind":"mob","name":"Felguard Brute","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7270,"damageMultiplier":1.12},{"id":"spell-18072","name":"Uppercut","spellId":18072,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7270,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-9129-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0115,"labelHeight":6.5047,"markerRadius":0.9622}}},"entry-17397":{"id":"entry-17397","kind":"mob","name":"Shadowmoon Adept","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11978","name":"Kick","spellId":11978,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6366,"damageMultiplier":1.12},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6366,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17148-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17477":{"id":"entry-17477","kind":"mob","name":"Hellfire Imp","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15242","name":"Fireball","spellId":15242,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4727,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-16888-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7054,"markerRadius":0.65}}},"entry-17371":{"id":"entry-17371","kind":"mob","name":"Shadowmoon Warlock","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6663,"damageMultiplier":1.12},{"id":"spell-32197","name":"Corruption","spellId":32197,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6663,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17137-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17626":{"id":"entry-17626","kind":"mob","name":"Laughing Skull Legionnaire","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17150-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17395":{"id":"entry-17395","kind":"mob","name":"Shadowmoon Summoner","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15242","name":"Fireball","spellId":15242,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6208,"damageMultiplier":1.12},{"id":"spell-18399","name":"Flamestrike","spellId":18399,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6208,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17145-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17624":{"id":"entry-17624","kind":"mob","name":"Laughing Skull Warden","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17152-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17400":{"id":"entry-17400","kind":"mob","name":"Felguard Annihilator","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5191,"damageMultiplier":1.12},{"id":"spell-18072","name":"Uppercut","spellId":18072,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5191,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-18287-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0137,"labelHeight":7.8057,"markerRadius":1.1546}}},"entry-17653":{"id":"entry-17653","kind":"mob","name":"Shadowmoon Channeler","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4879,"damageMultiplier":1.12},{"id":"spell-30937","name":"Mark of Shadow","spellId":30937,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4879,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17137-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17377":{"id":"entry-17377","kind":"boss","name":"Keli'dan the Breaker","title":"Dungeon Boss","hasLoot":true,"combat":{"level":63,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-40070","name":"Shadow Bolt Volley","spellId":40070,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6837,"damageMultiplier":0.82,"radius":11},{"id":"spell-30938","name":"Corruption","spellId":30938,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6837,"damageMultiplier":1.35},{"id":"spell-30940","name":"Burning Nova","spellId":30940,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6837,"damageMultiplier":0.82,"radius":11},{"id":"spell-33775","name":"Fire Nova","spellId":33775,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6837,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17153-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}}},"staticSpawns":[{"id":"creature-138089","entityId":"entry-17491","position":[-654.8187,64.0198,-45.9854],"yaw":0,"spawnMask":3},{"id":"creature-138106","entityId":"entry-17256","position":[-794.9077,-82.9463,-92.8796],"yaw":-1.36136,"spawnMask":3},{"id":"creature-138107","entityId":"entry-17256","position":[-760.8377,-82.9463,-38.2753],"yaw":-0.017453,"spawnMask":3},{"id":"creature-138108","entityId":"entry-17256","position":[-794.4887,-82.9463,17.0392],"yaw":-4.95674,"spawnMask":3},{"id":"creature-138109","entityId":"entry-17256","position":[-855.8547,-82.9463,-6.6764],"yaw":-3.71755,"spawnMask":3},{"id":"creature-138110","entityId":"entry-17256","position":[-856.1657,-82.9463,-69.8676],"yaw":-2.54818,"spawnMask":3},{"id":"creature-138111","entityId":"entry-17370","position":[-535.9279,14.2361,-26.7348],"yaw":-2.98451,"spawnMask":3},{"id":"creature-138112","entityId":"entry-17370","position":[-536.0256,14.2362,-44.4584],"yaw":-2.86234,"spawnMask":3},{"id":"creature-138113","entityId":"entry-17370","position":[-482.6351,13.1637,-7.8722],"yaw":-1.41372,"spawnMask":3},{"id":"creature-138114","entityId":"entry-17370","position":[-494.5423,13.1637,-5.733],"yaw":-1.62316,"spawnMask":3},{"id":"creature-138115","entityId":"entry-17380","position":[-942.0407,64.0516,47.0602],"yaw":-1.43117,"spawnMask":3},{"id":"creature-138116","entityId":"entry-17370","position":[-681.0387,64.1198,-29.7727],"yaw":-3.01942,"spawnMask":3},{"id":"creature-138117","entityId":"entry-17370","position":[-681.7617,64.1223,-42.5194],"yaw":-3.05433,"spawnMask":3},{"id":"creature-138122","entityId":"entry-17414","position":[-789.1297,64.0381,110.0633],"yaw":-3.14962,"spawnMask":3},{"id":"creature-138123","entityId":"entry-17381","position":[-813.8747,64.0372,186.7054],"yaw":-4.72121,"spawnMask":3},{"id":"creature-138124","entityId":"entry-17398","position":[-801.1827,66.1032,244.5314],"yaw":-5.01966,"spawnMask":3},{"id":"creature-138125","entityId":"entry-17398","position":[-831.7827,66.1043,251.1984],"yaw":-4.90708,"spawnMask":3},{"id":"creature-138126","entityId":"entry-17398","position":[-923.8627,66.1032,250.8734],"yaw":-4.639,"spawnMask":3},{"id":"creature-138127","entityId":"entry-17398","position":[-985.0977,64.0739,135.5304],"yaw":-3.19309,"spawnMask":3},{"id":"creature-138128","entityId":"entry-17398","position":[-985.6667,64.0741,131.9589],"yaw":-3.08941,"spawnMask":3},{"id":"creature-138129","entityId":"entry-17398","position":[-989.4287,64.081,131.7625],"yaw":-3.08941,"spawnMask":3},{"id":"creature-138130","entityId":"entry-17398","position":[-986.7807,64.0764,133.6672],"yaw":-3.08941,"spawnMask":3},{"id":"creature-138131","entityId":"entry-17398","position":[-899.9897,64.0721,130.7132],"yaw":-0.154642,"spawnMask":3},{"id":"creature-138132","entityId":"entry-17398","position":[-899.4327,64.0731,134.6217],"yaw":-0.141552,"spawnMask":3},{"id":"creature-138133","entityId":"entry-17398","position":[-895.9307,64.0796,132.1877],"yaw":-0.141552,"spawnMask":3},{"id":"creature-138134","entityId":"entry-17398","position":[-898.7857,64.0778,161.5154],"yaw":-6.1865,"spawnMask":3},{"id":"creature-138135","entityId":"entry-17398","position":[-899.1667,64.0749,165.4444],"yaw":-6.1865,"spawnMask":3},{"id":"creature-138136","entityId":"entry-17398","position":[-898.4397,64.0774,163.3354],"yaw":-0.00803471,"spawnMask":3},{"id":"creature-138137","entityId":"entry-17398","position":[-896.4037,64.079,161.9374],"yaw":-0.0185067,"spawnMask":3},{"id":"creature-138138","entityId":"entry-17398","position":[-893.8747,64.0823,164.0614],"yaw":-0.0185067,"spawnMask":3},{"id":"creature-138139","entityId":"entry-17398","position":[-982.3817,64.0656,165.1744],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138140","entityId":"entry-17398","position":[-982.4007,64.0659,162.7664],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138141","entityId":"entry-17398","position":[-986.4787,64.075,161.1724],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138142","entityId":"entry-17398","position":[-989.7467,64.0796,163.2104],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138143","entityId":"entry-17398","position":[-989.7287,64.0796,165.4784],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138144","entityId":"entry-17398","position":[-986.2037,64.0752,166.9744],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138145","entityId":"entry-18894","position":[-942.4977,64.0291,-41.1105],"yaw":-0.09548,"spawnMask":3},{"id":"creature-138146","entityId":"entry-18894","position":[-942.2707,64.0333,-30.2186],"yaw":-0.09548,"spawnMask":3},{"id":"creature-138148","entityId":"entry-17491","position":[-593.7877,40.1928,-47.7277],"yaw":-0.930522,"spawnMask":3},{"id":"creature-138149","entityId":"entry-17491","position":[-664.1247,64.0227,-23.3264],"yaw":-3.98337,"spawnMask":3},{"id":"creature-138150","entityId":"entry-17397","position":[-473.8029,13.0859,-32.4694],"yaw":-5.36252,"spawnMask":3},{"id":"creature-138151","entityId":"entry-17397","position":[-477.6642,13.0876,-39.7037],"yaw":-1.99081,"spawnMask":3},{"id":"creature-138152","entityId":"entry-17477","position":[-475.8225,13.0876,-36.3139],"yaw":-2.09342,"spawnMask":3},{"id":"creature-138153","entityId":"entry-17397","position":[-493.7004,13.0912,-40.4143],"yaw":-1.28394,"spawnMask":3},{"id":"creature-138154","entityId":"entry-17397","position":[-497.0903,13.0923,-32.4526],"yaw":-4.24882,"spawnMask":3},{"id":"creature-138155","entityId":"entry-17477","position":[-495.6134,13.0923,-36.1691],"yaw":-1.02944,"spawnMask":3},{"id":"creature-138156","entityId":"entry-17397","position":[-516.3767,13.6347,-31.6241],"yaw":-4.36738,"spawnMask":3},{"id":"creature-138157","entityId":"entry-17397","position":[-514.3826,13.7129,-41.6891],"yaw":-1.48496,"spawnMask":3},{"id":"creature-138158","entityId":"entry-17477","position":[-514.9619,13.3675,-36.5637],"yaw":-4.63284,"spawnMask":3},{"id":"creature-138159","entityId":"entry-17491","position":[-720.7267,64.0321,-57.5166],"yaw":-1.88867,"spawnMask":3},{"id":"creature-138160","entityId":"entry-17397","position":[-718.2167,64.046,-42.6822],"yaw":-3.65189,"spawnMask":3},{"id":"creature-138161","entityId":"entry-17397","position":[-711.2917,64.0405,-47.1143],"yaw":-0.647748,"spawnMask":3},{"id":"creature-138162","entityId":"entry-17477","position":[-714.6447,64.0405,-45.0058],"yaw":-0.561355,"spawnMask":3},{"id":"creature-138163","entityId":"entry-17397","position":[-727.3787,64.0465,-15.601],"yaw":-5.05383,"spawnMask":3},{"id":"creature-138164","entityId":"entry-17397","position":[-729.5877,64.0368,-23.5395],"yaw":-1.81799,"spawnMask":3},{"id":"creature-138165","entityId":"entry-17477","position":[-728.5317,64.0416,-19.4889],"yaw":-1.82585,"spawnMask":3},{"id":"creature-138166","entityId":"entry-17397","position":[-711.2017,64.0428,-19.2002],"yaw":-5.19786,"spawnMask":3},{"id":"creature-138167","entityId":"entry-17397","position":[-714.6837,64.0408,-25.8],"yaw":-1.96987,"spawnMask":3},{"id":"creature-138168","entityId":"entry-17477","position":[-713.0757,64.0394,-22.4114],"yaw":-2.01394,"spawnMask":3},{"id":"creature-138170","entityId":"entry-17626","position":[-737.1727,61.3771,24.1077],"yaw":-4.23202,"spawnMask":3},{"id":"creature-138171","entityId":"entry-17370","position":[-745.2157,61.3743,18.4885],"yaw":-4.07258,"spawnMask":3},{"id":"creature-138172","entityId":"entry-17626","position":[-766.3787,62.5325,50.3317],"yaw":-3.8723,"spawnMask":3},{"id":"creature-138173","entityId":"entry-17370","position":[-773.4547,63.7533,41.7658],"yaw":-3.50552,"spawnMask":3},{"id":"creature-138175","entityId":"entry-17395","position":[-797.9657,64.0437,56.8157],"yaw":-0.656179,"spawnMask":3},{"id":"creature-138176","entityId":"entry-17397","position":[-800.6537,64.0382,62.6295],"yaw":-4.38997,"spawnMask":3},{"id":"creature-138177","entityId":"entry-17397","position":[-803.8887,64.0409,57.6102],"yaw":-2.67896,"spawnMask":3},{"id":"creature-138178","entityId":"entry-17395","position":[-824.9467,64.0383,49.9892],"yaw":-1.01391,"spawnMask":3},{"id":"creature-138179","entityId":"entry-17395","position":[-825.5447,64.0385,56.996],"yaw":-5.05086,"spawnMask":3},{"id":"creature-138180","entityId":"entry-17397","position":[-830.9237,64.0447,53.8934],"yaw":-3.2955,"spawnMask":3},{"id":"creature-138181","entityId":"entry-17491","position":[-801.2687,64.0386,41.2134],"yaw":-2.30511,"spawnMask":3},{"id":"creature-138182","entityId":"entry-17370","position":[-809.9207,64.0438,77.5346],"yaw":-4.92205,"spawnMask":3},{"id":"creature-138183","entityId":"entry-17370","position":[-817.7807,64.0429,77.7833],"yaw":-4.2576,"spawnMask":3},{"id":"creature-138184","entityId":"entry-17371","position":[-817.9727,64.0357,118.6493],"yaw":-1.77024,"spawnMask":3},{"id":"creature-138185","entityId":"entry-17414","position":[-814.7797,64.0357,125.8736],"yaw":-5.19851,"spawnMask":3},{"id":"creature-138186","entityId":"entry-17626","position":[-829.7797,64.0373,106.7349],"yaw":0,"spawnMask":3},{"id":"creature-138188","entityId":"entry-17414","position":[-790.9537,64.0425,152.2454],"yaw":-5.61477,"spawnMask":3},{"id":"creature-138189","entityId":"entry-17371","position":[-795.6237,64.0431,149.4084],"yaw":-2.61455,"spawnMask":3},{"id":"creature-138190","entityId":"entry-17414","position":[-833.2447,64.0418,145.3384],"yaw":-2.21792,"spawnMask":3},{"id":"creature-138191","entityId":"entry-17371","position":[-830.1237,64.0418,151.5404],"yaw":-5.16709,"spawnMask":3},{"id":"creature-138192","entityId":"entry-17626","position":[-842.8587,64.045,157.0644],"yaw":-4.06125,"spawnMask":3},{"id":"creature-138194","entityId":"entry-17414","position":[-803.8547,64.4726,237.8984],"yaw":-1.88412,"spawnMask":3},{"id":"creature-138197","entityId":"entry-17414","position":[-832.4107,65.5607,247.4084],"yaw":-1.6879,"spawnMask":3},{"id":"creature-138198","entityId":"entry-17414","position":[-923.0157,65.8606,247.4114],"yaw":-1.34468,"spawnMask":3},{"id":"creature-138199","entityId":"entry-17414","position":[-833.6167,64.0259,242.7644],"yaw":-1.74602,"spawnMask":3},{"id":"creature-138200","entityId":"entry-17491","position":[-967.2067,64.037,228.9064],"yaw":-3.42991,"spawnMask":3},{"id":"creature-138201","entityId":"entry-17371","position":[-858.6847,64.0213,243.1324],"yaw":-5.36434,"spawnMask":3},{"id":"creature-138202","entityId":"entry-17398","position":[-866.4457,64.0196,241.1224],"yaw":-3.36158,"spawnMask":3},{"id":"creature-138203","entityId":"entry-17395","position":[-860.3407,64.0202,233.6664],"yaw":-1.15697,"spawnMask":3},{"id":"creature-138204","entityId":"entry-17371","position":[-899.5187,64.0231,244.3824],"yaw":-3.55951,"spawnMask":3},{"id":"creature-138205","entityId":"entry-17398","position":[-898.0237,64.0232,234.2774],"yaw":-2.28952,"spawnMask":3},{"id":"creature-138206","entityId":"entry-17395","position":[-890.1517,64.0191,239.5694],"yaw":-0.0770466,"spawnMask":3},{"id":"creature-138209","entityId":"entry-17414","position":[-935.1327,64.0271,239.6534],"yaw":-1.01795,"spawnMask":3},{"id":"creature-138210","entityId":"entry-17414","position":[-813.8767,64.0405,237.2824],"yaw":-1.09492,"spawnMask":3},{"id":"creature-138211","entityId":"entry-17624","position":[-943.1337,64.0367,167.7924],"yaw":-3.16198,"spawnMask":3},{"id":"creature-138212","entityId":"entry-17626","position":[-945.3187,64.0362,165.8784],"yaw":-3.07559,"spawnMask":3},{"id":"creature-138214","entityId":"entry-17395","position":[-943.8257,64.0367,148.1722],"yaw":-4.44777,"spawnMask":3},{"id":"creature-138215","entityId":"entry-17414","position":[-939.0217,64.0369,143.4701],"yaw":-0.545102,"spawnMask":3},{"id":"creature-138216","entityId":"entry-17414","position":[-944.7727,64.0369,141.5909],"yaw":-1.89206,"spawnMask":3},{"id":"creature-138217","entityId":"entry-17414","position":[-969.1587,64.0333,152.2244],"yaw":-5.27398,"spawnMask":3},{"id":"creature-138218","entityId":"entry-17414","position":[-966.6027,64.0435,147.1855],"yaw":-6.09707,"spawnMask":3},{"id":"creature-138219","entityId":"entry-17414","position":[-970.1847,64.0447,140.7842],"yaw":-1.14828,"spawnMask":3},{"id":"creature-138220","entityId":"entry-17414","position":[-956.1137,64.0344,114.8879],"yaw":-5.036,"spawnMask":3},{"id":"creature-138221","entityId":"entry-17414","position":[-962.9957,64.0315,114.7912],"yaw":-3.98357,"spawnMask":3},{"id":"creature-138222","entityId":"entry-17371","position":[-959.3647,64.0314,108.3186],"yaw":-1.58025,"spawnMask":3},{"id":"creature-138223","entityId":"entry-17371","position":[-923.9367,64.031,113.6538],"yaw":-5.1656,"spawnMask":3},{"id":"creature-138224","entityId":"entry-17371","position":[-928.9417,64.0327,105.8544],"yaw":-1.84965,"spawnMask":3},{"id":"creature-138225","entityId":"entry-17414","position":[-932.1267,64.0338,112.5471],"yaw":-3.54218,"spawnMask":3},{"id":"creature-138226","entityId":"entry-17491","position":[-920.3047,63.9739,30.6593],"yaw":-0.450845,"spawnMask":3},{"id":"creature-138227","entityId":"entry-17371","position":[-974.6377,63.9752,66.1742],"yaw":-4.54905,"spawnMask":3},{"id":"creature-138228","entityId":"entry-17371","position":[-981.1647,63.9642,56.4786],"yaw":-2.87616,"spawnMask":3},{"id":"creature-138229","entityId":"entry-17477","position":[-976.2227,63.9652,54.4031],"yaw":-1.96038,"spawnMask":3},{"id":"creature-138230","entityId":"entry-17477","position":[-976.8727,63.9707,60.5858],"yaw":-1.13336,"spawnMask":3},{"id":"creature-138231","entityId":"entry-17477","position":[-972.4647,63.9707,57.5235],"yaw":-1.43024,"spawnMask":3},{"id":"creature-138232","entityId":"entry-17477","position":[-970.9067,63.9722,62.8626],"yaw":-6.25258,"spawnMask":3},{"id":"creature-138233","entityId":"entry-18894","position":[-949.6097,63.9738,28.9768],"yaw":-5.18053,"spawnMask":3},{"id":"creature-138236","entityId":"entry-18894","position":[-962.1217,63.967,-17.4395],"yaw":0,"spawnMask":3},{"id":"creature-138238","entityId":"entry-17371","position":[-911.3797,64.0383,-35.0163],"yaw":-0.059993,"spawnMask":3},{"id":"creature-138239","entityId":"entry-17477","position":[-920.5017,64.0462,-42.071],"yaw":-1.93317,"spawnMask":3},{"id":"creature-138240","entityId":"entry-17477","position":[-919.3607,64.0447,-29.8773],"yaw":-1.5821,"spawnMask":3},{"id":"creature-138241","entityId":"entry-17477","position":[-914.6157,64.0384,-21.0117],"yaw":-4.99622,"spawnMask":3},{"id":"creature-138242","entityId":"entry-17477","position":[-899.6487,64.0386,-35.0816],"yaw":-5.1156,"spawnMask":3},{"id":"creature-138243","entityId":"entry-17477","position":[-906.7857,64.0423,-39.6351],"yaw":-0.206074,"spawnMask":3},{"id":"creature-138244","entityId":"entry-17477","position":[-909.9597,64.0404,-47.506],"yaw":-1.21688,"spawnMask":3},{"id":"creature-138245","entityId":"entry-17491","position":[-890.8977,64.04,-13.6177],"yaw":-5.54913,"spawnMask":3},{"id":"creature-138246","entityId":"entry-17477","position":[-906.6657,64.0449,-28.0944],"yaw":-5.67087,"spawnMask":3},{"id":"creature-138247","entityId":"entry-17400","position":[-842.0037,28.8879,-114.5616],"yaw":-6.16881,"spawnMask":3},{"id":"creature-138248","entityId":"entry-17400","position":[-841.8987,28.872,-126.6816],"yaw":-0.0701911,"spawnMask":3},{"id":"creature-138249","entityId":"entry-17400","position":[-820.3357,28.919,-143.3626],"yaw":-1.51768,"spawnMask":3},{"id":"creature-138250","entityId":"entry-17400","position":[-811.9827,28.9139,-142.6456],"yaw":-1.49412,"spawnMask":3},{"id":"creature-138251","entityId":"entry-17371","position":[-799.1007,28.9135,-126.0356],"yaw":-6.21829,"spawnMask":3},{"id":"creature-138252","entityId":"entry-17400","position":[-798.8207,28.9146,-130.4926],"yaw":-6.20258,"spawnMask":3},{"id":"creature-138253","entityId":"entry-17400","position":[-800.0967,28.9131,-121.7286],"yaw":-6.20651,"spawnMask":3},{"id":"creature-138254","entityId":"entry-17371","position":[-816.2887,28.915,-140.2216],"yaw":-1.50511,"spawnMask":3},{"id":"creature-138519","entityId":"entry-17653","position":[-802.9787,29.819,-59.9876],"yaw":-1.25664,"spawnMask":3},{"id":"creature-138520","entityId":"entry-17653","position":[-832.5527,29.7815,-25.5665],"yaw":-3.59538,"spawnMask":3},{"id":"creature-138521","entityId":"entry-17653","position":[-830.2887,29.8529,-54.7416],"yaw":-2.35619,"spawnMask":3},{"id":"creature-138522","entityId":"entry-17653","position":[-788.6927,29.97,-37.8571],"yaw":-0.15708,"spawnMask":3},{"id":"creature-138523","entityId":"entry-17653","position":[-807.4547,29.7856,-14.7227],"yaw":-4.88692,"spawnMask":3},{"id":"creature-138524","entityId":"entry-17377","position":[-813.2077,29.8447,-37.1134],"yaw":-3.59538,"spawnMask":3}],"roamingPacks":[{"id":"patrol-138121","name":"Shadowmoon Technician Patrol","speed":1.15,"pathId":856820,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-834.6607,64.0421,134.6303],[-834.6207,64.0395,159.2404],[-839.5417,64.0395,160.2634],[-839.5417,64.0395,160.2634],[-833.9887,64.042,156.0964],[-836.6747,64.0426,134.7111],[-839.7267,64.0433,134.698],[-839.7267,64.0433,134.698],[-839.7267,64.0433,134.698]],"members":[{"id":"member","entityId":"entry-17414","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138169","name":"Shadowmoon Warlock Patrol","speed":1.15,"pathId":1381690,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-733.9337,64.0443,-17.7006],[-732.9497,64.0372,-36.3015],[-706.4697,64.0078,-35.6876],[-733.0817,64.0383,-36.4216]],"members":[{"id":"member","entityId":"entry-17371","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138174","name":"Shadowmoon Warlock Patrol","speed":1.15,"pathId":1381740,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-815.1217,64.0377,44.3035],[-813.9847,64.0377,72.9459]],"members":[{"id":"member","entityId":"entry-17371","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138187","name":"Laughing Skull Warden Patrol","speed":1.15,"pathId":1381870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-813.9597,64.0352,103.7349],[-827.6637,64.036,108.8214],[-829.7737,64.0378,113.2107],[-831.5867,64.0404,123.7601],[-832.3157,64.0412,134.7215],[-829.5167,64.0412,143.1723],[-825.9077,64.0412,147.95],[-820.8687,64.0398,151.0514],[-815.5047,64.037,151.8804],[-808.9847,64.0374,150.0294],[-804.2927,64.038,147.4529],[-800.6637,64.0393,142.7426],[-799.2237,64.0396,138.4236],[-798.4597,64.0396,132.1006],[-799.2177,64.0396,121.4953],[-801.7467,64.0368,111.485],[-804.0327,64.0354,107.6021],[-809.4247,64.0354,104.2855]],"members":[{"id":"member","entityId":"entry-17624","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138193","name":"Laughing Skull Rogue Patrol","speed":1.15,"pathId":1381930,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-786.9707,64.0292,231.0614],[-793.4147,64.0383,214.8794]],"members":[{"id":"member","entityId":"entry-17491","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138195","name":"Laughing Skull Enforcer Patrol","speed":1.15,"pathId":1381950,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-859.1477,64.0199,240.1414],[-815.7257,64.0369,234.1624]],"members":[{"id":"member","entityId":"entry-17370","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138196","name":"Laughing Skull Enforcer Patrol","speed":1.15,"pathId":1381960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-859.1477,64.0199,236.1414],[-815.7257,64.0369,230.1624]],"members":[{"id":"member","entityId":"entry-17370","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138207","name":"Laughing Skull Enforcer Patrol","speed":1.15,"pathId":1382070,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-902.7307,64.02,240.6034],[-953.3617,64.0408,228.5634]],"members":[{"id":"member","entityId":"entry-17370","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138208","name":"Laughing Skull Enforcer Patrol","speed":1.15,"pathId":1382080,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-902.0187,64.02,236.5574],[-952.8757,64.0418,225.5524]],"members":[{"id":"member","entityId":"entry-17370","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138213","name":"Laughing Skull Legionnaire Patrol","speed":1.15,"pathId":1382130,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-942.9657,64.0417,168.2984],[-934.7577,64.0417,166.8514],[-927.5387,64.0417,162.6834],[-922.1817,64.0417,156.2984],[-919.3307,64.0417,148.4662],[-919.3307,64.0417,140.1311],[-922.1817,64.0417,132.2987],[-927.5387,64.0417,125.9136],[-934.7577,64.0417,121.7461],[-942.9657,64.0417,120.2987],[-951.1747,64.0417,121.7461],[-958.3927,64.0417,125.9136],[-963.7507,64.0417,132.2987],[-966.6017,64.0417,140.1311],[-966.6017,64.0417,148.4662],[-963.7507,64.0417,156.2984],[-958.3927,64.0417,162.6834],[-951.1747,64.0417,166.8514]],"members":[{"id":"member","entityId":"entry-17626","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138234","name":"Shadowmoon Warlock Patrol","speed":1.15,"pathId":1382340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-962.5347,63.9636,-9.6459],[-961.5347,63.9636,-5.7829],[-952.6047,63.9749,28.9768],[-953.5947,63.9749,25.1138]],"members":[{"id":"member","entityId":"entry-17371","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138235","name":"Shadowmoon Warlock Patrol","speed":1.15,"pathId":1382350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-969.1347,63.9817,-18.2572],[-973.6467,63.9817,-20.8619],[-976.9947,63.9817,-24.8526],[-978.7767,63.9817,-29.7479],[-978.7767,63.9817,-34.9573],[-976.9947,63.9817,-39.8526],[-973.6467,63.9817,-43.8433],[-969.1347,63.9817,-46.448],[-964.0047,63.9817,-47.3526],[-958.8747,63.9817,-46.448],[-954.3627,63.9817,-43.8433],[-951.0147,63.9817,-39.8526],[-949.2327,63.9817,-34.9573],[-949.2327,63.9817,-29.7479],[-951.0147,63.9817,-24.8526],[-954.3627,63.9817,-20.8619],[-958.8747,63.9817,-18.2572],[-964.0047,63.9817,-17.3526]],"members":[{"id":"member","entityId":"entry-17371","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138237","name":"Laughing Skull Rogue Patrol","speed":1.15,"pathId":1382370,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-982.7087,63.972,20.821],[-975.6367,63.9702,14.6243],[-965.9007,63.9712,9.6985],[-955.0437,63.9862,6.0876],[-948.5507,63.9532,-3.2536],[-951.0107,63.9734,-21.8439],[-950.9867,64.0034,-30.6799],[-952.4697,63.9713,-39.3548],[-960.4317,63.9761,-43.7853],[-969.3967,63.9726,-43.8879],[-960.4317,63.9761,-43.7853],[-952.4697,63.9713,-39.3548],[-950.9867,64.0034,-30.6799],[-951.0107,63.9734,-21.8439],[-948.5507,63.9532,-3.2536],[-955.0437,63.9862,6.0876],[-965.9007,63.9712,9.6985],[-975.6367,63.9702,14.6243]],"members":[{"id":"member","entityId":"entry-17491","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-138123","name":"The Maker","position":[-813.8747,64.0372,186.7054]},{"id":"creature-138115","name":"Broggok","position":[-942.0407,64.0516,47.0602]},{"id":"creature-138524","name":"Keli'dan the Breaker","position":[-813.2077,29.8447,-37.1134]}],"objectiveOrder":[{"id":"creature-138123","name":"The Maker","position":[-813.8747,64.0372,186.7054]},{"id":"creature-138115","name":"Broggok","position":[-942.0407,64.0516,47.0602]},{"id":"creature-138524","name":"Keli'dan the Breaker","position":[-813.2077,29.8447,-37.1134]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22220,"id":181713,"map":542,"orientation":-2.49582,"phaseMask":1,"position_x":275.211,"position_y":-87.2234,"position_z":-137.451,"rotation0":0,"rotation1":0,"rotation2":-0.948324,"rotation3":0.317305,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22221,"id":181713,"map":542,"orientation":0.017453,"phaseMask":1,"position_x":367.855,"position_y":-56.3836,"position_z":-137.359,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22222,"id":181713,"map":542,"orientation":2.44346,"phaseMask":1,"position_x":308.466,"position_y":-140.398,"position_z":-137.302,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.342021,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22223,"id":181713,"map":542,"orientation":-1.20428,"phaseMask":1,"position_x":308.112,"position_y":-33.208,"position_z":-137.451,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22224,"id":181713,"map":542,"orientation":1.22173,"phaseMask":1,"position_x":368.347,"position_y":-118.024,"position_z":-137.451,"rotation0":0,"rotation1":0,"rotation2":0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22252,"id":181766,"map":542,"orientation":3.08943,"phaseMask":1,"position_x":-2.96045,"position_y":-115.525,"position_z":-29.8004,"rotation0":-0.001138,"rotation1":-0.043605,"rotation2":0.998708,"rotation3":0.026054,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22289,"id":181811,"map":542,"orientation":3.14159,"phaseMask":1,"position_x":327.221,"position_y":34.7391,"position_z":25.2633,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":181,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22290,"id":181812,"map":542,"orientation":3.14159,"phaseMask":1,"position_x":327.221,"position_y":149.84,"position_z":23.8318,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22291,"id":181813,"map":542,"orientation":3.14159,"phaseMask":1,"position_x":365.545,"position_y":69.3179,"position_z":11.1708,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22292,"id":181814,"map":542,"orientation":3.14159,"phaseMask":1,"position_x":366.847,"position_y":100.435,"position_z":11.1708,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22293,"id":181815,"map":542,"orientation":-0.022321,"phaseMask":1,"position_x":287.979,"position_y":99.5641,"position_z":11.1708,"rotation0":0.003783,"rotation1":-0.000667,"rotation2":-0.011158,"rotation3":0.99993,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22294,"id":181816,"map":542,"orientation":-0.022321,"phaseMask":1,"position_x":288.815,"position_y":68.8318,"position_z":11.5749,"rotation0":0.003783,"rotation1":-0.000667,"rotation2":-0.011158,"rotation3":0.99993,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22295,"id":181817,"map":542,"orientation":3.11927,"phaseMask":1,"position_x":495.532,"position_y":84.4274,"position_z":11.1708,"rotation0":0.000667,"rotation1":0.003783,"rotation2":0.99993,"rotation3":0.011158,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22296,"id":181818,"map":542,"orientation":0,"phaseMask":1,"position_x":416.665,"position_y":83.5567,"position_z":11.1708,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22297,"id":181819,"map":542,"orientation":0,"phaseMask":1,"position_x":456.291,"position_y":34.1513,"position_z":23.8317,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22298,"id":181820,"map":542,"orientation":3.11927,"phaseMask":1,"position_x":494.697,"position_y":115.16,"position_z":11.5749,"rotation0":0.000667,"rotation1":0.003783,"rotation2":0.99993,"rotation3":0.011158,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22299,"id":181821,"map":542,"orientation":0,"phaseMask":1,"position_x":417.967,"position_y":114.674,"position_z":11.1708,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22300,"id":181822,"map":542,"orientation":0,"phaseMask":1,"position_x":455.753,"position_y":149.726,"position_z":24.3749,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":181,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22301,"id":181823,"map":542,"orientation":3.14159,"phaseMask":1,"position_x":260.408,"position_y":-125.812,"position_z":-10.3249,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":53,"areaId":0,"guid":22377,"id":181921,"map":542,"orientation":-2.53073,"phaseMask":1,"position_x":371.722,"position_y":-47.6372,"position_z":-25.8508,"rotation0":0,"rotation1":0,"rotation2":-0.953717,"rotation3":0.300705,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":53,"areaId":0,"guid":22378,"id":181922,"map":542,"orientation":2.70526,"phaseMask":1,"position_x":260.167,"position_y":-46.2649,"position_z":-25.8508,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":53,"areaId":0,"guid":22379,"id":181923,"map":542,"orientation":-0.872664,"phaseMask":1,"position_x":386.239,"position_y":-138.305,"position_z":-25.7111,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22380,"id":181924,"map":542,"orientation":-1.65806,"phaseMask":1,"position_x":292.173,"position_y":-143.163,"position_z":-25.4868,"rotation0":0,"rotation1":0,"rotation2":-0.737276,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22381,"id":181925,"map":542,"orientation":-2.53073,"phaseMask":1,"position_x":266.452,"position_y":-104.919,"position_z":-25.3138,"rotation0":0,"rotation1":0,"rotation2":-0.953717,"rotation3":0.300705,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22382,"id":181926,"map":542,"orientation":-2.53073,"phaseMask":1,"position_x":324.071,"position_y":-23.2872,"position_z":-25.5655,"rotation0":0,"rotation1":0,"rotation2":-0.953717,"rotation3":0.300705,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22383,"id":181927,"map":542,"orientation":2.53073,"phaseMask":1,"position_x":386.689,"position_y":-101.665,"position_z":-25.2719,"rotation0":0,"rotation1":0,"rotation2":0.953717,"rotation3":0.300705,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150012,"id":184175,"map":542,"orientation":4.3789,"phaseMask":1,"position_x":-1.196,"position_y":24.25,"position_z":-44.7943,"rotation0":0,"rotation1":0,"rotation2":0.81466,"rotation3":-0.579939,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150013,"id":184176,"map":542,"orientation":4.3789,"phaseMask":1,"position_x":-1.196,"position_y":24.25,"position_z":-44.7943,"rotation0":0,"rotation1":0,"rotation2":0.81466,"rotation3":-0.579939,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150441,"id":181982,"map":542,"orientation":4.70899,"phaseMask":1,"position_x":456.555,"position_y":54.3522,"position_z":9.61573,"rotation0":0,"rotation1":0,"rotation2":0.708307,"rotation3":-0.705904,"spawnMask":3,"spawntimesecs":600,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/HellfireDemon":"c0188b1dd4af5646be054284fd9fd7604bd35172e5beede3f1e75c584474404e","patch/World/maps/HellfireDemon":"aad89805d175327d07ce6358da7bbf32051b4d860a16ed80a919b8cd7fbb32ea"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/blood-furnace/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["17/17 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"hellfire-ramparts","title":"Hellfire Citadel: Ramparts","mapId":543,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[58,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Hellfire Citadel: Ramparts","theme":"Instanced dungeon","summary":"Fight through Hellfire Citadel: Ramparts, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Hellfire Citadel: Ramparts...","unchartedAreaName":"Uncharted Hellfire Citadel: Ramparts","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":478.2291},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/543-hellfirerampart/visual.glb","checksum":"72b36dedf424971bbd3db1ed1c3ce8306e5d79e68304a1eb6aeb611dc3592fc3","size":1861480,"triangleCount":29586}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/543-hellfirerampart/collision.glb","checksum":"2e0a776a82e3d43e9dfbc29329bbeb1f864aa2deaa5c88977a180ac2e6abbf67","size":349400,"triangleCount":20564}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/543-hellfirerampart/navigation.glb","checksum":"f3c70d131401f432288971bb1abbd7458d3dd22ab419f8308e1e58126f914c27","size":144020,"triangleCount":10840}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-204.6063,109.3777,-450.8058],"max":[150.4266,185.509,213.4013]},"entrance":{"name":"Hellfire Citadel: Ramparts Entrance","footPosition":[73.2937,140.4777,-198.0358],"forward":[-0.24566890559041665,0,0.9693537996139526],"yaw":-0.2482096853553132},"areas":[{"id":"entrance","name":"Hellfire Citadel: Ramparts Entrance","center":[73.2937,140.4777,-198.0358],"radius":35},{"id":"area-watchkeeper-gargolmar","name":"Watchkeeper Gargolmar's Encounter","center":[-94.7563,140.7283,-308.6958],"radius":42},{"id":"area-omor-the-unscarred","name":"Omor the Unscarred's Encounter","center":[-159.6063,161.6601,-120.7458],"radius":42}],"entities":{"entry-17259":{"id":"entry-17259","kind":"mob","name":"Bonechewer Hungerer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-16244","name":"Demoralizing Shout","spellId":16244,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6162,"damageMultiplier":1.12},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6162,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17052-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17264":{"id":"entry-17264","kind":"mob","name":"Bonechewer Ravener","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-30621","name":"Kidney Shot","spellId":30621,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5615,"damageMultiplier":1.12},{"id":"spell-30798","name":"Empowered Stormstrike","spellId":30798,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5615,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17049-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17269":{"id":"entry-17269","kind":"mob","name":"Bleeding Hollow Darkcaster","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36808","name":"Rain of Fire","spellId":36808,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5120,"damageMultiplier":0.62,"radius":8},{"id":"spell-15241","name":"Scorch","spellId":15241,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5120,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17044-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17270":{"id":"entry-17270","kind":"mob","name":"Bleeding Hollow Archer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-30614","name":"Aimed Shot","spellId":30614,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6273,"damageMultiplier":1.12},{"id":"spell-18651","name":"Multi-Shot","spellId":18651,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6273,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17050-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17271":{"id":"entry-17271","kind":"mob","name":"Bonechewer Destroyer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7137,"damageMultiplier":1.12},{"id":"spell-16856","name":"Mortal Strike","spellId":16856,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7137,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17043-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-17280":{"id":"entry-17280","kind":"mob","name":"Shattered Hand Warhound","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.434272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-30639","name":"Carnivorous Bite","spellId":30639,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5697,"damageMultiplier":1.12},{"id":"spell-30636","name":"Furious Howl","spellId":30636,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5697,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/acebaa605ea524a1df51d8ae425890737c096a76fffc27f17d3790073d1a3b7f.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.776,"markerRadius":1.7182}}},"entry-17281":{"id":"entry-17281","kind":"mob","name":"Bonechewer Ripper","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-18501","name":"Enrage","spellId":18501,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":7465,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-18501","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17732-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.6834,"markerRadius":0.6745}}},"entry-17306":{"id":"entry-17306","kind":"boss","name":"Watchkeeper Gargolmar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.1745920000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-32154","name":"Overpower","spellId":32154,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7030,"damageMultiplier":1.35},{"id":"spell-30641","name":"Mortal Wound","spellId":30641,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7030,"damageMultiplier":1.35},{"id":"spell-34645","name":"Surge","spellId":34645,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7030,"damageMultiplier":1.35},{"id":"spell-22857","name":"Retaliation","spellId":22857,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-18236-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.4989,"markerRadius":1.4563}}},"entry-17308":{"id":"entry-17308","kind":"boss","name":"Omor the Unscarred","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7211,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-18237-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":13.2513,"markerRadius":3.6015}}},"entry-17309":{"id":"entry-17309","kind":"mob","name":"Hellfire Watcher","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5757,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-14032","name":"Shadow Word: Pain","spellId":14032,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5757,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17051-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17455":{"id":"entry-17455","kind":"mob","name":"Bonechewer Beastmaster","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-30635","name":"Battle Shout","spellId":30635,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6217,"damageMultiplier":1.12},{"id":"spell-10966","name":"Uppercut","spellId":10966,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6217,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-16583-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17478":{"id":"entry-17478","kind":"mob","name":"Bleeding Hollow Scryer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-30615","name":"Fear","spellId":30615,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6244,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}},{"id":"spell-30659","name":"Fel Infusion","spellId":30659,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6244,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17048-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}}},"staticSpawns":[{"id":"creature-202607","entityId":"entry-17259","position":[-75.8663,140.8568,-398.2358],"yaw":-2.16421,"spawnMask":3},{"id":"creature-202608","entityId":"entry-17259","position":[-74.2463,140.8692,-305.2558],"yaw":-0.680678,"spawnMask":3},{"id":"creature-202609","entityId":"entry-17259","position":[-65.0563,140.8701,-294.1058],"yaw":-0.488692,"spawnMask":3},{"id":"creature-202610","entityId":"entry-17259","position":[-64.1163,140.804,-375.5958],"yaw":-1.84457,"spawnMask":3},{"id":"creature-202611","entityId":"entry-17259","position":[-48.5163,140.8695,-361.5858],"yaw":-3.80482,"spawnMask":3},{"id":"creature-202612","entityId":"entry-17259","position":[-29.7563,140.8764,-242.4558],"yaw":-0.855211,"spawnMask":3},{"id":"creature-202613","entityId":"entry-17259","position":[-23.9263,140.8127,-258.8058],"yaw":-5.18818,"spawnMask":3},{"id":"creature-202617","entityId":"entry-17259","position":[3.5237,140.8489,-160.9458],"yaw":-6.14356,"spawnMask":3},{"id":"creature-202618","entityId":"entry-17259","position":[4.7837,141.173,-169.2458],"yaw":-6.10865,"spawnMask":3},{"id":"creature-202619","entityId":"entry-17259","position":[11.2537,140.9118,-345.3558],"yaw":-3.50811,"spawnMask":3},{"id":"creature-202620","entityId":"entry-17259","position":[13.7837,164.0347,-254.0558],"yaw":-1.69297,"spawnMask":3},{"id":"creature-202621","entityId":"entry-17259","position":[44.7937,141.3271,-179.8958],"yaw":-3.49066,"spawnMask":3},{"id":"creature-202622","entityId":"entry-17259","position":[47.6237,140.9471,-172.0758],"yaw":-3.63028,"spawnMask":3},{"id":"creature-202626","entityId":"entry-17264","position":[-109.0663,140.7272,-396.6458],"yaw":-2.1293,"spawnMask":3},{"id":"creature-202632","entityId":"entry-17269","position":[-119.5063,164.0097,-150.2858],"yaw":-3.54302,"spawnMask":3},{"id":"creature-202633","entityId":"entry-17269","position":[-113.9863,163.7913,-139.0758],"yaw":-3.68264,"spawnMask":3},{"id":"creature-202634","entityId":"entry-17269","position":[-102.8763,140.7724,-350.8958],"yaw":-3.52557,"spawnMask":3},{"id":"creature-202635","entityId":"entry-17269","position":[-102.0863,140.7687,-357.0858],"yaw":-1.41372,"spawnMask":3},{"id":"creature-202636","entityId":"entry-17269","position":[-84.2163,140.8297,-405.8058],"yaw":-0.994838,"spawnMask":3},{"id":"creature-202637","entityId":"entry-17269","position":[-40.8763,140.8036,-215.7758],"yaw":-2.40855,"spawnMask":3},{"id":"creature-202638","entityId":"entry-17269","position":[-13.1563,141.2587,-188.9058],"yaw":-0.488692,"spawnMask":3},{"id":"creature-202639","entityId":"entry-17269","position":[-8.7563,141.4342,-184.4458],"yaw":-1.0472,"spawnMask":3},{"id":"creature-202640","entityId":"entry-17269","position":[1.7937,140.9046,-352.9758],"yaw":-0.0698132,"spawnMask":3},{"id":"creature-202641","entityId":"entry-17269","position":[6.0637,140.9091,-352.5058],"yaw":-1.27409,"spawnMask":3},{"id":"creature-202642","entityId":"entry-17269","position":[6.1637,164.0446,-201.9058],"yaw":-4.95674,"spawnMask":3},{"id":"creature-202643","entityId":"entry-17269","position":[16.6937,164.0325,-254.3858],"yaw":-1.18682,"spawnMask":3},{"id":"creature-202644","entityId":"entry-17269","position":[16.7037,164.0578,-200.1758],"yaw":-3.9968,"spawnMask":3},{"id":"creature-202645","entityId":"entry-17270","position":[-133.6663,140.7091,-327.3458],"yaw":-0.0349066,"spawnMask":3},{"id":"creature-202646","entityId":"entry-17270","position":[-133.3963,140.714,-341.6758],"yaw":-3.08923,"spawnMask":3},{"id":"creature-202647","entityId":"entry-17270","position":[-43.5863,140.7855,-226.1858],"yaw":-4.10152,"spawnMask":3},{"id":"creature-202648","entityId":"entry-17270","position":[-39.7263,139.7303,-189.7958],"yaw":-2.02458,"spawnMask":3},{"id":"creature-202649","entityId":"entry-17270","position":[-35.9663,140.2809,-196.0358],"yaw":-3.52557,"spawnMask":3},{"id":"creature-202650","entityId":"entry-17270","position":[-11.8963,163.9847,-216.8858],"yaw":-3.29867,"spawnMask":3},{"id":"creature-202651","entityId":"entry-17270","position":[-11.0263,163.9821,-211.3458],"yaw":-3.1765,"spawnMask":3},{"id":"creature-202652","entityId":"entry-17270","position":[32.3037,164.0603,-216.4858],"yaw":-6.23083,"spawnMask":3},{"id":"creature-202653","entityId":"entry-17270","position":[35.6937,164.0599,-224.5558],"yaw":-5.34071,"spawnMask":3},{"id":"creature-202654","entityId":"entry-17271","position":[-132.1563,140.7128,-335.3658],"yaw":-2.82743,"spawnMask":3},{"id":"creature-202655","entityId":"entry-17271","position":[-126.3363,140.7192,-374.7058],"yaw":-2.98451,"spawnMask":3},{"id":"creature-202656","entityId":"entry-17271","position":[-122.5463,140.7198,-380.8258],"yaw":-2.42601,"spawnMask":3},{"id":"creature-202657","entityId":"entry-17271","position":[-97.8263,140.7774,-353.9958],"yaw":-6.02139,"spawnMask":3},{"id":"creature-202658","entityId":"entry-17271","position":[-82.0963,140.8284,-398.6258],"yaw":-0.715585,"spawnMask":3},{"id":"creature-202659","entityId":"entry-17271","position":[-39.2163,140.8193,-222.6958],"yaw":-3.35103,"spawnMask":3},{"id":"creature-202660","entityId":"entry-17271","position":[-36.9763,139.9949,-192.7358],"yaw":-2.51327,"spawnMask":3},{"id":"creature-202661","entityId":"entry-17271","position":[-22.6263,164.3352,-241.3258],"yaw":-5.49779,"spawnMask":3},{"id":"creature-202662","entityId":"entry-17271","position":[-16.9763,164.6954,-250.1558],"yaw":-5.68977,"spawnMask":3},{"id":"creature-202663","entityId":"entry-17271","position":[-12.3363,141.3108,-185.2058],"yaw":-0.785398,"spawnMask":3},{"id":"creature-202664","entityId":"entry-17271","position":[-11.1863,140.8686,-300.9058],"yaw":-0.802851,"spawnMask":3},{"id":"creature-202665","entityId":"entry-17271","position":[-5.1663,140.8781,-302.0658],"yaw":-1.67552,"spawnMask":3},{"id":"creature-202666","entityId":"entry-17271","position":[-3.7363,163.9489,-210.9758],"yaw":-1.4698,"spawnMask":3},{"id":"creature-202667","entityId":"entry-17271","position":[-1.4263,140.9093,-359.5758],"yaw":-6.07375,"spawnMask":3},{"id":"creature-202668","entityId":"entry-17271","position":[15.7937,164.0592,-250.5858],"yaw":-4.7473,"spawnMask":3},{"id":"creature-202669","entityId":"entry-17271","position":[32.6637,163.978,-223.1358],"yaw":-4.24507,"spawnMask":3},{"id":"creature-202670","entityId":"entry-17280","position":[-127.5963,140.7344,-352.9058],"yaw":-3.4383,"spawnMask":3},{"id":"creature-202671","entityId":"entry-17280","position":[-126.8563,140.7328,-346.9858],"yaw":-2.96706,"spawnMask":3},{"id":"creature-202672","entityId":"entry-17280","position":[-108.1463,140.7329,-390.7058],"yaw":-2.1293,"spawnMask":3},{"id":"creature-202673","entityId":"entry-17280","position":[-103.9863,140.7357,-395.0258],"yaw":-3.00197,"spawnMask":3},{"id":"creature-202674","entityId":"entry-17280","position":[-87.1563,140.8095,-401.6558],"yaw":-2.02458,"spawnMask":3},{"id":"creature-202675","entityId":"entry-17280","position":[-79.2563,140.8478,-402.6258],"yaw":-1.36136,"spawnMask":3},{"id":"creature-202676","entityId":"entry-17280","position":[-58.4663,140.8771,-370.8658],"yaw":-4.08407,"spawnMask":3},{"id":"creature-202677","entityId":"entry-17280","position":[-53.2063,140.8731,-366.9258],"yaw":-3.7001,"spawnMask":3},{"id":"creature-202678","entityId":"entry-17280","position":[-27.0963,140.8752,-248.3658],"yaw":-0.244346,"spawnMask":3},{"id":"creature-202679","entityId":"entry-17280","position":[-25.6163,140.8685,-253.6358],"yaw":-5.75959,"spawnMask":3},{"id":"creature-202680","entityId":"entry-17280","position":[-11.0663,140.8348,-168.6758],"yaw":-2.34274,"spawnMask":3},{"id":"creature-202681","entityId":"entry-17280","position":[-8.4463,140.7975,-345.1658],"yaw":-1.94929,"spawnMask":3},{"id":"creature-202682","entityId":"entry-17280","position":[-6.0563,141.0652,-173.5558],"yaw":-2.34275,"spawnMask":3},{"id":"creature-202683","entityId":"entry-17280","position":[-3.3063,163.9074,-211.8258],"yaw":-2.24578,"spawnMask":3},{"id":"creature-202684","entityId":"entry-17280","position":[-2.2463,140.8093,-348.4058],"yaw":-2.11044,"spawnMask":3},{"id":"creature-202685","entityId":"entry-17280","position":[1.4037,163.9573,-215.2158],"yaw":-2.35763,"spawnMask":3},{"id":"creature-202686","entityId":"entry-17280","position":[10.1137,164.0573,-202.0658],"yaw":-4.79966,"spawnMask":3},{"id":"creature-202687","entityId":"entry-17280","position":[12.5037,164.0576,-249.7158],"yaw":-2.25147,"spawnMask":3},{"id":"creature-202688","entityId":"entry-17280","position":[14.5737,164.0593,-202.9958],"yaw":-0.506145,"spawnMask":3},{"id":"creature-202689","entityId":"entry-17280","position":[19.9137,164.0938,-251.7058],"yaw":-1.37881,"spawnMask":3},{"id":"creature-202690","entityId":"entry-17281","position":[-41.6963,163.4087,-274.1758],"yaw":-5.044,"spawnMask":3},{"id":"creature-202691","entityId":"entry-17281","position":[-16.1663,140.8931,-276.8958],"yaw":-0.628319,"spawnMask":3},{"id":"creature-202692","entityId":"entry-17306","position":[-94.7563,140.7283,-308.6958],"yaw":-2.40991,"spawnMask":3},{"id":"creature-202694","entityId":"entry-17308","position":[-159.6063,161.6601,-120.7458],"yaw":-3.75246,"spawnMask":3},{"id":"creature-202695","entityId":"entry-17309","position":[-101.8363,140.7052,-308.3258],"yaw":-2.40996,"spawnMask":3},{"id":"creature-202696","entityId":"entry-17309","position":[-95.1563,140.704,-315.7758],"yaw":-2.4099,"spawnMask":3},{"id":"creature-202698","entityId":"entry-17478","position":[-45.6563,163.4368,-273.4958],"yaw":-3.22886,"spawnMask":3},{"id":"creature-202699","entityId":"entry-17478","position":[-42.6063,163.3458,-277.9858],"yaw":-1.72788,"spawnMask":3},{"id":"creature-202700","entityId":"entry-17478","position":[-40.2163,163.6031,-269.5958],"yaw":-4.99164,"spawnMask":3},{"id":"creature-202701","entityId":"entry-17478","position":[-37.7763,163.3547,-276.1458],"yaw":-0.261799,"spawnMask":3},{"id":"creature-202702","entityId":"entry-17478","position":[-19.4263,140.9599,-274.2558],"yaw":-3.735,"spawnMask":3},{"id":"creature-202703","entityId":"entry-17478","position":[-18.5963,140.8958,-279.7558],"yaw":-2.40855,"spawnMask":3},{"id":"creature-202704","entityId":"entry-17478","position":[-13.9363,140.8962,-273.7458],"yaw":-5.34071,"spawnMask":3}],"roamingPacks":[{"id":"patrol-202614","name":"Bonechewer Hungerer Patrol","speed":1.15,"pathId":2026140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-23.6363,165.4439,-193.7158],[-41.0463,164.815,-182.5458],[-51.4363,164.7222,-178.2458],[-62.4063,165.1547,-173.3958],[-51.4363,164.7222,-178.2458],[-41.0463,164.815,-182.5458],[-23.6363,165.4439,-193.7158],[-13.5663,163.8465,-199.7958]],"members":[{"id":"member","entityId":"entry-17259","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202615","name":"Bonechewer Hungerer Patrol","speed":1.15,"pathId":2026150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-22.6063,165.4991,-190.1658],[-40.8863,164.6248,-178.8758],[-51.4063,164.6793,-174.7558],[-60.9563,165.1231,-170.2158],[-51.4063,164.6793,-174.7558],[-40.8863,164.6248,-178.8758],[-22.6063,165.4991,-190.1658],[-12.0463,163.837,-196.6458]],"members":[{"id":"member","entityId":"entry-17259","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202616","name":"Bonechewer Hungerer Patrol","speed":1.15,"pathId":2026160,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-7.3663,163.9001,-199.6458],[-4.7363,163.9248,-203.9758],[0.1037,163.9439,-202.3558],[1.1437,163.9414,-199.5858],[0.3237,163.9347,-198.6058],[0.5137,163.9443,-201.7658],[-3.0963,163.9322,-203.7658],[-6.5763,163.9097,-201.7258],[-7.4963,163.8933,-197.4258],[-4.7763,163.8957,-193.4458],[-4.4063,163.8966,-193.1458],[-6.8163,163.8928,-196.0158]],"members":[{"id":"member","entityId":"entry-17259","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202623","name":"Bonechewer Hungerer Patrol","speed":1.15,"pathId":2026230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[55.3137,165.1134,-170.4058],[69.2437,161.8251,-155.0258],[55.3137,165.1134,-170.4058],[49.4237,165.509,-178.4758]],"members":[{"id":"member","entityId":"entry-17259","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202624","name":"Bonechewer Hungerer Patrol","speed":1.15,"pathId":2026240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[55.1637,164.0008,-162.1758],[64.8337,161.0302,-148.7158],[55.1637,164.0008,-162.1758],[45.6237,165.3491,-174.8958]],"members":[{"id":"member","entityId":"entry-17259","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202625","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-117.0163,140.6472,-375.7958],[-106.5063,140.658,-382.5058],[-98.1763,140.6732,-378.1158],[-98.4263,140.6803,-367.9758],[-96.5963,140.6851,-365.1658],[-91.1763,140.6936,-364.2858],[-97.3663,140.6829,-366.5458],[-101.7563,140.6715,-373.4258],[-108.4263,140.6593,-376.8958],[-114.9063,140.6506,-375.2658],[-120.3263,140.6499,-366.7858],[-124.1863,140.6468,-363.8258]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202627","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026270,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-45.1663,140.8095,-383.2658],[-41.0763,140.8152,-386.8958],[-40.3263,140.3152,-389.3958],[-41.5663,140.8209,-391.9958],[-40.5063,140.8189,-389.8858],[-55.8963,140.8163,-392.4158],[-60.6463,140.3163,-395.9158],[-73.1263,140.2888,-387.8858],[-93.7363,140.7181,-394.3358],[-100.3263,140.7039,-400.4258],[-99.5463,140.7066,-400.0758],[-96.6163,140.6689,-391.9158],[-74.6563,140.5016,-382.2658],[-58.9963,140.8085,-386.6758]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202628","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-19.0463,139.9156,-182.2558],[-23.7963,140.1656,-186.7558],[-35.0163,140.7674,-222.4558],[-41.5163,140.5174,-241.7058],[-35.0163,140.7674,-222.4558],[-23.7963,140.1656,-186.7558],[-19.0463,139.9156,-182.2558],[-8.5663,140.95,-171.1158]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202629","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026290,"formationSource":"database-solo","spawnMask":3,"waypoints":[[11.9737,140.8277,-304.0758],[-4.0963,140.8231,-277.3058],[11.9737,140.8277,-304.0758],[5.5737,140.8214,-326.1558],[-7.2063,140.8058,-350.3058],[-25.8363,140.802,-365.2958],[-44.5363,140.8036,-378.0458],[-25.8363,140.802,-365.2958],[-7.2063,140.8058,-350.3058],[5.5737,140.8214,-326.1558]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202630","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[3.2037,163.9768,-208.8158],[19.8537,163.9752,-204.9958],[27.4737,163.9765,-215.5458],[32.9537,163.9786,-230.8358],[28.8137,163.9879,-243.4458],[9.9837,164.0019,-243.2158],[-3.3063,163.9917,-233.9558],[-4.2663,163.9398,-217.2458]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202631","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[42.0337,140.6117,-174.4758],[51.4337,141.0385,-179.7358],[42.0337,140.6117,-174.4758],[33.8837,139.1454,-173.4258],[24.5237,137.7782,-171.5458],[17.0237,138.9333,-169.7958],[4.1937,140.9759,-166.3758],[-1.8963,140.9695,-168.5558],[4.1937,140.9759,-166.3758],[17.0237,138.9333,-169.7958],[24.5237,137.7782,-171.5458],[33.8837,139.1454,-173.4258]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202697","name":"Bonechewer Beastmaster Patrol","speed":1.15,"pathId":2026970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-2.4663,140.8074,-297.5058],[-5.1363,140.3064,-287.9658],[6.8937,140.3233,-295.4658],[9.9637,140.8329,-291.7258],[5.2637,140.8218,-295.9258],[-4.4563,140.8031,-298.6658],[-1.5863,140.8102,-295.5858],[0.4837,140.8153,-293.3758],[2.8637,140.8139,-301.3458],[7.3637,140.8324,-285.9658],[0.2337,140.8174,-289.9158],[2.7437,140.8196,-292.8958],[4.3637,140.8205,-295.5658],[4.9237,140.8281,-286.0758],[9.6137,140.8298,-295.2558],[2.3537,140.8188,-293.1158],[3.3437,140.8181,-296.5058],[1.7937,140.8172,-293.9258]],"members":[{"id":"member","entityId":"entry-17455","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-202692","name":"Watchkeeper Gargolmar","position":[-94.7563,140.7283,-308.6958]},{"id":"creature-202694","name":"Omor the Unscarred","position":[-159.6063,161.6601,-120.7458]}],"objectiveOrder":[{"id":"creature-202692","name":"Watchkeeper Gargolmar","position":[-94.7563,140.7283,-308.6958]},{"id":"creature-202694","name":"Omor the Unscarred","position":[-159.6063,161.6601,-120.7458]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3562,"guid":20496,"id":185168,"map":543,"orientation":1.94103,"phaseMask":1,"position_x":-1429.56,"position_y":1773.13,"position_z":82.0906,"rotation0":0,"rotation1":0,"rotation2":0.825177,"rotation3":0.564875,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":3562},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3562,"guid":20499,"id":185169,"map":543,"orientation":1.94103,"phaseMask":1,"position_x":-1429.56,"position_y":1773.13,"position_z":82.0906,"rotation0":0,"rotation1":0,"rotation2":0.825177,"rotation3":0.564875,"spawnMask":2,"spawntimesecs":86400,"state":1,"zoneId":3562},{"Comment":null,"ScriptName":"","VerifiedBuild":45942,"animprogress":255,"areaId":0,"guid":21975,"id":181734,"map":543,"orientation":1.05222,"phaseMask":1,"position_x":-1166.27,"position_y":1453.71,"position_z":68.5183,"rotation0":0,"rotation1":0,"rotation2":0.502175,"rotation3":0.864766,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":45942,"animprogress":255,"areaId":0,"guid":21976,"id":181736,"map":543,"orientation":2.49796,"phaseMask":1,"position_x":-1218.09,"position_y":1441.2,"position_z":68.6415,"rotation0":0,"rotation1":0,"rotation2":0.948662,"rotation3":0.316292,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":45942,"animprogress":255,"areaId":0,"guid":21977,"id":181737,"map":543,"orientation":1.41679,"phaseMask":1,"position_x":-1143.07,"position_y":1508.32,"position_z":68.5893,"rotation0":0,"rotation1":0,"rotation2":0.650617,"rotation3":0.759406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":45942,"animprogress":255,"areaId":0,"guid":81628,"id":181735,"map":543,"orientation":1.05222,"phaseMask":1,"position_x":-1189.48,"position_y":1437.63,"position_z":68.4641,"rotation0":0,"rotation1":0,"rotation2":0.502175,"rotation3":0.864766,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150004,"id":184179,"map":543,"orientation":0.9965,"phaseMask":1,"position_x":-1358.11,"position_y":1635.75,"position_z":68.513,"rotation0":0,"rotation1":0,"rotation2":0.477889,"rotation3":0.87842,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150005,"id":184180,"map":543,"orientation":0.9965,"phaseMask":1,"position_x":-1358.11,"position_y":1635.75,"position_z":68.513,"rotation0":0,"rotation1":0,"rotation2":0.477889,"rotation3":0.87842,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/HellfireRampart":"1fe80499e212825bf9628e2ebb57ef47c794d7edae11a977650a743b779a711a","patch/World/maps/HellfireRampart":"40cfc72b7cf488f2ae95c9ef75d06fe37bf46092a2d119bd6f73da6191b05067"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/hellfire-ramparts/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["12/12 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"steamvault","title":"Coilfang: The Steamvault","mapId":545,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[60,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Coilfang: The Steamvault","theme":"Instanced dungeon","summary":"Fight through Coilfang: The Steamvault, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Coilfang: The Steamvault...","unchartedAreaName":"Uncharted Coilfang: The Steamvault","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":486.9613},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/545-coilfangpumping/visual.glb","checksum":"f96badc43c3d6ed4b612a3396ede4d9f848fa7061e9b2bc9bfbac5e3cc84a182","size":2368364,"triangleCount":58979}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/545-coilfangpumping/collision.glb","checksum":"fd6aaedc17b593f9de1b31bbe6c18c75760c4fd7d525a206f1705f3df4a13a0c","size":491032,"triangleCount":49192}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/545-coilfangpumping/navigation.glb","checksum":"9e9f8a632d6421e36a9d0f0c7505c9b1d272e7081c4d44de47e431a31eb2aa66","size":272688,"triangleCount":20491}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-230.8038,-60.1059,-771.8194],"max":[419.2611,12.33,-95.4842]},"entrance":{"name":"Coilfang: The Steamvault Entrance","footPosition":[-80.6389,-20.47,-168.0342],"forward":[0.9471339798799844,0,-0.3208383146644138],"yaw":1.8974107882902917},"areas":[{"id":"entrance","name":"Coilfang: The Steamvault Entrance","center":[-80.6389,-20.47,-168.0342],"radius":35},{"id":"area-hydromancer-thespia","name":"Hydromancer Thespia's Encounter","center":[-182.8785,-23.9988,-490.8994],"radius":42},{"id":"area-mekgineer-steamrigger","name":"Mekgineer Steamrigger's Encounter","center":[235.6016,-24.1965,-296.2944],"radius":42},{"id":"area-warlord-kalithresh","name":"Warlord Kalithresh's Encounter","center":[0.9374,-7.9411,-726.8194],"radius":42}],"entities":{"entry-17721":{"id":"entry-17721","kind":"mob","name":"Coilfang Engineer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6533","name":"Net","spellId":6533,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6766,"damageMultiplier":1.12},{"id":"spell-40331","name":"Bomb","spellId":40331,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6766,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18388-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.7543,"labelHeight":9.929,"markerRadius":1.4693}}},"entry-17722":{"id":"entry-17722","kind":"mob","name":"Coilfang Sorceress","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31581","name":"Blizzard","spellId":31581,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4117,"damageMultiplier":0.62,"radius":8},{"id":"spell-15063","name":"Frost Nova","spellId":15063,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4117,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18396-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-17796":{"id":"entry-17796","kind":"boss","name":"Mekgineer Steamrigger","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35107","name":"Electrified Net","spellId":35107,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4831,"damageMultiplier":1.35},{"id":"spell-31485","name":"Super Shrink Ray","spellId":31485,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4831,"damageMultiplier":1.35},{"id":"spell-31486","name":"Saw Blade","spellId":31486,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4831,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18638-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3354,"labelHeight":10.8494,"markerRadius":4.2484}}},"entry-17797":{"id":"entry-17797","kind":"boss","name":"Hydromancer Thespia","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-25189","name":"Enveloping Winds","spellId":25189,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5519,"damageMultiplier":1.35},{"id":"spell-25033","name":"Lightning Cloud","spellId":25033,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5519,"damageMultiplier":1.35},{"id":"spell-31481","name":"Lung Burst","spellId":31481,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5519,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-11268-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":11.4164,"markerRadius":2.2045}}},"entry-17798":{"id":"entry-17798","kind":"boss","name":"Warlord Kalithresh","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31534","name":"Spell Reflection","spellId":31534,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-31534","durationMs":12000,"magnitude":0.25}},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6094,"damageMultiplier":1.35},{"id":"spell-39061","name":"Impale","spellId":39061,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6094,"damageMultiplier":1.35},{"id":"spell-36453","name":"Warlord's Rage","spellId":36453,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6094,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-20235-animated.glb","rotationY":-1.5707963267948966,"groundOffset":5.3633,"labelHeight":14.1842,"markerRadius":2.0989}}},"entry-17799":{"id":"entry-17799","kind":"mob","name":"Dreghood Slave","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4310,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-17691-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0044,"labelHeight":3.4695,"markerRadius":0.8615}}},"entry-17800":{"id":"entry-17800","kind":"mob","name":"Coilfang Myrmidon","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5564,"damageMultiplier":0.62,"radius":8},{"id":"spell-7160","name":"Execute","spellId":7160,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5564,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18389-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":11.3474,"markerRadius":1.6791}}},"entry-17801":{"id":"entry-17801","kind":"mob","name":"Coilfang Siren","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-38660","name":"Fear","spellId":38660,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6377,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}},{"id":"spell-37664","name":"Lightning Bolt","spellId":37664,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6377,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18392-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-17802":{"id":"entry-17802","kind":"mob","name":"Coilfang Warrior","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4717,"damageMultiplier":1.12},{"id":"spell-35105","name":"Mortal Blow","spellId":35105,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4717,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18398-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.218,"labelHeight":8.5105,"markerRadius":1.2594}}},"entry-17803":{"id":"entry-17803","kind":"mob","name":"Coilfang Oracle","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8281","name":"Sonic Burst","spellId":8281,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5532,"damageMultiplier":1.12},{"id":"spell-31730","name":"Heal","spellId":31730,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5532,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18391-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.218,"labelHeight":8.5623,"markerRadius":1.6533}}},"entry-17805":{"id":"entry-17805","kind":"mob","name":"Coilfang Slavemaster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10987","name":"Geyser","spellId":10987,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4493,"damageMultiplier":1.12},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4493,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18394-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.7543,"labelHeight":9.929,"markerRadius":1.4693}}},"entry-17917":{"id":"entry-17917","kind":"mob","name":"Coilfang Water Elemental","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34449","name":"Water Bolt Volley","spellId":34449,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5018,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-5564-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5891,"markerRadius":2.6624}}},"entry-17951":{"id":"entry-17951","kind":"mob","name":"Steamrigger Mechanic","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/24c2a0dfe0450f20fff15e59b309083239d9eb9af6d0eb0d698be3aaaf7eb382.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-21338":{"id":"entry-21338","kind":"mob","name":"Coilfang Leper","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-40505","name":"Cleave","spellId":40505,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5328,"damageMultiplier":0.62,"radius":8},{"id":"spell-13339","name":"Fire Blast","spellId":13339,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5328,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/24c2a0dfe0450f20fff15e59b309083239d9eb9af6d0eb0d698be3aaaf7eb382.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-21694":{"id":"entry-21694","kind":"mob","name":"Bog Overlord","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4621,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}},{"id":"spell-32065","name":"Fungal Decay","spellId":32065,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4621,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"plant","model":{"url":"/assets/game/creatures/shared/52c8b3aea63f21f8e98ad84eaf601f2918d1df17a05525d41f5b3e17da53c8ff.glb","rotationY":-1.5707963267948966,"groundOffset":0.0102,"labelHeight":14.3365,"markerRadius":4.5}}},"entry-21695":{"id":"entry-21695","kind":"mob","name":"Tidal Surger","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15531","name":"Frost Nova","spellId":15531,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7065,"damageMultiplier":0.62,"radius":8},{"id":"spell-37250","name":"Water Spout","spellId":37250,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7065,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-5564-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5891,"markerRadius":2.6624}}},"entry-21696":{"id":"entry-21696","kind":"mob","name":"Steam Surger","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-37252","name":"Water Bolt","spellId":37252,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5434,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-5561-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3404,"markerRadius":1.3312}}}},"staticSpawns":[{"id":"creature-142021","entityId":"entry-17721","position":[-89.1824,-37.3848,-306.1794],"yaw":-4.93928,"spawnMask":3},{"id":"creature-142022","entityId":"entry-17721","position":[-154.3645,-38.8713,-306.3694],"yaw":-5.8294,"spawnMask":3},{"id":"creature-142023","entityId":"entry-17721","position":[-140.0847,-38.7413,-411.0144],"yaw":-4.90438,"spawnMask":3},{"id":"creature-142024","entityId":"entry-17721","position":[-123.5078,-38.827,-414.3514],"yaw":-5.27089,"spawnMask":3},{"id":"creature-142025","entityId":"entry-17721","position":[-72.5478,-37.9271,-301.5184],"yaw":-4.81711,"spawnMask":3},{"id":"creature-142026","entityId":"entry-17721","position":[-80.5896,-38.7795,-354.5344],"yaw":-3.19395,"spawnMask":3},{"id":"creature-142027","entityId":"entry-17721","position":[-69.8611,-37.0664,-361.4324],"yaw":-1.6057,"spawnMask":3},{"id":"creature-142028","entityId":"entry-17721","position":[-102.8592,-38.5772,-379.6114],"yaw":-4.27606,"spawnMask":3},{"id":"creature-142029","entityId":"entry-17721","position":[-108.7625,-38.5681,-388.1224],"yaw":-3.4383,"spawnMask":3},{"id":"creature-142030","entityId":"entry-17721","position":[-102.8871,-38.094,-321.8384],"yaw":-3.87463,"spawnMask":3},{"id":"creature-142031","entityId":"entry-17721","position":[-52.4322,-23.6226,-546.8904],"yaw":-6.07375,"spawnMask":3},{"id":"creature-142032","entityId":"entry-17721","position":[-44.3135,-23.6152,-557.3444],"yaw":-4.41568,"spawnMask":3},{"id":"creature-142033","entityId":"entry-17722","position":[-8.6493,-23.8836,-451.2684],"yaw":-1.5708,"spawnMask":3},{"id":"creature-142034","entityId":"entry-17722","position":[0.1103,-23.8836,-452.4574],"yaw":-1.39626,"spawnMask":3},{"id":"creature-142036","entityId":"entry-17722","position":[-33.7582,-23.8836,-493.6394],"yaw":-2.80998,"spawnMask":3},{"id":"creature-142037","entityId":"entry-17722","position":[16.4176,-23.8713,-505.3004],"yaw":-6.16101,"spawnMask":3},{"id":"creature-142038","entityId":"entry-17722","position":[-49.4123,-23.5982,-536.0374],"yaw":-2.40855,"spawnMask":3},{"id":"creature-142040","entityId":"entry-17722","position":[-1.5808,-10.2199,-620.0984],"yaw":-1.55334,"spawnMask":3},{"id":"creature-142041","entityId":"entry-17722","position":[-11.5909,-7.8549,-684.8584],"yaw":-1.88496,"spawnMask":3},{"id":"creature-142042","entityId":"entry-17722","position":[12.3046,-7.9004,-680.5584],"yaw":-1.3439,"spawnMask":3},{"id":"creature-142043","entityId":"entry-17796","position":[235.6016,-24.1965,-296.2944],"yaw":-5.06145,"spawnMask":3},{"id":"creature-142044","entityId":"entry-17797","position":[-182.8785,-23.9988,-490.8994],"yaw":-3.03687,"spawnMask":3},{"id":"creature-142045","entityId":"entry-17798","position":[0.9374,-7.9411,-726.8194],"yaw":-1.44862,"spawnMask":3},{"id":"creature-142046","entityId":"entry-17799","position":[141.2946,-22.5438,-364.3834],"yaw":-3.01942,"spawnMask":3},{"id":"creature-142047","entityId":"entry-17799","position":[124.1946,-24.128,-414.1824],"yaw":-0.523599,"spawnMask":3},{"id":"creature-142048","entityId":"entry-17799","position":[128.7886,-24.1546,-407.1104],"yaw":-0.191986,"spawnMask":3},{"id":"creature-142049","entityId":"entry-17799","position":[119.4286,-24.1555,-416.0784],"yaw":-1.98968,"spawnMask":3},{"id":"creature-142050","entityId":"entry-17799","position":[125.1736,-24.152,-409.5504],"yaw":-1.97222,"spawnMask":3},{"id":"creature-142051","entityId":"entry-17799","position":[114.9726,-24.2161,-441.0164],"yaw":-5.63741,"spawnMask":3},{"id":"creature-142052","entityId":"entry-17799","position":[111.6796,-24.2097,-443.7184],"yaw":-2.60054,"spawnMask":3},{"id":"creature-142053","entityId":"entry-17799","position":[156.6566,-24.1581,-405.4294],"yaw":-2.86234,"spawnMask":3},{"id":"creature-142054","entityId":"entry-17799","position":[139.0016,-23.9469,-439.7024],"yaw":-2.82743,"spawnMask":3},{"id":"creature-142055","entityId":"entry-17799","position":[161.4156,-24.0663,-409.9324],"yaw":-2.6529,"spawnMask":3},{"id":"creature-142056","entityId":"entry-17799","position":[161.8286,-23.9886,-413.3234],"yaw":-2.1293,"spawnMask":3},{"id":"creature-142057","entityId":"entry-17799","position":[142.4976,-23.9312,-437.8844],"yaw":-5.67232,"spawnMask":3},{"id":"creature-142058","entityId":"entry-17799","position":[159.1996,-24.0983,-408.3004],"yaw":-1.71042,"spawnMask":3},{"id":"creature-142059","entityId":"entry-17799","position":[141.0506,-23.9121,-443.4234],"yaw":-3.59538,"spawnMask":3},{"id":"creature-142060","entityId":"entry-17799","position":[145.7556,-23.9006,-442.6764],"yaw":-5.00909,"spawnMask":3},{"id":"creature-142061","entityId":"entry-17800","position":[-57.8658,-34.4353,-391.7074],"yaw":-0.907571,"spawnMask":3},{"id":"creature-142062","entityId":"entry-17800","position":[-53.6018,-34.497,-382.6504],"yaw":-0.15708,"spawnMask":3},{"id":"creature-142063","entityId":"entry-17800","position":[65.1416,-24.2563,-458.1594],"yaw":-4.43314,"spawnMask":3},{"id":"creature-142064","entityId":"entry-17800","position":[-41.8741,-23.8836,-499.5474],"yaw":-5.72468,"spawnMask":3},{"id":"creature-142065","entityId":"entry-17800","position":[75.4336,-24.2888,-460.1564],"yaw":-5.16617,"spawnMask":3},{"id":"creature-142066","entityId":"entry-17800","position":[9.7126,-23.843,-499.9154],"yaw":-6.17847,"spawnMask":3},{"id":"creature-142067","entityId":"entry-17800","position":[8.1926,-23.5059,-517.0294],"yaw":-0.0174533,"spawnMask":3},{"id":"creature-142068","entityId":"entry-17800","position":[-8.4177,-23.9787,-535.8224],"yaw":-2.62466,"spawnMask":3},{"id":"creature-142069","entityId":"entry-17800","position":[-8.8089,-23.9787,-528.5544],"yaw":-3.11757,"spawnMask":3},{"id":"creature-142070","entityId":"entry-17800","position":[-36.9699,-23.4926,-551.3764],"yaw":-2.46091,"spawnMask":3},{"id":"creature-142071","entityId":"entry-17800","position":[2.546,-11.321,-617.4784],"yaw":-1.62316,"spawnMask":3},{"id":"creature-142072","entityId":"entry-17800","position":[-1.7978,-11.2902,-617.5334],"yaw":-1.5708,"spawnMask":3},{"id":"creature-142073","entityId":"entry-17800","position":[3.7835,-8.2666,-640.2814],"yaw":-1.48353,"spawnMask":3},{"id":"creature-142074","entityId":"entry-17800","position":[-1.7537,-8.2649,-640.3474],"yaw":-1.53589,"spawnMask":3},{"id":"creature-142075","entityId":"entry-17800","position":[-11.696,-7.8647,-674.7574],"yaw":-2.07694,"spawnMask":3},{"id":"creature-142076","entityId":"entry-17800","position":[12.3056,-7.9323,-672.7164],"yaw":-1.09956,"spawnMask":3},{"id":"creature-142077","entityId":"entry-17801","position":[-130.3569,-38.7755,-332.1024],"yaw":-3.50811,"spawnMask":3},{"id":"creature-142078","entityId":"entry-17801","position":[-132.4391,-38.8076,-411.7034],"yaw":-2.94961,"spawnMask":3},{"id":"creature-142079","entityId":"entry-17801","position":[-124.3552,-38.5759,-339.9784],"yaw":-1.32645,"spawnMask":3},{"id":"creature-142080","entityId":"entry-17801","position":[-123.541,-39.4608,-431.4204],"yaw":-3.38594,"spawnMask":3},{"id":"creature-142082","entityId":"entry-17801","position":[-121.497,-39.0163,-435.2614],"yaw":-2.44346,"spawnMask":3},{"id":"creature-142083","entityId":"entry-17801","position":[-104.002,-38.2561,-325.3854],"yaw":-0.191986,"spawnMask":3},{"id":"creature-142084","entityId":"entry-17801","position":[-155.4256,-38.9206,-301.1844],"yaw":-0.870719,"spawnMask":3},{"id":"creature-142085","entityId":"entry-17801","position":[-123.0831,-37.5837,-454.0474],"yaw":-4.5204,"spawnMask":3},{"id":"creature-142086","entityId":"entry-17801","position":[-95.9943,-37.7525,-425.2334],"yaw":-6.14356,"spawnMask":3},{"id":"creature-142087","entityId":"entry-17801","position":[-101.2478,-38.1129,-431.7884],"yaw":-1.50098,"spawnMask":3},{"id":"creature-142088","entityId":"entry-17801","position":[-116.4789,-37.6178,-451.0594],"yaw":-4.39823,"spawnMask":3},{"id":"creature-142089","entityId":"entry-17801","position":[-40.6617,-22.482,-509.1564],"yaw":-3.22886,"spawnMask":3},{"id":"creature-142090","entityId":"entry-17801","position":[-33.983,-23.8836,-501.3964],"yaw":-3.08923,"spawnMask":3},{"id":"creature-142091","entityId":"entry-17801","position":[15.0116,-23.7609,-511.1414],"yaw":-5.91667,"spawnMask":3},{"id":"creature-142092","entityId":"entry-17801","position":[-7.4599,-8.1202,-645.9114],"yaw":-1.72788,"spawnMask":3},{"id":"creature-142093","entityId":"entry-17801","position":[-17.3965,-7.8157,-678.5924],"yaw":-2.04204,"spawnMask":3},{"id":"creature-142094","entityId":"entry-17801","position":[18.8396,-7.9235,-668.9214],"yaw":-0.715585,"spawnMask":3},{"id":"creature-142097","entityId":"entry-17802","position":[-72.7015,-38.7005,-277.6374],"yaw":-1.4331,"spawnMask":3},{"id":"creature-142102","entityId":"entry-17802","position":[-4.6297,-23.8836,-454.2284],"yaw":-1.62316,"spawnMask":3},{"id":"creature-142104","entityId":"entry-17802","position":[-96.5485,-36.0511,-238.9246],"yaw":-2.05949,"spawnMask":3},{"id":"creature-142105","entityId":"entry-17802","position":[-87.9994,-36.0511,-238.4978],"yaw":-1.29154,"spawnMask":3},{"id":"creature-142107","entityId":"entry-17802","position":[-45.6343,-34.8016,-391.8174],"yaw":-2.1076,"spawnMask":3},{"id":"creature-142109","entityId":"entry-17802","position":[-44.0956,-34.8081,-390.0404],"yaw":-5.85866,"spawnMask":3},{"id":"creature-142110","entityId":"entry-17803","position":[-127.9241,-38.6892,-335.9834],"yaw":-2.33874,"spawnMask":3},{"id":"creature-142111","entityId":"entry-17803","position":[-107.6824,-38.5596,-382.8404],"yaw":-6.0542,"spawnMask":3},{"id":"creature-142112","entityId":"entry-17803","position":[-77.3883,-38.3795,-360.9194],"yaw":-5.23599,"spawnMask":3},{"id":"creature-142113","entityId":"entry-17803","position":[-119.2457,-38.4386,-438.4064],"yaw":-1.69297,"spawnMask":3},{"id":"creature-142114","entityId":"entry-17803","position":[-105.212,-38.4539,-329.7214],"yaw":-6.10865,"spawnMask":3},{"id":"creature-142115","entityId":"entry-17803","position":[-97.0593,-37.8972,-430.2924],"yaw":-0.785398,"spawnMask":3},{"id":"creature-142116","entityId":"entry-17803","position":[3.6085,-10.1304,-620.3224],"yaw":-1.22173,"spawnMask":3},{"id":"creature-142117","entityId":"entry-17803","position":[8.1246,-8.0963,-646.8274],"yaw":-1.5708,"spawnMask":3},{"id":"creature-142118","entityId":"entry-17803","position":[-19.2755,-7.8599,-671.7114],"yaw":-2.32129,"spawnMask":3},{"id":"creature-142119","entityId":"entry-17803","position":[19.8206,-7.9066,-678.4814],"yaw":-0.855211,"spawnMask":3},{"id":"creature-142120","entityId":"entry-17805","position":[143.5256,-23.1121,-367.9234],"yaw":-1.09956,"spawnMask":3},{"id":"creature-142122","entityId":"entry-17805","position":[138.3796,-22.761,-367.0344],"yaw":-2.46091,"spawnMask":3},{"id":"creature-142124","entityId":"entry-17917","position":[-185.8038,-23.9987,-481.2964],"yaw":-3.21141,"spawnMask":3},{"id":"creature-142125","entityId":"entry-17917","position":[-184.5233,-23.9989,-500.9034],"yaw":-3.00197,"spawnMask":3},{"id":"creature-142126","entityId":"entry-17951","position":[234.0796,-24.225,-300.8574],"yaw":-1.8675,"spawnMask":3},{"id":"creature-142127","entityId":"entry-17951","position":[230.9036,-24.1843,-294.9874],"yaw":-3.83972,"spawnMask":3},{"id":"creature-142128","entityId":"entry-17951","position":[241.0636,-24.1466,-297.3844],"yaw":-0.506145,"spawnMask":3},{"id":"creature-142139","entityId":"entry-21338","position":[209.2206,-24.2677,-327.8264],"yaw":-5.77011,"spawnMask":3},{"id":"creature-142140","entityId":"entry-21338","position":[201.1356,-23.956,-297.1924],"yaw":-0.738108,"spawnMask":3},{"id":"creature-142141","entityId":"entry-21338","position":[202.6046,-23.9695,-289.6124],"yaw":-2.93215,"spawnMask":3},{"id":"creature-142142","entityId":"entry-21338","position":[211.7726,-24.37,-301.3084],"yaw":-1.09522,"spawnMask":3},{"id":"creature-142143","entityId":"entry-21338","position":[205.1316,-24.303,-319.3474],"yaw":-0.334969,"spawnMask":3},{"id":"creature-142144","entityId":"entry-21338","position":[204.7316,-23.8836,-331.8424],"yaw":-6.25279,"spawnMask":3},{"id":"creature-142145","entityId":"entry-21338","position":[193.4706,-23.8861,-324.9464],"yaw":-1.33847,"spawnMask":3},{"id":"creature-142146","entityId":"entry-21338","position":[197.8116,-24.0597,-320.3224],"yaw":-3.03753,"spawnMask":3},{"id":"creature-142147","entityId":"entry-21338","position":[201.9976,-24.1812,-324.9864],"yaw":-0.977384,"spawnMask":3},{"id":"creature-142148","entityId":"entry-21338","position":[196.0016,-23.8836,-290.7724],"yaw":-4.30182,"spawnMask":3},{"id":"creature-142149","entityId":"entry-21338","position":[198.0476,-23.8836,-329.6554],"yaw":-5.37133,"spawnMask":3},{"id":"creature-142150","entityId":"entry-21338","position":[208.6396,-23.999,-289.9574],"yaw":-6.0342,"spawnMask":3},{"id":"creature-142151","entityId":"entry-21338","position":[212.1366,-23.8836,-280.7214],"yaw":-0.727516,"spawnMask":3},{"id":"creature-142152","entityId":"entry-21338","position":[205.2976,-24.2175,-302.5664],"yaw":-5.6863,"spawnMask":3},{"id":"creature-142153","entityId":"entry-21338","position":[214.6996,-24.2227,-296.0564],"yaw":-0.730187,"spawnMask":3},{"id":"creature-142154","entityId":"entry-21338","position":[192.2396,-23.5063,-331.1184],"yaw":-0.0862546,"spawnMask":3},{"id":"creature-142155","entityId":"entry-21694","position":[-165.5936,-35.399,-323.8104],"yaw":-3.56505,"spawnMask":3},{"id":"creature-142156","entityId":"entry-21694","position":[-32.699,-36.0511,-322.1564],"yaw":-4.3544,"spawnMask":3},{"id":"creature-142157","entityId":"entry-21694","position":[-149.9758,-38.7424,-272.5752],"yaw":-6.14571,"spawnMask":3},{"id":"creature-142158","entityId":"entry-21694","position":[-49.8289,-38.2419,-284.2074],"yaw":-0.541052,"spawnMask":3},{"id":"creature-142159","entityId":"entry-21694","position":[-150.241,-38.7413,-372.9764],"yaw":-3.31613,"spawnMask":3},{"id":"creature-142163","entityId":"entry-21696","position":[-167.8908,-38.843,-289.1974],"yaw":-2.14001,"spawnMask":3},{"id":"creature-142164","entityId":"entry-21696","position":[-168.9503,-38.8388,-283.7244],"yaw":-3.9642,"spawnMask":3},{"id":"creature-142165","entityId":"entry-21696","position":[-99.6305,-39.0314,-421.0114],"yaw":-3.7001,"spawnMask":3},{"id":"creature-142166","entityId":"entry-21696","position":[-163.6923,-38.8384,-283.0354],"yaw":-3.99889,"spawnMask":3},{"id":"creature-142167","entityId":"entry-21696","position":[-77.4518,-38.6198,-335.2674],"yaw":-5.35455,"spawnMask":3},{"id":"creature-142168","entityId":"entry-21696","position":[-81.9226,-38.6836,-330.2954],"yaw":-4.68552,"spawnMask":3},{"id":"creature-142169","entityId":"entry-21696","position":[-164.0726,-38.8404,-285.6324],"yaw":-2.39144,"spawnMask":3},{"id":"creature-142170","entityId":"entry-21696","position":[-99.8208,-39.2101,-423.0734],"yaw":-3.89208,"spawnMask":3},{"id":"creature-142171","entityId":"entry-21696","position":[-101.1117,-39.1394,-425.4704],"yaw":-5.00909,"spawnMask":3},{"id":"creature-142172","entityId":"entry-21696","position":[-102.2402,-38.8644,-427.0174],"yaw":-0.0523599,"spawnMask":3},{"id":"creature-142173","entityId":"entry-21696","position":[-80.1909,-38.7671,-330.2834],"yaw":-5.43264,"spawnMask":3},{"id":"creature-142174","entityId":"entry-21696","position":[-82.4239,-38.9002,-335.8524],"yaw":-5.07313,"spawnMask":3}],"roamingPacks":[{"id":"patrol-142035","name":"Coilfang Sorceress Patrol","speed":1.15,"pathId":1420350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-53.7214,-34.7102,-388.0124],[-31.7054,-34.7273,-396.1864],[-19.5524,-35.1211,-404.3664],[-7.8024,-31.6781,-421.4324],[-3.4922,-25.762,-440.4974],[-8.7485,-31.63,-421.8444],[-20.1075,-35.1333,-404.9304],[-32.005,-34.6699,-396.7754]],"members":[{"id":"member","entityId":"entry-17722","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142039","name":"Coilfang Sorceress Patrol","speed":1.15,"pathId":1420390,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-3.0893,-23.9787,-532.6644],[-0.374,-23.9787,-519.9504],[-0.8957,-23.9787,-501.0374],[-1.2761,-23.9787,-485.8394],[-0.8816,-23.9787,-471.1114],[-11.0883,-23.9787,-468.6214],[-20.7414,-23.9787,-485.6904],[-23.7294,-23.9787,-502.7574],[-28.6308,-23.9787,-518.9674],[-24.0151,-23.9787,-536.4154],[-12.7121,-23.9787,-544.1114]],"members":[{"id":"member","entityId":"entry-17722","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142081","name":"Coilfang Siren Patrol","speed":1.15,"pathId":1420810,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-73.329,-38.8346,-277.2954],[-83.3637,-37.5499,-270.1267],[-100.2907,-38.7663,-272.0878],[-108.1073,-38.2796,-282.1634],[-105.0971,-37.8856,-294.4714],[-89.7386,-36.949,-291.6484],[-76.3702,-38.704,-286.3394]],"members":[{"id":"member","entityId":"entry-17801","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142095","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1420950,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-107.2957,-38.6783,-330.3104],[-109.7102,-38.706,-325.5994],[-107.2278,-38.4622,-320.0694],[-109.7102,-38.706,-325.5994]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142096","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1420960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-83.406,-39.9046,-356.0774],[-79.9391,-39.1657,-364.3324],[-67.9026,-36.7012,-366.3354],[-79.9391,-39.1657,-364.3324]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142098","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1420980,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-114.2225,-38.2433,-439.1374],[-115.629,-38.5005,-433.5494],[-121.9999,-39.6247,-429.9174],[-115.629,-38.5005,-433.5494]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142099","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1420990,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-155.3261,-38.8443,-296.2534],[-150.9065,-38.9283,-300.7794],[-150.5618,-39.0084,-308.5844],[-150.9065,-38.9283,-300.7794]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142100","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1421000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-113.4498,-38.6867,-387.1674],[-110.5835,-38.6338,-376.3884],[-101.3896,-38.6569,-374.2694],[-110.5835,-38.6338,-376.3884]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142101","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1421010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-117.4804,-38.6218,-412.5374],[-129.7409,-38.861,-406.1994],[-140.9832,-38.8596,-406.4734],[-129.7409,-38.861,-406.1994]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142103","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1421030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-89.8409,-37.0154,-301.9944],[-80.9373,-38.3983,-298.9234],[-72.3452,-38.1643,-297.6624],[-80.9373,-38.3983,-298.9234]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142106","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1421060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-104.6104,-38.5773,-427.9094],[-99.4527,-39.0636,-421.1124],[-100.7507,-39.0589,-426.5844]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142108","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1421080,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-118.0466,-38.8595,-448.8644],[-116.4012,-35.274,-457.1084],[-119.6867,-31.201,-465.4704],[-126.4214,-27.2872,-473.8604],[-136.9892,-24.7926,-484.1364],[-145.166,-24.0872,-487.9964],[-153.3571,-24.0497,-487.6614],[-148.8242,-24.2284,-480.5634],[-141,-25.5427,-475.4964],[-133.4909,-27.5065,-470.9214],[-126.743,-31.2106,-464.5224],[-124.6229,-36.6648,-455.2344],[-122.6245,-38.9257,-448.2654]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142121","name":"Coilfang Slavemaster Patrol","speed":1.15,"pathId":1421210,"formationSource":"database-solo","spawnMask":3,"waypoints":[[137.9096,-24.1048,-417.5854],[140.6656,-24.3326,-403.3544],[140.4606,-24.3081,-385.4064],[140.4096,-24.1167,-372.7384],[140.4606,-24.3081,-385.4064],[140.6656,-24.3326,-403.3544]],"members":[{"id":"member","entityId":"entry-17805","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142123","name":"Coilfang Slavemaster Patrol","speed":1.15,"pathId":1421230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[107.8176,-24.182,-436.4764],[114.3106,-24.2906,-436.4614],[124.7536,-24.1994,-435.3074],[130.6596,-24.1388,-431.6604],[136.0086,-24.0751,-423.9624],[130.6596,-24.1388,-431.6604],[124.7536,-24.1994,-435.3074],[114.3106,-24.2906,-436.4614]],"members":[{"id":"member","entityId":"entry-17805","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142160","name":"Tidal Surger Patrol","speed":1.15,"pathId":1421600,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-81.3884,-38.9697,-333.6974],[-87.4018,-40.1059,-347.8694],[-97.4314,-38.7227,-356.0034],[-112.0755,-38.6332,-355.9214],[-112.975,-38.6133,-378.3824],[-112.0755,-38.6332,-355.9214],[-97.4314,-38.7227,-356.0034],[-87.4018,-40.1059,-347.8694]],"members":[{"id":"member","entityId":"entry-21695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142161","name":"Tidal Surger Patrol","speed":1.15,"pathId":1421610,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-168.5036,-38.8391,-284.0124],[-152.4304,-38.8235,-289.5114],[-141.9388,-38.8284,-292.6054],[-143.6055,-38.9952,-305.4994],[-126.8326,-38.6556,-304.0154],[-125.8544,-38.7528,-322.0044],[-113.1412,-38.6251,-344.2294],[-122.9332,-38.6889,-358.0944],[-113.1412,-38.6251,-344.2294],[-125.8544,-38.7528,-322.0044],[-126.8326,-38.6556,-304.0154],[-143.6055,-38.9952,-305.4994],[-141.9388,-38.8284,-292.6054],[-152.4304,-38.8235,-289.5114]],"members":[{"id":"member","entityId":"entry-21695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142162","name":"Tidal Surger Patrol","speed":1.15,"pathId":1421620,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-102.9355,-39.5626,-422.6604],[-112.7706,-38.7264,-408.1314],[-126.7212,-38.8528,-393.3974],[-134.1452,-38.8432,-380.9984],[-126.7212,-38.8528,-393.3974],[-112.7706,-38.7264,-408.1314]],"members":[{"id":"member","entityId":"entry-21695","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-142044","name":"Hydromancer Thespia","position":[-182.8785,-23.9988,-490.8994]},{"id":"creature-142043","name":"Mekgineer Steamrigger","position":[235.6016,-24.1965,-296.2944]},{"id":"creature-142045","name":"Warlord Kalithresh","position":[0.9374,-7.9411,-726.8194]}],"objectiveOrder":[{"id":"creature-142044","name":"Hydromancer Thespia","position":[-182.8785,-23.9988,-490.8994]},{"id":"creature-142043","name":"Mekgineer Steamrigger","position":[235.6016,-24.1965,-296.2944]},{"id":"creature-142045","name":"Warlord Kalithresh","position":[0.9374,-7.9411,-726.8194]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3715,"guid":830,"id":183049,"map":545,"orientation":3.14159,"phaseMask":1,"position_x":-95.5584,"position_y":-437.625,"position_z":4.94624,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3715,"guid":831,"id":184125,"map":545,"orientation":4.79966,"phaseMask":1,"position_x":98.8157,"position_y":-316.336,"position_z":-6.68396,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3715,"guid":832,"id":184126,"map":545,"orientation":0.261798,"phaseMask":1,"position_x":-332.35,"position_y":-117.159,"position_z":-6.70766,"rotation0":0,"rotation1":0,"rotation2":0.130526,"rotation3":0.991445,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3715,"guid":833,"id":182197,"map":545,"orientation":6.10865,"phaseMask":1,"position_x":19.6039,"position_y":-304.914,"position_z":-66.1715,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32626,"id":182953,"map":545,"orientation":0.802851,"phaseMask":1,"position_x":809.187,"position_y":6962.97,"position_z":18.2676,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64680,"id":182952,"map":545,"orientation":0.802851,"phaseMask":1,"position_x":809.187,"position_y":6962.97,"position_z":18.2676,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64681,"id":182954,"map":545,"orientation":0.802851,"phaseMask":1,"position_x":809.187,"position_y":6962.97,"position_z":18.2676,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105242,"id":181270,"map":545,"orientation":3.49067,"phaseMask":1,"position_x":-205.817,"position_y":-103.243,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105243,"id":181270,"map":545,"orientation":5.65487,"phaseMask":1,"position_x":-64.5367,"position_y":-152.412,"position_z":-19.9231,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105244,"id":181275,"map":545,"orientation":3.3685,"phaseMask":1,"position_x":58.5667,"position_y":-204.123,"position_z":-22.6133,"rotation0":0,"rotation1":0,"rotation2":-0.993571,"rotation3":0.113208,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105245,"id":181275,"map":545,"orientation":3.3685,"phaseMask":1,"position_x":58.5667,"position_y":-204.123,"position_z":-22.6133,"rotation0":0,"rotation1":0,"rotation2":-0.993571,"rotation3":0.113208,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105246,"id":181275,"map":545,"orientation":4.90438,"phaseMask":1,"position_x":-310.216,"position_y":-206.72,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105247,"id":181275,"map":545,"orientation":4.90438,"phaseMask":1,"position_x":-310.216,"position_y":-206.72,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105248,"id":181278,"map":545,"orientation":1.72787,"phaseMask":1,"position_x":6.92143,"position_y":-271.444,"position_z":-18.8318,"rotation0":0,"rotation1":0,"rotation2":0.760406,"rotation3":0.649449,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105249,"id":181278,"map":545,"orientation":1.93731,"phaseMask":1,"position_x":-49.1663,"position_y":-143.161,"position_z":-20.2431,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566408,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105250,"id":181278,"map":545,"orientation":0.95993,"phaseMask":1,"position_x":68.2781,"position_y":-149.73,"position_z":-19.6815,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105251,"id":181278,"map":545,"orientation":5.55015,"phaseMask":1,"position_x":-245.752,"position_y":-163.171,"position_z":-2.66641,"rotation0":0,"rotation1":0,"rotation2":-0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105252,"id":181278,"map":545,"orientation":4.92183,"phaseMask":1,"position_x":-220.607,"position_y":-186.447,"position_z":-5.3461,"rotation0":0,"rotation1":0,"rotation2":-0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105253,"id":181278,"map":545,"orientation":4.53786,"phaseMask":1,"position_x":-237.348,"position_y":-182.727,"position_z":-5.58116,"rotation0":0,"rotation1":0,"rotation2":-0.766044,"rotation3":0.642789,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105254,"id":181278,"map":545,"orientation":2.84488,"phaseMask":1,"position_x":-354.513,"position_y":-136.025,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105255,"id":181278,"map":545,"orientation":5.60251,"phaseMask":1,"position_x":-313.275,"position_y":-107.529,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.333807,"rotation3":0.942641,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105256,"id":181278,"map":545,"orientation":4.60767,"phaseMask":1,"position_x":-328.184,"position_y":-180.729,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105257,"id":181278,"map":545,"orientation":0.174532,"phaseMask":1,"position_x":-238.252,"position_y":-133.886,"position_z":-65.1628,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105258,"id":181278,"map":545,"orientation":4.20625,"phaseMask":1,"position_x":-131.431,"position_y":-328.561,"position_z":-67.6411,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105259,"id":181278,"map":545,"orientation":0.942477,"phaseMask":1,"position_x":-271.318,"position_y":-206.749,"position_z":-67.6411,"rotation0":0,"rotation1":0,"rotation2":0.45399,"rotation3":0.891007,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105260,"id":181555,"map":545,"orientation":0.575957,"phaseMask":1,"position_x":44.922,"position_y":-270.041,"position_z":-21.8391,"rotation0":0,"rotation1":0,"rotation2":0.284015,"rotation3":0.95882,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105261,"id":181555,"map":545,"orientation":0.575957,"phaseMask":1,"position_x":44.922,"position_y":-270.041,"position_z":-21.8391,"rotation0":0,"rotation1":0,"rotation2":0.284015,"rotation3":0.95882,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105262,"id":181555,"map":545,"orientation":5.34071,"phaseMask":1,"position_x":6.10486,"position_y":-229.526,"position_z":-22.172,"rotation0":0,"rotation1":0,"rotation2":-0.45399,"rotation3":0.891007,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105263,"id":181555,"map":545,"orientation":5.34071,"phaseMask":1,"position_x":6.10486,"position_y":-229.526,"position_z":-22.172,"rotation0":0,"rotation1":0,"rotation2":-0.45399,"rotation3":0.891007,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105264,"id":181555,"map":545,"orientation":0.95993,"phaseMask":1,"position_x":86.1048,"position_y":-183.557,"position_z":-22.0548,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105265,"id":181555,"map":545,"orientation":0.95993,"phaseMask":1,"position_x":86.1048,"position_y":-183.557,"position_z":-22.0548,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105266,"id":181555,"map":545,"orientation":3.68265,"phaseMask":1,"position_x":-363.759,"position_y":-135.723,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105267,"id":181555,"map":545,"orientation":3.68265,"phaseMask":1,"position_x":-363.759,"position_y":-135.723,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105268,"id":181555,"map":545,"orientation":2.54818,"phaseMask":1,"position_x":-339.412,"position_y":-196.926,"position_z":-5.72056,"rotation0":0,"rotation1":0,"rotation2":0.956305,"rotation3":0.292372,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105269,"id":181555,"map":545,"orientation":2.54818,"phaseMask":1,"position_x":-339.412,"position_y":-196.926,"position_z":-5.72056,"rotation0":0,"rotation1":0,"rotation2":0.956305,"rotation3":0.292372,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105270,"id":181555,"map":545,"orientation":0.750491,"phaseMask":1,"position_x":-200.885,"position_y":-121.075,"position_z":-6.02453,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105271,"id":181555,"map":545,"orientation":0.750491,"phaseMask":1,"position_x":-200.885,"position_y":-121.075,"position_z":-6.02453,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105272,"id":181556,"map":545,"orientation":2.61799,"phaseMask":1,"position_x":-53.296,"position_y":-175.588,"position_z":-20.0281,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105273,"id":181556,"map":545,"orientation":2.61799,"phaseMask":1,"position_x":-53.296,"position_y":-175.588,"position_z":-20.0281,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105274,"id":181556,"map":545,"orientation":2.61799,"phaseMask":1,"position_x":-53.296,"position_y":-175.588,"position_z":-20.0281,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105275,"id":181556,"map":545,"orientation":5.88176,"phaseMask":1,"position_x":4.75688,"position_y":-278.016,"position_z":-8.36647,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105276,"id":181556,"map":545,"orientation":5.88176,"phaseMask":1,"position_x":4.75688,"position_y":-278.016,"position_z":-8.36647,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105277,"id":181556,"map":545,"orientation":5.88176,"phaseMask":1,"position_x":4.75688,"position_y":-278.016,"position_z":-8.36647,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105278,"id":181556,"map":545,"orientation":4.59022,"phaseMask":1,"position_x":84.6738,"position_y":-148.302,"position_z":-21.0814,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105279,"id":181556,"map":545,"orientation":4.59022,"phaseMask":1,"position_x":84.6738,"position_y":-148.302,"position_z":-21.0814,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105280,"id":181556,"map":545,"orientation":4.59022,"phaseMask":1,"position_x":84.6738,"position_y":-148.302,"position_z":-21.0814,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105281,"id":181556,"map":545,"orientation":5.32326,"phaseMask":1,"position_x":-388.828,"position_y":-157.54,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105282,"id":181556,"map":545,"orientation":5.32326,"phaseMask":1,"position_x":-388.828,"position_y":-157.54,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105283,"id":181556,"map":545,"orientation":5.32326,"phaseMask":1,"position_x":-388.828,"position_y":-157.54,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105284,"id":181556,"map":545,"orientation":0.925024,"phaseMask":1,"position_x":-364.504,"position_y":-85.856,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105285,"id":181556,"map":545,"orientation":0.925024,"phaseMask":1,"position_x":-364.504,"position_y":-85.856,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105286,"id":181556,"map":545,"orientation":0.925024,"phaseMask":1,"position_x":-364.504,"position_y":-85.856,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105287,"id":181556,"map":545,"orientation":6.14356,"phaseMask":1,"position_x":-287.925,"position_y":-192.021,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.0697556,"rotation3":0.997564,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105288,"id":181556,"map":545,"orientation":6.14356,"phaseMask":1,"position_x":-287.925,"position_y":-192.021,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.0697556,"rotation3":0.997564,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105289,"id":181556,"map":545,"orientation":6.14356,"phaseMask":1,"position_x":-287.925,"position_y":-192.021,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.0697556,"rotation3":0.997564,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105290,"id":181556,"map":545,"orientation":3.927,"phaseMask":1,"position_x":-262.357,"position_y":-186.123,"position_z":-7.60742,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105291,"id":181556,"map":545,"orientation":3.927,"phaseMask":1,"position_x":-262.357,"position_y":-186.123,"position_z":-7.60742,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105292,"id":181556,"map":545,"orientation":3.927,"phaseMask":1,"position_x":-262.357,"position_y":-186.123,"position_z":-7.60742,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150020,"id":184201,"map":545,"orientation":0,"phaseMask":1,"position_x":-23.7936,"position_y":4.42258,"position_z":-2.84397,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150021,"id":184202,"map":545,"orientation":0,"phaseMask":1,"position_x":-23.7936,"position_y":4.42258,"position_z":-2.84397,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/CoilfangPumping":"d44349ea195016461f78cf7026efcf45f87e1cb4c2c8b008f5241cc469b3b10c","patch/World/maps/CoilfangPumping":"f1f70a08f686f3e2099c8c1607491340d83b44898e2c84b57c7e3c85d248391e"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/steamvault/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["17/17 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"underbog","title":"Coilfang: The Underbog","mapId":546,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[60,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Coilfang: The Underbog","theme":"Instanced dungeon","summary":"Fight through Coilfang: The Underbog, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Coilfang: The Underbog...","unchartedAreaName":"Uncharted Coilfang: The Underbog","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":754.815},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/546-coilfangmarsh/visual.glb","checksum":"eff2db311832bab03b470ac4a761aadb9dea946ddc6b8255dff9ae7e493f3046","size":2308872,"triangleCount":28275}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/546-coilfangmarsh/collision.glb","checksum":"878c191c326b8c650c521e295fa052961f10c679fc9bc1aabef9089fc79bf145","size":187548,"triangleCount":16352}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/546-coilfangmarsh/navigation.glb","checksum":"7f238832da85f4ceebdad8590f9d74cf334dd45657b0b763c485935db1748a20","size":414420,"triangleCount":30573}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-557.4189,-22.7177,-1013.6612],"max":[46.8932,170.7496,34.693]},"entrance":{"name":"Coilfang: The Underbog Entrance","footPosition":[-179.5068,75.3823,-469.307],"forward":[0.6706257475679878,0,0.7417958659219378],"yaw":0.7350520237768353},"areas":[{"id":"entrance","name":"Coilfang: The Underbog Entrance","center":[-179.5068,75.3823,-469.307],"radius":35},{"id":"area-hungarfen","name":"Hungarfen's Encounter","center":[-48.4489,115.0015,-841.7322],"radius":42},{"id":"area-ghaz-an","name":"Ghaz'an's Encounter","center":[-363.4729,121.6716,-878.1072],"radius":42},{"id":"area-swamplord-musel-ek","name":"Swamplord Musel'ek's Encounter","center":[-458.3749,107.8389,-574.9372],"radius":42},{"id":"area-the-black-stalker","name":"The Black Stalker's Encounter","center":[-313.2249,105.7814,-443.9804],"radius":42}],"entities":{"entry-17725":{"id":"entry-17725","kind":"mob","name":"Underbog Lurker","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-34161","name":"Wild Growth","spellId":34161,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7393,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"plant","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17754-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.785,"markerRadius":1.4682}}},"entry-17871":{"id":"entry-17871","kind":"mob","name":"Underbog Shambler","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-32329","name":"Itchy Spores","spellId":32329,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6630,"damageMultiplier":1.12},{"id":"spell-34163","name":"Fungal Regrowth","spellId":34163,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6630,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"plant","model":{"url":"/assets/game/dungeons/underbog/creatures/display-16273-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.785,"markerRadius":1.4682}}},"entry-17724":{"id":"entry-17724","kind":"mob","name":"Underbat","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34171","name":"Tentacle Lash","spellId":34171,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5224,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17752-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.4894,"markerRadius":2.6729}}},"entry-17731":{"id":"entry-17731","kind":"mob","name":"Fen Ray","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-19403-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3089,"markerRadius":2.9805}}},"entry-17882":{"id":"entry-17882","kind":"boss","name":"The Black Stalker","title":"Dungeon Boss","hasLoot":true,"combat":{"level":65,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31717","name":"Chain Lightning","spellId":31717,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6590,"damageMultiplier":1.35},{"id":"spell-31704","name":"Levitate","spellId":31704,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6590,"damageMultiplier":1.35},{"id":"spell-31715","name":"Static Charge","spellId":31715,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6590,"damageMultiplier":1.35},{"id":"spell-20279","name":"Summon Player","spellId":20279,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6590,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18194-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0233,"labelHeight":25.8384,"markerRadius":4.5}}},"entry-17734":{"id":"entry-17734","kind":"mob","name":"Underbog Lord","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5999,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}},{"id":"spell-32065","name":"Fungal Decay","spellId":32065,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5999,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"plant","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17758-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0128,"labelHeight":17.9206,"markerRadius":4.5}}},"entry-17723":{"id":"entry-17723","kind":"mob","name":"Bog Giant","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5835,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}},{"id":"spell-32065","name":"Fungal Decay","spellId":32065,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5835,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/creatures/shared/52c8b3aea63f21f8e98ad84eaf601f2918d1df17a05525d41f5b3e17da53c8ff.glb","rotationY":-1.5707963267948966,"groundOffset":0.0102,"labelHeight":14.3365,"markerRadius":4.5}}},"entry-20465":{"id":"entry-20465","kind":"mob","name":"Underbog Frenzy","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-12097","name":"Pierce Armor","spellId":12097,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4147,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"plant","model":{"url":"/assets/game/dungeons/underbog/creatures/display-14528-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.2475,"markerRadius":2.0673}}},"entry-17770":{"id":"entry-17770","kind":"boss","name":"Hungarfen","title":"Dungeon Boss","hasLoot":true,"combat":{"level":65,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.028576000000001,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31673","name":"Foul Spores","spellId":31673,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6618,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17228-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0179,"labelHeight":25.0888,"markerRadius":4.5}}},"entry-17726":{"id":"entry-17726","kind":"mob","name":"Wrathfin Myrmidon","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31410","name":"Coral Cut","spellId":31410,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6445,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18399-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":11.3474,"markerRadius":1.6791}}},"entry-18105":{"id":"entry-18105","kind":"boss","name":"Ghaz'an","title":"Dungeon Boss","hasLoot":true,"combat":{"level":65,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6013,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17528-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0306,"labelHeight":18.2585,"markerRadius":4.5}}},"entry-17728":{"id":"entry-17728","kind":"mob","name":"Murkblood Tribesman","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6559,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}},{"id":"spell-12057","name":"Strike","spellId":12057,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6559,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17756-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0062,"labelHeight":4.8573,"markerRadius":1.2061}}},"entry-17727":{"id":"entry-17727","kind":"mob","name":"Wrathfin Sentry","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":7398,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7398,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18400-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.7197,"labelHeight":12.4821,"markerRadius":1.8471}}},"entry-17771":{"id":"entry-17771","kind":"mob","name":"Murkblood Oracle","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12248","name":"Amplify Damage","spellId":12248,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7020,"damageMultiplier":1.12},{"id":"spell-31405","name":"Corruption","spellId":31405,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7020,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17648-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0046,"labelHeight":3.6083,"markerRadius":0.8959}}},"entry-17729":{"id":"entry-17729","kind":"mob","name":"Murkblood Spearman","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4878,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}},{"id":"spell-22887","name":"Throw","spellId":22887,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4878,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17757-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0051,"labelHeight":4.0246,"markerRadius":0.9993}}},"entry-17735":{"id":"entry-17735","kind":"mob","name":"Wrathfin Warrior","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":6948,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6948,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18401-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.0034,"labelHeight":7.9432,"markerRadius":1.1754}}},"entry-17730":{"id":"entry-17730","kind":"mob","name":"Murkblood Healer","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-29427","name":"Holy Light","spellId":29427,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5450,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15585","name":"Prayer of Healing","spellId":15585,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5450,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17755-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0046,"labelHeight":3.6083,"markerRadius":0.8959}}},"entry-17732":{"id":"entry-17732","kind":"mob","name":"Lykul Wasp","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32330","name":"Poison Spit","spellId":32330,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5160,"damageMultiplier":1.12},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5160,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18722-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.6453,"markerRadius":2.7814}}},"entry-19632":{"id":"entry-19632","kind":"mob","name":"Lykul Stinger","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34392","name":"Stinger Rage","spellId":34392,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4878,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-19367-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.968,"markerRadius":4.1721}}},"entry-17885":{"id":"entry-17885","kind":"mob","name":"Earthbinder Rayge","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17295-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-17827":{"id":"entry-17827","kind":"mob","name":"Claw","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3200,"damageMultiplier":1},{"id":"spell-31429","name":"Echoing Roar","spellId":31429,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":7202,"damageMultiplier":0.62,"radius":8},{"id":"spell-34298","name":"Maul","spellId":34298,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7202,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-2289-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0362,"labelHeight":2.7013,"markerRadius":1.4722}}},"entry-17826":{"id":"entry-17826","kind":"boss","name":"Swamplord Musel'ek","title":"Dungeon Boss","hasLoot":true,"combat":{"level":65,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-31566","name":"Raptor Strike","spellId":31566,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4462,"damageMultiplier":1.35},{"id":"spell-34974","name":"Multi-Shot","spellId":34974,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4462,"damageMultiplier":1.35},{"id":"spell-31567","name":"Deterrence","spellId":31567,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4462,"damageMultiplier":1.35},{"id":"spell-18813","name":"Knock Away","spellId":18813,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4462,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18570-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0053,"labelHeight":4.1634,"markerRadius":1.0338}}}},"staticSpawns":[{"id":"creature-138300","entityId":"entry-17725","position":[-223.0981,75.4779,-568.8272],"yaw":-3.63028,"spawnMask":3},{"id":"creature-138301","entityId":"entry-17871","position":[-229.6491,75.4673,-550.8414],"yaw":-2.42601,"spawnMask":3},{"id":"creature-138302","entityId":"entry-17725","position":[-219.1751,75.3708,-617.1182],"yaw":-1.36136,"spawnMask":3},{"id":"creature-138303","entityId":"entry-17871","position":[-231.5129,75.0963,-621.2482],"yaw":-2.51327,"spawnMask":3},{"id":"creature-138304","entityId":"entry-17725","position":[-213.9606,74.9471,-559.9762],"yaw":-2.53073,"spawnMask":3},{"id":"creature-138305","entityId":"entry-17725","position":[-151.7703,73.684,-658.6552],"yaw":-1.69053,"spawnMask":3},{"id":"creature-138306","entityId":"entry-17725","position":[-174.1874,73.6852,-557.7102],"yaw":-0.453786,"spawnMask":3},{"id":"creature-138307","entityId":"entry-17725","position":[-162.572,73.6851,-555.8562],"yaw":-4.7822,"spawnMask":3},{"id":"creature-138308","entityId":"entry-17871","position":[-164.8408,73.6853,-568.9852],"yaw":-1.37881,"spawnMask":3},{"id":"creature-138313","entityId":"entry-17725","position":[-164.9733,73.6849,-636.6072],"yaw":-4.37936,"spawnMask":3},{"id":"creature-138317","entityId":"entry-17725","position":[-175.8723,73.6852,-629.6732],"yaw":-4.36572,"spawnMask":3},{"id":"creature-138319","entityId":"entry-17731","position":[-293.5889,104.3648,-438.5112],"yaw":-2.58309,"spawnMask":3},{"id":"creature-138320","entityId":"entry-17731","position":[-299.9549,104.5452,-451.3908],"yaw":-0.383972,"spawnMask":3},{"id":"creature-138322","entityId":"entry-17731","position":[-316.2739,104.2952,-457.2361],"yaw":-4.67748,"spawnMask":3},{"id":"creature-138323","entityId":"entry-17882","position":[-313.2249,105.7814,-443.9804],"yaw":-4.2237,"spawnMask":3},{"id":"creature-138324","entityId":"entry-17725","position":[-243.4366,73.7343,-698.3522],"yaw":-1.22173,"spawnMask":3},{"id":"creature-138325","entityId":"entry-17725","position":[-153.7976,73.6007,-690.4182],"yaw":-1.55806,"spawnMask":3},{"id":"creature-138326","entityId":"entry-17724","position":[-226.1649,75.402,-608.6692],"yaw":-4.94275,"spawnMask":3},{"id":"creature-138330","entityId":"entry-17724","position":[-149.101,73.6017,-565.1402],"yaw":-4.94091,"spawnMask":3},{"id":"creature-138331","entityId":"entry-17724","position":[-151.1844,73.6017,-570.3472],"yaw":-4.91554,"spawnMask":3},{"id":"creature-138332","entityId":"entry-17725","position":[-117.9162,73.6822,-699.7002],"yaw":-0.471239,"spawnMask":3},{"id":"creature-138333","entityId":"entry-17871","position":[-108.587,73.682,-693.0262],"yaw":-0.977384,"spawnMask":3},{"id":"creature-138334","entityId":"entry-17724","position":[-170.0175,73.6015,-626.1852],"yaw":-0.6916,"spawnMask":3},{"id":"creature-138335","entityId":"entry-17725","position":[-113.8431,73.6822,-710.6252],"yaw":-5.91667,"spawnMask":3},{"id":"creature-138337","entityId":"entry-17723","position":[-180.2848,73.6024,-661.1692],"yaw":-4.59363,"spawnMask":3},{"id":"creature-138339","entityId":"entry-17871","position":[-35.3489,74.2947,-674.7982],"yaw":-3.74792,"spawnMask":3},{"id":"creature-138340","entityId":"entry-17871","position":[-31.2329,74.3319,-676.8542],"yaw":-3.85887,"spawnMask":3},{"id":"creature-138342","entityId":"entry-17724","position":[-196.3513,73.6024,-668.5312],"yaw":-5.49126,"spawnMask":3},{"id":"creature-138343","entityId":"entry-17724","position":[-146.9826,73.6005,-657.3242],"yaw":-2.78146,"spawnMask":3},{"id":"creature-138346","entityId":"entry-17724","position":[-151.6913,73.6005,-680.0182],"yaw":-4.55969,"spawnMask":3},{"id":"creature-138349","entityId":"entry-17724","position":[-230.774,73.6791,-693.6752],"yaw":-4.21724,"spawnMask":3},{"id":"creature-138351","entityId":"entry-17724","position":[-227.4641,73.6587,-703.9092],"yaw":-6.08951,"spawnMask":3},{"id":"creature-138353","entityId":"entry-20465","position":[-201.7775,56.4738,-723.9612],"yaw":-6.00643,"spawnMask":3},{"id":"creature-138354","entityId":"entry-20465","position":[-207.1744,56.4738,-734.7622],"yaw":-0.610912,"spawnMask":3},{"id":"creature-138355","entityId":"entry-20465","position":[-170.7167,56.4738,-738.1622],"yaw":-0.467365,"spawnMask":3},{"id":"creature-138356","entityId":"entry-20465","position":[-279.3339,59.1613,-732.2102],"yaw":-3.66222,"spawnMask":3},{"id":"creature-138357","entityId":"entry-20465","position":[-292.3839,59.9563,-725.1812],"yaw":-3.31704,"spawnMask":3},{"id":"creature-138359","entityId":"entry-20465","position":[-178.6532,56.4738,-757.3032],"yaw":-5.34437,"spawnMask":3},{"id":"creature-138360","entityId":"entry-20465","position":[-153.876,56.9261,-768.9692],"yaw":-0.592655,"spawnMask":3},{"id":"creature-138363","entityId":"entry-20465","position":[-134.5214,56.7724,-773.9402],"yaw":-0.806268,"spawnMask":3},{"id":"creature-138365","entityId":"entry-20465","position":[-121.0747,56.7724,-763.9502],"yaw":-2.00346,"spawnMask":3},{"id":"creature-138367","entityId":"entry-17770","position":[-48.4489,115.0015,-841.7322],"yaw":-1.39626,"spawnMask":3},{"id":"creature-138369","entityId":"entry-20465","position":[-105.5328,56.7724,-784.9702],"yaw":-4.49099,"spawnMask":3},{"id":"creature-138370","entityId":"entry-17724","position":[-78.3106,79.4727,-735.3832],"yaw":-0.329814,"spawnMask":3},{"id":"creature-138371","entityId":"entry-20465","position":[-124.1824,56.7951,-801.8102],"yaw":-2.51131,"spawnMask":3},{"id":"creature-138372","entityId":"entry-17724","position":[-78.3106,79.4727,-735.3832],"yaw":-0.329814,"spawnMask":3},{"id":"creature-138374","entityId":"entry-17724","position":[-175.8674,107.0869,-799.9542],"yaw":-0.968653,"spawnMask":3},{"id":"creature-138375","entityId":"entry-17724","position":[-175.8674,107.0869,-799.9542],"yaw":-0.968653,"spawnMask":3},{"id":"creature-138376","entityId":"entry-17724","position":[-175.8674,107.0869,-799.9542],"yaw":-0.968653,"spawnMask":3},{"id":"creature-138378","entityId":"entry-17723","position":[-71.9041,111.0866,-801.8822],"yaw":-1.65806,"spawnMask":3},{"id":"creature-138380","entityId":"entry-17723","position":[-39.8719,111.4819,-795.2202],"yaw":-0.994838,"spawnMask":3},{"id":"creature-138382","entityId":"entry-20465","position":[-107.9681,57.9495,-848.4802],"yaw":-2.97801,"spawnMask":3},{"id":"creature-138383","entityId":"entry-20465","position":[-94.5712,48.3862,-866.7412],"yaw":-1.16741,"spawnMask":3},{"id":"creature-138384","entityId":"entry-17723","position":[-175.5588,105.1997,-835.8902],"yaw":-0.927696,"spawnMask":3},{"id":"creature-138385","entityId":"entry-20465","position":[-150.1192,50.3835,-854.0612],"yaw":-4.10152,"spawnMask":3},{"id":"creature-138386","entityId":"entry-20465","position":[-186.3529,57.8696,-839.1742],"yaw":-4.10736,"spawnMask":3},{"id":"creature-138387","entityId":"entry-20465","position":[-178.7632,55.7377,-879.1902],"yaw":-3.52745,"spawnMask":3},{"id":"creature-138389","entityId":"entry-20465","position":[-214.425,56.1335,-848.8802],"yaw":-1.05968,"spawnMask":3},{"id":"creature-138390","entityId":"entry-17723","position":[-247.4373,111.4475,-837.6752],"yaw":-6.08462,"spawnMask":3},{"id":"creature-138392","entityId":"entry-18105","position":[-363.4729,121.6716,-878.1072],"yaw":-4.91,"spawnMask":3},{"id":"creature-138393","entityId":"entry-17726","position":[-268.0052,114.6473,-851.9472],"yaw":-5.78121,"spawnMask":3},{"id":"creature-138394","entityId":"entry-20465","position":[-253.0494,57.0085,-854.0542],"yaw":-4.01895,"spawnMask":3},{"id":"creature-138395","entityId":"entry-20465","position":[-284.0349,59.953,-793.9362],"yaw":-1.86689,"spawnMask":3},{"id":"creature-138396","entityId":"entry-20465","position":[-280.8359,59.1613,-757.9142],"yaw":-4.81397,"spawnMask":3},{"id":"creature-138397","entityId":"entry-20465","position":[-310.2539,59.953,-752.1912],"yaw":-4.40045,"spawnMask":3},{"id":"creature-138398","entityId":"entry-20465","position":[-308.3419,59.953,-805.6792],"yaw":-5.04516,"spawnMask":3},{"id":"creature-138399","entityId":"entry-20465","position":[-300.0089,59.953,-842.5372],"yaw":-3.02631,"spawnMask":3},{"id":"creature-138400","entityId":"entry-17728","position":[-348.8269,126.2923,-844.4442],"yaw":-5.18363,"spawnMask":3},{"id":"creature-138401","entityId":"entry-17727","position":[-320.7539,126.7496,-870.8172],"yaw":-2.93215,"spawnMask":3},{"id":"creature-138402","entityId":"entry-17771","position":[-353.6019,126.2913,-840.6892],"yaw":-5.68977,"spawnMask":3},{"id":"creature-138403","entityId":"entry-17728","position":[-352.0929,126.3071,-843.6962],"yaw":-5.39307,"spawnMask":3},{"id":"creature-138404","entityId":"entry-17727","position":[-317.9169,126.7596,-877.9212],"yaw":-2.79253,"spawnMask":3},{"id":"creature-138405","entityId":"entry-20465","position":[-280.1869,51.8002,-886.8502],"yaw":-2.14659,"spawnMask":3},{"id":"creature-138406","entityId":"entry-17729","position":[-341.0749,150.4508,-855.5882],"yaw":-5.91667,"spawnMask":3},{"id":"creature-138407","entityId":"entry-17728","position":[-342.4569,150.5248,-860.4852],"yaw":-5.70723,"spawnMask":3},{"id":"creature-138408","entityId":"entry-17728","position":[-346.9079,126.3953,-865.6092],"yaw":-2.67035,"spawnMask":3},{"id":"creature-138409","entityId":"entry-17726","position":[-356.8839,126.2408,-842.2602],"yaw":-3.80585,"spawnMask":3},{"id":"creature-138410","entityId":"entry-17735","position":[-333.6929,150.5793,-882.3082],"yaw":-0.0698132,"spawnMask":3},{"id":"creature-138412","entityId":"entry-17730","position":[-351.3539,126.4206,-864.0812],"yaw":-2.89725,"spawnMask":3},{"id":"creature-138413","entityId":"entry-17728","position":[-346.0589,150.4942,-852.9472],"yaw":-0.122173,"spawnMask":3},{"id":"creature-138414","entityId":"entry-17771","position":[-328.5649,150.4837,-882.6822],"yaw":0,"spawnMask":3},{"id":"creature-138415","entityId":"entry-17735","position":[-347.2269,150.56,-857.2802],"yaw":-6.16101,"spawnMask":3},{"id":"creature-138416","entityId":"entry-17771","position":[-332.4119,150.5402,-877.9482],"yaw":-0.890118,"spawnMask":3},{"id":"creature-138417","entityId":"entry-17729","position":[-331.2709,126.3453,-892.6442],"yaw":-2.04204,"spawnMask":3},{"id":"creature-138418","entityId":"entry-17728","position":[-336.3479,126.4182,-891.6332],"yaw":-2.04204,"spawnMask":3},{"id":"creature-138419","entityId":"entry-17730","position":[-327.9829,126.3255,-897.2332],"yaw":-1.64061,"spawnMask":3},{"id":"creature-138420","entityId":"entry-17771","position":[-345.5989,126.405,-869.6932],"yaw":-2.9147,"spawnMask":3},{"id":"creature-138421","entityId":"entry-17728","position":[-333.3699,150.594,-888.4062],"yaw":-5.98648,"spawnMask":3},{"id":"creature-138422","entityId":"entry-17735","position":[-332.4899,126.4037,-897.9902],"yaw":-2.35619,"spawnMask":3},{"id":"creature-138424","entityId":"entry-17726","position":[-343.3269,150.663,-881.8152],"yaw":-4.59502,"spawnMask":3},{"id":"creature-138425","entityId":"entry-17730","position":[-366.9549,150.6005,-842.4282],"yaw":-5.09636,"spawnMask":3},{"id":"creature-138426","entityId":"entry-20465","position":[-357.8279,103.3516,-902.4132],"yaw":-1.46744,"spawnMask":3},{"id":"creature-138427","entityId":"entry-20465","position":[-375.2939,114.8447,-869.0882],"yaw":-6.27617,"spawnMask":3},{"id":"creature-138428","entityId":"entry-17771","position":[-371.1389,150.5621,-837.1422],"yaw":-5.96903,"spawnMask":3},{"id":"creature-138429","entityId":"entry-17728","position":[-372.0479,150.6516,-842.3372],"yaw":-5.88176,"spawnMask":3},{"id":"creature-138430","entityId":"entry-20465","position":[-370.1269,81.6198,-868.4962],"yaw":-2.2491,"spawnMask":3},{"id":"creature-138431","entityId":"entry-20465","position":[-380.3409,114.8447,-857.0812],"yaw":-2.46451,"spawnMask":3},{"id":"creature-138432","entityId":"entry-20465","position":[-376.0679,114.8447,-859.4542],"yaw":-2.55844,"spawnMask":3},{"id":"creature-138433","entityId":"entry-20465","position":[-376.4469,81.6198,-869.2722],"yaw":-3.07389,"spawnMask":3},{"id":"creature-138434","entityId":"entry-20465","position":[-391.7929,114.8447,-904.2892],"yaw":-5.60281,"spawnMask":3},{"id":"creature-138435","entityId":"entry-20465","position":[-388.9319,117.4262,-924.9722],"yaw":-3.29408,"spawnMask":3},{"id":"creature-138436","entityId":"entry-20465","position":[-394.3559,81.6198,-898.7472],"yaw":-4.67302,"spawnMask":3},{"id":"creature-138437","entityId":"entry-20465","position":[-402.0149,105.5882,-900.0242],"yaw":-2.29491,"spawnMask":3},{"id":"creature-138438","entityId":"entry-17728","position":[-404.0479,126.3152,-828.1902],"yaw":-0.382828,"spawnMask":3},{"id":"creature-138439","entityId":"entry-20465","position":[-413.0059,104.0551,-903.5942],"yaw":-2.01293,"spawnMask":3},{"id":"creature-138440","entityId":"entry-17728","position":[-404.9139,126.319,-828.1842],"yaw":-0.52073,"spawnMask":3},{"id":"creature-138442","entityId":"entry-17729","position":[-406.4969,126.3153,-827.2902],"yaw":-0.54421,"spawnMask":3},{"id":"creature-138443","entityId":"entry-20465","position":[-384.9979,91.1063,-925.6622],"yaw":-3.3699,"spawnMask":3},{"id":"creature-138444","entityId":"entry-20465","position":[-362.7519,85.4295,-946.9382],"yaw":-2.0469,"spawnMask":3},{"id":"creature-138446","entityId":"entry-20465","position":[-418.6119,111.0645,-904.5242],"yaw":-2.07523,"spawnMask":3},{"id":"creature-138447","entityId":"entry-20465","position":[-415.0329,104.15,-908.9802],"yaw":-2.08277,"spawnMask":3},{"id":"creature-138448","entityId":"entry-20465","position":[-426.5039,84.908,-871.4862],"yaw":-0.72567,"spawnMask":3},{"id":"creature-138449","entityId":"entry-20465","position":[-429.6689,125.1015,-835.5022],"yaw":-2.62365,"spawnMask":3},{"id":"creature-138450","entityId":"entry-20465","position":[-417.9669,70.3578,-836.3892],"yaw":-0.516416,"spawnMask":3},{"id":"creature-138452","entityId":"entry-17728","position":[-430.1399,150.7496,-835.6912],"yaw":-4.04916,"spawnMask":3},{"id":"creature-138453","entityId":"entry-20465","position":[-414.1029,70.3578,-829.7852],"yaw":-5.90524,"spawnMask":3},{"id":"creature-138454","entityId":"entry-17730","position":[-429.2179,150.5175,-820.7812],"yaw":-1.22173,"spawnMask":3},{"id":"creature-138455","entityId":"entry-17728","position":[-440.8679,150.5356,-825.6692],"yaw":-0.296706,"spawnMask":3},{"id":"creature-138456","entityId":"entry-20465","position":[-439.3549,81.6198,-886.5012],"yaw":-0.909695,"spawnMask":3},{"id":"creature-138457","entityId":"entry-20465","position":[-433.2329,104.9835,-914.5032],"yaw":-3.89402,"spawnMask":3},{"id":"creature-138458","entityId":"entry-20465","position":[-455.9809,96.9072,-888.9952],"yaw":-1.80491,"spawnMask":3},{"id":"creature-138459","entityId":"entry-20465","position":[-459.1739,70.3578,-845.3362],"yaw":-2.20384,"spawnMask":3},{"id":"creature-138460","entityId":"entry-20465","position":[-456.1749,104.9835,-890.5282],"yaw":-6.09494,"spawnMask":3},{"id":"creature-138461","entityId":"entry-20465","position":[-379.2559,50.2194,-769.4542],"yaw":-2.76951,"spawnMask":3},{"id":"creature-138462","entityId":"entry-17731","position":[-473.2609,98.6831,-775.7262],"yaw":-2.45959,"spawnMask":3},{"id":"creature-138463","entityId":"entry-17731","position":[-473.2609,98.6831,-775.7262],"yaw":-2.45959,"spawnMask":3},{"id":"creature-138464","entityId":"entry-17731","position":[-470.1439,98.0786,-768.2882],"yaw":-5.53377,"spawnMask":3},{"id":"creature-138465","entityId":"entry-17731","position":[-478.0909,96.992,-767.2172],"yaw":-0.166781,"spawnMask":3},{"id":"creature-138466","entityId":"entry-20465","position":[-417.8169,113.0738,-939.7772],"yaw":-3.27228,"spawnMask":3},{"id":"creature-138467","entityId":"entry-20465","position":[-403.9359,113.0738,-957.9762],"yaw":-3.6116,"spawnMask":3},{"id":"creature-138468","entityId":"entry-20465","position":[-394.4429,81.6198,-943.0712],"yaw":-2.74419,"spawnMask":3},{"id":"creature-138469","entityId":"entry-20465","position":[-394.3659,83.8819,-968.6612],"yaw":-3.11224,"spawnMask":3},{"id":"creature-138470","entityId":"entry-20465","position":[-418.1029,113.0738,-951.0862],"yaw":-3.52672,"spawnMask":3},{"id":"creature-138471","entityId":"entry-20465","position":[-462.5829,81.6198,-919.7472],"yaw":-4.81871,"spawnMask":3},{"id":"creature-138475","entityId":"entry-17731","position":[-466.8579,98.8573,-750.6792],"yaw":-2.99704,"spawnMask":3},{"id":"creature-138476","entityId":"entry-17732","position":[-444.7959,99.3013,-745.3032],"yaw":-2.48241,"spawnMask":3},{"id":"creature-138477","entityId":"entry-19632","position":[-448.4709,100.7857,-740.5602],"yaw":-2.48241,"spawnMask":3},{"id":"creature-138478","entityId":"entry-17885","position":[-466.4899,128.2862,-815.4792],"yaw":-5.5676,"spawnMask":3},{"id":"creature-138480","entityId":"entry-17731","position":[-439.2269,103.9632,-724.6012],"yaw":-2.01385,"spawnMask":3},{"id":"creature-138482","entityId":"entry-17731","position":[-431.0619,102.6685,-720.1022],"yaw":-1.78291,"spawnMask":3},{"id":"creature-138483","entityId":"entry-17731","position":[-437.1399,104.3761,-712.1412],"yaw":-4.32236,"spawnMask":3},{"id":"creature-138484","entityId":"entry-17731","position":[-443.1419,107.5659,-675.8472],"yaw":-2.01795,"spawnMask":3},{"id":"creature-138486","entityId":"entry-17732","position":[-436.7599,106.9973,-671.3342],"yaw":-5.8948,"spawnMask":3},{"id":"creature-138487","entityId":"entry-17731","position":[-441.0289,107.1663,-663.7662],"yaw":-0.156309,"spawnMask":3},{"id":"creature-138490","entityId":"entry-17732","position":[-432.5429,106.623,-663.3242],"yaw":-4.80471,"spawnMask":3},{"id":"creature-138491","entityId":"entry-19632","position":[-440.4949,107.13,-662.4402],"yaw":-4.80471,"spawnMask":3},{"id":"creature-138492","entityId":"entry-17731","position":[-446.4449,106.8879,-641.9562],"yaw":-3.9968,"spawnMask":3},{"id":"creature-138493","entityId":"entry-17731","position":[-442.7699,107.1063,-637.8412],"yaw":-3.64774,"spawnMask":3},{"id":"creature-138494","entityId":"entry-17732","position":[-423.7499,106.3216,-636.8122],"yaw":-4.08117,"spawnMask":3},{"id":"creature-138495","entityId":"entry-17731","position":[-415.0089,104.9723,-636.0552],"yaw":-1.82454,"spawnMask":3},{"id":"creature-138497","entityId":"entry-17731","position":[-418.8759,106.1109,-624.5862],"yaw":-1.22529,"spawnMask":3},{"id":"creature-138499","entityId":"entry-17827","position":[-459.0479,107.9566,-582.8062],"yaw":-2.49582,"spawnMask":3},{"id":"creature-138500","entityId":"entry-17826","position":[-458.3749,107.8389,-574.9372],"yaw":-6.07879,"spawnMask":3},{"id":"creature-138501","entityId":"entry-17731","position":[-390.2169,105.7814,-486.3766],"yaw":-5.8294,"spawnMask":3},{"id":"creature-138507","entityId":"entry-17731","position":[-348.7709,105.0105,-452.6765],"yaw":-4.90438,"spawnMask":3},{"id":"creature-138508","entityId":"entry-17731","position":[-373.0759,105.7814,-460.3279],"yaw":-4.46804,"spawnMask":3},{"id":"creature-138513","entityId":"entry-17731","position":[-329.1899,105.2031,-425.0886],"yaw":-1.90241,"spawnMask":3},{"id":"creature-138514","entityId":"entry-17731","position":[-370.1149,105.7814,-421.2653],"yaw":-0.925025,"spawnMask":3},{"id":"creature-138515","entityId":"entry-17731","position":[-378.8329,105.7814,-424.9876],"yaw":-2.37365,"spawnMask":3},{"id":"creature-138516","entityId":"entry-17731","position":[-370.0219,105.7814,-415.7231],"yaw":-4.50295,"spawnMask":3},{"id":"creature-138518","entityId":"entry-17731","position":[-307.7959,103.387,-413.2376],"yaw":-3.87463,"spawnMask":3}],"roamingPacks":[{"id":"patrol-138309","name":"Underbat Patrol","speed":1.15,"pathId":1383090,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-240.6208,75.3847,-518.2917],[-230.2626,75.3828,-501.6093],[-236.1843,75.3804,-541.6658],[-223.7927,75.3909,-556.9682]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138310","name":"Underbat Patrol","speed":1.15,"pathId":1383100,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-221.2353,75.391,-497.8471],[-234.7316,75.3866,-510.173]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138328","name":"Underbog Lord Patrol","speed":1.15,"pathId":1383280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-330.9179,105.1982,-523.4667],[-322.8189,104.4882,-547.001],[-346.3849,104.6514,-514.4061],[-359.9759,104.7689,-505.6128],[-346.3849,104.6514,-514.4061]],"members":[{"id":"member","entityId":"entry-17734","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138336","name":"Underbat Patrol","speed":1.15,"pathId":1383360,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-223.1287,74.8312,-624.3042],[-205.4026,74.0597,-639.1002],[-187.2771,73.709,-645.5522],[-172.677,73.6016,-638.2032],[-157.9432,73.6017,-603.1582],[-151.7936,73.6017,-570.9182],[-157.9432,73.6017,-603.1582],[-172.677,73.6016,-638.2032],[-187.2771,73.709,-645.5522],[-205.4026,74.0597,-639.1002]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138338","name":"Underbat Patrol","speed":1.15,"pathId":1383380,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-144.5689,73.6003,-663.5902],[-161.0988,73.601,-661.2782],[-160.2019,73.6011,-651.8732],[-145.9277,73.6008,-649.6062],[-144.5689,73.6003,-663.5902],[-161.0988,73.601,-661.2782],[-160.2019,73.6011,-651.8732],[-145.9277,73.6008,-649.6062],[-144.5689,73.6003,-663.5902],[-161.0988,73.601,-661.2782],[-160.2019,73.6011,-651.8732],[-145.9277,73.6008,-649.6062],[-144.5689,73.6003,-663.5902],[-152.8578,73.6004,-667.5202],[-160.2019,73.6011,-651.8732],[-152.9842,73.6011,-647.4282],[-142.1481,73.6005,-655.6232],[-152.8578,73.6004,-667.5202],[-160.2019,73.6011,-651.8732],[-152.9842,73.6011,-647.4282],[-142.1481,73.6005,-655.6232],[-152.8578,73.6004,-667.5202],[-161.0988,73.601,-661.2782],[-152.9842,73.6011,-647.4282],[-142.1481,73.6005,-655.6232]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138345","name":"Underbat Patrol","speed":1.15,"pathId":1383450,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-197.4849,73.8325,-649.2892],[-204.5202,73.6524,-684.5482],[-221.7998,73.6644,-694.3142],[-197.4413,73.6024,-668.3022]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138347","name":"Underbat Patrol","speed":1.15,"pathId":1383470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-151.8038,73.6005,-682.7522],[-148.8069,73.6005,-698.7602],[-163.8052,73.6013,-693.4372],[-148.8069,73.6005,-698.7602],[-157.5632,73.6011,-700.3432],[-160.3597,73.6012,-684.6262],[-145.7256,73.6001,-689.4902],[-148.8069,73.6005,-698.7602],[-163.8052,73.6013,-693.4372],[-160.3597,73.6012,-684.6262],[-145.7256,73.6001,-689.4902],[-148.8069,73.6005,-698.7602],[-163.8052,73.6013,-693.4372],[-151.8038,73.6005,-682.7522],[-145.7256,73.6001,-689.4902],[-157.5632,73.6011,-700.3432],[-163.8052,73.6013,-693.4372],[-151.8038,73.6005,-682.7522],[-145.7256,73.6001,-689.4902],[-157.5632,73.6011,-700.3432],[-160.3597,73.6012,-684.6262]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138361","name":"Bog Giant Patrol","speed":1.15,"pathId":1383610,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-100.1126,73.5986,-681.9722],[-72.8413,73.7589,-680.8122],[-100.1126,73.5986,-681.9722],[-118.9755,73.599,-679.5872]],"members":[{"id":"member","entityId":"entry-17723","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138362","name":"Bog Giant Patrol","speed":1.15,"pathId":1383620,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-148.6823,108.9569,-795.9902],[-171.0044,109.0618,-776.2582],[-197.3911,110.2756,-757.4702],[-171.0044,109.0618,-776.2582]],"members":[{"id":"member","entityId":"entry-17723","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138364","name":"Bog Giant Patrol","speed":1.15,"pathId":1383640,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-77.4907,73.5999,-755.3042],[-110.5987,73.6007,-742.7832],[-127.1717,73.6001,-722.6062],[-110.5987,73.6007,-742.7832]],"members":[{"id":"member","entityId":"entry-17723","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138368","name":"Underbat Patrol","speed":1.15,"pathId":1383680,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-101.5386,74.6079,-724.0642],[-80.0936,78.4703,-739.4362],[-67.5199,80.0902,-740.4272],[-47.1199,84.2575,-735.9042],[-52.8709,90.3468,-721.0562],[-67.5199,80.0902,-740.4272],[-80.0936,78.4703,-739.4362]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138373","name":"Underbat Patrol","speed":1.15,"pathId":1383730,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-158.7765,106.011,-845.7982],[-150.4339,107.9963,-812.9172],[-176.6328,108.0548,-794.7342],[-175.3666,108.8499,-779.5442],[-165.1002,108.8171,-770.6512],[-149.5902,108.6235,-769.3582],[-138.0203,108.9097,-773.2992],[-130.1,109.461,-784.0222],[-129.0939,109.9351,-798.9632],[-134.4808,109.5662,-813.5082],[-142.4724,110.1401,-833.6552],[-160.1443,106.2677,-830.6082],[-163.9834,106.2619,-812.8952],[-182.6768,105.5625,-806.0882],[-196.3427,105.3857,-819.0822],[-195.089,105.7042,-840.7992],[-182.8652,105.5047,-856.5692]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138379","name":"Underbat Patrol","speed":1.15,"pathId":1383790,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-18.3339,73.1104,-739.1072],[-22.3399,73.6749,-719.0432],[-26.7659,74.2596,-680.7502],[-40.6399,74.2416,-668.7702],[-26.7659,74.2596,-680.7502],[-22.3399,73.6749,-719.0432]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138388","name":"Bog Giant Patrol","speed":1.15,"pathId":1383880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-189.237,110.0284,-761.7422],[-212.2698,110.8264,-746.8772],[-238.0541,110.2179,-737.2532],[-258.6365,110.2643,-739.1222],[-266.7574,110.6647,-764.4702],[-271.2179,111.1135,-797.7722],[-262.8604,111.3512,-813.4392],[-271.2179,111.1135,-797.7722],[-266.7574,110.6647,-764.4702],[-258.6365,110.2643,-739.1222],[-238.0541,110.2179,-737.2532],[-212.2698,110.8264,-746.8772]],"members":[{"id":"member","entityId":"entry-17723","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138391","name":"Wrathfin Myrmidon Patrol","speed":1.15,"pathId":1383910,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-260.3139,112.3736,-844.8732],[-269.2082,114.6925,-849.7552],[-285.7539,120.658,-857.3752],[-311.3719,126.7367,-869.7352],[-285.7539,120.658,-857.3752],[-269.2082,114.6925,-849.7552]],"members":[{"id":"member","entityId":"entry-17726","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138411","name":"Wrathfin Myrmidon Patrol","speed":1.15,"pathId":1384110,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-372.4349,126.2589,-833.8952],[-358.7339,126.2689,-844.6232],[-335.3839,126.2428,-870.8142],[-330.8549,126.2239,-885.6242],[-335.3839,126.2428,-870.8142],[-358.7339,126.2689,-844.6232]],"members":[{"id":"member","entityId":"entry-17726","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138423","name":"Wrathfin Myrmidon Patrol","speed":1.15,"pathId":1384230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-358.2729,150.6404,-857.2712],[-341.3339,150.6093,-877.3382],[-334.4719,150.6233,-905.3742],[-341.3339,150.6093,-877.3382]],"members":[{"id":"member","entityId":"entry-17726","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138445","name":"Wrathfin Warrior Patrol","speed":1.15,"pathId":1384450,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-406.9209,126.3141,-827.0332],[-397.0299,126.3256,-831.6522],[-383.8899,126.2836,-833.1082],[-374.2079,126.2537,-831.9962],[-383.8899,126.2836,-833.1082],[-397.0299,126.3256,-831.6522]],"members":[{"id":"member","entityId":"entry-17735","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138451","name":"Wrathfin Warrior Patrol","speed":1.15,"pathId":1384510,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-441.8739,150.2836,-834.1512],[-434.7699,150.2948,-830.2282],[-426.4039,150.4053,-827.6512],[-419.8519,150.3085,-820.2742],[-426.4039,150.4053,-827.6512],[-434.7699,150.2948,-830.2282]],"members":[{"id":"member","entityId":"entry-17735","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138473","name":"Fen Ray Patrol","speed":1.15,"pathId":1384730,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-496.6189,100.4579,-785.6272],[-510.5179,106.7874,-799.0152],[-512.4189,110.5256,-809.9322],[-496.5609,104.4128,-794.3812],[-473.1019,98.8262,-776.6772],[-470.2479,97.8528,-767.3562],[-480.1389,98.0435,-773.7692],[-496.6189,100.4579,-785.6272],[-510.5179,106.7874,-799.0152],[-512.4189,110.5256,-809.9322],[-504.7569,108.0162,-803.9122],[-496.5609,104.4128,-794.3812],[-473.1019,98.8262,-776.6772],[-469.5479,98.6429,-772.5632],[-480.1389,98.0435,-773.7692]],"members":[{"id":"member","entityId":"entry-17731","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138479","name":"Lykul Wasp Patrol","speed":1.15,"pathId":1384790,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-436.1219,106.9132,-673.3842],[-439.4249,105.6234,-694.0382],[-435.7619,102.6759,-724.1102],[-446.6339,99.981,-742.9312],[-473.0719,97.0087,-763.4162],[-446.6339,99.981,-742.9312],[-435.7619,102.6759,-724.1102],[-439.4249,105.6234,-694.0382]],"members":[{"id":"member","entityId":"entry-17732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138488","name":"Lykul Wasp Patrol","speed":1.15,"pathId":1384880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-438.4549,106.3725,-683.7882],[-435.2089,106.6236,-648.7332],[-421.4439,106.7525,-615.0092],[-435.2089,106.6236,-648.7332]],"members":[{"id":"member","entityId":"entry-17732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138498","name":"Underbog Lord Patrol","speed":1.15,"pathId":1384980,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-386.8479,104.8887,-584.6212],[-363.4079,106.6609,-586.6712],[-339.3389,106.4716,-588.8962],[-328.3229,110.4183,-620.5252],[-339.3389,106.4716,-588.8962],[-363.4079,106.6609,-586.6712]],"members":[{"id":"member","entityId":"entry-17734","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-138367","name":"Hungarfen","position":[-48.4489,115.0015,-841.7322]},{"id":"creature-138392","name":"Ghaz'an","position":[-363.4729,121.6716,-878.1072]},{"id":"creature-138500","name":"Swamplord Musel'ek","position":[-458.3749,107.8389,-574.9372]},{"id":"creature-138323","name":"The Black Stalker","position":[-313.2249,105.7814,-443.9804]}],"objectiveOrder":[{"id":"creature-138367","name":"Hungarfen","position":[-48.4489,115.0015,-841.7322]},{"id":"creature-138392","name":"Ghaz'an","position":[-363.4729,121.6716,-878.1072]},{"id":"creature-138500","name":"Swamplord Musel'ek","position":[-458.3749,107.8389,-574.9372]},{"id":"creature-138323","name":"The Black Stalker","position":[-313.2249,105.7814,-443.9804]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":21509,"id":182054,"map":546,"orientation":5.13311,"phaseMask":1,"position_x":-90.528,"position_y":-401.925,"position_z":36.1527,"rotation0":0,"rotation1":0,"rotation2":0.543866,"rotation3":-0.839172,"spawnMask":3,"spawntimesecs":360,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104330,"id":181270,"map":546,"orientation":4.03171,"phaseMask":1,"position_x":93.5056,"position_y":-248.733,"position_z":-4.49002,"rotation0":0,"rotation1":0,"rotation2":-0.902585,"rotation3":0.430512,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104331,"id":181270,"map":546,"orientation":1.65806,"phaseMask":1,"position_x":137.237,"position_y":-105.671,"position_z":25.2929,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104332,"id":181270,"map":546,"orientation":1.95477,"phaseMask":1,"position_x":203.842,"position_y":27.0237,"position_z":27.5625,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559193,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104333,"id":181270,"map":546,"orientation":0.488691,"phaseMask":1,"position_x":-90.7205,"position_y":-420.499,"position_z":36.0739,"rotation0":0,"rotation1":0,"rotation2":0.241921,"rotation3":0.970296,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104334,"id":181270,"map":546,"orientation":1.78023,"phaseMask":1,"position_x":182.117,"position_y":-143.183,"position_z":29.97,"rotation0":0,"rotation1":0,"rotation2":0.777145,"rotation3":0.629321,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104335,"id":181270,"map":546,"orientation":3.24635,"phaseMask":1,"position_x":272.366,"position_y":-119.92,"position_z":29.8515,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523532,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104336,"id":181270,"map":546,"orientation":4.53786,"phaseMask":1,"position_x":61.0071,"position_y":-373.113,"position_z":33.0967,"rotation0":0,"rotation1":0,"rotation2":-0.766044,"rotation3":0.642789,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104337,"id":181278,"map":546,"orientation":5.02655,"phaseMask":1,"position_x":-2.68117,"position_y":-315.83,"position_z":30.7248,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104338,"id":181278,"map":546,"orientation":4.20625,"phaseMask":1,"position_x":-116.675,"position_y":-210.801,"position_z":-3.94286,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104339,"id":181278,"map":546,"orientation":3.15906,"phaseMask":1,"position_x":62.9603,"position_y":-139.88,"position_z":-2.75016,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104340,"id":181278,"map":546,"orientation":6.23083,"phaseMask":1,"position_x":348.62,"position_y":-457.65,"position_z":27.2505,"rotation0":0,"rotation1":0,"rotation2":-0.0261765,"rotation3":0.999657,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104341,"id":181278,"map":546,"orientation":2.63544,"phaseMask":1,"position_x":-91.5404,"position_y":-300.066,"position_z":-4.53596,"rotation0":0,"rotation1":0,"rotation2":0.968147,"rotation3":0.250381,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104342,"id":181278,"map":546,"orientation":5.58505,"phaseMask":1,"position_x":72.7041,"position_y":-270.414,"position_z":32.2554,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104343,"id":181278,"map":546,"orientation":1.46608,"phaseMask":1,"position_x":-9.05861,"position_y":-93.5046,"position_z":-4.53404,"rotation0":0,"rotation1":0,"rotation2":0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104344,"id":181278,"map":546,"orientation":5.60251,"phaseMask":1,"position_x":15.0907,"position_y":-397.518,"position_z":27.3274,"rotation0":0,"rotation1":0,"rotation2":-0.333807,"rotation3":0.942641,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104345,"id":181278,"map":546,"orientation":0.296705,"phaseMask":1,"position_x":346.822,"position_y":-359.794,"position_z":34.2163,"rotation0":0,"rotation1":0,"rotation2":0.147809,"rotation3":0.989016,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104346,"id":181278,"map":546,"orientation":5.16618,"phaseMask":1,"position_x":-57.5731,"position_y":-223.815,"position_z":-4.5367,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104347,"id":181278,"map":546,"orientation":1.37881,"phaseMask":1,"position_x":24.3616,"position_y":-368.393,"position_z":27.2573,"rotation0":0,"rotation1":0,"rotation2":0.636078,"rotation3":0.771625,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104348,"id":181278,"map":546,"orientation":1.43117,"phaseMask":1,"position_x":-160.595,"position_y":-274.614,"position_z":-4.72734,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104349,"id":181278,"map":546,"orientation":3.56047,"phaseMask":1,"position_x":356.161,"position_y":-519.471,"position_z":31.7733,"rotation0":0,"rotation1":0,"rotation2":-0.978148,"rotation3":0.207912,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104350,"id":181278,"map":546,"orientation":2.87979,"phaseMask":1,"position_x":33.0805,"position_y":-170.199,"position_z":-3.80013,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104351,"id":181278,"map":546,"orientation":2.89725,"phaseMask":1,"position_x":77.4358,"position_y":-75.2255,"position_z":-2.75669,"rotation0":0,"rotation1":0,"rotation2":0.992546,"rotation3":0.12187,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104352,"id":183385,"map":546,"orientation":0.558504,"phaseMask":1,"position_x":-145.452,"position_y":-217.687,"position_z":-3.40478,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104353,"id":183385,"map":546,"orientation":4.76475,"phaseMask":1,"position_x":80.5045,"position_y":-70.984,"position_z":-2.75813,"rotation0":0,"rotation1":0,"rotation2":-0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104354,"id":183385,"map":546,"orientation":3.80482,"phaseMask":1,"position_x":52.3858,"position_y":-188.325,"position_z":-4.27433,"rotation0":0,"rotation1":0,"rotation2":-0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104355,"id":183385,"map":546,"orientation":3.64774,"phaseMask":1,"position_x":-92.5955,"position_y":-254.416,"position_z":23.0712,"rotation0":0,"rotation1":0,"rotation2":-0.968147,"rotation3":0.250381,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104356,"id":183385,"map":546,"orientation":0.174532,"phaseMask":1,"position_x":295.075,"position_y":-124.002,"position_z":29.7138,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104357,"id":183385,"map":546,"orientation":4.27606,"phaseMask":1,"position_x":257.251,"position_y":-263.907,"position_z":24.6426,"rotation0":0,"rotation1":0,"rotation2":-0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104358,"id":183385,"map":546,"orientation":1.23918,"phaseMask":1,"position_x":22.0234,"position_y":-339.981,"position_z":29.1816,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104359,"id":183385,"map":546,"orientation":1.46608,"phaseMask":1,"position_x":246.218,"position_y":-232.518,"position_z":25.9543,"rotation0":0,"rotation1":0,"rotation2":0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104360,"id":183385,"map":546,"orientation":5.07891,"phaseMask":1,"position_x":-98.4295,"position_y":-312.399,"position_z":-3.89505,"rotation0":0,"rotation1":0,"rotation2":-0.566406,"rotation3":0.824126,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104361,"id":183385,"map":546,"orientation":1.74533,"phaseMask":1,"position_x":74.1957,"position_y":-402.898,"position_z":33.6921,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104362,"id":183385,"map":546,"orientation":3.00195,"phaseMask":1,"position_x":-66.7795,"position_y":-240.119,"position_z":-4.53713,"rotation0":0,"rotation1":0,"rotation2":0.997563,"rotation3":0.0697661,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104363,"id":183385,"map":546,"orientation":0.994837,"phaseMask":1,"position_x":144.881,"position_y":-69.8086,"position_z":27.4349,"rotation0":0,"rotation1":0,"rotation2":0.477159,"rotation3":0.878817,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104364,"id":183385,"map":546,"orientation":1.20428,"phaseMask":1,"position_x":97.2424,"position_y":-216.338,"position_z":30.534,"rotation0":0,"rotation1":0,"rotation2":0.566406,"rotation3":0.824126,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104365,"id":183385,"map":546,"orientation":4.08407,"phaseMask":1,"position_x":-23.6591,"position_y":-109.071,"position_z":-4.53406,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104366,"id":183385,"map":546,"orientation":5.18363,"phaseMask":1,"position_x":1.73994,"position_y":-246.563,"position_z":-4.53322,"rotation0":0,"rotation1":0,"rotation2":-0.522498,"rotation3":0.85264,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104367,"id":183385,"map":546,"orientation":1.22173,"phaseMask":1,"position_x":116.041,"position_y":4.26817,"position_z":27.5625,"rotation0":0,"rotation1":0,"rotation2":0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104368,"id":183385,"map":546,"orientation":4.18879,"phaseMask":1,"position_x":105.351,"position_y":-295.466,"position_z":32.2288,"rotation0":0,"rotation1":0,"rotation2":-0.866025,"rotation3":0.500001,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104369,"id":183385,"map":546,"orientation":4.36332,"phaseMask":1,"position_x":57.5122,"position_y":-228.652,"position_z":-4.47403,"rotation0":0,"rotation1":0,"rotation2":-0.819152,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104370,"id":183385,"map":546,"orientation":1.65806,"phaseMask":1,"position_x":-151.674,"position_y":-308.373,"position_z":-4.80901,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104371,"id":183385,"map":546,"orientation":1.72787,"phaseMask":1,"position_x":329.194,"position_y":-478.867,"position_z":50.5704,"rotation0":0,"rotation1":0,"rotation2":0.760406,"rotation3":0.649449,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104372,"id":181275,"map":546,"orientation":3.89209,"phaseMask":1,"position_x":146.34,"position_y":-150.24,"position_z":30.7501,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104373,"id":181276,"map":546,"orientation":3.89209,"phaseMask":1,"position_x":146.34,"position_y":-150.24,"position_z":30.7501,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104374,"id":181275,"map":546,"orientation":1.43117,"phaseMask":1,"position_x":346.318,"position_y":-336.01,"position_z":28.1087,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104375,"id":181276,"map":546,"orientation":1.43117,"phaseMask":1,"position_x":346.318,"position_y":-336.01,"position_z":28.1087,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104376,"id":181275,"map":546,"orientation":2.70526,"phaseMask":1,"position_x":278.916,"position_y":-236.037,"position_z":29.1704,"rotation0":0,"rotation1":0,"rotation2":0.976295,"rotation3":0.216442,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104377,"id":181276,"map":546,"orientation":2.70526,"phaseMask":1,"position_x":278.916,"position_y":-236.037,"position_z":29.1704,"rotation0":0,"rotation1":0,"rotation2":0.976295,"rotation3":0.216442,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104378,"id":181275,"map":546,"orientation":3.45576,"phaseMask":1,"position_x":309.742,"position_y":-299.783,"position_z":21.0056,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104379,"id":181276,"map":546,"orientation":3.45576,"phaseMask":1,"position_x":309.742,"position_y":-299.783,"position_z":21.0056,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104380,"id":181275,"map":546,"orientation":4.03171,"phaseMask":1,"position_x":376.429,"position_y":-453.141,"position_z":33.1995,"rotation0":0,"rotation1":0,"rotation2":-0.902585,"rotation3":0.430512,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104381,"id":181276,"map":546,"orientation":4.03171,"phaseMask":1,"position_x":376.429,"position_y":-453.141,"position_z":33.1995,"rotation0":0,"rotation1":0,"rotation2":-0.902585,"rotation3":0.430512,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104382,"id":181275,"map":546,"orientation":3.00195,"phaseMask":1,"position_x":58.3593,"position_y":-28.0166,"position_z":20.8195,"rotation0":0,"rotation1":0,"rotation2":0.997563,"rotation3":0.0697661,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104383,"id":181276,"map":546,"orientation":3.00195,"phaseMask":1,"position_x":58.3593,"position_y":-28.0166,"position_z":20.8195,"rotation0":0,"rotation1":0,"rotation2":0.997563,"rotation3":0.0697661,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104384,"id":181275,"map":546,"orientation":3.50812,"phaseMask":1,"position_x":136.348,"position_y":53.4126,"position_z":27.5625,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104385,"id":181276,"map":546,"orientation":3.50812,"phaseMask":1,"position_x":136.348,"position_y":53.4126,"position_z":27.5625,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104386,"id":181556,"map":546,"orientation":3.97935,"phaseMask":1,"position_x":-36.6434,"position_y":-199.135,"position_z":-4.53535,"rotation0":0,"rotation1":0,"rotation2":-0.913545,"rotation3":0.406738,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104387,"id":181569,"map":546,"orientation":3.97935,"phaseMask":1,"position_x":-36.6434,"position_y":-199.135,"position_z":-4.53535,"rotation0":0,"rotation1":0,"rotation2":-0.913545,"rotation3":0.406738,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104388,"id":181557,"map":546,"orientation":3.97935,"phaseMask":1,"position_x":-36.6434,"position_y":-199.135,"position_z":-4.53535,"rotation0":0,"rotation1":0,"rotation2":-0.913545,"rotation3":0.406738,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104389,"id":181556,"map":546,"orientation":3.85718,"phaseMask":1,"position_x":288.463,"position_y":-222.083,"position_z":34.2095,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.35021,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104390,"id":181569,"map":546,"orientation":3.85718,"phaseMask":1,"position_x":288.463,"position_y":-222.083,"position_z":34.2095,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.35021,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104391,"id":181557,"map":546,"orientation":3.85718,"phaseMask":1,"position_x":288.463,"position_y":-222.083,"position_z":34.2095,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.35021,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104392,"id":181556,"map":546,"orientation":4.08407,"phaseMask":1,"position_x":272.727,"position_y":-307.432,"position_z":22.2222,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104393,"id":181569,"map":546,"orientation":4.08407,"phaseMask":1,"position_x":272.727,"position_y":-307.432,"position_z":22.2222,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104394,"id":181557,"map":546,"orientation":4.08407,"phaseMask":1,"position_x":272.727,"position_y":-307.432,"position_z":22.2222,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104395,"id":181556,"map":546,"orientation":5.25344,"phaseMask":1,"position_x":-157.746,"position_y":-233.748,"position_z":-3.59433,"rotation0":0,"rotation1":0,"rotation2":-0.492423,"rotation3":0.870356,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104396,"id":181569,"map":546,"orientation":5.25344,"phaseMask":1,"position_x":-157.746,"position_y":-233.748,"position_z":-3.59433,"rotation0":0,"rotation1":0,"rotation2":-0.492423,"rotation3":0.870356,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104397,"id":181557,"map":546,"orientation":5.25344,"phaseMask":1,"position_x":-157.746,"position_y":-233.748,"position_z":-3.59433,"rotation0":0,"rotation1":0,"rotation2":-0.492423,"rotation3":0.870356,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104398,"id":181556,"map":546,"orientation":0.174532,"phaseMask":1,"position_x":15.6076,"position_y":-257.257,"position_z":-30.4535,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104399,"id":181569,"map":546,"orientation":0.174532,"phaseMask":1,"position_x":15.6076,"position_y":-257.257,"position_z":-30.4535,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104400,"id":181557,"map":546,"orientation":0.174532,"phaseMask":1,"position_x":15.6076,"position_y":-257.257,"position_z":-30.4535,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104401,"id":181556,"map":546,"orientation":5.3058,"phaseMask":1,"position_x":-121.527,"position_y":-204.633,"position_z":-3.71037,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104402,"id":181569,"map":546,"orientation":5.3058,"phaseMask":1,"position_x":-121.527,"position_y":-204.633,"position_z":-3.71037,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104403,"id":181557,"map":546,"orientation":5.3058,"phaseMask":1,"position_x":-121.527,"position_y":-204.633,"position_z":-3.71037,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104404,"id":181556,"map":546,"orientation":2.16421,"phaseMask":1,"position_x":69.0821,"position_y":-220.409,"position_z":-4.42387,"rotation0":0,"rotation1":0,"rotation2":0.882947,"rotation3":0.469473,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104405,"id":181569,"map":546,"orientation":2.16421,"phaseMask":1,"position_x":69.0821,"position_y":-220.409,"position_z":-4.42387,"rotation0":0,"rotation1":0,"rotation2":0.882947,"rotation3":0.469473,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104406,"id":181557,"map":546,"orientation":2.16421,"phaseMask":1,"position_x":69.0821,"position_y":-220.409,"position_z":-4.42387,"rotation0":0,"rotation1":0,"rotation2":0.882947,"rotation3":0.469473,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104407,"id":181556,"map":546,"orientation":6.21337,"phaseMask":1,"position_x":269.613,"position_y":-160.235,"position_z":31.2132,"rotation0":0,"rotation1":0,"rotation2":-0.0348988,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104408,"id":181569,"map":546,"orientation":6.21337,"phaseMask":1,"position_x":269.613,"position_y":-160.235,"position_z":31.2132,"rotation0":0,"rotation1":0,"rotation2":-0.0348988,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104409,"id":181557,"map":546,"orientation":6.21337,"phaseMask":1,"position_x":269.613,"position_y":-160.235,"position_z":31.2132,"rotation0":0,"rotation1":0,"rotation2":-0.0348988,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104410,"id":181556,"map":546,"orientation":5.02655,"phaseMask":1,"position_x":-72.0217,"position_y":-249.287,"position_z":-0.160408,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104411,"id":181569,"map":546,"orientation":5.02655,"phaseMask":1,"position_x":-72.0217,"position_y":-249.287,"position_z":-0.160408,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104412,"id":181557,"map":546,"orientation":5.02655,"phaseMask":1,"position_x":-72.0217,"position_y":-249.287,"position_z":-0.160408,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150016,"id":184200,"map":546,"orientation":5.3513,"phaseMask":1,"position_x":6.033,"position_y":-12.38,"position_z":-2.7533,"rotation0":0,"rotation1":0,"rotation2":0.449265,"rotation3":-0.893398,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150017,"id":184199,"map":546,"orientation":5.3513,"phaseMask":1,"position_x":6.033,"position_y":-12.38,"position_z":-2.7533,"rotation0":0,"rotation1":0,"rotation2":0.449265,"rotation3":-0.893398,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/CoilfangMarsh":"4c34ee4eee76a1043c55f07b04c7ecc0cf0a98cc330823c89c8de23166e99b79","patch/World/maps/CoilfangMarsh":"93902e79ef0b50cec0fb1345017e3650b6357daeeafacddd2aafb48c14d16922"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/underbog/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["22/22 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"slave-pens","title":"Coilfang: The Slave Pens","mapId":547,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[60,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Coilfang: The Slave Pens","theme":"Instanced dungeon","summary":"Fight through Coilfang: The Slave Pens, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Coilfang: The Slave Pens...","unchartedAreaName":"Uncharted Coilfang: The Slave Pens","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":872.356},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/547-coilfangdraenei/visual.glb","checksum":"8c9b4f788a322082e6abdfc4d1cd4dd75984deb02140ea1fa0c4cc4efc245509","size":2234364,"triangleCount":47254}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/547-coilfangdraenei/collision.glb","checksum":"7afe7f72ebcd5a8d9402f63cd1d36adedadb374bf10dfa798f5c6320abddd6a6","size":387756,"triangleCount":36710}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/547-coilfangdraenei/navigation.glb","checksum":"86f3888f0599202273821f7ee75a29d65efff22c1bbb9d3ff00b280b485a667f","size":300600,"triangleCount":22696}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-152.9088,-23.1081,-1154.9185],"max":[367.3512,116.7903,56.687]},"entrance":{"name":"Coilfang: The Slave Pens Entrance","footPosition":[-92.2538,14.6919,-442.2965],"forward":[0.5115124086912863,0,0.8592758903605049],"yaw":0.5369439668088408},"areas":[{"id":"entrance","name":"Coilfang: The Slave Pens Entrance","center":[-92.2538,14.6919,-442.2965],"radius":35},{"id":"area-mennu-the-betrayer","name":"Mennu the Betrayer's Encounter","center":[-21.6291,18.529,-690.5585],"radius":42},{"id":"area-rokmar-the-crackler","name":"Rokmar the Crackler's Encounter","center":[9.526,18.5493,-758.7875],"radius":42},{"id":"area-quagmirran","name":"Quagmirran's Encounter","center":[308.9432,24.8955,-977.4775],"radius":42}],"entities":{"entry-40446":{"id":"entry-40446","kind":"mob","name":"Skar'this the Summoner","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-20990-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":11.3474,"markerRadius":1.6791}}},"entry-17938":{"id":"entry-17938","kind":"mob","name":"Coilfang Observer","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-37668","name":"Immolate","spellId":37668,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5409,"damageMultiplier":1.12},{"id":"spell-37666","name":"Heavy Dynamite","spellId":37666,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5409,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18390-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.218,"labelHeight":8.5105,"markerRadius":1.2594}}},"entry-17962":{"id":"entry-17962","kind":"mob","name":"Coilfang Collaborator","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-33787","name":"Cripple","spellId":33787,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7284,"damageMultiplier":1.12},{"id":"spell-19130","name":"Revenge","spellId":19130,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7284,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18302-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0048,"labelHeight":3.747,"markerRadius":0.9304}}},"entry-17963":{"id":"entry-17963","kind":"mob","name":"Wastewalker Slave","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17956-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0044,"labelHeight":3.4695,"markerRadius":0.8615}}},"entry-17964":{"id":"entry-17964","kind":"mob","name":"Wastewalker Worker","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18301-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0044,"labelHeight":3.4695,"markerRadius":0.8615}}},"entry-17959":{"id":"entry-17959","kind":"mob","name":"Coilfang Slavehandler","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9080","name":"Hamstring","spellId":9080,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6343,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18393-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.7543,"labelHeight":9.929,"markerRadius":1.4693}}},"entry-17960":{"id":"entry-17960","kind":"mob","name":"Coilfang Soothsayer","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30923","name":"Domination","spellId":30923,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6979,"damageMultiplier":1.12},{"id":"spell-31555","name":"Decayed Intellect","spellId":31555,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6979,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18395-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-17957":{"id":"entry-17957","kind":"mob","name":"Coilfang Champion","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4919,"damageMultiplier":0.62,"radius":8},{"id":"spell-16145","name":"Sunder Armor","spellId":16145,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4919,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18384-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.218,"labelHeight":8.5105,"markerRadius":1.2594}}},"entry-17961":{"id":"entry-17961","kind":"mob","name":"Coilfang Enchantress","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32173","name":"Entangling Roots","spellId":32173,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":7453,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-15234","name":"Lightning Bolt","spellId":15234,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7453,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-17940":{"id":"entry-17940","kind":"mob","name":"Coilfang Technician","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31581","name":"Blizzard","spellId":31581,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4286,"damageMultiplier":0.62,"radius":8},{"id":"spell-16005","name":"Rain of Fire","spellId":16005,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4286,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18397-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.7543,"labelHeight":9.929,"markerRadius":1.4693}}},"entry-17991":{"id":"entry-17991","kind":"boss","name":"Rokmar the Crackler","title":"Dungeon Boss","hasLoot":true,"combat":{"level":64,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31956","name":"Grievous Wound","spellId":31956,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5289,"damageMultiplier":1.35},{"id":"spell-31948","name":"Ensnaring Moss","spellId":31948,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5289,"damageMultiplier":1.35},{"id":"spell-35008","name":"Water Spit","spellId":35008,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5289,"damageMultiplier":1.35},{"id":"spell-34970","name":"Frenzy","spellId":34970,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5289,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-34970","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.6731,"labelHeight":20.1432,"markerRadius":4.5}}},"entry-17941":{"id":"entry-17941","kind":"boss","name":"Mennu the Betrayer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":63,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-35010","name":"Lightning Bolt","spellId":35010,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5100,"damageMultiplier":1.35},{"id":"spell-31981","name":"Tainted Earthgrab Totem","spellId":31981,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5100,"damageMultiplier":1.35},{"id":"spell-31985","name":"Tainted Stoneskin Totem","spellId":31985,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5100,"damageMultiplier":1.35},{"id":"spell-34980","name":"Mennu's Healing Ward","spellId":34980,"delivery":"projectile","target":"lowest-health-friendly","school":"physical","animation":"cast","range":28,"cooldownMs":5100,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17728-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":5.5512,"markerRadius":1.3784}}},"entry-21127":{"id":"entry-21127","kind":"mob","name":"Coilfang Tempest","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-20100-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.5398,"labelHeight":9.3616,"markerRadius":1.3853}}},"entry-21126":{"id":"entry-21126","kind":"mob","name":"Coilfang Scale-Healer","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34945","name":"Heal","spellId":34945,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5319,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-34944","name":"Holy Nova","spellId":34944,"delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5319,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-20099-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-17958":{"id":"entry-17958","kind":"mob","name":"Coilfang Defender","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5702,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":8000,"magnitude":0.15}},{"id":"spell-31554","name":"Spell Reflection","spellId":31554,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5702,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-31554","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18387-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":11.3474,"markerRadius":1.6791}}},"entry-21128":{"id":"entry-21128","kind":"mob","name":"Coilfang Ray","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-20098-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.8294,"markerRadius":1.4903}}},"entry-17817":{"id":"entry-17817","kind":"mob","name":"Greater Bogstrok","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31552","name":"Decayed Strength","spellId":31552,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7019,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17101-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1346,"labelHeight":4.0286,"markerRadius":1.6169}}},"entry-17890":{"id":"entry-17890","kind":"mob","name":"Weeder Greenthumb","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17300-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0534,"labelHeight":2.7321,"markerRadius":0.6724}}},"entry-17893":{"id":"entry-17893","kind":"mob","name":"Naturalist Bite","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17301-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-17816":{"id":"entry-17816","kind":"mob","name":"Bogstrok","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31551","name":"Piercing Jab","spellId":31551,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6248,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"plant","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17106-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1346,"labelHeight":4.0286,"markerRadius":1.6169}}},"entry-17942":{"id":"entry-17942","kind":"boss","name":"Quagmirran","title":"Dungeon Boss","hasLoot":true,"combat":{"level":64,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3000,"damageMultiplier":1},{"id":"spell-38163","name":"Acid Spray","spellId":38163,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4504,"damageMultiplier":1.35},{"id":"spell-40504","name":"Cleave","spellId":40504,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4504,"damageMultiplier":0.82,"radius":11},{"id":"spell-34780","name":"Poison Bolt Volley","spellId":34780,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":4504,"damageMultiplier":0.82,"radius":11},{"id":"spell-32055","name":"Uppercut","spellId":32055,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4504,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18224-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0179,"labelHeight":25.0888,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-12549","entityId":"entry-40446","position":[104.8389,13.387,-467.4205],"yaw":-5.63741,"spawnMask":3},{"id":"creature-52351","entityId":"entry-17938","position":[94.853,14.3652,-864.5625],"yaw":-2.07651,"spawnMask":3},{"id":"creature-52352","entityId":"entry-17938","position":[147.2752,23.9499,-906.1445],"yaw":-5.32325,"spawnMask":3},{"id":"creature-52353","entityId":"entry-17938","position":[154.9892,13.6903,-454.7675],"yaw":-0.855211,"spawnMask":3},{"id":"creature-52354","entityId":"entry-17962","position":[-104.1058,18.5298,-613.0275],"yaw":-2.12777,"spawnMask":3},{"id":"creature-52358","entityId":"entry-17962","position":[-19.8479,18.529,-681.9985],"yaw":-3.24992,"spawnMask":3},{"id":"creature-52359","entityId":"entry-17962","position":[-6.0544,18.6123,-689.7115],"yaw":-1.6057,"spawnMask":3},{"id":"creature-52361","entityId":"entry-17962","position":[-11.3041,18.6123,-705.8415],"yaw":-4.79965,"spawnMask":3},{"id":"creature-52362","entityId":"entry-17962","position":[-15.3862,18.529,-673.1265],"yaw":-0.253619,"spawnMask":3},{"id":"creature-52363","entityId":"entry-17962","position":[-107.8448,18.5273,-774.8975],"yaw":-2.38563,"spawnMask":3},{"id":"creature-52364","entityId":"entry-17962","position":[-99.5508,18.5298,-610.2835],"yaw":-1.17352,"spawnMask":3},{"id":"creature-52365","entityId":"entry-17963","position":[82.4872,14.21,-590.5725],"yaw":-3.9968,"spawnMask":3},{"id":"creature-52366","entityId":"entry-17964","position":[82.1391,11.8019,-558.4245],"yaw":-1.97222,"spawnMask":3},{"id":"creature-52367","entityId":"entry-17963","position":[117.0227,13.27,-401.8736],"yaw":-6.07375,"spawnMask":3},{"id":"creature-52368","entityId":"entry-17963","position":[148.5572,13.2703,-376.1701],"yaw":-3.15905,"spawnMask":3},{"id":"creature-52370","entityId":"entry-17964","position":[84.9359,13.721,-338.2733],"yaw":-3.1765,"spawnMask":3},{"id":"creature-52371","entityId":"entry-17963","position":[105.8644,12.0696,-501.4945],"yaw":-5.93412,"spawnMask":3},{"id":"creature-52372","entityId":"entry-17964","position":[141.0022,6.8243,-318.3571],"yaw":-1.76278,"spawnMask":3},{"id":"creature-52373","entityId":"entry-17963","position":[97.4705,11.9566,-556.2785],"yaw":-0.767945,"spawnMask":3},{"id":"creature-52374","entityId":"entry-17963","position":[73.3663,14.1439,-604.0825],"yaw":-3.40339,"spawnMask":3},{"id":"creature-52375","entityId":"entry-17964","position":[75.6014,14.183,-596.2495],"yaw":-3.75246,"spawnMask":3},{"id":"creature-52376","entityId":"entry-17964","position":[136.2312,53.478,-1065.7465],"yaw":-5.07891,"spawnMask":3},{"id":"creature-52377","entityId":"entry-17964","position":[142.8152,53.478,-1057.4955],"yaw":-0.890118,"spawnMask":3},{"id":"creature-52378","entityId":"entry-17964","position":[100.8766,54.4792,-1029.0715],"yaw":-5.48033,"spawnMask":3},{"id":"creature-52379","entityId":"entry-17964","position":[121.9892,53.6898,-1031.6865],"yaw":-2.82743,"spawnMask":3},{"id":"creature-52380","entityId":"entry-17964","position":[129.6012,7.6245,-324.4793],"yaw":-4.67748,"spawnMask":3},{"id":"creature-52381","entityId":"entry-17964","position":[105.0367,14.2517,-594.7685],"yaw":-5.65487,"spawnMask":3},{"id":"creature-52382","entityId":"entry-17963","position":[111.3573,14.1123,-600.9225],"yaw":-5.39307,"spawnMask":3},{"id":"creature-52384","entityId":"entry-17964","position":[66.5903,14.2888,-307.2503],"yaw":-1.85005,"spawnMask":3},{"id":"creature-52385","entityId":"entry-17964","position":[75.32,13.9862,-306.7338],"yaw":-1.69297,"spawnMask":3},{"id":"creature-52387","entityId":"entry-17964","position":[124.2962,13.7014,-372.4936],"yaw":-0.139626,"spawnMask":3},{"id":"creature-52389","entityId":"entry-17964","position":[89.3595,12.8294,-330.5156],"yaw":-4.18879,"spawnMask":3},{"id":"creature-52393","entityId":"entry-17964","position":[101.4649,10.3814,-492.4975],"yaw":-5.14872,"spawnMask":3},{"id":"creature-52394","entityId":"entry-17963","position":[88.0147,11.4143,-487.2775],"yaw":-4.66003,"spawnMask":3},{"id":"creature-52395","entityId":"entry-17963","position":[140.0612,10.7926,-415.5895],"yaw":-2.75762,"spawnMask":3},{"id":"creature-52396","entityId":"entry-17963","position":[99.7297,11.0461,-329.5272],"yaw":-4.15388,"spawnMask":3},{"id":"creature-52397","entityId":"entry-17964","position":[89.3631,11.5532,-558.7035],"yaw":-0.994838,"spawnMask":3},{"id":"creature-52398","entityId":"entry-17964","position":[55.0201,14.7281,-308.6806],"yaw":-1.81514,"spawnMask":3},{"id":"creature-57878","entityId":"entry-17960","position":[73.44,14.7173,-574.7825],"yaw":-3.09535,"spawnMask":3},{"id":"creature-76520","entityId":"entry-17961","position":[73.1718,14.6554,-569.4415],"yaw":-3.09142,"spawnMask":3},{"id":"creature-79246","entityId":"entry-17940","position":[63.9052,94.3085,-715.4965],"yaw":-5.89218,"spawnMask":3},{"id":"creature-79274","entityId":"entry-17940","position":[61.4291,93.4472,-672.8835],"yaw":-0.328465,"spawnMask":3},{"id":"creature-79339","entityId":"entry-17991","position":[9.526,18.5493,-758.7875],"yaw":-3.3803,"spawnMask":3},{"id":"creature-79357","entityId":"entry-17962","position":[180.0702,87.524,-656.9255],"yaw":-5.92306,"spawnMask":3},{"id":"creature-79362","entityId":"entry-17941","position":[-21.6291,18.529,-690.5585],"yaw":-3.17405,"spawnMask":3},{"id":"creature-79364","entityId":"entry-17957","position":[140.8832,11.4859,-353.1933],"yaw":-1.90093,"spawnMask":3},{"id":"creature-79365","entityId":"entry-17940","position":[-92.2218,18.5298,-631.6095],"yaw":-3.97267,"spawnMask":3},{"id":"creature-79366","entityId":"entry-17962","position":[-47.7131,52.0443,-714.2385],"yaw":-0.27358,"spawnMask":3},{"id":"creature-79371","entityId":"entry-17962","position":[180.1082,87.5106,-663.7845],"yaw":-6.01338,"spawnMask":3},{"id":"creature-79386","entityId":"entry-17962","position":[320.7832,45.9838,-688.4935],"yaw":-6.27707,"spawnMask":3},{"id":"creature-79411","entityId":"entry-17962","position":[320.8102,45.9895,-692.9155],"yaw":-6.27707,"spawnMask":3},{"id":"creature-79412","entityId":"entry-21127","position":[107.7856,52.7302,-1033.7375],"yaw":-1.7726,"spawnMask":3},{"id":"creature-79414","entityId":"entry-21126","position":[110.3056,52.304,-1034.2225],"yaw":-1.76082,"spawnMask":3},{"id":"creature-79416","entityId":"entry-17960","position":[120.1261,14.265,-534.4685],"yaw":-1.73087,"spawnMask":3},{"id":"creature-79419","entityId":"entry-17957","position":[114.4073,52.5879,-1035.0115],"yaw":-1.76082,"spawnMask":3},{"id":"creature-79421","entityId":"entry-17958","position":[91.0618,14.4266,-879.5555],"yaw":-0.96025,"spawnMask":3},{"id":"creature-79423","entityId":"entry-21128","position":[151.2592,24.5909,-906.4495],"yaw":-6.15645,"spawnMask":3},{"id":"creature-79424","entityId":"entry-21128","position":[159.2832,13.5647,-449.2145],"yaw":-5.59713,"spawnMask":3},{"id":"creature-79425","entityId":"entry-21128","position":[100.5909,14.6902,-863.9265],"yaw":-1.35787,"spawnMask":3},{"id":"creature-79426","entityId":"entry-17961","position":[114.5175,14.3323,-533.8855],"yaw":-1.65547,"spawnMask":3},{"id":"creature-79428","entityId":"entry-17962","position":[-100.7878,18.5273,-777.6275],"yaw":-1.63872,"spawnMask":3},{"id":"creature-79429","entityId":"entry-17957","position":[190.6392,18.6985,-773.7565],"yaw":-1.91986,"spawnMask":3},{"id":"creature-79431","entityId":"entry-17817","position":[114.2461,13.9151,-769.5545],"yaw":-3.12945,"spawnMask":3},{"id":"creature-79435","entityId":"entry-17957","position":[186.3702,18.5342,-758.1985],"yaw":-3.66519,"spawnMask":3},{"id":"creature-79438","entityId":"entry-17940","position":[-94.4268,18.5279,-774.2015],"yaw":-4.57128,"spawnMask":3},{"id":"creature-79440","entityId":"entry-17890","position":[322.3512,46.0753,-691.2105],"yaw":-1.32645,"spawnMask":3},{"id":"creature-79441","entityId":"entry-17893","position":[220.0032,59.385,-1109.9185],"yaw":-1.23918,"spawnMask":3},{"id":"creature-79449","entityId":"entry-17960","position":[106.9276,17.0055,-895.0315],"yaw":-1.0821,"spawnMask":3},{"id":"creature-79460","entityId":"entry-21126","position":[103.0415,14.5312,-861.1035],"yaw":-0.283242,"spawnMask":3},{"id":"creature-79495","entityId":"entry-17817","position":[144.1152,14.0402,-511.6415],"yaw":-2.77264,"spawnMask":3},{"id":"creature-79498","entityId":"entry-17940","position":[256.7342,18.529,-677.7075],"yaw":-2.49875,"spawnMask":3},{"id":"creature-79509","entityId":"entry-17940","position":[256.1532,18.5289,-703.4085],"yaw":-3.75013,"spawnMask":3},{"id":"creature-79516","entityId":"entry-17940","position":[254.0942,18.529,-674.1825],"yaw":-2.49875,"spawnMask":3},{"id":"creature-79518","entityId":"entry-17940","position":[253.7742,18.5289,-707.8515],"yaw":-3.62446,"spawnMask":3},{"id":"creature-79528","entityId":"entry-17816","position":[142.4592,14.0384,-519.1445],"yaw":-5.14061,"spawnMask":3},{"id":"creature-79530","entityId":"entry-21128","position":[115.5898,13.9008,-817.7595],"yaw":-1.01829,"spawnMask":3},{"id":"creature-79538","entityId":"entry-17816","position":[115.7827,13.9316,-756.9635],"yaw":-4.88088,"spawnMask":3},{"id":"creature-79540","entityId":"entry-17816","position":[146.4082,13.9781,-520.5505],"yaw":-4.20206,"spawnMask":3},{"id":"creature-79543","entityId":"entry-17816","position":[51.7828,13.6847,-506.7905],"yaw":-3.82664,"spawnMask":3},{"id":"creature-79544","entityId":"entry-17816","position":[26.3465,13.9333,-520.0645],"yaw":-2.21265,"spawnMask":3},{"id":"creature-79545","entityId":"entry-17816","position":[39.2672,13.9029,-529.3905],"yaw":-1.5969,"spawnMask":3},{"id":"creature-79546","entityId":"entry-17817","position":[42.1694,13.9053,-492.8835],"yaw":-2.58571,"spawnMask":3},{"id":"creature-79547","entityId":"entry-17957","position":[146.8052,13.5361,-463.1895],"yaw":-0.488692,"spawnMask":3},{"id":"creature-79571","entityId":"entry-17817","position":[141.7952,14.0362,-522.8895],"yaw":-3.68763,"spawnMask":3},{"id":"creature-79655","entityId":"entry-17817","position":[41.1562,13.9065,-510.7435],"yaw":-4.47067,"spawnMask":3},{"id":"creature-79657","entityId":"entry-17817","position":[48.8139,13.6369,-494.8415],"yaw":-1.3762,"spawnMask":3},{"id":"creature-79691","entityId":"entry-17940","position":[-107.1738,18.5276,-767.2045],"yaw":-0.0447664,"spawnMask":3},{"id":"creature-79692","entityId":"entry-17817","position":[119.5105,14.0446,-776.9235],"yaw":-1.90737,"spawnMask":3},{"id":"creature-79699","entityId":"entry-21126","position":[116.0728,13.9856,-807.7825],"yaw":-2.72271,"spawnMask":3},{"id":"creature-79701","entityId":"entry-17938","position":[112.7251,13.9842,-813.6825],"yaw":-3.28122,"spawnMask":3},{"id":"creature-79703","entityId":"entry-17940","position":[-94.8498,18.6124,-608.1975],"yaw":-3.7001,"spawnMask":3},{"id":"creature-79708","entityId":"entry-17940","position":[-107.9088,18.5298,-610.5325],"yaw":-4.23892,"spawnMask":3},{"id":"creature-79709","entityId":"entry-17957","position":[111.6459,16.8704,-895.6595],"yaw":-1.37881,"spawnMask":3},{"id":"creature-79710","entityId":"entry-17957","position":[105.7324,17.8037,-902.8685],"yaw":-5.95157,"spawnMask":3},{"id":"creature-79711","entityId":"entry-21126","position":[203.2922,57.7109,-1082.1055],"yaw":-4.7964,"spawnMask":3},{"id":"creature-79712","entityId":"entry-17960","position":[140.5272,20.599,-897.8015],"yaw":-0.116737,"spawnMask":3},{"id":"creature-79713","entityId":"entry-17938","position":[214.8592,57.2904,-1073.2805],"yaw":-5.73458,"spawnMask":3},{"id":"creature-79718","entityId":"entry-17958","position":[34.3457,18.6528,-607.1835],"yaw":-2.93215,"spawnMask":3},{"id":"creature-79719","entityId":"entry-17958","position":[39.1268,18.453,-623.2625],"yaw":-2.86234,"spawnMask":3},{"id":"creature-79722","entityId":"entry-21126","position":[149.6962,13.5121,-457.7895],"yaw":-1.0821,"spawnMask":3},{"id":"creature-79745","entityId":"entry-17961","position":[104.3819,17.439,-898.7135],"yaw":-0.436332,"spawnMask":3},{"id":"creature-79790","entityId":"entry-21127","position":[110.0201,13.9839,-804.3455],"yaw":-2.3911,"spawnMask":3},{"id":"creature-79791","entityId":"entry-21127","position":[99.3548,14.2665,-857.3575],"yaw":-5.1912,"spawnMask":3},{"id":"creature-79795","entityId":"entry-21127","position":[-14.3307,18.5291,-688.7895],"yaw":-3.7706,"spawnMask":3},{"id":"creature-79830","entityId":"entry-21127","position":[93.8088,14.0929,-858.8165],"yaw":-2.29386,"spawnMask":3},{"id":"creature-79842","entityId":"entry-21127","position":[144.7632,20.9766,-896.2755],"yaw":-0.383972,"spawnMask":3},{"id":"creature-79843","entityId":"entry-21127","position":[142.3312,22.0753,-902.4125],"yaw":-6.16101,"spawnMask":3},{"id":"creature-79844","entityId":"entry-21127","position":[225.6652,58.4846,-1075.8735],"yaw":-4.60784,"spawnMask":3},{"id":"creature-79845","entityId":"entry-21127","position":[196.8432,57.8595,-1088.5115],"yaw":-0.575959,"spawnMask":3},{"id":"creature-79846","entityId":"entry-17816","position":[128.8572,14.3152,-775.4375],"yaw":-0.443382,"spawnMask":3},{"id":"creature-79847","entityId":"entry-17962","position":[-49.9354,51.5481,-722.1575],"yaw":-0.27358,"spawnMask":3},{"id":"creature-80260","entityId":"entry-17942","position":[308.9432,24.8955,-977.4775],"yaw":-5.84685,"spawnMask":3},{"id":"creature-135059","entityId":"entry-17963","position":[123.3789,14.0671,-603.6745],"yaw":-5.46288,"spawnMask":3},{"id":"creature-135094","entityId":"entry-17817","position":[20.5949,15.833,-561.6285],"yaw":-3.36848,"spawnMask":3},{"id":"creature-135095","entityId":"entry-17817","position":[12.1688,14.9326,-544.0475],"yaw":-0.308483,"spawnMask":3},{"id":"creature-135096","entityId":"entry-17816","position":[7.4247,17.5309,-556.3065],"yaw":-0.205488,"spawnMask":3},{"id":"creature-135097","entityId":"entry-17816","position":[0.3322,18.3836,-554.6915],"yaw":-4.87686,"spawnMask":3},{"id":"creature-135098","entityId":"entry-17817","position":[-8.0139,21.242,-565.0875],"yaw":-5.54163,"spawnMask":3},{"id":"creature-135099","entityId":"entry-17816","position":[-12.1805,15.2017,-543.2685],"yaw":-5.83153,"spawnMask":3},{"id":"creature-135100","entityId":"entry-17817","position":[231.5522,51.1746,-1044.7985],"yaw":-4.97052,"spawnMask":3},{"id":"creature-135101","entityId":"entry-17817","position":[235.2042,51.9414,-1035.0365],"yaw":-5.07027,"spawnMask":3},{"id":"creature-135104","entityId":"entry-17958","position":[101.8916,94.215,-688.8795],"yaw":-6.27036,"spawnMask":3}],"roamingPacks":[{"id":"patrol-57017","name":"Coilfang Slavehandler Patrol","speed":1.15,"pathId":570170,"formationSource":"database-solo","spawnMask":3,"waypoints":[[92.7562,12.0626,-562.4905],[101.743,12.2263,-557.3105],[93.9174,11.9141,-559.9935],[82.2144,12.056,-561.1535]],"members":[{"id":"member","entityId":"entry-17959","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-57018","name":"Coilfang Slavehandler Patrol","speed":1.15,"pathId":570180,"formationSource":"database-solo","spawnMask":3,"waypoints":[[111.3925,14.0233,-601.9095],[105.6951,14.1672,-594.9755],[91.8947,14.052,-588.6685],[82.9573,14.3016,-586.6425],[73.1275,14.0801,-598.3885],[84.9695,14.2599,-585.3245],[105.4378,14.2182,-593.6445]],"members":[{"id":"member","entityId":"entry-17959","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-61959","name":"Coilfang Slavehandler Patrol","speed":1.15,"pathId":619590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[105.0215,10.7107,-492.1185],[104.3252,10.6075,-491.0675],[88.0985,11.5725,-485.9045],[104.598,10.7049,-489.6845],[106.2041,12.0686,-504.5945],[106.8686,12.1745,-505.5835]],"members":[{"id":"member","entityId":"entry-17959","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-72370","name":"Coilfang Champion Patrol","speed":1.15,"pathId":723700,"formationSource":"database-solo","spawnMask":3,"waypoints":[[126.4753,13.3074,-493.2715],[128.7302,12.7888,-467.8795],[110.7052,13.3003,-465.1085],[91.2918,13.4594,-471.0135],[91.2081,13.475,-470.9985],[111.1901,13.2373,-465.5535],[128.5992,12.7974,-468.3015],[126.3844,13.4674,-494.2395],[120.8804,14.2693,-531.4865]],"members":[{"id":"member","entityId":"entry-17957","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79147","name":"Coilfang Technician Patrol","speed":1.15,"pathId":791470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-97.2408,46.1364,-701.2865],[-97.9358,46.0864,-680.3825],[-51.6105,51.1757,-664.1865],[-97.4738,46.1177,-680.0785],[-97.0148,46.1385,-701.9615],[-49.6264,51.6178,-717.5255]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79150","name":"Coilfang Technician Patrol","speed":1.15,"pathId":791500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-25.4566,57.8685,-723.7275],[-10.9654,62.9484,-725.3705],[16.5802,74.4631,-725.2425],[39.0947,85.5959,-722.3505],[66.5762,95.0127,-711.5015],[77.6782,96.5139,-704.7715],[66.5762,95.0127,-711.5015],[39.0947,85.5959,-722.3505],[16.5802,74.4631,-725.2425],[-10.9654,62.9484,-725.3705]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79275","name":"Coilfang Technician Patrol","speed":1.15,"pathId":792750,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-22.7463,58.8187,-657.5245],[17.0345,74.675,-655.8365],[39.4562,85.775,-658.8955],[79.0256,96.5151,-675.7935],[39.4562,85.775,-658.8955],[17.0345,74.675,-655.8365]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79359","name":"Coilfang Slavehandler Patrol","speed":1.15,"pathId":793590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[69.2797,14.0923,-311.1993],[69.2797,14.0923,-311.1993],[61.9281,14.3866,-305.2969],[61.9281,14.3866,-305.2969],[65.8161,14.2298,-308.7701],[59.006,14.0808,-316.7935],[48.5413,14.6201,-306.2077],[50.64,14.2991,-311.6368],[67.2024,14.1693,-311.5221],[68.2292,14.1399,-308.5569]],"members":[{"id":"member","entityId":"entry-17959","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79363","name":"Coilfang Technician Patrol","speed":1.15,"pathId":793630,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-68.8864,18.5298,-655.1185],[-35.8567,18.5298,-671.2075],[-69.6242,18.5298,-653.5445],[-89.4628,18.5298,-628.5835]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79367","name":"Coilfang Technician Patrol","speed":1.15,"pathId":793670,"formationSource":"database-solo","spawnMask":3,"waypoints":[[319.0362,45.6186,-690.7335],[295.6682,35.8274,-690.9085],[276.2292,25.9193,-690.9265],[256.9112,18.5289,-690.9895],[276.2292,25.9193,-690.9265],[295.6682,35.8274,-690.9085]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79372","name":"Coilfang Enchantress Patrol","speed":1.15,"pathId":793720,"formationSource":"database-solo","spawnMask":3,"waypoints":[[255.5352,18.529,-673.3965],[291.8062,18.5291,-644.2465],[281.9392,18.529,-665.4855],[291.8062,18.5291,-644.2465]],"members":[{"id":"member","entityId":"entry-17961","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79375","name":"Coilfang Enchantress Patrol","speed":1.15,"pathId":793750,"formationSource":"database-solo","spawnMask":3,"waypoints":[[296.9962,18.5265,-731.5295],[283.1812,18.5291,-718.1975],[252.1722,18.5289,-706.9605],[283.1812,18.5291,-718.1975]],"members":[{"id":"member","entityId":"entry-17961","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79382","name":"Coilfang Slavehandler Patrol","speed":1.15,"pathId":793820,"formationSource":"database-solo","spawnMask":3,"waypoints":[[99.4146,10.8274,-326.6651],[89.9387,12.3531,-326.3148],[81.9751,13.4277,-334.1649],[88.3852,12.3954,-325.9163],[98.5113,11.074,-327.8583]],"members":[{"id":"member","entityId":"entry-17959","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79418","name":"Coilfang Enchantress Patrol","speed":1.15,"pathId":794180,"formationSource":"database-solo","spawnMask":3,"waypoints":[[126.9044,32.4181,-935.5235],[125.4602,45.5698,-983.0055],[117.3773,52.0461,-1011.3665],[111.3446,52.0352,-1046.2045],[140.0662,52.5847,-1062.1345],[111.3446,52.0352,-1046.2045],[117.3773,52.0461,-1011.3665],[125.4602,45.5698,-983.0055]],"members":[{"id":"member","entityId":"entry-17961","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79420","name":"Coilfang Defender Patrol","speed":1.15,"pathId":794200,"formationSource":"database-solo","spawnMask":3,"waypoints":[[111.7827,13.902,-834.1135],[102.223,13.8991,-836.9325],[89.8945,13.8992,-839.1015],[81.8962,13.8998,-853.0185],[82.725,13.9004,-866.9355],[95.4504,14.7967,-877.2655],[103.6058,17.2173,-895.4125],[132.0412,20.7012,-903.2125],[131.5202,26.4238,-922.2015],[132.0412,20.7012,-903.2125],[103.6058,17.2173,-895.4125],[95.4504,14.7967,-877.2655],[82.725,13.9004,-866.9355],[81.8962,13.8998,-853.0185],[89.8945,13.8992,-839.1015],[102.223,13.8991,-836.9325]],"members":[{"id":"member","entityId":"entry-17958","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79507","name":"Coilfang Technician Patrol","speed":1.15,"pathId":795070,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-11.3495,18.529,-691.3145],[-3.8406,18.529,-705.4335],[18.6943,18.529,-703.6975]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79524","name":"Bogstrok Patrol","speed":1.15,"pathId":795240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[223.0102,51.355,-1043.6955],[204.5012,51.3703,-1060.1825],[178.9342,51.4816,-1078.5885],[157.0612,53.3858,-1067.4775],[178.9342,51.4816,-1078.5885],[204.5012,51.3703,-1060.1825],[223.0102,51.355,-1043.6955],[228.0812,53.0494,-1013.3785]],"members":[{"id":"member","entityId":"entry-17816","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79526","name":"Coilfang Technician Patrol","speed":1.15,"pathId":795260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-21.1775,18.529,-671.8155],[1.9748,18.529,-665.9825],[4.0302,18.529,-675.9925],[-12.5832,18.529,-683.4075]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79849","name":"Coilfang Technician Patrol","speed":1.15,"pathId":798490,"formationSource":"database-solo","spawnMask":3,"waypoints":[[152.1262,95.7679,-673.1975],[146.9692,96.4964,-676.6155],[147.0362,96.4678,-704.8265],[152.0552,95.7771,-708.8635],[147.0362,96.4678,-704.8265],[146.9692,96.4964,-676.6155]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79850","name":"Bogstrok Patrol","speed":1.15,"pathId":798500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[26.1196,13.9029,-372.988],[25.4215,11.5597,-352.898],[7.9766,14.3451,-337.5011],[-14.1425,14.2604,-350.5032],[-28.9363,13.9672,-358.8381],[-13.2402,14.2874,-350.0377],[9.1791,14.306,-336.8111],[25.6719,11.672,-353.226],[26.6397,13.9028,-374.2406],[6.3803,13.9028,-386.6532]],"members":[{"id":"member","entityId":"entry-17816","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79851","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":798510,"formationSource":"database-solo","spawnMask":3,"waypoints":[[221.2002,51.8575,-1042.7235],[203.6782,50.7545,-1057.5165],[179.7302,51.7196,-1074.5065],[159.4062,53.3857,-1065.2235],[179.7302,51.7196,-1074.5065],[203.6782,50.7545,-1057.5165],[221.2002,51.8575,-1042.7235],[224.6652,53.3321,-1013.1305]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79852","name":"Bogstrok Patrol","speed":1.15,"pathId":798520,"formationSource":"database-solo","spawnMask":3,"waypoints":[[221.1002,51.8575,-1042.6235],[203.5782,50.7545,-1057.4165],[179.6302,51.7196,-1074.4065],[159.3062,53.3857,-1065.1235],[179.6302,51.7196,-1074.4065],[203.5782,50.7545,-1057.4165],[221.1002,51.8575,-1042.6235],[224.6652,53.3321,-1013.1305]],"members":[{"id":"member","entityId":"entry-17816","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79855","name":"Bogstrok Patrol","speed":1.15,"pathId":798550,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-16.7865,13.8246,-404.3401],[-40.8102,13.4294,-416.3725],[-61.6438,13.2769,-413.2265],[-72.9768,13.5159,-395.7234],[-61.2569,13.2476,-413.1855],[-61.2948,13.2753,-413.3475],[-40.957,13.4311,-416.4775],[-16.2459,13.8094,-404.0271],[-0.7783,13.9029,-389.276]],"members":[{"id":"member","entityId":"entry-17816","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79856","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":798560,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-13.4748,13.9029,-409.4125],[-40.332,13.9029,-423.1115],[-64.1677,13.9029,-418.1825],[-78.5288,13.9029,-397.2544],[-61.436,13.9029,-419.4755],[-37.5097,13.9029,-421.6025],[-12.7755,13.9029,-408.5517],[4.2589,13.9029,-394.015]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79858","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":798580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[27.1196,13.9029,-374.188],[26.5216,11.5597,-353.998],[9.0766,14.3451,-338.5011],[-13.0425,14.2604,-351.7032],[-27.9363,13.9672,-360.0381],[-12.2402,14.2874,-351.2377],[10.1791,14.306,-338.1111],[26.7719,11.672,-354.426],[27.8397,13.9028,-375.3406],[7.4803,13.9028,-387.8532]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-80044","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":800440,"formationSource":"database-solo","spawnMask":3,"waypoints":[[219.1602,52.5678,-1040.7045],[201.7052,51.08,-1055.9535],[179.5732,52.6802,-1071.9625],[159.6512,53.3858,-1063.4315],[179.5732,52.6802,-1071.9625],[201.7052,51.08,-1055.9535],[219.1602,52.5678,-1040.7045],[222.2522,53.3858,-1011.8475]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-80219","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":802190,"formationSource":"database-solo","spawnMask":3,"waypoints":[[26.7196,13.9029,-373.588],[26.0216,11.5597,-353.498],[8.5766,14.3451,-338.0011],[-13.5425,14.2604,-351.1032],[-28.3363,13.9672,-359.4381],[-12.6402,14.2874,-350.6377],[9.7791,14.306,-337.5111],[26.2719,11.672,-353.826],[27.2397,13.9028,-374.8406],[6.9803,13.9028,-387.2532]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-80235","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":802350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-13.8705,13.9029,-405.939],[-39.0623,13.8964,-418.8025],[-60.3755,13.7513,-416.5925],[-75.7738,13.8246,-397.4896],[-59.732,13.7062,-416.5595],[-38.8102,13.8994,-418.6675],[-13.4819,13.9029,-405.8318],[2.3204,13.9029,-391.5378]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-86371","name":"Coilfang Champion Patrol","speed":1.15,"pathId":863710,"formationSource":"database-solo","spawnMask":3,"waypoints":[[108.5955,14.5419,-564.7125],[119.2116,14.3808,-558.4035],[153.3202,13.9021,-576.7745],[152.5602,13.9021,-576.6895],[119.2989,14.381,-559.5925],[106.0479,14.2655,-565.2325],[86.3227,13.6498,-573.3325],[74.2437,14.6915,-572.2055]],"members":[{"id":"member","entityId":"entry-17957","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-88902","name":"Coilfang Champion Patrol","speed":1.15,"pathId":889020,"formationSource":"database-solo","spawnMask":3,"waypoints":[[145.5482,8.6405,-335.6791],[138.3962,5.9499,-322.9231],[113.2741,8.1859,-313.7282],[139.0652,5.8083,-322.7837],[144.3882,8.35,-334.8714],[134.1692,12.1903,-372.8102],[130.4112,11.8939,-386.2965],[125.7148,11.7268,-403.1544],[131.3192,12.0912,-380.9979],[135.3552,11.8847,-363.9697]],"members":[{"id":"member","entityId":"entry-17957","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-135102","name":"Bogstrok Patrol","speed":1.15,"pathId":1351020,"formationSource":"database-solo","spawnMask":3,"waypoints":[[149.2752,52.8396,-1063.2805],[172.1212,53.3857,-1041.7565],[200.3502,53.3857,-1031.3015],[222.6212,53.3857,-1017.4375],[232.0292,52.8468,-994.8345],[222.6212,53.3857,-1017.4375],[200.3502,53.3857,-1031.3015],[172.1212,53.3857,-1041.7565]],"members":[{"id":"member","entityId":"entry-17816","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-135103","name":"Coilfang Defender Patrol","speed":1.15,"pathId":1351030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[84.862,96.7903,-691.0975],[112.0697,94.215,-690.7485],[142.5662,96.7406,-690.7765],[112.0697,94.215,-690.7485]],"members":[{"id":"member","entityId":"entry-17958","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-79362","name":"Mennu the Betrayer","position":[-21.6291,18.529,-690.5585]},{"id":"creature-79339","name":"Rokmar the Crackler","position":[9.526,18.5493,-758.7875]},{"id":"creature-80260","name":"Quagmirran","position":[308.9432,24.8955,-977.4775]}],"objectiveOrder":[{"id":"creature-79362","name":"Mennu the Betrayer","position":[-21.6291,18.529,-690.5585]},{"id":"creature-79339","name":"Rokmar the Crackler","position":[9.526,18.5493,-758.7875]},{"id":"creature-80260","name":"Quagmirran","position":[308.9432,24.8955,-977.4775]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1267,"id":187882,"map":547,"orientation":2.42601,"phaseMask":1,"position_x":-69.9045,"position_y":-162.245,"position_z":-2.36656,"rotation0":0,"rotation1":0,"rotation2":0.936672,"rotation3":0.350207,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1268,"id":188067,"map":547,"orientation":5.72468,"phaseMask":1,"position_x":-115.599,"position_y":-162.772,"position_z":-1.92403,"rotation0":0,"rotation1":0,"rotation2":-0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1269,"id":188067,"map":547,"orientation":0.0174525,"phaseMask":1,"position_x":-83.5253,"position_y":-172.181,"position_z":-3.81652,"rotation0":0,"rotation1":0,"rotation2":0.00872612,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1270,"id":188067,"map":547,"orientation":4.08407,"phaseMask":1,"position_x":-79.397,"position_y":-219.702,"position_z":-4.04289,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1271,"id":188067,"map":547,"orientation":5.79449,"phaseMask":1,"position_x":-75.2318,"position_y":-217.329,"position_z":-3.0728,"rotation0":0,"rotation1":0,"rotation2":-0.241921,"rotation3":0.970296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1272,"id":188067,"map":547,"orientation":5.13127,"phaseMask":1,"position_x":-75.9514,"position_y":-182.771,"position_z":-4.88202,"rotation0":0,"rotation1":0,"rotation2":-0.544639,"rotation3":0.838671,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1273,"id":188067,"map":547,"orientation":4.32842,"phaseMask":1,"position_x":-71.8962,"position_y":-145.497,"position_z":-1.55181,"rotation0":0,"rotation1":0,"rotation2":-0.829037,"rotation3":0.559194,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1274,"id":188067,"map":547,"orientation":2.00713,"phaseMask":1,"position_x":-49.2725,"position_y":-168.986,"position_z":-1.89881,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1275,"id":188072,"map":547,"orientation":5.35816,"phaseMask":1,"position_x":-71.8249,"position_y":-164.475,"position_z":-3.96298,"rotation0":0,"rotation1":0,"rotation2":-0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1276,"id":188072,"map":547,"orientation":5.86431,"phaseMask":1,"position_x":-71.4892,"position_y":-160.732,"position_z":-4.18569,"rotation0":0,"rotation1":0,"rotation2":-0.207911,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1277,"id":188072,"map":547,"orientation":1.85005,"phaseMask":1,"position_x":-69.2084,"position_y":-160.345,"position_z":-4.25643,"rotation0":0,"rotation1":0,"rotation2":0.798635,"rotation3":0.601815,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1278,"id":188072,"map":547,"orientation":2.96704,"phaseMask":1,"position_x":-69.2177,"position_y":-163.491,"position_z":-2.04477,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.087165,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1279,"id":188073,"map":547,"orientation":2.00713,"phaseMask":1,"position_x":-114.957,"position_y":-117.302,"position_z":-2.71,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1280,"id":188073,"map":547,"orientation":0.453785,"phaseMask":1,"position_x":-89.7521,"position_y":-113.5,"position_z":-2.70944,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1281,"id":188142,"map":547,"orientation":1.91986,"phaseMask":1,"position_x":-118.92,"position_y":-204.802,"position_z":-1.50416,"rotation0":0,"rotation1":0,"rotation2":0.819152,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1282,"id":188142,"map":547,"orientation":0.558504,"phaseMask":1,"position_x":-117.386,"position_y":-165.965,"position_z":-2.01865,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1283,"id":188142,"map":547,"orientation":4.99164,"phaseMask":1,"position_x":-103.713,"position_y":-245.504,"position_z":-1.37788,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798636,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1284,"id":188142,"map":547,"orientation":0.488691,"phaseMask":1,"position_x":-75.4278,"position_y":-221.16,"position_z":-2.88294,"rotation0":0,"rotation1":0,"rotation2":0.241921,"rotation3":0.970296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1285,"id":188142,"map":547,"orientation":2.21657,"phaseMask":1,"position_x":-74.6596,"position_y":-243.812,"position_z":-2.736,"rotation0":0,"rotation1":0,"rotation2":0.894934,"rotation3":0.446199,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1286,"id":188142,"map":547,"orientation":0.157079,"phaseMask":1,"position_x":-72.7531,"position_y":-185.155,"position_z":-4.93059,"rotation0":0,"rotation1":0,"rotation2":0.0784588,"rotation3":0.996917,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1287,"id":195000,"map":547,"orientation":0,"phaseMask":1,"position_x":-98.026,"position_y":-230.429,"position_z":-7.61181,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":5494,"id":185292,"map":547,"orientation":0.104719,"phaseMask":1,"position_x":-297.066,"position_y":-459.985,"position_z":3.03566,"rotation0":0,"rotation1":0,"rotation2":0.0523356,"rotation3":0.99863,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":50458,"id":182094,"map":547,"orientation":5.98648,"phaseMask":1,"position_x":-192.297,"position_y":-799.308,"position_z":43.8083,"rotation0":0,"rotation1":0,"rotation2":0.147809,"rotation3":-0.989016,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3717,"guid":104413,"id":181278,"map":547,"orientation":0.244346,"phaseMask":1,"position_x":-15.1088,"position_y":-328.102,"position_z":-1.58162,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104414,"id":181278,"map":547,"orientation":0.925024,"phaseMask":1,"position_x":-55.6236,"position_y":13.8905,"position_z":-1.58162,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104415,"id":181278,"map":547,"orientation":1.48353,"phaseMask":1,"position_x":-6.49786,"position_y":-268.131,"position_z":-0.405657,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104416,"id":181278,"map":547,"orientation":3.82227,"phaseMask":1,"position_x":-110.174,"position_y":-316.995,"position_z":-1.5811,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333808,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104417,"id":181278,"map":547,"orientation":0.994837,"phaseMask":1,"position_x":-108.203,"position_y":-6.1077,"position_z":-8.88713,"rotation0":0,"rotation1":0,"rotation2":0.477159,"rotation3":0.878817,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104418,"id":181278,"map":547,"orientation":3.68265,"phaseMask":1,"position_x":-71.7667,"position_y":-314.165,"position_z":-1.4775,"rotation0":0,"rotation1":0,"rotation2":-0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104419,"id":181278,"map":547,"orientation":5.55015,"phaseMask":1,"position_x":-118.49,"position_y":-195.385,"position_z":-1.52758,"rotation0":0,"rotation1":0,"rotation2":-0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104420,"id":181278,"map":547,"orientation":6.05629,"phaseMask":1,"position_x":-9.24667,"position_y":-186.432,"position_z":-1.56752,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104421,"id":181278,"map":547,"orientation":2.84488,"phaseMask":1,"position_x":-9.61051,"position_y":-69.0904,"position_z":-1.58162,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104422,"id":181278,"map":547,"orientation":5.044,"phaseMask":1,"position_x":-67.6224,"position_y":-275.954,"position_z":-1.35519,"rotation0":0,"rotation1":0,"rotation2":-0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104423,"id":181278,"map":547,"orientation":0.104719,"phaseMask":1,"position_x":-85.9097,"position_y":-548.388,"position_z":-1.58175,"rotation0":0,"rotation1":0,"rotation2":0.0523357,"rotation3":0.99863,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104424,"id":181278,"map":547,"orientation":2.80998,"phaseMask":1,"position_x":-146.844,"position_y":-479.709,"position_z":-0.817709,"rotation0":0,"rotation1":0,"rotation2":0.986285,"rotation3":0.16505,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104425,"id":181278,"map":547,"orientation":3.78737,"phaseMask":1,"position_x":-41.414,"position_y":-512.581,"position_z":-1.58581,"rotation0":0,"rotation1":0,"rotation2":-0.948323,"rotation3":0.317306,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104426,"id":181278,"map":547,"orientation":1.0821,"phaseMask":1,"position_x":-117.839,"position_y":-585.493,"position_z":5.45307,"rotation0":0,"rotation1":0,"rotation2":0.515038,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104427,"id":181270,"map":547,"orientation":2.60054,"phaseMask":1,"position_x":-130.503,"position_y":-273.61,"position_z":-1.58329,"rotation0":0,"rotation1":0,"rotation2":0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104428,"id":181270,"map":547,"orientation":4.20625,"phaseMask":1,"position_x":-168.039,"position_y":-701.512,"position_z":37.9013,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104429,"id":181270,"map":547,"orientation":2.42601,"phaseMask":1,"position_x":-43.2663,"position_y":-451.806,"position_z":-1.9612,"rotation0":0,"rotation1":0,"rotation2":0.936672,"rotation3":0.350207,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104430,"id":181270,"map":547,"orientation":0.453785,"phaseMask":1,"position_x":-19.0182,"position_y":-556.112,"position_z":-1.58351,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104431,"id":181270,"map":547,"orientation":2.18166,"phaseMask":1,"position_x":-94.6669,"position_y":-705.023,"position_z":37.3486,"rotation0":0,"rotation1":0,"rotation2":0.887011,"rotation3":0.461749,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104432,"id":181270,"map":547,"orientation":3.97935,"phaseMask":1,"position_x":-86.5097,"position_y":-632.706,"position_z":20.4527,"rotation0":0,"rotation1":0,"rotation2":-0.913545,"rotation3":0.406738,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104433,"id":181270,"map":547,"orientation":6.03884,"phaseMask":1,"position_x":-196.949,"position_y":-756.071,"position_z":40.2413,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104434,"id":181270,"map":547,"orientation":3.10665,"phaseMask":1,"position_x":-110.273,"position_y":-755.954,"position_z":37.3613,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174693,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104435,"id":181275,"map":547,"orientation":1.88495,"phaseMask":1,"position_x":-131.525,"position_y":-133.744,"position_z":-1.97161,"rotation0":0,"rotation1":0,"rotation2":0.809016,"rotation3":0.587786,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104436,"id":181276,"map":547,"orientation":1.88495,"phaseMask":1,"position_x":-131.525,"position_y":-133.744,"position_z":-1.97161,"rotation0":0,"rotation1":0,"rotation2":0.809016,"rotation3":0.587786,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104437,"id":181275,"map":547,"orientation":3.01941,"phaseMask":1,"position_x":-61.4976,"position_y":-616.144,"position_z":-0.567495,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104438,"id":181276,"map":547,"orientation":3.01941,"phaseMask":1,"position_x":-61.4976,"position_y":-616.144,"position_z":-0.567495,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104439,"id":181275,"map":547,"orientation":5.3058,"phaseMask":1,"position_x":-58.8091,"position_y":-152.355,"position_z":-1.42225,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104440,"id":181276,"map":547,"orientation":5.3058,"phaseMask":1,"position_x":-58.8091,"position_y":-152.355,"position_z":-1.42225,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104441,"id":181275,"map":547,"orientation":4.95674,"phaseMask":1,"position_x":-55.9415,"position_y":-29.0174,"position_z":-1.69497,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104442,"id":181276,"map":547,"orientation":4.95674,"phaseMask":1,"position_x":-55.9415,"position_y":-29.0174,"position_z":-1.69497,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104443,"id":181275,"map":547,"orientation":3.52557,"phaseMask":1,"position_x":-76.0176,"position_y":-482.555,"position_z":-1.58448,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190812,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104444,"id":181276,"map":547,"orientation":3.52557,"phaseMask":1,"position_x":-76.0176,"position_y":-482.555,"position_z":-1.58448,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190812,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104445,"id":181275,"map":547,"orientation":5.65487,"phaseMask":1,"position_x":-146.687,"position_y":-255.88,"position_z":-1.58513,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104446,"id":181276,"map":547,"orientation":5.65487,"phaseMask":1,"position_x":-146.687,"position_y":-255.88,"position_z":-1.58513,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104447,"id":181275,"map":547,"orientation":2.25147,"phaseMask":1,"position_x":-8.01602,"position_y":-3.30066,"position_z":-1.2195,"rotation0":0,"rotation1":0,"rotation2":0.902585,"rotation3":0.430512,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104448,"id":181276,"map":547,"orientation":2.25147,"phaseMask":1,"position_x":-8.01602,"position_y":-3.30066,"position_z":-1.2195,"rotation0":0,"rotation1":0,"rotation2":0.902585,"rotation3":0.430512,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104449,"id":181275,"map":547,"orientation":3.24635,"phaseMask":1,"position_x":-170.84,"position_y":-779.574,"position_z":42.7871,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523532,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104450,"id":181276,"map":547,"orientation":3.24635,"phaseMask":1,"position_x":-170.84,"position_y":-779.574,"position_z":42.7871,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523532,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104451,"id":181556,"map":547,"orientation":1.91986,"phaseMask":1,"position_x":-136.808,"position_y":-128.963,"position_z":-1.69219,"rotation0":0,"rotation1":0,"rotation2":0.819152,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104452,"id":181557,"map":547,"orientation":1.91986,"phaseMask":1,"position_x":-136.808,"position_y":-128.963,"position_z":-1.69219,"rotation0":0,"rotation1":0,"rotation2":0.819152,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104453,"id":181569,"map":547,"orientation":1.91986,"phaseMask":1,"position_x":-136.808,"position_y":-128.963,"position_z":-1.69219,"rotation0":0,"rotation1":0,"rotation2":0.819152,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104454,"id":181556,"map":547,"orientation":3.94445,"phaseMask":1,"position_x":0.00864,"position_y":-186.667,"position_z":-1.55533,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104455,"id":181557,"map":547,"orientation":3.94445,"phaseMask":1,"position_x":0.00864,"position_y":-186.667,"position_z":-1.55533,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104456,"id":181569,"map":547,"orientation":3.94445,"phaseMask":1,"position_x":0.00864,"position_y":-186.667,"position_z":-1.55533,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104457,"id":181556,"map":547,"orientation":0.733038,"phaseMask":1,"position_x":-71.3426,"position_y":-282.686,"position_z":-1.4015,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104458,"id":181557,"map":547,"orientation":0.733038,"phaseMask":1,"position_x":-71.3426,"position_y":-282.686,"position_z":-1.4015,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104459,"id":181569,"map":547,"orientation":0.733038,"phaseMask":1,"position_x":-71.3426,"position_y":-282.686,"position_z":-1.4015,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104460,"id":181556,"map":547,"orientation":2.28638,"phaseMask":1,"position_x":-78.1511,"position_y":-601.834,"position_z":3.77027,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104461,"id":181557,"map":547,"orientation":2.28638,"phaseMask":1,"position_x":-78.1511,"position_y":-601.834,"position_z":3.77027,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104462,"id":181569,"map":547,"orientation":2.28638,"phaseMask":1,"position_x":-78.1511,"position_y":-601.834,"position_z":3.77027,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104463,"id":181556,"map":547,"orientation":2.35619,"phaseMask":1,"position_x":-70.0015,"position_y":-481.986,"position_z":-1.59485,"rotation0":0,"rotation1":0,"rotation2":0.92388,"rotation3":0.382683,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104464,"id":181557,"map":547,"orientation":2.35619,"phaseMask":1,"position_x":-70.0015,"position_y":-481.986,"position_z":-1.59485,"rotation0":0,"rotation1":0,"rotation2":0.92388,"rotation3":0.382683,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104465,"id":181569,"map":547,"orientation":2.35619,"phaseMask":1,"position_x":-70.0015,"position_y":-481.986,"position_z":-1.59485,"rotation0":0,"rotation1":0,"rotation2":0.92388,"rotation3":0.382683,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150024,"id":184211,"map":547,"orientation":1.4757,"phaseMask":1,"position_x":119.609,"position_y":-137.113,"position_z":-0.704,"rotation0":0,"rotation1":0,"rotation2":0.672699,"rotation3":0.739917,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150025,"id":184210,"map":547,"orientation":1.4757,"phaseMask":1,"position_x":119.609,"position_y":-137.113,"position_z":-0.704,"rotation0":0,"rotation1":0,"rotation2":0.672699,"rotation3":0.739917,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/CoilfangDraenei":"dbd551944e1bbea76c631bf93780e91f7b68e458987a9bd81b8bb4f853bc7c8e","patch/World/maps/CoilfangDraenei":"6cbe625451e76051bdff946a5ccf8c22488934100976b43910d7515772d49c40"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/slave-pens/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["21/21 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"arcatraz","title":"Tempest Keep: The Arcatraz","mapId":552,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Tempest Keep: The Arcatraz","theme":"Instanced dungeon","summary":"Fight through Tempest Keep: The Arcatraz, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Tempest Keep: The Arcatraz...","unchartedAreaName":"Uncharted Tempest Keep: The Arcatraz","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":804.1584},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/552-tempestkeeparcane/visual.glb","checksum":"abb5b8afcee7730ede4e611659e08a2ff6f3f36b441eb0d30c1f22c7e9e88ad0","size":5888348,"triangleCount":170294}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/552-tempestkeeparcane/collision.glb","checksum":"dbcbf99863d27f9e70fd476154093b4b4862ed7a4bbe57d1d51816e02b272d3a","size":1307684,"triangleCount":99999}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/552-tempestkeeparcane/navigation.glb","checksum":"72710decaeda6a422d7a717b5e203be5ed645e48061dcd78a8e82832bee78d1c","size":66316,"triangleCount":5937}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-1039.488,-145.0971,-400.3077],"max":[77.3987,-44.065,64.7832]},"entrance":{"name":"Tempest Keep: The Arcatraz Entrance","footPosition":[-524.6044,-115.1158,-160.2644],"forward":[0.8417885158677744,0,0.5398074606312233],"yaw":1.0005879607065484},"areas":[{"id":"entrance","name":"Tempest Keep: The Arcatraz Entrance","center":[-524.6044,-115.1158,-160.2644],"radius":35},{"id":"area-zereketh-the-unbound","name":"Zereketh the Unbound's Encounter","center":[-799.443,-124.9514,-283.2587],"radius":42},{"id":"area-dalliah-the-doomsayer","name":"Dalliah the Doomsayer's Encounter","center":[-663.07,-92.387,-31.7727],"radius":42},{"id":"area-wrath-scryer-soccothrates","name":"Wrath-Scryer Soccothrates's Encounter","center":[-662.036,-92.387,8.0313],"radius":42},{"id":"area-harbinger-skyriss","name":"Harbinger Skyriss's Encounter","center":[32.3987,-115.1158,19.7832],"radius":42}],"entities":{"entry-20859":{"id":"entry-20859","kind":"mob","name":"Arcatraz Warder","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15620","name":"Shoot","spellId":15620,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7259,"damageMultiplier":1.12},{"id":"spell-36609","name":"Arcane Shot","spellId":36609,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":7259,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19993-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-20857":{"id":"entry-20857","kind":"mob","name":"Arcatraz Defender","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19990-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-20864":{"id":"entry-20864","kind":"mob","name":"Protean Nightmare","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36617","name":"Gaping Maw","spellId":36617,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5690,"damageMultiplier":1.12},{"id":"spell-36619","name":"Infectious Poison","spellId":36619,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5690,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-18887-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4366,"labelHeight":6.5653,"markerRadius":3.6592}}},"entry-20865":{"id":"entry-20865","kind":"mob","name":"Protean Horror","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36612","name":"Toothy Bite","spellId":36612,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4820,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/10559416bf03ff8490d8f88e0219a54103626c0f2459baa5b766fe988ae0c2c7.glb","rotationY":-1.5707963267948966,"groundOffset":0.194,"labelHeight":2.9553,"markerRadius":1.6263}}},"entry-20866":{"id":"entry-20866","kind":"mob","name":"Soul Devourer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-33958","name":"Enrage","spellId":33958,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4987,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-33958","durationMs":8000,"magnitude":0.15}},{"id":"spell-36654","name":"Fel Breath","spellId":36654,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4987,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19976-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0181,"labelHeight":7.5584,"markerRadius":4.0317}}},"entry-20867":{"id":"entry-20867","kind":"mob","name":"Death Watcher","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36657","name":"Death Count","spellId":36657,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7319,"damageMultiplier":1.12},{"id":"spell-36655","name":"Drain Life","spellId":36655,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7319,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19878-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.025,"labelHeight":8.5167,"markerRadius":2.0568}}},"entry-20868":{"id":"entry-20868","kind":"mob","name":"Entropic Eye","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36712","name":"Arcane Bolt","spellId":36712,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":7195,"damageMultiplier":1.12},{"id":"spell-36677","name":"Chaos Breath","spellId":36677,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7195,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19877-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.025,"labelHeight":8.5167,"markerRadius":2.0568}}},"entry-20869":{"id":"entry-20869","kind":"mob","name":"Arcatraz Sentinel","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19971-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":7.3061,"markerRadius":2.5665}}},"entry-20870":{"id":"entry-20870","kind":"boss","name":"Zereketh the Unbound","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36119","name":"Void Zone","spellId":36119,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6053,"damageMultiplier":1.35},{"id":"spell-32863","name":"Seed of Corruption","spellId":32863,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6053,"damageMultiplier":1.35},{"id":"spell-36127","name":"Shadow Nova","spellId":36127,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6053,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19882-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":11.4745,"markerRadius":2.8237}}},"entry-20873":{"id":"entry-20873","kind":"mob","name":"Negaton Warp-Master","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-36813","name":"Summon Negaton Field","spellId":36813,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4089,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19952-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":9.6062,"markerRadius":3.1464}}},"entry-20875":{"id":"entry-20875","kind":"mob","name":"Negaton Screamer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13704","name":"Psychic Scream","spellId":13704,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7082,"damageMultiplier":1.12},{"id":"spell-38836","name":"Fireball Volley","spellId":38836,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":3000,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19951-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":11.0643,"markerRadius":3.1464}}},"entry-20879":{"id":"entry-20879","kind":"mob","name":"Eredar Soul-Eater","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36778","name":"Soul Steal","spellId":36778,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5974,"damageMultiplier":1.12},{"id":"spell-36784","name":"Entropic Aura","spellId":36784,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5974,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19950-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":8.6003,"markerRadius":2.168}}},"entry-20881":{"id":"entry-20881","kind":"mob","name":"Unbound Devastator","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36887","name":"Deafening Roar","spellId":36887,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5437,"damageMultiplier":0.62,"radius":8},{"id":"spell-36891","name":"Devastate","spellId":36891,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5437,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-18345-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0191,"labelHeight":10.8412,"markerRadius":1.6036}}},"entry-20882":{"id":"entry-20882","kind":"mob","name":"Skulking Witch","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16380","name":"Greater Invisibility","spellId":16380,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6191,"damageMultiplier":1.12},{"id":"spell-36863","name":"Chastise","spellId":36863,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6191,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19947-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0038,"labelHeight":6.7493,"markerRadius":4.5}}},"entry-20883":{"id":"entry-20883","kind":"mob","name":"Spiteful Temptress","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36868","name":"Shadow Bolt","spellId":36868,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5512,"damageMultiplier":1.12},{"id":"spell-36886","name":"Spiteful Fury","spellId":36886,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5512,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19948-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0038,"labelHeight":6.7493,"markerRadius":4.5}}},"entry-20885":{"id":"entry-20885","kind":"boss","name":"Dalliah the Doomsayer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-36142","name":"Whirlwind","spellId":36142,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4114,"damageMultiplier":0.82,"radius":11},{"id":"spell-36173","name":"Gift of the Doomsayer","spellId":36173,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4114,"damageMultiplier":1.35},{"id":"spell-36144","name":"Heal","spellId":36144,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4114,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19888-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0105,"labelHeight":15.2549,"markerRadius":3.3296}}},"entry-20886":{"id":"entry-20886","kind":"boss","name":"Wrath-Scryer Soccothrates","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36512","name":"Knock Away","spellId":36512,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5077,"damageMultiplier":1.35},{"id":"spell-36051","name":"Fel Immolation","spellId":36051,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5077,"damageMultiplier":1.35},{"id":"spell-35759","name":"Felfire Shock","spellId":35759,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5077,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19977-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":16.5736,"markerRadius":4.5}}},"entry-20896":{"id":"entry-20896","kind":"mob","name":"Ethereum Slayer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36838","name":"Slaying Strike","spellId":36838,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5168,"damageMultiplier":1.12},{"id":"spell-36839","name":"Impairing Poison","spellId":36839,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5168,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19889-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0747,"labelHeight":5.8067,"markerRadius":2.8975}}},"entry-20897":{"id":"entry-20897","kind":"mob","name":"Ethereum Wave-Caster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36480","name":"Mental Protection Field","spellId":36480,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4799,"damageMultiplier":1.12},{"id":"spell-38897","name":"Sonic Boom","spellId":38897,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-21021-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.129,"labelHeight":4.9137,"markerRadius":1.5783}}},"entry-20898":{"id":"entry-20898","kind":"mob","name":"Gargantuan Abyssal","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-20282-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1813,"labelHeight":12.4487,"markerRadius":4.3755}}},"entry-20900":{"id":"entry-20900","kind":"mob","name":"Unchained Doombringer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36833","name":"Berserker Charge","spellId":36833,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5856,"damageMultiplier":1.12},{"id":"spell-36835","name":"War Stomp","spellId":36835,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5856,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19945-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":11.8215,"markerRadius":2.7515}}},"entry-20901":{"id":"entry-20901","kind":"mob","name":"Sargeron Archer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-38940","name":"Shoot","spellId":38940,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6934,"damageMultiplier":1.12},{"id":"spell-36827","name":"Hooked Net","spellId":36827,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6934,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/b0222314bf55f489e9328677ef322c3cbc243b8c297b2916088350f11848173b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0096,"labelHeight":6.1495,"markerRadius":1.7823}}},"entry-20902":{"id":"entry-20902","kind":"mob","name":"Sargeron Hellcaller","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36829","name":"Hell Rain","spellId":36829,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4044,"damageMultiplier":0.62,"radius":8},{"id":"spell-36831","name":"Curse of the Elements","spellId":36831,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4044,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-11343-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0108,"labelHeight":6.9182,"markerRadius":2.0051}}},"entry-20904":{"id":"entry-20904","kind":"mob","name":"Warden Mellichar","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19965-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7605,"markerRadius":0.65}}},"entry-21303":{"id":"entry-21303","kind":"mob","name":"Defender Corpse","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19990-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-21304":{"id":"entry-21304","kind":"mob","name":"Warder Corpse","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19993-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-21702":{"id":"entry-21702","kind":"mob","name":"Ethereum Life-Binder","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-37479","name":"Shadow Mend","spellId":37479,"delivery":"projectile","target":"lowest-health-friendly","school":"shadow","animation":"cast","range":28,"cooldownMs":7004,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-34941","name":"Shadow Word: Pain","spellId":34941,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7004,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-21046-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1394,"labelHeight":5.3068,"markerRadius":1.7046}}},"entry-21962":{"id":"entry-21962","kind":"mob","name":"Udalo","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-20644-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":3.3307,"markerRadius":0.827}}},"entry-20912":{"id":"entry-20912","kind":"boss","name":"Harbinger Skyriss","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":7484,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19943-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1442,"labelHeight":22.0954,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-79392","entityId":"entry-20859","position":[-595.4851,-124.9447,-175.1526],"yaw":-0.541052,"spawnMask":3},{"id":"creature-79393","entityId":"entry-20859","position":[-599.2266,-124.9727,-177.0446],"yaw":-0.541052,"spawnMask":3},{"id":"creature-79395","entityId":"entry-20857","position":[-627.813,-125.0806,-163.2663],"yaw":-0.20944,"spawnMask":3},{"id":"creature-79396","entityId":"entry-20859","position":[-602.7802,-125.017,-141.4564],"yaw":-5.68977,"spawnMask":3},{"id":"creature-79397","entityId":"entry-20859","position":[-599.6802,-124.9816,-142.728],"yaw":-5.89921,"spawnMask":3},{"id":"creature-79399","entityId":"entry-20857","position":[-629.333,-125.0816,-159.0482],"yaw":-6.21804,"spawnMask":3},{"id":"creature-79400","entityId":"entry-20857","position":[-627.46,-125.0971,-153.7013],"yaw":-5.8294,"spawnMask":3},{"id":"creature-138901","entityId":"entry-20864","position":[-734.829,-122.2966,-153.2983],"yaw":-4.14757,"spawnMask":3},{"id":"creature-138902","entityId":"entry-20864","position":[-728.616,-124.9302,-201.6864],"yaw":-5.84685,"spawnMask":3},{"id":"creature-138905","entityId":"entry-20865","position":[-726.552,-124.926,-221.0416],"yaw":-0.159309,"spawnMask":3},{"id":"creature-138906","entityId":"entry-20865","position":[-726.334,-124.9492,-278.7057],"yaw":-3.10863,"spawnMask":3},{"id":"creature-138907","entityId":"entry-20865","position":[-750.26,-124.9705,-321.1177],"yaw":-6.26747,"spawnMask":3},{"id":"creature-138909","entityId":"entry-20865","position":[-727.387,-124.9302,-196.637],"yaw":-4.85512,"spawnMask":3},{"id":"creature-138910","entityId":"entry-20865","position":[-810.261,-92.387,-120.75],"yaw":-1.56625,"spawnMask":3},{"id":"creature-138911","entityId":"entry-20865","position":[-726.402,-124.9293,-215.7614],"yaw":-6.0259,"spawnMask":3},{"id":"creature-138912","entityId":"entry-20865","position":[-729.818,-124.9491,-274.9417],"yaw":-3.58174,"spawnMask":3},{"id":"creature-138913","entityId":"entry-20865","position":[-729.486,-124.927,-220.7734],"yaw":-0.499034,"spawnMask":3},{"id":"creature-138914","entityId":"entry-20865","position":[-725.85,-124.9514,-276.0747],"yaw":-3.40614,"spawnMask":3},{"id":"creature-138916","entityId":"entry-20865","position":[-734.598,-122.2966,-149.1934],"yaw":-5.43281,"spawnMask":3},{"id":"creature-138917","entityId":"entry-20865","position":[-724.64,-124.9221,-218.5266],"yaw":-6.16678,"spawnMask":3},{"id":"creature-138918","entityId":"entry-20865","position":[-731.577,-124.9244,-205.1285],"yaw":-3.5465,"spawnMask":3},{"id":"creature-138919","entityId":"entry-20865","position":[-727.528,-124.9514,-273.9407],"yaw":-3.59385,"spawnMask":3},{"id":"creature-138920","entityId":"entry-20865","position":[-738.755,-122.2966,-153.9893],"yaw":-4.73786,"spawnMask":3},{"id":"creature-138921","entityId":"entry-20865","position":[-729.392,-124.9486,-278.1527],"yaw":-3.46516,"spawnMask":3},{"id":"creature-138922","entityId":"entry-20865","position":[-810.301,-92.387,-165.6295],"yaw":-2.31213,"spawnMask":3},{"id":"creature-138923","entityId":"entry-20865","position":[-729.75,-124.9259,-216.6582],"yaw":-0.123065,"spawnMask":3},{"id":"creature-138924","entityId":"entry-20865","position":[-783.96,-125.0219,-311.4037],"yaw":-2.60235,"spawnMask":3},{"id":"creature-138927","entityId":"entry-20867","position":[-758.321,-124.9407,-299.0047],"yaw":-2.01374,"spawnMask":3},{"id":"creature-138928","entityId":"entry-20867","position":[-791.294,-125.0164,-344.2057],"yaw":-1.04301,"spawnMask":3},{"id":"creature-138929","entityId":"entry-20868","position":[-770.3,-124.9326,-317.1817],"yaw":-0.102379,"spawnMask":3},{"id":"creature-138930","entityId":"entry-20868","position":[-783.666,-124.9514,-286.1157],"yaw":-0.301955,"spawnMask":3},{"id":"creature-138931","entityId":"entry-20869","position":[-781.334,-92.5496,-1.3647],"yaw":-5.41052,"spawnMask":3},{"id":"creature-138932","entityId":"entry-20869","position":[-779.778,-92.5165,-28.3977],"yaw":-0.767945,"spawnMask":3},{"id":"creature-138933","entityId":"entry-20869","position":[-790.123,-92.4581,-221.5998],"yaw":-5.28835,"spawnMask":3},{"id":"creature-138934","entityId":"entry-20869","position":[-862.35,-66.4855,-132.852],"yaw":-3.83972,"spawnMask":3},{"id":"creature-138935","entityId":"entry-20869","position":[-921.249,-66.6155,-142.0839],"yaw":-2.49582,"spawnMask":3},{"id":"creature-138936","entityId":"entry-20870","position":[-799.443,-124.9514,-283.2587],"yaw":-2.98738,"spawnMask":3},{"id":"creature-138937","entityId":"entry-20873","position":[-801.161,-92.387,-123.1356],"yaw":-5.29934,"spawnMask":3},{"id":"creature-138938","entityId":"entry-20873","position":[-817.099,-92.387,-153.5177],"yaw":-1.59431,"spawnMask":3},{"id":"creature-138939","entityId":"entry-20875","position":[-810.84,-94.0133,-137.2457],"yaw":-3.93757,"spawnMask":3},{"id":"creature-138940","entityId":"entry-20875","position":[-792.586,-92.3814,-178.1022],"yaw":-1.74047,"spawnMask":3},{"id":"creature-138941","entityId":"entry-20875","position":[-824.448,-92.3864,-103.2155],"yaw":-1.65806,"spawnMask":3},{"id":"creature-138942","entityId":"entry-20879","position":[-831.572,-90.0482,-12.2197],"yaw":-3.97935,"spawnMask":3},{"id":"creature-138943","entityId":"entry-20879","position":[-811.355,-92.5997,-14.1237],"yaw":-5.79449,"spawnMask":3},{"id":"creature-138944","entityId":"entry-20879","position":[-827.633,-92.6007,-32.8347],"yaw":-1.309,"spawnMask":3},{"id":"creature-138945","entityId":"entry-20881","position":[-725.534,-92.4108,-17.2607],"yaw":-4.03355,"spawnMask":3},{"id":"creature-138946","entityId":"entry-20881","position":[-673.886,-94.0133,-13.2847],"yaw":-6.26573,"spawnMask":3},{"id":"creature-138947","entityId":"entry-20882","position":[-689.051,-92.387,5.3813],"yaw":-5.37561,"spawnMask":3},{"id":"creature-138949","entityId":"entry-20883","position":[-705.201,-92.387,-7.7417],"yaw":-3.60076,"spawnMask":3},{"id":"creature-138950","entityId":"entry-20885","position":[-663.07,-92.387,-31.7727],"yaw":-1.01229,"spawnMask":3},{"id":"creature-138951","entityId":"entry-20886","position":[-662.036,-92.387,8.0313],"yaw":-5.23599,"spawnMask":3},{"id":"creature-138952","entityId":"entry-20896","position":[-955.648,-66.6166,-148.1901],"yaw":-5.20108,"spawnMask":3},{"id":"creature-138954","entityId":"entry-20896","position":[-958.863,-66.6161,-154.1697],"yaw":-2.87979,"spawnMask":3},{"id":"creature-138955","entityId":"entry-20896","position":[-969.801,-66.6987,-166.4626],"yaw":-4.97249,"spawnMask":3},{"id":"creature-138956","entityId":"entry-20897","position":[-960.064,-66.6171,-150.505],"yaw":-3.57792,"spawnMask":3},{"id":"creature-138957","entityId":"entry-20897","position":[-966.609,-66.6987,-162.318],"yaw":-4.83059,"spawnMask":3},{"id":"creature-138959","entityId":"entry-20898","position":[-982.954,-71.8065,-297.8477],"yaw":-5.92215,"spawnMask":3},{"id":"creature-138960","entityId":"entry-20900","position":[-958.093,-71.7281,-274.5217],"yaw":-1.13446,"spawnMask":3},{"id":"creature-138961","entityId":"entry-20900","position":[-955.428,-71.8345,-317.6417],"yaw":-1.95317,"spawnMask":3},{"id":"creature-138962","entityId":"entry-20901","position":[-957.073,-66.4328,-233.1541],"yaw":-0.174533,"spawnMask":3},{"id":"creature-138963","entityId":"entry-20901","position":[-986.7,-66.4328,-234.458],"yaw":-2.94961,"spawnMask":3},{"id":"creature-138964","entityId":"entry-20902","position":[-962.081,-66.4328,-236.5799],"yaw":-1.74533,"spawnMask":3},{"id":"creature-138965","entityId":"entry-20902","position":[-983.447,-66.4328,-237.0937],"yaw":-1.09956,"spawnMask":3},{"id":"creature-138966","entityId":"entry-20904","position":[-971.639,-71.2673,-329.2857],"yaw":-4.7473,"spawnMask":3},{"id":"creature-138973","entityId":"entry-21303","position":[-797.939,-92.4582,-219.3128],"yaw":-0.506145,"spawnMask":3},{"id":"creature-138974","entityId":"entry-21303","position":[-732.178,-124.9377,-258.5571],"yaw":-2.6529,"spawnMask":3},{"id":"creature-138975","entityId":"entry-21303","position":[-779.525,-92.4994,-20.4107],"yaw":-2.30383,"spawnMask":3},{"id":"creature-138976","entityId":"entry-21303","position":[-798.337,-92.4025,-200.4714],"yaw":-2.9147,"spawnMask":3},{"id":"creature-138977","entityId":"entry-21303","position":[-824.684,-92.601,-8.5307],"yaw":-5.70723,"spawnMask":3},{"id":"creature-138978","entityId":"entry-21303","position":[-838.765,-92.387,-167.4693],"yaw":-4.03171,"spawnMask":3},{"id":"creature-138979","entityId":"entry-21303","position":[-802.009,-124.9338,-340.0967],"yaw":-1.43117,"spawnMask":3},{"id":"creature-138980","entityId":"entry-21303","position":[-836.955,-92.387,-165.7824],"yaw":-1.5708,"spawnMask":3},{"id":"creature-138981","entityId":"entry-21303","position":[-809.564,-92.605,-30.0337],"yaw":-0.575959,"spawnMask":3},{"id":"creature-138982","entityId":"entry-21303","position":[-917.899,-66.6155,-135.393],"yaw":-6.16101,"spawnMask":3},{"id":"creature-138983","entityId":"entry-21303","position":[-920.912,-66.6155,-132.6952],"yaw":-4.41568,"spawnMask":3},{"id":"creature-138984","entityId":"entry-21304","position":[-819.721,-92.3853,-89.3419],"yaw":-1.55334,"spawnMask":3},{"id":"creature-138985","entityId":"entry-21304","position":[-783.18,-92.5794,-4.7107],"yaw":-4.71239,"spawnMask":3},{"id":"creature-138986","entityId":"entry-21304","position":[-752.02,-124.9467,-322.3747],"yaw":-0.349066,"spawnMask":3},{"id":"creature-138987","entityId":"entry-21304","position":[-817.468,-92.3846,-89.6978],"yaw":-2.00713,"spawnMask":3},{"id":"creature-138988","entityId":"entry-21304","position":[-723.791,-124.9289,-247.092],"yaw":-5.8294,"spawnMask":3},{"id":"creature-138989","entityId":"entry-21304","position":[-779.787,-92.5308,-5.2777],"yaw":-4.93928,"spawnMask":3},{"id":"creature-138995","entityId":"entry-21702","position":[-955.245,-66.6219,-153.1882],"yaw":-1.23918,"spawnMask":3},{"id":"creature-138996","entityId":"entry-21702","position":[-970.672,-66.6987,-162.3241],"yaw":-4.61222,"spawnMask":3},{"id":"creature-138997","entityId":"entry-21962","position":[-994.488,-65.5262,-148.0685],"yaw":-1.29154,"spawnMask":3},{"id":"encounter-500","entityId":"entry-20912","position":[32.3987,-115.1158,19.7832],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-138903","name":"Protean Horror Patrol","speed":1.15,"pathId":1389030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-728.36,-125.0348,-274.5957],[-720.975,-125.0348,-279.0717],[-720.871,-125.0277,-305.7797],[-738.032,-125.0246,-318.2267],[-757.663,-125.0243,-318.1477],[-761.744,-125.0179,-324.4077],[-760.894,-125.0204,-341.3087],[-749.826,-125.0182,-346.3087],[-756.233,-125.0186,-354.4447],[-785.62,-125.0166,-355.3077],[-798.672,-125.0163,-335.7737],[-804.29,-125.0202,-313.4257],[-806.419,-125.0332,-297.1547],[-787.404,-125.0347,-279.9957],[-771.662,-125.0347,-282.5717],[-746.142,-125.0292,-282.0037]],"members":[{"id":"member","entityId":"entry-20865","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138904","name":"Protean Horror Patrol","speed":1.15,"pathId":1389040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-734.21,-66.7181,-137.9477],[-758.942,-66.5724,-138.0074],[-805.979,-66.5611,-137.9266],[-852.858,-66.5611,-137.8636],[-891.175,-66.6988,-138.0814],[-940.355,-66.697,-137.8202],[-984.82,-66.6898,-158.4112],[-993.872,-65.4273,-145.4963],[-985.663,-64.065,-122.8674],[-960.665,-65.5593,-115.5518],[-940.352,-66.6957,-137.498],[-891.087,-66.6988,-137.6994],[-852.825,-66.5611,-137.5614],[-805.982,-66.5611,-137.5285],[-758.943,-66.5717,-137.745]],"members":[{"id":"member","entityId":"entry-20865","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138908","name":"Protean Horror Patrol","speed":1.15,"pathId":1389080,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-728.186,-125.02,-221.813],[-734.065,-124.9756,-218.2648],[-733.907,-125.003,-189.4593],[-735.876,-125.0013,-181.9139],[-749.45,-124.5532,-174.2102],[-749.074,-122.814,-157.2515],[-726.988,-123.009,-138.3344],[-709.684,-125.0182,-143.1198],[-712.575,-125.0142,-157.7143],[-723.771,-125.009,-178.1035],[-723.261,-125.0182,-216.319]],"members":[{"id":"member","entityId":"entry-20865","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138915","name":"Protean Horror Patrol","speed":1.15,"pathId":1389150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-826.964,-92.4733,-92.6659],[-827.961,-92.6868,-53.2207],[-826.008,-92.6831,-27.9357],[-810.42,-92.6903,-15.3647],[-770.399,-92.6305,-13.0817],[-754.635,-92.6035,-12.9897],[-731.968,-92.3709,-12.7517],[-702.561,-92.4704,3.2373],[-691.979,-92.4704,-13.4987],[-702.079,-92.4704,-29.5757],[-731.972,-92.3709,-13.2207],[-770.445,-92.6307,-13.4557],[-810.387,-92.6903,-15.7497],[-827.347,-92.6868,-53.2357]],"members":[{"id":"member","entityId":"entry-20865","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138925","name":"Soul Devourer Patrol","speed":1.15,"pathId":1389250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-734.371,-125.024,-312.5577],[-747.707,-125.0238,-312.8557],[-763.021,-125.0167,-312.8967],[-779.789,-125.0181,-313.0907],[-779.114,-125.0151,-335.7817],[-779.789,-125.0181,-313.0907],[-763.021,-125.0167,-312.8967],[-747.707,-125.0238,-312.8557]],"members":[{"id":"member","entityId":"entry-20866","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138926","name":"Soul Devourer Patrol","speed":1.15,"pathId":1389260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-802.63,-125.028,-305.5697],[-782.007,-125.0224,-304.1057],[-770.945,-125.0218,-303.3047],[-771.267,-125.0292,-288.9477],[-733.544,-125.021,-289.3527],[-733.544,-125.021,-289.3527],[-771.267,-125.0292,-288.9477],[-770.945,-125.0218,-303.3047],[-782.007,-125.0224,-304.1057]],"members":[{"id":"member","entityId":"entry-20866","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138948","name":"Skulking Witch Patrol","speed":1.15,"pathId":1389480,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-650.831,-92.4704,-12.8567],[-681.597,-94.0966,-23.1867],[-698.731,-92.4704,-22.8197],[-716.103,-92.4704,-22.2927],[-716.029,-92.4704,-13.5307],[-716.178,-92.4703,-5.0887],[-698.693,-92.4704,-3.7947],[-682.011,-94.0966,-1.4777]],"members":[{"id":"member","entityId":"entry-20882","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138953","name":"Ethereum Slayer Patrol","speed":1.15,"pathId":1389530,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-968.236,-66.6987,-180.7371],[-975.139,-66.6731,-180.7085],[-975.241,-66.6918,-158.7402],[-989.134,-66.6064,-154.8265],[-992.632,-64.9192,-140.7684],[-986.053,-64.065,-123.4763],[-965.492,-65.1887,-115.6458],[-953.38,-66.4999,-118.9432],[-952.479,-66.7047,-127.7253],[-962.599,-66.6975,-140.8984],[-968.722,-66.6812,-148.2898]],"members":[{"id":"member","entityId":"entry-20896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138958","name":"Gargantuan Abyssal Patrol","speed":1.15,"pathId":1389580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-982.031,-71.8135,-322.3017],[-970.222,-71.874,-312.0577],[-963.608,-71.8114,-296.5927],[-967.531,-71.8114,-283.3207],[-970.9,-71.8114,-265.9357],[-972.301,-71.8114,-249.595],[-972.249,-66.5161,-225.664],[-972.301,-71.8114,-249.595],[-970.9,-71.8114,-265.9357],[-967.531,-71.8114,-283.3207],[-963.608,-71.8114,-296.5927],[-970.222,-71.874,-312.0577]],"members":[{"id":"member","entityId":"entry-20898","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-138936","name":"Zereketh the Unbound","position":[-799.443,-124.9514,-283.2587]},{"id":"creature-138950","name":"Dalliah the Doomsayer","position":[-663.07,-92.387,-31.7727]},{"id":"creature-138951","name":"Wrath-Scryer Soccothrates","position":[-662.036,-92.387,8.0313]},{"id":"encounter-500","name":"Harbinger Skyriss","position":[32.3987,-115.1158,19.7832]}],"objectiveOrder":[{"id":"creature-138936","name":"Zereketh the Unbound","position":[-799.443,-124.9514,-283.2587]},{"id":"creature-138950","name":"Dalliah the Doomsayer","position":[-663.07,-92.387,-31.7727]},{"id":"creature-138951","name":"Wrath-Scryer Soccothrates","position":[-662.036,-92.387,8.0313]},{"id":"encounter-500","name":"Harbinger Skyriss","position":[32.3987,-115.1158,19.7832]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26213,"id":183965,"map":552,"orientation":3.14159,"phaseMask":1,"position_x":445.835,"position_y":-208.129,"position_z":73.9555,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26214,"id":184802,"map":552,"orientation":-0.558505,"phaseMask":1,"position_x":445.786,"position_y":-169.263,"position_z":43.0466,"rotation0":0,"rotation1":0,"rotation2":-0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":43200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26215,"id":184319,"map":552,"orientation":3.14159,"phaseMask":1,"position_x":199.911,"position_y":102.009,"position_z":23.6937,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26216,"id":184318,"map":552,"orientation":3.14159,"phaseMask":1,"position_x":199.827,"position_y":117.488,"position_z":23.8766,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26220,"id":183962,"map":552,"orientation":-0.087266,"phaseMask":1,"position_x":477.488,"position_y":-174.455,"position_z":61.5633,"rotation0":0,"rotation1":0,"rotation2":-0.0436192,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26221,"id":182198,"map":552,"orientation":1.8675,"phaseMask":1,"position_x":320.304,"position_y":-21.8057,"position_z":22.4412,"rotation0":0,"rotation1":0,"rotation2":0.803856,"rotation3":0.594824,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30817,"id":183964,"map":552,"orientation":-3.05433,"phaseMask":1,"position_x":414.255,"position_y":-175.364,"position_z":61.5589,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436174,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30818,"id":183963,"map":552,"orientation":-2.70526,"phaseMask":1,"position_x":407.962,"position_y":-151.243,"position_z":61.5632,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":30819,"id":183363,"map":552,"orientation":3.17987,"phaseMask":1,"position_x":455.298,"position_y":16.4321,"position_z":48.2747,"rotation0":0,"rotation1":0,"rotation2":-0.999817,"rotation3":0.0191351,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":30820,"id":183362,"map":552,"orientation":3.17987,"phaseMask":1,"position_x":439.832,"position_y":32.7644,"position_z":48.2747,"rotation0":0,"rotation1":0,"rotation2":-0.999817,"rotation3":0.0191351,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30821,"id":183961,"map":552,"orientation":-0.436333,"phaseMask":1,"position_x":484.1,"position_y":-150.403,"position_z":61.5632,"rotation0":0,"rotation1":0,"rotation2":-0.21644,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150048,"id":184213,"map":552,"orientation":3.14159,"phaseMask":1,"position_x":-3.77762,"position_y":0.178076,"position_z":-1.55146,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150049,"id":184214,"map":552,"orientation":3.14159,"phaseMask":1,"position_x":-3.77762,"position_y":0.178076,"position_z":-1.55146,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/TempestKeepArcane":"b9737a04111782e74f3eb0d9d2f24e8671ed1bd14d4f8ec25d375208a1746017","patch/World/maps/TempestKeepArcane":"a40f21f71339f62ca7bcec072d9ed6c2465c71f5fba3f79ec67cceebf94002ef"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/arcatraz/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["29/29 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"botanica","title":"Tempest Keep: The Botanica","mapId":553,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Tempest Keep: The Botanica","theme":"Instanced dungeon","summary":"Fight through Tempest Keep: The Botanica, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Tempest Keep: The Botanica...","unchartedAreaName":"Uncharted Tempest Keep: The Botanica","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":514.9375},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/553-tempestkeepatrium/visual.glb","checksum":"b8746ea9d2f212713aa0fbd79f40100ac1416ad2a3ee0ee5c99ba4057b38a4d1","size":4843164,"triangleCount":89802}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/553-tempestkeepatrium/collision.glb","checksum":"ff352b43d8bca1d99cdb5ca3839b00367db27fb3fc9fb9f96512c5f3940cd576","size":890492,"triangleCount":65782}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/553-tempestkeepatrium/navigation.glb","checksum":"867dd48c578babc40ce5108c7be1a5e13f08685e30d85b0a4600e244b58db36c","size":309724,"triangleCount":23024}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-403.9404,-53.2084,335.8441],"max":[237.4031,16.8842,1051.0351]},"entrance":{"name":"Tempest Keep: The Botanica Entrance","footPosition":[-199.3969,-5.2754,380.8441],"forward":[0.9068524609475049,0,0.4214482341562889],"yaw":1.1357546084068106},"areas":[{"id":"entrance","name":"Tempest Keep: The Botanica Entrance","center":[-199.3969,-5.2754,380.8441],"radius":35},{"id":"area-commander-sarannis","name":"Commander Sarannis's Encounter","center":[-310.3214,-8.7242,705.4911],"radius":42},{"id":"area-high-botanist-freywinn","name":"High Botanist Freywinn's Encounter","center":[-275.6834,-9.0979,865.0271],"radius":42},{"id":"area-thorngrin-the-tender","name":"Thorngrin the Tender's Encounter","center":[-164.306,-19.2348,1006.0351],"radius":42},{"id":"area-laj","name":"Laj's Encounter","center":[44.7676,-15.3508,800.7061],"radius":42},{"id":"area-warp-splinter","name":"Warp Splinter's Encounter","center":[-223.1981,-32.0503,801.3391],"radius":42}],"entities":{"entry-17975":{"id":"entry-17975","kind":"boss","name":"High Botanist Freywinn","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34557","name":"Summon Frayer Protector","spellId":34557,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4777,"damageMultiplier":1.35},{"id":"spell-34551","name":"Tree Form","spellId":34551,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4777,"damageMultiplier":1.35},{"id":"spell-34550","name":"Tranquility","spellId":34550,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4777,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19045-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.26,"markerRadius":0.65}}},"entry-17976":{"id":"entry-17976","kind":"boss","name":"Commander Sarannis","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34799","name":"Arcane Devastation","spellId":34799,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5797,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-18929-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":4.5567,"markerRadius":0.65}}},"entry-17977":{"id":"entry-17977","kind":"boss","name":"Warp Splinter","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6927,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19438-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0709,"labelHeight":24.1563,"markerRadius":4.5}}},"entry-17978":{"id":"entry-17978","kind":"boss","name":"Thorngrin the Tender","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34661","name":"Sacrifice","spellId":34661,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4414,"damageMultiplier":1.35},{"id":"spell-39132","name":"Hellfire","spellId":39132,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4414,"damageMultiplier":1.35},{"id":"spell-34670","name":"Enrage","spellId":34670,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4414,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-34670","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/928658948713f14e42fc755dc19a6deaf554dccb1e1f85d7dbeac55454539957.glb","rotationY":-1.5707963267948966,"groundOffset":0.0121,"labelHeight":7.6869,"markerRadius":2.2279}}},"entry-17980":{"id":"entry-17980","kind":"boss","name":"Laj","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5433,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/d18a720702d5501d87412111e5848a230248ebf06f9f6afba8973a36b21ae84f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0732,"labelHeight":5.9732,"markerRadius":3.9737}}},"entry-17993":{"id":"entry-17993","kind":"mob","name":"Bloodwarder Protector","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-29765","name":"Crystal Strike","spellId":29765,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6612,"damageMultiplier":1.12},{"id":"spell-34784","name":"Intervene","spellId":34784,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/cb1b6b74237a0c0edf9d974746514164f3d19e80ff887379f88aada24a898978.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-17994":{"id":"entry-17994","kind":"mob","name":"Bloodwarder Falconer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35401","name":"Arcane Shot","spellId":35401,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4007,"damageMultiplier":1.12},{"id":"spell-34852","name":"Call of the Falcon","spellId":34852,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4007,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17779-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-18155":{"id":"entry-18155","kind":"mob","name":"Bloodfalcon","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-34856","name":"Bloodburn","spellId":34856,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7115,"damageMultiplier":1.12},{"id":"spell-32323","name":"Charge","spellId":32323,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7115,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19685-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.785,"markerRadius":1.7166}}},"entry-18404":{"id":"entry-18404","kind":"mob","name":"Bloodwarder Steward","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34821","name":"Arcane Flurry","spellId":34821,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4850,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17813-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-18405":{"id":"entry-18405","kind":"mob","name":"Tempest-Forge Peacekeeper","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-18930-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.4677,"markerRadius":1.8343}}},"entry-18419":{"id":"entry-18419","kind":"mob","name":"Bloodwarder Greenkeeper","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34798","name":"Greenkeeper's Fury","spellId":34798,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6009,"damageMultiplier":1.12},{"id":"spell-34800","name":"Impending Coma","spellId":34800,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6009,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17883-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-18420":{"id":"entry-18420","kind":"mob","name":"Sunseeker Geomancer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34356","name":"Blizzard","spellId":34356,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5387,"damageMultiplier":0.62,"radius":8},{"id":"spell-34360","name":"Rain of Fire","spellId":34360,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5387,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/a4eebcf9534bcfb16c8420c0262664911893f2ad0a58b476df4071776c170fc2.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-18421":{"id":"entry-18421","kind":"mob","name":"Sunseeker Researcher","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34352","name":"Mind Shock","spellId":34352,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4247,"damageMultiplier":1.12},{"id":"spell-34354","name":"Flame Shock","spellId":34354,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4247,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17842-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-18422":{"id":"entry-18422","kind":"mob","name":"Sunseeker Botanist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34254","name":"Rejuvenate Plant","spellId":34254,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":5560,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-34350","name":"Nature's Rage","spellId":34350,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5560,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17819-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-18587":{"id":"entry-18587","kind":"mob","name":"Frayer","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34201","name":"Shift Form","spellId":34201,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4758,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19030-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0256,"labelHeight":2.2166,"markerRadius":1.3908}}},"entry-19486":{"id":"entry-19486","kind":"mob","name":"Sunseeker Chemist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34359","name":"Fire Breath Potion","spellId":34359,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6046,"damageMultiplier":0.62,"radius":8},{"id":"spell-34358","name":"Vial of Poison","spellId":34358,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6046,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-18925-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19505":{"id":"entry-19505","kind":"mob","name":"Sunseeker Channeler","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34637","name":"Soul Channel","spellId":34637,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4755,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-21341-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19507":{"id":"entry-19507","kind":"mob","name":"Sunseeker Gene-Splicer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34642","name":"Death & Decay","spellId":34642,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6097,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-21337-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19508":{"id":"entry-19508","kind":"mob","name":"Sunseeker Herbalist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22127","name":"Entangling Roots","spellId":22127,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":4274,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-34641","name":"Spade Toss","spellId":34641,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4274,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-21338-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-19509":{"id":"entry-19509","kind":"mob","name":"Sunseeker Harvester","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34639","name":"Polymorph","spellId":34639,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6765,"damageMultiplier":1.12},{"id":"spell-34640","name":"Wilting Touch","spellId":34640,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6765,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-21333-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19511":{"id":"entry-19511","kind":"mob","name":"Nethervine Inciter","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-11331-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-19512":{"id":"entry-19512","kind":"mob","name":"Nethervine Reaper","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-2878-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-19513":{"id":"entry-19513","kind":"mob","name":"Mutate Fear-Shrieker","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/10559416bf03ff8490d8f88e0219a54103626c0f2459baa5b766fe988ae0c2c7.glb","rotationY":-1.5707963267948966,"groundOffset":0.194,"labelHeight":2.9553,"markerRadius":1.6263}}},"entry-19557":{"id":"entry-19557","kind":"mob","name":"Greater Frayer","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34644","name":"Lash","spellId":34644,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4868,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19029-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0217,"labelHeight":2.7226,"markerRadius":1.5895}}},"entry-19598":{"id":"entry-19598","kind":"mob","name":"Mutate Fleshlasher","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34351","name":"Vicious Bite","spellId":34351,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6507,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19021-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1455,"labelHeight":2.304,"markerRadius":1.2197}}},"entry-19608":{"id":"entry-19608","kind":"mob","name":"Frayer Wildling","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34644","name":"Lash","spellId":34644,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4531,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17714-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0271,"labelHeight":3.3217,"markerRadius":1.9868}}},"entry-19633":{"id":"entry-19633","kind":"mob","name":"Bloodwarder Mender","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35096","name":"Greater Heal","spellId":35096,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4414,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-34809","name":"Holy Fury","spellId":34809,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4414,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-21331-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19843":{"id":"entry-19843","kind":"mob","name":"Nethervine Trickster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-2019-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-19865":{"id":"entry-19865","kind":"mob","name":"Mutate Horror","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-18083-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.194,"labelHeight":2.9553,"markerRadius":1.6263}}}},"staticSpawns":[{"id":"creature-147000","entityId":"entry-17975","position":[-275.6834,-9.0979,865.0271],"yaw":-3.38594,"spawnMask":3},{"id":"creature-147001","entityId":"entry-17976","position":[-310.3214,-8.7242,705.4911],"yaw":-2.35736,"spawnMask":3},{"id":"creature-147002","entityId":"entry-17977","position":[-223.1981,-32.0503,801.3391],"yaw":-3.21141,"spawnMask":3},{"id":"creature-147003","entityId":"entry-17978","position":[-164.306,-19.2348,1006.0351],"yaw":-4.69494,"spawnMask":3},{"id":"creature-147004","entityId":"entry-17980","position":[44.7676,-15.3508,800.7061],"yaw":-0.0174533,"spawnMask":3},{"id":"creature-147005","entityId":"entry-17993","position":[-234.3698,-9.5485,693.3391],"yaw":-1.76278,"spawnMask":3},{"id":"creature-147006","entityId":"entry-17993","position":[-192.105,-9.7187,702.2891],"yaw":-5.32325,"spawnMask":3},{"id":"creature-147007","entityId":"entry-17993","position":[-234.6594,-9.5377,701.7931],"yaw":-4.95674,"spawnMask":3},{"id":"creature-147008","entityId":"entry-17993","position":[-311.0184,-8.4912,691.2461],"yaw":-1.8326,"spawnMask":3},{"id":"creature-147009","entityId":"entry-17993","position":[-313.1144,-8.1651,691.2011],"yaw":-1.8326,"spawnMask":3},{"id":"creature-147010","entityId":"entry-17993","position":[-320.7604,-7.2547,695.0561],"yaw":-2.68781,"spawnMask":3},{"id":"creature-147011","entityId":"entry-17993","position":[-322.4654,-7.4697,697.3561],"yaw":-2.23402,"spawnMask":3},{"id":"creature-147012","entityId":"entry-17993","position":[-324.3264,-8.1645,702.4091],"yaw":-2.84489,"spawnMask":3},{"id":"creature-147013","entityId":"entry-17993","position":[-324.5224,-8.5282,704.9921],"yaw":-3.15905,"spawnMask":3},{"id":"creature-147014","entityId":"entry-17993","position":[1.8486,-21.8014,801.3371],"yaw":-1.95477,"spawnMask":3},{"id":"creature-147015","entityId":"entry-17993","position":[7.3066,-21.7704,801.2201],"yaw":-1.32645,"spawnMask":3},{"id":"creature-147016","entityId":"entry-17993","position":[-1.6884,-21.8981,881.1761],"yaw":-1.76278,"spawnMask":3},{"id":"creature-147017","entityId":"entry-17993","position":[5.6316,-21.8981,882.4911],"yaw":-1.5708,"spawnMask":3},{"id":"creature-147018","entityId":"entry-17993","position":[-191.704,-9.717,692.6671],"yaw":-1.8326,"spawnMask":3},{"id":"creature-147019","entityId":"entry-17993","position":[-162.0506,-9.7601,468.6119],"yaw":-3.14169,"spawnMask":3},{"id":"creature-147020","entityId":"entry-17993","position":[-166.1455,-9.6135,560.8891],"yaw":-5.51524,"spawnMask":3},{"id":"creature-147021","entityId":"entry-17993","position":[-153.0232,-9.7153,468.8641],"yaw":-0.030197,"spawnMask":3},{"id":"creature-147022","entityId":"entry-17993","position":[-167.8326,-9.7105,509.0699],"yaw":-2.61651,"spawnMask":3},{"id":"creature-147023","entityId":"entry-17993","position":[-151.1889,-9.6949,510.7561],"yaw":-0.524085,"spawnMask":3},{"id":"creature-147024","entityId":"entry-17993","position":[-150.9839,-9.6135,560.2841],"yaw":-0.191986,"spawnMask":3},{"id":"creature-147025","entityId":"entry-17993","position":[-166.2645,-9.6135,640.2701],"yaw":-3.45575,"spawnMask":3},{"id":"creature-147026","entityId":"entry-17993","position":[-151.0478,-9.6135,641.3911],"yaw":-0.349066,"spawnMask":3},{"id":"creature-147027","entityId":"entry-17994","position":[-123.7757,-5.9205,697.1311],"yaw":-5.65487,"spawnMask":3},{"id":"creature-147028","entityId":"entry-17994","position":[-261.5714,-10.8673,696.6391],"yaw":-5.04669,"spawnMask":3},{"id":"creature-147029","entityId":"entry-18155","position":[-131.6653,-6.0038,698.5041],"yaw":-3.65739,"spawnMask":3},{"id":"creature-147030","entityId":"entry-18155","position":[-259.9004,-10.9474,689.6581],"yaw":-2.39325,"spawnMask":3},{"id":"creature-147031","entityId":"entry-18155","position":[-122.7942,-5.9205,702.8781],"yaw":-4.00287,"spawnMask":3},{"id":"creature-147032","entityId":"entry-18155","position":[-268.9104,-10.9905,688.9631],"yaw":-4.41568,"spawnMask":3},{"id":"creature-147033","entityId":"entry-18155","position":[-259.0927,-10.7785,703.6991],"yaw":-4.53898,"spawnMask":3},{"id":"creature-147034","entityId":"entry-18155","position":[-122.1713,-6.0038,692.2181],"yaw":-2.96967,"spawnMask":3},{"id":"creature-147035","entityId":"entry-18404","position":[-236.1308,-9.4867,692.0941],"yaw":-1.81514,"spawnMask":3},{"id":"creature-147036","entityId":"entry-18404","position":[-308.9224,-8.8104,691.2441],"yaw":-1.48353,"spawnMask":3},{"id":"creature-147037","entityId":"entry-18404","position":[-318.4934,-7.4286,693.2701],"yaw":-2.3911,"spawnMask":3},{"id":"creature-147038","entityId":"entry-18404","position":[-324.5514,-8.9309,707.6651],"yaw":-2.96706,"spawnMask":3},{"id":"creature-147045","entityId":"entry-18419","position":[-175.2386,-9.6136,604.8201],"yaw":-0.244346,"spawnMask":3},{"id":"creature-147048","entityId":"entry-18419","position":[-145.1091,-9.6135,607.1031],"yaw":-2.49582,"spawnMask":3},{"id":"creature-147050","entityId":"entry-18419","position":[-155.9205,-9.6135,572.9881],"yaw":-1.15192,"spawnMask":3},{"id":"creature-147051","entityId":"entry-18420","position":[-319.0954,-9.57,860.2991],"yaw":-4.69494,"spawnMask":3},{"id":"creature-147052","entityId":"entry-18420","position":[-248.8043,-9.5848,901.5671],"yaw":-6.24828,"spawnMask":3},{"id":"creature-147053","entityId":"entry-18421","position":[-311.7534,-9.4596,784.7191],"yaw":-5.42797,"spawnMask":3},{"id":"creature-147054","entityId":"entry-18421","position":[-329.5594,-9.4596,796.9051],"yaw":-0.541052,"spawnMask":3},{"id":"creature-147055","entityId":"entry-18421","position":[-312.2404,-9.4596,821.2041],"yaw":-5.37561,"spawnMask":3},{"id":"creature-147056","entityId":"entry-18421","position":[-317.9724,-9.4596,820.8641],"yaw":-3.78736,"spawnMask":3},{"id":"creature-147057","entityId":"entry-18421","position":[-356.9024,-9.5572,787.4171],"yaw":-5.63741,"spawnMask":3},{"id":"creature-147058","entityId":"entry-18421","position":[-323.4954,-6.3261,911.1101],"yaw":-0.418879,"spawnMask":3},{"id":"creature-147059","entityId":"entry-18421","position":[-329.4594,-6.3575,908.7451],"yaw":-1.29154,"spawnMask":3},{"id":"creature-147060","entityId":"entry-18422","position":[-318.3064,-9.4596,779.3481],"yaw":-0.471239,"spawnMask":3},{"id":"creature-147063","entityId":"entry-18422","position":[-353.3784,-9.5277,791.4181],"yaw":-5.16617,"spawnMask":3},{"id":"creature-147064","entityId":"entry-18422","position":[-320.5444,-9.4596,818.4081],"yaw":-6.26573,"spawnMask":3},{"id":"creature-147065","entityId":"entry-18422","position":[-333.6184,-6.6333,905.7041],"yaw":-2.21657,"spawnMask":3},{"id":"creature-147066","entityId":"entry-18422","position":[-321.1824,-6.6653,917.8981],"yaw":-5.48033,"spawnMask":3},{"id":"creature-147067","entityId":"entry-18587","position":[-314.9914,-10.8221,840.8271],"yaw":-0.341256,"spawnMask":3},{"id":"creature-147068","entityId":"entry-18587","position":[-305.8214,-10.7161,839.7931],"yaw":-5.46936,"spawnMask":3},{"id":"creature-147069","entityId":"entry-18587","position":[-307.6504,-10.7665,846.8441],"yaw":-0.541052,"spawnMask":3},{"id":"creature-147070","entityId":"entry-18587","position":[-327.6904,-11.0386,842.7831],"yaw":-1.1565,"spawnMask":3},{"id":"creature-147071","entityId":"entry-18587","position":[-323.8514,-11.009,846.0661],"yaw":-0.482658,"spawnMask":3},{"id":"creature-147072","entityId":"entry-18587","position":[-314.3614,-10.9239,850.8631],"yaw":-1.48074,"spawnMask":3},{"id":"creature-147073","entityId":"entry-18587","position":[-329.4324,-11.0754,847.8411],"yaw":-4.1424,"spawnMask":3},{"id":"creature-147074","entityId":"entry-18587","position":[-261.8394,-10.7853,887.8781],"yaw":-4.53808,"spawnMask":3},{"id":"creature-147075","entityId":"entry-18587","position":[-325.6194,-11.0524,852.9071],"yaw":-3.69224,"spawnMask":3},{"id":"creature-147076","entityId":"entry-18587","position":[-257.7629,-10.9043,896.9331],"yaw":-1.36306,"spawnMask":3},{"id":"creature-147077","entityId":"entry-18587","position":[-256.9325,-10.9838,904.2301],"yaw":-4.39194,"spawnMask":3},{"id":"creature-147078","entityId":"entry-18587","position":[-266.1104,-11.0428,906.4661],"yaw":-1.85695,"spawnMask":3},{"id":"creature-147079","entityId":"entry-18587","position":[-261.5994,-11.0281,906.6321],"yaw":-4.53179,"spawnMask":3},{"id":"creature-147080","entityId":"entry-18587","position":[-267.0124,-10.9369,898.6861],"yaw":-6.10342,"spawnMask":3},{"id":"creature-147081","entityId":"entry-18587","position":[-257.4536,-11.0756,912.1721],"yaw":-4.16586,"spawnMask":3},{"id":"creature-147082","entityId":"entry-18587","position":[-271.8284,-11.169,915.7621],"yaw":-0.637195,"spawnMask":3},{"id":"creature-147083","entityId":"entry-19486","position":[-311.4184,-9.4596,779.1741],"yaw":-0.785398,"spawnMask":3},{"id":"creature-147084","entityId":"entry-19486","position":[-335.2004,-9.4596,796.6231],"yaw":-2.23402,"spawnMask":3},{"id":"creature-147085","entityId":"entry-19486","position":[-311.7524,-9.4596,815.5011],"yaw":-0.855211,"spawnMask":3},{"id":"creature-147086","entityId":"entry-19486","position":[-358.9404,-9.592,781.5691],"yaw":-0.663225,"spawnMask":3},{"id":"creature-147087","entityId":"entry-19486","position":[-335.7374,-9.4596,802.1371],"yaw":-3.76991,"spawnMask":3},{"id":"creature-147088","entityId":"entry-19486","position":[-357.4884,-9.5802,783.1191],"yaw":-0.471239,"spawnMask":3},{"id":"creature-147089","entityId":"entry-19486","position":[-324.7624,-6.3651,913.8751],"yaw":-0.10472,"spawnMask":3},{"id":"creature-147090","entityId":"entry-19505","position":[-149.6401,-21.8084,998.1591],"yaw":-1.55334,"spawnMask":3},{"id":"creature-147091","entityId":"entry-19505","position":[-155.0689,-9.3823,914.6711],"yaw":-0.820305,"spawnMask":3},{"id":"creature-147092","entityId":"entry-19505","position":[-139.2038,-9.3861,914.4871],"yaw":-1.27409,"spawnMask":3},{"id":"creature-147093","entityId":"entry-19505","position":[-160.9057,-9.3884,914.9691],"yaw":-2.28638,"spawnMask":3},{"id":"creature-147094","entityId":"entry-19505","position":[-143.7226,-9.3793,915.0901],"yaw":-2.47837,"spawnMask":3},{"id":"creature-147095","entityId":"entry-19505","position":[-179.3574,-21.8287,997.8401],"yaw":-1.58825,"spawnMask":3},{"id":"creature-147096","entityId":"entry-19507","position":[-6.9574,-21.762,782.1211],"yaw":-0.331613,"spawnMask":3},{"id":"creature-147097","entityId":"entry-19507","position":[4.9176,-21.7734,785.1401],"yaw":-2.75762,"spawnMask":3},{"id":"creature-147098","entityId":"entry-19507","position":[-5.0014,-21.8781,795.8331],"yaw":-4.43314,"spawnMask":3},{"id":"creature-147099","entityId":"entry-19507","position":[12.9626,-21.7672,789.7731],"yaw":-0.890118,"spawnMask":3},{"id":"creature-147100","entityId":"entry-19507","position":[17.7376,-21.7646,787.7051],"yaw":-5.18363,"spawnMask":3},{"id":"creature-147101","entityId":"entry-19507","position":[13.9166,-21.7638,799.5861],"yaw":-3.50811,"spawnMask":3},{"id":"creature-147102","entityId":"entry-19507","position":[-8.8174,-21.9144,809.7591],"yaw":-2.75762,"spawnMask":3},{"id":"creature-147103","entityId":"entry-19507","position":[7.4996,-21.7707,807.9281],"yaw":-4.2237,"spawnMask":3},{"id":"creature-147104","entityId":"entry-19507","position":[20.5646,-21.7607,810.5641],"yaw":-0.488692,"spawnMask":3},{"id":"creature-147105","entityId":"entry-19507","position":[-1.7234,-21.7689,821.1581],"yaw":-1.27409,"spawnMask":3},{"id":"creature-147106","entityId":"entry-19507","position":[13.2476,-21.7676,813.3821],"yaw":-4.7473,"spawnMask":3},{"id":"creature-147107","entityId":"entry-19507","position":[17.8596,-21.7634,818.4211],"yaw":-2.07694,"spawnMask":3},{"id":"creature-147108","entityId":"entry-19507","position":[1.1326,-21.8981,908.6091],"yaw":-3.19395,"spawnMask":3},{"id":"creature-147109","entityId":"entry-19507","position":[-27.8304,-21.8981,917.0611],"yaw":-4.15388,"spawnMask":3},{"id":"creature-147110","entityId":"entry-19507","position":[-8.9584,-21.8981,935.9941],"yaw":-3.63028,"spawnMask":3},{"id":"creature-147111","entityId":"entry-19508","position":[-143.0966,-9.5423,892.1631],"yaw":-3.94444,"spawnMask":3},{"id":"creature-147112","entityId":"entry-19508","position":[-142.0361,-9.5253,894.5561],"yaw":-2.96706,"spawnMask":3},{"id":"creature-147113","entityId":"entry-19508","position":[-30.1834,-21.8981,913.4201],"yaw":-3.38594,"spawnMask":3},{"id":"creature-147114","entityId":"entry-19508","position":[4.1696,-21.8981,913.7471],"yaw":-3.90954,"spawnMask":3},{"id":"creature-147115","entityId":"entry-19509","position":[-144.3187,-9.5616,889.4381],"yaw":-1.39626,"spawnMask":3},{"id":"creature-147116","entityId":"entry-19509","position":[2.4136,-21.8981,904.4871],"yaw":-2.93215,"spawnMask":3},{"id":"creature-147117","entityId":"entry-19509","position":[-23.6704,-21.8981,917.4621],"yaw":-4.7822,"spawnMask":3},{"id":"creature-147118","entityId":"entry-19509","position":[-9.7714,-21.8981,931.6741],"yaw":-2.82743,"spawnMask":3},{"id":"creature-147119","entityId":"entry-19509","position":[-4.8794,-21.8981,939.3641],"yaw":-3.75246,"spawnMask":3},{"id":"creature-147120","entityId":"entry-19511","position":[-173.076,-21.9432,988.5791],"yaw":-1.98968,"spawnMask":3},{"id":"creature-147125","entityId":"entry-19511","position":[-172.4901,-22.075,979.2811],"yaw":-1.79769,"spawnMask":3},{"id":"creature-147126","entityId":"entry-19511","position":[-158.49,-22.0312,979.4121],"yaw":-1.44862,"spawnMask":3},{"id":"creature-147127","entityId":"entry-19511","position":[-149.3679,-21.9548,986.8261],"yaw":-1.13446,"spawnMask":3},{"id":"creature-147128","entityId":"entry-19512","position":[-117.5723,-21.3177,946.4961],"yaw":-4.67166,"spawnMask":3},{"id":"creature-147129","entityId":"entry-19512","position":[-151.0644,-22.06,978.3751],"yaw":-1.25664,"spawnMask":3},{"id":"creature-147130","entityId":"entry-19512","position":[-180.0153,-22.0893,979.7241],"yaw":-2.04204,"spawnMask":3},{"id":"creature-147131","entityId":"entry-19512","position":[-181.6601,-21.9648,988.7081],"yaw":-2.25147,"spawnMask":3},{"id":"creature-147132","entityId":"entry-19512","position":[-159.4832,-21.9386,986.4461],"yaw":-1.41372,"spawnMask":3},{"id":"creature-147133","entityId":"entry-19513","position":[-1.6004,-21.7667,786.0011],"yaw":-2.07694,"spawnMask":3},{"id":"creature-147134","entityId":"entry-19513","position":[13.7436,-21.7684,781.4291],"yaw":-0.698132,"spawnMask":3},{"id":"creature-147135","entityId":"entry-19513","position":[-3.4444,-21.7662,814.1461],"yaw":-1.11701,"spawnMask":3},{"id":"creature-147136","entityId":"entry-19513","position":[11.3696,-21.7682,817.5771],"yaw":-0.680678,"spawnMask":3},{"id":"creature-147137","entityId":"entry-19513","position":[-1.0244,-21.767,818.6511],"yaw":-5.95157,"spawnMask":3},{"id":"creature-147138","entityId":"entry-19513","position":[18.7406,-21.7634,823.7501],"yaw":-5.61996,"spawnMask":3},{"id":"creature-147143","entityId":"entry-19557","position":[-319.9764,-9.4596,780.4861],"yaw":-3.24631,"spawnMask":3},{"id":"creature-147144","entityId":"entry-19557","position":[-313.3664,-9.5429,808.4691],"yaw":-2.90003,"spawnMask":3},{"id":"creature-147145","entityId":"entry-19557","position":[-326.1934,-9.5429,813.0011],"yaw":-3.86121,"spawnMask":3},{"id":"creature-147146","entityId":"entry-19557","position":[-354.2064,-9.5396,789.6361],"yaw":-1.67552,"spawnMask":3},{"id":"creature-147147","entityId":"entry-19557","position":[-322.4464,-9.4596,818.4961],"yaw":-2.60054,"spawnMask":3},{"id":"creature-147148","entityId":"entry-19557","position":[-331.9724,-6.4688,907.8151],"yaw":-4.43314,"spawnMask":3},{"id":"creature-147149","entityId":"entry-19557","position":[-323.1184,-6.5175,916.5631],"yaw":-3.50811,"spawnMask":3},{"id":"creature-147150","entityId":"entry-19598","position":[-32.1694,-21.8981,917.5541],"yaw":-0.680678,"spawnMask":3},{"id":"creature-147151","entityId":"entry-19598","position":[-30.3354,-21.9814,924.8041],"yaw":-2.95071,"spawnMask":3},{"id":"creature-147152","entityId":"entry-19598","position":[-7.2524,-21.9814,909.4321],"yaw":-4.08054,"spawnMask":3},{"id":"creature-147153","entityId":"entry-19598","position":[-2.3254,-21.9814,915.9201],"yaw":-0.767585,"spawnMask":3},{"id":"creature-147154","entityId":"entry-19598","position":[-15.7074,-21.9814,931.5031],"yaw":-4.94884,"spawnMask":3},{"id":"creature-147155","entityId":"entry-19598","position":[-9.3244,-21.9814,940.3351],"yaw":-2.32775,"spawnMask":3},{"id":"creature-147156","entityId":"entry-19608","position":[-170.7979,-32.0654,769.1961],"yaw":-4.32122,"spawnMask":3},{"id":"creature-147157","entityId":"entry-19608","position":[-176.4028,-31.5744,768.4571],"yaw":-3.72482,"spawnMask":3},{"id":"creature-147158","entityId":"entry-19608","position":[-163.7572,-31.9089,774.9211],"yaw":-2.28376,"spawnMask":3},{"id":"creature-147159","entityId":"entry-19608","position":[-187.6112,-29.8866,776.7551],"yaw":-1.70034,"spawnMask":3},{"id":"creature-147160","entityId":"entry-19608","position":[-171.6526,-30.8932,780.2271],"yaw":-5.844,"spawnMask":3},{"id":"creature-147161","entityId":"entry-19608","position":[-159.7775,-31.7229,784.0291],"yaw":-5.34399,"spawnMask":3},{"id":"creature-147162","entityId":"entry-19608","position":[-177.745,-30.716,782.5681],"yaw":-5.03616,"spawnMask":3},{"id":"creature-147163","entityId":"entry-19608","position":[-185.3364,-30.8451,786.1791],"yaw":-2.39683,"spawnMask":3},{"id":"creature-147164","entityId":"entry-19608","position":[-172.2458,-31.8044,789.2421],"yaw":-3.36757,"spawnMask":3},{"id":"creature-147165","entityId":"entry-19608","position":[-180.3096,-31.5093,789.7391],"yaw":-5.57957,"spawnMask":3},{"id":"creature-147166","entityId":"entry-19608","position":[-147.8919,-33.1294,813.1411],"yaw":-6.07067,"spawnMask":3},{"id":"creature-147167","entityId":"entry-19608","position":[-174.9875,-31.7474,812.9561],"yaw":-3.98517,"spawnMask":3},{"id":"creature-147168","entityId":"entry-19608","position":[-144.5588,-33.2084,819.1851],"yaw":-4.28779,"spawnMask":3},{"id":"creature-147169","entityId":"entry-19608","position":[-163.3743,-31.8678,816.9031],"yaw":-4.80471,"spawnMask":3},{"id":"creature-147170","entityId":"entry-19608","position":[-152.8155,-33.009,816.1661],"yaw":-3.19496,"spawnMask":3},{"id":"creature-147171","entityId":"entry-19608","position":[-156.5449,-33.0536,813.9481],"yaw":-0.289019,"spawnMask":3},{"id":"creature-147172","entityId":"entry-19608","position":[-160.5965,-32.4271,822.9851],"yaw":-0.105794,"spawnMask":3},{"id":"creature-147173","entityId":"entry-19608","position":[-162.829,-32.0228,821.7171],"yaw":-3.88872,"spawnMask":3},{"id":"creature-147174","entityId":"entry-19608","position":[-162.9308,-32.6553,829.7941],"yaw":-0.043863,"spawnMask":3},{"id":"creature-147175","entityId":"entry-19608","position":[-161.5483,-32.9138,831.2401],"yaw":-0.307776,"spawnMask":3},{"id":"creature-147176","entityId":"entry-19633","position":[-165.0199,-9.6135,576.2561],"yaw":-3.48662,"spawnMask":3},{"id":"creature-147177","entityId":"entry-19633","position":[-169.977,-9.6135,611.8481],"yaw":-4.13643,"spawnMask":3},{"id":"creature-147178","entityId":"entry-19633","position":[-158.6017,-9.5641,664.5771],"yaw":-1.67552,"spawnMask":3},{"id":"creature-147179","entityId":"entry-19633","position":[-148.0911,-9.6135,610.5801],"yaw":-5.51524,"spawnMask":3},{"id":"creature-147180","entityId":"entry-19843","position":[-92.3146,-21.9421,969.7601],"yaw":-3.31579,"spawnMask":3},{"id":"creature-147181","entityId":"entry-19843","position":[-77.3976,-21.948,956.7571],"yaw":-4.42682,"spawnMask":3},{"id":"creature-147182","entityId":"entry-19865","position":[4.9566,-21.7753,780.7241],"yaw":-5.89921,"spawnMask":3},{"id":"creature-147183","entityId":"entry-19865","position":[9.6366,-21.7689,792.9041],"yaw":-4.7822,"spawnMask":3},{"id":"creature-147184","entityId":"entry-19865","position":[-1.7124,-21.8458,806.1611],"yaw":-5.75959,"spawnMask":3},{"id":"creature-147185","entityId":"entry-19865","position":[-7.8324,-21.7613,823.3181],"yaw":-3.735,"spawnMask":3},{"id":"creature-147186","entityId":"entry-19865","position":[14.9096,-21.7643,810.7371],"yaw":-5.37561,"spawnMask":3},{"id":"creature-147187","entityId":"entry-19865","position":[13.6256,-21.7875,828.0061],"yaw":-2.54818,"spawnMask":3}],"roamingPacks":[{"id":"patrol-147039","name":"Tempest-Forge Peacekeeper Patrol","speed":1.15,"pathId":1470390,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-143.9963,-5.1499,697.7471],[-157.1162,-3.1158,697.7741],[-168.3619,-4.1596,697.6461],[-207.5445,-9.8319,697.0521],[-168.3619,-4.1596,697.6461],[-157.1162,-3.1158,697.7741]],"members":[{"id":"member","entityId":"entry-18405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147040","name":"Tempest-Forge Peacekeeper Patrol","speed":1.15,"pathId":1470400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-142.7346,-9.6969,591.4581],[-143.4009,-9.6968,577.3901],[-158.6759,-9.6969,566.2491],[-158.6241,-9.6969,532.3791],[-158.6759,-9.6969,566.2491],[-143.4009,-9.6968,577.3901]],"members":[{"id":"member","entityId":"entry-18405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147041","name":"Tempest-Forge Peacekeeper Patrol","speed":1.15,"pathId":1470410,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-158.6023,-9.7355,521.4331],[-158.066,-9.8288,486.4039],[-158.154,-9.8541,450.2749],[-158.066,-9.8288,486.4039]],"members":[{"id":"member","entityId":"entry-18405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147042","name":"Tempest-Forge Peacekeeper Patrol","speed":1.15,"pathId":1470420,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-173.5423,-9.6969,586.8031],[-173.752,-9.6969,601.0801],[-169.1023,-9.6969,607.3081],[-158.6491,-9.6969,612.1451],[-158.4937,-9.7328,651.8591],[-158.4937,-9.7328,651.8591],[-158.5858,-9.6969,612.1741],[-169.1023,-9.6969,607.3081],[-173.752,-9.6969,601.0801]],"members":[{"id":"member","entityId":"entry-18405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147043","name":"Bloodwarder Greenkeeper Patrol","speed":1.15,"pathId":1470430,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-139.7399,-9.6969,606.4031],[-145.1078,-9.6969,604.7711],[-148.525,-9.6969,607.9341],[-152.2717,-9.6969,611.5031],[-151.1377,-9.6969,613.7881],[-151.1377,-9.6969,613.7881],[-148.6159,-9.6969,609.2801],[-146.8667,-9.6969,605.0681],[-142.9331,-9.6969,603.7531],[-139.7399,-9.6969,606.4031]],"members":[{"id":"member","entityId":"entry-18419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147044","name":"Bloodwarder Greenkeeper Patrol","speed":1.15,"pathId":1470440,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-153.115,-9.6969,576.1491],[-155.8931,-9.6969,570.4791],[-160.3498,-9.6969,570.0611],[-161.5711,-9.6969,572.4901],[-161.5711,-9.6969,572.4901],[-155.0631,-9.6969,570.7181],[-153.152,-9.6969,572.9711],[-153.115,-9.6969,576.1491]],"members":[{"id":"member","entityId":"entry-18419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147046","name":"Bloodwarder Greenkeeper Patrol","speed":1.15,"pathId":1470460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-154.9041,-9.5531,662.3281],[-154.9041,-9.5531,662.3281]],"members":[{"id":"member","entityId":"entry-18419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147047","name":"Bloodwarder Greenkeeper Patrol","speed":1.15,"pathId":1470470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-172.4755,-9.6969,607.9301],[-176.6996,-9.6969,602.5021],[-176.6996,-9.6969,602.5021],[-172.3955,-9.6969,605.4921],[-172.4755,-9.6969,607.9301]],"members":[{"id":"member","entityId":"entry-18419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147049","name":"Bloodwarder Greenkeeper Patrol","speed":1.15,"pathId":1470490,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-162.4967,-9.5489,662.9331],[-162.4967,-9.5489,662.9331]],"members":[{"id":"member","entityId":"entry-18419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147061","name":"Sunseeker Botanist Patrol","speed":1.15,"pathId":1470610,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-320.6844,-9.5429,787.0891],[-324.0924,-9.5429,793.1501],[-323.4454,-9.5429,797.6181],[-321.1994,-9.5429,801.9821],[-318.4014,-9.5429,804.3831],[-314.0424,-9.5429,807.5351],[-313.2984,-9.5429,811.3481],[-313.2984,-9.5429,811.3481],[-314.7824,-9.5429,806.9951],[-317.1784,-9.5429,804.8581],[-320.0974,-9.5429,801.9691],[-323.0774,-9.5429,797.4741],[-323.2024,-9.5429,794.5251],[-322.4714,-9.5429,790.2771],[-320.6844,-9.5429,787.0891]],"members":[{"id":"member","entityId":"entry-18422","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147062","name":"Sunseeker Botanist Patrol","speed":1.15,"pathId":1470620,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-320.9434,-9.5429,812.3881],[-324.4944,-9.5429,809.3601],[-328.1194,-9.5429,809.2961],[-332.1724,-9.5429,810.0321],[-337.2674,-9.5429,809.4651],[-341.1124,-9.5429,806.9261],[-341.8324,-9.5429,802.5561],[-342.3904,-9.5429,797.7771],[-344.7504,-9.6567,793.8771],[-347.4364,-9.6622,792.8281],[-350.7354,-9.6688,793.9421],[-350.7354,-9.6688,793.9421],[-346.1754,-9.6595,794.9351],[-343.2464,-9.6534,797.9571],[-342.1304,-9.5429,801.8841],[-341.1834,-9.5429,807.3051],[-336.8174,-9.5429,811.8951],[-328.3594,-9.5429,814.2101],[-320.9434,-9.5429,812.3881]],"members":[{"id":"member","entityId":"entry-18422","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147121","name":"Nethervine Inciter Patrol","speed":1.15,"pathId":1471210,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-160.9968,-9.6911,891.9571],[-152.832,-9.6513,892.3891],[-145.538,-9.5819,898.3131],[-141.722,-9.5272,906.0071],[-143.0631,-9.4808,912.5351],[-152.832,-9.6513,892.3891]],"members":[{"id":"member","entityId":"entry-19511","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147122","name":"Nethervine Inciter Patrol","speed":1.15,"pathId":1471220,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-148.8511,-9.432,919.3951],[-148.5455,-9.5119,908.1521],[-161.8577,-9.598,902.8751],[-174.4506,-9.6265,906.3531],[-161.8577,-9.598,902.8751],[-148.5455,-9.5119,908.1521]],"members":[{"id":"member","entityId":"entry-19511","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147123","name":"Nethervine Inciter Patrol","speed":1.15,"pathId":1471230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-137.7752,-10.6317,927.1631],[-150.0136,-9.793,925.9651],[-164.348,-11.2949,927.6171],[-178.803,-15.4144,935.7771],[-183.2688,-22.5336,949.8841],[-177.4614,-22.4545,958.0001],[-157.5243,-22.2924,963.0211],[-141.3992,-22.3481,962.7491],[-128.9292,-22.4612,959.7941],[-116.0358,-22.5165,954.1431],[-112.5918,-20.0498,943.0041],[-122.1757,-14.3208,933.4861]],"members":[{"id":"member","entityId":"entry-19511","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147124","name":"Nethervine Inciter Patrol","speed":1.15,"pathId":1471240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-130.1849,-22.147,977.6711],[-147.8518,-22.2527,969.2821],[-173.0687,-22.2941,966.2621],[-193.8949,-22.4389,963.6451],[-173.0687,-22.2941,966.2621],[-147.8518,-22.2527,969.2821]],"members":[{"id":"member","entityId":"entry-19511","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-147001","name":"Commander Sarannis","position":[-310.3214,-8.7242,705.4911]},{"id":"creature-147000","name":"High Botanist Freywinn","position":[-275.6834,-9.0979,865.0271]},{"id":"creature-147003","name":"Thorngrin the Tender","position":[-164.306,-19.2348,1006.0351]},{"id":"creature-147004","name":"Laj","position":[44.7676,-15.3508,800.7061]},{"id":"creature-147002","name":"Warp Splinter","position":[-223.1981,-32.0503,801.3391]}],"objectiveOrder":[{"id":"creature-147001","name":"Commander Sarannis","position":[-310.3214,-8.7242,705.4911]},{"id":"creature-147000","name":"High Botanist Freywinn","position":[-275.6834,-9.0979,865.0271]},{"id":"creature-147003","name":"Thorngrin the Tender","position":[-164.306,-19.2348,1006.0351]},{"id":"creature-147004","name":"Laj","position":[44.7676,-15.3508,800.7061]},{"id":"creature-147002","name":"Warp Splinter","position":[-223.1981,-32.0503,801.3391]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":233,"id":184222,"map":553,"orientation":0.0494656,"phaseMask":1,"position_x":158.952,"position_y":391.653,"position_z":-35.5291,"rotation0":0,"rotation1":0,"rotation2":0.0247303,"rotation3":0.999694,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":237,"id":184221,"map":553,"orientation":0.0494656,"phaseMask":1,"position_x":158.952,"position_y":391.653,"position_z":-35.5291,"rotation0":0,"rotation1":0,"rotation2":0.0247303,"rotation3":0.999694,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105183,"id":181270,"map":553,"orientation":1.8675,"phaseMask":1,"position_x":41.4327,"position_y":356.078,"position_z":-26.0174,"rotation0":0,"rotation1":0,"rotation2":0.803857,"rotation3":0.594823,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105184,"id":181270,"map":553,"orientation":5.20108,"phaseMask":1,"position_x":9.8574,"position_y":418.206,"position_z":-27.5923,"rotation0":0,"rotation1":0,"rotation2":-0.515038,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105185,"id":181270,"map":553,"orientation":0.541051,"phaseMask":1,"position_x":63.4501,"position_y":427.082,"position_z":-25.5068,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105186,"id":181279,"map":553,"orientation":3.82227,"phaseMask":1,"position_x":-0.459927,"position_y":256.711,"position_z":-4.35613,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333808,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105187,"id":181271,"map":553,"orientation":3.76991,"phaseMask":1,"position_x":0.634392,"position_y":165.962,"position_z":-3.67233,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105188,"id":181270,"map":553,"orientation":4.92183,"phaseMask":1,"position_x":93.4825,"position_y":371.747,"position_z":-27.3115,"rotation0":0,"rotation1":0,"rotation2":-0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105189,"id":181270,"map":553,"orientation":4.79966,"phaseMask":1,"position_x":173.042,"position_y":388.688,"position_z":-3.90029,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105190,"id":181271,"map":553,"orientation":6.19592,"phaseMask":1,"position_x":155.018,"position_y":409.847,"position_z":-3.52534,"rotation0":0,"rotation1":0,"rotation2":-0.0436192,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105191,"id":181279,"map":553,"orientation":0.279252,"phaseMask":1,"position_x":115.816,"position_y":450.617,"position_z":-3.82386,"rotation0":0,"rotation1":0,"rotation2":0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105192,"id":181271,"map":553,"orientation":0.314158,"phaseMask":1,"position_x":-22.2003,"position_y":502.644,"position_z":-4.84003,"rotation0":0,"rotation1":0,"rotation2":0.156434,"rotation3":0.987688,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105193,"id":181277,"map":553,"orientation":4.39823,"phaseMask":1,"position_x":-165.293,"position_y":495.911,"position_z":-15.0749,"rotation0":0,"rotation1":0,"rotation2":-0.809016,"rotation3":0.587786,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105194,"id":181270,"map":553,"orientation":3.35105,"phaseMask":1,"position_x":-154.192,"position_y":523.518,"position_z":-16.0193,"rotation0":0,"rotation1":0,"rotation2":-0.994521,"rotation3":0.104536,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105195,"id":181279,"map":553,"orientation":2.32129,"phaseMask":1,"position_x":169.234,"position_y":504.449,"position_z":0.050639,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.39875,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150044,"id":184215,"map":553,"orientation":2.35619,"phaseMask":1,"position_x":47.5461,"position_y":-35.5614,"position_z":1.41111,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150045,"id":184216,"map":553,"orientation":2.35619,"phaseMask":1,"position_x":47.5461,"position_y":-35.5614,"position_z":1.41111,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/TempestKeepAtrium":"912b7158aaf9d6c4e375881dee4f8367ea4249f7e54541664625e74d4d5b4289","patch/World/maps/TempestKeepAtrium":"52b1dfd1718d84ba928b30d402060f06a47aebd78f7e81222038650d330a2e44"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/botanica/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["29/29 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"mechanar","title":"Tempest Keep: The Mechanar","mapId":554,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Tempest Keep: The Mechanar","theme":"Instanced dungeon","summary":"Fight through Tempest Keep: The Mechanar, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Tempest Keep: The Mechanar...","unchartedAreaName":"Uncharted Tempest Keep: The Mechanar","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":490.9126},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/554-tempestkeepfactory/visual.glb","checksum":"5bf8facf148005c0040092308ac36d2943d92ca9aa02c7c73d98c0559a5be6f7","size":2578388,"triangleCount":57964}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/554-tempestkeepfactory/collision.glb","checksum":"5442ee065fa0a137c1f1728cf30f907aae02537050aa056589d23c551858278a","size":575312,"triangleCount":51006}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/554-tempestkeepfactory/navigation.glb","checksum":"042f0d2003f53bf20dc2be1b74c5d583f46c6282636159fa6341c20ea03e10f5","size":140680,"triangleCount":10194}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-656.5814,-20.2352,-217.1997],"max":[25.2416,49.8012,127.1413]},"entrance":{"name":"Tempest Keep: The Mechanar Entrance","footPosition":[-256.1584,0.0685,-66.4974],"forward":[0.8812360036624922,0,0.47267653405786925],"yaw":1.0784707641175544},"areas":[{"id":"entrance","name":"Tempest Keep: The Mechanar Entrance","center":[-256.1584,0.0685,-66.4974],"radius":35},{"id":"area-mechano-lord-capacitus","name":"Mechano-Lord Capacitus's Encounter","center":[-493.2904,-0.2352,-80.2271],"radius":42},{"id":"area-nethermancer-sepethrea","name":"Nethermancer Sepethrea's Encounter","center":[-611.5814,29.8012,-53.9818],"radius":42},{"id":"area-pathaleon-the-calculator","name":"Pathaleon the Calculator's Encounter","center":[-424.6064,27.5403,82.1413],"radius":42}],"entities":{"entry-19166":{"id":"entry-19166","kind":"mob","name":"Tempest-Forge Patroller","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-18662-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.3789,"markerRadius":2.14}}},"entry-19167":{"id":"entry-19167","kind":"mob","name":"Bloodwarder Slayer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15708","name":"Mortal Strike","spellId":15708,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4807,"damageMultiplier":1.12},{"id":"spell-35189","name":"Solar Strike","spellId":35189,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4807,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/cb1b6b74237a0c0edf9d974746514164f3d19e80ff887379f88aada24a898978.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19168":{"id":"entry-19168","kind":"mob","name":"Sunseeker Astromage","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35265","name":"Fire Shield","spellId":35265,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":4215,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-35265","durationMs":8000,"magnitude":0.15}},{"id":"spell-35267","name":"Solarburn","spellId":35267,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4215,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/a4eebcf9534bcfb16c8420c0262664911893f2ad0a58b476df4071776c170fc2.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-19218":{"id":"entry-19218","kind":"mob","name":"Gatewatcher Gyro-Kill","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-18816-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1204,"labelHeight":10.9301,"markerRadius":4.5}}},"entry-19219":{"id":"entry-19219","kind":"boss","name":"Mechano-Lord Capacitus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35161","name":"Head Crack","spellId":35161,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6514,"damageMultiplier":1.35},{"id":"spell-35159","name":"Reflective Damage Shield","spellId":35159,"delivery":"area","target":"self","school":"arcane","animation":"cast","range":0,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-35159","durationMs":12000,"magnitude":0.25}},{"id":"spell-35158","name":"Reflective Magic Shield","spellId":35158,"delivery":"area","target":"self","school":"arcane","animation":"cast","range":0,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-35158","durationMs":12000,"magnitude":0.25}},{"id":"spell-35057","name":"Netherbomb","spellId":35057,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6514,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-19162-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0145,"labelHeight":15.7269,"markerRadius":4.5}}},"entry-19220":{"id":"entry-19220","kind":"boss","name":"Pathaleon the Calculator","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-35280","name":"Domination","spellId":35280,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5803,"damageMultiplier":1.35},{"id":"spell-35289","name":"Disgruntled Anger","spellId":35289,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5803,"damageMultiplier":1.35},{"id":"spell-36021","name":"Mana Tap","spellId":36021,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5803,"damageMultiplier":1.35},{"id":"spell-36022","name":"Arcane Torrent","spellId":36022,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5803,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-20033-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.0141,"markerRadius":0.7986}}},"entry-19221":{"id":"entry-19221","kind":"boss","name":"Nethermancer Sepethrea","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5599,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-19166-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":4.5567,"markerRadius":0.65}}},"entry-19231":{"id":"entry-19231","kind":"mob","name":"Mechanar Crusher","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.047616,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-35055","name":"The Claw","spellId":35055,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6073,"damageMultiplier":1.12},{"id":"spell-35056","name":"Glob of Machine Fluid","spellId":35056,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6073,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-17977-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0602,"labelHeight":5.4823,"markerRadius":3.1557}}},"entry-19510":{"id":"entry-19510","kind":"mob","name":"Bloodwarder Centurion","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35178","name":"Shield Bash","spellId":35178,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":6052,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-35178","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/cb1b6b74237a0c0edf9d974746514164f3d19e80ff887379f88aada24a898978.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19710":{"id":"entry-19710","kind":"mob","name":"Gatewatcher Iron-Hand","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-21191-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1204,"labelHeight":10.2213,"markerRadius":4.5}}},"entry-19712":{"id":"entry-19712","kind":"mob","name":"Mechanar Driller","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.047616,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-35047","name":"Drill Armor","spellId":35047,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5203,"damageMultiplier":1.12},{"id":"spell-35056","name":"Glob of Machine Fluid","spellId":35056,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5203,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-18646-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0602,"labelHeight":5.4823,"markerRadius":3.1194}}},"entry-19713":{"id":"entry-19713","kind":"mob","name":"Mechanar Wrecker","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.047616,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-35049","name":"Pound","spellId":35049,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4973,"damageMultiplier":1.12},{"id":"spell-35056","name":"Glob of Machine Fluid","spellId":35056,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4973,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-18647-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0602,"labelHeight":5.1107,"markerRadius":2.6842}}},"entry-19716":{"id":"entry-19716","kind":"mob","name":"Mechanar Tinkerer","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35057","name":"Netherbomb","spellId":35057,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5923,"damageMultiplier":1.12},{"id":"spell-35062","name":"Maniacal Charge","spellId":35062,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5923,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-18288-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":2.8833,"markerRadius":1.3804}}},"entry-19735":{"id":"entry-19735","kind":"mob","name":"Tempest-Forge Destroyer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-19165-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":7.2902,"markerRadius":2.4457}}},"entry-20059":{"id":"entry-20059","kind":"mob","name":"Sunseeker Netherbinder","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21668","name":"Starfire","spellId":21668,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4269,"damageMultiplier":1.12},{"id":"spell-35261","name":"Arcane Nova","spellId":35261,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":4269,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/a4eebcf9534bcfb16c8420c0262664911893f2ad0a58b476df4071776c170fc2.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-20988":{"id":"entry-20988","kind":"mob","name":"Sunseeker Engineer","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36341","name":"Super Shrink Ray","spellId":36341,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5481,"damageMultiplier":1.12},{"id":"spell-36345","name":"Death Ray","spellId":36345,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5481,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-19966-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-20990":{"id":"entry-20990","kind":"mob","name":"Bloodwarder Physician","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36333","name":"Anesthetic","spellId":36333,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6665,"damageMultiplier":1.12},{"id":"spell-36348","name":"Bandage","spellId":36348,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6665,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-19970-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-138801","entityId":"entry-19166","position":[-361.9158,16.806,-7.5558],"yaw":-3.13951,"spawnMask":3},{"id":"creature-138803","entityId":"entry-19166","position":[-358.9825,16.806,-123.8901],"yaw":-3.1402,"spawnMask":3},{"id":"creature-138804","entityId":"entry-19166","position":[-315.2841,1.9637,-64.2623],"yaw":-3.29867,"spawnMask":3},{"id":"creature-138806","entityId":"entry-19167","position":[-362.9677,16.8893,-119.158],"yaw":-3.31613,"spawnMask":3},{"id":"creature-138807","entityId":"entry-19167","position":[-322.4624,2.1277,-2.5317],"yaw":-4.13643,"spawnMask":3},{"id":"creature-138808","entityId":"entry-19167","position":[-322.2394,2.1277,-119.0467],"yaw":-4.11898,"spawnMask":3},{"id":"creature-138809","entityId":"entry-19167","position":[-315.7888,2.1271,-115.5319],"yaw":-2.20191,"spawnMask":3},{"id":"creature-138810","entityId":"entry-19167","position":[-362.8818,16.8893,-3.0541],"yaw":-3.26377,"spawnMask":3},{"id":"creature-138811","entityId":"entry-19167","position":[-404.4094,16.8976,18.7341],"yaw":-3.45575,"spawnMask":3},{"id":"creature-138812","entityId":"entry-19167","position":[-405.6624,16.8893,-132.7514],"yaw":-3.24631,"spawnMask":3},{"id":"creature-138813","entityId":"entry-19168","position":[-511.6354,1.9605,-6.898],"yaw":-3.08923,"spawnMask":3},{"id":"creature-138814","entityId":"entry-19168","position":[-511.6594,1.9581,-22.0882],"yaw":-3.1765,"spawnMask":3},{"id":"creature-138815","entityId":"entry-19168","position":[-594.4524,27.3967,-61.885],"yaw":-3.29867,"spawnMask":3},{"id":"creature-138816","entityId":"entry-19168","position":[-594.3954,27.3508,-52.0438],"yaw":-3.07178,"spawnMask":3},{"id":"creature-138817","entityId":"entry-19168","position":[-525.8634,28.293,-92.3938],"yaw":-0.244346,"spawnMask":3},{"id":"creature-138818","entityId":"entry-19168","position":[-522.4444,28.293,-88.2926],"yaw":0,"spawnMask":3},{"id":"creature-138819","entityId":"entry-19168","position":[-423.0544,26.8391,-29.9072],"yaw":-5.53269,"spawnMask":3},{"id":"creature-138820","entityId":"entry-19168","position":[-420.3954,28.3379,32.7867],"yaw":-4.78385,"spawnMask":3},{"id":"creature-138821","entityId":"entry-19218","position":[-370.592,16.8857,-46.9772],"yaw":-0.663225,"spawnMask":3},{"id":"creature-138822","entityId":"entry-19219","position":[-493.2904,-0.2352,-80.2271],"yaw":-3.36498,"spawnMask":3},{"id":"creature-138823","entityId":"entry-19220","position":[-424.6064,27.5403,82.1413],"yaw":-4.59022,"spawnMask":3},{"id":"creature-138824","entityId":"entry-19221","position":[-611.5814,29.8012,-53.9818],"yaw":-3.22886,"spawnMask":3},{"id":"creature-138826","entityId":"entry-19510","position":[-450.9084,3.6078,-140.8344],"yaw":-3.24631,"spawnMask":3},{"id":"creature-138827","entityId":"entry-19510","position":[-315.7613,2.1257,-17.5956],"yaw":-3.7001,"spawnMask":3},{"id":"creature-138828","entityId":"entry-19510","position":[-450.7644,3.6501,18.3804],"yaw":-3.21141,"spawnMask":3},{"id":"creature-138829","entityId":"entry-19510","position":[-594.3074,27.3508,-56.9228],"yaw":-3.1765,"spawnMask":3},{"id":"creature-138830","entityId":"entry-19510","position":[-594.5824,27.3548,-46.898],"yaw":-2.70526,"spawnMask":3},{"id":"creature-138831","entityId":"entry-19510","position":[-519.0034,28.293,-85.8523],"yaw":-5.96903,"spawnMask":3},{"id":"creature-138833","entityId":"entry-19712","position":[-508.7974,1.967,-130.1626],"yaw":-5.044,"spawnMask":3},{"id":"creature-138834","entityId":"entry-19712","position":[-499.8564,1.9704,-150.3314],"yaw":-5.51524,"spawnMask":3},{"id":"creature-138835","entityId":"entry-19712","position":[-394.6854,16.8884,-122.4491],"yaw":-0.680678,"spawnMask":3},{"id":"creature-138836","entityId":"entry-19712","position":[-393.4884,16.8893,-109.9573],"yaw":-5.16617,"spawnMask":3},{"id":"creature-138838","entityId":"entry-19712","position":[-501.2434,1.9705,-162.3819],"yaw":-0.20944,"spawnMask":3},{"id":"creature-138839","entityId":"entry-19713","position":[-450.7034,1.9646,-87.0366],"yaw":-5.88176,"spawnMask":3},{"id":"creature-138840","entityId":"entry-19713","position":[-394.5244,16.8893,-8.6024],"yaw":-5.28835,"spawnMask":3},{"id":"creature-138841","entityId":"entry-19713","position":[-459.1894,1.9646,-84.6663],"yaw":-3.9619,"spawnMask":3},{"id":"creature-138842","entityId":"entry-19713","position":[-512.9984,1.9651,-119.2627],"yaw":-0.0523599,"spawnMask":3},{"id":"creature-138843","entityId":"entry-19713","position":[-397.7564,16.8893,-21.2019],"yaw":-1.01229,"spawnMask":3},{"id":"creature-138844","entityId":"entry-19716","position":[-477.9024,1.9589,-31.4827],"yaw":-4.85202,"spawnMask":3},{"id":"creature-138845","entityId":"entry-19716","position":[-377.4192,16.8893,-146.4763],"yaw":-5.18363,"spawnMask":3},{"id":"creature-138846","entityId":"entry-19716","position":[-470.8834,1.9588,-31.3537],"yaw":-4.76475,"spawnMask":3},{"id":"creature-138847","entityId":"entry-19716","position":[-437.6974,1.9607,-13.8216],"yaw":-2.68781,"spawnMask":3},{"id":"creature-138848","entityId":"entry-19716","position":[-445.7544,1.9646,-83.8403],"yaw":-2.0944,"spawnMask":3},{"id":"creature-138849","entityId":"entry-19716","position":[-424.9904,1.9646,-106.1232],"yaw":-0.401426,"spawnMask":3},{"id":"creature-138850","entityId":"entry-19716","position":[-425.2414,1.9625,-16.8124],"yaw":-0.907571,"spawnMask":3},{"id":"creature-138851","entityId":"entry-19716","position":[-492.6564,1.9711,-158.3178],"yaw":-1.25222,"spawnMask":3},{"id":"creature-138852","entityId":"entry-19716","position":[-465.2294,1.9582,-32.6443],"yaw":-4.45059,"spawnMask":3},{"id":"creature-138853","entityId":"entry-19716","position":[-384.9952,16.8921,-145.1293],"yaw":-3.92699,"spawnMask":3},{"id":"creature-138854","entityId":"entry-19716","position":[-453.5924,1.9646,-79.0639],"yaw":-0.488692,"spawnMask":3},{"id":"creature-138856","entityId":"entry-19716","position":[-419.6204,1.9646,-22.0635],"yaw":-1.32645,"spawnMask":3},{"id":"creature-138857","entityId":"entry-19716","position":[-418.4834,1.9646,-107.9219],"yaw":-5.67232,"spawnMask":3},{"id":"creature-138859","entityId":"entry-19716","position":[-391.4804,16.8193,-15.494],"yaw":-2.98083,"spawnMask":3},{"id":"creature-138861","entityId":"entry-19735","position":[-575.6834,27.3508,-38.0571],"yaw":-1.69297,"spawnMask":3},{"id":"creature-138862","entityId":"entry-19735","position":[-578.9824,27.264,-82.0284],"yaw":-5.15386,"spawnMask":3},{"id":"creature-138863","entityId":"entry-19735","position":[-485.0094,26.8391,-90.0366],"yaw":-0.122173,"spawnMask":3},{"id":"creature-138864","entityId":"entry-19735","position":[-422.8914,26.8391,-13.9964],"yaw":-4.76475,"spawnMask":3},{"id":"creature-138865","entityId":"entry-20059","position":[-454.3224,2.5466,-135.2717],"yaw":-3.26377,"spawnMask":3},{"id":"creature-138868","entityId":"entry-20059","position":[-454.4374,2.5408,24.9385],"yaw":-3.35103,"spawnMask":3},{"id":"creature-138869","entityId":"entry-20059","position":[-426.4624,28.3379,35.6083],"yaw":-4.69415,"spawnMask":3},{"id":"creature-138871","entityId":"entry-20988","position":[-416.7454,1.9646,-26.699],"yaw":-1.95375,"spawnMask":3},{"id":"creature-138872","entityId":"entry-20988","position":[-423.9974,1.9646,-99.4809],"yaw":-4.71239,"spawnMask":3},{"id":"creature-138874","entityId":"entry-20988","position":[-416.2844,1.9646,-104.2861],"yaw":-3.9968,"spawnMask":3},{"id":"creature-138876","entityId":"entry-20988","position":[-463.8854,26.8391,-84.5474],"yaw":-6.18119,"spawnMask":3},{"id":"creature-138877","entityId":"entry-20988","position":[-461.7494,26.8391,-93.1879],"yaw":-0.0526762,"spawnMask":3},{"id":"creature-138878","entityId":"entry-20988","position":[-427.5974,26.8391,-26.4844],"yaw":-5.23599,"spawnMask":3},{"id":"creature-138879","entityId":"entry-20988","position":[-425.8924,28.3379,44.8583],"yaw":-4.70349,"spawnMask":3},{"id":"creature-138880","entityId":"entry-20990","position":[-362.6467,16.8893,-11.7745],"yaw":-3.19395,"spawnMask":3},{"id":"creature-138881","entityId":"entry-20990","position":[-363.0094,16.8893,-128.0165],"yaw":-3.47321,"spawnMask":3},{"id":"creature-138882","entityId":"entry-20990","position":[-454.0244,2.6711,-154.4544],"yaw":-3.19395,"spawnMask":3},{"id":"creature-138883","entityId":"entry-20990","position":[-322.4751,2.1277,-12.3562],"yaw":-2.3911,"spawnMask":3},{"id":"creature-138884","entityId":"entry-20990","position":[-322.5252,2.1277,-127.9686],"yaw":-2.6529,"spawnMask":3},{"id":"creature-138885","entityId":"entry-20990","position":[-315.925,2.1176,-113.9844],"yaw":-0.676204,"spawnMask":3},{"id":"creature-138886","entityId":"entry-20990","position":[-318.8225,2.1237,-17.2816],"yaw":-5.72468,"spawnMask":3},{"id":"creature-138887","entityId":"entry-20990","position":[-405.4424,16.8911,-149.4811],"yaw":-3.21141,"spawnMask":3},{"id":"creature-138888","entityId":"entry-20990","position":[-450.4874,3.7238,10.7914],"yaw":-3.29867,"spawnMask":3},{"id":"creature-138889","entityId":"entry-20990","position":[-404.5044,16.8893,1.9963],"yaw":-3.29867,"spawnMask":3},{"id":"creature-138890","entityId":"entry-20990","position":[-520.3554,28.293,-93.8209],"yaw":0,"spawnMask":3},{"id":"creature-138891","entityId":"entry-20990","position":[-465.2894,26.8391,-89.6663],"yaw":-6.27367,"spawnMask":3},{"id":"creature-138892","entityId":"entry-20990","position":[-419.7704,26.8391,-26.009],"yaw":-5.58505,"spawnMask":3},{"id":"creature-138893","entityId":"entry-20990","position":[-419.3704,28.3379,41.9733],"yaw":-4.78864,"spawnMask":3},{"id":"creature-138894","entityId":"entry-19510","position":[-559.3664,28.293,-84.9841],"yaw":-0.15708,"spawnMask":3},{"id":"creature-138895","entityId":"entry-19168","position":[-557.2194,28.293,-91.836],"yaw":-6.16101,"spawnMask":3},{"id":"creature-138896","entityId":"entry-19510","position":[-559.1984,28.293,-95.8839],"yaw":0,"spawnMask":3},{"id":"creature-138897","entityId":"entry-19168","position":[-557.1424,28.293,-88.144],"yaw":-6.19592,"spawnMask":3}],"roamingPacks":[{"id":"patrol-138800","name":"Tempest-Forge Patroller Patrol","speed":1.15,"pathId":1388000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-317.285,1.8884,-40.662],[-312.3081,1.8808,-48.3463],[-309.3622,1.881,-59.2543],[-313.1507,1.8808,-45.2385],[-326.3915,1.8874,-37.729]],"members":[{"id":"member","entityId":"entry-19166","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138802","name":"Tempest-Forge Patroller Patrol","speed":1.15,"pathId":1388020,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-320.645,1.8805,-90.9241],[-313.9877,1.8807,-85.3208],[-311.4211,1.8809,-73.1645],[-314.7578,1.8807,-82.6261],[-320.9092,1.8808,-91.0851],[-328.6755,1.8873,-93.9296]],"members":[{"id":"member","entityId":"entry-19166","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138805","name":"Tempest-Forge Patroller Patrol","speed":1.15,"pathId":1388050,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-402.6864,16.8058,11.1832],[-434.6944,8.3503,14.0675],[-455.0014,2.2507,14.09],[-473.2504,1.8755,-3.0552],[-471.6774,1.8751,-19.831],[-449.7064,1.8795,-17.2232],[-471.6774,1.8751,-19.831],[-473.2504,1.8755,-3.0552],[-455.0014,2.2507,14.09],[-434.6944,8.3503,14.0675]],"members":[{"id":"member","entityId":"entry-19166","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138825","name":"Mechanar Crusher Patrol","speed":1.15,"pathId":1388250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-392.7324,16.8124,-148.4866],[-390.1534,16.8111,-142.1568],[-381.9583,16.8078,-138.2543],[-375.9156,16.8078,-141.4941],[-381.9583,16.8078,-138.2543],[-390.1534,16.8111,-142.1568]],"members":[{"id":"member","entityId":"entry-19231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138832","name":"Gatewatcher Iron-Hand Patrol","speed":1.15,"pathId":1388320,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-466.9164,1.889,-144.2946],[-452.9374,2.8889,-145.9444],[-405.2124,16.8091,-141.2302],[-452.9374,2.8889,-145.9444]],"members":[{"id":"member","entityId":"entry-19710","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138837","name":"Mechanar Driller Patrol","speed":1.15,"pathId":1388370,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-417.1674,1.8844,-30.1687],[-427.3004,1.887,-26.881],[-429.9394,1.8893,-21.2469],[-443.6124,1.8852,-19.1869],[-446.0694,1.8844,-13.3421],[-443.6124,1.8852,-19.1869],[-429.9394,1.8893,-21.2469],[-427.3004,1.887,-26.881]],"members":[{"id":"member","entityId":"entry-19712","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138855","name":"Mechanar Tinkerer Patrol","speed":1.15,"pathId":1388550,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-498.2914,1.8861,-142.317],[-485.6474,1.8871,-154.349],[-486.1214,1.8869,-161.6512],[-496.4114,1.8814,-168.8947],[-506.8334,1.8814,-172.1997],[-486.1214,1.8869,-161.6512],[-485.6474,1.8871,-154.349],[-493.3124,1.8864,-150.5742]],"members":[{"id":"member","entityId":"entry-19716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138858","name":"Mechanar Tinkerer Patrol","speed":1.15,"pathId":1388580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-482.7714,1.8754,-29.7625],[-478.6234,1.8753,-25.9171],[-470.7554,1.8752,-25.3517],[-464.0864,1.8752,-26.6483],[-459.1834,2.8918,-29.3764],[-464.0864,1.8752,-26.6483],[-470.7554,1.8752,-25.3517],[-478.6234,1.8753,-25.9171]],"members":[{"id":"member","entityId":"entry-19716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138860","name":"Tempest-Forge Destroyer Patrol","speed":1.15,"pathId":1388600,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-518.3774,1.9027,-14.8593],[-488.7604,1.877,-14.136]],"members":[{"id":"member","entityId":"entry-19735","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138866","name":"Sunseeker Netherbinder Patrol","speed":1.15,"pathId":1388660,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-313.0708,1.8843,-36.3113],[-307.2046,1.8811,-46.732],[-307.2046,1.8811,-46.732]],"members":[{"id":"member","entityId":"entry-20059","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138867","name":"Sunseeker Netherbinder Patrol","speed":1.15,"pathId":1388670,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-314.0804,1.8817,-96.47],[-308.2732,1.8812,-85.4611],[-308.2732,1.8812,-85.4611]],"members":[{"id":"member","entityId":"entry-20059","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138870","name":"Sunseeker Engineer Patrol","speed":1.15,"pathId":1388700,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-514.3364,1.8908,-124.824],[-507.0024,1.89,-122.632],[-500.7014,1.8889,-125.0286],[-497.3604,1.8888,-130.5103],[-500.7014,1.8889,-125.0286],[-507.0024,1.89,-122.632]],"members":[{"id":"member","entityId":"entry-20988","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138873","name":"Sunseeker Engineer Patrol","speed":1.15,"pathId":1388730,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-386.5754,16.8115,-142.0765],[-389.0804,16.806,-127.7328],[-385.0854,16.806,-115.9246],[-388.1814,16.8059,-105.5734],[-400.3734,16.8007,-99.3191],[-388.1814,16.8059,-105.5734],[-385.0854,16.806,-115.9246],[-389.0804,16.806,-127.7328]],"members":[{"id":"member","entityId":"entry-20988","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138875","name":"Sunseeker Engineer Patrol","speed":1.15,"pathId":1388750,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-397.1344,16.8056,-26.8215],[-386.2954,16.8057,-20.8422],[-387.2954,16.8156,-8.6874],[-395.6444,16.7996,1.8541],[-387.2954,16.8156,-8.6874],[-386.2954,16.8057,-20.8422]],"members":[{"id":"member","entityId":"entry-20988","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-138822","name":"Mechano-Lord Capacitus","position":[-493.2904,-0.2352,-80.2271]},{"id":"creature-138824","name":"Nethermancer Sepethrea","position":[-611.5814,29.8012,-53.9818]},{"id":"creature-138823","name":"Pathaleon the Calculator","position":[-424.6064,27.5403,82.1413]}],"objectiveOrder":[{"id":"creature-138822","name":"Mechano-Lord Capacitus","position":[-493.2904,-0.2352,-80.2271]},{"id":"creature-138824","name":"Nethermancer Sepethrea","position":[-611.5814,29.8012,-53.9818]},{"id":"creature-138823","name":"Pathaleon the Calculator","position":[-424.6064,27.5403,82.1413]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":236,"id":184222,"map":554,"orientation":3.17222,"phaseMask":1,"position_x":71.1997,"position_y":149.657,"position_z":25.5811,"rotation0":0,"rotation1":0,"rotation2":0.999883,"rotation3":-0.0153131,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242,"id":184221,"map":554,"orientation":3.17222,"phaseMask":1,"position_x":71.1997,"position_y":149.657,"position_z":25.5811,"rotation0":0,"rotation1":0,"rotation2":0.999883,"rotation3":-0.0153131,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9879,"id":185015,"map":554,"orientation":2.74016,"phaseMask":1,"position_x":145.198,"position_y":-44.5185,"position_z":1.00919,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9880,"id":185015,"map":554,"orientation":2.47837,"phaseMask":1,"position_x":148.266,"position_y":-35.25,"position_z":1.00923,"rotation0":0,"rotation1":0,"rotation2":0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9881,"id":185015,"map":554,"orientation":4.72984,"phaseMask":1,"position_x":163.7,"position_y":-27.3792,"position_z":1.00893,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9882,"id":185015,"map":554,"orientation":2.00713,"phaseMask":1,"position_x":155.423,"position_y":-29.7322,"position_z":1.00882,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9883,"id":185018,"map":554,"orientation":2.47837,"phaseMask":1,"position_x":148.266,"position_y":-35.25,"position_z":1.00923,"rotation0":0,"rotation1":0,"rotation2":0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9884,"id":185018,"map":554,"orientation":2.74016,"phaseMask":1,"position_x":145.198,"position_y":-44.5185,"position_z":1.00919,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9885,"id":185018,"map":554,"orientation":4.72984,"phaseMask":1,"position_x":163.7,"position_y":-27.3792,"position_z":1.00893,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9886,"id":185018,"map":554,"orientation":2.00713,"phaseMask":1,"position_x":155.423,"position_y":-29.7322,"position_z":1.00882,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9887,"id":184632,"map":554,"orientation":3.14159,"phaseMask":1,"position_x":236.46,"position_y":52.3636,"position_z":1.65354,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9888,"id":184322,"map":554,"orientation":3.14159,"phaseMask":1,"position_x":242.874,"position_y":52.3148,"position_z":1.59633,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9889,"id":184449,"map":554,"orientation":3.14159,"phaseMask":1,"position_x":267.928,"position_y":52.3148,"position_z":27.0425,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9890,"id":184465,"map":554,"orientation":4.67748,"phaseMask":1,"position_x":222.543,"position_y":70.6106,"position_z":-0.00479339,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9891,"id":184849,"map":554,"orientation":4.67748,"phaseMask":1,"position_x":222.543,"position_y":70.6106,"position_z":-0.00479339,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":2,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":34902,"id":183788,"map":554,"orientation":3.14729,"phaseMask":1,"position_x":0.543812,"position_y":-1.39348,"position_z":0.21172,"rotation0":0,"rotation1":0,"rotation2":0.999996,"rotation3":-0.00284866,"spawnMask":3,"spawntimesecs":25,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150052,"id":184227,"map":554,"orientation":6.2643,"phaseMask":1,"position_x":-38.3715,"position_y":0.2876,"position_z":-1.8128,"rotation0":0,"rotation1":0,"rotation2":0.00944258,"rotation3":-0.999955,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150053,"id":184228,"map":554,"orientation":6.2643,"phaseMask":1,"position_x":-38.3715,"position_y":0.2876,"position_z":-1.8128,"rotation0":0,"rotation1":0,"rotation2":0.00944258,"rotation3":-0.999955,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/TempestKeepFactory":"3e680f7292be544b581cd5ad55706e735099198e19e97bc769229715092b1315","patch/World/maps/TempestKeepFactory":"a003083bc883360bb7d3d2a4b69bb5d289198f634adda95ccdd4422e9394daef"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/mechanar/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["17/17 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"shadow-labyrinth","title":"Auchindoun: Shadow Labyrinth","mapId":555,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Auchindoun: Shadow Labyrinth","theme":"Instanced dungeon","summary":"Fight through Auchindoun: Shadow Labyrinth, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Auchindoun: Shadow Labyrinth...","unchartedAreaName":"Uncharted Auchindoun: Shadow Labyrinth","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":834.8473},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/555-auchindounshadow/visual.glb","checksum":"e38013d92d08a5e56b067aaaff2a85dc98482f96c3b9f92717c62001d44c6589","size":4143336,"triangleCount":106770}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/555-auchindounshadow/collision.glb","checksum":"879baca1993fd08f5f8305f711af7ac4011dbf1bb124c72743f7a6a2f6fea7d7","size":913248,"triangleCount":96471}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/555-auchindounshadow/navigation.glb","checksum":"0c6b3b53163f67c1ef13502abfe5d289548190a37df91a445d1c6a38b5651111","size":123396,"triangleCount":9231}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[66.6641,-16.5409,-1063.9417],"max":[655.9276,79.006,95.5684]},"entrance":{"name":"Auchindoun: Shadow Labyrinth Entrance","footPosition":[155.4616,18.3591,-521.8356],"forward":[0.27269290690874276,0,0.9621011269724508],"yaw":0.2761909110335776},"areas":[{"id":"entrance","name":"Auchindoun: Shadow Labyrinth Entrance","center":[155.4616,18.3591,-521.8356],"radius":35},{"id":"area-ambassador-hellmaw","name":"Ambassador Hellmaw's Encounter","center":[312.6246,27.6434,-516.637],"radius":42},{"id":"area-blackheart-the-inciter","name":"Blackheart the Inciter's Encounter","center":[484.1586,32.1758,-560.6751],"radius":42},{"id":"area-grandmaster-vorpil","name":"Grandmaster Vorpil's Encounter","center":[409.4976,36.6567,-785.2657],"radius":42},{"id":"area-murmur","name":"Murmur's Encounter","center":[313.8446,35.3521,-1018.9417],"radius":42}],"entities":{"entry-18631":{"id":"entry-18631","kind":"mob","name":"Cabal Cultist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6410,"damageMultiplier":1.12},{"id":"spell-15614","name":"Kick","spellId":15614,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6410,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18586-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-18633":{"id":"entry-18633","kind":"mob","name":"Cabal Acolyte","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12039","name":"Heal","spellId":12039,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5569,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-25058","name":"Renew","spellId":25058,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5569,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18579-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-18635":{"id":"entry-18635","kind":"mob","name":"Cabal Deathsworn","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18589-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0044,"labelHeight":3.4695,"markerRadius":0.8615}}},"entry-18636":{"id":"entry-18636","kind":"mob","name":"Cabal Assassin","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18583-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-18637":{"id":"entry-18637","kind":"mob","name":"Cabal Shadow Priest","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15473","name":"Shadowform","spellId":15473,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4451,"damageMultiplier":1.12},{"id":"spell-17165","name":"Mind Flay","spellId":17165,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4451,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18599-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":3.3307,"markerRadius":0.827}}},"entry-18638":{"id":"entry-18638","kind":"mob","name":"Cabal Zealot","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4988,"damageMultiplier":1.12},{"id":"spell-33499","name":"Shape of the Beast","spellId":33499,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4988,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18612-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-18640":{"id":"entry-18640","kind":"mob","name":"Cabal Warlock","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32863","name":"Seed of Corruption","spellId":32863,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5335,"damageMultiplier":1.12},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5335,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18609-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0077,"labelHeight":3.3412,"markerRadius":0.7757}}},"entry-18641":{"id":"entry-18641","kind":"mob","name":"Cabal Familiar","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-38239","name":"Firebolt","spellId":38239,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4936,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18038-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.1166,"markerRadius":0.65}}},"entry-18642":{"id":"entry-18642","kind":"mob","name":"Fel Guardhound","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30849","name":"Spell Lock","spellId":30849,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5661,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-7949-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7241,"markerRadius":1.9999}}},"entry-18667":{"id":"entry-18667","kind":"boss","name":"Blackheart the Inciter","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2700,"damageMultiplier":1},{"id":"spell-33709","name":"Charge","spellId":33709,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4098,"damageMultiplier":1.35},{"id":"spell-33676","name":"Incite Chaos","spellId":33676,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4098,"damageMultiplier":1.35},{"id":"spell-33707","name":"War Stomp","spellId":33707,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4098,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18058-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":11.6005,"markerRadius":3.5134}}},"entry-18708":{"id":"entry-18708","kind":"boss","name":"Murmur","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7180,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18839-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.3017,"labelHeight":51.9279,"markerRadius":4.5}}},"entry-18731":{"id":"entry-18731","kind":"boss","name":"Ambassador Hellmaw","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6068,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18821-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":12.1912,"markerRadius":3.3133}}},"entry-18732":{"id":"entry-18732","kind":"boss","name":"Grandmaster Vorpil","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7925,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18535-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0094,"labelHeight":4.0675,"markerRadius":0.9443}}},"entry-18794":{"id":"entry-18794","kind":"mob","name":"Cabal Ritualist","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18191-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0069,"labelHeight":2.5678,"markerRadius":0.65}}},"entry-18796":{"id":"entry-18796","kind":"mob","name":"Fel Overseer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18193-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0153,"labelHeight":8.673,"markerRadius":1.2829}}},"entry-18797":{"id":"entry-18797","kind":"mob","name":"Tortured Skeleton","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c507c6b298bda6969a80215b8be3a3eb943fdacf22ee5ffc13becfd9fd7f686e.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-18830":{"id":"entry-18830","kind":"mob","name":"Cabal Fanatic","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12021","name":"Fixate","spellId":12021,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6947,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18596-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-18848":{"id":"entry-18848","kind":"mob","name":"Malicious Instructor","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-17543-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":6.102,"markerRadius":1.3318}}},"entry-18891":{"id":"entry-18891","kind":"mob","name":"Spy To'gun","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18280-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-18639":{"id":"entry-18639","kind":"mob","name":"Cabal Spellbinder","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32691","name":"Spell Shock","spellId":32691,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5560,"damageMultiplier":1.12},{"id":"spell-33502","name":"Brain Wash","spellId":33502,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5560,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18602-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":3.3307,"markerRadius":0.827}}},"entry-18634":{"id":"entry-18634","kind":"mob","name":"Cabal Summoner","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14034","name":"Fireball","spellId":14034,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6407,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18605-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-18632":{"id":"entry-18632","kind":"mob","name":"Cabal Executioner","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-15578","name":"Whirlwind","spellId":15578,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6786,"damageMultiplier":0.62,"radius":8},{"id":"spell-30485","name":"Enrage","spellId":30485,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6786,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-30485","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18593-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0084,"labelHeight":3.6317,"markerRadius":0.8431}}}},"staticSpawns":[{"id":"creature-146026","entityId":"entry-18631","position":[427.3116,32.2507,-787.3847],"yaw":-0.11843,"spawnMask":3},{"id":"creature-146028","entityId":"entry-18631","position":[598.9896,32.2595,-715.4547],"yaw":-3.4383,"spawnMask":3},{"id":"creature-146029","entityId":"entry-18631","position":[443.7536,27.6433,-618.0093],"yaw":-5.48033,"spawnMask":3},{"id":"creature-146030","entityId":"entry-18631","position":[429.6236,27.6433,-601.9581],"yaw":-2.74017,"spawnMask":3},{"id":"creature-146031","entityId":"entry-18631","position":[410.3146,27.6432,-568.0444],"yaw":-3.08923,"spawnMask":3},{"id":"creature-146032","entityId":"entry-18631","position":[427.7336,27.6432,-567.1641],"yaw":-3.1765,"spawnMask":3},{"id":"creature-146033","entityId":"entry-18631","position":[419.7436,27.6819,-548.4253],"yaw":-3.49066,"spawnMask":3},{"id":"creature-146034","entityId":"entry-18631","position":[431.0386,27.6433,-526.0417],"yaw":-3.66519,"spawnMask":3},{"id":"creature-146035","entityId":"entry-18631","position":[432.6536,27.6433,-499.1021],"yaw":-0.0174533,"spawnMask":3},{"id":"creature-146036","entityId":"entry-18633","position":[610.2646,32.2595,-704.7117],"yaw":-5.06145,"spawnMask":3},{"id":"creature-146037","entityId":"entry-18633","position":[242.0321,18.442,-614.3027],"yaw":-1.95477,"spawnMask":3},{"id":"creature-146038","entityId":"entry-18633","position":[247.8686,18.442,-609.8027],"yaw":-6.00393,"spawnMask":3},{"id":"creature-146039","entityId":"entry-18633","position":[187.8325,18.4421,-603.0791],"yaw":-4.04916,"spawnMask":3},{"id":"creature-146040","entityId":"entry-18633","position":[428.7946,27.6433,-598.0476],"yaw":-2.6529,"spawnMask":3},{"id":"creature-146041","entityId":"entry-18633","position":[419.7546,27.6432,-570.6054],"yaw":-3.10669,"spawnMask":3},{"id":"creature-146042","entityId":"entry-18633","position":[427.9276,27.6432,-569.616],"yaw":-3.14159,"spawnMask":3},{"id":"creature-146043","entityId":"entry-18633","position":[234.6663,18.4421,-568.0466],"yaw":-4.50295,"spawnMask":3},{"id":"creature-146044","entityId":"entry-18633","position":[402.8196,27.6432,-567.5934],"yaw":-3.10669,"spawnMask":3},{"id":"creature-146045","entityId":"entry-18633","position":[236.3212,18.4421,-561.3857],"yaw":-2.00713,"spawnMask":3},{"id":"creature-146046","entityId":"entry-18633","position":[203.3146,18.4422,-555.4241],"yaw":-0.331613,"spawnMask":3},{"id":"creature-146047","entityId":"entry-18633","position":[197.8067,18.4422,-555.0703],"yaw":-2.87979,"spawnMask":3},{"id":"creature-146048","entityId":"entry-18633","position":[419.7106,27.67,-550.814],"yaw":-3.12414,"spawnMask":3},{"id":"creature-146049","entityId":"entry-18633","position":[411.7196,27.6754,-549.1875],"yaw":-3.24631,"spawnMask":3},{"id":"creature-146050","entityId":"entry-18633","position":[230.3338,18.4421,-521.7716],"yaw":-0.0349066,"spawnMask":3},{"id":"creature-146051","entityId":"entry-18633","position":[421.7786,27.6433,-521.5635],"yaw":-3.68264,"spawnMask":3},{"id":"creature-146052","entityId":"entry-18633","position":[242.6748,18.4421,-512.8811],"yaw":-2.37365,"spawnMask":3},{"id":"creature-146053","entityId":"entry-18633","position":[437.8886,27.6434,-501.5776],"yaw":-5.68977,"spawnMask":3},{"id":"creature-146054","entityId":"entry-18635","position":[602.4426,32.2595,-713.7397],"yaw":-4.72984,"spawnMask":3},{"id":"creature-146055","entityId":"entry-18635","position":[609.6346,32.2595,-708.4237],"yaw":-1.53589,"spawnMask":3},{"id":"creature-146056","entityId":"entry-18635","position":[610.9276,32.2595,-706.8697],"yaw":-0.0523599,"spawnMask":3},{"id":"creature-146057","entityId":"entry-18635","position":[442.6566,27.6433,-621.1197],"yaw":-1.32645,"spawnMask":3},{"id":"creature-146058","entityId":"entry-18635","position":[246.6473,18.442,-613.9762],"yaw":-0.715585,"spawnMask":3},{"id":"creature-146059","entityId":"entry-18635","position":[187.417,18.3482,-597.9778],"yaw":-0.237499,"spawnMask":3},{"id":"creature-146060","entityId":"entry-18635","position":[192.0811,18.4421,-605.6821],"yaw":-0.0872665,"spawnMask":3},{"id":"creature-146061","entityId":"entry-18635","position":[421.2546,27.6433,-603.9128],"yaw":-2.84489,"spawnMask":3},{"id":"creature-146062","entityId":"entry-18635","position":[427.7946,27.6432,-571.8032],"yaw":-3.1765,"spawnMask":3},{"id":"creature-146063","entityId":"entry-18635","position":[410.3946,27.6432,-571.2153],"yaw":-3.01942,"spawnMask":3},{"id":"creature-146064","entityId":"entry-18635","position":[231.032,18.442,-569.2687],"yaw":-3.75246,"spawnMask":3},{"id":"creature-146065","entityId":"entry-18635","position":[233.9031,18.4421,-558.0266],"yaw":-3.21141,"spawnMask":3},{"id":"creature-146066","entityId":"entry-18635","position":[200.5906,18.4422,-556.2258],"yaw":-1.44862,"spawnMask":3},{"id":"creature-146067","entityId":"entry-18635","position":[419.6366,27.6574,-553.3282],"yaw":-3.33358,"spawnMask":3},{"id":"creature-146068","entityId":"entry-18635","position":[214.0561,18.4422,-548.291],"yaw":-2.96706,"spawnMask":3},{"id":"creature-146069","entityId":"entry-18635","position":[216.7565,18.4422,-546.3607],"yaw":-5.44543,"spawnMask":3},{"id":"creature-146070","entityId":"entry-18635","position":[229.4774,18.4421,-523.5888],"yaw":-1.22173,"spawnMask":3},{"id":"creature-146071","entityId":"entry-18635","position":[229.8374,18.4421,-519.8636],"yaw":-5.23599,"spawnMask":3},{"id":"creature-146072","entityId":"entry-18635","position":[423.7506,27.6433,-518.5077],"yaw":-3.76991,"spawnMask":3},{"id":"creature-146073","entityId":"entry-18635","position":[241.9432,18.4421,-510.3863],"yaw":-3.56047,"spawnMask":3},{"id":"creature-146074","entityId":"entry-18635","position":[207.978,18.3507,-513.63],"yaw":-1.50098,"spawnMask":3},{"id":"creature-146075","entityId":"entry-18635","position":[246.2163,18.4153,-584.7993],"yaw":-0.3125,"spawnMask":3},{"id":"creature-146078","entityId":"entry-18637","position":[420.1016,27.6432,-600.9163],"yaw":-2.87979,"spawnMask":3},{"id":"creature-146079","entityId":"entry-18637","position":[403.2226,27.6432,-571.2909],"yaw":-3.03687,"spawnMask":3},{"id":"creature-146080","entityId":"entry-18637","position":[419.1756,27.6432,-567.147],"yaw":-3.12414,"spawnMask":3},{"id":"creature-146081","entityId":"entry-18637","position":[411.3846,27.6575,-552.8373],"yaw":-3.28122,"spawnMask":3},{"id":"creature-146082","entityId":"entry-18637","position":[431.3766,27.6433,-522.1796],"yaw":-3.56047,"spawnMask":3},{"id":"creature-146083","entityId":"entry-18638","position":[510.8156,32.1737,-785.1747],"yaw":-6.28229,"spawnMask":3},{"id":"creature-146084","entityId":"entry-18638","position":[479.2626,32.1716,-781.2957],"yaw":-6.26573,"spawnMask":3},{"id":"creature-146085","entityId":"entry-18638","position":[426.1296,32.2507,-780.1987],"yaw":-5.98751,"spawnMask":3},{"id":"creature-146086","entityId":"entry-18638","position":[400.7296,36.5733,-773.4527],"yaw":-2.9348,"spawnMask":3},{"id":"creature-146087","entityId":"entry-18638","position":[399.3236,36.5733,-767.8207],"yaw":-2.8752,"spawnMask":3},{"id":"creature-146088","entityId":"entry-18640","position":[191.0276,18.4421,-602.6534],"yaw":-5.18363,"spawnMask":3},{"id":"creature-146089","entityId":"entry-18640","position":[207.2184,18.4421,-600.1355],"yaw":-2.49582,"spawnMask":3},{"id":"creature-146090","entityId":"entry-18640","position":[230.4483,18.442,-598.8434],"yaw":-1.55334,"spawnMask":3},{"id":"creature-146091","entityId":"entry-18640","position":[438.0716,27.6433,-598.3784],"yaw":-2.72271,"spawnMask":3},{"id":"creature-146092","entityId":"entry-18640","position":[415.2736,27.6433,-516.4323],"yaw":-3.64774,"spawnMask":3},{"id":"creature-146093","entityId":"entry-18641","position":[212.3925,18.3588,-602.2173],"yaw":-0.436332,"spawnMask":3},{"id":"creature-146094","entityId":"entry-18641","position":[189.4511,18.4421,-602.1472],"yaw":-4.92183,"spawnMask":3},{"id":"creature-146095","entityId":"entry-18641","position":[212.3653,18.3597,-598.7363],"yaw":-6.10865,"spawnMask":3},{"id":"creature-146096","entityId":"entry-18641","position":[210.382,18.3591,-595.5709],"yaw":-5.41052,"spawnMask":3},{"id":"creature-146097","entityId":"entry-18641","position":[206.768,18.3581,-595.0363],"yaw":-0.950379,"spawnMask":3},{"id":"creature-146099","entityId":"entry-18641","position":[207.9876,18.3584,-593.1764],"yaw":-0.881865,"spawnMask":3},{"id":"creature-146100","entityId":"entry-18642","position":[222.5894,18.3587,-601.8162],"yaw":-5.30191,"spawnMask":3},{"id":"creature-146101","entityId":"entry-18642","position":[437.1166,27.6432,-595.6857],"yaw":-3.12414,"spawnMask":3},{"id":"creature-146102","entityId":"entry-18642","position":[413.8476,27.6433,-518.8835],"yaw":-3.85718,"spawnMask":3},{"id":"creature-146103","entityId":"entry-18667","position":[484.1586,32.1758,-560.6751],"yaw":-0.0174533,"spawnMask":3},{"id":"creature-146104","entityId":"entry-18708","position":[313.8446,35.3521,-1018.9417],"yaw":-1.5625,"spawnMask":3},{"id":"creature-146105","entityId":"entry-18731","position":[312.6246,27.6434,-516.637],"yaw":-4.67748,"spawnMask":3},{"id":"creature-146106","entityId":"entry-18732","position":[409.4976,36.6567,-785.2657],"yaw":-3.05433,"spawnMask":3},{"id":"creature-146113","entityId":"entry-18794","position":[294.8046,27.6434,-605.7241],"yaw":-1.23918,"spawnMask":3},{"id":"creature-146114","entityId":"entry-18794","position":[330.6076,27.6435,-605.6239],"yaw":-1.32645,"spawnMask":3},{"id":"creature-146115","entityId":"entry-18794","position":[300.7456,27.6434,-599.5181],"yaw":-6.21337,"spawnMask":3},{"id":"creature-146116","entityId":"entry-18794","position":[336.4616,27.6435,-599.4212],"yaw":-5.98648,"spawnMask":3},{"id":"creature-146117","entityId":"entry-18794","position":[324.1156,27.6435,-599.3881],"yaw":-3.1765,"spawnMask":3},{"id":"creature-146118","entityId":"entry-18794","position":[288.3786,27.6434,-599.3866],"yaw":-3.31613,"spawnMask":3},{"id":"creature-146119","entityId":"entry-18794","position":[313.1386,27.6435,-585.9742],"yaw":-1.69297,"spawnMask":3},{"id":"creature-146120","entityId":"entry-18794","position":[306.7946,27.6435,-580.0585],"yaw":-3.50811,"spawnMask":3},{"id":"creature-146121","entityId":"entry-18794","position":[319.4476,27.6435,-579.8741],"yaw":-5.84685,"spawnMask":3},{"id":"creature-146122","entityId":"entry-18794","position":[313.3156,27.6434,-547.0865],"yaw":-1.58825,"spawnMask":3},{"id":"creature-146123","entityId":"entry-18794","position":[307.0226,27.6434,-541.107],"yaw":-3.45575,"spawnMask":3},{"id":"creature-146124","entityId":"entry-18794","position":[319.4936,27.6435,-541.1],"yaw":-5.95157,"spawnMask":3},{"id":"creature-146125","entityId":"entry-18794","position":[294.4416,27.6434,-527.8201],"yaw":-1.62316,"spawnMask":3},{"id":"creature-146126","entityId":"entry-18794","position":[330.6096,27.6434,-527.2982],"yaw":-1.46608,"spawnMask":3},{"id":"creature-146127","entityId":"entry-18794","position":[300.8426,27.6433,-521.3983],"yaw":-5.95157,"spawnMask":3},{"id":"creature-146128","entityId":"entry-18794","position":[288.1906,27.6433,-521.3137],"yaw":-3.45575,"spawnMask":3},{"id":"creature-146129","entityId":"entry-18794","position":[336.7146,27.6434,-521.2584],"yaw":-6.02139,"spawnMask":3},{"id":"creature-146130","entityId":"entry-18794","position":[324.3346,27.6434,-521.2559],"yaw":-3.4383,"spawnMask":3},{"id":"creature-146134","entityId":"entry-18797","position":[449.0166,45.9971,-828.5167],"yaw":-2.07694,"spawnMask":3},{"id":"creature-146135","entityId":"entry-18797","position":[489.0296,44.6254,-824.2237],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146136","entityId":"entry-18797","position":[449.7146,42.2745,-815.5047],"yaw":-4.95544,"spawnMask":3},{"id":"creature-146137","entityId":"entry-18797","position":[440.9846,39.6732,-814.0867],"yaw":-0.0785682,"spawnMask":3},{"id":"creature-146138","entityId":"entry-18797","position":[486.7456,41.679,-813.2927],"yaw":-2.42061,"spawnMask":3},{"id":"creature-146139","entityId":"entry-18797","position":[492.1176,40.861,-812.3867],"yaw":-4.16952,"spawnMask":3},{"id":"creature-146140","entityId":"entry-18797","position":[444.8476,38.7004,-808.5237],"yaw":-5.66419,"spawnMask":3},{"id":"creature-146141","entityId":"entry-18797","position":[480.0316,37.2849,-808.4177],"yaw":-5.3481,"spawnMask":3},{"id":"creature-146142","entityId":"entry-18797","position":[493.0886,38.4005,-808.0997],"yaw":-1.06092,"spawnMask":3},{"id":"creature-146143","entityId":"entry-18797","position":[485.0726,39.0262,-807.6687],"yaw":-3.04423,"spawnMask":3},{"id":"creature-146144","entityId":"entry-18797","position":[443.5776,37.0103,-805.9667],"yaw":-0.282892,"spawnMask":3},{"id":"creature-146145","entityId":"entry-18797","position":[452.0426,37.6321,-805.4387],"yaw":-0.0941466,"spawnMask":3},{"id":"creature-146146","entityId":"entry-18797","position":[499.0566,35.3262,-804.7787],"yaw":-4.46923,"spawnMask":3},{"id":"creature-146147","entityId":"entry-18797","position":[439.4916,35.8179,-804.3067],"yaw":-1.6615,"spawnMask":3},{"id":"creature-146148","entityId":"entry-18797","position":[488.5066,37.7436,-804.0267],"yaw":-3.37721,"spawnMask":3},{"id":"creature-146149","entityId":"entry-18797","position":[449.1286,37.1977,-803.3037],"yaw":-4.44481,"spawnMask":3},{"id":"creature-146150","entityId":"entry-18797","position":[484.0426,36.87,-801.8887],"yaw":-3.02556,"spawnMask":3},{"id":"creature-146151","entityId":"entry-18797","position":[493.1766,35.6925,-801.8577],"yaw":-3.05433,"spawnMask":3},{"id":"creature-146152","entityId":"entry-18797","position":[454.2276,35.4463,-801.1567],"yaw":-3.16738,"spawnMask":3},{"id":"creature-146153","entityId":"entry-18797","position":[445.8056,34.6454,-798.9827],"yaw":-1.88732,"spawnMask":3},{"id":"creature-146154","entityId":"entry-18797","position":[486.8136,34.8999,-798.6977],"yaw":-4.72018,"spawnMask":3},{"id":"creature-146155","entityId":"entry-18797","position":[452.0916,33.8331,-797.3737],"yaw":-3.35616,"spawnMask":3},{"id":"creature-146156","entityId":"entry-18797","position":[308.6386,36.6557,-780.9427],"yaw":-3.68264,"spawnMask":3},{"id":"creature-146157","entityId":"entry-18797","position":[554.1056,32.2568,-779.7687],"yaw":-5.044,"spawnMask":3},{"id":"creature-146158","entityId":"entry-18797","position":[491.6926,33.693,-777.3037],"yaw":-0.418879,"spawnMask":3},{"id":"creature-146159","entityId":"entry-18797","position":[495.5106,33.4487,-774.7877],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146160","entityId":"entry-18797","position":[487.8956,33.6769,-774.6277],"yaw":-5.044,"spawnMask":3},{"id":"creature-146161","entityId":"entry-18797","position":[492.0256,34.4044,-774.4957],"yaw":-5.65487,"spawnMask":3},{"id":"creature-146162","entityId":"entry-18797","position":[451.9556,34.1627,-773.6797],"yaw":-4.53786,"spawnMask":3},{"id":"creature-146163","entityId":"entry-18797","position":[448.1826,34.7047,-773.1937],"yaw":-3.40339,"spawnMask":3},{"id":"creature-146164","entityId":"entry-18797","position":[443.7296,34.3096,-772.9927],"yaw":-4.32842,"spawnMask":3},{"id":"creature-146165","entityId":"entry-18797","position":[492.8196,34.8789,-771.0907],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146166","entityId":"entry-18797","position":[496.1656,34.4124,-771.0227],"yaw":-3.78736,"spawnMask":3},{"id":"creature-146167","entityId":"entry-18797","position":[454.5956,33.9793,-770.7087],"yaw":-4.76475,"spawnMask":3},{"id":"creature-146168","entityId":"entry-18797","position":[488.8336,34.4935,-770.5097],"yaw":-0.610865,"spawnMask":3},{"id":"creature-146169","entityId":"entry-18797","position":[450.5826,34.9457,-770.1787],"yaw":-3.78736,"spawnMask":3},{"id":"creature-146170","entityId":"entry-18797","position":[448.7456,35.1461,-769.9757],"yaw":-5.75959,"spawnMask":3},{"id":"creature-146171","entityId":"entry-18797","position":[446.8276,35.141,-769.9277],"yaw":-0.628319,"spawnMask":3},{"id":"creature-146172","entityId":"entry-18797","position":[493.2706,34.9454,-767.4107],"yaw":-2.30383,"spawnMask":3},{"id":"creature-146173","entityId":"entry-18797","position":[448.2036,34.5979,-767.3647],"yaw":-6.19592,"spawnMask":3},{"id":"creature-146174","entityId":"entry-18797","position":[444.0816,34.2529,-766.5947],"yaw":-4.17134,"spawnMask":3},{"id":"creature-146175","entityId":"entry-18797","position":[451.7396,33.8432,-766.4557],"yaw":-4.29351,"spawnMask":3},{"id":"creature-146176","entityId":"entry-18797","position":[488.8226,34.1664,-766.4127],"yaw":-0.942478,"spawnMask":3},{"id":"creature-146177","entityId":"entry-18797","position":[496.7476,34.0401,-765.6687],"yaw":-4.18879,"spawnMask":3},{"id":"creature-146178","entityId":"entry-18797","position":[478.2366,32.2543,-762.8067],"yaw":-3.05433,"spawnMask":3},{"id":"creature-146179","entityId":"entry-18797","position":[409.3456,59.006,-747.0307],"yaw":-4.50295,"spawnMask":3},{"id":"creature-146180","entityId":"entry-18797","position":[570.5236,35.1737,-715.2537],"yaw":-0.942478,"spawnMask":3},{"id":"creature-146181","entityId":"entry-18797","position":[572.5976,34.6346,-713.0327],"yaw":-4.18879,"spawnMask":3},{"id":"creature-146182","entityId":"entry-18797","position":[575.6346,33.8895,-712.9257],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146183","entityId":"entry-18797","position":[572.8386,33.8323,-710.3917],"yaw":-2.18166,"spawnMask":3},{"id":"creature-146184","entityId":"entry-18797","position":[571.4346,32.2101,-694.6037],"yaw":-2.30383,"spawnMask":3},{"id":"creature-146185","entityId":"entry-18797","position":[596.4546,34.6518,-639.9827],"yaw":-2.30383,"spawnMask":3},{"id":"creature-146186","entityId":"entry-18797","position":[591.5956,34.3072,-639.4927],"yaw":-5.65487,"spawnMask":3},{"id":"creature-146187","entityId":"entry-18797","position":[595.0266,35.2816,-636.6437],"yaw":-3.78736,"spawnMask":3},{"id":"creature-146188","entityId":"entry-18797","position":[592.5886,34.5917,-634.1167],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146189","entityId":"entry-18797","position":[593.7426,32.2592,-601.7977],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146190","entityId":"entry-18830","position":[510.7676,32.1733,-791.1747],"yaw":-0.058285,"spawnMask":3},{"id":"creature-146191","entityId":"entry-18830","position":[426.8226,32.2508,-790.3857],"yaw":-0.287388,"spawnMask":3},{"id":"creature-146192","entityId":"entry-18830","position":[479.8546,32.1717,-789.3517],"yaw":-0.0523599,"spawnMask":3},{"id":"creature-146193","entityId":"entry-18830","position":[510.7996,32.1736,-787.1747],"yaw":-0.018846,"spawnMask":3},{"id":"creature-146194","entityId":"entry-18830","position":[479.2606,32.1716,-783.5327],"yaw":0,"spawnMask":3},{"id":"creature-146195","entityId":"entry-18830","position":[427.2866,32.2507,-783.0857],"yaw":-6.16129,"spawnMask":3},{"id":"creature-146196","entityId":"entry-18830","position":[400.5256,36.5733,-771.5737],"yaw":-2.89414,"spawnMask":3},{"id":"creature-146202","entityId":"entry-18891","position":[217.2986,20.1664,-480.9134],"yaw":-2.3911,"spawnMask":3},{"id":"creature-146206","entityId":"entry-18639","position":[316.9056,36.6476,-983.4777],"yaw":-4.90438,"spawnMask":3},{"id":"creature-146207","entityId":"entry-18639","position":[312.2336,36.6476,-983.4907],"yaw":-4.69494,"spawnMask":3},{"id":"creature-146208","entityId":"entry-18639","position":[307.6316,36.6476,-982.7827],"yaw":-4.57276,"spawnMask":3},{"id":"creature-146209","entityId":"entry-18634","position":[312.4476,36.6566,-849.6267],"yaw":-1.5,"spawnMask":3},{"id":"creature-146210","entityId":"entry-18634","position":[331.8436,36.653,-871.4027],"yaw":-5.68544,"spawnMask":3},{"id":"creature-146211","entityId":"entry-18632","position":[291.7206,36.6557,-850.7477],"yaw":-3.50811,"spawnMask":3},{"id":"creature-146212","entityId":"entry-18632","position":[328.1226,36.6567,-847.3737],"yaw":-5.53269,"spawnMask":3},{"id":"creature-146213","entityId":"entry-18632","position":[330.0316,36.6537,-876.1727],"yaw":-5.35816,"spawnMask":3},{"id":"creature-146214","entityId":"entry-18639","position":[295.8616,36.6535,-875.5367],"yaw":-5.75959,"spawnMask":3},{"id":"creature-146215","entityId":"entry-18634","position":[291.1506,36.6522,-881.8907],"yaw":-3.49066,"spawnMask":3},{"id":"creature-146216","entityId":"entry-18632","position":[324.4816,36.6532,-873.9217],"yaw":-4.83456,"spawnMask":3},{"id":"creature-146217","entityId":"entry-18632","position":[327.5916,36.6521,-892.4107],"yaw":-0.523599,"spawnMask":3},{"id":"creature-146218","entityId":"entry-18639","position":[296.3696,36.6518,-891.5757],"yaw":-3.03687,"spawnMask":3},{"id":"creature-146219","entityId":"entry-18634","position":[297.5616,36.653,-884.8317],"yaw":-4.2586,"spawnMask":3},{"id":"creature-146220","entityId":"entry-18632","position":[329.0826,36.653,-888.5897],"yaw":-5.91667,"spawnMask":3},{"id":"creature-146221","entityId":"entry-18632","position":[298.1526,36.6509,-911.6487],"yaw":-4.4855,"spawnMask":3},{"id":"creature-146222","entityId":"entry-18639","position":[299.2796,36.6504,-918.9627],"yaw":-2.37365,"spawnMask":3},{"id":"creature-146223","entityId":"entry-18634","position":[327.7756,36.6502,-923.0297],"yaw":-0.890118,"spawnMask":3},{"id":"creature-146224","entityId":"entry-18632","position":[296.4896,36.6493,-932.1397],"yaw":-1.44862,"spawnMask":3},{"id":"creature-146225","entityId":"entry-18639","position":[291.9866,36.6518,-865.0297],"yaw":-2.88884,"spawnMask":3},{"id":"creature-146226","entityId":"entry-18634","position":[335.2306,36.6535,-871.8907],"yaw":-5.98648,"spawnMask":3},{"id":"creature-146227","entityId":"entry-18639","position":[290.2236,36.6527,-910.4147],"yaw":-3.14159,"spawnMask":3},{"id":"creature-146228","entityId":"entry-18634","position":[332.7256,36.6492,-955.8847],"yaw":-0.279253,"spawnMask":3},{"id":"creature-146229","entityId":"entry-18639","position":[286.5006,36.651,-965.3157],"yaw":-3.15221,"spawnMask":3},{"id":"creature-146230","entityId":"entry-18794","position":[294.3706,27.6367,-592.823],"yaw":-4.67748,"spawnMask":2},{"id":"creature-146231","entityId":"entry-18794","position":[330.3066,27.6363,-592.8884],"yaw":-4.50295,"spawnMask":2},{"id":"creature-146232","entityId":"entry-18794","position":[330.3306,27.6434,-514.9013],"yaw":-4.66003,"spawnMask":2},{"id":"creature-146233","entityId":"entry-18794","position":[313.2286,27.6434,-573.4835],"yaw":-4.66003,"spawnMask":2},{"id":"creature-146234","entityId":"entry-18794","position":[313.1316,27.6434,-534.5729],"yaw":-4.69494,"spawnMask":2},{"id":"creature-146235","entityId":"entry-18794","position":[294.4206,27.6433,-515.2114],"yaw":-4.67748,"spawnMask":2}],"roamingPacks":[{"id":"patrol-146025","name":"Cabal Cultist Patrol","speed":1.15,"pathId":1460250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[510.7836,32.1744,-789.1747],[523.7086,32.1759,-789.2777],[523.5456,32.176,-789.2757]],"members":[{"id":"member","entityId":"entry-18631","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146027","name":"Cabal Cultist Patrol","speed":1.15,"pathId":1460270,"formationSource":"database-solo","spawnMask":3,"waypoints":[[479.4746,32.1716,-786.4047],[446.0776,32.1693,-785.3847]],"members":[{"id":"member","entityId":"entry-18631","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146076","name":"Cabal Assassin Patrol","speed":1.15,"pathId":1460760,"formationSource":"database-solo","spawnMask":3,"waypoints":[[415.4516,27.5599,-660.7537],[418.7096,27.5599,-640.7477],[409.8436,27.56,-621.6357],[403.3466,27.5599,-603.6701],[397.6926,27.5599,-579.683],[382.5336,27.5599,-561.6358],[341.4946,27.5601,-561.671],[318.3536,27.5601,-527.551],[299.6636,27.56,-540.1371],[331.7746,27.5601,-557.2376],[379.9476,27.5598,-558.3217],[397.3816,27.5583,-543.1905],[407.7296,27.56,-508.4134],[407.7296,27.56,-508.4134],[397.3816,27.5583,-543.1905],[379.9476,27.5598,-558.3217],[331.7746,27.5601,-557.2376],[299.6636,27.56,-540.1371],[318.3536,27.5601,-527.551],[341.4946,27.5601,-561.671],[382.5336,27.5599,-561.6358],[397.6926,27.5599,-579.683],[403.3466,27.5599,-603.6701],[409.8436,27.56,-621.6357],[418.7096,27.5599,-640.7477],[415.4516,27.5599,-660.7537]],"members":[{"id":"member","entityId":"entry-18636","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146077","name":"Cabal Assassin Patrol","speed":1.15,"pathId":1460770,"formationSource":"database-solo","spawnMask":3,"waypoints":[[419.8586,27.5599,-460.8634],[417.0416,27.56,-482.9451],[408.0716,27.56,-512.0805],[396.0416,27.5642,-544.8809],[371.8016,27.5591,-560.3982],[329.0136,27.5601,-568.9017],[313.8876,27.5597,-610.2627],[289.5826,24.208,-653.9347],[269.9426,22.9326,-670.0737],[312.8706,27.0436,-632.8237],[321.8976,27.5603,-590.7975],[343.6226,27.5601,-561.6799],[389.5676,27.5598,-563.1911],[396.3366,27.5619,-585.2258],[403.7856,27.5599,-603.1284],[417.3976,27.5599,-629.3897],[413.1646,27.5599,-650.5337],[418.7306,27.5599,-662.0027],[440.2616,27.56,-653.3297],[423.0216,27.5599,-640.0917],[408.4166,27.5599,-619.4247],[399.0526,27.5599,-594.334],[396.4806,27.568,-574.1289],[397.5436,27.5599,-527.406],[419.3536,27.56,-492.409],[437.2886,27.56,-466.3724]],"members":[{"id":"member","entityId":"entry-18636","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146098","name":"Cabal Familiar Patrol","speed":1.15,"pathId":1460980,"formationSource":"database-solo","spawnMask":3,"waypoints":[[229.634,18.6087,-594.2552],[233.384,18.6087,-592.0052],[233.884,18.6087,-588.2552],[230.134,18.6087,-587.2552],[224.134,18.6087,-591.7552],[224.134,18.6087,-595.5052],[227.384,18.6087,-596.0052],[229.134,18.3587,-594.2552]],"members":[{"id":"member","entityId":"entry-18641","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146131","name":"Fel Overseer Patrol","speed":1.15,"pathId":1461310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[312.7296,27.5653,-594.5242],[300.1116,27.5518,-587.3072],[299.0566,27.5601,-560.0322],[299.4536,27.56,-538.7755],[312.0756,27.5601,-524.9578],[327.3676,27.5601,-539.3701],[326.1206,27.5601,-561.2142],[323.8596,27.5602,-588.5421]],"members":[{"id":"member","entityId":"entry-18796","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146132","name":"Fel Overseer Patrol","speed":1.15,"pathId":1461320,"formationSource":"database-solo","spawnMask":3,"waypoints":[[340.2756,27.5601,-560.2059],[357.0216,27.5596,-558.0406],[385.1746,27.56,-560.4841],[340.6056,27.5601,-561.9958],[385.1746,27.56,-560.4841],[357.0216,27.5596,-558.0406]],"members":[{"id":"member","entityId":"entry-18796","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146133","name":"Fel Overseer Patrol","speed":1.15,"pathId":1461330,"formationSource":"database-solo","spawnMask":3,"waypoints":[[289.3856,27.56,-548.1898],[288.7886,27.56,-536.8251],[293.3356,27.56,-531.9536],[296.5626,27.56,-536.524],[294.7336,27.56,-548.6235],[294.8806,27.5601,-566.6971],[297.6076,27.5524,-586.2656],[293.6146,27.5504,-589.948],[290.5826,27.552,-586.9334],[289.9516,27.56,-566.8181]],"members":[{"id":"member","entityId":"entry-18796","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146197","name":"Cabal Fanatic Patrol","speed":1.15,"pathId":1461970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[402.4456,36.5733,-804.1877],[394.8436,36.5733,-798.8157],[388.9326,36.5733,-791.9097],[387.7736,36.5734,-777.9397],[396.6146,36.5733,-770.2207],[403.8586,36.5734,-768.7107],[414.1526,32.1669,-768.4607],[424.1626,31.5512,-770.5337],[431.5506,32.1687,-773.8327],[435.2516,32.1687,-780.3097],[435.3416,32.1684,-791.2757],[427.7456,32.1683,-796.8517],[420.2236,32.1674,-800.8767],[413.3856,32.1661,-803.3397]],"members":[{"id":"member","entityId":"entry-18830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146198","name":"Malicious Instructor Patrol","speed":1.15,"pathId":1461980,"formationSource":"database-solo","spawnMask":3,"waypoints":[[579.3426,32.1467,-701.5117],[585.4236,32.3229,-687.9737],[585.2186,32.3326,-685.8277],[585.3556,32.2157,-674.1507],[577.2326,33.1006,-662.5747],[574.6816,32.2433,-650.8227],[577.1296,32.1854,-642.7027],[584.2946,32.0977,-641.1057],[587.8936,32.2515,-649.4747],[586.3036,32.2986,-662.5037],[586.8376,31.8647,-684.1837],[586.5726,32.1411,-694.3457],[594.0526,32.6484,-700.7607],[596.9996,32.1761,-707.3727],[591.2176,32.1761,-713.0517],[584.8176,32.1761,-710.8527]],"members":[{"id":"member","entityId":"entry-18848","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146199","name":"Malicious Instructor Patrol","speed":1.15,"pathId":1461990,"formationSource":"database-solo","spawnMask":3,"waypoints":[[448.3246,27.56,-519.4214],[436.3176,27.56,-523.0394],[433.2456,27.5599,-531.1144],[418.4656,27.5599,-524.3624],[405.8896,27.5599,-519.632],[409.4816,27.56,-509.9637],[421.9146,27.56,-512.0998],[424.9676,27.56,-491.7815],[423.9956,27.56,-512.3245],[431.8396,27.56,-518.3657],[423.9956,27.56,-512.3245],[424.9676,27.56,-491.7815],[421.9146,27.56,-512.0998],[409.4816,27.56,-509.9637],[405.8896,27.5599,-519.632],[418.4656,27.5599,-524.3624],[433.2456,27.5599,-531.1144],[436.3176,27.56,-523.0394]],"members":[{"id":"member","entityId":"entry-18848","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146200","name":"Malicious Instructor Patrol","speed":1.15,"pathId":1462000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[431.6686,27.5599,-574.7937],[411.8076,27.5599,-575.6838],[396.8916,27.5599,-575.8973],[397.2976,27.5655,-566.0069],[398.1076,27.5598,-555.8036],[397.4246,27.5618,-544.1304],[404.7386,27.5602,-543.0625],[418.7516,27.5723,-545.1182],[428.2666,27.6233,-546.1935],[431.0396,27.586,-550.6403],[432.4456,27.5598,-567.9623]],"members":[{"id":"member","entityId":"entry-18848","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146201","name":"Malicious Instructor Patrol","speed":1.15,"pathId":1462010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[439.8156,27.5599,-587.828],[433.8016,27.5599,-590.7431],[426.0306,27.5599,-593.477],[415.8936,27.5599,-597.5563],[405.8346,27.5599,-600.8696],[405.8356,27.5599,-611.8814],[412.9636,27.5599,-610.1614],[423.5906,27.5527,-608.3372],[432.1756,27.56,-604.5171],[438.9586,27.56,-600.5086],[445.5376,27.56,-598.5266]],"members":[{"id":"member","entityId":"entry-18848","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-146105","name":"Ambassador Hellmaw","position":[312.6246,27.6434,-516.637]},{"id":"creature-146103","name":"Blackheart the Inciter","position":[484.1586,32.1758,-560.6751]},{"id":"creature-146106","name":"Grandmaster Vorpil","position":[409.4976,36.6567,-785.2657]},{"id":"creature-146104","name":"Murmur","position":[313.8446,35.3521,-1018.9417]}],"objectiveOrder":[{"id":"creature-146105","name":"Ambassador Hellmaw","position":[312.6246,27.6434,-516.637]},{"id":"creature-146103","name":"Blackheart the Inciter","position":[484.1586,32.1758,-560.6751]},{"id":"creature-146106","name":"Grandmaster Vorpil","position":[409.4976,36.6567,-785.2657]},{"id":"creature-146104","name":"Murmur","position":[313.8446,35.3521,-1018.9417]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22674,"id":182196,"map":555,"orientation":2.44346,"phaseMask":1,"position_x":-108.252,"position_y":-510.302,"position_z":21.4761,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.342021,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23803,"id":182940,"map":555,"orientation":-2.18166,"phaseMask":1,"position_x":-293.138,"position_y":-103.613,"position_z":8.07297,"rotation0":0,"rotation1":0,"rotation2":-0.88701,"rotation3":0.461749,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23804,"id":182940,"map":555,"orientation":1.74533,"phaseMask":1,"position_x":-287.754,"position_y":-103.78,"position_z":8.07297,"rotation0":0,"rotation1":0,"rotation2":0.766045,"rotation3":0.642787,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23805,"id":182940,"map":555,"orientation":-0.349066,"phaseMask":1,"position_x":-294.316,"position_y":24.135,"position_z":8.07302,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23806,"id":182940,"map":555,"orientation":-1.11701,"phaseMask":1,"position_x":-292.121,"position_y":26.8454,"position_z":8.073,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23807,"id":182940,"map":555,"orientation":-2.75762,"phaseMask":1,"position_x":-455.799,"position_y":-132.044,"position_z":12.8673,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190809,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23808,"id":182940,"map":555,"orientation":-1.64061,"phaseMask":1,"position_x":-334.225,"position_y":-229.809,"position_z":17.0929,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23809,"id":182940,"map":555,"orientation":1.29154,"phaseMask":1,"position_x":-457.049,"position_y":-200.928,"position_z":12.6891,"rotation0":0,"rotation1":0,"rotation2":0.601814,"rotation3":0.798637,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23810,"id":182940,"map":555,"orientation":1.72788,"phaseMask":1,"position_x":-415.633,"position_y":-185.431,"position_z":12.7878,"rotation0":0,"rotation1":0,"rotation2":0.760407,"rotation3":0.649446,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23811,"id":182940,"map":555,"orientation":-0.139626,"phaseMask":1,"position_x":-459.847,"position_y":-195.626,"position_z":12.6891,"rotation0":0,"rotation1":0,"rotation2":-0.0697563,"rotation3":0.997564,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23812,"id":182940,"map":555,"orientation":-1.6057,"phaseMask":1,"position_x":-293.961,"position_y":-229.878,"position_z":17.0907,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23813,"id":182940,"map":555,"orientation":-0.994838,"phaseMask":1,"position_x":-262.225,"position_y":-268.372,"position_z":12.6791,"rotation0":0,"rotation1":0,"rotation2":-0.477159,"rotation3":0.878817,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23814,"id":182940,"map":555,"orientation":-2.21657,"phaseMask":1,"position_x":-262.291,"position_y":-258.957,"position_z":12.6791,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23815,"id":182940,"map":555,"orientation":1.58825,"phaseMask":1,"position_x":-176.746,"position_y":-347.066,"position_z":17.0819,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23816,"id":182940,"map":555,"orientation":-0.366519,"phaseMask":1,"position_x":-181.608,"position_y":-349.376,"position_z":17.0827,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23817,"id":182940,"map":555,"orientation":3.01942,"phaseMask":1,"position_x":-135.64,"position_y":-425.098,"position_z":17.0779,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610484,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23818,"id":182940,"map":555,"orientation":-1.74533,"phaseMask":1,"position_x":-135.182,"position_y":-414.988,"position_z":17.0775,"rotation0":0,"rotation1":0,"rotation2":-0.766045,"rotation3":0.642787,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23819,"id":182940,"map":555,"orientation":0.802851,"phaseMask":1,"position_x":-177.72,"position_y":-405.339,"position_z":17.0805,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23820,"id":182940,"map":555,"orientation":-0.279253,"phaseMask":1,"position_x":-130.946,"position_y":-412.611,"position_z":17.0766,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23821,"id":182940,"map":555,"orientation":-0.279253,"phaseMask":1,"position_x":-172.104,"position_y":-396.989,"position_z":17.0807,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23822,"id":182940,"map":555,"orientation":0.331613,"phaseMask":1,"position_x":-177.772,"position_y":-435.924,"position_z":17.0777,"rotation0":0,"rotation1":0,"rotation2":0.165048,"rotation3":0.986286,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23823,"id":182940,"map":555,"orientation":-0.471239,"phaseMask":1,"position_x":-180.076,"position_y":-430.772,"position_z":17.0799,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23824,"id":182940,"map":555,"orientation":-2.77507,"phaseMask":1,"position_x":-131.677,"position_y":-358.933,"position_z":17.0809,"rotation0":0,"rotation1":0,"rotation2":-0.983255,"rotation3":0.182237,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23825,"id":182940,"map":555,"orientation":0.05236,"phaseMask":1,"position_x":-176.454,"position_y":-387.174,"position_z":17.0811,"rotation0":0,"rotation1":0,"rotation2":0.026177,"rotation3":0.999657,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23826,"id":182940,"map":555,"orientation":-2.1293,"phaseMask":1,"position_x":-133.939,"position_y":-386.422,"position_z":17.0818,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23827,"id":182940,"map":555,"orientation":2.75762,"phaseMask":1,"position_x":-140.082,"position_y":-378.638,"position_z":17.0813,"rotation0":0,"rotation1":0,"rotation2":0.981627,"rotation3":0.190809,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23828,"id":182940,"map":555,"orientation":3.10669,"phaseMask":1,"position_x":-132.905,"position_y":-392.071,"position_z":17.0837,"rotation0":0,"rotation1":0,"rotation2":0.999848,"rotation3":0.0174505,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23829,"id":182940,"map":555,"orientation":-1.90241,"phaseMask":1,"position_x":-175.799,"position_y":-373.941,"position_z":17.0812,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23830,"id":182940,"map":555,"orientation":-0.628319,"phaseMask":1,"position_x":-135.84,"position_y":-367.102,"position_z":17.081,"rotation0":0,"rotation1":0,"rotation2":-0.309017,"rotation3":0.951056,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23831,"id":182940,"map":555,"orientation":-0.366519,"phaseMask":1,"position_x":-178.952,"position_y":-369.672,"position_z":17.0811,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23832,"id":182940,"map":555,"orientation":0.20944,"phaseMask":1,"position_x":-179.3,"position_y":-358.532,"position_z":17.0835,"rotation0":0,"rotation1":0,"rotation2":0.104529,"rotation3":0.994522,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23857,"id":182942,"map":555,"orientation":0.785398,"phaseMask":1,"position_x":-61.242,"position_y":40.5248,"position_z":0.276768,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23858,"id":182943,"map":555,"orientation":2.37365,"phaseMask":1,"position_x":-61.2422,"position_y":40.5618,"position_z":0.244354,"rotation0":0,"rotation1":0,"rotation2":0.927184,"rotation3":0.374606,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":23860,"id":182947,"map":555,"orientation":-2.93215,"phaseMask":1,"position_x":-267.122,"position_y":-263.761,"position_z":14.1797,"rotation0":0,"rotation1":0,"rotation2":-0.994522,"rotation3":0.10453,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23952,"id":183036,"map":555,"orientation":-3.12414,"phaseMask":1,"position_x":-267.143,"position_y":-263.502,"position_z":12.6797,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":24142,"id":183295,"map":555,"orientation":-1.5708,"phaseMask":1,"position_x":-156.503,"position_y":-313.76,"position_z":17.0189,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":24143,"id":183296,"map":555,"orientation":0,"phaseMask":1,"position_x":-381.266,"position_y":-38.9899,"position_z":12.6214,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":24396,"id":183516,"map":555,"orientation":-1.51844,"phaseMask":1,"position_x":-267.174,"position_y":-263.543,"position_z":12.6797,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105126,"id":181556,"map":555,"orientation":2.87979,"phaseMask":1,"position_x":-444.706,"position_y":-134.04,"position_z":9.70979,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105127,"id":181569,"map":555,"orientation":2.87979,"phaseMask":1,"position_x":-444.706,"position_y":-134.04,"position_z":9.70979,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105128,"id":181557,"map":555,"orientation":2.87979,"phaseMask":1,"position_x":-444.706,"position_y":-134.04,"position_z":9.70979,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105129,"id":181556,"map":555,"orientation":1.51844,"phaseMask":1,"position_x":-280.173,"position_y":-288.205,"position_z":15.7102,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105130,"id":181569,"map":555,"orientation":1.51844,"phaseMask":1,"position_x":-280.173,"position_y":-288.205,"position_z":15.7102,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105131,"id":181557,"map":555,"orientation":1.51844,"phaseMask":1,"position_x":-280.173,"position_y":-288.205,"position_z":15.7102,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105132,"id":181556,"map":555,"orientation":1.71042,"phaseMask":1,"position_x":-413.967,"position_y":-148.752,"position_z":12.0902,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105133,"id":181569,"map":555,"orientation":1.71042,"phaseMask":1,"position_x":-413.967,"position_y":-148.752,"position_z":12.0902,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105134,"id":181557,"map":555,"orientation":1.71042,"phaseMask":1,"position_x":-413.967,"position_y":-148.752,"position_z":12.0902,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105135,"id":181556,"map":555,"orientation":3.61284,"phaseMask":1,"position_x":-461.452,"position_y":-168.93,"position_z":21.1669,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233448,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105136,"id":181569,"map":555,"orientation":3.61284,"phaseMask":1,"position_x":-461.452,"position_y":-168.93,"position_z":21.1669,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233448,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105137,"id":181557,"map":555,"orientation":3.61284,"phaseMask":1,"position_x":-461.452,"position_y":-168.93,"position_z":21.1669,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233448,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105138,"id":181556,"map":555,"orientation":3.927,"phaseMask":1,"position_x":-343.013,"position_y":-289.625,"position_z":18.6538,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105139,"id":181569,"map":555,"orientation":3.927,"phaseMask":1,"position_x":-343.013,"position_y":-289.625,"position_z":18.6538,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105140,"id":181557,"map":555,"orientation":3.927,"phaseMask":1,"position_x":-343.013,"position_y":-289.625,"position_z":18.6538,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3789,"guid":105141,"id":181556,"map":555,"orientation":-1.22173,"phaseMask":1,"position_x":-67.3891,"position_y":37.0473,"position_z":1.74518,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3789,"guid":105142,"id":181569,"map":555,"orientation":-1.22173,"phaseMask":1,"position_x":-67.3891,"position_y":37.0473,"position_z":1.74518,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3789,"guid":105143,"id":181557,"map":555,"orientation":-1.22173,"phaseMask":1,"position_x":-67.3891,"position_y":37.0473,"position_z":1.74518,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105144,"id":181556,"map":555,"orientation":5.75959,"phaseMask":1,"position_x":-352.19,"position_y":-60.7045,"position_z":17.7109,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105145,"id":181569,"map":555,"orientation":5.75959,"phaseMask":1,"position_x":-352.19,"position_y":-60.7045,"position_z":17.7109,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105146,"id":181557,"map":555,"orientation":5.75959,"phaseMask":1,"position_x":-352.19,"position_y":-60.7045,"position_z":17.7109,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105147,"id":181556,"map":555,"orientation":3.01941,"phaseMask":1,"position_x":-235.529,"position_y":17.4544,"position_z":14.6202,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105148,"id":181569,"map":555,"orientation":3.01941,"phaseMask":1,"position_x":-235.529,"position_y":17.4544,"position_z":14.6202,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105149,"id":181557,"map":555,"orientation":3.01941,"phaseMask":1,"position_x":-235.529,"position_y":17.4544,"position_z":14.6202,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105150,"id":181556,"map":555,"orientation":1.83259,"phaseMask":1,"position_x":-362.041,"position_y":-24.6519,"position_z":16.788,"rotation0":0,"rotation1":0,"rotation2":0.793353,"rotation3":0.608762,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105151,"id":181569,"map":555,"orientation":1.83259,"phaseMask":1,"position_x":-362.041,"position_y":-24.6519,"position_z":16.788,"rotation0":0,"rotation1":0,"rotation2":0.793353,"rotation3":0.608762,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105152,"id":181557,"map":555,"orientation":1.83259,"phaseMask":1,"position_x":-362.041,"position_y":-24.6519,"position_z":16.788,"rotation0":0,"rotation1":0,"rotation2":0.793353,"rotation3":0.608762,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105153,"id":181556,"map":555,"orientation":0.750491,"phaseMask":1,"position_x":-234.062,"position_y":-97.6057,"position_z":15.5083,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105154,"id":181569,"map":555,"orientation":0.750491,"phaseMask":1,"position_x":-234.062,"position_y":-97.6057,"position_z":15.5083,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105155,"id":181557,"map":555,"orientation":0.750491,"phaseMask":1,"position_x":-234.062,"position_y":-97.6057,"position_z":15.5083,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105156,"id":181278,"map":555,"orientation":2.28638,"phaseMask":1,"position_x":-94.8835,"position_y":11.1668,"position_z":-1.12819,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105157,"id":181278,"map":555,"orientation":1.71042,"phaseMask":1,"position_x":-77.7761,"position_y":-44.3547,"position_z":-1.12827,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105158,"id":181278,"map":555,"orientation":3.17653,"phaseMask":1,"position_x":-34.7484,"position_y":-90.9532,"position_z":-1.1283,"rotation0":0,"rotation1":0,"rotation2":-0.999847,"rotation3":0.0174693,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105159,"id":181278,"map":555,"orientation":5.58505,"phaseMask":1,"position_x":-89.5791,"position_y":-84.7791,"position_z":-1.1283,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3789,"guid":105160,"id":181278,"map":555,"orientation":2.60054,"phaseMask":1,"position_x":-169.086,"position_y":5.50827,"position_z":8.07305,"rotation0":0,"rotation1":0,"rotation2":0.96363,"rotation3":0.267239,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105161,"id":181278,"map":555,"orientation":5.23599,"phaseMask":1,"position_x":-142.808,"position_y":4.1791,"position_z":8.07297,"rotation0":0,"rotation1":0,"rotation2":-0.5,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105162,"id":181278,"map":555,"orientation":0.506145,"phaseMask":1,"position_x":-145.144,"position_y":-71.5597,"position_z":8.06785,"rotation0":0,"rotation1":0,"rotation2":0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105163,"id":181278,"map":555,"orientation":4.57276,"phaseMask":1,"position_x":-161.71,"position_y":-14.5394,"position_z":8.0731,"rotation0":0,"rotation1":0,"rotation2":-0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105164,"id":181278,"map":555,"orientation":3.38594,"phaseMask":1,"position_x":-170.012,"position_y":-70.4493,"position_z":8.06785,"rotation0":0,"rotation1":0,"rotation2":-0.992546,"rotation3":0.12187,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105165,"id":181278,"map":555,"orientation":3.4034,"phaseMask":1,"position_x":-153.173,"position_y":-52.8355,"position_z":8.07305,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105166,"id":181278,"map":555,"orientation":5.88176,"phaseMask":1,"position_x":-267.485,"position_y":-79.3793,"position_z":8.07292,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105167,"id":181278,"map":555,"orientation":2.35619,"phaseMask":1,"position_x":-269.214,"position_y":-0.495546,"position_z":8.07293,"rotation0":0,"rotation1":0,"rotation2":0.92388,"rotation3":0.382683,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105168,"id":181278,"map":555,"orientation":0.0174525,"phaseMask":1,"position_x":-292.68,"position_y":19.5516,"position_z":8.07305,"rotation0":0,"rotation1":0,"rotation2":0.00872612,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105169,"id":181278,"map":555,"orientation":5.46288,"phaseMask":1,"position_x":-284.108,"position_y":-102.021,"position_z":8.07298,"rotation0":0,"rotation1":0,"rotation2":-0.398748,"rotation3":0.91706,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105170,"id":181278,"map":555,"orientation":2.26893,"phaseMask":1,"position_x":-411.712,"position_y":-203.084,"position_z":12.7605,"rotation0":0,"rotation1":0,"rotation2":0.906307,"rotation3":0.422619,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105171,"id":181278,"map":555,"orientation":4.45059,"phaseMask":1,"position_x":-442.793,"position_y":-123.579,"position_z":13.2556,"rotation0":0,"rotation1":0,"rotation2":-0.793353,"rotation3":0.608762,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105172,"id":181278,"map":555,"orientation":4.95674,"phaseMask":1,"position_x":-457.128,"position_y":-195.439,"position_z":12.6891,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3789,"guid":105173,"id":181278,"map":555,"orientation":2.28638,"phaseMask":1,"position_x":-286.216,"position_y":-240.003,"position_z":12.6827,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105174,"id":181278,"map":555,"orientation":4.4855,"phaseMask":1,"position_x":-329.27,"position_y":-303.466,"position_z":25.1034,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105175,"id":181278,"map":555,"orientation":5.11382,"phaseMask":1,"position_x":-298.782,"position_y":-304.974,"position_z":25.183,"rotation0":0,"rotation1":0,"rotation2":-0.551936,"rotation3":0.833886,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105176,"id":181278,"map":555,"orientation":4.59022,"phaseMask":1,"position_x":-326.735,"position_y":-244.62,"position_z":12.6846,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105177,"id":181278,"map":555,"orientation":2.82743,"phaseMask":1,"position_x":-139.013,"position_y":-396.985,"position_z":17.08,"rotation0":0,"rotation1":0,"rotation2":0.987688,"rotation3":0.156436,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105178,"id":181278,"map":555,"orientation":5.14872,"phaseMask":1,"position_x":-170.229,"position_y":-386.925,"position_z":17.0808,"rotation0":0,"rotation1":0,"rotation2":-0.537299,"rotation3":0.843392,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105179,"id":181278,"map":555,"orientation":4.64258,"phaseMask":1,"position_x":-170.759,"position_y":-350.168,"position_z":17.0826,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105180,"id":181278,"map":555,"orientation":3.68265,"phaseMask":1,"position_x":-137.353,"position_y":-406.701,"position_z":17.08,"rotation0":0,"rotation1":0,"rotation2":-0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105181,"id":181278,"map":555,"orientation":0.087266,"phaseMask":1,"position_x":-139.072,"position_y":-443.655,"position_z":17.0795,"rotation0":0,"rotation1":0,"rotation2":0.0436192,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105182,"id":181278,"map":555,"orientation":2.28638,"phaseMask":1,"position_x":-174.217,"position_y":-435.155,"position_z":17.0785,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150028,"id":184196,"map":555,"orientation":3.1588,"phaseMask":1,"position_x":7.309,"position_y":-0.098,"position_z":-1.128,"rotation0":0,"rotation1":0,"rotation2":0.999963,"rotation3":-0.00860351,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150029,"id":184195,"map":555,"orientation":3.1588,"phaseMask":1,"position_x":7.309,"position_y":-0.098,"position_z":-1.128,"rotation0":0,"rotation1":0,"rotation2":0.999963,"rotation3":-0.00860351,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/AuchindounShadow":"e1d87dc8d502bd510944411b84e83ad2bcd44959a78e038a6ce5570ce27901f0","patch/World/maps/AuchindounShadow":"919c3ed7332c72df31ddfa1b67ec85c1b9c188cf44c2c5ddfae6144acca40beb"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/shadow-labyrinth/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["22/22 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"sethekk-halls","title":"Auchindoun: Sethekk Halls","mapId":556,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Auchindoun: Sethekk Halls","theme":"Instanced dungeon","summary":"Fight through Auchindoun: Sethekk Halls, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Auchindoun: Sethekk Halls...","unchartedAreaName":"Uncharted Auchindoun: Sethekk Halls","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":371.3998},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/556-auchindoundemon/visual.glb","checksum":"b6e0650c9bbc25981708d5bcdff741332a8459371053edc52476bf400c0e07a0","size":3493032,"triangleCount":98724}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/556-auchindoundemon/collision.glb","checksum":"c32469a3f686597f16e8e4b6105162fe3ab57f923a4858d2977e297df744db3f","size":776864,"triangleCount":85131}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/556-auchindoundemon/navigation.glb","checksum":"2cb2e0ac415ecdd78a602b1686af5d3d25d3803145aff71e60a3a6ef06454f29","size":125684,"triangleCount":9052}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-213.1456,6.1807,240.0937],"max":[302.6875,81.4304,679.0255]},"entrance":{"name":"Auchindoun: Sethekk Halls Entrance","footPosition":[-72.7111,26.8022,290.0244],"forward":[0.9999062865207841,0,-0.013690075829435894],"yaw":1.584486830288576},"areas":[{"id":"entrance","name":"Auchindoun: Sethekk Halls Entrance","center":[-72.7111,26.8022,290.0244],"radius":35},{"id":"area-darkweaver-syth","name":"Darkweaver Syth's Encounter","center":[67.4348,28.5647,463.6745],"radius":42},{"id":"area-talon-king-ikiss","name":"Talon King Ikiss's Encounter","center":[-122.1149,51.9481,577.0775],"radius":42}],"entities":{"entry-18318":{"id":"entry-18318","kind":"mob","name":"Sethekk Initiate","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-33961","name":"Spell Reflection","spellId":33961,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4141,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-33961","durationMs":8000,"magnitude":0.15}},{"id":"spell-16145","name":"Sunder Armor","spellId":16145,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4141,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20572-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5904,"markerRadius":1.9467}}},"entry-18319":{"id":"entry-18319","kind":"mob","name":"Time-Lost Scryer","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-17138","name":"Flash Heal","spellId":17138,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4166,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-12160","name":"Rejuvenation","spellId":12160,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":4166,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20682-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5417,"markerRadius":1.9467}}},"entry-18320":{"id":"entry-18320","kind":"mob","name":"Time-Lost Shadowmage","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-32682","name":"Curse of the Dark Talon","spellId":32682,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5384,"damageMultiplier":1.12},{"id":"spell-32675","name":"Shadow Missiles","spellId":32675,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5384,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20683-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0991,"labelHeight":4.6983,"markerRadius":2.0138}}},"entry-18321":{"id":"entry-18321","kind":"mob","name":"Sethekk Talon Lord","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-32674","name":"Avenger's Shield","spellId":32674,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":6713,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-32674","durationMs":8000,"magnitude":0.15}},{"id":"spell-32654","name":"Talon of Justice","spellId":32654,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6713,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"raptor","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20598-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1156,"labelHeight":5.5401,"markerRadius":2.3494}}},"entry-18322":{"id":"entry-18322","kind":"mob","name":"Sethekk Ravenguard","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-40423","name":"Bloodthirst","spellId":40423,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7354,"damageMultiplier":1.12},{"id":"spell-32651","name":"Howling Screech","spellId":32651,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7354,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20573-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1024,"labelHeight":4.907,"markerRadius":2.0809}}},"entry-18323":{"id":"entry-18323","kind":"mob","name":"Sethekk Guard","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-33967","name":"Thunderclap","spellId":33967,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6581,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/bcc14a8b2e12bb78aab11fcecfd6a0469d4df1fcf8167e779a7fc9ccf4d1ae4f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0991,"labelHeight":4.7487,"markerRadius":2.0138}}},"entry-18325":{"id":"entry-18325","kind":"mob","name":"Sethekk Prophet","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-27641","name":"Fear","spellId":27641,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5340,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20572-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5904,"markerRadius":1.9467}}},"entry-18326":{"id":"entry-18326","kind":"mob","name":"Sethekk Shaman","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-15501","name":"Earth Shock","spellId":15501,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6691,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-17865-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5417,"markerRadius":1.9467}}},"entry-18327":{"id":"entry-18327","kind":"mob","name":"Time-Lost Controller","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-35013","name":"Shrink","spellId":35013,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4621,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20682-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5417,"markerRadius":1.9467}}},"entry-18328":{"id":"entry-18328","kind":"mob","name":"Sethekk Oracle","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-32129","name":"Faerie Fire","spellId":32129,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7093,"damageMultiplier":1.12},{"id":"spell-32690","name":"Arcane Lightning","spellId":32690,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":7093,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-17865-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5417,"markerRadius":1.9467}}},"entry-18472":{"id":"entry-18472","kind":"boss","name":"Darkweaver Syth","title":"Dungeon Boss","hasLoot":true,"combat":{"level":68,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15659","name":"Chain Lightning","spellId":15659,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4530,"damageMultiplier":1.35},{"id":"spell-33534","name":"Arcane Shock","spellId":33534,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4530,"damageMultiplier":1.35},{"id":"spell-15039","name":"Flame Shock","spellId":15039,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4530,"damageMultiplier":1.35},{"id":"spell-33620","name":"Shadow Shock","spellId":33620,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4530,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20599-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1255,"labelHeight":5.9512,"markerRadius":2.5508}}},"entry-18473":{"id":"entry-18473","kind":"boss","name":"Talon King Ikiss","title":"Dungeon Boss","hasLoot":true,"combat":{"level":68,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6255,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"raptor","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-18636-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1321,"labelHeight":6.2644,"markerRadius":2.685}}},"entry-19428":{"id":"entry-19428","kind":"mob","name":"Cobalt Serpent","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-38133","name":"Lightning Breath","spellId":38133,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":4504,"damageMultiplier":0.62,"radius":8},{"id":"spell-38110","name":"Wing Buffet","spellId":38110,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4504,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"serpent","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-19788-animated.glb","rotationY":-1.5707963267948966,"groundOffset":7.3093,"labelHeight":12.346,"markerRadius":3.0603}}},"entry-19429":{"id":"entry-19429","kind":"mob","name":"Avian Darkhawk","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20725-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1711,"labelHeight":1.7135,"markerRadius":2.7082}}},"entry-21891":{"id":"entry-21891","kind":"mob","name":"Avian Ripper","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20730-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1027,"labelHeight":1.1681,"markerRadius":1.6249}}},"entry-21904":{"id":"entry-21904","kind":"mob","name":"Avian Warhawk","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2139,"labelHeight":2.0543,"markerRadius":3.3852}}}},"staticSpawns":[{"id":"creature-138633","entityId":"entry-18318","position":[-11.6296,26.8892,457.8965],"yaw":-3.40339,"spawnMask":3},{"id":"creature-138634","entityId":"entry-18318","position":[3.2736,26.8865,395.2535],"yaw":-2.32129,"spawnMask":3},{"id":"creature-138635","entityId":"entry-18318","position":[-8.2597,26.8865,373.8602],"yaw":-2.82743,"spawnMask":3},{"id":"creature-138636","entityId":"entry-18318","position":[-153.2485,27.146,406.1645],"yaw":-5.5676,"spawnMask":3},{"id":"creature-138637","entityId":"entry-18318","position":[-128.3166,27.0301,389.1097],"yaw":-3.10669,"spawnMask":3},{"id":"creature-138638","entityId":"entry-18318","position":[-89.3197,27.3027,392.5925],"yaw":-0.959931,"spawnMask":3},{"id":"creature-138639","entityId":"entry-18318","position":[-113.9181,27.0301,389.4478],"yaw":-6.26573,"spawnMask":3},{"id":"creature-138640","entityId":"entry-18318","position":[-135.8843,27.0234,373.5225],"yaw":-4.32842,"spawnMask":3},{"id":"creature-138642","entityId":"entry-18318","position":[-97.8648,26.8445,371.8131],"yaw":-5.51524,"spawnMask":3},{"id":"creature-138643","entityId":"entry-18318","position":[-105.053,27.0825,366.8817],"yaw":-2.77507,"spawnMask":3},{"id":"creature-138644","entityId":"entry-18319","position":[-17.248,53.9989,601.7835],"yaw":-3.87463,"spawnMask":3},{"id":"creature-138645","entityId":"entry-18319","position":[23.9378,53.4046,599.9995],"yaw":-5.81195,"spawnMask":3},{"id":"creature-138646","entityId":"entry-18319","position":[133.5528,53.5155,634.0255],"yaw":-5.00909,"spawnMask":3},{"id":"creature-138647","entityId":"entry-18319","position":[163.5728,54.0372,626.2815],"yaw":-5.21853,"spawnMask":3},{"id":"creature-138648","entityId":"entry-18319","position":[93.6888,53.501,572.4035],"yaw":-3.07178,"spawnMask":3},{"id":"creature-138649","entityId":"entry-18319","position":[191.0958,26.9132,474.4035],"yaw":-0.610865,"spawnMask":3},{"id":"creature-138650","entityId":"entry-18319","position":[188.7728,26.9132,480.1875],"yaw":-5.68977,"spawnMask":3},{"id":"creature-138651","entityId":"entry-18319","position":[164.5228,26.9416,446.1095],"yaw":-1.78024,"spawnMask":3},{"id":"creature-138652","entityId":"entry-18320","position":[4.6658,53.6873,563.1755],"yaw":-3.82227,"spawnMask":3},{"id":"creature-138653","entityId":"entry-18320","position":[-10.879,53.912,604.7405],"yaw":-4.57276,"spawnMask":3},{"id":"creature-138654","entityId":"entry-18320","position":[-18.4563,53.7954,570.1715],"yaw":-1.72788,"spawnMask":3},{"id":"creature-138655","entityId":"entry-18320","position":[-67.2589,53.6099,571.5965],"yaw":-2.79253,"spawnMask":3},{"id":"creature-138656","entityId":"entry-18320","position":[16.3508,53.3537,605.6585],"yaw":-4.45059,"spawnMask":3},{"id":"creature-138657","entityId":"entry-18320","position":[36.6088,53.6722,558.6055],"yaw":-2.47837,"spawnMask":3},{"id":"creature-138661","entityId":"entry-18321","position":[-67.2617,53.61,582.5205],"yaw":-3.38594,"spawnMask":3},{"id":"creature-138665","entityId":"entry-18322","position":[63.7448,53.6101,581.4015],"yaw":-3.78736,"spawnMask":3},{"id":"creature-138666","entityId":"entry-18322","position":[64.2738,53.6102,573.1635],"yaw":-2.77507,"spawnMask":3},{"id":"creature-138667","entityId":"entry-18322","position":[168.7698,53.6185,502.3025],"yaw":-4.76475,"spawnMask":3},{"id":"creature-138668","entityId":"entry-18322","position":[162.0008,53.6974,501.9355],"yaw":-4.53786,"spawnMask":3},{"id":"creature-138669","entityId":"entry-18322","position":[128.0258,26.8904,466.5545],"yaw":-6.07375,"spawnMask":3},{"id":"creature-138670","entityId":"entry-18322","position":[128.1488,26.8903,459.6295],"yaw":-0.15708,"spawnMask":3},{"id":"creature-138671","entityId":"entry-18323","position":[25.0368,26.8892,467.7035],"yaw":-6.16101,"spawnMask":3},{"id":"creature-138672","entityId":"entry-18323","position":[25.0888,26.8892,460.1785],"yaw":-0.488692,"spawnMask":3},{"id":"creature-138673","entityId":"entry-18323","position":[-2.1745,26.8865,420.9365],"yaw":-4.92183,"spawnMask":3},{"id":"creature-138674","entityId":"entry-18323","position":[-10.9398,26.8865,421.2535],"yaw":-4.85202,"spawnMask":3},{"id":"creature-138675","entityId":"entry-18323","position":[-125.1602,26.9698,420.6035],"yaw":-4.83456,"spawnMask":3},{"id":"creature-138676","entityId":"entry-18323","position":[-119.3792,26.9822,420.2645],"yaw":-5.11381,"spawnMask":3},{"id":"creature-138677","entityId":"entry-18323","position":[-168.1115,26.982,394.4385],"yaw":-3.56047,"spawnMask":3},{"id":"creature-138678","entityId":"entry-18323","position":[-168.1456,26.8865,387.0514],"yaw":-2.94961,"spawnMask":3},{"id":"creature-138679","entityId":"entry-18323","position":[-73.6935,26.8865,393.5955],"yaw":-6.17847,"spawnMask":3},{"id":"creature-138682","entityId":"entry-18323","position":[-73.8385,26.8865,387.439],"yaw":-0.418879,"spawnMask":3},{"id":"creature-138683","entityId":"entry-18323","position":[-117.4978,26.8868,343.065],"yaw":-4.93928,"spawnMask":3},{"id":"creature-138684","entityId":"entry-18323","position":[-124.3753,26.8868,342.47],"yaw":-4.34587,"spawnMask":3},{"id":"creature-138685","entityId":"entry-18325","position":[-17.8045,53.42,595.0275],"yaw":-3.1765,"spawnMask":3},{"id":"creature-138686","entityId":"entry-18325","position":[-27.869,53.7425,570.2925],"yaw":-2.63545,"spawnMask":3},{"id":"creature-138687","entityId":"entry-18325","position":[-25.6181,53.7751,576.0315],"yaw":-4.31096,"spawnMask":3},{"id":"creature-138688","entityId":"entry-18325","position":[-76.2273,53.5713,580.0235],"yaw":-3.21141,"spawnMask":3},{"id":"creature-138689","entityId":"entry-18325","position":[24.0718,53.3638,592.0305],"yaw":-2.0944,"spawnMask":3},{"id":"creature-138690","entityId":"entry-18325","position":[126.4498,53.5155,626.1715],"yaw":-2.37365,"spawnMask":3},{"id":"creature-138691","entityId":"entry-18325","position":[153.2248,54.2342,620.6355],"yaw":-3.1765,"spawnMask":3},{"id":"creature-138692","entityId":"entry-18325","position":[101.4118,53.5394,567.0835],"yaw":-1.81514,"spawnMask":3},{"id":"creature-138693","entityId":"entry-18325","position":[108.0438,53.4616,571.3655],"yaw":-0.994838,"spawnMask":3},{"id":"creature-138694","entityId":"entry-18325","position":[46.3788,54.1272,560.1605],"yaw":-1.02974,"spawnMask":3},{"id":"creature-138695","entityId":"entry-18325","position":[12.5755,53.7144,552.8275],"yaw":-2.11185,"spawnMask":3},{"id":"creature-138696","entityId":"entry-18326","position":[-75.5247,53.5757,574.7225],"yaw":-3.00197,"spawnMask":3},{"id":"creature-138697","entityId":"entry-18326","position":[125.0168,53.5155,633.8425],"yaw":-3.71755,"spawnMask":3},{"id":"creature-138698","entityId":"entry-18326","position":[157.2038,54.1741,626.0345],"yaw":-4.18879,"spawnMask":3},{"id":"creature-138699","entityId":"entry-18326","position":[41.1708,53.9673,556.2595],"yaw":-2.35619,"spawnMask":3},{"id":"creature-138700","entityId":"entry-18326","position":[6.912,53.6873,556.7585],"yaw":-3.00197,"spawnMask":3},{"id":"creature-138701","entityId":"entry-18327","position":[168.8258,26.9473,449.9915],"yaw":-0.383972,"spawnMask":3},{"id":"creature-138702","entityId":"entry-18327","position":[-8.7968,26.8888,463.1295],"yaw":-4.17134,"spawnMask":3},{"id":"creature-138703","entityId":"entry-18327","position":[6.468,26.8865,403.6895],"yaw":-5.8294,"spawnMask":3},{"id":"creature-138704","entityId":"entry-18327","position":[-0.8232,26.8865,373.8514],"yaw":-0.785398,"spawnMask":3},{"id":"creature-138705","entityId":"entry-18327","position":[-19.3756,26.8865,398.0925],"yaw":-1.55334,"spawnMask":3},{"id":"creature-138706","entityId":"entry-18327","position":[-159.2989,27.2082,402.4545],"yaw":-3.21141,"spawnMask":3},{"id":"creature-138707","entityId":"entry-18327","position":[-121.0282,27.0301,397.0335],"yaw":-4.76475,"spawnMask":3},{"id":"creature-138708","entityId":"entry-18327","position":[-94.3013,27.3027,396.2615],"yaw":-4.45059,"spawnMask":3},{"id":"creature-138709","entityId":"entry-18327","position":[-99.1281,27.3942,363.8096],"yaw":-1.0821,"spawnMask":3},{"id":"creature-138710","entityId":"entry-18327","position":[-132.9273,26.7876,368.9063],"yaw":-1.29154,"spawnMask":3},{"id":"creature-138711","entityId":"entry-18328","position":[181.8008,26.9159,481.9445],"yaw":-5.41052,"spawnMask":3},{"id":"creature-138712","entityId":"entry-18328","position":[168.0088,26.9488,454.9245],"yaw":-0.0349066,"spawnMask":3},{"id":"creature-138713","entityId":"entry-18328","position":[-1.9571,26.889,463.7675],"yaw":-5.81195,"spawnMask":3},{"id":"creature-138714","entityId":"entry-18328","position":[8.8254,26.886,397.4745],"yaw":-0.785398,"spawnMask":3},{"id":"creature-138715","entityId":"entry-18328","position":[-1.2047,26.8865,379.7459],"yaw":-5.68977,"spawnMask":3},{"id":"creature-138716","entityId":"entry-18328","position":[-17.0089,26.8865,404.7815],"yaw":-5.68977,"spawnMask":3},{"id":"creature-138717","entityId":"entry-18328","position":[-25.5267,26.8865,400.7995],"yaw":-3.78736,"spawnMask":3},{"id":"creature-138718","entityId":"entry-18472","position":[67.4348,28.5647,463.6745],"yaw":-0.0698132,"spawnMask":3},{"id":"creature-138719","entityId":"entry-18473","position":[-122.1149,51.9481,577.0775],"yaw":-3.97935,"spawnMask":3},{"id":"creature-138731","entityId":"entry-19429","position":[-112.0228,26.8675,299.5201],"yaw":-1.7514,"spawnMask":3},{"id":"creature-138732","entityId":"entry-21891","position":[111.1618,54.1705,632.9435],"yaw":-5.36097,"spawnMask":3},{"id":"creature-138733","entityId":"entry-21891","position":[102.0578,54.377,629.3415],"yaw":-2.28289,"spawnMask":3},{"id":"creature-138734","entityId":"entry-21891","position":[106.9758,52.6251,624.3095],"yaw":-0.565755,"spawnMask":3},{"id":"creature-138735","entityId":"entry-21891","position":[112.1778,52.8357,617.7225],"yaw":-2.98859,"spawnMask":3},{"id":"creature-138736","entityId":"entry-21891","position":[115.2108,52.115,623.0785],"yaw":-4.30592,"spawnMask":3},{"id":"creature-138737","entityId":"entry-21891","position":[131.7348,56.9592,609.5345],"yaw":-4.28157,"spawnMask":3},{"id":"creature-138738","entityId":"entry-21891","position":[137.5588,58.8853,605.6645],"yaw":-2.14424,"spawnMask":3},{"id":"creature-138739","entityId":"entry-21891","position":[132.1268,59.7633,601.9135],"yaw":-3.7415,"spawnMask":3},{"id":"creature-138740","entityId":"entry-21891","position":[126.1318,57.1348,601.2425],"yaw":-4.02625,"spawnMask":3},{"id":"creature-138741","entityId":"entry-21891","position":[136.5208,61.4304,603.5495],"yaw":-4.24644,"spawnMask":3},{"id":"creature-138742","entityId":"entry-21891","position":[179.7138,53.7186,578.9855],"yaw":-2.98709,"spawnMask":3},{"id":"creature-138743","entityId":"entry-21891","position":[162.8378,53.8789,584.6265],"yaw":-0.721867,"spawnMask":3},{"id":"creature-138744","entityId":"entry-21891","position":[171.2008,53.6704,586.1745],"yaw":-0.0665515,"spawnMask":3},{"id":"creature-138745","entityId":"entry-21891","position":[168.4748,54.6637,575.0095],"yaw":-0.729114,"spawnMask":3},{"id":"creature-138746","entityId":"entry-21891","position":[158.3078,53.7322,577.5965],"yaw":-3.10773,"spawnMask":3},{"id":"creature-138747","entityId":"entry-21891","position":[164.0188,54.1625,572.0205],"yaw":-4.25565,"spawnMask":3},{"id":"creature-138748","entityId":"entry-21891","position":[172.8268,54.2462,572.5365],"yaw":-4.25292,"spawnMask":3},{"id":"creature-138749","entityId":"entry-21891","position":[177.1288,53.8988,566.7415],"yaw":-4.26671,"spawnMask":3},{"id":"creature-138750","entityId":"entry-21891","position":[167.8428,54.1802,567.8385],"yaw":-0.0874787,"spawnMask":3},{"id":"creature-138751","entityId":"entry-21891","position":[160.7648,53.6704,566.3475],"yaw":-2.17905,"spawnMask":3},{"id":"creature-138752","entityId":"entry-21891","position":[157.5408,28.0328,473.9205],"yaw":-6.23851,"spawnMask":3},{"id":"creature-138753","entityId":"entry-21891","position":[154.0278,30.1588,479.5395],"yaw":-1.33875,"spawnMask":3},{"id":"creature-138754","entityId":"entry-21891","position":[148.2788,33.4772,484.6135],"yaw":-0.87798,"spawnMask":3},{"id":"creature-138755","entityId":"entry-21891","position":[149.2358,29.8737,473.5995],"yaw":-2.55115,"spawnMask":3},{"id":"creature-138756","entityId":"entry-21891","position":[145.4718,31.4095,477.4835],"yaw":-3.52858,"spawnMask":3}],"roamingPacks":[{"id":"patrol-138631","name":"Sethekk Initiate Patrol","speed":1.15,"pathId":1386310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[187.5538,26.8299,469.8805],[180.8688,26.8353,473.0305],[178.5618,26.8388,478.8325],[180.8688,26.8353,473.0305]],"members":[{"id":"member","entityId":"entry-18318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138632","name":"Sethekk Initiate Patrol","speed":1.15,"pathId":1386320,"formationSource":"database-solo","spawnMask":3,"waypoints":[[167.9418,26.841,460.4815],[161.8378,26.7077,458.3735],[161.1478,26.6719,450.7185],[161.8378,26.7077,458.3735]],"members":[{"id":"member","entityId":"entry-18318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138641","name":"Sethekk Initiate Patrol","speed":1.15,"pathId":1386410,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-114.1306,26.8043,300.7946],[-118.0595,26.804,311.0115],[-116.3549,26.8035,321.0027],[-117.0408,26.8035,330.3104],[-122.7066,26.8035,327.2187],[-124.408,26.8035,315.1791],[-124.6102,26.801,299.1478],[-116.6958,26.8031,290.7808]],"members":[{"id":"member","entityId":"entry-18318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138658","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[4.6451,53.5036,568.0415],[9.6876,53.4754,565.8665],[10.84,53.6039,559.8585],[9.6876,53.4754,565.8665]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138659","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-14.7534,53.0162,591.2445],[-11.1381,53.2216,598.9865],[-7.0346,53.3726,602.3665],[-11.1271,53.2236,599.0105]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138660","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386600,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-32.6855,53.5449,572.3105],[-28.0407,53.6722,579.9425],[-21.0281,53.6855,579.3205],[-14.4611,53.7121,573.7865],[-21.0281,53.6855,579.3205],[-28.0407,53.6722,579.9425]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138662","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386620,"formationSource":"database-solo","spawnMask":3,"waypoints":[[26.4768,53.3127,587.6385],[18.1897,53.2792,589.4955],[18.4029,52.698,599.6245],[18.1897,53.2792,589.4955]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138663","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386630,"formationSource":"database-solo","spawnMask":3,"waypoints":[[138.2668,53.5546,631.5015],[135.2298,53.4992,624.4575],[127.6678,53.4603,619.0145],[135.2298,53.4992,624.4575]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138664","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386640,"formationSource":"database-solo","spawnMask":3,"waypoints":[[109.2768,53.3002,576.7895],[101.5538,53.267,580.0905],[90.0708,53.5153,577.3225],[101.5538,53.267,580.0905]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138680","name":"Sethekk Guard Patrol","speed":1.15,"pathId":1386800,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-117.5794,26.9708,311.2271],[-117.4517,26.8874,309.6469],[-117.324,26.8039,308.0668],[-116.7972,26.804,301.5474],[-116.25,26.8034,294.7768],[-115.8747,26.8027,290.133],[-115.4689,26.8026,285.1118],[-115.4689,26.8026,285.1118],[-107.7585,26.8015,285.0937]],"members":[{"id":"member","entityId":"entry-18323","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138681","name":"Sethekk Guard Patrol","speed":1.15,"pathId":1386810,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-114.5338,26.9702,319.2982],[-114.5337,26.8872,310.4228],[-114.5336,26.8042,301.5474],[-114.5335,26.804,296.6467],[-114.5335,26.804,296.6467],[-107.0785,26.8023,295.4644]],"members":[{"id":"member","entityId":"entry-18323","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138721","name":"Cobalt Serpent Patrol","speed":1.15,"pathId":1387210,"formationSource":"database-solo","spawnMask":3,"waypoints":[[200.1258,53.518,495.7665],[177.3918,53.6114,494.5745],[148.7598,54.1421,495.8235],[136.9688,53.5187,490.5915],[135.1348,53.5545,458.5805],[137.5038,53.6722,440.4445],[144.4938,53.5603,431.8685],[164.6548,53.5631,431.8175],[182.4618,40.3587,431.4505],[191.6238,40.3752,434.2995],[194.4088,40.319,443.0495],[195.2678,26.853,460.9105],[194.4138,40.3151,443.1435],[191.6238,40.3752,434.2995],[182.4618,40.3587,431.4505],[164.6548,53.5631,431.8175],[144.4938,53.5603,431.8685],[137.5038,53.6722,440.4445],[135.1348,53.5545,458.5805],[136.9688,53.5187,490.5915],[148.7598,54.1421,495.8235],[177.3918,53.6114,494.5745]],"members":[{"id":"member","entityId":"entry-19428","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138722","name":"Cobalt Serpent Patrol","speed":1.15,"pathId":1387220,"formationSource":"database-solo","spawnMask":3,"waypoints":[[63.7318,53.5284,577.0065],[85.1888,53.5274,580.7045],[99.7398,53.4038,585.6095],[112.9858,53.5265,600.4905],[129.6388,53.4452,621.2655],[140.5878,53.7603,623.2305],[154.7188,53.5694,607.9445],[165.1818,53.5266,590.9625],[154.7188,53.5694,607.9445],[140.5878,53.7603,623.2305],[129.6388,53.4452,621.2655],[112.9858,53.5265,600.4905],[99.7398,53.4038,585.6095],[85.1888,53.5274,580.7045]],"members":[{"id":"member","entityId":"entry-19428","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138723","name":"Cobalt Serpent Patrol","speed":1.15,"pathId":1387230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[195.2678,26.853,460.9105],[194.4138,40.3151,443.1435],[191.6238,40.3752,434.2995],[182.4618,40.3587,431.4505],[164.6548,53.5631,431.8175],[144.4938,53.5603,431.8685],[137.5038,53.6722,440.4445],[135.1348,53.5545,458.5805],[136.9688,53.5187,490.5915],[148.7598,54.1421,495.8235],[177.3918,53.6114,494.5745],[200.1258,53.518,495.7665],[177.3918,53.6114,494.5745],[148.7598,54.1421,495.8235],[136.9688,53.5187,490.5915],[135.1348,53.5545,458.5805],[137.5038,53.6722,440.4445],[144.4938,53.5603,431.8685],[164.6548,53.5631,431.8175],[182.4618,40.3587,431.4505],[191.6238,40.3752,434.2995],[194.4088,40.319,443.0495]],"members":[{"id":"member","entityId":"entry-19428","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138724","name":"Cobalt Serpent Patrol","speed":1.15,"pathId":1387240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[151.0628,26.8442,442.0925],[149.2388,26.597,457.9805],[162.3418,26.7691,461.9395],[176.3788,26.8343,470.5535],[172.6398,26.8398,479.6565],[166.8128,26.8604,489.0045],[172.6398,26.8398,479.6565],[176.3788,26.8343,470.5535],[162.3418,26.7691,461.9395],[149.2388,26.597,457.9805]],"members":[{"id":"member","entityId":"entry-19428","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138725","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-6.7251,26.8026,444.3645],[-11.4416,26.8025,435.9065],[-6.7401,26.8029,430.5005],[-3.3469,26.8025,436.0925],[-6.1277,26.8026,444.2165],[-2.7847,26.8034,455.4255],[7.3723,26.8064,461.7675],[32.5128,26.8068,463.9835],[40.6508,26.7601,458.1445],[38.9108,26.8068,468.1385],[32.5618,26.7948,464.7495],[22.9658,26.8058,464.5375],[8.5053,26.8059,466.9375],[-3.6711,26.8035,456.4375]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138726","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-2.5416,27.2627,396.0725],[-2.2354,26.8032,400.6195],[-0.9524,26.8039,405.9365],[2.8201,26.8029,409.3605],[7.9295,26.8022,408.8865],[11.7632,26.8032,402.9005],[11.6002,26.8031,395.4085],[6.9513,26.8032,390.7545],[1.1099,26.8032,391.1425]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138727","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387270,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-8.001,26.8032,401.8715],[-1.8208,26.8032,397.9845],[1.6501,26.8032,390.0691],[-0.2743,26.8032,384.9905],[-5.1524,26.8032,380.8968],[-12.3803,26.8032,382.674],[-17.8114,26.8178,387.0845],[-16.263,26.8032,394.7455]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138728","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-161.3304,27.1578,408.3185],[-163.3839,27.0658,401.9575],[-157.6666,27.0343,398.9495],[-152.6035,27.0954,401.8135],[-150.249,26.7945,405.2115],[-151.1848,26.8976,409.8415],[-157.0911,27.1578,410.3805]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138729","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387290,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-96.6004,27.2193,392.4185],[-98.3728,27.1869,396.0555],[-96.6873,27.2107,400.9525],[-90.6943,27.1722,404.2575],[-85.1459,27.0739,398.1945],[-86.7018,27.1353,389.5645],[-93.655,27.1925,389.3909]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138730","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-138.9336,26.9123,376.5833],[-138.9964,26.9156,373.0111],[-137.187,26.9057,368.2648],[-130.7981,26.455,364.9485],[-127.6908,26.1807,368.1261],[-131.4111,26.9468,374.6876],[-136.1341,26.9312,377.7555]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138757","name":"Avian Warhawk Patrol","speed":1.15,"pathId":1387570,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-62.4777,53.5271,583.2135],[-61.782,53.5276,570.0575]],"members":[{"id":"member","entityId":"entry-21904","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138758","name":"Avian Warhawk Patrol","speed":1.15,"pathId":1387580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[165.7288,53.8656,619.4795],[158.0308,53.7836,614.2985],[148.9188,53.9532,614.3085],[158.0308,53.7836,614.2985]],"members":[{"id":"member","entityId":"entry-21904","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138759","name":"Avian Warhawk Patrol","speed":1.15,"pathId":1387590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[46.5388,54.2397,564.2465],[39.5958,53.9544,565.2205],[33.2498,52.9534,561.2615],[39.5958,53.9544,565.2205]],"members":[{"id":"member","entityId":"entry-21904","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-138718","name":"Darkweaver Syth","position":[67.4348,28.5647,463.6745]},{"id":"creature-138719","name":"Talon King Ikiss","position":[-122.1149,51.9481,577.0775]}],"objectiveOrder":[{"id":"creature-138718","name":"Darkweaver Syth","position":[67.4348,28.5647,463.6745]},{"id":"creature-138719","name":"Talon King Ikiss","position":[-122.1149,51.9481,577.0775]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3791,"guid":7280,"id":183398,"map":556,"orientation":1.5708,"phaseMask":1,"position_x":44.7716,"position_y":150.721,"position_z":-0.034146,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":84600,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3791,"guid":7282,"id":185554,"map":556,"orientation":1.55334,"phaseMask":1,"position_x":-87.1621,"position_y":287.823,"position_z":26.4832,"rotation0":0,"rotation1":0,"rotation2":0.700909,"rotation3":0.713251,"spawnMask":2,"spawntimesecs":84600,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42095,"id":183050,"map":556,"orientation":5.24018,"phaseMask":1,"position_x":-85.9132,"position_y":288.405,"position_z":26.4832,"rotation0":0,"rotation1":0,"rotation2":0.498184,"rotation3":-0.867072,"spawnMask":3,"spawntimesecs":0,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":12340,"animprogress":255,"areaId":0,"guid":44719,"id":187372,"map":556,"orientation":0,"phaseMask":1,"position_x":65.8832,"position_y":286.698,"position_z":25.0402,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67620,"id":183051,"map":556,"orientation":-0.785397,"phaseMask":1,"position_x":-161.007,"position_y":157.316,"position_z":0.010762,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105068,"id":181556,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-59.9727,"position_y":84.91,"position_z":1.11623,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105069,"id":181569,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-59.9727,"position_y":84.91,"position_z":1.11623,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105070,"id":181557,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-59.9727,"position_y":84.91,"position_z":1.11623,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105071,"id":181556,"map":556,"orientation":2.33874,"phaseMask":1,"position_x":-84.1449,"position_y":83.7513,"position_z":1.94966,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105072,"id":181569,"map":556,"orientation":2.33874,"phaseMask":1,"position_x":-84.1449,"position_y":83.7513,"position_z":1.94966,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105073,"id":181557,"map":556,"orientation":2.33874,"phaseMask":1,"position_x":-84.1449,"position_y":83.7513,"position_z":1.94966,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105074,"id":181556,"map":556,"orientation":2.87979,"phaseMask":1,"position_x":57.1795,"position_y":115.444,"position_z":-3.00431,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105075,"id":181569,"map":556,"orientation":2.87979,"phaseMask":1,"position_x":57.1795,"position_y":115.444,"position_z":-3.00431,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105076,"id":181557,"map":556,"orientation":2.87979,"phaseMask":1,"position_x":57.1795,"position_y":115.444,"position_z":-3.00431,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105077,"id":181556,"map":556,"orientation":5.77704,"phaseMask":1,"position_x":-114.993,"position_y":103.73,"position_z":2.62569,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105078,"id":181569,"map":556,"orientation":5.77704,"phaseMask":1,"position_x":-114.993,"position_y":103.73,"position_z":2.62569,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105079,"id":181557,"map":556,"orientation":5.77704,"phaseMask":1,"position_x":-114.993,"position_y":103.73,"position_z":2.62569,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105080,"id":181556,"map":556,"orientation":4.69494,"phaseMask":1,"position_x":24.3,"position_y":114.706,"position_z":0.058363,"rotation0":0,"rotation1":0,"rotation2":-0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105081,"id":181569,"map":556,"orientation":4.69494,"phaseMask":1,"position_x":24.3,"position_y":114.706,"position_z":0.058363,"rotation0":0,"rotation1":0,"rotation2":-0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105082,"id":181557,"map":556,"orientation":4.69494,"phaseMask":1,"position_x":24.3,"position_y":114.706,"position_z":0.058363,"rotation0":0,"rotation1":0,"rotation2":-0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105083,"id":181556,"map":556,"orientation":4.15388,"phaseMask":1,"position_x":103.381,"position_y":105.561,"position_z":2.53604,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105084,"id":181569,"map":556,"orientation":4.15388,"phaseMask":1,"position_x":103.381,"position_y":105.561,"position_z":2.53604,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105085,"id":181557,"map":556,"orientation":4.15388,"phaseMask":1,"position_x":103.381,"position_y":105.561,"position_z":2.53604,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105086,"id":181556,"map":556,"orientation":1.95477,"phaseMask":1,"position_x":-194.833,"position_y":339.823,"position_z":25.4777,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559193,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105087,"id":181569,"map":556,"orientation":1.95477,"phaseMask":1,"position_x":-194.833,"position_y":339.823,"position_z":25.4777,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559193,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105088,"id":181557,"map":556,"orientation":1.95477,"phaseMask":1,"position_x":-194.833,"position_y":339.823,"position_z":25.4777,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559193,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105089,"id":181556,"map":556,"orientation":0.558504,"phaseMask":1,"position_x":-233.406,"position_y":200.359,"position_z":1.84191,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105090,"id":181569,"map":556,"orientation":0.558504,"phaseMask":1,"position_x":-233.406,"position_y":200.359,"position_z":1.84191,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105091,"id":181557,"map":556,"orientation":0.558504,"phaseMask":1,"position_x":-233.406,"position_y":200.359,"position_z":1.84191,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105092,"id":181556,"map":556,"orientation":4.60767,"phaseMask":1,"position_x":-228.518,"position_y":199.721,"position_z":24.8284,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105093,"id":181569,"map":556,"orientation":4.60767,"phaseMask":1,"position_x":-228.518,"position_y":199.721,"position_z":24.8284,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105094,"id":181557,"map":556,"orientation":4.60767,"phaseMask":1,"position_x":-228.518,"position_y":199.721,"position_z":24.8284,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105095,"id":181556,"map":556,"orientation":1.65806,"phaseMask":1,"position_x":-230.139,"position_y":291.997,"position_z":32.156,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105096,"id":181569,"map":556,"orientation":1.65806,"phaseMask":1,"position_x":-230.139,"position_y":291.997,"position_z":32.156,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105097,"id":181557,"map":556,"orientation":1.65806,"phaseMask":1,"position_x":-230.139,"position_y":291.997,"position_z":32.156,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105098,"id":181556,"map":556,"orientation":1.5708,"phaseMask":1,"position_x":-221.732,"position_y":151.383,"position_z":1.69546,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105099,"id":181569,"map":556,"orientation":1.5708,"phaseMask":1,"position_x":-221.732,"position_y":151.383,"position_z":1.69546,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105100,"id":181557,"map":556,"orientation":1.5708,"phaseMask":1,"position_x":-221.732,"position_y":151.383,"position_z":1.69546,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105101,"id":181556,"map":556,"orientation":4.85202,"phaseMask":1,"position_x":-196.522,"position_y":294.837,"position_z":30.829,"rotation0":0,"rotation1":0,"rotation2":-0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105102,"id":181569,"map":556,"orientation":4.85202,"phaseMask":1,"position_x":-196.522,"position_y":294.837,"position_z":30.829,"rotation0":0,"rotation1":0,"rotation2":-0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105103,"id":181557,"map":556,"orientation":4.85202,"phaseMask":1,"position_x":-196.522,"position_y":294.837,"position_z":30.829,"rotation0":0,"rotation1":0,"rotation2":-0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105104,"id":181556,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-80.9439,"position_y":307.453,"position_z":24.743,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105105,"id":181569,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-80.9439,"position_y":307.453,"position_z":24.743,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105106,"id":181557,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-80.9439,"position_y":307.453,"position_z":24.743,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105107,"id":181556,"map":556,"orientation":3.56047,"phaseMask":1,"position_x":-100.66,"position_y":273.158,"position_z":23.1322,"rotation0":0,"rotation1":0,"rotation2":-0.978148,"rotation3":0.207912,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105108,"id":181569,"map":556,"orientation":3.56047,"phaseMask":1,"position_x":-100.66,"position_y":273.158,"position_z":23.1322,"rotation0":0,"rotation1":0,"rotation2":-0.978148,"rotation3":0.207912,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105109,"id":181557,"map":556,"orientation":3.56047,"phaseMask":1,"position_x":-100.66,"position_y":273.158,"position_z":23.1322,"rotation0":0,"rotation1":0,"rotation2":-0.978148,"rotation3":0.207912,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105110,"id":181278,"map":556,"orientation":4.4855,"phaseMask":1,"position_x":7.98955,"position_y":112.229,"position_z":0.348708,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105111,"id":181278,"map":556,"orientation":0.59341,"phaseMask":1,"position_x":87.8129,"position_y":116.028,"position_z":0.353684,"rotation0":0,"rotation1":0,"rotation2":0.292371,"rotation3":0.956305,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105112,"id":181278,"map":556,"orientation":1.25664,"phaseMask":1,"position_x":-63.2795,"position_y":178.564,"position_z":0.01084,"rotation0":0,"rotation1":0,"rotation2":0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105113,"id":181278,"map":556,"orientation":2.63544,"phaseMask":1,"position_x":-91.2256,"position_y":110.526,"position_z":0.005229,"rotation0":0,"rotation1":0,"rotation2":0.968147,"rotation3":0.250381,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105114,"id":181278,"map":556,"orientation":4.83456,"phaseMask":1,"position_x":-75.1794,"position_y":75.9373,"position_z":0.006448,"rotation0":0,"rotation1":0,"rotation2":-0.66262,"rotation3":0.748956,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105115,"id":181278,"map":556,"orientation":1.88495,"phaseMask":1,"position_x":-279.839,"position_y":193.427,"position_z":0.057562,"rotation0":0,"rotation1":0,"rotation2":0.809016,"rotation3":0.587786,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105116,"id":181278,"map":556,"orientation":1.76278,"phaseMask":1,"position_x":-246.083,"position_y":147.564,"position_z":0.062782,"rotation0":0,"rotation1":0,"rotation2":0.771625,"rotation3":0.636078,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105117,"id":181278,"map":556,"orientation":1.85005,"phaseMask":1,"position_x":-237.488,"position_y":203.8,"position_z":-0.051845,"rotation0":0,"rotation1":0,"rotation2":0.798635,"rotation3":0.601815,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105118,"id":181278,"map":556,"orientation":5.61996,"phaseMask":1,"position_x":-200.026,"position_y":351.062,"position_z":26.6361,"rotation0":0,"rotation1":0,"rotation2":-0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105119,"id":181278,"map":556,"orientation":6.16101,"phaseMask":1,"position_x":-175.854,"position_y":340.07,"position_z":27.4297,"rotation0":0,"rotation1":0,"rotation2":-0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105120,"id":181278,"map":556,"orientation":5.5676,"phaseMask":1,"position_x":-190.816,"position_y":273.533,"position_z":26.7324,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105121,"id":181278,"map":556,"orientation":5.74214,"phaseMask":1,"position_x":-242.4,"position_y":351.192,"position_z":26.7369,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105122,"id":181278,"map":556,"orientation":2.42601,"phaseMask":1,"position_x":-99.0857,"position_y":314.553,"position_z":26.552,"rotation0":0,"rotation1":0,"rotation2":0.936672,"rotation3":0.350207,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105123,"id":181278,"map":556,"orientation":2.91469,"phaseMask":1,"position_x":-74.5162,"position_y":270.936,"position_z":26.7079,"rotation0":0,"rotation1":0,"rotation2":0.993571,"rotation3":0.113208,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105124,"id":181278,"map":556,"orientation":3.24635,"phaseMask":1,"position_x":-117.02,"position_y":260.386,"position_z":26.8177,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523532,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105125,"id":181278,"map":556,"orientation":5.34071,"phaseMask":1,"position_x":-58.4746,"position_y":314.138,"position_z":27.3705,"rotation0":0,"rotation1":0,"rotation2":-0.45399,"rotation3":0.891007,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150036,"id":184190,"map":556,"orientation":0.03534,"phaseMask":1,"position_x":-7.825,"position_y":-0.204,"position_z":0.0062,"rotation0":0,"rotation1":0,"rotation2":0.0176691,"rotation3":0.999844,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150037,"id":184189,"map":556,"orientation":0.03534,"phaseMask":1,"position_x":-7.825,"position_y":-0.204,"position_z":0.0062,"rotation0":0,"rotation1":0,"rotation2":0.0176691,"rotation3":0.999844,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/AuchindounDemon":"bd7f7caf71174f96abc192225969121c394a0cfd710e8c949b2f75b0cbd3b033","patch/World/maps/AuchindounDemon":"eda85851f2475cdadc61a301007225b17789a11b3dd73b6701fca65807608ebb"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/sethekk-halls/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["16/16 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"mana-tombs","title":"Auchindoun: Mana-Tombs","mapId":557,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Auchindoun: Mana-Tombs","theme":"Instanced dungeon","summary":"Fight through Auchindoun: Mana-Tombs, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Auchindoun: Mana-Tombs...","unchartedAreaName":"Uncharted Auchindoun: Mana-Tombs","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":382.752},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/557-auchindounethereal/visual.glb","checksum":"69aa9d1f025542ef0da01d1cf8d30600aa40cab99a2b60f06450038081901d58","size":3570848,"triangleCount":90614}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/557-auchindounethereal/collision.glb","checksum":"833cbf07454221f35db493f84ad2508c95395ef1154bcd88073f093c74532b65","size":792804,"triangleCount":76540}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/557-auchindounethereal/navigation.glb","checksum":"5c905d93955353a9b8aea1a0e67b7c362a2b3d8095b5a10826e130b17214a1ec","size":176400,"triangleCount":12947}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-104.0431,-22.2451,-278.2222],"max":[427.5569,42.3104,93.2576]},"entrance":{"name":"Auchindoun: Mana-Tombs Entrance","footPosition":[-59.0431,-0.7849,19.0056],"forward":[0.7867888659591058,0,-0.61722222934919],"yaw":2.2360036039568065},"areas":[{"id":"entrance","name":"Auchindoun: Mana-Tombs Entrance","center":[-59.0431,-0.7849,19.0056],"radius":35},{"id":"area-pandemonius","name":"Pandemonius's Encounter","center":[8.9673,-1.0284,-100.8762],"radius":42},{"id":"area-tavarok","name":"Tavarok's Encounter","center":[262.693,-0.6082,-204.1252],"radius":42},{"id":"area-nexus-prince-shaffar","name":"Nexus-Prince Shaffar's Encounter","center":[125.342,16.9868,27.3913],"radius":42}],"entities":{"entry-18309":{"id":"entry-18309","kind":"mob","name":"Ethereal Scavenger","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-33865","name":"Singe","spellId":33865,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7225,"damageMultiplier":1.12},{"id":"spell-33871","name":"Shield Bash","spellId":33871,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":7225,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-33871","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-19778-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0498,"labelHeight":3.8711,"markerRadius":1.9316}}},"entry-18311":{"id":"entry-18311","kind":"mob","name":"Ethereal Crypt Raider","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22911","name":"Charge","spellId":22911,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5033,"damageMultiplier":1.12},{"id":"spell-32315","name":"Soul Strike","spellId":32315,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5033,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-20466-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0623,"labelHeight":4.8389,"markerRadius":2.4145}}},"entry-18313":{"id":"entry-18313","kind":"mob","name":"Ethereal Sorcerer","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-25603","name":"Slow","spellId":25603,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4453,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-21004-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1394,"labelHeight":5.3068,"markerRadius":1.7046}}},"entry-18317":{"id":"entry-18317","kind":"mob","name":"Ethereal Priest","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-34944","name":"Holy Nova","spellId":34944,"delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5491,"damageMultiplier":0.62,"radius":8},{"id":"spell-34495","name":"Increase Healing 299","spellId":34495,"delivery":"projectile","target":"lowest-health-friendly","school":"physical","animation":"cast","range":28,"cooldownMs":5491,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-21005-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.129,"labelHeight":4.9137,"markerRadius":1.5783}}},"entry-18314":{"id":"entry-18314","kind":"mob","name":"Nexus Stalker","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-20468-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0573,"labelHeight":4.4518,"markerRadius":2.2214}}},"entry-18331":{"id":"entry-18331","kind":"mob","name":"Ethereal Darkcaster","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16592","name":"Shadowform","spellId":16592,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5696,"damageMultiplier":1.12},{"id":"spell-34942","name":"Shadow Word: Pain","spellId":34942,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5696,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-20987-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1032,"labelHeight":3.931,"markerRadius":1.2627}}},"entry-19307":{"id":"entry-19307","kind":"mob","name":"Nexus Terror","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-18050-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5569,"markerRadius":1.6135}}},"entry-18431":{"id":"entry-18431","kind":"mob","name":"Ethereal Beacon","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15254","name":"Arcane Bolt","spellId":15254,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4449,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-25866-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-19306":{"id":"entry-19306","kind":"mob","name":"Mana Leech","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7428480000000004,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-25602","name":"Faerie Fire","spellId":25602,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4261,"damageMultiplier":1.12},{"id":"spell-15785","name":"Mana Burn","spellId":15785,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4261,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/8ec04da49e89f06bd85e7e8ecbb8c2e53ef77758bb032a1945b3d5fccecd8a6e.glb","rotationY":-1.5707963267948966,"groundOffset":0.2253,"labelHeight":5.9213,"markerRadius":0.9578}}},"entry-18343":{"id":"entry-18343","kind":"boss","name":"Tavarok","title":"Dungeon Boss","hasLoot":true,"combat":{"level":66,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5925,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-19332-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0245,"labelHeight":32.8625,"markerRadius":4.5}}},"entry-18344":{"id":"entry-18344","kind":"boss","name":"Nexus-Prince Shaffar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":66,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6592,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-19780-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1121,"labelHeight":8.71,"markerRadius":4.3462}}},"entry-18341":{"id":"entry-18341","kind":"boss","name":"Pandemonius","title":"Dungeon Boss","hasLoot":true,"combat":{"level":66,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-32358","name":"Dark Shell","spellId":32358,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4272,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-19338-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":15.3699,"markerRadius":4.5}}},"entry-18315":{"id":"entry-18315","kind":"mob","name":"Ethereal Theurgist","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-38064","name":"Blast Wave","spellId":38064,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6957,"damageMultiplier":1.12},{"id":"spell-34920","name":"Strike","spellId":34920,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6957,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-21004-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1394,"labelHeight":5.3068,"markerRadius":1.7046}}},"entry-18312":{"id":"entry-18312","kind":"mob","name":"Ethereal Spellbinder","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-34470","name":"Serpent's Swiftness","spellId":34470,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5071,"damageMultiplier":1.12},{"id":"spell-37668","name":"Immolate","spellId":37668,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5071,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-20986-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1032,"labelHeight":3.931,"markerRadius":1.2627}}}},"staticSpawns":[{"id":"creature-83302","entityId":"entry-18311","position":[11.0634,-0.7779,-1.6256],"yaw":-1.26261,"spawnMask":3},{"id":"creature-83304","entityId":"entry-18309","position":[-10.7147,-0.6926,12.0674],"yaw":-0.366519,"spawnMask":3},{"id":"creature-83305","entityId":"entry-18311","position":[-4.8043,-0.6937,21.5402],"yaw":-0.10472,"spawnMask":3},{"id":"creature-83306","entityId":"entry-18311","position":[12.1343,-0.7016,-22.9597],"yaw":-1.309,"spawnMask":3},{"id":"creature-83307","entityId":"entry-18311","position":[4.3944,-0.7016,-23.4968],"yaw":-1.8326,"spawnMask":3},{"id":"creature-83309","entityId":"entry-18309","position":[49.323,-0.3565,-74.9052],"yaw":-2.61019,"spawnMask":3},{"id":"creature-83310","entityId":"entry-18313","position":[34.9741,-0.5713,-86.5782],"yaw":-1.11713,"spawnMask":3},{"id":"creature-83311","entityId":"entry-18311","position":[4.6321,0.0857,-42.9203],"yaw":-1.78024,"spawnMask":3},{"id":"creature-83312","entityId":"entry-18311","position":[13.6202,-0.7974,-42.9135],"yaw":-1.6057,"spawnMask":3},{"id":"creature-83313","entityId":"entry-18313","position":[8.6987,-0.5943,-49.2097],"yaw":-1.37881,"spawnMask":3},{"id":"creature-83314","entityId":"entry-18311","position":[-15.7234,-1.48,-79.5525],"yaw":-1.83806,"spawnMask":3},{"id":"creature-83315","entityId":"entry-18313","position":[-12.2802,-0.7603,-79.7237],"yaw":-2.09157,"spawnMask":3},{"id":"creature-83316","entityId":"entry-18311","position":[33.9842,-0.7376,-38.4758],"yaw":-6.24652,"spawnMask":3},{"id":"creature-83317","entityId":"entry-18309","position":[38.8673,-0.6351,-41.82],"yaw":-3.32374,"spawnMask":3},{"id":"creature-83318","entityId":"entry-18313","position":[33.2687,-1.4893,-48.6688],"yaw":-0.693752,"spawnMask":3},{"id":"creature-83319","entityId":"entry-18311","position":[-26.7523,-0.0445,-74.1628],"yaw":-4.29137,"spawnMask":3},{"id":"creature-83321","entityId":"entry-18313","position":[-19.9109,-1.3219,-76.6407],"yaw":-0.564044,"spawnMask":3},{"id":"creature-83330","entityId":"entry-18314","position":[311.78,-0.7899,-179.4322],"yaw":-4.77872,"spawnMask":3},{"id":"creature-83331","entityId":"entry-18314","position":[311.688,-0.8306,-173.1422],"yaw":-1.57663,"spawnMask":3},{"id":"creature-83332","entityId":"entry-18331","position":[332.729,-0.706,-153.8592],"yaw":-0.122173,"spawnMask":3},{"id":"creature-83333","entityId":"entry-18313","position":[336.733,-0.706,-150.3042],"yaw":-0.523599,"spawnMask":3},{"id":"creature-83334","entityId":"entry-19307","position":[311.515,-0.7894,-73.8243],"yaw":-5.80378,"spawnMask":3},{"id":"creature-83335","entityId":"entry-18331","position":[292.787,-0.706,-150.7112],"yaw":-3.64774,"spawnMask":3},{"id":"creature-83336","entityId":"entry-18313","position":[294.859,-0.706,-156.8082],"yaw":-2.79253,"spawnMask":3},{"id":"creature-83338","entityId":"entry-18331","position":[240.171,-1.2669,-187.5382],"yaw":-0.471239,"spawnMask":3},{"id":"creature-83339","entityId":"entry-18331","position":[235.182,-1.7309,-185.2492],"yaw":-0.767945,"spawnMask":3},{"id":"creature-83340","entityId":"entry-18317","position":[122.444,-0.7024,-211.1822],"yaw":-0.453786,"spawnMask":3},{"id":"creature-83341","entityId":"entry-18331","position":[122.564,-0.7025,-199.6162],"yaw":-5.96903,"spawnMask":3},{"id":"creature-83342","entityId":"entry-18313","position":[130.241,-0.7027,-200.8882],"yaw":-0.05236,"spawnMask":3},{"id":"creature-83343","entityId":"entry-18309","position":[129.754,-0.703,-208.0742],"yaw":-6.16101,"spawnMask":3},{"id":"creature-83345","entityId":"entry-18331","position":[150.451,1.2614,-185.9572],"yaw":-5.53188,"spawnMask":3},{"id":"creature-83347","entityId":"entry-18317","position":[199.374,-0.9458,-145.2822],"yaw":-4.25308,"spawnMask":3},{"id":"creature-83348","entityId":"entry-18331","position":[188.844,-0.784,-137.6872],"yaw":-5.41272,"spawnMask":3},{"id":"creature-86396","entityId":"entry-18331","position":[193.215,-0.7004,-160.2622],"yaw":-5.67232,"spawnMask":3},{"id":"creature-91121","entityId":"entry-18317","position":[193.473,-0.6984,-170.0482],"yaw":-6.26573,"spawnMask":3},{"id":"creature-91122","entityId":"entry-18313","position":[196.689,-0.699,-166.3302],"yaw":-6.10865,"spawnMask":3},{"id":"creature-91124","entityId":"entry-18331","position":[161.596,-0.4093,-199.3352],"yaw":-0.017453,"spawnMask":3},{"id":"creature-91125","entityId":"entry-18317","position":[162.087,-0.701,-211.1332],"yaw":-0.05236,"spawnMask":3},{"id":"creature-91126","entityId":"entry-18313","position":[156.412,-0.7028,-205.3252],"yaw":-0.069813,"spawnMask":3},{"id":"creature-91131","entityId":"entry-18431","position":[120.409,16.8802,27.1276],"yaw":-5.13499,"spawnMask":3},{"id":"creature-91132","entityId":"entry-18431","position":[128.247,16.8921,33.4543],"yaw":-1.21272,"spawnMask":3},{"id":"creature-91133","entityId":"entry-18431","position":[129.595,16.9404,23.1818],"yaw":-3.24971,"spawnMask":3},{"id":"creature-91134","entityId":"entry-19306","position":[168.698,17.1948,10.2096],"yaw":-1.4391,"spawnMask":3},{"id":"creature-91135","entityId":"entry-19306","position":[164.504,16.9037,10.8907],"yaw":-5.29432,"spawnMask":3},{"id":"creature-91136","entityId":"entry-19306","position":[163.349,16.8892,8.4504],"yaw":-1.84962,"spawnMask":3},{"id":"creature-91137","entityId":"entry-19306","position":[163.02,17.2964,15.4007],"yaw":-2.81858,"spawnMask":3},{"id":"creature-91138","entityId":"entry-19306","position":[159.404,16.9045,10.9672],"yaw":-4.11056,"spawnMask":3},{"id":"creature-91139","entityId":"entry-19306","position":[169.242,17.6506,45.7515],"yaw":-1.76408,"spawnMask":3},{"id":"creature-91140","entityId":"entry-19306","position":[166.263,16.979,47.5928],"yaw":-3.85384,"spawnMask":3},{"id":"creature-91141","entityId":"entry-19306","position":[163.802,16.9713,45.6715],"yaw":-2.15511,"spawnMask":3},{"id":"creature-91142","entityId":"entry-19306","position":[160.372,16.9696,48.2576],"yaw":-5.08662,"spawnMask":3},{"id":"creature-91143","entityId":"entry-19306","position":[163.638,17.1968,37.1167],"yaw":-4.67522,"spawnMask":3},{"id":"creature-91151","entityId":"entry-18317","position":[52.231,-0.9185,-178.5352],"yaw":-4.41568,"spawnMask":3},{"id":"creature-91152","entityId":"entry-18317","position":[61.651,-0.6461,-179.8202],"yaw":-5.42797,"spawnMask":3},{"id":"creature-91153","entityId":"entry-18313","position":[56.231,-1.0928,-181.4692],"yaw":-4.92183,"spawnMask":3},{"id":"creature-91154","entityId":"entry-18313","position":[-21.3445,-0.037,-212.0472],"yaw":-3.51569,"spawnMask":3},{"id":"creature-91155","entityId":"entry-18313","position":[-29.9264,0.2347,-201.5442],"yaw":-5.39465,"spawnMask":3},{"id":"creature-91156","entityId":"entry-18317","position":[-31.0764,0.2972,-201.8132],"yaw":-2.02268,"spawnMask":3},{"id":"creature-91161","entityId":"entry-18343","position":[262.693,-0.6082,-204.1252],"yaw":-0.366519,"spawnMask":3},{"id":"creature-91162","entityId":"entry-18344","position":[125.342,16.9868,27.3913],"yaw":-2.94961,"spawnMask":3},{"id":"creature-91163","entityId":"entry-18341","position":[8.9673,-1.0284,-100.8762],"yaw":-3.91872,"spawnMask":3},{"id":"creature-91164","entityId":"entry-18314","position":[311.198,-0.706,-114.8922],"yaw":-3.92699,"spawnMask":3},{"id":"creature-91165","entityId":"entry-18314","position":[317.158,-0.706,-115.1772],"yaw":-4.57276,"spawnMask":3},{"id":"creature-91166","entityId":"entry-18315","position":[313.936,-0.706,-110.3972],"yaw":-4.60767,"spawnMask":3},{"id":"creature-91167","entityId":"entry-18311","position":[317.51,-0.706,-24.3766],"yaw":-5.18363,"spawnMask":3},{"id":"creature-91168","entityId":"entry-18311","position":[309.971,-0.706,-25.5509],"yaw":-4.13643,"spawnMask":3},{"id":"creature-91169","entityId":"entry-18317","position":[311.401,-0.7061,-19.1098],"yaw":-4.45059,"spawnMask":3},{"id":"creature-91170","entityId":"entry-18312","position":[316.552,-0.7062,-19.675],"yaw":-4.85202,"spawnMask":3},{"id":"creature-91173","entityId":"entry-18331","position":[305.978,-0.7894,-153.7362],"yaw":-0.555512,"spawnMask":3},{"id":"creature-91174","entityId":"entry-18312","position":[293.989,-0.8019,-52.2425],"yaw":-2.16339,"spawnMask":3},{"id":"creature-91175","entityId":"entry-18312","position":[291.13,-0.806,-52.4038],"yaw":-0.499545,"spawnMask":3},{"id":"creature-91176","entityId":"entry-18314","position":[296.865,-0.8037,-46.5082],"yaw":-1.59343,"spawnMask":3},{"id":"creature-91179","entityId":"entry-18312","position":[311.606,-0.7061,-93.6172],"yaw":-4.5204,"spawnMask":3},{"id":"creature-91180","entityId":"entry-18312","position":[317.553,-0.7061,-93.9952],"yaw":-4.99164,"spawnMask":3},{"id":"creature-91182","entityId":"entry-18312","position":[329.66,-0.706,-44.066],"yaw":-5.81195,"spawnMask":3},{"id":"creature-91183","entityId":"entry-18312","position":[337.157,-0.706,-50.5343],"yaw":-6.19592,"spawnMask":3},{"id":"creature-91184","entityId":"entry-18314","position":[330.172,-0.706,-55.1688],"yaw":-5.96903,"spawnMask":3},{"id":"creature-91186","entityId":"entry-18331","position":[161.046,-0.8116,-159.6042],"yaw":-0.867449,"spawnMask":3},{"id":"creature-91187","entityId":"entry-18331","position":[154.796,-0.5568,-164.6322],"yaw":-2.51996,"spawnMask":3},{"id":"creature-91188","entityId":"entry-19306","position":[176.077,-0.7843,-157.8362],"yaw":-2.07142,"spawnMask":3},{"id":"creature-91189","entityId":"entry-19306","position":[178.885,-0.7843,-155.8712],"yaw":-2.57018,"spawnMask":3},{"id":"creature-91190","entityId":"entry-19306","position":[167.864,-0.9171,-157.6232],"yaw":-5.70626,"spawnMask":3},{"id":"creature-91197","entityId":"entry-18315","position":[199.063,17.3275,31.0833],"yaw":-3.63029,"spawnMask":3},{"id":"creature-91198","entityId":"entry-18315","position":[200.204,17.0389,20.1626],"yaw":-2.60054,"spawnMask":3},{"id":"creature-91199","entityId":"entry-18312","position":[192.128,17.2044,30.4173],"yaw":-3.63029,"spawnMask":3},{"id":"creature-91200","entityId":"entry-18312","position":[194.201,17.0375,23.3399],"yaw":-2.61799,"spawnMask":3},{"id":"creature-91203","entityId":"entry-18312","position":[247.627,16.9604,26.0597],"yaw":-5.97163,"spawnMask":3},{"id":"creature-91204","entityId":"entry-18312","position":[224.387,16.8548,9.8664],"yaw":-5.96874,"spawnMask":3},{"id":"creature-91205","entityId":"entry-18312","position":[223.098,16.8544,4.5019],"yaw":-3.09364,"spawnMask":3},{"id":"creature-91206","entityId":"entry-18315","position":[218.094,16.854,13.2274],"yaw":-5.82539,"spawnMask":3},{"id":"creature-91208","entityId":"entry-18313","position":[90.191,-0.5681,-210.5362],"yaw":-6.24828,"spawnMask":3},{"id":"creature-91209","entityId":"entry-18313","position":[90.399,-0.5275,-198.6442],"yaw":-6.0912,"spawnMask":3},{"id":"creature-91210","entityId":"entry-18317","position":[97.458,-0.7024,-204.8662],"yaw":0,"spawnMask":3},{"id":"creature-91212","entityId":"entry-18309","position":[45.196,1.4194,-214.5922],"yaw":-1.16937,"spawnMask":3},{"id":"creature-91213","entityId":"entry-18317","position":[44.34,0.7168,-222.0772],"yaw":-1.0821,"spawnMask":3},{"id":"creature-91214","entityId":"entry-18313","position":[36.4364,0.3057,-221.5512],"yaw":-1.25664,"spawnMask":3},{"id":"creature-91216","entityId":"entry-18317","position":[81.417,-0.4146,-191.6062],"yaw":-0.777947,"spawnMask":3},{"id":"creature-91218","entityId":"entry-19306","position":[-44.2991,2.2318,-210.1672],"yaw":-3.07177,"spawnMask":3},{"id":"creature-91219","entityId":"entry-19306","position":[-50.2449,2.072,-209.1862],"yaw":-3.63575,"spawnMask":3},{"id":"creature-91220","entityId":"entry-19306","position":[-45.2399,0.7312,-201.4622],"yaw":-2.60924,"spawnMask":3},{"id":"creature-91221","entityId":"entry-19306","position":[-50.7414,1.2331,-198.2812],"yaw":-3.07125,"spawnMask":3},{"id":"creature-91222","entityId":"entry-19306","position":[-55.6432,1.9895,-203.1982],"yaw":-4.50011,"spawnMask":3},{"id":"creature-91223","entityId":"entry-19306","position":[-6.8973,-0.4745,-225.7682],"yaw":-2.82645,"spawnMask":3},{"id":"creature-91224","entityId":"entry-19306","position":[1.3396,-0.1105,-219.0792],"yaw":-0.925377,"spawnMask":3},{"id":"creature-91225","entityId":"entry-19306","position":[0.1209,-0.3097,-228.5032],"yaw":-4.95654,"spawnMask":3},{"id":"creature-91226","entityId":"entry-18311","position":[10.102,-1.7633,-174.3292],"yaw":-1.5708,"spawnMask":3},{"id":"creature-91227","entityId":"entry-18309","position":[2.4761,-1.2996,-170.7142],"yaw":-1.76278,"spawnMask":3},{"id":"creature-91228","entityId":"entry-18313","position":[12.1986,-1.5615,-170.3482],"yaw":-1.53589,"spawnMask":3},{"id":"creature-91229","entityId":"entry-18317","position":[5.7267,-1.5901,-175.1252],"yaw":-1.69297,"spawnMask":3},{"id":"creature-91230","entityId":"entry-19307","position":[313.169,8.0875,24.1843],"yaw":-5.22501,"spawnMask":3},{"id":"creature-91231","entityId":"entry-19306","position":[317.255,-0.7886,-198.5522],"yaw":-1.53744,"spawnMask":3},{"id":"creature-91232","entityId":"entry-19306","position":[321.224,-0.7893,-193.0152],"yaw":-1.91085,"spawnMask":3},{"id":"creature-91233","entityId":"entry-19306","position":[320.769,-0.7888,-197.3082],"yaw":-3.11079,"spawnMask":3},{"id":"creature-91238","entityId":"entry-18311","position":[3.6064,-0.7026,-152.9982],"yaw":-1.69297,"spawnMask":3},{"id":"creature-91239","entityId":"entry-18313","position":[13.1905,-0.7031,-153.0842],"yaw":-1.27409,"spawnMask":3},{"id":"creature-91241","entityId":"entry-18317","position":[-27.4526,0.1032,-200.6232],"yaw":-6.13744,"spawnMask":3},{"id":"creature-91242","entityId":"entry-18317","position":[-19.975,0.0209,-181.4742],"yaw":-5.71687,"spawnMask":3},{"id":"creature-91243","entityId":"entry-18317","position":[-29.9825,-0.0685,-180.1532],"yaw":-5.72736,"spawnMask":3},{"id":"creature-91244","entityId":"entry-18313","position":[-26.0493,-0.1133,-179.7112],"yaw":-5.79297,"spawnMask":3}],"roamingPacks":[{"id":"patrol-83301","name":"Ethereal Scavenger Patrol","speed":1.15,"pathId":833010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[8.974,-0.7822,-13.6329],[8.6989,-0.7832,-5.2244],[6.6539,-0.7779,3.1386],[1.1568,-0.7804,9.5218],[-5.1125,-0.7795,15.507],[-12.3418,-0.7849,18.9188],[-22.495,-0.7849,19.5604],[-12.3418,-0.7849,18.9188],[-5.1125,-0.7795,15.507],[1.1568,-0.7804,9.5218],[6.6539,-0.7779,3.1386],[8.6989,-0.7832,-5.2244]],"members":[{"id":"member","entityId":"entry-18309","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83320","name":"Ethereal Crypt Raider Patrol","speed":1.15,"pathId":833200,"formationSource":"database-solo","spawnMask":3,"waypoints":[[33.1538,-0.5772,-85.5832],[22.317,-0.3241,-91.2992],[8.7246,-0.6028,-95.5942],[-5.1053,-0.1474,-91.3752],[-17.738,-2.2451,-85.2932],[-11.2131,-1.9279,-71.4],[-1.4179,-1.9459,-64.0377],[9.2356,-1.9436,-61.0075],[21.8792,-1.817,-66.1981],[28.3968,-1.7898,-73.5267]],"members":[{"id":"member","entityId":"entry-18311","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83329","name":"Ethereal Priest Patrol","speed":1.15,"pathId":833290,"formationSource":"database-solo","spawnMask":3,"waypoints":[[314.527,-0.8309,-171.3522],[314.375,-0.7885,-197.4862],[314.307,-0.7872,-217.8412],[314.375,-0.7885,-197.4862]],"members":[{"id":"member","entityId":"entry-18317","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83344","name":"Ethereal Darkcaster Patrol","speed":1.15,"pathId":833440,"formationSource":"database-solo","spawnMask":3,"waypoints":[[150.578,-0.7869,-227.1832],[146.822,-0.786,-208.5512],[149.275,1.111,-192.4632],[157.346,0.5481,-185.2912],[173.995,-0.7828,-178.2392],[157.346,0.5481,-185.2912],[149.275,1.111,-192.4632],[146.822,-0.786,-208.5512]],"members":[{"id":"member","entityId":"entry-18331","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83346","name":"Nexus Terror Patrol","speed":1.15,"pathId":833460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[148.676,-0.7865,-231.8572],[146.764,-0.7865,-218.1952],[145.54,1.7199,-188.7332],[158.183,0.5248,-182.2782],[175.222,-0.7837,-174.6562],[176.54,-0.7837,-151.6072],[163.69,-0.7844,-150.5642],[154.003,-0.715,-160.8892],[146.064,1.3511,-170.6072],[145.856,1.751,-185.7342],[146.283,-0.5396,-203.6192],[151.726,-0.7861,-225.2662]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91160","name":"Nexus Terror Patrol","speed":1.15,"pathId":911600,"formationSource":"database-solo","spawnMask":3,"waypoints":[[52.792,-0.7845,-193.5862],[40.0058,-0.4464,-206.1752],[23.0108,-0.1284,-204.3832],[11.2961,-0.1418,-191.4722],[-1.3039,-0.2177,-179.4072],[-20.3959,-0.3711,-176.0802],[-41.7824,-0.1547,-178.4522],[-41.8791,0.3971,-193.3752],[-35.2969,0.5615,-211.2922],[-27.8754,-0.0912,-222.0622],[-27.71,3.9497,-233.2222],[-16.6099,0.1228,-231.7302],[0.9269,-0.5989,-226.8692],[11.3065,0.031,-219.0752],[26.1317,0.4725,-215.3422],[36.6292,-0.8179,-203.8942],[52.992,-0.6599,-194.6092]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91172","name":"Nexus Stalker Patrol","speed":1.15,"pathId":911720,"formationSource":"database-solo","spawnMask":3,"waypoints":[[324.919,-0.7894,-153.8962],[315.729,-0.7845,-158.8942],[306.649,-0.7894,-156.9482],[301.116,-0.8301,-147.6692],[304.353,-0.7894,-140.4612],[311.444,-0.7894,-134.5662],[319.254,-0.7894,-137.2922],[325.84,-0.7805,-144.9952]],"members":[{"id":"member","entityId":"entry-18314","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91185","name":"Nexus Terror Patrol","speed":1.15,"pathId":911850,"formationSource":"database-solo","spawnMask":3,"waypoints":[[210.386,-0.7079,-163.6282],[223.563,-0.4418,-167.5062],[235.732,-0.6427,-173.0972],[245.916,-0.5867,-187.1252],[250.683,-0.7838,-205.9572],[244.546,-0.8542,-232.0932],[242.839,-0.7831,-220.6782],[250.235,-0.7654,-195.7832],[240.819,-0.8955,-181.9192],[234.671,-0.6462,-171.6662],[216.007,-0.4926,-168.1692]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91194","name":"Nexus Terror Patrol","speed":1.15,"pathId":911940,"formationSource":"database-solo","spawnMask":3,"waypoints":[[187.674,16.9637,27.2831],[172.289,16.978,27.5008],[155.36,17.0296,27.7417],[172.289,16.978,27.5008]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91201","name":"Nexus Terror Patrol","speed":1.15,"pathId":912010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[224.217,16.8547,14.0558],[227.556,16.9572,20.7501],[227.766,18.5797,33.5435],[216.924,22.3104,43.7917],[227.706,18.6205,33.6008],[227.556,16.9572,20.7501]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91202","name":"Ethereal Spellbinder Patrol","speed":1.15,"pathId":912020,"formationSource":"database-solo","spawnMask":3,"waypoints":[[201.935,16.9552,25.918],[217.78,16.9564,23.1807],[240.962,16.9589,23.5962],[261.086,16.9624,26.0303],[240.962,16.9589,23.5962],[217.78,16.9564,23.1807]],"members":[{"id":"member","entityId":"entry-18312","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91215","name":"Ethereal Priest Patrol","speed":1.15,"pathId":912150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[52.152,0.0143,-201.2152],[59.217,-0.5051,-191.9192],[77.336,-0.2791,-196.0092],[84.346,-0.3635,-202.9152],[77.336,-0.2791,-196.0092],[59.217,-0.5051,-191.9192]],"members":[{"id":"member","entityId":"entry-18317","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91234","name":"Nexus Terror Patrol","speed":1.15,"pathId":912340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[321.693,-0.7906,-40.7824],[304.806,-0.7904,-42.3976],[302.803,-0.7752,-59.6985],[321.149,-0.7893,-64.5804]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91235","name":"Nexus Terror Patrol","speed":1.15,"pathId":912350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[320.061,-0.7893,-136.8832],[327.001,-0.7882,-145.6702],[317.842,-0.7984,-161.7482],[301.729,-0.7898,-152.5782],[306.599,-0.7898,-136.8362]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91240","name":"Ethereal Priest Patrol","speed":1.15,"pathId":912400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-26.2616,-0.0058,-205.5022],[-9.0716,0.105,-202.9802],[14.8463,-0.0077,-200.6672],[-9.0716,0.105,-202.9802]],"members":[{"id":"member","entityId":"entry-18317","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-91163","name":"Pandemonius","position":[8.9673,-1.0284,-100.8762]},{"id":"creature-91161","name":"Tavarok","position":[262.693,-0.6082,-204.1252]},{"id":"creature-91162","name":"Nexus-Prince Shaffar","position":[125.342,16.9868,27.3913]}],"objectiveOrder":[{"id":"creature-91163","name":"Pandemonius","position":[8.9673,-1.0284,-100.8762]},{"id":"creature-91161","name":"Tavarok","position":[262.693,-0.6082,-204.1252]},{"id":"creature-91162","name":"Nexus-Prince Shaffar","position":[125.342,16.9868,27.3913]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43146,"id":183877,"map":557,"orientation":-2.42601,"phaseMask":1,"position_x":-355.297,"position_y":-64.4767,"position_z":0.437066,"rotation0":0,"rotation1":0,"rotation2":-0.936673,"rotation3":0.350206,"spawnMask":3,"spawntimesecs":3,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104466,"id":181278,"map":557,"orientation":5.46288,"phaseMask":1,"position_x":-105.552,"position_y":-58.9405,"position_z":-0.821702,"rotation0":0,"rotation1":0,"rotation2":-0.398748,"rotation3":0.91706,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104467,"id":181278,"map":557,"orientation":1.62316,"phaseMask":1,"position_x":-95.3467,"position_y":-108.357,"position_z":-0.842384,"rotation0":0,"rotation1":0,"rotation2":0.725374,"rotation3":0.688355,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104468,"id":181278,"map":557,"orientation":0,"phaseMask":1,"position_x":-110.722,"position_y":-193.438,"position_z":-1.06178,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104469,"id":181278,"map":557,"orientation":4.95674,"phaseMask":1,"position_x":-107.263,"position_y":-249.694,"position_z":-0.657617,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104470,"id":181278,"map":557,"orientation":5.20108,"phaseMask":1,"position_x":-228.783,"position_y":-221.596,"position_z":-1.10903,"rotation0":0,"rotation1":0,"rotation2":-0.515038,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104471,"id":181278,"map":557,"orientation":3.29869,"phaseMask":1,"position_x":-254.457,"position_y":-177.219,"position_z":-0.953286,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784664,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104472,"id":181278,"map":557,"orientation":0.645772,"phaseMask":1,"position_x":-256.032,"position_y":-152.779,"position_z":-0.953339,"rotation0":0,"rotation1":0,"rotation2":0.317305,"rotation3":0.948324,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104473,"id":181278,"map":557,"orientation":4.5204,"phaseMask":1,"position_x":-284.843,"position_y":-166.549,"position_z":-2.71548,"rotation0":0,"rotation1":0,"rotation2":-0.771625,"rotation3":0.636078,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3792,"guid":104474,"id":181278,"map":557,"orientation":-2.07694,"phaseMask":1,"position_x":-291.378,"position_y":-206.457,"position_z":-2.54264,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104475,"id":181278,"map":557,"orientation":4.11898,"phaseMask":1,"position_x":-378.636,"position_y":-241.698,"position_z":-0.956422,"rotation0":0,"rotation1":0,"rotation2":-0.882947,"rotation3":0.469473,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104476,"id":181278,"map":557,"orientation":4.76475,"phaseMask":1,"position_x":-379.233,"position_y":-219.094,"position_z":-0.957844,"rotation0":0,"rotation1":0,"rotation2":-0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104477,"id":181278,"map":557,"orientation":1.11701,"phaseMask":1,"position_x":-353.598,"position_y":-179.432,"position_z":-0.966642,"rotation0":0,"rotation1":0,"rotation2":0.529919,"rotation3":0.848048,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104478,"id":181278,"map":557,"orientation":3.50812,"phaseMask":1,"position_x":-400.56,"position_y":-172.333,"position_z":-0.98123,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104479,"id":181278,"map":557,"orientation":1.58825,"phaseMask":1,"position_x":-367.253,"position_y":-132.678,"position_z":-0.966903,"rotation0":0,"rotation1":0,"rotation2":0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104480,"id":181278,"map":557,"orientation":6.03884,"phaseMask":1,"position_x":-393.554,"position_y":-60.8607,"position_z":-0.982428,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104481,"id":181278,"map":557,"orientation":0.925024,"phaseMask":1,"position_x":-350.483,"position_y":-60.3347,"position_z":-0.974565,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104482,"id":181278,"map":557,"orientation":4.08407,"phaseMask":1,"position_x":-379.956,"position_y":-41.4283,"position_z":-0.967236,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3792,"guid":104483,"id":181278,"map":557,"orientation":1.78024,"phaseMask":1,"position_x":-283.552,"position_y":-10.902,"position_z":16.685,"rotation0":0,"rotation1":0,"rotation2":0.777147,"rotation3":0.629319,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104484,"id":181278,"map":557,"orientation":4.4855,"phaseMask":1,"position_x":-255.582,"position_y":3.04984,"position_z":16.7849,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104485,"id":181278,"map":557,"orientation":5.91667,"phaseMask":1,"position_x":-217.485,"position_y":-6.14751,"position_z":16.7275,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104486,"id":181278,"map":557,"orientation":4.15388,"phaseMask":1,"position_x":-220.683,"position_y":29.1267,"position_z":16.7317,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104487,"id":181556,"map":557,"orientation":2.84488,"phaseMask":1,"position_x":-369.378,"position_y":-242.433,"position_z":1.87701,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104488,"id":181557,"map":557,"orientation":2.84488,"phaseMask":1,"position_x":-369.378,"position_y":-242.433,"position_z":1.87701,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104489,"id":181569,"map":557,"orientation":2.84488,"phaseMask":1,"position_x":-369.378,"position_y":-242.433,"position_z":1.87701,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104490,"id":181556,"map":557,"orientation":5.3058,"phaseMask":1,"position_x":-354.641,"position_y":-150.547,"position_z":3.43339,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104491,"id":181557,"map":557,"orientation":5.3058,"phaseMask":1,"position_x":-354.641,"position_y":-150.547,"position_z":3.43339,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104492,"id":181569,"map":557,"orientation":5.3058,"phaseMask":1,"position_x":-354.641,"position_y":-150.547,"position_z":3.43339,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3792,"guid":104493,"id":181556,"map":557,"orientation":0.122173,"phaseMask":1,"position_x":-417.15,"position_y":-166.794,"position_z":0.833513,"rotation0":0,"rotation1":0,"rotation2":0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3792,"guid":104494,"id":181557,"map":557,"orientation":0.122173,"phaseMask":1,"position_x":-417.15,"position_y":-166.794,"position_z":0.833513,"rotation0":0,"rotation1":0,"rotation2":0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3792,"guid":104495,"id":181569,"map":557,"orientation":0.122173,"phaseMask":1,"position_x":-417.15,"position_y":-166.794,"position_z":0.833513,"rotation0":0,"rotation1":0,"rotation2":0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104496,"id":181556,"map":557,"orientation":3.87463,"phaseMask":1,"position_x":-358.643,"position_y":-85.6369,"position_z":2.8462,"rotation0":0,"rotation1":0,"rotation2":-0.93358,"rotation3":0.358368,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104497,"id":181557,"map":557,"orientation":3.87463,"phaseMask":1,"position_x":-358.643,"position_y":-85.6369,"position_z":2.8462,"rotation0":0,"rotation1":0,"rotation2":-0.93358,"rotation3":0.358368,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104498,"id":181569,"map":557,"orientation":3.87463,"phaseMask":1,"position_x":-358.643,"position_y":-85.6369,"position_z":2.8462,"rotation0":0,"rotation1":0,"rotation2":-0.93358,"rotation3":0.358368,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104499,"id":181556,"map":557,"orientation":4.66003,"phaseMask":1,"position_x":-390.365,"position_y":-85.0705,"position_z":2.39504,"rotation0":0,"rotation1":0,"rotation2":-0.725374,"rotation3":0.688355,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104500,"id":181557,"map":557,"orientation":4.66003,"phaseMask":1,"position_x":-390.365,"position_y":-85.0705,"position_z":2.39504,"rotation0":0,"rotation1":0,"rotation2":-0.725374,"rotation3":0.688355,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104501,"id":181569,"map":557,"orientation":4.66003,"phaseMask":1,"position_x":-390.365,"position_y":-85.0705,"position_z":2.39504,"rotation0":0,"rotation1":0,"rotation2":-0.725374,"rotation3":0.688355,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104502,"id":181556,"map":557,"orientation":3.31614,"phaseMask":1,"position_x":-329.146,"position_y":-69.739,"position_z":0.956257,"rotation0":0,"rotation1":0,"rotation2":-0.996194,"rotation3":0.087165,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104503,"id":181557,"map":557,"orientation":3.31614,"phaseMask":1,"position_x":-329.146,"position_y":-69.739,"position_z":0.956257,"rotation0":0,"rotation1":0,"rotation2":-0.996194,"rotation3":0.087165,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104504,"id":181569,"map":557,"orientation":3.31614,"phaseMask":1,"position_x":-329.146,"position_y":-69.739,"position_z":0.956257,"rotation0":0,"rotation1":0,"rotation2":-0.996194,"rotation3":0.087165,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104505,"id":181556,"map":557,"orientation":5.49779,"phaseMask":1,"position_x":-306.768,"position_y":18.0337,"position_z":15.934,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104506,"id":181557,"map":557,"orientation":5.49779,"phaseMask":1,"position_x":-306.768,"position_y":18.0337,"position_z":15.934,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104507,"id":181569,"map":557,"orientation":5.49779,"phaseMask":1,"position_x":-306.768,"position_y":18.0337,"position_z":15.934,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104508,"id":181556,"map":557,"orientation":5.96903,"phaseMask":1,"position_x":-245.643,"position_y":-3.16959,"position_z":15.0684,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104509,"id":181557,"map":557,"orientation":5.96903,"phaseMask":1,"position_x":-245.643,"position_y":-3.16959,"position_z":15.0684,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104510,"id":181569,"map":557,"orientation":5.96903,"phaseMask":1,"position_x":-245.643,"position_y":-3.16959,"position_z":15.0684,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104511,"id":181556,"map":557,"orientation":5.84685,"phaseMask":1,"position_x":-269.036,"position_y":42.9415,"position_z":30.2597,"rotation0":0,"rotation1":0,"rotation2":-0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104512,"id":181557,"map":557,"orientation":5.84685,"phaseMask":1,"position_x":-269.036,"position_y":42.9415,"position_z":30.2597,"rotation0":0,"rotation1":0,"rotation2":-0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104513,"id":181569,"map":557,"orientation":5.84685,"phaseMask":1,"position_x":-269.036,"position_y":42.9415,"position_z":30.2597,"rotation0":0,"rotation1":0,"rotation2":-0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150032,"id":184194,"map":557,"orientation":0,"phaseMask":1,"position_x":6.657,"position_y":1.041,"position_z":-2.005,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150033,"id":184193,"map":557,"orientation":0,"phaseMask":1,"position_x":6.657,"position_y":1.041,"position_z":-2.005,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":2134514,"id":185522,"map":557,"orientation":1.43332,"phaseMask":1,"position_x":-235.563,"position_y":-13.4403,"position_z":17.066,"rotation0":0,"rotation1":0,"rotation2":0.65687,"rotation3":0.754004,"spawnMask":2,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":2134515,"id":185460,"map":557,"orientation":1.43332,"phaseMask":1,"position_x":-235.563,"position_y":-13.4403,"position_z":17.066,"rotation0":0,"rotation1":0,"rotation2":0.65687,"rotation3":0.754004,"spawnMask":2,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":2134516,"id":185460,"map":557,"orientation":0.284522,"phaseMask":1,"position_x":8.73419,"position_y":-223.864,"position_z":-0.954936,"rotation0":0,"rotation1":0,"rotation2":0.141782,"rotation3":0.989898,"spawnMask":2,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":2134517,"id":185519,"map":557,"orientation":0.284522,"phaseMask":1,"position_x":8.73419,"position_y":-223.864,"position_z":-0.954936,"rotation0":0,"rotation1":0,"rotation2":0.141782,"rotation3":0.989898,"spawnMask":2,"spawntimesecs":300,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/AuchindounEthereal":"c4b25cc99205efa59edd72c03c9d5db3c6c8aa71da804120f23089203ffbd2ee","patch/World/maps/AuchindounEthereal":"448564e79dde874a2d40adde24b41b0efc8d0071a66b35cf88aa6c711ff85d86"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/mana-tombs/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["14/14 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"auchenai-crypts","title":"Auchindoun: Auchenai Crypts","mapId":558,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Auchindoun: Auchenai Crypts","theme":"Instanced dungeon","summary":"Fight through Auchindoun: Auchenai Crypts, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Auchindoun: Auchenai Crypts...","unchartedAreaName":"Uncharted Auchindoun: Auchenai Crypts","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":524.7134},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/558-auchindoundraenei/visual.glb","checksum":"7349adf03fda39bad8a7dc5fd392ab544488d7bc2b31868762765d42f27f9821","size":2995532,"triangleCount":63745}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/558-auchindoundraenei/collision.glb","checksum":"e88f28de460fd3373ffec258840ebe62deedaf3df84b7d66cb98fa83b4fe0baa","size":611904,"triangleCount":56229}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/558-auchindoundraenei/navigation.glb","checksum":"783770eef6c686c74ddb736af3ae9450796f824f2ed66b3d7e95f83c1dc70978","size":161076,"triangleCount":11974}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-602.0914,-22.7856,-476.2105],"max":[126.6772,51.9687,73.4989]},"entrance":{"name":"Auchindoun: Auchenai Crypts Entrance","footPosition":[-260.5229,0.1597,-12.1125],"forward":[0.9980827116769375,0,0.06189426994166059],"yaw":1.50886247010488},"areas":[{"id":"entrance","name":"Auchindoun: Auchenai Crypts Entrance","center":[-260.5229,0.1597,-12.1125],"radius":35},{"id":"area-shirrak-the-dead-watcher","name":"Shirrak the Dead Watcher's Encounter","center":[-231.5071,26.649,-175.4055],"radius":42},{"id":"area-exarch-maladaar","name":"Exarch Maladaar's Encounter","center":[-350.5515,26.8694,-400.0935],"radius":42}],"entities":{"entry-18506":{"id":"entry-18506","kind":"mob","name":"Raging Soul","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-25873-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-18493":{"id":"entry-18493","kind":"mob","name":"Auchenai Soulpriest","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17924-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18495":{"id":"entry-18495","kind":"mob","name":"Auchenai Vindicator","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17942-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18371":{"id":"entry-18371","kind":"boss","name":"Shirrak the Dead Watcher","title":"Dungeon Boss","hasLoot":true,"combat":{"level":66,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36383","name":"Carnivorous Bite","spellId":36383,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6379,"damageMultiplier":1.35},{"id":"spell-32265","name":"Attract Magic","spellId":32265,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6379,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-18916-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.05,"labelHeight":17.0335,"markerRadius":4.1136}}},"entry-18497":{"id":"entry-18497","kind":"mob","name":"Auchenai Monk","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17910-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18524":{"id":"entry-18524","kind":"mob","name":"Angered Skeleton","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32885","name":"Infuriate","spellId":32885,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6431,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17970-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0038,"labelHeight":4.643,"markerRadius":0.7206}}},"entry-18521":{"id":"entry-18521","kind":"mob","name":"Raging Skeleton","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17991-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0038,"labelHeight":4.643,"markerRadius":0.7206}}},"entry-18702":{"id":"entry-18702","kind":"mob","name":"Auchenai Necromancer","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-18077-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18700":{"id":"entry-18700","kind":"mob","name":"Reanimated Bones","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13444","name":"Sunder Armor","spellId":13444,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4413,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-18138-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":2.824,"markerRadius":0.65}}},"entry-18373":{"id":"entry-18373","kind":"boss","name":"Exarch Maladaar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":67,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32346","name":"Stolen Soul","spellId":32346,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4858,"damageMultiplier":1.35},{"id":"spell-32421","name":"Soul Scream","spellId":32421,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4858,"damageMultiplier":1.35},{"id":"spell-32422","name":"Ribbon of Souls","spellId":32422,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4858,"damageMultiplier":1.35},{"id":"spell-32424","name":"Summon Avatar","spellId":32424,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4858,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17715-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.0631,"markerRadius":1.2032}}},"entry-18558":{"id":"entry-18558","kind":"mob","name":"Phasing Sorcerer","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12466","name":"Fireball","spellId":12466,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6482,"damageMultiplier":1.12},{"id":"spell-15043","name":"Frostbolt","spellId":15043,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6482,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17932-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18559":{"id":"entry-18559","kind":"mob","name":"Phasing Stalker","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15547","name":"Shoot","spellId":15547,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4946,"damageMultiplier":1.12},{"id":"spell-31975","name":"Serpent Sting","spellId":31975,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4946,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17938-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18557":{"id":"entry-18557","kind":"mob","name":"Phasing Cleric","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-33324","name":"Major Heal","spellId":33324,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6856,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-25028","name":"Fire Blast","spellId":25028,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6856,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17928-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18556":{"id":"entry-18556","kind":"mob","name":"Phasing Soldier","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32828","name":"Protection Aura","spellId":32828,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5725,"damageMultiplier":1.12},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":5725,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17920-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}}},"staticSpawns":[{"id":"creature-12707","entityId":"entry-18506","position":[-330.8679,15.391,-183.2255],"yaw":-6.0161,"spawnMask":3},{"id":"creature-12708","entityId":"entry-18506","position":[-342.6495,15.6103,-177.4255],"yaw":-3.32672,"spawnMask":3},{"id":"creature-12709","entityId":"entry-18506","position":[-349.5557,15.6578,-172.7195],"yaw":-0.466603,"spawnMask":3},{"id":"creature-12710","entityId":"entry-18506","position":[-351.8465,15.6725,-170.0025],"yaw":-3.0258,"spawnMask":3},{"id":"creature-83352","entityId":"entry-18493","position":[-372.7712,0.2137,-3.7433],"yaw":-1.49625,"spawnMask":3},{"id":"creature-83353","entityId":"entry-18493","position":[-369.5259,0.2143,-4.0377],"yaw":-1.61406,"spawnMask":3},{"id":"creature-83356","entityId":"entry-18493","position":[-374.8684,4.5415,-51.5173],"yaw":-4.61977,"spawnMask":3},{"id":"creature-83357","entityId":"entry-18493","position":[-369.885,4.5415,-51.5925],"yaw":-4.63549,"spawnMask":3},{"id":"creature-83358","entityId":"entry-18493","position":[-366.0834,4.5419,28.4989],"yaw":-1.48604,"spawnMask":3},{"id":"creature-83360","entityId":"entry-18493","position":[-367.6656,0.2216,-20.7499],"yaw":-4.71638,"spawnMask":3},{"id":"creature-83361","entityId":"entry-18493","position":[-363.8247,0.2186,-20.8447],"yaw":-4.65747,"spawnMask":3},{"id":"creature-83363","entityId":"entry-18493","position":[-360.4961,4.542,28.2792],"yaw":-1.62331,"spawnMask":3},{"id":"creature-83368","entityId":"entry-18493","position":[-422.7654,4.542,27.3554],"yaw":-1.50566,"spawnMask":3},{"id":"creature-83369","entityId":"entry-18495","position":[-401.1894,0.2835,-16.4971],"yaw":-0.661361,"spawnMask":3},{"id":"creature-83371","entityId":"entry-18493","position":[-429.9804,4.542,26.9984],"yaw":-1.52137,"spawnMask":3},{"id":"creature-83373","entityId":"entry-18495","position":[-531.1564,0.2232,-23.2217],"yaw":-3.60657,"spawnMask":3},{"id":"creature-83375","entityId":"entry-18493","position":[-413.9834,6.6036,-31.6169],"yaw":-5.95491,"spawnMask":3},{"id":"creature-83376","entityId":"entry-18493","position":[-406.2064,0.1512,-9.2324],"yaw":-4.13282,"spawnMask":3},{"id":"creature-83377","entityId":"entry-18493","position":[-417.7044,10.1965,-39.6498],"yaw":-0.999043,"spawnMask":3},{"id":"creature-83380","entityId":"entry-18493","position":[-512.7884,0.2167,8.3199],"yaw":-1.48207,"spawnMask":3},{"id":"creature-83381","entityId":"entry-18493","position":[-525.8444,0.2203,-27.8795],"yaw":-0.700594,"spawnMask":3},{"id":"creature-83382","entityId":"entry-18493","position":[-473.1954,0.1802,-15.2665],"yaw":-1.93759,"spawnMask":3},{"id":"creature-83384","entityId":"entry-18493","position":[-509.8224,26.8716,-166.4635],"yaw":-5.4012,"spawnMask":3},{"id":"creature-83387","entityId":"entry-18493","position":[-506.7214,26.8716,-175.4755],"yaw":-6.26512,"spawnMask":3},{"id":"creature-83388","entityId":"entry-18371","position":[-231.5071,26.649,-175.4055],"yaw":-0.0185413,"spawnMask":3},{"id":"creature-83389","entityId":"entry-18497","position":[-470.5904,0.1587,-7.3589],"yaw":-5.00851,"spawnMask":3},{"id":"creature-83393","entityId":"entry-18524","position":[-146.9924,26.6844,-258.3605],"yaw":-5.15143,"spawnMask":3},{"id":"creature-83394","entityId":"entry-18497","position":[-155.3964,26.8694,-173.2165],"yaw":-0.0691125,"spawnMask":3},{"id":"creature-83395","entityId":"entry-18497","position":[-303.202,13.7388,-178.9485],"yaw":-3.19814,"spawnMask":3},{"id":"creature-83396","entityId":"entry-18521","position":[-124.0644,26.4186,-305.1545],"yaw":-0.483808,"spawnMask":3},{"id":"creature-83397","entityId":"entry-18521","position":[-134.0154,25.8044,-300.7815],"yaw":-3.51466,"spawnMask":3},{"id":"creature-83398","entityId":"entry-18524","position":[-125.6434,26.7831,-293.2745],"yaw":-3.51702,"spawnMask":3},{"id":"creature-83399","entityId":"entry-18524","position":[-110.1444,31.9687,-288.8995],"yaw":-6.18108,"spawnMask":3},{"id":"creature-83400","entityId":"entry-18524","position":[-142.4734,27.6237,-307.4665],"yaw":-0.650304,"spawnMask":3},{"id":"creature-83401","entityId":"entry-18521","position":[-160.6444,26.7425,-267.5755],"yaw":-1.07756,"spawnMask":3},{"id":"creature-83402","entityId":"entry-18521","position":[-127.5004,26.0401,-279.3415],"yaw":-3.96312,"spawnMask":3},{"id":"creature-83403","entityId":"entry-18521","position":[-145.6784,27.6735,-275.4225],"yaw":-0.401329,"spawnMask":3},{"id":"creature-83407","entityId":"entry-18497","position":[-300.2911,13.4662,-172.4385],"yaw":-3.20992,"spawnMask":3},{"id":"creature-83408","entityId":"entry-18497","position":[-509.9004,26.8716,-183.7575],"yaw":-0.649528,"spawnMask":3},{"id":"creature-83409","entityId":"entry-18497","position":[-158.6374,26.8694,-179.0195],"yaw":-0.0251305,"spawnMask":3},{"id":"creature-83410","entityId":"entry-18521","position":[-141.1864,26.9818,-263.6885],"yaw":-1.70588,"spawnMask":3},{"id":"creature-83411","entityId":"entry-18521","position":[-142.0624,26.8713,-328.5695],"yaw":-3.27667,"spawnMask":3},{"id":"creature-83412","entityId":"entry-18521","position":[-151.4264,29.0617,-327.2965],"yaw":-2.84627,"spawnMask":3},{"id":"creature-83413","entityId":"entry-18524","position":[-156.1694,27.5694,-306.2645],"yaw":-4.85533,"spawnMask":3},{"id":"creature-83414","entityId":"entry-18524","position":[-152.4864,26.8402,-318.6955],"yaw":-1.47811,"spawnMask":3},{"id":"creature-83417","entityId":"entry-18700","position":[-220.0074,26.8672,-393.5495],"yaw":-1.59355,"spawnMask":3},{"id":"creature-83418","entityId":"entry-18700","position":[-230.5529,26.8658,-387.7795],"yaw":-4.23249,"spawnMask":3},{"id":"creature-83419","entityId":"entry-18700","position":[-230.7401,26.8656,-381.3275],"yaw":-4.85924,"spawnMask":3},{"id":"creature-83420","entityId":"entry-18700","position":[-249.8589,26.8834,-369.0495],"yaw":-1.29667,"spawnMask":3},{"id":"creature-83421","entityId":"entry-18700","position":[-244.6859,26.8684,-377.9595],"yaw":-0.688768,"spawnMask":3},{"id":"creature-83422","entityId":"entry-18700","position":[-224.4854,26.8672,-385.9765],"yaw":-4.28982,"spawnMask":3},{"id":"creature-83424","entityId":"entry-18700","position":[-221.6848,26.8696,-378.8045],"yaw":-1.94305,"spawnMask":3},{"id":"creature-83425","entityId":"entry-18700","position":[-229.7159,26.8787,-374.4025],"yaw":-4.85924,"spawnMask":3},{"id":"creature-83428","entityId":"entry-18700","position":[-273.4978,26.8639,-375.8825],"yaw":-5.58023,"spawnMask":3},{"id":"creature-83429","entityId":"entry-18700","position":[-223.0881,30.0126,-414.8725],"yaw":-4.98489,"spawnMask":3},{"id":"creature-83430","entityId":"entry-18700","position":[-225.6118,28.3569,-423.6405],"yaw":-5.15375,"spawnMask":3},{"id":"creature-83431","entityId":"entry-18700","position":[-242.6692,26.8651,-409.3995],"yaw":-0.0997068,"spawnMask":3},{"id":"creature-83432","entityId":"entry-18700","position":[-259.5261,26.8752,-372.7725],"yaw":-3.4408,"spawnMask":3},{"id":"creature-83433","entityId":"entry-18700","position":[-246.5746,27.9265,-370.3645],"yaw":-2.95621,"spawnMask":3},{"id":"creature-83434","entityId":"entry-18700","position":[-229.469,31.2524,-416.9275],"yaw":-0.940083,"spawnMask":3},{"id":"creature-83435","entityId":"entry-18700","position":[-226.7714,29.4134,-422.0095],"yaw":-1.03826,"spawnMask":3},{"id":"creature-83436","entityId":"entry-18700","position":[-242.2113,26.8851,-427.0685],"yaw":-4.62753,"spawnMask":3},{"id":"creature-83437","entityId":"entry-18700","position":[-244.4577,26.8651,-413.9325],"yaw":-4.39584,"spawnMask":3},{"id":"creature-83438","entityId":"entry-18700","position":[-269.7558,26.8639,-373.3435],"yaw":-2.54545,"spawnMask":3},{"id":"creature-83439","entityId":"entry-18700","position":[-217.5756,26.8677,-411.8115],"yaw":-4.78854,"spawnMask":3},{"id":"creature-83440","entityId":"entry-18700","position":[-261.4297,21.9176,-412.9405],"yaw":-4.51757,"spawnMask":3},{"id":"creature-83441","entityId":"entry-18700","position":[-259.7775,19.6817,-404.1505],"yaw":-6.18811,"spawnMask":3},{"id":"creature-83442","entityId":"entry-18700","position":[-248.9691,24.4983,-403.9015],"yaw":-1.54876,"spawnMask":3},{"id":"creature-83443","entityId":"entry-18700","position":[-256.0613,26.8988,-430.6525],"yaw":-4.0801,"spawnMask":3},{"id":"creature-83444","entityId":"entry-18700","position":[-257.6425,26.2,-418.3755],"yaw":-5.4192,"spawnMask":3},{"id":"creature-83445","entityId":"entry-18700","position":[-254.4513,23.2226,-414.6385],"yaw":-3.38031,"spawnMask":3},{"id":"creature-83446","entityId":"entry-18700","position":[-306.7885,25.8359,-417.8585],"yaw":-6.06009,"spawnMask":3},{"id":"creature-83447","entityId":"entry-18700","position":[-296.5642,24.6177,-416.4635],"yaw":-0.65105,"spawnMask":3},{"id":"creature-83448","entityId":"entry-18700","position":[-269.2278,19.6897,-409.4285],"yaw":-6.04909,"spawnMask":3},{"id":"creature-83449","entityId":"entry-18700","position":[-289.526,26.8622,-421.8255],"yaw":-0.65105,"spawnMask":3},{"id":"creature-83450","entityId":"entry-18700","position":[-298.0091,24.1617,-415.8665],"yaw":-6.06009,"spawnMask":3},{"id":"creature-83451","entityId":"entry-18700","position":[-302.8743,26.8822,-431.2105],"yaw":-3.53425,"spawnMask":3},{"id":"creature-83452","entityId":"entry-18700","position":[-217.6707,26.8652,-420.2505],"yaw":-3.11956,"spawnMask":3},{"id":"creature-83453","entityId":"entry-18373","position":[-350.5515,26.8694,-400.0935],"yaw":-3.18791,"spawnMask":3},{"id":"creature-88277","entityId":"entry-18700","position":[-293.0082,26.8688,-429.0265],"yaw":-2.75199,"spawnMask":3},{"id":"creature-88278","entityId":"entry-18700","position":[-266.9746,23.2849,-385.0495],"yaw":-1.13328,"spawnMask":3},{"id":"creature-88279","entityId":"entry-18700","position":[-283.4083,26.8623,-379.4895],"yaw":-0.444485,"spawnMask":3},{"id":"creature-88280","entityId":"entry-18700","position":[-291.0431,26.8732,-375.6865],"yaw":-0.670679,"spawnMask":3},{"id":"creature-88281","entityId":"entry-18700","position":[-313.2063,27.863,-378.0775],"yaw":-5.56842,"spawnMask":3},{"id":"creature-88283","entityId":"entry-18700","position":[-318.4779,26.8649,-389.2345],"yaw":-4.16177,"spawnMask":3},{"id":"creature-88284","entityId":"entry-18700","position":[-304.5187,24.0183,-384.4295],"yaw":-2.7567,"spawnMask":3},{"id":"creature-88285","entityId":"entry-18700","position":[-301.0102,24.5049,-383.4635],"yaw":-3.13604,"spawnMask":3},{"id":"creature-88286","entityId":"entry-18700","position":[-288.4804,24.5476,-383.3945],"yaw":-3.13604,"spawnMask":3},{"id":"creature-88287","entityId":"entry-18700","position":[-303.0664,22.9005,-393.6795],"yaw":-4.95424,"spawnMask":3},{"id":"creature-88288","entityId":"entry-18700","position":[-301.6226,21.7996,-391.6555],"yaw":-5.70587,"spawnMask":3},{"id":"creature-88289","entityId":"entry-18700","position":[-313.2088,26.8889,-369.6495],"yaw":-3.00331,"spawnMask":3},{"id":"creature-88290","entityId":"entry-18700","position":[-301.1179,26.9016,-368.8945],"yaw":-3.27191,"spawnMask":3},{"id":"creature-88291","entityId":"entry-18700","position":[-275.1063,23.9191,-415.5715],"yaw":-2.49044,"spawnMask":3}],"roamingPacks":[{"id":"patrol-83372","name":"Auchenai Vindicator Patrol","speed":1.15,"pathId":833720,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-522.0024,26.8716,-67.069],[-521.6474,26.8717,-128.0725]],"members":[{"id":"member","entityId":"entry-18495","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83374","name":"Auchenai Vindicator Patrol","speed":1.15,"pathId":833740,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-138.9864,26.8707,-397.7835],[-139.1254,26.8707,-347.0215],[-139.3354,26.8696,-397.7965],[-186.9869,26.8698,-398.6215]],"members":[{"id":"member","entityId":"entry-18495","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83378","name":"Auchenai Vindicator Patrol","speed":1.15,"pathId":833780,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-443.7564,25.9718,-171.5815],[-426.9394,12.9369,-171.3965],[-390.2544,14.9955,-171.9135],[-349.4527,15.6568,-170.6285],[-328.9751,15.3509,-171.6065],[-390.2494,14.9953,-172.6905],[-425.5394,12.8439,-171.5905],[-443.9224,26.1169,-172.1195],[-446.1404,26.4019,-172.2405]],"members":[{"id":"member","entityId":"entry-18495","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83379","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833790,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-382.5304,0.2988,-18.42],[-350.9717,0.1747,-18.6709],[-350.1863,0.1947,-41.2207],[-382.402,0.6633,-41.6067]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83383","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833830,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-383.3374,0.4304,-6.8388],[-350.9228,0.1705,-7.5584],[-350.0986,0.157,16.8597],[-383.4954,0.1566,17.3539]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83385","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833850,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-443.9584,26.152,-179.3405],[-427.1064,13.0697,-179.4845],[-389.5794,15.0202,-177.5615],[-347.4678,15.6662,-178.2455],[-329.0984,15.3601,-178.2585],[-387.8654,15.0804,-178.5355],[-424.6804,12.8511,-178.7055],[-443.6494,25.8801,-179.0545],[-446.1674,26.4673,-179.1455]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83386","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833860,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-550.7474,0.2124,-15.5783],[-551.7834,13.6935,9.6057],[-551.3284,13.7195,17.4085],[-548.7854,13.7169,20.6125],[-540.3194,13.6752,21.3992],[-520.3694,26.9123,20.2415],[-500.3074,26.9021,21.5478],[-493.4874,26.9119,19.851],[-491.4924,26.9079,13.8743],[-497.7734,28.9061,-8.719],[-493.7354,27.3603,-21.4457],[-492.8484,26.8715,-37.4449],[-495.3024,26.8715,-42.4104],[-498.9764,26.8716,-44.7264],[-509.2094,27.3807,-44.5943],[-521.4774,26.879,-44.7816],[-509.2094,27.3807,-44.5943],[-498.9764,26.8716,-44.7264],[-495.3024,26.8715,-42.4104],[-492.8484,26.8715,-37.4449],[-493.7354,27.3603,-21.4457],[-497.7734,28.9061,-8.719],[-491.4924,26.9079,13.8743],[-493.4874,26.9119,19.851],[-500.3074,26.9021,21.5478],[-520.3694,26.9123,20.2415],[-540.3194,13.6752,21.3992],[-548.7854,13.7169,20.6125],[-551.3284,13.7195,17.4085],[-551.7834,13.6936,9.613]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83390","name":"Auchenai Monk Patrol","speed":1.15,"pathId":833900,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-421.9154,0.1525,-9.9037],[-431.2694,0.1534,-9.0036],[-441.0064,0.1544,-10.0508],[-447.1364,0.1542,-3.2391],[-447.1154,0.323,4.8242],[-446.8144,0.2492,14.7451],[-440.5414,0.1701,17.8798],[-436.9604,0.18,18.9359],[-435.9284,4.5114,26.3879],[-433.0184,0.18,18.5662],[-415.4184,0.1886,18.1909],[-412.6624,0.1834,17.2782],[-411.6514,0.1511,8.2658],[-413.1914,0.3757,-1.5069],[-412.9064,0.1516,-9.3704],[-412.0204,0.3456,-14.7409],[-408.0734,0.4005,-15.4962]],"members":[{"id":"member","entityId":"entry-18497","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83391","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833910,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-521.2754,26.8716,-97.2035],[-521.5374,26.8716,-63.6022],[-521.2754,26.8716,-97.2035],[-521.5364,26.8716,-131.0815],[-521.5374,26.8716,-63.6022]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83392","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833920,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-449.1244,26.5969,-175.9385],[-425.9964,12.8439,-175.5445],[-405.0724,13.637,-175.3145],[-387.4144,15.0547,-175.2645],[-363.6622,15.6491,-175.4805],[-346.9559,15.6671,-175.0265],[-330.6933,15.4161,-174.8525],[-346.9559,15.6671,-175.0265],[-363.6622,15.6491,-175.4805],[-387.4144,15.0547,-175.2645],[-405.0724,13.637,-175.3145],[-425.9964,12.8439,-175.5445]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83404","name":"Auchenai Monk Patrol","speed":1.15,"pathId":834040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-505.1624,0.2097,1.6528],[-520.5684,0.2124,1.3376]],"members":[{"id":"member","entityId":"entry-18497","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83405","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":834050,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-177.1764,26.8695,-400.3785],[-161.2174,26.8689,-400.4025],[-142.9394,26.8701,-400.1085],[-138.9724,26.8706,-396.9945],[-137.4394,26.8731,-387.3465],[-137.5354,26.8713,-354.9515],[-137.4394,26.8731,-387.3465],[-138.9724,26.8706,-396.9945],[-142.9394,26.8701,-400.1085],[-161.2174,26.8689,-400.4025]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83406","name":"Auchenai Monk Patrol","speed":1.15,"pathId":834060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-551.3204,0.4924,-8.5597],[-551.4384,7.2755,0.2935],[-551.5244,12.2432,6.7279],[-551.2754,13.6802,8.9252],[-551.0214,13.7079,20.7597],[-538.9454,13.7615,20.6311],[-533.8594,17.5738,20.6677],[-522.3264,26.3776,20.5204],[-520.9544,26.9107,20.5438],[-498.2634,26.9124,20.2342],[-492.8914,27.0229,10.9675],[-493.8324,27.1096,-35.6361],[-498.2084,26.8716,-44.8249],[-519.8714,27.108,-44.5594],[-491.4134,26.8715,-44.4135],[-492.0944,26.9104,20.6559],[-521.2764,26.9192,18.7596],[-527.6584,22.309,18.9305],[-538.5204,14.064,19.1257],[-545.7944,13.728,16.9494],[-548.0664,13.672,8.5066],[-550.1884,7.8548,1.0527],[-550.9584,0.911,-8.0146],[-550.9014,-2.7856,-13.1428]],"members":[{"id":"member","entityId":"entry-18497","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83415","name":"Auchenai Necromancer Patrol","speed":1.15,"pathId":834150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-240.7465,26.865,-390.0175],[-235.7562,26.8678,-379.4925]],"members":[{"id":"member","entityId":"entry-18702","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83416","name":"Auchenai Necromancer Patrol","speed":1.15,"pathId":834160,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-293.7003,26.8697,-378.2925],[-305.7179,26.8953,-370.4775]],"members":[{"id":"member","entityId":"entry-18702","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83423","name":"Auchenai Necromancer Patrol","speed":1.15,"pathId":834230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-241.8959,26.8933,-429.4275],[-250.7578,26.8834,-425.0625]],"members":[{"id":"member","entityId":"entry-18702","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83426","name":"Auchenai Necromancer Patrol","speed":1.15,"pathId":834260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-271.133,26.8628,-378.6875],[-255.4358,26.8732,-373.9105]],"members":[{"id":"member","entityId":"entry-18702","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83427","name":"Auchenai Necromancer Patrol","speed":1.15,"pathId":834270,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-289.5637,26.8644,-426.2515],[-307.2191,26.8712,-423.5305]],"members":[{"id":"member","entityId":"entry-18702","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132404","name":"Phasing Sorcerer Patrol","speed":1.15,"pathId":1324040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-343.1813,3.2108,2.4418],[-344.8943,0.0984,-12.4583],[-343.3575,3.0776,-32.0121]],"members":[{"id":"member","entityId":"entry-18558","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132406","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-385.9304,2.4849,-43.9337],[-387.0134,0.2087,-35.8562],[-385.3194,0.2367,-31.3699],[-384.6244,0.4607,-25.7346],[-386.9704,0.4926,-19.9541],[-387.5754,0.8155,-6.7321],[-385.6604,0.1819,0.5511],[-387.1034,0.451,5.4981],[-390.5214,0.45,9.6646],[-393.9004,0.2902,10.0182]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132408","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324080,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-408.5974,0.1748,15.6756],[-413.0134,0.1512,4.2828],[-413.0434,0.1512,-3.7053],[-415.1874,0.1519,-10.1628],[-418.2994,1.4348,-16.84],[-423.8044,2.1474,-18.6089],[-432.5714,2.1378,-18.6816],[-440.6824,1.58,-18.6842],[-445.2544,1.5778,-22.3477],[-449.1064,2.7613,-27.4472]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132409","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324090,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-410.0954,1.1896,-22.0926],[-411.9854,5.3397,-29.8561],[-411.9734,7.1651,-34.2168],[-415.5384,11.0342,-41.7631],[-418.9474,12.5451,-43.9591],[-425.5894,13.895,-46.3786],[-432.5244,13.8259,-48.6034],[-437.2604,13.4593,-49.5311],[-444.2424,12.4933,-51.5838]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132411","name":"Phasing Soldier Patrol","speed":1.15,"pathId":1324110,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-445.8404,4.1862,-34.417],[-438.6724,7.5818,-39.2342],[-431.2674,9.374,-38.3841],[-425.9854,10.601,-38.8798],[-419.7794,11.4136,-41.6151],[-415.1384,12.6427,-44.9338],[-409.4734,12.2342,-48.6404]],"members":[{"id":"member","entityId":"entry-18556","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132413","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324130,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-452.6334,2.0909,-30.9513],[-458.6394,0.1527,-32.6385],[-465.9294,0.1556,-32.3027],[-470.2604,0.3745,-27.8654],[-474.3604,0.1595,-18.9875],[-475.0894,0.1634,-9.7543],[-473.8044,0.162,-3.1472],[-473.3754,2.0657,2.9056]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132414","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-501.7994,28.6076,-11.9419],[-496.2554,27.4114,-16.7461],[-494.7274,27.4875,-21.9751],[-494.5064,27.5762,-29.1259],[-495.2464,27.1755,-35.2443],[-498.8414,26.8717,-39.563],[-504.8704,27.6851,-41.9379],[-510.1064,27.5604,-41.9328],[-519.7154,27.1208,-41.6247],[-527.9814,26.8905,-41.3907],[-538.4864,26.8787,-41.6651],[-547.1074,26.8715,-43.2208],[-556.0924,26.8715,-44.0469]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132416","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324160,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-518.3084,26.887,24.7988],[-529.6434,20.7596,25.5745],[-539.9644,13.7245,26.0714],[-552.0494,13.6945,25.3286],[-555.3104,13.689,24.2307],[-556.7244,13.6905,22.4092],[-557.0914,13.6987,19.2443],[-556.7324,13.7294,9.0571],[-556.5374,6.6949,-0.4668],[-557.0314,0.1998,-10.668]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132417","name":"Phasing Sorcerer Patrol","speed":1.15,"pathId":1324170,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-516.5064,26.8716,-104.4064],[-516.5154,26.8716,-103.7449],[-516.5254,26.8716,-103.0834],[-516.8834,26.8716,-101.3437],[-517.5874,26.8716,-97.9253],[-517.4114,26.8716,-97.3621],[-516.0814,26.8716,-93.106],[-516.0814,26.8716,-93.106]],"members":[{"id":"member","entityId":"entry-18558","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132420","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324200,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-536.5064,1.3493,4.0086],[-531.5154,0.2223,-0.5209],[-530.7134,0.2298,-6.6993],[-531.7304,0.2333,-11.98],[-530.6134,0.2302,-16.6596],[-527.9654,0.2222,-20.2471],[-524.3194,0.2111,-24.5009],[-522.0904,0.2044,-28.4181],[-521.9444,0.2161,-32.8045],[-523.2534,0.2143,-38.2501],[-526.7004,1.6639,-41.1299]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132421","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324210,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-527.2904,26.8716,-112.3285],[-526.8724,26.8716,-105.5293],[-526.4544,26.8716,-98.7303],[-526.2964,26.8716,-96.1735],[-526.2964,26.8716,-96.1735]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132422","name":"Phasing Soldier Patrol","speed":1.15,"pathId":1324220,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-468.8184,26.8671,-199.9065],[-468.4374,26.8554,-183.1395],[-468.2664,26.714,-164.4135],[-469.2464,26.7957,-151.4645]],"members":[{"id":"member","entityId":"entry-18556","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132425","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-548.1434,26.8716,-179.6725],[-542.6794,26.8716,-185.7215],[-536.6354,28.8216,-186.5135],[-532.2274,30.2735,-191.1035],[-525.7624,29.3536,-194.3805],[-518.9334,26.8716,-195.0775],[-513.0144,26.8716,-192.6325],[-508.8994,26.8716,-195.0175],[-505.5494,26.8716,-197.6295]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132428","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-465.0784,26.6693,-152.8275],[-464.0624,26.6069,-159.5235],[-461.7704,26.541,-162.7035],[-457.2444,26.6063,-164.3575],[-451.6904,26.725,-165.1355],[-444.8304,26.3405,-165.3725],[-435.1604,19.2953,-165.1205],[-429.0564,14.5479,-164.7695]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132429","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324290,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-535.1824,31.6251,-155.8525],[-529.6214,28.7373,-153.6795],[-521.8944,26.885,-152.8375],[-515.4104,26.8785,-154.3675],[-509.2734,26.8727,-157.8795],[-505.4254,26.8716,-161.6835],[-501.8324,26.8716,-168.3775],[-500.7354,26.8716,-175.3325],[-501.8054,26.8716,-183.1135],[-505.0764,26.8716,-189.4195],[-512.1454,26.8716,-194.9425],[-516.3554,26.8716,-199.0285],[-517.3854,26.8716,-202.6755]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132430","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-345.8278,15.6205,-187.5365],[-346.3424,15.6435,-177.1755],[-347.3182,15.6052,-169.9885],[-346.1997,15.5512,-166.4725],[-343.5964,15.601,-164.5635],[-340.3187,15.5856,-164.4245],[-337.2762,15.4904,-167.1805],[-325.0165,15.1974,-169.7735],[-320.4585,15.0615,-170.1105],[-316.7985,14.8203,-168.6185]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132431","name":"Phasing Sorcerer Patrol","speed":1.15,"pathId":1324310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-390.7884,14.9437,-180.3735],[-376.5093,15.502,-179.2585],[-370.0563,15.6338,-179.8925],[-365.6096,15.6676,-181.5525],[-363.3481,15.7089,-185.1935]],"members":[{"id":"member","entityId":"entry-18558","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132436","name":"Phasing Soldier Patrol","speed":1.15,"pathId":1324360,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-142.0844,26.872,-195.1235],[-142.9804,26.8714,-189.5395],[-144.7294,26.873,-184.6975],[-152.0104,26.8678,-181.7115]],"members":[{"id":"member","entityId":"entry-18556","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132437","name":"Phasing Sorcerer Patrol","speed":1.15,"pathId":1324370,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-138.3664,26.8717,-189.0485],[-138.2104,26.8711,-182.3465],[-138.0534,26.8705,-175.6445],[-138.0444,26.8691,-175.2335],[-137.8794,26.8708,-168.1475],[-137.8794,26.8708,-168.1475]],"members":[{"id":"member","entityId":"entry-18558","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-83388","name":"Shirrak the Dead Watcher","position":[-231.5071,26.649,-175.4055]},{"id":"creature-83453","name":"Exarch Maladaar","position":[-350.5515,26.8694,-400.0935]}],"objectiveOrder":[{"id":"creature-83388","name":"Shirrak the Dead Watcher","position":[-231.5071,26.649,-175.4055]},{"id":"creature-83453","name":"Exarch Maladaar","position":[-350.5515,26.8694,-400.0935]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":50349,"id":183441,"map":558,"orientation":1.45926,"phaseMask":1,"position_x":-19.8789,"position_y":-413.978,"position_z":26.5954,"rotation0":0,"rotation1":0,"rotation2":0.666594,"rotation3":0.745421,"spawnMask":3,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":50350,"id":183441,"map":558,"orientation":4.82627,"phaseMask":1,"position_x":-18.4475,"position_y":-356.556,"position_z":26.5944,"rotation0":0,"rotation1":0,"rotation2":0.66572,"rotation3":-0.746202,"spawnMask":3,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":50351,"id":183441,"map":558,"orientation":4.75558,"phaseMask":1,"position_x":6.70069,"position_y":-358.095,"position_z":26.6085,"rotation0":0,"rotation1":0,"rotation2":0.691673,"rotation3":-0.722211,"spawnMask":3,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":50352,"id":183441,"map":558,"orientation":2.84235,"phaseMask":1,"position_x":6.89282,"position_y":-416.851,"position_z":26.5852,"rotation0":0,"rotation1":0,"rotation2":0.988828,"rotation3":0.149064,"spawnMask":3,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":50353,"id":183441,"map":558,"orientation":4.00553,"phaseMask":1,"position_x":90.9187,"position_y":41.555,"position_z":4.26167,"rotation0":0,"rotation1":0,"rotation2":0.908143,"rotation3":-0.418659,"spawnMask":3,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":100297,"id":183441,"map":558,"orientation":-0.95993,"phaseMask":1,"position_x":62.6931,"position_y":-398.407,"position_z":29.6639,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":100355,"id":183441,"map":558,"orientation":-1.55334,"phaseMask":1,"position_x":-110.03,"position_y":-269.693,"position_z":34.9605,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":100356,"id":183441,"map":558,"orientation":2.80998,"phaseMask":1,"position_x":40.8714,"position_y":12.5752,"position_z":4.04008,"rotation0":0,"rotation1":0,"rotation2":0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105022,"id":181556,"map":558,"orientation":6.00393,"phaseMask":1,"position_x":173.916,"position_y":17.9607,"position_z":-1.26987,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105023,"id":181569,"map":558,"orientation":6.00393,"phaseMask":1,"position_x":173.916,"position_y":17.9607,"position_z":-1.26987,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105024,"id":181557,"map":558,"orientation":6.00393,"phaseMask":1,"position_x":173.916,"position_y":17.9607,"position_z":-1.26987,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105025,"id":181556,"map":558,"orientation":0.523598,"phaseMask":1,"position_x":119.337,"position_y":12.9238,"position_z":-1.99939,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105026,"id":181569,"map":558,"orientation":0.523598,"phaseMask":1,"position_x":119.337,"position_y":12.9238,"position_z":-1.99939,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105027,"id":181557,"map":558,"orientation":0.523598,"phaseMask":1,"position_x":119.337,"position_y":12.9238,"position_z":-1.99939,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105028,"id":181556,"map":558,"orientation":3.63029,"phaseMask":1,"position_x":231.433,"position_y":-16.9698,"position_z":2.86235,"rotation0":0,"rotation1":0,"rotation2":-0.970295,"rotation3":0.241925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105029,"id":181569,"map":558,"orientation":3.63029,"phaseMask":1,"position_x":231.433,"position_y":-16.9698,"position_z":2.86235,"rotation0":0,"rotation1":0,"rotation2":-0.970295,"rotation3":0.241925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105030,"id":181557,"map":558,"orientation":3.63029,"phaseMask":1,"position_x":231.433,"position_y":-16.9698,"position_z":2.86235,"rotation0":0,"rotation1":0,"rotation2":-0.970295,"rotation3":0.241925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105031,"id":181556,"map":558,"orientation":0.663223,"phaseMask":1,"position_x":213.983,"position_y":-2.98043,"position_z":27.1587,"rotation0":0,"rotation1":0,"rotation2":0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105032,"id":181569,"map":558,"orientation":0.663223,"phaseMask":1,"position_x":213.983,"position_y":-2.98043,"position_z":27.1587,"rotation0":0,"rotation1":0,"rotation2":0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105033,"id":181557,"map":558,"orientation":0.663223,"phaseMask":1,"position_x":213.983,"position_y":-2.98043,"position_z":27.1587,"rotation0":0,"rotation1":0,"rotation2":0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105034,"id":181556,"map":558,"orientation":6.10865,"phaseMask":1,"position_x":177.472,"position_y":-9.88348,"position_z":-0.765356,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105035,"id":181569,"map":558,"orientation":6.10865,"phaseMask":1,"position_x":177.472,"position_y":-9.88348,"position_z":-0.765356,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105036,"id":181557,"map":558,"orientation":6.10865,"phaseMask":1,"position_x":177.472,"position_y":-9.88348,"position_z":-0.765356,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105037,"id":181556,"map":558,"orientation":4.13643,"phaseMask":1,"position_x":245.748,"position_y":-182.614,"position_z":30.4494,"rotation0":0,"rotation1":0,"rotation2":-0.878817,"rotation3":0.47716,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105038,"id":181569,"map":558,"orientation":4.13643,"phaseMask":1,"position_x":245.748,"position_y":-182.614,"position_z":30.4494,"rotation0":0,"rotation1":0,"rotation2":-0.878817,"rotation3":0.47716,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105039,"id":181557,"map":558,"orientation":4.13643,"phaseMask":1,"position_x":245.748,"position_y":-182.614,"position_z":30.4494,"rotation0":0,"rotation1":0,"rotation2":-0.878817,"rotation3":0.47716,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105040,"id":181556,"map":558,"orientation":5.42797,"phaseMask":1,"position_x":-153.854,"position_y":-290.526,"position_z":24.5789,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105041,"id":181569,"map":558,"orientation":5.42797,"phaseMask":1,"position_x":-153.854,"position_y":-290.526,"position_z":24.5789,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105042,"id":181557,"map":558,"orientation":5.42797,"phaseMask":1,"position_x":-153.854,"position_y":-290.526,"position_z":24.5789,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105043,"id":181556,"map":558,"orientation":5.2709,"phaseMask":1,"position_x":93.3528,"position_y":-393.116,"position_z":27.1238,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105044,"id":181569,"map":558,"orientation":5.2709,"phaseMask":1,"position_x":93.3528,"position_y":-393.116,"position_z":27.1238,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105045,"id":181557,"map":558,"orientation":5.2709,"phaseMask":1,"position_x":93.3528,"position_y":-393.116,"position_z":27.1238,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105046,"id":181556,"map":558,"orientation":5.14872,"phaseMask":1,"position_x":-154.215,"position_y":-256.825,"position_z":24.384,"rotation0":0,"rotation1":0,"rotation2":-0.537299,"rotation3":0.843392,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105047,"id":181569,"map":558,"orientation":5.14872,"phaseMask":1,"position_x":-154.215,"position_y":-256.825,"position_z":24.384,"rotation0":0,"rotation1":0,"rotation2":-0.537299,"rotation3":0.843392,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105048,"id":181557,"map":558,"orientation":5.14872,"phaseMask":1,"position_x":-154.215,"position_y":-256.825,"position_z":24.384,"rotation0":0,"rotation1":0,"rotation2":-0.537299,"rotation3":0.843392,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105049,"id":181556,"map":558,"orientation":1.23918,"phaseMask":1,"position_x":-133.902,"position_y":-287.211,"position_z":25.8914,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105050,"id":181569,"map":558,"orientation":1.23918,"phaseMask":1,"position_x":-133.902,"position_y":-287.211,"position_z":25.8914,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105051,"id":181557,"map":558,"orientation":1.23918,"phaseMask":1,"position_x":-133.902,"position_y":-287.211,"position_z":25.8914,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105052,"id":181278,"map":558,"orientation":2.53072,"phaseMask":1,"position_x":94.1284,"position_y":-41.6325,"position_z":4.26136,"rotation0":0,"rotation1":0,"rotation2":0.953716,"rotation3":0.300708,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105053,"id":181278,"map":558,"orientation":3.94445,"phaseMask":1,"position_x":142.376,"position_y":42.363,"position_z":4.26119,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105054,"id":181278,"map":558,"orientation":2.46091,"phaseMask":1,"position_x":81.3718,"position_y":39.9704,"position_z":4.26169,"rotation0":0,"rotation1":0,"rotation2":0.942641,"rotation3":0.333808,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105055,"id":181278,"map":558,"orientation":5.14872,"phaseMask":1,"position_x":147.044,"position_y":-17.3046,"position_z":7.97811,"rotation0":0,"rotation1":0,"rotation2":-0.537299,"rotation3":0.843392,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105056,"id":181278,"map":558,"orientation":5.09636,"phaseMask":1,"position_x":228.891,"position_y":-161.939,"position_z":26.5913,"rotation0":0,"rotation1":0,"rotation2":-0.559193,"rotation3":0.829038,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105057,"id":181278,"map":558,"orientation":2.37364,"phaseMask":1,"position_x":227.291,"position_y":19.9092,"position_z":-0.064963,"rotation0":0,"rotation1":0,"rotation2":0.927183,"rotation3":0.374608,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105058,"id":181278,"map":558,"orientation":1.97222,"phaseMask":1,"position_x":238.11,"position_y":-21.5713,"position_z":-0.103546,"rotation0":0,"rotation1":0,"rotation2":0.833885,"rotation3":0.551938,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105059,"id":181278,"map":558,"orientation":4.88692,"phaseMask":1,"position_x":-125.759,"position_y":-306.731,"position_z":26.8307,"rotation0":0,"rotation1":0,"rotation2":-0.642787,"rotation3":0.766045,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105060,"id":181278,"map":558,"orientation":1.71042,"phaseMask":1,"position_x":-131.895,"position_y":-251.102,"position_z":26.4101,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105061,"id":181278,"map":558,"orientation":4.60767,"phaseMask":1,"position_x":-170.729,"position_y":-270.22,"position_z":31.6304,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3790,"guid":105062,"id":181278,"map":558,"orientation":-2.60053,"phaseMask":1,"position_x":11.4308,"position_y":-382.646,"position_z":19.4112,"rotation0":0,"rotation1":0,"rotation2":-0.963629,"rotation3":0.267244,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105063,"id":181278,"map":558,"orientation":5.58505,"phaseMask":1,"position_x":-57.6584,"position_y":-360.292,"position_z":26.6024,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105064,"id":181278,"map":558,"orientation":3.85718,"phaseMask":1,"position_x":-18.5816,"position_y":-360.279,"position_z":26.5888,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.35021,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105065,"id":181278,"map":558,"orientation":5.61996,"phaseMask":1,"position_x":31.0407,"position_y":-359.303,"position_z":26.5985,"rotation0":0,"rotation1":0,"rotation2":-0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105066,"id":181278,"map":558,"orientation":3.75246,"phaseMask":1,"position_x":-51.5901,"position_y":-414.033,"position_z":26.5885,"rotation0":0,"rotation1":0,"rotation2":-0.953716,"rotation3":0.300708,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105067,"id":181278,"map":558,"orientation":5.42797,"phaseMask":1,"position_x":29.3026,"position_y":-409.006,"position_z":26.5865,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150040,"id":184183,"map":558,"orientation":0.03534,"phaseMask":1,"position_x":-28.117,"position_y":-0.0599,"position_z":-0.1206,"rotation0":0,"rotation1":0,"rotation2":0.0176691,"rotation3":0.999844,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150041,"id":184184,"map":558,"orientation":0.03534,"phaseMask":1,"position_x":-28.117,"position_y":-0.0599,"position_z":-0.1206,"rotation0":0,"rotation1":0,"rotation2":0.0176691,"rotation3":0.999844,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/AuchindounDraenei":"2da215781dc7b7443a18619b0b0fefcbc9efe4ac54022daa9f460146a1d55503","patch/World/maps/AuchindounDraenei":"2e5fe324722ebe7a94f02b42d68049e8f7968845ab2d41ebed2daa6317a5440d"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/auchenai-crypts/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["14/14 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"magisters-terrace","title":"Magister's Terrace","mapId":585,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[70,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Magister's Terrace","theme":"Instanced dungeon","summary":"Fight through Magister's Terrace, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Magister's Terrace...","unchartedAreaName":"Uncharted Magister's Terrace","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":429.4714},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/585-sunwell5manfix/visual.glb","checksum":"715288f9e81fd70742ab4544e15e3531f3442e2347a3fc88fe5e1a67b2ec55e9","size":6378908,"triangleCount":140292}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/585-sunwell5manfix/collision.glb","checksum":"99a02b2b82db8f1526b5a62d6e886e099b036d670bb7ce3ed423ec7397daa3e3","size":1135004,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/585-sunwell5manfix/navigation.glb","checksum":"a3f44f11f336fdd894fc1909bd23718ecfce8fd5eb2e54246999f5a0bcdd02d1","size":195372,"triangleCount":14702}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-527.4146,-45.8705,-534.8598],"max":[-121.7323,21.7853,61.6282]},"entrance":{"name":"Magister's Terrace Entrance","footPosition":[-230.5436,-6.9147,-275.3638],"forward":[0.41232431017295823,0,0.9110371360380399],"yaw":0.42500387297762243},"areas":[{"id":"entrance","name":"Magister's Terrace Entrance","center":[-230.5436,-6.9147,-275.3638],"radius":35},{"id":"area-selin-fireheart","name":"Selin Fireheart's Encounter","center":[-465.5286,-2.2748,-274.613],"radius":42},{"id":"area-vexallus","name":"Vexallus's Encounter","center":[-454.8206,-10.438,-489.2598],"radius":42},{"id":"area-kael-thas-sunstrider","name":"Kael'thas Sunstrider's Encounter","center":[-372.0026,-20.7588,-87.9328],"radius":42}],"entities":{"entry-24664":{"id":"entry-24664","kind":"boss","name":"Kael'thas Sunstrider","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5715200000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6332,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22906-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.8927,"markerRadius":0.7407}}},"entry-24683":{"id":"entry-24683","kind":"mob","name":"Sunblade Mage Guard","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44478","name":"Glaive Throw","spellId":44478,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6426,"damageMultiplier":1.12},{"id":"spell-44475","name":"Magic Dampening Field","spellId":44475,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6426,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22580-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0361,"markerRadius":0.65}}},"entry-24684":{"id":"entry-24684","kind":"mob","name":"Sunblade Blood Knight","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22583-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0361,"markerRadius":0.65}}},"entry-24685":{"id":"entry-24685","kind":"mob","name":"Sunblade Magister","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22584-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0361,"markerRadius":0.65}}},"entry-24686":{"id":"entry-24686","kind":"mob","name":"Sunblade Warlock","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44519","name":"Incinerate","spellId":44519,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4519,"damageMultiplier":1.12},{"id":"spell-44518","name":"Immolate","spellId":44518,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4519,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22585-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0361,"markerRadius":0.65}}},"entry-24687":{"id":"entry-24687","kind":"mob","name":"Sunblade Physician","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44599","name":"Inject Poison","spellId":44599,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5267,"damageMultiplier":1.12},{"id":"spell-44583","name":"Prayer of Mending","spellId":44583,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5267,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22586-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0361,"markerRadius":0.65}}},"entry-24688":{"id":"entry-24688","kind":"mob","name":"Wretched Skulker","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44533","name":"Wretched Stab","spellId":44533,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6925,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22845-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0003,"labelHeight":2.769,"markerRadius":0.65}}},"entry-24689":{"id":"entry-24689","kind":"mob","name":"Wretched Bruiser","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44534","name":"Wretched Strike","spellId":44534,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5019,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22843-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0003,"labelHeight":2.769,"markerRadius":0.65}}},"entry-24690":{"id":"entry-24690","kind":"mob","name":"Wretched Husk","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44503","name":"Wretched Fireball","spellId":44503,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7402,"damageMultiplier":1.12},{"id":"spell-44504","name":"Wretched Frostbolt","spellId":44504,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7402,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22844-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0003,"labelHeight":2.769,"markerRadius":0.65}}},"entry-24696":{"id":"entry-24696","kind":"mob","name":"Coilskar Witch","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22590-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.5744,"labelHeight":6.8499,"markerRadius":1.3227}}},"entry-24697":{"id":"entry-24697","kind":"mob","name":"Sister of Torment","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44547","name":"Deadly Embrace","spellId":44547,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6048,"damageMultiplier":1.12},{"id":"spell-44640","name":"Lash of Pain","spellId":44640,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6048,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-10927-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":2.9614,"markerRadius":2.2079}}},"entry-24698":{"id":"entry-24698","kind":"mob","name":"Ethereum Smuggler","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-20419-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0623,"labelHeight":4.8389,"markerRadius":2.4145}}},"entry-24723":{"id":"entry-24723","kind":"boss","name":"Selin Fireheart","title":"Dungeon Boss","hasLoot":true,"combat":{"level":71,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5715200000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6742,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22642-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7201,"markerRadius":0.6859}}},"entry-24744":{"id":"entry-24744","kind":"boss","name":"Vexallus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":71,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.65728,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6265,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22731-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.667,"labelHeight":23.8336,"markerRadius":4.5}}},"entry-24761":{"id":"entry-24761","kind":"mob","name":"Brightscale Wyrm","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7427200000000003,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"serpent","model":{"url":"/assets/game/creatures/shared/8ec04da49e89f06bd85e7e8ecbb8c2e53ef77758bb032a1945b3d5fccecd8a6e.glb","rotationY":-1.5707963267948966,"groundOffset":0.2253,"labelHeight":5.9213,"markerRadius":0.9578}}},"entry-24777":{"id":"entry-24777","kind":"mob","name":"Sunblade Sentinel","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5715200000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22733-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":11.4091,"markerRadius":4.5}}},"entry-24560":{"id":"entry-24560","kind":"mob","name":"Priestess Delrissa","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22596-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0038,"labelHeight":5.4918,"markerRadius":1.1986}}},"entry-24861":{"id":"entry-24861","kind":"mob","name":"Crystal Beam","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-20570-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6231,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-96762","entityId":"entry-24664","position":[-372.0026,-20.7588,-87.9328],"yaw":-4.74729,"spawnMask":3},{"id":"creature-96763","entityId":"entry-24683","position":[-347.0676,-6.8367,-259.3626],"yaw":-1.78024,"spawnMask":3},{"id":"creature-96764","entityId":"entry-24683","position":[-299.7429,-6.7312,-266.9385],"yaw":-4.76475,"spawnMask":3},{"id":"creature-96765","entityId":"entry-24683","position":[-299.1348,-6.7447,-282.3461],"yaw":-1.6057,"spawnMask":3},{"id":"creature-96766","entityId":"entry-24683","position":[-346.5076,-24.5763,-408.1558],"yaw":-1.01229,"spawnMask":3},{"id":"creature-96767","entityId":"entry-24683","position":[-338.6586,-25.2324,-387.4518],"yaw":-2.32129,"spawnMask":3},{"id":"creature-96768","entityId":"entry-24683","position":[-337.7346,-25.2421,-432.6018],"yaw":-0.925025,"spawnMask":3},{"id":"creature-96769","entityId":"entry-24683","position":[-330.9536,-25.5847,-297.7625],"yaw":-4.7822,"spawnMask":3},{"id":"creature-96770","entityId":"entry-24683","position":[-377.2196,-18.4129,-130.9488],"yaw":-3.64774,"spawnMask":3},{"id":"creature-96771","entityId":"entry-24683","position":[-324.1416,-25.4381,-247.5229],"yaw":-4.45059,"spawnMask":3},{"id":"creature-96772","entityId":"entry-24683","position":[-383.5986,-24.0362,-234.7634],"yaw":-1.48353,"spawnMask":3},{"id":"creature-96773","entityId":"entry-24683","position":[-369.6016,-25.306,-300.3559],"yaw":-0.558505,"spawnMask":3},{"id":"creature-96774","entityId":"entry-24683","position":[-370.2456,-25.2266,-400.0528],"yaw":-5.70723,"spawnMask":3},{"id":"creature-96775","entityId":"entry-24684","position":[-402.8596,-6.7488,-267.0865],"yaw":-3.21141,"spawnMask":3},{"id":"creature-96776","entityId":"entry-24684","position":[-353.4296,-6.8296,-292.2654],"yaw":-5.84685,"spawnMask":3},{"id":"creature-96777","entityId":"entry-24684","position":[-354.1506,-24.555,-399.1148],"yaw":-3.94444,"spawnMask":3},{"id":"creature-96778","entityId":"entry-24684","position":[-341.8796,-25.1967,-426.4108],"yaw":-4.08407,"spawnMask":3},{"id":"creature-96779","entityId":"entry-24684","position":[-387.1716,-25.5718,-258.1349],"yaw":-2.05949,"spawnMask":3},{"id":"creature-96780","entityId":"entry-24684","position":[-359.8366,-25.2352,-383.0578],"yaw":-0.226893,"spawnMask":3},{"id":"creature-96781","entityId":"entry-24684","position":[-370.1276,-18.4129,-133.5608],"yaw":-0.226893,"spawnMask":3},{"id":"creature-96782","entityId":"entry-24684","position":[-298.5543,-24.0362,-242.745],"yaw":-3.9619,"spawnMask":3},{"id":"creature-96783","entityId":"entry-24684","position":[-393.8036,-24.0362,-310.4882],"yaw":-5.28835,"spawnMask":3},{"id":"creature-96784","entityId":"entry-24684","position":[-374.9876,-25.4658,-303.6195],"yaw":-1.27409,"spawnMask":3},{"id":"creature-96785","entityId":"entry-24685","position":[-402.4736,-6.7467,-282.8893],"yaw":-3.07178,"spawnMask":3},{"id":"creature-96787","entityId":"entry-24685","position":[-357.5946,-6.7346,-289.2762],"yaw":-3.63029,"spawnMask":3},{"id":"creature-96788","entityId":"entry-24685","position":[-345.3136,-6.766,-254.0062],"yaw":-5.06145,"spawnMask":3},{"id":"creature-96789","entityId":"entry-24685","position":[-344.5196,-25.3626,-430.6268],"yaw":-2.94961,"spawnMask":3},{"id":"creature-96790","entityId":"entry-24685","position":[-382.3916,-25.4321,-251.8817],"yaw":-5.74213,"spawnMask":3},{"id":"creature-96791","entityId":"entry-24685","position":[-367.5376,-24.4864,-381.9288],"yaw":-4.24115,"spawnMask":3},{"id":"creature-96793","entityId":"entry-24685","position":[-313.0642,-25.3622,-254.9404],"yaw":-6.21337,"spawnMask":3},{"id":"creature-96794","entityId":"entry-24685","position":[-388.3666,-24.0336,-234.3472],"yaw":-2.82743,"spawnMask":3},{"id":"creature-96795","entityId":"entry-24685","position":[-383.2376,-25.5016,-294.0275],"yaw":-3.19395,"spawnMask":3},{"id":"creature-96796","entityId":"entry-24685","position":[-369.6446,-25.0449,-409.2678],"yaw":-0.767945,"spawnMask":3},{"id":"creature-96797","entityId":"entry-24686","position":[-405.3986,-6.8008,-280.5677],"yaw":-3.08923,"spawnMask":3},{"id":"creature-96799","entityId":"entry-24686","position":[-357.9236,-6.7525,-293.8216],"yaw":-2.77507,"spawnMask":3},{"id":"creature-96801","entityId":"entry-24686","position":[-342.6846,-6.7199,-258.1829],"yaw":-0.837758,"spawnMask":3},{"id":"creature-96802","entityId":"entry-24686","position":[-344.8896,-24.559,-400.9318],"yaw":-5.61996,"spawnMask":3},{"id":"creature-96803","entityId":"entry-24686","position":[-334.2726,-24.6092,-381.2578],"yaw":-5.02655,"spawnMask":3},{"id":"creature-96804","entityId":"entry-24686","position":[-305.9028,-24.0304,-318.0577],"yaw":-3.24631,"spawnMask":3},{"id":"creature-96805","entityId":"entry-24686","position":[-337.0276,-25.1707,-427.5268],"yaw":-5.5676,"spawnMask":3},{"id":"creature-96806","entityId":"entry-24686","position":[-326.7736,-25.4626,-302.5609],"yaw":-6.12611,"spawnMask":3},{"id":"creature-96807","entityId":"entry-24686","position":[-385.8886,-25.3697,-250.0148],"yaw":-4.62512,"spawnMask":3},{"id":"creature-96808","entityId":"entry-24686","position":[-362.8496,-25.1795,-389.0188],"yaw":-1.50098,"spawnMask":3},{"id":"creature-96809","entityId":"entry-24686","position":[-374.9286,-18.4129,-128.7878],"yaw":-4.50295,"spawnMask":3},{"id":"creature-96810","entityId":"entry-24686","position":[-316.5338,-25.3684,-250.2985],"yaw":-5.37561,"spawnMask":3},{"id":"creature-96811","entityId":"entry-24686","position":[-379.8166,-25.4175,-300.342],"yaw":-2.49582,"spawnMask":3},{"id":"creature-96812","entityId":"entry-24686","position":[-381.1726,-25.1086,-407.1268],"yaw":-2.89725,"spawnMask":3},{"id":"creature-96813","entityId":"entry-24687","position":[-405.7976,-6.7733,-270.059],"yaw":-3.1765,"spawnMask":3},{"id":"creature-96815","entityId":"entry-24687","position":[-352.7606,-6.8515,-297.1718],"yaw":-1.64061,"spawnMask":3},{"id":"creature-96816","entityId":"entry-24687","position":[-350.6056,-6.8505,-255.2931],"yaw":-2.84489,"spawnMask":3},{"id":"creature-96817","entityId":"entry-24687","position":[-354.4196,-24.5352,-407.0428],"yaw":-2.63545,"spawnMask":3},{"id":"creature-96818","entityId":"entry-24687","position":[-331.6896,-24.3003,-386.0358],"yaw":-6.12611,"spawnMask":3},{"id":"creature-96819","entityId":"entry-24687","position":[-303.8058,-24.0353,-312.2473],"yaw":-2.89725,"spawnMask":3},{"id":"creature-96820","entityId":"entry-24687","position":[-328.6916,-25.4145,-308.1143],"yaw":-1.41372,"spawnMask":3},{"id":"creature-96821","entityId":"entry-24687","position":[-315.859,-25.6304,-260.2612],"yaw":-0.872665,"spawnMask":3},{"id":"creature-96822","entityId":"entry-24687","position":[-309.3638,-24.0362,-235.5358],"yaw":-5.55015,"spawnMask":3},{"id":"creature-96823","entityId":"entry-24687","position":[-401.2856,-24.0362,-305.0483],"yaw":-1.50098,"spawnMask":3},{"id":"creature-96824","entityId":"entry-24687","position":[-376.1706,-24.7224,-413.0378],"yaw":-2.02458,"spawnMask":3},{"id":"creature-96826","entityId":"entry-24688","position":[-446.1086,-7.0888,-295.7248],"yaw":-0.331613,"spawnMask":3},{"id":"creature-96827","entityId":"entry-24688","position":[-453.9866,-7.084,-295.852],"yaw":-2.84489,"spawnMask":3},{"id":"creature-96828","entityId":"entry-24688","position":[-448.9726,-7.0261,-257.9338],"yaw":-1.55334,"spawnMask":3},{"id":"creature-96829","entityId":"entry-24688","position":[-453.6416,-7.0988,-255.2052],"yaw":-2.68781,"spawnMask":3},{"id":"creature-96831","entityId":"entry-24689","position":[-447.8666,-7.0852,-291.1859],"yaw":-5.3058,"spawnMask":3},{"id":"creature-96832","entityId":"entry-24689","position":[-445.7756,-7.0893,-292.9242],"yaw":-5.8294,"spawnMask":3},{"id":"creature-96833","entityId":"entry-24689","position":[-451.4886,-7.1129,-251.1638],"yaw":-3.66519,"spawnMask":3},{"id":"creature-96834","entityId":"entry-24689","position":[-451.9716,-7.0685,-256.9976],"yaw":-2.32129,"spawnMask":3},{"id":"creature-96835","entityId":"entry-24690","position":[-452.0136,-7.0813,-291.5685],"yaw":-3.59538,"spawnMask":3},{"id":"creature-96836","entityId":"entry-24690","position":[-450.7646,-7.0874,-297.883],"yaw":-1.91986,"spawnMask":3},{"id":"creature-96837","entityId":"entry-24690","position":[-447.5876,-7.1326,-251.6217],"yaw":-5.3058,"spawnMask":3},{"id":"creature-96838","entityId":"entry-24690","position":[-445.9546,-7.0703,-254.45],"yaw":-6.05629,"spawnMask":3},{"id":"creature-96839","entityId":"entry-24696","position":[-339.5706,-25.0583,-382.1508],"yaw":-3.75246,"spawnMask":3},{"id":"creature-96840","entityId":"entry-24696","position":[-334.2486,-25.2924,-307.8628],"yaw":-2.42601,"spawnMask":3},{"id":"creature-96841","entityId":"entry-24696","position":[-371.6546,-18.4129,-129.3338],"yaw":-5.34071,"spawnMask":3},{"id":"creature-96842","entityId":"entry-24697","position":[-333.9426,-24.8117,-389.2858],"yaw":-1.13446,"spawnMask":3},{"id":"creature-96843","entityId":"entry-24697","position":[-342.3226,-25.3379,-434.2578],"yaw":-1.8326,"spawnMask":3},{"id":"creature-96844","entityId":"entry-24697","position":[-336.5246,-25.6021,-302.2957],"yaw":-3.47321,"spawnMask":3},{"id":"creature-96845","entityId":"entry-24697","position":[-382.8836,-25.5153,-257.0744],"yaw":-0.575959,"spawnMask":3},{"id":"creature-96846","entityId":"entry-24697","position":[-362.5546,-25.0392,-379.5578],"yaw":-5.60251,"spawnMask":3},{"id":"creature-96847","entityId":"entry-24697","position":[-376.8496,-18.4129,-134.8558],"yaw":-2.47837,"spawnMask":3},{"id":"creature-96848","entityId":"entry-24698","position":[-390.3756,-25.3661,-253.3696],"yaw":-3.33358,"spawnMask":3},{"id":"creature-96849","entityId":"entry-24698","position":[-368.1596,-24.5788,-388.2528],"yaw":-2.67035,"spawnMask":3},{"id":"creature-96850","entityId":"entry-24698","position":[-372.3656,-18.4129,-136.3428],"yaw":-1.13446,"spawnMask":3},{"id":"creature-96875","entityId":"entry-24723","position":[-465.5286,-2.2748,-274.613],"yaw":-3.19395,"spawnMask":3},{"id":"creature-96876","entityId":"entry-24744","position":[-454.8206,-10.438,-489.2598],"yaw":-1.51844,"spawnMask":3},{"id":"creature-96877","entityId":"entry-24761","position":[-442.0416,-4.6455,-433.9958],"yaw":-2.61809,"spawnMask":3},{"id":"creature-96878","entityId":"entry-24761","position":[-444.4696,-7.6319,-437.2948],"yaw":-4.83488,"spawnMask":3},{"id":"creature-96879","entityId":"entry-24761","position":[-444.1806,-13.5891,-438.7128],"yaw":-1.21739,"spawnMask":3},{"id":"creature-96880","entityId":"entry-24761","position":[-440.7566,-6.9887,-435.9528],"yaw":-2.2913,"spawnMask":3},{"id":"creature-96881","entityId":"entry-24761","position":[-444.4696,-5.2837,-438.1168],"yaw":-3.09909,"spawnMask":3},{"id":"creature-96882","entityId":"entry-24761","position":[-442.3956,-8.4044,-435.5688],"yaw":-1.63534,"spawnMask":3},{"id":"creature-96883","entityId":"entry-24761","position":[-446.3726,-7.0993,-438.7378],"yaw":-5.61676,"spawnMask":3},{"id":"creature-96884","entityId":"entry-24761","position":[-444.2886,-5.5937,-440.7368],"yaw":-5.1039,"spawnMask":3},{"id":"creature-96885","entityId":"entry-24761","position":[-443.2176,-6.5611,-434.0138],"yaw":-2.23043,"spawnMask":3},{"id":"creature-96887","entityId":"entry-24761","position":[-453.2826,-5.4825,-407.9358],"yaw":-5.36926,"spawnMask":3},{"id":"creature-96888","entityId":"entry-24761","position":[-450.5816,-5.3558,-397.6738],"yaw":-6.2025,"spawnMask":3},{"id":"creature-96889","entityId":"entry-24761","position":[-447.1476,-5.074,-398.7048],"yaw":-3.49779,"spawnMask":3},{"id":"creature-96890","entityId":"entry-24761","position":[-448.5376,-4.598,-400.4408],"yaw":-5.167,"spawnMask":3},{"id":"creature-96891","entityId":"entry-24761","position":[-447.7526,-7.512,-401.6058],"yaw":-3.57202,"spawnMask":3},{"id":"creature-96892","entityId":"entry-24761","position":[-449.0036,-6.7706,-402.9048],"yaw":-0.326793,"spawnMask":3},{"id":"creature-96893","entityId":"entry-24761","position":[-450.6856,-6.6466,-399.0868],"yaw":-5.81502,"spawnMask":3},{"id":"creature-96894","entityId":"entry-24761","position":[-454.9586,-5.0159,-406.6718],"yaw":1.48987,"spawnMask":3},{"id":"creature-96895","entityId":"entry-24761","position":[-456.3726,-5.2257,-406.7838],"yaw":1.89616,"spawnMask":3},{"id":"creature-96896","entityId":"entry-24761","position":[-450.6486,-6.2615,-403.3738],"yaw":-5.09555,"spawnMask":3},{"id":"creature-96897","entityId":"entry-24761","position":[-457.1546,-10.1467,-350.0223],"yaw":-1.23444,"spawnMask":3},{"id":"creature-96898","entityId":"entry-24761","position":[-465.8996,-10.1529,-351.5219],"yaw":-3.18161,"spawnMask":3},{"id":"creature-96899","entityId":"entry-24761","position":[-482.4146,-8.9453,-352.8346],"yaw":-4.89869,"spawnMask":3},{"id":"creature-96900","entityId":"entry-24761","position":[-478.2586,-7.5087,-332.9218],"yaw":-4.82406,"spawnMask":3},{"id":"creature-96901","entityId":"entry-24761","position":[-454.3196,-10.1319,-361.1556],"yaw":-2.22432,"spawnMask":3},{"id":"creature-96902","entityId":"entry-24761","position":[-458.2016,-5.3091,-408.1568],"yaw":2.55138,"spawnMask":3},{"id":"creature-96903","entityId":"entry-24761","position":[-454.7886,-5.2405,-408.7838],"yaw":-4.15631,"spawnMask":3},{"id":"creature-96904","entityId":"entry-24761","position":[-453.2246,-5.9377,-406.6488],"yaw":-4.10846,"spawnMask":3},{"id":"creature-96905","entityId":"entry-24761","position":[-458.1956,-7.0968,-405.1068],"yaw":-0.222408,"spawnMask":3},{"id":"creature-96906","entityId":"entry-24761","position":[-453.3346,-5.3359,-404.7748],"yaw":-2.17735,"spawnMask":3},{"id":"creature-96907","entityId":"entry-24761","position":[-453.5466,-4.2338,-407.5268],"yaw":0.996196,"spawnMask":3},{"id":"creature-96908","entityId":"entry-24761","position":[-455.2916,-3.6524,-407.8758],"yaw":-4.15935,"spawnMask":3},{"id":"creature-96910","entityId":"entry-24761","position":[-455.5756,-6.7767,-407.4448],"yaw":-4.02086,"spawnMask":3},{"id":"creature-96911","entityId":"entry-24761","position":[-456.3856,-4.8786,-408.1568],"yaw":-4.08292,"spawnMask":3},{"id":"creature-96912","entityId":"entry-24761","position":[-443.8116,-6.8913,-397.4048],"yaw":-2.45328,"spawnMask":3},{"id":"creature-96914","entityId":"entry-24761","position":[-447.2116,-7.3383,-400.4058],"yaw":-2.40412,"spawnMask":3},{"id":"creature-96915","entityId":"entry-24761","position":[-445.1386,-4.5353,-399.9288],"yaw":-2.41882,"spawnMask":3},{"id":"creature-96916","entityId":"entry-24761","position":[-444.9876,-6.1227,-401.2578],"yaw":-2.53447,"spawnMask":3},{"id":"creature-96917","entityId":"entry-24761","position":[-443.3696,-5.9223,-400.5668],"yaw":-2.36683,"spawnMask":3},{"id":"creature-96918","entityId":"entry-24761","position":[-458.6516,-4.826,-410.1818],"yaw":-3.12964,"spawnMask":3},{"id":"creature-96919","entityId":"entry-24761","position":[-447.1766,-5.5632,-402.8988],"yaw":-3.77507,"spawnMask":3},{"id":"creature-96921","entityId":"entry-24761","position":[-444.7166,-6.2606,-398.9618],"yaw":-2.45763,"spawnMask":3},{"id":"creature-96922","entityId":"entry-24761","position":[-451.2606,-8.1302,-444.1398],"yaw":-2.23541,"spawnMask":3},{"id":"creature-96923","entityId":"entry-24761","position":[-454.8616,-5.8492,-443.0788],"yaw":-5.8749,"spawnMask":3},{"id":"creature-96924","entityId":"entry-24761","position":[-456.2426,-8.2151,-445.0228],"yaw":-1.05414,"spawnMask":3},{"id":"creature-96925","entityId":"entry-24761","position":[-454.0776,-4.6844,-446.3668],"yaw":-0.527839,"spawnMask":3},{"id":"creature-96926","entityId":"entry-24761","position":[-457.6516,-6.4519,-450.9458],"yaw":-5.1463,"spawnMask":3},{"id":"creature-96927","entityId":"entry-24761","position":[-455.1086,-5.2989,-445.3548],"yaw":-1.13049,"spawnMask":3},{"id":"creature-96928","entityId":"entry-24761","position":[-458.0206,-7.4386,-446.7338],"yaw":-4.67481,"spawnMask":3},{"id":"creature-96929","entityId":"entry-24761","position":[-451.5406,-6.837,-443.9258],"yaw":-2.60035,"spawnMask":3},{"id":"creature-96930","entityId":"entry-24761","position":[-460.2656,-6.5747,-443.8068],"yaw":-1.36278,"spawnMask":3},{"id":"creature-96932","entityId":"entry-24761","position":[-443.7046,-4.2896,-430.9488],"yaw":-1.86283,"spawnMask":3},{"id":"creature-96933","entityId":"entry-24761","position":[-447.8036,-7.2346,-430.2928],"yaw":-0.889851,"spawnMask":3},{"id":"creature-96934","entityId":"entry-24761","position":[-450.1866,-5.3342,-427.2578],"yaw":-0.716494,"spawnMask":3},{"id":"creature-96935","entityId":"entry-24761","position":[-447.0376,-3.389,-430.1898],"yaw":-0.4699,"spawnMask":3},{"id":"creature-96936","entityId":"entry-24761","position":[-450.7006,-4.7302,-432.6178],"yaw":-2.32793,"spawnMask":3},{"id":"creature-96937","entityId":"entry-24761","position":[-448.5436,-5.8334,-433.9508],"yaw":-2.32616,"spawnMask":3},{"id":"creature-96938","entityId":"entry-24761","position":[-448.9356,-5.6718,-430.5078],"yaw":-5.95175,"spawnMask":3},{"id":"creature-96940","entityId":"entry-24761","position":[-450.8836,-3.4413,-435.4038],"yaw":-6.06578,"spawnMask":3},{"id":"creature-96941","entityId":"entry-24761","position":[-450.7956,-5.5658,-430.8618],"yaw":-3.36994,"spawnMask":3},{"id":"creature-96966","entityId":"entry-24560","position":[-350.3546,-24.0362,-255.7591],"yaw":-4.74729,"spawnMask":3},{"id":"creature-1971387","entityId":"entry-24861","position":[-457.4096,-7.0907,-274.8668],"yaw":0,"spawnMask":3}],"roamingPacks":[{"id":"patrol-96786","name":"Sunblade Magister Patrol","speed":1.15,"pathId":967860,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-316.7655,-6.7927,-272.7833],[-345.8066,-6.8992,-288.1235],[-365.6466,-6.7308,-279.9953],[-380.0566,-6.7781,-279.1178],[-352.7186,-6.9295,-263.2116],[-334.3306,-6.7335,-272.5142]],"members":[{"id":"member","entityId":"entry-24685","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96792","name":"Sunblade Magister Patrol","speed":1.15,"pathId":967920,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-350.3126,-25.8705,-387.8198],[-339.5606,-25.8705,-393.2688],[-336.5506,-25.8705,-408.3018],[-347.2016,-25.8705,-417.2808],[-350.4016,-25.8705,-442.1168],[-350.5666,-25.8705,-419.6558],[-362.2956,-25.8705,-411.8548],[-364.4046,-25.8705,-399.8338],[-352.0936,-25.8705,-388.1418],[-350.3566,-25.8705,-371.4199]],"members":[{"id":"member","entityId":"entry-24685","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96814","name":"Sunblade Physician Patrol","speed":1.15,"pathId":968140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-316.8947,-6.792,-270.5567],[-347.4386,-6.9286,-286.2821],[-365.6656,-6.7209,-277.1624],[-380.4756,-6.78,-277.0665],[-353.6496,-6.9315,-260.8234],[-333.9916,-6.7215,-270.3327]],"members":[{"id":"member","entityId":"entry-24687","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96825","name":"Wretched Skulker Patrol","speed":1.15,"pathId":968250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-454.7886,-7.0768,-272.1425],[-454.7886,-7.0768,-272.1425]],"members":[{"id":"member","entityId":"entry-24688","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96830","name":"Wretched Bruiser Patrol","speed":1.15,"pathId":968300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-455.6036,-7.0685,-276.9415],[-455.6036,-7.0685,-276.9415]],"members":[{"id":"member","entityId":"entry-24689","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96944","name":"Sunblade Sentinel Patrol","speed":1.15,"pathId":969440,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-427.4266,-13.5875,-489.0978],[-390.7166,-13.5803,-489.2098]],"members":[{"id":"member","entityId":"entry-24777","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96945","name":"Sunblade Sentinel Patrol","speed":1.15,"pathId":969450,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-328.9936,-25.5518,-489.8598],[-360.4566,-25.4921,-489.7448]],"members":[{"id":"member","entityId":"entry-24777","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96946","name":"Sunblade Sentinel Patrol","speed":1.15,"pathId":969460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-350.2796,-25.5243,-355.738],[-350.5356,-25.783,-323.355]],"members":[{"id":"member","entityId":"entry-24777","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-96875","name":"Selin Fireheart","position":[-465.5286,-2.2748,-274.613]},{"id":"creature-96876","name":"Vexallus","position":[-454.8206,-10.438,-489.2598]},{"id":"creature-96762","name":"Kael'thas Sunstrider","position":[-372.0026,-20.7588,-87.9328]}],"objectiveOrder":[{"id":"creature-96875","name":"Selin Fireheart","position":[-465.5286,-2.2748,-274.613]},{"id":"creature-96876","name":"Vexallus","position":[-454.8206,-10.438,-489.2598]},{"id":"creature-96762","name":"Kael'thas Sunstrider","position":[-372.0026,-20.7588,-87.9328]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":257,"id":188415,"map":585,"orientation":4.60767,"phaseMask":1,"position_x":-19.2307,"position_y":-551.108,"position_z":-63.7667,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":258,"id":188415,"map":585,"orientation":1.48353,"phaseMask":1,"position_x":-32.2288,"position_y":-646.162,"position_z":-63.6902,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":259,"id":188415,"map":585,"orientation":0.0698117,"phaseMask":1,"position_x":-73.1546,"position_y":-601.769,"position_z":-63.7667,"rotation0":0,"rotation1":0,"rotation2":0.0348988,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":260,"id":188415,"map":585,"orientation":3.21142,"phaseMask":1,"position_x":20.0252,"position_y":-593.697,"position_z":-63.6475,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349061,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":468,"id":188075,"map":585,"orientation":5.66359,"phaseMask":1,"position_x":45.9157,"position_y":-797.592,"position_z":-52.4865,"rotation0":0,"rotation1":0,"rotation2":-0.304864,"rotation3":0.952396,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":469,"id":188119,"map":585,"orientation":3.13286,"phaseMask":1,"position_x":-384.951,"position_y":-659.807,"position_z":-51.2358,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":470,"id":188421,"map":585,"orientation":3.13286,"phaseMask":1,"position_x":-324.043,"position_y":-595.184,"position_z":-59.2553,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":471,"id":188523,"map":585,"orientation":3.13286,"phaseMask":1,"position_x":-325.218,"position_y":-595.859,"position_z":-51.2358,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":472,"id":188524,"map":585,"orientation":3.13286,"phaseMask":1,"position_x":-326.934,"position_y":-595.61,"position_z":-51.2358,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52548,"id":187206,"map":585,"orientation":3.20548,"phaseMask":1,"position_x":150.23,"position_y":-396.227,"position_z":-59.7847,"rotation0":0,"rotation1":0,"rotation2":-0.99949,"rotation3":0.0319405,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52549,"id":187207,"map":585,"orientation":3.20548,"phaseMask":1,"position_x":151.325,"position_y":-414.052,"position_z":-59.7847,"rotation0":0,"rotation1":0,"rotation2":-0.99949,"rotation3":0.0319405,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52550,"id":187214,"map":585,"orientation":2.90005,"phaseMask":1,"position_x":114.269,"position_y":-498.795,"position_z":-17.7347,"rotation0":0,"rotation1":0,"rotation2":0.992716,"rotation3":0.120479,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52551,"id":187215,"map":585,"orientation":4.47085,"phaseMask":1,"position_x":122.191,"position_y":-511.452,"position_z":-17.7347,"rotation0":0,"rotation1":0,"rotation2":-0.787146,"rotation3":0.616767,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52552,"id":187216,"map":585,"orientation":4.97988,"phaseMask":1,"position_x":11.9892,"position_y":-534.594,"position_z":-6.72062,"rotation0":0,"rotation1":0,"rotation2":-0.606502,"rotation3":0.795082,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52553,"id":187217,"map":585,"orientation":0.26749,"phaseMask":1,"position_x":19.1809,"position_y":-521.508,"position_z":-6.72062,"rotation0":0,"rotation1":0,"rotation2":0.133347,"rotation3":0.991069,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52554,"id":187218,"map":585,"orientation":6.27859,"phaseMask":1,"position_x":-320.379,"position_y":-652.916,"position_z":-76.3125,"rotation0":0,"rotation1":0,"rotation2":-0.0022974,"rotation3":0.999997,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52555,"id":187219,"map":585,"orientation":6.27859,"phaseMask":1,"position_x":-320.442,"position_y":-660.155,"position_z":-76.3125,"rotation0":0,"rotation1":0,"rotation2":-0.0022974,"rotation3":0.999997,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52556,"id":187220,"map":585,"orientation":6.27859,"phaseMask":1,"position_x":-332.146,"position_y":-532.021,"position_z":-76.2693,"rotation0":0,"rotation1":0,"rotation2":-0.0022974,"rotation3":0.999997,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52557,"id":187221,"map":585,"orientation":6.27859,"phaseMask":1,"position_x":-332.21,"position_y":-539.26,"position_z":-76.2693,"rotation0":0,"rotation1":0,"rotation2":-0.0022974,"rotation3":0.999997,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52558,"id":187222,"map":585,"orientation":1.5662,"phaseMask":1,"position_x":-290.523,"position_y":-684.896,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.70548,"rotation3":0.70873,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52559,"id":187223,"map":585,"orientation":1.5662,"phaseMask":1,"position_x":-283.285,"position_y":-684.959,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.70548,"rotation3":0.70873,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52560,"id":187224,"map":585,"orientation":4.7078,"phaseMask":1,"position_x":-281.758,"position_y":-506.564,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":-0.708729,"rotation3":0.705481,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52561,"id":187225,"map":585,"orientation":4.7078,"phaseMask":1,"position_x":-288.996,"position_y":-506.501,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":-0.708729,"rotation3":0.705481,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52562,"id":187226,"map":585,"orientation":3.13681,"phaseMask":1,"position_x":-242.513,"position_y":-559.739,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.999997,"rotation3":0.00239208,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52563,"id":187227,"map":585,"orientation":3.13681,"phaseMask":1,"position_x":-242.45,"position_y":-552.5,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.999997,"rotation3":0.00239208,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52564,"id":187228,"map":585,"orientation":3.13681,"phaseMask":1,"position_x":-243.238,"position_y":-642.784,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.999997,"rotation3":0.00239208,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52565,"id":187229,"map":585,"orientation":3.13681,"phaseMask":1,"position_x":-243.175,"position_y":-635.545,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.999997,"rotation3":0.00239208,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99798,"id":188165,"map":585,"orientation":4.27606,"phaseMask":1,"position_x":138.353,"position_y":190.139,"position_z":-16.8306,"rotation0":0,"rotation1":0,"rotation2":-0.84339,"rotation3":0.537301,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99799,"id":188166,"map":585,"orientation":4.97419,"phaseMask":1,"position_x":158.751,"position_y":190.51,"position_z":-16.8794,"rotation0":0,"rotation1":0,"rotation2":-0.608761,"rotation3":0.793354,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99800,"id":188173,"map":585,"orientation":1.01229,"phaseMask":1,"position_x":148.401,"position_y":203.443,"position_z":-11.9579,"rotation0":0,"rotation1":0,"rotation2":0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":99801,"id":188177,"map":585,"orientation":3.14159,"phaseMask":1,"position_x":-5.48751,"position_y":0,"position_z":-0.678789,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":99802,"id":187979,"map":585,"orientation":4.71239,"phaseMask":1,"position_x":254.45,"position_y":-29.3623,"position_z":5.57768,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99803,"id":187990,"map":585,"orientation":4.00553,"phaseMask":1,"position_x":3.43622,"position_y":-448.192,"position_z":-5.71188,"rotation0":0,"rotation1":0,"rotation2":-0.908143,"rotation3":0.41866,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99804,"id":187764,"map":585,"orientation":3.04558,"phaseMask":1,"position_x":-15.9063,"position_y":-421.996,"position_z":-47.1748,"rotation0":0,"rotation1":0,"rotation2":0.998848,"rotation3":0.0479871,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99805,"id":187765,"map":585,"orientation":1.38754,"phaseMask":1,"position_x":-108.729,"position_y":-598.276,"position_z":-6.37283,"rotation0":0,"rotation1":0,"rotation2":0.639439,"rotation3":0.768842,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99806,"id":187766,"map":585,"orientation":2.69653,"phaseMask":1,"position_x":72.4223,"position_y":-587.323,"position_z":1.59501,"rotation0":0,"rotation1":0,"rotation2":0.975342,"rotation3":0.2207,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99807,"id":187770,"map":585,"orientation":4.71239,"phaseMask":1,"position_x":127.101,"position_y":61.3613,"position_z":-15.1793,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99808,"id":188064,"map":585,"orientation":1.5708,"phaseMask":1,"position_x":149.927,"position_y":125.694,"position_z":-7.26305,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99809,"id":188065,"map":585,"orientation":0,"phaseMask":1,"position_x":215.131,"position_y":0.396177,"position_z":9.41158,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":99810,"id":188081,"map":585,"orientation":2.63544,"phaseMask":1,"position_x":-214.195,"position_y":-251.216,"position_z":-72.2626,"rotation0":0,"rotation1":0,"rotation2":0.968147,"rotation3":0.250381,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99811,"id":187578,"map":585,"orientation":1.65806,"phaseMask":1,"position_x":231.214,"position_y":-274.873,"position_z":-7.39517,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":99812,"id":188118,"map":585,"orientation":3.13286,"phaseMask":1,"position_x":-71.2024,"position_y":-523.018,"position_z":0.144581,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99813,"id":187896,"map":585,"orientation":4.71239,"phaseMask":1,"position_x":231.232,"position_y":-236.83,"position_z":0.579835,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/Sunwell5ManFix":"e6733adf1c7a22d046b7a12ff4f4ee136a02915b21ede5c64b4d9ca0c388024b","patch/World/maps/Sunwell5ManFix":"74cbf0b707bf74fd80ad4e07983345b1618b64e647ea3805e0539850b47e4dfd","patch-2/World/maps/Sunwell5ManFix":"6a6471f4cde0af983fed534fc5f4ede260e377b29e9b8117d809241c26906f55"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/magisters-terrace/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["18/18 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"black-morass","title":"The Black Morass","mapId":269,"lfgDungeonIds":[171,182],"expansion":"burning-crusade","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[68,75],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[70,75],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Black Morass","theme":"Open-world expedition","summary":"Fight through The Black Morass, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Black Morass...","unchartedAreaName":"Uncharted The Black Morass","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":1800},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/269-cavernsoftime/visual.glb","checksum":"b5e16b91aad3f31362cbb99796db8d9e1810f761a96e4e05c55924e537bb5939","size":19687412,"triangleCount":2715546}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-000.glb","checksum":"801e14701ff19bde501b0022b1270c85394ddb52eb6b6b87ab97cf90f5e5c2e0","size":140536,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-001.glb","checksum":"2a22407412d36c90bfcf7ade663990cd19aa1f7caf2126a835862c2cea32174e","size":154528,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-002.glb","checksum":"46ef0199698499c6ac8e5600efc85089294382b7c89113ababebe5e5538a0f34","size":139512,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-003.glb","checksum":"4bf462ae69ae523a326227ed6a160d28813b2613c0096620120724435ba4d22c","size":160112,"triangleCount":65312},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-004.glb","checksum":"c679a9d87eb09ca0b27195876ef4b8518b5f046886436255dc6dfcef8063908f","size":224396,"triangleCount":19144},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-005.glb","checksum":"ed5da5f5289bd287303c35613a239c38b197463c45dfaa4d6cedc5c356d74c08","size":181632,"triangleCount":65328},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-006.glb","checksum":"6e2bb234a7c5a318e23d2bc7afa08f5014f098e522077b4e32c2067dde6169a2","size":30640,"triangleCount":502},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-007.glb","checksum":"8f330d4323bcbfa6cb9f64e63862e38b66fb86603d1b5c47bd5a27597c771864","size":160304,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-008.glb","checksum":"e0e2e71934bbc85b81ee447b648c3396e4bb2dd7a07d8418885687605b7493ef","size":147804,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-009.glb","checksum":"cf2d7b30f374aea8aaa2fe05fcc0a046cde3792ebb183ef5b1e08a7b5cfb536f","size":169808,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-010.glb","checksum":"2b6cce9e09ffc3f3985618bc9050edc978df62c2a6b1d40a2265e9aceaaeea59","size":147528,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-011.glb","checksum":"c337e69d296d6b2a7553b11b7fc60d6f610bc8355bb59b61d92c55ae024810d8","size":135932,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-012.glb","checksum":"75e11dc46d1474ecd2d0cd98f6b71d9d836608628a097dfb60ce8e14907dbf38","size":135856,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-013.glb","checksum":"c7416c09d9fdbaaf2e957e1412a2ba3f1bbaa1163cf6a33cd2e46a711d88a80d","size":136028,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-014.glb","checksum":"40d9029b10dd598720476413ce3e8e916830560ed83e08d954c2f36b3dabcbc3","size":135676,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-015.glb","checksum":"268ec708dcc35462e05020ccb5299aced279559df232700e844bf615ead7ce17","size":135496,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-016.glb","checksum":"943d1142ae1c628490121f2e186b656b16d265b208266229fbb57f09138ae9aa","size":136020,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-017.glb","checksum":"14e9233e16cd7f17f4b8a342a5757d970d82829b2748ea652a874383a0856016","size":135840,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-018.glb","checksum":"144b3fbe63c0916fcaf7299f243bbd4b0ec971fd7cfdfb85a4d704fef1f37de9","size":136016,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-019.glb","checksum":"fa2394a906ec3616bd649b4abddff8e12f659d633c159df2c37a7bfb69b9e994","size":135660,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-020.glb","checksum":"e28a442730d8409fc5f7963c522f899be3033b21c648e0a55ab56872cbff7014","size":135480,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-021.glb","checksum":"50bc20dc3314250d55804acce46a723ae4a77d67d9b4bfa11f004e16f814651e","size":135844,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-022.glb","checksum":"7bd1a647af6e7e5debe4f22ce64248a6fd562f7558e9a6da56f43a257a2a9f15","size":135664,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-023.glb","checksum":"edafce3ace2f98d578e10f81b8bc02f101dc9937dc1d1587a0499ae329afae41","size":135840,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-024.glb","checksum":"d7aa63f0bf75da4f8f954b70ab2a7bdecd83db1cc5ffd437a83e39f4831fca4a","size":135484,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-025.glb","checksum":"1b50f20eaeee6ba603b9ac357f2090b754960a9c78bda5b199a94173047fd222","size":135304,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-026.glb","checksum":"90f676c2d460ac82afb204be8ce282a5d76a383a4da50bce7d3cf7978e52a016","size":135640,"triangleCount":65536},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-027.glb","checksum":"aff560fcd0be7f5204b2fd7a877038410603fee01c224ecc4aed541ac63eed6b","size":135428,"triangleCount":65536},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-028.glb","checksum":"0b813454f8e7445332835f8bb68f59446e78358f9328e04b72dd430233d7c66d","size":135636,"triangleCount":65536},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-029.glb","checksum":"50fd31624485b5d23520b0f9d56b7cdb897783ab50372520affeda57bf6a34ba","size":135640,"triangleCount":65536},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-030.glb","checksum":"61a61c8f8a02537fafe05071646db824ee918225f74f071351b4098cce460780","size":135428,"triangleCount":65536},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-031.glb","checksum":"8937203d422c27f21fc0728fe0e75ffb4112ae81e85647fa925ff72982f7ee1d","size":135892,"triangleCount":65536},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-032.glb","checksum":"90265a543674dd0189ebcf8d5521fe627226960c21b346fdee5533f367803d14","size":135712,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-033.glb","checksum":"e4e547d02b6b2596956a0424c99b4a288a99354a6aee416da83918113a91363b","size":135888,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-034.glb","checksum":"0b78819783d2d11c1101d12d17c02bb7dfd05a46b0e8132a86893615b4326162","size":135484,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-035.glb","checksum":"e18c47e53b3ef2901489e2f51f89fd9bfbb56a5f9dd1bb2786d994c5fcfe42ab","size":135304,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-036.glb","checksum":"36b76c9f48c63eefb5b41a80ea6b3edcc6f2dd2f23b69c296d4c625e9eb9ce8e","size":136212,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-037.glb","checksum":"a8803c5330fdc3231c92277c55c369073477e2346eeb5631a788fa043bdf5865","size":136032,"triangleCount":65536},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-038.glb","checksum":"ae40683692853db8ac3a841fdeed942b1a7432ab46a04424e5ea6188d57d6fb4","size":136208,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-039.glb","checksum":"a7bb1a3ce22dee55fcdf56ff1dc97e406d3507634dceea3c630bf3ffe9c58af7","size":135708,"triangleCount":65536},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-040.glb","checksum":"4ae9455d9412d6ad65e079e64e649c1b6b8ab9dd70734ceda8e66e45333b2833","size":135528,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/269-cavernsoftime/navigation.glb","checksum":"0f84858ce2becdd3640c625a4a8686b67f37935f6773498399b797ca7734dc8b","size":1341420,"triangleCount":122696}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-1131.3432,178.2422,-6333.6072],"max":[7664.3268,703.3468,-1085.6671]},"entrance":{"name":"The Black Morass Entrance","footPosition":[7223.4668,213.8147,-2589.8672],"forward":[-0.10842740874401802,0,0.9941043692857695],"yaw":-0.10864099517343388},"areas":[{"id":"entrance","name":"The Black Morass Entrance","center":[7223.4668,213.8147,-2589.8672],"radius":35},{"id":"area-chrono-lord-deja","name":"Chrono Lord Deja's Encounter","center":[7125.5593,244.0726,-1429.5572],"radius":42},{"id":"area-temporus","name":"Temporus's Encounter","center":[7173.1857,228.9436,-1278.8963],"radius":42},{"id":"area-aeonus","name":"Aeonus's Encounter","center":[7223.6661,213.8147,-1132.9384],"radius":42}],"entities":{"entry-20201":{"id":"entry-20201","kind":"mob","name":"Sa'at","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-19411-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3845,"markerRadius":0.65}}},"entry-17952":{"id":"entry-17952","kind":"mob","name":"Darkwater Crocolisk","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"crocolisk","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-18417-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3439,"markerRadius":4.4659}}},"entry-18982":{"id":"entry-18982","kind":"mob","name":"Sable Jaguar","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-18416-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":1.9862,"markerRadius":1.5695}}},"entry-18983":{"id":"entry-18983","kind":"mob","name":"Blackfang Tarantula","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34365","name":"Ebon Poison","spellId":34365,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7060,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-1104-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.7238,"labelHeight":2.2023,"markerRadius":3.8008}}},"entry-17879":{"id":"entry-17879","kind":"boss","name":"Chrono Lord Deja","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31457","name":"Arcane Blast","spellId":31457,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4036,"damageMultiplier":1.35},{"id":"spell-31467","name":"Time Lapse","spellId":31467,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4036,"damageMultiplier":1.35},{"id":"spell-31472","name":"Arcane Discharge","spellId":31472,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4036,"damageMultiplier":1.35},{"id":"spell-38540","name":"Attraction","spellId":38540,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4036,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-20513-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.4038,"labelHeight":11.7179,"markerRadius":2.0782}}},"entry-17880":{"id":"entry-17880","kind":"boss","name":"Temporus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31458","name":"Hasten","spellId":31458,"delivery":"area","target":"self","school":"arcane","animation":"cast","range":0,"cooldownMs":7279,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-31458","durationMs":12000,"magnitude":0.25}},{"id":"spell-31464","name":"Mortal Wound","spellId":31464,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7279,"damageMultiplier":1.35},{"id":"spell-31475","name":"Wing Buffet","spellId":31475,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7279,"damageMultiplier":1.35},{"id":"spell-38592","name":"Spell Reflection","spellId":38592,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":7279,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-38592","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-19066-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.8598,"labelHeight":16.101,"markerRadius":4.5}}},"entry-17881":{"id":"entry-17881","kind":"boss","name":"Aeonus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-37853","name":"Corrupt Medivh","spellId":37853,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5126,"damageMultiplier":1.35},{"id":"spell-40504","name":"Cleave","spellId":40504,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5126,"damageMultiplier":0.82,"radius":11},{"id":"spell-31473","name":"Sand Breath","spellId":31473,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5126,"damageMultiplier":0.82,"radius":11},{"id":"spell-31422","name":"Time Stop","spellId":31422,"delivery":"projectile","target":"random-party","school":"arcane","animation":"cast","range":28,"cooldownMs":5126,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":2500}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-20510-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7842,"labelHeight":24.2655,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-31754","entityId":"entry-20201","position":[7302.3968,214.0717,-2640.6872],"yaw":-6.23083,"spawnMask":3},{"id":"creature-34091","entityId":"entry-17952","position":[7296.4768,198.8358,-2855.7072],"yaw":-2.19672,"spawnMask":3},{"id":"creature-34092","entityId":"entry-17952","position":[7422.9968,198.5993,-2804.8972],"yaw":-1.06958,"spawnMask":3},{"id":"creature-34093","entityId":"entry-17952","position":[7334.8968,198.9775,-2863.6672],"yaw":-3.90766,"spawnMask":3},{"id":"creature-34094","entityId":"entry-17952","position":[7255.2068,199.1902,-2856.3472],"yaw":-0.000674081,"spawnMask":3},{"id":"creature-34095","entityId":"entry-17952","position":[7314.9668,199.0318,-2820.6372],"yaw":-5.20659,"spawnMask":3},{"id":"creature-34126","entityId":"entry-17952","position":[7174.2368,198.5653,-2817.7672],"yaw":-1.81758,"spawnMask":3},{"id":"creature-34127","entityId":"entry-17952","position":[7209.4768,198.4832,-2789.3272],"yaw":-0.947027,"spawnMask":3},{"id":"creature-35224","entityId":"entry-17952","position":[7174.2768,199.1334,-2872.0072],"yaw":-1.06765,"spawnMask":3},{"id":"creature-35229","entityId":"entry-17952","position":[7385.1768,198.6233,-2774.0672],"yaw":-0.377931,"spawnMask":3},{"id":"creature-35239","entityId":"entry-17952","position":[7340.8568,199.049,-2780.2572],"yaw":-1.90489,"spawnMask":3},{"id":"creature-35240","entityId":"entry-17952","position":[7216.8668,199.1091,-2876.7072],"yaw":-1.95094,"spawnMask":3},{"id":"creature-35243","entityId":"entry-17952","position":[7144.7568,198.2422,-2847.8572],"yaw":-3.98153,"spawnMask":3},{"id":"creature-35246","entityId":"entry-17952","position":[7281.1468,198.9835,-2890.4972],"yaw":-0.418224,"spawnMask":3},{"id":"creature-35868","entityId":"entry-17952","position":[7375.0868,199.3099,-2865.5772],"yaw":-4.55405,"spawnMask":3},{"id":"creature-35870","entityId":"entry-17952","position":[7447.6568,198.7603,-2849.9872],"yaw":-2.4516,"spawnMask":3},{"id":"creature-35871","entityId":"entry-17952","position":[7488.9568,199.2223,-2843.0772],"yaw":-2.73567,"spawnMask":3},{"id":"creature-36693","entityId":"entry-17952","position":[7302.2768,198.9233,-2923.6472],"yaw":-5.66564,"spawnMask":3},{"id":"creature-36898","entityId":"entry-17952","position":[7188.9768,198.7932,-2902.1572],"yaw":-0.099366,"spawnMask":3},{"id":"creature-36904","entityId":"entry-17952","position":[7428.5068,198.7863,-2893.1772],"yaw":-2.17465,"spawnMask":3},{"id":"creature-36907","entityId":"entry-17952","position":[7068.3668,198.8866,-2851.1572],"yaw":-3.56329,"spawnMask":3},{"id":"creature-36924","entityId":"entry-17952","position":[7427.8468,202.0348,-2930.2172],"yaw":-3.67782,"spawnMask":3},{"id":"creature-36938","entityId":"entry-17952","position":[7526.6368,198.5832,-2840.7672],"yaw":-0.831668,"spawnMask":3},{"id":"creature-36942","entityId":"entry-17952","position":[7320.0068,198.821,-2958.5272],"yaw":-5.4093,"spawnMask":3},{"id":"creature-36943","entityId":"entry-17952","position":[7185.4068,198.5136,-2948.5472],"yaw":-3.95117,"spawnMask":3},{"id":"creature-36944","entityId":"entry-17952","position":[7457.9968,198.7855,-2922.1572],"yaw":-0.403142,"spawnMask":3},{"id":"creature-36956","entityId":"entry-17952","position":[7396.1968,198.8836,-2969.2172],"yaw":-0.143967,"spawnMask":3},{"id":"creature-36957","entityId":"entry-17952","position":[7424.2268,198.9717,-2966.4472],"yaw":-5.84313,"spawnMask":3},{"id":"creature-36958","entityId":"entry-17952","position":[7359.2168,198.8548,-2981.9972],"yaw":-0.918972,"spawnMask":3},{"id":"creature-37101","entityId":"entry-17952","position":[7557.1668,198.5778,-2859.9472],"yaw":-4.90902,"spawnMask":3},{"id":"creature-37540","entityId":"entry-17952","position":[7508.9068,198.8983,-2932.4372],"yaw":-3.56071,"spawnMask":3},{"id":"creature-37541","entityId":"entry-17952","position":[7422.6468,199.1434,-3002.6372],"yaw":-5.60558,"spawnMask":3},{"id":"creature-37554","entityId":"entry-17952","position":[7160.4668,198.5726,-2979.4672],"yaw":-5.71279,"spawnMask":3},{"id":"creature-37555","entityId":"entry-17952","position":[7235.6368,198.7856,-3004.1772],"yaw":-4.04679,"spawnMask":3},{"id":"creature-37587","entityId":"entry-17952","position":[7578.1368,198.6978,-2896.3972],"yaw":-2.65698,"spawnMask":3},{"id":"creature-37588","entityId":"entry-17952","position":[7424.5268,198.92,-3037.6272],"yaw":-0.893311,"spawnMask":3},{"id":"creature-37593","entityId":"entry-17952","position":[7529.4368,198.7908,-2966.4672],"yaw":-2.34422,"spawnMask":3},{"id":"creature-37594","entityId":"entry-17952","position":[7193.3668,198.916,-3014.8072],"yaw":-0.258715,"spawnMask":3},{"id":"creature-37597","entityId":"entry-17952","position":[7584.6168,198.9606,-2938.6272],"yaw":-2.1149,"spawnMask":3},{"id":"creature-37617","entityId":"entry-17952","position":[7571.1968,198.8682,-2978.8972],"yaw":-2.3182,"spawnMask":3},{"id":"creature-37618","entityId":"entry-17952","position":[7417.4868,200.5963,-3079.3672],"yaw":-3.84333,"spawnMask":3},{"id":"creature-37619","entityId":"entry-17952","position":[7383.9668,199.1063,-3086.8072],"yaw":-5.53164,"spawnMask":3},{"id":"creature-37621","entityId":"entry-17952","position":[7567.9468,198.9217,-3021.9072],"yaw":-4.4757,"spawnMask":3},{"id":"creature-37622","entityId":"entry-17952","position":[7436.3168,199.9309,-3096.2372],"yaw":-3.96222,"spawnMask":3},{"id":"creature-37623","entityId":"entry-17952","position":[7465.0568,199.2089,-3116.3472],"yaw":-3.88138,"spawnMask":3},{"id":"creature-37628","entityId":"entry-17952","position":[7578.2868,198.705,-3064.0972],"yaw":-0.318042,"spawnMask":3},{"id":"creature-37629","entityId":"entry-17952","position":[7429.4968,198.7333,-3147.8072],"yaw":-2.7129,"spawnMask":3},{"id":"creature-37630","entityId":"entry-17952","position":[7547.9568,198.7684,-3101.7872],"yaw":-4.34059,"spawnMask":3},{"id":"creature-37631","entityId":"entry-17952","position":[7513.3168,198.9345,-3117.7072],"yaw":-2.37483,"spawnMask":3},{"id":"creature-37632","entityId":"entry-17952","position":[7201.7568,198.7515,-3071.8772],"yaw":-0.938997,"spawnMask":3},{"id":"creature-37633","entityId":"entry-17952","position":[7402.4068,198.8719,-3164.7472],"yaw":-1.81564,"spawnMask":3},{"id":"creature-37634","entityId":"entry-17952","position":[7207.0968,198.5852,-3167.5972],"yaw":-5.18931,"spawnMask":3},{"id":"creature-37635","entityId":"entry-17952","position":[7177.0768,199.6654,-3146.8272],"yaw":-3.99677,"spawnMask":3},{"id":"creature-37636","entityId":"entry-17952","position":[7165.2068,198.4694,-3103.0172],"yaw":-5.58494,"spawnMask":3},{"id":"creature-37637","entityId":"entry-17952","position":[7127.7468,199.0786,-3117.6072],"yaw":-2.31268,"spawnMask":3},{"id":"creature-37638","entityId":"entry-17952","position":[7085.2668,198.8313,-3110.3872],"yaw":-5.5877,"spawnMask":3},{"id":"creature-37639","entityId":"entry-17952","position":[7117.5368,199.0261,-3026.0872],"yaw":-4.35944,"spawnMask":3},{"id":"creature-37640","entityId":"entry-17952","position":[7054.0668,198.4838,-3100.1972],"yaw":-3.25168,"spawnMask":3},{"id":"creature-37641","entityId":"entry-17952","position":[7034.2968,198.7098,-3068.1972],"yaw":-3.91042,"spawnMask":3},{"id":"creature-37642","entityId":"entry-17952","position":[7031.1568,198.6085,-2929.7572],"yaw":-3.47528,"spawnMask":3},{"id":"creature-37643","entityId":"entry-17952","position":[7039.5868,198.8162,-2878.1172],"yaw":-5.66144,"spawnMask":3},{"id":"creature-37644","entityId":"entry-18982","position":[7055.8168,203.7367,-2761.2772],"yaw":-1.42863,"spawnMask":3},{"id":"creature-37645","entityId":"entry-18982","position":[7242.3668,203.7362,-2743.4072],"yaw":-1.59626,"spawnMask":3},{"id":"creature-37646","entityId":"entry-18982","position":[7202.4168,203.5985,-2843.3772],"yaw":-2.43076,"spawnMask":3},{"id":"creature-37648","entityId":"entry-18982","position":[7276.6468,203.9641,-2782.9572],"yaw":-2.65784,"spawnMask":3},{"id":"creature-37649","entityId":"entry-18982","position":[7125.7668,203.6284,-2796.4272],"yaw":-1.82951,"spawnMask":3},{"id":"creature-37650","entityId":"entry-18982","position":[7296.2868,204.1968,-2802.4772],"yaw":-2.56145,"spawnMask":3},{"id":"creature-37651","entityId":"entry-18982","position":[7266.8768,203.8253,-2831.2572],"yaw":-5.52243,"spawnMask":3},{"id":"creature-37652","entityId":"entry-18982","position":[7159.2868,203.5254,-2791.7372],"yaw":-0.612646,"spawnMask":3},{"id":"creature-37653","entityId":"entry-18982","position":[7257.5068,203.9201,-2902.0072],"yaw":-0.632959,"spawnMask":3},{"id":"creature-37654","entityId":"entry-18982","position":[7362.4768,204.6849,-2886.1372],"yaw":-0.751588,"spawnMask":3},{"id":"creature-37655","entityId":"entry-18982","position":[7534.8868,203.8404,-2744.8572],"yaw":-4.63022,"spawnMask":3},{"id":"creature-37656","entityId":"entry-18982","position":[7512.1168,204.0331,-2774.4972],"yaw":-0.616164,"spawnMask":3},{"id":"creature-37657","entityId":"entry-18982","position":[7349.9668,202.7495,-2917.3772],"yaw":-0.0686878,"spawnMask":3},{"id":"creature-37658","entityId":"entry-18982","position":[7108.1368,204.1336,-2872.7372],"yaw":-0.592334,"spawnMask":3},{"id":"creature-37659","entityId":"entry-18982","position":[7377.8568,204.1484,-2945.2672],"yaw":-5.29552,"spawnMask":3},{"id":"creature-37660","entityId":"entry-18982","position":[7542.1268,203.3512,-2815.1372],"yaw":-1.95094,"spawnMask":3},{"id":"creature-37661","entityId":"entry-18982","position":[7132.8868,209.1108,-2964.8172],"yaw":-1.22186,"spawnMask":3},{"id":"creature-37662","entityId":"entry-18982","position":[7532.9968,205.9731,-2889.3572],"yaw":-2.20744,"spawnMask":3},{"id":"creature-37663","entityId":"entry-18982","position":[7379.9268,204.0565,-3020.2472],"yaw":-3.99618,"spawnMask":3},{"id":"creature-37664","entityId":"entry-18982","position":[7492.5768,203.9395,-2956.9572],"yaw":-0.759834,"spawnMask":3},{"id":"creature-37665","entityId":"entry-18982","position":[7585.0568,203.958,-2830.1872],"yaw":-5.05082,"spawnMask":3},{"id":"creature-37666","entityId":"entry-18982","position":[7617.4668,204.1599,-2914.1672],"yaw":-2.15663,"spawnMask":3},{"id":"creature-37667","entityId":"entry-18982","position":[7413.0368,203.8841,-3117.0972],"yaw":-2.4156,"spawnMask":3},{"id":"creature-37668","entityId":"entry-18982","position":[7449.5668,201.9554,-2960.0072],"yaw":-1.07176,"spawnMask":3},{"id":"creature-37669","entityId":"entry-18982","position":[7507.4568,206.2633,-3007.1572],"yaw":-1.48473,"spawnMask":3},{"id":"creature-37670","entityId":"entry-18982","position":[7540.5268,203.0353,-2945.0672],"yaw":-5.81954,"spawnMask":3},{"id":"creature-37671","entityId":"entry-18982","position":[7121.3868,206.4996,-2922.9272],"yaw":-4.37212,"spawnMask":3},{"id":"creature-37672","entityId":"entry-18982","position":[7184.4968,202.5313,-3039.8872],"yaw":-5.34075,"spawnMask":3},{"id":"creature-37673","entityId":"entry-18982","position":[7575.8968,205.8497,-3146.8872],"yaw":-3.6,"spawnMask":3},{"id":"creature-37674","entityId":"entry-18982","position":[7437.4568,204.689,-3183.1272],"yaw":-3.32214,"spawnMask":3},{"id":"creature-37675","entityId":"entry-18982","position":[7545.6268,205.1015,-3218.7772],"yaw":-2.27179,"spawnMask":3},{"id":"creature-37676","entityId":"entry-18982","position":[7494.0068,205.8021,-3207.9372],"yaw":-0.601749,"spawnMask":3},{"id":"creature-37677","entityId":"entry-18982","position":[7401.2968,205.0792,-3209.8172],"yaw":-2.76885,"spawnMask":3},{"id":"creature-37678","entityId":"entry-18982","position":[7226.5868,203.8388,-3216.2072],"yaw":-2.58309,"spawnMask":3},{"id":"creature-37679","entityId":"entry-18982","position":[7091.7968,203.6569,-3179.9472],"yaw":-0.342761,"spawnMask":3},{"id":"creature-37680","entityId":"entry-18982","position":[7095.1768,204.5815,-3079.0072],"yaw":-0.682109,"spawnMask":3},{"id":"creature-37681","entityId":"entry-18982","position":[7042.7968,206.1673,-3145.9372],"yaw":-2.17776,"spawnMask":3},{"id":"creature-37682","entityId":"entry-18982","position":[7002.0568,207.9847,-3164.1772],"yaw":-4.02941,"spawnMask":3},{"id":"creature-37683","entityId":"entry-18982","position":[7055.0068,205.7471,-3027.8972],"yaw":-3.03007,"spawnMask":3},{"id":"creature-37684","entityId":"entry-18983","position":[7401.1568,203.9634,-2830.3772],"yaw":-0.973587,"spawnMask":3},{"id":"creature-37685","entityId":"entry-18983","position":[7377.6768,203.1994,-2741.1372],"yaw":-5.74528,"spawnMask":3},{"id":"creature-37686","entityId":"entry-18983","position":[7317.9568,204.9188,-2755.6072],"yaw":-5.46808,"spawnMask":3},{"id":"creature-37687","entityId":"entry-18983","position":[7373.1868,203.5533,-2792.3672],"yaw":-0.896535,"spawnMask":3},{"id":"creature-37688","entityId":"entry-18983","position":[7353.3268,204.1313,-2825.4472],"yaw":-2.62644,"spawnMask":3},{"id":"creature-37689","entityId":"entry-18983","position":[7094.2368,203.5585,-2772.1172],"yaw":-0.917722,"spawnMask":3},{"id":"creature-37690","entityId":"entry-18983","position":[7012.4368,206.1407,-2764.4972],"yaw":-2.11222,"spawnMask":3},{"id":"creature-37691","entityId":"entry-18983","position":[7232.4168,204.6359,-2807.3272],"yaw":-5.32623,"spawnMask":3},{"id":"creature-37692","entityId":"entry-18983","position":[7072.5568,203.4213,-2810.3872],"yaw":-2.35965,"spawnMask":3},{"id":"creature-37694","entityId":"entry-18983","position":[7324.5368,203.3277,-2888.0072],"yaw":-0.885685,"spawnMask":3},{"id":"creature-37695","entityId":"entry-18983","position":[7390.1568,204.0701,-2896.6372],"yaw":-5.5109,"spawnMask":3},{"id":"creature-37698","entityId":"entry-18983","position":[7141.8068,203.5781,-2907.6072],"yaw":-0.890564,"spawnMask":3},{"id":"creature-37699","entityId":"entry-18983","position":[7203.8768,205.1563,-2974.0572],"yaw":-2.43011,"spawnMask":3},{"id":"creature-37700","entityId":"entry-18983","position":[7538.4468,203.7632,-2913.9772],"yaw":-0.173823,"spawnMask":3},{"id":"creature-37708","entityId":"entry-18983","position":[7071.8868,204.79,-2907.1772],"yaw":-6.19349,"spawnMask":3},{"id":"creature-37715","entityId":"entry-18983","position":[7343.0268,203.2194,-3023.1172],"yaw":-2.3432,"spawnMask":3},{"id":"creature-37929","entityId":"entry-18983","position":[7251.1168,204.2271,-3030.3572],"yaw":-5.33343,"spawnMask":3},{"id":"creature-38087","entityId":"entry-18983","position":[7600.8668,206.4046,-2764.5772],"yaw":-0.524805,"spawnMask":3},{"id":"creature-38182","entityId":"entry-18983","position":[7619.3268,203.9942,-2848.8072],"yaw":-5.55371,"spawnMask":3},{"id":"creature-38238","entityId":"entry-18983","position":[7469.7668,204.1017,-3047.4272],"yaw":-0.551143,"spawnMask":3},{"id":"creature-38257","entityId":"entry-18983","position":[7596.9068,203.4726,-2982.8072],"yaw":-3.87383,"spawnMask":3},{"id":"creature-38312","entityId":"entry-18983","position":[7540.6068,204.8123,-3040.5572],"yaw":-5.65336,"spawnMask":3},{"id":"creature-38313","entityId":"entry-18983","position":[7509.1668,205.121,-3072.9072],"yaw":-0.325149,"spawnMask":3},{"id":"creature-38326","entityId":"entry-18983","position":[7608.5668,205.6287,-3057.3072],"yaw":-3.93183,"spawnMask":3},{"id":"creature-38347","entityId":"entry-18983","position":[7485.7568,204.3757,-3156.5872],"yaw":-5.46532,"spawnMask":3},{"id":"creature-38381","entityId":"entry-18983","position":[7537.4968,204.0807,-3173.5972],"yaw":-0.350751,"spawnMask":3},{"id":"creature-38403","entityId":"entry-18983","position":[7500.0368,205.1578,-3196.5872],"yaw":-3.74448,"spawnMask":3},{"id":"creature-38404","entityId":"entry-18983","position":[7593.2468,205.1229,-3188.5172],"yaw":-3.78978,"spawnMask":3},{"id":"creature-38419","entityId":"entry-18983","position":[7244.8768,203.082,-3172.5672],"yaw":-0.512366,"spawnMask":3},{"id":"creature-38420","entityId":"entry-18983","position":[7134.3168,204.847,-3062.3472],"yaw":-3.94364,"spawnMask":3},{"id":"creature-38450","entityId":"entry-18983","position":[7040.5868,204.2767,-3194.0272],"yaw":-2.32129,"spawnMask":3},{"id":"creature-38451","entityId":"entry-18983","position":[7084.9068,206.0528,-3010.6772],"yaw":-4.79575,"spawnMask":3},{"id":"creature-38452","entityId":"entry-18983","position":[7084.8768,210.2581,-2973.5072],"yaw":-3.81908,"spawnMask":3},{"id":"creature-38453","entityId":"entry-18983","position":[7009.6768,204.4177,-2856.5872],"yaw":-5.67838,"spawnMask":3},{"id":"encounter-287","entityId":"entry-17879","position":[7125.5593,244.0726,-1429.5572],"yaw":0,"spawnMask":1},{"id":"encounter-289","entityId":"entry-17880","position":[7173.1857,228.9436,-1278.8963],"yaw":0,"spawnMask":1},{"id":"encounter-291","entityId":"entry-17881","position":[7223.6661,213.8147,-1132.9384],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-37647","name":"Sable Jaguar Patrol","speed":1.15,"pathId":376470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-998.8132,682.7498,-6038.2972],[-938.2232,682.9498,-6012.4572],[-926.9532,683.3468,-5982.9672],[-938.0932,682.9488,-6012.6672]],"members":[{"id":"member","entityId":"entry-18982","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-37693","name":"Blackfang Tarantula Patrol","speed":1.15,"pathId":376930,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-578.5162,670.7718,-6146.8472],[-632.0722,676.3798,-6123.1272],[-613.5652,676.3798,-6148.8972],[-589.4252,674.9998,-6143.9572],[-558.0282,657.5278,-6166.8072],[-555.2302,652.0178,-6183.3672],[-557.9482,657.1348,-6167.8972]],"members":[{"id":"member","entityId":"entry-18983","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-37696","name":"Blackfang Tarantula Patrol","speed":1.15,"pathId":376960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-548.3382,629.0398,-6273.8672],[-552.6242,648.1538,-6197.5572],[-546.9862,629.0688,-6273.3672],[-532.1832,625.1388,-6288.6072],[-534.8742,625.9998,-6286.2472]],"members":[{"id":"member","entityId":"entry-18983","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-37697","name":"Blackfang Tarantula Patrol","speed":1.15,"pathId":376970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1072.1532,682.9108,-5800.0872],[-1043.5532,682.9108,-5793.0072],[-1030.4032,682.9108,-5810.6172],[-1052.3432,682.9088,-5838.9072],[-1078.3632,682.9098,-5837.0072],[-1086.3432,682.9098,-5819.5672]],"members":[{"id":"member","entityId":"entry-18983","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"encounter-287","name":"Chrono Lord Deja","position":[7125.5593,244.0726,-1429.5572]},{"id":"encounter-289","name":"Temporus","position":[7173.1857,228.9436,-1278.8963]},{"id":"encounter-291","name":"Aeonus","position":[7223.6661,213.8147,-1132.9384]}],"objectiveOrder":[{"id":"encounter-287","name":"Chrono Lord Deja","position":[7125.5593,244.0726,-1429.5572]},{"id":"encounter-289","name":"Temporus","position":[7173.1857,228.9436,-1278.8963]},{"id":"encounter-291","name":"Aeonus","position":[7223.6661,213.8147,-1132.9384]}],"navigationLinks":[],"serverGameObjects":[],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/black-morass/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["7/7 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"escape-from-durnholde","title":"The Escape From Durnholde","mapId":560,"lfgDungeonIds":[170,183],"expansion":"burning-crusade","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[64,73],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[70,75],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Escape From Durnholde","theme":"Open-world expedition","summary":"Fight through The Escape From Durnholde, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Escape From Durnholde...","unchartedAreaName":"Uncharted The Escape From Durnholde","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":1800},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/560-hillsbradpast/visual.glb","checksum":"7acb0e48dc7bd53b7b12c60ade81500d4bf63efb2ba6fde5526f2bd6a2188070","size":58635348,"triangleCount":3443261}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-000.glb","checksum":"1126701e5a65a41983831e1a1561c75282e77fe60cf9484706f08776a9964ef4","size":1311976,"triangleCount":95659},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-001.glb","checksum":"29c67a9c1fc0d3995b6712b24758b99311c0dc93bdceb90450c575d0e665f1c2","size":1060316,"triangleCount":94209},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-002.glb","checksum":"bd834c286000959a23fd3d5fe81683a10a5c1de9985e2e56af8d4ba409ac9816","size":1313744,"triangleCount":96171},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-003.glb","checksum":"e03c45f7057dd273445b44fe56db2a6d884d949e42d1f3a0c5cd8a345338e4cb","size":1471908,"triangleCount":98608},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-004.glb","checksum":"8c79e9adde36f3dd8eee687fb52c0f8c1fd2a5e200afa0d3a832ce6ad105311c","size":1064172,"triangleCount":96072},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-005.glb","checksum":"54286b188bbb328feaad9700d37928b04edfded7b349a07c93f2b06949070007","size":1346316,"triangleCount":98184},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-006.glb","checksum":"44bcf1f4d09a7cb89c8661cf17e54cee58eb2e3b0985fca9fcc9ff40bf2a885f","size":1025712,"triangleCount":93344},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-007.glb","checksum":"c341dd602d1eba7b0bd0e1b52b4093cb898791e22e785ee3b5f4c4e3ac593e71","size":1437012,"triangleCount":99589},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-008.glb","checksum":"cafadbe8cefcd6aba2358cd084c7a9a63d7ec8b0bc85b2577ca4548f8b892789","size":1381444,"triangleCount":98845},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-009.glb","checksum":"388ab690649b35e2a54cbd970e58af4202304e0651574fafdef811994ab3297e","size":1361276,"triangleCount":94066},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-010.glb","checksum":"73c91175d1578989b67445fe898613aaf7045ad93b2edb1a73272aa0cb5a191e","size":558268,"triangleCount":22335}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/560-hillsbradpast/navigation.glb","checksum":"9ed694e1702f3902ad27dccf60641a2ab8636d570d9baaca6b467bd6db218432","size":11508184,"triangleCount":967781}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-228.4322,3.832,2544.5636],"max":[2646.3758,175.2878,3768.2836]},"entrance":{"name":"The Escape From Durnholde Entrance","footPosition":[1247.5798,60.8821,3683.4536],"forward":[0.9954661193868847,0,-0.09511679742725064],"yaw":1.6660571348280568},"areas":[{"id":"entrance","name":"The Escape From Durnholde Entrance","center":[1247.5798,60.8821,3683.4536],"radius":35},{"id":"area-lieutenant-drake","name":"Lieutenant Drake's Encounter","center":[2173.6114,24.858,3599.6707],"radius":42},{"id":"area-captain-skarloc","name":"Captain Skarloc's Encounter","center":[2386.0666,27.195,3591.1638],"radius":42},{"id":"area-epoch-hunter","name":"Epoch Hunter's Encounter","center":[2601.3758,29.532,3577.9538],"radius":42}],"entities":{"entry-28132":{"id":"entry-28132","kind":"mob","name":"Don Carlos","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.434272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-25124-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-17819":{"id":"entry-17819","kind":"mob","name":"Durnholde Sentry","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17999-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-2267":{"id":"entry-2267","kind":"mob","name":"Hillsbrad Peasant","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6016","name":"Pierce Armor","spellId":6016,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4878,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-11035-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-17815":{"id":"entry-17815","kind":"mob","name":"Lordaeron Sentry","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17947-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-17814":{"id":"entry-17814","kind":"mob","name":"Lordaeron Watchman","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17959-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-17820":{"id":"entry-17820","kind":"mob","name":"Durnholde Rifleman","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17979-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-17833":{"id":"entry-17833","kind":"mob","name":"Durnholde Warden","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18008-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-18657":{"id":"entry-18657","kind":"mob","name":"Tarren Mill Fisherman","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18053-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-18598":{"id":"entry-18598","kind":"mob","name":"Orc Prisoner","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18023-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-2350":{"id":"entry-2350","kind":"mob","name":"Forest Moss Creeper","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3396","name":"Corrosive Poison","spellId":3396,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6105,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-1989-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.535,"labelHeight":1.7191,"markerRadius":2.8093}}},"entry-18644":{"id":"entry-18644","kind":"mob","name":"Tarren Mill Peasant","combat":{"level":15,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-11354-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2724,"markerRadius":0.65}}},"entry-2354":{"id":"entry-2354","kind":"mob","name":"Vicious Gray Bear","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-1007-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":2.5048,"markerRadius":1.4217}}},"entry-2385":{"id":"entry-2385","kind":"mob","name":"Feral Mountain Lion","combat":{"level":28,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-1056-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0062,"labelHeight":1.7728,"markerRadius":1.3648}}},"entry-20420":{"id":"entry-20420","kind":"mob","name":"Overwatch Mark 0","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-5299-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.8182,"markerRadius":1.1796}}},"entry-20419":{"id":"entry-20419","kind":"mob","name":"Zixil","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-7133-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0029,"labelHeight":1.6801,"markerRadius":0.65}}},"entry-2408":{"id":"entry-2408","kind":"mob","name":"Snapjaw","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/7fd512b6d0b4caacdaa0d47f61101dffccbe0c7f14b6c6cd3022c55c73d2fe72.glb","rotationY":-1.5707963267948966,"groundOffset":0.0159,"labelHeight":2.7541,"markerRadius":1.7458}}},"entry-17840":{"id":"entry-17840","kind":"mob","name":"Durnholde Tracking Hound","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-780-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2212,"markerRadius":1.5058}}},"entry-17860":{"id":"entry-17860","kind":"mob","name":"Durnholde Veteran","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18004-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-18764":{"id":"entry-18764","kind":"mob","name":"Durnholde Armorer","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18160-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-18765":{"id":"entry-18765","kind":"mob","name":"Durnholde Cook","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18161-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-17846":{"id":"entry-17846","kind":"mob","name":"Pit Spectator","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-11898-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-18673":{"id":"entry-18673","kind":"mob","name":"Pit Announcer","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-11898-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-17876":{"id":"entry-17876","kind":"mob","name":"Thrall","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32890","name":"Knockout","spellId":32890,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7466,"damageMultiplier":1.12},{"id":"spell-33790","name":"Salvation","spellId":33790,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7466,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17292-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-18094":{"id":"entry-18094","kind":"mob","name":"Tarren Mill Lookout","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18252-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-18093":{"id":"entry-18093","kind":"mob","name":"Tarren Mill Protector","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18265-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-18092":{"id":"entry-18092","kind":"mob","name":"Tarren Mill Guardsman","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18247-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-17848":{"id":"entry-17848","kind":"boss","name":"Lieutenant Drake","title":"Dungeon Boss","hasLoot":true,"combat":{"level":68,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-31909","name":"Whirlwind","spellId":31909,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5412,"damageMultiplier":0.82,"radius":11},{"id":"spell-33789","name":"Frightening Shout","spellId":33789,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5412,"damageMultiplier":1.35},{"id":"spell-31911","name":"Mortal Strike","spellId":31911,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5412,"damageMultiplier":1.35},{"id":"spell-9080","name":"Hamstring","spellId":9080,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5412,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"winged","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0009,"labelHeight":3.1165,"markerRadius":0.65}}},"entry-17862":{"id":"entry-17862","kind":"boss","name":"Captain Skarloc","title":"Dungeon Boss","hasLoot":true,"combat":{"level":68,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4109,"damageMultiplier":1.35},{"id":"spell-29427","name":"Holy Light","spellId":29427,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4109,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-29380","name":"Cleanse","spellId":29380,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4109,"damageMultiplier":1.35},{"id":"spell-13005","name":"Hammer of Justice","spellId":13005,"delivery":"projectile","target":"random-party","school":"holy","animation":"cast","range":28,"cooldownMs":4109,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":2500}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17387-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.001,"labelHeight":3.3368,"markerRadius":0.6975}}},"entry-18096":{"id":"entry-18096","kind":"boss","name":"Epoch Hunter","title":"Dungeon Boss","hasLoot":true,"combat":{"level":68,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-31914","name":"Sand Breath","spellId":31914,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6185,"damageMultiplier":0.82,"radius":11},{"id":"spell-31916","name":"Impending Death","spellId":31916,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6185,"damageMultiplier":1.35},{"id":"spell-33834","name":"Magic Disruption Aura","spellId":33834,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6185,"damageMultiplier":1.35},{"id":"spell-31475","name":"Wing Buffet","spellId":31475,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6185,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-19135-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.3816,"labelHeight":11.9608,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-6998","entityId":"entry-17819","position":[191.7788,111.9373,3199.0436],"yaw":-1.53443,"spawnMask":3},{"id":"creature-11562","entityId":"entry-2267","position":[534.3478,77.3109,2706.5036],"yaw":-3.17157,"spawnMask":3},{"id":"creature-31908","entityId":"entry-17815","position":[809.8918,139.5987,3273.0536],"yaw":-5.40667,"spawnMask":3},{"id":"creature-40162","entityId":"entry-17815","position":[1096.8898,78.472,2908.9736],"yaw":-3.0901,"spawnMask":3},{"id":"creature-41813","entityId":"entry-17815","position":[468.9778,112.2847,3006.9336],"yaw":-2.63777,"spawnMask":3},{"id":"creature-42939","entityId":"entry-17815","position":[465.3398,147.3708,3011.1436],"yaw":-5.98592,"spawnMask":3},{"id":"creature-44653","entityId":"entry-17814","position":[841.6358,104.5041,3271.1636],"yaw":-1.24327,"spawnMask":3},{"id":"creature-44656","entityId":"entry-17814","position":[837.7728,104.5041,3282.8036],"yaw":-1.23542,"spawnMask":3},{"id":"creature-46842","entityId":"entry-17814","position":[812.6328,104.5116,3269.5136],"yaw":-1.21893,"spawnMask":3},{"id":"creature-46850","entityId":"entry-17814","position":[815.7058,104.5122,3264.5836],"yaw":-1.13254,"spawnMask":3},{"id":"creature-47583","entityId":"entry-17814","position":[811.8728,139.5987,3260.1536],"yaw":-3.75341,"spawnMask":3},{"id":"creature-47894","entityId":"entry-17814","position":[825.0188,139.5987,3262.7736],"yaw":-2.26508,"spawnMask":3},{"id":"creature-47895","entityId":"entry-17814","position":[1266.2698,94.1857,3044.9736],"yaw":-0.473587,"spawnMask":3},{"id":"creature-47896","entityId":"entry-17814","position":[1266.2698,94.1857,3044.9736],"yaw":-0.516784,"spawnMask":3},{"id":"creature-48006","entityId":"entry-17814","position":[99.2198,113.2601,2856.8636],"yaw":-3.42276,"spawnMask":3},{"id":"creature-48007","entityId":"entry-17814","position":[99.2198,113.2601,2856.8636],"yaw":-3.46203,"spawnMask":3},{"id":"creature-48008","entityId":"entry-17814","position":[992.0798,54.3396,2726.7336],"yaw":-3.25782,"spawnMask":3},{"id":"creature-48009","entityId":"entry-17814","position":[992.0798,54.3396,2726.7336],"yaw":-3.2539,"spawnMask":3},{"id":"creature-48012","entityId":"entry-17814","position":[1109.7698,78.472,2907.7536],"yaw":-3.0901,"spawnMask":3},{"id":"creature-48013","entityId":"entry-17814","position":[1100.9398,113.5662,2940.5936],"yaw":-5.78328,"spawnMask":3},{"id":"creature-48014","entityId":"entry-17814","position":[1113.1398,113.5662,2937.5936],"yaw":-1.01199,"spawnMask":3},{"id":"creature-48015","entityId":"entry-17814","position":[484.4398,112.2758,2982.5836],"yaw":-2.46811,"spawnMask":3},{"id":"creature-48016","entityId":"entry-17814","position":[473.7468,112.2759,2977.6336],"yaw":-2.52702,"spawnMask":3},{"id":"creature-48017","entityId":"entry-17814","position":[463.8168,112.2852,3001.4136],"yaw":-2.39036,"spawnMask":3},{"id":"creature-48019","entityId":"entry-17814","position":[459.3068,147.3708,2999.8436],"yaw":-4.40884,"spawnMask":3},{"id":"creature-48020","entityId":"entry-17814","position":[477.1758,147.3708,3004.2136],"yaw":-1.40784,"spawnMask":3},{"id":"creature-48021","entityId":"entry-17814","position":[638.6218,102.9729,3580.8636],"yaw":-1.14394,"spawnMask":3},{"id":"creature-48022","entityId":"entry-17814","position":[638.6218,102.9729,3580.8636],"yaw":-1.03005,"spawnMask":3},{"id":"creature-77806","entityId":"entry-17819","position":[196.4648,111.7343,3198.3736],"yaw":-4.74278,"spawnMask":3},{"id":"creature-77816","entityId":"entry-17819","position":[-22.9499,99.2819,3031.9336],"yaw":-4.33673,"spawnMask":3},{"id":"creature-77817","entityId":"entry-17819","position":[16.197,99.3259,2996.8036],"yaw":-3.67686,"spawnMask":3},{"id":"creature-77820","entityId":"entry-17820","position":[188.7198,99.2809,3133.4136],"yaw":-4.17236,"spawnMask":3},{"id":"creature-77854","entityId":"entry-17833","position":[186.0658,99.2808,3137.3636],"yaw":-4.13466,"spawnMask":3},{"id":"creature-81626","entityId":"entry-18657","position":[672.5578,101.2588,3345.7836],"yaw":-4.2586,"spawnMask":3},{"id":"creature-81627","entityId":"entry-18657","position":[679.8418,101.1092,3338.5836],"yaw":-4.18879,"spawnMask":3},{"id":"creature-81628","entityId":"entry-18657","position":[676.7588,101.2178,3341.5636],"yaw":-3.92699,"spawnMask":3},{"id":"creature-83456","entityId":"entry-18598","position":[23.1632,100.5492,3046.5836],"yaw":-2.03389,"spawnMask":3},{"id":"creature-83457","entityId":"entry-17819","position":[28.6648,138.5592,3172.0836],"yaw":-1.13016,"spawnMask":3},{"id":"creature-83460","entityId":"entry-2350","position":[678.3648,72.2574,2894.1936],"yaw":-5.68814,"spawnMask":3},{"id":"creature-83461","entityId":"entry-2350","position":[650.4508,70.9766,2857.3936],"yaw":-2.02028,"spawnMask":3},{"id":"creature-83462","entityId":"entry-2350","position":[647.5618,69.1644,2724.3536],"yaw":-4.31955,"spawnMask":3},{"id":"creature-83463","entityId":"entry-2350","position":[711.8548,59.8344,2596.0536],"yaw":-0.977917,"spawnMask":3},{"id":"creature-83464","entityId":"entry-2350","position":[711.3748,65.8221,2791.4836],"yaw":-4.60475,"spawnMask":3},{"id":"creature-83465","entityId":"entry-2350","position":[751.5118,65.6687,2689.1836],"yaw":-2.36586,"spawnMask":3},{"id":"creature-83466","entityId":"entry-2350","position":[883.8378,86.2929,3023.6836],"yaw":-2.37553,"spawnMask":3},{"id":"creature-83467","entityId":"entry-2350","position":[-53.4322,117.9519,3226.2436],"yaw":-5.36487,"spawnMask":3},{"id":"creature-83468","entityId":"entry-2350","position":[178.3528,110.0999,2787.3336],"yaw":-4.00715,"spawnMask":3},{"id":"creature-83469","entityId":"entry-2350","position":[347.2628,99.1064,2760.2236],"yaw":-6.09652,"spawnMask":3},{"id":"creature-83470","entityId":"entry-2350","position":[482.3688,90.9587,2825.1736],"yaw":-1.04596,"spawnMask":3},{"id":"creature-83471","entityId":"entry-2350","position":[380.5448,98.6251,2788.3136],"yaw":-3.59038,"spawnMask":3},{"id":"creature-83472","entityId":"entry-2350","position":[84.6918,111.4492,2893.0836],"yaw":-0.805437,"spawnMask":3},{"id":"creature-83473","entityId":"entry-2350","position":[512.7908,89.8262,2853.6136],"yaw":-2.96296,"spawnMask":3},{"id":"creature-83478","entityId":"entry-2350","position":[250.1498,108.2756,2789.9736],"yaw":-1.04427,"spawnMask":3},{"id":"creature-83479","entityId":"entry-2350","position":[213.9578,111.1486,2892.0736],"yaw":-5.69789,"spawnMask":3},{"id":"creature-83480","entityId":"entry-2350","position":[283.3428,106.6545,2892.8936],"yaw":-0.804733,"spawnMask":3},{"id":"creature-83481","entityId":"entry-2350","position":[351.2318,105.6637,2895.2336],"yaw":-0.635564,"spawnMask":3},{"id":"creature-83482","entityId":"entry-2350","position":[350.5258,109.1268,2955.9536],"yaw":-2.33134,"spawnMask":3},{"id":"creature-83483","entityId":"entry-2350","position":[246.6638,101.4586,3060.1836],"yaw":-5.47293,"spawnMask":3},{"id":"creature-83484","entityId":"entry-2350","position":[-14.7039,138.1293,3323.7836],"yaw":-0.942144,"spawnMask":3},{"id":"creature-83485","entityId":"entry-2350","position":[11.56,129.5929,3294.9436],"yaw":-5.52197,"spawnMask":3},{"id":"creature-83486","entityId":"entry-2350","position":[143.6698,139.8664,3351.4036],"yaw":-4.32481,"spawnMask":3},{"id":"creature-83487","entityId":"entry-2350","position":[179.7188,155.2878,3452.9636],"yaw":-4.00789,"spawnMask":3},{"id":"creature-83488","entityId":"entry-2350","position":[213.5648,131.6588,3358.8136],"yaw":-1.18231,"spawnMask":3},{"id":"creature-83489","entityId":"entry-2350","position":[212.9838,118.845,3289.8236],"yaw":-3.78919,"spawnMask":3},{"id":"creature-83490","entityId":"entry-2350","position":[311.8398,111.3009,3493.5636],"yaw":-3.31613,"spawnMask":3},{"id":"creature-83491","entityId":"entry-2350","position":[311.5438,109.5718,3059.9336],"yaw":-5.20051,"spawnMask":3},{"id":"creature-83492","entityId":"entry-2350","position":[285.0018,112.5679,3289.5536],"yaw":-2.09479,"spawnMask":3},{"id":"creature-83493","entityId":"entry-2350","position":[284.7118,102.1282,3156.1536],"yaw":-2.36349,"spawnMask":3},{"id":"creature-83494","entityId":"entry-2350","position":[350.3508,102.7745,3157.5336],"yaw":-2.50375,"spawnMask":3},{"id":"creature-83495","entityId":"entry-2350","position":[410.4668,109.4586,3094.3436],"yaw":-5.55995,"spawnMask":3},{"id":"creature-83496","entityId":"entry-2350","position":[416.4198,103.6092,3151.4636],"yaw":-3.13964,"spawnMask":3},{"id":"creature-83503","entityId":"entry-18644","position":[639.9108,102.2278,3481.7836],"yaw":-5.10901,"spawnMask":3},{"id":"creature-83504","entityId":"entry-18644","position":[630.7538,102.1667,3474.9736],"yaw":-2.46143,"spawnMask":3},{"id":"creature-83505","entityId":"entry-18644","position":[667.3558,102.1028,3501.6636],"yaw":-1.04771,"spawnMask":3},{"id":"creature-83512","entityId":"entry-18644","position":[673.8248,102.1028,3520.7536],"yaw":-3.94112,"spawnMask":3},{"id":"creature-83513","entityId":"entry-18644","position":[651.4068,102.1028,3522.6036],"yaw":-1.69096,"spawnMask":3},{"id":"creature-83517","entityId":"entry-2350","position":[509.3918,93.829,3455.3336],"yaw":-3.12402,"spawnMask":3},{"id":"creature-83518","entityId":"entry-18644","position":[599.9648,102.703,3490.6236],"yaw":-1.65806,"spawnMask":3},{"id":"creature-83526","entityId":"entry-2350","position":[480.4608,93.6728,3551.4636],"yaw":-3.57073,"spawnMask":3},{"id":"creature-83527","entityId":"entry-2350","position":[515.6108,106.2551,3661.4536],"yaw":-5.92807,"spawnMask":3},{"id":"creature-83528","entityId":"entry-2350","position":[679.4618,118.4612,3688.1236],"yaw":-3.58559,"spawnMask":3},{"id":"creature-83529","entityId":"entry-2350","position":[778.9558,117.0811,3658.7136],"yaw":-5.55636,"spawnMask":3},{"id":"creature-83530","entityId":"entry-2350","position":[749.1198,104.096,3486.1336],"yaw":-3.25706,"spawnMask":3},{"id":"creature-83531","entityId":"entry-2350","position":[777.4528,103.4362,3456.3136],"yaw":-2.23304,"spawnMask":3},{"id":"creature-83532","entityId":"entry-2350","position":[718.1478,102.757,3391.7036],"yaw":-1.45776,"spawnMask":3},{"id":"creature-83533","entityId":"entry-2350","position":[577.4028,101.7301,3323.2636],"yaw":-3.39036,"spawnMask":3},{"id":"creature-83534","entityId":"entry-2350","position":[516.3398,97.7034,3257.2336],"yaw":-3.99889,"spawnMask":3},{"id":"creature-83535","entityId":"entry-2350","position":[583.4248,102.5247,3259.7236],"yaw":-0.766741,"spawnMask":3},{"id":"creature-83536","entityId":"entry-2350","position":[780.0188,99.1437,3122.8036],"yaw":-4.33952,"spawnMask":3},{"id":"creature-83537","entityId":"entry-2350","position":[615.4098,79.8205,2959.7436],"yaw":-0.00781234,"spawnMask":3},{"id":"creature-83538","entityId":"entry-2350","position":[648.4458,79.6973,2992.4136],"yaw":-0.683737,"spawnMask":3},{"id":"creature-83539","entityId":"entry-2350","position":[585.0388,74.5672,2788.1836],"yaw":-2.34308,"spawnMask":3},{"id":"creature-83540","entityId":"entry-2350","position":[617.6998,74.7637,2827.0336],"yaw":-0.788161,"spawnMask":3},{"id":"creature-83541","entityId":"entry-2350","position":[1050.6898,114.2759,3391.9136],"yaw":-2.44748,"spawnMask":3},{"id":"creature-83542","entityId":"entry-2350","position":[949.9298,107.8602,3358.6536],"yaw":-0.767444,"spawnMask":3},{"id":"creature-83543","entityId":"entry-2350","position":[1215.0898,104.5844,3226.5836],"yaw":-0.83515,"spawnMask":3},{"id":"creature-83544","entityId":"entry-2350","position":[1083.1898,100.1964,3227.0636],"yaw":-0.770206,"spawnMask":3},{"id":"creature-83545","entityId":"entry-2350","position":[1244.8398,103.7447,3193.2036],"yaw":-4.58113,"spawnMask":3},{"id":"creature-83546","entityId":"entry-2350","position":[982.1998,100.1643,3259.9436],"yaw":-0.839288,"spawnMask":3},{"id":"creature-83547","entityId":"entry-2350","position":[1150.3798,96.6588,3156.2536],"yaw":-2.54871,"spawnMask":3},{"id":"creature-83548","entityId":"entry-2350","position":[1020.5098,88.9373,3090.8336],"yaw":-2.49751,"spawnMask":3},{"id":"creature-83549","entityId":"entry-2350","position":[1150.5398,87.9483,3023.0436],"yaw":-2.48637,"spawnMask":3},{"id":"creature-83550","entityId":"entry-2350","position":[877.7818,91.0649,3088.6236],"yaw":-4.53568,"spawnMask":3},{"id":"creature-83551","entityId":"entry-2350","position":[1212.9398,93.8603,3028.4736],"yaw":-5.376,"spawnMask":3},{"id":"creature-83552","entityId":"entry-2350","position":[1220.4998,65.1686,2894.1536],"yaw":-1.12243,"spawnMask":3},{"id":"creature-83553","entityId":"entry-2350","position":[1152.6798,66.3543,2756.0336],"yaw":-2.37691,"spawnMask":3},{"id":"creature-83554","entityId":"entry-2350","position":[1245.4598,107.862,2660.3636],"yaw":-4.42215,"spawnMask":3},{"id":"creature-83555","entityId":"entry-2350","position":[-149.1929,132.2349,3190.3636],"yaw":-2.37001,"spawnMask":3},{"id":"creature-83556","entityId":"entry-2350","position":[116.9428,112.6413,2790.5436],"yaw":-2.36517,"spawnMask":3},{"id":"creature-83557","entityId":"entry-2350","position":[249.4758,105.5012,2661.0536],"yaw":-0.475011,"spawnMask":3},{"id":"creature-83558","entityId":"entry-2350","position":[316.2188,100.1925,2659.4136],"yaw":-1.14037,"spawnMask":3},{"id":"creature-83559","entityId":"entry-2350","position":[412.6698,93.3322,2760.9236],"yaw":-5.53368,"spawnMask":3},{"id":"creature-83560","entityId":"entry-2354","position":[685.0008,64.046,2623.8336],"yaw":-0.942144,"spawnMask":3},{"id":"creature-83561","entityId":"entry-2354","position":[650.5408,73.1256,2788.5636],"yaw":-2.75093,"spawnMask":3},{"id":"creature-83562","entityId":"entry-2354","position":[850.8578,90.7425,3056.3136],"yaw":-2.27439,"spawnMask":3},{"id":"creature-83563","entityId":"entry-2354","position":[744.8848,57.753,2622.1236],"yaw":-3.88348,"spawnMask":3},{"id":"creature-83564","entityId":"entry-2354","position":[-53.4481,132.6711,3288.4136],"yaw":-4.04741,"spawnMask":3},{"id":"creature-83565","entityId":"entry-2354","position":[147.4178,116.4011,2823.1136],"yaw":-3.09861,"spawnMask":3},{"id":"creature-83566","entityId":"entry-2354","position":[308.6408,101.3549,2785.2936],"yaw":-4.18937,"spawnMask":3},{"id":"creature-83567","entityId":"entry-2354","position":[179.7168,113.2948,2855.8336],"yaw":-3.96013,"spawnMask":3},{"id":"creature-83568","entityId":"entry-2354","position":[217.7008,109.3157,2828.0736],"yaw":-0.285005,"spawnMask":3},{"id":"creature-83569","entityId":"entry-2354","position":[445.1178,93.0321,2858.3636],"yaw":-4.61058,"spawnMask":3},{"id":"creature-83570","entityId":"entry-2354","position":[416.3338,102.2515,2887.8536],"yaw":-2.50648,"spawnMask":3},{"id":"creature-83571","entityId":"entry-2354","position":[313.8938,108.6852,2927.8736],"yaw":-5.36683,"spawnMask":3},{"id":"creature-83572","entityId":"entry-2354","position":[379.0938,109.4647,2988.3536],"yaw":-4.10839,"spawnMask":3},{"id":"creature-83573","entityId":"entry-2354","position":[278.6758,108.2828,3023.4536],"yaw":-4.21432,"spawnMask":3},{"id":"creature-83574","entityId":"entry-2354","position":[179.1218,126.3551,3326.9036],"yaw":-5.90087,"spawnMask":3},{"id":"creature-83575","entityId":"entry-2354","position":[186.7838,140.5078,3389.3436],"yaw":-2.13416,"spawnMask":3},{"id":"creature-83576","entityId":"entry-2354","position":[216.0648,148.6788,3487.9136],"yaw":-2.62456,"spawnMask":3},{"id":"creature-83577","entityId":"entry-2354","position":[283.1648,104.6136,3226.6836],"yaw":-0.588003,"spawnMask":3},{"id":"creature-83578","entityId":"entry-2354","position":[308.8968,101.3006,3119.8636],"yaw":-3.83921,"spawnMask":3},{"id":"creature-83579","entityId":"entry-2354","position":[350.5248,104.9491,3292.4136],"yaw":-0.913611,"spawnMask":3},{"id":"creature-83580","entityId":"entry-2354","position":[316.5358,109.5224,3258.2336],"yaw":-0.747407,"spawnMask":3},{"id":"creature-83581","entityId":"entry-2354","position":[317.3378,103.099,3188.9236],"yaw":-2.32511,"spawnMask":3},{"id":"creature-83582","entityId":"entry-2354","position":[445.7118,102.1797,3121.3936],"yaw":-3.7296,"spawnMask":3},{"id":"creature-83583","entityId":"entry-2354","position":[480.6968,95.2973,3426.5636],"yaw":-5.46283,"spawnMask":3},{"id":"creature-83584","entityId":"entry-2354","position":[482.0338,99.7426,3625.4036],"yaw":-0.889805,"spawnMask":3},{"id":"creature-83585","entityId":"entry-2354","position":[618.0118,114.1578,3692.6436],"yaw":-0.80059,"spawnMask":3},{"id":"creature-83586","entityId":"entry-2354","position":[584.6818,115.051,3723.2836],"yaw":-0.85454,"spawnMask":3},{"id":"creature-83587","entityId":"entry-2354","position":[777.3898,117.3829,3720.7736],"yaw":-3.65914,"spawnMask":3},{"id":"creature-83588","entityId":"entry-2354","position":[772.0108,102.5119,3520.7936],"yaw":-4.18437,"spawnMask":3},{"id":"creature-83589","entityId":"entry-2354","position":[551.1198,104.2857,3354.4336],"yaw":-2.76145,"spawnMask":3},{"id":"creature-83590","entityId":"entry-2354","position":[750.1718,104.1156,3359.7336],"yaw":-0.793685,"spawnMask":3},{"id":"creature-83591","entityId":"entry-2354","position":[615.7928,102.7155,3230.1336],"yaw":-0.0224572,"spawnMask":3},{"id":"creature-83592","entityId":"entry-2354","position":[710.6938,95.5478,3129.5736],"yaw":-5.3348,"spawnMask":3},{"id":"creature-83593","entityId":"entry-2354","position":[580.1688,81.5946,2926.1436],"yaw":-5.5413,"spawnMask":3},{"id":"creature-83594","entityId":"entry-2354","position":[612.8248,75.5562,2893.6536],"yaw":-5.38088,"spawnMask":3},{"id":"creature-83595","entityId":"entry-2354","position":[644.7768,81.0638,2592.9436],"yaw":-5.03472,"spawnMask":3},{"id":"creature-83596","entityId":"entry-2354","position":[614.9748,69.9587,2757.0136],"yaw":-3.12206,"spawnMask":3},{"id":"creature-83597","entityId":"entry-2354","position":[1011.1398,111.7245,3357.5136],"yaw":-4.95595,"spawnMask":3},{"id":"creature-83598","entityId":"entry-2354","position":[1082.0698,106.0909,3291.6136],"yaw":-0.934714,"spawnMask":3},{"id":"creature-83599","entityId":"entry-2354","position":[983.2098,106.151,3325.8536],"yaw":-0.799209,"spawnMask":3},{"id":"creature-83600","entityId":"entry-2354","position":[1150.0398,104.1778,3222.8336],"yaw":-2.36862,"spawnMask":3},{"id":"creature-83601","entityId":"entry-2354","position":[913.3088,106.4975,3327.6336],"yaw":-5.47222,"spawnMask":3},{"id":"creature-83602","entityId":"entry-2354","position":[1218.0098,99.414,3157.3436],"yaw":-2.00866,"spawnMask":3},{"id":"creature-83603","entityId":"entry-2354","position":[1249.0098,98.9216,3127.2036],"yaw":-0.7514,"spawnMask":3},{"id":"creature-83604","entityId":"entry-2354","position":[1051.4098,87.8938,3119.3836],"yaw":-2.57554,"spawnMask":3},{"id":"creature-83605","entityId":"entry-2354","position":[1115.9598,89.807,3058.3636],"yaw":-2.00713,"spawnMask":3},{"id":"creature-83606","entityId":"entry-2354","position":[1015.1498,83.7182,3023.0336],"yaw":-3.11793,"spawnMask":3},{"id":"creature-83607","entityId":"entry-2354","position":[816.8208,100.2289,3160.3936],"yaw":-0.457097,"spawnMask":3},{"id":"creature-83608","entityId":"entry-2354","position":[1186.5298,93.1533,2985.3236],"yaw":-4.93774,"spawnMask":3},{"id":"creature-83609","entityId":"entry-2354","position":[1218.5098,84.4783,2963.8836],"yaw":-0.860051,"spawnMask":3},{"id":"creature-83610","entityId":"entry-2354","position":[1247.1398,64.8279,2921.5336],"yaw":-2.99555,"spawnMask":3},{"id":"creature-83611","entityId":"entry-2354","position":[1183.8498,66.6037,2790.3636],"yaw":-2.88596,"spawnMask":3},{"id":"creature-83612","entityId":"entry-2354","position":[1251.0498,71.5567,2788.6736],"yaw":-2.67576,"spawnMask":3},{"id":"creature-83613","entityId":"entry-2354","position":[1253.6598,95.5105,2720.1536],"yaw":-2.4057,"spawnMask":3},{"id":"creature-83614","entityId":"entry-2354","position":[919.0208,83.413,2987.9136],"yaw":-2.27466,"spawnMask":3},{"id":"creature-83615","entityId":"entry-2354","position":[850.0828,80.7176,2990.6536],"yaw":-3.96636,"spawnMask":3},{"id":"creature-83616","entityId":"entry-2354","position":[753.2078,60.8466,2757.9436],"yaw":-1.4582,"spawnMask":3},{"id":"creature-83617","entityId":"entry-2354","position":[-154.1346,127.2185,3125.8936],"yaw":-5.55168,"spawnMask":3},{"id":"creature-83618","entityId":"entry-2354","position":[-183.4322,133.2483,3159.0136],"yaw":-0.0156237,"spawnMask":3},{"id":"creature-83619","entityId":"entry-2354","position":[13.586,104.6087,2891.0036],"yaw":-5.17254,"spawnMask":3},{"id":"creature-83620","entityId":"entry-2354","position":[179.7808,104.3238,2728.5336],"yaw":-5.46189,"spawnMask":3},{"id":"creature-83621","entityId":"entry-2354","position":[215.0898,107.9723,2692.8036],"yaw":-0.564707,"spawnMask":3},{"id":"creature-83622","entityId":"entry-2354","position":[244.7708,97.8333,2725.6336],"yaw":-5.20924,"spawnMask":3},{"id":"creature-83623","entityId":"entry-2354","position":[280.8428,100.4683,2688.9436],"yaw":-3.4713,"spawnMask":3},{"id":"creature-83624","entityId":"entry-2354","position":[344.8498,98.713,2687.7036],"yaw":-4.28019,"spawnMask":3},{"id":"creature-83625","entityId":"entry-2354","position":[452.1158,95.3019,2795.2736],"yaw":-0.878059,"spawnMask":3},{"id":"creature-83626","entityId":"entry-2354","position":[448.9298,91.3484,2594.2236],"yaw":-0.420405,"spawnMask":3},{"id":"creature-83654","entityId":"entry-2354","position":[516.1798,89.4909,2589.5636],"yaw":-2.37069,"spawnMask":3},{"id":"creature-83655","entityId":"entry-2385","position":[681.1418,72.4362,2689.1136],"yaw":-3.59563,"spawnMask":3},{"id":"creature-83656","entityId":"entry-2385","position":[683.8418,65.6659,2825.3836],"yaw":-1.6635,"spawnMask":3},{"id":"creature-83657","entityId":"entry-2385","position":[682.0038,70.0102,2755.4436],"yaw":-5.67279,"spawnMask":3},{"id":"creature-83658","entityId":"entry-2385","position":[713.8498,72.8837,2654.9936],"yaw":-3.05748,"spawnMask":3},{"id":"creature-83659","entityId":"entry-2385","position":[711.5208,68.7861,2721.6136],"yaw":-3.95737,"spawnMask":3},{"id":"creature-83660","entityId":"entry-2385","position":[278.3398,100.2596,2755.3136],"yaw":-1.12726,"spawnMask":3},{"id":"creature-83661","entityId":"entry-2385","position":[210.7988,107.8171,2755.8736],"yaw":-3.99613,"spawnMask":3},{"id":"creature-83662","entityId":"entry-2385","position":[111.0108,109.7607,2922.5136],"yaw":-4.32045,"spawnMask":3},{"id":"creature-83663","entityId":"entry-2385","position":[416.8158,95.246,2823.1436],"yaw":-2.21273,"spawnMask":3},{"id":"creature-83664","entityId":"entry-2385","position":[282.2858,97.9828,2821.6636],"yaw":-3.59489,"spawnMask":3},{"id":"creature-83665","entityId":"entry-2385","position":[246.1638,110.5578,2853.9936],"yaw":-3.86759,"spawnMask":3},{"id":"creature-83666","entityId":"entry-2385","position":[315.3748,106.0316,2855.4936],"yaw":-2.21703,"spawnMask":3},{"id":"creature-83667","entityId":"entry-2385","position":[384.1858,100.4495,2857.9636],"yaw":-2.28705,"spawnMask":3},{"id":"creature-83676","entityId":"entry-20420","position":[985.7898,53.8028,2698.7936],"yaw":-1.55334,"spawnMask":3},{"id":"creature-83677","entityId":"entry-20419","position":[984.4598,53.8028,2700.7036],"yaw":-3.7001,"spawnMask":3},{"id":"creature-83732","entityId":"entry-2385","position":[383.7158,105.1797,2922.9136],"yaw":-2.06555,"spawnMask":3},{"id":"creature-83733","entityId":"entry-2385","position":[277.5938,99.0649,3093.9636],"yaw":-5.32071,"spawnMask":3},{"id":"creature-83734","entityId":"entry-2385","position":[-17.0159,122.5722,3259.1536],"yaw":-6.05629,"spawnMask":3},{"id":"creature-83735","entityId":"entry-2385","position":[49.5478,139.0826,3325.9136],"yaw":-0.48766,"spawnMask":3},{"id":"creature-83736","entityId":"entry-2385","position":[117.4218,135.3513,3328.0236],"yaw":-6.22454,"spawnMask":3},{"id":"creature-83737","entityId":"entry-2385","position":[83.1398,146.58,3358.0736],"yaw":-0.657362,"spawnMask":3},{"id":"creature-83738","entityId":"entry-2385","position":[312.6348,108.7686,3559.3136],"yaw":-5.18692,"spawnMask":3},{"id":"creature-83739","entityId":"entry-2385","position":[250.5828,153.8518,3425.5136],"yaw":-0.856558,"spawnMask":3},{"id":"creature-83740","entityId":"entry-2385","position":[244.1958,110.4847,3261.2336],"yaw":-5.55654,"spawnMask":3},{"id":"creature-83741","entityId":"entry-2385","position":[247.2488,123.3703,3319.5136],"yaw":-3.6319,"spawnMask":3},{"id":"creature-83742","entityId":"entry-2385","position":[348.8398,103.1965,3227.5036],"yaw":-0.630807,"spawnMask":3},{"id":"creature-83743","entityId":"entry-2385","position":[346.6918,118.3743,3093.9436],"yaw":-0.407713,"spawnMask":3},{"id":"creature-83744","entityId":"entry-2385","position":[383.0478,108.7846,3123.2036],"yaw":-2.48044,"spawnMask":3},{"id":"creature-83745","entityId":"entry-2385","position":[477.9808,93.2606,3491.8336],"yaw":-5.11754,"spawnMask":3},{"id":"creature-83746","entityId":"entry-2385","position":[554.0728,107.5929,3691.2636],"yaw":-1.30215,"spawnMask":3},{"id":"creature-83747","entityId":"entry-2385","position":[718.2938,128.092,3718.8336],"yaw":-2.20024,"spawnMask":3},{"id":"creature-83748","entityId":"entry-2385","position":[744.0998,120.6504,3692.0636],"yaw":-5.01591,"spawnMask":3},{"id":"creature-83749","entityId":"entry-2385","position":[848.1948,136.5223,3721.3836],"yaw":-3.18848,"spawnMask":3},{"id":"creature-83750","entityId":"entry-2385","position":[846.7738,127.7768,3658.9536],"yaw":-5.32991,"spawnMask":3},{"id":"creature-83751","entityId":"entry-2385","position":[747.3938,103.1346,3425.8736],"yaw":-2.37282,"spawnMask":3},{"id":"creature-83752","entityId":"entry-2385","position":[548.3828,101.2156,3292.6036],"yaw":-5.4895,"spawnMask":3},{"id":"creature-83753","entityId":"entry-2385","position":[714.5488,102.789,3327.2736],"yaw":-5.31935,"spawnMask":3},{"id":"creature-83754","entityId":"entry-2385","position":[711.9768,105.2529,3261.7936],"yaw":-5.69166,"spawnMask":3},{"id":"creature-83755","entityId":"entry-2385","position":[579.8218,86.113,2990.6536],"yaw":-4.12606,"spawnMask":3},{"id":"creature-83756","entityId":"entry-2385","position":[611.0098,86.9017,3018.3336],"yaw":-4.23128,"spawnMask":3},{"id":"creature-83757","entityId":"entry-2385","position":[815.2588,96.1972,3086.4836],"yaw":-2.51507,"spawnMask":3},{"id":"creature-83758","entityId":"entry-2385","position":[585.9528,80.1967,2853.9636],"yaw":-3.66728,"spawnMask":3},{"id":"creature-83759","entityId":"entry-2385","position":[648.9408,73.1349,2925.1536],"yaw":-0.827452,"spawnMask":3},{"id":"creature-83760","entityId":"entry-2385","position":[647.2328,74.2585,2657.8536],"yaw":-5.36058,"spawnMask":3},{"id":"creature-83761","entityId":"entry-2385","position":[1048.8198,108.4577,3323.0836],"yaw":-3.14843,"spawnMask":3},{"id":"creature-83762","entityId":"entry-2385","position":[1015.4098,103.1286,3293.8536],"yaw":-0.856558,"spawnMask":3},{"id":"creature-83763","entityId":"entry-2385","position":[1244.0698,109.4982,3261.2036],"yaw":-5.58357,"spawnMask":3},{"id":"creature-83764","entityId":"entry-2385","position":[1115.7398,104.6026,3260.8936],"yaw":-6.25292,"spawnMask":3},{"id":"creature-83765","entityId":"entry-2385","position":[1048.1098,101.3867,3257.5036],"yaw":-2.28779,"spawnMask":3},{"id":"creature-83766","entityId":"entry-2385","position":[946.7498,102.6954,3295.7536],"yaw":-5.66918,"spawnMask":3},{"id":"creature-83767","entityId":"entry-2385","position":[1182.3998,100.5681,3190.5636],"yaw":-2.68974,"spawnMask":3},{"id":"creature-83768","entityId":"entry-2385","position":[1011.9698,100.176,3226.8936],"yaw":-5.62797,"spawnMask":3},{"id":"creature-83769","entityId":"entry-2385","position":[1115.7098,98.2392,3189.6836],"yaw":-2.48286,"spawnMask":3},{"id":"creature-83770","entityId":"entry-2385","position":[885.8638,103.4853,3357.4836],"yaw":-1.98813,"spawnMask":3},{"id":"creature-83771","entityId":"entry-2385","position":[950.4698,99.4474,3222.9036],"yaw":-2.53111,"spawnMask":3},{"id":"creature-83772","entityId":"entry-2385","position":[1080.0798,89.0991,3095.6736],"yaw":-5.66078,"spawnMask":3},{"id":"creature-83773","entityId":"entry-2385","position":[848.0398,109.229,3388.6936],"yaw":-4.13156,"spawnMask":3},{"id":"creature-83774","entityId":"entry-2385","position":[1046.8798,84.7353,3057.0136],"yaw":-3.93666,"spawnMask":3},{"id":"creature-83775","entityId":"entry-2385","position":[915.5688,91.6723,3121.6836],"yaw":-3.67431,"spawnMask":3},{"id":"creature-83776","entityId":"entry-2385","position":[852.1258,96.5441,3125.0936],"yaw":-0.692738,"spawnMask":3},{"id":"creature-83777","entityId":"entry-2385","position":[1076.8798,84.5446,3021.8636],"yaw":-3.83083,"spawnMask":3},{"id":"creature-83778","entityId":"entry-2385","position":[921.2568,87.3234,3062.4436],"yaw":-0.65385,"spawnMask":3},{"id":"creature-83779","entityId":"entry-2385","position":[1247.5698,92.2259,2993.5736],"yaw":-5.8357,"spawnMask":3},{"id":"creature-83780","entityId":"entry-2385","position":[1255.1498,65.2999,2861.9536],"yaw":-0.792304,"spawnMask":3},{"id":"creature-83781","entityId":"entry-2385","position":[1215.0598,78.9766,2761.0036],"yaw":-5.22015,"spawnMask":3},{"id":"creature-83782","entityId":"entry-2385","position":[1181.4198,80.6225,2723.3936],"yaw":-4.29416,"spawnMask":3},{"id":"creature-83783","entityId":"entry-2385","position":[1211.0498,95.0898,2690.4136],"yaw":-3.47785,"spawnMask":3},{"id":"creature-83784","entityId":"entry-2385","position":[1115.6898,57.4341,2726.2236],"yaw":-5.38499,"spawnMask":3},{"id":"creature-83785","entityId":"entry-2385","position":[885.7178,78.4784,2960.4936],"yaw":-1.14821,"spawnMask":3},{"id":"creature-83786","entityId":"entry-2385","position":[-82.2742,126.5785,3257.6636],"yaw":-2.57419,"spawnMask":3},{"id":"creature-83787","entityId":"entry-2385","position":[-120.2925,131.7854,3227.2736],"yaw":-5.29335,"spawnMask":3},{"id":"creature-83788","entityId":"entry-2385","position":[150.7018,108.4804,2758.2536],"yaw":-1.646,"spawnMask":3},{"id":"creature-83789","entityId":"entry-2385","position":[316.2858,98.3645,2726.0236],"yaw":-0.802674,"spawnMask":3},{"id":"creature-83790","entityId":"entry-2385","position":[379.8268,95.7865,2727.5936],"yaw":-5.70223,"spawnMask":3},{"id":"creature-83791","entityId":"entry-2385","position":[283.4508,104.0028,2624.2936],"yaw":-2.39419,"spawnMask":3},{"id":"creature-83792","entityId":"entry-2385","position":[583.4108,89.1692,2594.2936],"yaw":-0.677486,"spawnMask":3},{"id":"creature-83793","entityId":"entry-2385","position":[549.6058,81.1731,2828.6736],"yaw":-5.23807,"spawnMask":3},{"id":"creature-83794","entityId":"entry-2408","position":[751.4748,50.8693,2993.9336],"yaw":-3.95875,"spawnMask":3},{"id":"creature-83795","entityId":"entry-2408","position":[782.0578,51.6095,2960.3036],"yaw":-0.864164,"spawnMask":3},{"id":"creature-83796","entityId":"entry-2408","position":[793.6648,51.9554,2925.0636],"yaw":-4.89906,"spawnMask":3},{"id":"creature-83797","entityId":"entry-2408","position":[409.3858,81.3233,3456.9736],"yaw":-0.890118,"spawnMask":3},{"id":"creature-83798","entityId":"entry-2408","position":[408.6408,83.2144,3420.8536],"yaw":-4.39064,"spawnMask":3},{"id":"creature-83799","entityId":"entry-2408","position":[454.3468,81.0341,3226.9336],"yaw":-4.89765,"spawnMask":3},{"id":"creature-83800","entityId":"entry-2408","position":[437.6208,80.9743,3254.8536],"yaw":-1.96183,"spawnMask":3},{"id":"creature-83801","entityId":"entry-2408","position":[435.4318,80.8281,3290.0936],"yaw":-0.726362,"spawnMask":3},{"id":"creature-83802","entityId":"entry-2408","position":[429.8258,81.455,3323.0236],"yaw":-4.03765,"spawnMask":3},{"id":"creature-83803","entityId":"entry-2408","position":[428.7358,82.6894,3357.4636],"yaw":-4.85539,"spawnMask":3},{"id":"creature-83804","entityId":"entry-2408","position":[427.1708,82.3657,3388.4536],"yaw":-1.46802,"spawnMask":3},{"id":"creature-83805","entityId":"entry-2408","position":[408.1628,82.3511,3492.1036],"yaw":-5.87111,"spawnMask":3},{"id":"creature-83806","entityId":"entry-2408","position":[417.8398,81.9982,3524.8236],"yaw":-0.762967,"spawnMask":3},{"id":"creature-83807","entityId":"entry-2408","position":[415.7298,82.2606,3559.0836],"yaw":-0.46627,"spawnMask":3},{"id":"creature-83808","entityId":"entry-2408","position":[416.1138,82.2058,3588.2236],"yaw":-2.99049,"spawnMask":3},{"id":"creature-83809","entityId":"entry-2408","position":[418.1528,82.4179,3621.2036],"yaw":-2.44335,"spawnMask":3},{"id":"creature-83810","entityId":"entry-2408","position":[483.7948,79.93,3188.7436],"yaw":-1.14035,"spawnMask":3},{"id":"creature-83811","entityId":"entry-2408","position":[518.3508,78.5836,3169.6436],"yaw":-0.802674,"spawnMask":3},{"id":"creature-83812","entityId":"entry-2408","position":[548.2328,75.7271,3159.3236],"yaw":-0.715585,"spawnMask":3},{"id":"creature-83813","entityId":"entry-2408","position":[581.5998,73.8888,3133.9836],"yaw":-5.50055,"spawnMask":3},{"id":"creature-83814","entityId":"entry-2408","position":[611.5728,74.8861,3091.2236],"yaw":-1.45244,"spawnMask":3},{"id":"creature-83815","entityId":"entry-2408","position":[640.7418,74.9062,3074.8136],"yaw":-2.12204,"spawnMask":3},{"id":"creature-83816","entityId":"entry-2408","position":[693.2218,51.3543,3052.4536],"yaw":-3.35623,"spawnMask":3},{"id":"creature-83817","entityId":"entry-2408","position":[720.7928,49.9207,3027.5236],"yaw":-2.69819,"spawnMask":3},{"id":"creature-83818","entityId":"entry-2408","position":[826.6228,52.8643,2762.7636],"yaw":-1.13334,"spawnMask":3},{"id":"creature-83819","entityId":"entry-2408","position":[814.3638,52.567,2789.8536],"yaw":-3.38231,"spawnMask":3},{"id":"creature-83820","entityId":"entry-2408","position":[818.6048,52.7199,2859.4436],"yaw":-6.11486,"spawnMask":3},{"id":"creature-83821","entityId":"entry-2408","position":[813.8568,52.9067,2826.4636],"yaw":-4.72704,"spawnMask":3},{"id":"creature-83822","entityId":"entry-2408","position":[811.1628,52.3551,2888.0436],"yaw":-3.44914,"spawnMask":3},{"id":"creature-83901","entityId":"entry-17819","position":[128.1018,113.0616,3054.7036],"yaw":-2.46529,"spawnMask":3},{"id":"creature-83902","entityId":"entry-17820","position":[121.4748,113.0619,3050.5936],"yaw":-2.57525,"spawnMask":3},{"id":"creature-83903","entityId":"entry-17819","position":[155.9938,111.715,3060.9036],"yaw":-4.99208,"spawnMask":3},{"id":"creature-83904","entityId":"entry-17819","position":[151.0508,111.7833,3061.9236],"yaw":-1.66828,"spawnMask":3},{"id":"creature-83905","entityId":"entry-17819","position":[101.0068,111.9902,3018.1336],"yaw":-3.72429,"spawnMask":3},{"id":"creature-83906","entityId":"entry-17840","position":[116.1728,116.0928,3064.1236],"yaw":-5.73098,"spawnMask":3},{"id":"creature-83908","entityId":"entry-17819","position":[98.4278,111.882,3014.7636],"yaw":-0.634532,"spawnMask":3},{"id":"creature-83909","entityId":"entry-17819","position":[153.3928,111.7138,3018.3936],"yaw":-2.52515,"spawnMask":3},{"id":"creature-83911","entityId":"entry-17840","position":[164.1518,111.7135,3060.8536],"yaw":-1.00681,"spawnMask":3},{"id":"creature-83912","entityId":"entry-17820","position":[107.0738,113.0615,3083.1136],"yaw":-2.54227,"spawnMask":3},{"id":"creature-83913","entityId":"entry-17820","position":[100.8898,113.0615,3079.0736],"yaw":-2.4598,"spawnMask":3},{"id":"creature-83914","entityId":"entry-18598","position":[28.632,100.0062,3038.9936],"yaw":-6.25306,"spawnMask":3},{"id":"creature-83915","entityId":"entry-18598","position":[31.9476,99.8447,3048.1136],"yaw":-3.87722,"spawnMask":3},{"id":"creature-83916","entityId":"entry-18598","position":[-11.0495,101.0827,3046.1236],"yaw":-4.91709,"spawnMask":3},{"id":"creature-83917","entityId":"entry-18598","position":[11.4382,99.7315,3044.8936],"yaw":-2.78709,"spawnMask":3},{"id":"creature-83918","entityId":"entry-18598","position":[-24.9028,101.3977,3057.5836],"yaw":-3.66759,"spawnMask":3},{"id":"creature-83919","entityId":"entry-18598","position":[44.3978,102.2297,3004.2336],"yaw":-1.96871,"spawnMask":3},{"id":"creature-83920","entityId":"entry-18598","position":[49.8428,102.2436,2999.7336],"yaw":-5.78024,"spawnMask":3},{"id":"creature-83921","entityId":"entry-18598","position":[60.8238,101.1088,3012.1836],"yaw":-1.75747,"spawnMask":3},{"id":"creature-83922","entityId":"entry-17820","position":[38.2518,100.1346,3013.8536],"yaw":-5.89137,"spawnMask":3},{"id":"creature-83923","entityId":"entry-17833","position":[43.1498,100.1622,3016.1636],"yaw":-5.9597,"spawnMask":3},{"id":"creature-83924","entityId":"entry-17819","position":[75.2288,100.0988,3008.2236],"yaw":-2.79768,"spawnMask":3},{"id":"creature-83925","entityId":"entry-18598","position":[-0.0739,101.1833,3008.5636],"yaw":-6.10775,"spawnMask":3},{"id":"creature-83926","entityId":"entry-17833","position":[6.2586,99.2818,3024.3036],"yaw":-0.525837,"spawnMask":3},{"id":"creature-83927","entityId":"entry-17819","position":[1.805,99.3162,3026.5436],"yaw":-0.480697,"spawnMask":3},{"id":"creature-83928","entityId":"entry-17820","position":[-12.9542,99.4314,3059.0136],"yaw":-1.17158,"spawnMask":3},{"id":"creature-83929","entityId":"entry-17833","position":[-15.3199,99.2808,3064.3336],"yaw":-1.11189,"spawnMask":3},{"id":"creature-83931","entityId":"entry-17840","position":[-0.1282,99.3654,3054.5536],"yaw":-2.52167,"spawnMask":3},{"id":"creature-83932","entityId":"entry-18598","position":[27.4213,99.7912,3028.1036],"yaw":-5.15978,"spawnMask":3},{"id":"creature-83933","entityId":"entry-17860","position":[56.2518,136.2947,3158.6236],"yaw":-0.339619,"spawnMask":3},{"id":"creature-83935","entityId":"entry-17833","position":[71.9428,135.0562,3122.8636],"yaw":-2.67875,"spawnMask":3},{"id":"creature-83936","entityId":"entry-17819","position":[70.0648,135.0562,3128.5436],"yaw":-2.71802,"spawnMask":3},{"id":"creature-83937","entityId":"entry-17860","position":[75.0888,135.0562,3131.4236],"yaw":-2.71409,"spawnMask":3},{"id":"creature-83938","entityId":"entry-17820","position":[78.7498,135.0562,3126.6536],"yaw":-2.60806,"spawnMask":3},{"id":"creature-83941","entityId":"entry-17840","position":[39.6598,136.2947,3152.1936],"yaw":-3.8058,"spawnMask":3},{"id":"creature-83942","entityId":"entry-17833","position":[111.8328,100.0216,3063.2336],"yaw":-0.586199,"spawnMask":3},{"id":"creature-83943","entityId":"entry-17833","position":[115.6618,99.6197,3065.6436],"yaw":-4.01682,"spawnMask":3},{"id":"creature-83944","entityId":"entry-17819","position":[109.9248,100.9241,3070.7836],"yaw":-3.19294,"spawnMask":3},{"id":"creature-83945","entityId":"entry-17819","position":[107.6218,100.3558,3068.0236],"yaw":-1.56167,"spawnMask":3},{"id":"creature-83946","entityId":"entry-18598","position":[20.6821,101.6851,3014.3836],"yaw":-3.29917,"spawnMask":3},{"id":"creature-83948","entityId":"entry-17820","position":[165.2738,99.2808,3102.8336],"yaw":-5.44257,"spawnMask":3},{"id":"creature-83949","entityId":"entry-17820","position":[167.8808,99.2808,3106.3636],"yaw":-5.23774,"spawnMask":3},{"id":"creature-83951","entityId":"entry-17840","position":[148.3898,99.5107,3105.9836],"yaw":-0.424021,"spawnMask":3},{"id":"creature-83952","entityId":"entry-18598","position":[167.8438,99.324,3119.7636],"yaw":-5.30747,"spawnMask":3},{"id":"creature-83953","entityId":"entry-18598","position":[174.2088,99.9037,3143.1636],"yaw":-2.85876,"spawnMask":3},{"id":"creature-83954","entityId":"entry-18598","position":[168.0198,99.3078,3132.8736],"yaw":-1.157,"spawnMask":3},{"id":"creature-83955","entityId":"entry-17819","position":[190.6008,99.9846,3169.9836],"yaw":-1.23575,"spawnMask":3},{"id":"creature-83956","entityId":"entry-17819","position":[193.3568,99.7107,3165.8236],"yaw":-1.08338,"spawnMask":3},{"id":"creature-83957","entityId":"entry-18598","position":[170.7738,99.2808,3134.1636],"yaw":-4.23008,"spawnMask":3},{"id":"creature-83959","entityId":"entry-17819","position":[200.8008,99.7561,3112.3736],"yaw":-2.42404,"spawnMask":3},{"id":"creature-83960","entityId":"entry-18598","position":[169.2298,100.6876,3097.0536],"yaw":-0.7,"spawnMask":3},{"id":"creature-83961","entityId":"entry-18598","position":[184.5498,100.9638,3118.3536],"yaw":-1.55,"spawnMask":3},{"id":"creature-83963","entityId":"entry-17840","position":[204.5918,99.5665,3129.3136],"yaw":-3.14534,"spawnMask":3},{"id":"creature-83964","entityId":"entry-18598","position":[199.9038,101.6181,3149.6036],"yaw":-4.66973,"spawnMask":3},{"id":"creature-83965","entityId":"entry-18598","position":[179.7988,100.6736,3166.2336],"yaw":-2.45256,"spawnMask":3},{"id":"creature-83966","entityId":"entry-17833","position":[116.3228,145.1511,3162.5036],"yaw":-3.23645,"spawnMask":3},{"id":"creature-83967","entityId":"entry-17833","position":[108.8228,144.8753,3163.4536],"yaw":-3.26786,"spawnMask":3},{"id":"creature-83968","entityId":"entry-17819","position":[116.5278,149.4038,3173.5336],"yaw":-3.22859,"spawnMask":3},{"id":"creature-83969","entityId":"entry-17820","position":[111.5958,149.4008,3174.0236],"yaw":-3.24037,"spawnMask":3},{"id":"creature-83971","entityId":"entry-17820","position":[52.6818,136.2947,3164.4436],"yaw":-1.39547,"spawnMask":3},{"id":"creature-83973","entityId":"entry-17833","position":[64.0708,150.2188,3156.8736],"yaw":-1.76776,"spawnMask":3},{"id":"creature-83974","entityId":"entry-17820","position":[66.5628,150.2188,3156.3736],"yaw":-4.88579,"spawnMask":3},{"id":"creature-83975","entityId":"entry-17833","position":[58.6958,150.2178,3151.0036],"yaw":-4.00668,"spawnMask":3},{"id":"creature-83976","entityId":"entry-17819","position":[57.5418,150.2178,3149.4436],"yaw":-1.09756,"spawnMask":3},{"id":"creature-83977","entityId":"entry-17820","position":[21.2182,138.4313,3164.1536],"yaw":-2.62988,"spawnMask":3},{"id":"creature-83978","entityId":"entry-17846","position":[-15.6684,113.0256,3121.0536],"yaw":-4.24249,"spawnMask":3},{"id":"creature-83979","entityId":"entry-17846","position":[-14.1624,112.9817,3116.6636],"yaw":-4.36501,"spawnMask":3},{"id":"creature-83980","entityId":"entry-17846","position":[-34.5099,112.9485,3143.4036],"yaw":-2.70239,"spawnMask":3},{"id":"creature-83981","entityId":"entry-17846","position":[-17.4885,113.0821,3126.4636],"yaw":-4.20165,"spawnMask":3},{"id":"creature-83982","entityId":"entry-18673","position":[-46.7388,111.6288,3134.8636],"yaw":-2.71024,"spawnMask":3},{"id":"creature-83983","entityId":"entry-17846","position":[-54.8012,112.9568,3134.4036],"yaw":-2.70232,"spawnMask":3},{"id":"creature-83984","entityId":"entry-17846","position":[-66.5395,112.9625,3116.6636],"yaw":-1.26269,"spawnMask":3},{"id":"creature-83985","entityId":"entry-17846","position":[-62.4953,111.6833,3112.9836],"yaw":-1.23598,"spawnMask":3},{"id":"creature-83986","entityId":"entry-17820","position":[-20.9263,99.3623,3027.0636],"yaw":-4.3745,"spawnMask":3},{"id":"creature-83987","entityId":"entry-17820","position":[20.2101,99.3867,2994.8036],"yaw":-3.53099,"spawnMask":3},{"id":"creature-83989","entityId":"entry-17876","position":[52.2858,129.1377,3173.4736],"yaw":-4.21682,"spawnMask":3},{"id":"creature-83996","entityId":"entry-17833","position":[55.8408,136.2947,3166.2036],"yaw":-4.14173,"spawnMask":3},{"id":"creature-83997","entityId":"entry-17860","position":[58.2668,136.2947,3159.6336],"yaw":-5.21223,"spawnMask":3},{"id":"creature-84300","entityId":"entry-18094","position":[690.3828,103.3648,3530.5036],"yaw":-3.24039,"spawnMask":3},{"id":"creature-84301","entityId":"entry-18093","position":[690.3828,103.3648,3530.5036],"yaw":-3.29647,"spawnMask":3},{"id":"creature-84306","entityId":"entry-18094","position":[646.1808,103.889,3554.9336],"yaw":-6.02139,"spawnMask":3},{"id":"creature-84307","entityId":"entry-18093","position":[643.3288,103.5803,3557.3736],"yaw":-1.48353,"spawnMask":3},{"id":"creature-84308","entityId":"entry-18092","position":[646.8728,103.4358,3558.0636],"yaw":-3.87463,"spawnMask":3},{"id":"creature-84310","entityId":"entry-18094","position":[660.4818,104.8034,3610.3336],"yaw":-0.488692,"spawnMask":3},{"id":"creature-84311","entityId":"entry-18094","position":[647.7048,104.7324,3622.9736],"yaw":-1.72571,"spawnMask":3},{"id":"creature-84312","entityId":"entry-18093","position":[647.7048,104.7324,3622.9736],"yaw":-4.86829,"spawnMask":3},{"id":"creature-84314","entityId":"entry-18093","position":[659.8038,104.5619,3614.6336],"yaw":-1.72788,"spawnMask":3},{"id":"creature-84315","entityId":"entry-18092","position":[662.8638,104.5183,3616.1636],"yaw":-4.34587,"spawnMask":3},{"id":"creature-84316","entityId":"entry-18093","position":[558.2318,103.2356,3529.0936],"yaw":-3.90481,"spawnMask":3},{"id":"creature-84318","entityId":"entry-18094","position":[558.2318,103.2356,3529.0936],"yaw":-3.93707,"spawnMask":3},{"id":"encounter-285","entityId":"entry-17848","position":[2173.6114,24.858,3599.6707],"yaw":0,"spawnMask":1},{"id":"encounter-283","entityId":"entry-17862","position":[2386.0666,27.195,3591.1638],"yaw":0,"spawnMask":1},{"id":"encounter-281","entityId":"entry-18096","position":[2601.3758,29.532,3577.9538],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-1885","name":"Don Carlos Patrol","speed":1.15,"pathId":18850,"formationSource":"database-solo","spawnMask":3,"waypoints":[[942.0598,100.6283,3169.2036],[942.0598,100.6283,3169.2036],[899.0158,101.5505,3181.0836],[865.7058,101.3859,3191.9236],[832.6978,101.191,3204.3036],[798.9408,101.0383,3217.2836],[765.6808,101.8195,3222.9136],[732.7738,101.5149,3207.9536],[699.1468,99.6486,3185.2536],[665.5188,91.3081,3158.5136],[645.6938,85.8488,3141.6236],[632.6468,83.2986,3132.3536],[615.2568,81.0982,3124.0636],[665.8118,91.5336,3157.7336],[688.0318,97.3697,3174.6636],[698.9968,99.5843,3185.0136],[732.4048,101.5149,3207.5636],[749.8558,101.6467,3218.3236],[799.1968,100.8233,3216.4236],[832.3458,101.1942,3203.9436],[865.8718,101.3859,3191.7236],[899.0008,101.5522,3180.2736],[932.4398,101.0794,3171.8536]],"members":[{"id":"member","entityId":"entry-28132","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11559","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[506.4608,77.3127,2701.8436],[513.4528,77.3127,2691.0736],[524.4978,77.3127,2683.4536],[535.8858,77.3109,2676.0936],[524.4978,77.3127,2683.4536],[513.4528,77.3127,2691.0736]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11560","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115600,"formationSource":"database-solo","spawnMask":3,"waypoints":[[544.0128,77.3109,2712.4636],[530.3378,77.3127,2725.3136],[520.3638,77.3127,2722.1636],[529.9208,77.3127,2711.5136],[520.5218,77.3127,2722.2136],[529.9208,77.3127,2711.5136],[541.7328,77.3109,2701.0636],[550.5388,77.3109,2687.3936],[549.3218,77.3127,2672.3236],[534.3228,77.3127,2674.0136],[514.9748,77.3127,2693.2336],[534.3228,77.3127,2674.0136],[549.3218,77.3127,2672.3236],[550.5388,77.3109,2687.3936],[541.7328,77.3109,2701.0636],[529.9208,77.3127,2711.5136],[520.3638,77.3127,2722.1636],[530.3378,77.3127,2725.3136],[520.4568,77.3127,2722.0636],[530.3378,77.3127,2725.3136],[542.2248,77.3109,2716.3136]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11561","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115610,"formationSource":"database-solo","spawnMask":3,"waypoints":[[531.2128,77.3127,2715.9436],[538.4408,77.3109,2711.6036],[546.0778,77.3109,2708.5636],[554.5938,77.3109,2701.0736],[554.1608,77.3109,2693.9936],[556.9858,77.3109,2688.4636],[563.6868,77.3109,2684.0436],[565.3838,77.3109,2680.0536],[556.9858,77.3109,2688.4636],[554.1608,77.3109,2693.9936],[554.5938,77.3109,2701.0736],[546.0778,77.3109,2708.5636],[538.4408,77.3109,2711.6036]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11563","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115630,"formationSource":"database-solo","spawnMask":3,"waypoints":[[540.8168,77.3127,2667.8736],[531.3188,77.3127,2668.3336],[517.9098,77.3127,2679.2436],[507.4218,77.3127,2689.6836],[517.9098,77.3127,2679.2436],[531.3188,77.3127,2668.3336]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11564","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115640,"formationSource":"database-solo","spawnMask":3,"waypoints":[[568.2188,77.2093,2704.2136],[557.4698,77.3109,2711.8836],[546.7978,77.3109,2720.6236],[543.9858,77.3109,2728.4536],[537.1918,77.3109,2736.5136],[543.9858,77.3109,2728.4536],[546.7978,77.3109,2720.6236],[557.4698,77.3109,2711.8836]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11565","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115650,"formationSource":"database-solo","spawnMask":3,"waypoints":[[511.6988,77.3127,2715.1236],[516.1208,77.3127,2707.8236],[522.6878,77.3127,2698.6936],[530.5798,77.3127,2694.0736],[534.0848,77.3109,2697.7136],[534.3788,77.3109,2707.5136],[534.0848,77.3109,2697.7136],[530.5798,77.3127,2694.0736],[522.6878,77.3127,2698.6936],[516.1208,77.3127,2707.8236]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11568","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115680,"formationSource":"database-solo","spawnMask":3,"waypoints":[[550.8478,77.3127,2674.0036],[563.2778,77.3109,2683.6136],[569.8748,77.2093,2704.2536],[566.2078,77.1966,2716.9436],[550.7258,77.3109,2734.0236],[541.4098,77.3109,2739.2336],[550.7258,77.3109,2734.0236],[566.2078,77.1966,2716.9436],[569.8748,77.2093,2704.2536],[563.2778,77.3109,2683.6136]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11569","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115690,"formationSource":"database-solo","spawnMask":3,"waypoints":[[558.7368,77.3109,2675.1336],[548.6438,77.3127,2668.2736],[539.7638,77.3109,2675.4136],[536.3598,77.3109,2686.8136],[531.8878,77.3127,2692.6936],[536.3828,77.3109,2686.7336],[539.7638,77.3109,2675.4136],[548.6438,77.3127,2668.2736]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11599","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115990,"formationSource":"database-solo","spawnMask":3,"waypoints":[[542.7818,77.3109,2723.1736],[550.0818,77.3109,2717.7836],[555.4758,77.3109,2714.0336],[558.2758,77.3109,2705.3036],[562.0888,77.3109,2699.2136],[565.7408,77.2093,2694.6536],[562.0888,77.3109,2699.2136],[558.2758,77.3109,2705.3036],[555.4758,77.3109,2714.0336],[550.0818,77.3109,2717.7836]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-31799","name":"Lordaeron Sentry Patrol","speed":1.15,"pathId":317990,"formationSource":"database-solo","spawnMask":3,"waypoints":[[638.6218,102.9729,3580.8636],[732.7758,105.9774,3592.2736],[814.2658,114.8153,3541.6736],[816.0628,110.6332,3441.5036],[795.0738,103.7903,3341.5036],[759.5258,101.0822,3241.6836],[798.9118,101.3921,3221.6536],[898.8008,101.3859,3184.5936],[955.4798,95.9688,3141.4536],[964.7898,79.8934,3041.5836],[971.3798,72.2086,2941.7136],[985.9298,64.5029,2841.6336],[994.3298,55.3331,2741.6236],[985.9298,64.5029,2841.6336],[971.3798,72.2086,2941.7136],[964.7898,79.8934,3041.5836],[955.4798,95.9688,3141.4536],[898.8008,101.3859,3184.5936],[798.9118,101.3921,3221.6536],[759.5258,101.0822,3241.6836],[795.0738,103.7903,3341.5036],[816.0628,110.6332,3441.5036],[814.2658,114.8153,3541.6736],[732.7758,105.9774,3592.2736]],"members":[{"id":"member","entityId":"entry-17815","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-31931","name":"Lordaeron Sentry Patrol","speed":1.15,"pathId":319310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[1266.2698,94.1857,3044.9736],[1165.8598,94.0874,3095.5936],[1065.6598,94.2811,3160.6036],[965.7698,99.9139,3171.0736],[865.5768,101.4593,3196.4936],[765.7958,101.523,3227.4736],[665.8058,92.373,3164.2736],[565.4438,81.5859,3114.7936],[465.7668,102.1105,3075.5636],[375.3348,113.0693,3020.7336],[265.7058,113.0437,2972.1136],[165.7768,114.6478,2904.0036],[86.4718,112.5472,2851.2936],[165.7768,114.6478,2904.0036],[265.7058,113.0437,2972.1136],[375.3348,113.0693,3020.7336],[465.7668,102.1105,3075.5636],[565.4438,81.5859,3114.7936],[665.8058,92.373,3164.2736],[765.7958,101.523,3227.4736],[865.5768,101.4593,3196.4936],[965.7698,99.9139,3171.0736],[1065.6598,94.2811,3160.6036],[1165.8598,94.0874,3095.5936]],"members":[{"id":"member","entityId":"entry-17815","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-38051","name":"Lordaeron Sentry Patrol","speed":1.15,"pathId":380510,"formationSource":"database-solo","spawnMask":3,"waypoints":[[99.2198,113.2601,2856.8636],[165.7798,115.0934,2900.2936],[232.2788,113.4319,2949.9936],[299.1428,112.9192,2988.1136],[365.7688,113.1943,3016.8436],[432.2218,108.6335,3041.8736],[499.1278,93.7837,3101.9536],[565.7648,81.4519,3114.7436],[632.3578,83.9372,3137.4736],[699.0098,99.7846,3190.5836],[765.5878,101.5696,3227.1236],[832.2878,101.4437,3209.0836],[899.1888,101.3653,3184.5436],[965.7198,100.1326,3170.1936],[1032.3498,94.3412,3166.6936],[1098.8998,94.2811,3145.0236],[1159.5098,94.1623,3099.9236],[1098.8998,94.2811,3145.0236],[1032.3498,94.3412,3166.6936],[965.7198,100.1326,3170.1936],[899.1888,101.3653,3184.5436],[832.2878,101.4437,3209.0836],[765.5878,101.5696,3227.1236],[699.0098,99.7846,3190.5836],[632.3578,83.9372,3137.4736],[565.7648,81.4519,3114.7436],[499.1278,93.7837,3101.9536],[432.2218,108.6335,3041.8736],[365.7688,113.1943,3016.8436],[299.1428,112.9192,2988.1136],[232.2788,113.4319,2949.9936],[165.7798,115.0934,2900.2936]],"members":[{"id":"member","entityId":"entry-17815","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-38497","name":"Lordaeron Sentry Patrol","speed":1.15,"pathId":384970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[992.0798,54.3396,2726.7336],[999.2698,63.0121,2808.0136],[961.6998,71.2543,2912.5336],[956.0498,78.5093,3008.0236],[965.9798,90.3364,3108.1536],[899.1638,101.3653,3184.9336],[799.0718,101.4437,3221.8636],[759.4898,101.0822,3241.7636],[794.7738,103.8235,3341.5636],[815.9088,110.6018,3441.7936],[814.1058,114.8052,3541.5836],[799.0398,113.9568,3589.7636],[713.4488,104.4859,3574.9836],[639.4738,102.9729,3579.8936],[713.4488,104.4859,3574.9836],[799.0398,113.9568,3589.7636],[814.1058,114.8052,3541.5836],[815.9088,110.6018,3441.7936],[794.7738,103.8235,3341.5636],[759.4898,101.0822,3241.7636],[799.0718,101.4437,3221.8636],[899.1638,101.3653,3184.9336],[965.9798,90.3364,3108.1536],[956.0498,78.5093,3008.0236],[961.6998,71.2543,2912.5336],[999.2698,63.0121,2808.0136]],"members":[{"id":"member","entityId":"entry-17815","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48018","name":"Lordaeron Watchman Patrol","speed":1.15,"pathId":480180,"formationSource":"database-solo","spawnMask":3,"waypoints":[[481.8518,109.4996,2972.1436],[461.2348,112.198,2982.5336],[449.0348,112.2058,3008.0836],[469.9918,112.2644,3021.6536],[487.8968,112.1811,3000.5636],[476.6518,112.2753,2984.8436],[472.4158,112.2766,3008.4536],[458.5168,117.0518,3005.0236],[462.9938,120.1612,2993.9136],[477.7428,125.9784,3000.5436],[463.7498,131.5831,3010.4536],[463.4058,136.2706,2994.8536],[474.2848,141.7753,3003.7636],[474.2848,141.7753,3003.7636],[463.4058,136.2706,2994.8536],[463.7498,131.5831,3010.4536],[477.7428,125.9784,3000.5436],[462.9938,120.1612,2993.9136],[458.5168,117.0518,3005.0236],[472.4158,112.2766,3008.4536],[476.6518,112.2753,2984.8436],[487.8968,112.1811,3000.5636],[469.9918,112.2644,3021.6536],[449.0348,112.2058,3008.0836],[461.2348,112.198,2982.5336]],"members":[{"id":"member","entityId":"entry-17814","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-77818","name":"Durnholde Rifleman Patrol","speed":1.15,"pathId":778180,"formationSource":"database-solo","spawnMask":3,"waypoints":[[52.9688,101.4466,3009.1636],[56.9088,101.2846,3010.2336],[68.5158,101.1829,3014.7536],[72.5248,101.1449,3008.7736],[68.6048,101.1947,3015.6236],[61.5438,101.103,3010.9536],[51.4178,101.5315,3007.5036],[42.9348,101.5051,3009.1236],[41.2238,101.5226,3013.3436],[42.8448,101.5115,3010.6536]],"members":[{"id":"member","entityId":"entry-17820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-77819","name":"Durnholde Warden Patrol","speed":1.15,"pathId":778190,"formationSource":"database-solo","spawnMask":3,"waypoints":[[172.6948,100.7159,3099.0636],[177.7088,100.74,3098.7336],[188.9278,100.4041,3104.8836],[195.9438,100.4042,3113.8536],[198.9798,100.3493,3111.0036],[189.8638,100.4123,3117.8236],[181.1028,100.5112,3108.0736],[173.1198,100.7198,3099.1136],[168.0648,100.7367,3103.0736]],"members":[{"id":"member","entityId":"entry-17833","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83514","name":"Tarren Mill Peasant Patrol","speed":1.15,"pathId":835140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[626.2238,102.1667,3484.7036],[633.3758,102.3528,3495.5136],[630.6658,102.4508,3503.2836],[627.1838,102.2706,3509.6336],[630.6658,102.4508,3503.2836],[633.3758,102.3528,3495.5136]],"members":[{"id":"member","entityId":"entry-18644","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83515","name":"Tarren Mill Peasant Patrol","speed":1.15,"pathId":835150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[619.3608,102.2917,3496.5636],[623.0018,102.4167,3502.8036],[623.0218,102.2828,3510.2936],[619.7248,102.0206,3518.5936],[626.1038,102.0206,3522.2936],[633.8608,102.1028,3513.4336],[636.5368,102.2278,3503.0936],[627.3898,102.5417,3503.0636],[636.5368,102.2278,3503.0936],[633.8608,102.1028,3513.4336],[626.1038,102.0206,3522.2936],[619.7248,102.0206,3518.5936],[623.0218,102.2828,3510.2936],[623.0018,102.4167,3502.8036]],"members":[{"id":"member","entityId":"entry-18644","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83907","name":"Durnholde Rifleman Patrol","speed":1.15,"pathId":839070,"formationSource":"database-solo","spawnMask":3,"waypoints":[[108.2268,115.0916,3074.8336],[94.8218,112.1228,3085.5336],[75.7248,117.5756,3079.8136],[59.0498,122.4623,3084.1736],[61.1778,126.0294,3095.3936],[76.4978,133.9084,3110.9036],[98.3528,134.9323,3123.8336],[107.3998,136.8497,3139.7636],[112.1858,143.7222,3160.3436],[107.3868,136.8671,3139.9936],[98.0618,134.9137,3123.9436],[76.5728,134.0393,3111.4236],[60.6688,125.9484,3095.4336],[59.1938,122.4524,3084.2236],[75.5118,117.6256,3080.0936],[94.7638,112.1119,3086.1136],[107.7778,114.856,3075.2336],[123.8548,113.0614,3053.1036],[129.2748,112.0536,3038.6636],[150.9058,111.7142,3014.6836],[128.8598,112.0594,3038.9236],[123.5508,113.0613,3053.5436]],"members":[{"id":"member","entityId":"entry-17820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83910","name":"Durnholde Sentry Patrol","speed":1.15,"pathId":839100,"formationSource":"database-solo","spawnMask":3,"waypoints":[[177.2988,111.665,3067.2736],[184.3758,111.4413,3072.7236],[188.5698,111.5849,3080.9136],[199.5648,111.5089,3092.4336],[206.8478,111.3912,3097.4136],[211.8168,111.0088,3104.8936],[214.3318,111.5235,3116.7336],[211.8588,110.9129,3105.1136],[206.3298,111.3373,3097.3436],[198.6908,111.5502,3092.2636],[188.2328,111.6041,3080.8536],[184.3648,111.3496,3073.0636],[176.8228,111.6677,3066.8336],[166.2088,111.7123,3061.5536],[162.7538,111.9011,3054.5636],[159.0518,112.7251,3047.9536],[165.8368,111.7135,3061.5936]],"members":[{"id":"member","entityId":"entry-17819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83930","name":"Durnholde Rifleman Patrol","speed":1.15,"pathId":839300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[11.0094,99.8513,3038.7336],[29.3356,99.9211,3025.5836],[46.6248,99.2808,3026.8336],[66.2118,99.8113,3036.6036],[75.8718,99.2854,3034.9536],[77.8968,99.4018,3028.3736],[78.4928,99.7092,3020.4736],[81.3808,101.9206,3011.7436],[76.8538,101.6914,3005.1136],[61.7468,101.7258,2997.8836],[49.7598,101.8644,2992.7836],[38.4118,100.6425,2990.3236],[22.3717,100.0249,2990.0336],[9.3554,99.745,2991.6036],[-0.7496,99.488,2996.4336],[-8.1447,99.9645,3002.8336],[-14.1149,100.7642,3010.7136],[-21.4551,100.8808,3022.3536],[-27.185,99.6644,3033.6136],[-33.2531,99.5187,3046.7336],[-37.9775,100.6083,3056.1836],[-35.9772,99.7008,3065.2536],[-24.7995,99.474,3074.0036],[-14.4896,99.2808,3073.2336],[-7.4756,99.3212,3061.8536],[0.035,99.3672,3054.3536]],"members":[{"id":"member","entityId":"entry-17820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83934","name":"Durnholde Sentry Patrol","speed":1.15,"pathId":839340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[7.3156,100.5836,3009.5936],[13.9143,100.8842,3006.1136],[19.1456,100.9634,3003.3136],[20.5164,100.9444,3000.8936],[18.9438,100.9575,2996.8636],[22.9365,100.9388,3007.1836],[16.7676,100.9343,3009.2136],[11.1167,100.7664,3007.0436],[5.0051,100.4858,3010.6636],[0.1827,100.6008,3013.2636],[0.3837,100.629,3017.2036],[2.7787,100.5989,3022.7036],[0.3475,100.6331,3017.5936],[0.1083,100.6068,3013.6536]],"members":[{"id":"member","entityId":"entry-17819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83939","name":"Durnholde Armorer Patrol","speed":1.15,"pathId":839390,"formationSource":"database-solo","spawnMask":3,"waypoints":[[50.4498,136.295,3128.0436],[53.1288,136.295,3130.3936],[50.3718,136.295,3121.6336],[48.1458,136.295,3125.4636],[43.9728,136.295,3124.3036]],"members":[{"id":"member","entityId":"entry-18764","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83940","name":"Durnholde Rifleman Patrol","speed":1.15,"pathId":839400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[37.8778,136.2947,3146.7836],[41.7288,136.2947,3139.7436],[52.0798,136.2947,3145.5036],[60.9318,134.7957,3150.2136],[67.8878,135.0561,3138.8736],[79.5078,135.0561,3118.9636],[67.6548,135.0562,3139.0436],[60.7948,134.795,3150.7736],[70.5518,136.2952,3155.6136],[80.7088,136.2952,3161.1136],[74.6248,136.2952,3172.1236],[64.6798,136.2952,3165.9036],[61.0508,136.2952,3163.5536],[56.3438,136.2952,3171.4136],[49.9028,136.2952,3176.4336],[42.0418,140.2233,3171.9136],[49.2598,145.1166,3158.7936],[39.1738,145.1166,3153.2736],[48.4568,150.2178,3137.1636],[64.3078,150.2178,3146.1836],[79.8278,150.2178,3154.8936],[70.3508,145.1165,3171.0136],[49.2848,145.1165,3159.2336],[42.0068,140.2234,3172.1136],[49.8188,136.2948,3176.4536],[56.4548,136.2948,3171.5736],[60.6358,136.2948,3163.9036],[38.5848,136.2948,3151.1936]],"members":[{"id":"member","entityId":"entry-17820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83947","name":"Orc Prisoner Patrol","speed":1.15,"pathId":839470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[166.2518,99.2819,3122.4036],[174.4388,99.7226,3125.4936],[150.3908,99.3758,3100.2736],[127.5268,99.2809,3079.2736],[104.2628,99.5761,3063.1936],[71.9108,99.6455,3047.1836],[28.3318,99.3161,3034.3036],[1.4836,100.6279,3020.0836],[6.4995,100.5446,3010.1336],[6.9791,100.5804,3009.0936],[1.9829,100.6122,3021.8936],[-1.0088,99.4202,3046.6836],[15.4755,100.1757,3048.9736],[39.9108,99.5947,3037.6936],[78.5868,99.2816,3050.0836],[99.3558,99.4906,3062.1136],[120.7938,99.4312,3073.2736],[141.6168,99.9682,3094.6836],[165.4128,99.2809,3105.4536],[180.1368,100.7584,3100.3336],[171.1918,100.7195,3099.8936],[161.4968,99.2809,3121.8436]],"members":[{"id":"member","entityId":"entry-18598","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83950","name":"Durnholde Sentry Patrol","speed":1.15,"pathId":839500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[160.4228,100.0614,3136.3436],[155.2378,99.4015,3118.9336],[143.4548,99.7889,3097.3936],[122.7268,99.4433,3077.7236],[109.7788,99.4149,3065.4436],[97.1568,99.3128,3060.3236],[82.9068,99.2808,3052.8436],[65.9938,99.2808,3051.1036],[46.1528,99.3467,3053.6936],[20.7072,99.3964,3057.6836],[-2.8912,99.5078,3061.5236],[-11.9405,99.282,3067.6536],[-22.974,99.4124,3083.8436],[-11.7748,99.2808,3067.7336],[-2.8292,99.5091,3061.4736],[9.5129,99.4713,3060.7736],[33.5588,99.2809,3056.0336],[61.9818,99.281,3051.7136],[74.9258,99.2813,3051.3836],[83.3298,99.282,3053.2936],[96.2638,99.3356,3060.2036],[109.4008,99.4777,3065.6036],[116.3748,99.7227,3070.0536],[126.0878,99.3186,3082.6936],[143.1858,99.8028,3097.2936],[149.2008,99.6238,3107.7036]],"members":[{"id":"member","entityId":"entry-17819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83958","name":"Durnholde Rifleman Patrol","speed":1.15,"pathId":839580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[193.6338,100.9225,3144.1836],[193.8358,100.7334,3151.7136],[185.9228,100.5742,3164.2136],[190.9788,100.5223,3167.9336],[185.2228,100.5821,3164.1236],[185.8528,100.4456,3156.7136],[192.3658,100.9255,3145.2736],[193.1748,100.8845,3138.4136],[188.3888,100.8659,3135.7636],[191.9228,100.892,3138.1836]],"members":[{"id":"member","entityId":"entry-17820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83962","name":"Durnholde Sentry Patrol","speed":1.15,"pathId":839620,"formationSource":"database-solo","spawnMask":3,"waypoints":[[204.8828,100.6305,3121.1636],[206.0798,101.6202,3116.0936],[202.4458,100.6923,3109.3136],[194.7968,101.0874,3099.6536],[186.3398,100.4842,3090.1636],[180.5198,101.3679,3083.6436],[174.3008,100.8479,3082.6336],[160.3398,99.406,3092.8236],[157.7518,99.4194,3099.1736],[161.3168,99.2809,3105.4436],[170.9098,99.3201,3112.6936],[183.0378,99.5118,3128.1436],[182.4858,99.2808,3137.5536],[177.4878,100.1755,3145.8136],[168.1848,99.3846,3161.9036],[169.6328,100.0499,3166.6936],[179.4748,100.5989,3172.6836],[186.0178,101.7259,3175.1736],[188.4748,102.4149,3175.1636],[192.7188,100.9429,3170.2436],[192.2508,100.2671,3168.0936],[185.6698,100.572,3163.9236],[195.3658,100.8913,3148.0236],[193.2768,100.8825,3137.8836],[189.1878,100.9042,3136.2736],[184.0848,99.292,3133.2136],[188.2798,99.2869,3130.8536],[195.1668,99.281,3126.0436],[205.0108,99.7211,3128.8336]],"members":[{"id":"member","entityId":"entry-17819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83970","name":"Durnholde Cook Patrol","speed":1.15,"pathId":839700,"formationSource":"database-solo","spawnMask":3,"waypoints":[[86.6338,136.2947,3142.3836],[86.3198,136.2948,3142.8936],[88.3848,136.2948,3143.1836],[88.4198,136.2948,3142.6036],[88.9638,136.2948,3143.6436],[93.1368,136.2948,3146.0636],[92.7998,136.2947,3146.4036]],"members":[{"id":"member","entityId":"entry-18765","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83972","name":"Lordaeron Sentry Patrol","speed":1.15,"pathId":839720,"formationSource":"database-solo","spawnMask":3,"waypoints":[[847.7678,101.9946,3279.2836],[832.8118,104.4996,3281.7436],[801.8938,104.4088,3280.3136],[813.0548,104.3893,3247.7436],[836.0408,104.4984,3275.0736],[807.7888,104.5053,3271.9436],[817.9778,110.3862,3257.3236],[827.0198,115.5298,3271.3436],[810.1658,121.9555,3273.1936],[816.6568,127.376,3259.8436],[824.5608,130.4796,3268.6436],[816.0718,134.0141,3274.0636],[816.0718,134.0141,3274.0636],[824.5608,130.4796,3268.6436],[816.6568,127.376,3259.8436],[810.0718,122.053,3273.1436],[827.0198,115.5298,3271.3436],[817.9778,110.3862,3257.3236],[807.7888,104.5053,3271.9436],[836.0408,104.4984,3275.0736],[813.0548,104.3893,3247.7436],[801.8938,104.4088,3280.3136],[832.8118,104.4996,3281.7436]],"members":[{"id":"member","entityId":"entry-17815","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84302","name":"Tarren Mill Guardsman Patrol","speed":1.15,"pathId":843020,"formationSource":"database-solo","spawnMask":3,"waypoints":[[690.3828,103.3648,3530.5036],[694.2768,103.2203,3523.2436],[696.7898,103.5733,3513.8836],[697.6328,103.8766,3501.8236],[697.1498,103.5683,3488.4036],[690.9918,103.5505,3474.9036],[684.0148,104.4025,3463.5036],[673.4838,104.9159,3460.9636],[684.0148,104.4025,3463.5036],[690.9918,103.5505,3474.9036],[697.1498,103.5683,3488.4036],[697.6328,103.8766,3501.8236],[696.7898,103.5733,3513.8836],[694.2768,103.2203,3523.2436]],"members":[{"id":"member","entityId":"entry-18092","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84303","name":"Tarren Mill Lookout Patrol","speed":1.15,"pathId":843030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[686.4988,104.0652,3481.2036],[686.4988,104.0652,3481.2036],[686.4988,104.0652,3481.2036]],"members":[{"id":"member","entityId":"entry-18094","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84304","name":"Tarren Mill Lookout Patrol","speed":1.15,"pathId":843040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[689.1278,104.0163,3486.1636],[689.1278,104.0163,3486.1636],[689.1278,104.0163,3486.1636]],"members":[{"id":"member","entityId":"entry-18094","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84305","name":"Tarren Mill Lookout Patrol","speed":1.15,"pathId":843050,"formationSource":"database-solo","spawnMask":3,"waypoints":[[685.7758,109.9783,3587.0536],[685.7758,109.9783,3587.0536],[685.7758,109.9783,3587.0536]],"members":[{"id":"member","entityId":"entry-18094","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84309","name":"Tarren Mill Lookout Patrol","speed":1.15,"pathId":843090,"formationSource":"database-solo","spawnMask":3,"waypoints":[[682.3298,110.1586,3584.0336],[682.3298,110.1586,3584.0336],[682.3298,110.1586,3584.0336]],"members":[{"id":"member","entityId":"entry-18094","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84313","name":"Tarren Mill Guardsman Patrol","speed":1.15,"pathId":843130,"formationSource":"database-solo","spawnMask":3,"waypoints":[[647.7048,104.7324,3622.9736],[636.7118,105.5125,3624.6936],[626.8388,105.1982,3626.3036],[616.9158,104.9505,3626.5036],[606.5648,104.5732,3625.7636],[598.9418,104.3098,3625.0136],[606.5648,104.5732,3625.7636],[616.9158,104.9505,3626.5036],[626.7988,105.1572,3626.3036],[636.7118,105.5125,3624.6936]],"members":[{"id":"member","entityId":"entry-18092","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84317","name":"Tarren Mill Guardsman Patrol","speed":1.15,"pathId":843170,"formationSource":"database-solo","spawnMask":3,"waypoints":[[558.2318,103.2356,3529.0936],[535.5318,102.8612,3539.2136],[524.8538,103.3022,3562.3536],[544.7148,102.7075,3578.8036],[559.3558,103.0241,3589.9936],[575.5268,102.8635,3601.7536],[559.3558,103.0241,3589.9936],[544.7148,102.7075,3578.8036],[524.8538,103.3022,3562.3536],[535.5318,102.8612,3539.2136]],"members":[{"id":"member","entityId":"entry-18092","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"encounter-285","name":"Lieutenant Drake","position":[2173.6114,24.858,3599.6707]},{"id":"encounter-283","name":"Captain Skarloc","position":[2386.0666,27.195,3591.1638]},{"id":"encounter-281","name":"Epoch Hunter","position":[2601.3758,29.532,3577.9538]}],"objectiveOrder":[{"id":"encounter-285","name":"Lieutenant Drake","position":[2173.6114,24.858,3599.6707]},{"id":"encounter-283","name":"Captain Skarloc","position":[2386.0666,27.195,3591.1638]},{"id":"encounter-281","name":"Epoch Hunter","position":[2601.3758,29.532,3577.9538]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2744,"id":180523,"map":560,"orientation":5.06146,"phaseMask":1,"position_x":1814.98,"position_y":1023.67,"position_z":12.1299,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3258,"id":180425,"map":560,"orientation":5.28835,"phaseMask":1,"position_x":1809.47,"position_y":1034.96,"position_z":12.4796,"rotation0":0,"rotation1":0,"rotation2":-0.477159,"rotation3":0.878817,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3259,"id":180425,"map":560,"orientation":1.18682,"phaseMask":1,"position_x":1809.52,"position_y":1036.72,"position_z":12.9088,"rotation0":0,"rotation1":0,"rotation2":0.559193,"rotation3":0.829038,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3260,"id":180425,"map":560,"orientation":1.0821,"phaseMask":1,"position_x":1809.53,"position_y":1027.33,"position_z":12.479,"rotation0":0,"rotation1":0,"rotation2":0.515038,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3261,"id":180425,"map":560,"orientation":5.86431,"phaseMask":1,"position_x":1809.6,"position_y":1025.36,"position_z":12.9128,"rotation0":0,"rotation1":0,"rotation2":-0.207911,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3262,"id":180425,"map":560,"orientation":3.45576,"phaseMask":1,"position_x":1813.1,"position_y":1025.38,"position_z":12.9276,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3263,"id":180425,"map":560,"orientation":2.23402,"phaseMask":1,"position_x":1813.12,"position_y":1027.28,"position_z":12.5191,"rotation0":0,"rotation1":0,"rotation2":0.898793,"rotation3":0.438373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3264,"id":180425,"map":560,"orientation":4.17134,"phaseMask":1,"position_x":1813.17,"position_y":1035.05,"position_z":12.4873,"rotation0":0,"rotation1":0,"rotation2":-0.870356,"rotation3":0.492424,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3265,"id":180425,"map":560,"orientation":2.19911,"phaseMask":1,"position_x":1813.22,"position_y":1036.75,"position_z":12.8827,"rotation0":0,"rotation1":0,"rotation2":0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":8253,"id":180472,"map":560,"orientation":1.5708,"phaseMask":1,"position_x":1817.63,"position_y":1052.49,"position_z":18.5191,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":8254,"id":180472,"map":560,"orientation":2.84488,"phaseMask":1,"position_x":2643.55,"position_y":660.977,"position_z":60.4459,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":8255,"id":180472,"map":560,"orientation":2.53072,"phaseMask":1,"position_x":2648.07,"position_y":670.109,"position_z":60.6153,"rotation0":0,"rotation1":0,"rotation2":0.953716,"rotation3":0.300708,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47213,"animprogress":255,"areaId":2367,"guid":15064,"id":184332,"map":560,"orientation":4.72984,"phaseMask":1,"position_x":1819.04,"position_y":1023.37,"position_z":19.7126,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47213,"animprogress":255,"areaId":2367,"guid":15065,"id":180570,"map":560,"orientation":1.51844,"phaseMask":1,"position_x":1808.45,"position_y":1022.87,"position_z":13.7121,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47213,"animprogress":255,"areaId":2367,"guid":15066,"id":184304,"map":560,"orientation":5.88176,"phaseMask":1,"position_x":1720.56,"position_y":1017.82,"position_z":0.40558,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16926,"id":22882,"map":560,"orientation":1.4399,"phaseMask":1,"position_x":1823.36,"position_y":1029.28,"position_z":11.6412,"rotation0":0,"rotation1":0,"rotation2":0.659347,"rotation3":0.751839,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16927,"id":22883,"map":560,"orientation":0.506145,"phaseMask":1,"position_x":1824.24,"position_y":1031.34,"position_z":11.6412,"rotation0":0,"rotation1":0,"rotation2":0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16928,"id":22884,"map":560,"orientation":3.14159,"phaseMask":1,"position_x":1822.9,"position_y":1032.18,"position_z":11.6412,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16929,"id":22885,"map":560,"orientation":0.104719,"phaseMask":1,"position_x":1813.83,"position_y":999.684,"position_z":12.1316,"rotation0":0,"rotation1":0,"rotation2":0.0523356,"rotation3":0.99863,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16930,"id":22886,"map":560,"orientation":4.23242,"phaseMask":1,"position_x":1822.89,"position_y":1030.72,"position_z":11.6412,"rotation0":0,"rotation1":0,"rotation2":0.854913,"rotation3":-0.518772,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16931,"id":22887,"map":560,"orientation":1.50971,"phaseMask":1,"position_x":1812.62,"position_y":999.104,"position_z":12.1316,"rotation0":0,"rotation1":0,"rotation2":0.685183,"rotation3":0.728371,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21780,"id":182589,"map":560,"orientation":-1.93731,"phaseMask":1,"position_x":2151.68,"position_y":248.571,"position_z":53.8705,"rotation0":0,"rotation1":0,"rotation2":-0.824125,"rotation3":0.566409,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21781,"id":182589,"map":560,"orientation":-1.93731,"phaseMask":1,"position_x":2067.49,"position_y":106.071,"position_z":54.6145,"rotation0":0,"rotation1":0,"rotation2":-0.824125,"rotation3":0.566409,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21782,"id":182589,"map":560,"orientation":0.680678,"phaseMask":1,"position_x":2100.11,"position_y":43.5364,"position_z":53.5583,"rotation0":0,"rotation1":0,"rotation2":0.333807,"rotation3":0.942642,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21783,"id":182589,"map":560,"orientation":-0.087267,"phaseMask":1,"position_x":2213.61,"position_y":247.538,"position_z":53.646,"rotation0":0,"rotation1":0,"rotation2":-0.0436197,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21784,"id":182589,"map":560,"orientation":2.25148,"phaseMask":1,"position_x":2080.19,"position_y":64.7402,"position_z":53.8836,"rotation0":0,"rotation1":0,"rotation2":0.902586,"rotation3":0.430509,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21785,"id":182589,"map":560,"orientation":3.05433,"phaseMask":1,"position_x":2080.12,"position_y":73.7365,"position_z":53.7249,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21786,"id":182589,"map":560,"orientation":-2.26893,"phaseMask":1,"position_x":2226.61,"position_y":251.616,"position_z":53.8043,"rotation0":0,"rotation1":0,"rotation2":-0.906308,"rotation3":0.422617,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21787,"id":182589,"map":560,"orientation":0.366519,"phaseMask":1,"position_x":2056.08,"position_y":112.369,"position_z":54.6098,"rotation0":0,"rotation1":0,"rotation2":0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21788,"id":182589,"map":560,"orientation":1.5441,"phaseMask":1,"position_x":2199.23,"position_y":272.604,"position_z":53.9846,"rotation0":0,"rotation1":0,"rotation2":0.697605,"rotation3":0.716482,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21789,"id":182589,"map":560,"orientation":0.669957,"phaseMask":1,"position_x":2176.01,"position_y":265.24,"position_z":53.6466,"rotation0":0,"rotation1":0,"rotation2":0.328749,"rotation3":0.944417,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21790,"id":182589,"map":560,"orientation":5.79311,"phaseMask":1,"position_x":2168.72,"position_y":244.449,"position_z":53.7167,"rotation0":0,"rotation1":0,"rotation2":0.242593,"rotation3":-0.970128,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21791,"id":182589,"map":560,"orientation":5.95176,"phaseMask":1,"position_x":2078.53,"position_y":129.964,"position_z":54.2812,"rotation0":0,"rotation1":0,"rotation2":0.164955,"rotation3":-0.986301,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21792,"id":182589,"map":560,"orientation":3.64426,"phaseMask":1,"position_x":2062.71,"position_y":77.1961,"position_z":53.9166,"rotation0":0,"rotation1":0,"rotation2":0.968582,"rotation3":-0.248696,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21793,"id":182589,"map":560,"orientation":1.23779,"phaseMask":1,"position_x":2108.03,"position_y":54.9457,"position_z":53.6505,"rotation0":0,"rotation1":0,"rotation2":0.580135,"rotation3":0.81452,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21794,"id":182589,"map":560,"orientation":5.79153,"phaseMask":1,"position_x":2119.21,"position_y":42.4893,"position_z":53.7846,"rotation0":0,"rotation1":0,"rotation2":0.243359,"rotation3":-0.969936,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30236,"id":184173,"map":560,"orientation":2.83853,"phaseMask":1,"position_x":2761.42,"position_y":1296.29,"position_z":13.5566,"rotation0":0,"rotation1":0,"rotation2":0.988541,"rotation3":0.150952,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30237,"id":184174,"map":560,"orientation":2.83853,"phaseMask":1,"position_x":2761.42,"position_y":1296.29,"position_z":13.5566,"rotation0":0,"rotation1":0,"rotation2":0.988541,"rotation3":0.150952,"spawnMask":2,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30238,"id":23015,"map":560,"orientation":3.34231,"phaseMask":1,"position_x":2336.88,"position_y":889.649,"position_z":57.6454,"rotation0":0,"rotation1":0,"rotation2":-0.994968,"rotation3":0.100189,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30239,"id":184393,"map":560,"orientation":2.63545,"phaseMask":1,"position_x":2230.56,"position_y":118.124,"position_z":83.053,"rotation0":0,"rotation1":0,"rotation2":0.968148,"rotation3":0.250379,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30240,"id":3803,"map":560,"orientation":2.63545,"phaseMask":1,"position_x":1712.6,"position_y":661.398,"position_z":31.1709,"rotation0":0,"rotation1":0,"rotation2":0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30241,"id":3804,"map":560,"orientation":-2.35619,"phaseMask":1,"position_x":1711.93,"position_y":660.806,"position_z":31.1709,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30245,"id":185394,"map":560,"orientation":0.226892,"phaseMask":1,"position_x":2249.99,"position_y":183.907,"position_z":113.039,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30246,"id":185432,"map":560,"orientation":0.34034,"phaseMask":1,"position_x":2250.83,"position_y":180.618,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":0.16935,"rotation3":0.985556,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30247,"id":185417,"map":560,"orientation":0.549779,"phaseMask":1,"position_x":2249.34,"position_y":176.342,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30248,"id":185430,"map":560,"orientation":0.36652,"phaseMask":1,"position_x":2247.17,"position_y":181.031,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.182236,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30249,"id":185431,"map":560,"orientation":6.02139,"phaseMask":1,"position_x":2249.9,"position_y":188.024,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":-0.130526,"rotation3":0.991445,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30250,"id":185399,"map":560,"orientation":0.90757,"phaseMask":1,"position_x":2249.14,"position_y":168.914,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":0.438371,"rotation3":0.898794,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30251,"id":185400,"map":560,"orientation":0.90757,"phaseMask":1,"position_x":2250.57,"position_y":167.731,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":0.438371,"rotation3":0.898794,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30252,"id":185416,"map":560,"orientation":6.04757,"phaseMask":1,"position_x":2246.65,"position_y":188.885,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.117537,"rotation3":0.993069,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30253,"id":185418,"map":560,"orientation":1.15192,"phaseMask":1,"position_x":2255.26,"position_y":171.154,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.544639,"rotation3":0.838671,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30254,"id":185423,"map":560,"orientation":5.31453,"phaseMask":1,"position_x":2258.94,"position_y":192.315,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":-0.465613,"rotation3":0.884988,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30255,"id":185398,"map":560,"orientation":5.61996,"phaseMask":1,"position_x":2245.01,"position_y":198.427,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":-0.325568,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30256,"id":185419,"map":560,"orientation":1.33518,"phaseMask":1,"position_x":2260.11,"position_y":169.374,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.619094,"rotation3":0.785317,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30257,"id":185424,"map":560,"orientation":2.10312,"phaseMask":1,"position_x":2264.77,"position_y":182.158,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":0.868198,"rotation3":0.496217,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30258,"id":185415,"map":560,"orientation":5.86431,"phaseMask":1,"position_x":2248.43,"position_y":193.736,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.207911,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30259,"id":185397,"map":560,"orientation":5.61996,"phaseMask":1,"position_x":2246.19,"position_y":199.851,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":-0.325568,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30260,"id":185414,"map":560,"orientation":5.26217,"phaseMask":1,"position_x":2253.62,"position_y":199.655,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.488621,"rotation3":0.872496,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30261,"id":185426,"map":560,"orientation":1.22173,"phaseMask":1,"position_x":2255.22,"position_y":188.807,"position_z":137.092,"rotation0":0,"rotation1":0,"rotation2":0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30262,"id":185422,"map":560,"orientation":4.2237,"phaseMask":1,"position_x":2266.05,"position_y":192.884,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":-0.857167,"rotation3":0.515038,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30264,"id":185420,"map":560,"orientation":3.93572,"phaseMask":1,"position_x":2267.62,"position_y":191.912,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":-0.9222,"rotation3":0.386713,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30265,"id":185421,"map":560,"orientation":3.15906,"phaseMask":1,"position_x":2270.59,"position_y":185.15,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30266,"id":185413,"map":560,"orientation":5.07891,"phaseMask":1,"position_x":2258.31,"position_y":201.827,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.566406,"rotation3":0.824126,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30267,"id":185409,"map":560,"orientation":1.93731,"phaseMask":1,"position_x":2267.96,"position_y":169.891,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566408,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30268,"id":185407,"map":560,"orientation":2.05949,"phaseMask":1,"position_x":2259.35,"position_y":191.998,"position_z":137.06,"rotation0":0,"rotation1":0,"rotation2":0.857167,"rotation3":0.515038,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30269,"id":185408,"map":560,"orientation":1.43117,"phaseMask":1,"position_x":2264.67,"position_y":191.16,"position_z":137.047,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30270,"id":185396,"map":560,"orientation":2.47837,"phaseMask":1,"position_x":2280.08,"position_y":171.867,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30271,"id":185403,"map":560,"orientation":2.47837,"phaseMask":1,"position_x":2267.51,"position_y":168.074,"position_z":137.159,"rotation0":0,"rotation1":0,"rotation2":0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30272,"id":185410,"map":560,"orientation":2.12057,"phaseMask":1,"position_x":2272.65,"position_y":172.063,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.872496,"rotation3":0.488622,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30273,"id":185395,"map":560,"orientation":2.47837,"phaseMask":1,"position_x":2281.26,"position_y":173.292,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30274,"id":185411,"map":560,"orientation":2.72271,"phaseMask":1,"position_x":2277.84,"position_y":177.982,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30275,"id":185428,"map":560,"orientation":2.90596,"phaseMask":1,"position_x":2279.62,"position_y":182.834,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.993068,"rotation3":0.117544,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30277,"id":185412,"map":560,"orientation":3.50812,"phaseMask":1,"position_x":2279.1,"position_y":190.688,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30278,"id":185427,"map":560,"orientation":2.05949,"phaseMask":1,"position_x":2271.25,"position_y":190.082,"position_z":137.092,"rotation0":0,"rotation1":0,"rotation2":0.857167,"rotation3":0.515038,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30279,"id":185404,"map":560,"orientation":4.81711,"phaseMask":1,"position_x":2261.71,"position_y":204.25,"position_z":137.165,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30280,"id":185405,"map":560,"orientation":4.81711,"phaseMask":1,"position_x":2259.86,"position_y":204.111,"position_z":137.165,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30281,"id":185406,"map":560,"orientation":3.10665,"phaseMask":1,"position_x":2281.71,"position_y":186.622,"position_z":137.194,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174693,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30282,"id":185425,"map":560,"orientation":3.35977,"phaseMask":1,"position_x":2281.15,"position_y":190.29,"position_z":137.194,"rotation0":0,"rotation1":0,"rotation2":-0.994056,"rotation3":0.108872,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30283,"id":185429,"map":560,"orientation":3.69137,"phaseMask":1,"position_x":2276.93,"position_y":195.377,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.962455,"rotation3":0.271442,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30284,"id":185402,"map":560,"orientation":4.04917,"phaseMask":1,"position_x":2275.7,"position_y":203.987,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":-0.898793,"rotation3":0.438373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30285,"id":185401,"map":560,"orientation":4.04917,"phaseMask":1,"position_x":2277.13,"position_y":202.804,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":-0.898793,"rotation3":0.438373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30287,"id":182592,"map":560,"orientation":1.72788,"phaseMask":1,"position_x":2157.28,"position_y":234.934,"position_z":53.8488,"rotation0":0,"rotation1":0,"rotation2":0.760407,"rotation3":0.649446,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30288,"id":182592,"map":560,"orientation":-1.90241,"phaseMask":3,"position_x":2178.79,"position_y":254.287,"position_z":53.5769,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30289,"id":182592,"map":560,"orientation":-0.767945,"phaseMask":3,"position_x":2150.41,"position_y":249.103,"position_z":53.8624,"rotation0":0,"rotation1":0,"rotation2":-0.374607,"rotation3":0.927184,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30290,"id":182592,"map":560,"orientation":-2.21657,"phaseMask":1,"position_x":2211.3,"position_y":246.804,"position_z":55.4124,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30291,"id":182592,"map":560,"orientation":2.67035,"phaseMask":1,"position_x":2119.77,"position_y":42.0842,"position_z":53.7686,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233447,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30292,"id":182592,"map":560,"orientation":2.04204,"phaseMask":3,"position_x":2081,"position_y":64.6541,"position_z":53.9115,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30293,"id":182592,"map":560,"orientation":1.53589,"phaseMask":3,"position_x":2064.9,"position_y":69.6156,"position_z":53.6659,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30294,"id":182592,"map":560,"orientation":-1.55334,"phaseMask":1,"position_x":2070.08,"position_y":93.2598,"position_z":54.0862,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30295,"id":182592,"map":560,"orientation":-2.98451,"phaseMask":1,"position_x":2073.39,"position_y":142.325,"position_z":54.4632,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784606,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30296,"id":182592,"map":560,"orientation":2.42601,"phaseMask":3,"position_x":2055.37,"position_y":111.925,"position_z":54.602,"rotation0":0,"rotation1":0,"rotation2":0.936673,"rotation3":0.350206,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30297,"id":182592,"map":560,"orientation":0.959931,"phaseMask":1,"position_x":2069.83,"position_y":106.7,"position_z":54.6518,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30298,"id":182592,"map":560,"orientation":-1.58825,"phaseMask":1,"position_x":2086.59,"position_y":52.8431,"position_z":53.5683,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30299,"id":182592,"map":560,"orientation":0.174533,"phaseMask":3,"position_x":2100.1,"position_y":42.5693,"position_z":53.575,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30300,"id":182592,"map":560,"orientation":-0.541052,"phaseMask":3,"position_x":2228.1,"position_y":251.4,"position_z":55.5517,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.96363,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30301,"id":182592,"map":560,"orientation":1.309,"phaseMask":1,"position_x":2199.6,"position_y":271.738,"position_z":53.9931,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30302,"id":182592,"map":560,"orientation":-0.872665,"phaseMask":1,"position_x":2171.96,"position_y":262.641,"position_z":63.3226,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30303,"id":182592,"map":560,"orientation":0.593412,"phaseMask":3,"position_x":2176.22,"position_y":247.951,"position_z":53.9294,"rotation0":0,"rotation1":0,"rotation2":0.292372,"rotation3":0.956305,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30304,"id":182592,"map":560,"orientation":1.09956,"phaseMask":1,"position_x":2070.19,"position_y":80.9965,"position_z":64.3421,"rotation0":0,"rotation1":0,"rotation2":0.5225,"rotation3":0.852639,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30305,"id":182592,"map":560,"orientation":-0.15708,"phaseMask":3,"position_x":2079.69,"position_y":74.5419,"position_z":53.7058,"rotation0":0,"rotation1":0,"rotation2":-0.0784593,"rotation3":0.996917,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30306,"id":182592,"map":560,"orientation":-0.069813,"phaseMask":1,"position_x":2069.07,"position_y":124.392,"position_z":54.444,"rotation0":0,"rotation1":0,"rotation2":-0.0348994,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30307,"id":182592,"map":560,"orientation":1.43117,"phaseMask":1,"position_x":2118.76,"position_y":51.5617,"position_z":53.8408,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30308,"id":182592,"map":560,"orientation":-0.20944,"phaseMask":3,"position_x":2100.35,"position_y":59.5064,"position_z":53.4081,"rotation0":0,"rotation1":0,"rotation2":-0.104529,"rotation3":0.994522,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30309,"id":182592,"map":560,"orientation":-1.88496,"phaseMask":1,"position_x":2202.69,"position_y":256.725,"position_z":62.7723,"rotation0":0,"rotation1":0,"rotation2":-0.809018,"rotation3":0.587783,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30310,"id":182592,"map":560,"orientation":-2.25148,"phaseMask":1,"position_x":2195.58,"position_y":257.778,"position_z":54.0599,"rotation0":0,"rotation1":0,"rotation2":-0.902586,"rotation3":0.430509,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30311,"id":184064,"map":560,"orientation":-0.584685,"phaseMask":1,"position_x":1998.01,"position_y":291.612,"position_z":66.2953,"rotation0":0,"rotation1":0,"rotation2":-0.288196,"rotation3":0.957571,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30312,"id":184065,"map":560,"orientation":-2.16421,"phaseMask":1,"position_x":1998.08,"position_y":291.503,"position_z":66.2969,"rotation0":0,"rotation1":0,"rotation2":-0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30313,"id":184066,"map":560,"orientation":-0.584685,"phaseMask":1,"position_x":1998.06,"position_y":291.653,"position_z":65.5727,"rotation0":0,"rotation1":0,"rotation2":-0.288196,"rotation3":0.957571,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30314,"id":23013,"map":560,"orientation":2.00713,"phaseMask":1,"position_x":2054.42,"position_y":528.338,"position_z":65.4477,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30315,"id":23014,"map":560,"orientation":2.64417,"phaseMask":1,"position_x":2057.57,"position_y":529.638,"position_z":65.4477,"rotation0":0,"rotation1":0,"rotation2":0.969231,"rotation3":0.246154,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30316,"id":23015,"map":560,"orientation":4.82584,"phaseMask":1,"position_x":2056.9,"position_y":546.385,"position_z":65.4171,"rotation0":0,"rotation1":0,"rotation2":-0.665881,"rotation3":0.746058,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30317,"id":174873,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2616.96,"position_y":637.732,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30318,"id":174874,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2616.02,"position_y":634.981,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30319,"id":160850,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2618.8,"position_y":643.08,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30320,"id":160851,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2617.86,"position_y":640.329,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30321,"id":3801,"map":560,"orientation":-2.79253,"phaseMask":1,"position_x":2613.54,"position_y":698.199,"position_z":57.198,"rotation0":0,"rotation1":0,"rotation2":-0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30322,"id":3802,"map":560,"orientation":-1.50098,"phaseMask":1,"position_x":2613.54,"position_y":697.304,"position_z":57.198,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30323,"id":3816,"map":560,"orientation":6.08247,"phaseMask":1,"position_x":2663.18,"position_y":665.014,"position_z":62.1436,"rotation0":0,"rotation1":0,"rotation2":-0.100187,"rotation3":0.994969,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30324,"id":3817,"map":560,"orientation":1.09083,"phaseMask":1,"position_x":2663.13,"position_y":666.337,"position_z":57.2267,"rotation0":0,"rotation1":0,"rotation2":0.518772,"rotation3":0.854913,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30325,"id":3819,"map":560,"orientation":6.08247,"phaseMask":1,"position_x":2662.99,"position_y":665.11,"position_z":57.2267,"rotation0":0,"rotation1":0,"rotation2":-0.100187,"rotation3":0.994969,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30326,"id":22657,"map":560,"orientation":2.36492,"phaseMask":1,"position_x":2663.04,"position_y":662.154,"position_z":61.9345,"rotation0":0,"rotation1":0,"rotation2":0.92554,"rotation3":0.37865,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30327,"id":149423,"map":560,"orientation":0.549779,"phaseMask":1,"position_x":2661.1,"position_y":662.625,"position_z":61.9345,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30328,"id":3818,"map":560,"orientation":3.89209,"phaseMask":1,"position_x":2662.53,"position_y":665.941,"position_z":57.2267,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30329,"id":3815,"map":560,"orientation":3.89209,"phaseMask":1,"position_x":2662.72,"position_y":665.845,"position_z":62.1436,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30330,"id":160847,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2626.68,"position_y":634.385,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30331,"id":160849,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2627.58,"position_y":636.982,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30332,"id":160846,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2625.74,"position_y":631.635,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30333,"id":160848,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2628.52,"position_y":639.733,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30334,"id":174881,"map":560,"orientation":4.86947,"phaseMask":1,"position_x":2657.95,"position_y":702.307,"position_z":57.5617,"rotation0":0,"rotation1":0,"rotation2":-0.649447,"rotation3":0.760406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30335,"id":3801,"map":560,"orientation":0.418878,"phaseMask":1,"position_x":2665.36,"position_y":697.494,"position_z":57.482,"rotation0":0,"rotation1":0,"rotation2":0.207911,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30336,"id":3802,"map":560,"orientation":1.71042,"phaseMask":1,"position_x":2665.29,"position_y":698.386,"position_z":57.482,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30337,"id":22642,"map":560,"orientation":2.67908,"phaseMask":1,"position_x":2664.22,"position_y":674.112,"position_z":57.1576,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30338,"id":22644,"map":560,"orientation":2.67908,"phaseMask":1,"position_x":2663.25,"position_y":672.172,"position_z":57.1576,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30339,"id":22646,"map":560,"orientation":2.67908,"phaseMask":1,"position_x":2662.33,"position_y":670.324,"position_z":57.1576,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30340,"id":22640,"map":560,"orientation":4.24988,"phaseMask":1,"position_x":2661.43,"position_y":676.9,"position_z":57.1576,"rotation0":0,"rotation1":0,"rotation2":-0.850351,"rotation3":0.526215,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30341,"id":22641,"map":560,"orientation":4.24988,"phaseMask":1,"position_x":2663.56,"position_y":675.838,"position_z":57.1576,"rotation0":0,"rotation1":0,"rotation2":-0.850351,"rotation3":0.526215,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":33597,"id":23013,"map":560,"orientation":0.523598,"phaseMask":1,"position_x":2318.69,"position_y":890.539,"position_z":57.6761,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":33598,"id":23014,"map":560,"orientation":1.16064,"phaseMask":1,"position_x":2320.26,"position_y":887.519,"position_z":57.6761,"rotation0":0,"rotation1":0,"rotation2":0.548293,"rotation3":0.836286,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33599,"id":184063,"map":560,"orientation":1.5708,"phaseMask":1,"position_x":2236.85,"position_y":1017.21,"position_z":53.7309,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33600,"id":184062,"map":560,"orientation":-3.13287,"phaseMask":1,"position_x":2236.95,"position_y":1017.11,"position_z":53.7307,"rotation0":0,"rotation1":0,"rotation2":-0.99999,"rotation3":0.00436133,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33601,"id":184068,"map":560,"orientation":-3.13287,"phaseMask":1,"position_x":2236.98,"position_y":1017.08,"position_z":52.8975,"rotation0":0,"rotation1":0,"rotation2":-0.99999,"rotation3":0.00436133,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55735,"id":187235,"map":560,"orientation":1.50098,"phaseMask":1,"position_x":2327.7,"position_y":923.297,"position_z":55.0792,"rotation0":0,"rotation1":0,"rotation2":0.681998,"rotation3":0.731354,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55736,"id":187235,"map":560,"orientation":0.820303,"phaseMask":1,"position_x":2350.5,"position_y":913.715,"position_z":55.2528,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55737,"id":187235,"map":560,"orientation":4.17134,"phaseMask":1,"position_x":1957.94,"position_y":1090.89,"position_z":26.6288,"rotation0":0,"rotation1":0,"rotation2":-0.870356,"rotation3":0.492424,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55738,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":2634.74,"position_y":705.168,"position_z":56.1564,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55739,"id":187235,"map":560,"orientation":6.05629,"phaseMask":1,"position_x":2628.34,"position_y":698.823,"position_z":56.2869,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55740,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":2644.95,"position_y":704.002,"position_z":56.1751,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55741,"id":187235,"map":560,"orientation":3.7001,"phaseMask":1,"position_x":2649.52,"position_y":700.67,"position_z":56.3216,"rotation0":0,"rotation1":0,"rotation2":-0.961261,"rotation3":0.27564,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55742,"id":187567,"map":560,"orientation":1.25664,"phaseMask":1,"position_x":2628.55,"position_y":655.727,"position_z":61.1613,"rotation0":0,"rotation1":0,"rotation2":0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55743,"id":187235,"map":560,"orientation":0.820303,"phaseMask":1,"position_x":2614.34,"position_y":627.073,"position_z":56.7241,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55744,"id":187235,"map":560,"orientation":1.09956,"phaseMask":1,"position_x":2632.78,"position_y":654.738,"position_z":54.2741,"rotation0":0,"rotation1":0,"rotation2":0.522498,"rotation3":0.85264,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55745,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":2624.57,"position_y":657.569,"position_z":54.2737,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55746,"id":187235,"map":560,"orientation":2.93214,"phaseMask":1,"position_x":2647.02,"position_y":670.236,"position_z":55.7051,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104536,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55747,"id":187235,"map":560,"orientation":1.81514,"phaseMask":1,"position_x":2622.35,"position_y":624.398,"position_z":56.7241,"rotation0":0,"rotation1":0,"rotation2":0.788011,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55748,"id":187235,"map":560,"orientation":1.83259,"phaseMask":1,"position_x":2654.3,"position_y":656.427,"position_z":61.9301,"rotation0":0,"rotation1":0,"rotation2":0.793353,"rotation3":0.608762,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55749,"id":187235,"map":560,"orientation":3.87463,"phaseMask":1,"position_x":2188.3,"position_y":147.514,"position_z":90.1394,"rotation0":0,"rotation1":0,"rotation2":-0.93358,"rotation3":0.358368,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55750,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":2182.14,"position_y":136.87,"position_z":90.1394,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55751,"id":187235,"map":560,"orientation":4.20625,"phaseMask":1,"position_x":2228.18,"position_y":128.799,"position_z":104.672,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55752,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":2218.77,"position_y":112.094,"position_z":104.672,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55753,"id":187235,"map":560,"orientation":3.22886,"phaseMask":1,"position_x":2251.85,"position_y":137.491,"position_z":89.4548,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436193,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55754,"id":187235,"map":560,"orientation":1.90241,"phaseMask":1,"position_x":2246.24,"position_y":127.997,"position_z":89.4548,"rotation0":0,"rotation1":0,"rotation2":0.814116,"rotation3":0.580703,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55755,"id":187235,"map":560,"orientation":0.157079,"phaseMask":1,"position_x":1899.79,"position_y":1048.55,"position_z":18.0428,"rotation0":0,"rotation1":0,"rotation2":0.0784588,"rotation3":0.996917,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55756,"id":187235,"map":560,"orientation":5.75959,"phaseMask":1,"position_x":1901.2,"position_y":1058.45,"position_z":18.1829,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55757,"id":187235,"map":560,"orientation":3.17653,"phaseMask":1,"position_x":1884.31,"position_y":1083.16,"position_z":17.6409,"rotation0":0,"rotation1":0,"rotation2":-0.999847,"rotation3":0.0174693,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55758,"id":187235,"map":560,"orientation":4.43314,"phaseMask":1,"position_x":1871.39,"position_y":1070.32,"position_z":17.1592,"rotation0":0,"rotation1":0,"rotation2":-0.798635,"rotation3":0.601815,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55759,"id":187235,"map":560,"orientation":0.750491,"phaseMask":1,"position_x":1863.76,"position_y":1061.21,"position_z":15.7083,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55760,"id":187235,"map":560,"orientation":5.02655,"phaseMask":1,"position_x":1840.65,"position_y":1097.35,"position_z":15.2979,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55761,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":1823.27,"position_y":1050.91,"position_z":11.0783,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55762,"id":187235,"map":560,"orientation":3.76991,"phaseMask":1,"position_x":1821.2,"position_y":1040.31,"position_z":11.6916,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55763,"id":187567,"map":560,"orientation":1.58825,"phaseMask":1,"position_x":1817.56,"position_y":1052.36,"position_z":16.8424,"rotation0":0,"rotation1":0,"rotation2":0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55764,"id":187235,"map":560,"orientation":3.63029,"phaseMask":1,"position_x":1810.83,"position_y":1124.28,"position_z":13.3553,"rotation0":0,"rotation1":0,"rotation2":-0.970295,"rotation3":0.241925,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55765,"id":187235,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":1800.69,"position_y":1084.27,"position_z":11.0713,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55766,"id":187235,"map":560,"orientation":4.92183,"phaseMask":1,"position_x":1809.76,"position_y":1083.95,"position_z":11.3059,"rotation0":0,"rotation1":0,"rotation2":-0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55767,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":1808.54,"position_y":1024.53,"position_z":11.6881,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55768,"id":187567,"map":560,"orientation":4.69494,"phaseMask":1,"position_x":1805.48,"position_y":1097.36,"position_z":19.5861,"rotation0":0,"rotation1":0,"rotation2":-0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55769,"id":187235,"map":560,"orientation":2.68781,"phaseMask":1,"position_x":1810.94,"position_y":1130.16,"position_z":13.3551,"rotation0":0,"rotation1":0,"rotation2":0.97437,"rotation3":0.224951,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55770,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":1776.37,"position_y":1054.55,"position_z":6.90413,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55771,"id":187235,"map":560,"orientation":5.07891,"phaseMask":1,"position_x":1776.81,"position_y":1067.18,"position_z":7.54524,"rotation0":0,"rotation1":0,"rotation2":-0.566406,"rotation3":0.824126,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55772,"id":187235,"map":560,"orientation":0.820303,"phaseMask":1,"position_x":1755.99,"position_y":1020.43,"position_z":6.87962,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55773,"id":187235,"map":560,"orientation":0.628317,"phaseMask":1,"position_x":1745.99,"position_y":1058.14,"position_z":6.87962,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55774,"id":187235,"map":560,"orientation":5.65487,"phaseMask":1,"position_x":1736.87,"position_y":1084.24,"position_z":6.87962,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68101,"id":180405,"map":560,"orientation":2.67035,"phaseMask":1,"position_x":1743.43,"position_y":1065.83,"position_z":8.60103,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233448,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68102,"id":180405,"map":560,"orientation":0.488691,"phaseMask":1,"position_x":1743.98,"position_y":1087.61,"position_z":8.61215,"rotation0":0,"rotation1":0,"rotation2":0.241921,"rotation3":0.970296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68103,"id":180405,"map":560,"orientation":0.349065,"phaseMask":1,"position_x":1763.02,"position_y":1087.88,"position_z":8.58322,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68104,"id":180405,"map":560,"orientation":3.24635,"phaseMask":1,"position_x":1774.13,"position_y":1054.08,"position_z":8.5993,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523532,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68105,"id":180405,"map":560,"orientation":5.07891,"phaseMask":1,"position_x":1774.69,"position_y":1028.48,"position_z":8.6089,"rotation0":0,"rotation1":0,"rotation2":-0.566406,"rotation3":0.824126,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68106,"id":180405,"map":560,"orientation":0.453785,"phaseMask":1,"position_x":1801.29,"position_y":1085.82,"position_z":13.7071,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68107,"id":180405,"map":560,"orientation":0.349065,"phaseMask":1,"position_x":1809.77,"position_y":1092.2,"position_z":18.0274,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68108,"id":180405,"map":560,"orientation":3.927,"phaseMask":1,"position_x":1812.14,"position_y":1053.94,"position_z":11.0891,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68109,"id":180405,"map":560,"orientation":4.34587,"phaseMask":1,"position_x":1822.68,"position_y":1018.62,"position_z":12.8462,"rotation0":0,"rotation1":0,"rotation2":-0.824126,"rotation3":0.566406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68110,"id":180405,"map":560,"orientation":0.0349062,"phaseMask":1,"position_x":1871.84,"position_y":1070.01,"position_z":17.1888,"rotation0":0,"rotation1":0,"rotation2":0.0174522,"rotation3":0.999848,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68111,"id":180405,"map":560,"orientation":4.4855,"phaseMask":1,"position_x":2189.11,"position_y":132.872,"position_z":91.4066,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68112,"id":180405,"map":560,"orientation":2.93214,"phaseMask":1,"position_x":2633.21,"position_y":655.743,"position_z":54.2938,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104536,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68404,"id":180406,"map":560,"orientation":2.67035,"phaseMask":1,"position_x":1733.62,"position_y":1068.25,"position_z":8.59315,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233448,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68405,"id":180406,"map":560,"orientation":1.48353,"phaseMask":1,"position_x":1734.55,"position_y":1087.2,"position_z":8.60055,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68406,"id":180406,"map":560,"orientation":1.85005,"phaseMask":1,"position_x":1745.36,"position_y":1056.3,"position_z":8.6145,"rotation0":0,"rotation1":0,"rotation2":0.798635,"rotation3":0.601815,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68407,"id":180406,"map":560,"orientation":1.64061,"phaseMask":1,"position_x":1753.29,"position_y":1037.22,"position_z":8.61253,"rotation0":0,"rotation1":0,"rotation2":0.731353,"rotation3":0.681999,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68408,"id":180406,"map":560,"orientation":0.244346,"phaseMask":1,"position_x":1773.57,"position_y":1085.79,"position_z":8.59356,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68409,"id":180406,"map":560,"orientation":0.244346,"phaseMask":1,"position_x":1773.88,"position_y":1067.87,"position_z":8.59006,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68410,"id":180406,"map":560,"orientation":5.13127,"phaseMask":1,"position_x":1774.57,"position_y":1039.39,"position_z":8.60128,"rotation0":0,"rotation1":0,"rotation2":-0.544639,"rotation3":0.838671,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68411,"id":180406,"map":560,"orientation":0.244346,"phaseMask":1,"position_x":1809.83,"position_y":1085.9,"position_z":13.7278,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68412,"id":180406,"map":560,"orientation":3.26377,"phaseMask":1,"position_x":1823.18,"position_y":1053.46,"position_z":11.1871,"rotation0":0,"rotation1":0,"rotation2":-0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68413,"id":180406,"map":560,"orientation":0.802851,"phaseMask":1,"position_x":1901.92,"position_y":1058.15,"position_z":18.1655,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68414,"id":180406,"map":560,"orientation":4.4855,"phaseMask":1,"position_x":2195.23,"position_y":143.929,"position_z":91.4066,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68715,"id":180407,"map":560,"orientation":1.0821,"phaseMask":1,"position_x":1732.93,"position_y":1085.41,"position_z":8.59513,"rotation0":0,"rotation1":0,"rotation2":0.515038,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68716,"id":180407,"map":560,"orientation":1.67551,"phaseMask":1,"position_x":1735.23,"position_y":1065.78,"position_z":8.61816,"rotation0":0,"rotation1":0,"rotation2":0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68717,"id":180407,"map":560,"orientation":3.28124,"phaseMask":1,"position_x":1743.21,"position_y":1058.1,"position_z":8.6161,"rotation0":0,"rotation1":0,"rotation2":-0.997563,"rotation3":0.0697661,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68718,"id":180407,"map":560,"orientation":2.40855,"phaseMask":1,"position_x":1753.23,"position_y":1056.46,"position_z":8.60648,"rotation0":0,"rotation1":0,"rotation2":0.93358,"rotation3":0.358368,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68719,"id":180407,"map":560,"orientation":2.09439,"phaseMask":1,"position_x":1753.49,"position_y":1027.79,"position_z":8.60837,"rotation0":0,"rotation1":0,"rotation2":0.866025,"rotation3":0.500001,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68720,"id":180407,"map":560,"orientation":0.977383,"phaseMask":1,"position_x":1753.59,"position_y":1087.51,"position_z":8.61018,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68721,"id":180407,"map":560,"orientation":5.42797,"phaseMask":1,"position_x":1772.29,"position_y":1087.61,"position_z":8.57141,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68722,"id":180407,"map":560,"orientation":5.25344,"phaseMask":1,"position_x":1773.64,"position_y":1078.01,"position_z":8.5445,"rotation0":0,"rotation1":0,"rotation2":-0.492423,"rotation3":0.870356,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68723,"id":180407,"map":560,"orientation":0.418879,"phaseMask":1,"position_x":1801.13,"position_y":1092.22,"position_z":18.1226,"rotation0":0,"rotation1":0,"rotation2":0.207911,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68724,"id":180407,"map":560,"orientation":3.14159,"phaseMask":1,"position_x":1855.52,"position_y":1049.69,"position_z":15.5065,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68725,"id":180407,"map":560,"orientation":1.0472,"phaseMask":1,"position_x":1946.57,"position_y":1054.01,"position_z":20.5002,"rotation0":0,"rotation1":0,"rotation2":0.5,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68726,"id":180407,"map":560,"orientation":3.21142,"phaseMask":1,"position_x":2625.09,"position_y":658.634,"position_z":54.2737,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349061,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81501,"id":112301,"map":560,"orientation":4.72112,"phaseMask":1,"position_x":1805.23,"position_y":1130.09,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.704014,"rotation3":0.710186,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81502,"id":112302,"map":560,"orientation":4.81711,"phaseMask":1,"position_x":1807.4,"position_y":1130.11,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81503,"id":112303,"map":560,"orientation":4.72112,"phaseMask":1,"position_x":1809.44,"position_y":1130.13,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.704014,"rotation3":0.710186,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81504,"id":112305,"map":560,"orientation":4.79966,"phaseMask":1,"position_x":1792.48,"position_y":1129.98,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81505,"id":112308,"map":560,"orientation":4.67748,"phaseMask":1,"position_x":1790.44,"position_y":1129.96,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81506,"id":112309,"map":560,"orientation":4.75602,"phaseMask":1,"position_x":1788.27,"position_y":1129.94,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.691513,"rotation3":0.722364,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81507,"id":112310,"map":560,"orientation":1.64061,"phaseMask":1,"position_x":1805.39,"position_y":1117.26,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":0.731354,"rotation3":0.681998,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81508,"id":112311,"map":560,"orientation":1.50098,"phaseMask":1,"position_x":1807.42,"position_y":1117.27,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":0.681997,"rotation3":0.731355,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81509,"id":112312,"map":560,"orientation":1.57952,"phaseMask":1,"position_x":1809.59,"position_y":1117.29,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":0.710185,"rotation3":0.704015,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81510,"id":112316,"map":560,"orientation":1.57952,"phaseMask":1,"position_x":1795.41,"position_y":1111.98,"position_z":12.4601,"rotation0":0,"rotation1":0,"rotation2":0.710185,"rotation3":0.704015,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81511,"id":112317,"map":560,"orientation":6.20465,"phaseMask":1,"position_x":1794.44,"position_y":1112.93,"position_z":12.4601,"rotation0":0,"rotation1":0,"rotation2":-0.039259,"rotation3":0.999229,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81512,"id":112318,"map":560,"orientation":3.15033,"phaseMask":1,"position_x":1817.13,"position_y":1118.91,"position_z":14.8869,"rotation0":0,"rotation1":0,"rotation2":-0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81513,"id":112319,"map":560,"orientation":4.78221,"phaseMask":1,"position_x":1808.01,"position_y":1112.33,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81514,"id":112321,"map":560,"orientation":4.72112,"phaseMask":1,"position_x":1802.57,"position_y":1112.28,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.704014,"rotation3":0.710186,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81515,"id":112322,"map":560,"orientation":0.0436322,"phaseMask":1,"position_x":1781.2,"position_y":1123.76,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":0.0218143,"rotation3":0.999762,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81556,"id":174994,"map":560,"orientation":5.65487,"phaseMask":1,"position_x":1874.84,"position_y":1103.79,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81557,"id":174995,"map":560,"orientation":5.65487,"phaseMask":1,"position_x":1876.24,"position_y":1105.72,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81558,"id":174996,"map":560,"orientation":4.08407,"phaseMask":1,"position_x":1878.05,"position_y":1106.08,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81559,"id":174997,"map":560,"orientation":4.08407,"phaseMask":1,"position_x":1879.81,"position_y":1104.81,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81560,"id":174998,"map":560,"orientation":4.08407,"phaseMask":1,"position_x":1881.48,"position_y":1103.59,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81575,"id":22684,"map":560,"orientation":2.51327,"phaseMask":1,"position_x":1890.81,"position_y":1087.85,"position_z":23.6316,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81576,"id":22685,"map":560,"orientation":2.51327,"phaseMask":1,"position_x":1892.8,"position_y":1090.6,"position_z":23.6316,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81577,"id":22904,"map":560,"orientation":4.37205,"phaseMask":1,"position_x":1822.65,"position_y":1035.22,"position_z":18.5431,"rotation0":0,"rotation1":0,"rotation2":-0.816642,"rotation3":0.577145,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81578,"id":22908,"map":560,"orientation":3.90081,"phaseMask":1,"position_x":1821.75,"position_y":1023.72,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":-0.928809,"rotation3":0.370558,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81579,"id":22915,"map":560,"orientation":4.72984,"phaseMask":1,"position_x":1820.18,"position_y":1023.96,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81580,"id":22916,"map":560,"orientation":5.29708,"phaseMask":1,"position_x":1818.5,"position_y":1023.7,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":-0.473319,"rotation3":0.880891,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81581,"id":22917,"map":560,"orientation":2.34746,"phaseMask":1,"position_x":1821.7,"position_y":1020.94,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":0.9222,"rotation3":0.386713,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81582,"id":22918,"map":560,"orientation":1.54462,"phaseMask":1,"position_x":1820.17,"position_y":1020.63,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":0.69779,"rotation3":0.716302,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81583,"id":22919,"map":560,"orientation":1.92859,"phaseMask":1,"position_x":1822.45,"position_y":1032.6,"position_z":18.5431,"rotation0":0,"rotation1":0,"rotation2":0.821647,"rotation3":0.569997,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81584,"id":22920,"map":560,"orientation":1.1781,"phaseMask":1,"position_x":1818.61,"position_y":1020.99,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":0.555571,"rotation3":0.831469,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81585,"id":22921,"map":560,"orientation":5.55888,"phaseMask":1,"position_x":1801.73,"position_y":1034.98,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":-0.35429,"rotation3":0.935136,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81586,"id":22922,"map":560,"orientation":4.72984,"phaseMask":1,"position_x":1803.1,"position_y":1035.27,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81587,"id":22923,"map":560,"orientation":4.05789,"phaseMask":1,"position_x":1808.02,"position_y":1035.03,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":-0.896873,"rotation3":0.442289,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81588,"id":22924,"map":560,"orientation":4.59894,"phaseMask":1,"position_x":1806.32,"position_y":1035.3,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":-0.746058,"rotation3":0.665882,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81589,"id":22925,"map":560,"orientation":4.72984,"phaseMask":1,"position_x":1804.7,"position_y":1035.28,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81590,"id":22926,"map":560,"orientation":0.0261791,"phaseMask":1,"position_x":1801.52,"position_y":1033.65,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":0.0130892,"rotation3":0.999914,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81591,"id":23013,"map":560,"orientation":2.53945,"phaseMask":1,"position_x":1989.88,"position_y":1163.66,"position_z":31.6436,"rotation0":0,"rotation1":0,"rotation2":0.95502,"rotation3":0.296542,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81592,"id":23014,"map":560,"orientation":3.17653,"phaseMask":1,"position_x":1991.93,"position_y":1166.38,"position_z":31.6436,"rotation0":0,"rotation1":0,"rotation2":-0.999847,"rotation3":0.0174693,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81593,"id":23015,"map":560,"orientation":5.35816,"phaseMask":1,"position_x":1982.85,"position_y":1180.46,"position_z":31.6129,"rotation0":0,"rotation1":0,"rotation2":-0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81607,"id":36977,"map":560,"orientation":5.65487,"phaseMask":1,"position_x":1883.64,"position_y":1096.76,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81608,"id":38147,"map":560,"orientation":1.23046,"phaseMask":1,"position_x":1815.94,"position_y":1012.81,"position_z":18.5431,"rotation0":0,"rotation1":0,"rotation2":0.577145,"rotation3":0.816642,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/escape-from-durnholde/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["29/29 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"utgarde-keep","title":"Utgarde Keep","mapId":574,"lfgDungeonIds":[202,242],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[68,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Utgarde Keep","theme":"Open-world expedition","summary":"Fight through Utgarde Keep, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Utgarde Keep...","unchartedAreaName":"Uncharted Utgarde Keep","background":"#081016","fog":{"color":"#0a141c","near":36,"far":523.908},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/574-valgarde70/visual.glb","checksum":"055149f48ac4fb3907b8c4e7a2b702743b3e0aca0421e2886cf9669aacccc325","size":52892124,"triangleCount":5534544}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/574-valgarde70/collision-000.glb","checksum":"9cc8d92f03bfe55c125741c66f61e0681b7890b481e7bbffc0376e30a0f7b2b0","size":403068,"triangleCount":78850},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/574-valgarde70/collision-001.glb","checksum":"207f0cfdad105a5e0f59636e217fb7154bdee9e831a6636f80217bc0792b3b74","size":1437596,"triangleCount":99999},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/574-valgarde70/collision-002.glb","checksum":"1c1b1cb36e509d8c7ae03ff8b587d07c46caacf53fc7dcdec9b8c86947ea627d","size":588156,"triangleCount":92533},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/574-valgarde70/collision-003.glb","checksum":"ce4d3f839a67412c6f8230718482c40cfa8af0adbde5fb568aa4f94d379daf3b","size":574804,"triangleCount":93410},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/574-valgarde70/collision-004.glb","checksum":"fe70a10b0ba2f5f703bbe01b332bce0034eaadfc23f51c85e20df225a4eaa1e8","size":172620,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/574-valgarde70/collision-005.glb","checksum":"a3f40c09f7d56398c81328b03cf985faae8fa28993e5f925c84da5b1391cdcdc","size":172972,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/574-valgarde70/collision-006.glb","checksum":"d8d945ad209a4357637d98f4e9005f434413d130458640f3e6a4636f897383e7","size":172820,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/574-valgarde70/collision-007.glb","checksum":"98cd26ec8b2062c3682f5faff0f064efcbcac0fab314c715c365cadfaaae6acb","size":172624,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/574-valgarde70/collision-008.glb","checksum":"8a345f470817e81822aa87a8ad53ec780c315132975cb6160ccd54ae940bed0d","size":172972,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/574-valgarde70/collision-009.glb","checksum":"482d8241e58dac3e7a02d40adac6a1ffd68c6e9e622ca88790d19ddb26a51810","size":386504,"triangleCount":75659},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/574-valgarde70/collision-010.glb","checksum":"9c6a68d5535211684ed18fce022715320dcf348c38bd6479547303bd183d0cd9","size":348748,"triangleCount":73070},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/574-valgarde70/collision-011.glb","checksum":"0bef57917a2bfa0dcef034110b2500f45c991df64372166c627061f0df5fd82e","size":172784,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/574-valgarde70/collision-012.glb","checksum":"632b90e5e1e78c3cbc0f3920bc19d7551d5a5e155e62ab5ae646f9101e68c05d","size":172444,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/574-valgarde70/collision-013.glb","checksum":"049edba3281c6422fa5e9acf6a52c7183931bfca79aa845f2dd0de703786b129","size":172796,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/574-valgarde70/collision-014.glb","checksum":"e63aabff9b1180f82966bc83fd23389b0ce08a90995d139d93f9ac5541675b45","size":172644,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/574-valgarde70/collision-015.glb","checksum":"7d08930480a264a200869a3f433f358346b6bdf10312b5fdf3844e929f241d10","size":172448,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/574-valgarde70/collision-016.glb","checksum":"64f49b4f9095074f4fd097108ce39ee441831514cc587ec7733a5794db87ff6c","size":172796,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/574-valgarde70/collision-017.glb","checksum":"1414291e418efbf553711c52fef9cc17a96fc4281d6efa8de01323ff266f43a3","size":172604,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/574-valgarde70/collision-018.glb","checksum":"e0394910059f029474797ea1da0ee10f34d8a8a8ea62902a7574856bbb2d78cb","size":172408,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/574-valgarde70/collision-019.glb","checksum":"faef3bd55e854c73283ae17872b2e09053e537ce6d7d76a7ffdf32f408d27b42","size":173576,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/574-valgarde70/collision-020.glb","checksum":"5067c9895075a4ca7efb12d5b0f5db173070ce7099269cf605dc7c9dfaf23b0c","size":173264,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/574-valgarde70/collision-021.glb","checksum":"954c479b1fe7008bb4a5cf5f7efb05834fb2f594f9f4b5dc8a81ce701023add2","size":173476,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/574-valgarde70/collision-022.glb","checksum":"576cb42449b0a03e8fe0e4f390d3b0da3c579e92e26a186ab0642e77daac425b","size":173252,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/574-valgarde70/collision-023.glb","checksum":"e00dfb494a82633a47a167400aa29ea5978c2efa0e1814855cf7a5bd69d91b14","size":173264,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/574-valgarde70/collision-024.glb","checksum":"172376a1ad604a10006ab550128d072c0379a19eeab933db9c6f3b4335ecc2e1","size":173476,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/574-valgarde70/collision-025.glb","checksum":"c891b194ed61cad9e451af8bbbf78d6fca7d8a639e6c21896f376754df481523","size":172448,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/574-valgarde70/collision-026.glb","checksum":"de7110d091fca22bded6afdb20bd72a77f37af97c2c8f92fd965e592d5181229","size":173416,"triangleCount":65536},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/574-valgarde70/collision-027.glb","checksum":"85e720ccdf6ccb03f78f66273ebff357ccc37d976dcd1f19f645f3735aa08826","size":220228,"triangleCount":65536},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/574-valgarde70/collision-028.glb","checksum":"ae718a831f1375c3a36b47f822bcea4ddc19615c1b9f0a261350026fdd88e8b4","size":1512336,"triangleCount":100000},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/574-valgarde70/collision-029.glb","checksum":"4f262d3bc181b0ad9b4923828a1e33b4be0f8a4a300211f68209d4069749ca7e","size":203004,"triangleCount":58096},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/574-valgarde70/collision-030.glb","checksum":"7cb4e4112d88e6dbed663fc60f127f03ee79e0979f05976bbe21decbf76fd39d","size":475428,"triangleCount":81786},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/574-valgarde70/collision-031.glb","checksum":"e2a009d212351d176c98780537c36093c83b88b0b8cbc0f04bb115603f19109a","size":176024,"triangleCount":65536},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/574-valgarde70/collision-032.glb","checksum":"f6c7ff4aa741f2a1e55e6e810d13e37f9a7cf2d8fd28e99e269b186f61a0f9a4","size":172936,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/574-valgarde70/collision-033.glb","checksum":"3b6cda1718f195345bf8863d3efec82a240a05d62db843ffd47dfd91b73ceee7","size":173372,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/574-valgarde70/collision-034.glb","checksum":"88a6669b09ffbc32e282d7ebf53c8105198a67eb97e59c4a00ecb0f1a4cd23c3","size":172672,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/574-valgarde70/collision-035.glb","checksum":"c7c96b111ea6bae10715b21d040fd5c3a50aa78819ef2f6952377b59ea291221","size":173640,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/574-valgarde70/collision-036.glb","checksum":"1ecbe6765ac61ed97eb17be3a5d95ccb28afda76469623340eeae6e005f7514b","size":548860,"triangleCount":85186},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/574-valgarde70/collision-037.glb","checksum":"a1c802c8f7a07bd1b0f32f1ffda5eb5cb4234e50ec55aefd3febe8116aa3ad61","size":627732,"triangleCount":87605},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/574-valgarde70/collision-038.glb","checksum":"05a0a1c4f7ae6029c37375858885481c0e1d1242a0e6f237eb5d5258731d3619","size":595204,"triangleCount":96769},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/574-valgarde70/collision-039.glb","checksum":"f0255ce1aab088dbd3fb5fb37b15ac4b6bdef95e789a9531c807ae130d003e59","size":1199848,"triangleCount":83540},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/574-valgarde70/collision-040.glb","checksum":"634e8f2d0793dc260ba94fdacdfa47558372582a5d0c10e5bba5a607fe0d2b11","size":178732,"triangleCount":65536},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/574-valgarde70/collision-041.glb","checksum":"3b9d05240f226717686692a0cf16ae323742993c83ebadcfd67650a3f48aca06","size":173104,"triangleCount":65536},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/574-valgarde70/collision-042.glb","checksum":"47e11e2ef7c13f3be7f1f88bcacbd9ebd21ce945eab5e607e8b6730832b878af","size":173708,"triangleCount":65536},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/574-valgarde70/collision-043.glb","checksum":"9a3ddcd66a53f97d94848f8e46ebbf33fa39aac479ef2f559d198d28adaf5b7a","size":172736,"triangleCount":65536},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/574-valgarde70/collision-044.glb","checksum":"1dd767c8dfd32696abf7aad13f551676adc52e76718acf9125ae08871ab8566f","size":173704,"triangleCount":65536},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/574-valgarde70/collision-045.glb","checksum":"7860590d3f9c51ac92f437f7af24a0469cb25c8c2a26374b8955824f38390c93","size":220900,"triangleCount":65536},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/574-valgarde70/collision-046.glb","checksum":"8591b7f6f1fcac7240c06673ffc74c111a4e5901fd1a360db42cd7a42613829e","size":499728,"triangleCount":81133},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/574-valgarde70/collision-047.glb","checksum":"1224c88dbb93271edad140fc4a1d336d0f5595b4dd325d24f87993bbe4f7b9e8","size":570836,"triangleCount":91579},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/574-valgarde70/collision-048.glb","checksum":"f097c8069d6abebf16f8f1152285331da5292b7770b394f2f24b5ca6dfd5b0e0","size":442812,"triangleCount":90584},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/574-valgarde70/collision-049.glb","checksum":"779028836e5f50a540b422f4d06fcb2563eff2a494ab07bfd650ca916fd00ee3","size":173232,"triangleCount":65536},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/574-valgarde70/collision-050.glb","checksum":"c15877275204f059aec8aac2f37c6a5eac2e05fb0c2f3a929060914aacd26401","size":173640,"triangleCount":65536},{"id":"collision-051","fileName":"collision-051.glb","url":"/assets/game/manastorm/574-valgarde70/collision-051.glb","checksum":"593afbacac1319477327a4838203b9428818ce3d4a939cedb062c23296667191","size":173328,"triangleCount":65536},{"id":"collision-052","fileName":"collision-052.glb","url":"/assets/game/manastorm/574-valgarde70/collision-052.glb","checksum":"c57299f3a28009ab2e3ff1d13d68a1636eceeec8dc4602df9d9ca425672d9d08","size":173164,"triangleCount":65536},{"id":"collision-053","fileName":"collision-053.glb","url":"/assets/game/manastorm/574-valgarde70/collision-053.glb","checksum":"c4657f3f3ef184d0fb561c3343a7745d58f4f8dcfe944724e67570bc68f1a438","size":174520,"triangleCount":65536},{"id":"collision-054","fileName":"collision-054.glb","url":"/assets/game/manastorm/574-valgarde70/collision-054.glb","checksum":"ed5709f068a259245feb6f07394e4c391a7c4bd51a94a533d1ed57ac6377fcc1","size":174148,"triangleCount":65536},{"id":"collision-055","fileName":"collision-055.glb","url":"/assets/game/manastorm/574-valgarde70/collision-055.glb","checksum":"f36c2b8015cca9efad3ccfeebbdba9b41db3a508dc4d5b76b399c3ffa26705ee","size":174472,"triangleCount":65536},{"id":"collision-056","fileName":"collision-056.glb","url":"/assets/game/manastorm/574-valgarde70/collision-056.glb","checksum":"e6ca0a3cd44b7252f32fc063ecf244c89f7d0aadd30eba08e978651cbb6d46e5","size":174036,"triangleCount":65536},{"id":"collision-057","fileName":"collision-057.glb","url":"/assets/game/manastorm/574-valgarde70/collision-057.glb","checksum":"07fa1ffea8ed8cbc97d3449b27975a31433ec7e9d37aa2a0bfff99a8a5809675","size":172932,"triangleCount":65536},{"id":"collision-058","fileName":"collision-058.glb","url":"/assets/game/manastorm/574-valgarde70/collision-058.glb","checksum":"50c1d297fa2bf6b779222d14723ddbb269c768ca513561f20348b01a9dc8aa29","size":173316,"triangleCount":65536},{"id":"collision-059","fileName":"collision-059.glb","url":"/assets/game/manastorm/574-valgarde70/collision-059.glb","checksum":"a6167c7a94695427cbc19fe49a7f18b5ec31ba52e42557dcdd3009114de24213","size":173212,"triangleCount":65536},{"id":"collision-060","fileName":"collision-060.glb","url":"/assets/game/manastorm/574-valgarde70/collision-060.glb","checksum":"70bf98c545fbdbb8cb02f299ef4238d7d45dc22d226548f01e0fad4d7bdbd843","size":172972,"triangleCount":65536},{"id":"collision-061","fileName":"collision-061.glb","url":"/assets/game/manastorm/574-valgarde70/collision-061.glb","checksum":"052436d06a8ce58dc7ef3853cb499ea5ad5fbe5b28d4731b0913c77d7799bc50","size":173452,"triangleCount":65536},{"id":"collision-062","fileName":"collision-062.glb","url":"/assets/game/manastorm/574-valgarde70/collision-062.glb","checksum":"6b05c3aa7ea80e5f7ca89aaf4e81999532b044d1681a2db016da2697ba358f58","size":173316,"triangleCount":65536},{"id":"collision-063","fileName":"collision-063.glb","url":"/assets/game/manastorm/574-valgarde70/collision-063.glb","checksum":"a33dc7fcadfc82dcb471a8022dba4c0d377dec0c15c351220b4e6ee91c52e350","size":173556,"triangleCount":65536},{"id":"collision-064","fileName":"collision-064.glb","url":"/assets/game/manastorm/574-valgarde70/collision-064.glb","checksum":"3a6cde6fba385b0de938b41b9a0de15dd86385cab8a9f77c79457df508fd0251","size":173404,"triangleCount":65536},{"id":"collision-065","fileName":"collision-065.glb","url":"/assets/game/manastorm/574-valgarde70/collision-065.glb","checksum":"c1b3dcd9917887c7da183dc71ebeec7c6d755b1690ae21e87b87f9df2e2298ea","size":173036,"triangleCount":65536},{"id":"collision-066","fileName":"collision-066.glb","url":"/assets/game/manastorm/574-valgarde70/collision-066.glb","checksum":"2dca6d74a097b7835fc90f0c87df92588d45832a325610298b813c02f419fda7","size":173500,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/574-valgarde70/navigation.glb","checksum":"0d0a8c1f5b17f2ed95049bdcf0dfc425cd90135c023919fa42bdc3cf1e001662","size":5011536,"triangleCount":434783}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-520.3712,96.2427,-89.5139],"max":[207.2788,415.4607,449.2018]},"entrance":{"name":"Utgarde Keep Entrance","footPosition":[-208.8332,116.2427,152.3668],"forward":[-0.03224160569903854,0,0.9994801042851967],"yaw":-0.03224719428546243},"areas":[{"id":"entrance","name":"Utgarde Keep Entrance","center":[-208.8332,116.2427,152.3668],"radius":35},{"id":"area-prince-keleseth","name":"Prince Keleseth's Encounter","center":[75.2068,144.5067,191.6988],"radius":42},{"id":"area-skarvold-dalronn","name":"Skarvold & Dalronn's Encounter","center":[-162.5717,222.5527,110.6008],"radius":42},{"id":"area-ingvar-the-plunderer","name":"Ingvar the Plunderer's Encounter","center":[-455.8802,284.2517,241.2548],"radius":42}],"entities":{"entry-28419":{"id":"entry-28419","kind":"mob","name":"Frenzied Geist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-25402-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":3.2357,"markerRadius":0.65}}},"entry-24069":{"id":"entry-24069","kind":"mob","name":"Dragonflayer Bonecrusher","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22297-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0407,"labelHeight":6.1162,"markerRadius":1.0864}}},"entry-24071":{"id":"entry-24071","kind":"mob","name":"Dragonflayer Heartsplitter","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22299-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24078":{"id":"entry-24078","kind":"mob","name":"Dragonflayer Metalworker","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22285-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24079":{"id":"entry-24079","kind":"mob","name":"Dragonflayer Forge Master","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22283-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24080":{"id":"entry-24080","kind":"mob","name":"Dragonflayer Weaponsmith","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22279-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24849":{"id":"entry-24849","kind":"mob","name":"Proto-Drake Rider","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22287-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24083":{"id":"entry-24083","kind":"mob","name":"Enslaved Proto-Drake","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-43931","name":"Rend","spellId":43931,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":2500,"damageMultiplier":1.12},{"id":"spell-50653","name":"Flame Breath","spellId":50653,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5500,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-24874-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.101,"labelHeight":8.1267,"markerRadius":4.5}}},"entry-24084":{"id":"entry-24084","kind":"mob","name":"Tunneling Ghoul","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-25399-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":5.3992,"markerRadius":1.2091}}},"entry-24085":{"id":"entry-24085","kind":"mob","name":"Dragonflayer Overseer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22291-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24864":{"id":"entry-24864","kind":"mob","name":"Dragonflayer Worker","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22677-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-29735":{"id":"entry-29735","kind":"mob","name":"Savage Worg","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22088-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.0731,"markerRadius":2.4676}}},"entry-24200":{"id":"entry-24200","kind":"mob","name":"Skarvald the Constructor","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-43651","name":"Charge","spellId":43651,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5155,"damageMultiplier":1.12},{"id":"spell-48583","name":"Stone Strike","spellId":48583,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":3000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22194-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0462,"labelHeight":6.9502,"markerRadius":1.2346}}},"entry-24201":{"id":"entry-24201","kind":"boss","name":"Dalronn the Controller","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-43649","name":"Shadow Bolt","spellId":43649,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-43650","name":"Debilitate","spellId":43650,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-26349-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":5.2627,"markerRadius":1.0788}}},"entry-23953":{"id":"entry-23953","kind":"boss","name":"Prince Keleseth","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-43667","name":"Shadow Bolt","spellId":43667,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7414,"damageMultiplier":1.35},{"id":"spell-48400","name":"Frost Tomb","spellId":48400,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7414,"damageMultiplier":1.35},{"id":"spell-42672","name":"Frost Tomb","spellId":42672,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7414,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-25338-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0153,"labelHeight":3.9016,"markerRadius":0.6811}}},"entry-23954":{"id":"entry-23954","kind":"boss","name":"Ingvar the Plunderer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-42857","name":"Scourge Resurrection","spellId":42857,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4554,"damageMultiplier":1.35},{"id":"spell-42862","name":"Scourge Resurrection","spellId":42862,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.35},{"id":"spell-42704","name":"Scourge Resurrection","spellId":42704,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-42708","name":"Staggering Roar","spellId":42708,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4554,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-21953-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0462,"labelHeight":6.9502,"markerRadius":1.2346}}},"entry-23956":{"id":"entry-23956","kind":"mob","name":"Dragonflayer Strategist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/9f19ece9932a25f5b90447af6bbe32a2296b424adfdd152bd3c803d9ff73da9f.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-23960":{"id":"entry-23960","kind":"mob","name":"Dragonflayer Runecaster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22289-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-23961":{"id":"entry-23961","kind":"mob","name":"Dragonflayer Ironhelm","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22281-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-28410":{"id":"entry-28410","kind":"mob","name":"Dragonflayer Spiritualist","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-25393-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0161,"labelHeight":4.9409,"markerRadius":0.7327}}},"entry-24082":{"id":"entry-24082","kind":"mob","name":"Proto-Drake Handler","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22287-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24137":{"id":"entry-24137","kind":"mob","name":"Dark Ranger Marrah","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-21746-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.7911,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-125875","entityId":"entry-28419","position":[-68.79,169.3805,123.3478],"yaw":-5.96712,"spawnMask":3},{"id":"creature-125876","entityId":"entry-28419","position":[-66.8223,169.391,117.6798],"yaw":-1.5177,"spawnMask":3},{"id":"creature-125877","entityId":"entry-28419","position":[-98.6923,218.7207,33.9693],"yaw":-4.03541,"spawnMask":3},{"id":"creature-125878","entityId":"entry-28419","position":[-93.9605,218.7457,62.9877],"yaw":-4.96695,"spawnMask":3},{"id":"creature-125880","entityId":"entry-28419","position":[-123.8575,220.9057,42.3499],"yaw":-2.12739,"spawnMask":3},{"id":"creature-125881","entityId":"entry-28419","position":[-123.5928,218.8857,33.1524],"yaw":-3.80694,"spawnMask":3},{"id":"creature-125884","entityId":"entry-28419","position":[86.5258,153.2951,82.9233],"yaw":-5.55015,"spawnMask":3},{"id":"creature-125885","entityId":"entry-28419","position":[82.3368,153.2624,77.271],"yaw":-5.79892,"spawnMask":3},{"id":"creature-125886","entityId":"entry-24069","position":[-297.5092,284.2817,160.8048],"yaw":-3.52556,"spawnMask":3},{"id":"creature-125887","entityId":"entry-24069","position":[-118.2123,282.3097,244.4498],"yaw":-1.13446,"spawnMask":3},{"id":"creature-125888","entityId":"entry-24069","position":[-128.03,282.2597,226.6408],"yaw":-2.67035,"spawnMask":3},{"id":"creature-125889","entityId":"entry-24069","position":[-222.2526,294.1597,262.3338],"yaw":-0.802851,"spawnMask":3},{"id":"creature-125890","entityId":"entry-24069","position":[-108.8932,238.9697,236.5548],"yaw":-1.11701,"spawnMask":3},{"id":"creature-125891","entityId":"entry-24071","position":[-133.4588,282.4397,247.7498],"yaw":-5.63741,"spawnMask":3},{"id":"creature-125892","entityId":"entry-24071","position":[-226.1232,294.1627,265.1368],"yaw":-0.471239,"spawnMask":3},{"id":"creature-125893","entityId":"entry-24071","position":[-101.0118,238.9567,238.3668],"yaw":-4.86947,"spawnMask":3},{"id":"creature-125894","entityId":"entry-24078","position":[-163.1023,128.4563,254.6908],"yaw":-1.98968,"spawnMask":3},{"id":"creature-125895","entityId":"entry-24078","position":[-149.9371,128.4563,252.6008],"yaw":-5.2709,"spawnMask":3},{"id":"creature-125896","entityId":"entry-24078","position":[-103.6906,126.5321,332.8808],"yaw":-4.10152,"spawnMask":3},{"id":"creature-125897","entityId":"entry-24078","position":[-121.5085,126.5321,330.1408],"yaw":-3.01942,"spawnMask":3},{"id":"creature-125898","entityId":"entry-24078","position":[-174.8493,126.5326,360.8978],"yaw":-5.23599,"spawnMask":3},{"id":"creature-125899","entityId":"entry-24078","position":[-195.7487,128.4558,267.5048],"yaw":-1.37881,"spawnMask":3},{"id":"creature-125900","entityId":"entry-24078","position":[-181.9466,128.4558,263.0188],"yaw":-4.81711,"spawnMask":3},{"id":"creature-125901","entityId":"entry-24078","position":[-128.3416,126.5321,395.1998],"yaw":-3.66519,"spawnMask":3},{"id":"creature-125902","entityId":"entry-24078","position":[-119.8358,126.5326,388.1358],"yaw":-1.15192,"spawnMask":3},{"id":"creature-125903","entityId":"entry-24079","position":[-117.6516,128.4266,346.2008],"yaw":-3.35103,"spawnMask":3},{"id":"creature-125904","entityId":"entry-24079","position":[-161.618,128.4558,348.1338],"yaw":-4.38078,"spawnMask":3},{"id":"creature-125905","entityId":"entry-24079","position":[-138.5197,128.4558,384.3528],"yaw":-0.575959,"spawnMask":3},{"id":"creature-125910","entityId":"entry-24080","position":[-186.0597,126.5321,352.0758],"yaw":-2.05949,"spawnMask":3},{"id":"creature-125911","entityId":"entry-24849","position":[-175.1437,339.0697,24.9223],"yaw":-0.230395,"spawnMask":3},{"id":"creature-125916","entityId":"entry-24849","position":[-303.0612,290.9237,39.3637],"yaw":-6.13716,"spawnMask":3},{"id":"creature-125919","entityId":"entry-24849","position":[-295.4402,293.0417,-12.4037],"yaw":-6.1368,"spawnMask":3},{"id":"creature-125923","entityId":"entry-24849","position":[-236.8742,341.7227,-30.6431],"yaw":-4.74998,"spawnMask":3},{"id":"creature-125924","entityId":"entry-24849","position":[-234.7172,344.4827,-44.5139],"yaw":-1.5473,"spawnMask":3},{"id":"creature-125925","entityId":"entry-24849","position":[-156.3095,395.4607,190.0358],"yaw":-2.15581,"spawnMask":3},{"id":"creature-125926","entityId":"entry-24849","position":[-307.8432,289.5947,71.8885],"yaw":-6.13719,"spawnMask":3},{"id":"creature-125928","entityId":"entry-24849","position":[-312.4402,293.6917,108.1368],"yaw":-2.83804,"spawnMask":3},{"id":"creature-125929","entityId":"entry-24849","position":[-90.4805,372.3657,272.0858],"yaw":-4.53437,"spawnMask":3},{"id":"creature-125933","entityId":"entry-24849","position":[-84.7937,370.1247,273.1298],"yaw":-4.52746,"spawnMask":3},{"id":"creature-125935","entityId":"entry-24849","position":[-474.8912,288.6427,242.4548],"yaw":-1.56545,"spawnMask":3},{"id":"creature-125938","entityId":"entry-24849","position":[-106.9693,376.5507,269.2868],"yaw":-4.55318,"spawnMask":3},{"id":"creature-125939","entityId":"entry-24849","position":[-340.5402,266.8777,404.2018],"yaw":-3.06533,"spawnMask":3},{"id":"creature-125948","entityId":"entry-24083","position":[89.0478,134.5889,335.8208],"yaw":-4.34587,"spawnMask":3},{"id":"creature-125949","entityId":"entry-24083","position":[48.0328,134.5734,314.9398],"yaw":-0.331613,"spawnMask":3},{"id":"creature-125950","entityId":"entry-24083","position":[35.3868,134.5529,396.5598],"yaw":-4.29351,"spawnMask":3},{"id":"creature-125951","entityId":"entry-24083","position":[-21.8632,134.5388,335.3778],"yaw":-0.261799,"spawnMask":3},{"id":"creature-125953","entityId":"entry-24083","position":[29.6918,134.5404,351.1958],"yaw":-2.49582,"spawnMask":3},{"id":"creature-125954","entityId":"entry-24084","position":[137.3398,146.6459,78.384],"yaw":-2.33874,"spawnMask":3},{"id":"creature-125955","entityId":"entry-24084","position":[63.3278,153.1656,63.4285],"yaw":-3.50811,"spawnMask":3},{"id":"creature-125956","entityId":"entry-24084","position":[-156.8747,222.5527,41.7236],"yaw":-4.13643,"spawnMask":3},{"id":"creature-125957","entityId":"entry-24084","position":[94.1258,153.1656,65.4025],"yaw":-3.68265,"spawnMask":3},{"id":"creature-125958","entityId":"entry-24084","position":[91.8448,153.1656,99.9948],"yaw":-0.436332,"spawnMask":3},{"id":"creature-125959","entityId":"entry-24084","position":[156.0538,146.6461,151.2408],"yaw":-0.890118,"spawnMask":3},{"id":"creature-125960","entityId":"entry-24084","position":[125.2228,146.6455,122.7278],"yaw":-5.39307,"spawnMask":3},{"id":"creature-125961","entityId":"entry-24084","position":[140.2818,146.6459,86.959],"yaw":-1.90241,"spawnMask":3},{"id":"creature-125962","entityId":"entry-24084","position":[-99.8246,218.8067,22.8365],"yaw":-2.98451,"spawnMask":3},{"id":"creature-125963","entityId":"entry-24084","position":[162.2788,146.6455,132.7608],"yaw":-2.61799,"spawnMask":3},{"id":"creature-125964","entityId":"entry-24084","position":[161.8108,146.6461,145.1508],"yaw":-1.50098,"spawnMask":3},{"id":"creature-125965","entityId":"entry-24084","position":[115.8568,146.6441,111.1938],"yaw":-5.74213,"spawnMask":3},{"id":"creature-125966","entityId":"entry-24084","position":[83.9968,153.1635,101.7318],"yaw":-0.366519,"spawnMask":3},{"id":"creature-125967","entityId":"entry-24084","position":[-128.2582,222.5527,51.6931],"yaw":-0.645772,"spawnMask":3},{"id":"creature-125968","entityId":"entry-24084","position":[142.8968,146.646,94.9007],"yaw":-2.02458,"spawnMask":3},{"id":"creature-125969","entityId":"entry-24084","position":[71.6298,153.1625,101.8988],"yaw":-0.034907,"spawnMask":3},{"id":"creature-125970","entityId":"entry-24084","position":[64.5298,153.1507,101.0038],"yaw":-6.23082,"spawnMask":3},{"id":"creature-125971","entityId":"entry-24084","position":[-121.1147,218.8027,22.4526],"yaw":-3.1765,"spawnMask":3},{"id":"creature-125972","entityId":"entry-24084","position":[129.0448,146.6437,70.4462],"yaw":-2.49582,"spawnMask":3},{"id":"creature-125973","entityId":"entry-24084","position":[156.5238,146.6461,125.2468],"yaw":-2.35619,"spawnMask":3},{"id":"creature-125978","entityId":"entry-24864","position":[-325.8712,278.1657,101.8858],"yaw":-2.00335,"spawnMask":3},{"id":"creature-125979","entityId":"entry-24864","position":[-312.3462,277.8697,90.5139],"yaw":-4.50295,"spawnMask":3},{"id":"creature-125980","entityId":"entry-24864","position":[-296.4172,277.8737,96.2465],"yaw":-5.75959,"spawnMask":3},{"id":"creature-125981","entityId":"entry-24864","position":[-300.6602,278.0127,98.0089],"yaw":-1.62316,"spawnMask":3},{"id":"creature-125982","entityId":"entry-24864","position":[-336.0292,278.6257,117.9498],"yaw":-3.15905,"spawnMask":3},{"id":"creature-125983","entityId":"entry-24864","position":[-296.4902,277.9147,100.9398],"yaw":-3.35103,"spawnMask":3},{"id":"creature-125993","entityId":"entry-29735","position":[-293.5842,284.2817,152.1978],"yaw":-5.86431,"spawnMask":3},{"id":"creature-125994","entityId":"entry-29735","position":[-306.7822,284.2787,156.1338],"yaw":-1.0821,"spawnMask":3},{"id":"creature-125995","entityId":"entry-29735","position":[-79.016,169.4741,114.0938],"yaw":-2.72271,"spawnMask":3},{"id":"creature-125996","entityId":"entry-29735","position":[-227.3332,294.1777,268.5528],"yaw":-2.40855,"spawnMask":3},{"id":"creature-125997","entityId":"entry-29735","position":[-219.7078,294.1857,269.1488],"yaw":-3.89208,"spawnMask":3},{"id":"creature-125998","entityId":"entry-29735","position":[-26.83,190.1451,85.7876],"yaw":-1.88689,"spawnMask":3},{"id":"creature-126023","entityId":"entry-24200","position":[-155.9432,222.5527,108.0938],"yaw":-4.86947,"spawnMask":3},{"id":"creature-126024","entityId":"entry-24201","position":[-162.5717,222.5527,110.6008],"yaw":-2.18166,"spawnMask":3},{"id":"creature-126025","entityId":"entry-23953","position":[75.2068,144.5067,191.6988],"yaw":-0.174533,"spawnMask":3},{"id":"creature-126026","entityId":"entry-23954","position":[-455.8802,284.2517,241.2548],"yaw":-5.22671,"spawnMask":3},{"id":"creature-126027","entityId":"entry-23956","position":[-46.3504,169.4851,130.0958],"yaw":-1.25664,"spawnMask":3},{"id":"creature-126028","entityId":"entry-23956","position":[-83.8158,169.4673,105.7918],"yaw":-1.39626,"spawnMask":3},{"id":"creature-126029","entityId":"entry-23956","position":[-76.7349,212.7817,108.1178],"yaw":-1.71042,"spawnMask":3},{"id":"creature-126030","entityId":"entry-23956","position":[131.3468,134.5229,321.8468],"yaw":-0.610865,"spawnMask":3},{"id":"creature-126031","entityId":"entry-23956","position":[128.5838,134.5221,330.2468],"yaw":-2.6529,"spawnMask":3},{"id":"creature-126032","entityId":"entry-23956","position":[78.3418,144.5932,219.7808],"yaw":-2.54818,"spawnMask":3},{"id":"creature-126034","entityId":"entry-23960","position":[-39.4046,169.4913,128.4818],"yaw":-5.63741,"spawnMask":3},{"id":"creature-126035","entityId":"entry-23960","position":[-72.1753,169.4794,99.7628],"yaw":-5.96903,"spawnMask":3},{"id":"creature-126036","entityId":"entry-23960","position":[-75.6637,212.7867,101.7028],"yaw":-0.907571,"spawnMask":3},{"id":"creature-126037","entityId":"entry-23960","position":[-60.8894,212.7867,110.1718],"yaw":-4.32842,"spawnMask":3},{"id":"creature-126038","entityId":"entry-23960","position":[-136.0786,282.3127,229.0258],"yaw":-3.28122,"spawnMask":3},{"id":"creature-126039","entityId":"entry-23960","position":[-106.5625,238.9637,244.0088],"yaw":-2.70526,"spawnMask":3},{"id":"creature-126040","entityId":"entry-23960","position":[135.9598,134.5204,327.7978],"yaw":-4.31096,"spawnMask":3},{"id":"creature-126041","entityId":"entry-23960","position":[72.5978,144.5932,209.9448],"yaw":-1.81514,"spawnMask":3},{"id":"creature-126042","entityId":"entry-23960","position":[109.2278,144.5931,207.0898],"yaw":-4.83456,"spawnMask":3},{"id":"creature-126043","entityId":"entry-23961","position":[-42.0987,169.4753,134.6848],"yaw":-3.38594,"spawnMask":3},{"id":"creature-126044","entityId":"entry-23961","position":[-68.9235,169.4778,110.8368],"yaw":-3.9619,"spawnMask":3},{"id":"creature-126045","entityId":"entry-23961","position":[-63.1324,212.7887,102.1928],"yaw":-5.39307,"spawnMask":3},{"id":"creature-126046","entityId":"entry-23961","position":[103.6878,144.5933,195.8448],"yaw":-5.42797,"spawnMask":3},{"id":"creature-126047","entityId":"entry-23961","position":[-185.7544,128.4558,209.9908],"yaw":-3.49066,"spawnMask":3},{"id":"creature-126048","entityId":"entry-23961","position":[-192.4708,128.4558,212.0148],"yaw":-3.38594,"spawnMask":3},{"id":"creature-126051","entityId":"entry-28410","position":[-300.0752,284.2807,153.9578],"yaw":-0.436332,"spawnMask":3},{"id":"creature-1971380","entityId":"entry-24083","position":[-310.1512,303.6947,207.6988],"yaw":-0.677681,"spawnMask":3},{"id":"creature-1971381","entityId":"entry-24082","position":[34.9928,134.534,343.5608],"yaw":-5.65487,"spawnMask":3},{"id":"creature-1971382","entityId":"entry-24082","position":[27.1988,134.5529,391.8208],"yaw":-1.0821,"spawnMask":3},{"id":"creature-1971383","entityId":"entry-24082","position":[60.8868,134.5529,376.2598],"yaw":-2.68781,"spawnMask":3},{"id":"creature-1971384","entityId":"entry-24082","position":[80.2118,134.5914,340.6928],"yaw":-1.95477,"spawnMask":3},{"id":"creature-1971385","entityId":"entry-24082","position":[83.3738,134.5953,326.4648],"yaw":-0.680678,"spawnMask":3},{"id":"creature-1971386","entityId":"entry-24137","position":[-199.9431,117.8656,178.7338],"yaw":-3.46037,"spawnMask":3}],"roamingPacks":[{"id":"patrol-125874","name":"Frenzied Geist Patrol","speed":1.15,"pathId":1258740,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-45.4025,212.9177,120.5408],[-66.6847,212.9557,103.3078],[-64.9995,212.9477,110.0078],[-37.302,207.9977,118.3108],[-12.5182,191.6202,111.4478],[-19.8902,191.2818,90.1066],[-48.504,173.8113,97.2166],[-61.5022,169.639,115.2208],[-36.0575,169.3288,109.1188],[-3.8502,169.4105,93.4685],[27.2718,162.7693,83.1827],[62.5218,153.353,77.4479],[90.3958,153.3017,81.5148],[127.6418,146.8901,97.5757],[137.5608,146.8102,115.9208],[128.9388,146.8094,96.1293],[134.2638,146.8095,110.8848],[129.5448,146.8095,97.4016],[137.7268,146.8094,115.6488],[115.1598,149.0473,86.2263],[79.2138,153.1237,79.7459],[43.3178,155.3421,77.7761],[13.0278,169.4224,87.7197],[-21.5662,169.2356,99.6928],[-50.6861,169.6509,120.6018],[-55.9715,169.9082,102.7058],[-36.6266,182.2348,95.396],[-10.5132,191.2418,101.3328],[-22.5129,197.3173,113.7688],[-52.2396,212.9467,121.3468],[-69.3756,212.9487,95.7122],[-53.2393,212.8697,119.2078]],"members":[{"id":"member","entityId":"entry-28419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125879","name":"Frenzied Geist Patrol","speed":1.15,"pathId":1258790,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-82.5413,218.7207,51.7626],[-81.02,218.7207,42.1628],[-89.4189,218.7207,44.4558],[-91.8982,218.7207,52.8779]],"members":[{"id":"member","entityId":"entry-28419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125882","name":"Frenzied Geist Patrol","speed":1.15,"pathId":1258820,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-129.8823,222.2337,39.2732],[-138.3513,222.4667,40.1103],[-140.0545,222.4667,45.6796],[-126.1707,222.4667,45.2433]],"members":[{"id":"member","entityId":"entry-28419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125883","name":"Frenzied Geist Patrol","speed":1.15,"pathId":1258830,"formationSource":"database-solo","spawnMask":3,"waypoints":[[83.6048,153.0317,75.9297],[77.0808,153.0458,85.1527],[80.0648,153.0548,91.3314],[86.5638,153.0617,93.1705],[94.4068,153.0772,84.6312],[91.8298,153.0527,74.5236]],"members":[{"id":"member","entityId":"entry-28419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125906","name":"Dragonflayer Weaponsmith Patrol","speed":1.15,"pathId":1259060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-189.1781,128.3703,256.5338],[-165.048,128.6203,248.6998],[-157.6381,128.6203,248.1758],[-159.4652,128.6203,247.8728],[-186.1686,128.6203,255.9278],[-188.3611,128.6203,256.8128]],"members":[{"id":"member","entityId":"entry-24080","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125907","name":"Dragonflayer Weaponsmith Patrol","speed":1.15,"pathId":1259070,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-183.4452,128.3703,265.8428],[-177.1794,128.3703,264.4768],[-171.8636,128.3703,279.4348],[-172.8374,128.3703,279.8278],[-177.518,128.3703,265.4898]],"members":[{"id":"member","entityId":"entry-24080","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125908","name":"Dragonflayer Weaponsmith Patrol","speed":1.15,"pathId":1259080,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-158.209,128.3703,257.4988],[-165.7059,128.3703,259.2548],[-161.213,128.3703,277.3588],[-160.5551,128.3703,277.1198],[-166.1038,128.3703,262.8708]],"members":[{"id":"member","entityId":"entry-24080","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125909","name":"Dragonflayer Weaponsmith Patrol","speed":1.15,"pathId":1259090,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-177.5836,126.6966,343.0978],[-177.9893,126.6966,343.4718],[-159.1482,126.6966,319.3838],[-158.1206,128.6584,301.3248],[-158.8235,128.6209,297.6388],[-159.5288,128.3703,299.6458],[-158.7595,126.9084,313.3328],[-174.539,126.6982,335.6338]],"members":[{"id":"member","entityId":"entry-24080","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125934","name":"Proto-Drake Rider Patrol","speed":1.15,"pathId":1259340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-440.7912,288.7407,270.4888],[-472.8172,289.5047,250.8248]],"members":[{"id":"member","entityId":"entry-24849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125936","name":"Proto-Drake Rider Patrol","speed":1.15,"pathId":1259360,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-317.1962,323.9397,270.2578],[-317.1182,330.8177,242.5418]],"members":[{"id":"member","entityId":"entry-24849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125937","name":"Proto-Drake Rider Patrol","speed":1.15,"pathId":1259370,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-377.9892,295.3307,237.5248],[-362.0942,300.1507,220.1118]],"members":[{"id":"member","entityId":"entry-24849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125940","name":"Proto-Drake Rider Patrol","speed":1.15,"pathId":1259400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-474.9142,299.8357,210.4418],[-475.3712,292.4767,236.9598]],"members":[{"id":"member","entityId":"entry-24849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125974","name":"Dragonflayer Overseer Patrol","speed":1.15,"pathId":1259740,"formationSource":"database-solo","spawnMask":3,"waypoints":[[158.4628,146.5583,137.8898],[151.1588,146.5583,148.8728],[159.4728,146.5583,137.3088],[150.5968,146.5583,127.8788]],"members":[{"id":"member","entityId":"entry-24085","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125975","name":"Dragonflayer Overseer Patrol","speed":1.15,"pathId":1259750,"formationSource":"database-solo","spawnMask":3,"waypoints":[[71.0898,153.0638,95.7596],[83.0708,153.0667,96.2356],[71.1048,153.0637,95.0353],[63.2858,153.0576,95.5015]],"members":[{"id":"member","entityId":"entry-24085","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125976","name":"Dragonflayer Overseer Patrol","speed":1.15,"pathId":1259760,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-20.8082,169.1242,102.9018],[-7.7542,169.1659,98.2214],[9.7728,169.2134,91.937],[15.7378,169.1991,89.8322],[22.2288,165.3432,87.6143],[38.1268,157.7327,82.1829],[47.0478,153.3284,79.2843],[58.4388,153.0688,76.99],[47.4358,153.1741,79.384],[36.2978,158.599,82.824],[22.6298,165.1825,87.731],[15.6538,169.1999,90.0758],[0.0768,169.1867,95.1443],[-15.3662,169.1448,100.1698],[-35.0214,169.2913,107.5628],[-47.7925,169.3954,117.5938],[-61.114,169.3902,128.0588],[-59.215,169.3902,134.9408],[-56.4019,169.3782,143.7428],[-53.3715,169.3705,153.0618],[-60.2733,169.3894,133.2288],[-51.182,169.3938,119.6038],[-40.9227,169.3951,113.8548]],"members":[{"id":"member","entityId":"entry-24085","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125977","name":"Dragonflayer Overseer Patrol","speed":1.15,"pathId":1259770,"formationSource":"database-solo","spawnMask":3,"waypoints":[[127.4938,146.5574,73.8334],[134.0788,146.5577,82.4626],[138.8428,146.5578,97.888],[134.0028,146.5578,82.7687]],"members":[{"id":"member","entityId":"entry-24085","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126033","name":"Dragonflayer Strategist Patrol","speed":1.15,"pathId":1260330,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-30.4076,186.805,90.5852],[-38.2174,181.1178,93.0046],[-47.0354,174.8129,96.0742],[-54.7017,169.4321,98.8338],[-66.1629,169.393,102.8308],[-53.8252,169.8032,98.5011],[-44.5419,176.5571,95.3191],[-34.3333,183.9101,91.9984],[-24.6778,190.7511,88.5257],[-10.9762,190.9857,83.8982],[-1.2192,190.9997,107.6638],[-13.7222,191.1567,112.8278],[-22.0132,197.0245,115.9558],[-29.528,202.3987,118.5538],[-36.3974,207.4357,120.8338],[-43.9312,212.3277,123.3348],[-58.056,212.7147,128.2378],[-62.0147,212.7187,129.6408],[-69.1396,212.6797,106.6638],[-60.8024,212.7187,130.2078],[-43.4527,212.3417,123.9278],[-33.7827,205.6217,120.4508],[-22.3605,197.3333,116.3438],[-14.0212,191.2098,113.3458],[-1.9532,190.9996,109.0068],[-9.5042,190.9811,83.9823],[-19.8302,191.01,86.9019]],"members":[{"id":"member","entityId":"entry-23956","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-126025","name":"Prince Keleseth","position":[75.2068,144.5067,191.6988]},{"id":"creature-126024","name":"Skarvold & Dalronn","position":[-162.5717,222.5527,110.6008]},{"id":"creature-126026","name":"Ingvar the Plunderer","position":[-455.8802,284.2517,241.2548]}],"objectiveOrder":[{"id":"creature-126025","name":"Prince Keleseth","position":[75.2068,144.5067,191.6988]},{"id":"creature-126024","name":"Skarvold & Dalronn","position":[-162.5717,222.5527,110.6008]},{"id":"creature-126026","name":"Ingvar the Plunderer","position":[-455.8802,284.2517,241.2548]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65376,"id":192513,"map":574,"orientation":0.322884,"phaseMask":1,"position_x":148.268,"position_y":-88.9097,"position_z":15.3079,"rotation0":0,"rotation1":0,"rotation2":0.160742,"rotation3":0.986997,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65377,"id":192514,"map":574,"orientation":0.322884,"phaseMask":1,"position_x":148.268,"position_y":-88.9097,"position_z":15.3079,"rotation0":0,"rotation1":0,"rotation2":0.160742,"rotation3":0.986997,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65378,"id":189978,"map":574,"orientation":-1.97222,"phaseMask":1,"position_x":84.0093,"position_y":263.103,"position_z":42.871,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65379,"id":189978,"map":574,"orientation":-1.90241,"phaseMask":1,"position_x":57.5496,"position_y":-10.3431,"position_z":118.778,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":2,"areaId":0,"guid":65380,"id":193059,"map":574,"orientation":-3.07177,"phaseMask":1,"position_x":251.981,"position_y":22.9282,"position_z":178.51,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349043,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65381,"id":193059,"map":574,"orientation":-0.401425,"phaseMask":1,"position_x":297.328,"position_y":10.5934,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":182,"areaId":0,"guid":65382,"id":193059,"map":574,"orientation":-1.67551,"phaseMask":1,"position_x":355.616,"position_y":53.2416,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":-0.743143,"rotation3":0.669133,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65383,"id":193059,"map":574,"orientation":-0.645772,"phaseMask":1,"position_x":161.278,"position_y":4.76378,"position_z":135.103,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65384,"id":193059,"map":574,"orientation":-2.58308,"phaseMask":1,"position_x":120.773,"position_y":129.292,"position_z":65.602,"rotation0":0,"rotation1":0,"rotation2":-0.961261,"rotation3":0.275641,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65385,"id":193059,"map":574,"orientation":0.174532,"phaseMask":1,"position_x":152.85,"position_y":236.486,"position_z":42.8711,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65386,"id":193059,"map":574,"orientation":1.93731,"phaseMask":1,"position_x":408.319,"position_y":107.505,"position_z":30.7784,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566409,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65387,"id":193059,"map":574,"orientation":-0.750491,"phaseMask":1,"position_x":162.835,"position_y":3.14898,"position_z":156.821,"rotation0":0,"rotation1":0,"rotation2":-0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65388,"id":193059,"map":574,"orientation":2.11185,"phaseMask":1,"position_x":398.074,"position_y":-77.7195,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65389,"id":193059,"map":574,"orientation":2.47837,"phaseMask":1,"position_x":257.017,"position_y":-17.061,"position_z":135.161,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65390,"id":193059,"map":574,"orientation":-2.05949,"phaseMask":1,"position_x":128.662,"position_y":108.222,"position_z":65.6601,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65391,"id":193059,"map":574,"orientation":3.00195,"phaseMask":1,"position_x":342.707,"position_y":242.213,"position_z":30.7546,"rotation0":0,"rotation1":0,"rotation2":0.997563,"rotation3":0.0697646,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65392,"id":193059,"map":574,"orientation":-2.75761,"phaseMask":1,"position_x":418.997,"position_y":22.9239,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":-0.981626,"rotation3":0.190814,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":72,"areaId":0,"guid":65393,"id":193059,"map":574,"orientation":0.191985,"phaseMask":1,"position_x":323.699,"position_y":-67.1424,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":0.0958451,"rotation3":0.995396,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":182,"areaId":0,"guid":65394,"id":193059,"map":574,"orientation":-1.41372,"phaseMask":1,"position_x":177.789,"position_y":265.575,"position_z":42.8711,"rotation0":0,"rotation1":0,"rotation2":-0.649449,"rotation3":0.760405,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65395,"id":193059,"map":574,"orientation":-1.15192,"phaseMask":1,"position_x":250.247,"position_y":-147.993,"position_z":190.333,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":53,"areaId":0,"guid":65396,"id":193059,"map":574,"orientation":0.680677,"phaseMask":1,"position_x":74.6152,"position_y":105.078,"position_z":65.6353,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65397,"id":193059,"map":574,"orientation":-1.76278,"phaseMask":1,"position_x":238.479,"position_y":31.4055,"position_z":178.51,"rotation0":0,"rotation1":0,"rotation2":-0.771624,"rotation3":0.636079,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65398,"id":193059,"map":574,"orientation":-0.645772,"phaseMask":1,"position_x":183.161,"position_y":12.3054,"position_z":135.163,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65399,"id":193059,"map":574,"orientation":-2.94959,"phaseMask":1,"position_x":258.759,"position_y":-3.25087,"position_z":178.51,"rotation0":0,"rotation1":0,"rotation2":-0.995395,"rotation3":0.0958539,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65400,"id":193059,"map":574,"orientation":-1.36136,"phaseMask":1,"position_x":285.361,"position_y":-31.8697,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":-0.629322,"rotation3":0.777145,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65401,"id":193059,"map":574,"orientation":0.296705,"phaseMask":1,"position_x":75.1364,"position_y":108.548,"position_z":87.3027,"rotation0":0,"rotation1":0,"rotation2":0.147809,"rotation3":0.989016,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65402,"id":193059,"map":574,"orientation":2.56563,"phaseMask":1,"position_x":268.211,"position_y":213.955,"position_z":42.8711,"rotation0":0,"rotation1":0,"rotation2":0.958819,"rotation3":0.284017,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65403,"id":193059,"map":574,"orientation":2.19912,"phaseMask":1,"position_x":183.357,"position_y":-40.6957,"position_z":135.128,"rotation0":0,"rotation1":0,"rotation2":0.891008,"rotation3":0.453988,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65404,"id":193059,"map":574,"orientation":1.62316,"phaseMask":1,"position_x":267.901,"position_y":-167.29,"position_z":190.41,"rotation0":0,"rotation1":0,"rotation2":0.725376,"rotation3":0.688353,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65405,"id":193059,"map":574,"orientation":3.12412,"phaseMask":1,"position_x":283.902,"position_y":-114.278,"position_z":190.446,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65406,"id":193059,"map":574,"orientation":1.83259,"phaseMask":1,"position_x":291.715,"position_y":-51.2298,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":0.793352,"rotation3":0.608764,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65407,"id":193059,"map":574,"orientation":-1.97222,"phaseMask":1,"position_x":240.241,"position_y":32.2897,"position_z":135.157,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65408,"id":186688,"map":574,"orientation":-0.724311,"phaseMask":1,"position_x":346.709,"position_y":-32.8554,"position_z":42.0184,"rotation0":0,"rotation1":0,"rotation2":-0.354291,"rotation3":0.935135,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65409,"id":186689,"map":574,"orientation":1.37008,"phaseMask":1,"position_x":381.406,"position_y":-21.5514,"position_z":42.0184,"rotation0":0,"rotation1":0,"rotation2":0.632704,"rotation3":0.774394,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65410,"id":186690,"map":574,"orientation":-2.8187,"phaseMask":1,"position_x":354.268,"position_y":2.84586,"position_z":42.0185,"rotation0":0,"rotation1":0,"rotation2":-0.986996,"rotation3":0.160746,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65411,"id":186691,"map":574,"orientation":1.37008,"phaseMask":1,"position_x":362.374,"position_y":-16.842,"position_z":24.6786,"rotation0":0,"rotation1":0,"rotation2":0.632704,"rotation3":0.774394,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65412,"id":186692,"map":574,"orientation":-2.8187,"phaseMask":1,"position_x":359.877,"position_y":-14.4443,"position_z":24.6786,"rotation0":0,"rotation1":0,"rotation2":-0.986996,"rotation3":0.160746,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65413,"id":186693,"map":574,"orientation":-0.724311,"phaseMask":1,"position_x":359.866,"position_y":-18.2358,"position_z":24.6835,"rotation0":0,"rotation1":0,"rotation2":-0.354291,"rotation3":0.935135,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":19,"areaId":0,"guid":65414,"id":186694,"map":574,"orientation":-1.24791,"phaseMask":1,"position_x":152.178,"position_y":-156.131,"position_z":179.377,"rotation0":0,"rotation1":0,"rotation2":-0.584249,"rotation3":0.811574,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65415,"id":186695,"map":574,"orientation":5.00074,"phaseMask":1,"position_x":203.387,"position_y":231.586,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":-0.598175,"rotation3":0.801365,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65416,"id":186696,"map":574,"orientation":4.73115,"phaseMask":1,"position_x":208.402,"position_y":233.407,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":-0.700443,"rotation3":0.713708,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65417,"id":186697,"map":574,"orientation":4.45251,"phaseMask":1,"position_x":214.24,"position_y":231.696,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":-0.792769,"rotation3":0.609522,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65418,"id":186698,"map":574,"orientation":2.61567,"phaseMask":1,"position_x":236.169,"position_y":191.332,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.965624,"rotation3":0.259943,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65419,"id":186699,"map":574,"orientation":2.43141,"phaseMask":1,"position_x":222.684,"position_y":199.349,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.937615,"rotation3":0.347674,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65420,"id":186700,"map":574,"orientation":2.13979,"phaseMask":1,"position_x":217.654,"position_y":196.576,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.877151,"rotation3":0.480215,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65421,"id":186701,"map":574,"orientation":1.76278,"phaseMask":1,"position_x":211.63,"position_y":193.25,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.771625,"rotation3":0.636078,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65422,"id":186702,"map":574,"orientation":1.23918,"phaseMask":1,"position_x":201.521,"position_y":194.23,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65423,"id":186703,"map":574,"orientation":5.42798,"phaseMask":1,"position_x":196.264,"position_y":227.372,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":-0.414692,"rotation3":0.909962,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65424,"id":186704,"map":574,"orientation":2.34227,"phaseMask":1,"position_x":233.705,"position_y":188.139,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.921192,"rotation3":0.389108,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65425,"id":186705,"map":574,"orientation":4.46731,"phaseMask":1,"position_x":214.445,"position_y":248.611,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":-0.788237,"rotation3":0.615372,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65426,"id":186706,"map":574,"orientation":1.46868,"phaseMask":1,"position_x":202.516,"position_y":177.458,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.670097,"rotation3":0.742273,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65427,"id":186707,"map":574,"orientation":1.19528,"phaseMask":1,"position_x":198.593,"position_y":178.391,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.562693,"rotation3":0.826666,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65428,"id":186756,"map":574,"orientation":2.07577,"phaseMask":1,"position_x":205.41,"position_y":-129.293,"position_z":6.95065,"rotation0":0,"rotation1":0,"rotation2":0.861332,"rotation3":0.508043,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65429,"id":186608,"map":574,"orientation":-2.2951,"phaseMask":1,"position_x":40.0663,"position_y":28.4071,"position_z":113.253,"rotation0":0,"rotation1":0,"rotation2":-0.91176,"rotation3":0.410722,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48120,"animprogress":255,"areaId":0,"guid":65430,"id":186609,"map":574,"orientation":2.02458,"phaseMask":1,"position_x":363.719,"position_y":-57.0912,"position_z":21.3098,"rotation0":0,"rotation1":0,"rotation2":0.848048,"rotation3":0.529919,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48120,"animprogress":255,"areaId":0,"guid":65431,"id":186610,"map":574,"orientation":4.24988,"phaseMask":1,"position_x":392.59,"position_y":5.97504,"position_z":21.3376,"rotation0":0,"rotation1":0,"rotation2":-0.850352,"rotation3":0.526214,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":65432,"id":186611,"map":574,"orientation":5.42798,"phaseMask":1,"position_x":325.84,"position_y":0.720627,"position_z":21.3376,"rotation0":0,"rotation1":0,"rotation2":-0.414692,"rotation3":0.909962,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65433,"id":186612,"map":574,"orientation":2.10502,"phaseMask":1,"position_x":168.765,"position_y":-201.194,"position_z":179.377,"rotation0":0,"rotation1":0,"rotation2":0.868669,"rotation3":0.495392,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/utgarde-keep/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["22/22 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"utgarde-pinnacle","title":"Utgarde Pinnacle","mapId":575,"lfgDungeonIds":[203,205],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[77,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Utgarde Pinnacle","theme":"Open-world expedition","summary":"Fight through Utgarde Pinnacle, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Utgarde Pinnacle...","unchartedAreaName":"Uncharted Utgarde Pinnacle","background":"#081016","fog":{"color":"#0a141c","near":36,"far":323.7394},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/575-utgardepinnacle/visual.glb","checksum":"26ecf5398de8b836e829b9fa39a4e78f7d8aaf60e0daf37c94dfdf3a4944c722","size":59344144,"triangleCount":5185049}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-000.glb","checksum":"66aef2779188c849dec4d473109684a155f3a6f69e722ae042f63b7c21af61d0","size":375664,"triangleCount":92588},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-001.glb","checksum":"e69d8a363a52740867d11569e60f8b6dfa3aa3cf6e4e871cd48ca348b9479b6c","size":374848,"triangleCount":92590},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-002.glb","checksum":"934146c8e49d6f639579481c284f7b5dc54ed7995af18bf26b0432b1cf225112","size":1041780,"triangleCount":86544},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-003.glb","checksum":"71891e04a463c38ff7d2318c8a2d554b07a45456a37ef5fd2897c4a966760585","size":669940,"triangleCount":98770},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-004.glb","checksum":"bf61579e1ededdc3905484fee669b2d90fc417afb8cf5b13eef3fcaa3ee0883f","size":787624,"triangleCount":91618},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-005.glb","checksum":"53d04607b06ef4a78730d2bbe34ba26e0a8980447579c165e8e6cae8b4ef326c","size":1058852,"triangleCount":81860},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-006.glb","checksum":"f591b81dfbce86c62c4086cdb5e59b24f953549d45ec73df70976a228c0886d0","size":522628,"triangleCount":92586},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-007.glb","checksum":"5eb8549139c333c17ae9ae9a8c9eec4ba393818fd985b4f5077f03abd9b1e96b","size":1026348,"triangleCount":99314},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-008.glb","checksum":"9f6f68b736d5e62f67e30aaa1cca4d1f1d147642f8319c70b2aefe1cb7644634","size":992764,"triangleCount":87575},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-009.glb","checksum":"e523831ee8176ac4de97d24e0f8ca3b14d3503a924a4d8c1917dd4a82b27d58e","size":507204,"triangleCount":92587},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-010.glb","checksum":"3fc90ba89ac6d34eee31b286a013f6cf4e36f18f997594fa51fb124e6233a3f2","size":1303404,"triangleCount":96468},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-011.glb","checksum":"ff702e024223d933f7a1dce1d15904e41eebb52d626d9c9665fe7a79811f2756","size":1384488,"triangleCount":97500},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-012.glb","checksum":"6423565ab9f34575e0dbddf21f99ccd326c8e56cacaccb1d987824f132b58b6e","size":809024,"triangleCount":99934},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-013.glb","checksum":"912d1ca69dde885558d466450fdc9757a3b1197e02b3dfe4286e1e6151342c88","size":1190896,"triangleCount":95739},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-014.glb","checksum":"5e68995b5e0cbfc7d9b52d3ea48f38b52cb199c81587d6eac657ac15af7ae674","size":1319544,"triangleCount":97230},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-015.glb","checksum":"89bc9b5c55d626ba506f22e9d35bcda5ece5efc82007c8ea7335dbfccf41507b","size":742216,"triangleCount":99986},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-016.glb","checksum":"9a92770e899247935fe7ff97984b349d937572bcc382ff4352dc9d3b3495e0b2","size":785376,"triangleCount":90941},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-017.glb","checksum":"ba297d1e6ed440a56fd0c28860ee3191e668e10ae47422f68eb6eb5349aa4d3c","size":929328,"triangleCount":83170},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-018.glb","checksum":"feac4edb76820d9527a41ad0baa861d513edc8592177361a50de5d7c5de0db93","size":375976,"triangleCount":92589},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-019.glb","checksum":"1ff2a53865168480ae042e37f670b81bbe596e4b92019dd5d88af6ecead95d95","size":366980,"triangleCount":92587}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/575-utgardepinnacle/navigation.glb","checksum":"5cfd9cf7030972f813d362a9d7375df13f07ee9762002a9db3592f5caf17f050","size":9771420,"triangleCount":842326}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[342.9158,-165.0605,962.7288],"max":[704.6208,-80.3442,1412.3668]},"entrance":{"name":"Utgarde Pinnacle Entrance","footPosition":[567.2668,-109.9832,1367.3668],"forward":[0,0,1],"yaw":0},"areas":[{"id":"entrance","name":"Utgarde Pinnacle Entrance","center":[567.2668,-109.9832,1367.3668],"radius":35},{"id":"area-svala-sorrowgrave","name":"Svala Sorrowgrave's Encounter","center":[567.2668,-109.9832,1367.3668],"radius":42},{"id":"area-gortok-palehoof","name":"Gortok Palehoof's Encounter","center":[442.0958,-115.3152,1104.0408],"radius":42},{"id":"area-skadi-the-ruthless","name":"Skadi the Ruthless's Encounter","center":[387.9158,-115.5542,1126.2698],"radius":42},{"id":"area-king-ymiron","name":"King Ymiron's Encounter","center":[608.4318,-110.8372,1176.0848],"radius":42}],"entities":{"entry-26667":{"id":"entry-26667","kind":"mob","name":"Dragonflayer Spectator","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/9f19ece9932a25f5b90447af6bbe32a2296b424adfdd152bd3c803d9ff73da9f.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-26669":{"id":"entry-26669","kind":"mob","name":"Ymirjar Savage","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.4285760000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25241-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0543,"labelHeight":5.1115,"markerRadius":1.8587}}},"entry-26670":{"id":"entry-26670","kind":"mob","name":"Ymirjar Flesh Hunter","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.4285760000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25240-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0543,"labelHeight":5.1115,"markerRadius":1.8587}}},"entry-26672":{"id":"entry-26672","kind":"mob","name":"Bloodthirsty Tundra Wolf","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-22089-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.0731,"markerRadius":2.4676}}},"entry-26687":{"id":"entry-26687","kind":"boss","name":"Gortok Palehoof","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.047616,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-16245","name":"Freeze Anim","spellId":16245,"delivery":"projectile","target":"random-party","school":"physical","animation":"cast","range":28,"cooldownMs":5709,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}},{"id":"spell-47669","name":"Awaken Subboss","spellId":47669,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5709,"damageMultiplier":1.35},{"id":"spell-48256","name":"Withering Roar","spellId":48256,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5709,"damageMultiplier":0.82,"radius":11},{"id":"spell-48261","name":"Impale","spellId":48261,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5709,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-27419-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0045,"labelHeight":12.7121,"markerRadius":4.3327}}},"entry-26693":{"id":"entry-26693","kind":"boss","name":"Skadi the Ruthless","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-49308","name":"Utgarde Pinnacle Guantlet Reset Check","spellId":49308,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6717,"damageMultiplier":1.35},{"id":"spell-50234","name":"Crush","spellId":50234,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6717,"damageMultiplier":1.35},{"id":"spell-50255","name":"Poisoned Spear","spellId":50255,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6717,"damageMultiplier":1.35},{"id":"spell-50228","name":"Whirlwind","spellId":50228,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6717,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-27418-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0555,"labelHeight":7.9067,"markerRadius":1.4657}}},"entry-26694":{"id":"entry-26694","kind":"mob","name":"Ymirjar Dusk Shaman","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.4285760000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25244-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.1567,"markerRadius":1.8587}}},"entry-26696":{"id":"entry-26696","kind":"mob","name":"Ymirjar Berserker","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.4285760000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25242-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0543,"labelHeight":5.1115,"markerRadius":1.8587}}},"entry-29281":{"id":"entry-29281","kind":"mob","name":"Svala","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15667","name":"Sinister Strike","spellId":15667,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4357,"damageMultiplier":1.12},{"id":"spell-48258","name":"Call Flames","spellId":48258,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4357,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25944-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0161,"labelHeight":4.961,"markerRadius":0.834}}},"entry-26536":{"id":"entry-26536","kind":"mob","name":"Mindless Servant","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-7869-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0019,"labelHeight":3.4636,"markerRadius":0.65}}},"entry-26550":{"id":"entry-26550","kind":"mob","name":"Dragonflayer Deathseeker","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-28054-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-26553":{"id":"entry-26553","kind":"mob","name":"Dragonflayer Fanatic","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-28056-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0407,"labelHeight":6.1162,"markerRadius":1.0864}}},"entry-26554":{"id":"entry-26554","kind":"mob","name":"Dragonflayer Seer","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25657-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0161,"labelHeight":4.9409,"markerRadius":0.7327}}},"entry-26555":{"id":"entry-26555","kind":"mob","name":"Scourge Hulk","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-12818-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0084,"labelHeight":7.8573,"markerRadius":3.4633}}},"entry-28368":{"id":"entry-28368","kind":"mob","name":"Ymirjar Necromancer","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-27255-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-26861":{"id":"entry-26861","kind":"boss","name":"King Ymiron","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.4285760000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-48307","name":"Channel Ymiron -> Spirit","spellId":48307,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5652,"damageMultiplier":1.35},{"id":"spell-51750","name":"Screams of the Dead","spellId":51750,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5652,"damageMultiplier":1.35},{"id":"spell-39199","name":"Flames","spellId":39199,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5652,"damageMultiplier":1.35},{"id":"spell-48294","name":"Bane","spellId":48294,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5652,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-28019-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0557,"labelHeight":9.0443,"markerRadius":1.7724}}},"entry-26668":{"id":"entry-26668","kind":"boss","name":"Svala Sorrowgrave","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6970,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-26096-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.431,"labelHeight":8.5971,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-126065","entityId":"entry-26667","position":[578.3918,-133.1445,1101.6418],"yaw":-4.31096,"spawnMask":3},{"id":"creature-126066","entityId":"entry-26667","position":[584.3358,-133.1358,1103.2248],"yaw":-4.31096,"spawnMask":3},{"id":"creature-126067","entityId":"entry-26667","position":[580.3758,-133.1629,1089.7998],"yaw":-4.50295,"spawnMask":3},{"id":"creature-126068","entityId":"entry-26667","position":[580.6948,-133.1629,1092.8378],"yaw":-4.46804,"spawnMask":3},{"id":"creature-126069","entityId":"entry-26667","position":[573.8298,-133.1629,1096.9508],"yaw":-4.31096,"spawnMask":3},{"id":"creature-126070","entityId":"entry-26667","position":[579.2528,-133.1622,1098.5498],"yaw":-4.31096,"spawnMask":3},{"id":"creature-126071","entityId":"entry-26667","position":[572.7318,-133.1562,1099.5898],"yaw":-4.24115,"spawnMask":3},{"id":"creature-126072","entityId":"entry-26667","position":[587.2458,-133.1524,1090.0358],"yaw":-4.5204,"spawnMask":3},{"id":"creature-126073","entityId":"entry-26667","position":[574.2978,-133.1629,1091.1938],"yaw":-4.43314,"spawnMask":3},{"id":"creature-126074","entityId":"entry-26667","position":[586.5628,-133.1547,1092.2208],"yaw":-4.50295,"spawnMask":3},{"id":"creature-126075","entityId":"entry-26669","position":[518.8958,-144.9496,1047.4748],"yaw":-5.21853,"spawnMask":3},{"id":"creature-126076","entityId":"entry-26669","position":[493.5878,-144.9503,1013.2198],"yaw":-2.61799,"spawnMask":3},{"id":"creature-126077","entityId":"entry-26669","position":[513.9948,-145.0605,1049.1878],"yaw":-2.32129,"spawnMask":3},{"id":"creature-126078","entityId":"entry-26669","position":[448.8518,-114.6282,1082.1308],"yaw":-6.24154,"spawnMask":3},{"id":"creature-126079","entityId":"entry-26669","position":[501.2118,-115.2922,1015.8128],"yaw":-3.82227,"spawnMask":3},{"id":"creature-126080","entityId":"entry-26670","position":[498.0818,-144.9554,1012.4058],"yaw":-4.85202,"spawnMask":3},{"id":"creature-126081","entityId":"entry-26670","position":[443.2318,-115.3852,1071.3878],"yaw":-6.24152,"spawnMask":3},{"id":"creature-126082","entityId":"entry-26670","position":[436.7378,-115.3822,1081.6258],"yaw":-6.24153,"spawnMask":3},{"id":"creature-126084","entityId":"entry-26670","position":[493.8278,-115.3032,1007.7288],"yaw":-0.925025,"spawnMask":3},{"id":"creature-126085","entityId":"entry-26672","position":[494.6818,-144.9461,1008.3848],"yaw":-0.244346,"spawnMask":3},{"id":"creature-126087","entityId":"entry-26672","position":[514.6348,-130.042,1064.8038],"yaw":-6.20072,"spawnMask":3},{"id":"creature-126088","entityId":"entry-26672","position":[511.8918,-130.0305,1061.5668],"yaw":-6.20069,"spawnMask":3},{"id":"creature-126089","entityId":"entry-26672","position":[501.0238,-115.3002,1009.8548],"yaw":-5.07891,"spawnMask":3},{"id":"creature-126090","entityId":"entry-26672","position":[494.5688,-115.2962,1013.1638],"yaw":-2.1293,"spawnMask":3},{"id":"creature-126102","entityId":"entry-26687","position":[442.0958,-115.3152,1104.0408],"yaw":-3.14159,"spawnMask":3},{"id":"creature-126103","entityId":"entry-26693","position":[387.9158,-115.5542,1126.2698],"yaw":-2.96706,"spawnMask":3},{"id":"creature-126104","entityId":"entry-26694","position":[585.2228,-116.0622,1175.6488],"yaw":-1.5708,"spawnMask":3},{"id":"creature-126105","entityId":"entry-26694","position":[459.6878,-144.9202,1179.5688],"yaw":-3.71755,"spawnMask":3},{"id":"creature-126106","entityId":"entry-26694","position":[452.2658,-144.9233,1166.8838],"yaw":-0.890118,"spawnMask":3},{"id":"creature-126107","entityId":"entry-26694","position":[436.3178,-144.9882,1265.1008],"yaw":-5.3058,"spawnMask":3},{"id":"creature-126108","entityId":"entry-26696","position":[436.6888,-115.3232,1266.4328],"yaw":-3.00197,"spawnMask":3},{"id":"creature-126109","entityId":"entry-26696","position":[442.7098,-144.8487,1207.8568],"yaw":-3.90954,"spawnMask":3},{"id":"creature-126110","entityId":"entry-26696","position":[462.9518,-144.9989,1154.0438],"yaw":-3.53522,"spawnMask":3},{"id":"creature-126112","entityId":"entry-26696","position":[580.4918,-116.0622,1172.2858],"yaw":-1.46608,"spawnMask":3},{"id":"creature-126113","entityId":"entry-26696","position":[579.7288,-116.0622,1178.5468],"yaw":-1.65806,"spawnMask":3},{"id":"creature-126114","entityId":"entry-26696","position":[431.9778,-144.9888,1267.7828],"yaw":-2.16421,"spawnMask":3},{"id":"creature-126115","entityId":"entry-29281","position":[549.1658,-129.4905,1079.8818],"yaw":-4.60767,"spawnMask":3},{"id":"creature-126129","entityId":"entry-26536","position":[592.6938,-111.8732,1237.4918],"yaw":-5.09636,"spawnMask":3},{"id":"creature-126130","entityId":"entry-26536","position":[550.5268,-109.9752,1314.2838],"yaw":-3.86766,"spawnMask":3},{"id":"creature-126131","entityId":"entry-26536","position":[598.5058,-107.4502,1306.6998],"yaw":-2.07694,"spawnMask":3},{"id":"creature-126132","entityId":"entry-26536","position":[546.4808,-102.3872,1332.4868],"yaw":-3.78736,"spawnMask":3},{"id":"creature-126133","entityId":"entry-26536","position":[585.5578,-109.9272,1293.4248],"yaw":-4.64645,"spawnMask":3},{"id":"creature-126134","entityId":"entry-26536","position":[544.3738,-106.4612,1311.0168],"yaw":-3.39735,"spawnMask":3},{"id":"creature-126135","entityId":"entry-26536","position":[586.3278,-109.9592,1315.5308],"yaw":-5.87388,"spawnMask":3},{"id":"creature-126136","entityId":"entry-26536","position":[604.8368,-100.3442,1324.8338],"yaw":-1.47198,"spawnMask":3},{"id":"creature-126137","entityId":"entry-26536","position":[596.5888,-105.5112,1285.7528],"yaw":-3.4269,"spawnMask":3},{"id":"creature-126138","entityId":"entry-26536","position":[585.6518,-106.9782,1288.1558],"yaw":-1.473,"spawnMask":3},{"id":"creature-126139","entityId":"entry-26536","position":[533.4688,-113.8642,1263.0278],"yaw":-4.79965,"spawnMask":3},{"id":"creature-126140","entityId":"entry-26536","position":[545.3488,-112.4852,1235.3308],"yaw":-2.31871,"spawnMask":3},{"id":"creature-126141","entityId":"entry-26536","position":[549.7418,-109.9182,1292.4728],"yaw":-3.51815,"spawnMask":3},{"id":"creature-126142","entityId":"entry-26536","position":[541.3448,-105.7702,1291.1108],"yaw":-5.84663,"spawnMask":3},{"id":"creature-126143","entityId":"entry-26536","position":[532.6188,-101.4182,1308.1298],"yaw":-5.38741,"spawnMask":3},{"id":"creature-126144","entityId":"entry-26536","position":[591.5138,-106.6892,1328.9878],"yaw":-1.17985,"spawnMask":3},{"id":"creature-126145","entityId":"entry-26536","position":[551.0118,-114.9332,1261.9188],"yaw":-2.75084,"spawnMask":3},{"id":"creature-126146","entityId":"entry-26536","position":[548.5628,-106.9742,1325.1288],"yaw":-0.523599,"spawnMask":3},{"id":"creature-126151","entityId":"entry-26550","position":[652.3408,-115.2232,1229.7258],"yaw":-3.78736,"spawnMask":3},{"id":"creature-126152","entityId":"entry-26550","position":[651.6298,-115.8102,1097.7898],"yaw":-4.72984,"spawnMask":3},{"id":"creature-126153","entityId":"entry-26550","position":[642.6958,-115.7032,1101.0568],"yaw":-2.07694,"spawnMask":3},{"id":"creature-126154","entityId":"entry-26550","position":[645.0268,-115.3592,1183.0948],"yaw":-0.401426,"spawnMask":3},{"id":"creature-126155","entityId":"entry-26550","position":[566.8618,-115.9922,1268.2188],"yaw":-0.994838,"spawnMask":3},{"id":"creature-126156","entityId":"entry-26553","position":[653.3278,-115.1792,1225.0548],"yaw":-5.55015,"spawnMask":3},{"id":"creature-126157","entityId":"entry-26553","position":[650.5398,-115.6272,1103.6698],"yaw":-4.04916,"spawnMask":3},{"id":"creature-126158","entityId":"entry-26553","position":[648.5718,-115.2512,1186.0968],"yaw":-4.67748,"spawnMask":3},{"id":"creature-126160","entityId":"entry-26553","position":[570.1948,-116.0742,1266.4288],"yaw":-0.054009,"spawnMask":3},{"id":"creature-126161","entityId":"entry-26554","position":[648.4968,-115.4052,1230.3938],"yaw":-2.32129,"spawnMask":3},{"id":"creature-126162","entityId":"entry-26554","position":[645.7668,-115.5902,1105.1888],"yaw":-2.93215,"spawnMask":3},{"id":"creature-126163","entityId":"entry-26554","position":[644.1738,-115.4492,1188.9558],"yaw":-2.51327,"spawnMask":3},{"id":"creature-126164","entityId":"entry-26554","position":[570.8538,-115.9952,1271.2288],"yaw":-4.06662,"spawnMask":3},{"id":"creature-126165","entityId":"entry-26555","position":[449.7078,-144.8762,1139.1908],"yaw":-0.191986,"spawnMask":3},{"id":"creature-126166","entityId":"entry-26555","position":[483.1728,-130.1388,1261.9038],"yaw":-4.64258,"spawnMask":3},{"id":"creature-126167","entityId":"entry-26555","position":[615.5008,-133.1998,1081.1648],"yaw":-4.69494,"spawnMask":3},{"id":"creature-126168","entityId":"entry-26555","position":[550.0758,-138.8209,1019.4078],"yaw":0,"spawnMask":3},{"id":"creature-126169","entityId":"entry-26555","position":[659.6208,-115.2142,1146.0068],"yaw":-4.92183,"spawnMask":3},{"id":"creature-126170","entityId":"entry-26555","position":[658.5908,-115.2862,1211.7668],"yaw":-4.76475,"spawnMask":3},{"id":"creature-126171","entityId":"entry-26555","position":[569.3398,-115.9972,1241.9768],"yaw":-6.24828,"spawnMask":3},{"id":"creature-126248","entityId":"entry-28368","position":[436.7178,-115.3222,1261.2238],"yaw":-0.139626,"spawnMask":3},{"id":"creature-126249","entityId":"entry-28368","position":[440.7948,-115.3272,1263.8328],"yaw":-4.7822,"spawnMask":3},{"id":"creature-126250","entityId":"entry-28368","position":[436.4458,-144.8946,1206.9318],"yaw":-1.74533,"spawnMask":3},{"id":"creature-126251","entityId":"entry-28368","position":[441.0208,-144.8666,1202.7088],"yaw":-6.26573,"spawnMask":3},{"id":"creature-126252","entityId":"entry-28368","position":[459.8948,-144.9233,1167.0918],"yaw":-5.67232,"spawnMask":3},{"id":"creature-126253","entityId":"entry-28368","position":[452.2558,-144.9237,1179.6708],"yaw":-2.40855,"spawnMask":3},{"id":"creature-126254","entityId":"entry-28368","position":[434.2348,-144.9882,1261.9348],"yaw":-5.93412,"spawnMask":3},{"id":"creature-126255","entityId":"entry-26861","position":[608.4318,-110.8372,1176.0848],"yaw":-4.7822,"spawnMask":3},{"id":"encounter-577","entityId":"entry-26668","position":[567.2668,-109.9832,1367.3668],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-126083","name":"Ymirjar Flesh Hunter Patrol","speed":1.15,"pathId":1260830,"formationSource":"database-solo","spawnMask":3,"waypoints":[[513.4738,-123.4036,1046.3938],[511.2538,-115.3682,1032.0388],[513.4738,-123.4036,1046.3938],[510.7238,-130.0735,1064.3158],[498.3068,-130.1651,1064.7598],[497.1818,-130.0143,1057.1588],[494.5398,-136.5766,1045.4268],[496.2838,-145.0135,1031.8998],[494.5398,-136.5766,1045.4268],[497.1818,-130.0143,1057.1588]],"members":[{"id":"member","entityId":"entry-26670","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126086","name":"Bloodthirsty Tundra Wolf Patrol","speed":1.15,"pathId":1260860,"formationSource":"database-solo","spawnMask":3,"waypoints":[[443.6518,-115.4032,1094.0398],[427.8078,-115.4032,1093.9318],[443.6518,-115.4032,1094.0398],[443.6518,-115.4032,1092.2558],[444.5808,-115.3852,1021.3778],[445.5488,-115.3852,1019.6938],[459.6058,-115.3852,1019.8328],[444.5808,-115.3852,1021.3778]],"members":[{"id":"member","entityId":"entry-26672","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126111","name":"Ymirjar Berserker Patrol","speed":1.15,"pathId":1261110,"formationSource":"database-solo","spawnMask":3,"waypoints":[[444.6718,-144.9904,1155.2698],[440.0068,-145.008,1184.2068],[427.9058,-145.0059,1211.7558],[447.8208,-145.0046,1212.5608],[453.7198,-145.0224,1190.7398],[466.9218,-144.9949,1186.1248],[462.2818,-145.0003,1151.3028]],"members":[{"id":"member","entityId":"entry-26696","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126159","name":"Dragonflayer Fanatic Patrol","speed":1.15,"pathId":1261590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[647.3758,-114.9622,1191.8978],[647.8758,-114.7122,1196.3978],[648.1258,-114.7122,1200.6478],[648.3758,-114.9622,1204.6478],[648.3758,-114.7122,1207.8978],[648.8758,-114.9622,1214.8978],[649.3758,-114.9622,1220.6478],[649.6258,-114.9622,1223.1478],[649.6258,-114.9622,1223.1478],[649.3758,-114.9622,1220.6478],[648.8758,-114.9622,1214.8978],[648.3758,-114.7122,1207.8978],[648.3758,-114.9622,1204.6478],[648.1258,-114.7122,1200.6478],[647.8758,-114.7122,1196.3978],[647.3758,-114.9622,1191.8978]],"members":[{"id":"member","entityId":"entry-26553","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"encounter-577","name":"Svala Sorrowgrave","position":[567.2668,-109.9832,1367.3668]},{"id":"creature-126102","name":"Gortok Palehoof","position":[442.0958,-115.3152,1104.0408]},{"id":"creature-126103","name":"Skadi the Ruthless","position":[387.9158,-115.5542,1126.2698]},{"id":"creature-126255","name":"King Ymiron","position":[608.4318,-110.8372,1176.0848]}],"objectiveOrder":[{"id":"encounter-577","name":"Svala Sorrowgrave","position":[567.2668,-109.9832,1367.3668]},{"id":"creature-126102","name":"Gortok Palehoof","position":[442.0958,-115.3152,1104.0408]},{"id":"creature-126103","name":"Skadi the Ruthless","position":[387.9158,-115.5542,1126.2698]},{"id":"creature-126255","name":"King Ymiron","position":[608.4318,-110.8372,1176.0848]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65434,"id":191745,"map":575,"orientation":-1.58825,"phaseMask":1,"position_x":296.355,"position_y":-356.967,"position_z":91.4652,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65435,"id":186452,"map":575,"orientation":2.31256,"phaseMask":1,"position_x":-771.83,"position_y":484.016,"position_z":-163.957,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402747,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65436,"id":190587,"map":575,"orientation":-3.10342,"phaseMask":1,"position_x":-465.901,"position_y":609.835,"position_z":-78.9554,"rotation0":0,"rotation1":0,"rotation2":-0.999818,"rotation3":0.0190852,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65437,"id":192918,"map":575,"orientation":-0.785397,"phaseMask":1,"position_x":571.511,"position_y":-321.979,"position_z":110.142,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65438,"id":190118,"map":575,"orientation":2.31256,"phaseMask":1,"position_x":-771.83,"position_y":484.016,"position_z":-174.731,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402747,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65439,"id":190119,"map":575,"orientation":2.31256,"phaseMask":1,"position_x":-771.83,"position_y":484.016,"position_z":-174.731,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402747,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65440,"id":192173,"map":575,"orientation":-1.58825,"phaseMask":1,"position_x":477.496,"position_y":-477.183,"position_z":103.064,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65441,"id":192941,"map":575,"orientation":0.174532,"phaseMask":1,"position_x":270.477,"position_y":-402.989,"position_z":75.0277,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65442,"id":192941,"map":575,"orientation":-0.802851,"phaseMask":1,"position_x":433.547,"position_y":-505.49,"position_z":104.736,"rotation0":0,"rotation1":0,"rotation2":-0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65443,"id":192941,"map":575,"orientation":-0.541051,"phaseMask":1,"position_x":221.793,"position_y":-383.481,"position_z":104.734,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65444,"id":192941,"map":575,"orientation":-2.60053,"phaseMask":1,"position_x":349.04,"position_y":-501.73,"position_z":104.723,"rotation0":0,"rotation1":0,"rotation2":-0.963629,"rotation3":0.267244,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65445,"id":192941,"map":575,"orientation":2.70526,"phaseMask":1,"position_x":398.637,"position_y":-290.056,"position_z":108.688,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65446,"id":192941,"map":575,"orientation":0.453785,"phaseMask":1,"position_x":470.033,"position_y":-472.522,"position_z":75.2782,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65447,"id":192941,"map":575,"orientation":2.79252,"phaseMask":1,"position_x":375.769,"position_y":-503.642,"position_z":104.891,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65448,"id":192941,"map":575,"orientation":0.523598,"phaseMask":1,"position_x":513.578,"position_y":-457.118,"position_z":104.696,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65449,"id":192941,"map":575,"orientation":-3.10665,"phaseMask":1,"position_x":329.979,"position_y":-257.417,"position_z":104.713,"rotation0":0,"rotation1":0,"rotation2":-0.999847,"rotation3":0.0174704,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65450,"id":192941,"map":575,"orientation":-0.593412,"phaseMask":1,"position_x":375.242,"position_y":-288.411,"position_z":104.76,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65451,"id":192941,"map":575,"orientation":1.06465,"phaseMask":1,"position_x":351.437,"position_y":-301.561,"position_z":104.762,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65452,"id":192941,"map":575,"orientation":-1.88495,"phaseMask":1,"position_x":267.046,"position_y":-319.712,"position_z":86.4433,"rotation0":0,"rotation1":0,"rotation2":-0.809015,"rotation3":0.587788,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65453,"id":192941,"map":575,"orientation":3.07177,"phaseMask":1,"position_x":461.666,"position_y":-410.144,"position_z":89.8489,"rotation0":0,"rotation1":0,"rotation2":0.999391,"rotation3":0.0349043,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65454,"id":192941,"map":575,"orientation":2.05949,"phaseMask":1,"position_x":266.417,"position_y":-352.146,"position_z":86.446,"rotation0":0,"rotation1":0,"rotation2":0.857168,"rotation3":0.515037,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65455,"id":192941,"map":575,"orientation":-1.78023,"phaseMask":1,"position_x":376.762,"position_y":-523.845,"position_z":104.726,"rotation0":0,"rotation1":0,"rotation2":-0.777144,"rotation3":0.629323,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65456,"id":192941,"map":575,"orientation":2.61799,"phaseMask":1,"position_x":453.919,"position_y":-462.2,"position_z":104.707,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65457,"id":192941,"map":575,"orientation":1.25664,"phaseMask":1,"position_x":365.258,"position_y":-360.944,"position_z":104.758,"rotation0":0,"rotation1":0,"rotation2":0.587786,"rotation3":0.809016,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65458,"id":192941,"map":575,"orientation":2.56563,"phaseMask":1,"position_x":459.376,"position_y":-469.364,"position_z":75.2123,"rotation0":0,"rotation1":0,"rotation2":0.958819,"rotation3":0.284017,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65459,"id":192941,"map":575,"orientation":-1.72787,"phaseMask":1,"position_x":432.282,"position_y":-472.973,"position_z":75.1332,"rotation0":0,"rotation1":0,"rotation2":-0.760404,"rotation3":0.64945,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65460,"id":192941,"map":575,"orientation":-0.558504,"phaseMask":1,"position_x":372.384,"position_y":-235.9,"position_z":104.876,"rotation0":0,"rotation1":0,"rotation2":-0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65461,"id":192941,"map":575,"orientation":-3.12412,"phaseMask":1,"position_x":277.093,"position_y":-407.508,"position_z":75.0536,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65462,"id":192941,"map":575,"orientation":-1.32645,"phaseMask":1,"position_x":488.829,"position_y":-238.179,"position_z":104.726,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65463,"id":192941,"map":575,"orientation":1.06465,"phaseMask":1,"position_x":308.047,"position_y":-288.572,"position_z":86.3606,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65464,"id":192941,"map":575,"orientation":1.74533,"phaseMask":1,"position_x":309.131,"position_y":-234.77,"position_z":104.718,"rotation0":0,"rotation1":0,"rotation2":0.766045,"rotation3":0.642787,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65465,"id":192941,"map":575,"orientation":-0.715585,"phaseMask":1,"position_x":454.916,"position_y":-505.397,"position_z":104.588,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65466,"id":192941,"map":575,"orientation":1.41372,"phaseMask":1,"position_x":278.427,"position_y":-471.172,"position_z":104.708,"rotation0":0,"rotation1":0,"rotation2":0.649449,"rotation3":0.760405,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65467,"id":192941,"map":575,"orientation":1.44862,"phaseMask":1,"position_x":371.812,"position_y":-501.915,"position_z":104.724,"rotation0":0,"rotation1":0,"rotation2":0.662619,"rotation3":0.748957,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65468,"id":192941,"map":575,"orientation":2.16421,"phaseMask":1,"position_x":495.588,"position_y":-418.121,"position_z":89.8407,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65469,"id":192941,"map":575,"orientation":2.63544,"phaseMask":1,"position_x":217.308,"position_y":-465.109,"position_z":104.707,"rotation0":0,"rotation1":0,"rotation2":0.968147,"rotation3":0.250383,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65470,"id":192941,"map":575,"orientation":2.05949,"phaseMask":1,"position_x":243.173,"position_y":-406.577,"position_z":75.0761,"rotation0":0,"rotation1":0,"rotation2":0.857168,"rotation3":0.515037,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65471,"id":192941,"map":575,"orientation":-2.26892,"phaseMask":1,"position_x":265.73,"position_y":-308.432,"position_z":86.446,"rotation0":0,"rotation1":0,"rotation2":-0.906306,"rotation3":0.422622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65472,"id":192174,"map":575,"orientation":3.12412,"phaseMask":1,"position_x":445.062,"position_y":-325.52,"position_z":100.953,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65473,"id":192942,"map":575,"orientation":-0.977383,"phaseMask":1,"position_x":227.675,"position_y":-406.645,"position_z":75.0751,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65474,"id":192942,"map":575,"orientation":-3.03684,"phaseMask":1,"position_x":277.447,"position_y":-374.539,"position_z":89.9158,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523524,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65475,"id":192942,"map":575,"orientation":2.11185,"phaseMask":1,"position_x":435.401,"position_y":-503.018,"position_z":104.719,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65476,"id":192942,"map":575,"orientation":2.74016,"phaseMask":1,"position_x":389.795,"position_y":-242.879,"position_z":105.25,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.199371,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65477,"id":192942,"map":575,"orientation":0.977383,"phaseMask":1,"position_x":489.807,"position_y":-474.474,"position_z":105.478,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65478,"id":192942,"map":575,"orientation":-2.87979,"phaseMask":1,"position_x":220.66,"position_y":-377.249,"position_z":75.0773,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65479,"id":192942,"map":575,"orientation":-1.20428,"phaseMask":1,"position_x":411.38,"position_y":-523.068,"position_z":104.723,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65480,"id":192942,"map":575,"orientation":-2.51327,"phaseMask":1,"position_x":261.46,"position_y":-372.991,"position_z":75.1092,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309019,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65481,"id":192942,"map":575,"orientation":-2.14675,"phaseMask":1,"position_x":352.731,"position_y":-246.789,"position_z":104.457,"rotation0":0,"rotation1":0,"rotation2":-0.878816,"rotation3":0.477161,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65482,"id":192942,"map":575,"orientation":2.84488,"phaseMask":1,"position_x":283.456,"position_y":-374.642,"position_z":75.0351,"rotation0":0,"rotation1":0,"rotation2":0.989015,"rotation3":0.147813,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65483,"id":192175,"map":575,"orientation":-0.628317,"phaseMask":1,"position_x":491.494,"position_y":-508.188,"position_z":105.877,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65484,"id":192943,"map":575,"orientation":-3.03684,"phaseMask":1,"position_x":327.536,"position_y":-309.362,"position_z":86.446,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523524,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65485,"id":192943,"map":575,"orientation":-2.00713,"phaseMask":1,"position_x":301.306,"position_y":-493.661,"position_z":104.725,"rotation0":0,"rotation1":0,"rotation2":-0.843392,"rotation3":0.537299,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65486,"id":192943,"map":575,"orientation":-2.33874,"phaseMask":1,"position_x":299.462,"position_y":-247.232,"position_z":104.718,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65487,"id":192943,"map":575,"orientation":0.349065,"phaseMask":1,"position_x":366.075,"position_y":-505.422,"position_z":104.712,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65488,"id":192943,"map":575,"orientation":0.418879,"phaseMask":1,"position_x":375.189,"position_y":-503.974,"position_z":104.814,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65489,"id":192943,"map":575,"orientation":-2.51327,"phaseMask":1,"position_x":243.298,"position_y":-374.222,"position_z":75.0875,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309019,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65490,"id":192943,"map":575,"orientation":0.017452,"phaseMask":1,"position_x":393.109,"position_y":-502.786,"position_z":104.89,"rotation0":0,"rotation1":0,"rotation2":0.00872589,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65491,"id":192943,"map":575,"orientation":-1.50098,"phaseMask":1,"position_x":323.792,"position_y":-284.743,"position_z":104.688,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65492,"id":192943,"map":575,"orientation":1.02974,"phaseMask":1,"position_x":219.253,"position_y":-398.354,"position_z":75.0898,"rotation0":0,"rotation1":0,"rotation2":0.492422,"rotation3":0.870357,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65493,"id":192943,"map":575,"orientation":2.23402,"phaseMask":1,"position_x":253.678,"position_y":-397.312,"position_z":75.1029,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65494,"id":192943,"map":575,"orientation":-0.296705,"phaseMask":1,"position_x":287.095,"position_y":-404.365,"position_z":89.8925,"rotation0":0,"rotation1":0,"rotation2":-0.147809,"rotation3":0.989016,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65495,"id":192943,"map":575,"orientation":1.62316,"phaseMask":1,"position_x":465.601,"position_y":-475.678,"position_z":104.699,"rotation0":0,"rotation1":0,"rotation2":0.725376,"rotation3":0.688353,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65496,"id":192943,"map":575,"orientation":-1.32645,"phaseMask":1,"position_x":345.372,"position_y":-523.26,"position_z":104.72,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65497,"id":192176,"map":575,"orientation":-0.628317,"phaseMask":1,"position_x":488.826,"position_y":-517.705,"position_z":105.877,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65498,"id":192944,"map":575,"orientation":1.79769,"phaseMask":1,"position_x":304.497,"position_y":-237.788,"position_z":106.788,"rotation0":0,"rotation1":0,"rotation2":0.782608,"rotation3":0.622514,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65499,"id":192944,"map":575,"orientation":-2.47837,"phaseMask":1,"position_x":413.587,"position_y":-504.084,"position_z":106.801,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65500,"id":192944,"map":575,"orientation":0.017452,"phaseMask":1,"position_x":441.11,"position_y":-452.859,"position_z":104.705,"rotation0":0,"rotation1":0,"rotation2":0.00872589,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65501,"id":192944,"map":575,"orientation":-1.88495,"phaseMask":1,"position_x":383.835,"position_y":-292.572,"position_z":108.862,"rotation0":0,"rotation1":0,"rotation2":-0.809015,"rotation3":0.587788,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65502,"id":192944,"map":575,"orientation":1.01229,"phaseMask":1,"position_x":470.864,"position_y":-480.477,"position_z":107.628,"rotation0":0,"rotation1":0,"rotation2":0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65503,"id":192944,"map":575,"orientation":-2.14675,"phaseMask":1,"position_x":484.133,"position_y":-480.892,"position_z":107.59,"rotation0":0,"rotation1":0,"rotation2":-0.878816,"rotation3":0.477161,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65504,"id":192944,"map":575,"orientation":-0.541051,"phaseMask":1,"position_x":281.868,"position_y":-282.568,"position_z":88.2098,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65505,"id":192944,"map":575,"orientation":2.93214,"phaseMask":1,"position_x":276.879,"position_y":-403.912,"position_z":93.2086,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104535,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65506,"id":192944,"map":575,"orientation":-3.12412,"phaseMask":1,"position_x":396.118,"position_y":-279.992,"position_z":112.973,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65507,"id":192944,"map":575,"orientation":0.034906,"phaseMask":1,"position_x":461.496,"position_y":-503.484,"position_z":106.822,"rotation0":0,"rotation1":0,"rotation2":0.0174521,"rotation3":0.999848,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65508,"id":192944,"map":575,"orientation":1.13446,"phaseMask":1,"position_x":306.023,"position_y":-291.303,"position_z":87.6204,"rotation0":0,"rotation1":0,"rotation2":0.537298,"rotation3":0.843393,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65509,"id":192944,"map":575,"orientation":-1.29154,"phaseMask":1,"position_x":280.826,"position_y":-294.577,"position_z":108.748,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798637,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65510,"id":192944,"map":575,"orientation":-0.034906,"phaseMask":1,"position_x":432.131,"position_y":-348.514,"position_z":104.762,"rotation0":0,"rotation1":0,"rotation2":-0.0174521,"rotation3":0.999848,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65511,"id":192944,"map":575,"orientation":0.087266,"phaseMask":1,"position_x":401.366,"position_y":-296.155,"position_z":109.271,"rotation0":0,"rotation1":0,"rotation2":0.0436192,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65512,"id":192177,"map":575,"orientation":-0.628317,"phaseMask":1,"position_x":480.35,"position_y":-524.039,"position_z":105.877,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65513,"id":188593,"map":575,"orientation":1.55334,"phaseMask":1,"position_x":238.518,"position_y":-460.827,"position_z":105.476,"rotation0":0,"rotation1":0,"rotation2":0.700908,"rotation3":0.713252,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65514,"id":192945,"map":575,"orientation":-1.83259,"phaseMask":1,"position_x":244.764,"position_y":-404.965,"position_z":78.5313,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608764,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65515,"id":192945,"map":575,"orientation":-0.837757,"phaseMask":1,"position_x":248.021,"position_y":-374.207,"position_z":107.292,"rotation0":0,"rotation1":0,"rotation2":-0.406736,"rotation3":0.913546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65516,"id":192945,"map":575,"orientation":-0.715585,"phaseMask":1,"position_x":266.855,"position_y":-289.744,"position_z":104.679,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65517,"id":192945,"map":575,"orientation":-2.09439,"phaseMask":1,"position_x":298.489,"position_y":-471.828,"position_z":104.751,"rotation0":0,"rotation1":0,"rotation2":-0.866024,"rotation3":0.500002,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65518,"id":192945,"map":575,"orientation":2.86233,"phaseMask":1,"position_x":270.274,"position_y":-355.778,"position_z":86.4824,"rotation0":0,"rotation1":0,"rotation2":0.990267,"rotation3":0.139178,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65519,"id":192945,"map":575,"orientation":-0.244346,"phaseMask":1,"position_x":304.406,"position_y":-276.844,"position_z":86.3668,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65520,"id":188360,"map":575,"orientation":3.13286,"phaseMask":1,"position_x":-570.401,"position_y":1540.28,"position_z":-291.281,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436634,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65521,"id":192467,"map":575,"orientation":3.12412,"phaseMask":1,"position_x":590.12,"position_y":-328.004,"position_z":112.508,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65522,"id":192468,"map":575,"orientation":3.12412,"phaseMask":1,"position_x":590.12,"position_y":-328.004,"position_z":112.508,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65523,"id":190172,"map":575,"orientation":-2.02458,"phaseMask":1,"position_x":356.841,"position_y":-524.035,"position_z":105.747,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65524,"id":190172,"map":575,"orientation":3.10665,"phaseMask":1,"position_x":446.762,"position_y":-234.646,"position_z":106.994,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174704,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/utgarde-pinnacle/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["17/17 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"the-nexus","title":"The Nexus","mapId":576,"lfgDungeonIds":[225,226],"expansion":"wrath","environmentMode":"global-wmo","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[69,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Nexus","theme":"Instanced dungeon","summary":"Fight through The Nexus, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Nexus...","unchartedAreaName":"Uncharted The Nexus","background":"#081016","fog":{"color":"#0a141c","near":36,"far":947.2219},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/576-nexus70/visual.glb","checksum":"912d7b85cc835faba37e050b380051ddbd8154dfaf14e27ea0b4bc8af7f92655","size":7386496,"triangleCount":266555}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/576-nexus70/collision.glb","checksum":"317f75ab6ec32b435597bb48889f06293617e7decf92c3f53074de9630012e2c","size":1443876,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/576-nexus70/navigation.glb","checksum":"330c19793cb0e66de51fc127e0a7054287e6cff2d7814c0b8e09fcd4a32d0644","size":206484,"triangleCount":15741}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-1368.6214,-67.1653,-566.0028],"max":[-53.0354,38.6865,84.1782]},"entrance":{"name":"The Nexus Entrance","footPosition":[-732.5354,-28.8635,-160.8828],"forward":[0.958477856666115,0,0.2851669656196706],"yaw":1.2816157044103822},"areas":[{"id":"entrance","name":"The Nexus Entrance","center":[-732.5354,-28.8635,-160.8828],"radius":35},{"id":"area-frozen-commander","name":"Frozen Commander's Encounter","center":[-1011.2124,-47.1642,35.6332],"radius":42},{"id":"area-grand-magus-telestra","name":"Grand Magus Telestra's Encounter","center":[-1081.3924,-28.2688,-61.2],"radius":42},{"id":"area-anomalus","name":"Anomalus's Encounter","center":[-1224.3354,-21.36,-439.4498],"radius":42},{"id":"area-ormorok-the-tree-shaper","name":"Ormorok the Tree-Shaper's Encounter","center":[-851.6244,-21.2451,-375.7438],"radius":42},{"id":"area-ormrok-the-tree-shaper","name":"Ormrok the Tree-Shaper's Encounter","center":[-851.6244,-21.2451,-375.7438],"radius":42},{"id":"area-keristrasza","name":"Keristrasza's Encounter","center":[-888.1194,-27.7083,-155.7871],"radius":42}],"entities":{"entry-26796":{"id":"entry-26796","kind":"boss","name":"Commander Stoutbeard","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31403","name":"Battle Shout","spellId":31403,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4065,"damageMultiplier":1.35},{"id":"spell-19134","name":"Frightening Shout","spellId":19134,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4065,"damageMultiplier":1.35},{"id":"spell-38618","name":"Whirlwind","spellId":38618,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4065,"damageMultiplier":0.82,"radius":11},{"id":"spell-60067","name":"Charge","spellId":60067,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4065,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24366-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0061,"labelHeight":2.446,"markerRadius":0.65}}},"entry-26800":{"id":"entry-26800","kind":"mob","name":"Alliance Berserker","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24353-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.638,"markerRadius":0.7219}}},"entry-26802":{"id":"entry-26802","kind":"mob","name":"Alliance Ranger","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24355-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.642,"markerRadius":0.65}}},"entry-26805":{"id":"entry-26805","kind":"mob","name":"Alliance Cleric","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24356-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-32261":{"id":"entry-32261","kind":"mob","name":"Crystal Spider","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7428480000000004,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/73cd1ddbf518085e70fe7dd3e36a1f1ce98d970e808602a7231d647a6625d533.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":0.5461,"markerRadius":0.65}}},"entry-26918":{"id":"entry-26918","kind":"mob","name":"Chaotic Rift","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-25206-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-28231":{"id":"entry-28231","kind":"mob","name":"Crystalline Tender","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-27609-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.5582,"labelHeight":5.3466,"markerRadius":1.1492}}},"entry-26716":{"id":"entry-26716","kind":"mob","name":"Azure Warder","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-25251-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0114,"labelHeight":5.9762,"markerRadius":4.2192}}},"entry-26722":{"id":"entry-26722","kind":"mob","name":"Azure Magus","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-25249-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0114,"labelHeight":5.5971,"markerRadius":3.8903}}},"entry-26723":{"id":"entry-26723","kind":"boss","name":"Keristrasza","title":"Dungeon Boss","hasLoot":true,"combat":{"level":73,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.1745920000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-48094","name":"Intense Cold","spellId":48094,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4807,"damageMultiplier":1.35},{"id":"spell-47854","name":"Frozen Prison","spellId":47854,"delivery":"projectile","target":"random-party","school":"physical","animation":"cast","range":28,"cooldownMs":4807,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4807,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":12000,"magnitude":0.25}},{"id":"spell-48096","name":"Crystalfire Breath","spellId":48096,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":12000,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24307-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.0882,"labelHeight":18.1991,"markerRadius":4.5}}},"entry-26727":{"id":"entry-26727","kind":"mob","name":"Mage Hunter Ascendant","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24312-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.6909,"markerRadius":0.65}}},"entry-26728":{"id":"entry-26728","kind":"mob","name":"Mage Hunter Initiate","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24316-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.6909,"markerRadius":0.65}}},"entry-26729":{"id":"entry-26729","kind":"mob","name":"Steward","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24320-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.6909,"markerRadius":0.65}}},"entry-26730":{"id":"entry-26730","kind":"mob","name":"Mage Slayer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.809536,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24906-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0361,"markerRadius":0.9595}}},"entry-26731":{"id":"entry-26731","kind":"boss","name":"Grand Magus Telestra","title":"Dungeon Boss","hasLoot":true,"combat":{"level":71,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-61400","name":"Wear Christmas Hat, Red, Self (DND)","spellId":61400,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5294,"damageMultiplier":1.35},{"id":"spell-47711","name":"Telestra Clone Dies (Fire)","spellId":47711,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5294,"damageMultiplier":1.35},{"id":"spell-47713","name":"Telestra Clone Dies (Arcane)","spellId":47713,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5294,"damageMultiplier":1.35},{"id":"spell-47712","name":"Telestra Clone Dies (Frost)","spellId":47712,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5294,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24066-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":3.0962,"markerRadius":0.65}}},"entry-26734":{"id":"entry-26734","kind":"mob","name":"Azure Enforcer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5923,"damageMultiplier":0.62,"radius":8},{"id":"spell-39171","name":"Mortal Strike","spellId":39171,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5923,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-14886-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.7019,"labelHeight":5.859,"markerRadius":1.0391}}},"entry-26735":{"id":"entry-26735","kind":"mob","name":"Azure Scale-Binder","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/7f809d34e8476ea8db6d31ae49248520c5a392e9f9ef4fa0440bc32340780160.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":3.4982,"markerRadius":2.4314}}},"entry-26737":{"id":"entry-26737","kind":"mob","name":"Crazed Mana-Surge","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/8187e4a71114ff6b55fb6d59315498e3bb5fb606ba216b886ab82438c8764515.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.7735,"markerRadius":1.8878}}},"entry-26746":{"id":"entry-26746","kind":"mob","name":"Crazed Mana-Wraith","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-27810-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.0243,"markerRadius":0.8032}}},"entry-26761":{"id":"entry-26761","kind":"mob","name":"Crazed Mana-Wyrm","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"serpent","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-23329-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.5986,"markerRadius":4.5}}},"entry-26763":{"id":"entry-26763","kind":"boss","name":"Anomalus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-47745","name":"Close Rifts","spellId":47745,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6044,"damageMultiplier":1.35},{"id":"spell-47748","name":"Rift Shield","spellId":47748,"delivery":"area","target":"self","school":"arcane","animation":"cast","range":0,"cooldownMs":6044,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-47748","durationMs":12000,"magnitude":0.25}},{"id":"spell-47751","name":"Spark","spellId":47751,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6044,"damageMultiplier":1.35},{"id":"spell-57063","name":"Arcane Attraction","spellId":57063,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6044,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-26259-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.667,"labelHeight":23.8336,"markerRadius":4.5}}},"entry-26782":{"id":"entry-26782","kind":"mob","name":"Crystalline Keeper","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-27469-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0446,"labelHeight":6.6904,"markerRadius":1.6073}}},"entry-26792":{"id":"entry-26792","kind":"mob","name":"Crystalline Protector","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-27472-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1671,"labelHeight":14.0891,"markerRadius":4.4291}}},"entry-26793":{"id":"entry-26793","kind":"mob","name":"Crystalline Frayer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-48053","name":"Ensnare","spellId":48053,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6862,"damageMultiplier":1.12},{"id":"spell-48058","name":"Crystal Bloom","spellId":48058,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6862,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-25570-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":1.8329,"markerRadius":0.9934}}},"entry-26794":{"id":"entry-26794","kind":"boss","name":"Ormorok the Tree-Shaper","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-48017","name":"Frenzy","spellId":48017,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4398,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-48017","durationMs":12000,"magnitude":0.25}},{"id":"spell-48016","name":"Trample","spellId":48016,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4398,"damageMultiplier":1.35},{"id":"spell-47981","name":"Spell Reflection","spellId":47981,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4398,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-47981","durationMs":12000,"magnitude":0.25}},{"id":"spell-47958","name":"Crystal Spikes","spellId":47958,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4398,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"plant","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-26298-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0172,"labelHeight":19.5837,"markerRadius":4.5}}},"entry-27949":{"id":"entry-27949","kind":"mob","name":"Alliance Commander","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24366-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0061,"labelHeight":2.446,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-4764","entityId":"entry-26796","position":[-1011.2124,-47.1642,35.6332],"yaw":-4.72984,"spawnMask":2},{"id":"creature-115899","entityId":"entry-26800","position":[-1030.0314,-47.1649,33.1332],"yaw":-4.31096,"spawnMask":3},{"id":"creature-115900","entityId":"entry-26800","position":[-1036.9234,-47.165,25.1332],"yaw":-4.11898,"spawnMask":3},{"id":"creature-115933","entityId":"entry-26802","position":[-1029.4774,-47.1649,26.0692],"yaw":-4.27606,"spawnMask":3},{"id":"creature-115952","entityId":"entry-26802","position":[-1047.6264,-47.1653,-2.7268],"yaw":-3.45575,"spawnMask":3},{"id":"creature-115965","entityId":"entry-26802","position":[-1047.4914,-47.1652,12.3322],"yaw":-3.76991,"spawnMask":3},{"id":"creature-116016","entityId":"entry-26805","position":[-1015.2654,-47.1644,39.0032],"yaw":-4.60767,"spawnMask":3},{"id":"creature-116017","entityId":"entry-26805","position":[-1007.3684,-47.1641,39.1782],"yaw":-4.7822,"spawnMask":3},{"id":"creature-126422","entityId":"entry-32261","position":[-1129.3824,-27.1677,-176.5149],"yaw":-2.51327,"spawnMask":3},{"id":"creature-126423","entityId":"entry-32261","position":[-834.9584,-28.8642,-167.0276],"yaw":-3.55701,"spawnMask":3},{"id":"creature-126424","entityId":"entry-32261","position":[-898.7164,-28.7809,-105.2351],"yaw":-1.39626,"spawnMask":3},{"id":"creature-126425","entityId":"entry-32261","position":[-971.9624,-26.5994,-382.8558],"yaw":-0.628319,"spawnMask":3},{"id":"creature-126426","entityId":"entry-32261","position":[-1041.7274,-47.1645,-4.4888],"yaw":-6.10865,"spawnMask":3},{"id":"creature-126427","entityId":"entry-32261","position":[-900.4704,-26.6748,-443.4108],"yaw":-5.79449,"spawnMask":3},{"id":"creature-126428","entityId":"entry-32261","position":[-978.9294,-47.1638,-3.7388],"yaw":-0.872665,"spawnMask":3},{"id":"creature-126429","entityId":"entry-32261","position":[-872.1234,-28.7809,-30.8178],"yaw":-3.36848,"spawnMask":3},{"id":"creature-126430","entityId":"entry-32261","position":[-882.4274,-26.6748,-433.7888],"yaw":-0.977384,"spawnMask":3},{"id":"creature-126431","entityId":"entry-32261","position":[-1253.0504,-41.1237,-276.2008],"yaw":-2.63545,"spawnMask":3},{"id":"creature-126432","entityId":"entry-32261","position":[-1132.6234,-37.1642,-276.2618],"yaw":-1.69297,"spawnMask":3},{"id":"creature-126433","entityId":"entry-32261","position":[-947.8934,-26.5994,-365.8928],"yaw":-6.05629,"spawnMask":3},{"id":"creature-126434","entityId":"entry-26918","position":[-1275.4394,-41.1237,-292.1328],"yaw":-4.85202,"spawnMask":3},{"id":"creature-126435","entityId":"entry-26918","position":[-1221.5824,-27.3806,-358.1438],"yaw":-3.76991,"spawnMask":3},{"id":"creature-126436","entityId":"entry-26918","position":[-1143.4004,-35.6293,-349.7748],"yaw":-0.331613,"spawnMask":3},{"id":"creature-126437","entityId":"entry-26918","position":[-1158.1854,-38.7692,-271.3118],"yaw":-4.85202,"spawnMask":3},{"id":"creature-126438","entityId":"entry-26918","position":[-1212.0504,-27.3806,-260.1928],"yaw":-0.575959,"spawnMask":3},{"id":"creature-126439","entityId":"entry-26918","position":[-1307.7634,-41.1237,-298.3508],"yaw":-3.03687,"spawnMask":3},{"id":"creature-126441","entityId":"entry-28231","position":[-970.0724,-26.3163,-335.3238],"yaw":-2.74376,"spawnMask":3},{"id":"creature-126444","entityId":"entry-28231","position":[-838.8524,-20.4816,-389.8088],"yaw":-2.34172,"spawnMask":3},{"id":"creature-126453","entityId":"entry-26723","position":[-888.1194,-27.7083,-155.7871],"yaw":-3.12414,"spawnMask":3},{"id":"creature-126454","entityId":"entry-26727","position":[-1166.7744,-28.7826,-87.3081],"yaw":-4.41568,"spawnMask":3},{"id":"creature-126456","entityId":"entry-26727","position":[-1107.4874,-28.2688,-65.4508],"yaw":-2.80998,"spawnMask":3},{"id":"creature-126458","entityId":"entry-26727","position":[-1139.9614,-28.7826,-86.5692],"yaw":-5.21853,"spawnMask":3},{"id":"creature-126459","entityId":"entry-26727","position":[-1140.7704,-28.7826,-33.6408],"yaw":-0.20944,"spawnMask":3},{"id":"creature-126460","entityId":"entry-26727","position":[-1189.7974,-29.822,-35.4228],"yaw":-1.15192,"spawnMask":3},{"id":"creature-126462","entityId":"entry-26728","position":[-1169.1894,-28.7826,-82.5503],"yaw":-6.14356,"spawnMask":3},{"id":"creature-126463","entityId":"entry-26728","position":[-1170.5774,-28.7826,-77.3892],"yaw":-5.95157,"spawnMask":3},{"id":"creature-126464","entityId":"entry-26728","position":[-1107.5314,-28.2688,-57.1978],"yaw":-3.87463,"spawnMask":3},{"id":"creature-126465","entityId":"entry-26728","position":[-1103.6814,-28.2688,-60.0148],"yaw":-0.593412,"spawnMask":3},{"id":"creature-126466","entityId":"entry-26728","position":[-1134.8874,-28.9593,-90.0026],"yaw":-4.55531,"spawnMask":3},{"id":"creature-126467","entityId":"entry-26728","position":[-1141.6874,-28.7826,-38.1188],"yaw":-0.122173,"spawnMask":3},{"id":"creature-126468","entityId":"entry-26728","position":[-1195.8384,-29.9982,-38.1698],"yaw":-1.22173,"spawnMask":3},{"id":"creature-126469","entityId":"entry-26729","position":[-1163.6844,-28.7826,-82.9309],"yaw":-3.26377,"spawnMask":3},{"id":"creature-126470","entityId":"entry-26729","position":[-1103.4164,-28.2688,-63.5582],"yaw":-5.81195,"spawnMask":3},{"id":"creature-126471","entityId":"entry-26729","position":[-1141.8014,-28.7826,-81.8461],"yaw":-5.89921,"spawnMask":3},{"id":"creature-126472","entityId":"entry-26729","position":[-1139.4814,-28.7826,-28.6748],"yaw":-0.15708,"spawnMask":3},{"id":"creature-126473","entityId":"entry-26729","position":[-1202.4554,-30.1915,-41.1908],"yaw":-1.11701,"spawnMask":3},{"id":"creature-126474","entityId":"entry-26730","position":[-950.0354,-46.8497,3.6102],"yaw":-5.91342,"spawnMask":3},{"id":"creature-126475","entityId":"entry-26730","position":[-910.1074,-35.5448,6.3352],"yaw":-0.461356,"spawnMask":3},{"id":"creature-126476","entityId":"entry-26730","position":[-1212.8334,-32.4225,-72.128],"yaw":-5.41911,"spawnMask":3},{"id":"creature-126477","entityId":"entry-26730","position":[-1217.1354,-32.4058,-68.4548],"yaw":-5.4191,"spawnMask":3},{"id":"creature-126478","entityId":"entry-26730","position":[-1074.2434,-45.4176,-0.3898],"yaw":-3.51157,"spawnMask":3},{"id":"creature-126479","entityId":"entry-26730","position":[-1072.1924,-46.3133,4.8832],"yaw":-3.51249,"spawnMask":3},{"id":"creature-126480","entityId":"entry-26731","position":[-1081.3924,-28.2688,-61.2],"yaw":-6.02139,"spawnMask":3},{"id":"creature-126481","entityId":"entry-26734","position":[-1219.5394,-18.1075,-174.5911],"yaw":-4.01426,"spawnMask":3},{"id":"creature-126482","entityId":"entry-26734","position":[-1227.3844,-18.1075,-178.1928],"yaw":-5.79449,"spawnMask":3},{"id":"creature-126483","entityId":"entry-26734","position":[-1222.5544,-27.3806,-345.1988],"yaw":-1.01229,"spawnMask":3},{"id":"creature-126484","entityId":"entry-26734","position":[-1237.6664,-27.3806,-349.9218],"yaw":-5.21853,"spawnMask":3},{"id":"creature-126485","entityId":"entry-26734","position":[-1207.7734,-27.3806,-336.1808],"yaw":-2.18166,"spawnMask":3},{"id":"creature-126486","entityId":"entry-26734","position":[-1313.0814,-41.1237,-288.3108],"yaw":-3.80482,"spawnMask":3},{"id":"creature-126487","entityId":"entry-26734","position":[-1319.7134,-41.1237,-297.6948],"yaw":-4.60767,"spawnMask":3},{"id":"creature-126488","entityId":"entry-26734","position":[-1139.7464,-34.7031,-357.1918],"yaw":-6.12611,"spawnMask":3},{"id":"creature-126489","entityId":"entry-26734","position":[-1137.2124,-33.5395,-344.3598],"yaw":-0.767945,"spawnMask":3},{"id":"creature-126490","entityId":"entry-26734","position":[-1222.4294,-27.3806,-264.3708],"yaw":-4.04916,"spawnMask":3},{"id":"creature-126491","entityId":"entry-26734","position":[-1221.1914,-27.3806,-253.0368],"yaw":-2.98451,"spawnMask":3},{"id":"creature-126492","entityId":"entry-26734","position":[-1313.8804,-41.1237,-294.1618],"yaw":-3.80482,"spawnMask":3},{"id":"creature-126493","entityId":"entry-26734","position":[-1130.8994,-27.1677,-153.6036],"yaw":-1.65806,"spawnMask":3},{"id":"creature-126494","entityId":"entry-26734","position":[-1133.3554,-27.1677,-164.6417],"yaw":-5.63741,"spawnMask":3},{"id":"creature-126495","entityId":"entry-26735","position":[-1220.1884,-18.1075,-166.5076],"yaw":-5.07891,"spawnMask":3},{"id":"creature-126496","entityId":"entry-26735","position":[-1232.3184,-18.1075,-169.9518],"yaw":-3.24631,"spawnMask":3},{"id":"creature-126497","entityId":"entry-26735","position":[-1323.6214,-41.1237,-289.9008],"yaw":-3.63029,"spawnMask":3},{"id":"creature-126498","entityId":"entry-26735","position":[-1131.1884,-32.1757,-352.0228],"yaw":-0.296706,"spawnMask":3},{"id":"creature-126499","entityId":"entry-26735","position":[-1231.8314,-27.3806,-256.1018],"yaw":-3.52556,"spawnMask":3},{"id":"creature-126500","entityId":"entry-26735","position":[-1122.5934,-27.1677,-160.3799],"yaw":-3.26377,"spawnMask":3},{"id":"creature-126507","entityId":"entry-26737","position":[-1179.7934,-39.6771,-329.2798],"yaw":-1.18044,"spawnMask":3},{"id":"creature-126508","entityId":"entry-26737","position":[-1229.2834,-27.3806,-363.6238],"yaw":-1.64181,"spawnMask":3},{"id":"creature-126509","entityId":"entry-26737","position":[-1213.9714,-27.3806,-352.8868],"yaw":-1.40721,"spawnMask":3},{"id":"creature-126510","entityId":"entry-26737","position":[-1226.2204,-27.3806,-351.4418],"yaw":-4.85667,"spawnMask":3},{"id":"creature-126511","entityId":"entry-26737","position":[-1224.8824,-18.1075,-169.9887],"yaw":-0.506145,"spawnMask":3},{"id":"creature-126512","entityId":"entry-26737","position":[-1213.6804,-18.1075,-176.7887],"yaw":-2.18166,"spawnMask":3},{"id":"creature-126513","entityId":"entry-26737","position":[-1217.4544,-18.1075,-178.2653],"yaw":-5.75959,"spawnMask":3},{"id":"creature-126514","entityId":"entry-26737","position":[-1218.0454,-27.3806,-248.0722],"yaw":-1.8326,"spawnMask":3},{"id":"creature-126515","entityId":"entry-26737","position":[-1224.6404,-27.3806,-268.6878],"yaw":-3.78736,"spawnMask":3},{"id":"creature-126516","entityId":"entry-26737","position":[-1213.7844,-27.3806,-268.2078],"yaw":-2.23402,"spawnMask":3},{"id":"creature-126517","entityId":"entry-26737","position":[-1280.7804,-41.2293,-333.5188],"yaw":-6.15899,"spawnMask":3},{"id":"creature-126518","entityId":"entry-26737","position":[-1274.6914,-41.2262,-326.1278],"yaw":-3.06287,"spawnMask":3},{"id":"creature-126519","entityId":"entry-26737","position":[-1225.6754,-42.5197,-309.4078],"yaw":-4.66645,"spawnMask":3},{"id":"creature-126520","entityId":"entry-26737","position":[-1137.2464,-27.1677,-154.6892],"yaw":-3.59538,"spawnMask":3},{"id":"creature-126521","entityId":"entry-26737","position":[-1126.2324,-27.1677,-166.9318],"yaw":-5.84685,"spawnMask":3},{"id":"creature-126522","entityId":"entry-26746","position":[-1182.0624,-39.835,-328.6648],"yaw":-4.01015,"spawnMask":3},{"id":"creature-126523","entityId":"entry-26746","position":[-1188.6194,-40.6415,-334.2638],"yaw":-0.697214,"spawnMask":3},{"id":"creature-126524","entityId":"entry-26746","position":[-1173.9124,-39.78,-321.8728],"yaw":-5.26858,"spawnMask":3},{"id":"creature-126525","entityId":"entry-26746","position":[-1176.5324,-39.328,-350.2678],"yaw":-6.1825,"spawnMask":3},{"id":"creature-126526","entityId":"entry-26746","position":[-1174.6684,-39.6099,-334.2218],"yaw":-4.31364,"spawnMask":3},{"id":"creature-126527","entityId":"entry-26746","position":[-1283.9204,-41.2177,-325.9558],"yaw":-2.38792,"spawnMask":3},{"id":"creature-126528","entityId":"entry-26746","position":[-1277.2024,-41.2071,-312.6358],"yaw":-2.14748,"spawnMask":3},{"id":"creature-126529","entityId":"entry-26746","position":[-1264.2094,-37.4405,-340.3868],"yaw":-1.45003,"spawnMask":3},{"id":"creature-126530","entityId":"entry-26746","position":[-1147.4804,-41.2071,-246.0328],"yaw":-4.0124,"spawnMask":3},{"id":"creature-126531","entityId":"entry-26746","position":[-1183.2164,-40.8157,-283.2908],"yaw":-6.20321,"spawnMask":3},{"id":"creature-126532","entityId":"entry-26746","position":[-1233.4354,-41.9515,-303.5818],"yaw":-2.13809,"spawnMask":3},{"id":"creature-126533","entityId":"entry-26746","position":[-1214.0584,-41.2071,-302.2698],"yaw":-3.17306,"spawnMask":3},{"id":"creature-126534","entityId":"entry-26746","position":[-1215.8014,-42.5197,-317.4138],"yaw":-2.11216,"spawnMask":3},{"id":"creature-126535","entityId":"entry-26746","position":[-1217.0444,-42.5197,-313.3748],"yaw":-4.54592,"spawnMask":3},{"id":"creature-126536","entityId":"entry-26746","position":[-1227.8574,-42.5197,-316.4618],"yaw":-4.23657,"spawnMask":3},{"id":"creature-126537","entityId":"entry-26746","position":[-1145.7594,-37.1214,-311.4008],"yaw":-4.70379,"spawnMask":3},{"id":"creature-126538","entityId":"entry-26746","position":[-1206.5314,-27.4639,-257.5208],"yaw":-5.79857,"spawnMask":3},{"id":"creature-126539","entityId":"entry-26746","position":[-1220.5514,-27.4639,-259.7498],"yaw":-0.301053,"spawnMask":3},{"id":"creature-126540","entityId":"entry-26746","position":[-1269.9494,-41.2071,-288.5128],"yaw":-2.60799,"spawnMask":3},{"id":"creature-126541","entityId":"entry-26746","position":[-1160.6584,-38.963,-274.0368],"yaw":-1.51051,"spawnMask":3},{"id":"creature-126542","entityId":"entry-26746","position":[-1217.5744,-27.4639,-247.084],"yaw":-3.48712,"spawnMask":3},{"id":"creature-126543","entityId":"entry-26746","position":[-1267.0684,-40.5589,-288.7848],"yaw":-2.06212,"spawnMask":3},{"id":"creature-126544","entityId":"entry-26746","position":[-1168.7774,-40.094,-268.6138],"yaw":-1.51198,"spawnMask":3},{"id":"creature-126545","entityId":"entry-26746","position":[-1212.1084,-27.4639,-262.1378],"yaw":-5.21144,"spawnMask":3},{"id":"creature-126546","entityId":"entry-26746","position":[-1271.7264,-41.2071,-297.2328],"yaw":-2.81257,"spawnMask":3},{"id":"creature-126547","entityId":"entry-26746","position":[-1162.5824,-39.6586,-265.7848],"yaw":-4.03884,"spawnMask":3},{"id":"creature-126548","entityId":"entry-26746","position":[-1213.5334,-27.4639,-261.0418],"yaw":-3.04725,"spawnMask":3},{"id":"creature-126549","entityId":"entry-26746","position":[-1305.9204,-41.2071,-294.1118],"yaw":-6.15639,"spawnMask":3},{"id":"creature-126550","entityId":"entry-26746","position":[-1278.2084,-41.2071,-291.9568],"yaw":-1.09544,"spawnMask":3},{"id":"creature-126551","entityId":"entry-26746","position":[-1163.8974,-39.2409,-275.3768],"yaw":-3.47331,"spawnMask":3},{"id":"creature-126552","entityId":"entry-26746","position":[-1212.9924,-27.4639,-258.7848],"yaw":-1.10571,"spawnMask":3},{"id":"creature-126553","entityId":"entry-26746","position":[-1301.7734,-41.2071,-296.3508],"yaw":-3.72483,"spawnMask":3},{"id":"creature-126554","entityId":"entry-26746","position":[-1277.8474,-41.2071,-299.1768],"yaw":-5.80994,"spawnMask":3},{"id":"creature-126555","entityId":"entry-26746","position":[-1214.7524,-27.4639,-367.3398],"yaw":-4.85063,"spawnMask":3},{"id":"creature-126556","entityId":"entry-26746","position":[-1144.9654,-35.93,-351.7518],"yaw":-3.80745,"spawnMask":3},{"id":"creature-126557","entityId":"entry-26746","position":[-1161.6064,-38.7814,-278.9298],"yaw":-3.76439,"spawnMask":3},{"id":"creature-126558","entityId":"entry-26746","position":[-1199.1814,-28.1729,-263.1308],"yaw":-4.2997,"spawnMask":3},{"id":"creature-126559","entityId":"entry-26746","position":[-1315.1834,-41.2071,-298.0678],"yaw":-5.71663,"spawnMask":3},{"id":"creature-126560","entityId":"entry-26746","position":[-1275.0144,-41.2071,-298.4708],"yaw":-6.0253,"spawnMask":3},{"id":"creature-126561","entityId":"entry-26746","position":[-1223.6024,-27.4639,-367.0328],"yaw":-0.056719,"spawnMask":3},{"id":"creature-126562","entityId":"entry-26746","position":[-1145.6154,-35.9272,-358.3248],"yaw":-4.74948,"spawnMask":3},{"id":"creature-126563","entityId":"entry-26746","position":[-1168.3504,-39.8138,-272.4218],"yaw":-2.9073,"spawnMask":3},{"id":"creature-126564","entityId":"entry-26746","position":[-1210.9934,-27.4639,-261.8498],"yaw":-5.73971,"spawnMask":3},{"id":"creature-126565","entityId":"entry-26746","position":[-1313.8614,-41.2071,-300.3958],"yaw":-6.20428,"spawnMask":3},{"id":"creature-126566","entityId":"entry-26746","position":[-1221.1134,-27.4639,-361.1068],"yaw":-1.46423,"spawnMask":3},{"id":"creature-126567","entityId":"entry-26746","position":[-1134.4094,-32.8824,-348.3088],"yaw":-0.235288,"spawnMask":3},{"id":"creature-126568","entityId":"entry-26746","position":[-1211.6594,-27.4639,-256.7818],"yaw":-3.00959,"spawnMask":3},{"id":"creature-126569","entityId":"entry-26746","position":[-1313.2194,-41.2071,-301.2348],"yaw":-5.63863,"spawnMask":3},{"id":"creature-126570","entityId":"entry-26746","position":[-1273.2614,-41.2071,-296.0418],"yaw":-3.63982,"spawnMask":3},{"id":"creature-126571","entityId":"entry-26746","position":[-1220.9754,-27.4639,-362.2228],"yaw":-1.714,"spawnMask":3},{"id":"creature-126572","entityId":"entry-26746","position":[-1138.6314,-34.0951,-344.8248],"yaw":-6.26889,"spawnMask":3},{"id":"creature-126573","entityId":"entry-26746","position":[-1162.9044,-39.1465,-275.1258],"yaw":-3.10624,"spawnMask":3},{"id":"creature-126574","entityId":"entry-26746","position":[-1214.2774,-27.4639,-262.2588],"yaw":-6.06641,"spawnMask":3},{"id":"creature-126575","entityId":"entry-26746","position":[-1314.7054,-41.2071,-302.7918],"yaw":-0.27262,"spawnMask":3},{"id":"creature-126576","entityId":"entry-26746","position":[-1277.4344,-41.2071,-293.3128],"yaw":-2.14072,"spawnMask":3},{"id":"creature-126577","entityId":"entry-26746","position":[-1224.0084,-27.4639,-359.4508],"yaw":-4.14214,"spawnMask":3},{"id":"creature-126578","entityId":"entry-26746","position":[-1143.6914,-35.8807,-344.0698],"yaw":-1.89913,"spawnMask":3},{"id":"creature-126579","entityId":"entry-26746","position":[-1304.4764,-41.2071,-299.9688],"yaw":-2.86631,"spawnMask":3},{"id":"creature-126580","entityId":"entry-26746","position":[-1277.7824,-41.2071,-291.0468],"yaw":-1.58886,"spawnMask":3},{"id":"creature-126581","entityId":"entry-26746","position":[-1221.0404,-27.4639,-366.1258],"yaw":-4.69788,"spawnMask":3},{"id":"creature-126582","entityId":"entry-26746","position":[-1151.6884,-36.5256,-350.3848],"yaw":-2.20734,"spawnMask":3},{"id":"creature-126583","entityId":"entry-26746","position":[-1305.2844,-41.2071,-295.2208],"yaw":-1.60012,"spawnMask":3},{"id":"creature-126584","entityId":"entry-26761","position":[-1278.3334,-0.3625,-453.1488],"yaw":-2.37365,"spawnMask":3},{"id":"creature-126585","entityId":"entry-26761","position":[-1181.2604,17.0164,-461.5158],"yaw":-0.558505,"spawnMask":3},{"id":"creature-126586","entityId":"entry-26761","position":[-1217.1474,-20.8929,-521.0028],"yaw":-1.27409,"spawnMask":3},{"id":"creature-126587","entityId":"entry-26761","position":[-1234.1134,-18.1075,-182.7112],"yaw":-0.645772,"spawnMask":3},{"id":"creature-126588","entityId":"entry-26761","position":[-1249.7374,-41.1237,-279.9268],"yaw":-2.72271,"spawnMask":3},{"id":"creature-126589","entityId":"entry-26761","position":[-1243.6714,-4.0473,-339.8048],"yaw":-0.396343,"spawnMask":3},{"id":"creature-126590","entityId":"entry-26761","position":[-1249.9734,-12.5189,-283.4598],"yaw":-0.597949,"spawnMask":3},{"id":"creature-126591","entityId":"entry-26761","position":[-1169.5124,-1.0492,-394.2218],"yaw":-2.48474,"spawnMask":3},{"id":"creature-126592","entityId":"entry-26761","position":[-1176.6414,-26.8081,-399.7358],"yaw":-2.48295,"spawnMask":3},{"id":"creature-126593","entityId":"entry-26761","position":[-1188.3174,0.6084,-408.7648],"yaw":-2.48331,"spawnMask":3},{"id":"creature-126594","entityId":"entry-26761","position":[-1244.4504,-13.9095,-290.1258],"yaw":-1.08627,"spawnMask":3},{"id":"creature-126595","entityId":"entry-26761","position":[-1205.0624,0.8439,-421.1908],"yaw":-2.59897,"spawnMask":3},{"id":"creature-126596","entityId":"entry-26761","position":[-1213.7844,-2.0073,-352.3078],"yaw":-0.396935,"spawnMask":3},{"id":"creature-126597","entityId":"entry-26761","position":[-1248.9804,-12.4615,-284.1398],"yaw":-0.603995,"spawnMask":3},{"id":"creature-126598","entityId":"entry-26761","position":[-1197.4034,1.3412,-415.7638],"yaw":-2.48741,"spawnMask":3},{"id":"creature-126599","entityId":"entry-26763","position":[-1224.3354,-21.36,-439.4498],"yaw":-4.74729,"spawnMask":3},{"id":"creature-126600","entityId":"entry-26782","position":[-942.7934,-26.5034,-329.4958],"yaw":-3.80705,"spawnMask":3},{"id":"creature-126601","entityId":"entry-26782","position":[-970.0134,-26.3163,-335.2988],"yaw":-2.91584,"spawnMask":3},{"id":"creature-126602","entityId":"entry-26782","position":[-974.1084,-26.3163,-334.8088],"yaw":-2.63267,"spawnMask":3},{"id":"creature-126603","entityId":"entry-26782","position":[-1044.7214,-26.3163,-327.6208],"yaw":-5.79238,"spawnMask":3},{"id":"creature-126604","entityId":"entry-26782","position":[-1039.9374,-26.3163,-329.0728],"yaw":-5.79238,"spawnMask":3},{"id":"creature-126605","entityId":"entry-26782","position":[-834.5844,-20.7167,-385.4148],"yaw":-2.34172,"spawnMask":3},{"id":"creature-126606","entityId":"entry-26782","position":[-838.0694,-20.4816,-388.9688],"yaw":-2.34654,"spawnMask":3},{"id":"creature-126607","entityId":"entry-26782","position":[-989.8314,-26.3163,-463.9488],"yaw":-0.612719,"spawnMask":3},{"id":"creature-126608","entityId":"entry-26782","position":[-983.6794,-26.3163,-472.5948],"yaw":-0.174134,"spawnMask":3},{"id":"creature-126609","entityId":"entry-26782","position":[-1018.1964,-26.3163,-423.8308],"yaw":-2.62032,"spawnMask":3},{"id":"creature-126610","entityId":"entry-26792","position":[-978.4964,-26.5994,-399.7848],"yaw":-0.191986,"spawnMask":3},{"id":"creature-126614","entityId":"entry-26792","position":[-977.7484,-26.5994,-361.2738],"yaw":-0.872665,"spawnMask":3},{"id":"creature-126615","entityId":"entry-26792","position":[-1007.5254,-26.233,-474.8308],"yaw":-2.61799,"spawnMask":3},{"id":"creature-126616","entityId":"entry-26792","position":[-882.7474,-26.6202,-310.9608],"yaw":-1.11701,"spawnMask":3},{"id":"creature-126617","entityId":"entry-26792","position":[-913.6834,-26.6748,-445.3848],"yaw":-1.62316,"spawnMask":3},{"id":"creature-126618","entityId":"entry-26792","position":[-1026.7504,-26.233,-415.3788],"yaw":-4.18879,"spawnMask":3},{"id":"creature-126619","entityId":"entry-26793","position":[-990.0014,-26.233,-375.5768],"yaw":-3.45575,"spawnMask":3},{"id":"creature-126620","entityId":"entry-26793","position":[-1000.3194,-26.233,-333.2938],"yaw":-5.5676,"spawnMask":3},{"id":"creature-126621","entityId":"entry-26793","position":[-1003.3614,-26.6758,-461.3938],"yaw":-4.86947,"spawnMask":3},{"id":"creature-126622","entityId":"entry-26793","position":[-949.3254,-26.5994,-355.7648],"yaw":-2.1293,"spawnMask":3},{"id":"creature-126623","entityId":"entry-26793","position":[-938.0384,-26.5977,-462.8828],"yaw":-2.32129,"spawnMask":3},{"id":"creature-126624","entityId":"entry-26793","position":[-997.0994,-26.233,-357.9728],"yaw":-5.49779,"spawnMask":3},{"id":"creature-126625","entityId":"entry-26793","position":[-1033.8024,-26.233,-325.0718],"yaw":-3.63029,"spawnMask":3},{"id":"creature-126626","entityId":"entry-26793","position":[-1015.5944,-26.233,-423.4398],"yaw":-6.16101,"spawnMask":3},{"id":"creature-126627","entityId":"entry-26793","position":[-909.9124,-26.233,-410.6738],"yaw":-1.55334,"spawnMask":3},{"id":"creature-126628","entityId":"entry-26793","position":[-917.1644,-26.233,-423.6798],"yaw":-5.37561,"spawnMask":3},{"id":"creature-126629","entityId":"entry-26793","position":[-960.5644,-26.233,-329.9758],"yaw":-4.90438,"spawnMask":3},{"id":"creature-126630","entityId":"entry-26793","position":[-996.2724,-26.233,-385.7988],"yaw":-0.261799,"spawnMask":3},{"id":"creature-126631","entityId":"entry-26793","position":[-898.7134,-26.233,-401.6418],"yaw":-5.65487,"spawnMask":3},{"id":"creature-126632","entityId":"entry-26793","position":[-917.8594,-26.233,-383.4748],"yaw":-1.85005,"spawnMask":3},{"id":"creature-126633","entityId":"entry-26793","position":[-994.8884,-26.233,-402.2998],"yaw":-0.855211,"spawnMask":3},{"id":"creature-126634","entityId":"entry-26793","position":[-1019.2424,-26.233,-327.1658],"yaw":-4.15388,"spawnMask":3},{"id":"creature-126635","entityId":"entry-26793","position":[-909.1094,-26.233,-373.4738],"yaw":-3.85718,"spawnMask":3},{"id":"creature-126636","entityId":"entry-26793","position":[-1004.4874,-26.6758,-371.5788],"yaw":-2.93215,"spawnMask":3},{"id":"creature-126637","entityId":"entry-26793","position":[-933.4244,-26.233,-439.9158],"yaw":-3.40339,"spawnMask":3},{"id":"creature-126638","entityId":"entry-26793","position":[-1000.6364,-26.6758,-416.6548],"yaw":-5.68977,"spawnMask":3},{"id":"creature-126639","entityId":"entry-26793","position":[-904.5384,-26.3163,-389.0668],"yaw":-2.72539,"spawnMask":3},{"id":"creature-126640","entityId":"entry-26793","position":[-1052.6404,-26.233,-358.1078],"yaw":-3.00197,"spawnMask":3},{"id":"creature-126641","entityId":"entry-26793","position":[-949.5154,-26.233,-474.2688],"yaw":-5.89921,"spawnMask":3},{"id":"creature-126642","entityId":"entry-26793","position":[-992.9824,-26.233,-462.4528],"yaw":-0.174533,"spawnMask":3},{"id":"creature-126643","entityId":"entry-26793","position":[-934.8124,-26.233,-344.6828],"yaw":-3.24631,"spawnMask":3},{"id":"creature-126644","entityId":"entry-26793","position":[-946.7724,-26.233,-333.6478],"yaw":-2.3911,"spawnMask":3},{"id":"creature-126645","entityId":"entry-26793","position":[-923.7174,-26.233,-468.0958],"yaw":-2.86234,"spawnMask":3},{"id":"creature-126646","entityId":"entry-26793","position":[-1048.9024,-26.233,-331.3178],"yaw":-4.81711,"spawnMask":3},{"id":"creature-126647","entityId":"entry-26793","position":[-912.5954,-26.5004,-322.7928],"yaw":-3.12414,"spawnMask":3},{"id":"creature-126648","entityId":"entry-26793","position":[-1036.2564,-26.233,-367.8768],"yaw":-4.38078,"spawnMask":3},{"id":"creature-126649","entityId":"entry-26793","position":[-898.0334,-26.6957,-311.3278],"yaw":-5.32325,"spawnMask":3},{"id":"creature-126650","entityId":"entry-26793","position":[-975.4584,-26.5994,-381.6908],"yaw":-0.855211,"spawnMask":3},{"id":"creature-126651","entityId":"entry-26793","position":[-912.2914,-27.3149,-309.0738],"yaw":-2.26893,"spawnMask":3},{"id":"creature-126652","entityId":"entry-26793","position":[-1021.0554,-26.233,-369.7018],"yaw":-2.00713,"spawnMask":3},{"id":"creature-126653","entityId":"entry-26793","position":[-969.0634,-26.233,-340.7978],"yaw":-3.35103,"spawnMask":3},{"id":"creature-126654","entityId":"entry-26793","position":[-938.1654,-26.233,-481.3958],"yaw":-4.2237,"spawnMask":3},{"id":"creature-126655","entityId":"entry-26793","position":[-981.9024,-26.233,-338.1878],"yaw":-4.92183,"spawnMask":3},{"id":"creature-126656","entityId":"entry-26793","position":[-993.1534,-26.233,-345.9828],"yaw":-0.925025,"spawnMask":3},{"id":"creature-126657","entityId":"entry-26793","position":[-896.4424,-26.233,-421.2288],"yaw":-6.21337,"spawnMask":3},{"id":"creature-126658","entityId":"entry-26793","position":[-927.4164,-26.3805,-326.9568],"yaw":-0.20944,"spawnMask":3},{"id":"creature-126659","entityId":"entry-26793","position":[-1000.7824,-26.233,-438.1598],"yaw":-0.10472,"spawnMask":3},{"id":"creature-126660","entityId":"entry-26793","position":[-970.1374,-26.233,-470.3078],"yaw":-2.18166,"spawnMask":3},{"id":"creature-126661","entityId":"entry-26793","position":[-985.3784,-26.233,-469.3798],"yaw":-4.2586,"spawnMask":3},{"id":"creature-126662","entityId":"entry-26793","position":[-926.2464,-26.233,-453.6308],"yaw":-0.628319,"spawnMask":3},{"id":"creature-126663","entityId":"entry-26794","position":[-851.6244,-21.2451,-375.7438],"yaw":-5.89921,"spawnMask":3},{"id":"creature-126664","entityId":"entry-26800","position":[-982.5654,-47.1638,18.8912],"yaw":-5.41052,"spawnMask":3},{"id":"creature-126665","entityId":"entry-26802","position":[-996.6774,-47.1638,28.9892],"yaw":-5.02655,"spawnMask":3},{"id":"creature-126666","entityId":"entry-26802","position":[-976.1994,-47.1638,-1.6418],"yaw":-5.91667,"spawnMask":3},{"id":"creature-126667","entityId":"entry-26802","position":[-976.2604,-47.1638,16.9992],"yaw":-5.53269,"spawnMask":3},{"id":"creature-126668","entityId":"entry-26805","position":[-991.0044,-47.1638,31.0572],"yaw":-5.11381,"spawnMask":3},{"id":"creature-247105","entityId":"entry-27949","position":[-1011.2124,-47.1642,35.6332],"yaw":-4.72984,"spawnMask":1},{"id":"creature-1266090","entityId":"entry-26782","position":[-1018.1964,-26.3163,-423.8308],"yaw":-2.62032,"spawnMask":3}],"roamingPacks":[{"id":"patrol-126440","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-942.6094,-26.7317,-331.4878],[-933.3624,-26.7317,-332.5628],[-922.9424,-26.5049,-327.4208],[-913.8924,-26.7071,-320.0218],[-903.9204,-26.8333,-311.8688],[-912.3294,-26.7775,-318.1578],[-922.3644,-26.5251,-326.2318],[-933.0834,-26.7318,-333.2448],[-943.5664,-26.7318,-333.8438],[-950.5164,-26.3163,-334.6818]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126442","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264420,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-977.0584,-26.3163,-336.4498],[-984.2774,-26.3163,-340.3178],[-991.5914,-26.3163,-346.1908],[-995.7514,-26.3163,-355.8318],[-991.2734,-26.3163,-345.1088],[-983.9164,-26.3163,-341.6728],[-970.4614,-26.3163,-337.8048],[-962.6954,-26.3163,-335.2048],[-954.6774,-26.3163,-333.5348]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126443","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264430,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1041.7764,-26.3163,-324.5988],[-1033.6824,-26.3163,-325.2288],[-1027.8814,-26.3163,-325.5488],[-1018.6164,-26.3163,-326.4618],[-1026.7314,-26.3163,-326.2058],[-1034.9174,-26.3163,-325.9478],[-1043.0014,-26.3163,-326.7118],[-1050.8624,-26.3163,-331.8298],[-1054.6344,-26.3163,-339.0208],[-1049.3114,-26.3163,-332.8888],[-1043.8894,-26.3163,-325.7048]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126445","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264450,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-845.5184,-21.3284,-390.8478],[-853.3944,-20.5546,-392.8218],[-862.1864,-20.4816,-389.7588],[-868.4664,-20.4816,-382.8858],[-874.2714,-20.7115,-383.8168],[-882.8804,-23.7901,-387.3628],[-890.2694,-26.3163,-390.8938],[-903.9494,-26.3163,-397.4968],[-908.1104,-26.3163,-399.5048],[-900.7914,-26.3163,-395.8298],[-893.1944,-26.3163,-392.7698],[-888.9094,-26.0121,-391.0428],[-879.2674,-22.7067,-386.7118],[-874.9894,-21.0562,-384.7908],[-869.3944,-20.4815,-383.2238],[-863.9404,-20.4815,-389.2408],[-855.2684,-20.4816,-395.1588],[-844.7924,-20.4816,-394.4378],[-840.4704,-20.7239,-388.8428],[-834.0634,-20.7252,-377.7608]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126446","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-975.9084,-26.3163,-469.6848],[-966.7314,-26.3163,-471.2518],[-955.2764,-26.3163,-473.2078],[-944.7074,-26.3163,-473.1278],[-934.9094,-26.681,-466.7508],[-930.2924,-26.3163,-458.5858],[-920.3394,-26.7581,-444.1918],[-910.4254,-26.3163,-429.8558],[-918.5714,-26.758,-441.2418],[-928.7904,-26.3163,-455.5348],[-938.9684,-26.681,-469.7698],[-953.9774,-26.3163,-471.6018],[-967.9464,-26.3163,-470.6648],[-980.7114,-26.3163,-469.6018],[-993.1474,-26.4913,-466.2488],[-999.7154,-26.7591,-461.4748],[-989.9844,-26.3163,-465.4188]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126447","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1018.0524,-26.3163,-421.7148],[-1010.3324,-26.3163,-418.9798],[-1002.6124,-26.7591,-416.2448],[-998.7534,-26.7591,-411.8078],[-996.6364,-26.3163,-399.1738],[-996.6214,-26.3163,-389.7938],[-997.9694,-26.7591,-376.9848],[-1007.4124,-26.3163,-372.3918],[-1013.1094,-26.3163,-371.2518],[-1023.4714,-26.3163,-369.5568],[-1032.7394,-26.3163,-368.1158],[-1023.5404,-26.3163,-369.5458],[-1011.9894,-26.3163,-371.3428],[-999.3794,-26.7591,-373.9688],[-996.7054,-26.3163,-381.7098],[-996.8864,-26.3163,-395.7088],[-998.4914,-26.3163,-407.2168],[-1001.1294,-26.7591,-420.9658],[-1009.1884,-26.3163,-422.4288],[-1022.9634,-26.3163,-424.9288],[-1031.5404,-26.3163,-428.5488]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126448","name":"Azure Warder Patrol","speed":1.15,"pathId":1264480,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-893.8424,-29.2621,-251.9198],[-939.2404,-28.8642,-206.771],[-979.5604,-28.8642,-166.312],[-940.0094,-28.8642,-205.9149]],"members":[{"id":"member","entityId":"entry-26716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126449","name":"Azure Warder Patrol","speed":1.15,"pathId":1264490,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-870.4524,-28.7988,-141.0231],[-902.9214,-28.7897,-137.8718],[-875.8044,-28.8092,-136.1743],[-870.5174,-28.7987,-170.4922]],"members":[{"id":"member","entityId":"entry-26716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126450","name":"Azure Warder Patrol","speed":1.15,"pathId":1264500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-939.1514,-28.8642,-104.4011],[-972.3014,-28.8642,-137.7686],[-990.4964,-28.8642,-155.7193],[-940.3164,-28.8642,-105.6377]],"members":[{"id":"member","entityId":"entry-26716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126451","name":"Azure Warder Patrol","speed":1.15,"pathId":1264510,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-838.1964,-28.8642,-104.7979],[-810.1354,-28.8642,-132.6842],[-837.8674,-28.8642,-104.9859]],"members":[{"id":"member","entityId":"entry-26716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126452","name":"Azure Magus Patrol","speed":1.15,"pathId":1264520,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-838.4504,-28.8642,-206.8251],[-798.0624,-28.8642,-166.4798],[-837.1834,-28.8642,-205.5184],[-864.2074,-28.8642,-232.5831]],"members":[{"id":"member","entityId":"entry-26722","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126455","name":"Mage Hunter Ascendant Patrol","speed":1.15,"pathId":1264550,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-947.1384,-46.026,1.7532],[-939.2044,-43.6408,3.7852],[-931.1804,-41.5515,7.2462],[-925.4424,-41.6043,8.0822],[-918.4434,-38.5717,8.1872],[-909.7354,-35.7569,8.6492],[-903.8084,-35.7982,6.9682],[-893.0354,-31.0413,-2.7598],[-890.4774,-30.6302,-8.0538],[-889.2074,-28.2695,-16.1448],[-890.7964,-30.6302,-8.7528],[-892.7454,-30.9796,-3.0478],[-904.2234,-35.7397,6.4312],[-910.3414,-35.9384,8.7512],[-925.5124,-41.6111,7.9982],[-931.3134,-41.5851,7.6692],[-950.0674,-46.8501,1.4212]],"members":[{"id":"member","entityId":"entry-26727","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126457","name":"Mage Hunter Ascendant Patrol","speed":1.15,"pathId":1264570,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1217.7214,-32.7548,-76.9738],[-1220.0294,-33.6186,-90.8532],[-1221.4774,-33.6636,-95.3139],[-1219.3614,-33.3009,-86.1758],[-1216.3894,-32.7186,-76.1051],[-1211.2604,-32.3954,-66.9431],[-1207.2394,-31.4008,-60.2581],[-1205.0254,-30.4864,-56.8285],[-1208.5404,-32.0563,-62.882]],"members":[{"id":"member","entityId":"entry-26727","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126461","name":"Mage Hunter Ascendant Patrol","speed":1.15,"pathId":1264610,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1088.1934,-41.5568,7.2372],[-1095.0924,-41.3612,8.4252],[-1110.3304,-35.7594,8.6202],[-1115.6934,-35.7208,6.2102],[-1126.2514,-31.0364,-2.8728],[-1128.8384,-30.6319,-7.8278],[-1130.6344,-29.3524,-14.5738],[-1129.4914,-30.5517,-8.8778],[-1127.2104,-30.9189,-3.4578],[-1123.7644,-32.4655,1.3062],[-1115.2104,-35.8072,7.3962],[-1109.6184,-36.0504,9.4302],[-1094.4684,-41.6051,8.5562],[-1086.3344,-42.1624,7.6252],[-1069.5154,-46.8507,1.2572]],"members":[{"id":"member","entityId":"entry-26727","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-4764","name":"Frozen Commander","position":[-1011.2124,-47.1642,35.6332]},{"id":"creature-126480","name":"Grand Magus Telestra","position":[-1081.3924,-28.2688,-61.2]},{"id":"creature-126599","name":"Anomalus","position":[-1224.3354,-21.36,-439.4498]},{"id":"creature-126663","name":"Ormorok the Tree-Shaper","position":[-851.6244,-21.2451,-375.7438]},{"id":"creature-126663","name":"Ormrok the Tree-Shaper","position":[-851.6244,-21.2451,-375.7438]},{"id":"creature-126453","name":"Keristrasza","position":[-888.1194,-27.7083,-155.7871]}],"objectiveOrder":[{"id":"creature-4764","name":"Frozen Commander","position":[-1011.2124,-47.1642,35.6332]},{"id":"creature-126480","name":"Grand Magus Telestra","position":[-1081.3924,-28.2688,-61.2]},{"id":"creature-126599","name":"Anomalus","position":[-1224.3354,-21.36,-439.4498]},{"id":"creature-126663","name":"Ormorok the Tree-Shaper","position":[-851.6244,-21.2451,-375.7438]},{"id":"creature-126663","name":"Ormrok the Tree-Shaper","position":[-851.6244,-21.2451,-375.7438]},{"id":"creature-126453","name":"Keristrasza","position":[-888.1194,-27.7083,-155.7871]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65527,"id":192788,"map":576,"orientation":-1.20428,"phaseMask":1,"position_x":417.639,"position_y":183.971,"position_z":-35.0197,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":3,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65528,"id":191016,"map":576,"orientation":-2.46091,"phaseMask":1,"position_x":242.248,"position_y":-226.154,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333809,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65529,"id":191016,"map":576,"orientation":2.16421,"phaseMask":1,"position_x":242.636,"position_y":-212.158,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65530,"id":191016,"map":576,"orientation":-0.698132,"phaseMask":1,"position_x":253.213,"position_y":-207.445,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65531,"id":191016,"map":576,"orientation":-1.37881,"phaseMask":1,"position_x":253.895,"position_y":-254.94,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65532,"id":191016,"map":576,"orientation":-1.93732,"phaseMask":1,"position_x":266.078,"position_y":-250.072,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.824127,"rotation3":0.566404,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65533,"id":191016,"map":576,"orientation":-1.90241,"phaseMask":1,"position_x":281.754,"position_y":-245.486,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65534,"id":191016,"map":576,"orientation":-0.733038,"phaseMask":1,"position_x":291.234,"position_y":-224.46,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65535,"id":191016,"map":576,"orientation":-0.279252,"phaseMask":1,"position_x":284.519,"position_y":-218.846,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65536,"id":191016,"map":576,"orientation":2.54818,"phaseMask":1,"position_x":250.144,"position_y":-240.091,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":0.956305,"rotation3":0.292372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65537,"id":191016,"map":576,"orientation":-0.191985,"phaseMask":1,"position_x":232.249,"position_y":-223.486,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.0958451,"rotation3":0.995396,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65538,"id":191016,"map":576,"orientation":1.69297,"phaseMask":1,"position_x":278.096,"position_y":-190.07,"position_z":-6.43417,"rotation0":0,"rotation1":0,"rotation2":0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65539,"id":191016,"map":576,"orientation":-2.87979,"phaseMask":1,"position_x":286.049,"position_y":-190.991,"position_z":-3.74882,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65540,"id":191016,"map":576,"orientation":-2.94959,"phaseMask":1,"position_x":304.896,"position_y":-190.961,"position_z":2.85279,"rotation0":0,"rotation1":0,"rotation2":-0.995395,"rotation3":0.0958539,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65541,"id":191016,"map":576,"orientation":0.366518,"phaseMask":1,"position_x":291.651,"position_y":-180.501,"position_z":3.55757,"rotation0":0,"rotation1":0,"rotation2":0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65542,"id":191016,"map":576,"orientation":-2.80997,"phaseMask":1,"position_x":323.973,"position_y":-195.021,"position_z":4.42393,"rotation0":0,"rotation1":0,"rotation2":-0.986285,"rotation3":0.165053,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65543,"id":191016,"map":576,"orientation":0.174532,"phaseMask":1,"position_x":280.646,"position_y":-199.468,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65544,"id":191016,"map":576,"orientation":0.855211,"phaseMask":1,"position_x":271.133,"position_y":-199.666,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65545,"id":191016,"map":576,"orientation":-0.837757,"phaseMask":1,"position_x":331.016,"position_y":-204.198,"position_z":7.43432,"rotation0":0,"rotation1":0,"rotation2":-0.406736,"rotation3":0.913546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65546,"id":191016,"map":576,"orientation":2.23402,"phaseMask":1,"position_x":293.258,"position_y":-187.126,"position_z":0.711857,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65547,"id":188526,"map":576,"orientation":-1.6057,"phaseMask":1,"position_x":281.923,"position_y":-25.4521,"position_z":-16.9398,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65548,"id":188527,"map":576,"orientation":-1.6057,"phaseMask":1,"position_x":322.153,"position_y":14.6832,"position_z":-16.8019,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65549,"id":188528,"map":576,"orientation":3.12412,"phaseMask":1,"position_x":281.783,"position_y":15.2074,"position_z":-16.621,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65550,"id":192136,"map":576,"orientation":1.5708,"phaseMask":1,"position_x":146.045,"position_y":-16.0422,"position_z":-15.347,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65551,"id":192137,"map":576,"orientation":1.5708,"phaseMask":1,"position_x":146.045,"position_y":-16.0422,"position_z":-15.347,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65552,"id":190174,"map":576,"orientation":0.174532,"phaseMask":1,"position_x":316.961,"position_y":-215.548,"position_z":-14.3496,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65553,"id":190174,"map":576,"orientation":0.418879,"phaseMask":1,"position_x":387.28,"position_y":-256.787,"position_z":-14.4552,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99771,"id":188105,"map":576,"orientation":1.69601,"phaseMask":1,"position_x":640.319,"position_y":-320.255,"position_z":-9.55084,"rotation0":0,"rotation1":0,"rotation2":0.749962,"rotation3":0.661481,"spawnMask":3,"spawntimesecs":25,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/the-nexus/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["26/26 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"the-oculus","title":"The Oculus","mapId":578,"lfgDungeonIds":[206,211],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[77,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Oculus","theme":"Open-world expedition","summary":"Fight through The Oculus, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Oculus...","unchartedAreaName":"Uncharted The Oculus","background":"#081016","fog":{"color":"#0a141c","near":36,"far":368.6688},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/578-nexus80/visual.glb","checksum":"af708e322bb0d8dfba0359b12aec086135474cc85de9b636281a12c3cf05a8cd","size":39414100,"triangleCount":5921532}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/578-nexus80/collision-000.glb","checksum":"5fdbc8689fecd44099f3f3e0e0b015e4bcc539b6d03029435ec63506977e0a49","size":137680,"triangleCount":54054},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/578-nexus80/collision-001.glb","checksum":"a40d68b43759310099358d5bac38266bfe7810e355ed784fb2887643f416e5b3","size":128092,"triangleCount":54053},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/578-nexus80/collision-002.glb","checksum":"c2b33a94971cb281dc7dd13f09cbd53ff0243ade0cc74e5fcb424aaa9619966d","size":130816,"triangleCount":54054},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/578-nexus80/collision-003.glb","checksum":"c254f95b8e67851f43717a43a5fe565f5b72ea807ccc63bbbfbf46d9742e0925","size":127792,"triangleCount":54053},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/578-nexus80/collision-004.glb","checksum":"f6b0fb24163497b956e5105a76856830867f7b903ed031e4d1d41c18503b4c42","size":127224,"triangleCount":54054},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/578-nexus80/collision-005.glb","checksum":"320bcedbb9f79f8a3b441e42f53a645fef839b552ba29f363a9059c0b42c7eb1","size":124900,"triangleCount":54053},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/578-nexus80/collision-006.glb","checksum":"ccbad97cc28982c90deebde92fc61ae5308d69321166416c5ba88f808c0b9d4c","size":136500,"triangleCount":54054},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/578-nexus80/collision-007.glb","checksum":"f025c61e3f9433b166c7a0f5d7a960d2b2a3e52c22f07c4483104c0921ba7494","size":128520,"triangleCount":54053},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/578-nexus80/collision-008.glb","checksum":"68c1535bc1ab85a909e1eb8f031774a1abc5b84c6b632dac4e59b87e30d3737d","size":137160,"triangleCount":54054},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/578-nexus80/collision-009.glb","checksum":"1aa00cfead906490a8b22cbb3af14066d0e9e48814989c7a108a18503887152a","size":128396,"triangleCount":54054},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/578-nexus80/collision-010.glb","checksum":"8e6751250cbf7c7407d073ba2284485427022cd11b8f578e9d2323aa4027e573","size":130208,"triangleCount":54053},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/578-nexus80/collision-011.glb","checksum":"571d17e71c30097d3a5baaa194d976ee22a43288e4207b165ce706dcf2562452","size":127160,"triangleCount":54053},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/578-nexus80/collision-012.glb","checksum":"4300cb53e1c114f051d8c68acd6847b776084f8d1aa7daa880a6a8a5b4827f64","size":125856,"triangleCount":54054},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/578-nexus80/collision-013.glb","checksum":"2d6080cf41f37333e5b2df1eb6558cde603293033aac5ef5a42295f1bf7fb270","size":123252,"triangleCount":54054},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/578-nexus80/collision-014.glb","checksum":"84621caf2100b07c51b1d04534dabf116253bb6848844cb054e0e5856faf4747","size":137908,"triangleCount":54054},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/578-nexus80/collision-015.glb","checksum":"5d166d346ebd3b063c67f5b7bbb297bc16c0cd24d45594bda72f3dc971ee6a3f","size":128864,"triangleCount":54053},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/578-nexus80/collision-016.glb","checksum":"a91f3e9e33cf9235538d4561da4b5e2f8c028a133b760d2d3cb7098c6a7e3e65","size":140228,"triangleCount":54053},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/578-nexus80/collision-017.glb","checksum":"e378d42133f0e992fbbca9fedb3c3b46c6a66df8ceeb4a0b191f95fca8d92ecd","size":128824,"triangleCount":54054},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/578-nexus80/collision-018.glb","checksum":"b709d2e8f1e0bd3ec968a71c788dfd331cc7b6142f847b8e265d69f30a02b71a","size":132472,"triangleCount":54054},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/578-nexus80/collision-019.glb","checksum":"0d9cb5f559cc6eac5212018387c6bb3cf12e320d8fb217df2e5017a876d953c8","size":195432,"triangleCount":54054},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/578-nexus80/collision-020.glb","checksum":"64a21aa7d2dbc2e41cb68f7ca307c762ffc55c1889ef0153a4fed3795f7c70cc","size":193768,"triangleCount":54053},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/578-nexus80/collision-021.glb","checksum":"4f8f2712279b9991e09426064ea937d9f997a85c197d6492b3b827aedce93067","size":160596,"triangleCount":54054},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/578-nexus80/collision-022.glb","checksum":"748c8cf88fe9219356ddb7c7f1288185b491d60df5ba92b0b9bd261db93f4e52","size":141836,"triangleCount":54053},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/578-nexus80/collision-023.glb","checksum":"a9c0772c7d398c2bd22b38d87c0c138771b4c5cb6fb2461c23ff9426efac657a","size":127908,"triangleCount":54054},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/578-nexus80/collision-024.glb","checksum":"6a2cddae0f852ac8d788a41b0f14bc5486f629d32bd605fecbf60733f22ae9bf","size":139572,"triangleCount":54053},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/578-nexus80/collision-025.glb","checksum":"280471da81030e03310954a50c2876cb8211f490a047118e81b0b07b4dfa012c","size":129008,"triangleCount":54054},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/578-nexus80/collision-026.glb","checksum":"241002c3cc87dd95ec383ff20dcb67a6a8b0b48d7fb3b9eb9b4943a00b2ef621","size":187740,"triangleCount":54053},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/578-nexus80/collision-027.glb","checksum":"963184a5ff89f559df092685292c50498c649ffce53366e458cb8ff23f33c3dc","size":284784,"triangleCount":62110},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/578-nexus80/collision-028.glb","checksum":"02b8a46a52f43c08d94dfb92435cf61fcbc2911d645f2c44d0c639704b675fa9","size":790884,"triangleCount":54054},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/578-nexus80/collision-029.glb","checksum":"7255b288f7b5220491373155c01bf050ee1c9ef25fe385983318aec9ce2c9640","size":286540,"triangleCount":62109},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/578-nexus80/collision-030.glb","checksum":"b4fc17e3f54e0529fb3ce1b86669482c6414f2f17dd1db9822b83b3018ef41e1","size":185236,"triangleCount":54053},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/578-nexus80/collision-031.glb","checksum":"9df7821c43fbccb75ce0e2fd426ce2a848d4f52c789ee4813c62053ef5c844d3","size":142308,"triangleCount":54053},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/578-nexus80/collision-032.glb","checksum":"598de8d9e25db56f9f9c4be225f6d065080ccb5dfcb0d71d755a40b03a87c629","size":127900,"triangleCount":54054},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/578-nexus80/collision-033.glb","checksum":"5c20e23ec40c1c0478fb60f5c69256e13ccb081afce0c9a89479a66818340dd9","size":137032,"triangleCount":54053},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/578-nexus80/collision-034.glb","checksum":"39356d21d33d9085a1a1f2d74dc877e95e55d8bd0b2a59c5da93d0d4148adeb0","size":129164,"triangleCount":54053},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/578-nexus80/collision-035.glb","checksum":"eda30fe14e56ff70a1588677d1074740dfc3a12e0184d9286f67126426c2e4bb","size":185628,"triangleCount":54054},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/578-nexus80/collision-036.glb","checksum":"3b54c558185b3827c0e4101d703a2fc5c3e46362919c91e0697fbbd39f9612eb","size":398712,"triangleCount":73930},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/578-nexus80/collision-037.glb","checksum":"2e2eda2d16bb2b046d27e5901f551ff68be674bc3c02ae1b4bf357f0ff60af04","size":239960,"triangleCount":54053},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/578-nexus80/collision-038.glb","checksum":"14bf46cc507a9ae68b66a5045414fb3770b519b0e8b33d562451efe74a1249a7","size":181256,"triangleCount":54054},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/578-nexus80/collision-039.glb","checksum":"777185831a03dadd2af139f8ea17d08305911c2df4df8b275bd9b9bde61cc15c","size":139560,"triangleCount":54053},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/578-nexus80/collision-040.glb","checksum":"1494ef439a7aa94b0dd5d56600a9e8a49a318e90d1d7a68a880eb6a293f5f1d5","size":128716,"triangleCount":54054},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/578-nexus80/collision-041.glb","checksum":"b45e149d584a6ed8ca2c4cc49ae99611ec2ddee885a809f51018977fa4be25a3","size":139932,"triangleCount":54054},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/578-nexus80/collision-042.glb","checksum":"0e1349aafc37c5e2b2768a4bc45a6da1420291daff89e20b4756b1cce4fe7dff","size":130692,"triangleCount":54054},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/578-nexus80/collision-043.glb","checksum":"a67420bd61a4332e79aedf9011446d4f5dc19e4921d44bef467a992027c16745","size":136244,"triangleCount":54053},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/578-nexus80/collision-044.glb","checksum":"47376cbca65502842bd01ef6c879aabc45c7f7e9b109021045cc599a994bc312","size":203224,"triangleCount":54253},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/578-nexus80/collision-045.glb","checksum":"7c591aa7d196a5a2ab65854ab92f3c2b5481de318b7b08ecf563470e000501ba","size":205856,"triangleCount":55064},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/578-nexus80/collision-046.glb","checksum":"143b5f3b6083e4fd445beb0b2b77d2a68e9d8ebda83023573f4c9b15b929631f","size":128732,"triangleCount":54054},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/578-nexus80/collision-047.glb","checksum":"a8bb07ecd036a3975ddb8199d3b05386bba5cbdd36af712c8579354c7a7e8272","size":141408,"triangleCount":54054},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/578-nexus80/collision-048.glb","checksum":"2f6fe3283982e667aed7de06fe73363cbca128677c5ce9853e75bd4a774e962e","size":129212,"triangleCount":54054},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/578-nexus80/collision-049.glb","checksum":"f610bb194f944e2274ce1cfa87d41b6f728f4997df42b6bb03707e87c74fd55e","size":139632,"triangleCount":54054},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/578-nexus80/collision-050.glb","checksum":"49a02418a000303f148eff46d91ce28379478df1b7d1250676843f6450489319","size":131368,"triangleCount":54053},{"id":"collision-051","fileName":"collision-051.glb","url":"/assets/game/manastorm/578-nexus80/collision-051.glb","checksum":"709500f1ecd97cdde86c305662b7a759db4deb74422cc5f4ebcc12ecd7667157","size":134764,"triangleCount":54054},{"id":"collision-052","fileName":"collision-052.glb","url":"/assets/game/manastorm/578-nexus80/collision-052.glb","checksum":"ab06d286abc8dede964a003049dede8f2f179d446213e96b2bc0759af3a43716","size":131500,"triangleCount":54054},{"id":"collision-053","fileName":"collision-053.glb","url":"/assets/game/manastorm/578-nexus80/collision-053.glb","checksum":"0fa6180bb0e3dfba9cf1b7d5b16f04b137652c5ca7a43e5b8805b3a829049b13","size":126800,"triangleCount":54054},{"id":"collision-054","fileName":"collision-054.glb","url":"/assets/game/manastorm/578-nexus80/collision-054.glb","checksum":"fe5286ff7af31b0a6f2e0765d444b5d0cded2820b714ef96305b7fd59ebc4d1f","size":126040,"triangleCount":54053},{"id":"collision-055","fileName":"collision-055.glb","url":"/assets/game/manastorm/578-nexus80/collision-055.glb","checksum":"1d45a240e57ff39630b7baa57d4ebeb609788ee7f5db8281ea4333c3366abea5","size":139988,"triangleCount":54053},{"id":"collision-056","fileName":"collision-056.glb","url":"/assets/game/manastorm/578-nexus80/collision-056.glb","checksum":"234a6291eef8acb55c63dd10b6e72014eea2158a2ebf30be7722a9e3927fc58c","size":128536,"triangleCount":54054},{"id":"collision-057","fileName":"collision-057.glb","url":"/assets/game/manastorm/578-nexus80/collision-057.glb","checksum":"20095df5365120f48b6bbe61b3ef3d58eb03e67165bfff4b457dca93f51e5a36","size":138500,"triangleCount":54053},{"id":"collision-058","fileName":"collision-058.glb","url":"/assets/game/manastorm/578-nexus80/collision-058.glb","checksum":"a915b08983bfd380c8f316706417c18d40183a2963103d76db2a41612f1bf616","size":130452,"triangleCount":54053},{"id":"collision-059","fileName":"collision-059.glb","url":"/assets/game/manastorm/578-nexus80/collision-059.glb","checksum":"8f99b40c677a264c5fe35b3fb1d53fdb2e87ea4de59da7cb9014c2d673ed87ae","size":132748,"triangleCount":54054},{"id":"collision-060","fileName":"collision-060.glb","url":"/assets/game/manastorm/578-nexus80/collision-060.glb","checksum":"51c6815b9be206e32f80fb62d51702d0d35f07ea41ef1a2564814c8bec5b3a7d","size":126356,"triangleCount":54054},{"id":"collision-061","fileName":"collision-061.glb","url":"/assets/game/manastorm/578-nexus80/collision-061.glb","checksum":"8465774198b5a8ee62518b5178d66c48338eb33f9774598f38ac7075a42db6cc","size":125500,"triangleCount":54053},{"id":"collision-062","fileName":"collision-062.glb","url":"/assets/game/manastorm/578-nexus80/collision-062.glb","checksum":"f12cc77f7aa56040b42759d75f56b21a155148ace1a6827e45468c27bef72484","size":124180,"triangleCount":54054},{"id":"collision-063","fileName":"collision-063.glb","url":"/assets/game/manastorm/578-nexus80/collision-063.glb","checksum":"bc8be589af2ff8816e6f19635b66d913213bedb75afc807a9aa36669c980cc1f","size":137864,"triangleCount":54054},{"id":"collision-064","fileName":"collision-064.glb","url":"/assets/game/manastorm/578-nexus80/collision-064.glb","checksum":"4f19168ba32aa4e4c7d1c85884ffec3d541e3d9fe944a2039aa62067fed490db","size":129940,"triangleCount":54053}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/578-nexus80/navigation.glb","checksum":"df86c214e916014a658e9910a3419248dfa5e3203de9a73a0ab4a813b1052e8a","size":2866492,"triangleCount":249392}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[777.1527,144.0747,938.5507],"max":[1289.1927,479.5207,1444.1627]},"entrance":{"name":"The Oculus Entrance","footPosition":[979.3327,165.0937,1097.2327],"forward":[0.23651493126968526,0,0.9716278543179462],"yaw":0.23877744117607635},"areas":[{"id":"entrance","name":"The Oculus Entrance","center":[979.3327,165.0937,1097.2327],"radius":35},{"id":"area-drakos-the-interrogator","name":"Drakos the Interrogator's Encounter","center":[1038.2827,164.0747,989.0967],"radius":42},{"id":"area-varos-cloudstrider","name":"Varos Cloudstrider's Encounter","center":[1062.8427,243.5387,1326.9027],"radius":42},{"id":"area-mage-lord-urom","name":"Mage-Lord Urom's Encounter","center":[930.2047,331.4287,1218.7727],"radius":42},{"id":"area-ley-guardian-eregos","name":"Ley-Guardian Eregos's Encounter","center":[1078.6927,459.5207,1118.3427],"radius":42}],"entities":{"entry-32261":{"id":"entry-32261","kind":"mob","name":"Crystal Spider","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7428480000000004,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/73cd1ddbf518085e70fe7dd3e36a1f1ce98d970e808602a7231d647a6625d533.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":0.5461,"markerRadius":0.65}}},"entry-27654":{"id":"entry-27654","kind":"boss","name":"Drakos the Interrogator","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-51336","name":"Magic Pull","spellId":51336,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-50774","name":"Thundering Stomp","spellId":50774,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":3000,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"crocolisk","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-27032-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0114,"labelHeight":7.9381,"markerRadius":4.5}}},"entry-27655":{"id":"entry-27655","kind":"boss","name":"Mage-Lord Urom","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-51602","name":"Evocation","spellId":51602,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4230,"damageMultiplier":1.35},{"id":"spell-51110","name":"Empowered Arcane Explosion","spellId":51110,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":4230,"damageMultiplier":0.82,"radius":11},{"id":"spell-51103","name":"Frostbomb","spellId":51103,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.35},{"id":"spell-51121","name":"Time Bomb","spellId":51121,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-25010-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.001,"labelHeight":3.5751,"markerRadius":0.7474}}},"entry-27447":{"id":"entry-27447","kind":"boss","name":"Varos Cloudstrider","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-51054","name":"Amplify Magic","spellId":51054,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-51002","name":"Call Azure Ring Captain","spellId":51002,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-51006","name":"Call Azure Ring Captain","spellId":51006,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-51007","name":"Call Azure Ring Captain","spellId":51007,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-27033-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.7548,"labelHeight":15.6704,"markerRadius":3.8161}}},"entry-27635":{"id":"entry-27635","kind":"mob","name":"Azure Spellbinder","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/7f809d34e8476ea8db6d31ae49248520c5a392e9f9ef4fa0440bc32340780160.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":3.4982,"markerRadius":2.4314}}},"entry-27633":{"id":"entry-27633","kind":"mob","name":"Azure Inquisitor","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-25195-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":4.7244,"markerRadius":3.1644}}},"entry-27636":{"id":"entry-27636","kind":"mob","name":"Azure Ley-Whelp","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-26088-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3096,"markerRadius":1.3792}}},"entry-27638":{"id":"entry-27638","kind":"mob","name":"Azure Ring Guardian","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-28080-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.3816,"labelHeight":11.9608,"markerRadius":4.5}}},"entry-27639":{"id":"entry-27639","kind":"mob","name":"Ring-Lord Sorceress","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-25305-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":2.6752,"markerRadius":0.65}}},"entry-27640":{"id":"entry-27640","kind":"mob","name":"Ring-Lord Conjurer","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-25302-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-27641":{"id":"entry-27641","kind":"mob","name":"Centrifuge Construct","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-50044","name":"Empowering Blows","spellId":50044,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5595,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-24943-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":8.2015,"markerRadius":2.7514}}},"entry-27656":{"id":"entry-27656","kind":"boss","name":"Ley-Guardian Eregos","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-51162","name":"Planar Shift","spellId":51162,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6311,"damageMultiplier":1.35},{"id":"spell-49838","name":"Stop Time","spellId":49838,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-50804","name":"Arcane Barrage","spellId":50804,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-51153","name":"Arcane Volley","spellId":51153,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5000,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-27034-animated.glb","rotationY":-1.5707963267948966,"groundOffset":5.5685,"labelHeight":48.531,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-100165","entityId":"entry-32261","position":[1031.8527,299.7217,1196.6327],"yaw":-0.300066,"spawnMask":3},{"id":"creature-100166","entityId":"entry-32261","position":[1074.4927,330.6787,1010.9177],"yaw":-2.3259,"spawnMask":3},{"id":"creature-100167","entityId":"entry-32261","position":[944.6007,330.6787,1244.8427],"yaw":-1.53514,"spawnMask":3},{"id":"creature-100168","entityId":"entry-32261","position":[1094.7927,299.7217,1163.2427],"yaw":-5.85018,"spawnMask":3},{"id":"creature-100169","entityId":"entry-32261","position":[989.0377,299.6977,1150.2027],"yaw":-4.07995,"spawnMask":3},{"id":"creature-100171","entityId":"entry-32261","position":[1145.3227,330.6787,1238.9827],"yaw":-5.01687,"spawnMask":3},{"id":"creature-100172","entityId":"entry-27654","position":[1038.2827,164.0747,989.0967],"yaw":-0.314159,"spawnMask":3},{"id":"creature-100220","entityId":"entry-27655","position":[930.2047,331.4287,1218.7727],"yaw":-2.21657,"spawnMask":3},{"id":"creature-100235","entityId":"entry-27447","position":[1062.8427,243.5387,1326.9027],"yaw":-3.57792,"spawnMask":3},{"id":"creature-100402","entityId":"entry-27635","position":[1029.8127,165.0937,1224.3027],"yaw":-3.93238,"spawnMask":3},{"id":"creature-100404","entityId":"entry-27635","position":[1120.3427,165.0937,1136.2027],"yaw":-4.98004,"spawnMask":3},{"id":"creature-100405","entityId":"entry-27633","position":[1060.6627,165.0937,1220.3527],"yaw":-3.20184,"spawnMask":3},{"id":"creature-100406","entityId":"entry-27633","position":[1063.0127,165.0937,1222.7827],"yaw":-4.55913,"spawnMask":3},{"id":"creature-100409","entityId":"entry-27633","position":[1125.3927,165.0937,1148.9827],"yaw":-2.17407,"spawnMask":3},{"id":"creature-100411","entityId":"entry-27633","position":[1120.3427,165.0937,1136.2027],"yaw":-4.98004,"spawnMask":3},{"id":"creature-100412","entityId":"entry-27633","position":[1102.2927,165.1777,1100.8127],"yaw":-0.855211,"spawnMask":3},{"id":"creature-100413","entityId":"entry-27633","position":[1106.4427,165.1777,1094.2927],"yaw":-0.680678,"spawnMask":3},{"id":"creature-100415","entityId":"entry-27633","position":[1029.8127,165.0937,1224.3027],"yaw":-3.93238,"spawnMask":3},{"id":"creature-100416","entityId":"entry-27635","position":[1063.0127,165.0937,1222.7827],"yaw":-4.55913,"spawnMask":3},{"id":"creature-100418","entityId":"entry-27635","position":[1060.6627,165.0937,1220.3527],"yaw":-3.20184,"spawnMask":3},{"id":"creature-100419","entityId":"entry-27635","position":[1125.3927,165.0937,1148.9827],"yaw":-2.17407,"spawnMask":3},{"id":"creature-100420","entityId":"entry-27635","position":[1100.5127,165.1777,1091.3027],"yaw":-0.628319,"spawnMask":3},{"id":"creature-100439","entityId":"entry-27636","position":[1121.4327,165.0937,1145.2027],"yaw":-1.59132,"spawnMask":3},{"id":"creature-100449","entityId":"entry-27636","position":[1117.3527,165.0937,1130.7627],"yaw":-0.555255,"spawnMask":3},{"id":"creature-100463","entityId":"entry-27636","position":[1122.4327,165.0937,1115.0527],"yaw":-2.92779,"spawnMask":3},{"id":"creature-100465","entityId":"entry-27636","position":[1128.2327,165.0937,1130.5827],"yaw":-4.05297,"spawnMask":3},{"id":"creature-100466","entityId":"entry-27636","position":[1129.3227,165.0937,1151.8627],"yaw":-1.22917,"spawnMask":3},{"id":"creature-100467","entityId":"entry-27636","position":[1096.5027,165.0937,1205.7927],"yaw":-2.33314,"spawnMask":3},{"id":"creature-100468","entityId":"entry-27636","position":[1090.1127,165.0937,1210.2127],"yaw":-4.3172,"spawnMask":3},{"id":"creature-100471","entityId":"entry-27636","position":[1114.2227,165.0937,1182.0827],"yaw":-6.27531,"spawnMask":3},{"id":"creature-100479","entityId":"entry-27636","position":[1112.5127,165.0937,1178.5127],"yaw":-3.52187,"spawnMask":3},{"id":"creature-100564","entityId":"entry-27636","position":[1111.2027,165.0937,1194.9827],"yaw":-2.69372,"spawnMask":3},{"id":"creature-100580","entityId":"entry-27636","position":[1024.3327,165.0937,1219.0627],"yaw":-5.862,"spawnMask":3},{"id":"creature-100768","entityId":"entry-27636","position":[1031.6127,165.0937,1223.4127],"yaw":-3.48468,"spawnMask":3},{"id":"creature-100838","entityId":"entry-27636","position":[1036.2727,165.0937,1219.1827],"yaw":-3.41428,"spawnMask":3},{"id":"creature-100843","entityId":"entry-27636","position":[1016.2527,165.1767,1216.6627],"yaw":-0.368577,"spawnMask":3},{"id":"creature-100845","entityId":"entry-27636","position":[1016.5827,165.0937,1227.6727],"yaw":-0.244397,"spawnMask":3},{"id":"creature-100846","entityId":"entry-27636","position":[961.5407,165.0937,1153.8727],"yaw":-4.13822,"spawnMask":3},{"id":"creature-100848","entityId":"entry-27636","position":[955.3527,165.0937,1146.7127],"yaw":-0.949516,"spawnMask":3},{"id":"creature-100851","entityId":"entry-27636","position":[970.0527,165.0937,1154.7227],"yaw":-4.34972,"spawnMask":3},{"id":"creature-100852","entityId":"entry-27636","position":[963.6627,165.0937,1168.9327],"yaw":-3.94894,"spawnMask":3},{"id":"creature-100853","entityId":"entry-27636","position":[967.0747,165.0937,1166.5627],"yaw":-3.25111,"spawnMask":3},{"id":"creature-100892","entityId":"entry-27638","position":[1150.1127,210.2807,1118.7027],"yaw":-6.10194,"spawnMask":3},{"id":"creature-100919","entityId":"entry-27638","position":[1100.6227,191.7037,1246.2727],"yaw":-5.6687,"spawnMask":3},{"id":"creature-100921","entityId":"entry-27638","position":[1210.4727,233.0207,1159.6827],"yaw":-3.03666,"spawnMask":3},{"id":"creature-100929","entityId":"entry-27638","position":[933.9097,185.7567,1083.0327],"yaw":-4.05194,"spawnMask":3},{"id":"creature-100931","entityId":"entry-27638","position":[1111.0527,275.4337,1251.6827],"yaw":-0.449876,"spawnMask":3},{"id":"creature-100932","entityId":"entry-27638","position":[1033.2927,291.6987,1309.8527],"yaw":-3.03687,"spawnMask":3},{"id":"creature-100933","entityId":"entry-27638","position":[877.0997,268.3787,1033.8727],"yaw":-2.29762,"spawnMask":3},{"id":"creature-101069","entityId":"entry-27638","position":[1227.7527,206.3607,1119.7327],"yaw":-0.097147,"spawnMask":3},{"id":"creature-101090","entityId":"entry-27638","position":[886.3477,193.2397,1151.1627],"yaw":-5.16806,"spawnMask":3},{"id":"creature-101498","entityId":"entry-27638","position":[1047.7427,267.0437,1399.1627],"yaw":-2.30095,"spawnMask":3},{"id":"creature-101729","entityId":"entry-27638","position":[965.4317,219.1427,1054.0327],"yaw":-4.47108,"spawnMask":3},{"id":"creature-101730","entityId":"entry-27638","position":[931.4277,252.5137,1126.3527],"yaw":-1.30396,"spawnMask":3},{"id":"creature-101731","entityId":"entry-27638","position":[899.8817,204.8507,1004.7547],"yaw":-0.316293,"spawnMask":3},{"id":"creature-101813","entityId":"entry-27638","position":[1194.0327,283.3187,1040.8347],"yaw":-0.065094,"spawnMask":3},{"id":"creature-101816","entityId":"entry-27638","position":[908.9837,218.3287,1233.8627],"yaw":-2.72108,"spawnMask":3},{"id":"creature-101821","entityId":"entry-27638","position":[1227.8927,194.7877,1037.4407],"yaw":-1.51844,"spawnMask":3},{"id":"creature-101822","entityId":"entry-27638","position":[1149.9827,253.4967,1314.5127],"yaw":-3.3377,"spawnMask":3},{"id":"creature-101826","entityId":"entry-27638","position":[1152.2127,268.0867,1020.5867],"yaw":-1.77143,"spawnMask":3},{"id":"creature-101827","entityId":"entry-27638","position":[891.8437,278.2147,1074.0827],"yaw":-3.75559,"spawnMask":3},{"id":"creature-101829","entityId":"entry-27638","position":[1192.6127,308.5807,1062.3127],"yaw":-2.46,"spawnMask":3},{"id":"creature-101835","entityId":"entry-27638","position":[1051.0627,360.7477,1227.3027],"yaw":-4.41868,"spawnMask":3},{"id":"creature-101844","entityId":"entry-27638","position":[867.0237,288.5337,1105.4427],"yaw":-3.75753,"spawnMask":3},{"id":"creature-101847","entityId":"entry-27638","position":[1172.6127,282.4197,1084.7327],"yaw":-3.84522,"spawnMask":3},{"id":"creature-101848","entityId":"entry-27638","position":[1134.2027,196.9387,1071.3527],"yaw":-1.4045,"spawnMask":3},{"id":"creature-101851","entityId":"entry-27638","position":[1133.1727,219.3637,1243.4227],"yaw":-2.16226,"spawnMask":3},{"id":"creature-101852","entityId":"entry-27638","position":[1109.8927,255.6337,1050.0227],"yaw":-1.48878,"spawnMask":3},{"id":"creature-101857","entityId":"entry-27638","position":[899.5577,245.5027,1189.5527],"yaw":-1.28801,"spawnMask":3},{"id":"creature-101861","entityId":"entry-27638","position":[1178.2827,257.9477,1230.9327],"yaw":-3.727,"spawnMask":3},{"id":"creature-101864","entityId":"entry-27638","position":[822.1527,260.9777,1074.5627],"yaw":-2.92664,"spawnMask":3},{"id":"creature-101865","entityId":"entry-27638","position":[1135.8627,347.8317,1082.8227],"yaw":-4.29589,"spawnMask":3},{"id":"creature-101869","entityId":"entry-27638","position":[931.6807,246.1217,1025.3857],"yaw":-3.97775,"spawnMask":3},{"id":"creature-101870","entityId":"entry-27638","position":[1153.1027,225.8447,983.5507],"yaw":-2.14561,"spawnMask":3},{"id":"creature-101873","entityId":"entry-27638","position":[1042.8527,250.5397,1237.5327],"yaw":-2.73707,"spawnMask":3},{"id":"creature-101874","entityId":"entry-27638","position":[993.4027,256.8777,1366.1827],"yaw":-0.651494,"spawnMask":3},{"id":"creature-101880","entityId":"entry-27638","position":[860.0057,236.1717,1166.8527],"yaw":-4.06142,"spawnMask":3},{"id":"creature-101881","entityId":"entry-27638","position":[1244.1927,265.9587,1064.6227],"yaw":-3.54018,"spawnMask":3},{"id":"creature-101882","entityId":"entry-27638","position":[1119.3927,274.1037,1357.4127],"yaw":-4.27136,"spawnMask":3},{"id":"creature-101885","entityId":"entry-27638","position":[974.2607,189.8547,1256.2527],"yaw":-2.38326,"spawnMask":3},{"id":"creature-101889","entityId":"entry-27638","position":[1156.6227,218.1527,1340.1227],"yaw":-0.949899,"spawnMask":3},{"id":"creature-101891","entityId":"entry-27638","position":[928.6347,331.4287,1082.6227],"yaw":-2.5434,"spawnMask":3},{"id":"creature-101892","entityId":"entry-27638","position":[999.3927,183.3167,1312.6127],"yaw":-5.09294,"spawnMask":3},{"id":"creature-101893","entityId":"entry-27638","position":[1082.7627,211.0617,1392.3727],"yaw":-3.0259,"spawnMask":3},{"id":"creature-101894","entityId":"entry-27638","position":[945.6507,260.5887,1298.2627],"yaw":-1.77385,"spawnMask":3},{"id":"creature-101895","entityId":"entry-27639","position":[982.4267,237.1827,1129.5427],"yaw":-2.77507,"spawnMask":3},{"id":"creature-101896","entityId":"entry-27639","position":[986.1817,237.1827,1103.3827],"yaw":-0.05236,"spawnMask":3},{"id":"creature-101897","entityId":"entry-27639","position":[1103.6827,237.1067,1122.6627],"yaw":-3.78736,"spawnMask":3},{"id":"creature-101898","entityId":"entry-27639","position":[1088.4527,236.5457,1102.7127],"yaw":-0.645772,"spawnMask":3},{"id":"creature-101899","entityId":"entry-27639","position":[991.0347,237.1827,1158.8527],"yaw":-5.88176,"spawnMask":3},{"id":"creature-101900","entityId":"entry-27639","position":[998.3927,237.1827,1176.4827],"yaw":-4.32842,"spawnMask":3},{"id":"creature-101902","entityId":"entry-27639","position":[1194.4827,243.5387,1058.4427],"yaw":-6.14356,"spawnMask":3},{"id":"creature-101903","entityId":"entry-27639","position":[1104.5027,237.1827,1178.9727],"yaw":-3.28122,"spawnMask":3},{"id":"creature-101904","entityId":"entry-27639","position":[1096.1527,237.1827,1153.6427],"yaw":-0.488692,"spawnMask":3},{"id":"creature-101907","entityId":"entry-27640","position":[999.7327,237.1827,1113.6127],"yaw":-5.044,"spawnMask":3},{"id":"creature-101909","entityId":"entry-27640","position":[1092.1927,237.1827,1125.0727],"yaw":-2.80998,"spawnMask":3},{"id":"creature-101910","entityId":"entry-27640","position":[973.9577,237.1827,1163.6727],"yaw":-0.994838,"spawnMask":3},{"id":"creature-101912","entityId":"entry-27640","position":[984.6907,237.1827,1183.6627],"yaw":-3.07178,"spawnMask":3},{"id":"creature-101914","entityId":"entry-27640","position":[1090.3827,237.1827,1172.2027],"yaw":-2.05949,"spawnMask":3},{"id":"creature-101915","entityId":"entry-27640","position":[1112.8327,237.1827,1156.7127],"yaw":-5.42797,"spawnMask":3},{"id":"creature-101916","entityId":"entry-27640","position":[882.9677,243.5387,1077.8127],"yaw":-1.95477,"spawnMask":3},{"id":"creature-101917","entityId":"entry-27641","position":[986.7867,236.9867,1118.2127],"yaw":-1.20428,"spawnMask":3},{"id":"creature-101918","entityId":"entry-27641","position":[1096.2827,236.9867,1112.8927],"yaw":-5.21853,"spawnMask":3},{"id":"creature-101919","entityId":"entry-27641","position":[985.7137,236.9867,1171.0127],"yaw":-2.07694,"spawnMask":3},{"id":"creature-101922","entityId":"entry-27641","position":[1195.4627,243.5387,1046.2427],"yaw":0,"spawnMask":3},{"id":"creature-101924","entityId":"entry-27641","position":[1203.3627,243.5387,1066.8327],"yaw":-4.11898,"spawnMask":3},{"id":"creature-101933","entityId":"entry-27641","position":[1183.3627,243.5387,1064.9527],"yaw":-2.16421,"spawnMask":3},{"id":"creature-101937","entityId":"entry-27641","position":[1102.2327,236.9867,1165.7027],"yaw":-4.31096,"spawnMask":3},{"id":"creature-101967","entityId":"entry-27641","position":[870.0577,243.5387,1082.4827],"yaw":-1.97222,"spawnMask":3},{"id":"creature-101974","entityId":"entry-27641","position":[885.7537,243.5387,1064.4727],"yaw":-6.19592,"spawnMask":3},{"id":"creature-102064","entityId":"entry-27641","position":[891.9157,243.5387,1086.4627],"yaw":-4.08407,"spawnMask":3},{"id":"creature-1971378","entityId":"entry-27656","position":[1078.6927,459.5207,1118.3427],"yaw":-4.18879,"spawnMask":3}],"roamingPacks":[{"id":"patrol-100400","name":"Azure Spellbinder Patrol","speed":1.15,"pathId":10041400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[969.8297,165.2317,1184.0627],[976.7647,165.2327,1196.4627],[985.8557,165.2317,1208.2027],[995.7027,165.2327,1215.6527],[1009.2327,165.2317,1221.1327],[1019.3527,165.2327,1222.7527],[1009.2327,165.2317,1221.1327],[995.7027,165.2327,1215.6527],[985.8557,165.2317,1208.2027],[976.7647,165.2327,1196.4627],[969.8297,165.2317,1184.0627],[964.3827,165.3237,1164.3427]],"members":[{"id":"member","entityId":"entry-27635","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-100414","name":"Azure Inquisitor Patrol","speed":1.15,"pathId":10041400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[969.8297,165.2317,1184.0627],[976.7647,165.2327,1196.4627],[985.8557,165.2317,1208.2027],[995.7027,165.2327,1215.6527],[1009.2327,165.2317,1221.1327],[1019.3527,165.2327,1222.7527],[1009.2327,165.2317,1221.1327],[995.7027,165.2327,1215.6527],[985.8557,165.2317,1208.2027],[976.7647,165.2327,1196.4627],[969.8297,165.2317,1184.0627],[964.3827,165.3237,1164.3427]],"members":[{"id":"member","entityId":"entry-27633","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-100172","name":"Drakos the Interrogator","position":[1038.2827,164.0747,989.0967]},{"id":"creature-100235","name":"Varos Cloudstrider","position":[1062.8427,243.5387,1326.9027]},{"id":"creature-100220","name":"Mage-Lord Urom","position":[930.2047,331.4287,1218.7727]},{"id":"creature-1971378","name":"Ley-Guardian Eregos","position":[1078.6927,459.5207,1118.3427]}],"objectiveOrder":[{"id":"creature-100172","name":"Drakos the Interrogator","position":[1038.2827,164.0747,989.0967]},{"id":"creature-100235","name":"Varos Cloudstrider","position":[1062.8427,243.5387,1326.9027]},{"id":"creature-100220","name":"Mage-Lord Urom","position":[930.2047,331.4287,1218.7727]},{"id":"creature-1971378","name":"Ley-Guardian Eregos","position":[1078.6927,459.5207,1118.3427]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":1046,"id":189985,"map":578,"orientation":-1.64061,"phaseMask":1,"position_x":1045.57,"position_y":1104.24,"position_z":361.07,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":1507,"id":189986,"map":578,"orientation":2.65289,"phaseMask":1,"position_x":945.794,"position_y":1025.96,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.970294,"rotation3":0.241927,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":1953,"id":189986,"map":578,"orientation":1.0472,"phaseMask":1,"position_x":936.102,"position_y":1063.24,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":2102,"id":189986,"map":578,"orientation":1.79769,"phaseMask":1,"position_x":933.268,"position_y":1042.21,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.782608,"rotation3":0.622514,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":2368,"id":188715,"map":578,"orientation":-0.890117,"phaseMask":1,"position_x":1048.27,"position_y":991.311,"position_z":361.07,"rotation0":0,"rotation1":0,"rotation2":-0.430511,"rotation3":0.902586,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":2568,"id":188514,"map":578,"orientation":1.10828,"phaseMask":1,"position_x":1209.71,"position_y":1334.59,"position_z":192.375,"rotation0":0,"rotation1":0,"rotation2":0.526212,"rotation3":0.850353,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":2795,"id":188514,"map":578,"orientation":-0.532325,"phaseMask":1,"position_x":1339.24,"position_y":830.317,"position_z":186.819,"rotation0":0,"rotation1":0,"rotation2":-0.263031,"rotation3":0.964787,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":2837,"id":188514,"map":578,"orientation":-2.9845,"phaseMask":1,"position_x":795.597,"position_y":994.667,"position_z":195.304,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784656,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":3586,"id":193995,"map":578,"orientation":2.65289,"phaseMask":1,"position_x":945.794,"position_y":1025.96,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.970294,"rotation3":0.241927,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":3953,"id":193995,"map":578,"orientation":1.0472,"phaseMask":1,"position_x":936.102,"position_y":1063.24,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":4314,"id":193995,"map":578,"orientation":1.79769,"phaseMask":1,"position_x":933.268,"position_y":1042.21,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.782608,"rotation3":0.622514,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":4343,"id":190172,"map":578,"orientation":-1.6057,"phaseMask":1,"position_x":1077.07,"position_y":1103.43,"position_z":495.698,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":4402,"id":190172,"map":578,"orientation":0.785397,"phaseMask":1,"position_x":1208.45,"position_y":960.853,"position_z":526.655,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":100091,"id":190402,"map":578,"orientation":1.95106,"phaseMask":1,"position_x":1158.63,"position_y":1165.1,"position_z":527.322,"rotation0":0,"rotation1":0,"rotation2":0.827999,"rotation3":0.560729,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":100092,"id":190402,"map":578,"orientation":-0.910457,"phaseMask":1,"position_x":1151.58,"position_y":1177.87,"position_z":526.812,"rotation0":0,"rotation1":0,"rotation2":-0.439668,"rotation3":0.898161,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268067,"id":191349,"map":578,"orientation":0.017452,"phaseMask":1,"position_x":1015.06,"position_y":1051.09,"position_z":605.619,"rotation0":0,"rotation1":0,"rotation2":0.00872589,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":-608400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268068,"id":193603,"map":578,"orientation":0.017452,"phaseMask":1,"position_x":1015.06,"position_y":1051.09,"position_z":605.619,"rotation0":0,"rotation1":0,"rotation2":0.00872589,"rotation3":0.999962,"spawnMask":2,"spawntimesecs":-608400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/the-oculus/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["12/12 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"culling-of-stratholme","title":"The Culling of Stratholme","mapId":595,"lfgDungeonIds":[209,210],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[77,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Culling of Stratholme","theme":"Open-world expedition","summary":"Fight through The Culling of Stratholme, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Culling of Stratholme...","unchartedAreaName":"Uncharted The Culling of Stratholme","background":"#081016","fog":{"color":"#0a141c","near":36,"far":887.6016},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/595-stratholmecot/visual.glb","checksum":"c6752e190889ae85a15c1671e328d793391c0530d668bb6e63166796b72bb06e","size":30387424,"triangleCount":2632239}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-000.glb","checksum":"5aed8060afb139ace8ddd0f0328deebfa582b61424d7b53fe197ed9f3a07f6a8","size":153476,"triangleCount":55554},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-001.glb","checksum":"c7ae560092449aacc82becf53a14091dbf3fd0c5ef67ce24a0ad5a7cdb447d11","size":159908,"triangleCount":55554},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-002.glb","checksum":"948552fb30c8eabc880cea1f1eff7cba31aef3df69e1775ef84d9e01ed646939","size":162260,"triangleCount":55554},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-003.glb","checksum":"cf9f5132a24846b2da286372c01ed557d5ae21d16a9b71b9546972c4a39e802e","size":154432,"triangleCount":55554},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-004.glb","checksum":"9e6b9ea79d5477775ab8eeb4cb16b7673d9b128c35a228db56ce57b4974ee8eb","size":155212,"triangleCount":55554},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-005.glb","checksum":"140c744923e922c4a2770649ee05a538a4bd5bc745b2155047c611d056d998a7","size":155756,"triangleCount":55554},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-006.glb","checksum":"9d75be8623f2b63a8ab2856105bd8acee6f74ba3076a6c73172558b4030d9370","size":160120,"triangleCount":55554},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-007.glb","checksum":"ee4791432ad79d05ce9e39159fe820d2a809cf676d9189e45c0528c4287e17ee","size":1229052,"triangleCount":55555},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-008.glb","checksum":"3cd7acde6dbf121f8602425be912edc63645a94fb4052fde7135beba3488de6a","size":525024,"triangleCount":73044},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-009.glb","checksum":"f27e44025370140ba97da752c2272c354b9239e4df674aa8f9381c8b65467c61","size":317284,"triangleCount":60357},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-010.glb","checksum":"a49419071329d6e8ae16fb12a20d0c715842d278293cb88a6281bf55229cd6e9","size":169112,"triangleCount":55554},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-011.glb","checksum":"ad9a45030603571d8d82047f5b2e06cee96a049ee41eadfc82ae9ab23efa6ff9","size":158144,"triangleCount":55554},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-012.glb","checksum":"650ca9b292b3ddaf4e4dd044d968418ff931acd371737045b0d7a8216fabf8b9","size":157868,"triangleCount":55554},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-013.glb","checksum":"474ae5c6fa643228d0533a6c64684fe4f3e2ca2aec3a9a7c2743884f958148de","size":168348,"triangleCount":55802},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-014.glb","checksum":"ae21bbdf082e589bb44c7e1c2acd9a85cdb7ff6997fac7921e189b4b6e0add96","size":394364,"triangleCount":68183},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-015.glb","checksum":"25ad4eadf2615263e3ffdebdce9dddcc6122ab98811b1d87fc82f12534963db2","size":214204,"triangleCount":55555},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-016.glb","checksum":"b2b7875e4e088b241655d488aa9a0c119e5f9a08ab1babcb4aacff2b95cd20be","size":171936,"triangleCount":55554},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-017.glb","checksum":"76c928b641c5fcf1fc6c67696bc2846abd8ec8f5957f75e5e42decc066c75f38","size":158912,"triangleCount":55554},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-018.glb","checksum":"8668fcc1617c8eb16e933d17e4e3657b086191a19179ca37680247613dec0b4a","size":158524,"triangleCount":55554},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-019.glb","checksum":"8c2483fb891ab87d728460acdbec3a57506163f3f0dc9c5d117b0db2ab0da6b0","size":155388,"triangleCount":55554},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-020.glb","checksum":"b457b6fcb7d4e5d90a457602be902acac2c195cf47cb6ef9767b4e045605045e","size":399232,"triangleCount":69530},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-021.glb","checksum":"a00b37db9815acff9774ad2bb9782d5f465030379750b852726f288dae510e21","size":712960,"triangleCount":91021},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-022.glb","checksum":"13a7cd059fbac458969a4b25bba9bbfbf2da87eb6c25c66df02babd6d341ed3c","size":163496,"triangleCount":55554},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-023.glb","checksum":"b07ec0b5f7215371286d0f74833e51bc19bf70494c448e8dbf206e5a8e149e90","size":155400,"triangleCount":55554},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-024.glb","checksum":"fcb8e773a8ae0fc5aa8fcc54ac7c74475dd1e5b4c9ec1634833aa2640924b87b","size":155976,"triangleCount":55554},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-025.glb","checksum":"eab65383c3f5227c47c7173333a552b552876075dc82f8d80d4bbb6edc4f3c06","size":156980,"triangleCount":55554},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-026.glb","checksum":"a6ee307cfa4a5bca8af17ab8b0d954272d9064f697efc5d34902c75980f4f468","size":369904,"triangleCount":64488},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-027.glb","checksum":"590dbe51387ce32879e32b48d3309c1e6a334c7a6ad1ee1dd2cae616bee2c823","size":241152,"triangleCount":57161},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-028.glb","checksum":"ec520dcb625524fc394a0838721323e3f4909782021190738bef640fa0f9d9cf","size":162072,"triangleCount":55554},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-029.glb","checksum":"4eb84964552ad26b3c63c9ec06978d30cb0e00e2f216109319846fecebed31aa","size":156496,"triangleCount":55554},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-030.glb","checksum":"2a5020bac3a11058582545459b2b4b5168f102ff8ab60ae6eaa340ad0aa2b0b5","size":156252,"triangleCount":55554},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-031.glb","checksum":"9649b189d4fff6e06a15869a0e87f634a8602ed1c80c9d2d9ac62a99892d0461","size":156196,"triangleCount":55554},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-032.glb","checksum":"d025d8166acd13873f5f26b17516f5401a79365f4f4242d5fa94d47986cb7d91","size":272956,"triangleCount":62956},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-033.glb","checksum":"d47ab47704a31d0041ca7d6f29003b95e6835931063c989da0390d2dc1048c0c","size":169536,"triangleCount":55554},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-034.glb","checksum":"220d4e3504c0698f8f158aafb7f7883c0ab8c6e7ae3079bd32c57713a4757351","size":158840,"triangleCount":55554},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-035.glb","checksum":"b51203bcc23018b10123fed9248f15a650b6c807244ea29ae2ea0076714003bf","size":156180,"triangleCount":55554},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-036.glb","checksum":"f66750a447083b7dee1e4af9e6fda569d7109b358a98b5ca9a0c9a8f39ddbc96","size":156228,"triangleCount":55554}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/595-stratholmecot/navigation.glb","checksum":"0cc6336d4d40f8fd047a684e6562040c604ce0ab8e9df524e702952e59b668e0","size":4762616,"triangleCount":406563}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[2003.3309,224.2875,1563.6667],"max":[3000.7967,373.8305,2796.4467]},"entrance":{"name":"The Culling of Stratholme Entrance","footPosition":[2074.8667,244.2875,1608.6667],"forward":[-0.0957323369478111,0,0.9954071125235698],"yaw":-0.09587916935429375},"areas":[{"id":"entrance","name":"The Culling of Stratholme Entrance","center":[2074.8667,244.2875,1608.6667],"radius":35},{"id":"area-meathook","name":"Meathook's Encounter","center":[2049.6539,256.0775,1911.356],"radius":42},{"id":"area-salram-the-fleshcrafter","name":"Salram the Fleshcrafter's Encounter","center":[2048.3309,256.8975,1974.0755],"radius":42},{"id":"area-chrono-lord-epoch","name":"Chrono-Lord Epoch's Encounter","center":[2049.8618,257.7175,2032.0918],"radius":42},{"id":"area-mal-ganis","name":"Mal'ganis's Encounter","center":[2050.4698,258.5375,2096.9143],"radius":42}],"entities":{"entry-27737":{"id":"entry-27737","kind":"mob","name":"Risen Zombie","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25542-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0187,"markerRadius":0.65}}},"entry-27734":{"id":"entry-27734","kind":"mob","name":"Crypt Fiend","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/ed106356c4811ff2d38eb79b7cc1d330b013d79ce241aca42ac86898efb56ea0.glb","rotationY":-1.5707963267948966,"groundOffset":0.2252,"labelHeight":5.2004,"markerRadius":2.4522}}},"entry-28249":{"id":"entry-28249","kind":"mob","name":"Devouring Ghoul","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-569-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8357,"markerRadius":0.6634}}},"entry-31126":{"id":"entry-31126","kind":"mob","name":"Agitated Stratholme Citizen","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7411,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25168-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-31127":{"id":"entry-31127","kind":"mob","name":"Agitated Stratholme Resident","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7436,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25313-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-28167":{"id":"entry-28167","kind":"mob","name":"Stratholme Citizen","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.514272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4741,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25168-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-28169":{"id":"entry-28169","kind":"mob","name":"Stratholme Resident","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.514272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4589,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25171-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-27729":{"id":"entry-27729","kind":"mob","name":"Enraging Ghoul","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/46dbc556794b321a584218463446041b44ea68c28fb0be594db6c7c669f7125f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8357,"markerRadius":0.6634}}},"entry-27745":{"id":"entry-27745","kind":"mob","name":"Lordaeron Footman","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-24768-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-27746":{"id":"entry-27746","kind":"mob","name":"Lordaeron Knight","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-26537-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.7976,"markerRadius":1.2647}}},"entry-27747":{"id":"entry-27747","kind":"mob","name":"High Elf Mage-Priest","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-24769-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.5884,"markerRadius":0.65}}},"entry-27752":{"id":"entry-27752","kind":"mob","name":"High Elf Sorceress","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-24778-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0012,"labelHeight":2.3842,"markerRadius":0.65}}},"entry-26499":{"id":"entry-26499","kind":"mob","name":"Arthas","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6545,"damageMultiplier":1.12},{"id":"spell-51908","name":"Cosmetic - Shadowstep","spellId":51908,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6545,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/f410cbf05ee179af5e73862f00ce12a14c4be9e4c9e4fdad47f26c07e398993b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.7701,"markerRadius":0.65}}},"entry-27736":{"id":"entry-27736","kind":"mob","name":"Patchwork Construct","combat":{"level":81,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25282-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":5.893,"markerRadius":2.5975}}},"entry-28201":{"id":"entry-28201","kind":"mob","name":"Bile Golem","combat":{"level":81,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25281-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":5.893,"markerRadius":2.5975}}},"entry-27731":{"id":"entry-27731","kind":"mob","name":"Acolyte","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-24766-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.7973,"markerRadius":0.65}}},"entry-26529":{"id":"entry-26529","kind":"boss","name":"Meathook","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-52666","name":"Disease Expulsion","spellId":52666,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.35},{"id":"spell-58841","name":"Frenzy","spellId":58841,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-58841","durationMs":12000,"magnitude":0.25}},{"id":"spell-52696","name":"Constricting Chains","spellId":52696,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-26579-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0105,"labelHeight":9.8217,"markerRadius":4.3291}}},"entry-26530":{"id":"entry-26530","kind":"boss","name":"Salramm the Fleshcrafter","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52480","name":"Explode Ghoul","spellId":52480,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-57725","name":"Shadow Bolt","spellId":57725,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.35},{"id":"spell-52708","name":"Steal Flesh","spellId":52708,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6123,"damageMultiplier":1.35},{"id":"spell-58845","name":"Curse of Twisted Flesh","spellId":58845,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6123,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-26581-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":5.2627,"markerRadius":1.0788}}},"entry-26532":{"id":"entry-26532","kind":"boss","name":"Chrono-Lord Epoch","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52737","name":"Time Step","spellId":52737,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7438,"damageMultiplier":1.35},{"id":"spell-52772","name":"Curse of Exertion","spellId":52772,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":9000,"damageMultiplier":1.35},{"id":"spell-52771","name":"Wounding Strike","spellId":52771,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-58848","name":"Time Stop","spellId":58848,"delivery":"projectile","target":"random-party","school":"arcane","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":2500}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-26580-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.4038,"labelHeight":11.7179,"markerRadius":2.0782}}},"entry-26533":{"id":"entry-26533","kind":"boss","name":"Mal'Ganis","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.1745920000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52720","name":"Carrion Swarm","spellId":52720,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6000,"damageMultiplier":1.35},{"id":"spell-52722","name":"Mind Blast","spellId":52722,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6000,"damageMultiplier":1.35},{"id":"spell-52721","name":"Sleep","spellId":52721,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":4500}},{"id":"spell-52723","name":"Vampiric Touch","spellId":52723,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-26582-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.6671,"labelHeight":14.0101,"markerRadius":4.3264}}}},"staticSpawns":[{"id":"creature-1970782","entityId":"entry-27737","position":[2668.8967,335.6725,2738.4667],"yaw":-3.895,"spawnMask":3},{"id":"creature-1970783","entityId":"entry-27737","position":[2674.2367,334.8285,2743.7067],"yaw":-1.41707,"spawnMask":3},{"id":"creature-1970784","entityId":"entry-27737","position":[2664.8167,335.2135,2743.3367],"yaw":-1.9158,"spawnMask":3},{"id":"creature-1970785","entityId":"entry-27737","position":[2665.3967,334.1765,2751.4467],"yaw":-5.64251,"spawnMask":3},{"id":"creature-1970786","entityId":"entry-27734","position":[2754.8867,333.2025,2732.6067],"yaw":-5.00007,"spawnMask":3},{"id":"creature-1970787","entityId":"entry-28249","position":[2753.3967,333.0955,2728.5767],"yaw":-5.07468,"spawnMask":3},{"id":"creature-1970788","entityId":"entry-31126","position":[2858.5367,340.2275,2324.3067],"yaw":-5.95157,"spawnMask":3},{"id":"creature-1970789","entityId":"entry-31126","position":[2663.5467,346.1715,2441.4967],"yaw":-5.96903,"spawnMask":3},{"id":"creature-1970790","entityId":"entry-31126","position":[2667.9767,346.1065,2441.9167],"yaw":-5.49779,"spawnMask":3},{"id":"creature-1970791","entityId":"entry-31126","position":[2666.7767,345.7975,2446.5967],"yaw":-4.45059,"spawnMask":3},{"id":"creature-1970792","entityId":"entry-31126","position":[2715.3167,339.3995,2541.6467],"yaw":-0.279253,"spawnMask":3},{"id":"creature-1970793","entityId":"entry-31126","position":[2711.0867,338.6575,2537.1267],"yaw":-0.541052,"spawnMask":3},{"id":"creature-1970794","entityId":"entry-31126","position":[2717.8067,338.9085,2538.3067],"yaw":-0.10472,"spawnMask":3},{"id":"creature-1970795","entityId":"entry-31127","position":[2665.4367,346.1175,2443.0667],"yaw":-5.49779,"spawnMask":3},{"id":"creature-1970796","entityId":"entry-31127","position":[2662.4067,346.1715,2439.6067],"yaw":-6.26573,"spawnMask":3},{"id":"creature-1970797","entityId":"entry-31127","position":[2666.6867,346.1715,2438.6967],"yaw":-5.75959,"spawnMask":3},{"id":"creature-1970798","entityId":"entry-31127","position":[2717.6267,339.7595,2542.5367],"yaw":-6.24828,"spawnMask":3},{"id":"creature-1970799","entityId":"entry-31127","position":[2712.1267,339.1425,2540.6267],"yaw":-0.523599,"spawnMask":3},{"id":"creature-1970800","entityId":"entry-31127","position":[2709.5967,339.7845,2543.3667],"yaw":-0.942478,"spawnMask":3},{"id":"creature-1970814","entityId":"entry-28167","position":[2826.6067,339.9975,2367.6367],"yaw":-5.32325,"spawnMask":3},{"id":"creature-1970815","entityId":"entry-28167","position":[2778.3967,342.5355,2334.8867],"yaw":-0.610865,"spawnMask":3},{"id":"creature-1970816","entityId":"entry-28167","position":[2757.0267,345.1075,2344.4367],"yaw":-2.18166,"spawnMask":3},{"id":"creature-1970817","entityId":"entry-28167","position":[2708.8267,338.5255,2518.0067],"yaw":-4.11898,"spawnMask":3},{"id":"creature-1970818","entityId":"entry-28167","position":[2884.4567,339.9795,2343.5067],"yaw":-3.89208,"spawnMask":3},{"id":"creature-1970819","entityId":"entry-28167","position":[2856.9967,338.5115,2342.1367],"yaw":-2.58309,"spawnMask":3},{"id":"creature-1970821","entityId":"entry-28167","position":[2814.4767,344.4415,2301.9567],"yaw":-4.81711,"spawnMask":3},{"id":"creature-1970822","entityId":"entry-28167","position":[2791.8167,345.9345,2297.2667],"yaw":-3.80482,"spawnMask":3},{"id":"creature-1970823","entityId":"entry-28167","position":[2788.8067,347.6475,2283.1367],"yaw":-1.309,"spawnMask":3},{"id":"creature-1970824","entityId":"entry-28167","position":[2792.2467,346.5935,2284.9467],"yaw":-4.01426,"spawnMask":3},{"id":"creature-1970825","entityId":"entry-28167","position":[2668.6767,346.1715,2429.6367],"yaw":-0.523599,"spawnMask":3},{"id":"creature-1970826","entityId":"entry-28167","position":[2702.4767,339.8175,2543.9367],"yaw":-2.9147,"spawnMask":3},{"id":"creature-1970827","entityId":"entry-28167","position":[2808.7967,342.3485,2329.6967],"yaw":-4.38078,"spawnMask":3},{"id":"creature-1970828","entityId":"entry-28167","position":[2823.9867,340.8045,2368.9467],"yaw":-4.2586,"spawnMask":3},{"id":"creature-1970829","entityId":"entry-27737","position":[2655.9867,335.3565,2742.7767],"yaw":-1.63305,"spawnMask":3},{"id":"creature-1970830","entityId":"entry-28167","position":[2857.6367,339.1445,2298.2167],"yaw":-4.15388,"spawnMask":3},{"id":"creature-1970831","entityId":"entry-28167","position":[2722.9167,338.8085,2537.2267],"yaw":-4.04916,"spawnMask":3},{"id":"creature-1970832","entityId":"entry-28167","position":[2884.9167,340.7695,2281.9567],"yaw":-5.44543,"spawnMask":3},{"id":"creature-1970833","entityId":"entry-28167","position":[2758.8667,345.0685,2342.1067],"yaw":-0.0174533,"spawnMask":3},{"id":"creature-1970834","entityId":"entry-28167","position":[2678.9667,346.1415,2409.1767],"yaw":-1.79769,"spawnMask":3},{"id":"creature-1970835","entityId":"entry-28167","position":[2681.8767,345.8815,2406.4767],"yaw":-6.12611,"spawnMask":3},{"id":"creature-1970836","entityId":"entry-28167","position":[2701.8567,346.4505,2446.6267],"yaw":-3.28122,"spawnMask":3},{"id":"creature-1970837","entityId":"entry-28167","position":[2856.2467,339.5005,2295.3467],"yaw":-6.03884,"spawnMask":3},{"id":"creature-1970838","entityId":"entry-28167","position":[2861.5067,338.2315,2384.8867],"yaw":-3.59538,"spawnMask":3},{"id":"creature-1970839","entityId":"entry-28167","position":[2834.6467,338.1225,2389.5267],"yaw":-1.8326,"spawnMask":3},{"id":"creature-1970841","entityId":"entry-28169","position":[2720.3867,344.0915,2401.6267],"yaw":-3.47321,"spawnMask":3},{"id":"creature-1970842","entityId":"entry-28169","position":[2703.4267,346.4525,2444.1467],"yaw":-5.13127,"spawnMask":3},{"id":"creature-1970843","entityId":"entry-28169","position":[2705.5567,338.4765,2516.0467],"yaw":-0.506145,"spawnMask":3},{"id":"creature-1970844","entityId":"entry-28169","position":[2856.4667,340.3505,2320.1867],"yaw":-1.79769,"spawnMask":3},{"id":"creature-1970845","entityId":"entry-28169","position":[2811.8367,344.5805,2286.9167],"yaw":-0.610865,"spawnMask":3},{"id":"creature-1970846","entityId":"entry-28169","position":[2799.7767,344.8585,2289.1667],"yaw":-6.03884,"spawnMask":3},{"id":"creature-1970847","entityId":"entry-28169","position":[2814.0367,344.3425,2289.0767],"yaw":-4.11898,"spawnMask":3},{"id":"creature-1970848","entityId":"entry-28169","position":[2792.1367,345.0935,2301.1867],"yaw":-5.48033,"spawnMask":3},{"id":"creature-1970849","entityId":"entry-27729","position":[2670.5067,334.0895,2751.3067],"yaw":-1.60792,"spawnMask":3},{"id":"creature-1970850","entityId":"entry-28169","position":[2799.0567,344.5835,2293.2867],"yaw":-3.08923,"spawnMask":3},{"id":"creature-1970851","entityId":"entry-28169","position":[2872.2467,338.8305,2357.0967],"yaw":-3.66519,"spawnMask":3},{"id":"creature-1970852","entityId":"entry-28169","position":[2887.2467,340.3505,2310.0167],"yaw":-5.13127,"spawnMask":3},{"id":"creature-1970853","entityId":"entry-28169","position":[2678.2367,344.4495,2488.1067],"yaw":-3.00197,"spawnMask":3},{"id":"creature-1970854","entityId":"entry-28169","position":[2796.7267,341.3665,2355.6567],"yaw":-2.77507,"spawnMask":3},{"id":"creature-1970855","entityId":"entry-28169","position":[2677.7367,344.8825,2485.4367],"yaw":-1.20428,"spawnMask":3},{"id":"creature-1970856","entityId":"entry-28169","position":[2886.4567,340.5405,2314.0667],"yaw":-2.41998,"spawnMask":3},{"id":"creature-1970858","entityId":"entry-28169","position":[2812.5367,344.4305,2303.3167],"yaw":-2.49582,"spawnMask":3},{"id":"creature-1970859","entityId":"entry-28169","position":[2872.0567,338.8625,2354.2567],"yaw":-5.48033,"spawnMask":3},{"id":"creature-1970860","entityId":"entry-28169","position":[2674.9267,345.2465,2465.1567],"yaw":-1.97222,"spawnMask":3},{"id":"creature-1970861","entityId":"entry-28169","position":[2661.1767,346.1715,2442.5267],"yaw":-1.74533,"spawnMask":3},{"id":"creature-1970862","entityId":"entry-28169","position":[2678.0267,345.1745,2466.8367],"yaw":-3.47321,"spawnMask":3},{"id":"creature-1970863","entityId":"entry-28169","position":[2854.4967,339.4135,2298.1267],"yaw":-2.58309,"spawnMask":3},{"id":"creature-1970881","entityId":"entry-27737","position":[2798.4767,340.3415,2507.0667],"yaw":-2.57143,"spawnMask":3},{"id":"creature-1970882","entityId":"entry-27737","position":[2776.4567,340.6705,2513.5767],"yaw":-5.1412,"spawnMask":3},{"id":"creature-1970883","entityId":"entry-27737","position":[2850.8667,331.9385,2454.4467],"yaw":-2.77098,"spawnMask":3},{"id":"creature-1970884","entityId":"entry-27737","position":[2846.8667,332.1455,2470.0967],"yaw":-0.150979,"spawnMask":3},{"id":"creature-1970885","entityId":"entry-27737","position":[2802.4767,339.2665,2497.0967],"yaw":-2.37491,"spawnMask":3},{"id":"creature-1970886","entityId":"entry-27737","position":[2844.4667,333.0515,2482.5967],"yaw":-1.88482,"spawnMask":3},{"id":"creature-1970887","entityId":"entry-27737","position":[2888.7667,336.2795,2487.5267],"yaw":-3.28122,"spawnMask":3},{"id":"creature-1970888","entityId":"entry-27737","position":[2659.0167,334.6905,2748.3067],"yaw":-3.0507,"spawnMask":3},{"id":"creature-1970889","entityId":"entry-27737","position":[2871.3767,334.6925,2483.9867],"yaw":-4.46804,"spawnMask":3},{"id":"creature-1970890","entityId":"entry-27737","position":[2814.8367,337.6815,2498.7367],"yaw":-0.726647,"spawnMask":3},{"id":"creature-1970891","entityId":"entry-27737","position":[2855.2867,332.4205,2477.7767],"yaw":-5.79717,"spawnMask":3},{"id":"creature-1970892","entityId":"entry-27737","position":[2834.4067,333.7575,2469.1067],"yaw":-4.00079,"spawnMask":3},{"id":"creature-1970893","entityId":"entry-27737","position":[2824.4667,335.2015,2487.2367],"yaw":-0.471632,"spawnMask":3},{"id":"creature-1970899","entityId":"entry-27745","position":[2811.3367,352.3105,2056.3967],"yaw":-4.62512,"spawnMask":3},{"id":"creature-1970900","entityId":"entry-27745","position":[2794.4667,351.5695,2068.4267],"yaw":-1.41372,"spawnMask":3},{"id":"creature-1970901","entityId":"entry-27745","position":[2811.5667,351.8835,2063.5267],"yaw":-4.55531,"spawnMask":3},{"id":"creature-1970902","entityId":"entry-27745","position":[2790.2167,351.9655,2048.6467],"yaw":-1.67552,"spawnMask":3},{"id":"creature-1970903","entityId":"entry-27745","position":[2790.1467,352.0805,2039.9567],"yaw":-1.50098,"spawnMask":3},{"id":"creature-1970904","entityId":"entry-27745","position":[2790.1167,352.2025,2031.3467],"yaw":-1.48353,"spawnMask":3},{"id":"creature-1970905","entityId":"entry-27745","position":[2810.9367,352.7315,2049.5867],"yaw":-4.7822,"spawnMask":3},{"id":"creature-1970906","entityId":"entry-27745","position":[2811.0867,350.9335,2219.6967],"yaw":-4.64258,"spawnMask":3},{"id":"creature-1970907","entityId":"entry-27745","position":[2799.8567,350.9185,2224.2767],"yaw":-1.51844,"spawnMask":3},{"id":"creature-1970908","entityId":"entry-27745","position":[2799.6067,351.1515,2219.5367],"yaw":-1.62316,"spawnMask":3},{"id":"creature-1970909","entityId":"entry-27745","position":[2811.2767,350.7295,2224.4267],"yaw":-4.7822,"spawnMask":3},{"id":"creature-1970910","entityId":"entry-27745","position":[2809.7467,352.5995,2031.0167],"yaw":-4.79966,"spawnMask":3},{"id":"creature-1970911","entityId":"entry-27745","position":[2794.7367,351.6235,2074.2267],"yaw":-1.5708,"spawnMask":3},{"id":"creature-1970912","entityId":"entry-27745","position":[2794.6767,351.4065,2080.2867],"yaw":-1.78024,"spawnMask":3},{"id":"creature-1970913","entityId":"entry-27745","position":[2810.1667,352.8365,2036.5767],"yaw":-4.7473,"spawnMask":3},{"id":"creature-1970914","entityId":"entry-27745","position":[2810.5067,352.8945,2042.7667],"yaw":-4.62512,"spawnMask":3},{"id":"creature-1970915","entityId":"entry-27745","position":[2790.1667,352.4125,2023.1467],"yaw":-1.50098,"spawnMask":3},{"id":"creature-1970916","entityId":"entry-27746","position":[2784.9967,353.0975,2031.5967],"yaw":-1.55334,"spawnMask":3},{"id":"creature-1970917","entityId":"entry-27746","position":[2785.0567,353.3035,2027.5567],"yaw":-1.44862,"spawnMask":3},{"id":"creature-1970918","entityId":"entry-27746","position":[2816.5167,353.5675,2038.5467],"yaw":-4.66003,"spawnMask":3},{"id":"creature-1970919","entityId":"entry-27746","position":[2784.8467,352.8745,2035.5767],"yaw":-1.53589,"spawnMask":3},{"id":"creature-1970920","entityId":"entry-27746","position":[2784.7167,352.6055,2039.7967],"yaw":-1.46608,"spawnMask":3},{"id":"creature-1970921","entityId":"entry-27746","position":[2816.2367,353.8305,2044.4067],"yaw":-4.66003,"spawnMask":3},{"id":"creature-1970922","entityId":"entry-27747","position":[2786.5167,352.0175,2055.6667],"yaw":-1.79769,"spawnMask":3},{"id":"creature-1970923","entityId":"entry-27747","position":[2786.3067,352.1585,2050.9267],"yaw":-1.55334,"spawnMask":3},{"id":"creature-1970924","entityId":"entry-27747","position":[2810.9767,351.0965,2215.4767],"yaw":-4.72984,"spawnMask":3},{"id":"creature-1970925","entityId":"entry-27747","position":[2799.7567,351.2635,2215.1567],"yaw":-1.48353,"spawnMask":3},{"id":"creature-1970926","entityId":"entry-27747","position":[2786.2167,352.2525,2046.3267],"yaw":-1.53589,"spawnMask":3},{"id":"creature-1970928","entityId":"entry-27752","position":[2814.8267,353.3945,2051.2567],"yaw":-4.72984,"spawnMask":3},{"id":"creature-1970929","entityId":"entry-27752","position":[2815.0167,352.8625,2059.2867],"yaw":-4.55531,"spawnMask":3},{"id":"creature-1970930","entityId":"entry-27752","position":[2814.9667,353.1635,2055.3367],"yaw":-4.62512,"spawnMask":3},{"id":"creature-1970935","entityId":"entry-26499","position":[2805.0667,350.5325,2098.4367],"yaw":-6.25562,"spawnMask":3},{"id":"creature-1970940","entityId":"entry-27737","position":[2652.5267,334.9725,2747.4567],"yaw":-4.59008,"spawnMask":3},{"id":"creature-1970941","entityId":"entry-27736","position":[2768.8167,333.6995,2720.6767],"yaw":-1.98415,"spawnMask":3},{"id":"creature-1970942","entityId":"entry-27729","position":[2780.8267,334.0135,2721.3967],"yaw":-2.69493,"spawnMask":3},{"id":"creature-1970943","entityId":"entry-27729","position":[2794.1267,335.9475,2697.1767],"yaw":-5.88365,"spawnMask":3},{"id":"creature-1970944","entityId":"entry-27729","position":[2744.3667,333.0945,2734.2267],"yaw":-4.95689,"spawnMask":3},{"id":"creature-1970945","entityId":"entry-27737","position":[2686.7467,334.9835,2739.6267],"yaw":-4.9883,"spawnMask":3},{"id":"creature-1970946","entityId":"entry-27737","position":[2688.5267,334.2475,2744.9067],"yaw":-0.531168,"spawnMask":3},{"id":"creature-1970947","entityId":"entry-27737","position":[2695.8667,333.4085,2750.3567],"yaw":-1.3794,"spawnMask":3},{"id":"creature-1970948","entityId":"entry-27737","position":[2696.9667,334.0865,2741.5067],"yaw":-3.24865,"spawnMask":3},{"id":"creature-1970949","entityId":"entry-27737","position":[2703.8167,334.2255,2737.5567],"yaw":-2.208,"spawnMask":3},{"id":"creature-1970950","entityId":"entry-27737","position":[2702.9367,333.6525,2743.4867],"yaw":-6.17425,"spawnMask":3},{"id":"creature-1970951","entityId":"entry-27737","position":[2710.5567,333.3115,2745.8367],"yaw":-1.29693,"spawnMask":3},{"id":"creature-1970952","entityId":"entry-27737","position":[2712.5567,333.8425,2738.3267],"yaw":-2.89129,"spawnMask":3},{"id":"creature-1970953","entityId":"entry-27737","position":[2718.6667,333.3945,2741.1667],"yaw":-0.00494862,"spawnMask":3},{"id":"creature-1970954","entityId":"entry-27737","position":[2721.9567,334.4155,2733.8967],"yaw":-2.09018,"spawnMask":3},{"id":"creature-1970955","entityId":"entry-27737","position":[2725.9567,333.1715,2738.9767],"yaw":-0.0991955,"spawnMask":3},{"id":"creature-1970956","entityId":"entry-27737","position":[2729.7767,332.8865,2742.9167],"yaw":-0.613631,"spawnMask":3},{"id":"creature-1970957","entityId":"entry-27737","position":[2729.6967,334.0795,2732.7767],"yaw":-2.29438,"spawnMask":3},{"id":"creature-1970958","entityId":"entry-27737","position":[2738.3267,332.9585,2736.8667],"yaw":-1.26551,"spawnMask":3},{"id":"creature-1970959","entityId":"entry-27737","position":[2744.9967,333.9335,2726.7867],"yaw":-2.17265,"spawnMask":3},{"id":"creature-1970960","entityId":"entry-27737","position":[2746.9067,333.1185,2732.4867],"yaw":-0.0991967,"spawnMask":3},{"id":"creature-1970961","entityId":"entry-27737","position":[2757.6767,333.1885,2726.8467],"yaw":-2.23941,"spawnMask":3},{"id":"creature-1970962","entityId":"entry-27737","position":[2753.0867,334.1775,2720.9567],"yaw":-3.24864,"spawnMask":3},{"id":"creature-1970963","entityId":"entry-27737","position":[2759.1667,334.0935,2718.7667],"yaw":-1.8899,"spawnMask":3},{"id":"creature-1970964","entityId":"entry-27737","position":[2758.4267,333.6865,2722.3067],"yaw":-5.93078,"spawnMask":3},{"id":"creature-1970965","entityId":"entry-27737","position":[2766.2567,333.0275,2728.1467],"yaw":-1.32442,"spawnMask":3},{"id":"creature-1970966","entityId":"entry-27737","position":[2768.9867,334.2415,2715.8267],"yaw":-2.89522,"spawnMask":3},{"id":"creature-1970967","entityId":"entry-27737","position":[2772.7967,333.8625,2723.3167],"yaw":-0.193446,"spawnMask":3},{"id":"creature-1970968","entityId":"entry-27737","position":[2776.4567,333.9785,2716.4867],"yaw":-2.4279,"spawnMask":3},{"id":"creature-1970969","entityId":"entry-27737","position":[2778.2467,335.5875,2709.4967],"yaw":-2.58106,"spawnMask":3},{"id":"creature-1970970","entityId":"entry-27737","position":[2790.4267,335.7535,2703.6567],"yaw":-2.43968,"spawnMask":3},{"id":"creature-1970971","entityId":"entry-27737","position":[2787.3167,334.5665,2711.4067],"yaw":-5.58128,"spawnMask":3},{"id":"creature-1970972","entityId":"entry-27737","position":[2787.7867,334.3705,2717.4567],"yaw":-0.0253715,"spawnMask":3},{"id":"creature-1970973","entityId":"entry-27737","position":[2782.0767,334.1785,2713.6667],"yaw":-4.33721,"spawnMask":3},{"id":"creature-1970974","entityId":"entry-27737","position":[2794.2967,335.1685,2710.8367],"yaw":-2.31481,"spawnMask":3},{"id":"creature-1970975","entityId":"entry-27737","position":[2794.6367,335.5925,2704.7467],"yaw":-2.22056,"spawnMask":3},{"id":"creature-1970976","entityId":"entry-27737","position":[2799.6167,335.9655,2708.4367],"yaw":-0.716519,"spawnMask":3},{"id":"creature-1970977","entityId":"entry-27737","position":[2797.2867,335.4495,2714.2167],"yaw":-5.29146,"spawnMask":3},{"id":"creature-1970978","entityId":"entry-27737","position":[2806.0867,337.0265,2707.3367],"yaw":-2.47581,"spawnMask":3},{"id":"creature-1970979","entityId":"entry-27737","position":[2811.1667,338.0765,2699.4567],"yaw":-2.93134,"spawnMask":3},{"id":"creature-1970980","entityId":"entry-27737","position":[2808.3167,338.0895,2692.7667],"yaw":-3.99556,"spawnMask":3},{"id":"creature-1970981","entityId":"entry-27737","position":[2804.1867,337.1745,2697.4067],"yaw":-5.51923,"spawnMask":3},{"id":"creature-1970982","entityId":"entry-27737","position":[2802.1167,337.7045,2690.8367],"yaw":-3.33975,"spawnMask":3},{"id":"creature-1970983","entityId":"entry-27737","position":[2796.1067,336.2735,2692.7967],"yaw":-5.03228,"spawnMask":3},{"id":"creature-1970984","entityId":"entry-27737","position":[2799.0067,336.4355,2698.6167],"yaw":-0.123542,"spawnMask":3},{"id":"creature-1970985","entityId":"entry-27737","position":[2801.7667,336.5235,2702.5867],"yaw":-0.606562,"spawnMask":3},{"id":"creature-1970986","entityId":"entry-27737","position":[2807.2167,337.4025,2703.1667],"yaw":-1.58046,"spawnMask":3},{"id":"creature-1970987","entityId":"entry-27737","position":[2812.1267,338.4215,2704.1267],"yaw":-1.54276,"spawnMask":3},{"id":"creature-1970988","entityId":"entry-27729","position":[2885.4567,338.3055,2673.0367],"yaw":-4.76446,"spawnMask":3},{"id":"creature-1970989","entityId":"entry-28201","position":[2883.0267,338.4505,2670.9067],"yaw":-2.02342,"spawnMask":3},{"id":"creature-1970990","entityId":"entry-27734","position":[2917.0367,337.9175,2652.4767],"yaw":-5.06684,"spawnMask":3},{"id":"creature-1970991","entityId":"entry-28249","position":[2915.5267,337.6935,2649.6067],"yaw":-5.04721,"spawnMask":3},{"id":"creature-1970992","entityId":"entry-27729","position":[2904.9767,337.2965,2656.4067],"yaw":-5.10611,"spawnMask":3},{"id":"creature-1970993","entityId":"entry-27731","position":[2936.5667,338.2115,2589.1067],"yaw":-0.169881,"spawnMask":3},{"id":"creature-1970994","entityId":"entry-27731","position":[2933.9967,338.0795,2589.6367],"yaw":-0.209151,"spawnMask":3},{"id":"creature-1970995","entityId":"entry-27731","position":[2938.9867,338.4265,2588.5767],"yaw":-0.205226,"spawnMask":3},{"id":"creature-1970996","entityId":"entry-27729","position":[2944.8867,338.5225,2628.4367],"yaw":-5.37314,"spawnMask":3},{"id":"creature-1970997","entityId":"entry-27737","position":[2877.7767,338.6955,2665.8967],"yaw":-5.75014,"spawnMask":3},{"id":"creature-1970998","entityId":"entry-27737","position":[2884.4067,337.6725,2653.7167],"yaw":-3.35074,"spawnMask":3},{"id":"creature-1970999","entityId":"entry-27737","position":[2885.1867,337.3515,2660.1267],"yaw":-0.110976,"spawnMask":3},{"id":"creature-1971000","entityId":"entry-27737","position":[2883.5567,338.0305,2666.1967],"yaw":-5.76584,"spawnMask":3},{"id":"creature-1971001","entityId":"entry-27737","position":[2890.0767,338.1215,2669.7067],"yaw":-0.939572,"spawnMask":3},{"id":"creature-1971002","entityId":"entry-27737","position":[2898.1767,337.8405,2670.7367],"yaw":-1.50506,"spawnMask":3},{"id":"creature-1971003","entityId":"entry-27737","position":[2895.9167,337.8305,2664.8367],"yaw":-3.51175,"spawnMask":3},{"id":"creature-1971004","entityId":"entry-27737","position":[2895.2967,337.1275,2657.4567],"yaw":-2.59284,"spawnMask":3},{"id":"creature-1971005","entityId":"entry-27737","position":[2901.8367,336.8185,2653.9467],"yaw":-2.03128,"spawnMask":3},{"id":"creature-1971006","entityId":"entry-27737","position":[2905.8967,337.1175,2647.0567],"yaw":-2.69494,"spawnMask":3},{"id":"creature-1971007","entityId":"entry-27737","position":[2908.3367,337.1515,2653.8567],"yaw":-0.31518,"spawnMask":3},{"id":"creature-1971008","entityId":"entry-27737","position":[2907.5767,337.6635,2660.0167],"yaw":-5.91507,"spawnMask":3},{"id":"creature-1971009","entityId":"entry-27737","position":[2906.1567,338.1925,2667.5467],"yaw":-0.0088737,"spawnMask":3},{"id":"creature-1971010","entityId":"entry-27737","position":[2907.1467,338.7995,2673.9267],"yaw":-0.48404,"spawnMask":3},{"id":"creature-1971011","entityId":"entry-27737","position":[2910.4767,338.5275,2666.6967],"yaw":-2.80096,"spawnMask":3},{"id":"creature-1971012","entityId":"entry-27737","position":[2915.3467,338.4275,2664.1867],"yaw":-1.26551,"spawnMask":3},{"id":"creature-1971013","entityId":"entry-27737","position":[2922.6667,339.1075,2663.8567],"yaw":-2.0784,"spawnMask":3},{"id":"creature-1971014","entityId":"entry-27737","position":[2917.6967,338.0225,2657.8167],"yaw":-3.86125,"spawnMask":3},{"id":"creature-1971015","entityId":"entry-27737","position":[2914.3767,337.6685,2651.5767],"yaw":-3.33896,"spawnMask":3},{"id":"creature-1971016","entityId":"entry-27737","position":[2911.0467,337.6815,2645.9567],"yaw":-3.72774,"spawnMask":3},{"id":"creature-1971017","entityId":"entry-27737","position":[2923.5867,338.3765,2649.4167],"yaw":-1.74067,"spawnMask":3},{"id":"creature-1971018","entityId":"entry-27737","position":[2921.3367,338.0335,2638.9567],"yaw":-3.62563,"spawnMask":3},{"id":"creature-1971019","entityId":"entry-27737","position":[2924.7967,337.9975,2636.3267],"yaw":-1.92917,"spawnMask":3},{"id":"creature-1971020","entityId":"entry-27737","position":[2928.2467,338.2645,2643.3167],"yaw":-6.06821,"spawnMask":3},{"id":"creature-1971021","entityId":"entry-27737","position":[2935.1467,338.8505,2644.7067],"yaw":-1.35975,"spawnMask":3},{"id":"creature-1971022","entityId":"entry-27737","position":[2931.6867,338.0795,2638.1167],"yaw":-3.33895,"spawnMask":3},{"id":"creature-1971023","entityId":"entry-27737","position":[2933.1867,337.2855,2630.7167],"yaw":-2.73812,"spawnMask":3},{"id":"creature-1971024","entityId":"entry-27737","position":[2939.3067,338.0045,2630.0167],"yaw":-0.95527,"spawnMask":3},{"id":"creature-1971025","entityId":"entry-27737","position":[2941.3967,338.5475,2637.9367],"yaw":-0.173799,"spawnMask":3},{"id":"creature-1971026","entityId":"entry-27737","position":[2948.5967,338.7915,2639.6967],"yaw":-1.59537,"spawnMask":3},{"id":"creature-1971027","entityId":"entry-27737","position":[2955.7967,339.2605,2636.4067],"yaw":-1.62286,"spawnMask":3},{"id":"creature-1971028","entityId":"entry-27737","position":[2951.9767,339.3365,2630.0267],"yaw":-3.66882,"spawnMask":3},{"id":"creature-1971029","entityId":"entry-27737","position":[2945.6867,338.5355,2622.3967],"yaw":-3.9123,"spawnMask":3},{"id":"creature-1971030","entityId":"entry-27737","position":[2938.9867,337.8565,2618.4367],"yaw":-4.47778,"spawnMask":3},{"id":"creature-1971031","entityId":"entry-27737","position":[2936.1167,337.6215,2613.6567],"yaw":-3.67667,"spawnMask":3},{"id":"creature-1971032","entityId":"entry-27737","position":[2942.6367,338.4155,2614.2367],"yaw":-1.31655,"spawnMask":3},{"id":"creature-1971033","entityId":"entry-27737","position":[2951.1967,338.9775,2618.8567],"yaw":-0.857092,"spawnMask":3},{"id":"creature-1971034","entityId":"entry-27737","position":[2948.1467,338.8605,2613.0067],"yaw":-3.64918,"spawnMask":3},{"id":"creature-1971035","entityId":"entry-27737","position":[2943.2867,338.7155,2605.8267],"yaw":-3.90836,"spawnMask":3},{"id":"creature-1971036","entityId":"entry-27737","position":[2934.4167,338.0795,2599.1267],"yaw":-4.00261,"spawnMask":3},{"id":"creature-1971037","entityId":"entry-27737","position":[2936.5667,338.1885,2606.0267],"yaw":-0.342657,"spawnMask":3},{"id":"encounter-293","entityId":"entry-26529","position":[2049.6539,256.0775,1911.356],"yaw":0,"spawnMask":1},{"id":"encounter-294","entityId":"entry-26530","position":[2048.3309,256.8975,1974.0755],"yaw":0,"spawnMask":1},{"id":"encounter-295","entityId":"entry-26532","position":[2049.8618,257.7175,2032.0918],"yaw":0,"spawnMask":1},{"id":"encounter-296","entityId":"entry-26533","position":[2050.4698,258.5375,2096.9143],"yaw":0,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"encounter-293","name":"Meathook","position":[2049.6539,256.0775,1911.356]},{"id":"encounter-294","name":"Salram the Fleshcrafter","position":[2048.3309,256.8975,1974.0755]},{"id":"encounter-295","name":"Chrono-Lord Epoch","position":[2049.8618,257.7175,2032.0918]},{"id":"encounter-296","name":"Mal'ganis","position":[2050.4698,258.5375,2096.9143]}],"objectiveOrder":[{"id":"encounter-293","name":"Meathook","position":[2049.6539,256.0775,1911.356]},{"id":"encounter-294","name":"Salram the Fleshcrafter","position":[2048.3309,256.8975,1974.0755]},{"id":"encounter-295","name":"Chrono-Lord Epoch","position":[2049.8618,257.7175,2032.0918]},{"id":"encounter-296","name":"Mal'ganis","position":[2050.4698,258.5375,2096.9143]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":1836,"id":191103,"map":595,"orientation":0.261799,"phaseMask":1,"position_x":2317.92,"position_y":1055.97,"position_z":138.809,"rotation0":0.0432458,"rotation1":0.00569248,"rotation2":0.130402,"rotation3":0.990501,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":1837,"id":191104,"map":595,"orientation":4.97419,"phaseMask":1,"position_x":2319.24,"position_y":1054.98,"position_z":139.257,"rotation0":0,"rotation1":0,"rotation2":-0.608761,"rotation3":0.793354,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":1838,"id":191105,"map":595,"orientation":1.83259,"phaseMask":1,"position_x":2316.44,"position_y":1054.27,"position_z":139.604,"rotation0":0.0794587,"rotation1":0.103553,"rotation2":0.786566,"rotation3":0.603554,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2653,"id":180411,"map":595,"orientation":3.6652,"phaseMask":1,"position_x":1549.68,"position_y":594.639,"position_z":107.305,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2654,"id":180411,"map":595,"orientation":1.18682,"phaseMask":1,"position_x":1596.45,"position_y":671.198,"position_z":112.61,"rotation0":0,"rotation1":0,"rotation2":0.559193,"rotation3":0.829038,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2655,"id":180411,"map":595,"orientation":3.14159,"phaseMask":1,"position_x":2025.54,"position_y":1287.3,"position_z":150.196,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2656,"id":180411,"map":595,"orientation":5.55015,"phaseMask":1,"position_x":2196.7,"position_y":1223.45,"position_z":143.686,"rotation0":0,"rotation1":0,"rotation2":-0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2657,"id":180411,"map":595,"orientation":1.90241,"phaseMask":1,"position_x":2398.39,"position_y":1206.93,"position_z":150.749,"rotation0":0,"rotation1":0,"rotation2":0.814116,"rotation3":0.580703,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2658,"id":180411,"map":595,"orientation":1.98967,"phaseMask":1,"position_x":2417.49,"position_y":1209.12,"position_z":150.519,"rotation0":0,"rotation1":0,"rotation2":0.83867,"rotation3":0.54464,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2659,"id":180411,"map":595,"orientation":1.8675,"phaseMask":1,"position_x":2435.39,"position_y":1214.04,"position_z":150.666,"rotation0":0,"rotation1":0,"rotation2":0.803857,"rotation3":0.594823,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2775,"id":180523,"map":595,"orientation":3.07177,"phaseMask":1,"position_x":1569.01,"position_y":606.979,"position_z":100.176,"rotation0":0,"rotation1":0,"rotation2":0.999391,"rotation3":0.0349061,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67452,"id":175369,"map":595,"orientation":3.12412,"phaseMask":1,"position_x":1818.82,"position_y":627.569,"position_z":107.792,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67453,"id":175370,"map":595,"orientation":-2.8536,"phaseMask":1,"position_x":1904.85,"position_y":602.359,"position_z":108.435,"rotation0":0,"rotation1":0,"rotation2":-0.98965,"rotation3":0.143499,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67454,"id":188685,"map":595,"orientation":1.87623,"phaseMask":1,"position_x":2349.09,"position_y":1227.32,"position_z":130.269,"rotation0":0,"rotation1":0,"rotation2":0.806445,"rotation3":0.591309,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67455,"id":188686,"map":595,"orientation":1.78956,"phaseMask":1,"position_x":2473.27,"position_y":1121.36,"position_z":149.963,"rotation0":0,"rotation1":0,"rotation2":0.780071,"rotation3":0.62569,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67456,"id":192526,"map":595,"orientation":-1.11504,"phaseMask":1,"position_x":1427.33,"position_y":563.926,"position_z":39.3807,"rotation0":0,"rotation1":0,"rotation2":-0.529083,"rotation3":0.84857,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67457,"id":188687,"map":595,"orientation":1.87623,"phaseMask":1,"position_x":2342.43,"position_y":1248.43,"position_z":131.507,"rotation0":0,"rotation1":0,"rotation2":0.806445,"rotation3":0.591309,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67458,"id":192527,"map":595,"orientation":-1.11504,"phaseMask":1,"position_x":1427.33,"position_y":563.926,"position_z":39.3807,"rotation0":0,"rotation1":0,"rotation2":-0.529083,"rotation3":0.84857,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67459,"id":192530,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":2238.48,"position_y":1474.17,"position_z":134.196,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67460,"id":192531,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":2238.48,"position_y":1474.17,"position_z":134.196,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67461,"id":191015,"map":595,"orientation":1.67499,"phaseMask":1,"position_x":1560.27,"position_y":611.911,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":0.742968,"rotation3":0.669327,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67462,"id":191788,"map":595,"orientation":0.497418,"phaseMask":1,"position_x":2241.28,"position_y":1475.46,"position_z":131.855,"rotation0":0,"rotation1":0,"rotation2":0.246153,"rotation3":0.969231,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67463,"id":187710,"map":595,"orientation":2.99559,"phaseMask":1,"position_x":2152.99,"position_y":1341.79,"position_z":132.231,"rotation0":0.00949192,"rotation1":0.0690842,"rotation2":0.994931,"rotation3":0.072451,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67464,"id":187711,"map":595,"orientation":-2.67855,"phaseMask":1,"position_x":2325.64,"position_y":1422.77,"position_z":128.04,"rotation0":0,"rotation1":0,"rotation2":-0.973318,"rotation3":0.229459,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67465,"id":187712,"map":595,"orientation":3.14159,"phaseMask":1,"position_x":2256.25,"position_y":1331.31,"position_z":124.195,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67466,"id":187713,"map":595,"orientation":-2.83616,"phaseMask":1,"position_x":2328.47,"position_y":1288.68,"position_z":135.475,"rotation0":0,"rotation1":0,"rotation2":-0.988361,"rotation3":0.152123,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46368,"animprogress":255,"areaId":0,"guid":67467,"id":187714,"map":595,"orientation":3.01695,"phaseMask":1,"position_x":2306.79,"position_y":1286.48,"position_z":130.455,"rotation0":-0.0154276,"rotation1":0.115665,"rotation2":0.991075,"rotation3":0.0644568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67468,"id":187715,"map":595,"orientation":-3.06302,"phaseMask":1,"position_x":2304.01,"position_y":1333.41,"position_z":131.264,"rotation0":0,"rotation1":0,"rotation2":-0.999228,"rotation3":0.0392762,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67469,"id":187460,"map":595,"orientation":-3.05428,"phaseMask":1,"position_x":1690.29,"position_y":1299.42,"position_z":155.037,"rotation0":0,"rotation1":0,"rotation2":-0.999047,"rotation3":0.0436424,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67470,"id":187460,"map":595,"orientation":-0.244344,"phaseMask":1,"position_x":1698.47,"position_y":853.909,"position_z":124.357,"rotation0":0,"rotation1":0,"rotation2":-0.121868,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67471,"id":187460,"map":595,"orientation":2.99322,"phaseMask":1,"position_x":1636.68,"position_y":864.953,"position_z":119.56,"rotation0":0,"rotation1":0,"rotation2":0.997249,"rotation3":0.0741182,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67472,"id":187460,"map":595,"orientation":-2.7838,"phaseMask":1,"position_x":1610.61,"position_y":895.874,"position_z":128.802,"rotation0":0,"rotation1":0,"rotation2":-0.984041,"rotation3":0.177944,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67473,"id":187460,"map":595,"orientation":2.9845,"phaseMask":1,"position_x":1612.94,"position_y":816.432,"position_z":121.184,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784656,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67474,"id":187460,"map":595,"orientation":-3.09792,"phaseMask":1,"position_x":1599.79,"position_y":749.444,"position_z":114.669,"rotation0":0,"rotation1":0,"rotation2":-0.999762,"rotation3":0.0218346,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67475,"id":187461,"map":595,"orientation":-1.76278,"phaseMask":1,"position_x":1690.06,"position_y":1298.56,"position_z":155.037,"rotation0":0,"rotation1":0,"rotation2":-0.771624,"rotation3":0.636079,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67476,"id":187461,"map":595,"orientation":1.04719,"phaseMask":1,"position_x":1698.97,"position_y":854.654,"position_z":124.357,"rotation0":0,"rotation1":0,"rotation2":0.499997,"rotation3":0.866027,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67477,"id":187461,"map":595,"orientation":-1.9984,"phaseMask":1,"position_x":1636.26,"position_y":864.164,"position_z":119.56,"rotation0":0,"rotation1":0,"rotation2":-0.841038,"rotation3":0.540975,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67478,"id":187461,"map":595,"orientation":-1.49226,"phaseMask":1,"position_x":1610.63,"position_y":894.979,"position_z":128.802,"rotation0":0,"rotation1":0,"rotation2":-0.678802,"rotation3":0.734321,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67479,"id":187461,"map":595,"orientation":-2.00713,"phaseMask":1,"position_x":1612.51,"position_y":815.647,"position_z":121.184,"rotation0":0,"rotation1":0,"rotation2":-0.843392,"rotation3":0.537299,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67480,"id":187461,"map":595,"orientation":-1.80642,"phaseMask":1,"position_x":1599.53,"position_y":748.589,"position_z":114.669,"rotation0":0,"rotation1":0,"rotation2":-0.785318,"rotation3":0.619092,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67481,"id":187462,"map":595,"orientation":1.35263,"phaseMask":1,"position_x":1604.93,"position_y":742.246,"position_z":114.748,"rotation0":0,"rotation1":0,"rotation2":0.625923,"rotation3":0.779885,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67482,"id":187719,"map":595,"orientation":-2.76634,"phaseMask":1,"position_x":2360.08,"position_y":1067.78,"position_z":142.914,"rotation0":0,"rotation1":0,"rotation2":-0.98245,"rotation3":0.186527,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67483,"id":187463,"map":595,"orientation":4.33714,"phaseMask":1,"position_x":1641.48,"position_y":866.026,"position_z":119.631,"rotation0":0,"rotation1":0,"rotation2":-0.82659,"rotation3":0.562805,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67484,"id":187720,"map":595,"orientation":2.23402,"phaseMask":1,"position_x":2315.42,"position_y":1171.69,"position_z":141.652,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67485,"id":187464,"map":595,"orientation":4.31969,"phaseMask":1,"position_x":1643.87,"position_y":865.037,"position_z":119.631,"rotation0":0,"rotation1":0,"rotation2":-0.83147,"rotation3":0.55557,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67486,"id":187721,"map":595,"orientation":2.30383,"phaseMask":1,"position_x":2359.84,"position_y":1177.94,"position_z":137.367,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67487,"id":187465,"map":595,"orientation":4.29351,"phaseMask":1,"position_x":1646.03,"position_y":864.07,"position_z":119.631,"rotation0":0,"rotation1":0,"rotation2":-0.838671,"rotation3":0.544639,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67488,"id":187722,"map":595,"orientation":1.16937,"phaseMask":1,"position_x":2242.3,"position_y":1150.53,"position_z":141.653,"rotation0":0,"rotation1":0,"rotation2":0.551937,"rotation3":0.833886,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67489,"id":187466,"map":595,"orientation":1.16064,"phaseMask":1,"position_x":1640.35,"position_y":856.907,"position_z":119.64,"rotation0":0,"rotation1":0,"rotation2":0.548293,"rotation3":0.836286,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67490,"id":187723,"map":595,"orientation":-2.70526,"phaseMask":1,"position_x":2310.16,"position_y":1454.54,"position_z":127.775,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67491,"id":187467,"map":595,"orientation":-1.8675,"phaseMask":1,"position_x":1646.7,"position_y":733.268,"position_z":118.533,"rotation0":0,"rotation1":0,"rotation2":-0.803856,"rotation3":0.594824,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67492,"id":187724,"map":595,"orientation":3.16245,"phaseMask":1,"position_x":2423.7,"position_y":1186.31,"position_z":148.062,"rotation0":0,"rotation1":0,"rotation2":-0.999946,"rotation3":0.0104268,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67493,"id":187468,"map":595,"orientation":0.322884,"phaseMask":1,"position_x":1647.51,"position_y":732.776,"position_z":118.533,"rotation0":0,"rotation1":0,"rotation2":0.160742,"rotation3":0.986997,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67494,"id":187725,"map":595,"orientation":3.75549,"phaseMask":1,"position_x":2428.18,"position_y":1222.3,"position_z":134.052,"rotation0":0,"rotation1":0,"rotation2":-0.953259,"rotation3":0.302153,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67495,"id":187469,"map":595,"orientation":1.61443,"phaseMask":1,"position_x":1646.81,"position_y":733.896,"position_z":113.616,"rotation0":0,"rotation1":0,"rotation2":0.722364,"rotation3":0.691513,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67496,"id":187726,"map":595,"orientation":1.55949,"phaseMask":1,"position_x":2419.85,"position_y":1202.04,"position_z":134.043,"rotation0":0,"rotation1":0,"rotation2":0.703096,"rotation3":0.711095,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67497,"id":187470,"map":595,"orientation":-1.8675,"phaseMask":1,"position_x":1646.49,"position_y":733.255,"position_z":113.616,"rotation0":0,"rotation1":0,"rotation2":-0.803856,"rotation3":0.594824,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67498,"id":187727,"map":595,"orientation":1.22476,"phaseMask":1,"position_x":2409.83,"position_y":1199.86,"position_z":134.052,"rotation0":0,"rotation1":0,"rotation2":0.574817,"rotation3":0.818282,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67499,"id":187471,"map":595,"orientation":0.322884,"phaseMask":1,"position_x":1647.3,"position_y":732.763,"position_z":113.616,"rotation0":0,"rotation1":0,"rotation2":0.160742,"rotation3":0.986997,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67500,"id":187728,"map":595,"orientation":3.16245,"phaseMask":1,"position_x":2519.31,"position_y":1122.56,"position_z":143.679,"rotation0":0,"rotation1":0,"rotation2":-0.999946,"rotation3":0.0104268,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67501,"id":187729,"map":595,"orientation":1.74533,"phaseMask":1,"position_x":2130.79,"position_y":1228.54,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67502,"id":187730,"map":595,"orientation":1.07338,"phaseMask":1,"position_x":2134.74,"position_y":1233.79,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.511292,"rotation3":0.859407,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67503,"id":187731,"map":595,"orientation":1.09083,"phaseMask":1,"position_x":2128.01,"position_y":1221.9,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67504,"id":187732,"map":595,"orientation":4.24988,"phaseMask":1,"position_x":2130.22,"position_y":1231.01,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.850351,"rotation3":0.526215,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67505,"id":187733,"map":595,"orientation":5.76831,"phaseMask":1,"position_x":2125.94,"position_y":1231.19,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.254601,"rotation3":0.967046,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67506,"id":187734,"map":595,"orientation":1.10828,"phaseMask":1,"position_x":2128.6,"position_y":1227.86,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.526214,"rotation3":0.850352,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67507,"id":187735,"map":595,"orientation":2.67908,"phaseMask":1,"position_x":2137.14,"position_y":1234.36,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67508,"id":187736,"map":595,"orientation":4.19752,"phaseMask":1,"position_x":2137.04,"position_y":1238.32,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.863835,"rotation3":0.503774,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67509,"id":187737,"map":595,"orientation":2.67908,"phaseMask":1,"position_x":2138.05,"position_y":1236.35,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67510,"id":187738,"map":595,"orientation":4.23242,"phaseMask":1,"position_x":2139.01,"position_y":1226.39,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.854912,"rotation3":0.518773,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67511,"id":187739,"map":595,"orientation":4.24988,"phaseMask":1,"position_x":2128.48,"position_y":1232.07,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.850351,"rotation3":0.526215,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67512,"id":187740,"map":595,"orientation":4.19752,"phaseMask":1,"position_x":2128.9,"position_y":1242.42,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.863835,"rotation3":0.503774,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67513,"id":187741,"map":595,"orientation":5.82068,"phaseMask":1,"position_x":2133.69,"position_y":1236.11,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.229199,"rotation3":0.973379,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67514,"id":187742,"map":595,"orientation":2.67908,"phaseMask":1,"position_x":2128.97,"position_y":1238.59,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67515,"id":187743,"map":595,"orientation":2.67908,"phaseMask":1,"position_x":2129.9,"position_y":1240.53,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67516,"id":187744,"map":595,"orientation":2.62672,"phaseMask":1,"position_x":2123.28,"position_y":1225.72,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.967046,"rotation3":0.254602,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67517,"id":187745,"map":595,"orientation":4.23242,"phaseMask":1,"position_x":2134.62,"position_y":1217.23,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":-0.854912,"rotation3":0.518773,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67518,"id":187746,"map":595,"orientation":1.07338,"phaseMask":1,"position_x":2126.58,"position_y":1238.08,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.511292,"rotation3":0.859407,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67519,"id":187747,"map":595,"orientation":5.82068,"phaseMask":1,"position_x":2134.55,"position_y":1237.96,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.229199,"rotation3":0.973379,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67520,"id":187748,"map":595,"orientation":5.82068,"phaseMask":1,"position_x":2125.55,"position_y":1240.25,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.229199,"rotation3":0.973379,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67521,"id":187749,"map":595,"orientation":2.62672,"phaseMask":1,"position_x":2130.22,"position_y":1222.38,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.967046,"rotation3":0.254602,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67522,"id":187750,"map":595,"orientation":5.76831,"phaseMask":1,"position_x":2136.94,"position_y":1225.81,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.254601,"rotation3":0.967046,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67523,"id":187751,"map":595,"orientation":1.09083,"phaseMask":1,"position_x":2137.64,"position_y":1223.86,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67524,"id":187752,"map":595,"orientation":5.76831,"phaseMask":1,"position_x":2132.38,"position_y":1216.6,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":-0.254601,"rotation3":0.967046,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67525,"id":187753,"map":595,"orientation":1.09083,"phaseMask":1,"position_x":2133.16,"position_y":1214.46,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67526,"id":187754,"map":595,"orientation":4.23242,"phaseMask":1,"position_x":2113.53,"position_y":1227.9,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":-0.854912,"rotation3":0.518773,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67527,"id":187498,"map":595,"orientation":3.20274,"phaseMask":1,"position_x":1644.12,"position_y":736.947,"position_z":113.547,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67528,"id":187755,"map":595,"orientation":1.09083,"phaseMask":1,"position_x":2121.02,"position_y":1225.25,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67529,"id":187499,"map":595,"orientation":3.20274,"phaseMask":1,"position_x":1643.86,"position_y":741.172,"position_z":113.547,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67530,"id":187756,"map":595,"orientation":1.09083,"phaseMask":1,"position_x":2111.88,"position_y":1225.11,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67531,"id":187500,"map":595,"orientation":3.20274,"phaseMask":1,"position_x":1643.99,"position_y":739.009,"position_z":113.547,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67532,"id":187757,"map":595,"orientation":2.62672,"phaseMask":1,"position_x":2114.29,"position_y":1225.73,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.967046,"rotation3":0.254602,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67533,"id":187501,"map":595,"orientation":4.77348,"phaseMask":1,"position_x":1642.43,"position_y":742.339,"position_z":113.547,"rotation0":0,"rotation1":0,"rotation2":-0.685183,"rotation3":0.728371,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67534,"id":187758,"map":595,"orientation":5.76831,"phaseMask":1,"position_x":2127.42,"position_y":1223.83,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":-0.254601,"rotation3":0.967046,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67535,"id":187502,"map":595,"orientation":4.77348,"phaseMask":1,"position_x":1640.05,"position_y":742.193,"position_z":113.547,"rotation0":0,"rotation1":0,"rotation2":-0.685183,"rotation3":0.728371,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67536,"id":187759,"map":595,"orientation":5.76831,"phaseMask":1,"position_x":2120.46,"position_y":1227.06,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":-0.254601,"rotation3":0.967046,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67537,"id":187503,"map":595,"orientation":1.07338,"phaseMask":1,"position_x":1646.9,"position_y":729.666,"position_z":118.324,"rotation0":0,"rotation1":0,"rotation2":0.511293,"rotation3":0.859406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67538,"id":187760,"map":595,"orientation":5.82068,"phaseMask":1,"position_x":2126.51,"position_y":1242.1,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.229199,"rotation3":0.973379,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67539,"id":187504,"map":595,"orientation":2.88851,"phaseMask":1,"position_x":1648.82,"position_y":730.229,"position_z":118.324,"rotation0":0,"rotation1":0,"rotation2":0.992004,"rotation3":0.126203,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67540,"id":187761,"map":595,"orientation":1.10828,"phaseMask":1,"position_x":2126.72,"position_y":1228.75,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.526214,"rotation3":0.850352,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67541,"id":187505,"map":595,"orientation":1.02921,"phaseMask":1,"position_x":1547.08,"position_y":573.699,"position_z":100.256,"rotation0":0,"rotation1":0,"rotation2":0.492191,"rotation3":0.870487,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67542,"id":187762,"map":595,"orientation":5.25668,"phaseMask":1,"position_x":2376.58,"position_y":1170.94,"position_z":144.417,"rotation0":0,"rotation1":0,"rotation2":-0.491012,"rotation3":0.871153,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67543,"id":187506,"map":595,"orientation":-0.375775,"phaseMask":1,"position_x":1548.43,"position_y":573.654,"position_z":100.256,"rotation0":0,"rotation1":0,"rotation2":-0.186784,"rotation3":0.982401,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67544,"id":187507,"map":595,"orientation":0.959399,"phaseMask":1,"position_x":1570.56,"position_y":595.492,"position_z":99.7284,"rotation0":0,"rotation1":0,"rotation2":0.461513,"rotation3":0.887134,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67545,"id":187508,"map":595,"orientation":-2.53126,"phaseMask":1,"position_x":1570.81,"position_y":596.986,"position_z":99.7284,"rotation0":0,"rotation1":0,"rotation2":-0.953797,"rotation3":0.300452,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67546,"id":187509,"map":595,"orientation":0.025649,"phaseMask":1,"position_x":1572.29,"position_y":596.915,"position_z":99.7284,"rotation0":0,"rotation1":0,"rotation2":0.0128241,"rotation3":0.999918,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67547,"id":187510,"map":595,"orientation":2.66109,"phaseMask":1,"position_x":1571.49,"position_y":598.279,"position_z":99.7284,"rotation0":0,"rotation1":0,"rotation2":0.971278,"rotation3":0.237947,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67548,"id":187511,"map":595,"orientation":3.69085,"phaseMask":1,"position_x":1568.19,"position_y":601.47,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":-0.962526,"rotation3":0.271188,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67549,"id":187512,"map":595,"orientation":4.31044,"phaseMask":1,"position_x":1566.55,"position_y":602.633,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":-0.834031,"rotation3":0.551717,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67550,"id":187513,"map":595,"orientation":4.81658,"phaseMask":1,"position_x":1564.51,"position_y":603.022,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":-0.669327,"rotation3":0.742968,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67551,"id":187514,"map":595,"orientation":1.86697,"phaseMask":1,"position_x":1566.37,"position_y":597.473,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":0.803699,"rotation3":0.595037,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67552,"id":187515,"map":595,"orientation":0.697602,"phaseMask":1,"position_x":1562.49,"position_y":599.079,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":0.341771,"rotation3":0.939783,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67553,"id":187516,"map":595,"orientation":3.8392,"phaseMask":1,"position_x":1562.3,"position_y":615.854,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":-0.939782,"rotation3":0.341774,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67554,"id":187517,"map":595,"orientation":4.20572,"phaseMask":1,"position_x":1560.53,"position_y":616.986,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":-0.861763,"rotation3":0.507311,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67555,"id":191102,"map":595,"orientation":-1.5708,"phaseMask":1,"position_x":2110.18,"position_y":1301.58,"position_z":143.756,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67556,"id":187518,"map":595,"orientation":5.00857,"phaseMask":1,"position_x":1558.42,"position_y":617.46,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":-0.595036,"rotation3":0.803699,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67557,"id":187519,"map":595,"orientation":0.549248,"phaseMask":1,"position_x":1556.6,"position_y":613.462,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":0.271185,"rotation3":0.962527,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67558,"id":187520,"map":595,"orientation":1.16884,"phaseMask":1,"position_x":1558.24,"position_y":612.299,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":0.551716,"rotation3":0.834032,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67559,"id":187521,"map":595,"orientation":4.90385,"phaseMask":1,"position_x":1563.3,"position_y":592.68,"position_z":99.7856,"rotation0":0,"rotation1":0,"rotation2":-0.636282,"rotation3":0.771457,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67560,"id":191106,"map":595,"orientation":-1.48353,"phaseMask":1,"position_x":2281.72,"position_y":1170.19,"position_z":137.635,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737277,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67561,"id":187522,"map":595,"orientation":5.65434,"phaseMask":1,"position_x":1552.23,"position_y":607.222,"position_z":106.643,"rotation0":0,"rotation1":0,"rotation2":-0.309268,"rotation3":0.950975,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67562,"id":191107,"map":595,"orientation":1.65806,"phaseMask":1,"position_x":2279.8,"position_y":1170.06,"position_z":137.406,"rotation0":0,"rotation1":0,"rotation2":0.737276,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67563,"id":187523,"map":595,"orientation":4.94748,"phaseMask":1,"position_x":1553.45,"position_y":608.264,"position_z":106.643,"rotation0":0,"rotation1":0,"rotation2":-0.619302,"rotation3":0.785153,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67564,"id":191108,"map":595,"orientation":-3.05433,"phaseMask":1,"position_x":2280.89,"position_y":1169.18,"position_z":136.947,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436174,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67565,"id":187524,"map":595,"orientation":1.17757,"phaseMask":1,"position_x":1552.9,"position_y":603.702,"position_z":106.643,"rotation0":0,"rotation1":0,"rotation2":0.55535,"rotation3":0.831617,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67566,"id":191109,"map":595,"orientation":-1.48353,"phaseMask":1,"position_x":2294.03,"position_y":1187.31,"position_z":146.035,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737277,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67567,"id":187525,"map":595,"orientation":0.741235,"phaseMask":1,"position_x":1551.35,"position_y":604.583,"position_z":106.643,"rotation0":0,"rotation1":0,"rotation2":0.362191,"rotation3":0.932104,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67568,"id":191110,"map":595,"orientation":0.536579,"phaseMask":1,"position_x":2522.15,"position_y":1253.84,"position_z":144.08,"rotation0":0,"rotation1":0,"rotation2":0.265083,"rotation3":0.964226,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67569,"id":187526,"map":595,"orientation":-2.05129,"phaseMask":1,"position_x":1554.25,"position_y":573.109,"position_z":106.634,"rotation0":0,"rotation1":0,"rotation2":-0.855049,"rotation3":0.518547,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67570,"id":191111,"map":595,"orientation":2.90431,"phaseMask":1,"position_x":2585.69,"position_y":1166.58,"position_z":139.188,"rotation0":0,"rotation1":0,"rotation2":0.99297,"rotation3":0.118363,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67571,"id":187527,"map":595,"orientation":1.06412,"phaseMask":1,"position_x":1564.26,"position_y":597.946,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":0.50731,"rotation3":0.861764,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67572,"id":191112,"map":595,"orientation":0,"phaseMask":1,"position_x":2527.38,"position_y":1132.53,"position_z":149.191,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67573,"id":191113,"map":595,"orientation":-1.89395,"phaseMask":1,"position_x":2459.55,"position_y":1440.45,"position_z":150.79,"rotation0":0,"rotation1":0,"rotation2":-0.811652,"rotation3":0.584141,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67574,"id":191114,"map":595,"orientation":-2.51775,"phaseMask":1,"position_x":2499.95,"position_y":1371.78,"position_z":144.631,"rotation0":0,"rotation1":0,"rotation2":-0.951746,"rotation3":0.306888,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67575,"id":191115,"map":595,"orientation":-1.0472,"phaseMask":1,"position_x":2287.38,"position_y":1342.46,"position_z":124.912,"rotation0":0,"rotation1":0,"rotation2":-0.500001,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67576,"id":191116,"map":595,"orientation":2.09439,"phaseMask":1,"position_x":2285.69,"position_y":1341.53,"position_z":124.683,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67577,"id":191117,"map":595,"orientation":-2.61799,"phaseMask":1,"position_x":2287.05,"position_y":1341.2,"position_z":124.223,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67578,"id":191118,"map":595,"orientation":0.698129,"phaseMask":1,"position_x":2336.8,"position_y":1420.54,"position_z":128.136,"rotation0":0,"rotation1":0,"rotation2":0.342019,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67579,"id":190094,"map":595,"orientation":-1.64061,"phaseMask":1,"position_x":1570.92,"position_y":669.933,"position_z":102.309,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67580,"id":190094,"map":595,"orientation":2.9845,"phaseMask":1,"position_x":1579.42,"position_y":621.446,"position_z":99.7329,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784656,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67581,"id":190094,"map":595,"orientation":-1.11701,"phaseMask":1,"position_x":1674.39,"position_y":872.307,"position_z":120.394,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67582,"id":190094,"map":595,"orientation":-0.837757,"phaseMask":1,"position_x":1629.68,"position_y":731.367,"position_z":112.847,"rotation0":0,"rotation1":0,"rotation2":-0.406736,"rotation3":0.913546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67583,"id":190094,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":1628.98,"position_y":812.142,"position_z":120.689,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67584,"id":191119,"map":595,"orientation":2.26892,"phaseMask":1,"position_x":2336.66,"position_y":1419.13,"position_z":127.573,"rotation0":0,"rotation1":0,"rotation2":0.906306,"rotation3":0.422622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67585,"id":191120,"map":595,"orientation":0.174532,"phaseMask":1,"position_x":2340.73,"position_y":1263.61,"position_z":132.918,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67586,"id":191121,"map":595,"orientation":-2.96148,"phaseMask":1,"position_x":2341.04,"position_y":1261.75,"position_z":132.655,"rotation0":0,"rotation1":0,"rotation2":-0.995948,"rotation3":0.0899347,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67587,"id":190117,"map":595,"orientation":0.349065,"phaseMask":1,"position_x":1629.7,"position_y":731.351,"position_z":112.845,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67588,"id":190117,"map":595,"orientation":-2.46091,"phaseMask":1,"position_x":1570.95,"position_y":669.954,"position_z":102.314,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333809,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67589,"id":190117,"map":595,"orientation":1.81514,"phaseMask":1,"position_x":1628.97,"position_y":812.188,"position_z":120.695,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67590,"id":190117,"map":595,"orientation":2.04204,"phaseMask":1,"position_x":1674.41,"position_y":872.299,"position_z":120.4,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67591,"id":190117,"map":595,"orientation":1.27409,"phaseMask":1,"position_x":1579.43,"position_y":621.444,"position_z":99.7333,"rotation0":0,"rotation1":0,"rotation2":0.594823,"rotation3":0.803857,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67592,"id":187579,"map":595,"orientation":3.14159,"phaseMask":1,"position_x":2235.83,"position_y":1331.63,"position_z":126.049,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67593,"id":187580,"map":595,"orientation":0.25049,"phaseMask":1,"position_x":2142.52,"position_y":1266.52,"position_z":135.074,"rotation0":0,"rotation1":0,"rotation2":0.124918,"rotation3":0.992167,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67594,"id":187581,"map":595,"orientation":0.100057,"phaseMask":1,"position_x":2115.59,"position_y":1271.2,"position_z":138.724,"rotation0":-0.0244069,"rotation1":0.0250139,"rotation2":0.0505829,"rotation3":0.998108,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67595,"id":187582,"map":595,"orientation":2.08057,"phaseMask":1,"position_x":2162.46,"position_y":1242.6,"position_z":136.947,"rotation0":-0.0172009,"rotation1":0.0968828,"rotation2":0.855921,"rotation3":0.507659,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67596,"id":187584,"map":595,"orientation":2.99593,"phaseMask":1,"position_x":2120.71,"position_y":1334.41,"position_z":131.935,"rotation0":0.025394,"rotation1":0.0494022,"rotation2":0.99589,"rotation3":0.0715428,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67597,"id":187586,"map":595,"orientation":2.41998,"phaseMask":1,"position_x":2136.5,"position_y":1368.51,"position_z":132.843,"rotation0":-0.0376878,"rotation1":0.0328188,"rotation2":0.934155,"rotation3":0.353352,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67598,"id":187587,"map":595,"orientation":4.40606,"phaseMask":1,"position_x":2110.48,"position_y":1367.59,"position_z":132.057,"rotation0":-0.0558376,"rotation1":0.0896568,"rotation2":-0.801701,"rotation3":0.58832,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67599,"id":187588,"map":595,"orientation":0.25049,"phaseMask":1,"position_x":2199.16,"position_y":1313.37,"position_z":131.366,"rotation0":0,"rotation1":0,"rotation2":0.124918,"rotation3":0.992167,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67600,"id":187589,"map":595,"orientation":0.25049,"phaseMask":1,"position_x":2175.28,"position_y":1356.66,"position_z":131.129,"rotation0":0,"rotation1":0,"rotation2":0.124918,"rotation3":0.992167,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67601,"id":187590,"map":595,"orientation":-1.09083,"phaseMask":1,"position_x":2108.53,"position_y":1367.28,"position_z":139.116,"rotation0":0,"rotation1":0,"rotation2":-0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67602,"id":187591,"map":595,"orientation":1.1354,"phaseMask":1,"position_x":2141.38,"position_y":1276.24,"position_z":141.977,"rotation0":0,"rotation1":0,"rotation2":0.537694,"rotation3":0.84314,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67604,"id":187592,"map":595,"orientation":2.96704,"phaseMask":1,"position_x":2183.18,"position_y":1283.09,"position_z":136.899,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.0871655,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67605,"id":187593,"map":595,"orientation":2.96706,"phaseMask":1,"position_x":2156.87,"position_y":1288.75,"position_z":132.787,"rotation0":0,"rotation1":0,"rotation2":0.996195,"rotation3":0.0871556,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67606,"id":192714,"map":595,"orientation":1.86861,"phaseMask":1,"position_x":1771.85,"position_y":1252.1,"position_z":138.35,"rotation0":0,"rotation1":0,"rotation2":0.804186,"rotation3":0.594377,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67607,"id":187594,"map":595,"orientation":-1.48877,"phaseMask":1,"position_x":2081.29,"position_y":1297.03,"position_z":141.645,"rotation0":0,"rotation1":0,"rotation2":-0.67752,"rotation3":0.735505,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67608,"id":192715,"map":595,"orientation":-1.28281,"phaseMask":1,"position_x":1771.94,"position_y":1252.13,"position_z":138.346,"rotation0":0,"rotation1":0,"rotation2":-0.598322,"rotation3":0.801256,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67609,"id":187595,"map":595,"orientation":1.65806,"phaseMask":1,"position_x":2079.33,"position_y":1296.77,"position_z":141.651,"rotation0":0,"rotation1":0,"rotation2":0.737276,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67610,"id":192716,"map":595,"orientation":0.245454,"phaseMask":1,"position_x":1771.84,"position_y":1252.13,"position_z":138.343,"rotation0":0,"rotation1":0,"rotation2":0.122419,"rotation3":0.992478,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67611,"id":187596,"map":595,"orientation":2.87979,"phaseMask":1,"position_x":2188.86,"position_y":1346.02,"position_z":130.133,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67612,"id":187597,"map":595,"orientation":1.309,"phaseMask":1,"position_x":2188.13,"position_y":1347.21,"position_z":130.642,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67613,"id":187598,"map":595,"orientation":-1.83259,"phaseMask":1,"position_x":2189.99,"position_y":1346.68,"position_z":130.637,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608764,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67614,"id":187599,"map":595,"orientation":1.39626,"phaseMask":1,"position_x":2156.09,"position_y":1289.88,"position_z":133.217,"rotation0":0,"rotation1":0,"rotation2":0.642786,"rotation3":0.766046,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67615,"id":187600,"map":595,"orientation":-0.174532,"phaseMask":1,"position_x":2157.22,"position_y":1290.68,"position_z":133.75,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67616,"id":187601,"map":595,"orientation":2.96706,"phaseMask":1,"position_x":2156.87,"position_y":1288.75,"position_z":133.691,"rotation0":0,"rotation1":0,"rotation2":0.996195,"rotation3":0.0871556,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68295,"id":180405,"map":595,"orientation":2.60054,"phaseMask":1,"position_x":1560.67,"position_y":625.269,"position_z":99.8689,"rotation0":0,"rotation1":0,"rotation2":0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68296,"id":180405,"map":595,"orientation":3.927,"phaseMask":1,"position_x":1564.89,"position_y":586.189,"position_z":100.932,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68297,"id":180405,"map":595,"orientation":2.80998,"phaseMask":1,"position_x":1592.72,"position_y":681.198,"position_z":104.538,"rotation0":0,"rotation1":0,"rotation2":0.986285,"rotation3":0.16505,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68298,"id":180405,"map":595,"orientation":0.453785,"phaseMask":1,"position_x":1664.9,"position_y":890.269,"position_z":119.996,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68299,"id":180405,"map":595,"orientation":0.750491,"phaseMask":1,"position_x":1670.04,"position_y":1097.86,"position_z":127.437,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68300,"id":180405,"map":595,"orientation":0.226892,"phaseMask":1,"position_x":1688.5,"position_y":1185.32,"position_z":132.573,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68301,"id":180405,"map":595,"orientation":0.453785,"phaseMask":1,"position_x":1691.45,"position_y":954.137,"position_z":120.369,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68302,"id":180405,"map":595,"orientation":5.93412,"phaseMask":1,"position_x":1830.95,"position_y":1287.45,"position_z":143.594,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68303,"id":180405,"map":595,"orientation":5.93412,"phaseMask":1,"position_x":1916.11,"position_y":1298.61,"position_z":142.467,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68304,"id":180405,"map":595,"orientation":3.52557,"phaseMask":1,"position_x":1936.98,"position_y":1275.89,"position_z":145.916,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190812,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68305,"id":180405,"map":595,"orientation":1.16937,"phaseMask":1,"position_x":1980.78,"position_y":1298.75,"position_z":146.12,"rotation0":0,"rotation1":0,"rotation2":0.551936,"rotation3":0.833886,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68306,"id":180405,"map":595,"orientation":2.74016,"phaseMask":1,"position_x":1984.5,"position_y":1244.8,"position_z":143.216,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68307,"id":180405,"map":595,"orientation":2.65289,"phaseMask":1,"position_x":2077.15,"position_y":1280.63,"position_z":141.534,"rotation0":0,"rotation1":0,"rotation2":0.970295,"rotation3":0.241925,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68308,"id":180405,"map":595,"orientation":5.28835,"phaseMask":1,"position_x":2228.9,"position_y":1336.89,"position_z":127.614,"rotation0":0,"rotation1":0,"rotation2":-0.477159,"rotation3":0.878817,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68309,"id":180405,"map":595,"orientation":0.663223,"phaseMask":1,"position_x":2338.74,"position_y":1423.53,"position_z":128.133,"rotation0":0,"rotation1":0,"rotation2":0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68310,"id":180405,"map":595,"orientation":4.92183,"phaseMask":1,"position_x":2369.35,"position_y":1190,"position_z":132.05,"rotation0":0,"rotation1":0,"rotation2":-0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68311,"id":180405,"map":595,"orientation":2.11185,"phaseMask":1,"position_x":2408.69,"position_y":1113.02,"position_z":148.076,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492424,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68312,"id":180405,"map":595,"orientation":2.53072,"phaseMask":1,"position_x":2412.89,"position_y":1094.3,"position_z":148.076,"rotation0":0,"rotation1":0,"rotation2":0.953716,"rotation3":0.300708,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68599,"id":180406,"map":595,"orientation":1.43117,"phaseMask":1,"position_x":1557.51,"position_y":615.642,"position_z":99.7787,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68600,"id":180406,"map":595,"orientation":5.91667,"phaseMask":1,"position_x":1599.99,"position_y":662.052,"position_z":103.333,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68601,"id":180406,"map":595,"orientation":3.29869,"phaseMask":1,"position_x":1605.29,"position_y":676.438,"position_z":105.488,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784664,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68602,"id":180406,"map":595,"orientation":0.855211,"phaseMask":1,"position_x":1616.78,"position_y":754.014,"position_z":115.282,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68603,"id":180406,"map":595,"orientation":0.855211,"phaseMask":1,"position_x":1669.29,"position_y":1017.85,"position_z":125.02,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68604,"id":180406,"map":595,"orientation":6.07375,"phaseMask":1,"position_x":1739.04,"position_y":1249.28,"position_z":137.711,"rotation0":0,"rotation1":0,"rotation2":-0.104528,"rotation3":0.994522,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68605,"id":180406,"map":595,"orientation":4.34587,"phaseMask":1,"position_x":1915.73,"position_y":1276,"position_z":142.379,"rotation0":0,"rotation1":0,"rotation2":-0.824126,"rotation3":0.566406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68606,"id":180406,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":1937.17,"position_y":1298.94,"position_z":145.935,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68607,"id":180406,"map":595,"orientation":3.15906,"phaseMask":1,"position_x":1980.1,"position_y":1276.05,"position_z":146.119,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68608,"id":180406,"map":595,"orientation":0.872664,"phaseMask":1,"position_x":1984.88,"position_y":1332.27,"position_z":143.219,"rotation0":0,"rotation1":0,"rotation2":0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68609,"id":180406,"map":595,"orientation":1.0472,"phaseMask":1,"position_x":2155.28,"position_y":1293.34,"position_z":134.351,"rotation0":0,"rotation1":0,"rotation2":0.5,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68610,"id":180406,"map":595,"orientation":4.46804,"phaseMask":1,"position_x":2187.16,"position_y":1243.62,"position_z":137.335,"rotation0":0,"rotation1":0,"rotation2":-0.788011,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68611,"id":180406,"map":595,"orientation":1.25664,"phaseMask":1,"position_x":2205.11,"position_y":1203.9,"position_z":136.978,"rotation0":0,"rotation1":0,"rotation2":0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68612,"id":180406,"map":595,"orientation":4.90438,"phaseMask":1,"position_x":2228.82,"position_y":1326.12,"position_z":127.873,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68613,"id":180406,"map":595,"orientation":2.00713,"phaseMask":1,"position_x":2267.95,"position_y":1323.43,"position_z":125.921,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68614,"id":180406,"map":595,"orientation":1.41372,"phaseMask":1,"position_x":2315.98,"position_y":1410.77,"position_z":128.212,"rotation0":0,"rotation1":0,"rotation2":0.649447,"rotation3":0.760406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68615,"id":180406,"map":595,"orientation":5.41052,"phaseMask":1,"position_x":2365.68,"position_y":1206.09,"position_z":131.59,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68616,"id":180406,"map":595,"orientation":3.49067,"phaseMask":1,"position_x":2399.65,"position_y":1172.53,"position_z":148.075,"rotation0":0,"rotation1":0,"rotation2":-0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68617,"id":180406,"map":595,"orientation":0.890117,"phaseMask":1,"position_x":2407.3,"position_y":1138.25,"position_z":148.076,"rotation0":0,"rotation1":0,"rotation2":0.430511,"rotation3":0.902586,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68618,"id":180406,"map":595,"orientation":5.79449,"phaseMask":1,"position_x":2467.42,"position_y":1130.22,"position_z":158.027,"rotation0":0,"rotation1":0,"rotation2":-0.241921,"rotation3":0.970296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68882,"id":180407,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":1587.66,"position_y":667.144,"position_z":103.044,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68883,"id":180407,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":1635.72,"position_y":816.54,"position_z":120.133,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68884,"id":180407,"map":595,"orientation":3.47321,"phaseMask":1,"position_x":1958.55,"position_y":1276.08,"position_z":146.207,"rotation0":0,"rotation1":0,"rotation2":-0.986285,"rotation3":0.16505,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68885,"id":180407,"map":595,"orientation":0.279252,"phaseMask":1,"position_x":1958.78,"position_y":1298.83,"position_z":146.205,"rotation0":0,"rotation1":0,"rotation2":0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68886,"id":180407,"map":595,"orientation":1.39626,"phaseMask":1,"position_x":2076.86,"position_y":1294.82,"position_z":141.653,"rotation0":0,"rotation1":0,"rotation2":0.642787,"rotation3":0.766045,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68887,"id":180407,"map":595,"orientation":2.9845,"phaseMask":1,"position_x":2157.34,"position_y":1260.66,"position_z":134.723,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784664,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68888,"id":180407,"map":595,"orientation":3.9619,"phaseMask":1,"position_x":2178.02,"position_y":1233.7,"position_z":137.326,"rotation0":0,"rotation1":0,"rotation2":-0.91706,"rotation3":0.39875,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68889,"id":180407,"map":595,"orientation":1.02974,"phaseMask":1,"position_x":2214.72,"position_y":1212.64,"position_z":137.131,"rotation0":0,"rotation1":0,"rotation2":0.492423,"rotation3":0.870356,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68890,"id":180407,"map":595,"orientation":2.9845,"phaseMask":1,"position_x":2232.3,"position_y":1145.8,"position_z":139.823,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784664,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68891,"id":180407,"map":595,"orientation":1.78023,"phaseMask":1,"position_x":2267.94,"position_y":1337.43,"position_z":124.415,"rotation0":0,"rotation1":0,"rotation2":0.777145,"rotation3":0.629321,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68892,"id":180407,"map":595,"orientation":3.54302,"phaseMask":1,"position_x":2332.64,"position_y":1254.01,"position_z":133.479,"rotation0":0,"rotation1":0,"rotation2":-0.979924,"rotation3":0.19937,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68893,"id":180407,"map":595,"orientation":4.10153,"phaseMask":1,"position_x":2411.18,"position_y":1174.94,"position_z":148.075,"rotation0":0,"rotation1":0,"rotation2":-0.887011,"rotation3":0.461749,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68894,"id":180407,"map":595,"orientation":0.279252,"phaseMask":1,"position_x":2418.8,"position_y":1140.76,"position_z":148.076,"rotation0":0,"rotation1":0,"rotation2":0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68895,"id":180407,"map":595,"orientation":6.12611,"phaseMask":1,"position_x":2438.48,"position_y":1206.11,"position_z":149.151,"rotation0":0,"rotation1":0,"rotation2":-0.0784588,"rotation3":0.996917,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68896,"id":180407,"map":595,"orientation":4.81711,"phaseMask":1,"position_x":2472.7,"position_y":1105.91,"position_z":157.971,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68954,"id":180431,"map":595,"orientation":5.06146,"phaseMask":1,"position_x":2003.51,"position_y":1287.4,"position_z":145.757,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/culling-of-stratholme/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["20/20 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"halls-of-stone","title":"Halls of Stone","mapId":599,"lfgDungeonIds":[208,213],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[75,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Halls of Stone","theme":"Open-world expedition","summary":"Fight through Halls of Stone, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Halls of Stone...","unchartedAreaName":"Uncharted Halls of Stone","background":"#081016","fog":{"color":"#0a141c","near":36,"far":398.551},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/599-ulduar70/visual.glb","checksum":"f0b9b1ce1cd902e15578797c58e9116135ad35d9998e85dddbf0f4ecdffa8306","size":16124736,"triangleCount":1748718}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/599-ulduar70/collision-000.glb","checksum":"5fe71c91e8a5c207b9665c179726ae487f4890beaa8dbb2cb09f918ccad1e10b","size":113840,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/599-ulduar70/collision-001.glb","checksum":"da9197c1a605d2d7a16171185d9e73a6d4ca6ee478ee9b38f118aa3b60ae5a29","size":113488,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/599-ulduar70/collision-002.glb","checksum":"3c4c628ff78bd541d9e1b4f1e2a9f9de17c68ac0aa7fac655942eba6906605d3","size":113308,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/599-ulduar70/collision-003.glb","checksum":"28ee5a1b09b3e7fcfe40fe617bb74712fd96f875a5cc913f7afd4eaed926fa2c","size":113648,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/599-ulduar70/collision-004.glb","checksum":"a3556fcb2fc8990b5637da5646dc64fae68c54d35d0d5201437c6586f0edc77a","size":113484,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/599-ulduar70/collision-005.glb","checksum":"26ba2e420f01e3c7a2a4cae1b30a65a60560d7c95bdb9599764b39ab99927ab7","size":113664,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/599-ulduar70/collision-006.glb","checksum":"cb19e3d0bf642e98c0d22f2420329c3f411eb885629c7ab172fc8a4be4d5afad","size":113312,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/599-ulduar70/collision-007.glb","checksum":"2458ea457881c868f9d5c48c308313a50c7680ee017932188974c1649ce160bf","size":113132,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/599-ulduar70/collision-008.glb","checksum":"f20ffafd1bfad7c4445496acad56670a6cbdac47f7ac873722ce43df66ffb629","size":1395900,"triangleCount":99999},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/599-ulduar70/collision-009.glb","checksum":"55d5429b0a734b84a06a7714a107cef0480a826b0af3dc9f860f8c5b3a2a7116","size":113648,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/599-ulduar70/collision-010.glb","checksum":"bd148b6c635308dd74bf1663af18cfa0a170e7741e1e5529f9eda23e56beef03","size":113308,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/599-ulduar70/collision-011.glb","checksum":"e5e6789c1cae31dd0a3613dddf6d07f28a646dcc680532c81cbaa97fedcc2434","size":113460,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/599-ulduar70/collision-012.glb","checksum":"8aeb4c265bec3f8092ca4054dff636f79da1a3c44d22756fb2222c0be11389d6","size":113468,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/599-ulduar70/collision-013.glb","checksum":"06b7b8c8847c6604dd82f878777d5f2bc72a3e7f00d47863362af0919cd68ad7","size":187504,"triangleCount":64400},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/599-ulduar70/collision-014.glb","checksum":"50de5d729f4dbcc086649c52b78cf7e646f731f83287f1b517d9b1e71c6d8166","size":111900,"triangleCount":63808},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/599-ulduar70/collision-015.glb","checksum":"a0b84808380384ad2cbab0aee59a3f494264d4e87b3a3468a760a4aa9ac0017a","size":113464,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/599-ulduar70/collision-016.glb","checksum":"39cf6f22e10f90de57dbfd1310147bb9c786eda716e1b6902a9a70aadccd3f8a","size":113712,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/599-ulduar70/collision-017.glb","checksum":"6c4c8fe598558da8d85d85333d7d5a9a1898e0294c05debd15fe56b8ac5e5dd5","size":113312,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/599-ulduar70/collision-018.glb","checksum":"36cfcc9a8407db77ab58c587944c36d101e0c6557512e4af040932579b531a51","size":221924,"triangleCount":65376},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/599-ulduar70/collision-019.glb","checksum":"a2a73497fe96614c3e455850663c6eb782b5a9e38b519a331efa37cae7b26c36","size":160264,"triangleCount":65072},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/599-ulduar70/collision-020.glb","checksum":"a6c228a000ab562eb0119434ee46bd7df4e582a58fbd1fa6519f25629da2a28a","size":113524,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/599-ulduar70/collision-021.glb","checksum":"decf3d655e6e7bc063b890d3379a4838d7783a17442464446a775841b1d91f6e","size":114032,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/599-ulduar70/collision-022.glb","checksum":"33418b3b1af15a38115d5b8a58670fe7b85e4f7a37fe452d0c28ca44e3f52830","size":113536,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/599-ulduar70/collision-023.glb","checksum":"dfed306093680095cd9b6a38e61279130a9df3009853e5d4e9c425ab9a6c66ca","size":215852,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/599-ulduar70/collision-024.glb","checksum":"a4e3e233c49fc7676734e575a0a4f88f6888bcd2a639a230fe8e181d1ea315e2","size":130708,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/599-ulduar70/collision-025.glb","checksum":"1bcff3dda88d7507979d80b12a06670f04e9a15aa80b14b7fc01de8e0564972e","size":113700,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/599-ulduar70/navigation.glb","checksum":"fd6366438476906a591e96c64f2d4c876fbac4b95d4e5516f6838203c6237ee0","size":882640,"triangleCount":74793}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-21.2853,-88.7963,631.9927],"max":[532.2577,-24.0493,1174.5707]},"entrance":{"name":"Halls of Stone Entrance","footPosition":[448.8667,-57.1563,987.6007],"forward":[0,0,1],"yaw":0},"areas":[{"id":"entrance","name":"Halls of Stone Entrance","center":[448.8667,-57.1563,987.6007],"radius":35},{"id":"area-krystallus","name":"Krystallus's Encounter","center":[402.6167,-44.3873,842.9207],"radius":42},{"id":"area-maiden-of-grief","name":"Maiden of Grief's Encounter","center":[308.7497,-62.9773,676.9927],"radius":42},{"id":"area-tribunal-of-ages","name":"Tribunal of Ages's Encounter","center":[449.066,-57.1563,985.3294],"radius":42},{"id":"area-sjonnir-the-ironshaper","name":"Sjonnir the Ironshaper's Encounter","center":[309.8597,-63.4023,1129.5707],"radius":42}],"entities":{"entry-27960":{"id":"entry-27960","kind":"mob","name":"Dark Rune Warrior","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25994-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27961":{"id":"entry-27961","kind":"mob","name":"Dark Rune Worker","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25995-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27962":{"id":"entry-27962","kind":"mob","name":"Dark Rune Elementalist","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25989-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27963":{"id":"entry-27963","kind":"mob","name":"Dark Rune Theurgist","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25990-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27964":{"id":"entry-27964","kind":"mob","name":"Dark Rune Scholar","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25992-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27965":{"id":"entry-27965","kind":"mob","name":"Dark Rune Shaper","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25993-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27966":{"id":"entry-27966","kind":"mob","name":"Dark Rune Controller","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25988-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27969":{"id":"entry-27969","kind":"mob","name":"Dark Rune Giant","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.07936,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-28132-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":15.9622,"markerRadius":4.5}}},"entry-27970":{"id":"entry-27970","kind":"mob","name":"Raging Construct","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-26146-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5279,"markerRadius":2.231}}},"entry-27971":{"id":"entry-27971","kind":"mob","name":"Unrelenting Construct","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-26154-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5279,"markerRadius":2.231}}},"entry-27972":{"id":"entry-27972","kind":"mob","name":"Lightning Construct","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-26140-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5279,"markerRadius":2.231}}},"entry-27973":{"id":"entry-27973","kind":"mob","name":"Crystalline Shardling","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-19383-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":3.2863,"markerRadius":0.732}}},"entry-27975":{"id":"entry-27975","kind":"boss","name":"Maiden of Grief","title":"Dungeon Boss","hasLoot":true,"combat":{"level":79,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50752","name":"Storm of Grief","spellId":50752,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5376,"damageMultiplier":0.82,"radius":11},{"id":"spell-50760","name":"Shock of Sorrow","spellId":50760,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5376,"damageMultiplier":1.35},{"id":"spell-50761","name":"Pillar of Woe","spellId":50761,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5376,"damageMultiplier":1.35},{"id":"spell-59723","name":"Parting Sorrow","spellId":59723,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5376,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-26657-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0003,"labelHeight":16.643,"markerRadius":2.7243}}},"entry-27977":{"id":"entry-27977","kind":"boss","name":"Krystallus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":79,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50812","name":"Stoned","spellId":50812,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5222,"damageMultiplier":1.35},{"id":"spell-50843","name":"Boulder Toss","spellId":50843,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5222,"damageMultiplier":1.35},{"id":"spell-59750","name":"Ground Spike","spellId":59750,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":8000,"damageMultiplier":1.35},{"id":"spell-50868","name":"Stomp","spellId":50868,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5000,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-20909-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0221,"labelHeight":25.1791,"markerRadius":4.5}}},"entry-27978":{"id":"entry-27978","kind":"boss","name":"Sjonnir The Ironshaper","title":"Dungeon Boss","hasLoot":true,"combat":{"level":79,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-28747","name":"Frenzy","spellId":28747,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5762,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-28747","durationMs":12000,"magnitude":0.25}},{"id":"spell-51849","name":"Lightning Ring","spellId":51849,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5762,"damageMultiplier":1.35},{"id":"spell-50831","name":"Lightning Shield","spellId":50831,"delivery":"area","target":"self","school":"nature","animation":"cast","range":0,"cooldownMs":5762,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-50831","durationMs":12000,"magnitude":0.25}},{"id":"spell-50830","name":"Chain Lightning","spellId":50830,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5762,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-27483-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0592,"labelHeight":8.4473,"markerRadius":1.7345}}},"entry-28070":{"id":"entry-28070","kind":"mob","name":"Brann Bronzebeard","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50988","name":"Glare of the Tribunal","spellId":50988,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5560,"damageMultiplier":1.12},{"id":"spell-51012","name":"Dark Matter","spellId":51012,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-26353-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0054,"labelHeight":2.1945,"markerRadius":0.65}}},"entry-837414411":{"id":"entry-837414411","kind":"boss","name":"Tribunal of Ages","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.69,"damageMultiplier":1.12,"moveSpeed":3.04,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2300,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6865,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.37,"archetype":"humanoid"}}},"staticSpawns":[{"id":"creature-126692","entityId":"entry-27960","position":[409.6317,-57.1553,984.6807],"yaw":-1.57957,"spawnMask":3},{"id":"creature-126693","entityId":"entry-27960","position":[409.6827,-57.1553,990.3407],"yaw":-1.57955,"spawnMask":3},{"id":"creature-126697","entityId":"entry-27961","position":[423.9637,-61.9413,909.9307],"yaw":-0.034907,"spawnMask":3},{"id":"creature-126698","entityId":"entry-27961","position":[369.4547,-51.6883,868.6107],"yaw":-3.28122,"spawnMask":3},{"id":"creature-126699","entityId":"entry-27961","position":[471.7927,-66.4403,855.3007],"yaw":-3.80482,"spawnMask":3},{"id":"creature-126700","entityId":"entry-27962","position":[332.9057,-56.8583,1001.8807],"yaw":-5.73428,"spawnMask":3},{"id":"creature-126701","entityId":"entry-27962","position":[299.7087,-56.8583,963.3807],"yaw":-2.05656,"spawnMask":3},{"id":"creature-126702","entityId":"entry-27962","position":[314.7657,-51.1163,915.3507],"yaw":-4.11302,"spawnMask":3},{"id":"creature-126703","entityId":"entry-27962","position":[284.7217,-56.6793,979.3807],"yaw":-5.69728,"spawnMask":3},{"id":"creature-126704","entityId":"entry-27962","position":[312.5997,-56.4813,1013.3807],"yaw":-4.79008,"spawnMask":3},{"id":"creature-126705","entityId":"entry-27963","position":[336.5247,-56.8583,1004.0907],"yaw":-5.73434,"spawnMask":3},{"id":"creature-126707","entityId":"entry-27963","position":[298.5167,-56.8583,959.2107],"yaw":-2.05669,"spawnMask":3},{"id":"creature-126708","entityId":"entry-27963","position":[317.9567,-50.6313,910.6807],"yaw":-4.113,"spawnMask":3},{"id":"creature-126711","entityId":"entry-27963","position":[297.7107,-51.1163,850.3607],"yaw":-0.754551,"spawnMask":3},{"id":"creature-126712","entityId":"entry-27963","position":[302.5897,-51.1163,849.3507],"yaw":-0.753234,"spawnMask":3},{"id":"creature-126713","entityId":"entry-27963","position":[281.9377,-56.8583,976.8207],"yaw":-5.69732,"spawnMask":3},{"id":"creature-126714","entityId":"entry-27963","position":[312.9287,-56.8603,1017.6107],"yaw":-4.79012,"spawnMask":3},{"id":"creature-126716","entityId":"entry-27963","position":[308.7547,-50.3843,867.1207],"yaw":-5.40797,"spawnMask":3},{"id":"creature-126717","entityId":"entry-27964","position":[430.5537,-62.6693,909.9207],"yaw":-4.17134,"spawnMask":3},{"id":"creature-126718","entityId":"entry-27964","position":[468.6097,-65.6193,861.9407],"yaw":-4.67748,"spawnMask":3},{"id":"creature-126719","entityId":"entry-27965","position":[362.8367,-51.4013,879.0707],"yaw":-2.9147,"spawnMask":3},{"id":"creature-126720","entityId":"entry-27965","position":[376.7557,-53.6603,876.4507],"yaw":-3.94444,"spawnMask":3},{"id":"creature-126721","entityId":"entry-27965","position":[486.3467,-66.9193,853.9207],"yaw":-4.60767,"spawnMask":3},{"id":"creature-126722","entityId":"entry-27965","position":[476.6217,-66.9423,864.9107],"yaw":-3.66519,"spawnMask":3},{"id":"creature-126723","entityId":"entry-27965","position":[426.2577,-62.7073,894.9307],"yaw":-6.07375,"spawnMask":3},{"id":"creature-126737","entityId":"entry-27970","position":[222.4257,-46.0433,871.8107],"yaw":-0.017453,"spawnMask":3},{"id":"creature-126738","entityId":"entry-27970","position":[142.6107,-45.2903,892.6507],"yaw":-4.2237,"spawnMask":3},{"id":"creature-126739","entityId":"entry-27971","position":[111.6527,-44.0493,883.4507],"yaw":-5.44543,"spawnMask":3},{"id":"creature-126740","entityId":"entry-27971","position":[373.7387,-56.7663,979.2907],"yaw":-1.5708,"spawnMask":3},{"id":"creature-126741","entityId":"entry-27971","position":[372.9867,-56.7663,996.2207],"yaw":-1.67552,"spawnMask":3},{"id":"creature-126742","entityId":"entry-27971","position":[222.0367,-46.0053,894.3407],"yaw":-3.1765,"spawnMask":3},{"id":"creature-126743","entityId":"entry-27971","position":[296.7077,-50.8543,882.9607],"yaw":-1.71042,"spawnMask":3},{"id":"creature-126744","entityId":"entry-27971","position":[118.6487,-45.2903,866.9507],"yaw":-2.04204,"spawnMask":3},{"id":"creature-126745","entityId":"entry-27971","position":[143.9337,-45.2903,870.3807],"yaw":-5.75959,"spawnMask":3},{"id":"creature-126747","entityId":"entry-27972","position":[317.2377,-56.5993,741.0177],"yaw":-0.069813,"spawnMask":3},{"id":"creature-126748","entityId":"entry-27972","position":[301.6667,-56.5993,740.0467],"yaw":-0.122173,"spawnMask":3},{"id":"creature-126751","entityId":"entry-27973","position":[479.5987,-65.5543,770.5357],"yaw":-0.401426,"spawnMask":3},{"id":"creature-126752","entityId":"entry-27973","position":[478.4367,-65.3833,762.5467],"yaw":-4.99164,"spawnMask":3},{"id":"creature-126753","entityId":"entry-27973","position":[469.9677,-64.3163,760.0537],"yaw":-0.925025,"spawnMask":3},{"id":"creature-126754","entityId":"entry-27973","position":[316.6847,-50.7603,877.0107],"yaw":-1.34675,"spawnMask":3},{"id":"creature-126755","entityId":"entry-27973","position":[321.4247,-50.6723,881.0007],"yaw":-0.418879,"spawnMask":3},{"id":"creature-126756","entityId":"entry-27973","position":[315.4777,-51.2283,886.7407],"yaw":-0.488692,"spawnMask":3},{"id":"creature-126757","entityId":"entry-27973","position":[456.4887,-63.7813,799.1737],"yaw":-4.50776,"spawnMask":3},{"id":"creature-126758","entityId":"entry-27973","position":[465.6747,-64.9123,815.7437],"yaw":-0.698132,"spawnMask":3},{"id":"creature-126759","entityId":"entry-27973","position":[465.1147,-65.4843,803.0697],"yaw":-2.77507,"spawnMask":3},{"id":"creature-126760","entityId":"entry-27973","position":[460.0547,-64.4093,801.8617],"yaw":-2.96706,"spawnMask":3},{"id":"creature-126761","entityId":"entry-27973","position":[462.8947,-64.3343,810.6857],"yaw":0,"spawnMask":3},{"id":"creature-126762","entityId":"entry-27973","position":[449.9747,-65.2313,898.9107],"yaw":-5.72136,"spawnMask":3},{"id":"creature-126763","entityId":"entry-27973","position":[470.7477,-67.6073,904.8307],"yaw":-0.164425,"spawnMask":3},{"id":"creature-126764","entityId":"entry-27973","position":[469.8457,-68.1643,891.1507],"yaw":-4.81268,"spawnMask":3},{"id":"creature-126765","entityId":"entry-27973","position":[473.7247,-68.7963,889.9907],"yaw":-5.69452,"spawnMask":3},{"id":"creature-126766","entityId":"entry-27973","position":[454.1707,-65.5563,892.2707],"yaw":-5.50003,"spawnMask":3},{"id":"creature-126767","entityId":"entry-27973","position":[458.7907,-66.6243,899.7107],"yaw":-4.8355,"spawnMask":3},{"id":"creature-126768","entityId":"entry-27973","position":[474.0877,-68.3433,900.0507],"yaw":-5.41897,"spawnMask":3},{"id":"creature-126769","entityId":"entry-27973","position":[411.3897,-60.1373,882.2107],"yaw":-4.2389,"spawnMask":3},{"id":"creature-126770","entityId":"entry-27973","position":[393.4747,-55.9353,879.6007],"yaw":-4.43027,"spawnMask":3},{"id":"creature-126771","entityId":"entry-27973","position":[387.7407,-55.8263,869.2807],"yaw":-5.45241,"spawnMask":3},{"id":"creature-126772","entityId":"entry-27973","position":[407.5537,-58.9663,874.0107],"yaw":-4.57073,"spawnMask":3},{"id":"creature-126773","entityId":"entry-27973","position":[397.1027,-56.6653,865.5207],"yaw":-3.84551,"spawnMask":3},{"id":"creature-126774","entityId":"entry-27973","position":[402.3667,-58.0983,881.6007],"yaw":-1.70245,"spawnMask":3},{"id":"creature-126775","entityId":"entry-27973","position":[411.9837,-60.3123,889.0007],"yaw":-2.25148,"spawnMask":3},{"id":"creature-126776","entityId":"entry-27973","position":[431.7567,-57.6963,785.7427],"yaw":-1.8675,"spawnMask":3},{"id":"creature-126777","entityId":"entry-27973","position":[431.8147,-57.1493,794.6457],"yaw":-3.49066,"spawnMask":3},{"id":"creature-126778","entityId":"entry-27973","position":[420.6407,-55.5523,786.9687],"yaw":-5.5676,"spawnMask":3},{"id":"creature-126779","entityId":"entry-27973","position":[449.3477,-61.7723,780.9667],"yaw":-3.87463,"spawnMask":3},{"id":"creature-126780","entityId":"entry-27973","position":[443.3947,-60.2863,775.5827],"yaw":-4.81711,"spawnMask":3},{"id":"creature-126781","entityId":"entry-27973","position":[455.6087,-62.4793,769.6577],"yaw":-1.309,"spawnMask":3},{"id":"creature-126782","entityId":"entry-27973","position":[478.5267,-66.5083,795.5277],"yaw":-0.122173,"spawnMask":3},{"id":"creature-126783","entityId":"entry-27973","position":[480.7097,-66.8523,801.6007],"yaw":-4.43314,"spawnMask":3},{"id":"creature-126784","entityId":"entry-27973","position":[487.2577,-67.2653,800.9507],"yaw":-4.2237,"spawnMask":3},{"id":"creature-126785","entityId":"entry-27973","position":[477.9327,-66.2603,786.9177],"yaw":-1.69377,"spawnMask":3},{"id":"creature-126786","entityId":"entry-27973","position":[473.6477,-66.2173,795.9367],"yaw":-4.04916,"spawnMask":3},{"id":"creature-126789","entityId":"entry-27975","position":[308.7497,-62.9773,676.9927],"yaw":0,"spawnMask":3},{"id":"creature-126790","entityId":"entry-27977","position":[402.6167,-44.3873,842.9207],"yaw":-2.56563,"spawnMask":3},{"id":"creature-126792","entityId":"entry-27978","position":[309.8597,-63.4023,1129.5707],"yaw":-3.19395,"spawnMask":3},{"id":"creature-126801","entityId":"entry-28070","position":[116.8627,-45.2903,911.7707],"yaw":-2.70526,"spawnMask":3},{"id":"encounter-567","entityId":"entry-837414411","position":[449.066,-57.1563,985.3294],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-126687","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[338.5917,-56.8593,988.0407],[338.3977,-56.8593,996.9707],[333.6087,-56.8583,1004.8007],[338.3977,-56.8593,996.9707],[338.5917,-56.8593,988.0407],[338.3307,-56.8593,979.6707],[332.0947,-56.8583,969.9307],[338.3307,-56.8593,979.6707]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126688","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[320.7447,-50.6433,835.5607],[320.3397,-50.6313,834.9707],[321.9537,-51.1053,837.3107],[323.6657,-51.1163,839.7907],[325.8917,-51.1163,845.1707],[323.6327,-51.1163,847.1607],[321.3717,-51.1163,849.1607],[319.1117,-51.0253,851.1507],[318.5677,-50.8843,851.6307],[320.7367,-51.1163,849.7207],[322.9977,-51.1163,847.7207],[325.8497,-51.1163,842.9707],[324.1457,-51.1163,840.4907],[322.4367,-51.1163,838.0107]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126689","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266890,"formationSource":"database-solo","spawnMask":3,"waypoints":[[320.8137,-51.1163,843.9907],[318.5527,-51.1163,845.9907],[316.2927,-51.1163,847.9807],[315.7617,-51.1163,848.4507],[317.9307,-51.1163,846.5307],[320.1937,-51.1163,844.5407],[320.5607,-51.1163,844.3007],[320.6487,-51.1163,842.9007],[318.9407,-51.1163,840.4207],[317.2627,-51.1163,837.9807],[316.8457,-51.1163,837.3807],[318.4557,-51.1163,839.7107],[320.1667,-51.1163,842.1907],[323.0927,-51.1163,841.9807]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126690","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266900,"formationSource":"database-solo","spawnMask":3,"waypoints":[[319.5347,-56.8583,960.8307],[329.2797,-56.8583,966.2907],[319.5347,-56.8583,960.8307],[309.7557,-56.8583,960.3307],[301.3827,-56.8583,960.1007],[291.7187,-56.8583,965.2007],[301.3827,-56.8583,960.1007],[309.7497,-56.8583,960.3307]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126691","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266910,"formationSource":"database-solo","spawnMask":3,"waypoints":[[305.7577,-50.8503,928.5307],[314.3377,-50.9093,928.3307],[319.3777,-51.1163,924.6907],[319.7677,-51.1163,915.3407],[314.0257,-50.6313,911.4207],[306.5497,-50.5403,910.9007],[300.5257,-51.1163,915.3307],[300.1197,-51.1163,924.4107]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126694","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266940,"formationSource":"database-solo","spawnMask":3,"waypoints":[[302.7737,-50.6313,834.7907],[293.9057,-51.1163,843.2207],[302.4967,-50.6723,852.3507],[293.9087,-51.1163,843.2207]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126695","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266950,"formationSource":"database-solo","spawnMask":3,"waypoints":[[282.3077,-56.8583,995.8807],[281.4057,-56.8583,988.2907],[282.5317,-56.8583,979.7607],[287.3327,-56.8583,972.5307],[282.5317,-56.8583,979.7607],[281.4057,-56.8583,988.2907],[282.3077,-56.8583,995.8807],[288.0457,-56.8583,1004.8807]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126696","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[301.8317,-56.8603,1015.0907],[310.6497,-56.8603,1015.6607],[318.2857,-56.8583,1015.0607],[326.1867,-56.8583,1011.4207],[318.2857,-56.8583,1015.0607],[310.6497,-56.8603,1015.6607],[301.8317,-56.8603,1015.0907],[294.3097,-56.8583,1012.1107]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126706","name":"Dark Rune Theurgist Patrol","speed":1.15,"pathId":1267060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[323.9987,-51.1163,844.0107],[315.5727,-50.9393,851.4407],[323.9957,-51.1153,844.0207],[317.3897,-50.6313,834.4307]],"members":[{"id":"member","entityId":"entry-27963","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126709","name":"Dark Rune Theurgist Patrol","speed":1.15,"pathId":1267090,"formationSource":"database-solo","spawnMask":3,"waypoints":[[392.0527,-57.7433,986.8807],[406.4237,-57.1553,987.5407],[420.3367,-58.0493,987.4107],[406.4237,-57.1553,987.5407]],"members":[{"id":"member","entityId":"entry-27963","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126710","name":"Dark Rune Theurgist Patrol","speed":1.15,"pathId":1267100,"formationSource":"database-solo","spawnMask":3,"waypoints":[[385.9017,-57.4463,1006.3807],[386.1177,-57.7433,969.6607]],"members":[{"id":"member","entityId":"entry-27963","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126715","name":"Dark Rune Theurgist Patrol","speed":1.15,"pathId":1267150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[308.8727,-51.1163,843.5607],[308.2957,-50.6463,870.0707],[308.8727,-51.1163,843.5607],[309.0207,-50.2223,821.2257]],"members":[{"id":"member","entityId":"entry-27963","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126728","name":"Dark Rune Controller Patrol","speed":1.15,"pathId":1267280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[463.5317,-65.4243,791.2687],[472.3377,-66.1593,804.7067],[478.9007,-66.7053,812.9147],[472.3377,-66.1593,804.7067],[463.5317,-65.4243,791.2687],[459.3957,-63.3433,772.2057]],"members":[{"id":"member","entityId":"entry-27966","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126732","name":"Dark Rune Controller Patrol","speed":1.15,"pathId":1267320,"formationSource":"database-solo","spawnMask":3,"waypoints":[[416.1877,-53.8123,803.8347],[426.8047,-55.8363,802.1257],[431.6817,-57.0873,796.1677],[438.0707,-59.1253,787.4697],[434.1927,-58.1163,778.7327],[427.6627,-56.7053,778.0297],[417.1597,-54.8353,783.9587],[413.0647,-54.2703,793.7917]],"members":[{"id":"member","entityId":"entry-27966","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126733","name":"Dark Rune Giant Patrol","speed":1.15,"pathId":1267330,"formationSource":"database-solo","spawnMask":3,"waypoints":[[176.7787,-45.3743,882.4007],[269.9167,-45.3743,882.7207]],"members":[{"id":"member","entityId":"entry-27969","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126734","name":"Dark Rune Giant Patrol","speed":1.15,"pathId":1267340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[306.4217,-56.8583,1025.5607],[285.3977,-56.8583,1016.9907],[275.0297,-56.8583,1004.2507],[270.0237,-56.8583,988.9407],[274.7007,-56.8583,974.7807],[287.9107,-56.8583,959.0607],[299.7747,-56.8583,955.9107],[287.9107,-56.8583,959.0607],[274.7007,-56.8583,974.7807],[270.0237,-56.8583,988.9407],[275.0297,-56.8583,1004.2507],[285.3957,-56.8583,1016.9907]],"members":[{"id":"member","entityId":"entry-27969","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126735","name":"Dark Rune Giant Patrol","speed":1.15,"pathId":1267350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[329.7087,-56.8583,956.6207],[341.3477,-56.8583,967.3807],[349.5187,-56.8573,983.0207],[349.5017,-56.8573,995.7607],[339.5037,-56.8583,1012.1307],[325.4027,-56.8583,1020.7107],[339.5037,-56.8583,1012.1307],[349.5017,-56.8573,995.7607],[349.5187,-56.8573,983.0207],[341.3477,-56.8583,967.3807],[329.7087,-56.8583,956.6207],[309.3557,-56.8583,958.5907]],"members":[{"id":"member","entityId":"entry-27969","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126736","name":"Dark Rune Giant Patrol","speed":1.15,"pathId":1267360,"formationSource":"database-solo","spawnMask":3,"waypoints":[[309.2307,-56.9333,780.9307],[309.3507,-56.6093,803.2177],[309.2307,-56.9333,780.9367],[308.9737,-56.6823,739.5907]],"members":[{"id":"member","entityId":"entry-27969","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126746","name":"Lightning Construct Patrol","speed":1.15,"pathId":1267460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[57.9487,-47.0993,815.3277],[62.9057,-47.0993,806.8837],[63.8857,-47.0993,795.9467],[58.7967,-47.0993,786.8557],[63.8587,-47.0993,795.8997],[62.9057,-47.0993,806.8837]],"members":[{"id":"member","entityId":"entry-27972","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126749","name":"Lightning Construct Patrol","speed":1.15,"pathId":1267490,"formationSource":"database-solo","spawnMask":3,"waypoints":[[45.6237,-47.0993,820.9217],[54.8057,-47.0993,817.4317],[45.6467,-47.0993,820.9127],[32.8077,-47.0993,817.6267],[25.1727,-47.0993,808.8327],[32.8077,-47.0993,817.6267]],"members":[{"id":"member","entityId":"entry-27972","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126750","name":"Lightning Construct Patrol","speed":1.15,"pathId":1267500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[25.5857,-47.0993,788.5687],[36.7577,-47.0993,778.7877],[52.0277,-47.0993,781.0337],[36.7587,-47.0993,778.7867],[25.5857,-47.0993,788.5687],[23.7147,-47.0993,802.3287]],"members":[{"id":"member","entityId":"entry-27972","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126787","name":"Crystalline Shardling Patrol","speed":1.15,"pathId":1267870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[457.3277,-63.7103,776.8247],[457.9607,-64.1563,779.7397],[458.5937,-64.6033,782.6597],[459.2287,-64.9453,785.5827],[459.8667,-65.0243,788.5227],[460.5047,-65.1033,791.4677],[462.4277,-65.3253,795.0577],[465.7257,-65.6133,800.0897],[467.3747,-65.7573,802.6057],[469.0257,-65.9023,805.1257],[470.9567,-66.0333,807.7837],[472.8307,-66.1573,810.1267],[474.7097,-66.2823,812.4757],[476.5567,-66.4053,814.7867],[473.9847,-66.2343,811.5697],[472.1057,-66.1093,809.2207],[470.2207,-65.9843,806.8637],[468.3717,-65.8443,804.1277],[466.7217,-65.7003,801.6107],[465.0707,-65.5563,799.0897],[463.4157,-65.4113,796.5647],[461.7637,-65.2673,794.0447],[460.2497,-65.0713,790.2887],[459.6107,-64.9923,787.3467],[458.9727,-64.8713,784.4057],[458.3407,-64.4243,781.4917],[457.0777,-63.5333,775.6697],[456.4647,-63.1003,772.8437]],"members":[{"id":"member","entityId":"entry-27973","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126788","name":"Crystalline Shardling Patrol","speed":1.15,"pathId":1267880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[463.1917,-64.1343,775.5527],[463.8247,-64.5853,778.4687],[464.4577,-65.0373,781.3867],[465.0917,-65.3683,784.3107],[465.7297,-65.5093,787.2507],[466.3687,-65.6493,790.1947],[467.4467,-65.7703,791.7687],[470.7437,-66.1023,796.8017],[472.3937,-66.2623,799.3187],[474.0447,-66.4143,801.8377],[475.6437,-66.5373,804.0367],[477.5167,-66.6873,806.3797],[479.3947,-66.8383,808.7277],[481.2427,-66.9863,811.0387],[478.6707,-66.7803,807.8227],[476.7907,-66.6293,805.4717],[474.9057,-66.4783,803.1147],[473.3897,-66.3583,800.8387],[471.7397,-66.1993,798.3217],[470.0877,-66.0393,795.8007],[468.4337,-65.8793,793.2757],[466.7827,-65.6943,790.7567],[466.1127,-65.5933,789.0167],[465.5337,-65.4643,786.2927],[464.8487,-65.3153,783.1847],[464.2047,-64.8563,780.2197],[462.9417,-63.9563,774.3997],[462.3277,-63.5183,771.5697]],"members":[{"id":"member","entityId":"entry-27973","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-126790","name":"Krystallus","position":[402.6167,-44.3873,842.9207]},{"id":"creature-126789","name":"Maiden of Grief","position":[308.7497,-62.9773,676.9927]},{"id":"encounter-567","name":"Tribunal of Ages","position":[449.066,-57.1563,985.3294]},{"id":"creature-126792","name":"Sjonnir the Ironshaper","position":[309.8597,-63.4023,1129.5707]}],"objectiveOrder":[{"id":"creature-126790","name":"Krystallus","position":[402.6167,-44.3873,842.9207]},{"id":"creature-126789","name":"Maiden of Grief","position":[308.7497,-62.9773,676.9927]},{"id":"encounter-567","name":"Tribunal of Ages","position":[449.066,-57.1563,985.3294]},{"id":"creature-126792","name":"Sjonnir the Ironshaper","position":[309.8597,-63.4023,1129.5707]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65554,"id":189980,"map":599,"orientation":-2.60053,"phaseMask":1,"position_x":949.208,"position_y":845.198,"position_z":186.281,"rotation0":0,"rotation1":0,"rotation2":-0.963629,"rotation3":0.267244,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65555,"id":189980,"map":599,"orientation":2.25147,"phaseMask":1,"position_x":1063.82,"position_y":714.079,"position_z":203.998,"rotation0":0,"rotation1":0,"rotation2":0.902584,"rotation3":0.430513,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65556,"id":191527,"map":599,"orientation":3.14159,"phaseMask":1,"position_x":909.745,"position_y":345.068,"position_z":203.394,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65557,"id":191292,"map":599,"orientation":-1.5708,"phaseMask":1,"position_x":896.37,"position_y":666.683,"position_z":197.879,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65558,"id":191293,"map":599,"orientation":0,"phaseMask":1,"position_x":1048.15,"position_y":527.051,"position_z":209.189,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65559,"id":191294,"map":599,"orientation":-0.785397,"phaseMask":1,"position_x":1017.82,"position_y":453.865,"position_z":209.189,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65560,"id":191295,"map":599,"orientation":0,"phaseMask":1,"position_x":1048.15,"position_y":631.077,"position_z":209.189,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65561,"id":191296,"map":599,"orientation":-1.5708,"phaseMask":1,"position_x":1206.56,"position_y":666.977,"position_z":197.738,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65562,"id":193906,"map":599,"orientation":3.14159,"phaseMask":1,"position_x":1314.21,"position_y":666.193,"position_z":189.397,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65563,"id":193907,"map":599,"orientation":0.829032,"phaseMask":1,"position_x":894.825,"position_y":330.104,"position_z":203.714,"rotation0":0,"rotation1":0,"rotation2":0.402747,"rotation3":0.915311,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65564,"id":190586,"map":599,"orientation":0,"phaseMask":1,"position_x":880.406,"position_y":345.164,"position_z":203.706,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65565,"id":192163,"map":599,"orientation":-2.82804,"phaseMask":1,"position_x":1293.96,"position_y":735.123,"position_z":196.377,"rotation0":0,"rotation1":0,"rotation2":-0.987736,"rotation3":0.156135,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65566,"id":192164,"map":599,"orientation":-0.34004,"phaseMask":1,"position_x":1293.96,"position_y":598.708,"position_z":196.377,"rotation0":0,"rotation1":0,"rotation2":-0.169202,"rotation3":0.985581,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65567,"id":191669,"map":599,"orientation":0.785397,"phaseMask":1,"position_x":888.559,"position_y":323.302,"position_z":205.345,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65568,"id":191670,"map":599,"orientation":-0.785399,"phaseMask":1,"position_x":887.285,"position_y":367.833,"position_z":205.345,"rotation0":0,"rotation1":0,"rotation2":-0.382684,"rotation3":0.923879,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65569,"id":191671,"map":599,"orientation":2.35619,"phaseMask":1,"position_x":930.975,"position_y":323.753,"position_z":205.345,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65570,"id":191459,"map":599,"orientation":3.14159,"phaseMask":1,"position_x":1153.23,"position_y":720.171,"position_z":197.738,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65571,"id":192489,"map":599,"orientation":-1.5708,"phaseMask":1,"position_x":1152.8,"position_y":818.52,"position_z":198.324,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65572,"id":192490,"map":599,"orientation":-1.5708,"phaseMask":1,"position_x":1152.8,"position_y":818.52,"position_z":198.324,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":151790,"id":193996,"map":599,"orientation":0,"phaseMask":1,"position_x":880.406,"position_y":345.164,"position_z":203.706,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":2,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/halls-of-stone/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["16/17 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"draktharon-keep","title":"Drak'Tharon Keep","mapId":600,"lfgDungeonIds":[214,215],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[72,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Drak'Tharon Keep","theme":"Open-world expedition","summary":"Fight through Drak'Tharon Keep, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Drak'Tharon Keep...","unchartedAreaName":"Uncharted Drak'Tharon Keep","background":"#081016","fog":{"color":"#0a141c","near":36,"far":286.5946},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/600-draktheronkeep/visual.glb","checksum":"6a03735ad1c7141f72243b91bdd300784bad19c0e41c5c0a6b7a0f0e760e5081","size":24634228,"triangleCount":1914607}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-000.glb","checksum":"c6250d1e360a35bc714122b764f5b07dc840b41ce4fc69080e15a3176ba85b4f","size":130952,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-001.glb","checksum":"7c754a3ae46549440149ac14007b09411a4424b2f1856510b8d483ccac2a8fb1","size":130640,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-002.glb","checksum":"25df76551765a59d1893f1f120f5798a5c389fb7ac14d2dd2775f9949b9e753c","size":131988,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-003.glb","checksum":"042dcd68e48c627eb565b15b014ab2406c55e3e59da7d47165a648039cb0864e","size":131836,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-004.glb","checksum":"ba6d07f01038f15669f245fb9c534f58c1271ad24a6d6d8cee8f7fe54ece2ff7","size":132964,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-005.glb","checksum":"8ad38de85df1a8611d3ccbcc607fa4a757afd20819d697b07f473262acc4625a","size":147588,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-006.glb","checksum":"fa6f92a611ff44330ffa06938fe96be3bc758e9aca982dc9b8fb1ab0e74a5cd3","size":166352,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-007.glb","checksum":"c6b6068412f46770a58030c3bb47e92babacd7e17ba73c676bb73f0bf2265ea3","size":260736,"triangleCount":66555},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-008.glb","checksum":"6df9f37308c03e153b27d647b0c95cabe295eb2ed231262028becbb20d447944","size":310120,"triangleCount":71640},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-009.glb","checksum":"2710b4b875aed819f8f1b4673b50ff97e2bfd982e868da6d069885945a9ccc22","size":151720,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-010.glb","checksum":"750762de26e25ff833689a2e3f1b0ea55046d60320b7a636bd927498ff5989fe","size":145404,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-011.glb","checksum":"5a20acb7d13b2f7cd4dfe8f4f55a5d5cf6616f58edee066e26f3e74f2687be71","size":266728,"triangleCount":72207},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-012.glb","checksum":"f5d042513fb14ebf753d90734695ce3240a8c4ab6ce710e8f9cc009197df2fa8","size":205632,"triangleCount":67609},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-013.glb","checksum":"b978d24d82c222c2a8501ec6f930f356172866b9f37689f9abe1f9f518ad7898","size":1201780,"triangleCount":74072},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-014.glb","checksum":"51b73d813acb3bc6fe484d86f1f8110ad1e464af227d537df2a2e7d46df97400","size":212768,"triangleCount":67484},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-015.glb","checksum":"63c3692bcd810275e454568f766950d15862472655a255fcc0414cdcae683303","size":172216,"triangleCount":66620},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-016.glb","checksum":"50ab4aaa85b657eed525173ee93f5a235b0f57f8b18c9ecb9b5d7c89066f085d","size":145820,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-017.glb","checksum":"24f9bd6f478e592407c11b37d4bf9486ffcfaaf749ce327464989836e65986dc","size":187456,"triangleCount":66649},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-018.glb","checksum":"a288d65c8b475f2a9a5a4ee4a112c3ef6b2c5a1788b00eec365b566c910722c0","size":191256,"triangleCount":66421},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-019.glb","checksum":"c64ffa345381fe8b86f4331e73791984b81e974fda8d5598881fd583e515ac82","size":336060,"triangleCount":75280},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-020.glb","checksum":"522f3de0441cfe6bc813a421b75828be6c5b277074d837f1952344fe0f2de924","size":152572,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-021.glb","checksum":"ef3b5cb2d86ce9adfab263d38820c3b8fa4aae5abe51921c50078793c0728bef","size":141192,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-022.glb","checksum":"10a16f42b69053620083db06d2e177e5e4a30a7edc139fd9e2c019b19686fcbf","size":185020,"triangleCount":67609},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-023.glb","checksum":"cb0d7dd64437e9c936676b5e66c8eec5220d7733987f8b8baa1dee01b0eb2c33","size":167144,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-024.glb","checksum":"3c4a274a2d47e76c8ae2b1aeaaee34e1ec0fedf5a7892180f6dd7891645b977a","size":169904,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-025.glb","checksum":"4afcd91696b56f6e9d62547fbff018759ec576ae2dfe8878872c29f0fe5dad8c","size":149156,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/600-draktheronkeep/navigation.glb","checksum":"3ae4c87f2dbe01a96e489e7f3590ead93b260e3a70fc4fdb59f397be977443d7","size":4362736,"triangleCount":364577}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-1430.6504,-31.6747,-612.0304],"max":[-1078.5994,139.2546,-213.9824]},"entrance":{"name":"Drak'Tharon Keep Entrance","footPosition":[-1123.5994,-1.6834,-539.4994],"forward":[-0.17887797828310315,0,0.9838712664192149],"yaw":-0.17984591757895443},"areas":[{"id":"entrance","name":"Drak'Tharon Keep Entrance","center":[-1123.5994,-1.6834,-539.4994],"radius":35},{"id":"area-trollgore","name":"Trollgore's Encounter","center":[-1295.7704,13.8176,-288.3324],"radius":42},{"id":"area-novos-the-summoner","name":"Novos the Summoner's Encounter","center":[-1373.3514,14.6199,-401.4264],"radius":42},{"id":"area-king-dred","name":"King Dred's Encounter","center":[-1332.5974,17.6017,-567.0304],"radius":42},{"id":"area-the-prophet-tharon-ja","name":"The Prophet Tharon'ja's Encounter","center":[-1311.0284,119.2546,-258.9824],"radius":42}],"entities":{"entry-26624":{"id":"entry-26624","kind":"mob","name":"Wretched Belcher","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/2f64a293ef2b8514538c3e3c90e480b7f8d3c71dc2855c2183bad097933f4da2.glb","rotationY":-1.5707963267948966,"groundOffset":0.0061,"labelHeight":5.6966,"markerRadius":2.5109}}},"entry-26625":{"id":"entry-26625","kind":"mob","name":"Darkweb Recluse","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-16462-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2209,"labelHeight":3.0139,"markerRadius":2.3398}}},"entry-26626":{"id":"entry-26626","kind":"mob","name":"Scourge Reanimator","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-24084-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":4.6049,"markerRadius":0.944}}},"entry-26628":{"id":"entry-26628","kind":"mob","name":"Drakkari Scytheclaw","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-19732-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.023,"labelHeight":3.7328,"markerRadius":2.526}}},"entry-27909":{"id":"entry-27909","kind":"mob","name":"Darkweb Victim","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-24925-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.6446,"labelHeight":4.0971,"markerRadius":1.7013}}},"entry-26630":{"id":"entry-26630","kind":"boss","name":"Trollgore","title":"Dungeon Boss","hasLoot":true,"combat":{"level":76,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-49637","name":"Infected Wound","spellId":49637,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6000,"damageMultiplier":1.35},{"id":"spell-49639","name":"Crush","spellId":49639,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-49380","name":"Consume","spellId":49380,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-49555","name":"Corpse Explode","spellId":49555,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-26352-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.017,"labelHeight":6.9778,"markerRadius":2.2481}}},"entry-26631":{"id":"entry-26631","kind":"boss","name":"Novos the Summoner","title":"Dungeon Boss","hasLoot":true,"combat":{"level":76,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52106","name":"Beam Channel","spellId":52106,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5372,"damageMultiplier":1.35},{"id":"spell-49034","name":"Blizzard","spellId":49034,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5372,"damageMultiplier":0.82,"radius":11},{"id":"spell-50089","name":"Wrath of Misery","spellId":50089,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5372,"damageMultiplier":1.35},{"id":"spell-49198","name":"Arcane Blast","spellId":49198,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5372,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-26292-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.995,"labelHeight":13.5311,"markerRadius":2.9978}}},"entry-26635":{"id":"entry-26635","kind":"mob","name":"Risen Drakkari Warrior","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27058-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0281,"labelHeight":5.6905,"markerRadius":1.0315}}},"entry-26620":{"id":"entry-26620","kind":"mob","name":"Drakkari Guardian","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27077-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0176,"labelHeight":4.7168,"markerRadius":0.8267}}},"entry-26623":{"id":"entry-26623","kind":"mob","name":"Scourge Brute","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/9a6dd0a8f5d239e51ad1ceaed4079f25646ad7be2e952cc4feef7bbcda29613b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":3.6388,"markerRadius":0.7423}}},"entry-26636":{"id":"entry-26636","kind":"mob","name":"Risen Drakkari Soulmage","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-26857-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0161,"labelHeight":3.2533,"markerRadius":0.65}}},"entry-26637":{"id":"entry-26637","kind":"mob","name":"Risen Drakkari Handler","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.434272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-26860-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0201,"labelHeight":4.0646,"markerRadius":0.7368}}},"entry-26638":{"id":"entry-26638","kind":"mob","name":"Risen Drakkari Bat Rider","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27056-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0241,"labelHeight":4.8776,"markerRadius":0.8841}}},"entry-26639":{"id":"entry-26639","kind":"mob","name":"Drakkari Shaman","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27083-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0176,"labelHeight":4.7168,"markerRadius":0.8267}}},"entry-26641":{"id":"entry-26641","kind":"mob","name":"Drakkari Gutripper","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-19734-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.023,"labelHeight":3.7328,"markerRadius":2.526}}},"entry-27431":{"id":"entry-27431","kind":"mob","name":"Drakkari Commander","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27075-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0239,"labelHeight":6.4148,"markerRadius":1.1243}}},"entry-27483":{"id":"entry-27483","kind":"boss","name":"King Dred","title":"Dungeon Boss","hasLoot":true,"combat":{"level":76,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22686","name":"Bellowing Roar","spellId":22686,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4650,"damageMultiplier":0.82,"radius":11},{"id":"spell-48849","name":"Fearsome Roar","spellId":48849,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4650,"damageMultiplier":0.82,"radius":11},{"id":"spell-48878","name":"Piercing Slash","spellId":48878,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-48873","name":"Mangling Slash","spellId":48873,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":2500,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-5240-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1061,"labelHeight":20.1113,"markerRadius":4.5}}},"entry-26830":{"id":"entry-26830","kind":"mob","name":"Risen Drakkari Death Knight","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27062-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0281,"labelHeight":5.6905,"markerRadius":1.0315}}},"entry-27871":{"id":"entry-27871","kind":"mob","name":"Flesheating Ghoul","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-829-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0011,"labelHeight":2.2953,"markerRadius":0.65}}},"entry-26621":{"id":"entry-26621","kind":"mob","name":"Ghoul Tormentor","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-24994-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.7604,"markerRadius":0.65}}},"entry-26622":{"id":"entry-26622","kind":"mob","name":"Drakkari Bat","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/d1808c723ce299735a6e04353e27ea6350abc507068bc4737393e3d16145bac6.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.17,"markerRadius":2.1069}}},"entry-26632":{"id":"entry-26632","kind":"boss","name":"The Prophet Tharon'ja","title":"Dungeon Boss","hasLoot":true,"combat":{"level":76,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-53242","name":"Clear Gift of Tharon'ja","spellId":53242,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4952,"damageMultiplier":1.35},{"id":"spell-49356","name":"Decay Flesh","spellId":49356,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-49527","name":"Curse of Life","spellId":49527,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-49528","name":"Shadow Volley","spellId":49528,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6000,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27072-animated.glb","rotationY":-1.5707963267948966,"groundOffset":13.929,"labelHeight":23.1673,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-127405","entityId":"entry-26625","position":[-1357.7064,14.5985,-305.5464],"yaw":-1.40479,"spawnMask":3},{"id":"creature-127406","entityId":"entry-26625","position":[-1352.7124,14.9598,-315.3534],"yaw":-6.17846,"spawnMask":3},{"id":"creature-127407","entityId":"entry-26625","position":[-1346.9924,14.682,-304.3254],"yaw":-1.20428,"spawnMask":3},{"id":"creature-127408","entityId":"entry-26625","position":[-1356.9334,14.82,-271.2634],"yaw":-2.16421,"spawnMask":3},{"id":"creature-127409","entityId":"entry-26625","position":[-1367.4244,14.745,-278.1614],"yaw":-1.64061,"spawnMask":3},{"id":"creature-127410","entityId":"entry-26626","position":[-1240.4654,-11.6685,-420.2994],"yaw":-2.83436,"spawnMask":3},{"id":"creature-127413","entityId":"entry-26628","position":[-1353.8164,17.6363,-556.0134],"yaw":-2.32129,"spawnMask":3},{"id":"creature-127414","entityId":"entry-26628","position":[-1329.5384,17.6363,-549.8354],"yaw":-5.88176,"spawnMask":3},{"id":"creature-127415","entityId":"entry-26628","position":[-1298.3714,17.6416,-563.6334],"yaw":-5.61996,"spawnMask":3},{"id":"creature-127416","entityId":"entry-27909","position":[-1336.8654,14.6822,-309.2584],"yaw":-1.23918,"spawnMask":3},{"id":"creature-127417","entityId":"entry-27909","position":[-1375.1814,14.6822,-267.3454],"yaw":-3.07178,"spawnMask":3},{"id":"creature-127418","entityId":"entry-27909","position":[-1361.8044,14.6822,-331.5204],"yaw":-0.244346,"spawnMask":3},{"id":"creature-127419","entityId":"entry-27909","position":[-1339.4884,14.6822,-263.0254],"yaw":-4.06662,"spawnMask":3},{"id":"creature-127420","entityId":"entry-27909","position":[-1385.6504,16.8367,-277.9914],"yaw":-1.51844,"spawnMask":3},{"id":"creature-127421","entityId":"entry-27909","position":[-1376.3364,14.6822,-296.3534],"yaw":-1.37881,"spawnMask":3},{"id":"creature-127422","entityId":"entry-26630","position":[-1295.7704,13.8176,-288.3324],"yaw":0,"spawnMask":3},{"id":"creature-127424","entityId":"entry-26631","position":[-1373.3514,14.6199,-401.4264],"yaw":-4.45059,"spawnMask":3},{"id":"creature-127425","entityId":"entry-26635","position":[-1208.2604,-1.5902,-346.3814],"yaw":-2.53073,"spawnMask":3},{"id":"creature-127426","entityId":"entry-26635","position":[-1243.6064,-10.3485,-389.0604],"yaw":-2.68781,"spawnMask":3},{"id":"creature-127427","entityId":"entry-26635","position":[-1231.2964,59.9972,-444.3074],"yaw":-1.41372,"spawnMask":3},{"id":"creature-127428","entityId":"entry-26635","position":[-1230.0274,59.9136,-439.9044],"yaw":-2.57147,"spawnMask":3},{"id":"creature-127429","entityId":"entry-26635","position":[-1288.0324,-0.7779,-356.3004],"yaw":-0.645772,"spawnMask":3},{"id":"creature-127430","entityId":"entry-26635","position":[-1239.6934,-11.5848,-439.5774],"yaw":-2.72271,"spawnMask":3},{"id":"creature-127431","entityId":"entry-26635","position":[-1237.8214,-11.5848,-418.6394],"yaw":-5.61996,"spawnMask":3},{"id":"creature-127432","entityId":"entry-26635","position":[-1250.0134,59.9957,-334.3854],"yaw":-1.78024,"spawnMask":3},{"id":"creature-127433","entityId":"entry-26635","position":[-1247.9574,59.9834,-325.3954],"yaw":-2.30383,"spawnMask":3},{"id":"creature-127434","entityId":"entry-26635","position":[-1211.4474,-1.6049,-348.3334],"yaw":-2.3911,"spawnMask":3},{"id":"creature-127435","entityId":"entry-26635","position":[-1231.5844,-10.3485,-385.9614],"yaw":-3.33358,"spawnMask":3},{"id":"creature-127436","entityId":"entry-26620","position":[-1230.4234,-11.6434,-545.2944],"yaw":-2.33,"spawnMask":3},{"id":"creature-127437","entityId":"entry-26620","position":[-1235.8834,-11.1034,-550.4864],"yaw":-2.33,"spawnMask":3},{"id":"creature-127438","entityId":"entry-26623","position":[-1239.9904,59.9953,-471.4944],"yaw":-6.23082,"spawnMask":3},{"id":"creature-127439","entityId":"entry-26636","position":[-1293.8604,-1.6864,-353.1964],"yaw":-0.558505,"spawnMask":3},{"id":"creature-127440","entityId":"entry-26636","position":[-1242.3174,-11.0589,-506.9094],"yaw":-4.29351,"spawnMask":3},{"id":"creature-127441","entityId":"entry-26636","position":[-1234.9624,-11.0125,-487.5854],"yaw":-6.19592,"spawnMask":3},{"id":"creature-127443","entityId":"entry-26637","position":[-1319.2024,17.678,-527.4774],"yaw":-1.67738,"spawnMask":3},{"id":"creature-127445","entityId":"entry-26638","position":[-1243.1074,78.4143,-461.7454],"yaw":-5.50128,"spawnMask":3},{"id":"creature-127446","entityId":"entry-26638","position":[-1231.3354,81.0633,-480.3404],"yaw":-1.32326,"spawnMask":3},{"id":"creature-127447","entityId":"entry-26638","position":[-1250.5394,74.4725,-464.9784],"yaw":-5.77406,"spawnMask":3},{"id":"creature-127448","entityId":"entry-26638","position":[-1304.6004,14.0321,-423.1304],"yaw":-3.94444,"spawnMask":3},{"id":"creature-127449","entityId":"entry-26639","position":[-1222.4434,60.0549,-371.6184],"yaw":-5.61996,"spawnMask":3},{"id":"creature-127451","entityId":"entry-26639","position":[-1227.5884,59.999,-364.1564],"yaw":-3.87463,"spawnMask":3},{"id":"creature-127452","entityId":"entry-26641","position":[-1338.1374,17.561,-565.3174],"yaw":-1.0648,"spawnMask":3},{"id":"creature-127453","entityId":"entry-26641","position":[-1295.3154,18.2581,-549.9744],"yaw":-2.68781,"spawnMask":3},{"id":"creature-127454","entityId":"entry-26641","position":[-1358.3054,17.6363,-541.2134],"yaw":-2.98451,"spawnMask":3},{"id":"creature-127455","entityId":"entry-26641","position":[-1310.1424,17.6509,-563.7534],"yaw":-1.16937,"spawnMask":3},{"id":"creature-127507","entityId":"entry-27483","position":[-1332.5974,17.6017,-567.0304],"yaw":-4.06062,"spawnMask":3},{"id":"creature-127554","entityId":"entry-26830","position":[-1374.4594,89.1906,-298.7334],"yaw":-2.05949,"spawnMask":3},{"id":"creature-127555","entityId":"entry-26830","position":[-1364.9974,89.1906,-296.2864],"yaw":-3.08923,"spawnMask":3},{"id":"creature-127556","entityId":"entry-26830","position":[-1335.1614,89.2226,-310.6454],"yaw":-1.58825,"spawnMask":3},{"id":"creature-127557","entityId":"entry-26830","position":[-1334.2614,89.1986,-299.4124],"yaw":-1.79769,"spawnMask":3},{"id":"creature-127558","entityId":"entry-27871","position":[-1305.7994,-1.6862,-325.1294],"yaw":-0.296706,"spawnMask":3},{"id":"creature-127559","entityId":"entry-27871","position":[-1298.2914,-1.6862,-350.6744],"yaw":-1.8326,"spawnMask":3},{"id":"creature-127560","entityId":"entry-27871","position":[-1283.6074,-1.6862,-341.4324],"yaw":-2.28638,"spawnMask":3},{"id":"creature-127567","entityId":"entry-26620","position":[-1286.9674,-1.6862,-326.2614],"yaw":-3.05433,"spawnMask":3},{"id":"creature-127568","entityId":"entry-26620","position":[-1282.2094,-1.6862,-343.1064],"yaw":-0.750492,"spawnMask":3},{"id":"creature-127569","entityId":"entry-26620","position":[-1295.7944,-1.6862,-351.3794],"yaw":-3.735,"spawnMask":3},{"id":"creature-127570","entityId":"entry-26620","position":[-1304.9964,-2.229,-330.9444],"yaw":-4.99164,"spawnMask":3},{"id":"creature-127571","entityId":"entry-26620","position":[-1296.8854,-2.229,-345.7704],"yaw":-1.88496,"spawnMask":3},{"id":"creature-127572","entityId":"entry-26620","position":[-1232.8504,-11.5848,-496.1464],"yaw":-0.034907,"spawnMask":3},{"id":"creature-127573","entityId":"entry-26620","position":[-1221.0104,-7.2251,-301.9414],"yaw":-0.541052,"spawnMask":3},{"id":"creature-127574","entityId":"entry-26620","position":[-1216.2914,-6.8114,-293.3734],"yaw":-5.044,"spawnMask":3},{"id":"creature-127575","entityId":"entry-26620","position":[-1242.7614,-10.7935,-502.8034],"yaw":-2.16421,"spawnMask":3},{"id":"creature-127576","entityId":"entry-26620","position":[-1235.0554,-11.515,-513.5484],"yaw":-2.77507,"spawnMask":3},{"id":"creature-127577","entityId":"entry-26620","position":[-1202.6084,-1.639,-283.0024],"yaw":-3.47321,"spawnMask":3},{"id":"creature-127578","entityId":"entry-26620","position":[-1243.8754,59.9698,-327.0364],"yaw":-5.09636,"spawnMask":3},{"id":"creature-127579","entityId":"entry-26620","position":[-1246.2294,59.9964,-334.7784],"yaw":-4.83456,"spawnMask":3},{"id":"creature-127580","entityId":"entry-26620","position":[-1228.0494,59.9974,-442.9904],"yaw":-5.07891,"spawnMask":3},{"id":"creature-127583","entityId":"entry-26620","position":[-1290.2264,-2.229,-337.4554],"yaw":-1.5708,"spawnMask":3},{"id":"creature-127584","entityId":"entry-26620","position":[-1305.0234,-1.6862,-323.1904],"yaw":-4.24115,"spawnMask":3},{"id":"creature-127585","entityId":"entry-26620","position":[-1234.3084,-11.5852,-417.6164],"yaw":-3.07178,"spawnMask":3},{"id":"creature-127586","entityId":"entry-26620","position":[-1233.7004,-1.6388,-313.8074],"yaw":-5.75959,"spawnMask":3},{"id":"creature-127587","entityId":"entry-26620","position":[-1240.4684,-11.5348,-485.1984],"yaw":-3.22886,"spawnMask":3},{"id":"creature-127588","entityId":"entry-26620","position":[-1219.3564,-1.5678,-262.4904],"yaw":-5.67232,"spawnMask":3},{"id":"creature-127589","entityId":"entry-26620","position":[-1247.2704,59.9953,-461.9294],"yaw":-3.9968,"spawnMask":3},{"id":"creature-127590","entityId":"entry-26620","position":[-1238.5134,59.9953,-467.4704],"yaw":-3.9619,"spawnMask":3},{"id":"creature-127591","entityId":"entry-26620","position":[-1221.9044,60.0606,-359.3714],"yaw":-4.10152,"spawnMask":3},{"id":"creature-127592","entityId":"entry-26620","position":[-1214.3554,-1.5663,-269.9884],"yaw":-3.82227,"spawnMask":3},{"id":"creature-127593","entityId":"entry-26620","position":[-1234.8474,-11.5851,-438.3804],"yaw":-3.80482,"spawnMask":3},{"id":"creature-127594","entityId":"entry-26620","position":[-1239.8244,-11.5848,-412.2284],"yaw":-4.67748,"spawnMask":3},{"id":"creature-127595","entityId":"entry-26620","position":[-1214.9984,-1.6025,-340.9054],"yaw":-0.802851,"spawnMask":3},{"id":"creature-127596","entityId":"entry-26626","position":[-1239.5684,-11.6684,-538.0094],"yaw":-2.451,"spawnMask":3},{"id":"creature-127597","entityId":"entry-26620","position":[-1217.7944,-1.6067,-283.3784],"yaw":-1.79769,"spawnMask":3},{"id":"creature-127598","entityId":"entry-26620","position":[-1196.3984,-1.6355,-287.4804],"yaw":-0.087266,"spawnMask":3},{"id":"creature-127599","entityId":"entry-26620","position":[-1216.0184,-1.6022,-323.9114],"yaw":-3.85718,"spawnMask":3},{"id":"creature-127600","entityId":"entry-26620","position":[-1242.1964,-11.5848,-425.2534],"yaw":-3.97935,"spawnMask":3},{"id":"creature-127601","entityId":"entry-26620","position":[-1239.0734,-11.5848,-448.7754],"yaw":-0.418879,"spawnMask":3},{"id":"creature-127602","entityId":"entry-26620","position":[-1211.2504,-7.2345,-299.2204],"yaw":-3.75246,"spawnMask":3},{"id":"creature-127603","entityId":"entry-26620","position":[-1243.5644,-11.5848,-436.2034],"yaw":-2.18166,"spawnMask":3},{"id":"creature-127604","entityId":"entry-26621","position":[-1303.2364,-2.229,-329.1944],"yaw":-3.80482,"spawnMask":3},{"id":"creature-127605","entityId":"entry-26621","position":[-1303.4654,-1.6862,-321.7584],"yaw":-4.01426,"spawnMask":3},{"id":"creature-127606","entityId":"entry-26621","position":[-1294.5014,-2.229,-347.2804],"yaw":-5.5676,"spawnMask":3},{"id":"creature-127607","entityId":"entry-26621","position":[-1294.0064,-1.6862,-351.4984],"yaw":-4.59022,"spawnMask":3},{"id":"creature-127608","entityId":"entry-26621","position":[-1283.2174,-1.6862,-344.8714],"yaw":-0.471239,"spawnMask":3},{"id":"creature-127609","entityId":"entry-26621","position":[-1288.1084,-2.229,-339.6224],"yaw":-6.00393,"spawnMask":3},{"id":"creature-127610","entityId":"entry-26622","position":[-1310.2564,14.0323,-429.9274],"yaw":-4.67748,"spawnMask":3},{"id":"creature-127611","entityId":"entry-26622","position":[-1299.0194,14.0323,-427.6014],"yaw":-4.92183,"spawnMask":3},{"id":"creature-127616","entityId":"entry-26622","position":[-1318.0104,14.0323,-420.5964],"yaw":-3.92699,"spawnMask":3},{"id":"creature-127617","entityId":"entry-26623","position":[-1249.7874,59.9953,-467.7404],"yaw":-0.383972,"spawnMask":3},{"id":"creature-200143","entityId":"entry-26632","position":[-1311.0284,119.2546,-258.9824],"yaw":-4.76475,"spawnMask":3}],"roamingPacks":[{"id":"patrol-127403","name":"Wretched Belcher Patrol","speed":1.15,"pathId":1274030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1295.8684,-2.0625,-343.3354],[-1293.9224,-1.8335,-336.4214],[-1298.6494,-1.8403,-330.4684],[-1303.1394,-2.2631,-334.4844],[-1307.8734,-1.5411,-346.0284],[-1308.1994,-1.6228,-347.3834],[-1300.9804,-2.0411,-346.3504],[-1295.7554,-2.1765,-343.3614],[-1293.8974,-1.8335,-336.4224],[-1298.6544,-1.8374,-330.4534],[-1303.1514,-2.2613,-334.4734],[-1307.8914,-1.5411,-346.0474],[-1308.2004,-1.622,-347.3914],[-1300.9794,-2.0411,-346.3514],[-1295.7574,-2.1736,-343.3664],[-1293.8964,-1.8335,-336.4224],[-1298.6604,-1.8332,-330.4324],[-1303.1754,-2.2575,-334.4514],[-1307.9074,-1.5411,-346.0644],[-1308.2054,-1.6192,-347.4214]],"members":[{"id":"member","entityId":"entry-26624","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127404","name":"Wretched Belcher Patrol","speed":1.15,"pathId":1274040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1276.1384,-0.742,-340.3124],[-1279.3094,-1.3247,-333.2864],[-1281.8074,-1.7697,-329.1114],[-1285.9954,-1.5954,-322.5614],[-1293.7054,-2.0607,-320.5574],[-1295.3244,-2.0717,-320.9714],[-1296.9664,-2.056,-332.2774],[-1294.7484,-2.1198,-336.4404],[-1293.2674,-2.0118,-339.0974],[-1291.0694,-1.9438,-347.2864],[-1285.9384,-0.5854,-351.9694],[-1283.1314,-0.6834,-352.0824],[-1278.4964,-0.6354,-350.8484]],"members":[{"id":"member","entityId":"entry-26624","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127411","name":"Scourge Reanimator Patrol","speed":1.15,"pathId":1274110,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1236.8534,-11.5488,-508.9844],[-1235.5914,-11.6685,-503.3434],[-1238.0554,-10.8733,-497.6284],[-1240.4594,-11.649,-491.7934],[-1240.8014,-11.6747,-484.7114],[-1240.4674,-11.6507,-491.7134],[-1238.0554,-10.8733,-497.6284],[-1235.5914,-11.6685,-503.3434],[-1236.8534,-11.5488,-508.9844],[-1239.6014,-10.6212,-516.2754]],"members":[{"id":"member","entityId":"entry-26626","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127412","name":"Scourge Reanimator Patrol","speed":1.15,"pathId":1274120,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1238.4364,-11.6685,-426.6934],[-1240.4654,-11.6685,-420.2994],[-1238.4364,-11.6685,-426.6934],[-1239.0094,-11.6685,-433.0994],[-1236.3754,-11.6685,-438.8124],[-1235.3494,-11.6685,-446.6544],[-1236.3754,-11.6685,-438.8124],[-1239.0094,-11.6685,-433.0994]],"members":[{"id":"member","entityId":"entry-26626","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127442","name":"Risen Drakkari Handler Patrol","speed":1.15,"pathId":1274420,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1307.6994,17.553,-529.0384],[-1354.4204,17.5531,-514.7404]],"members":[{"id":"member","entityId":"entry-26637","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127444","name":"Risen Drakkari Handler Patrol","speed":1.15,"pathId":1274440,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1287.9274,16.0938,-488.4154],[-1287.6774,16.0938,-500.4154]],"members":[{"id":"member","entityId":"entry-26637","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127456","name":"Drakkari Gutripper Patrol","speed":1.15,"pathId":1274560,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1284.5084,15.8949,-508.2134],[-1284.6244,15.8952,-505.1964],[-1284.7414,15.8954,-502.1824],[-1284.8574,15.8957,-499.1664],[-1284.9734,15.8969,-496.1574],[-1285.0894,15.8969,-493.1484],[-1285.2064,15.8969,-490.1344],[-1285.3224,15.8595,-487.1224],[-1285.4384,15.8163,-484.1154],[-1285.5094,15.7281,-482.2664],[-1285.3504,15.8489,-486.3874],[-1285.2344,15.897,-489.3994],[-1285.1184,15.8969,-492.4114],[-1285.0024,15.8969,-495.4204],[-1284.8854,15.8957,-498.4304],[-1284.7694,15.8955,-501.4404],[-1284.6244,15.8952,-505.1964]],"members":[{"id":"member","entityId":"entry-26641","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127457","name":"Drakkari Gutripper Patrol","speed":1.15,"pathId":1274570,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1290.5034,15.8965,-508.4444],[-1290.6204,15.8968,-505.4294],[-1290.7364,15.8986,-502.4134],[-1290.8524,15.8986,-499.4004],[-1290.9694,15.8987,-496.3884],[-1291.0854,15.8987,-493.3794],[-1291.2014,15.8987,-490.3654],[-1291.3174,15.8646,-487.3534],[-1291.4334,15.8214,-484.3464],[-1291.5054,15.7948,-482.4984],[-1291.3464,15.854,-486.6194],[-1291.2294,15.8987,-489.6314],[-1291.1134,15.8987,-492.6444],[-1290.9974,15.8987,-495.6504],[-1290.8814,15.8986,-498.6594],[-1290.7654,15.8986,-501.6704],[-1290.6204,15.8968,-505.4294]],"members":[{"id":"member","entityId":"entry-26641","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127471","name":"Drakkari Commander Patrol","speed":1.15,"pathId":1274710,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1245.2554,59.9185,-395.8564],[-1246.5264,59.9079,-368.3804]],"members":[{"id":"member","entityId":"entry-27431","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127552","name":"Risen Drakkari Death Knight Patrol","speed":1.15,"pathId":1275520,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1356.6024,89.0876,-302.4024],[-1373.2464,89.0846,-302.0164],[-1356.6024,89.0876,-302.4024],[-1335.3404,89.0536,-304.9104]],"members":[{"id":"member","entityId":"entry-26830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127553","name":"Risen Drakkari Death Knight Patrol","speed":1.15,"pathId":1275530,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1244.3714,59.915,-425.0614],[-1244.1454,59.9126,-436.3344],[-1243.7864,59.9128,-445.7774],[-1244.1454,59.9126,-436.3344],[-1244.3714,59.915,-425.0614],[-1243.8934,59.914,-412.8904]],"members":[{"id":"member","entityId":"entry-26830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127582","name":"Drakkari Guardian Patrol","speed":1.15,"pathId":1275820,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1230.6584,59.9145,-370.4304],[-1226.8764,59.9149,-373.6214],[-1230.6584,59.9145,-370.4304],[-1233.3604,59.9142,-364.2484],[-1232.0804,59.9144,-359.5104],[-1228.9904,59.9146,-354.9584],[-1225.8384,59.915,-352.2834],[-1228.9904,59.9146,-354.9584],[-1232.0804,59.9144,-359.5104],[-1233.3604,59.9142,-364.2484]],"members":[{"id":"member","entityId":"entry-26620","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127612","name":"Drakkari Bat Patrol","speed":1.15,"pathId":1276120,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1329.7484,15.8801,-421.5144],[-1323.5564,15.8801,-415.0124],[-1314.9444,13.9483,-417.5054],[-1311.7114,13.9449,-426.7554],[-1318.2264,13.9482,-433.3044],[-1325.6934,15.881,-432.8264],[-1330.6494,15.8807,-428.7104]],"members":[{"id":"member","entityId":"entry-26622","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127613","name":"Drakkari Bat Patrol","speed":1.15,"pathId":1276130,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1304.9094,13.9487,-432.0834],[-1299.2444,13.9483,-426.9934],[-1291.1544,13.9485,-426.6024],[-1287.8004,15.8801,-433.6554],[-1289.3744,15.8804,-439.1074],[-1297.2124,15.8802,-443.8904],[-1301.5374,14.5758,-442.7594]],"members":[{"id":"member","entityId":"entry-26622","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127614","name":"Drakkari Bat Patrol","speed":1.15,"pathId":1276140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1315.9534,15.8801,-409.0954],[-1311.4194,15.8801,-403.4504],[-1302.5304,15.8801,-400.8914],[-1297.6744,15.8801,-408.5194],[-1300.4814,13.9481,-414.5754],[-1306.9574,13.948,-417.8234],[-1312.9484,13.9486,-414.3834]],"members":[{"id":"member","entityId":"entry-26622","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127615","name":"Drakkari Bat Patrol","speed":1.15,"pathId":1276150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1299.2384,15.8803,-445.2704],[-1303.6274,15.8804,-451.1324],[-1311.4734,15.8801,-450.2724],[-1315.2564,15.2557,-442.5094],[-1311.2404,13.9504,-435.1224],[-1303.9074,13.949,-434.5164],[-1297.8214,13.9496,-438.5704]],"members":[{"id":"member","entityId":"entry-26622","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-127422","name":"Trollgore","position":[-1295.7704,13.8176,-288.3324]},{"id":"creature-127424","name":"Novos the Summoner","position":[-1373.3514,14.6199,-401.4264]},{"id":"creature-127507","name":"King Dred","position":[-1332.5974,17.6017,-567.0304]},{"id":"creature-200143","name":"The Prophet Tharon'ja","position":[-1311.0284,119.2546,-258.9824]}],"objectiveOrder":[{"id":"creature-127422","name":"Trollgore","position":[-1295.7704,13.8176,-288.3324]},{"id":"creature-127424","name":"Novos the Summoner","position":[-1373.3514,14.6199,-401.4264]},{"id":"creature-127507","name":"King Dred","position":[-1332.5974,17.6017,-567.0304]},{"id":"creature-200143","name":"The Prophet Tharon'ja","position":[-1311.0284,119.2546,-258.9824]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":380,"id":188358,"map":600,"orientation":1.5708,"phaseMask":1,"position_x":-236.766,"position_y":-614.774,"position_z":116.487,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":4196,"guid":6120,"id":192585,"map":600,"orientation":-1.57952,"phaseMask":1,"position_x":4774.53,"position_y":-2020.72,"position_z":232.311,"rotation0":0,"rotation1":0,"rotation2":-0.710184,"rotation3":0.704016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":4196},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":4196,"guid":6121,"id":192776,"map":600,"orientation":-1.57952,"phaseMask":1,"position_x":4774.53,"position_y":-2020.72,"position_z":232.311,"rotation0":0,"rotation1":0,"rotation2":-0.710184,"rotation3":0.704016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":4196},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":4196,"guid":6122,"id":192775,"map":600,"orientation":-1.57952,"phaseMask":1,"position_x":4774.53,"position_y":-2020.72,"position_z":232.311,"rotation0":0,"rotation1":0,"rotation2":-0.710184,"rotation3":0.704016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":4196},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65694,"id":189975,"map":600,"orientation":-2.35619,"phaseMask":1,"position_x":-341.934,"position_y":-576.302,"position_z":10.9868,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65695,"id":191019,"map":600,"orientation":-2.46091,"phaseMask":1,"position_x":-536.647,"position_y":-644.057,"position_z":30.2464,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333809,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65696,"id":191019,"map":600,"orientation":1.39626,"phaseMask":1,"position_x":-556.642,"position_y":-703.145,"position_z":30.7545,"rotation0":0,"rotation1":0,"rotation2":0.642786,"rotation3":0.766046,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65697,"id":189299,"map":600,"orientation":3.14159,"phaseMask":1,"position_x":-392.416,"position_y":-724.865,"position_z":29.4156,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65698,"id":191347,"map":600,"orientation":-1.41372,"phaseMask":1,"position_x":-239.728,"position_y":-616.755,"position_z":116.48,"rotation0":0,"rotation1":0,"rotation2":-0.649449,"rotation3":0.760405,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65699,"id":191347,"map":600,"orientation":1.53589,"phaseMask":1,"position_x":-233.764,"position_y":-616.797,"position_z":116.48,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65700,"id":189300,"map":600,"orientation":3.14159,"phaseMask":1,"position_x":-365.279,"position_y":-751.087,"position_z":29.4156,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65701,"id":189301,"map":600,"orientation":3.14159,"phaseMask":1,"position_x":-365.41,"position_y":-724.865,"position_z":29.4156,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65702,"id":189302,"map":600,"orientation":3.14159,"phaseMask":1,"position_x":-392.286,"position_y":-751.087,"position_z":29.4156,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65703,"id":192677,"map":600,"orientation":-0.785397,"phaseMask":1,"position_x":-518.575,"position_y":-478.596,"position_z":13.6225,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":65704,"id":190629,"map":600,"orientation":1.5708,"phaseMask":1,"position_x":-236.766,"position_y":-614.774,"position_z":116.487,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65705,"id":192678,"map":600,"orientation":-0.785397,"phaseMask":1,"position_x":-518.575,"position_y":-478.596,"position_z":13.6225,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65706,"id":190170,"map":600,"orientation":2.42601,"phaseMask":1,"position_x":-389.537,"position_y":-601.704,"position_z":72.6091,"rotation0":0,"rotation1":0,"rotation2":0.936673,"rotation3":0.350206,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/draktharon-keep/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["22/22 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"azjol-nerub","title":"Azjol-Nerub","mapId":601,"lfgDungeonIds":[204,241],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[70,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Azjol-Nerub","theme":"Open-world expedition","summary":"Fight through Azjol-Nerub, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Azjol-Nerub...","unchartedAreaName":"Uncharted Azjol-Nerub","background":"#081016","fog":{"color":"#0a141c","near":36,"far":459.1368},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/601-azjol-uppercity/visual.glb","checksum":"849c0bb9556dea98beb32848ef70751a62350e0117308c8084e4d1fb3bfa9ff8","size":8501448,"triangleCount":1117035}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-000.glb","checksum":"13b33f85227afecafdb7320a72f6e2a5d4a267f6bfadada6b6d7a3e30f871318","size":113016,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-001.glb","checksum":"e335be6512c809ddd4b0903c311769e1949c1ea02fb11a61c36931aec1941404","size":113532,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-002.glb","checksum":"a4a26779151b0677ac026287ac1114381321016bee4028eb48e099ea40fc562e","size":113192,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-003.glb","checksum":"5e5422ed8787474d1312330c12b11ce5ea2438f28ce1f5667ca2020cef0fd789","size":113544,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-004.glb","checksum":"abc95add7eedf7eeb9ae91718b84495b00486224e041af8d1a3a81a67714fb91","size":113140,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-005.glb","checksum":"eef0717a92f7281c14a26b90262158bc4f869cde17311b30fcf7720cb8a80144","size":113660,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-006.glb","checksum":"9563ed33dc2e5131ff0677b81d0566341d8413b9db434c87df100d93d275406f","size":902772,"triangleCount":68459},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-007.glb","checksum":"69d06c455fb483075faa49f90d332a2ab5eb8d0f7678192dc1fd22f17468bfe5","size":113348,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-008.glb","checksum":"137afb32344cce1fde27d1084a20557eb605fb9abf8119dc72fa4cbffb0da7ea","size":113564,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-009.glb","checksum":"00b9ae825b2ca462beac744bb10e482533751624e93f942ddada360d33036b7f","size":113016,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-010.glb","checksum":"0e6d551892b3409d20b78d54f9fd12e1a261a03b162e3bd32266743205eb71d6","size":113660,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-011.glb","checksum":"cf1f7d2b73dc26e85aa23392f1d764c45b4e396528b45588b8bd236b232a5a56","size":113408,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-012.glb","checksum":"e5f4104edda40975fd71d4a887bf38cd2f3d95ec9c12c363ac8d3d311537b807","size":113592,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-013.glb","checksum":"813911bf2bd55edb5cbe048b21a84ffaab16df245c47594aa7b8d25ed5a57fc3","size":113240,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-014.glb","checksum":"0bea9ee488eba9aa7e113da81a97810df6bd1d33c00842c7efe696ce4b4f9578","size":113660,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-015.glb","checksum":"69206949fc8ba8554312d65c85fbeefa5a7da8dd348acfc782b35a45ab7a1659","size":113584,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-016.glb","checksum":"9666cb782f3613fa94ec8177b7c7702bcc4853956c487e6689318da7168148ca","size":114100,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/601-azjol-uppercity/navigation.glb","checksum":"a0e40e020a6de452e8e81cd9a056e737a4b5c45133cc28e421d05f24495ed4f5","size":365248,"triangleCount":29405}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[80.2767,-318.8061,384.2283],"max":[717.9667,336.6729,677.5497]},"entrance":{"name":"Azjol-Nerub Entrance","footPosition":[672.9667,308.5729,484.5667],"forward":[-0.9688850896253942,0,-0.24751097571944544],"yaw":-1.8209067784434179},"areas":[{"id":"entrance","name":"Azjol-Nerub Entrance","center":[672.9667,308.5729,484.5667],"radius":35},{"id":"area-krik-thir-the-gatewatcher","name":"Krik'thir the Gatewatcher's Encounter","center":[523.2317,254.6299,600.8127],"radius":42},{"id":"area-hadronox","name":"Hadronox's Encounter","center":[421.9097,151.9009,593.7837],"radius":42},{"id":"area-anub-arak","name":"Anub'arak's Encounter","center":[125.2767,-298.8061,622.2707],"radius":42}],"entities":{"entry-28731":{"id":"entry-28731","kind":"mob","name":"Watcher Silthik","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-25729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2702,"labelHeight":5.1434,"markerRadius":2.8142}}},"entry-28730":{"id":"entry-28730","kind":"mob","name":"Watcher Gashra","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-23568-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2702,"labelHeight":5.1434,"markerRadius":2.8142}}},"entry-28729":{"id":"entry-28729","kind":"mob","name":"Watcher Narjil","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-23984-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2702,"labelHeight":5.1434,"markerRadius":2.8142}}},"entry-28733":{"id":"entry-28733","kind":"mob","name":"Anub'ar Shadowcaster","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-25258-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":3.3663,"markerRadius":1.8829}}},"entry-28734":{"id":"entry-28734","kind":"mob","name":"Anub'ar Skirmisher","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-25237-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1531,"labelHeight":2.9284,"markerRadius":1.5947}}},"entry-28732":{"id":"entry-28732","kind":"mob","name":"Anub'ar Warrior","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-23567-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":3.3974,"markerRadius":1.8761}}},"entry-28684":{"id":"entry-28684","kind":"boss","name":"Krik'thir the Gatewatcher","title":"Dungeon Boss","hasLoot":true,"combat":{"level":74,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-28747","name":"Frenzy","spellId":28747,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4635,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-28747","durationMs":12000,"magnitude":0.25}},{"id":"spell-52440","name":"Swarm","spellId":52440,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4635,"damageMultiplier":1.35},{"id":"spell-52586","name":"Mind Flay","spellId":52586,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4635,"damageMultiplier":1.35},{"id":"spell-52592","name":"Curse of Fatigue","spellId":52592,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4635,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-27394-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.126,"labelHeight":13.8906,"markerRadius":3.7487}}},"entry-32593":{"id":"entry-32593","kind":"mob","name":"Skittering Swarmer","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-25656-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0135,"labelHeight":1.1049,"markerRadius":0.65}}},"entry-29335":{"id":"entry-29335","kind":"mob","name":"Anub'ar Webspinner","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-23565-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":3.3974,"markerRadius":1.8761}}},"entry-28921":{"id":"entry-28921","kind":"boss","name":"Hadronox","title":"Dungeon Boss","hasLoot":true,"combat":{"level":74,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-53030","name":"Leech Poison","spellId":53030,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6523,"damageMultiplier":1.35},{"id":"spell-53418","name":"Pierce Armor","spellId":53418,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6523,"damageMultiplier":1.35},{"id":"spell-53400","name":"Acid Cloud","spellId":53400,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6523,"damageMultiplier":1.35},{"id":"spell-53406","name":"Web Grab","spellId":53406,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6523,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-26776-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":13.2019,"markerRadius":4.5}}},"entry-29340":{"id":"entry-29340","kind":"mob","name":"Anub'ar Brood Keeper","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-26193-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0224,"labelHeight":1.6082,"markerRadius":0.7174}}},"entry-29120":{"id":"entry-29120","kind":"boss","name":"Anub'arak","title":"Dungeon Boss","hasLoot":true,"combat":{"level":74,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34098","name":"ClearAllDebuffs","spellId":34098,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5416,"damageMultiplier":1.35},{"id":"spell-53421","name":"Submerge","spellId":53421,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5416,"damageMultiplier":1.35},{"id":"spell-53467","name":"Leeching Swarm","spellId":53467,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-53456","name":"Impale","spellId":53456,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5416,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-27856-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0127,"labelHeight":13.7501,"markerRadius":4.5}}},"entry-29128":{"id":"entry-29128","kind":"mob","name":"Anub'ar Prime Guard","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-26194-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3603,"labelHeight":6.8579,"markerRadius":3.7522}}}},"staticSpawns":[{"id":"creature-12758","entityId":"entry-28731","position":[542.1217,253.4669,615.0787],"yaw":-1.55334,"spawnMask":3},{"id":"creature-12759","entityId":"entry-28730","position":[540.6037,253.0269,597.9167],"yaw":-1.23918,"spawnMask":3},{"id":"creature-12760","entityId":"entry-28729","position":[543.4917,253.4999,583.0627],"yaw":-0.977384,"spawnMask":3},{"id":"creature-12761","entityId":"entry-28733","position":[539.0057,254.2149,620.9457],"yaw":-1.64061,"spawnMask":3},{"id":"creature-12762","entityId":"entry-28734","position":[545.1297,253.5009,621.2987],"yaw":-1.65806,"spawnMask":3},{"id":"creature-12763","entityId":"entry-28732","position":[535.1717,253.4619,602.2837],"yaw":-1.3439,"spawnMask":3},{"id":"creature-12764","entityId":"entry-28734","position":[536.4697,253.5349,593.0677],"yaw":-1.18682,"spawnMask":3},{"id":"creature-12765","entityId":"entry-28733","position":[546.9257,253.5279,577.4307],"yaw":-0.855211,"spawnMask":3},{"id":"creature-12766","entityId":"entry-28732","position":[541.3787,254.1979,577.7687],"yaw":-0.925025,"spawnMask":3},{"id":"creature-127214","entityId":"entry-28684","position":[523.2317,254.6299,600.8127],"yaw":-1.53589,"spawnMask":3},{"id":"creature-127229","entityId":"entry-28732","position":[578.8327,254.1279,612.5127],"yaw":-1.01229,"spawnMask":3},{"id":"creature-127235","entityId":"entry-28734","position":[577.0657,253.8759,607.3217],"yaw":-0.925025,"spawnMask":3},{"id":"creature-127237","entityId":"entry-32593","position":[419.7207,124.1499,592.2157],"yaw":-2.26893,"spawnMask":3},{"id":"creature-127238","entityId":"entry-32593","position":[435.4827,123.8349,610.0337],"yaw":-1.02974,"spawnMask":3},{"id":"creature-127239","entityId":"entry-32593","position":[423.6997,128.6499,583.1657],"yaw":-4.71239,"spawnMask":3},{"id":"creature-127240","entityId":"entry-32593","position":[405.6987,130.5959,583.4087],"yaw":-0.959931,"spawnMask":3},{"id":"creature-127241","entityId":"entry-32593","position":[417.5587,130.9749,626.6757],"yaw":-0.820305,"spawnMask":3},{"id":"creature-127242","entityId":"entry-32593","position":[398.2247,132.7499,607.2637],"yaw":-4.67748,"spawnMask":3},{"id":"creature-127243","entityId":"entry-32593","position":[394.4397,133.4949,577.8567],"yaw":-0.506145,"spawnMask":3},{"id":"creature-127244","entityId":"entry-32593","position":[407.5507,129.8119,576.2947],"yaw":-1.46608,"spawnMask":3},{"id":"creature-127245","entityId":"entry-32593","position":[428.5027,125.2509,619.4857],"yaw":-3.07178,"spawnMask":3},{"id":"creature-127246","entityId":"entry-32593","position":[402.1007,131.7789,598.0207],"yaw":-1.79769,"spawnMask":3},{"id":"creature-127247","entityId":"entry-32593","position":[405.0587,130.8179,628.9677],"yaw":-1.81514,"spawnMask":3},{"id":"creature-127248","entityId":"entry-32593","position":[422.8997,127.2959,621.4667],"yaw":-6.00393,"spawnMask":3},{"id":"creature-127249","entityId":"entry-32593","position":[405.1907,129.8219,614.3207],"yaw":-3.33358,"spawnMask":3},{"id":"creature-127250","entityId":"entry-32593","position":[400.6227,132.4699,632.5497],"yaw":-2.1293,"spawnMask":3},{"id":"creature-127251","entityId":"entry-32593","position":[437.0727,123.6369,603.9177],"yaw":-1.23918,"spawnMask":3},{"id":"creature-127252","entityId":"entry-32593","position":[413.5307,127.8829,579.8837],"yaw":-0.733038,"spawnMask":3},{"id":"creature-127253","entityId":"entry-32593","position":[420.5247,131.4369,578.2097],"yaw":-2.16421,"spawnMask":3},{"id":"creature-127254","entityId":"entry-32593","position":[422.9997,125.1429,615.6587],"yaw":-5.11381,"spawnMask":3},{"id":"creature-127255","entityId":"entry-32593","position":[424.0937,132.6539,577.3507],"yaw":-1.8675,"spawnMask":3},{"id":"creature-127256","entityId":"entry-32593","position":[416.5817,130.0219,578.0767],"yaw":-4.04916,"spawnMask":3},{"id":"creature-127257","entityId":"entry-32593","position":[391.9297,134.5169,597.7267],"yaw":-1.32645,"spawnMask":3},{"id":"creature-127258","entityId":"entry-32593","position":[397.3997,133.6489,570.7407],"yaw":-4.17134,"spawnMask":3},{"id":"creature-127259","entityId":"entry-32593","position":[401.2357,131.8979,573.1767],"yaw":-3.40339,"spawnMask":3},{"id":"creature-127260","entityId":"entry-32593","position":[430.4737,123.2679,610.0577],"yaw":-4.08407,"spawnMask":3},{"id":"creature-127261","entityId":"entry-32593","position":[430.6497,125.3009,590.9127],"yaw":-2.05949,"spawnMask":3},{"id":"creature-127262","entityId":"entry-32593","position":[406.6837,129.4929,598.6027],"yaw":-0.296706,"spawnMask":3},{"id":"creature-127263","entityId":"entry-32593","position":[406.5017,126.8059,621.2157],"yaw":-5.2709,"spawnMask":3},{"id":"creature-127264","entityId":"entry-32593","position":[412.4257,126.1219,611.5597],"yaw":-5.84685,"spawnMask":3},{"id":"creature-127265","entityId":"entry-32593","position":[413.6197,125.6249,596.6337],"yaw":-5.44543,"spawnMask":3},{"id":"creature-127266","entityId":"entry-32593","position":[426.7837,124.7279,591.8437],"yaw":-1.36136,"spawnMask":3},{"id":"creature-127267","entityId":"entry-32593","position":[441.9427,125.5219,602.8467],"yaw":-3.97935,"spawnMask":3},{"id":"creature-127268","entityId":"entry-32593","position":[415.6387,125.8869,618.2587],"yaw":-3.22886,"spawnMask":3},{"id":"creature-127269","entityId":"entry-32593","position":[424.2947,126.6739,587.5757],"yaw":-4.43314,"spawnMask":3},{"id":"creature-127270","entityId":"entry-32593","position":[406.5677,131.0089,591.4337],"yaw":-0.10472,"spawnMask":3},{"id":"creature-127271","entityId":"entry-32593","position":[420.1457,123.5939,596.2777],"yaw":-1.46608,"spawnMask":3},{"id":"creature-127338","entityId":"entry-29335","position":[571.3107,252.8989,614.9087],"yaw":-1.16937,"spawnMask":3},{"id":"creature-127401","entityId":"entry-28921","position":[421.9097,151.9009,593.7837],"yaw":-5.63362,"spawnMask":3},{"id":"creature-132214","entityId":"entry-29340","position":[434.3607,-246.8011,602.0717],"yaw":-0.087266,"spawnMask":3},{"id":"creature-132215","entityId":"entry-29340","position":[428.3737,-246.7471,610.6307],"yaw":-2.9147,"spawnMask":3},{"id":"creature-132216","entityId":"entry-29340","position":[341.1737,-233.1231,593.8647],"yaw":-0.733038,"spawnMask":3},{"id":"creature-132217","entityId":"entry-29340","position":[424.7797,-246.6951,610.9377],"yaw":-3.54302,"spawnMask":3},{"id":"creature-132218","entityId":"entry-29340","position":[429.3957,-246.8921,604.2607],"yaw":-3.03687,"spawnMask":3},{"id":"creature-132219","entityId":"entry-29340","position":[363.6167,-232.9381,607.9297],"yaw":-1.09028,"spawnMask":3},{"id":"creature-132220","entityId":"entry-29340","position":[348.2127,-233.1571,623.7817],"yaw":-1.6119,"spawnMask":3},{"id":"creature-132221","entityId":"entry-29340","position":[367.9687,-233.2001,608.1837],"yaw":-4.53572,"spawnMask":3},{"id":"creature-132222","entityId":"entry-29340","position":[427.3567,-246.4731,590.0907],"yaw":-1.48353,"spawnMask":3},{"id":"creature-132223","entityId":"entry-29340","position":[422.6517,-246.7131,598.4067],"yaw":-3.27724,"spawnMask":3},{"id":"creature-132224","entityId":"entry-29340","position":[427.2627,-246.7991,601.7987],"yaw":-0.872665,"spawnMask":3},{"id":"creature-132225","entityId":"entry-29340","position":[429.3777,-246.8911,605.8707],"yaw":-3.05433,"spawnMask":3},{"id":"creature-132226","entityId":"entry-29340","position":[425.1427,-246.5801,614.7637],"yaw":-2.46091,"spawnMask":3},{"id":"creature-132227","entityId":"entry-29340","position":[388.0407,-233.1891,611.2917],"yaw":-5.80104,"spawnMask":3},{"id":"creature-132228","entityId":"entry-29340","position":[424.9307,-246.7571,608.1177],"yaw":-3.22886,"spawnMask":3},{"id":"creature-132229","entityId":"entry-29340","position":[327.4637,-234.8551,602.0907],"yaw":-6.16101,"spawnMask":3},{"id":"creature-132230","entityId":"entry-29340","position":[417.2687,-246.5331,611.6007],"yaw":-2.49582,"spawnMask":3},{"id":"creature-132231","entityId":"entry-29340","position":[420.8407,-246.6601,604.4277],"yaw":-4.08407,"spawnMask":3},{"id":"creature-132273","entityId":"entry-29120","position":[125.2767,-298.8061,622.2707],"yaw":-1.5708,"spawnMask":3},{"id":"creature-132274","entityId":"entry-29128","position":[217.7747,-281.8791,629.5957],"yaw":-1.65806,"spawnMask":3},{"id":"creature-132275","entityId":"entry-29128","position":[218.4117,-281.8791,613.2557],"yaw":-1.48353,"spawnMask":3}],"roamingPacks":[{"id":"patrol-127230","name":"Anub'ar Warrior Patrol","speed":1.15,"pathId":1272300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[624.2567,267.9229,607.5367],[610.7187,254.7249,624.8197],[624.2567,267.9229,607.5367],[632.1617,286.0949,578.8487],[635.9907,295.3209,560.1497],[632.1617,286.0949,578.8487]],"members":[{"id":"member","entityId":"entry-28732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127339","name":"Anub'ar Webspinner Patrol","speed":1.15,"pathId":1272300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[624.2567,267.9229,607.5367],[610.7187,254.7249,624.8197],[624.2567,267.9229,607.5367],[632.1617,286.0949,578.8487],[635.9907,295.3209,560.1497],[632.1617,286.0949,578.8487]],"members":[{"id":"member","entityId":"entry-29335","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-127214","name":"Krik'thir the Gatewatcher","position":[523.2317,254.6299,600.8127]},{"id":"creature-127401","name":"Hadronox","position":[421.9097,151.9009,593.7837]},{"id":"creature-132273","name":"Anub'arak","position":[125.2767,-298.8061,622.2707]}],"objectiveOrder":[{"id":"creature-127214","name":"Krik'thir the Gatewatcher","position":[523.2317,254.6299,600.8127]},{"id":"creature-127401","name":"Hadronox","position":[421.9097,151.9009,593.7837]},{"id":"creature-132273","name":"Anub'arak","position":[125.2767,-298.8061,622.2707]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67338,"id":189973,"map":601,"orientation":0.785397,"phaseMask":1,"position_x":578.629,"position_y":565.931,"position_z":725.6,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67339,"id":193051,"map":601,"orientation":0.541051,"phaseMask":1,"position_x":489.153,"position_y":563.922,"position_z":740.094,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67340,"id":193051,"map":601,"orientation":-2.63544,"phaseMask":1,"position_x":556.443,"position_y":694.491,"position_z":775.437,"rotation0":0,"rotation1":0,"rotation2":-0.968147,"rotation3":0.250383,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67341,"id":193051,"map":601,"orientation":0.575957,"phaseMask":1,"position_x":581.014,"position_y":568.179,"position_z":725.066,"rotation0":0,"rotation1":0,"rotation2":0.284015,"rotation3":0.95882,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67343,"id":193051,"map":601,"orientation":3.12412,"phaseMask":1,"position_x":545.757,"position_y":673.861,"position_z":774.79,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67344,"id":193051,"map":601,"orientation":-1.65806,"phaseMask":1,"position_x":536.106,"position_y":558.922,"position_z":646.22,"rotation0":0,"rotation1":0,"rotation2":-0.737276,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67345,"id":193051,"map":601,"orientation":2.07694,"phaseMask":1,"position_x":510.696,"position_y":528.885,"position_z":653.064,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67347,"id":193051,"map":601,"orientation":2.47837,"phaseMask":1,"position_x":481.469,"position_y":547.625,"position_z":741.177,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67348,"id":193051,"map":601,"orientation":-0.645772,"phaseMask":1,"position_x":579.778,"position_y":591.719,"position_z":728.172,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67351,"id":193051,"map":601,"orientation":-0.750491,"phaseMask":1,"position_x":527.479,"position_y":558.76,"position_z":646.21,"rotation0":0,"rotation1":0,"rotation2":-0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67352,"id":193051,"map":601,"orientation":2.18166,"phaseMask":1,"position_x":571.447,"position_y":595.039,"position_z":728.9,"rotation0":0,"rotation1":0,"rotation2":0.88701,"rotation3":0.461749,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67354,"id":193051,"map":601,"orientation":2.05949,"phaseMask":1,"position_x":591.721,"position_y":508.679,"position_z":694.816,"rotation0":0,"rotation1":0,"rotation2":0.857168,"rotation3":0.515037,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67357,"id":193051,"map":601,"orientation":0.401425,"phaseMask":1,"position_x":506.314,"position_y":520.373,"position_z":655.167,"rotation0":0,"rotation1":0,"rotation2":0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67360,"id":193051,"map":601,"orientation":1.5708,"phaseMask":1,"position_x":507.566,"position_y":528.436,"position_z":652.934,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67363,"id":193051,"map":601,"orientation":-0.314158,"phaseMask":1,"position_x":532.479,"position_y":517.108,"position_z":656.454,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67364,"id":193051,"map":601,"orientation":0.942477,"phaseMask":1,"position_x":527.517,"position_y":617.248,"position_z":777.9,"rotation0":0,"rotation1":0,"rotation2":0.45399,"rotation3":0.891007,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67369,"id":193051,"map":601,"orientation":0.453785,"phaseMask":1,"position_x":553.991,"position_y":528.401,"position_z":650.733,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67370,"id":193051,"map":601,"orientation":-0.663223,"phaseMask":1,"position_x":572.967,"position_y":590.649,"position_z":728.6,"rotation0":0,"rotation1":0,"rotation2":-0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67372,"id":193051,"map":601,"orientation":-1.01229,"phaseMask":1,"position_x":557.236,"position_y":695.95,"position_z":775.653,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67374,"id":193051,"map":601,"orientation":0.872664,"phaseMask":1,"position_x":504.891,"position_y":638.339,"position_z":777.295,"rotation0":0,"rotation1":0,"rotation2":0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67383,"id":193051,"map":601,"orientation":1.83259,"phaseMask":1,"position_x":480.885,"position_y":544.554,"position_z":740.356,"rotation0":0,"rotation1":0,"rotation2":0.793352,"rotation3":0.608764,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67387,"id":193051,"map":601,"orientation":-2.33874,"phaseMask":1,"position_x":568.974,"position_y":592.156,"position_z":728.911,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67388,"id":193051,"map":601,"orientation":-1.74533,"phaseMask":1,"position_x":558.701,"position_y":641.155,"position_z":777.262,"rotation0":0,"rotation1":0,"rotation2":-0.766045,"rotation3":0.642787,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67389,"id":193051,"map":601,"orientation":-0.663223,"phaseMask":1,"position_x":559.634,"position_y":647.505,"position_z":777.374,"rotation0":0,"rotation1":0,"rotation2":-0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67390,"id":193051,"map":601,"orientation":-1.18682,"phaseMask":1,"position_x":535.432,"position_y":566.377,"position_z":647.935,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67391,"id":193051,"map":601,"orientation":2.00713,"phaseMask":1,"position_x":579.179,"position_y":570.76,"position_z":725.636,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67392,"id":193051,"map":601,"orientation":-0.069812,"phaseMask":1,"position_x":529.547,"position_y":705.137,"position_z":777.17,"rotation0":0,"rotation1":0,"rotation2":-0.0348989,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67393,"id":193051,"map":601,"orientation":-3.12412,"phaseMask":1,"position_x":476.299,"position_y":545.252,"position_z":741.208,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67394,"id":193051,"map":601,"orientation":2.00713,"phaseMask":1,"position_x":574.825,"position_y":565.536,"position_z":725.208,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":14,"areaId":0,"guid":67395,"id":193051,"map":601,"orientation":-3.01941,"phaseMask":1,"position_x":502.62,"position_y":525.356,"position_z":654.026,"rotation0":0,"rotation1":0,"rotation2":-0.998134,"rotation3":0.0610534,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67396,"id":193051,"map":601,"orientation":-1.71042,"phaseMask":1,"position_x":519.264,"position_y":704.847,"position_z":777.136,"rotation0":0,"rotation1":0,"rotation2":-0.754709,"rotation3":0.65606,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67397,"id":193051,"map":601,"orientation":2.47837,"phaseMask":1,"position_x":511.278,"position_y":674.479,"position_z":775.616,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67398,"id":193051,"map":601,"orientation":1.3439,"phaseMask":1,"position_x":562.818,"position_y":586.951,"position_z":729.075,"rotation0":0,"rotation1":0,"rotation2":0.622513,"rotation3":0.782609,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67399,"id":193051,"map":601,"orientation":2.77507,"phaseMask":1,"position_x":533.045,"position_y":520.524,"position_z":655.448,"rotation0":0,"rotation1":0,"rotation2":0.983255,"rotation3":0.182237,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67400,"id":193051,"map":601,"orientation":2.61799,"phaseMask":1,"position_x":509.576,"position_y":674.458,"position_z":775.586,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67401,"id":193051,"map":601,"orientation":-2.87979,"phaseMask":1,"position_x":482.903,"position_y":546.681,"position_z":740.69,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67402,"id":193051,"map":601,"orientation":2.23402,"phaseMask":1,"position_x":552.122,"position_y":527.915,"position_z":650.037,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67403,"id":193051,"map":601,"orientation":0.610864,"phaseMask":1,"position_x":481.552,"position_y":570.944,"position_z":743.842,"rotation0":0,"rotation1":0,"rotation2":0.300705,"rotation3":0.953717,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67404,"id":193051,"map":601,"orientation":0.157079,"phaseMask":1,"position_x":584.233,"position_y":569.684,"position_z":725.011,"rotation0":0,"rotation1":0,"rotation2":0.0784588,"rotation3":0.996917,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67405,"id":193051,"map":601,"orientation":0.541051,"phaseMask":1,"position_x":534.502,"position_y":517.002,"position_z":656.52,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67406,"id":193051,"map":601,"orientation":-0.226892,"phaseMask":1,"position_x":550.726,"position_y":525.998,"position_z":650.742,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67407,"id":193051,"map":601,"orientation":1.0472,"phaseMask":1,"position_x":501.92,"position_y":520.115,"position_z":655.959,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67408,"id":193051,"map":601,"orientation":1.18682,"phaseMask":1,"position_x":533.247,"position_y":623.125,"position_z":777.927,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67409,"id":193051,"map":601,"orientation":-2.58308,"phaseMask":1,"position_x":549.729,"position_y":524.321,"position_z":651.669,"rotation0":0,"rotation1":0,"rotation2":-0.961261,"rotation3":0.275641,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67410,"id":193051,"map":601,"orientation":1.43117,"phaseMask":1,"position_x":501.645,"position_y":644.68,"position_z":777.353,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67411,"id":193051,"map":601,"orientation":-0.104719,"phaseMask":1,"position_x":531.005,"position_y":558.677,"position_z":646.068,"rotation0":0,"rotation1":0,"rotation2":-0.0523356,"rotation3":0.99863,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":14,"areaId":0,"guid":67412,"id":193051,"map":601,"orientation":-1.5708,"phaseMask":1,"position_x":591.656,"position_y":515.967,"position_z":695.939,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67413,"id":193051,"map":601,"orientation":0.191985,"phaseMask":1,"position_x":557.516,"position_y":648.642,"position_z":777.351,"rotation0":0,"rotation1":0,"rotation2":0.0958451,"rotation3":0.995396,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67414,"id":193051,"map":601,"orientation":-0.191985,"phaseMask":1,"position_x":513.429,"position_y":671.875,"position_z":775.631,"rotation0":0,"rotation1":0,"rotation2":-0.0958451,"rotation3":0.995396,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":14,"areaId":0,"guid":67415,"id":193051,"map":601,"orientation":-2.54818,"phaseMask":1,"position_x":479.606,"position_y":563.172,"position_z":743.062,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67416,"id":193051,"map":601,"orientation":1.55334,"phaseMask":1,"position_x":475.726,"position_y":549.071,"position_z":742.446,"rotation0":0,"rotation1":0,"rotation2":0.700908,"rotation3":0.713252,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67417,"id":193051,"map":601,"orientation":2.19912,"phaseMask":1,"position_x":533.766,"position_y":611.328,"position_z":777.914,"rotation0":0,"rotation1":0,"rotation2":0.891008,"rotation3":0.453988,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67418,"id":193051,"map":601,"orientation":-1.69297,"phaseMask":1,"position_x":546.229,"position_y":679.186,"position_z":774.634,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67419,"id":193051,"map":601,"orientation":-3.07177,"phaseMask":1,"position_x":504.271,"position_y":642.29,"position_z":777.403,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349043,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67420,"id":193051,"map":601,"orientation":-0.122173,"phaseMask":1,"position_x":559.076,"position_y":652.787,"position_z":777.354,"rotation0":0,"rotation1":0,"rotation2":-0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67421,"id":193051,"map":601,"orientation":1.06465,"phaseMask":1,"position_x":505.983,"position_y":523.406,"position_z":654.201,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67422,"id":193051,"map":601,"orientation":0.750491,"phaseMask":1,"position_x":518.809,"position_y":702.219,"position_z":776.957,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67423,"id":193051,"map":601,"orientation":0.383971,"phaseMask":1,"position_x":506.891,"position_y":639.227,"position_z":777.27,"rotation0":0,"rotation1":0,"rotation2":0.190808,"rotation3":0.981627,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67424,"id":193051,"map":601,"orientation":-0.226892,"phaseMask":1,"position_x":578.01,"position_y":593.714,"position_z":728.396,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67425,"id":193051,"map":601,"orientation":1.98967,"phaseMask":1,"position_x":540.257,"position_y":540.262,"position_z":646.267,"rotation0":0,"rotation1":0,"rotation2":0.838669,"rotation3":0.544641,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67426,"id":193051,"map":601,"orientation":-1.81514,"phaseMask":1,"position_x":559.194,"position_y":582.618,"position_z":729.018,"rotation0":0,"rotation1":0,"rotation2":-0.78801,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":14,"areaId":0,"guid":67427,"id":193051,"map":601,"orientation":-0.279252,"phaseMask":1,"position_x":576.08,"position_y":568.168,"position_z":725.499,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67428,"id":193051,"map":601,"orientation":0.418879,"phaseMask":1,"position_x":510.495,"position_y":525.188,"position_z":653.605,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67429,"id":193051,"map":601,"orientation":-1.79769,"phaseMask":1,"position_x":527.851,"position_y":706.299,"position_z":777.014,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622514,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67430,"id":193051,"map":601,"orientation":0.349065,"phaseMask":1,"position_x":583.688,"position_y":590.009,"position_z":727.878,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67431,"id":193051,"map":601,"orientation":-0.244346,"phaseMask":1,"position_x":534.486,"position_y":563.479,"position_z":647.093,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67432,"id":193051,"map":601,"orientation":3.14159,"phaseMask":1,"position_x":516.016,"position_y":702.472,"position_z":776.95,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67434,"id":192395,"map":601,"orientation":1.5708,"phaseMask":1,"position_x":530.584,"position_y":628.017,"position_z":780.981,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67436,"id":192396,"map":601,"orientation":3.14159,"phaseMask":1,"position_x":550.422,"position_y":254.681,"position_z":211.522,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67438,"id":192397,"map":601,"orientation":3.14159,"phaseMask":1,"position_x":550.387,"position_y":256.197,"position_z":210.127,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67440,"id":192398,"map":601,"orientation":3.14159,"phaseMask":1,"position_x":551.93,"position_y":252.178,"position_z":210.784,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":14,"areaId":0,"guid":67441,"id":190169,"map":601,"orientation":0.034906,"phaseMask":1,"position_x":502.358,"position_y":694.054,"position_z":774.493,"rotation0":0,"rotation1":0,"rotation2":0.0174521,"rotation3":0.999848,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67443,"id":192503,"map":601,"orientation":-0.872664,"phaseMask":1,"position_x":407.639,"position_y":800.019,"position_z":832.174,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67445,"id":192504,"map":601,"orientation":-0.876914,"phaseMask":1,"position_x":406.908,"position_y":800.609,"position_z":832.126,"rotation0":0,"rotation1":0,"rotation2":-0.424543,"rotation3":0.905408,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67446,"id":192505,"map":601,"orientation":0.436332,"phaseMask":1,"position_x":407.419,"position_y":56.0765,"position_z":252.803,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67447,"id":192506,"map":601,"orientation":0.43208,"phaseMask":1,"position_x":407.113,"position_y":55.8535,"position_z":252.783,"rotation0":0,"rotation1":0,"rotation2":0.214363,"rotation3":0.976754,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/azjol-nerub/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["13/13 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"halls-of-lightning","title":"Halls of Lightning","mapId":602,"lfgDungeonIds":[207,212],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[77,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Halls of Lightning","theme":"Open-world expedition","summary":"Fight through Halls of Lightning, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Halls of Lightning...","unchartedAreaName":"Uncharted Halls of Lightning","background":"#081016","fog":{"color":"#0a141c","near":36,"far":490.2041},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/602-ulduar80/visual.glb","checksum":"d988db6196bcd9933ab141af321047fd48287a324711e46bc577026937392fac","size":31200160,"triangleCount":3464587}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/602-ulduar80/collision-000.glb","checksum":"04617866cdf4afcb5ad0d20e7cb2a69a1ce11acb8a5763e7d86d44feb102d2c5","size":185348,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/602-ulduar80/collision-001.glb","checksum":"52a0ba562d4254e7eaa9fc79040233bfb44509790063c09a67e4b86666c3cdc4","size":117672,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/602-ulduar80/collision-002.glb","checksum":"8a14f8f608681108c84aedf75a5641a459581bba347c1ee7931067a78d932266","size":117492,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/602-ulduar80/collision-003.glb","checksum":"c9c2652e490e6cf3c3f19a2c9819137bdef1189acdb3f835876f851f0bc363e0","size":117832,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/602-ulduar80/collision-004.glb","checksum":"0b523fe9e230ce41df0a58667107ec185c8d21084f433bb5cd02f8932b6feee0","size":117668,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/602-ulduar80/collision-005.glb","checksum":"52a8f5c916bc4ef817e6d9b6b2f9612a04bcca6650d3b3141dcc68c23da8e9dd","size":118016,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/602-ulduar80/collision-006.glb","checksum":"deb8f007deb1d26f0fa5a06312eafe7aa7c89ae1a70bff98b38221a37b761f47","size":117864,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/602-ulduar80/collision-007.glb","checksum":"eb00c7ff82c8ba506d5361c5635bfd441f44c37358c780e43f9bb82e5aba6c33","size":185968,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/602-ulduar80/collision-008.glb","checksum":"57cea36e68caec6b8c156f6ccd5e3c883cc7e0f83f4ea10e3f8d9bc712577180","size":117496,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/602-ulduar80/collision-009.glb","checksum":"5443483c56a737d3df1dc55669beaae55f6c0686ff1b5f036a071e8e3588b42a","size":117316,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/602-ulduar80/collision-010.glb","checksum":"cc0ed4c90e9189d79f8d61641f01b67f5bd1f3a75958d93965c8df822734797c","size":117832,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/602-ulduar80/collision-011.glb","checksum":"e3628bf833f67642da353d3da61fb520249b92779cae406adac264fa0b81eac8","size":117492,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/602-ulduar80/collision-012.glb","checksum":"d0788642d4a6dcae261b28d1d27490b25cf4c4f9874de3e06e223a521d22eb6a","size":117852,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/602-ulduar80/collision-013.glb","checksum":"443562d0fcfea2d6a1ed4c4b5d17b0d569a8597f424a2410fbe4fab042fcca17","size":195864,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/602-ulduar80/collision-014.glb","checksum":"07c63968b0017e66410de8086b9f363b0ece28d4ede43756a3d8b47568afdcc4","size":190092,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/602-ulduar80/collision-015.glb","checksum":"885bf34661d50d2f9cb9490d077c549b88b7b558f8dec86f4766b913983366f1","size":117652,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/602-ulduar80/collision-016.glb","checksum":"0f081bc563e0c0b3e3f2fb693fb4afe4f55b972e62bcb6a65f80f6bcaffb1837","size":117440,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/602-ulduar80/collision-017.glb","checksum":"249431347db7f6db00db83aba45f95894ec424a8304093201a2dd87a39ca4292","size":117956,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/602-ulduar80/collision-018.glb","checksum":"79b2e41832c61be86d435f07b6b64618e98e52447c78644763d56b94b9e885be","size":189844,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/602-ulduar80/collision-019.glb","checksum":"6797465424114beb0b29966448462dcc1f26a3612a33f6fef2f2df03217a5e70","size":212176,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/602-ulduar80/collision-020.glb","checksum":"dc74e61b0903dc3b8a5ce5a2c63f0af49ade2adc2f657c5d27204f2a2e56599b","size":198680,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/602-ulduar80/collision-021.glb","checksum":"4fa733e62c7e92862cea98dddc27b1971c2b3828efcfec94d545d22017ef7c8b","size":197452,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/602-ulduar80/collision-022.glb","checksum":"2f2215aefaee3fc5f2467b90e2246ad91c9322d3741dbc0c6554481698aa709f","size":138376,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/602-ulduar80/collision-023.glb","checksum":"897649dfe2806bac09a1b9b932aae48ea17e52e201ef43527293a242e5462fe4","size":121888,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/602-ulduar80/collision-024.glb","checksum":"677808ad003eee9fe934ecd51f3ad16a1a72676b4708439008515b73afe506af","size":1132380,"triangleCount":67795},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/602-ulduar80/collision-025.glb","checksum":"5394117a68c0b7fe9d68612e89309a774cd4b1049d75f56d0944ed706663b33e","size":185360,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/602-ulduar80/collision-026.glb","checksum":"2672c0ca5d8e9c2a36042c968d833123d625e0ea2eed7444a326ddc6cdd27b8c","size":204236,"triangleCount":65536},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/602-ulduar80/collision-027.glb","checksum":"b2d54c1ab6a8de4dc1384571433a63bc241634038591d10a32fa13645879c1f9","size":125228,"triangleCount":65536},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/602-ulduar80/collision-028.glb","checksum":"b70364e240bb9f7e501b4bcdc7d06f63e5875d25a1a8cc77ea13a389d4d99bae","size":123332,"triangleCount":65536},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/602-ulduar80/collision-029.glb","checksum":"00d56a0e7dad84536f3873d680889ed35f9780dfce7bfc4b8c21474d541fb6cc","size":219484,"triangleCount":65536},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/602-ulduar80/collision-030.glb","checksum":"16dd6c77416f6267fb9d82f2c4eae47beced707b7c0e1919dc2d767820dfe84a","size":224496,"triangleCount":65536},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/602-ulduar80/collision-031.glb","checksum":"65b64c4d5614d3e82c0ed24efdbcbbf4d83f6de39e092b861961ea3e1d4da046","size":223600,"triangleCount":65536},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/602-ulduar80/collision-032.glb","checksum":"60a8c9e0138a6efbf3be15073ab101b5f9ab902b60dc661b7be1f9278ac8974f","size":217416,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/602-ulduar80/collision-033.glb","checksum":"01a7807aff8a66d34eadbe524eea9162afb8c785bca7817494a61f90fee0f57a","size":218152,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/602-ulduar80/collision-034.glb","checksum":"6edda3cb2a37abf24a155db4fa77ce26a73eaf43e706133982ed617006434ac4","size":198024,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/602-ulduar80/collision-035.glb","checksum":"0aa0f9a6b906e1b99da358b5fe0dffcd336f89a50e60d99fa95bc3076b298fcf","size":129484,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/602-ulduar80/collision-036.glb","checksum":"de29778af33b37be2478f56e376e448fa8ac942208476e99c0b73f32c65534fe","size":223992,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/602-ulduar80/collision-037.glb","checksum":"5b5e609fbe329f7c918387a37b6c9fa141cd662ff59adaedb4e671b2d415351a","size":476972,"triangleCount":50739},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/602-ulduar80/collision-038.glb","checksum":"edd19878de013aa3f79e1284c8f4bb1766a2f12334b03b7de0834ba9a6a9a435","size":458232,"triangleCount":81622},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/602-ulduar80/collision-039.glb","checksum":"642edc273856d009a2484478a6f14ca7ffa1948f006ab74183eccfb7de3a96a3","size":290344,"triangleCount":69939},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/602-ulduar80/collision-040.glb","checksum":"164474c15184717563134327e84a6bc1533bb35c752f8ebcec4ceb7936c26b8b","size":396772,"triangleCount":77246},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/602-ulduar80/collision-041.glb","checksum":"158efeccbdadcc6bd640a4948cafb211347513f5ea9ebdb6dabcc344e35e46dc","size":405168,"triangleCount":77219},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/602-ulduar80/collision-042.glb","checksum":"c4370d11ba7c7b5b0339421ffe1e1f8af4dde1bb6019bf1c395b3ab98f2a49f7","size":199272,"triangleCount":65536},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/602-ulduar80/collision-043.glb","checksum":"932a49730aa9de47deeab36ec27a6a473529761f5c4604c7e69a097713e00fd5","size":201744,"triangleCount":65536},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/602-ulduar80/collision-044.glb","checksum":"e5639c1a5c5200e06117b5cfdf4f2eaa44df6f85bf8f19a762822411d0a36ad3","size":140304,"triangleCount":65536},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/602-ulduar80/collision-045.glb","checksum":"eba028e348acc30f4fd89e12f28db80e4ea782a737921218d4822bd8c8f04bd1","size":207236,"triangleCount":65536},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/602-ulduar80/collision-046.glb","checksum":"24f4ab0ec9c1084e39eeb66ad9e32caa681276dfbaede1e39ba757d6e07fce26","size":209548,"triangleCount":65536},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/602-ulduar80/collision-047.glb","checksum":"0f6e4b7aded6a97b6d3db75eeb01abc731d044b5d7e8be9f7361c2ccd16c9ed2","size":172076,"triangleCount":67246},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/602-ulduar80/collision-048.glb","checksum":"64acf303daabb731ec6af0b266e6f13ce1397f2f630e7ef4663fc835186267a2","size":150964,"triangleCount":66048},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/602-ulduar80/collision-049.glb","checksum":"c96da58c83878ff95c2bb189fb3696a573d54203a95e6fe6dd4046e52cbb1511","size":119692,"triangleCount":65536},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/602-ulduar80/collision-050.glb","checksum":"892fdec93ea5843c44cfd3f7349ffea9cce9189580daf6e448aa17e4ab6efede","size":117688,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/602-ulduar80/navigation.glb","checksum":"ab8ecd073d634823a3c37772cba6f7fddd20842f119c285fab385fd793773c39","size":3402184,"triangleCount":292705}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-1149.2384,15.655,872.6427],"max":[-468.3994,93.9472,1377.6227]},"entrance":{"name":"Halls of Lightning Entrance","footPosition":[-513.3994,65.8275,1224.4327],"forward":[0,0,1],"yaw":0},"areas":[{"id":"entrance","name":"Halls of Lightning Entrance","center":[-513.3994,65.8275,1224.4327],"radius":35},{"id":"area-general-bjarngrim","name":"General Bjarngrim's Encounter","center":[-799.9184,45.9295,1154.9627],"radius":42},{"id":"area-volkhan","name":"Volkhan's Encounter","center":[-875.0964,69.2305,1225.3427],"radius":42},{"id":"area-ionar","name":"Ionar's Encounter","center":[-1034.8274,73.7208,974.9527],"radius":42},{"id":"area-loken","name":"Loken's Encounter","center":[-739.1879,73.2427,1079.4327],"radius":42}],"entities":{"entry-28547":{"id":"entry-28547","kind":"mob","name":"Storming Vortex","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-8715-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.5846,"markerRadius":1.7286}}},"entry-28825":{"id":"entry-28825","kind":"mob","name":"Cyclone","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-5494-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.878,"markerRadius":0.8643}}},"entry-28826":{"id":"entry-28826","kind":"mob","name":"Stormfury Revenant","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-26381-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.0922,"markerRadius":3.0623}}},"entry-28546":{"id":"entry-28546","kind":"boss","name":"Ionar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52770","name":"Disperse","spellId":52770,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6334,"damageMultiplier":1.35},{"id":"spell-52663","name":"Random Lightning Visual","spellId":52663,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6334,"damageMultiplier":1.35},{"id":"spell-52780","name":"Ball Lightning","spellId":52780,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.35},{"id":"spell-52658","name":"Static Overload","spellId":52658,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-27484-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":12.7306,"markerRadius":4.5}}},"entry-28578":{"id":"entry-28578","kind":"mob","name":"Hardened Steel Reaver","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25984-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.2796,"markerRadius":1.084}}},"entry-28579":{"id":"entry-28579","kind":"mob","name":"Hardened Steel Berserker","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25982-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.2796,"markerRadius":1.084}}},"entry-28835":{"id":"entry-28835","kind":"mob","name":"Stormforged Construct","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-26143-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":7.4605,"markerRadius":2.5497}}},"entry-28580":{"id":"entry-28580","kind":"mob","name":"Hardened Steel Skycaller","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25985-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.2796,"markerRadius":1.084}}},"entry-28836":{"id":"entry-28836","kind":"mob","name":"Stormforged Runeshaper","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25756-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-28581":{"id":"entry-28581","kind":"mob","name":"Stormforged Tactician","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25759-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-28837":{"id":"entry-28837","kind":"mob","name":"Stormforged Sentinel","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25757-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-28582":{"id":"entry-28582","kind":"mob","name":"Stormforged Mender","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25754-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-28838":{"id":"entry-28838","kind":"mob","name":"Titanium Vanguard","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-26053-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0592,"labelHeight":8.4473,"markerRadius":1.7345}}},"entry-28583":{"id":"entry-28583","kind":"mob","name":"Blistering Steamrager","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25654-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.7608,"markerRadius":0.9638}}},"entry-28584":{"id":"entry-28584","kind":"mob","name":"Unbound Firestorm","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1750,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-24905-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.5735,"labelHeight":6.1198,"markerRadius":3.0916}}},"entry-28585":{"id":"entry-28585","kind":"mob","name":"Slag","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-2170-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1407,"labelHeight":3.0979,"markerRadius":1.4601}}},"entry-28586":{"id":"entry-28586","kind":"boss","name":"General Bjarngrim","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-53792","name":"Battle Stance","spellId":53792,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6551,"damageMultiplier":1.35},{"id":"spell-52092","name":"Temporary Electrical Charge","spellId":52092,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6551,"damageMultiplier":1.35},{"id":"spell-53790","name":"Defensive Stance","spellId":53790,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6551,"damageMultiplier":1.35},{"id":"spell-41105","name":"Defensive Aura","spellId":41105,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6551,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-41105","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-27301-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0647,"labelHeight":9.2392,"markerRadius":1.8971}}},"entry-28587":{"id":"entry-28587","kind":"boss","name":"Volkhan","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52238","name":"Temper","spellId":52238,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5689,"damageMultiplier":1.35},{"id":"spell-52387","name":"Heat","spellId":52387,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":9000,"damageMultiplier":1.35},{"id":"spell-52237","name":"Shattering Stomp","spellId":52237,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5689,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-27071-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":20.8473,"markerRadius":4.5}}},"entry-28920":{"id":"entry-28920","kind":"mob","name":"Stormforged Giant","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.07936,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-27092-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":15.9622,"markerRadius":4.5}}},"entry-28923":{"id":"entry-28923","kind":"boss","name":"Loken","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52663","name":"Random Lightning Visual","spellId":52663,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5175,"damageMultiplier":1.35},{"id":"spell-59414","name":"Pulsing Shockwave Aura","spellId":59414,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5175,"damageMultiplier":1.35},{"id":"spell-52961","name":"Pulsing Shockwave","spellId":52961,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5175,"damageMultiplier":1.35},{"id":"spell-52960","name":"Lightning Nova","spellId":52960,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":5175,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-27485-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0068,"labelHeight":17.7279,"markerRadius":3.628}}}},"staticSpawns":[{"id":"creature-76278","entityId":"entry-28547","position":[-1033.0784,64.7789,1068.4127],"yaw":-3.60509,"spawnMask":3},{"id":"creature-76279","entityId":"entry-28825","position":[-1022.3014,64.7831,1069.0527],"yaw":-4.02161,"spawnMask":3},{"id":"creature-76280","entityId":"entry-28825","position":[-1027.8594,64.773,1059.8827],"yaw":-3.00589,"spawnMask":3},{"id":"creature-76281","entityId":"entry-28825","position":[-1031.9414,64.7844,1078.5327],"yaw":-1.94418,"spawnMask":3},{"id":"creature-76282","entityId":"entry-28825","position":[-1039.7564,64.7753,1059.5527],"yaw":-6.25894,"spawnMask":3},{"id":"creature-76283","entityId":"entry-28825","position":[-1047.8344,64.7883,1076.4427],"yaw":-5.94552,"spawnMask":3},{"id":"creature-76284","entityId":"entry-28825","position":[-1093.6644,64.7673,1066.4727],"yaw":-3.10993,"spawnMask":3},{"id":"creature-76285","entityId":"entry-28825","position":[-1086.6284,64.7673,1073.3427],"yaw":-1.67872,"spawnMask":3},{"id":"creature-76286","entityId":"entry-28825","position":[-1090.3764,64.7673,1063.6327],"yaw":-6.26667,"spawnMask":3},{"id":"creature-76287","entityId":"entry-28825","position":[-1090.3514,69.3033,1017.0827],"yaw":-3.96968,"spawnMask":3},{"id":"creature-76288","entityId":"entry-28825","position":[-1091.5394,69.422,1030.7227],"yaw":-3.95068,"spawnMask":3},{"id":"creature-76289","entityId":"entry-28825","position":[-1090.0994,69.3033,1009.7127],"yaw":-2.21891,"spawnMask":3},{"id":"creature-76290","entityId":"entry-28825","position":[-1098.4504,69.3033,1013.4827],"yaw":-4.65494,"spawnMask":3},{"id":"creature-76291","entityId":"entry-28825","position":[-1104.2384,69.3033,1016.3727],"yaw":-1.38923,"spawnMask":3},{"id":"creature-76292","entityId":"entry-28825","position":[-1097.2954,69.3033,1026.7027],"yaw":-2.71994,"spawnMask":3},{"id":"creature-76293","entityId":"entry-28825","position":[-1101.0524,64.7673,1071.8027],"yaw":-2.54861,"spawnMask":3},{"id":"creature-76294","entityId":"entry-28825","position":[-1096.8384,64.7673,1082.1327],"yaw":-3.04051,"spawnMask":3},{"id":"creature-76295","entityId":"entry-28825","position":[-1097.0114,65.2073,1059.5727],"yaw":-5.97313,"spawnMask":3},{"id":"creature-76298","entityId":"entry-28826","position":[-1090.8194,69.3033,1013.2827],"yaw":-3.32541,"spawnMask":3},{"id":"creature-126873","entityId":"entry-28546","position":[-1034.8274,73.7208,974.9527],"yaw":-0.017453,"spawnMask":3},{"id":"creature-126876","entityId":"entry-28826","position":[-1039.0564,69.4187,1003.7627],"yaw":-6.14356,"spawnMask":3},{"id":"creature-126877","entityId":"entry-28826","position":[-1029.8224,69.4188,1003.7127],"yaw":-2.77507,"spawnMask":3},{"id":"creature-126878","entityId":"entry-28578","position":[-807.1011,52.6934,1218.0427],"yaw":-0.802851,"spawnMask":3},{"id":"creature-126879","entityId":"entry-28578","position":[-673.7711,52.6932,1220.2227],"yaw":-0.069813,"spawnMask":3},{"id":"creature-126880","entityId":"entry-28578","position":[-740.7855,62.5511,1297.5927],"yaw":-2.72271,"spawnMask":3},{"id":"creature-126881","entityId":"entry-28578","position":[-729.3066,71.2791,1332.5327],"yaw":-4.99164,"spawnMask":3},{"id":"creature-126882","entityId":"entry-28578","position":[-743.4413,71.2791,1332.6227],"yaw":-1.64061,"spawnMask":3},{"id":"creature-126883","entityId":"entry-28578","position":[-609.7734,66.2169,1218.7327],"yaw":-1.64061,"spawnMask":3},{"id":"creature-126884","entityId":"entry-28578","position":[-609.9874,66.2169,1230.7927],"yaw":-1.62316,"spawnMask":3},{"id":"creature-126885","entityId":"entry-28578","position":[-799.7522,46.0186,1145.3827],"yaw":0,"spawnMask":3},{"id":"creature-126886","entityId":"entry-28579","position":[-806.814,52.6934,1232.4027],"yaw":-2.37365,"spawnMask":3},{"id":"creature-126887","entityId":"entry-28579","position":[-673.3566,52.6932,1229.8327],"yaw":-3.19395,"spawnMask":3},{"id":"creature-126888","entityId":"entry-28579","position":[-729.4007,62.5511,1295.1327],"yaw":-3.90954,"spawnMask":3},{"id":"creature-126889","entityId":"entry-28579","position":[-742.9461,71.2791,1327.5927],"yaw":-1.5708,"spawnMask":3},{"id":"creature-126890","entityId":"entry-28835","position":[-683.0871,73.6641,959.1927],"yaw":-4.79965,"spawnMask":3},{"id":"creature-126891","entityId":"entry-28835","position":[-682.6362,73.6615,972.3827],"yaw":-5.07891,"spawnMask":3},{"id":"creature-126893","entityId":"entry-28835","position":[-982.2574,73.6907,958.8427],"yaw":-4.69494,"spawnMask":3},{"id":"creature-126894","entityId":"entry-28835","position":[-982.6184,73.7084,974.3327],"yaw":-4.79965,"spawnMask":3},{"id":"creature-126895","entityId":"entry-28579","position":[-669.5034,46.0184,1164.7427],"yaw":-3.52556,"spawnMask":3},{"id":"creature-126896","entityId":"entry-28835","position":[-812.6832,73.6992,961.5327],"yaw":-4.72984,"spawnMask":3},{"id":"creature-126897","entityId":"entry-28835","position":[-812.6219,73.7097,973.1127],"yaw":-4.69494,"spawnMask":3},{"id":"creature-126898","entityId":"entry-28579","position":[-808.7288,46.0186,1151.3927],"yaw":-1.16937,"spawnMask":3},{"id":"creature-126899","entityId":"entry-28580","position":[-797.6921,52.6934,1234.7127],"yaw":-3.35103,"spawnMask":3},{"id":"creature-126900","entityId":"entry-28580","position":[-726.6853,62.551,1285.1727],"yaw":-5.0091,"spawnMask":3},{"id":"creature-126901","entityId":"entry-28580","position":[-729.8377,71.2791,1326.9927],"yaw":-4.86947,"spawnMask":3},{"id":"creature-126902","entityId":"entry-28836","position":[-891.7794,73.7369,917.6427],"yaw":-5.93412,"spawnMask":3},{"id":"creature-126903","entityId":"entry-28836","position":[-882.1024,69.2552,966.5527],"yaw":-1.39626,"spawnMask":3},{"id":"creature-126904","entityId":"entry-28836","position":[-876.1114,69.2552,962.0327],"yaw":-5.77704,"spawnMask":3},{"id":"creature-126905","entityId":"entry-28580","position":[-669.5914,46.0184,1145.8327],"yaw":-5.89921,"spawnMask":3},{"id":"creature-126906","entityId":"entry-28580","position":[-663.5054,46.0184,1155.3727],"yaw":-4.67748,"spawnMask":3},{"id":"creature-126907","entityId":"entry-28836","position":[-943.0514,69.1601,948.5927],"yaw":-6.0912,"spawnMask":3},{"id":"creature-126908","entityId":"entry-28836","position":[-942.4914,69.1368,954.9527],"yaw":-3.1765,"spawnMask":3},{"id":"creature-126909","entityId":"entry-28836","position":[-890.0294,73.7811,1000.5927],"yaw":-4.4855,"spawnMask":3},{"id":"creature-126910","entityId":"entry-28836","position":[-891.8574,73.7742,1011.7227],"yaw":-3.56047,"spawnMask":3},{"id":"creature-126911","entityId":"entry-28836","position":[-948.5504,69.1586,978.6327],"yaw":-0.610865,"spawnMask":3},{"id":"creature-126912","entityId":"entry-28836","position":[-904.8084,73.7494,990.6727],"yaw":-5.55015,"spawnMask":3},{"id":"creature-126913","entityId":"entry-28836","position":[-920.3524,73.7103,928.5627],"yaw":-1.01229,"spawnMask":3},{"id":"creature-126914","entityId":"entry-28580","position":[-806.7566,46.0186,1162.0227],"yaw":-2.33874,"spawnMask":3},{"id":"creature-126916","entityId":"entry-28581","position":[-706.8771,56.0466,1247.6427],"yaw":-3.87463,"spawnMask":3},{"id":"creature-126920","entityId":"entry-28837","position":[-889.1024,73.7718,934.4727],"yaw":-3.75246,"spawnMask":3},{"id":"creature-126921","entityId":"entry-28837","position":[-875.2054,69.2417,970.4527],"yaw":-3.94444,"spawnMask":3},{"id":"creature-126922","entityId":"entry-28581","position":[-681.5183,48.5804,1186.4827],"yaw":-4.67748,"spawnMask":3},{"id":"creature-126923","entityId":"entry-28581","position":[-807.5239,48.5755,1186.5227],"yaw":-4.66003,"spawnMask":3},{"id":"creature-126927","entityId":"entry-28837","position":[-949.0554,69.1484,953.0127],"yaw":-2.23402,"spawnMask":3},{"id":"creature-126928","entityId":"entry-28837","position":[-944.7474,69.1646,983.9127],"yaw":-3.33358,"spawnMask":3},{"id":"creature-126929","entityId":"entry-28581","position":[-941.4844,69.1464,977.4327],"yaw":-6.16101,"spawnMask":3},{"id":"creature-126930","entityId":"entry-28837","position":[-915.8114,73.7309,992.8627],"yaw":-0.296706,"spawnMask":3},{"id":"creature-126931","entityId":"entry-28581","position":[-919.2284,73.7281,1003.1727],"yaw":-2.04204,"spawnMask":3},{"id":"creature-126932","entityId":"entry-28837","position":[-907.0644,73.7447,942.7327],"yaw":-3.28122,"spawnMask":3},{"id":"creature-126934","entityId":"entry-28838","position":[-885.5944,73.7485,925.6427],"yaw":-4.86947,"spawnMask":3},{"id":"creature-126936","entityId":"entry-28838","position":[-880.6614,73.7114,939.3927],"yaw":-2.11434,"spawnMask":3},{"id":"creature-126937","entityId":"entry-28838","position":[-920.4984,73.6185,981.6327],"yaw":-2.01811,"spawnMask":3},{"id":"creature-126943","entityId":"entry-28838","position":[-885.6234,73.7707,1007.8527],"yaw":-4.06662,"spawnMask":3},{"id":"creature-126944","entityId":"entry-28838","position":[-919.4384,73.7225,938.7827],"yaw":-2.1293,"spawnMask":3},{"id":"creature-126945","entityId":"entry-28583","position":[-1016.0084,50.3225,1255.8527],"yaw":-5.02655,"spawnMask":3},{"id":"creature-126946","entityId":"entry-28583","position":[-1008.8294,50.3188,1251.5527],"yaw":-3.9619,"spawnMask":3},{"id":"creature-126947","entityId":"entry-28583","position":[-908.2324,67.186,1191.0527],"yaw":-3.47321,"spawnMask":3},{"id":"creature-126948","entityId":"entry-28583","position":[-913.8514,64.5303,1198.4627],"yaw":-0.994838,"spawnMask":3},{"id":"creature-126949","entityId":"entry-28583","position":[-909.4354,68.4448,1261.3927],"yaw":-0.942478,"spawnMask":3},{"id":"creature-126950","entityId":"entry-28583","position":[-912.7194,64.5458,1252.9427],"yaw":-2.80998,"spawnMask":3},{"id":"creature-126951","entityId":"entry-28583","position":[-960.8264,64.5401,1186.9127],"yaw":-5.34071,"spawnMask":3},{"id":"creature-126952","entityId":"entry-28583","position":[-950.7324,64.5415,1188.9827],"yaw":-3.57792,"spawnMask":3},{"id":"creature-126953","entityId":"entry-28583","position":[-950.4554,64.5416,1261.7827],"yaw":-0.925025,"spawnMask":3},{"id":"creature-126955","entityId":"entry-28583","position":[-935.4064,64.4533,1247.2327],"yaw":-1.61992,"spawnMask":3},{"id":"creature-126956","entityId":"entry-28583","position":[-1015.4064,50.2971,1192.3127],"yaw":-0.802851,"spawnMask":3},{"id":"creature-126957","entityId":"entry-28583","position":[-1008.0674,50.3162,1186.4127],"yaw":-2.60054,"spawnMask":3},{"id":"creature-126958","entityId":"entry-28584","position":[-1011.3394,50.2358,1262.9227],"yaw":-4.44524,"spawnMask":3},{"id":"creature-126959","entityId":"entry-28584","position":[-918.5004,64.5213,1188.1027],"yaw":-1.15192,"spawnMask":3},{"id":"creature-126960","entityId":"entry-28584","position":[-917.5474,65.2797,1263.3427],"yaw":-3.87463,"spawnMask":3},{"id":"creature-126961","entityId":"entry-28584","position":[-988.2634,35.7383,1255.1127],"yaw":-2.28638,"spawnMask":3},{"id":"creature-126962","entityId":"entry-28584","position":[-961.1934,64.5366,1195.2327],"yaw":-5.2709,"spawnMask":3},{"id":"creature-126963","entityId":"entry-28584","position":[-958.9584,64.5414,1263.0227],"yaw":-4.55531,"spawnMask":3},{"id":"creature-126964","entityId":"entry-28584","position":[-959.7914,64.5377,1253.8727],"yaw":-2.44346,"spawnMask":3},{"id":"creature-126965","entityId":"entry-28584","position":[-987.8614,35.7383,1192.9927],"yaw":-2.56563,"spawnMask":3},{"id":"creature-126966","entityId":"entry-28584","position":[-1009.7134,50.27,1199.4227],"yaw":-3.00197,"spawnMask":3},{"id":"creature-126967","entityId":"entry-28585","position":[-963.2554,35.655,1224.3927],"yaw":-4.66591,"spawnMask":3},{"id":"creature-126968","entityId":"entry-28585","position":[-901.4514,35.656,1218.6027],"yaw":-1.80097,"spawnMask":3},{"id":"creature-126969","entityId":"entry-28585","position":[-911.0964,35.655,1212.9827],"yaw":-2.19795,"spawnMask":3},{"id":"creature-126970","entityId":"entry-28585","position":[-971.1414,35.655,1206.7827],"yaw":-4.05242,"spawnMask":3},{"id":"creature-126971","entityId":"entry-28585","position":[-969.5844,35.655,1242.3727],"yaw":-5.38308,"spawnMask":3},{"id":"creature-126972","entityId":"entry-28585","position":[-928.0004,35.655,1211.2827],"yaw":-3.17264,"spawnMask":3},{"id":"creature-126973","entityId":"entry-28585","position":[-916.0084,35.655,1225.2427],"yaw":-1.52094,"spawnMask":3},{"id":"creature-126974","entityId":"entry-28585","position":[-897.2894,35.6576,1225.1527],"yaw":-1.5631,"spawnMask":3},{"id":"creature-126975","entityId":"entry-28585","position":[-937.8444,35.655,1248.7427],"yaw":-6.25265,"spawnMask":3},{"id":"creature-126976","entityId":"entry-28585","position":[-938.7544,35.655,1198.8027],"yaw":-3.19814,"spawnMask":3},{"id":"creature-126977","entityId":"entry-28585","position":[-950.8774,35.655,1236.9827],"yaw":-6.01943,"spawnMask":3},{"id":"creature-126978","entityId":"entry-28585","position":[-951.8134,35.655,1212.5527],"yaw":-3.45532,"spawnMask":3},{"id":"creature-126979","entityId":"entry-28585","position":[-926.7714,35.655,1237.2727],"yaw":-0.067514,"spawnMask":3},{"id":"creature-126980","entityId":"entry-28585","position":[-906.7164,35.655,1237.1027],"yaw":-1.04352,"spawnMask":3},{"id":"creature-126981","entityId":"entry-28586","position":[-799.9184,45.9295,1154.9627],"yaw":-4.7273,"spawnMask":3},{"id":"creature-126982","entityId":"entry-28587","position":[-875.0964,69.2305,1225.3427],"yaw":-2.07694,"spawnMask":3},{"id":"creature-126985","entityId":"entry-28923","position":[-739.1879,73.2427,1079.4327],"yaw":-3.15905,"spawnMask":3}],"roamingPacks":[{"id":"patrol-76296","name":"Stormfury Revenant Patrol","speed":1.15,"pathId":762960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1071.1084,64.7731,1069.1027],[-1019.5944,64.7823,1069.2627]],"members":[{"id":"member","entityId":"entry-28826","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-76297","name":"Stormfury Revenant Patrol","speed":1.15,"pathId":762970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1088.4914,64.7673,1073.5327],[-1088.3514,64.7673,1064.9127],[-1100.4124,65.1222,1063.9827],[-1103.3984,64.7673,1076.7127],[-1090.8864,64.7673,1076.5827]],"members":[{"id":"member","entityId":"entry-28826","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126874","name":"Storming Vortex Patrol","speed":1.15,"pathId":1268740,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1021.2254,69.3177,1011.1827],[-1048.0064,69.3126,1011.5827]],"members":[{"id":"member","entityId":"entry-28547","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126892","name":"Stormforged Construct Patrol","speed":1.15,"pathId":1268920,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-694.7109,73.8731,946.1227],[-697.3573,73.8731,943.4327],[-724.2647,71.6954,927.1227],[-760.8308,73.7051,926.8527],[-772.891,73.8219,934.1727],[-782.8343,73.8687,945.6627],[-783.0323,73.8714,945.9727],[-772.6712,73.8283,933.9927],[-752.7599,71.1632,925.4227],[-697.3573,73.8731,943.4327],[-724.2647,71.6954,927.1227]],"members":[{"id":"member","entityId":"entry-28835","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126915","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-725.1536,62.4678,1286.4127],[-726.6913,62.4678,1294.5727],[-727.235,62.4678,1294.7727],[-724.5073,62.4678,1287.3327]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126917","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269170,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-740.6445,45.9352,1161.5827],[-740.6761,45.9352,1162.9927],[-772.5292,45.9352,1162.4227],[-772.4932,45.9352,1162.7727]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126918","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269180,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-666.5614,45.9352,1145.3827],[-671.2364,45.9352,1142.4127],[-672.4274,45.9352,1143.3527],[-671.2154,45.9352,1144.3327],[-668.5724,45.9352,1143.3927],[-659.9214,45.9352,1152.8727],[-660.0504,45.9352,1158.2127],[-666.5024,45.9352,1166.7827],[-671.4874,45.9352,1167.9127],[-673.0004,45.9352,1165.5527],[-672.2104,45.9352,1165.3627],[-669.7284,45.9352,1167.9827],[-666.7774,45.9352,1166.8827],[-664.6814,45.9352,1160.1927],[-664.0584,45.9352,1157.9527],[-660.6764,45.9352,1156.3627]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126919","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269190,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-734.0552,45.9351,1147.3927],[-740.3613,47.4481,1147.2927],[-763.4798,45.9351,1147.6927],[-763.4624,45.9351,1147.2227],[-744.5129,46.2507,1147.5727],[-739.9602,47.4436,1147.5527],[-717.2596,45.9353,1147.5227],[-717.2781,45.9353,1147.1027]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126924","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-781.1448,53.5907,1251.6227],[-781.7446,53.5813,1252.1827],[-763.3339,61.3836,1269.2327],[-763.766,61.3795,1269.6427]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126925","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-740.2782,62.6566,1307.6027],[-740.2632,65.5438,1312.3627],[-740.1734,71.1939,1322.4127],[-740.2008,71.1966,1326.4927],[-740.9915,71.1966,1326.9827],[-740.759,71.1966,1323.1427],[-740.7314,67.2651,1315.2027],[-740.3426,62.524,1307.3927],[-740.2268,62.4678,1300.7427],[-740.3004,62.4678,1299.7227]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126926","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-708.4854,61.3226,1270.2427],[-708.0748,61.3226,1270.6527],[-691.0599,53.475,1252.2127],[-690.5115,53.4499,1252.6427]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126933","name":"Stormforged Mender Patrol","speed":1.15,"pathId":1269330,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-769.5895,54.9288,1246.1527],[-769.1796,54.9273,1245.7327],[-754.6946,61.4892,1261.0727],[-754.1821,61.4957,1260.5927]],"members":[{"id":"member","entityId":"entry-28582","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126935","name":"Titanium Vanguard Patrol","speed":1.15,"pathId":1269350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-872.6139,71.8118,942.8627],[-856.3609,71.3559,943.7027],[-848.3074,71.4789,948.8627],[-837.5722,73.7494,959.1527],[-841.187,72.2035,976.2927],[-865.4597,70.2875,988.9427],[-879.9424,73.8641,990.7227],[-882.1084,73.9472,990.7727],[-897.8644,73.6585,966.4727],[-892.7514,73.66,956.1327],[-881.3334,73.8149,945.9027]],"members":[{"id":"member","entityId":"entry-28838","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126938","name":"Titanium Vanguard Patrol","speed":1.15,"pathId":1269380,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-939.1324,71.1164,989.8027],[-918.9904,73.8212,953.7227],[-971.3524,72.3481,966.2427],[-918.9264,73.7821,953.6427],[-971.4424,72.3123,966.2927],[-939.1074,71.147,989.6427],[-918.9344,73.8237,953.6027],[-971.4574,72.3646,966.2927],[-939.1124,71.2357,989.4127],[-918.9684,73.8342,953.6127],[-971.4084,72.502,966.2527],[-938.9684,71.1067,989.4527],[-918.8634,73.7962,953.7527],[-971.4834,72.3159,966.3127],[-939.1144,71.1459,989.6427],[-918.9534,73.8229,953.6427],[-971.3854,72.351,966.2527],[-939.1264,71.1437,989.6327],[-918.7484,73.8325,953.6827],[-971.3874,72.3512,966.2627],[-939.0734,71.1127,989.6427],[-918.9124,73.7853,953.6127],[-971.5264,72.364,966.4227],[-939.0884,71.1135,989.6327],[-918.9244,73.7826,953.6427],[-973.3144,73.6618,963.4627]],"members":[{"id":"member","entityId":"entry-28838","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126939","name":"Stormforged Mender Patrol","speed":1.15,"pathId":1269390,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-809.4362,52.6101,1217.0727],[-806.3326,52.6101,1213.5527],[-804.4557,52.6101,1215.3027],[-805.1442,52.6101,1216.0927],[-808.1958,52.6101,1214.6427],[-810.6681,52.6101,1217.7427],[-809.3275,52.6101,1233.4427],[-807.5682,52.6101,1234.7827],[-804.7327,52.6101,1235.4727],[-799.8573,52.6101,1236.6727],[-799.1811,52.6101,1236.0227],[-804.8061,52.6101,1234.9527],[-805.2383,52.6101,1234.5627],[-809.4195,52.6101,1234.1627],[-811.9167,52.6101,1218.6827]],"members":[{"id":"member","entityId":"entry-28582","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126940","name":"Stormforged Mender Patrol","speed":1.15,"pathId":1269400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-733.7721,45.935,1162.0327],[-733.7394,45.935,1162.9027],[-704.2361,45.935,1161.9627],[-704.226,45.935,1162.7627]],"members":[{"id":"member","entityId":"entry-28582","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126941","name":"Stormforged Mender Patrol","speed":1.15,"pathId":1269410,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-808.1025,45.9352,1160.0427],[-804.2224,45.9352,1146.9427],[-801.9671,45.9352,1145.7227],[-806.8662,45.9352,1148.1627],[-807.5495,45.9352,1149.7827],[-811.1532,45.9352,1149.4527],[-812.504,45.9352,1152.8127],[-809.9972,45.9352,1157.1227]],"members":[{"id":"member","entityId":"entry-28582","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126942","name":"Stormforged Mender Patrol","speed":1.15,"pathId":1269420,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-675.8342,52.61,1229.3127],[-675.7958,52.61,1230.7227],[-671.1914,52.61,1232.3927],[-670.6804,52.61,1230.4727],[-671.1374,52.61,1230.4127],[-671.4654,52.61,1220.3727],[-672.0434,52.61,1220.3127],[-672.3954,52.61,1218.6027],[-676.5552,52.61,1217.9727],[-676.5376,52.61,1220.0727],[-676.1893,52.61,1220.0327]],"members":[{"id":"member","entityId":"entry-28582","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126954","name":"Blistering Steamrager Patrol","speed":1.15,"pathId":1269540,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-932.0004,64.7045,1204.1927],[-947.8054,64.7017,1205.2827],[-959.7604,64.7025,1221.6627],[-957.9044,64.7027,1234.0027],[-946.1994,64.7028,1247.3527],[-942.7354,64.7028,1247.7027],[-921.5274,64.7036,1241.8927],[-915.5394,64.7033,1228.5027],[-919.4374,64.7407,1211.1027],[-931.8594,64.7039,1204.1327]],"members":[{"id":"member","entityId":"entry-28583","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126983","name":"Stormforged Giant Patrol","speed":1.15,"pathId":1269830,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-718.9661,66.0818,991.0127],[-712.9645,66.0828,978.7927],[-719.9521,66.0738,960.0927],[-717.7574,66.0729,961.6727],[-712.7798,66.0831,983.9127],[-721.7587,66.0876,993.3127]],"members":[{"id":"member","entityId":"entry-28920","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126984","name":"Stormforged Giant Patrol","speed":1.15,"pathId":1269840,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-753.4639,66.0705,991.9327],[-765.135,66.0633,973.8427],[-760.3103,66.06,959.8227],[-764.7585,66.0606,971.0127],[-760.6111,66.0616,984.8427]],"members":[{"id":"member","entityId":"entry-28920","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-126981","name":"General Bjarngrim","position":[-799.9184,45.9295,1154.9627]},{"id":"creature-126982","name":"Volkhan","position":[-875.0964,69.2305,1225.3427]},{"id":"creature-126873","name":"Ionar","position":[-1034.8274,73.7208,974.9527]},{"id":"creature-126985","name":"Loken","position":[-739.1879,73.2427,1079.4327]}],"objectiveOrder":[{"id":"creature-126981","name":"General Bjarngrim","position":[-799.9184,45.9295,1154.9627]},{"id":"creature-126982","name":"Volkhan","position":[-875.0964,69.2305,1225.3427]},{"id":"creature-126873","name":"Ionar","position":[-1034.8274,73.7208,974.9527]},{"id":"creature-126985","name":"Loken","position":[-739.1879,73.2427,1079.4327]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65573,"id":191324,"map":602,"orientation":-1.5708,"phaseMask":1,"position_x":1219.26,"position_y":34.0884,"position_z":62.2243,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65574,"id":191325,"map":602,"orientation":1.5708,"phaseMask":1,"position_x":1277.44,"position_y":-164.663,"position_z":53.5171,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65575,"id":191326,"map":602,"orientation":0,"phaseMask":1,"position_x":1074.3,"position_y":-232.213,"position_z":62.5531,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65576,"id":191327,"map":602,"orientation":3.14159,"phaseMask":1,"position_x":1176.2,"position_y":-232.487,"position_z":53.8625,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65577,"id":191328,"map":602,"orientation":0,"phaseMask":1,"position_x":1074.3,"position_y":-31.9046,"position_z":62.5531,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65582,"id":190858,"map":602,"orientation":2.07694,"phaseMask":1,"position_x":1322.23,"position_y":-89.2544,"position_z":61.3288,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65583,"id":192654,"map":602,"orientation":1.5708,"phaseMask":1,"position_x":1124.02,"position_y":33.9976,"position_z":60.5274,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65584,"id":191415,"map":602,"orientation":0,"phaseMask":1,"position_x":1331.93,"position_y":176.425,"position_z":55.1985,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65585,"id":191416,"map":602,"orientation":3.14159,"phaseMask":1,"position_x":1332.17,"position_y":-115.781,"position_z":24.723,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65586,"id":192465,"map":602,"orientation":-1.5708,"phaseMask":1,"position_x":1331.6,"position_y":276.506,"position_z":57.1931,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65587,"id":192466,"map":602,"orientation":-1.5708,"phaseMask":1,"position_x":1331.6,"position_y":276.506,"position_z":57.1931,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/halls-of-lightning/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["20/20 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"gundrak","title":"Gundrak","mapId":604,"lfgDungeonIds":[216,217],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[74,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Gundrak","theme":"Open-world expedition","summary":"Fight through Gundrak, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Gundrak...","unchartedAreaName":"Uncharted Gundrak","background":"#081016","fog":{"color":"#0a141c","near":36,"far":326.034},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/604-gundrak/visual.glb","checksum":"b62724b4c8ed2286043e8bb869c466a4fa4c23741b21ac02ff5bd95e3880a37d","size":13318808,"triangleCount":1811897}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/604-gundrak/collision-000.glb","checksum":"ed1ce62f544c6fb47d649746f8d9ebf1c6ebe2c4a88e4c4ed3fd3b033edc49ff","size":113548,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/604-gundrak/collision-001.glb","checksum":"0ddf22ba15a12cae7145f1613c910940d288f7d6d51a37b62cd5bab61c5070a3","size":113724,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/604-gundrak/collision-002.glb","checksum":"929db3926fc1719e33a6c3bfc244fee24ba1373fc9885f746c9d5359c1d3905a","size":113368,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/604-gundrak/collision-003.glb","checksum":"79d6197cf3e9df89bc0b53fef3aabeb893b5f87e7e5d3ac24144f933a21db921","size":113188,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/604-gundrak/collision-004.glb","checksum":"3b89e2654df953f73230be4c6bb685ec9d4bbe4b38dd1ae63529dbd802e32bd4","size":113528,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/604-gundrak/collision-005.glb","checksum":"1a1341d41849d571b27804b6f012173bd3ff3c4f3f5e47a183911386c45bfd80","size":113372,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/604-gundrak/collision-006.glb","checksum":"070283ce42d0386357676f669564d2f994752b2fc6986e0f58b53693a04a3392","size":113548,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/604-gundrak/collision-007.glb","checksum":"d194a6fda7531e8eed6c50c037b2b20917ca29106f000ffb593eb726cc3503d3","size":113192,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/604-gundrak/collision-008.glb","checksum":"76610f0a4d450e1dc8039c050f6cb0cca91c24f1f58fa13ed727d26c3833ca18","size":113012,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/604-gundrak/collision-009.glb","checksum":"555feebb9478a014242157e979408da0b8db5abaa410b23618d490e2018627ca","size":113528,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/604-gundrak/collision-010.glb","checksum":"4ee44b8bb7de224ebfafbe99d3d0e1c242f358b5890278213edf2c39f0d96a05","size":113136,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/604-gundrak/collision-011.glb","checksum":"243d56acce35178d465953175a2805f1f6f6c9375d40eb9eb6af17c03d5f6008","size":113344,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/604-gundrak/collision-012.glb","checksum":"d8a288ccd02b368fb7c2f87bf0cc77db0b6b0e71b4948478f97b27c863020a1f","size":113348,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/604-gundrak/collision-013.glb","checksum":"65f246f557c5182d83d539df31f78f3ee82162ffab2a8d091be333f35e149e97","size":1420812,"triangleCount":99998},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/604-gundrak/collision-014.glb","checksum":"20941037eb57813b451131b9b5d2f54f98bd733f6e154c472e1cbf6588056967","size":113136,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/604-gundrak/collision-015.glb","checksum":"232afb1d61351f0dbbe83afdb0a8898f119aeb7351d04ac00f60b6d5fdb7c9e5","size":113656,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/604-gundrak/collision-016.glb","checksum":"789fdad76b0f70b78ac1dfce59d674dad361acdd921dc649056dcd5863f65930","size":113420,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/604-gundrak/collision-017.glb","checksum":"dfad0f72efb8d54a88325de58bb0a381cad6ef74b0edf3fe8ee678c555ca2ea0","size":113596,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/604-gundrak/collision-018.glb","checksum":"d1d6b1515d955dea2acfdad08102fd0a0c00775174ed4c0a7844a9c40e52f013","size":113192,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/604-gundrak/collision-019.glb","checksum":"be1581db72d4d2d39230ef7b9eea8a0f561797b0f428e82166fc6331fef58e8b","size":113012,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/604-gundrak/collision-020.glb","checksum":"8da2adf5fd0294d20c90821bc1a42984cbeecb7bed5d78bb348055f1e4b82a5f","size":113656,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/604-gundrak/collision-021.glb","checksum":"e107ab3fab4f3747a83600379c4020409839cb7c6f0f0eafca25fcf1120d5c3a","size":113736,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/604-gundrak/collision-022.glb","checksum":"8c757134a76e90a61c07a82eb22145605cca79d120e5d6c0000141c341732883","size":113912,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/604-gundrak/collision-023.glb","checksum":"d4d7e447b399f8ae9b250265c9be9189bab3df9aa14ada9c901541b483d2040c","size":113416,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/604-gundrak/collision-024.glb","checksum":"083f8ec7c8b75a220eb6a4aa66e7b4302c99279efd467b3f81e3f931e3f6c860","size":113236,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/604-gundrak/collision-025.glb","checksum":"603ac2097b0a0d441bcbeada216ce469e11c3ba04ec6f53ba3d2740232b62855","size":113656,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/604-gundrak/navigation.glb","checksum":"ace7eb32a564022c5ddb2a4a65532c62ad7b01773ca6bf3286d23344648801d2","size":292128,"triangleCount":24827}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[583.4987,29.6708,1385.5828],"max":[1036.3237,149.3,1824.6428]},"entrance":{"name":"Gundrak Entrance","footPosition":[872.4667,129.3,1756.7328],"forward":[-0.9870525750982887,0,-0.16039705106964125],"yaw":-1.7318892259027725},"areas":[{"id":"entrance","name":"Gundrak Entrance","center":[872.4667,129.3,1756.7328],"radius":35},{"id":"area-slad-ran","name":"Slad'ran's Encounter","center":[715.2787,81.931,1640.0228],"radius":42},{"id":"area-drakkari-colossus","name":"Drakkari Colossus's Encounter","center":[759.9609,129.2423,1753.2671],"radius":42},{"id":"area-moorabi","name":"Moorabi's Encounter","center":[849.8347,81.931,1637.3628],"radius":42},{"id":"area-gal-darah","name":"Gal'darah's Encounter","center":[783.9517,89.21,1779.6428],"radius":42},{"id":"area-eck-the-ferocious","name":"Eck the Ferocious's Encounter","center":[658.5943,129.1501,1756.7192],"radius":42}],"entities":{"entry-29768":{"id":"entry-29768","kind":"mob","name":"Unyielding Constrictor","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/91410fe76473ce1ac43daf2acee48c51da05084c27f58d11904d3c63faa51260.glb","rotationY":-1.5707963267948966,"groundOffset":0.3657,"labelHeight":1.6848,"markerRadius":3.5943}}},"entry-29774":{"id":"entry-29774","kind":"mob","name":"Spitting Cobra","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-14557-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3657,"labelHeight":1.6848,"markerRadius":3.5943}}},"entry-29304":{"id":"entry-29304","kind":"boss","name":"Slad'ran","title":"Dungeon Boss","hasLoot":true,"combat":{"level":78,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-55081","name":"Poison Nova","spellId":55081,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":2500,"damageMultiplier":0.82,"radius":11},{"id":"spell-48287","name":"Powerful Bite","spellId":48287,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5782,"damageMultiplier":1.35},{"id":"spell-54970","name":"Venom Bolt","spellId":54970,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5782,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27422-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":10.2085,"markerRadius":1.3725}}},"entry-29305":{"id":"entry-29305","kind":"boss","name":"Moorabi","title":"Dungeon Boss","hasLoot":true,"combat":{"level":78,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-55163","name":"Mojo Frenzy","spellId":55163,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5456,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-55163","durationMs":12000,"magnitude":0.25}},{"id":"spell-55101","name":"Quake","spellId":55101,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5456,"damageMultiplier":0.82,"radius":11},{"id":"spell-55142","name":"Ground Tremor","spellId":55142,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6000,"damageMultiplier":1.35},{"id":"spell-55100","name":"Numbing Roar","spellId":55100,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5456,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27059-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0211,"labelHeight":5.6602,"markerRadius":0.9921}}},"entry-29306":{"id":"entry-29306","kind":"boss","name":"Gal'darah","title":"Dungeon Boss","hasLoot":true,"combat":{"level":78,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-54956","name":"Impaling Charge","spellId":54956,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4937,"damageMultiplier":1.35},{"id":"spell-55285","name":"Enrage","spellId":55285,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4937,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-55285","durationMs":12000,"magnitude":0.25}},{"id":"spell-55292","name":"Stomp","spellId":55292,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4937,"damageMultiplier":0.82,"radius":11},{"id":"spell-55218","name":"Stampede","spellId":55218,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4937,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27061-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0211,"labelHeight":5.6602,"markerRadius":0.9921}}},"entry-29819":{"id":"entry-29819","kind":"mob","name":"Drakkari Lancer","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27050-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.019,"labelHeight":5.0941,"markerRadius":0.8929}}},"entry-29307":{"id":"entry-29307","kind":"mob","name":"Drakkari Colossus","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3000,"damageMultiplier":1},{"id":"spell-52656","name":"Cosmetic - Stun Permanent (Freeze Anim)","spellId":52656,"delivery":"projectile","target":"random-party","school":"physical","animation":"cast","range":28,"cooldownMs":5571,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-54850","name":"Emerge","spellId":54850,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5571,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26588-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1386,"labelHeight":14.4748,"markerRadius":3.8594}}},"entry-29820":{"id":"entry-29820","kind":"mob","name":"Drakkari God Hunter","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27048-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.019,"labelHeight":5.0941,"markerRadius":0.8929}}},"entry-29822":{"id":"entry-29822","kind":"mob","name":"Drakkari Fire Weaver","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27047-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0169,"labelHeight":4.5281,"markerRadius":0.7937}}},"entry-29826":{"id":"entry-29826","kind":"mob","name":"Drakkari Medicine Man","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27051-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0169,"labelHeight":4.5281,"markerRadius":0.7937}}},"entry-29829":{"id":"entry-29829","kind":"mob","name":"Drakkari Earthshaker","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26590-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0153,"labelHeight":6.28,"markerRadius":2.0233}}},"entry-29830":{"id":"entry-29830","kind":"mob","name":"Living Mojo","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-55627","name":"Mojo Puddle","spellId":55627,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4060,"damageMultiplier":1.12},{"id":"spell-55626","name":"Mojo Wave","spellId":55626,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4060,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27029-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7889,"markerRadius":1.5309}}},"entry-29832":{"id":"entry-29832","kind":"mob","name":"Drakkari Golem","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26592-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0855,"labelHeight":8.9261,"markerRadius":2.38}}},"entry-29834":{"id":"entry-29834","kind":"mob","name":"Drakkari Frenzy","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-17170-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.7988,"markerRadius":1.0336}}},"entry-29838":{"id":"entry-29838","kind":"mob","name":"Drakkari Rhino","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26265-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.101,"labelHeight":6.4634,"markerRadius":4.0024}}},"entry-29874":{"id":"entry-29874","kind":"mob","name":"Drakkari Inciter","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27049-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0155,"labelHeight":4.1508,"markerRadius":0.7275}}},"entry-29920":{"id":"entry-29920","kind":"mob","name":"Ruins Dweller","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.809536,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-23320-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.953,"labelHeight":6.9439,"markerRadius":1.4377}}},"entry-29931":{"id":"entry-29931","kind":"mob","name":"Drakkari Rhino","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26265-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.101,"labelHeight":6.4634,"markerRadius":4.0024}}},"entry-29573":{"id":"entry-29573","kind":"boss","name":"Drakkari Elemental","title":"Dungeon Boss","hasLoot":true,"combat":{"level":78,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-54888","name":"Elemental Spawn Effect","spellId":54888,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4960,"damageMultiplier":1.35},{"id":"spell-54991","name":"Face Me","spellId":54991,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4960,"damageMultiplier":1.35},{"id":"spell-54878","name":"Merge","spellId":54878,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4960,"damageMultiplier":1.35},{"id":"spell-54801","name":"Surge","spellId":54801,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4960,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27028-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":7.7421,"markerRadius":3.1283}}},"entry-29932":{"id":"entry-29932","kind":"boss","name":"Eck the Ferocious","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-55837","name":"Eck Spring","spellId":55837,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6124,"damageMultiplier":1.35},{"id":"spell-55815","name":"Eck Spring","spellId":55815,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6124,"damageMultiplier":1.35},{"id":"spell-55813","name":"Eck Bite","spellId":55813,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6124,"damageMultiplier":1.35},{"id":"spell-55814","name":"Eck Spit","spellId":55814,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6124,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26644-animated.glb","rotationY":-1.5707963267948966,"groundOffset":11.859,"labelHeight":20.8317,"markerRadius":4.3131}}}},"staticSpawns":[{"id":"creature-127006","entityId":"entry-29768","position":[691.2717,49.6708,1444.6728],"yaw":-5.044,"spawnMask":3},{"id":"creature-127007","entityId":"entry-29768","position":[628.4987,66.232,1533.0828],"yaw":-6.0912,"spawnMask":3},{"id":"creature-127008","entityId":"entry-29768","position":[648.0767,61.628,1507.6928],"yaw":-3.89208,"spawnMask":3},{"id":"creature-127009","entityId":"entry-29768","position":[673.0947,81.565,1561.7328],"yaw":-6.24828,"spawnMask":3},{"id":"creature-127010","entityId":"entry-29768","position":[666.9527,79.354,1554.9528],"yaw":-3.76991,"spawnMask":3},{"id":"creature-127011","entityId":"entry-29768","position":[714.0727,66.105,1430.5828],"yaw":-4.03171,"spawnMask":3},{"id":"creature-127012","entityId":"entry-29768","position":[717.3217,85.117,1504.6528],"yaw":-1.15192,"spawnMask":3},{"id":"creature-127013","entityId":"entry-29768","position":[672.9907,81.041,1515.8428],"yaw":-5.67065,"spawnMask":3},{"id":"creature-127015","entityId":"entry-29768","position":[685.4317,77.061,1642.3328],"yaw":-5.43354,"spawnMask":3},{"id":"creature-127016","entityId":"entry-29768","position":[679.1087,81.747,1667.4928],"yaw":-3.21141,"spawnMask":3},{"id":"creature-127018","entityId":"entry-29774","position":[680.0637,79.461,1555.1228],"yaw":-2.89725,"spawnMask":3},{"id":"creature-127019","entityId":"entry-29774","position":[713.7057,72.916,1560.5328],"yaw":-0.366519,"spawnMask":3},{"id":"creature-127020","entityId":"entry-29774","position":[710.7867,69.425,1540.9828],"yaw":-3.42085,"spawnMask":3},{"id":"creature-127021","entityId":"entry-29774","position":[726.5277,92.194,1494.2728],"yaw":-3.42085,"spawnMask":3},{"id":"creature-127022","entityId":"entry-29774","position":[711.2397,85.23,1486.8228],"yaw":-5.61996,"spawnMask":3},{"id":"creature-127024","entityId":"entry-29774","position":[668.3627,77.293,1512.5928],"yaw":-5.67066,"spawnMask":3},{"id":"creature-127025","entityId":"entry-29774","position":[689.1667,77.1,1646.5828],"yaw":-5.43348,"spawnMask":3},{"id":"creature-127026","entityId":"entry-29774","position":[673.7557,81.865,1670.5228],"yaw":-6.16101,"spawnMask":3},{"id":"creature-127027","entityId":"entry-29774","position":[669.8547,81.727,1667.0028],"yaw":-3.00197,"spawnMask":3},{"id":"creature-127028","entityId":"entry-29774","position":[653.4707,77.202,1635.7228],"yaw":-5.37693,"spawnMask":3},{"id":"creature-127029","entityId":"entry-29774","position":[656.8377,76.84,1636.4428],"yaw":-5.51307,"spawnMask":3},{"id":"creature-127042","entityId":"entry-29304","position":[715.2787,81.931,1640.0228],"yaw":-1.67552,"spawnMask":3},{"id":"creature-127043","entityId":"entry-29305","position":[849.8347,81.931,1637.3628],"yaw":-4.72984,"spawnMask":3},{"id":"creature-127044","entityId":"entry-29306","position":[783.9517,89.21,1779.6428],"yaw":-0.017453,"spawnMask":3},{"id":"creature-127046","entityId":"entry-29307","position":[783.7857,95.969,1537.8528],"yaw":-3.12414,"spawnMask":3},{"id":"creature-127047","entityId":"entry-29819","position":[879.3457,81.923,1612.7228],"yaw":-0.034907,"spawnMask":3},{"id":"creature-127048","entityId":"entry-29819","position":[927.9187,103.93,1453.6828],"yaw":-3.89208,"spawnMask":3},{"id":"creature-127049","entityId":"entry-29819","position":[907.6077,90.337,1525.9028],"yaw":-6.23082,"spawnMask":3},{"id":"creature-127050","entityId":"entry-29819","position":[903.0657,89.868,1531.4028],"yaw":-1.72788,"spawnMask":3},{"id":"creature-127051","entityId":"entry-29819","position":[896.2487,81.915,1662.5028],"yaw":-3.10669,"spawnMask":3},{"id":"creature-127052","entityId":"entry-29819","position":[877.5457,106.477,1435.7728],"yaw":-5.21853,"spawnMask":3},{"id":"creature-127053","entityId":"entry-29819","position":[867.9017,105.028,1440.9428],"yaw":-2.05949,"spawnMask":3},{"id":"creature-127055","entityId":"entry-29820","position":[921.8817,104.274,1451.2628],"yaw":-2.33874,"spawnMask":3},{"id":"creature-127056","entityId":"entry-29820","position":[907.9987,89.995,1534.0228],"yaw":-3.33358,"spawnMask":3},{"id":"creature-127057","entityId":"entry-29820","position":[872.3997,105.495,1443.9828],"yaw":-3.07178,"spawnMask":3},{"id":"creature-127058","entityId":"entry-29822","position":[676.6237,82.932,1524.2928],"yaw":-5.52175,"spawnMask":3},{"id":"creature-127059","entityId":"entry-29822","position":[889.6307,81.917,1612.4928],"yaw":-0.017453,"spawnMask":3},{"id":"creature-127060","entityId":"entry-29822","position":[920.0427,105.43,1445.4628],"yaw":-0.767945,"spawnMask":3},{"id":"creature-127061","entityId":"entry-29822","position":[911.2497,90.774,1529.5728],"yaw":-4.99164,"spawnMask":3},{"id":"creature-127062","entityId":"entry-29822","position":[887.2787,81.919,1662.5428],"yaw":-3.15905,"spawnMask":3},{"id":"creature-127063","entityId":"entry-29822","position":[877.0177,106.178,1440.5328],"yaw":-4.2237,"spawnMask":3},{"id":"creature-127064","entityId":"entry-29826","position":[932.3527,96.564,1501.2028],"yaw":-5.9975,"spawnMask":3},{"id":"creature-127065","entityId":"entry-29826","position":[898.3007,81.914,1612.5528],"yaw":0,"spawnMask":3},{"id":"creature-127066","entityId":"entry-29826","position":[924.7587,104.493,1448.7428],"yaw":-5.3058,"spawnMask":3},{"id":"creature-127067","entityId":"entry-29829","position":[888.9527,75.824,1637.6928],"yaw":-1.64926,"spawnMask":3},{"id":"creature-127068","entityId":"entry-29829","position":[893.0847,75.824,1637.5928],"yaw":-4.67587,"spawnMask":3},{"id":"creature-127076","entityId":"entry-29830","position":[800.5187,95.425,1499.1028],"yaw":-1.57854,"spawnMask":3},{"id":"creature-127080","entityId":"entry-29832","position":[780.1177,95.789,1490.4928],"yaw":-4.69494,"spawnMask":3},{"id":"creature-127081","entityId":"entry-29832","position":[787.6997,95.789,1489.9028],"yaw":-1.58825,"spawnMask":3},{"id":"creature-127082","entityId":"entry-29832","position":[759.2147,95.783,1441.3528],"yaw":-1.65806,"spawnMask":3},{"id":"creature-127083","entityId":"entry-29834","position":[899.7337,78.351,1515.0428],"yaw":-4.41733,"spawnMask":3},{"id":"creature-127084","entityId":"entry-29834","position":[899.2487,75.259,1504.5828],"yaw":-6.18063,"spawnMask":3},{"id":"creature-127085","entityId":"entry-29834","position":[729.7577,62.562,1681.2528],"yaw":-4.47669,"spawnMask":3},{"id":"creature-127086","entityId":"entry-29834","position":[757.0137,62.989,1700.0728],"yaw":-2.16475,"spawnMask":3},{"id":"creature-127087","entityId":"entry-29834","position":[868.7237,74.085,1525.1328],"yaw":-3.84638,"spawnMask":3},{"id":"creature-127088","entityId":"entry-29834","position":[849.4797,60.627,1666.3228],"yaw":-3.52199,"spawnMask":3},{"id":"creature-127089","entityId":"entry-29834","position":[733.6467,60.641,1584.7628],"yaw":-0.560292,"spawnMask":3},{"id":"creature-127090","entityId":"entry-29834","position":[821.2217,60.214,1654.0428],"yaw":-4.17256,"spawnMask":3},{"id":"creature-127091","entityId":"entry-29834","position":[850.3477,60.156,1678.5028],"yaw":-0.785398,"spawnMask":3},{"id":"creature-127092","entityId":"entry-29834","position":[853.8237,60.898,1645.4328],"yaw":-2.63544,"spawnMask":3},{"id":"creature-127093","entityId":"entry-29834","position":[788.1137,60.827,1677.0028],"yaw":-5.07891,"spawnMask":3},{"id":"creature-127094","entityId":"entry-29834","position":[755.3427,60.408,1680.9728],"yaw":-5.9889,"spawnMask":3},{"id":"creature-127095","entityId":"entry-29834","position":[885.5407,73.946,1487.5028],"yaw":-1.32947,"spawnMask":3},{"id":"creature-127096","entityId":"entry-29834","position":[737.0437,57.524,1654.0328],"yaw":-0.930271,"spawnMask":3},{"id":"creature-127097","entityId":"entry-29834","position":[753.7197,60.666,1613.8728],"yaw":-2.17953,"spawnMask":3},{"id":"creature-127098","entityId":"entry-29834","position":[751.4207,60.449,1650.4228],"yaw":-1.92096,"spawnMask":3},{"id":"creature-127099","entityId":"entry-29834","position":[867.0447,73.819,1510.9328],"yaw":-2.82734,"spawnMask":3},{"id":"creature-127100","entityId":"entry-29834","position":[842.4077,74.105,1530.1428],"yaw":-3.132,"spawnMask":3},{"id":"creature-127101","entityId":"entry-29834","position":[836.5227,60.524,1605.2128],"yaw":-5.01823,"spawnMask":3},{"id":"creature-127102","entityId":"entry-29834","position":[894.6217,74.965,1555.4128],"yaw":-1.59394,"spawnMask":3},{"id":"creature-127103","entityId":"entry-29834","position":[810.5297,60.424,1691.9928],"yaw":-4.31301,"spawnMask":3},{"id":"creature-127104","entityId":"entry-29834","position":[851.8987,74.297,1540.0028],"yaw":-5.34073,"spawnMask":3},{"id":"creature-127105","entityId":"entry-29834","position":[763.3387,60.695,1639.6228],"yaw":-0.541048,"spawnMask":3},{"id":"creature-127106","entityId":"entry-29834","position":[814.9987,60.629,1604.4228],"yaw":-3.56045,"spawnMask":3},{"id":"creature-127110","entityId":"entry-29838","position":[797.0087,88.8,1745.6128],"yaw":-3.54302,"spawnMask":3},{"id":"creature-127111","entityId":"entry-29838","position":[783.1757,88.815,1752.4528],"yaw":-3.10669,"spawnMask":3},{"id":"creature-127112","entityId":"entry-29838","position":[768.8337,88.826,1746.1928],"yaw":-2.79253,"spawnMask":3},{"id":"creature-127113","entityId":"entry-29874","position":[890.8727,75.907,1642.7328],"yaw":-3.10669,"spawnMask":3},{"id":"creature-127201","entityId":"entry-29920","position":[976.7527,59.908,1516.1528],"yaw":-6.02139,"spawnMask":3},{"id":"creature-127202","entityId":"entry-29920","position":[983.9147,59.907,1508.0928],"yaw":-0.087266,"spawnMask":3},{"id":"creature-127203","entityId":"entry-29920","position":[976.7697,59.919,1509.6228],"yaw":-1.58825,"spawnMask":3},{"id":"creature-127204","entityId":"entry-29920","position":[967.2597,68.725,1573.3728],"yaw":-4.86947,"spawnMask":3},{"id":"creature-127205","entityId":"entry-29920","position":[991.3237,69.167,1566.5528],"yaw":-4.66003,"spawnMask":3},{"id":"creature-127206","entityId":"entry-29920","position":[975.9127,69.736,1582.1928],"yaw":-0.668432,"spawnMask":3},{"id":"creature-127207","entityId":"entry-29931","position":[783.0787,89.032,1729.9528],"yaw":-3.14159,"spawnMask":3},{"id":"encounter-385","entityId":"entry-29573","position":[759.9609,129.2423,1753.2671],"yaw":0,"spawnMask":1},{"id":"encounter-389","entityId":"entry-29932","position":[658.5943,129.1501,1756.7192],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-127014","name":"Unyielding Constrictor Patrol","speed":1.15,"pathId":1270140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[649.5377,77.109,1646.9028],[647.9117,77.109,1645.7128],[645.4717,77.11,1643.9428],[652.1307,77.108,1648.7828],[654.5677,77.107,1650.5528],[657.8467,77.104,1652.1428],[660.6177,77.11,1653.3228],[663.3867,77.111,1654.4928],[667.6597,77.22,1654.3328],[670.6677,77.24,1654.2228],[673.6727,77.099,1654.1228],[677.2747,77.096,1653.1228],[680.1357,77.098,1652.2028],[682.9857,77.1,1651.2828],[688.6537,77.098,1647.0328],[690.9167,77.105,1645.0428],[688.6537,77.098,1647.0328],[682.9857,77.1,1651.2828],[680.1357,77.098,1652.2028],[677.2747,77.096,1653.1228],[673.6727,77.099,1654.1228],[670.6677,77.24,1654.2228],[667.6597,77.22,1654.3328],[663.3867,77.111,1654.4928],[660.6177,77.11,1653.3228],[657.8467,77.104,1652.1428],[654.5677,77.107,1650.5528],[652.1307,77.108,1648.7828]],"members":[{"id":"member","entityId":"entry-29768","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127017","name":"Unyielding Constrictor Patrol","speed":1.15,"pathId":1270170,"formationSource":"database-solo","spawnMask":3,"waypoints":[[679.8537,76.807,1636.1628],[682.0927,76.831,1638.1628],[679.8537,76.807,1636.1628],[677.9207,76.797,1635.0628],[675.2227,76.787,1633.7228],[672.5267,76.777,1632.3928],[671.5307,76.784,1632.5328],[668.5867,76.808,1633.1828],[665.7007,76.832,1633.8128],[662.8027,76.746,1634.4528],[659.8137,76.84,1635.0428],[655.8967,76.84,1637.4128],[653.5257,76.84,1639.2728],[651.1537,77.131,1641.1328],[653.5257,76.84,1639.2728],[655.8967,76.84,1637.4128],[659.8137,76.84,1635.0428],[662.8027,76.746,1634.4528],[665.7007,76.832,1633.8128],[668.5867,76.808,1633.1828],[671.5307,76.784,1632.5328],[672.5267,76.777,1632.3928],[675.2227,76.787,1633.7228],[677.9207,76.797,1635.0628],[679.8537,76.807,1636.1628],[682.0927,76.831,1638.1628]],"members":[{"id":"member","entityId":"entry-29768","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127023","name":"Spitting Cobra Patrol","speed":1.15,"pathId":1270230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[693.4457,77.883,1507.2428],[682.6207,78.287,1504.7528],[678.0547,78.663,1507.1528],[672.7897,79.263,1512.0428],[665.4227,80.706,1522.6728],[664.7257,80.254,1529.7328],[666.2687,80.053,1534.6028],[673.7047,79.958,1539.6328],[684.8687,79.014,1538.7728],[690.1397,78.793,1533.6528],[694.5867,78.239,1527.0028],[696.7737,78.221,1520.7528],[696.6897,77.915,1510.5128],[693.5637,77.921,1507.2628]],"members":[{"id":"member","entityId":"entry-29774","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127045","name":"Drakkari Lancer Patrol","speed":1.15,"pathId":1270450,"formationSource":"database-solo","spawnMask":3,"waypoints":[[677.7857,81.331,1560.8728],[677.9287,78.649,1552.8228],[678.0107,75.845,1548.2528],[678.1027,77.181,1543.1028],[678.1937,80.195,1537.9728],[680.0577,83.003,1526.4828],[696.0247,77.725,1509.8428],[700.9167,76.853,1505.1128],[705.3307,80.539,1501.8928],[720.3727,88.46,1499.1528],[705.3307,80.539,1501.8928],[700.9167,76.853,1505.1128],[696.0247,77.725,1509.8428],[680.0577,83.003,1526.4828],[678.1937,80.195,1537.9728],[678.1027,77.181,1543.1028],[678.0107,75.845,1548.2528],[677.9287,78.649,1552.8228]],"members":[{"id":"member","entityId":"entry-29819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127054","name":"Drakkari God Hunter Patrol","speed":1.15,"pathId":1270540,"formationSource":"database-solo","spawnMask":3,"waypoints":[[935.5897,98.594,1491.9428],[935.7977,97.07,1506.7128],[926.6187,94.664,1511.2728],[917.4357,93.492,1513.2728],[910.9487,92.575,1516.1528],[915.0907,92.979,1513.7728],[920.0567,93.322,1513.3228],[934.5707,96.383,1508.1228],[936.9107,97.611,1498.5228],[935.8117,98.522,1493.0628],[926.7657,100.807,1473.5728],[921.2197,102.62,1465.1328],[911.0067,105.56,1448.4928],[917.0327,103.953,1458.4328],[925.3287,101.384,1471.4028],[931.4447,100.18,1481.1928],[935.6017,98.557,1492.1228],[935.6537,97.245,1506.6728]],"members":[{"id":"member","entityId":"entry-29820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127069","name":"Drakkari Earthshaker Patrol","speed":1.15,"pathId":1270690,"formationSource":"database-solo","spawnMask":3,"waypoints":[[857.6047,102.414,1457.7128],[846.1027,98.942,1466.3828],[843.0207,97.833,1474.5828],[834.9277,96.481,1488.5428],[841.3987,97.318,1480.1028],[843.5377,98.147,1469.9928],[850.7287,100.369,1462.0328],[862.8137,103.179,1456.8928],[880.9217,106.36,1451.0628],[884.1557,106.898,1449.5828],[884.7207,107.118,1449.0728],[870.5817,104.793,1454.9928]],"members":[{"id":"member","entityId":"entry-29829","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127070","name":"Drakkari Earthshaker Patrol","speed":1.15,"pathId":1270700,"formationSource":"database-solo","spawnMask":3,"waypoints":[[897.4767,82.612,1571.6528],[907.4007,82.884,1572.1728],[919.8147,83.419,1569.0728],[932.7857,85.557,1556.2328],[932.2417,86.875,1544.3028],[922.6187,90.377,1533.1828],[928.7007,88.795,1538.5228],[933.9227,86.057,1552.8428],[926.1807,84.45,1566.0328],[912.0977,83.31,1571.8328]],"members":[{"id":"member","entityId":"entry-29829","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127077","name":"Living Mojo Patrol","speed":1.15,"pathId":1270770,"formationSource":"database-solo","spawnMask":3,"waypoints":[[790.4457,95.671,1499.1428],[789.5567,95.693,1510.4228],[780.3767,95.667,1511.7428],[778.6237,95.674,1507.9228],[769.6107,95.656,1499.2428],[768.7037,95.667,1494.1328],[764.3987,95.664,1490.3228],[765.2497,95.666,1489.9628],[768.5537,95.652,1498.2828],[772.0557,95.667,1499.2428],[778.3947,95.667,1507.3928],[788.9167,95.692,1511.6328]],"members":[{"id":"member","entityId":"entry-29830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127078","name":"Living Mojo Patrol","speed":1.15,"pathId":1270780,"formationSource":"database-solo","spawnMask":3,"waypoints":[[802.5287,95.667,1489.8328],[802.6437,95.667,1489.7528],[800.7927,95.709,1481.7928],[797.4237,95.667,1480.9528],[792.1147,95.667,1480.7728],[783.1887,95.667,1477.4828],[775.4307,95.667,1480.8628],[769.1387,95.67,1481.4628],[769.1907,95.67,1481.4528],[775.3667,95.667,1480.9128],[782.2417,95.667,1477.4928],[786.2337,95.667,1477.5328],[799.3587,95.669,1480.8728],[800.7957,95.667,1485.7528],[802.5307,95.667,1489.8528],[802.6437,95.667,1489.7528],[800.8017,95.709,1481.7928]],"members":[{"id":"member","entityId":"entry-29830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127079","name":"Living Mojo Patrol","speed":1.15,"pathId":1270790,"formationSource":"database-solo","spawnMask":3,"waypoints":[[766.3967,95.664,1445.6728],[766.3967,95.664,1466.4228],[766.3967,95.664,1445.6728],[766.3967,95.664,1466.4228]],"members":[{"id":"member","entityId":"entry-29830","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-127042","name":"Slad'ran","position":[715.2787,81.931,1640.0228]},{"id":"encounter-385","name":"Drakkari Colossus","position":[759.9609,129.2423,1753.2671]},{"id":"creature-127043","name":"Moorabi","position":[849.8347,81.931,1637.3628]},{"id":"creature-127044","name":"Gal'darah","position":[783.9517,89.21,1779.6428]},{"id":"encounter-389","name":"Eck the Ferocious","position":[658.5943,129.1501,1756.7192]}],"objectiveOrder":[{"id":"creature-127042","name":"Slad'ran","position":[715.2787,81.931,1640.0228]},{"id":"encounter-385","name":"Drakkari Colossus","position":[759.9609,129.2423,1753.2671]},{"id":"creature-127043","name":"Moorabi","position":[849.8347,81.931,1637.3628]},{"id":"creature-127044","name":"Gal'darah","position":[783.9517,89.21,1779.6428]},{"id":"encounter-389","name":"Eck the Ferocious","position":[658.5943,129.1501,1756.7192]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65588,"id":192517,"map":604,"orientation":3.14159,"phaseMask":1,"position_x":1837.86,"position_y":1873.78,"position_z":188.544,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65589,"id":192518,"map":604,"orientation":3.14159,"phaseMask":1,"position_x":1775.29,"position_y":679.68,"position_z":129.236,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65590,"id":192519,"map":604,"orientation":3.14159,"phaseMask":1,"position_x":1772.22,"position_y":804.963,"position_z":129.236,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65591,"id":192520,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1693.51,"position_y":743.595,"position_z":142.788,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65592,"id":191019,"map":604,"orientation":1.67551,"phaseMask":1,"position_x":1719.71,"position_y":922.131,"position_z":115.921,"rotation0":0,"rotation1":0,"rotation2":0.743143,"rotation3":0.669133,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65593,"id":191019,"map":604,"orientation":-2.82743,"phaseMask":1,"position_x":1715.83,"position_y":660.234,"position_z":132.604,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65594,"id":192564,"map":604,"orientation":3.14159,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65595,"id":192565,"map":604,"orientation":0,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65596,"id":192566,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65597,"id":192567,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65598,"id":192568,"map":604,"orientation":3.14159,"phaseMask":1,"position_x":1848.03,"position_y":743.816,"position_z":135.949,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65599,"id":192569,"map":604,"orientation":2.2549,"phaseMask":1,"position_x":1622.89,"position_y":857.706,"position_z":108.755,"rotation0":0,"rotation1":0,"rotation2":0.903321,"rotation3":0.428965,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65600,"id":192826,"map":604,"orientation":0.680677,"phaseMask":1,"position_x":1898.78,"position_y":713.32,"position_z":135.987,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65601,"id":192826,"map":604,"orientation":-2.04204,"phaseMask":1,"position_x":1717.85,"position_y":839.128,"position_z":129.468,"rotation0":0,"rotation1":0,"rotation2":-0.852641,"rotation3":0.522496,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65602,"id":192826,"map":604,"orientation":-2.54818,"phaseMask":1,"position_x":1673,"position_y":873.65,"position_z":136.519,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65603,"id":192826,"map":604,"orientation":2.3911,"phaseMask":1,"position_x":1965.34,"position_y":775.519,"position_z":135.965,"rotation0":0,"rotation1":0,"rotation2":0.930417,"rotation3":0.366502,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65604,"id":192826,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1792.37,"position_y":825.022,"position_z":124.493,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65605,"id":192826,"map":604,"orientation":2.93214,"phaseMask":1,"position_x":1766.62,"position_y":877.325,"position_z":124.441,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104535,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65606,"id":192826,"map":604,"orientation":-1.23918,"phaseMask":1,"position_x":1726.68,"position_y":839.27,"position_z":129.21,"rotation0":0,"rotation1":0,"rotation2":-0.580701,"rotation3":0.814117,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65607,"id":192826,"map":604,"orientation":1.43117,"phaseMask":1,"position_x":1775.44,"position_y":681.744,"position_z":129.216,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65608,"id":192826,"map":604,"orientation":-2.37364,"phaseMask":1,"position_x":1818.38,"position_y":651.984,"position_z":129.213,"rotation0":0,"rotation1":0,"rotation2":-0.927182,"rotation3":0.37461,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65609,"id":192826,"map":604,"orientation":2.9845,"phaseMask":1,"position_x":1789.23,"position_y":877.808,"position_z":129.225,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784656,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65610,"id":192826,"map":604,"orientation":2.79252,"phaseMask":1,"position_x":1792.56,"position_y":683.9,"position_z":129.216,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65611,"id":192826,"map":604,"orientation":0.95993,"phaseMask":1,"position_x":1782.82,"position_y":593.745,"position_z":129.155,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65612,"id":192826,"map":604,"orientation":0.122173,"phaseMask":1,"position_x":1644.11,"position_y":874.205,"position_z":140.811,"rotation0":0,"rotation1":0,"rotation2":0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65613,"id":192826,"map":604,"orientation":2.47837,"phaseMask":1,"position_x":1602.52,"position_y":891.821,"position_z":148.831,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65614,"id":192826,"map":604,"orientation":1.06465,"phaseMask":1,"position_x":1755.81,"position_y":799.068,"position_z":129.216,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65615,"id":192826,"map":604,"orientation":-2.9845,"phaseMask":1,"position_x":1762.44,"position_y":671.432,"position_z":129.216,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784656,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65616,"id":192826,"map":604,"orientation":1.81514,"phaseMask":1,"position_x":1779.1,"position_y":798.336,"position_z":129.216,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65617,"id":192826,"map":604,"orientation":-2.47837,"phaseMask":1,"position_x":1636.82,"position_y":763.616,"position_z":142.783,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65618,"id":192826,"map":604,"orientation":0.349065,"phaseMask":1,"position_x":1912.43,"position_y":787.582,"position_z":135.801,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65619,"id":192826,"map":604,"orientation":-1.15192,"phaseMask":1,"position_x":1937.29,"position_y":810.421,"position_z":135.373,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65620,"id":192826,"map":604,"orientation":-0.872664,"phaseMask":1,"position_x":1726.94,"position_y":872.242,"position_z":129.21,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65621,"id":192826,"map":604,"orientation":3.12412,"phaseMask":1,"position_x":1934.62,"position_y":745.348,"position_z":136.564,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65622,"id":192826,"map":604,"orientation":-1.88495,"phaseMask":1,"position_x":1809.32,"position_y":857.316,"position_z":129.198,"rotation0":0,"rotation1":0,"rotation2":-0.809015,"rotation3":0.587788,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65623,"id":192826,"map":604,"orientation":0.680677,"phaseMask":1,"position_x":1571.94,"position_y":715.885,"position_z":143.859,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65624,"id":192826,"map":604,"orientation":2.70526,"phaseMask":1,"position_x":1688.02,"position_y":729.3,"position_z":142.781,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65625,"id":192826,"map":604,"orientation":2.42601,"phaseMask":1,"position_x":1713.95,"position_y":620.922,"position_z":129.186,"rotation0":0,"rotation1":0,"rotation2":0.936673,"rotation3":0.350206,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65626,"id":192826,"map":604,"orientation":2.79252,"phaseMask":1,"position_x":1970.51,"position_y":683.654,"position_z":135.209,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65627,"id":192826,"map":604,"orientation":-0.087266,"phaseMask":1,"position_x":1609.19,"position_y":743.7,"position_z":142.786,"rotation0":0,"rotation1":0,"rotation2":-0.0436192,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65628,"id":192826,"map":604,"orientation":-1.83259,"phaseMask":1,"position_x":1750.67,"position_y":748.303,"position_z":119.177,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608764,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65629,"id":192826,"map":604,"orientation":1.51844,"phaseMask":1,"position_x":1594.54,"position_y":722.452,"position_z":142.783,"rotation0":0,"rotation1":0,"rotation2":0.688356,"rotation3":0.725373,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65630,"id":192632,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1772.7,"position_y":878.415,"position_z":124.118,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65631,"id":192633,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65632,"id":193188,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65633,"id":192679,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1897.08,"position_y":825.514,"position_z":178.066,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65634,"id":192680,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1897.08,"position_y":825.514,"position_z":178.066,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65635,"id":192681,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1899.26,"position_y":659.248,"position_z":178.066,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65636,"id":192682,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1899.26,"position_y":659.248,"position_z":178.066,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65637,"id":193208,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1947.65,"position_y":814.002,"position_z":135.295,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65638,"id":193209,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1947.65,"position_y":672.852,"position_z":135.295,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65639,"id":193212,"map":604,"orientation":0.000002,"phaseMask":1,"position_x":1913.53,"position_y":644.975,"position_z":136.878,"rotation0":0,"rotation1":0,"rotation2":0.000001,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65640,"id":193213,"map":604,"orientation":0.000002,"phaseMask":1,"position_x":1913.53,"position_y":644.975,"position_z":136.878,"rotation0":0,"rotation1":0,"rotation2":0.000001,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65641,"id":190170,"map":604,"orientation":0.069812,"phaseMask":1,"position_x":1634.81,"position_y":889.451,"position_z":143.884,"rotation0":0,"rotation1":0,"rotation2":0.0348989,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/gundrak/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["20/20 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"violet-hold","title":"Violet Hold","mapId":608,"lfgDungeonIds":[220,221],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[73,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Violet Hold","theme":"Open-world expedition","summary":"Fight through Violet Hold, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Violet Hold...","unchartedAreaName":"Uncharted Violet Hold","background":"#081016","fog":{"color":"#0a141c","near":36,"far":260},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/608-dalaranprison/visual.glb","checksum":"d57120ce038bae2ab30436b4d423fa178db48777abaec4add20983b5f46d3710","size":8609340,"triangleCount":1658605}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-000.glb","checksum":"48e7defb1df8e3587a315cfa744832b4208dec376b6f4127ca18dca27ced1a47","size":113552,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-001.glb","checksum":"8db9fc4b2b0d9f7bdf75198e00708e49fa8c28c49f82822c843c2e8a2f89e356","size":113728,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-002.glb","checksum":"a5059d5b423bde1d35497d40f139c80e223d6d1203f508d405bbbe903356229e","size":113372,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-003.glb","checksum":"79b78e82d87464d6ff7dcbd38d006791a00a3fed753700cb78b6634c973cbb43","size":113192,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-004.glb","checksum":"ea2c07024f241ae5fdacf4d757313cb82e7f7b99178ea3d0576c66d4915f32b2","size":113532,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-005.glb","checksum":"cc650413142a86b996a770a903f5319559a8563e0770563082eb4c6043455069","size":113376,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-006.glb","checksum":"eabd58aedb41684495f467f1b1cbde6859750c498f3364c9e15e89207f43f08f","size":113552,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-007.glb","checksum":"284e0990387f4da1f6e709e90b43fe5817e803affd2f3b4ccfd71cd4cc9b73c8","size":113196,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-008.glb","checksum":"c94d0d34dc7b4e02ce0305f4288b33d4b235c0534cd12a77b5086969a1723b30","size":113016,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-009.glb","checksum":"8c1e2807414015e55a29333609455115b2b0dcd14e712b0c9d0095b864b477d8","size":113532,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-010.glb","checksum":"a4f07cd549a04f81a9a095ab4641d6420c235f255613efc37ee8064246b226c0","size":113140,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-011.glb","checksum":"35e3cc6bf9a4058abbca8b3bde0082682fc7cbec0265306946ad1ea54b80bd63","size":113348,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-012.glb","checksum":"271550b91091e1d24b09176b9736d8a6b275de6fea9cc1206cbca70ff4e94ffb","size":384988,"triangleCount":85741},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-013.glb","checksum":"de15a6591eb04c22655736193a19424140fb6c79809618d5c6da6681d917fd3b","size":113140,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-014.glb","checksum":"1fde91ee0fd90806bddb0fececd157416222e62f620b1dec76920585d169f50d","size":113660,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-015.glb","checksum":"fbe39e901ddd9897f3410490806d676eb3d6cf8dc3060c67170078b86a8a8d49","size":113424,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-016.glb","checksum":"c91af5156fc9cb2befa124a99edeab6b03b39526c2a031cf3fb8207558d65565","size":113600,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-017.glb","checksum":"95726c31d085a206f772412a8a39b8f368fbbba8f23c82d7795be990162bd67c","size":113196,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-018.glb","checksum":"8e150d1c25cf8909c6439b82ca006ede03fc479e1b13ff0ebce89d69cbf01069","size":113016,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-019.glb","checksum":"401112e5abeb64f5a8497c14fe5d52694db6716858fe96b237c5f4c076a273b7","size":113660,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-020.glb","checksum":"f8723f121fa48346f4ba323cb97ff4de83c5ed5c6b1b0bc83e4e3a8faaefc92d","size":113740,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-021.glb","checksum":"5bec98379321457aad66dd666983048741c7ed6b1887c5f90f5f3c7106bb7a3b","size":113916,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-022.glb","checksum":"23d20ae28498e2f0ab1f8f127d9537e5e9c42329f103a93dd8d8abc8768076f6","size":113420,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-023.glb","checksum":"130c71a1719051b177999990b5320d5413df36abce2c48c4f65f22f81e2363fa","size":113240,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-024.glb","checksum":"c2467d164cc777f6771afdbfc8a43d1cb3b5a95cf4f0395bf1cbec049de68ef4","size":113660,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/608-dalaranprison/navigation.glb","checksum":"fd17cfff5366b82fdc5aa0cbcf5462a21ce807453a3aadb6918067f5e9ac734b","size":63304,"triangleCount":5795}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[685.8668,17.7512,1789.7327],"max":[952.2197,67.7,1964.8127]},"entrance":{"name":"Violet Hold Entrance","footPosition":[838.8667,38.7,1834.7327],"forward":[-0.9639680467402515,0,0.26601805364257575],"yaw":-1.3015364508830067},"areas":[{"id":"entrance","name":"Violet Hold Entrance","center":[838.8667,38.7,1834.7327],"radius":35},{"id":"area-first-prisoner","name":"First Prisoner's Encounter","center":[905.9727,37.7512,1897.3727],"radius":42},{"id":"area-second-prisoner","name":"Second Prisoner's Encounter","center":[763.0627,42.0862,1919.8127],"radius":42},{"id":"area-cyanigosa","name":"Cyanigosa's Encounter","center":[731.0661,47.7,1899.6614],"radius":42}],"entities":{"entry-29315":{"id":"entry-29315","kind":"boss","name":"Erekem","title":"Dungeon Boss","hasLoot":true,"combat":{"level":77,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-54479","name":"Earth Shield","spellId":54479,"delivery":"area","target":"self","school":"nature","animation":"cast","range":0,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-54479","durationMs":12000,"magnitude":0.25}},{"id":"spell-54516","name":"Bloodlust","spellId":54516,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-59463","name":"Break Bonds","spellId":59463,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":9000,"damageMultiplier":1.35},{"id":"spell-54481","name":"Chain Heal","spellId":54481,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/violet-hold/creatures/display-27488-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1189,"labelHeight":5.638,"markerRadius":2.4165}}},"entry-29316":{"id":"entry-29316","kind":"boss","name":"Moragg","title":"Dungeon Boss","hasLoot":true,"combat":{"level":77,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-54442","name":"Ray of Suffering","spellId":54442,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7256,"damageMultiplier":1.35},{"id":"spell-54438","name":"Ray of Pain","spellId":54438,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7256,"damageMultiplier":1.35},{"id":"spell-54527","name":"Corrosive Saliva","spellId":54527,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.35},{"id":"spell-54396","name":"Optic Link","spellId":54396,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/violet-hold/creatures/display-20590-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.05,"labelHeight":17.0335,"markerRadius":4.1136}}},"entry-30659":{"id":"entry-30659","kind":"mob","name":"Violet Hold Guard","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/violet-hold/creatures/display-27215-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.6909,"markerRadius":0.65}}},"entry-29395":{"id":"entry-29395","kind":"mob","name":"Erekem Guard","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-39215","name":"Gushing Wound","spellId":39215,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.12},{"id":"spell-54462","name":"Howling Screech","spellId":54462,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":8000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/bcc14a8b2e12bb78aab11fcecfd6a0469d4df1fcf8167e779a7fc9ccf4d1ae4f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0991,"labelHeight":4.7487,"markerRadius":2.0138}}},"entry-31134":{"id":"entry-31134","kind":"boss","name":"Cyanigosa","title":"Dungeon Boss","hasLoot":true,"combat":{"level":77,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-58694","name":"Arcane Vacuum","spellId":58694,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-58693","name":"Blizzard","spellId":58693,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5000,"damageMultiplier":0.82,"radius":11},{"id":"spell-59374","name":"Mana Destruction","spellId":59374,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-58690","name":"Tail Sweep","spellId":58690,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/violet-hold/creatures/display-27508-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.1979,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-102383","entityId":"entry-29315","position":[905.9727,37.7512,1897.3727],"yaw":-5.11381,"spawnMask":3},{"id":"creature-102384","entityId":"entry-29316","position":[763.0627,42.0862,1919.8127],"yaw":-1.6057,"spawnMask":3},{"id":"creature-102915","entityId":"entry-30659","position":[837.0837,38.3438,1880.4527],"yaw":-6.22792,"spawnMask":3},{"id":"creature-102916","entityId":"entry-30659","position":[840.8097,38.3441,1880.7327],"yaw":-0.054694,"spawnMask":3},{"id":"creature-102917","entityId":"entry-30659","position":[845.3987,38.3448,1879.8627],"yaw":-0.239263,"spawnMask":3},{"id":"creature-102918","entityId":"entry-30659","position":[832.9897,38.3447,1880.2327],"yaw":-6.0355,"spawnMask":3},{"id":"creature-102923","entityId":"entry-29395","position":[907.2197,37.7516,1918.3327],"yaw":-4.55531,"spawnMask":3},{"id":"creature-102924","entityId":"entry-29395","position":[897.3897,37.7521,1879.6627],"yaw":-5.11381,"spawnMask":3},{"id":"encounter-545","entityId":"entry-31134","position":[731.0661,47.7,1899.6614],"yaw":0,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"creature-102383","name":"First Prisoner","position":[905.9727,37.7512,1897.3727]},{"id":"creature-102384","name":"Second Prisoner","position":[763.0627,42.0862,1919.8127]},{"id":"encounter-545","name":"Cyanigosa","position":[731.0661,47.7,1899.6614]}],"objectiveOrder":[{"id":"creature-102383","name":"First Prisoner","position":[905.9727,37.7512,1897.3727]},{"id":"creature-102384","name":"Second Prisoner","position":[763.0627,42.0862,1919.8127]},{"id":"encounter-545","name":"Cyanigosa","position":[731.0661,47.7,1899.6614]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":4524,"id":192528,"map":608,"orientation":0,"phaseMask":1,"position_x":1799.99,"position_y":803.646,"position_z":45.4529,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":5099,"id":192529,"map":608,"orientation":0,"phaseMask":1,"position_x":1799.99,"position_y":803.646,"position_z":45.4529,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":5139,"id":191556,"map":608,"orientation":-0.444615,"phaseMask":1,"position_x":1908.06,"position_y":844.885,"position_z":41.1377,"rotation0":0,"rotation1":0,"rotation2":-0.220481,"rotation3":0.975391,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":6091,"id":191557,"map":608,"orientation":-1.35222,"phaseMask":1,"position_x":1921.51,"position_y":797.133,"position_z":41.5831,"rotation0":0,"rotation1":0,"rotation2":-0.625764,"rotation3":0.780013,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":7462,"id":191558,"map":608,"orientation":-1.26667,"phaseMask":1,"position_x":1954.73,"position_y":822.575,"position_z":57.172,"rotation0":0,"rotation1":0,"rotation2":-0.591836,"rotation3":0.806058,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":7616,"id":191559,"map":608,"orientation":-1.60814,"phaseMask":1,"position_x":1957.5,"position_y":803.284,"position_z":57.172,"rotation0":0,"rotation1":0,"rotation2":-0.720186,"rotation3":0.693781,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":7757,"id":191560,"map":608,"orientation":-1.91064,"phaseMask":1,"position_x":1954.31,"position_y":784.77,"position_z":57.172,"rotation0":0,"rotation1":0,"rotation2":-0.816499,"rotation3":0.577348,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":7931,"id":191562,"map":608,"orientation":0.546741,"phaseMask":1,"position_x":1854.57,"position_y":860.96,"position_z":47.6405,"rotation0":0,"rotation1":0,"rotation2":0.269978,"rotation3":0.962866,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":8964,"id":191563,"map":608,"orientation":-0.05735,"phaseMask":1,"position_x":1892.01,"position_y":871.239,"position_z":47.6405,"rotation0":0,"rotation1":0,"rotation2":-0.0286711,"rotation3":0.999589,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":13215,"id":193611,"map":608,"orientation":2.49582,"phaseMask":1,"position_x":1940.8,"position_y":774,"position_z":53.592,"rotation0":0,"rotation1":0,"rotation2":0.948324,"rotation3":0.317305,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16534,"id":193611,"map":608,"orientation":-1.0821,"phaseMask":1,"position_x":1855,"position_y":844,"position_z":40.6313,"rotation0":0,"rotation1":0,"rotation2":-0.515036,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16821,"id":193611,"map":608,"orientation":-0.541051,"phaseMask":1,"position_x":1846,"position_y":780.629,"position_z":40.5764,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16822,"id":193611,"map":608,"orientation":-2.02458,"phaseMask":1,"position_x":1911.34,"position_y":860.6,"position_z":48.3596,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16826,"id":193611,"map":608,"orientation":-2.32129,"phaseMask":1,"position_x":1917.58,"position_y":802.5,"position_z":39,"rotation0":0,"rotation1":0,"rotation2":-0.91706,"rotation3":0.398748,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16832,"id":191564,"map":608,"orientation":0.289969,"phaseMask":1,"position_x":1872.45,"position_y":868.998,"position_z":47.6405,"rotation0":0,"rotation1":0,"rotation2":0.144477,"rotation3":0.989508,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16846,"id":191565,"map":608,"orientation":-0.698129,"phaseMask":1,"position_x":1931.87,"position_y":859.01,"position_z":54.923,"rotation0":0,"rotation1":0,"rotation2":-0.342019,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":17181,"id":191566,"map":608,"orientation":2.44346,"phaseMask":1,"position_x":1847.81,"position_y":752.476,"position_z":49.3023,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.342021,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":17867,"id":193615,"map":608,"orientation":1.48353,"phaseMask":1,"position_x":1828.3,"position_y":797.309,"position_z":46.1355,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737277,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":18129,"id":191606,"map":608,"orientation":3.14159,"phaseMask":1,"position_x":1895.07,"position_y":733.715,"position_z":57.6715,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":18131,"id":191722,"map":608,"orientation":2.37934,"phaseMask":1,"position_x":1938.43,"position_y":754.695,"position_z":28.7801,"rotation0":0,"rotation1":0,"rotation2":0.928246,"rotation3":0.371966,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":18517,"id":191723,"map":608,"orientation":3.14159,"phaseMask":1,"position_x":1822.59,"position_y":803.928,"position_z":44.3647,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/violet-hold/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["5/5 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"ahnkahet-old-kingdom","title":"Ahn'kahet: The Old Kingdom","mapId":619,"lfgDungeonIds":[218,219],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[71,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Ahn'kahet: The Old Kingdom","theme":"Open-world expedition","summary":"Fight through Ahn'kahet: The Old Kingdom, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Ahn'kahet: The Old Kingdom...","unchartedAreaName":"Uncharted Ahn'kahet: The Old Kingdom","background":"#081016","fog":{"color":"#0a141c","near":36,"far":545.8514},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/619-azjol-lowercity/visual.glb","checksum":"e265a24fa3f316f3c698dbdef833ceef8f0402c71f269b85bc7d658aea7a775f","size":33816976,"triangleCount":3504275}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-000.glb","checksum":"cad2f02462b6e79e963dd93a56a47f5b7957d001a8b3b4cf6ff552879ebd799a","size":128424,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-001.glb","checksum":"cdc17214d35fb1198ed7bfb8582d19600b1852f72a9f315cdfffdf396ca98a48","size":1079592,"triangleCount":78387},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-002.glb","checksum":"16da2fd6919e4fb389f9e6cafdd86936d6f4bb3b1ff2b5c170f3795fe12dfaa9","size":130664,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-003.glb","checksum":"65f7888b95d61c4d5ec15dfe9a577f9699792db59bbbe78397102f9bb78fabe6","size":129216,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-004.glb","checksum":"f553585ffbf03e78928ee7045133f56a9af0197dc166c2cef88e48968d308109","size":129996,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-005.glb","checksum":"07abf9779e8bd88ff341758107f7ccd41c0ff9622418783a51270dce918356ae","size":127932,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-006.glb","checksum":"c386d4c372845a2e4fac09531b08c826c7c0578e10c83f3241a936338dfbbc15","size":133088,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-007.glb","checksum":"90563a406caee7f74728be93155251af79a450c4aa166449198b6925cce33d85","size":141296,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-008.glb","checksum":"085c2100e32fc935c951b8dae1422247fea19bfb3d909389c031ccc026008a7e","size":132512,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-009.glb","checksum":"3d67047f9d487a16a9269d7b13f84251e4e080be864087aea7aaf0afd85aee53","size":124584,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-010.glb","checksum":"01dd32fc24f6708a88847d9451d5d69e64ed184339927c61420febe9bf75e116","size":124996,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-011.glb","checksum":"bf88061be44744dbe8d2fe4749b45f52dbfed1e4b53dedb8a9c746034a06d42d","size":126032,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-012.glb","checksum":"a0349e63dabcc8dfa23ba2ebba63fd7e7468a25b0e8ffcbe9b7d97ebf844485d","size":127404,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-013.glb","checksum":"5a73b0098c8d69ff31a5e0c32e7834df1acda632605f15b0977bff6e51652938","size":141256,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-014.glb","checksum":"1764f34fab350c79be8f7b47d08584d2664a23290547b4c88beb3cba102bd970","size":157360,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-015.glb","checksum":"a52e529825fe98dfd012a21d59ed8c609cfc62071ee8eba7acf8fc2f1408d592","size":134204,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-016.glb","checksum":"f9347b862cb6cfb0bc1e38879d509ae047fb68147ddd5048e6b85b90ddd1bb4a","size":149884,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-017.glb","checksum":"30ee1f125d7f12968b6d17eaec3c5d3b25f7b3e76c517ce639ff1aa9f8204a1c","size":156336,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-018.glb","checksum":"19c46c6c5ae76e51b7ce5bc8cf5331e7ef5022a1e02f9e61244fc8fa857b7aea","size":138508,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-019.glb","checksum":"3d7dea1b78024c3f1e6e2ed2fc2bb9fe38b186bdeb0774eef2e2b526917409a9","size":1181752,"triangleCount":78431},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-020.glb","checksum":"ffd1c35bbb0b3a097e4703b070483b450140666dc94df574dea65b6b2227d6d5","size":135436,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-021.glb","checksum":"0760e455e62c304665abec8175ffec9eb1a54da4783a7587d52487b7198978a9","size":128888,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-022.glb","checksum":"6c1ee27984423671dc40c5ce9869df8c5b5538d0b76dfc05d147d18bfb76c815","size":143932,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-023.glb","checksum":"61f000920754062f3262eff14231fc177374638a6858b7d8d2e8be1fbe607275","size":134336,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-024.glb","checksum":"093c3e423c24b0b8f5e0e324769e324511a06a68c6d9c7356c876fde846c8d93","size":157024,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-025.glb","checksum":"fcb7957c6ccc1b482af9cb8dc905d651f7101273e57983326d9e4b6674db12c8","size":167752,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-026.glb","checksum":"f20b5ff4dd21c802a7ff1e898742db4ff4f5b0c1ab48783ed663002c9e2d9e8d","size":161660,"triangleCount":64944},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-027.glb","checksum":"e81ff97a7494b153ce317aa5a09222602f24c86b6d2aad940c8a5a6edf6c8224","size":151344,"triangleCount":64656},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-028.glb","checksum":"ee3fe76ca6ae51dd782ea3a3532d150c4d4a3f0c2a331a3ff342f3e0eab0663e","size":125380,"triangleCount":65536},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-029.glb","checksum":"94352cdcc08a1a81cc815a029b98dc71d09e8a555b607fd95fc4b45c6635ba07","size":128640,"triangleCount":65536},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-030.glb","checksum":"0d51a24606c96a10546c233cf7b8be3e26d2028b78988732567c04c7ab1fbd69","size":158636,"triangleCount":65536},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-031.glb","checksum":"4a6243f6e7d37469e9f611623fe9d13378cc3373108f3494a311b00a7da74e55","size":172836,"triangleCount":65536},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-032.glb","checksum":"db22498996b4c9f0d496d612d6eca4ed5a9a308ca9daa343e3b8c9a91a3edf58","size":160656,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-033.glb","checksum":"71612522bf4b35d51eeaf083c6a53bd5e69332b24aad2bbfe21e3ac4ff802bab","size":148568,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-034.glb","checksum":"98589dafba1d1b15986ecbb051659e91311a186365cbf57c9bba717f938a86fd","size":140424,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-035.glb","checksum":"251e9616559d542955dcf5ee8524a777b74753d7a42e3cc5c62b074458ca8ec6","size":126692,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-036.glb","checksum":"e7f5a0330f5361dc3af8f8b87e4447dd4d11eb7ce5fa0d86bf7876c03efe3bc3","size":129296,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-037.glb","checksum":"fb42ac71edc188fe8deb0b78d97305fb2272bd908a047a2c02a01ab2bba69da9","size":161712,"triangleCount":65536},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-038.glb","checksum":"a44a6fec1794f6d593d0ad621f89f572571c91c36fcf7c993ded7c1376a1c036","size":145804,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-039.glb","checksum":"ee0a11bde371218dc58fa6a8578ed8fe628508f07c4c17b1e6583b94d156226f","size":124992,"triangleCount":65536},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-040.glb","checksum":"79c6c4db4e7bfef7f5963c3c1c8fc49c5d924214277bf30a446fecb7409adf3f","size":131292,"triangleCount":65536},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-041.glb","checksum":"4e65cb4b4cefa1f648826dd74319b995dd6637f808aa6d398d4528d86fa47f74","size":131640,"triangleCount":65536},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-042.glb","checksum":"96ae8ac0b2d07b64b7eae37612258e615c3a22ec74bacfbbdb304e641ec5b1bb","size":132684,"triangleCount":65536},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-043.glb","checksum":"72b1b7ef2bb40b7fa08ae80570e42fbb92251166aef5a7b6fc0a1c90c673bf35","size":129000,"triangleCount":65536},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-044.glb","checksum":"8c3ddb1d536cd70cd6a563b921aa3dc03736af9d05a6ae7b3aaa84d20fd4aa3d","size":140396,"triangleCount":65536},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-045.glb","checksum":"03e0ac761d68d55eaa34badd4c5231d06307ac664a8cb46dfe84cd33d0e14132","size":126004,"triangleCount":65536},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-046.glb","checksum":"a1ac9e44717dbf2d60d06e2d7d5cda486c93048be6a321e9d3f1125ece28adc5","size":125784,"triangleCount":65536},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-047.glb","checksum":"c925047df9f591e0c513d7a93622c98d1e805c506f02e59eb2ee2298ef93e8bc","size":127660,"triangleCount":65536},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-048.glb","checksum":"0080687f0c0c212a3c9b8d0f4c0868e46a76657daa575975c48a2b886a457aba","size":126192,"triangleCount":65536},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-049.glb","checksum":"2eadb7cab0c4ab8d49bd8d4182d0630d46c652c066f206598703172bc2892052","size":126664,"triangleCount":65536},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-050.glb","checksum":"852846ace7e5907c2c0643661ff48715824d4b197d1b1bc8d554be0b851030a3","size":127368,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/619-azjol-lowercity/navigation.glb","checksum":"7b49990e78209eb0ccf3449403bb4ba17ce9482b0becbd8cf5b155d79e317153","size":4747016,"triangleCount":402335}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-670.2272,-502.5668,1068.7327],"max":[87.8998,-310.2838,1553.8607]},"entrance":{"name":"Ahn'kahet: The Old Kingdom Entrance","footPosition":[-625.2272,-330.2838,1113.7327],"forward":[0,0,1],"yaw":0},"areas":[{"id":"entrance","name":"Ahn'kahet: The Old Kingdom Entrance","center":[-625.2272,-330.2838,1113.7327],"radius":35},{"id":"area-elder-nadox","name":"Elder Nadox's Encounter","center":[-420.7542,-374.358,1460.2737],"radius":42},{"id":"area-prince-taldaram","name":"Prince Taldaram's Encounter","center":[-361.2852,-358.0207,1309.1157],"radius":42},{"id":"area-jedoga-shadowseeker","name":"Jedoga Shadowseeker's Encounter","center":[-220.5652,-400.68,1152.7127],"radius":42},{"id":"area-herald-volazj","name":"Herald Volazj's Encounter","center":[42.8998,-373.6164,1300.2947],"radius":42},{"id":"area-amanitar","name":"Amanitar's Encounter","center":[-393.8792,-474.9196,1120.5547],"radius":42}],"entities":{"entry-31104":{"id":"entry-31104","kind":"mob","name":"Ahn'kahar Watcher","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27324-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1982,"labelHeight":3.7719,"markerRadius":2.0637}}},"entry-30276":{"id":"entry-30276","kind":"mob","name":"Ahn'kahar Web Winder","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-25768-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":3.3974,"markerRadius":1.8761}}},"entry-30277":{"id":"entry-30277","kind":"mob","name":"Ahn'kahar Slasher","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"plant","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27324-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1982,"labelHeight":3.7719,"markerRadius":2.0637}}},"entry-30278":{"id":"entry-30278","kind":"mob","name":"Ahn'kahar Spell Flinger","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-23821-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1621,"labelHeight":3.0551,"markerRadius":1.6946}}},"entry-30279":{"id":"entry-30279","kind":"mob","name":"Deep Crawler","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.809536,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-26775-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3146,"markerRadius":2.3966}}},"entry-30283":{"id":"entry-30283","kind":"mob","name":"Plague Walker","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27323-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":7.5227,"markerRadius":2.5418}}},"entry-30284":{"id":"entry-30284","kind":"mob","name":"Bonegrinder","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-25012-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0102,"labelHeight":25.2557,"markerRadius":4.5}}},"entry-30285":{"id":"entry-30285","kind":"mob","name":"Eye of Taldaram","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-20090-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.7608,"markerRadius":0.9638}}},"entry-30286":{"id":"entry-30286","kind":"mob","name":"Frostbringer","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-26941-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0055,"labelHeight":4.7286,"markerRadius":0.9417}}},"entry-30287":{"id":"entry-30287","kind":"mob","name":"Plundering Geist","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-25742-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":3.7706,"markerRadius":0.65}}},"entry-30319":{"id":"entry-30319","kind":"mob","name":"Twilight Darkcaster","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27373-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":2.9483,"markerRadius":0.65}}},"entry-30329":{"id":"entry-30329","kind":"mob","name":"Savage Cave Beast","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-26948-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.6991,"markerRadius":2.0555}}},"entry-29308":{"id":"entry-29308","kind":"boss","name":"Prince Taldaram","title":"Dungeon Boss","hasLoot":true,"combat":{"level":75,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-55964","name":"Vanish","spellId":55964,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4523,"damageMultiplier":1.35},{"id":"spell-55966","name":"Shadowstep","spellId":55966,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4523,"damageMultiplier":1.35},{"id":"spell-55959","name":"Embrace of the Vampyr","spellId":55959,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4523,"damageMultiplier":1.35},{"id":"spell-60425","name":"Hover Fall","spellId":60425,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4523,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27406-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0204,"labelHeight":5.2021,"markerRadius":0.9081}}},"entry-29309":{"id":"entry-29309","kind":"boss","name":"Elder Nadox","title":"Dungeon Boss","hasLoot":true,"combat":{"level":75,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-59465","name":"Brood Rage","spellId":59465,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4865,"damageMultiplier":1.35},{"id":"spell-56130","name":"Brood Plague","spellId":56130,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4865,"damageMultiplier":1.35},{"id":"spell-26662","name":"Berserk","spellId":26662,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4865,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27407-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.126,"labelHeight":13.8906,"markerRadius":3.7487}}},"entry-29310":{"id":"entry-29310","kind":"boss","name":"Jedoga Shadowseeker","title":"Dungeon Boss","hasLoot":true,"combat":{"level":75,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-56102","name":"Sphere Visual","spellId":56102,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4800,"damageMultiplier":1.35},{"id":"spell-60425","name":"Hover Fall","spellId":60425,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4800,"damageMultiplier":1.35},{"id":"spell-56219","name":"Gift of the Herald","spellId":56219,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4800,"damageMultiplier":1.35},{"id":"spell-56327","name":"Random Lightning Visual","spellId":56327,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4800,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-26777-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0113,"labelHeight":4.0985,"markerRadius":0.7038}}},"entry-30338":{"id":"entry-30338","kind":"mob","name":"Ahn'kahar Swarmer","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2308,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-28078-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0224,"labelHeight":1.6082,"markerRadius":0.7174}}},"entry-30111":{"id":"entry-30111","kind":"mob","name":"Twilight Worshipper","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0587,"labelHeight":2.9703,"markerRadius":0.7397}}},"entry-30416":{"id":"entry-30416","kind":"mob","name":"Bound Fire Elemental","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/39572de3191c78a4573a438b4f299709d7ff1606c17e59844c7165b245fc5993.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9348,"markerRadius":0.878}}},"entry-30418":{"id":"entry-30418","kind":"mob","name":"Bound Air Elemental","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-8714-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7231,"markerRadius":1.1524}}},"entry-30419":{"id":"entry-30419","kind":"mob","name":"Bound Water Elemental","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-525-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.8918,"markerRadius":1.1315}}},"entry-30179":{"id":"entry-30179","kind":"mob","name":"Twilight Apostle","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27369-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0074,"labelHeight":3.2035,"markerRadius":0.742}}},"entry-29311":{"id":"entry-29311","kind":"boss","name":"Herald Volazj","title":"Dungeon Boss","hasLoot":true,"combat":{"level":75,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-57496","name":"Insanity","spellId":57496,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4006,"damageMultiplier":1.35},{"id":"spell-57941","name":"Mind Flay","spellId":57941,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4006,"damageMultiplier":1.35},{"id":"spell-57942","name":"Shadow Bolt Volley","spellId":57942,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4006,"damageMultiplier":0.82,"radius":11},{"id":"spell-57949","name":"Shiver","spellId":57949,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4006,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27408-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.2792,"labelHeight":21.0102,"markerRadius":4.5}}},"entry-30414":{"id":"entry-30414","kind":"mob","name":"Forgotten One","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-28007-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4797,"labelHeight":7.8788,"markerRadius":2.4297}}},"entry-30258":{"id":"entry-30258","kind":"boss","name":"Amanitar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-57095","name":"Entangling Roots","spellId":57095,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":7333,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}},{"id":"spell-57094","name":"Bash","spellId":57094,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7333,"damageMultiplier":1.35},{"id":"spell-57088","name":"Venom Bolt Volley","spellId":57088,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7333,"damageMultiplier":0.82,"radius":11},{"id":"spell-57055","name":"Mini","spellId":57055,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7333,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-28133-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":13.3981,"markerRadius":4.111}}}},"staticSpawns":[{"id":"creature-68283","entityId":"entry-31104","position":[-540.2772,-369.6206,1234.5347],"yaw":-5.21853,"spawnMask":2},{"id":"creature-68284","entityId":"entry-31104","position":[-550.2172,-369.722,1240.4137],"yaw":-1.97222,"spawnMask":2},{"id":"creature-131864","entityId":"entry-30276","position":[-471.3652,-377.0344,1457.1787],"yaw":-1.15192,"spawnMask":3},{"id":"creature-131865","entityId":"entry-30276","position":[-512.0822,-361.9935,1329.7547],"yaw":-3.65762,"spawnMask":3},{"id":"creature-131866","entityId":"entry-30276","position":[-394.2792,-377.2805,1332.3837],"yaw":-1.76278,"spawnMask":3},{"id":"creature-131867","entityId":"entry-30276","position":[-484.3722,-362.0351,1334.9827],"yaw":-3.735,"spawnMask":3},{"id":"creature-131869","entityId":"entry-30276","position":[-491.6012,-377.0315,1428.4247],"yaw":-3.9619,"spawnMask":3},{"id":"creature-131870","entityId":"entry-30276","position":[-497.9552,-376.9899,1443.2357],"yaw":-1.40486,"spawnMask":3},{"id":"creature-131871","entityId":"entry-30276","position":[-424.4592,-377.0315,1395.1657],"yaw":-3.36848,"spawnMask":3},{"id":"creature-131872","entityId":"entry-30276","position":[-523.6072,-362.0337,1348.9747],"yaw":-4.95674,"spawnMask":3},{"id":"creature-131873","entityId":"entry-30277","position":[-389.7822,-377.2805,1341.5177],"yaw":-1.88496,"spawnMask":3},{"id":"creature-131874","entityId":"entry-30277","position":[-483.8132,-362.0351,1327.7477],"yaw":-5.37561,"spawnMask":3},{"id":"creature-131875","entityId":"entry-30277","position":[-399.9932,-377.3639,1345.7037],"yaw":-1.70515,"spawnMask":3},{"id":"creature-131876","entityId":"entry-30277","position":[-502.2372,-377.0315,1422.5067],"yaw":-1.0472,"spawnMask":3},{"id":"creature-131877","entityId":"entry-30277","position":[-494.5192,-377.0315,1421.0557],"yaw":-5.75959,"spawnMask":3},{"id":"creature-131878","entityId":"entry-30277","position":[-429.7582,-376.6988,1388.2127],"yaw":-1.53589,"spawnMask":3},{"id":"creature-131879","entityId":"entry-30277","position":[-530.4872,-362.0351,1344.8917],"yaw":-0.139626,"spawnMask":3},{"id":"creature-131880","entityId":"entry-30278","position":[-464.2512,-376.994,1454.6637],"yaw":-5.72468,"spawnMask":3},{"id":"creature-131881","entityId":"entry-30278","position":[-518.2372,-362.0395,1333.2437],"yaw":-3.65757,"spawnMask":3},{"id":"creature-131882","entityId":"entry-30278","position":[-380.9452,-377.2805,1359.7777],"yaw":-2.05949,"spawnMask":3},{"id":"creature-131883","entityId":"entry-30278","position":[-491.3452,-362.0351,1334.8877],"yaw":-2.40855,"spawnMask":3},{"id":"creature-131884","entityId":"entry-30278","position":[-404.9352,-377.3639,1342.4587],"yaw":-2.73411,"spawnMask":3},{"id":"creature-131885","entityId":"entry-30278","position":[-499.1872,-377.0315,1430.1207],"yaw":-2.44346,"spawnMask":3},{"id":"creature-131886","entityId":"entry-30278","position":[-496.5532,-376.9899,1434.8667],"yaw":-1.40484,"spawnMask":3},{"id":"creature-131887","entityId":"entry-30278","position":[-425.3122,-377.5241,1382.2717],"yaw":-6.16101,"spawnMask":3},{"id":"creature-131888","entityId":"entry-30278","position":[-527.5772,-362.035,1355.8627],"yaw":-3.40339,"spawnMask":3},{"id":"creature-131889","entityId":"entry-30279","position":[-488.1902,-369.634,1281.0257],"yaw":-6.27441,"spawnMask":3},{"id":"creature-131890","entityId":"entry-30279","position":[-485.9672,-369.6714,1273.0407],"yaw":-5.93887,"spawnMask":3},{"id":"creature-131891","entityId":"entry-30279","position":[-489.9052,-369.6714,1275.3517],"yaw":-0.522217,"spawnMask":3},{"id":"creature-131892","entityId":"entry-30279","position":[-490.9182,-362.0351,1327.2937],"yaw":-0.820305,"spawnMask":3},{"id":"creature-131895","entityId":"entry-30279","position":[-559.7072,-369.691,1287.8227],"yaw":-0.039618,"spawnMask":3},{"id":"creature-131896","entityId":"entry-30279","position":[-550.7172,-369.691,1290.5617],"yaw":-1.62753,"spawnMask":3},{"id":"creature-131897","entityId":"entry-30279","position":[-548.0972,-369.5789,1284.0277],"yaw":-6.15522,"spawnMask":3},{"id":"creature-131898","entityId":"entry-30279","position":[-421.7612,-377.3526,1389.5717],"yaw":-4.43314,"spawnMask":3},{"id":"creature-131899","entityId":"entry-30279","position":[-533.9772,-362.0261,1351.5537],"yaw":-1.91986,"spawnMask":3},{"id":"creature-131900","entityId":"entry-30283","position":[-464.7722,-377.0316,1464.3047],"yaw":-3.56047,"spawnMask":3},{"id":"creature-131902","entityId":"entry-30283","position":[-385.0252,-377.2805,1350.5777],"yaw":-2.07694,"spawnMask":3},{"id":"creature-131906","entityId":"entry-30285","position":[-328.9272,-403.2033,1336.9967],"yaw":-3.88969,"spawnMask":3},{"id":"creature-131907","entityId":"entry-30285","position":[-241.6102,-381.9943,1436.6097],"yaw":-4.86947,"spawnMask":3},{"id":"creature-131908","entityId":"entry-30285","position":[-230.2882,-381.9943,1435.0357],"yaw":-1.8326,"spawnMask":3},{"id":"creature-131909","entityId":"entry-30285","position":[-301.7702,-381.9943,1476.2107],"yaw":-5.63741,"spawnMask":3},{"id":"creature-131910","entityId":"entry-30285","position":[-294.7032,-382.3123,1467.7967],"yaw":-2.32129,"spawnMask":3},{"id":"creature-131911","entityId":"entry-30285","position":[-361.7942,-403.224,1390.6617],"yaw":-4.12535,"spawnMask":3},{"id":"creature-131912","entityId":"entry-30285","position":[-359.0712,-403.224,1384.6547],"yaw":-1.04962,"spawnMask":3},{"id":"creature-131913","entityId":"entry-30286","position":[-319.7932,-403.2033,1345.2917],"yaw":-1.92166,"spawnMask":3},{"id":"creature-131914","entityId":"entry-30286","position":[-332.9942,-403.2033,1342.1947],"yaw":-2.65936,"spawnMask":3},{"id":"creature-131915","entityId":"entry-30286","position":[-235.0632,-382.3123,1428.9157],"yaw":-3.14159,"spawnMask":3},{"id":"creature-131916","entityId":"entry-30286","position":[-234.0182,-381.9943,1439.9487],"yaw":-0.174533,"spawnMask":3},{"id":"creature-131917","entityId":"entry-30286","position":[-295.9202,-381.9943,1475.1167],"yaw":-1.11701,"spawnMask":3},{"id":"creature-131918","entityId":"entry-30286","position":[-304.3512,-381.9943,1467.9277],"yaw":-3.9619,"spawnMask":3},{"id":"creature-131919","entityId":"entry-30286","position":[-367.2372,-403.2045,1390.6507],"yaw":-4.14862,"spawnMask":3},{"id":"creature-131921","entityId":"entry-30287","position":[-308.4392,-403.2033,1364.0037],"yaw":-0.550063,"spawnMask":3},{"id":"creature-131922","entityId":"entry-30287","position":[-312.2462,-403.2033,1361.3037],"yaw":-0.648112,"spawnMask":3},{"id":"creature-131923","entityId":"entry-30287","position":[-314.2702,-403.2033,1366.3917],"yaw":-3.45597,"spawnMask":3},{"id":"creature-131924","entityId":"entry-30287","position":[-313.1052,-403.2033,1370.9477],"yaw":-3.52964,"spawnMask":3},{"id":"creature-131925","entityId":"entry-30287","position":[-327.8772,-403.2767,1401.5967],"yaw":-4.87983,"spawnMask":3},{"id":"creature-131927","entityId":"entry-30287","position":[-327.2922,-403.2767,1397.6397],"yaw":-3.25287,"spawnMask":3},{"id":"creature-131928","entityId":"entry-30287","position":[-331.4602,-403.2767,1399.8177],"yaw":-1.40835,"spawnMask":3},{"id":"creature-131929","entityId":"entry-30287","position":[-330.6762,-403.1517,1404.4537],"yaw":-1.38004,"spawnMask":3},{"id":"creature-131932","entityId":"entry-30287","position":[-357.7502,-403.2722,1421.9057],"yaw":-3.96356,"spawnMask":3},{"id":"creature-131933","entityId":"entry-30287","position":[-350.5972,-403.3273,1423.6427],"yaw":-3.33469,"spawnMask":3},{"id":"creature-131934","entityId":"entry-30287","position":[-354.5782,-403.2985,1422.2637],"yaw":-3.47214,"spawnMask":3},{"id":"creature-131935","entityId":"entry-30287","position":[-356.2522,-403.2671,1420.7387],"yaw":-3.92149,"spawnMask":3},{"id":"creature-131939","entityId":"entry-30319","position":[-308.9032,-431.6473,1234.6627],"yaw":-4.05385,"spawnMask":3},{"id":"creature-131940","entityId":"entry-30319","position":[-264.7992,-431.643,1251.0517],"yaw":-2.16421,"spawnMask":3},{"id":"creature-131942","entityId":"entry-30319","position":[-313.3702,-431.643,1193.2807],"yaw":-5.63741,"spawnMask":3},{"id":"creature-131943","entityId":"entry-30319","position":[-277.9532,-431.6202,1242.2587],"yaw":-4.69494,"spawnMask":3},{"id":"creature-131944","entityId":"entry-30319","position":[-277.4622,-431.6311,1283.8567],"yaw":-5.32325,"spawnMask":3},{"id":"creature-131945","entityId":"entry-30329","position":[-472.5452,-479.2905,1179.1847],"yaw":-4.97399,"spawnMask":3},{"id":"creature-131946","entityId":"entry-30329","position":[-450.7672,-482.5668,1136.1677],"yaw":-4.11964,"spawnMask":3},{"id":"creature-131948","entityId":"entry-30329","position":[-362.2352,-472.5768,1150.7537],"yaw":-4.05836,"spawnMask":3},{"id":"creature-131949","entityId":"entry-30329","position":[-337.5262,-472.0344,1118.5917],"yaw":-5.9517,"spawnMask":3},{"id":"creature-131951","entityId":"entry-29308","position":[-361.2852,-358.0207,1309.1157],"yaw":-0.680678,"spawnMask":3},{"id":"creature-131952","entityId":"entry-29309","position":[-420.7542,-374.358,1460.2737],"yaw":-3.66519,"spawnMask":3},{"id":"creature-131953","entityId":"entry-29310","position":[-220.5652,-400.68,1152.7127],"yaw":-5.42797,"spawnMask":3},{"id":"creature-131954","entityId":"entry-30338","position":[-559.4372,-376.9263,1407.7647],"yaw":-0.692266,"spawnMask":3},{"id":"creature-131955","entityId":"entry-30338","position":[-553.5672,-377.0513,1402.7677],"yaw":-2.35097,"spawnMask":3},{"id":"creature-131956","entityId":"entry-30338","position":[-550.5872,-377.0361,1415.9287],"yaw":-2.62105,"spawnMask":3},{"id":"creature-131957","entityId":"entry-30338","position":[-551.1872,-377.0513,1407.9817],"yaw":-4.24176,"spawnMask":3},{"id":"creature-131958","entityId":"entry-30338","position":[-508.6442,-364.7491,1498.2407],"yaw":-2.37961,"spawnMask":3},{"id":"creature-131959","entityId":"entry-30338","position":[-508.2462,-364.9467,1491.6257],"yaw":-5.96783,"spawnMask":3},{"id":"creature-131960","entityId":"entry-30338","position":[-503.0582,-364.9467,1504.2797],"yaw":-5.72801,"spawnMask":3},{"id":"creature-131961","entityId":"entry-30338","position":[-505.0632,-364.7491,1495.0187],"yaw":-4.56924,"spawnMask":3},{"id":"creature-131962","entityId":"entry-30338","position":[-502.3972,-364.9072,1498.2317],"yaw":-0.268717,"spawnMask":3},{"id":"creature-131963","entityId":"entry-30338","position":[-506.2572,-364.6248,1508.8607],"yaw":-0.322014,"spawnMask":3},{"id":"creature-131964","entityId":"entry-30338","position":[-499.5392,-364.8109,1500.8937],"yaw":-0.068019,"spawnMask":3},{"id":"creature-131965","entityId":"entry-30338","position":[-509.1842,-364.9467,1493.7667],"yaw":-2.97026,"spawnMask":3},{"id":"creature-131966","entityId":"entry-30338","position":[-559.7272,-362.0966,1342.8107],"yaw":-4.8398,"spawnMask":3},{"id":"creature-131967","entityId":"entry-30338","position":[-558.6272,-362.0535,1352.5787],"yaw":-1.91378,"spawnMask":3},{"id":"creature-131968","entityId":"entry-30338","position":[-558.0572,-362.0966,1335.6637],"yaw":-4.55633,"spawnMask":3},{"id":"creature-131969","entityId":"entry-30338","position":[-554.1672,-362.0535,1354.9197],"yaw":-3.55818,"spawnMask":3},{"id":"creature-131970","entityId":"entry-30338","position":[-554.4572,-362.0535,1347.7107],"yaw":-1.868,"spawnMask":3},{"id":"creature-131971","entityId":"entry-30338","position":[-550.9772,-362.0966,1343.9297],"yaw":-1.09807,"spawnMask":3},{"id":"creature-131972","entityId":"entry-30338","position":[-486.2352,-361.9912,1311.6957],"yaw":-5.55894,"spawnMask":3},{"id":"creature-131973","entityId":"entry-30338","position":[-482.8452,-361.9912,1304.0747],"yaw":-2.35176,"spawnMask":3},{"id":"creature-131974","entityId":"entry-30338","position":[-478.6802,-361.9982,1307.6737],"yaw":-4.66323,"spawnMask":3},{"id":"creature-131975","entityId":"entry-30338","position":[-474.4112,-361.8732,1306.4987],"yaw":-3.93673,"spawnMask":3},{"id":"creature-131976","entityId":"entry-30338","position":[-471.9372,-361.4982,1311.2027],"yaw":-3.01339,"spawnMask":3},{"id":"creature-131977","entityId":"entry-30338","position":[-480.2802,-361.9982,1311.5247],"yaw":-0.501859,"spawnMask":3},{"id":"creature-131978","entityId":"entry-30338","position":[-452.3222,-374.3512,1405.8057],"yaw":-3.52468,"spawnMask":3},{"id":"creature-131979","entityId":"entry-30338","position":[-453.8172,-374.3512,1402.0947],"yaw":-3.52468,"spawnMask":3},{"id":"creature-131980","entityId":"entry-30338","position":[-456.3122,-374.3512,1406.0807],"yaw":-3.5247,"spawnMask":3},{"id":"creature-131981","entityId":"entry-30338","position":[-453.2932,-374.3512,1409.6857],"yaw":-3.52476,"spawnMask":3},{"id":"creature-131982","entityId":"entry-30338","position":[-448.9322,-374.3512,1407.9277],"yaw":-3.52482,"spawnMask":3},{"id":"creature-131983","entityId":"entry-30338","position":[-449.2562,-374.3512,1403.2367],"yaw":-3.52476,"spawnMask":3},{"id":"creature-131984","entityId":"entry-30338","position":[-477.6672,-361.9899,1358.2067],"yaw":-3.4076,"spawnMask":3},{"id":"creature-131985","entityId":"entry-30338","position":[-471.7692,-361.8649,1361.6607],"yaw":-1.69402,"spawnMask":3},{"id":"creature-131986","entityId":"entry-30338","position":[-468.4712,-362.1149,1357.9787],"yaw":-3.92597,"spawnMask":3},{"id":"creature-131987","entityId":"entry-30338","position":[-470.9572,-362.1149,1357.5227],"yaw":-0.388135,"spawnMask":3},{"id":"creature-131988","entityId":"entry-30338","position":[-489.4022,-362.0663,1353.6157],"yaw":-3.2505,"spawnMask":3},{"id":"creature-131989","entityId":"entry-30338","position":[-483.1372,-362.0663,1353.3437],"yaw":-2.96054,"spawnMask":3},{"id":"creature-131990","entityId":"entry-30111","position":[-253.8132,-431.643,1246.2667],"yaw":-5.23599,"spawnMask":3},{"id":"creature-131991","entityId":"entry-30111","position":[-258.9252,-431.643,1243.1257],"yaw":-0.087266,"spawnMask":3},{"id":"creature-131993","entityId":"entry-30111","position":[-320.2992,-431.643,1201.6447],"yaw":-2.40855,"spawnMask":3},{"id":"creature-131994","entityId":"entry-30111","position":[-313.9592,-431.643,1200.8217],"yaw":-3.90954,"spawnMask":3},{"id":"creature-131995","entityId":"entry-30111","position":[-284.2902,-431.625,1241.1397],"yaw":-1.36136,"spawnMask":3},{"id":"creature-131996","entityId":"entry-30111","position":[-278.8272,-431.6272,1289.5897],"yaw":-4.03171,"spawnMask":3},{"id":"creature-132014","entityId":"entry-30416","position":[-237.1002,-431.643,1231.6567],"yaw":-2.61799,"spawnMask":3},{"id":"creature-132015","entityId":"entry-30416","position":[-297.3332,-431.643,1188.3217],"yaw":-2.51327,"spawnMask":3},{"id":"creature-132019","entityId":"entry-30418","position":[-241.7062,-431.643,1224.6857],"yaw":-2.30383,"spawnMask":3},{"id":"creature-132020","entityId":"entry-30418","position":[-291.3212,-431.643,1191.0097],"yaw":-3.19395,"spawnMask":3},{"id":"creature-132024","entityId":"entry-30419","position":[-229.0142,-431.643,1234.5837],"yaw":-2.93215,"spawnMask":3},{"id":"creature-132025","entityId":"entry-30419","position":[-300.7282,-431.643,1181.8607],"yaw":-1.53589,"spawnMask":3},{"id":"creature-132053","entityId":"entry-30179","position":[-256.6182,-431.643,1253.6297],"yaw":-3.63029,"spawnMask":3},{"id":"creature-132054","entityId":"entry-30179","position":[-232.8162,-427.7991,1225.9267],"yaw":-5.44543,"spawnMask":3},{"id":"creature-132056","entityId":"entry-30179","position":[-320.6372,-431.643,1195.1297],"yaw":-0.959931,"spawnMask":3},{"id":"creature-132057","entityId":"entry-30179","position":[-281.0732,-431.643,1245.7987],"yaw":-3.00197,"spawnMask":3},{"id":"creature-132058","entityId":"entry-30179","position":[-292.8932,-428.9489,1182.6857],"yaw":-5.58505,"spawnMask":3},{"id":"creature-132059","entityId":"entry-30179","position":[-266.0442,-431.6013,1291.0867],"yaw":-0.645683,"spawnMask":3},{"id":"creature-132060","entityId":"entry-30179","position":[-285.2322,-431.6272,1282.0537],"yaw":-0.575959,"spawnMask":3},{"id":"creature-132298","entityId":"entry-29311","position":[42.8998,-373.6164,1300.2947],"yaw":-4.72984,"spawnMask":3},{"id":"creature-132299","entityId":"entry-30414","position":[-67.3902,-373.3332,1304.4207],"yaw":-4.69494,"spawnMask":3},{"id":"creature-202410","entityId":"entry-30258","position":[-393.8792,-474.9196,1120.5547],"yaw":-0.331613,"spawnMask":2}],"roamingPacks":[{"id":"patrol-131868","name":"Ahn'kahar Web Winder Patrol","speed":1.15,"pathId":1318680,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-399.4722,-377.3638,1347.3447],[-390.7682,-377.3638,1364.7637],[-408.0682,-377.6074,1377.0227],[-389.8322,-377.6074,1411.1007],[-418.8522,-377.6073,1352.6277],[-389.8322,-377.6074,1411.1007],[-408.0682,-377.6074,1377.0227],[-390.7682,-377.3638,1364.7637]],"members":[{"id":"member","entityId":"entry-30276","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131893","name":"Deep Crawler Patrol","speed":1.15,"pathId":1318930,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-488.5242,-369.7039,1265.5927],[-486.0392,-369.7039,1267.3967],[-512.6582,-369.7039,1260.8627],[-537.4072,-369.7039,1263.3307],[-556.2072,-369.633,1278.8027],[-557.4472,-369.6577,1279.3437],[-556.2072,-369.633,1278.8027],[-537.4072,-369.7039,1263.3307],[-512.6582,-369.7039,1260.8627]],"members":[{"id":"member","entityId":"entry-30279","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131894","name":"Deep Crawler Patrol","speed":1.15,"pathId":1318940,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-510.9082,-369.3834,1265.7337],[-504.2692,-369.7039,1266.3297],[-500.4582,-369.7037,1277.2187],[-498.5142,-369.5876,1281.1967],[-500.4582,-369.7037,1277.2187],[-504.2692,-369.7039,1266.3297],[-510.9082,-369.3834,1265.7337],[-527.6272,-369.7036,1269.4967],[-545.2172,-369.7038,1271.7027],[-558.1572,-369.5596,1271.8607],[-561.2672,-369.2639,1272.1507],[-545.2172,-369.7038,1271.7027],[-527.6272,-369.7036,1269.4967]],"members":[{"id":"member","entityId":"entry-30279","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131901","name":"Plague Walker Patrol","speed":1.15,"pathId":1319010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-517.9272,-362.1173,1329.2887],[-525.1072,-362.4967,1288.7947],[-517.9272,-362.1173,1329.2887],[-548.7172,-362.1173,1338.8847],[-517.9272,-362.1173,1329.2887],[-498.5092,-362.1184,1346.4637],[-474.6372,-362.1184,1344.9837],[-498.5092,-362.1184,1346.4637]],"members":[{"id":"member","entityId":"entry-30283","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131903","name":"Plague Walker Patrol","speed":1.15,"pathId":1319030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-491.3512,-377.1148,1441.6407],[-481.3512,-377.1148,1446.2997],[-491.3512,-377.1148,1441.6407],[-504.1422,-377.1148,1439.8217],[-515.1602,-377.1148,1435.2917],[-521.4572,-377.1148,1425.2337],[-514.0902,-377.1148,1405.7227],[-521.4572,-377.1148,1425.2337],[-515.1602,-377.1148,1435.2917],[-504.1422,-377.1148,1439.8217]],"members":[{"id":"member","entityId":"entry-30283","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131904","name":"Bonegrinder Patrol","speed":1.15,"pathId":1319040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-335.4662,-403.3283,1374.0707],[-310.9372,-403.326,1386.6917],[-295.6292,-402.7618,1392.6097],[-310.9372,-403.326,1386.6917]],"members":[{"id":"member","entityId":"entry-30284","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131905","name":"Bonegrinder Patrol","speed":1.15,"pathId":1319050,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-291.8802,-403.3283,1366.7437],[-291.8342,-403.1489,1331.7387],[-318.1802,-395.7016,1313.8517],[-291.8342,-403.1489,1331.7387]],"members":[{"id":"member","entityId":"entry-30284","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131920","name":"Plundering Geist Patrol","speed":1.15,"pathId":1319200,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-313.0552,-403.3278,1356.5597],[-308.9062,-403.3278,1373.6077],[-282.6762,-402.2245,1398.3167],[-249.8712,-382.0849,1424.3817],[-243.3852,-382.1551,1429.4057],[-249.8712,-382.0849,1424.3817],[-282.6762,-402.2245,1398.3167],[-308.9062,-403.3278,1373.6077]],"members":[{"id":"member","entityId":"entry-30287","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131926","name":"Plundering Geist Patrol","speed":1.15,"pathId":1319260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-332.8652,-403.1842,1401.0657],[-316.3192,-402.8453,1399.6447],[-305.3172,-402.2166,1407.1347],[-300.4802,-381.9069,1453.6887],[-299.4942,-382.1408,1465.9977],[-300.4802,-381.9069,1453.6887],[-305.3172,-402.2166,1407.1347],[-316.3192,-402.8453,1399.6447]],"members":[{"id":"member","entityId":"entry-30287","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131931","name":"Plundering Geist Patrol","speed":1.15,"pathId":1319310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-352.6662,-403.2985,1416.1637],[-349.5952,-403.2985,1396.1227],[-350.9162,-403.3282,1384.1487],[-352.6662,-403.2985,1416.1637],[-343.9062,-403.33,1444.7177],[-365.1462,-389.9253,1454.7307],[-382.5722,-390.6238,1460.8037],[-365.1462,-389.9253,1454.7307],[-343.9062,-403.33,1444.7177]],"members":[{"id":"member","entityId":"entry-30287","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131947","name":"Savage Cave Beast Patrol","speed":1.15,"pathId":1319470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-392.2342,-468.3252,1202.1697],[-392.5292,-472.1897,1191.6187],[-392.2342,-468.3252,1202.1697],[-395.3972,-464.054,1215.5387],[-398.4282,-461.2123,1224.2577],[-397.9202,-455.7443,1237.0947],[-398.4282,-461.2123,1224.2577],[-395.3972,-464.054,1215.5387]],"members":[{"id":"member","entityId":"entry-30329","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131950","name":"Savage Cave Beast Patrol","speed":1.15,"pathId":1319500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-397.0372,-456.5097,1235.3587],[-394.5952,-450.8861,1246.7457],[-384.3622,-444.7946,1251.4567],[-377.6802,-440.4211,1250.5777],[-366.2002,-435.4577,1249.2107],[-359.3732,-433.1302,1246.0327],[-366.2002,-435.4577,1249.2107],[-377.6802,-440.4211,1250.5777],[-384.3622,-444.7946,1251.4567],[-394.5952,-450.8861,1246.7457]],"members":[{"id":"member","entityId":"entry-30329","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132052","name":"Twilight Apostle Patrol","speed":1.15,"pathId":1320520,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-307.4102,-431.7262,1231.9597],[-326.6072,-431.7262,1225.5907],[-307.4102,-431.7262,1231.9597],[-284.2342,-431.7262,1254.4647],[-259.9572,-431.7262,1280.3847],[-284.2342,-431.7262,1254.4647]],"members":[{"id":"member","entityId":"entry-30179","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132300","name":"Forgotten One Patrol","speed":1.15,"pathId":1323000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-55.6962,-373.6998,1304.2837],[-18.6812,-373.6998,1337.9567],[-55.6962,-373.6998,1304.2837]],"members":[{"id":"member","entityId":"entry-30414","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132301","name":"Forgotten One Patrol","speed":1.15,"pathId":1323010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-17.2802,-373.6998,1263.4827],[-55.6332,-373.6998,1303.5427],[-17.2802,-373.6998,1263.4827]],"members":[{"id":"member","entityId":"entry-30414","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-131952","name":"Elder Nadox","position":[-420.7542,-374.358,1460.2737]},{"id":"creature-131951","name":"Prince Taldaram","position":[-361.2852,-358.0207,1309.1157]},{"id":"creature-131953","name":"Jedoga Shadowseeker","position":[-220.5652,-400.68,1152.7127]},{"id":"creature-132298","name":"Herald Volazj","position":[42.8998,-373.6164,1300.2947]},{"id":"creature-202410","name":"Amanitar","position":[-393.8792,-474.9196,1120.5547]}],"objectiveOrder":[{"id":"creature-131952","name":"Elder Nadox","position":[-420.7542,-374.358,1460.2737]},{"id":"creature-131951","name":"Prince Taldaram","position":[-361.2852,-358.0207,1309.1157]},{"id":"creature-131953","name":"Jedoga Shadowseeker","position":[-220.5652,-400.68,1152.7127]},{"id":"creature-132298","name":"Herald Volazj","position":[42.8998,-373.6164,1300.2947]},{"id":"creature-202410","name":"Amanitar","position":[-393.8792,-474.9196,1120.5547]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":6100,"id":191849,"map":619,"orientation":-1.5708,"phaseMask":1,"position_x":523.512,"position_y":-301.122,"position_z":68.8495,"rotation0":-0.00462866,"rotation1":0.00318146,"rotation2":-0.7086,"rotation3":0.705588,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":6101,"id":191848,"map":619,"orientation":-1.57504,"phaseMask":1,"position_x":523.432,"position_y":-300.711,"position_z":68.8281,"rotation0":0,"rotation1":0,"rotation2":-0.708606,"rotation3":0.705605,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67328,"id":189973,"map":619,"orientation":1.95477,"phaseMask":1,"position_x":322.109,"position_y":-838.387,"position_z":-72.1601,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559192,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67329,"id":189973,"map":619,"orientation":1.06465,"phaseMask":1,"position_x":411.429,"position_y":-1000.11,"position_z":-72.6222,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67330,"id":193564,"map":619,"orientation":3.14159,"phaseMask":1,"position_x":528.005,"position_y":-846.296,"position_z":11.2026,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67331,"id":193093,"map":619,"orientation":3.14159,"phaseMask":1,"position_x":655.729,"position_y":-719.049,"position_z":18.0264,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67332,"id":193094,"map":619,"orientation":3.14159,"phaseMask":1,"position_x":692.465,"position_y":-783.911,"position_z":18.0264,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67333,"id":191846,"map":619,"orientation":0.606614,"phaseMask":1,"position_x":333.535,"position_y":-1109.94,"position_z":70.2691,"rotation0":0,"rotation1":0,"rotation2":0.298678,"rotation3":0.954354,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67334,"id":191847,"map":619,"orientation":0.610865,"phaseMask":1,"position_x":333.825,"position_y":-1109.64,"position_z":70.2906,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67335,"id":190169,"map":619,"orientation":0.244346,"phaseMask":1,"position_x":372.688,"position_y":-908.087,"position_z":-82.0696,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67336,"id":190170,"map":619,"orientation":-1.97222,"phaseMask":1,"position_x":602.793,"position_y":-918.579,"position_z":22.5588,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67337,"id":192236,"map":619,"orientation":1.98857,"phaseMask":1,"position_x":550.141,"position_y":-865.111,"position_z":11.6117,"rotation0":0,"rotation1":0,"rotation2":0.838369,"rotation3":0.545102,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":67448,"id":193057,"map":619,"orientation":4.72984,"phaseMask":1,"position_x":520.858,"position_y":-353.019,"position_z":45.3949,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/ahnkahet-old-kingdom/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["24/24 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"forge-of-souls","title":"The Forge of Souls","mapId":632,"lfgDungeonIds":[251,252],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[80,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Forge of Souls","theme":"Open-world expedition","summary":"Fight through The Forge of Souls, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Forge of Souls...","unchartedAreaName":"Uncharted The Forge of Souls","background":"#081016","fog":{"color":"#0a141c","near":36,"far":613.368},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/632-icecrowncitadel5man/visual.glb","checksum":"dab0c012d306096394482daeae857f55bf5fd7d1a673fa2ce46341ee32f82601","size":2607972,"triangleCount":74047}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/632-icecrowncitadel5man/collision.glb","checksum":"e6e50ffb3222fd8cf27456844bdd7d8c4e249454241c8003dede7c82218897ef","size":1032616,"triangleCount":74047}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/632-icecrowncitadel5man/navigation.glb","checksum":"93034b579c111f17356554bb4e37fa56dccbb89523c3a88a143797cc2fcc82de","size":358564,"triangleCount":26452}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[2105.3915,499.3837,4926.2727],"max":[2650.9315,673.6117,5778.1727]},"entrance":{"name":"The Forge of Souls Entrance","footPosition":[2205.7715,583.4337,4994.2827],"forward":[0.5129152906235155,0,0.8584392259470641],"yaw":0.5385773943859671},"areas":[{"id":"entrance","name":"The Forge of Souls Entrance","center":[2205.7715,583.4337,4994.2827],"radius":35},{"id":"area-bronjahm","name":"Bronjahm's Encounter","center":[2536.6015,630.8507,5368.7327],"radius":42},{"id":"area-devourer-of-souls","name":"Devourer of Souls's Encounter","center":[2537.5315,653.6117,5733.1727],"radius":42}],"entities":{"entry-36499":{"id":"entry-36499","kind":"mob","name":"Soulguard Reaper","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30152-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0018,"labelHeight":3.4175,"markerRadius":0.65}}},"entry-36478":{"id":"entry-36478","kind":"mob","name":"Soulguard Watchman","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30269-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1084,"labelHeight":7.7862,"markerRadius":1.5558}}},"entry-36564":{"id":"entry-36564","kind":"mob","name":"Soulguard Bonecaster","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30270-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0045,"labelHeight":3.834,"markerRadius":0.7636}}},"entry-36666":{"id":"entry-36666","kind":"mob","name":"Spectral Warden","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30283-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.8292,"labelHeight":8.5367,"markerRadius":3.1754}}},"entry-36516":{"id":"entry-36516","kind":"mob","name":"Soulguard Animator","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30168-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0103,"labelHeight":3.7259,"markerRadius":0.65}}},"entry-36522":{"id":"entry-36522","kind":"mob","name":"Soul Horror","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-22701-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.7608,"markerRadius":0.9638}}},"entry-36620":{"id":"entry-36620","kind":"mob","name":"Soulguard Adept","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30240-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0021,"labelHeight":3.8506,"markerRadius":0.65}}},"entry-36497":{"id":"entry-36497","kind":"boss","name":"Bronjahm","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-70043","name":"Shadow Bolt","spellId":70043,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-68950","name":"Fear","spellId":68950,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":8000,"damageMultiplier":0,"radius":11,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}},{"id":"spell-68793","name":"Magic's Bane","spellId":68793,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-68839","name":"Corrupt Soul","spellId":68839,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30226-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.001,"labelHeight":3.5751,"markerRadius":0.7474}}},"entry-36551":{"id":"entry-36551","kind":"mob","name":"Spiteful Apparition","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-25942-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-36502":{"id":"entry-36502","kind":"boss","name":"Devourer of Souls","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-68982","name":"Phantom Blast","spellId":68982,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-68899","name":"Wailing Souls","spellId":68899,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-69051","name":"Mirrored Soul","spellId":69051,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":9000,"damageMultiplier":1.35},{"id":"spell-68820","name":"Well of Souls","spellId":68820,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30148-animated.glb","rotationY":-1.5707963267948966,"groundOffset":6.8095,"labelHeight":34.1892,"markerRadius":4.0537}}},"entry-37583":{"id":"entry-37583","kind":"mob","name":"Dark Ranger Kalira","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30686-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6894,"markerRadius":0.65}}},"entry-37779":{"id":"entry-37779","kind":"mob","name":"Dark Ranger Loralen","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/44ef1435e58e9a055208847ab1d1b47a8682800dabcece2619ff1ee417d7bf17.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6894,"markerRadius":0.65}}},"entry-37596":{"id":"entry-37596","kind":"mob","name":"Lady Sylvanas Windrunner","combat":{"level":83,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/2f647f35e19834a4011cce123d60bb361a8df5a9c24ed292fd7a1c56c0fad704.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.741,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-201676","entityId":"entry-36499","position":[2173.4615,594.2677,5120.8527],"yaw":-1.11701,"spawnMask":3},{"id":"creature-201677","entityId":"entry-36478","position":[2249.8515,583.5167,5020.2827],"yaw":-3.14159,"spawnMask":3},{"id":"creature-201678","entityId":"entry-36564","position":[2389.2215,612.9437,5253.2927],"yaw":-3.76991,"spawnMask":3},{"id":"creature-201686","entityId":"entry-36564","position":[2457.6915,616.4847,5312.3227],"yaw":-0.226893,"spawnMask":3},{"id":"creature-201688","entityId":"entry-36564","position":[2157.0115,596.9707,5251.3627],"yaw":-3.2287,"spawnMask":3},{"id":"creature-201693","entityId":"entry-36516","position":[2369.6215,612.9437,5236.0227],"yaw":-0.698132,"spawnMask":3},{"id":"creature-201695","entityId":"entry-36522","position":[2582.5215,620.0117,5328.2127],"yaw":-4.32842,"spawnMask":3},{"id":"creature-201697","entityId":"entry-36620","position":[2163.9115,597.0547,5229.7427],"yaw":0,"spawnMask":3},{"id":"creature-201698","entityId":"entry-36516","position":[2595.1115,620.0117,5315.7427],"yaw":-5.48033,"spawnMask":3},{"id":"creature-201699","entityId":"entry-36620","position":[2385.0915,612.9437,5233.9327],"yaw":-5.35816,"spawnMask":3},{"id":"creature-201705","entityId":"entry-36516","position":[2174.0715,597.0547,5246.4727],"yaw":-4.38078,"spawnMask":3},{"id":"creature-201707","entityId":"entry-36497","position":[2536.6015,630.8507,5368.7327],"yaw":-3.24631,"spawnMask":3},{"id":"creature-201711","entityId":"entry-36516","position":[2371.0215,612.9437,5256.7027],"yaw":-2.53073,"spawnMask":3},{"id":"creature-201714","entityId":"entry-36551","position":[2477.2815,643.4417,5486.2127],"yaw":-3.12365,"spawnMask":3},{"id":"creature-201719","entityId":"entry-36620","position":[2327.4415,610.2117,5208.2227],"yaw":-2.74017,"spawnMask":3},{"id":"creature-201725","entityId":"entry-36551","position":[2276.6315,583.5417,5027.3527],"yaw":-4.34893,"spawnMask":3},{"id":"creature-201726","entityId":"entry-36620","position":[2180.6515,589.5347,5106.0927],"yaw":-0.750492,"spawnMask":3},{"id":"creature-201732","entityId":"entry-36522","position":[2591.9915,620.0117,5393.2627],"yaw":-5.20108,"spawnMask":3},{"id":"creature-201733","entityId":"entry-36551","position":[2203.0515,597.2307,5289.5327],"yaw":-2.02187,"spawnMask":3},{"id":"creature-201734","entityId":"entry-36620","position":[2455.3215,616.4847,5293.5627],"yaw":-2.67035,"spawnMask":3},{"id":"creature-201735","entityId":"entry-36478","position":[2232.6415,600.3267,5279.3427],"yaw":-1.73264,"spawnMask":3},{"id":"creature-201736","entityId":"entry-36502","position":[2537.5315,653.6117,5733.1727],"yaw":-4.08407,"spawnMask":3},{"id":"creature-201742","entityId":"entry-36522","position":[2379.0615,612.9437,5245.8927],"yaw":-3.26377,"spawnMask":3},{"id":"creature-201748","entityId":"entry-36516","position":[2605.9315,620.0117,5400.3327],"yaw":-4.06662,"spawnMask":3},{"id":"creature-201749","entityId":"entry-36499","position":[2320.9715,610.2117,5206.2127],"yaw":-2.51327,"spawnMask":3},{"id":"creature-201751","entityId":"entry-36522","position":[2160.9015,596.9707,5239.2727],"yaw":-3.38266,"spawnMask":3},{"id":"creature-201753","entityId":"entry-36499","position":[2337.6515,611.0977,5201.7127],"yaw":-3.9968,"spawnMask":3},{"id":"creature-201757","entityId":"entry-36478","position":[2485.2515,631.0697,5416.4927],"yaw":-2.73418,"spawnMask":3},{"id":"creature-201758","entityId":"entry-36499","position":[2444.8715,616.4847,5308.1127],"yaw":-5.77704,"spawnMask":3},{"id":"creature-201762","entityId":"entry-36516","position":[2571.0315,620.0117,5338.0327],"yaw":-2.25148,"spawnMask":3},{"id":"creature-201763","entityId":"entry-36551","position":[2380.7415,612.8607,5192.0027],"yaw":-5.09885,"spawnMask":3},{"id":"creature-201764","entityId":"entry-36478","position":[2560.3115,621.3557,5320.6327],"yaw":-4.4926,"spawnMask":3},{"id":"creature-201766","entityId":"entry-36499","position":[2187.8815,585.8187,5095.8527],"yaw":-0.645772,"spawnMask":3},{"id":"creature-201776","entityId":"entry-36499","position":[2463.3415,616.4847,5302.9827],"yaw":-2.51327,"spawnMask":3},{"id":"creature-201786","entityId":"entry-36516","position":[2150.3915,597.0547,5236.5127],"yaw":-1.0472,"spawnMask":3},{"id":"creature-201790","entityId":"entry-36516","position":[2579.9815,620.0117,5388.3727],"yaw":-1.20428,"spawnMask":3},{"id":"creature-201791","entityId":"entry-36551","position":[2493.2415,622.6597,5333.1627],"yaw":-2.33989,"spawnMask":3},{"id":"creature-201792","entityId":"entry-36478","position":[2264.9015,583.5167,5012.4527],"yaw":-4.08407,"spawnMask":3},{"id":"creature-1972090","entityId":"entry-37583","position":[2242.9715,583.5167,4974.2527],"yaw":-0.349066,"spawnMask":3},{"id":"creature-1972091","entityId":"entry-37779","position":[2236.0415,583.5167,4971.2727],"yaw":-5.49779,"spawnMask":3},{"id":"creature-1972092","entityId":"entry-37596","position":[2238.3015,583.5167,4971.4027],"yaw":-0.349066,"spawnMask":3}],"roamingPacks":[{"id":"patrol-201687","name":"Spectral Warden Patrol","speed":1.15,"pathId":2016870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2459.3515,650.5517,5645.5127],[2466.9115,650.5517,5634.7927],[2474.9415,650.5517,5624.1327],[2447.2415,650.5517,5660.8327],[2482.6315,650.5537,5689.9727],[2447.2415,650.5517,5660.8327]],"members":[{"id":"member","entityId":"entry-36666","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201700","name":"Soulguard Watchman Patrol","speed":1.15,"pathId":2017000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2481.5915,631.0707,5414.9127],[2462.9615,636.7937,5449.8327],[2473.2615,644.1557,5488.3227],[2484.4415,650.5387,5508.1327],[2501.9315,650.6947,5525.8827],[2484.4415,650.5387,5508.1327],[2473.2615,644.1557,5488.3227],[2462.9615,636.7937,5449.8327]],"members":[{"id":"member","entityId":"entry-36478","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201706","name":"Soulguard Watchman Patrol","speed":1.15,"pathId":2017060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2560.7015,621.1177,5323.6727],[2549.2415,622.6607,5320.3227],[2531.8315,622.6607,5319.4627],[2513.9615,622.6607,5325.6627],[2531.8315,622.6607,5319.4627],[2549.2415,622.6607,5320.3227],[2560.7015,621.1177,5323.6727],[2568.8415,619.9287,5330.3327],[2568.3915,619.9287,5330.0527]],"members":[{"id":"member","entityId":"entry-36478","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201712","name":"Soulguard Bonecaster Patrol","speed":1.15,"pathId":2017120,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2184.9715,584.6517,5087.5127],[2175.3915,588.8797,5098.4927],[2168.7915,592.7067,5110.5527],[2175.3915,588.8797,5098.4927]],"members":[{"id":"member","entityId":"entry-36564","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201713","name":"Soulguard Watchman Patrol","speed":1.15,"pathId":2017130,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2232.6415,600.2797,5283.9627],[2260.8015,604.6477,5278.9427],[2296.5415,610.1287,5272.1027],[2309.6115,610.1287,5267.9027],[2296.5415,610.1287,5272.1027],[2260.8015,604.6477,5278.9427],[2214.7715,597.5017,5287.6027]],"members":[{"id":"member","entityId":"entry-36478","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201737","name":"Spectral Warden Patrol","speed":1.15,"pathId":2017370,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2503.2215,650.5527,5587.6927],[2491.1215,650.5527,5603.6127],[2503.2215,650.5527,5587.6927],[2527.2915,650.6837,5555.9127]],"members":[{"id":"member","entityId":"entry-36666","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201783","name":"Soulguard Bonecaster Patrol","speed":1.15,"pathId":2017830,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2312.7415,610.1287,5213.6327],[2324.8815,610.1287,5216.5927],[2336.2015,610.1287,5212.3327],[2345.5315,611.5127,5204.8927],[2336.2015,610.1287,5212.3327],[2324.8815,610.1287,5216.5927]],"members":[{"id":"member","entityId":"entry-36564","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201796","name":"Spectral Warden Patrol","speed":1.15,"pathId":2017960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2599.8915,650.7027,5597.4327],[2586.4115,650.7027,5589.2127],[2562.9315,650.7027,5568.5627],[2543.3715,650.7037,5555.0627],[2570.3915,650.7037,5572.8227]],"members":[{"id":"member","entityId":"entry-36666","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-201707","name":"Bronjahm","position":[2536.6015,630.8507,5368.7327]},{"id":"creature-201736","name":"Devourer of Souls","position":[2537.5315,653.6117,5733.1727]}],"objectiveOrder":[{"id":"creature-201707","name":"Bronjahm","position":[2536.6015,630.8507,5368.7327]},{"id":"creature-201736","name":"Devourer of Souls","position":[2537.5315,653.6117,5733.1727]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150207,"id":196392,"map":632,"orientation":2.04489,"phaseMask":1,"position_x":4925.1,"position_y":2170.29,"position_z":641.944,"rotation0":0,"rotation1":0,"rotation2":0.853385,"rotation3":0.521281,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150224,"id":201961,"map":632,"orientation":-2.23116,"phaseMask":1,"position_x":5684.1,"position_y":2536.37,"position_z":716.859,"rotation0":0,"rotation1":0,"rotation2":-0.898166,"rotation3":0.439657,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150238,"id":201960,"map":632,"orientation":-2.23116,"phaseMask":1,"position_x":5684.1,"position_y":2536.37,"position_z":716.859,"rotation0":0,"rotation1":0,"rotation2":-0.898166,"rotation3":0.439657,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150255,"id":196391,"map":632,"orientation":2.04489,"phaseMask":1,"position_x":4925.1,"position_y":2170.29,"position_z":641.944,"rotation0":0,"rotation1":0,"rotation2":0.853385,"rotation3":0.521281,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51666,"animprogress":255,"areaId":0,"guid":150292,"id":201600,"map":632,"orientation":5.67232,"phaseMask":1,"position_x":5672.2,"position_y":2520.55,"position_z":709.108,"rotation0":0,"rotation1":0,"rotation2":-0.300705,"rotation3":0.953717,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/forge-of-souls/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["13/13 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"trial-of-the-champion","title":"Trial of the Champion","mapId":650,"lfgDungeonIds":[245,249],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[80,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Trial of the Champion","theme":"Open-world expedition","summary":"Fight through Trial of the Champion, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Trial of the Champion...","unchartedAreaName":"Uncharted Trial of the Champion","background":"#081016","fog":{"color":"#0a141c","near":36,"far":798.2682},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/visual.glb","checksum":"1b17fb35654a8fc2bd224add65acc0b61efd9d42c529a94b7431a52e92fb4f67","size":9108480,"triangleCount":334379}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/collision-000.glb","checksum":"ed75a335eaea33054eb8860216aecbc18d91b5ad223c8b8ccde81062ad989b3e","size":239188,"triangleCount":65488},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/collision-001.glb","checksum":"b9b074479057f0bf609001e3a4918d90dbe43d0a85c37ab892a6eb1e27504280","size":979852,"triangleCount":72167},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/collision-002.glb","checksum":"4c2a0284a33930f41214713b9246f5b164f864c594bd545d62ca705f19e6f522","size":298392,"triangleCount":87954},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/collision-003.glb","checksum":"653be0261418bec25c1a0d9ecff0d0a179dd2e32b4d4d811fa2267645932a0fe","size":290876,"triangleCount":82319}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/navigation.glb","checksum":"03d0ee92b05bc92d15a7e7c717bb97c90e7262a254a94b921f1e1c5ed6787439","size":1610632,"triangleCount":128834}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[890.7955,380.8933,663.5007],"max":[1999.5013,517.6434,852.8185]},"entrance":{"name":"Trial of the Champion Entrance","footPosition":[935.7955,400.8933,727.7007],"forward":[0.9986953242221891,0,-0.05106514835713792],"yaw":1.6218836945688382},"areas":[{"id":"entrance","name":"Trial of the Champion Entrance","center":[935.7955,400.8933,727.7007],"radius":35},{"id":"area-mokra-the-skullcrusher","name":"Mokra the Skullcrusher's Encounter","center":[1427.0726,488.0854,726.3779],"radius":42},{"id":"area-eressea-dawnsinger","name":"Eressea Dawnsinger's Encounter","center":[1557.6025,477.1999,747.954],"radius":42},{"id":"area-runok-wildmane","name":"Runok Wildmane's Encounter","center":[1690.9863,466.3144,764.8269],"radius":42},{"id":"area-argent-champion","name":"Argent Champion's Encounter","center":[1823.4473,455.4289,788.506],"radius":42},{"id":"area-the-black-knight","name":"The Black Knight's Encounter","center":[1952.7288,444.5434,807.505],"radius":42}],"entities":{"entry-35572":{"id":"entry-35572","kind":"boss","name":"Mokra the Skullcrusher","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"spell-64553","name":"[DND] Defend Aura (05 seconds)","spellId":64553,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4744,"damageMultiplier":1.35},{"id":"spell-67865","name":"Trample","spellId":67865,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4744,"damageMultiplier":1.35},{"id":"spell-67867","name":"Trampled","spellId":67867,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4744,"damageMultiplier":1.35},{"id":"spell-63784","name":"Bladestorm","spellId":63784,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4744,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/trial-of-the-champion/creatures/display-28587-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-35569":{"id":"entry-35569","kind":"boss","name":"Eressea Dawnsinger","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"spell-64553","name":"[DND] Defend Aura (05 seconds)","spellId":64553,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4826,"damageMultiplier":1.35},{"id":"spell-67865","name":"Trample","spellId":67865,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4826,"damageMultiplier":1.35},{"id":"spell-67867","name":"Trampled","spellId":67867,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4826,"damageMultiplier":1.35},{"id":"spell-63784","name":"Bladestorm","spellId":63784,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4826,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/trial-of-the-champion/creatures/display-28637-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.5876,"markerRadius":0.65}}},"entry-35571":{"id":"entry-35571","kind":"boss","name":"Runok Wildmane","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"spell-64553","name":"[DND] Defend Aura (05 seconds)","spellId":64553,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4151,"damageMultiplier":1.35},{"id":"spell-67865","name":"Trample","spellId":67865,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4151,"damageMultiplier":1.35},{"id":"spell-67867","name":"Trampled","spellId":67867,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4151,"damageMultiplier":1.35},{"id":"spell-63784","name":"Bladestorm","spellId":63784,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4151,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/trial-of-the-champion/creatures/display-28597-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0587,"labelHeight":2.9703,"markerRadius":0.7397}}},"entry-30188":{"id":"entry-30188","kind":"boss","name":"Argent Champion","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-53625","name":"Heroic Leap","spellId":53625,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4162,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/trial-of-the-champion/creatures/display-26838-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-35451":{"id":"entry-35451","kind":"boss","name":"The Black Knight","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-67751","name":"Ghoul Explode","spellId":67751,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6911,"damageMultiplier":1.35},{"id":"spell-67691","name":"Feign Death","spellId":67691,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6911,"damageMultiplier":1.35},{"id":"spell-67715","name":"Raise Dead Jaeren Sunsworn","spellId":67715,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6911,"damageMultiplier":1.35},{"id":"spell-67705","name":"Raise Dead Arelas Brightstar","spellId":67705,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6911,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/trial-of-the-champion/creatures/display-29837-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0051,"labelHeight":5.291,"markerRadius":0.7796}}}},"staticSpawns":[{"id":"encounter-33400","entityId":"entry-35572","position":[1427.0726,488.0854,726.3779],"yaw":0,"spawnMask":1},{"id":"encounter-33401","entityId":"entry-35569","position":[1557.6025,477.1999,747.954],"yaw":0,"spawnMask":1},{"id":"encounter-33402","entityId":"entry-35571","position":[1690.9863,466.3144,764.8269],"yaw":0,"spawnMask":1},{"id":"encounter-338","entityId":"entry-30188","position":[1823.4473,455.4289,788.506],"yaw":0,"spawnMask":1},{"id":"encounter-340","entityId":"entry-35451","position":[1952.7288,444.5434,807.505],"yaw":0,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"encounter-33400","name":"Mokra the Skullcrusher","position":[1427.0726,488.0854,726.3779]},{"id":"encounter-33401","name":"Eressea Dawnsinger","position":[1557.6025,477.1999,747.954]},{"id":"encounter-33402","name":"Runok Wildmane","position":[1690.9863,466.3144,764.8269]},{"id":"encounter-338","name":"Argent Champion","position":[1823.4473,455.4289,788.506]},{"id":"encounter-340","name":"The Black Knight","position":[1952.7288,444.5434,807.505]}],"objectiveOrder":[{"id":"encounter-33400","name":"Mokra the Skullcrusher","position":[1427.0726,488.0854,726.3779]},{"id":"encounter-33401","name":"Eressea Dawnsinger","position":[1557.6025,477.1999,747.954]},{"id":"encounter-33402","name":"Runok Wildmane","position":[1690.9863,466.3144,764.8269]},{"id":"encounter-338","name":"Argent Champion","position":[1823.4473,455.4289,788.506]},{"id":"encounter-340","name":"The Black Knight","position":[1952.7288,444.5434,807.505]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150063,"id":196398,"map":650,"orientation":-1.3439,"phaseMask":1,"position_x":801.663,"position_y":624.806,"position_z":412.344,"rotation0":0,"rotation1":0,"rotation2":-0.622513,"rotation3":0.782609,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150064,"id":196398,"map":650,"orientation":-0.715585,"phaseMask":1,"position_x":784.533,"position_y":660.238,"position_z":412.389,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150065,"id":196398,"map":650,"orientation":0.698132,"phaseMask":1,"position_x":710.325,"position_y":660.708,"position_z":412.387,"rotation0":0,"rotation1":0,"rotation2":0.34202,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150066,"id":196398,"map":650,"orientation":1.85005,"phaseMask":1,"position_x":692.127,"position_y":610.575,"position_z":412.347,"rotation0":0,"rotation1":0,"rotation2":0.798636,"rotation3":0.601815,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150067,"id":195477,"map":650,"orientation":0,"phaseMask":1,"position_x":813.13,"position_y":617.632,"position_z":413.039,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150068,"id":195486,"map":650,"orientation":0,"phaseMask":1,"position_x":813.12,"position_y":617.59,"position_z":413.031,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150069,"id":195481,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.156,"position_y":549.464,"position_z":412.881,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150070,"id":195480,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.156,"position_y":549.464,"position_z":412.881,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150071,"id":195479,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.156,"position_y":549.464,"position_z":412.881,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150072,"id":195478,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.156,"position_y":549.464,"position_z":412.881,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150073,"id":195648,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.646,"position_y":556.925,"position_z":412.412,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150074,"id":195649,"map":650,"orientation":3.14159,"phaseMask":1,"position_x":685.51,"position_y":618.055,"position_z":412.412,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150075,"id":195485,"map":650,"orientation":0,"phaseMask":1,"position_x":844.685,"position_y":623.408,"position_z":159.109,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150076,"id":195650,"map":650,"orientation":3.14159,"phaseMask":1,"position_x":807.839,"position_y":618.055,"position_z":412.412,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150077,"id":195647,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.698,"position_y":677.469,"position_z":412.339,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150078,"id":180723,"map":650,"orientation":-2.35619,"phaseMask":1,"position_x":779.951,"position_y":655.656,"position_z":421.818,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150079,"id":180723,"map":650,"orientation":2.25147,"phaseMask":1,"position_x":782.309,"position_y":582.892,"position_z":421.546,"rotation0":0,"rotation1":0,"rotation2":0.902584,"rotation3":0.430513,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150082,"id":180708,"map":650,"orientation":-0.767944,"phaseMask":1,"position_x":712.521,"position_y":655.648,"position_z":424.593,"rotation0":0,"rotation1":0,"rotation2":-0.374606,"rotation3":0.927184,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150083,"id":180708,"map":650,"orientation":0.436332,"phaseMask":1,"position_x":704.793,"position_y":600.736,"position_z":429.519,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150084,"id":180708,"map":650,"orientation":-0.418879,"phaseMask":1,"position_x":704.302,"position_y":636.326,"position_z":425.136,"rotation0":0,"rotation1":0,"rotation2":-0.207912,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150085,"id":180703,"map":650,"orientation":-0.767944,"phaseMask":1,"position_x":712.521,"position_y":655.648,"position_z":424.593,"rotation0":0,"rotation1":0,"rotation2":-0.374606,"rotation3":0.927184,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150086,"id":180703,"map":650,"orientation":0.715585,"phaseMask":1,"position_x":714.158,"position_y":585.533,"position_z":425.579,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150087,"id":180703,"map":650,"orientation":0.436332,"phaseMask":1,"position_x":704.793,"position_y":600.736,"position_z":429.519,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150088,"id":180730,"map":650,"orientation":0.715585,"phaseMask":1,"position_x":714.158,"position_y":585.533,"position_z":425.579,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150089,"id":180730,"map":650,"orientation":0.436332,"phaseMask":1,"position_x":704.793,"position_y":600.736,"position_z":429.519,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150090,"id":180736,"map":650,"orientation":2.70526,"phaseMask":1,"position_x":792.309,"position_y":598.457,"position_z":424.636,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150091,"id":180736,"map":650,"orientation":-2.77507,"phaseMask":1,"position_x":794.441,"position_y":638.306,"position_z":425.7,"rotation0":0,"rotation1":0,"rotation2":-0.983255,"rotation3":0.182237,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150092,"id":180736,"map":650,"orientation":-2.35619,"phaseMask":1,"position_x":779.951,"position_y":655.656,"position_z":421.818,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150093,"id":180736,"map":650,"orientation":2.25147,"phaseMask":1,"position_x":782.309,"position_y":582.892,"position_z":421.546,"rotation0":0,"rotation1":0,"rotation2":0.902584,"rotation3":0.430513,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150094,"id":180720,"map":650,"orientation":-2.35619,"phaseMask":1,"position_x":779.951,"position_y":655.656,"position_z":421.818,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150095,"id":180720,"map":650,"orientation":2.25147,"phaseMask":1,"position_x":782.309,"position_y":582.892,"position_z":421.546,"rotation0":0,"rotation1":0,"rotation2":0.902584,"rotation3":0.430513,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150096,"id":180738,"map":650,"orientation":-2.77507,"phaseMask":1,"position_x":794.441,"position_y":638.306,"position_z":425.7,"rotation0":0,"rotation1":0,"rotation2":-0.983255,"rotation3":0.182237,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150097,"id":180738,"map":650,"orientation":2.25147,"phaseMask":1,"position_x":782.309,"position_y":582.892,"position_z":421.546,"rotation0":0,"rotation1":0,"rotation2":0.902584,"rotation3":0.430513,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150098,"id":180728,"map":650,"orientation":-0.418879,"phaseMask":1,"position_x":704.302,"position_y":636.326,"position_z":425.136,"rotation0":0,"rotation1":0,"rotation2":-0.207912,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150099,"id":180728,"map":650,"orientation":0.715585,"phaseMask":1,"position_x":714.158,"position_y":585.533,"position_z":425.579,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150100,"id":180728,"map":650,"orientation":-0.767944,"phaseMask":1,"position_x":712.521,"position_y":655.648,"position_z":424.593,"rotation0":0,"rotation1":0,"rotation2":-0.374606,"rotation3":0.927184,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/trial-of-the-champion/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["5/5 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"pit-of-saron","title":"Pit of Saron","mapId":658,"lfgDungeonIds":[253,254],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[80,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Pit of Saron","theme":"Open-world expedition","summary":"Fight through Pit of Saron, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Pit of Saron...","unchartedAreaName":"Uncharted Pit of Saron","background":"#081016","fog":{"color":"#0a141c","near":36,"far":578.7223},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/658-quarryoftears/visual.glb","checksum":"beb7c3581ce0f39ac8323160d801fa1f31703170e9264434f9f4c72308a2b55a","size":11556752,"triangleCount":731355}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-000.glb","checksum":"99799000a867a14422630d305ed6bb7943b353774325a73b85727245e2e04e4b","size":134484,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-001.glb","checksum":"45392336c8a338ea436170665e5815d56b710c149575a3709929193a734002e9","size":183700,"triangleCount":66962},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-002.glb","checksum":"b9ffc463e825eecc879c2c8303f43ca5800c4a2969b5b367dac96c4f5b864371","size":171148,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-003.glb","checksum":"ce23f687d1af7e3e9714462ac78a1a7450324ad0faa083ba211aa13701667cf6","size":781236,"triangleCount":54645},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-004.glb","checksum":"db89e660bca5897af3c3905a873e6fab2cdec25b44c18533e21083809ed25a3b","size":585860,"triangleCount":95056},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-005.glb","checksum":"fde33d9adef84ecb479f0deda42459b1e259ae3d6baeaa8f7b9ed0dcd3a5ba30","size":356656,"triangleCount":81682},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-006.glb","checksum":"6bd6d0baa49e5176bb095e28e71f5c5fb51f2f5634359944facbbadcfe5478cf","size":152144,"triangleCount":65538},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-007.glb","checksum":"e42824d1e52da4f01425e64d63859ce3b3a1fd54a5e1532e7d72a3e62b29e035","size":167476,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-008.glb","checksum":"dab6cc30b32927eb49fdd9e68386bcbffb23b4413ef5824e79ac79e2e257d06e","size":348396,"triangleCount":77521},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-009.glb","checksum":"d317a5fb237d84ea089c9cb51210871b09f80f90be368bafc7999caee4b7d950","size":171128,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/658-quarryoftears/navigation.glb","checksum":"4059475cc89b10d61729778113445c3e9835257d310bfa1f04be624a94b5d2eb","size":3089960,"triangleCount":250921}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-329.0333,515.8075,200.1393],"max":[377.6897,752.3305,1003.9203]},"entrance":{"name":"Pit of Saron Entrance","footPosition":[212.1667,627.1195,315.5733],"forward":[-0.7141621806585419,0,0.6999802709484292],"yaw":-0.7954264560081025},"areas":[{"id":"entrance","name":"Pit of Saron Entrance","center":[212.1667,627.1195,315.5733],"radius":35},{"id":"area-forgemaster-garfrost","name":"Forgemaster Garfrost's Encounter","center":[-215.9473,625.4765,591.9673],"radius":42},{"id":"area-krick","name":"Krick's Encounter","center":[123.2817,608.4395,732.6793],"radius":42},{"id":"area-overlrod-tyrannus","name":"Overlrod Tyrannus's Encounter","center":[-283.834,613.7695,689.5021],"radius":42}],"entities":{"entry-36881":{"id":"entry-36881","kind":"mob","name":"Skeletal Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-9785-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-36764":{"id":"entry-36764","kind":"mob","name":"Alliance Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30368-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-36830":{"id":"entry-36830","kind":"mob","name":"Wrathbone Laborer","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30364-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1084,"labelHeight":7.7862,"markerRadius":1.5558}}},"entry-36770":{"id":"entry-36770","kind":"mob","name":"Horde Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30380-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-36771":{"id":"entry-36771","kind":"mob","name":"Horde Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30384-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0534,"labelHeight":2.7321,"markerRadius":0.6724}}},"entry-36886":{"id":"entry-36886","kind":"mob","name":"Geist Ambusher","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-26577-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":6.464,"markerRadius":0.8562}}},"entry-36772":{"id":"entry-36772","kind":"mob","name":"Horde Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-36896":{"id":"entry-36896","kind":"mob","name":"Stonespine Gargoyle","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30403-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.3876,"labelHeight":8.6859,"markerRadius":4.5}}},"entry-36879":{"id":"entry-36879","kind":"mob","name":"Plagueborn Horror","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-23681-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":7.5227,"markerRadius":2.5418}}},"entry-36765":{"id":"entry-36765","kind":"mob","name":"Alliance Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30372-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.057,"markerRadius":0.65}}},"entry-36794":{"id":"entry-36794","kind":"mob","name":"Scourgelord Tyrannus","combat":{"level":82,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30277-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":4.7668,"markerRadius":0.9965}}},"entry-36907":{"id":"entry-36907","kind":"mob","name":"Wrathbone Siegesmith","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30401-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0034,"labelHeight":4.1787,"markerRadius":0.65}}},"entry-36877":{"id":"entry-36877","kind":"mob","name":"Wrathbone Skeleton","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30363-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.1482,"markerRadius":0.65}}},"entry-36767":{"id":"entry-36767","kind":"mob","name":"Alliance Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30376-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-36841":{"id":"entry-36841","kind":"mob","name":"Fallen Warrior","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30350-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0722,"labelHeight":5.1908,"markerRadius":1.0372}}},"entry-36788":{"id":"entry-36788","kind":"mob","name":"Deathwhisper Necrolyte","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30540","name":"Summon Visual","spellId":30540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6599,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-22196-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":5.2627,"markerRadius":1.0788}}},"entry-37711":{"id":"entry-37711","kind":"mob","name":"Hungering Ghoul","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-24992-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.7604,"markerRadius":0.65}}},"entry-37713":{"id":"entry-37713","kind":"mob","name":"Deathwhisper Torturer","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30851-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0183,"labelHeight":4.9055,"markerRadius":0.8598}}},"entry-37712":{"id":"entry-37712","kind":"mob","name":"Deathwhisper Shadowcaster","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30848-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.5086,"markerRadius":0.65}}},"entry-36891":{"id":"entry-36891","kind":"mob","name":"Iceborn Proto-Drake","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.07936,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-26742-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.101,"labelHeight":8.1267,"markerRadius":4.5}}},"entry-36494":{"id":"entry-36494","kind":"boss","name":"Forgemaster Garfrost","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-70326","name":"Permafrost","spellId":70326,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4925,"damageMultiplier":1.35},{"id":"spell-68771","name":"Thundering Stomp","spellId":68771,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4925,"damageMultiplier":0.82,"radius":11},{"id":"spell-68774","name":"Forge Frozen Blade","spellId":68774,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4925,"damageMultiplier":1.35},{"id":"spell-68785","name":"Forge Frostborn Mace","spellId":68785,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4925,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30843-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":29.465,"markerRadius":4.5}}},"entry-36874":{"id":"entry-36874","kind":"mob","name":"Disturbed Glacial Revenant","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-29100-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":14.0637,"markerRadius":4.5}}},"entry-36773":{"id":"entry-36773","kind":"mob","name":"Horde Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30388-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.5884,"markerRadius":0.65}}},"entry-36476":{"id":"entry-36476","kind":"boss","name":"Ick","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.126976,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-68987","name":"Pursuit","spellId":68987,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7487,"damageMultiplier":1.35},{"id":"spell-69024","name":"Toxic Waste","spellId":69024,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-69021","name":"Mighty Kick","spellId":69021,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.35},{"id":"spell-69028","name":"Shadow Bolt","spellId":69028,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30347-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":10.0303,"markerRadius":3.3891}}},"entry-37728":{"id":"entry-37728","kind":"mob","name":"Wrathbone Sorcerer","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30363-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.1482,"markerRadius":0.65}}},"entry-36766":{"id":"entry-36766","kind":"mob","name":"Alliance Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30374-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-36889":{"id":"entry-36889","kind":"mob","name":"Rescued Horde Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-36888":{"id":"entry-36888","kind":"mob","name":"Rescued Alliance Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30368-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-36990":{"id":"entry-36990","kind":"mob","name":"Lady Sylvanas Windrunner","combat":{"level":83,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30540","name":"Summon Visual","spellId":30540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6548,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/2f647f35e19834a4011cce123d60bb361a8df5a9c24ed292fd7a1c56c0fad704.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.741,"markerRadius":0.65}}},"entry-36658":{"id":"entry-36658","kind":"boss","name":"Scourgelord Tyrannus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.8228480000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-69155","name":"Forceful Smash","spellId":69155,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-69167","name":"Unholy Power","spellId":69167,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-69172","name":"Overlord's Brand","spellId":69172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30277-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":4.7668,"markerRadius":0.9965}}}},"staticSpawns":[{"id":"creature-42160","entityId":"entry-36881","position":[175.8577,608.5685,472.8053],"yaw":0,"spawnMask":3},{"id":"creature-201797","entityId":"entry-36881","position":[137.1687,613.6805,439.0573],"yaw":-2.32129,"spawnMask":3},{"id":"creature-201798","entityId":"entry-36764","position":[165.9017,609.5985,600.5853],"yaw":-4.90438,"spawnMask":3},{"id":"creature-201805","entityId":"entry-36770","position":[246.8557,607.5005,454.9123],"yaw":-4.85202,"spawnMask":3},{"id":"creature-201806","entityId":"entry-36881","position":[142.0467,612.4865,446.0903],"yaw":-2.61799,"spawnMask":3},{"id":"creature-201807","entityId":"entry-36770","position":[-46.2463,584.4745,570.9623],"yaw":-4.67748,"spawnMask":3},{"id":"creature-201813","entityId":"entry-36771","position":[168.5107,606.4135,556.1203],"yaw":-0.139626,"spawnMask":3},{"id":"creature-201815","entityId":"entry-36886","position":[-21.6716,645.0875,764.6983],"yaw":-2.37365,"spawnMask":3},{"id":"creature-201816","entityId":"entry-36770","position":[197.9047,608.0615,467.8073],"yaw":-2.93215,"spawnMask":3},{"id":"creature-201817","entityId":"entry-36830","position":[72.6061,624.0295,432.6413],"yaw":-4.15388,"spawnMask":3},{"id":"creature-201818","entityId":"entry-36772","position":[-14.3262,611.0955,487.0473],"yaw":-4.81711,"spawnMask":3},{"id":"creature-201819","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-201820","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-2.17721,"spawnMask":3},{"id":"creature-201823","entityId":"entry-36771","position":[148.8427,609.7555,605.8073],"yaw":-1.11701,"spawnMask":3},{"id":"creature-201833","entityId":"entry-36879","position":[87.8934,610.9035,657.0403],"yaw":-0.255449,"spawnMask":3},{"id":"creature-201839","entityId":"entry-36765","position":[-59.1109,605.9175,563.7503],"yaw":-3.35103,"spawnMask":3},{"id":"creature-201845","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.89692,"spawnMask":3},{"id":"creature-201851","entityId":"entry-36794","position":[226.1807,646.4105,402.1803],"yaw":-3.14,"spawnMask":3},{"id":"creature-201855","entityId":"entry-36907","position":[-171.1963,625.9225,603.3773],"yaw":-4.52473,"spawnMask":3},{"id":"creature-201857","entityId":"entry-36771","position":[-95.3123,611.2405,633.9983],"yaw":-0.069813,"spawnMask":3},{"id":"creature-201861","entityId":"entry-36770","position":[-107.2653,611.4305,629.9793],"yaw":-5.77704,"spawnMask":3},{"id":"creature-201865","entityId":"entry-36830","position":[43.9221,549.3925,565.6083],"yaw":-3.40339,"spawnMask":3},{"id":"creature-201871","entityId":"entry-36877","position":[-69.8929,731.4895,929.8303],"yaw":-4.36332,"spawnMask":3},{"id":"creature-201873","entityId":"entry-36767","position":[8.4829,545.3175,581.3963],"yaw":-1.48353,"spawnMask":3},{"id":"creature-201876","entityId":"entry-36841","position":[-30.097,732.2895,941.9803],"yaw":-4.43314,"spawnMask":3},{"id":"creature-201884","entityId":"entry-36881","position":[133.8317,613.3405,438.4983],"yaw":-2.23402,"spawnMask":3},{"id":"creature-201888","entityId":"entry-36788","position":[247.6097,627.2025,377.1493],"yaw":-6.24828,"spawnMask":3},{"id":"creature-201889","entityId":"entry-36877","position":[-122.0703,722.2365,898.9103],"yaw":-3.7001,"spawnMask":3},{"id":"creature-201897","entityId":"entry-36830","position":[184.4497,609.9565,590.3653],"yaw":-0.802851,"spawnMask":3},{"id":"creature-201899","entityId":"entry-36764","position":[72.2884,589.7935,564.3133],"yaw":-1.22173,"spawnMask":3},{"id":"creature-201900","entityId":"entry-37711","position":[208.6757,605.6185,495.1033],"yaw":-2.21657,"spawnMask":3},{"id":"creature-201901","entityId":"entry-36830","position":[-12.3852,574.4925,630.3443],"yaw":-2.09439,"spawnMask":3},{"id":"creature-201903","entityId":"entry-36879","position":[132.0577,608.1105,670.0513],"yaw":-0.202483,"spawnMask":3},{"id":"creature-201905","entityId":"entry-36771","position":[-59.7602,611.0825,512.4173],"yaw":-2.77507,"spawnMask":3},{"id":"creature-201914","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.89679,"spawnMask":3},{"id":"creature-201917","entityId":"entry-36764","position":[158.0887,609.8085,617.6863],"yaw":-4.27606,"spawnMask":3},{"id":"creature-201920","entityId":"entry-36765","position":[53.1565,561.8545,628.6363],"yaw":-1.8326,"spawnMask":3},{"id":"creature-201921","entityId":"entry-37711","position":[217.3737,605.8015,501.5123],"yaw":-2.96706,"spawnMask":3},{"id":"creature-201926","entityId":"entry-36877","position":[-13.0521,732.0375,949.2203],"yaw":-4.53786,"spawnMask":3},{"id":"creature-201927","entityId":"entry-36907","position":[-174.7763,625.1825,537.4263],"yaw":-3.38594,"spawnMask":3},{"id":"creature-201932","entityId":"entry-36770","position":[-17.1682,611.0915,461.6953],"yaw":-2.77507,"spawnMask":3},{"id":"creature-201934","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-201939","entityId":"entry-36841","position":[-31.2585,731.8195,953.4303],"yaw":-4.60767,"spawnMask":3},{"id":"creature-201943","entityId":"entry-36770","position":[-70.8678,611.0815,516.0893],"yaw":-3.90954,"spawnMask":3},{"id":"creature-201945","entityId":"entry-36770","position":[276.8027,606.0005,510.0493],"yaw":-2.47837,"spawnMask":3},{"id":"creature-201946","entityId":"entry-36771","position":[-23.9824,611.1245,471.5003],"yaw":-5.61996,"spawnMask":3},{"id":"creature-201947","entityId":"entry-36830","position":[-119.3643,612.0195,525.5893],"yaw":-3.87463,"spawnMask":3},{"id":"creature-201949","entityId":"entry-36881","position":[145.3547,612.5405,447.9933],"yaw":-2.74017,"spawnMask":3},{"id":"creature-201952","entityId":"entry-36830","position":[-124.4583,611.1125,626.3463],"yaw":-5.93412,"spawnMask":3},{"id":"creature-201954","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-201956","entityId":"entry-36770","position":[167.7637,608.3485,452.1393],"yaw":-3.4383,"spawnMask":3},{"id":"creature-201957","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-2.12636,"spawnMask":3},{"id":"creature-201960","entityId":"entry-36881","position":[170.9297,608.0255,466.2853],"yaw":-5.29531,"spawnMask":3},{"id":"creature-201970","entityId":"entry-37713","position":[210.9587,605.7145,498.6443],"yaw":-2.77507,"spawnMask":3},{"id":"creature-201974","entityId":"entry-36772","position":[153.2297,609.8805,593.0003],"yaw":-0.20944,"spawnMask":3},{"id":"creature-201976","entityId":"entry-36886","position":[-35.1404,655.3055,723.7593],"yaw":-1.93731,"spawnMask":3},{"id":"creature-201980","entityId":"entry-37712","position":[115.5207,608.2555,508.6113],"yaw":-5.2709,"spawnMask":3},{"id":"creature-201981","entityId":"entry-36879","position":[73.6854,608.4185,685.6833],"yaw":-3.90664,"spawnMask":3},{"id":"creature-201982","entityId":"entry-36841","position":[-139.5033,714.2855,877.0833],"yaw":-2.72271,"spawnMask":3},{"id":"creature-201984","entityId":"entry-36772","position":[-15.722,577.6835,548.1293],"yaw":-1.88496,"spawnMask":3},{"id":"creature-201985","entityId":"entry-36830","position":[54.5002,608.2625,478.2383],"yaw":-3.08923,"spawnMask":3},{"id":"creature-201988","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.89679,"spawnMask":3},{"id":"creature-201990","entityId":"entry-36770","position":[-17.5762,607.9775,714.1463],"yaw":-4.01426,"spawnMask":3},{"id":"creature-201992","entityId":"entry-36494","position":[-215.9473,625.4765,591.9673],"yaw":-5.8679,"spawnMask":3},{"id":"creature-201994","entityId":"entry-36830","position":[246.3007,606.9865,518.7383],"yaw":-0.418879,"spawnMask":3},{"id":"creature-201998","entityId":"entry-36874","position":[-93.3019,731.2675,933.7203],"yaw":-4.2237,"spawnMask":2},{"id":"creature-202000","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-2.9192,"spawnMask":3},{"id":"creature-202013","entityId":"entry-36830","position":[43.9898,619.9105,459.4103],"yaw":-3.83972,"spawnMask":3},{"id":"creature-202015","entityId":"entry-36841","position":[-113.5763,728.2245,929.6003],"yaw":-4.10152,"spawnMask":3},{"id":"creature-202027","entityId":"entry-36907","position":[-232.1733,625.2115,569.8583],"yaw":-5.67232,"spawnMask":3},{"id":"creature-202028","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-3.50724,"spawnMask":3},{"id":"creature-202030","entityId":"entry-37711","position":[153.1057,609.0755,465.8653],"yaw":-1.91986,"spawnMask":3},{"id":"creature-202032","entityId":"entry-36830","position":[-28.531,535.8075,572.7993],"yaw":-4.43314,"spawnMask":3},{"id":"creature-202037","entityId":"entry-36773","position":[45.8804,578.4765,548.7283],"yaw":-2.84489,"spawnMask":3},{"id":"creature-202038","entityId":"entry-37711","position":[269.2307,604.8705,472.7743],"yaw":-2.58309,"spawnMask":3},{"id":"creature-202041","entityId":"entry-37713","position":[273.3227,604.6695,474.2743],"yaw":-3.08923,"spawnMask":3},{"id":"creature-202042","entityId":"entry-36476","position":[123.2817,608.4395,732.6793],"yaw":-3.26377,"spawnMask":3},{"id":"creature-202045","entityId":"entry-36877","position":[-52.255,732.3305,949.2003],"yaw":-4.5204,"spawnMask":3},{"id":"creature-202054","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.61811,"spawnMask":3},{"id":"creature-202057","entityId":"entry-36771","position":[-24.0796,580.9095,634.7403],"yaw":-4.55531,"spawnMask":3},{"id":"creature-202058","entityId":"entry-36772","position":[-12.2637,607.9775,695.3843],"yaw":-5.5676,"spawnMask":3},{"id":"creature-202059","entityId":"entry-36830","position":[89.285,555.2345,598.4793],"yaw":-3.71755,"spawnMask":3},{"id":"creature-202061","entityId":"entry-36772","position":[20.1738,611.1095,468.9463],"yaw":-2.07694,"spawnMask":3},{"id":"creature-202067","entityId":"entry-36771","position":[6.4152,587.9715,657.7833],"yaw":-6.03884,"spawnMask":3},{"id":"creature-202068","entityId":"entry-36877","position":[-88.9989,731.2385,948.7603],"yaw":-4.2237,"spawnMask":3},{"id":"creature-202070","entityId":"entry-36773","position":[-37.2706,602.6265,548.0833],"yaw":-3.01942,"spawnMask":3},{"id":"creature-202071","entityId":"entry-37712","position":[161.1287,607.9095,470.4133],"yaw":-3.19395,"spawnMask":3},{"id":"creature-202072","entityId":"entry-36907","position":[-212.3623,625.6985,597.6563],"yaw":-0.837758,"spawnMask":3},{"id":"creature-202076","entityId":"entry-36771","position":[210.4187,606.0425,541.1533],"yaw":-4.74729,"spawnMask":3},{"id":"creature-202079","entityId":"entry-36881","position":[144.6127,613.1225,445.4083],"yaw":-2.68781,"spawnMask":3},{"id":"creature-202082","entityId":"entry-36772","position":[-83.6664,611.0815,520.1413],"yaw":-3.68265,"spawnMask":3},{"id":"creature-202083","entityId":"entry-36886","position":[-31.4512,661.9495,762.2683],"yaw":-2.42601,"spawnMask":3},{"id":"creature-202084","entityId":"entry-36772","position":[64.1061,623.6335,439.1203],"yaw":-3.76991,"spawnMask":3},{"id":"creature-202085","entityId":"entry-36877","position":[-124.8603,726.1585,923.7403],"yaw":-3.59538,"spawnMask":3},{"id":"creature-202096","entityId":"entry-36770","position":[-5.5501,611.0915,461.4653],"yaw":-3.42085,"spawnMask":3},{"id":"creature-202097","entityId":"entry-36830","position":[-24.6282,607.8035,723.3683],"yaw":-4.43314,"spawnMask":3},{"id":"creature-202098","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-202099","entityId":"entry-36881","position":[182.8387,607.5255,468.5563],"yaw":-0.075408,"spawnMask":3},{"id":"creature-202105","entityId":"entry-37728","position":[49.2346,729.1205,951.0703],"yaw":-1.90241,"spawnMask":3},{"id":"creature-202107","entityId":"entry-37711","position":[116.7307,608.6245,513.3463],"yaw":-4.34587,"spawnMask":3},{"id":"creature-202108","entityId":"entry-36772","position":[191.8357,605.9155,527.3843],"yaw":-2.77507,"spawnMask":3},{"id":"creature-202112","entityId":"entry-36788","position":[143.2437,614.6195,439.4453],"yaw":-5.55015,"spawnMask":3},{"id":"creature-202118","entityId":"entry-36770","position":[182.1047,605.4205,517.3283],"yaw":-1.13446,"spawnMask":3},{"id":"creature-202119","entityId":"entry-36830","position":[-19.6074,611.3995,499.3533],"yaw":-3.7001,"spawnMask":3},{"id":"creature-202121","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-202122","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-2.17721,"spawnMask":3},{"id":"creature-202124","entityId":"entry-36773","position":[143.9347,606.2645,534.5633],"yaw":-1.01229,"spawnMask":3},{"id":"creature-202125","entityId":"entry-36881","position":[177.5397,608.0255,463.9833],"yaw":-5.6513,"spawnMask":3},{"id":"creature-202126","entityId":"entry-36773","position":[29.3058,610.6625,472.4203],"yaw":-2.56563,"spawnMask":3},{"id":"creature-202131","entityId":"entry-36773","position":[79.2294,571.3565,586.2523],"yaw":-1.91986,"spawnMask":3},{"id":"creature-202132","entityId":"entry-36877","position":[37.7698,728.2395,951.1003],"yaw":-4.95674,"spawnMask":3},{"id":"creature-202139","entityId":"entry-36770","position":[264.6047,607.5005,430.0303],"yaw":-3.50811,"spawnMask":3},{"id":"creature-202144","entityId":"entry-36773","position":[190.4477,609.0015,578.1773],"yaw":-4.38078,"spawnMask":3},{"id":"creature-202145","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.89679,"spawnMask":3},{"id":"creature-202151","entityId":"entry-36766","position":[45.0384,548.9715,606.3933],"yaw":-0.523599,"spawnMask":3},{"id":"creature-202152","entityId":"entry-37712","position":[214.0127,605.7835,501.3823],"yaw":-2.6529,"spawnMask":3},{"id":"creature-202156","entityId":"entry-36879","position":[116.2967,608.4475,740.3943],"yaw":-0.773846,"spawnMask":3},{"id":"creature-202158","entityId":"entry-36877","position":[-14.9645,731.1365,957.4103],"yaw":-4.45059,"spawnMask":3},{"id":"creature-202159","entityId":"entry-36907","position":[-191.4353,625.2585,526.4153],"yaw":-1.36186,"spawnMask":3},{"id":"creature-202163","entityId":"entry-36877","position":[92.6636,728.8235,937.9303],"yaw":-5.07441,"spawnMask":3},{"id":"creature-202165","entityId":"entry-36841","position":[99.7957,729.4725,949.7403],"yaw":-4.86947,"spawnMask":3},{"id":"creature-202166","entityId":"entry-36770","position":[-70.538,590.9315,601.0193],"yaw":-4.2586,"spawnMask":3},{"id":"creature-202174","entityId":"entry-36841","position":[-128.1193,714.6575,880.2303],"yaw":-3.40339,"spawnMask":3},{"id":"creature-202181","entityId":"entry-36773","position":[-99.2585,611.1105,526.1363],"yaw":-3.80482,"spawnMask":3},{"id":"creature-202182","entityId":"entry-36881","position":[137.0437,612.9865,441.8533],"yaw":-2.3911,"spawnMask":3},{"id":"creature-202183","entityId":"entry-36772","position":[220.8407,609.5905,563.6653],"yaw":-1.02974,"spawnMask":3},{"id":"creature-202184","entityId":"entry-36886","position":[-37.9477,647.2225,687.6653],"yaw":-1.93731,"spawnMask":3},{"id":"creature-202196","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-202199","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-2.13658,"spawnMask":3},{"id":"creature-202200","entityId":"entry-37728","position":[47.9256,729.0165,946.8303],"yaw":-2.02458,"spawnMask":3},{"id":"creature-202202","entityId":"entry-36773","position":[-61.1873,609.9825,638.5733],"yaw":-5.72468,"spawnMask":3},{"id":"creature-202203","entityId":"entry-36881","position":[173.9257,608.0255,464.2483],"yaw":-5.37707,"spawnMask":3},{"id":"creature-202204","entityId":"entry-37711","position":[164.0857,608.2075,466.9623],"yaw":-4.69494,"spawnMask":3},{"id":"creature-202211","entityId":"entry-37713","position":[155.9867,608.1275,468.9383],"yaw":-3.01942,"spawnMask":3},{"id":"creature-202212","entityId":"entry-36877","position":[34.0603,728.2105,958.9203],"yaw":-4.60767,"spawnMask":3},{"id":"creature-202216","entityId":"entry-37713","position":[112.0797,608.4205,506.0423],"yaw":-6.17846,"spawnMask":3},{"id":"creature-202227","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.89679,"spawnMask":3},{"id":"creature-202229","entityId":"entry-36772","position":[-80.7341,611.0935,633.2293],"yaw":-0.10472,"spawnMask":3},{"id":"creature-202232","entityId":"entry-37711","position":[108.1807,608.8355,505.2453],"yaw":-0.471239,"spawnMask":3},{"id":"creature-202233","entityId":"entry-37712","position":[276.2797,604.6595,474.1623],"yaw":-3.22886,"spawnMask":3},{"id":"creature-202236","entityId":"entry-36879","position":[116.7897,607.9065,706.1203],"yaw":-4.91328,"spawnMask":3},{"id":"creature-202238","entityId":"entry-36907","position":[-234.8433,625.2115,566.7283],"yaw":-5.51524,"spawnMask":3},{"id":"creature-202244","entityId":"entry-36771","position":[6.3648,611.0845,466.5573],"yaw":-3.35103,"spawnMask":3},{"id":"creature-202246","entityId":"entry-36877","position":[95.8975,729.4855,950.2003],"yaw":-4.9102,"spawnMask":3},{"id":"creature-202248","entityId":"entry-36841","position":[95.66,729.1915,939.0003],"yaw":-4.93928,"spawnMask":3},{"id":"creature-202249","entityId":"entry-36773","position":[6.0714,608.1305,764.1653],"yaw":-1.16937,"spawnMask":3},{"id":"creature-202256","entityId":"entry-36766","position":[17.8197,583.9825,545.7743],"yaw":-5.8294,"spawnMask":3},{"id":"creature-202257","entityId":"entry-36841","position":[-104.5463,728.4485,921.9903],"yaw":-3.89208,"spawnMask":3},{"id":"creature-202260","entityId":"entry-36770","position":[77.2537,626.1485,426.6163],"yaw":-3.66519,"spawnMask":3},{"id":"creature-202264","entityId":"entry-36771","position":[89.3145,623.8725,428.2333],"yaw":-2.75762,"spawnMask":3},{"id":"creature-202265","entityId":"entry-36877","position":[-52.9597,731.9215,935.5103],"yaw":-4.60767,"spawnMask":3},{"id":"creature-202269","entityId":"entry-36771","position":[-112.3973,611.8215,527.2033],"yaw":-2.70526,"spawnMask":3},{"id":"creature-202271","entityId":"entry-36771","position":[-11.5901,608.1515,745.9833],"yaw":-5.46288,"spawnMask":3},{"id":"creature-202275","entityId":"entry-36772","position":[-18.005,607.8825,735.9603],"yaw":-5.32325,"spawnMask":3},{"id":"creature-202276","entityId":"entry-36886","position":[-29.4251,627.4255,703.6303],"yaw":-1.76278,"spawnMask":3},{"id":"creature-202278","entityId":"entry-36770","position":[-44.1612,578.3735,601.8253],"yaw":-5.35816,"spawnMask":3},{"id":"creature-202279","entityId":"entry-36889","position":[-35.9963,606.7705,652.1073],"yaw":-3.91,"spawnMask":3},{"id":"creature-202280","entityId":"entry-36889","position":[-37.9263,606.7705,653.6003],"yaw":-3.91,"spawnMask":3},{"id":"creature-202281","entityId":"entry-36788","position":[198.6527,627.2055,376.6653],"yaw":0,"spawnMask":3},{"id":"creature-202282","entityId":"entry-36881","position":[180.8017,607.9005,465.5603],"yaw":-6.18504,"spawnMask":3},{"id":"creature-202283","entityId":"entry-36889","position":[-33.7063,606.7705,650.3203],"yaw":-3.91,"spawnMask":3},{"id":"creature-202284","entityId":"entry-36889","position":[-31.6063,606.7705,648.6903],"yaw":-3.91,"spawnMask":3},{"id":"creature-202285","entityId":"entry-36888","position":[-35.9963,606.7705,652.1073],"yaw":-3.91,"spawnMask":3},{"id":"creature-202286","entityId":"entry-36888","position":[-37.9263,606.7705,653.6003],"yaw":-3.91,"spawnMask":3},{"id":"creature-202287","entityId":"entry-36888","position":[-33.7063,606.7705,650.3203],"yaw":-3.91,"spawnMask":3},{"id":"creature-202288","entityId":"entry-36888","position":[-31.6063,606.7705,648.6903],"yaw":-3.91,"spawnMask":3},{"id":"creature-1972267","entityId":"entry-36990","position":[211.9137,627.2105,304.2903],"yaw":0,"spawnMask":3},{"id":"encounter-837","entityId":"entry-36658","position":[-283.834,613.7695,689.5021],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-201800","name":"Wrathbone Laborer Patrol","speed":1.15,"pathId":2018000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[188.6687,608.0835,464.2503],[193.7187,608.1505,463.5043],[193.7187,608.1505,463.5043],[193.7187,608.1505,463.5043],[193.7187,608.1505,463.5043],[190.0157,607.2715,473.9083],[191.2987,606.0685,484.8113],[191.0997,605.9315,497.6743],[186.5817,607.0385,512.9903],[186.5817,607.0385,512.9903],[190.7247,606.1815,504.1773],[189.6777,605.8065,493.1533],[189.4047,605.8065,484.3463],[187.2017,607.3885,473.8143],[188.6687,608.0835,464.2503]],"members":[{"id":"member","entityId":"entry-36830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201822","name":"Stonespine Gargoyle Patrol","speed":1.15,"pathId":2018220,"formationSource":"database-solo","spawnMask":3,"waypoints":[[252.7297,660.2915,751.1253],[250.2887,660.2915,788.1773],[291.4587,660.2915,794.8073],[292.5857,660.2915,742.6083],[278.6717,660.2915,720.4413],[227.9827,660.2915,706.4013],[174.1117,660.2915,713.3753],[116.3597,660.2915,720.7833],[96.2207,660.2915,695.8633],[119.8557,660.2915,653.4413],[175.2817,660.2915,580.1323],[223.4347,660.2915,551.8543],[266.0557,660.2915,590.0683],[287.1977,660.2915,686.6893]],"members":[{"id":"member","entityId":"entry-36896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201824","name":"Stonespine Gargoyle Patrol","speed":1.15,"pathId":2018240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[62.9071,604.0225,566.1183],[81.1853,593.6465,588.2393],[80.5166,602.0365,608.0303],[73.4794,618.1585,634.1483],[54.1097,618.9965,652.9823],[26.5558,630.5325,651.9313],[1.4703,630.6845,637.2823],[-30.0596,596.5425,605.8423],[-36.0411,609.5215,583.0683],[-19.5747,620.1355,555.0753],[8.005,619.9815,545.0963]],"members":[{"id":"member","entityId":"entry-36896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201834","name":"Stonespine Gargoyle Patrol","speed":1.15,"pathId":2018340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[186.8957,679.9095,290.7973],[207.3217,679.9095,293.0753],[230.5107,679.9095,290.5123],[278.1977,679.9095,245.1393],[301.8407,679.9095,258.0043],[294.6637,679.9095,289.8803],[289.5487,679.9095,319.1103],[239.7867,679.9095,357.0493],[182.9637,679.9095,353.7623],[140.4287,679.9095,349.2193],[121.4677,679.9095,309.4653],[142.7777,679.9095,287.2363]],"members":[{"id":"member","entityId":"entry-36896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201838","name":"Stonespine Gargoyle Patrol","speed":1.15,"pathId":2018380,"formationSource":"database-solo","spawnMask":3,"waypoints":[[136.7307,722.0225,753.6133],[139.0277,720.8555,752.7343],[171.0937,689.7725,768.6223],[209.5997,689.7725,741.1373],[254.3097,689.7725,710.3213],[277.3947,689.7725,660.3143],[272.2177,689.7725,612.5073],[265.0297,689.7725,563.7333],[284.5467,651.9105,492.1673],[302.9397,651.9105,434.6463],[308.8157,651.9105,377.9323],[229.7707,651.9105,350.2473],[174.9677,651.9105,333.8393],[126.9347,681.5215,372.2593],[121.3887,681.5215,431.0903],[126.1077,681.5215,527.3873],[130.6787,681.5215,646.0523],[42.0922,681.5215,709.2383],[-53.2793,681.5215,626.5403],[-77.5692,681.5215,543.0683],[3.1235,681.5215,498.4693],[89.0297,681.5215,521.6863],[115.4397,681.5215,673.9973]],"members":[{"id":"member","entityId":"entry-36896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201846","name":"Stonespine Gargoyle Patrol","speed":1.15,"pathId":2018460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[23.0627,666.7375,630.6723],[-50.472,666.7375,635.2973],[-93.6595,666.7375,614.5233],[-42.222,666.7375,542.2333],[19.5384,666.7375,514.7903],[57.8874,666.7375,498.9273],[79.8405,666.7375,449.4793],[136.4677,666.7375,354.7193],[173.2707,666.7375,307.3963],[237.3957,666.7375,279.4243],[271.3227,666.7375,296.6413],[280.9027,666.7375,322.7073],[286.7067,666.7375,352.7683],[320.9167,666.7375,394.8983],[332.6897,666.7375,426.8843],[286.0817,666.7375,484.8593],[183.8287,666.7375,553.7473]],"members":[{"id":"member","entityId":"entry-36896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201991","name":"Iceborn Proto-Drake Patrol","speed":1.15,"pathId":2019910,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-80.1508,612.2485,541.0073],[-62.2654,612.2095,531.1793],[-45.7376,612.2095,524.9643],[-20.4425,612.2745,513.9383],[-45.7376,612.2095,524.9643],[-62.2654,612.2095,531.1793],[-80.1508,612.2485,541.0073],[-100.8543,612.2485,559.0513]],"members":[{"id":"member","entityId":"entry-36891","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202063","name":"Deathwhisper Necrolyte Patrol","speed":1.15,"pathId":2020630,"formationSource":"database-solo","spawnMask":3,"waypoints":[[229.4827,606.4705,511.6533],[215.0207,606.6375,523.7033],[215.7177,606.2625,538.8443],[213.3367,607.2575,554.0143],[200.8197,606.8825,558.6303],[182.8227,606.3685,542.2943],[171.3177,606.1185,530.7243],[155.0107,606.3305,517.5593],[130.0177,608.8315,524.4693],[121.0577,610.3315,534.8203],[136.4067,611.1815,557.5753],[148.8767,606.3075,558.1153],[136.4067,611.1815,557.5753],[121.0577,610.3315,534.8203],[130.0177,608.8315,524.4693],[155.0107,606.3305,517.5593],[171.3177,606.1185,530.7243],[182.8227,606.3685,542.2943],[200.8197,606.8825,558.6303],[213.3367,607.2575,554.0143],[215.7177,606.2625,538.8443],[215.0207,606.6375,523.7033]],"members":[{"id":"member","entityId":"entry-36788","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202103","name":"Deathwhisper Necrolyte Patrol","speed":1.15,"pathId":2021030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[303.2887,606.0335,435.2283],[297.7447,605.3675,448.3203],[292.3027,604.7425,465.9783],[292.3547,604.7425,478.4133],[299.9677,605.3565,482.1743],[307.2937,606.1065,482.8873],[315.8667,606.8565,491.5543],[312.4377,606.6065,499.8983],[304.8407,606.7315,502.0143],[294.9617,606.2925,496.5143],[287.1827,605.4845,493.7543],[272.6357,606.0205,498.3473],[263.2397,606.3545,501.2753],[272.6357,606.0205,498.3473],[287.1827,605.4845,493.7543],[294.9617,606.2925,496.5143],[304.8407,606.7315,502.0143],[312.4377,606.5105,499.8983],[315.8667,606.8565,491.5543],[307.2937,606.0735,482.8873],[299.9677,605.2515,482.1743],[292.3547,604.7605,478.4133],[292.3027,604.7425,465.9783],[297.7447,605.3675,448.3203]],"members":[{"id":"member","entityId":"entry-36788","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202197","name":"Iceborn Proto-Drake Patrol","speed":1.15,"pathId":2021970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[0.4655,612.2595,506.3663],[18.5454,612.0095,499.1353],[32.1339,611.0095,495.0183],[47.2815,610.8465,495.3013],[62.2745,610.9715,497.4583],[76.7797,610.8595,501.1563],[62.2745,610.9715,497.4583],[47.2815,610.8465,495.3013],[32.1339,611.0095,495.0183],[18.5454,612.0095,499.1353]],"members":[{"id":"member","entityId":"entry-36891","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202231","name":"Deathwhisper Necrolyte Patrol","speed":1.15,"pathId":2022310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[175.2777,606.7755,475.8513],[157.4637,605.6235,485.0963],[146.0367,605.7485,484.2363],[131.1807,606.2265,472.1203],[117.9777,606.7265,457.2833],[103.4847,612.5605,442.9003],[89.1669,621.5835,437.6043],[77.4065,623.8335,440.7883],[77.4065,623.8335,440.7883],[69.1877,623.6855,450.8443],[77.4065,623.8335,440.7883],[89.1669,621.5835,437.6043],[103.4847,612.5605,442.9003],[117.9777,606.7265,457.2833],[131.1807,606.2265,472.1203],[146.0367,605.7485,484.2363],[157.4637,605.6235,485.0963],[175.2777,606.7755,475.8513]],"members":[{"id":"member","entityId":"entry-36788","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202273","name":"Deathwhisper Necrolyte Patrol","speed":1.15,"pathId":2022730,"formationSource":"database-solo","spawnMask":3,"waypoints":[[117.1947,606.4415,491.7683],[139.0537,604.9415,500.7833],[153.7067,605.7485,504.2153],[167.3767,605.8585,505.6623],[183.4327,606.1815,502.6673],[167.3767,605.8585,505.6623],[153.7067,605.7485,504.2153],[139.0537,604.9415,500.7833],[117.1947,606.4415,491.7683],[99.2303,608.4845,490.7133]],"members":[{"id":"member","entityId":"entry-36788","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-201992","name":"Forgemaster Garfrost","position":[-215.9473,625.4765,591.9673]},{"id":"creature-202042","name":"Krick","position":[123.2817,608.4395,732.6793]},{"id":"encounter-837","name":"Overlrod Tyrannus","position":[-283.834,613.7695,689.5021]}],"objectiveOrder":[{"id":"creature-201992","name":"Forgemaster Garfrost","position":[-215.9473,625.4765,591.9673]},{"id":"creature-202042","name":"Krick","position":[123.2817,608.4395,732.6793]},{"id":"encounter-837","name":"Overlrod Tyrannus","position":[-283.834,613.7695,689.5021]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":207,"id":201590,"map":658,"orientation":3.53903,"phaseMask":1,"position_x":637.954,"position_y":-209.544,"position_z":533.269,"rotation0":0,"rotation1":0,"rotation2":0.98032,"rotation3":-0.197413,"spawnMask":3,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":215,"id":201590,"map":658,"orientation":5.5732,"phaseMask":1,"position_x":726.268,"position_y":-237.654,"position_z":534.13,"rotation0":0,"rotation1":0,"rotation2":0.347583,"rotation3":-0.937649,"spawnMask":3,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":305,"id":201885,"map":658,"orientation":2.28638,"phaseMask":1,"position_x":932.267,"position_y":-80.6684,"position_z":591.676,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150195,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":724.438,"position_y":-140.052,"position_z":512.621,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150197,"id":201969,"map":658,"orientation":-3.01941,"phaseMask":1,"position_x":592.08,"position_y":-22.4306,"position_z":512.605,"rotation0":0,"rotation1":0,"rotation2":-0.998134,"rotation3":0.0610534,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150198,"id":201969,"map":658,"orientation":1.91986,"phaseMask":1,"position_x":637.587,"position_y":-70.7083,"position_z":512.642,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150199,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":839.693,"position_y":85.4531,"position_z":510.398,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150201,"id":201969,"map":658,"orientation":-2.70526,"phaseMask":1,"position_x":575.352,"position_y":248.378,"position_z":509.007,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150202,"id":201969,"map":658,"orientation":-2.63544,"phaseMask":1,"position_x":548.127,"position_y":90.8594,"position_z":525.021,"rotation0":0,"rotation1":0,"rotation2":-0.968147,"rotation3":0.250383,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150203,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":554.149,"position_y":264.531,"position_z":509.007,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150205,"id":201969,"map":658,"orientation":-2.79252,"phaseMask":1,"position_x":546.736,"position_y":78.5799,"position_z":527.68,"rotation0":0,"rotation1":0,"rotation2":-0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150208,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":468.238,"position_y":173.26,"position_z":528.706,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150211,"id":201969,"map":658,"orientation":-2.33874,"phaseMask":1,"position_x":855.941,"position_y":-16.5764,"position_z":509.491,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150213,"id":201592,"map":658,"orientation":-1.0821,"phaseMask":1,"position_x":837.733,"position_y":141.722,"position_z":509.508,"rotation0":0,"rotation1":0,"rotation2":-0.515036,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150215,"id":201969,"map":658,"orientation":-1.36136,"phaseMask":1,"position_x":752.821,"position_y":-94.8229,"position_z":512.716,"rotation0":0,"rotation1":0,"rotation2":-0.629322,"rotation3":0.777145,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150216,"id":201969,"map":658,"orientation":-0.523598,"phaseMask":1,"position_x":752.497,"position_y":-81.316,"position_z":512.603,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150219,"id":201969,"map":658,"orientation":3.08918,"phaseMask":1,"position_x":550.918,"position_y":265.731,"position_z":509.007,"rotation0":0,"rotation1":0,"rotation2":0.999657,"rotation3":0.0262033,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150220,"id":201969,"map":658,"orientation":0.017452,"phaseMask":1,"position_x":758.177,"position_y":-62.0313,"position_z":511.524,"rotation0":0,"rotation1":0,"rotation2":0.00872589,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150222,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":447.21,"position_y":262.74,"position_z":528.709,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150225,"id":201969,"map":658,"orientation":2.33874,"phaseMask":1,"position_x":655.58,"position_y":144.47,"position_z":507.822,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150226,"id":201969,"map":658,"orientation":-2.91469,"phaseMask":1,"position_x":646.318,"position_y":-97.9375,"position_z":512.605,"rotation0":0,"rotation1":0,"rotation2":-0.993571,"rotation3":0.113208,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150228,"id":201969,"map":658,"orientation":1.58825,"phaseMask":1,"position_x":648.649,"position_y":-112.335,"position_z":513.084,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150232,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":472.552,"position_y":136.938,"position_z":530.262,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150234,"id":201969,"map":658,"orientation":-2.32129,"phaseMask":1,"position_x":833.667,"position_y":-16.2899,"position_z":509.484,"rotation0":0,"rotation1":0,"rotation2":-0.91706,"rotation3":0.398748,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150235,"id":201848,"map":658,"orientation":-2.28516,"phaseMask":1,"position_x":1106.11,"position_y":251.749,"position_z":627.814,"rotation0":0,"rotation1":0,"rotation2":-0.909708,"rotation3":0.415249,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150236,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":815.474,"position_y":137.865,"position_z":509.377,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150239,"id":201969,"map":658,"orientation":-0.715585,"phaseMask":1,"position_x":749.285,"position_y":-107.773,"position_z":512.901,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150240,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":671.543,"position_y":-116.234,"position_z":512.695,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150241,"id":201969,"map":658,"orientation":2.65289,"phaseMask":1,"position_x":588.804,"position_y":199.064,"position_z":509.48,"rotation0":0,"rotation1":0,"rotation2":0.970294,"rotation3":0.241927,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150242,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":630.884,"position_y":275.889,"position_z":507.606,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150244,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":631.854,"position_y":294.524,"position_z":507.514,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150246,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":582.547,"position_y":-17.8663,"position_z":512.617,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150247,"id":201969,"map":658,"orientation":2.30383,"phaseMask":1,"position_x":699.583,"position_y":190.753,"position_z":510.857,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150248,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":655.708,"position_y":-137.531,"position_z":512.588,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150250,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":587.677,"position_y":5.81597,"position_z":512.588,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51666,"animprogress":255,"areaId":0,"guid":150251,"id":202392,"map":658,"orientation":1.55334,"phaseMask":1,"position_x":878.24,"position_y":24.6997,"position_z":498.52,"rotation0":0,"rotation1":0,"rotation2":0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150252,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":564.207,"position_y":178.653,"position_z":509.93,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150254,"id":201969,"map":658,"orientation":-0.977383,"phaseMask":1,"position_x":636.401,"position_y":182.17,"position_z":507.123,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150256,"id":202209,"map":658,"orientation":0,"phaseMask":1,"position_x":423.349,"position_y":212.451,"position_z":531.064,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150257,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":630,"position_y":268.547,"position_z":507.359,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150259,"id":201969,"map":658,"orientation":0.663223,"phaseMask":1,"position_x":676.191,"position_y":167.217,"position_z":507.966,"rotation0":0,"rotation1":0,"rotation2":0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150260,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":755.774,"position_y":-119.53,"position_z":512.688,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150261,"id":201969,"map":658,"orientation":-1.18682,"phaseMask":1,"position_x":864.655,"position_y":-11.4358,"position_z":509.657,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150262,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":569.375,"position_y":192.802,"position_z":509.854,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150264,"id":201969,"map":658,"orientation":-0.191985,"phaseMask":1,"position_x":883.674,"position_y":5.69097,"position_z":509.652,"rotation0":0,"rotation1":0,"rotation2":-0.0958451,"rotation3":0.995396,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150265,"id":201969,"map":658,"orientation":-0.855211,"phaseMask":1,"position_x":682.894,"position_y":220.568,"position_z":511.024,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150266,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":718.997,"position_y":125.872,"position_z":501.708,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150267,"id":201969,"map":658,"orientation":2.42601,"phaseMask":1,"position_x":560.273,"position_y":64.6684,"position_z":524.846,"rotation0":0,"rotation1":0,"rotation2":0.936673,"rotation3":0.350206,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150268,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":863.717,"position_y":99.6094,"position_z":510.408,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150270,"id":201969,"map":658,"orientation":-1.18682,"phaseMask":1,"position_x":814.389,"position_y":-12.2188,"position_z":509.484,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150271,"id":201969,"map":658,"orientation":-2.68781,"phaseMask":1,"position_x":661.503,"position_y":211.88,"position_z":507.633,"rotation0":0,"rotation1":0,"rotation2":-0.97437,"rotation3":0.22495,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150272,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":582.837,"position_y":196.997,"position_z":510.922,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150273,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":686.017,"position_y":175.748,"position_z":508.175,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150274,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":633.323,"position_y":-60.6597,"position_z":512.589,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51666,"animprogress":255,"areaId":0,"guid":150275,"id":202393,"map":658,"orientation":1.53589,"phaseMask":1,"position_x":728,"position_y":-122.156,"position_z":491.926,"rotation0":0,"rotation1":0,"rotation2":0.694657,"rotation3":0.719341,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150276,"id":201592,"map":658,"orientation":-2.72271,"phaseMask":1,"position_x":861.462,"position_y":138.559,"position_z":510.187,"rotation0":0,"rotation1":0,"rotation2":-0.978147,"rotation3":0.207914,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150278,"id":202210,"map":658,"orientation":0,"phaseMask":1,"position_x":423.349,"position_y":212.451,"position_z":531.064,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150279,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":582.417,"position_y":-6.21354,"position_z":512.597,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150280,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":893.722,"position_y":119.649,"position_z":508.609,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51666,"animprogress":255,"areaId":0,"guid":150281,"id":202391,"map":658,"orientation":1.30027,"phaseMask":1,"position_x":855.278,"position_y":68.934,"position_z":498.539,"rotation0":0,"rotation1":0,"rotation2":0.605293,"rotation3":0.796003,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150282,"id":201969,"map":658,"orientation":2.32129,"phaseMask":1,"position_x":608.422,"position_y":-13.6319,"position_z":512.602,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51666,"animprogress":255,"areaId":0,"guid":150283,"id":202394,"map":658,"orientation":1.53589,"phaseMask":1,"position_x":661.2,"position_y":-121.932,"position_z":491.615,"rotation0":0,"rotation1":0,"rotation2":0.694657,"rotation3":0.719341,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150284,"id":201592,"map":658,"orientation":1.25664,"phaseMask":1,"position_x":887.139,"position_y":112.799,"position_z":508.72,"rotation0":0,"rotation1":0,"rotation2":0.587786,"rotation3":0.809016,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150286,"id":201969,"map":658,"orientation":2.67035,"phaseMask":1,"position_x":573.201,"position_y":168.451,"position_z":509.855,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233447,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150287,"id":201969,"map":658,"orientation":1.309,"phaseMask":1,"position_x":631.651,"position_y":110.535,"position_z":510.694,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150288,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":850.455,"position_y":-23.4201,"position_z":509.15,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150290,"id":201969,"map":658,"orientation":1.71042,"phaseMask":1,"position_x":641.556,"position_y":-83.934,"position_z":512.588,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.65606,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150293,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":593.021,"position_y":28.6684,"position_z":512.291,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150295,"id":201592,"map":658,"orientation":1.67551,"phaseMask":1,"position_x":844.215,"position_y":92.8108,"position_z":510.385,"rotation0":0,"rotation1":0,"rotation2":0.743143,"rotation3":0.669133,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150297,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":590.087,"position_y":19.8438,"position_z":512.596,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150299,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":748.467,"position_y":147.703,"position_z":511.183,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150302,"id":201969,"map":658,"orientation":1.81514,"phaseMask":1,"position_x":648.74,"position_y":191.651,"position_z":507.575,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/pit-of-saron/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["30/30 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"halls-of-reflection","title":"Halls of Reflection","mapId":668,"lfgDungeonIds":[255,256],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[80,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Halls of Reflection","theme":"Open-world expedition","summary":"Fight through Halls of Reflection, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Halls of Reflection...","unchartedAreaName":"Uncharted Halls of Reflection","background":"#081016","fog":{"color":"#0a141c","near":36,"far":303.156},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/668-hallsofreflection/visual.glb","checksum":"af62f70fc494f215fd1a95043ccec4cba0720c9a3d880651e9e6635b3f8071b1","size":26758888,"triangleCount":1256758}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-000.glb","checksum":"f5147fe0f57d9a0aaf13977b379661eb13d30f07e501b25d951f632909403764","size":890892,"triangleCount":62151},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-001.glb","checksum":"ba9bc990ead1ed7e924f2a06c6f3316d73ddab372383cc4bf88a439025b66231","size":150316,"triangleCount":47968},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-002.glb","checksum":"50e13b85461bc87d8c24ed67015dc62aca044e29baca6ce49448f9546b24465e","size":444576,"triangleCount":86313},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-003.glb","checksum":"a2355f0342be59b88b856a68b178299ab6d3ad46ef3e9dba0e6238b3deb99f89","size":286804,"triangleCount":83700},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-004.glb","checksum":"0144681eb85a6cecaf6fb058c3e7a482d15e64f3ea57e809717d6db6d46028e1","size":351696,"triangleCount":60410},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-005.glb","checksum":"49289aa60495200dbba85c04494b401348455c32a0af7cc3ad2ff6865c0fda2f","size":196332,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-006.glb","checksum":"7266ca81445054d5b317df6ce6c02af322dfc0b976c184644a1b3fd0b81f0599","size":197580,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-007.glb","checksum":"7d60aab6a971167973d57adb0f5baae36dbf59189f1ce06b939d164caf0197fe","size":266440,"triangleCount":64896},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-008.glb","checksum":"94205540fcac6cc8f3fc844b261ba05a920a029a41ac940135df5fed05ed8bd6","size":315212,"triangleCount":68928},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-009.glb","checksum":"5c9f5aff516fcf4df90f01922287c896c4174293992859a8aa9ac1e4fee3fc82","size":594312,"triangleCount":88276},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-010.glb","checksum":"9d4d28d860c9f50f1defb5ed85a87f308f462c4e9a2d9b8d12b009cc12ecfa7b","size":489668,"triangleCount":82320},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-011.glb","checksum":"30a1f8f153c05e51702c90e9b62d91e15b4d0a8d7ad7354758fed6630157f4b2","size":195724,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-012.glb","checksum":"70de30385f5083c32a1414db03ba8f4f29518aae0c9222a9bac118956da28dbd","size":196256,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-013.glb","checksum":"6f954d2bf7910173a3f85cf20987edec386934b1fcac0790cba13ab8e114cd48","size":275996,"triangleCount":71238},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-014.glb","checksum":"96778438f975a33099055c8ee0345db6ababc7bcbd178815fd193323a4638810","size":199464,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-015.glb","checksum":"6a3864059198cc03202efacb4c559111ca2b25840664cb0ca8cd918f4a98a144","size":195248,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-016.glb","checksum":"cec357bfa6d3a6578c2efbfd2cfbba85ec1297f80c42680993c8904fa26420f1","size":194772,"triangleCount":65376}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/668-hallsofreflection/navigation.glb","checksum":"920d9a4655d818ea0fdc56a76bc9d033113e6bc2ec10f543629c3a5db1412f7c","size":5400024,"triangleCount":444731}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[1677.6128,132.9099,4044.4136],"max":[2098.6628,198.2269,4454.4936]},"entrance":{"name":"Halls of Reflection Entrance","footPosition":[1723.7328,152.9099,4095.7336],"forward":[0,0,1],"yaw":0},"areas":[{"id":"entrance","name":"Halls of Reflection Entrance","center":[1723.7328,152.9099,4095.7336],"radius":35},{"id":"area-falric","name":"Falric's Encounter","center":[1821.7828,154.5339,4140.8836],"radius":42},{"id":"area-marwyn","name":"Marwyn's Encounter","center":[1773.4728,154.5349,4192.0536],"radius":42}],"entities":{"entry-37779":{"id":"entry-37779","kind":"mob","name":"Dark Ranger Loralen","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/44ef1435e58e9a055208847ab1d1b47a8682800dabcece2619ff1ee417d7bf17.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6894,"markerRadius":0.65}}},"entry-37225":{"id":"entry-37225","kind":"mob","name":"Uther the Lightbringer","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.6479999999999997,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30821-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0012,"labelHeight":4.171,"markerRadius":0.8719}}},"entry-37226":{"id":"entry-37226","kind":"mob","name":"The Lich King","combat":{"level":83,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.4799999999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30721-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0107,"labelHeight":6.789,"markerRadius":1.5168}}},"entry-38112":{"id":"entry-38112","kind":"boss","name":"Falric","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-72422","name":"Quivering Strike","spellId":72422,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-72426","name":"Impending Despair","spellId":72426,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":11000,"damageMultiplier":1.35},{"id":"spell-72435","name":"Defiling Horror","spellId":72435,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4000,"damageMultiplier":0,"radius":11,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30972-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":5.9585,"markerRadius":1.2456}}},"entry-38113":{"id":"entry-38113","kind":"boss","name":"Marwyn","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-72360","name":"Obliterate","spellId":72360,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-72362","name":"Well of Corruption","spellId":72362,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-72363","name":"Corrupted Flesh","spellId":72363,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-72368","name":"Shared Suffering","spellId":72368,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30973-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":5.9585,"markerRadius":1.2456}}},"entry-36723":{"id":"entry-36723","kind":"mob","name":"Frostsworn General","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.096,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-69222","name":"Throw Shield","spellId":69222,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-69222","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30300-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1445,"labelHeight":10.3816,"markerRadius":2.0744}}},"entry-37068":{"id":"entry-37068","kind":"mob","name":"Spiritual Reflection","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-69933","name":"Baleful Strike","spellId":69933,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.12},{"id":"spell-69900","name":"Spirit Burst","spellId":69900,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6834,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-24653-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-36954":{"id":"entry-36954","kind":"mob","name":"The Lich King","combat":{"level":83,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7520000000000002,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-69780","name":"Remorseless Winter","spellId":69780,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6861,"damageMultiplier":1.12},{"id":"spell-70653","name":"Lich King Zap Player","spellId":70653,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6861,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30721-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0107,"labelHeight":6.789,"markerRadius":1.5168}}},"entry-37554":{"id":"entry-37554","kind":"mob","name":"Lady Sylvanas Windrunner","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-69410","name":"Soul Reaper","spellId":69410,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5455,"damageMultiplier":1.12},{"id":"spell-70190","name":"Evasion","spellId":70190,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5455,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30776-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3473,"markerRadius":0.65}}},"entry-26499":{"id":"entry-26499","kind":"mob","name":"Arthas","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6545,"damageMultiplier":1.12},{"id":"spell-51908","name":"Cosmetic - Shadowstep","spellId":51908,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6545,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/f410cbf05ee179af5e73862f00ce12a14c4be9e4c9e4fdad47f26c07e398993b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.7701,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-1971979","entityId":"entry-37779","position":[1722.6128,152.9929,4089.4136],"yaw":-0.820305,"spawnMask":3},{"id":"creature-1971980","entityId":"entry-37225","position":[1794.2628,154.6389,4164.5336],"yaw":-4.53786,"spawnMask":3},{"id":"creature-1971982","entityId":"entry-37226","position":[1853.7828,152.9929,4219.1836],"yaw":-3.94444,"spawnMask":3},{"id":"creature-1971983","entityId":"entry-38112","position":[1821.7828,154.5339,4140.8836],"yaw":-5.48939,"spawnMask":3},{"id":"creature-1971984","entityId":"entry-38113","position":[1773.4728,154.5349,4192.0536],"yaw":-2.33994,"spawnMask":3},{"id":"creature-1972019","entityId":"entry-36723","position":[1907.5928,152.9099,4270.6436],"yaw":-3.95015,"spawnMask":3},{"id":"creature-1972020","entityId":"entry-37068","position":[1906.8128,161.6149,4234.4136],"yaw":0,"spawnMask":3},{"id":"creature-1972021","entityId":"entry-37068","position":[1908.0528,161.6149,4306.7236],"yaw":-3.14,"spawnMask":3},{"id":"creature-1972022","entityId":"entry-37068","position":[1943.6428,161.6149,4269.7136],"yaw":-4.71,"spawnMask":3},{"id":"creature-1972023","entityId":"entry-37068","position":[1871.4028,161.6149,4271.1236],"yaw":-1.57,"spawnMask":3},{"id":"creature-1972024","entityId":"entry-37068","position":[1925.9128,161.6149,4238.7636],"yaw":-5.75,"spawnMask":3},{"id":"creature-1972025","entityId":"entry-36954","position":[2053.6628,178.2269,4409.4936],"yaw":-4.15523,"spawnMask":3},{"id":"creature-1972026","entityId":"entry-37554","position":[2048.6828,178.2259,4406.2336],"yaw":-0.99299,"spawnMask":3}],"roamingPacks":[],"bosses":[{"id":"creature-1971983","name":"Falric","position":[1821.7828,154.5339,4140.8836]},{"id":"creature-1971984","name":"Marwyn","position":[1773.4728,154.5349,4192.0536]}],"objectiveOrder":[{"id":"creature-1971983","name":"Falric","position":[1821.7828,154.5339,4140.8836]},{"id":"creature-1971984","name":"Marwyn","position":[1773.4728,154.5349,4192.0536]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150206,"id":202302,"map":668,"orientation":-2.33874,"phaseMask":1,"position_x":5309.36,"position_y":2006.55,"position_z":709.341,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150210,"id":197342,"map":668,"orientation":0.810935,"phaseMask":1,"position_x":5520.77,"position_y":2229.04,"position_z":733.04,"rotation0":0,"rotation1":0,"rotation2":0.394448,"rotation3":0.918918,"spawnMask":3,"spawntimesecs":6000,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150221,"id":197343,"map":668,"orientation":-0.75986,"phaseMask":1,"position_x":5582.81,"position_y":2230.62,"position_z":733.04,"rotation0":0,"rotation1":0,"rotation2":-0.370855,"rotation3":0.928691,"spawnMask":3,"spawntimesecs":6000,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150229,"id":202236,"map":668,"orientation":-0.75986,"phaseMask":1,"position_x":5309.34,"position_y":2006.52,"position_z":709.316,"rotation0":0,"rotation1":0,"rotation2":-0.370855,"rotation3":0.928691,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150231,"id":201747,"map":668,"orientation":0.810935,"phaseMask":1,"position_x":5231.04,"position_y":1923.79,"position_z":707.044,"rotation0":0,"rotation1":0,"rotation2":0.394448,"rotation3":0.918918,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150243,"id":201756,"map":668,"orientation":0.810935,"phaseMask":1,"position_x":5231.04,"position_y":1923.79,"position_z":707.044,"rotation0":0,"rotation1":0,"rotation2":0.394448,"rotation3":0.918918,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150291,"id":201976,"map":668,"orientation":0.810935,"phaseMask":1,"position_x":5264.61,"position_y":1959.44,"position_z":707.724,"rotation0":0,"rotation1":0,"rotation2":0.394448,"rotation3":0.918918,"spawnMask":3,"spawntimesecs":6000,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150294,"id":197341,"map":668,"orientation":0.810935,"phaseMask":1,"position_x":5358.96,"position_y":2058.75,"position_z":707.724,"rotation0":0,"rotation1":0,"rotation2":0.394448,"rotation3":0.918918,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150301,"id":190236,"map":668,"orientation":-2.26562,"phaseMask":1,"position_x":4926.09,"position_y":1554.96,"position_z":163.292,"rotation0":0,"rotation1":0,"rotation2":-0.905608,"rotation3":0.424117,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150303,"id":201596,"map":668,"orientation":4.05956,"phaseMask":1,"position_x":5275.91,"position_y":1693.72,"position_z":786.151,"rotation0":0,"rotation1":0,"rotation2":0.896503,"rotation3":-0.443037,"spawnMask":3,"spawntimesecs":25,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/halls-of-reflection/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["10/10 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"tinkertech-showdown","title":"Tinkertech Showdown","mapId":821,"lfgDungeonIds":[],"expansion":"custom","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[1,80]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Tinkertech Showdown","theme":"Instanced dungeon","summary":"Fight through Tinkertech Showdown, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Tinkertech Showdown...","unchartedAreaName":"Uncharted Tinkertech Showdown","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1773.4627},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/821-tinketechshowdown/visual.glb","checksum":"1eaa0ac3fdbf745a2af571f957090f8c8882ce00ca1b38a8daa6a42c0ea52b0a","size":11106952,"triangleCount":284323}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/821-tinketechshowdown/collision.glb","checksum":"cb3159b1ffdf3137671838b00815741abae0a85f50ae82a5ba76d8733d500de6","size":1781304,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/821-tinketechshowdown/navigation.glb","checksum":"d11f2e5700c041c9580740eca39d85c026dab6f5689e4036d1b9d6ee0d73a1b9","size":317488,"triangleCount":27408}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-60.7798,-146.0678,21.2633],"max":[55.2202,15.8322,2484.406]},"entrance":{"name":"Tinkertech Showdown Entrance","footPosition":[3.6488,-4.1678,66.2633],"forward":[0.005476368352013866,0,0.9999850045824052],"yaw":0.005476395725654838},"areas":[{"id":"entrance","name":"Tinkertech Showdown Entrance","center":[3.6488,-4.1678,66.2633],"radius":35},{"id":"area-mechatron","name":"Mechatron's Encounter","center":[-15.7798,-4.2678,2439.406],"radius":42}],"entities":{"entry-663012":{"id":"entry-663012","kind":"boss","name":"Creature 663012","title":"Dungeon Boss","hasLoot":true,"combat":{"level":1,"healthMultiplier":1.15,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5474,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.18,"archetype":"humanoid"}},"tinkertech-showdown-guardian":{"id":"tinkertech-showdown-guardian","kind":"mob","name":"Tinkertech Showdown Guardian","hasLoot":false,"combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":26,"cooldownMs":7128,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid"}},"tinkertech-showdown-caster":{"id":"tinkertech-showdown-caster","kind":"mob","name":"Tinkertech Showdown Invoker","hasLoot":false,"combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":26,"cooldownMs":5491,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid"}},"tinkertech-showdown-brute":{"id":"tinkertech-showdown-brute","kind":"mob","name":"Tinkertech Showdown Brute","hasLoot":false,"combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":26,"cooldownMs":5165,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid"}}},"staticSpawns":[{"id":"encounter-9013","entityId":"entry-663012","position":[-15.7798,-4.2678,2439.406],"yaw":0,"spawnMask":1},{"id":"generated-trash-1","entityId":"tinkertech-showdown-guardian","position":[5.2917,-34.6428,366.249],"yaw":0,"spawnMask":1},{"id":"generated-trash-2","entityId":"tinkertech-showdown-caster","position":[4.4003,-46.8328,487.6618],"yaw":1.618,"spawnMask":1},{"id":"generated-trash-3","entityId":"tinkertech-showdown-brute","position":[6.8385,-59.0228,603.5878],"yaw":3.236,"spawnMask":1},{"id":"generated-trash-4","entityId":"tinkertech-showdown-guardian","position":[8.2001,-71.2128,727.454],"yaw":4.854,"spawnMask":1},{"id":"generated-trash-5","entityId":"tinkertech-showdown-caster","position":[7.9202,-83.4028,846.2262],"yaw":0.1888,"spawnMask":1},{"id":"generated-trash-6","entityId":"tinkertech-showdown-brute","position":[7.0289,-95.5928,967.639],"yaw":1.8068,"spawnMask":1},{"id":"generated-trash-7","entityId":"tinkertech-showdown-guardian","position":[8.3728,-116.3238,1357.4124],"yaw":3.4248,"spawnMask":1},{"id":"generated-trash-8","entityId":"tinkertech-showdown-caster","position":[6.8672,-105.9708,1461.0062],"yaw":5.0428,"spawnMask":1},{"id":"generated-trash-9","entityId":"tinkertech-showdown-brute","position":[3.7202,-95.6178,1559.5061],"yaw":0.3776,"spawnMask":1},{"id":"generated-trash-10","entityId":"tinkertech-showdown-guardian","position":[-0.0383,-85.2648,1660.6466],"yaw":1.9956,"spawnMask":1},{"id":"generated-trash-11","entityId":"tinkertech-showdown-caster","position":[-0.4672,-74.9118,1756.3003],"yaw":3.6136,"spawnMask":1},{"id":"generated-trash-12","entityId":"tinkertech-showdown-brute","position":[-1.9728,-64.5588,1859.8942],"yaw":5.2316,"spawnMask":1},{"id":"generated-trash-13","entityId":"tinkertech-showdown-guardian","position":[-5.1198,-54.2058,1958.3941],"yaw":0.5664,"spawnMask":1},{"id":"generated-trash-14","entityId":"tinkertech-showdown-caster","position":[-8.8783,-43.8528,2059.5346],"yaw":2.1844,"spawnMask":1},{"id":"generated-trash-15","entityId":"tinkertech-showdown-brute","position":[-9.3072,-33.4998,2155.1882],"yaw":3.8024,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"encounter-9013","name":"Mechatron","position":[-15.7798,-4.2678,2439.406]}],"objectiveOrder":[{"id":"encounter-9013","name":"Mechatron","position":[-15.7798,-4.2678,2439.406]}],"navigationLinks":[],"serverGameObjects":[],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"patch-WB2/world/maps/TinketechShowdown":"323c47c081d0a6c39daf9878284863c21e3e38dbced2ba3f58d1d157d080d41d"},"databaseAdapter":"ascension-encounter-identities-with-procedural-population","sourceSnapshot":"dungeon-pipeline/work/tinkertech-showdown/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["Creature bodies use explicit procedural fallbacks until the corresponding client display composites are exported.","Trash identities and placements are procedural; boss identities come from the installed Ascension encounter catalog."]}},{"schemaVersion":1,"id":"frozen-reach","title":"Frozen Reach","mapId":908,"lfgDungeonIds":[],"expansion":"custom","environmentMode":"adt-hybrid","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[60,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Frozen Reach","theme":"Open-world expedition","summary":"Fight through Frozen Reach, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Frozen Reach...","unchartedAreaName":"Uncharted Frozen Reach","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":414.4321},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/908-alvaencounter/visual.glb","checksum":"608e5aeeda2ded42c44cd8c146b1ff58dfc69457b51ed6e698fdbbe0c632605f","size":35891036,"triangleCount":3753492}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-000.glb","checksum":"6c6df953f0bb4618f963a6c769190df81e3b7d773915c17caca0c08f2d462a24","size":122008,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-001.glb","checksum":"97c4ec4e71ae60afb022c0e64b17dc0b2025e13c5676f5e837d2f12f1e7ee885","size":120464,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-002.glb","checksum":"7098f52a2c5a5ec630f336a7fc89b2d4895c1d642bfa18fda4da1c93fb68086f","size":120464,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-003.glb","checksum":"08351edfa09791586fafcf978ed97c4931bb4880850fd92491e6ef5933c4de1e","size":121700,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-004.glb","checksum":"e7a8a7769c3f658af45c909157fdb64ff27ef49fd75427253ba115042557c92e","size":127624,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-005.glb","checksum":"edb5662d360f148bab0bab3aea5166350a4a15e1abc2b00d1cc0c3a092e52ccb","size":123180,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-006.glb","checksum":"e9b68d3438deb67bfbac4fb4a0d13411acbe753b154ed0b603cf5f2e69482c71","size":129996,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-007.glb","checksum":"9c4a1f37d5885a7bbc6993eae9ab2e5f276a7a10a8a3fcae3866c75c69e12c15","size":136276,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-008.glb","checksum":"de90295a1d8a41fc6c7fa585bd2cc201dab6825cb9ee1f339dc640e9c2fd471e","size":150028,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-009.glb","checksum":"0d14b55b1766e14ae8573641fbcc0df692f724ee313eeafefbf8b9549f5ecaac","size":147428,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-010.glb","checksum":"0c1e79dc5f0c824da5057d9b58b9e129f145c73250890d7ff703955fcb3780e7","size":132516,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-011.glb","checksum":"a8b76e2b0c14d12ee68ed8489265b99cc72268966944c109134b7d985ebb3a8f","size":130192,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-012.glb","checksum":"90d8b162468ea1fe53ef6e8b4f0e9a17980d57ab0487e318d56b7ab67527bb9b","size":131504,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-013.glb","checksum":"46e14fa81747bbf3a2d9d010d75836f7cd39deb70152ca9c72c2bcf84d9b7eb3","size":147772,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-014.glb","checksum":"3baa396d57f9662b11b6b795bc91a87cb5c868a1b8aa5ec342b4751758efed20","size":165592,"triangleCount":65520},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-015.glb","checksum":"a322d98a76eef9d5c00aafe26ea2c3ea6894b177280bc9421e4c5a4b170ae716","size":21584,"triangleCount":1214},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-016.glb","checksum":"9276a227c84f434b6d2c19d746f5d537e03b9365f4cca4c297881615f5347702","size":270848,"triangleCount":22823},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-017.glb","checksum":"28ba2af310c7d0d761e5e2c9837b4c04b4f1a7ec30e6b735215d3b984d44e523","size":22356,"triangleCount":1282},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-018.glb","checksum":"d31935ec9fee94b64f2720ae45e3da204f87fbd9d00031277afb5c3c21cb4f9b","size":31132,"triangleCount":1704},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-019.glb","checksum":"16219faccfedbf8630a5d295fa980c78c48a8966f1c2a86397b25b92663cd7f5","size":45036,"triangleCount":2794},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-020.glb","checksum":"b81ac7d67c624be04fc74dbcd66a642712576d02708ee8ebe912ba0c14a39072","size":64868,"triangleCount":4535},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-021.glb","checksum":"3922ec584999383783ad6ed768ad765d9aaa3d1d9ac56c91ee2924eb4e17b73a","size":45072,"triangleCount":2794},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-022.glb","checksum":"ba03e6e3dc0bff7aaf425c530ffb0a9a23f6de3a9b6fa01b5353f279678b6336","size":85972,"triangleCount":6312},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-023.glb","checksum":"f18f0981ad76de5c384979dedddd08e974965ea1959001215a9759a9edb586c5","size":85912,"triangleCount":6312},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-024.glb","checksum":"e25127b0ef4170d78e78961999e7d0f7bfe9e0ce6b092cf906a29a3e16209d59","size":115232,"triangleCount":9280},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-025.glb","checksum":"946d25b0301cef546d78502ed66e8b87c59095b6ab47b61b997c966be15676ca","size":64948,"triangleCount":4535},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-026.glb","checksum":"699169b8ba6474315899fab7e5783cf47aa69f9604bc26447ad618239565df56","size":132760,"triangleCount":10902},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-027.glb","checksum":"d927cd6de947b6443191058f2c3e6743706ef96f1633a5d1e43e1f6b43bd3f90","size":14556,"triangleCount":448},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-028.glb","checksum":"74ce217108c8f97c7914d5ca8493faa60520aca220d45ce1e7408224f02e79d3","size":17248,"triangleCount":778},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-029.glb","checksum":"60ed573cedddebf14e65977624ffac137485e9f1e5c249605139d8b6714206bf","size":14056,"triangleCount":384},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-030.glb","checksum":"1f177a3ba0ecea569ed0b53675dd0f2bdfd21db8eec3ce403464639571d37b46","size":164764,"triangleCount":65536},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-031.glb","checksum":"bfc56d203e318054e2be2377aa7e477d33b28f3a82c28141160d7652439a26d9","size":17252,"triangleCount":778},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-032.glb","checksum":"5539aa6a8075e4f4c5bda24e3fb95cc166b08280f7858e3660ee90e9f45c481c","size":148400,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-033.glb","checksum":"40a671315544bd76c04050a0561da862c4a848d15fc579883b3357756144165a","size":126968,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-034.glb","checksum":"9ac7d7906e887619d176634c6b76ad6b80d3a5c6adc0b8fdea9d9ac11137cda6","size":129220,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-035.glb","checksum":"ae8f69b5f23470421efb5b79f705027b7bea4eb1a49dcafc183854002a5621f6","size":150544,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-036.glb","checksum":"46b1a3816f0122ae8abea28ace4a583e4920560b0439970721414186fc7065d1","size":163908,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-037.glb","checksum":"faa6aae268ae734ebd1886b41d0e67033c98a08fbcb316690ace0de482e1ffdc","size":413048,"triangleCount":44850},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-038.glb","checksum":"66e3e84ef2836da0f185e9183fdfe5acbad5a2f291f0ac3edf21bddb8d48b66a","size":166532,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-039.glb","checksum":"2855c6984c27a86b49233cb8da87e858fe1a27e9787d0c82fec136847499f733","size":17236,"triangleCount":778},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-040.glb","checksum":"bac279ec1e55083beefec1d4a45552512ab184a23fa8765a4ee1184caba31e69","size":23256,"triangleCount":1388},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-041.glb","checksum":"707b209cefb3a79ebec83a2d331645296e4e0c64c9996db0baf2d519d89a8f64","size":145520,"triangleCount":65536},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-042.glb","checksum":"9b64e6c2fb06b41b5c14537b9b2cbc1180172c485cb18fe7d8bac23559574689","size":125588,"triangleCount":65536},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-043.glb","checksum":"90f72dc3ecb087ad12b3794816860d3b6b4170bb327b302833174f28572bae3b","size":127432,"triangleCount":65536},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-044.glb","checksum":"e22e54d31768ce384e41dc60cf64eb0bc269d7dd5823b59bc34f97b79ee9e975","size":131868,"triangleCount":65536},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-045.glb","checksum":"bd3c3ca49c1e700e961526b51e4c8340ded8684df88a92fd425d85d07b1ee40d","size":139400,"triangleCount":65536},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-046.glb","checksum":"f0203be353545b3b2bd0bcaf2c354122abb677411be578a30657f373a92583ff","size":144304,"triangleCount":65536},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-047.glb","checksum":"f48e98bfb2c589f0155e84714bc18cbd30439c79a89466d041e6aca8bb7a8a8e","size":129452,"triangleCount":65536},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-048.glb","checksum":"0df593ea787443641aa254ab844db3000b35d51ba7169e857e148aadc9a5a248","size":128684,"triangleCount":65536},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-049.glb","checksum":"490673b92c9bf8b4a645fa6af8b73fbb0973149e08505c35f2784076c4ad9e1a","size":128960,"triangleCount":65536},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-050.glb","checksum":"f22d17610e28a127f136da50efee350a107868cf74d60ca8a0af53ebf2538ea3","size":125968,"triangleCount":65536},{"id":"collision-051","fileName":"collision-051.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-051.glb","checksum":"e22206d0fdadc6466025e0e46ab4b86674ad533aaa4705bca5061d83b123ea45","size":123924,"triangleCount":65536},{"id":"collision-052","fileName":"collision-052.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-052.glb","checksum":"3e9c43282c1a98370ccdda331fbff6ae0f755fc92b7a1e20a80bdd7d4b4d3391","size":125012,"triangleCount":65536},{"id":"collision-053","fileName":"collision-053.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-053.glb","checksum":"025459483d6e34fd2cfbf5b702aa2e64566d8836846e3a8bc8e38d3fc4e4e5d5","size":124036,"triangleCount":65536},{"id":"collision-054","fileName":"collision-054.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-054.glb","checksum":"1b67bf7d152acf8b41d21c8ba42c1da99d916be2c3682a1c5bca37a471ab5895","size":126888,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/908-alvaencounter/navigation.glb","checksum":"53747d3e8715e855beacd87a07d7d9f765fc493708221dda6dba5b8c29bff9b3","size":2873512,"triangleCount":243342}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[1813.5347,42.4602,2085.3968],"max":[2389.1348,100.8602,2274.3345]},"entrance":{"name":"Frozen Reach Entrance","footPosition":[1858.5347,78.8602,2229.3345],"forward":[0.9287946832465547,0,-0.370594706347692],"yaw":1.9504455648065726},"areas":[{"id":"entrance","name":"Frozen Reach Entrance","center":[1858.5347,78.8602,2229.3345],"radius":35},{"id":"area-alva","name":"Alva's Encounter","center":[2344.1348,62.4602,2134.3347],"radius":42}],"entities":{"entry-97700":{"id":"entry-97700","kind":"boss","name":"Creature 97700","title":"Dungeon Boss","hasLoot":true,"combat":{"level":1,"healthMultiplier":1.15,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":5399,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.18,"archetype":"humanoid"}},"frozen-reach-guardian":{"id":"frozen-reach-guardian","kind":"mob","name":"Frozen Reach Guardian","hasLoot":false,"combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":26,"cooldownMs":6391,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid"}},"frozen-reach-caster":{"id":"frozen-reach-caster","kind":"mob","name":"Frozen Reach Invoker","hasLoot":false,"combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":26,"cooldownMs":7736,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid"}},"frozen-reach-brute":{"id":"frozen-reach-brute","kind":"mob","name":"Frozen Reach Brute","hasLoot":false,"combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":26,"cooldownMs":6892,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid"}}},"staticSpawns":[{"id":"encounter-2168","entityId":"entry-97700","position":[2344.1348,62.4602,2134.3347],"yaw":0,"spawnMask":1},{"id":"generated-trash-1","entityId":"frozen-reach-guardian","position":[1918.9347,79.3602,2205.2345],"yaw":0,"spawnMask":1},{"id":"generated-trash-2","entityId":"frozen-reach-caster","position":[1941.5462,79.5602,2197.013],"yaw":1.618,"spawnMask":1},{"id":"generated-trash-3","entityId":"frozen-reach-brute","position":[1967.4873,79.7602,2183.3047],"yaw":3.236,"spawnMask":1},{"id":"generated-trash-4","entityId":"frozen-reach-guardian","position":[1992.3517,79.9602,2177.5366],"yaw":4.854,"spawnMask":1},{"id":"generated-trash-5","entityId":"frozen-reach-caster","position":[2015.5747,80.1602,2166.6745],"yaw":0.1888,"spawnMask":1},{"id":"generated-trash-6","entityId":"frozen-reach-brute","position":[2038.1862,80.3602,2158.4531],"yaw":1.8068,"spawnMask":1},{"id":"generated-trash-7","entityId":"frozen-reach-guardian","position":[2119.8874,79.3882,2130.3968],"yaw":3.4248,"spawnMask":1},{"id":"generated-trash-8","entityId":"frozen-reach-caster","position":[2141.3318,77.8242,2134.3877],"yaw":5.0428,"spawnMask":1},{"id":"generated-trash-9","entityId":"frozen-reach-brute","position":[2161.1348,76.2602,2133.2846],"yaw":0.3776,"spawnMask":1},{"id":"generated-trash-10","entityId":"frozen-reach-guardian","position":[2180.3263,74.6962,2134.8221],"yaw":1.9956,"spawnMask":1},{"id":"generated-trash-11","entityId":"frozen-reach-caster","position":[2202.8474,73.1322,2130.8728],"yaw":3.6136,"spawnMask":1},{"id":"generated-trash-12","entityId":"frozen-reach-brute","position":[2224.2918,71.5682,2134.8637],"yaw":5.2316,"spawnMask":1},{"id":"generated-trash-13","entityId":"frozen-reach-guardian","position":[2244.0948,70.0042,2133.7607],"yaw":0.5664,"spawnMask":1},{"id":"generated-trash-14","entityId":"frozen-reach-caster","position":[2263.2863,68.4402,2135.2982],"yaw":2.1844,"spawnMask":1},{"id":"generated-trash-15","entityId":"frozen-reach-brute","position":[2285.8074,66.8762,2131.3489],"yaw":3.8024,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"encounter-2168","name":"Alva","position":[2344.1348,62.4602,2134.3347]}],"objectiveOrder":[{"id":"encounter-2168","name":"Alva","position":[2344.1348,62.4602,2134.3347]}],"navigationLinks":[],"serverGameObjects":[],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"patch-WB1/world/maps/alvaencounter":"5ab771df79c0e062cea3ebda4e416a9245bcf8a4cc6da048077df5e674081f97"},"databaseAdapter":"ascension-encounter-identities-with-procedural-population","sourceSnapshot":"dungeon-pipeline/work/frozen-reach/source-snapshot.json","coordinateTransform":"three(x,y,z)=(-wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["Creature bodies use explicit procedural fallbacks until the corresponding client display composites are exported.","Trash identities and placements are procedural; boss identities come from the installed Ascension encounter catalog."]}},{"schemaVersion":1,"id":"forgotten-mine","title":"Forgotten Mine","mapId":1781,"lfgDungeonIds":[],"expansion":"ascension","environmentMode":"adt-hybrid","difficultyVariants":[{"id":"manastorm","difficulty":"manastorm","spawnMask":1,"levelRange":[1,255]}],"defaultDifficultyId":"manastorm","availability":"available","presentation":{"location":"Forgotten Mine","theme":"Open-world expedition","summary":"Fight through Forgotten Mine, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Forgotten Mine...","unchartedAreaName":"Uncharted Forgotten Mine","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":756.13},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/1781-forgottenmine/visual.glb","checksum":"ccdb10f537b2cb81f88f51bc7895d27d5ce42b406b78e6b40a874c74b9ae7dd4","size":25014320,"triangleCount":1225870}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-000.glb","checksum":"9cd229c8887628d6652ce776c3d8b69dd9b076aefe1f26c46bc736e0385540ca","size":264892,"triangleCount":65488},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-001.glb","checksum":"81e8ceedadae432ad657b2b8a31a4bc4b6b01c48b28bc3920679d949807f203c","size":233140,"triangleCount":23441},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-002.glb","checksum":"7bd7d313372f4650a34f01e922a2aa675e1af7ac774ff1d9ea99afac1e639e64","size":45148,"triangleCount":1512},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-003.glb","checksum":"5e3a4988c89402c7f7ba8b6c848abe748e27787c561c3e2db8e4541f1779c430","size":98708,"triangleCount":6824},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-004.glb","checksum":"ee94acc527729af4602782754ef38e61d1e13f0c9f7b1bf9757cb5ae39ba2427","size":45212,"triangleCount":1512},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-005.glb","checksum":"e2a9462a9d1f65fc9507ca235ba447a7b95d36a488c76b22a8210245ea427706","size":62428,"triangleCount":3260},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-006.glb","checksum":"8deab6290ad0c8969ee8485b067f2d6df1808f7964d37c08823f805976034aa4","size":418364,"triangleCount":42014},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-007.glb","checksum":"0046d75b502fb0b2c632f70152131d5c6580700e50bf048cbbbe20e04bcedc86","size":98748,"triangleCount":6824},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-008.glb","checksum":"d3904f0c181eaee38b196248fe7c78360e029649b92f9917685a9206f7a6cff8","size":260356,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-009.glb","checksum":"246117b036b280e4d1ddaf08b78649e099e55fa6f0831bd93d83ca8756f4e286","size":45216,"triangleCount":1512},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-010.glb","checksum":"1f23fbb3f70b2bdb36155c920afe126d3299f971a688bf66a10313fed8008516","size":62460,"triangleCount":3260},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-011.glb","checksum":"9e8047b2bb9df8c2e05669265e6a7303c301f86962c1386285dd29c2883d6ec7","size":62432,"triangleCount":3260},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-012.glb","checksum":"6e728cc328bb667d0a41726fc1e3f440226f880be4ad8938b0f397cfe175da33","size":45196,"triangleCount":1512},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-013.glb","checksum":"3d0ff70a898425e4c5a4e1606bab68f7ae0b964a39d779b97a0c823c9e453f20","size":45264,"triangleCount":1512},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-014.glb","checksum":"81e8e21e8df712254c05361f143202590db80fc7760df8b1d0491ffa0b9fd9f1","size":98612,"triangleCount":6824},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-015.glb","checksum":"e40178c75c02adad2c44f4e9ece8139a9c0e3bde36f936c95967d4340f33a567","size":62468,"triangleCount":3260},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-016.glb","checksum":"a3040a1fc5084a80f8ea3e659c9168041140c291730b7066addd92cdb2edd80f","size":80368,"triangleCount":5673},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-017.glb","checksum":"6213883663eaf3985f4960d189cfc8e8edc37e3c69f2bc101edfa21daf8057f0","size":251496,"triangleCount":15284},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-018.glb","checksum":"7481a21f2157197cbb7019b120df6637ad2a6ab585a429c72c1b3a6bd62104c8","size":62440,"triangleCount":3260},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-019.glb","checksum":"bd4d87ff0fc6966930b30678542e0fcbd5f2f4e028d9b3705b90fd8722aad298","size":242440,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-020.glb","checksum":"a22f217d202ffdda6f1ba21ac6deaddae522bb579beaecd2fff2726206b45031","size":196740,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-021.glb","checksum":"121114c4e28267b31d41aaed21a60cd8d3b4686916e8b2d76dbd3883c6e52664","size":62464,"triangleCount":3260},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-022.glb","checksum":"038caf1c4d5fdd20450668a716b80ff9b112a873f1c04c678124ad692e554dbd","size":37664,"triangleCount":516},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-023.glb","checksum":"0fc24aadb753fd87aa288843b334e29044eba7991d29a2e2c169a5ef2ba333d1","size":177712,"triangleCount":16953},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-024.glb","checksum":"6af35d6e0e9c9c381d349128512d5e8595883083b8d0c2ff59a647760a79449f","size":37668,"triangleCount":516},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-025.glb","checksum":"76237cd0d8c62804d9243e9a0238ef29a8ce625ce623486de1c17c3ee5feed31","size":62452,"triangleCount":3260},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-026.glb","checksum":"0e24f2ed9555c4d5376994bea7f46e400e689aaacc1cee83a346645fadf3414b","size":33512,"triangleCount":152},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-027.glb","checksum":"db2330d391f392531151b10cd89a5240690d8a8cd184166fb82deab077b4c68c","size":50244,"triangleCount":1508},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-028.glb","checksum":"e02b0fb8d4176e1dcfee76d9a677bbb89a591da64e369808e90b94b99d1000d9","size":33500,"triangleCount":152},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-029.glb","checksum":"1eb94c699c3ef5af74d7a2ad7ae1d1ff55f1a0a2e3bc5c4f026b38b6b7506851","size":52772,"triangleCount":2010},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-030.glb","checksum":"1246025b514d4e518b9e5af8821f48ee888d605071068895e92d275602e662a9","size":62404,"triangleCount":3260},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-031.glb","checksum":"2aaba158e06c2c8abe42f389536360daed792a97f05174a5561e8fc821ce1579","size":37580,"triangleCount":516},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-032.glb","checksum":"9fba04022a650de69e32d26ea9ee2594c7776e4767432be77d5b9a360b4229ae","size":33500,"triangleCount":152},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-033.glb","checksum":"d622e7b077b82675ac387eae1753abf2fed971315bb04259c2e30fd38f4151aa","size":33512,"triangleCount":152},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-034.glb","checksum":"480a7eb95a415311579d21e6f4f00533dcdd6d9daa557d85a6b17605c126008e","size":45192,"triangleCount":1512},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-035.glb","checksum":"bb57e0e8fd20368f11dc42555b041625b4f59c8266fea6cdf14dc4d26c00ae37","size":50268,"triangleCount":1508},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-036.glb","checksum":"e9caba1d8ef4fbed7ce1a4e4624c9fabf53faac3a876f453b67209eacd9732aa","size":192636,"triangleCount":64976},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-037.glb","checksum":"901bdb462412a0986fda103db531f9891d3e5f283d5f4367c17770854014a2c9","size":32340,"triangleCount":40},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-038.glb","checksum":"0da7c57037b8da96d3efdc48190290ec83e6e1de90a6a795d4bff7b21213bfb6","size":40068,"triangleCount":576},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-039.glb","checksum":"569e2212a340026905ca61cf290e78196a34d5efe962482ace21508d3d10d473","size":40240,"triangleCount":547},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-040.glb","checksum":"6f9765da7daacae0e8cd73697f958c70f12fb2e4308f9263f13c9a5648018e43","size":32332,"triangleCount":40},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-041.glb","checksum":"e934e2bffb09029c0e80d09359c93579b77cf46e2eda60d849abfa5f1fe97b26","size":32344,"triangleCount":40},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-042.glb","checksum":"b86cb3bdf447eb01d92b1d690aa79b69f8d0c21733625c9e88bb17ee35e90ad5","size":35644,"triangleCount":318},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-043.glb","checksum":"bfa3ac43200cb6a7394daaac8a75e90262674d186eb3f710a722ce3081fc7580","size":33520,"triangleCount":152},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-044.glb","checksum":"7aaea1d42d2059a49b6e3b4b6199d9ecb1e145b81899764706fc8262c1c91dbe","size":32348,"triangleCount":40},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-045.glb","checksum":"ea4ad076dbcb6320b4230c7218c669ed2599ed23e52831b735009951de3b9ec9","size":32340,"triangleCount":40},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-046.glb","checksum":"5ae0316a15a40a3a73c1f866ecff958949845e354ad95b02ba6fbe739812fb8d","size":32348,"triangleCount":40},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-047.glb","checksum":"5c1c86fa8e8603ad442c167e053f11a87df982be6014a04a56f946b6ee2d57a1","size":32344,"triangleCount":40},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-048.glb","checksum":"8c861e34674d93da4856a57286353bc12eb964ecad0de31483c97f2317fa5a18","size":50152,"triangleCount":1877},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-049.glb","checksum":"a0abb2a40d35e6b782bf03859049af786a2465afbc81172ce1e7a612e11b8f64","size":32344,"triangleCount":40},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-050.glb","checksum":"ece9e6db7a25a722119338a721006e700295f5e2fb0f666ec31448c69f7ed6c0","size":32336,"triangleCount":40},{"id":"collision-051","fileName":"collision-051.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-051.glb","checksum":"a6e136f320087a89731853d8e60e41ef763be17a3f839a5208025a021d805845","size":40064,"triangleCount":576},{"id":"collision-052","fileName":"collision-052.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-052.glb","checksum":"b3068797232d66850407d4d84fc8f6b10a30274e922f32ca82f2b3fd919bc7ef","size":106124,"triangleCount":5258},{"id":"collision-053","fileName":"collision-053.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-053.glb","checksum":"80ae5e9f1862fae7d64c9947d8e461039bf922a1d9a52e692376f4c0ddd0e667","size":40092,"triangleCount":576},{"id":"collision-054","fileName":"collision-054.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-054.glb","checksum":"009f33c961f87f4ef57764e13865f003bc9fc9c473d6c58c3f5c0c25768ff32e","size":40056,"triangleCount":576},{"id":"collision-055","fileName":"collision-055.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-055.glb","checksum":"3b85b4e327f89bc3baf398cddec289baf43d20e94ed36bc03aba297038447286","size":41948,"triangleCount":762},{"id":"collision-056","fileName":"collision-056.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-056.glb","checksum":"d17ceeea0026d3c0ebac66bf80528b7e96d7c5d21f6ca5cb8fb007f34d79e1ed","size":32344,"triangleCount":40},{"id":"collision-057","fileName":"collision-057.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-057.glb","checksum":"029f62d0de0bcbf2065f4c3fc17919988a07780ae1e8054f98ef4769c1864c58","size":32348,"triangleCount":40},{"id":"collision-058","fileName":"collision-058.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-058.glb","checksum":"e6d8154863f7e6b6580545bfaace542b33852d579e7f676bec5655f8d7042ffa","size":41972,"triangleCount":762},{"id":"collision-059","fileName":"collision-059.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-059.glb","checksum":"0f9fd26d19af27611a7cc4b37b2d08ccd2da6b45b2d7423e20fc96467e3d6e26","size":32348,"triangleCount":40},{"id":"collision-060","fileName":"collision-060.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-060.glb","checksum":"c91509a6fea8da434304153f5540ea21606c25572baa373c7a7e60b12cce8358","size":40304,"triangleCount":547},{"id":"collision-061","fileName":"collision-061.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-061.glb","checksum":"7cbfc9011d4d0210775af70a6f6eb9a93061bbda8fd8ef1400ecb17bb58bd812","size":32336,"triangleCount":40},{"id":"collision-062","fileName":"collision-062.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-062.glb","checksum":"eca547bd7ba1c8f7c25e79738483e4dc4192efacbe701c60e8159a3e45f002f2","size":32328,"triangleCount":40},{"id":"collision-063","fileName":"collision-063.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-063.glb","checksum":"a39f858bd65540306b8a4f416a5abc301c0cb02e56cb4d91d51a29fafba76edb","size":32340,"triangleCount":40},{"id":"collision-064","fileName":"collision-064.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-064.glb","checksum":"3cb2b5ffa94aa94ae1d458ff60f3cdbcbd79f51c950b7bb1dc6ec17bf902ec24","size":32336,"triangleCount":40},{"id":"collision-065","fileName":"collision-065.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-065.glb","checksum":"22ec4844a77442e49be79730c151eeb21d6a43b88ded566a28bfa0c2c444e854","size":32348,"triangleCount":40},{"id":"collision-066","fileName":"collision-066.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-066.glb","checksum":"b5be35385ed756f7189d37c6eea89f265422762d49e5b5dcbbd89c915401cfc0","size":32344,"triangleCount":40},{"id":"collision-067","fileName":"collision-067.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-067.glb","checksum":"a78d9429a80ec3dc10e13ba8ca10a028a10a93157d12b33a7581466a399d34f9","size":32324,"triangleCount":40},{"id":"collision-068","fileName":"collision-068.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-068.glb","checksum":"6958846ef95b308b5907b9e7f278e86fd9ab9d8fe288b8dadf8bbf4e03dc1294","size":40108,"triangleCount":576},{"id":"collision-069","fileName":"collision-069.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-069.glb","checksum":"cd48dc551abc0a87d07d8ffed55f3310346e2d4e42e1a77e08c44dcdc2d901ce","size":32340,"triangleCount":40},{"id":"collision-070","fileName":"collision-070.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-070.glb","checksum":"8173004ca447eb85edf653c5a724e3a90a9927af66c2889125114afe0b3ec899","size":32344,"triangleCount":40},{"id":"collision-071","fileName":"collision-071.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-071.glb","checksum":"afa5ab6e77baab2dc9c57b0f5012d70e215072bd3548a15141d46af31fe9a6c9","size":32344,"triangleCount":40},{"id":"collision-072","fileName":"collision-072.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-072.glb","checksum":"3a128f20720e5a7ffc6cf3a4d30b3672975b40f7dc63b967d3e673dca725190b","size":40100,"triangleCount":576},{"id":"collision-073","fileName":"collision-073.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-073.glb","checksum":"81445baffeddb9aae6a45ee214bb41ec36a8eca829cd7f45f9b15070f22a967d","size":32340,"triangleCount":40},{"id":"collision-074","fileName":"collision-074.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-074.glb","checksum":"c58545e86f9609599a797d3d97c81b5a0b0202b33a2b8d35fa4acf22fececf91","size":33500,"triangleCount":152},{"id":"collision-075","fileName":"collision-075.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-075.glb","checksum":"f93f3b4660e17082da85aeb84d2bed51398000c079212f981c6c59e16adfb60b","size":40236,"triangleCount":547},{"id":"collision-076","fileName":"collision-076.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-076.glb","checksum":"bb8de2ec71fed15a8ad271e4d41344348fd57c0980ad53d175d8f063d7fe484c","size":32336,"triangleCount":40},{"id":"collision-077","fileName":"collision-077.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-077.glb","checksum":"abd3df25c12698f64de44f121ed715f74a07437903e914a29d5020e395e60448","size":33584,"triangleCount":136},{"id":"collision-078","fileName":"collision-078.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-078.glb","checksum":"db4ec0a06cafe51256fe99dda375d3243d78c4b16c6046c80812687634f8d328","size":37584,"triangleCount":516},{"id":"collision-079","fileName":"collision-079.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-079.glb","checksum":"9d29aadfc906be490a5154382136a78ef5e8e0d9017e59ebe481ee61e98f9e94","size":37572,"triangleCount":516},{"id":"collision-080","fileName":"collision-080.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-080.glb","checksum":"3c81dfa4fe812c0386e31402eeef3b8e334f72691ecc9491618d753d36603311","size":40192,"triangleCount":547},{"id":"collision-081","fileName":"collision-081.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-081.glb","checksum":"226f50e8429dd879a417528795daa978b4981862bb3c16c80b9e36bc2403f011","size":32340,"triangleCount":40},{"id":"collision-082","fileName":"collision-082.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-082.glb","checksum":"0151b7f895ac1007f369c90327ebe6d9e6f6d122ff81b15eab2c400002707868","size":40208,"triangleCount":547},{"id":"collision-083","fileName":"collision-083.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-083.glb","checksum":"6092f5b8ba70957f3106f57df1d50888779076fde19ed69b409c786dd2a30ae6","size":34136,"triangleCount":192},{"id":"collision-084","fileName":"collision-084.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-084.glb","checksum":"1b89682007e7c4310beef74e545b314d5f4099fc0cc84476ff0c74c22e579c30","size":32344,"triangleCount":40},{"id":"collision-085","fileName":"collision-085.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-085.glb","checksum":"398bead92d98cfa45d39d1069e29aae1a6f3bbe1522b244dbf5be4be80f6afe2","size":62472,"triangleCount":3260},{"id":"collision-086","fileName":"collision-086.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-086.glb","checksum":"3994808dd08dc44eebf26685ccaa8ad8644ae4596689cb3979a9581b72ed92c7","size":32340,"triangleCount":40},{"id":"collision-087","fileName":"collision-087.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-087.glb","checksum":"1be66b925ecdecc3ade23fa52f8de8cd5e597f35bd85537ee56b5b070175efdd","size":42016,"triangleCount":762},{"id":"collision-088","fileName":"collision-088.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-088.glb","checksum":"1c050dc4426259333a2afca25d23906065d9b9dd9e85681fd8d3bb2fae4b8265","size":32348,"triangleCount":40},{"id":"collision-089","fileName":"collision-089.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-089.glb","checksum":"3fad0136e23c78eaa56f7ffc10418adcdec3ded1aa487d023fcea323e35b9397","size":40044,"triangleCount":576},{"id":"collision-090","fileName":"collision-090.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-090.glb","checksum":"58ef38b3fdf6e4572a0d45125215d4af7c895c98bfee8b2fcf114095c29f113c","size":40048,"triangleCount":576},{"id":"collision-091","fileName":"collision-091.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-091.glb","checksum":"1c0b9282d2850a0adea7a792ed8ad3f32a38912c04d62244f0273713ca092554","size":40120,"triangleCount":547},{"id":"collision-092","fileName":"collision-092.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-092.glb","checksum":"056889e7c3b1b645e22742549bc59f86eba1e404b15d964afcfabea035e191e0","size":40292,"triangleCount":547},{"id":"collision-093","fileName":"collision-093.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-093.glb","checksum":"0c292e993a939b299f5dcd7482e3faaf0d4bcccccd2842e442625c93947c9651","size":32348,"triangleCount":40},{"id":"collision-094","fileName":"collision-094.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-094.glb","checksum":"34c395195d8580144d9d2c5f64a0700e86c63109bac25f34371f12754a5a784b","size":33536,"triangleCount":152},{"id":"collision-095","fileName":"collision-095.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-095.glb","checksum":"01dc7d729e363c1fcb9d134187d3dc45db66f7dc664f42f572aaa29995729cc1","size":32352,"triangleCount":40},{"id":"collision-096","fileName":"collision-096.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-096.glb","checksum":"ab21833cfd17d899168bac35ab6d51f31ad35d8bb002526056b1e48c162c2549","size":32340,"triangleCount":40},{"id":"collision-097","fileName":"collision-097.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-097.glb","checksum":"b98e3c576d3e31e1eacb76701e5c0e66023935dd7942a685072f4f7a5d3e56ee","size":32344,"triangleCount":40},{"id":"collision-098","fileName":"collision-098.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-098.glb","checksum":"9ea8f1cbd2316c707d8d65fd51750a40e911551146dceb54beebfef83fb51d12","size":32340,"triangleCount":40},{"id":"collision-099","fileName":"collision-099.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-099.glb","checksum":"89d8d24100957e2125ea7390432e1518f1c67dd54c9317802ae7bdd7dc074d21","size":62444,"triangleCount":3260},{"id":"collision-100","fileName":"collision-100.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-100.glb","checksum":"73435d9e361ecdbb170c69759704c7c021a6de70a41c2d5ec7a166a3a73aaf99","size":37632,"triangleCount":516},{"id":"collision-101","fileName":"collision-101.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-101.glb","checksum":"f5bfe72da12579a0f4a19f28a2639bb3c201451204cf4eebde0e1266fb5c80ab","size":32348,"triangleCount":40},{"id":"collision-102","fileName":"collision-102.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-102.glb","checksum":"c4e3e1f088f2c767ea193bca939e95f3918b86d3f8060689f5a6b0ff1d7ddbc5","size":32344,"triangleCount":40},{"id":"collision-103","fileName":"collision-103.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-103.glb","checksum":"ba9f579238d8fd71d1d238b5761cb1aa22f4657b3d8cae4dc35cbb755dc6eb18","size":32352,"triangleCount":40},{"id":"collision-104","fileName":"collision-104.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-104.glb","checksum":"5bd4f39880f58021e0031c7cdf7a861ca484e026a515e44a310a17a2868f026a","size":33588,"triangleCount":136},{"id":"collision-105","fileName":"collision-105.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-105.glb","checksum":"73761c8de431f6e13c442945503becdcc71ba93d4e5c1ecf23dd6cad896baa75","size":40188,"triangleCount":547},{"id":"collision-106","fileName":"collision-106.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-106.glb","checksum":"8af5c307edd94b8a28c4ef6ae8dc3f4ffe683c5111e0a172b72350ad33e2ece6","size":42044,"triangleCount":762},{"id":"collision-107","fileName":"collision-107.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-107.glb","checksum":"cc98206cd4994ef172227477800b9280ec4fa994b27fad38b9226f11e0b0c354","size":32348,"triangleCount":40},{"id":"collision-108","fileName":"collision-108.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-108.glb","checksum":"891c797fd5e7c6910921a644411cd650717ad37f55c8ea315f9186bd90913510","size":32344,"triangleCount":40},{"id":"collision-109","fileName":"collision-109.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-109.glb","checksum":"3129384b62d6ff49c4d1bdaa6b4072f1390747b844b4a5e44d09c685b4436173","size":32348,"triangleCount":40},{"id":"collision-110","fileName":"collision-110.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-110.glb","checksum":"d22a3abd2ba8c077f6b38ea91cc41537fd9b1053ef797a54945ca131a8ec181a","size":53904,"triangleCount":1906},{"id":"collision-111","fileName":"collision-111.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-111.glb","checksum":"fbcd82a2dba23cc74ff905f0bd07e8f99b347c86609c769636c3dd64b62344ff","size":40200,"triangleCount":547},{"id":"collision-112","fileName":"collision-112.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-112.glb","checksum":"395aa673aebe944f91ea5f6960f588d83a8a46d90428c060e629b76951dcba86","size":37480,"triangleCount":516},{"id":"collision-113","fileName":"collision-113.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-113.glb","checksum":"f975bd7c195c6b337415cc7dec819b79c09fec1462905cc3154a71680d3576f3","size":32340,"triangleCount":40},{"id":"collision-114","fileName":"collision-114.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-114.glb","checksum":"de72ddac53d07c59903266dee7545f0fcf7d2c15876eef53e60b12a1803e1ecb","size":40072,"triangleCount":576},{"id":"collision-115","fileName":"collision-115.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-115.glb","checksum":"a8a5a2f0f51fd085410a9b03fac576c8bcaf5eb8b0a909a1d49d5f9a3e15968f","size":32340,"triangleCount":40},{"id":"collision-116","fileName":"collision-116.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-116.glb","checksum":"86f768f4acb2c61c1ec4f6087379066bd655128a049855e22f93474b62893dd9","size":51616,"triangleCount":1296},{"id":"collision-117","fileName":"collision-117.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-117.glb","checksum":"fb86571fa9d4144b9c7ff4b5247ed7ef655672c23329fcbc26e31181f16582fb","size":40068,"triangleCount":576},{"id":"collision-118","fileName":"collision-118.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-118.glb","checksum":"b65ca81a86b1ebeca5a78f6aeaa4325f99b20084c6c862484604bcbead13b3b7","size":32352,"triangleCount":40},{"id":"collision-119","fileName":"collision-119.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-119.glb","checksum":"39748d31edb59e22bde58a9e9133635ca359a7f74a38cf110059a36537d1e992","size":32344,"triangleCount":40},{"id":"collision-120","fileName":"collision-120.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-120.glb","checksum":"88dfaf493af2dd5cd5a67d26d129e03b5041e07d3ceb093aaab68b9ea7defc18","size":32352,"triangleCount":40},{"id":"collision-121","fileName":"collision-121.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-121.glb","checksum":"72cffda52df9c6d6fe8edc0b218c05a00b869841ffd713967dda64597341bbd4","size":32324,"triangleCount":40},{"id":"collision-122","fileName":"collision-122.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-122.glb","checksum":"c058ad28143b060d52e1c6309bced98a560e141277c1035629b72df69ef4de68","size":32332,"triangleCount":40},{"id":"collision-123","fileName":"collision-123.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-123.glb","checksum":"a783a955a40e8bf1cd59f8ca04e388cac9998b0050dac1b9196abb6a84527e76","size":34140,"triangleCount":192},{"id":"collision-124","fileName":"collision-124.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-124.glb","checksum":"6b581982a3aded38f3606cde7e6e5d6eaff81a9ecbc96cc8a6d5f7b49b5eab22","size":40160,"triangleCount":547},{"id":"collision-125","fileName":"collision-125.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-125.glb","checksum":"3dc184f32b3344a9773828a2de1cdbd861a6088881097ba9492ec226408f6e6f","size":40168,"triangleCount":547},{"id":"collision-126","fileName":"collision-126.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-126.glb","checksum":"fbad4245eb3c739cebb09725963bb9c23913296048d2033a5bacaae9441313ec","size":40096,"triangleCount":576},{"id":"collision-127","fileName":"collision-127.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-127.glb","checksum":"f047f1ac2b02bc0fb2bc718d391eeea01efcc9e489fa26e733f716de4c82f087","size":34120,"triangleCount":192},{"id":"collision-128","fileName":"collision-128.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-128.glb","checksum":"6f7b75a180d4795b1654e0b7d006749008e81b545467a09ce12859ab691781ec","size":32344,"triangleCount":40},{"id":"collision-129","fileName":"collision-129.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-129.glb","checksum":"48c1900456d71f058f1045396e75ded01c02ff37efdccd59c2bbcc7a0ab5d4d6","size":32344,"triangleCount":40},{"id":"collision-130","fileName":"collision-130.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-130.glb","checksum":"28ca760e3379aa7e8c5ff8bc9ab401829905f9079e164f3cb25b64b7ca1bf919","size":33584,"triangleCount":136},{"id":"collision-131","fileName":"collision-131.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-131.glb","checksum":"2d4e4981dfd15c9a5369e39f7b811f9efcb0f9c081e7304d7b5c66b4873ff74d","size":40100,"triangleCount":576},{"id":"collision-132","fileName":"collision-132.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-132.glb","checksum":"c010be5462edb29bf891a4072b4666f2e17ed6de2bed4227dad5d99840bbd40c","size":40000,"triangleCount":576},{"id":"collision-133","fileName":"collision-133.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-133.glb","checksum":"dc499df3b84950c0af2283eb985d4e7e1b247d2e9209b5b906e10252070aa5b7","size":32340,"triangleCount":40},{"id":"collision-134","fileName":"collision-134.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-134.glb","checksum":"a49757576328497d39da46548f854e0a6a9c0fe1079063f9263a23ee140d69ba","size":52784,"triangleCount":2010},{"id":"collision-135","fileName":"collision-135.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-135.glb","checksum":"98731e26671b82838989ffbc6ddb8ca301207eff51e57e995a8240ff9bebb627","size":40276,"triangleCount":547},{"id":"collision-136","fileName":"collision-136.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-136.glb","checksum":"380371300631ce4ebba2371c4cddaad3032eee2085fc1cc40107145d337fa229","size":42036,"triangleCount":762},{"id":"collision-137","fileName":"collision-137.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-137.glb","checksum":"ebde3fd093f8741c5b4ef977a456cf18d22f724aae30bfe7e01206438b9418a5","size":32332,"triangleCount":40},{"id":"collision-138","fileName":"collision-138.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-138.glb","checksum":"b4e64b9bc81312f9ec7711112159e0c1d9bdb898041d3ab187ff96d3bab15be9","size":62464,"triangleCount":3260},{"id":"collision-139","fileName":"collision-139.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-139.glb","checksum":"88c086deeaf4f3114db278d29d23c6299ff6ca0c6449d2481237f33acb11e04c","size":37588,"triangleCount":516},{"id":"collision-140","fileName":"collision-140.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-140.glb","checksum":"0c6d4adfce03e9af846a6542640a78ea220b8a80cfe79054ad42cce20b7a5617","size":32344,"triangleCount":40},{"id":"collision-141","fileName":"collision-141.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-141.glb","checksum":"30986a77f26c59034f991a9f98b0846d89ffbe6164cc00e49a86aa9d7d486ba2","size":32336,"triangleCount":40},{"id":"collision-142","fileName":"collision-142.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-142.glb","checksum":"b9b4dd01a2776cde3ec1a06b982650bdec1a55b251129bd49b47aa23f432690c","size":32348,"triangleCount":40},{"id":"collision-143","fileName":"collision-143.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-143.glb","checksum":"7682d39cdd84be9ad06141dae2fa5c01e557e036c9752930a886a5a8c9653a88","size":32336,"triangleCount":40},{"id":"collision-144","fileName":"collision-144.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-144.glb","checksum":"7d0a31f616d7725eb78e6ef4525b1f5257af02551ef598a770818ca775275b1a","size":32344,"triangleCount":40},{"id":"collision-145","fileName":"collision-145.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-145.glb","checksum":"4f905d7ebeb716d7757c10a6df582430c2e01649a04f9f6f83d89c43f0f5753f","size":40048,"triangleCount":576},{"id":"collision-146","fileName":"collision-146.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-146.glb","checksum":"4e6df24025559f8b1dd52a8216e7430fdfffca0f5e951fd8416ebc2c8d018070","size":40256,"triangleCount":547},{"id":"collision-147","fileName":"collision-147.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-147.glb","checksum":"f4b8292604f8af220812534116341438c8a67cb4127e879887588b84fe23e465","size":32332,"triangleCount":40},{"id":"collision-148","fileName":"collision-148.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-148.glb","checksum":"5ce210dbb63666b97b63d096a5591e61d27a77bc1a2c96adf5686f0d0eb7012c","size":32340,"triangleCount":40},{"id":"collision-149","fileName":"collision-149.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-149.glb","checksum":"28f5b15b7ae6eb1bfc40371a8cdd86210b0f322217979321a8eb74a44c6b038d","size":62288,"triangleCount":2760},{"id":"collision-150","fileName":"collision-150.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-150.glb","checksum":"fcf563d450b88f5d1eceb562bb16bd6a7bc752029c0502718446c7635251df43","size":32336,"triangleCount":40},{"id":"collision-151","fileName":"collision-151.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-151.glb","checksum":"4bd74987d0d63360600dbccc2848b5c57eaf993d87c3a7f3254e5442fe0955a5","size":37572,"triangleCount":516},{"id":"collision-152","fileName":"collision-152.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-152.glb","checksum":"a6bb6bad2705197c3ec1deb0970bda5f83096437cd63897a800c4a4a0a15f007","size":42576,"triangleCount":918},{"id":"collision-153","fileName":"collision-153.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-153.glb","checksum":"281710bb2b0053cd1c374aec03bff63624b9f6fc34039376c062c555551d4a51","size":32348,"triangleCount":40},{"id":"collision-154","fileName":"collision-154.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-154.glb","checksum":"0473fb3999a0e894393a9085c897fc3b6a2c2fa61a6dab55110c05c3867ca7ee","size":35648,"triangleCount":318},{"id":"collision-155","fileName":"collision-155.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-155.glb","checksum":"f7f3b1f234d221453884a269bc6a288da8ba39ccda1ba5ec858c705bc5fa5561","size":32356,"triangleCount":40},{"id":"collision-156","fileName":"collision-156.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-156.glb","checksum":"ce1dd0e735969aaea866c961c7c2993ef59b241d5289d4e1091d7a3267ba1fca","size":32336,"triangleCount":40},{"id":"collision-157","fileName":"collision-157.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-157.glb","checksum":"90b6790ae8d4ae803465512c812f61f0ea80cc79fd8f5156870132a8872d7fa3","size":34112,"triangleCount":192},{"id":"collision-158","fileName":"collision-158.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-158.glb","checksum":"eb31abbfb8786f230a902d2610b58275f2f12f39d26e8ff6b7ce865b18732f15","size":62420,"triangleCount":3260},{"id":"collision-159","fileName":"collision-159.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-159.glb","checksum":"6e8348c03eb1c712fee08870f75fa701499d343f67ce79acd94dc0b6d01c2fcb","size":32340,"triangleCount":40},{"id":"collision-160","fileName":"collision-160.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-160.glb","checksum":"faebf74897f9f4e03e6af8153469e2f0d9ad014a46fc67074433678eebda7d21","size":40200,"triangleCount":547},{"id":"collision-161","fileName":"collision-161.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-161.glb","checksum":"748c2862a072a5f75710b95b1d118062c3e63b9bad589f0326ee23577271280c","size":32340,"triangleCount":40},{"id":"collision-162","fileName":"collision-162.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-162.glb","checksum":"1fc17f2c40b00f99f0442153cc711e84d3042346915991eca560aeec36a9cac2","size":37508,"triangleCount":516},{"id":"collision-163","fileName":"collision-163.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-163.glb","checksum":"9d617d17cb10ed7489563a5626711f4d21ac4a4e7210fb0957b6b2f38ae3cfbe","size":32340,"triangleCount":40},{"id":"collision-164","fileName":"collision-164.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-164.glb","checksum":"9ac75d59999433f3572015fc551c0bc2395a12800d4aac84628c2d2fde2c27c6","size":39960,"triangleCount":576},{"id":"collision-165","fileName":"collision-165.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-165.glb","checksum":"9d51b3db3f8f201cef8433c39fdf601fd8e5f14b48ea34b48e6fd0574758c481","size":37584,"triangleCount":516},{"id":"collision-166","fileName":"collision-166.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-166.glb","checksum":"1a58c8878a8dd30660ee6c9094d6c2dd40bfd92fed968c73c0baf9a35d1355fb","size":53908,"triangleCount":1906},{"id":"collision-167","fileName":"collision-167.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-167.glb","checksum":"20c7c6912638afb6e66a22c818758f22fe86fb8bd69b1829a38b09662e6db2f7","size":40248,"triangleCount":547},{"id":"collision-168","fileName":"collision-168.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-168.glb","checksum":"407398ee35a4dbe5158c07571109529519ee7e963b0a2e6e482c5a50ddebe263","size":32348,"triangleCount":40},{"id":"collision-169","fileName":"collision-169.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-169.glb","checksum":"97ee34bc43de7d5a3e2b7e5fc6a7f1fe534f4e2a29b4ffdfa62ab357b28b336c","size":51620,"triangleCount":1296},{"id":"collision-170","fileName":"collision-170.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-170.glb","checksum":"285a5c9bf3d45c369b284dd8623afd0d0570c3730a05d977b042527c43085aa8","size":32344,"triangleCount":40},{"id":"collision-171","fileName":"collision-171.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-171.glb","checksum":"5dde99c13e673d7ba1172d6c770fdbc0a1929e7ab6fbc5a45a1118df2aca03d5","size":40096,"triangleCount":576},{"id":"collision-172","fileName":"collision-172.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-172.glb","checksum":"61b507df7a4024f72f8cfa8e6a7d28f371e7cf63c6cf66c76c57079a1bb3eb62","size":40128,"triangleCount":547},{"id":"collision-173","fileName":"collision-173.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-173.glb","checksum":"c033d9705fffb77d7d543cd8c6ab90f6d7e04ea3d604601484b38b2781493893","size":35636,"triangleCount":318},{"id":"collision-174","fileName":"collision-174.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-174.glb","checksum":"3e0ce597fb41c586f0c808cbeadba6306410211a67311fd4f658f0c6687ed856","size":37528,"triangleCount":516},{"id":"collision-175","fileName":"collision-175.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-175.glb","checksum":"1f6db28869552b7ca10a20e23eb0c34d0eca2d4e176d8afff44b98c55f2f4252","size":37560,"triangleCount":516},{"id":"collision-176","fileName":"collision-176.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-176.glb","checksum":"6054f14a1c5db02da6bded19a62958ce67a532699e41abc30d82d5ad5fba1dfa","size":32348,"triangleCount":40},{"id":"collision-177","fileName":"collision-177.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-177.glb","checksum":"8cba5254f7f8145a6950a923c006ce34b3d76642677dec1b4ce85f614ec599b1","size":32340,"triangleCount":40},{"id":"collision-178","fileName":"collision-178.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-178.glb","checksum":"6b54cdaf40782775e41eb88e80b1c7410c5225f5f9b9bd3c27fc9217c4290144","size":34124,"triangleCount":192},{"id":"collision-179","fileName":"collision-179.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-179.glb","checksum":"c072220c78db67e9546ad62a2dfa469532b61c20cab6f8a653f2b2d21bd08d08","size":32344,"triangleCount":40},{"id":"collision-180","fileName":"collision-180.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-180.glb","checksum":"a7c3dcff359b37078ec25181fd239dcc9fd0be507f102298b81766af88e7c33c","size":32348,"triangleCount":40},{"id":"collision-181","fileName":"collision-181.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-181.glb","checksum":"4397e447757358a9d89187eef62bc0b0af24c1037d52cf5b8436b4e4b3c86492","size":32340,"triangleCount":40},{"id":"collision-182","fileName":"collision-182.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-182.glb","checksum":"ef06b0558cca185fd1cf12189100102df05f2783076089d3f65aa4f1c66aa98f","size":32340,"triangleCount":40},{"id":"collision-183","fileName":"collision-183.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-183.glb","checksum":"9878d54506481c9b4805c310c75a1a5d09028eb1c707945f0bc6fcbcb24b63bd","size":40192,"triangleCount":547},{"id":"collision-184","fileName":"collision-184.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-184.glb","checksum":"d3d5b3fcba563ced57aff328b02f4c1350256cd02c9cfd440d336331c91b9431","size":34148,"triangleCount":192},{"id":"collision-185","fileName":"collision-185.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-185.glb","checksum":"08dc69a5e8b9e9d0af21cf058dd6ef4bd87fc6005a76ba54e4b441eb72af23a8","size":40084,"triangleCount":576},{"id":"collision-186","fileName":"collision-186.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-186.glb","checksum":"493fffa2691b3e731ea7dd2509b3df739e0c8c66a54aef1e5f72438482e589d9","size":32344,"triangleCount":40},{"id":"collision-187","fileName":"collision-187.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-187.glb","checksum":"c84c71ee8c6a7834b6642db6fad91c04fec0f2cdd7513c4109109e545085e15c","size":32344,"triangleCount":40},{"id":"collision-188","fileName":"collision-188.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-188.glb","checksum":"6bfc51742faf3b53565be9a485fe592d9fd2babbc7c060a78060434f004b9a90","size":40100,"triangleCount":576},{"id":"collision-189","fileName":"collision-189.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-189.glb","checksum":"6872dd0e65dcd527cc6a21661d7f4e051b8899dad9a10a163248e562e64c7258","size":32344,"triangleCount":40},{"id":"collision-190","fileName":"collision-190.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-190.glb","checksum":"7f0441086288c1190c276b395b93e2bf0ba33b10e3c7fa8f67615845d5b791c0","size":32352,"triangleCount":40},{"id":"collision-191","fileName":"collision-191.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-191.glb","checksum":"844516cce0c071eb5284d9d1df07fc11ca593364c12b54e91dd1bf748a0a8934","size":32348,"triangleCount":40},{"id":"collision-192","fileName":"collision-192.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-192.glb","checksum":"a0d58087fd18df8b9107f71897cd720cca74eb6c508149de19b5900141c7bcef","size":32340,"triangleCount":40},{"id":"collision-193","fileName":"collision-193.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-193.glb","checksum":"11ecee417cd578c93cad49ad0eeb178a271ca6f55fcb6a207c01b99536597535","size":37592,"triangleCount":516},{"id":"collision-194","fileName":"collision-194.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-194.glb","checksum":"f411ab8471ddf8108a04682870f1f5db8be89390527584b052e9458c2ba1fc96","size":40296,"triangleCount":547},{"id":"collision-195","fileName":"collision-195.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-195.glb","checksum":"874f25f920a9e463a284b1f61b4b604c50adb212410e0cfe9e323c3c28772fae","size":51616,"triangleCount":1296},{"id":"collision-196","fileName":"collision-196.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-196.glb","checksum":"7b7de906cf327065035bed35e924e31dbba674311a88d8f4ca91f7f81c25b2cf","size":40072,"triangleCount":576},{"id":"collision-197","fileName":"collision-197.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-197.glb","checksum":"d6bbcbeb4dae038045f043c369547d62994df91528b25da18cc8d8b01b9b2202","size":32340,"triangleCount":40},{"id":"collision-198","fileName":"collision-198.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-198.glb","checksum":"feb3da8468bfdf7d5bd668e96c07b6ebd0dc57596de62a6d7d66fed970a78d13","size":32344,"triangleCount":40},{"id":"collision-199","fileName":"collision-199.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-199.glb","checksum":"8957001fa832c6a33123d1259144d61a39cebb88b11d180055dd0ef24d481c31","size":40084,"triangleCount":576},{"id":"collision-200","fileName":"collision-200.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-200.glb","checksum":"f706e7c62658c839ce3fb78f6bc400f9eff046428624393415275fa08ae1b528","size":32344,"triangleCount":40},{"id":"collision-201","fileName":"collision-201.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-201.glb","checksum":"d3e93b75162e783c8ecb4b32f5f37137a6f75a41bb10275b3162af5bfad65f03","size":32344,"triangleCount":40},{"id":"collision-202","fileName":"collision-202.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-202.glb","checksum":"020e5e015ff16ec03304fa1bc7c50c8bfd82f6cfc9afa7b3f34e255ae57506df","size":32348,"triangleCount":40},{"id":"collision-203","fileName":"collision-203.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-203.glb","checksum":"7f2ae8b27e02e1e15648fb832f6d29d51d25f9d9d5335ded25ad60ce588c5f41","size":32340,"triangleCount":40},{"id":"collision-204","fileName":"collision-204.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-204.glb","checksum":"4da57dc9bafbc60571388f1879ffcad4709833ad4ff0d0c8787d5e417a56e0b0","size":32336,"triangleCount":40},{"id":"collision-205","fileName":"collision-205.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-205.glb","checksum":"0079f988c758a26a45274f82183e2b8a1397d3af0e4a1a0df061183ea4ccee5d","size":32344,"triangleCount":40},{"id":"collision-206","fileName":"collision-206.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-206.glb","checksum":"4bb2b1a5d54428a4d9e592a3e5c98b73c4389fe82f67bb4e0aab9b849d73c702","size":40116,"triangleCount":576},{"id":"collision-207","fileName":"collision-207.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-207.glb","checksum":"fdcbe8936d227f3bef4013769ff8e5954287572e9da4b8ef443e5406a9e3583e","size":32340,"triangleCount":40},{"id":"collision-208","fileName":"collision-208.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-208.glb","checksum":"825e79ceb3616862cba7c200b0960496035b9337323c6cfdc53ee28901201b0f","size":40096,"triangleCount":576},{"id":"collision-209","fileName":"collision-209.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-209.glb","checksum":"ada470eb24e2bf63410954539ee8dbfa7520ee2516b95b757b0f22bd8ec157d7","size":40152,"triangleCount":547},{"id":"collision-210","fileName":"collision-210.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-210.glb","checksum":"ec7b1a4474865f0468b44015f29bb1d89550f014e0029dcd1d6dd20e3212fba9","size":32336,"triangleCount":40},{"id":"collision-211","fileName":"collision-211.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-211.glb","checksum":"12e5014a34c8d0e2dbc9a00e1870c11f71c64e1152ab0df3086b2f118237320f","size":32360,"triangleCount":40},{"id":"collision-212","fileName":"collision-212.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-212.glb","checksum":"ff8498e4fb628d202e587e35e1e735e901776946ead6747e526baa0aa811de43","size":40100,"triangleCount":576},{"id":"collision-213","fileName":"collision-213.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-213.glb","checksum":"72ece23874d1d7a105582513ebf2eb244dc3e5de299cdcf81dfcd5a938ddf071","size":48280,"triangleCount":1467},{"id":"collision-214","fileName":"collision-214.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-214.glb","checksum":"158b487072b2b980e871ebdfd145b390be5cf9353f561f9a0a83cfd6bf40378d","size":32352,"triangleCount":40},{"id":"collision-215","fileName":"collision-215.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-215.glb","checksum":"057da5113b6944e6851aa3525603e24fa43a78fb7f157f28352bc01ae2c70904","size":35660,"triangleCount":318},{"id":"collision-216","fileName":"collision-216.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-216.glb","checksum":"6042641fd3e214295d9eb62b2054112925e199f8755407bb76348073af175b84","size":40132,"triangleCount":547},{"id":"collision-217","fileName":"collision-217.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-217.glb","checksum":"96b6bb20adb930067f85aa38a67753009f54783399e04cc05df7dc91fa24fced","size":32336,"triangleCount":40},{"id":"collision-218","fileName":"collision-218.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-218.glb","checksum":"066f6f48b044e30e1e0948983143ab7c0021d65194cb796c49e2bc0bbfec3297","size":40052,"triangleCount":576},{"id":"collision-219","fileName":"collision-219.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-219.glb","checksum":"0bc2495d5929e2a3fd4660d10951e199f94f5341b24bbc9ee999e57ab07d3e25","size":32324,"triangleCount":40},{"id":"collision-220","fileName":"collision-220.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-220.glb","checksum":"f3b28e3a92fb9069b3f6ceaef467c4a778bd141169d593e1f19bc9e535076690","size":32360,"triangleCount":40},{"id":"collision-221","fileName":"collision-221.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-221.glb","checksum":"0b70bf4f99181f3bba0a1eb3391d5b1ac42f9cd28f120134ff79874da8e48da3","size":39960,"triangleCount":576},{"id":"collision-222","fileName":"collision-222.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-222.glb","checksum":"ee7ac580d93440a06270c14869e4682d502a00fa3cfba192d1851057c4d293dd","size":32336,"triangleCount":40},{"id":"collision-223","fileName":"collision-223.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-223.glb","checksum":"dee6f35d883ca5524dfd7e3d7cf20efff7a3c66d139a0252a0576a6b130b2879","size":33516,"triangleCount":152},{"id":"collision-224","fileName":"collision-224.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-224.glb","checksum":"c3f624c2c21db6380bd04f33a7bf26fc6c2d64a3bfba4dc0d38ca6a9af06dd40","size":52768,"triangleCount":2010},{"id":"collision-225","fileName":"collision-225.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-225.glb","checksum":"5ab16959ace65e246162954da9281c491c5eb1ae98a1340035abf7a17d351fc5","size":33592,"triangleCount":136},{"id":"collision-226","fileName":"collision-226.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-226.glb","checksum":"a0a1a96c311530da70d74bba8cae21a80dccb3298c0c0a3510114cecd95fb481","size":32340,"triangleCount":40},{"id":"collision-227","fileName":"collision-227.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-227.glb","checksum":"c71dc3833cde1a4110ddad3e522e35a8443cf40c92bc3109af3e957856206da8","size":32344,"triangleCount":40},{"id":"collision-228","fileName":"collision-228.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-228.glb","checksum":"02fc7c08fd6df98a0715a38cf6087a1dff1beefa94062e3ea2c4e36446a5fd36","size":32348,"triangleCount":40},{"id":"collision-229","fileName":"collision-229.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-229.glb","checksum":"2b614d0437e8f018dfac24e5d73e502e76875705c1584255d17e1c200f375d87","size":32344,"triangleCount":40},{"id":"collision-230","fileName":"collision-230.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-230.glb","checksum":"d798134d4c7715e23a03fa4acfb3b52782b4ae1d36612fec71e61dfad42fd85a","size":45228,"triangleCount":1512},{"id":"collision-231","fileName":"collision-231.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-231.glb","checksum":"cc2c8fde1447d69d1ea6f97fb6f0316fd15da6166257cae40dd3100243635675","size":32336,"triangleCount":40},{"id":"collision-232","fileName":"collision-232.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-232.glb","checksum":"de4617e7e75e5a04042fb6671583bcdcbe105c24316b451d265a79e4d73b7e0e","size":32332,"triangleCount":40},{"id":"collision-233","fileName":"collision-233.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-233.glb","checksum":"4a2fcbbc5897f63aa96a2699f303e6205c56be012e2c70a5819e56acc3b30403","size":32328,"triangleCount":40},{"id":"collision-234","fileName":"collision-234.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-234.glb","checksum":"c051f9626e826f701934c4a4afc9d2d8540e23c5e1a40807f1b69cbed7d6a130","size":34112,"triangleCount":192},{"id":"collision-235","fileName":"collision-235.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-235.glb","checksum":"799e5f85dba842477379ffa4fc96bece7bea492dd8d168598052894ae5907804","size":32340,"triangleCount":40},{"id":"collision-236","fileName":"collision-236.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-236.glb","checksum":"af7e00614396cf74755ec7879535e9193a4ebd91d0e2c58c8c5c90214c791528","size":32340,"triangleCount":40},{"id":"collision-237","fileName":"collision-237.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-237.glb","checksum":"7a211164e0390e7fb45784ce6c718aa89fadcbec6eaafb2c4bf4397f2b1fd349","size":32352,"triangleCount":40},{"id":"collision-238","fileName":"collision-238.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-238.glb","checksum":"32c1c0222af4a39b864b0181c119b3cb1d4531d07a89a679b7c41acec7783485","size":32340,"triangleCount":40},{"id":"collision-239","fileName":"collision-239.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-239.glb","checksum":"57cf9f57ee514489aefe8d4153bb33166fd12829a9a5e70a09d9205a5f653b78","size":40212,"triangleCount":547},{"id":"collision-240","fileName":"collision-240.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-240.glb","checksum":"3fc704b2b24dc968cad02604d73fac428fe36c92a662413d30d81ca31b4ea6be","size":32340,"triangleCount":40},{"id":"collision-241","fileName":"collision-241.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-241.glb","checksum":"100fcbce51199a709a45d157d703ce45a6d88020b60ada83873ecadee12019f0","size":45264,"triangleCount":840},{"id":"collision-242","fileName":"collision-242.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-242.glb","checksum":"053ed2ff6f36087ad5055d5a59e5b0e1d2b795f7f16bf0a6880be699a934da30","size":32332,"triangleCount":40},{"id":"collision-243","fileName":"collision-243.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-243.glb","checksum":"07de16e9b00455c29c899f510e53fcedb819f2aacd3a8bbc1a424b8441bc10d8","size":32352,"triangleCount":40},{"id":"collision-244","fileName":"collision-244.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-244.glb","checksum":"29921d02b10f706bf2e8bc0b9a332a7bf387dd7b382551dd9e911cc17291628d","size":32344,"triangleCount":40},{"id":"collision-245","fileName":"collision-245.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-245.glb","checksum":"7a2c3144ec886694c8075159148452f3c4edabe7b10a671afaa56aaa1f73f8b2","size":40288,"triangleCount":547},{"id":"collision-246","fileName":"collision-246.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-246.glb","checksum":"ab163512bb74505aa64aa63d1f9af0e7633ceea70e6486fb444f1c9fa99084d3","size":32348,"triangleCount":40},{"id":"collision-247","fileName":"collision-247.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-247.glb","checksum":"a46fe0a53934238231c6690e4e685cdb9ea55dfe7f6e9b169a247fbeb6004704","size":33516,"triangleCount":152},{"id":"collision-248","fileName":"collision-248.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-248.glb","checksum":"1fbd82ecd6793bbb8a82acd9153d5c942ec4f1c450039dd7c4d55a4987c7909c","size":40144,"triangleCount":547},{"id":"collision-249","fileName":"collision-249.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-249.glb","checksum":"cd1b509faa3f9a624e5475f9ca4e141399c40be34c8fe07a9d750de319f38974","size":32336,"triangleCount":40},{"id":"collision-250","fileName":"collision-250.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-250.glb","checksum":"15e96fa9b5a3c082d5de5b2309366984d2560e3b8b8c3fe11293ce1d20618e89","size":32340,"triangleCount":40},{"id":"collision-251","fileName":"collision-251.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-251.glb","checksum":"8f3238c3c1c5ff59c77517726aaf4b7463e1575b1b9a465638235f03f03b60a9","size":40044,"triangleCount":576},{"id":"collision-252","fileName":"collision-252.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-252.glb","checksum":"0663fa32755b7849c16aadbbfc0f125e13ba1dfc4022e8fc4b1cf443a4698a90","size":40216,"triangleCount":547},{"id":"collision-253","fileName":"collision-253.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-253.glb","checksum":"76093402fc5228ec1968d56a42045956481eb73d935fa655744a46f36da4a1fe","size":62288,"triangleCount":2760},{"id":"collision-254","fileName":"collision-254.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-254.glb","checksum":"2ea1fba86ab99aa0873284366190f1feae8e765934c16b53afb14fc915484d3e","size":40256,"triangleCount":547},{"id":"collision-255","fileName":"collision-255.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-255.glb","checksum":"d68744e6a57f4fbeb778f3827fd9cfd507a17b6da6aacd1153ea193b614baa32","size":37496,"triangleCount":516},{"id":"collision-256","fileName":"collision-256.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-256.glb","checksum":"9401cdc5652758b2ad51c1773ec3ac0bc512f317ab82a503cd420b9d25aa613b","size":32336,"triangleCount":40},{"id":"collision-257","fileName":"collision-257.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-257.glb","checksum":"2c9f2e197519cb354eedde0bb89c82f52e8e2cfcdb1d7d841a9cf1319c6e0964","size":32336,"triangleCount":40},{"id":"collision-258","fileName":"collision-258.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-258.glb","checksum":"cd1a6b9010aa652ca112a7862e9f12ccd056776594dc9ede43bfbf1be09e4dee","size":32352,"triangleCount":40},{"id":"collision-259","fileName":"collision-259.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-259.glb","checksum":"3e5da1be189860e604cf2f640d4ce0117086a21600e7650db043a8dc3847ebc6","size":40036,"triangleCount":576},{"id":"collision-260","fileName":"collision-260.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-260.glb","checksum":"d278670a02255f8f572ee376046865b56178555b4bf8741db4951c5b7da893ee","size":40096,"triangleCount":576},{"id":"collision-261","fileName":"collision-261.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-261.glb","checksum":"a4b71da65932beacb42d277c1d707b986a7a1f5a8485e49abf4df52814282e61","size":32336,"triangleCount":40},{"id":"collision-262","fileName":"collision-262.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-262.glb","checksum":"e08493508c6f684ce27cff3e97d1068dedbcb870153a90b2c66459d9603881ee","size":32352,"triangleCount":40},{"id":"collision-263","fileName":"collision-263.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-263.glb","checksum":"738f6c8235aa83fa234ebe52381bf9410083f5825a2ea254e0e6ed20035f2c4e","size":32352,"triangleCount":40},{"id":"collision-264","fileName":"collision-264.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-264.glb","checksum":"ea80ca80764326fe5941683ad4bce91335bd25fa156a735394df0d2751c6c98f","size":40084,"triangleCount":576},{"id":"collision-265","fileName":"collision-265.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-265.glb","checksum":"583faa21f089d853ce2798f2b8845d95f02cb4a56f511b58028e83375893aaae","size":32348,"triangleCount":40},{"id":"collision-266","fileName":"collision-266.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-266.glb","checksum":"8f75d6547e8171748dc26a2a8affea72d6d6eb7f2cdac1eb38dd7ac809d7dd86","size":40084,"triangleCount":576},{"id":"collision-267","fileName":"collision-267.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-267.glb","checksum":"4ffeefd1dc7f611af453decde4261ee58df8d301b440ccbac51360f19139e798","size":33556,"triangleCount":136},{"id":"collision-268","fileName":"collision-268.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-268.glb","checksum":"22e7c9803ccf0b487eef280adbb510e2bc9232259ebe34f8fa86ba1215fce57e","size":32340,"triangleCount":40},{"id":"collision-269","fileName":"collision-269.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-269.glb","checksum":"540337252ecf03b1a27e2e71056c5e04f76a62d28e5c082afe09e80dd50106dc","size":40056,"triangleCount":576},{"id":"collision-270","fileName":"collision-270.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-270.glb","checksum":"99cb3b98164655d6436dd6cbd135874b98fd0f9c8e996981871fd9ea4cd23113","size":53868,"triangleCount":1906},{"id":"collision-271","fileName":"collision-271.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-271.glb","checksum":"4f026d91754f76eb3a759f15ac4c008a92b23b467156f48eb4de085ead67d559","size":32336,"triangleCount":40},{"id":"collision-272","fileName":"collision-272.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-272.glb","checksum":"58d483fbbab65920df93b2da17d97c65bed33f426eac0a87aec209e7ee6c90d7","size":40248,"triangleCount":547},{"id":"collision-273","fileName":"collision-273.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-273.glb","checksum":"f3669cbb9b362f35d6d4676085d9f876d360aed8d672055a44b98dda37ec9f47","size":35564,"triangleCount":318},{"id":"collision-274","fileName":"collision-274.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-274.glb","checksum":"f1b83130b4158e6df1aa4196e21d95924371c7a19f1ffeb54cc272ed57cd1c57","size":32340,"triangleCount":40},{"id":"collision-275","fileName":"collision-275.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-275.glb","checksum":"9f157067a5e4968077041676322698610b0c89da558ebca8ca9584000bf14b57","size":32364,"triangleCount":40},{"id":"collision-276","fileName":"collision-276.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-276.glb","checksum":"5835ae02d91e9ca584c91ce1fd45cab93d8afbe1d208b5f1c568feda81f54f8b","size":32352,"triangleCount":40},{"id":"collision-277","fileName":"collision-277.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-277.glb","checksum":"a85c1dea4edc9d7f96acaf15052f6b4e53f37450056095e0f165142897e87462","size":33504,"triangleCount":152},{"id":"collision-278","fileName":"collision-278.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-278.glb","checksum":"9915069cb6e1b0d4963247c81669c67050c8c31322b2ecd1b6f73d9ffe2cccab","size":32344,"triangleCount":40},{"id":"collision-279","fileName":"collision-279.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-279.glb","checksum":"ad8caa12560ce2a5ffa4846ab58e746d0a115a1df5e218ff9889e104d89a750b","size":37620,"triangleCount":516},{"id":"collision-280","fileName":"collision-280.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-280.glb","checksum":"65a3bb4403899544e76602733d79df3efbae24752cb79f808f0c4e7e9e60dc49","size":40212,"triangleCount":547},{"id":"collision-281","fileName":"collision-281.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-281.glb","checksum":"d2be0af75b19f661bfad58b43580f504fef0e82d63963e2d659d5479e343cfb5","size":32332,"triangleCount":40},{"id":"collision-282","fileName":"collision-282.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-282.glb","checksum":"aa6d1b37bbb3c64d180721b28eb25a7a732f4b1a33bb1fc87605d7099d7e1eba","size":40084,"triangleCount":576},{"id":"collision-283","fileName":"collision-283.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-283.glb","checksum":"ba153e6bfa3b5241d781c4157eb973bea979d9db803a9fe6dae10ffecdb5b4ed","size":45336,"triangleCount":1512},{"id":"collision-284","fileName":"collision-284.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-284.glb","checksum":"54ecf70b2932e1d2a25843d935ecf6d2e6b207067b88a0ed92841b6393464305","size":32336,"triangleCount":40},{"id":"collision-285","fileName":"collision-285.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-285.glb","checksum":"141a82c7f4b3f9454accef6f978a80ac912b4a4cd29c86635f875cfbb3fc4ec2","size":45416,"triangleCount":840},{"id":"collision-286","fileName":"collision-286.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-286.glb","checksum":"751ff40ea0a50dbfc6293071281494db4a9c660819a47b7243a9c7d26d7cfda5","size":32340,"triangleCount":40},{"id":"collision-287","fileName":"collision-287.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-287.glb","checksum":"b0974248547388374884fe62d6f699eb03480c7221b6b3e2f8ff609fffcdcee2","size":45248,"triangleCount":840},{"id":"collision-288","fileName":"collision-288.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-288.glb","checksum":"a2cf3187bd3b50dd104dd4a56adc899b984f3d7997e67571708233253d2edf5f","size":42024,"triangleCount":762},{"id":"collision-289","fileName":"collision-289.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-289.glb","checksum":"d3d6adb39da459950c0e02e35d6e94584cdcbb61e0120c8c8178d64fd5ca4e27","size":32356,"triangleCount":40},{"id":"collision-290","fileName":"collision-290.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-290.glb","checksum":"865e48c6777799308c4f49b5f61fb133e25fb53a49c11973c4bd9368d6e58dad","size":32352,"triangleCount":40},{"id":"collision-291","fileName":"collision-291.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-291.glb","checksum":"0069234bc074a3c528fa9ada68e1ba2ff716ec6e9c984002ac8703c875e26260","size":32328,"triangleCount":40},{"id":"collision-292","fileName":"collision-292.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-292.glb","checksum":"373cee4040bb9b9853a0117268169c144e2b20cc12fcd6078f613049e3278eaf","size":32352,"triangleCount":40},{"id":"collision-293","fileName":"collision-293.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-293.glb","checksum":"c856854b0120aa569fc9640de620322e9db2e0b7254887482fd92b9e920b6d02","size":87732,"triangleCount":6419},{"id":"collision-294","fileName":"collision-294.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-294.glb","checksum":"bdb4a45a7577fdfec0afcd0eae8bb50943ca96e7a927fc5da1c086487539583f","size":35592,"triangleCount":318},{"id":"collision-295","fileName":"collision-295.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-295.glb","checksum":"0d3348ba8d88fd8d4d6be4e0a94d4ab836b7252f4f020173e2ef804f072ef48e","size":32356,"triangleCount":40},{"id":"collision-296","fileName":"collision-296.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-296.glb","checksum":"e735edb4927e9647f2745f3ac4ede395615e065a84c7e74a333f9c108285f7b1","size":40048,"triangleCount":576},{"id":"collision-297","fileName":"collision-297.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-297.glb","checksum":"18c628a2b920db04d9c04b660e4578661bc7e95d942793d732e13134aab7b1f0","size":32340,"triangleCount":40},{"id":"collision-298","fileName":"collision-298.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-298.glb","checksum":"7ba1ab867c1f063bf4d50629eb4c9973fd675c62ed93a15dffedf515f805a8c3","size":32332,"triangleCount":40},{"id":"collision-299","fileName":"collision-299.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-299.glb","checksum":"462b5997faeb2accf41268fad7dac41178d99bf60e0af522430d7bae41004a05","size":32344,"triangleCount":40},{"id":"collision-300","fileName":"collision-300.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-300.glb","checksum":"3f442a7315bae3dddb2b253e7efb5d8fae9ff4aff2ff513e396223471fa2e6f4","size":32340,"triangleCount":40},{"id":"collision-301","fileName":"collision-301.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-301.glb","checksum":"a814bb46d34fd2964168f8e2680abc07144f6065b1d79e4fcbe47f4372793625","size":32344,"triangleCount":40},{"id":"collision-302","fileName":"collision-302.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-302.glb","checksum":"8411d359ccaba2b4c15d7410c838a27af379696996233542df655cc5e8e1e13f","size":32344,"triangleCount":40},{"id":"collision-303","fileName":"collision-303.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-303.glb","checksum":"efa10ebc7594d75683cbd3a5cf6c4bf912272be74c58f157b0bb42d48cbb4f98","size":40096,"triangleCount":576},{"id":"collision-304","fileName":"collision-304.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-304.glb","checksum":"36c83151d29b97a613f3439641a8fb5f0328e71d21eb4282e6e439333ac98627","size":32348,"triangleCount":40},{"id":"collision-305","fileName":"collision-305.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-305.glb","checksum":"2dbb038fd3fb845628e820dee05a16bafb0082a43d43103cedf4d1d57d11c6c7","size":33524,"triangleCount":152},{"id":"collision-306","fileName":"collision-306.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-306.glb","checksum":"83fc5d40c14717e6c89c7ed93c67e7681162279a27dfb5cbb8ca71edecee38ae","size":32348,"triangleCount":40},{"id":"collision-307","fileName":"collision-307.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-307.glb","checksum":"b8026309873a252273bbd3200b41d00fdd418a082d24c6b272ce90264daee192","size":40160,"triangleCount":547},{"id":"collision-308","fileName":"collision-308.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-308.glb","checksum":"74396b6c74893a59a53eee28d4b57078c8c1b349059194694c32c58f9efecf64","size":32352,"triangleCount":40},{"id":"collision-309","fileName":"collision-309.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-309.glb","checksum":"88ce301df8924fcada6c6897a4361b637467319cf09ea1161fb1414f539af101","size":45284,"triangleCount":1512},{"id":"collision-310","fileName":"collision-310.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-310.glb","checksum":"0101bd2e5106fd0dec12c645b057ab61d2592c85b87a41aab29148d1a85cd992","size":32344,"triangleCount":40},{"id":"collision-311","fileName":"collision-311.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-311.glb","checksum":"964249fe847e4ce9fd591978112a30ce03f3754daa4fc056281457aacdc701ba","size":32348,"triangleCount":40},{"id":"collision-312","fileName":"collision-312.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-312.glb","checksum":"e2c47e0fda71f3a8f17e6b3a3feaafdd6a2b9ffe9ccb289861c92a58f4fdd436","size":40116,"triangleCount":576},{"id":"collision-313","fileName":"collision-313.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-313.glb","checksum":"66fe27a92432146abe893dc4ff92bf01a241f88cdfa78c137f1ee493e985619d","size":40036,"triangleCount":576},{"id":"collision-314","fileName":"collision-314.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-314.glb","checksum":"7d43ff56cdbc8a4d9d476dd71de68a99f17d098979238ae28bd2967a8d0a2dce","size":33572,"triangleCount":136},{"id":"collision-315","fileName":"collision-315.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-315.glb","checksum":"ba237c4b88cccff4f7cfae1ea818505ead1019f1bbc2fd3041b0b96683d604a7","size":40116,"triangleCount":576},{"id":"collision-316","fileName":"collision-316.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-316.glb","checksum":"ec02653871cc19668a92324f7bc937febb4940b49dd326d003b058461ed71050","size":40164,"triangleCount":547},{"id":"collision-317","fileName":"collision-317.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-317.glb","checksum":"6b16a11754f69a6539c98c2c95ee9efc9929b798de7eb2c6e36bbea6269f3700","size":40236,"triangleCount":547},{"id":"collision-318","fileName":"collision-318.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-318.glb","checksum":"eff805ae8d07e564fcf9d477f34779aed3d8723ceac312ba59aa8e8bdf5dc00b","size":32352,"triangleCount":40},{"id":"collision-319","fileName":"collision-319.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-319.glb","checksum":"d8e2bf0e6a181cffe1fc7a85c7a409ef4f865f9b2a71faf4f04a852cef01ea62","size":32336,"triangleCount":40},{"id":"collision-320","fileName":"collision-320.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-320.glb","checksum":"0cfce715ff411051a5df2a479c4b54ed77bd4d265190ee30c588ab963bbba4da","size":45268,"triangleCount":840},{"id":"collision-321","fileName":"collision-321.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-321.glb","checksum":"92f172b772be93d6d94e38af8f9ebf1cce185571a13b111bd7ad51be80598219","size":32328,"triangleCount":40},{"id":"collision-322","fileName":"collision-322.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-322.glb","checksum":"ec3d124291e1bde19d6b95d9f727fea23aea5598e43cd5529d2474ed01ba5234","size":33536,"triangleCount":152},{"id":"collision-323","fileName":"collision-323.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-323.glb","checksum":"debe322c05f7edc5dff0ad76f4612cb426dfb6cded96a34c438aa642bda52c07","size":37584,"triangleCount":516},{"id":"collision-324","fileName":"collision-324.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-324.glb","checksum":"4b2b3f24a33ed50c15701969c630b9e290923eaff7d9237503b4562aea57a42a","size":32320,"triangleCount":40},{"id":"collision-325","fileName":"collision-325.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-325.glb","checksum":"71bc5c2b6afa6ac46ed2b6ec16904792c1ca3541555bc326aa96b5d77dd8d2c8","size":35508,"triangleCount":318},{"id":"collision-326","fileName":"collision-326.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-326.glb","checksum":"bba57ca347e0d15bcdd449d71913d7074667600ab99d741c24bad873337b4dcb","size":35596,"triangleCount":318},{"id":"collision-327","fileName":"collision-327.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-327.glb","checksum":"e1019bc716df7945b32e2cbd05ac1b6d696079a8c2fd11d6a07847a4a98960f0","size":52768,"triangleCount":2010},{"id":"collision-328","fileName":"collision-328.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-328.glb","checksum":"382e01b0f200fae1905517ba01cb91c9cd2600c41ce18c15033092cd5bd99113","size":32344,"triangleCount":40},{"id":"collision-329","fileName":"collision-329.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-329.glb","checksum":"21d61cf0f6fb480fd0a5e2f57e4b3cbb9a68d9a96a69dcff15d4d5ee18a79344","size":40152,"triangleCount":547},{"id":"collision-330","fileName":"collision-330.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-330.glb","checksum":"ba0a60f3b59aef1eab9ea9b4e9659eb085854bde5f779dd612f1f5b220068b27","size":33504,"triangleCount":152},{"id":"collision-331","fileName":"collision-331.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-331.glb","checksum":"ea819020c9c80fbde26de9f572ba76ee134b7d48198ed560f8d17e9cc9cf8f13","size":40228,"triangleCount":547},{"id":"collision-332","fileName":"collision-332.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-332.glb","checksum":"730bde1d31f6135e09bbf613580e6f333cd071676fef6c6418bc51f26670a0e1","size":40108,"triangleCount":576},{"id":"collision-333","fileName":"collision-333.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-333.glb","checksum":"8e0953f19995469366e737b91b1d268d528d4b75ddac03047410b60f8011ab39","size":40200,"triangleCount":547},{"id":"collision-334","fileName":"collision-334.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-334.glb","checksum":"12a97e54c7e1bd237df068186aa0f27ff6bfbd40e0ac81d9e45caf74d28c87ee","size":40084,"triangleCount":576},{"id":"collision-335","fileName":"collision-335.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-335.glb","checksum":"ee404d8644265ea6c84c9aea3ff428d9d598b6f9a79f07ed08a282418f7a2774","size":32340,"triangleCount":40},{"id":"collision-336","fileName":"collision-336.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-336.glb","checksum":"00c82e8472afac2c951b3eeb263ea54df5d7adc472cf9d86376b91ae333ddd19","size":40224,"triangleCount":547},{"id":"collision-337","fileName":"collision-337.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-337.glb","checksum":"4cb853b5b139b142052f4135031a409f6eca9c82c0db7bae0c7b09a4ff181edd","size":32340,"triangleCount":40},{"id":"collision-338","fileName":"collision-338.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-338.glb","checksum":"e0ddd74e7eb3aa4857fdc013860618d4c423123d0287f20f91e2d79e699497d9","size":32344,"triangleCount":40},{"id":"collision-339","fileName":"collision-339.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-339.glb","checksum":"1b1254bbbea20598363690c4a6b868ad32c0851bad2e3e6014d280cc43eb7d18","size":35612,"triangleCount":318},{"id":"collision-340","fileName":"collision-340.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-340.glb","checksum":"4c7af0d692096bf994d457d9d1b3f93936ec822318e7d90f1c8cf3de360a1c3c","size":32332,"triangleCount":40},{"id":"collision-341","fileName":"collision-341.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-341.glb","checksum":"ea1fc4576b9a75d53ede59bca70fd75637f5ba946f3b61550c5cecf7b1f3ec60","size":40212,"triangleCount":547},{"id":"collision-342","fileName":"collision-342.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-342.glb","checksum":"805a31aef8c7e52c412cf7e397e2588fddd7ba7cdaea191d1af59e8e4006a590","size":32336,"triangleCount":40},{"id":"collision-343","fileName":"collision-343.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-343.glb","checksum":"766e800425cc07eeb645ea63b992315aa90b3d8408c4d8b885467c66e522fdbd","size":40144,"triangleCount":547},{"id":"collision-344","fileName":"collision-344.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-344.glb","checksum":"9141db18bb1de097abd8c1b8812327cf01960991c4b9cb81e75d6fdb8a450e68","size":33544,"triangleCount":152},{"id":"collision-345","fileName":"collision-345.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-345.glb","checksum":"50d391352ce6cfec9463ac93990ebd4bcc976ce6a2d51a2c2f4bda0548649588","size":33572,"triangleCount":136},{"id":"collision-346","fileName":"collision-346.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-346.glb","checksum":"c98196af62b284bbb37ce980f25f92fad0eadd7338b9a20c2eac346874f4579a","size":32340,"triangleCount":40},{"id":"collision-347","fileName":"collision-347.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-347.glb","checksum":"f65513a62829e239cd182473b036b2463d0ce6fcba3816298abb419eb758cb46","size":37612,"triangleCount":516},{"id":"collision-348","fileName":"collision-348.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-348.glb","checksum":"79262cdff765253b50d6fb4cefeec1a90a39555de376a7b45bea06ed2fc92d0e","size":42032,"triangleCount":762},{"id":"collision-349","fileName":"collision-349.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-349.glb","checksum":"4aac9ef6ed578e627284361cee486ec4d9b3a77af7814cc24516f38876396793","size":40096,"triangleCount":576},{"id":"collision-350","fileName":"collision-350.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-350.glb","checksum":"f44bfed82178e5551842b4f17e9cb7410c19c831938db47cf6911ece415d9294","size":32348,"triangleCount":40},{"id":"collision-351","fileName":"collision-351.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-351.glb","checksum":"70cf02fa313f8d5a12aae968a71231eff6b274b8d528f96cf027c217698a0a8d","size":32340,"triangleCount":40},{"id":"collision-352","fileName":"collision-352.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-352.glb","checksum":"87bfcdfc036e7068e594ea12c1f27fe082159620c650bd6333632ed18abeabd4","size":40200,"triangleCount":547},{"id":"collision-353","fileName":"collision-353.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-353.glb","checksum":"049f15d159886bbebeb4340a4bc4a58f7ebd18892341b91e1986083513e206f1","size":32344,"triangleCount":40},{"id":"collision-354","fileName":"collision-354.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-354.glb","checksum":"c6df78f49f67bbfae677472bc674bbc1e412d35596c3f3c86daa5b87ad1b22e8","size":32332,"triangleCount":40},{"id":"collision-355","fileName":"collision-355.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-355.glb","checksum":"2390d1efc3ba3df9fbf1b4fc32043318357c0fcb864c57c5491291dfd9a8b19c","size":78044,"triangleCount":5111},{"id":"collision-356","fileName":"collision-356.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-356.glb","checksum":"5f19155f1459a1589fab1b11e2461e2e631b9729a5be538659a0c02340269f92","size":52784,"triangleCount":2010},{"id":"collision-357","fileName":"collision-357.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-357.glb","checksum":"5b15258cde0639d7918a1e1afa40b492a2391bc8eabc27208d94df3a05600923","size":32348,"triangleCount":40},{"id":"collision-358","fileName":"collision-358.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-358.glb","checksum":"d98b4c60af860339961abb2c214df3146ee6512ec48391b9c4f11c9d7e624b59","size":40152,"triangleCount":547},{"id":"collision-359","fileName":"collision-359.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-359.glb","checksum":"9780eda8927302d54956a96aee20055005e20f840c86f6dea9c1c582bfca5fc7","size":33520,"triangleCount":152},{"id":"collision-360","fileName":"collision-360.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-360.glb","checksum":"b871672129404b814cd1a1c9a59f383a51781b6a8695cd0fa811da1f82d5c5d0","size":32332,"triangleCount":40},{"id":"collision-361","fileName":"collision-361.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-361.glb","checksum":"604ed854ef126f4f6a0dbd34583c4563b1a519d9af458180fc5f53f6dda50b7d","size":32336,"triangleCount":40},{"id":"collision-362","fileName":"collision-362.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-362.glb","checksum":"f372b3c25734cdb9a84b5d0a8260b0f2b90f71328d1c3d3c753cf147aed37712","size":45248,"triangleCount":840},{"id":"collision-363","fileName":"collision-363.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-363.glb","checksum":"9b92df0ee08453a0ef6c60b423119b3d820af1b8e1ad58c099f2e7dd36349058","size":32328,"triangleCount":40},{"id":"collision-364","fileName":"collision-364.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-364.glb","checksum":"0de5524230c01c35b90adcb30e563e3b744691b3af0085a29d17e7e4b2142dd0","size":32348,"triangleCount":40},{"id":"collision-365","fileName":"collision-365.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-365.glb","checksum":"04bcb26fabb470071bb1a8955f96eb9452e2895cc254dd73de23b95802b75596","size":33508,"triangleCount":152},{"id":"collision-366","fileName":"collision-366.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-366.glb","checksum":"0d1af9d863284e2cbf787979f5338ef33ad4e9fb944a848fd262221d905c2a80","size":32348,"triangleCount":40},{"id":"collision-367","fileName":"collision-367.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-367.glb","checksum":"1857e133c78040e75f0e3ddfe0a9df3d7e9727cf69871bad2b7e7a7c2b1b0476","size":32344,"triangleCount":40},{"id":"collision-368","fileName":"collision-368.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-368.glb","checksum":"be163bd03fd6598f685c2356a481d9f059bddfec1b043d1f896176d658fc244b","size":32348,"triangleCount":40},{"id":"collision-369","fileName":"collision-369.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-369.glb","checksum":"cd043c0b3f4afcd37a2eee7564b25485a1ff2af4b9d7a8cd36c8622064e77612","size":32336,"triangleCount":40},{"id":"collision-370","fileName":"collision-370.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-370.glb","checksum":"f2f78f1d111ac18c8cdf8c4623386d5807c1a1ad2c46547f8f847d2f440a2015","size":32332,"triangleCount":40},{"id":"collision-371","fileName":"collision-371.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-371.glb","checksum":"1ac47125d7c733cc8106e0bff140c7a8567a5c030ef56539074cfc38b92e1b40","size":40152,"triangleCount":547},{"id":"collision-372","fileName":"collision-372.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-372.glb","checksum":"7531ee8096e1d4c759286e1a085d4fba934e5682816f8d9cd9668856b4054e48","size":32332,"triangleCount":40},{"id":"collision-373","fileName":"collision-373.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-373.glb","checksum":"572430c882b5bce2a9b141d947f7b08ff37579d058e5aaad2564c55518b19e46","size":32344,"triangleCount":40},{"id":"collision-374","fileName":"collision-374.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-374.glb","checksum":"312b6a20d15a3dbaded4e3181d7209bb37e936f76d36f8ce06078aa5579fbc9b","size":32348,"triangleCount":40},{"id":"collision-375","fileName":"collision-375.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-375.glb","checksum":"07a1efb775d3a6f2109326a0f55687721f844c7b43e0d06bff953d77444fbbd2","size":40000,"triangleCount":576},{"id":"collision-376","fileName":"collision-376.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-376.glb","checksum":"c869e1d86a828673f130ea77b4d544c2569587335ff9b0c73b5f294397c9942d","size":32356,"triangleCount":40},{"id":"collision-377","fileName":"collision-377.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-377.glb","checksum":"df46e3dd2d958f3c6781ebd3f66da6077e2430dea2d3bc7c8aa1706a4ed03b09","size":32352,"triangleCount":40},{"id":"collision-378","fileName":"collision-378.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-378.glb","checksum":"31e6b184415f233a6ea9ae60049198c0ff31249585f35adaac1fd453139327eb","size":40056,"triangleCount":576},{"id":"collision-379","fileName":"collision-379.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-379.glb","checksum":"caf3c5f76091ce296bd7dce8f89565608b6ab4d8d8b6b4d460be9af9c4dacf47","size":40088,"triangleCount":576},{"id":"collision-380","fileName":"collision-380.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-380.glb","checksum":"730d8568ea6ec9da71738fac0b2d7126c7c6983ee583056cfcac3434d3a4e389","size":40148,"triangleCount":547},{"id":"collision-381","fileName":"collision-381.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-381.glb","checksum":"5b39ea1d93f86a97e23ae10c268744fb83c421252716ea8febeff5971eeb7da4","size":32344,"triangleCount":40},{"id":"collision-382","fileName":"collision-382.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-382.glb","checksum":"ae22bc055e0ed83773d4438c844e7a0a4289d56b6dc3b329b5ecb04393277e4c","size":32336,"triangleCount":40},{"id":"collision-383","fileName":"collision-383.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-383.glb","checksum":"6fb0c881acca00a5076311346966f689716ddc0f9a5ea3c342003329d006da30","size":40092,"triangleCount":576},{"id":"collision-384","fileName":"collision-384.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-384.glb","checksum":"e4ecc7446293c5e18e02c1dc878c86e7096f07ae541617bd4c9e8d3c2b20eda1","size":35608,"triangleCount":318},{"id":"collision-385","fileName":"collision-385.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-385.glb","checksum":"54bbc60224eb3ec37cef43f0d9190a61fe24c67e9e06e375b10c37235a8e32e0","size":45220,"triangleCount":840},{"id":"collision-386","fileName":"collision-386.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-386.glb","checksum":"f9045c88715b9748b8bd03a886b53f23e0c9ad14a64652ebc9a0a718738d095a","size":32344,"triangleCount":40},{"id":"collision-387","fileName":"collision-387.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-387.glb","checksum":"96d380758f0af6daa46556f7e4b23264f6b3d3501495e978f876aef18e29f990","size":37540,"triangleCount":516},{"id":"collision-388","fileName":"collision-388.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-388.glb","checksum":"40c420b5328c751f347309b3ae1ee9af7f2ff17fcb7800626d6ea02dc2115c34","size":40156,"triangleCount":547},{"id":"collision-389","fileName":"collision-389.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-389.glb","checksum":"88e3a3ba1d19052fd9549ac72b01d86156b6450d281511afdf95f9d4c5d8ed3c","size":32340,"triangleCount":40},{"id":"collision-390","fileName":"collision-390.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-390.glb","checksum":"1985f71611645d960716ea5302b19144058ec8831589298903cbcc2950ceacb6","size":32324,"triangleCount":40},{"id":"collision-391","fileName":"collision-391.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-391.glb","checksum":"6f51f47a5602cbd13d67fa5d91f4fccbdc0e73704702698169270890e590cacc","size":32344,"triangleCount":40},{"id":"collision-392","fileName":"collision-392.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-392.glb","checksum":"022404a25bcb642444f903cec6b0247f6b70aa9609e7eae33d3437fd635ae349","size":32344,"triangleCount":40},{"id":"collision-393","fileName":"collision-393.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-393.glb","checksum":"d72841aaa5216d399b1c976ef0bb6ca947c74e80a1b1cc9a023053e59a7472b0","size":32340,"triangleCount":40},{"id":"collision-394","fileName":"collision-394.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-394.glb","checksum":"7b028c1ed9f4b1c0867a1ee89972a641b8356b141128d7015109155d40f4747e","size":48236,"triangleCount":1770},{"id":"collision-395","fileName":"collision-395.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-395.glb","checksum":"913bcc7340a821603045f752f19efc8bf50e299e566d5866f0c1c5261bdeb5f2","size":53900,"triangleCount":1906},{"id":"collision-396","fileName":"collision-396.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-396.glb","checksum":"26c1d5c99600512adbce38937ef69cb3bbc02f41606c0798572d2d19e5ad0ecb","size":32328,"triangleCount":40},{"id":"collision-397","fileName":"collision-397.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-397.glb","checksum":"c296fd370d88966a81e019d8ef86c5ee4032d88bb3039e40bbef3a5d3c116a4c","size":40192,"triangleCount":547},{"id":"collision-398","fileName":"collision-398.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-398.glb","checksum":"a0e8aea92aaa57ad2fadffdcbf52a70b789c0b3a2b182d8771efc8bbb8b922d3","size":40144,"triangleCount":547},{"id":"collision-399","fileName":"collision-399.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-399.glb","checksum":"a66e3635359f398bd0e645604cc3f6ec9ba031faabc5e88c61b4cc65fa75394f","size":40200,"triangleCount":547},{"id":"collision-400","fileName":"collision-400.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-400.glb","checksum":"e265367e47415b70e3130a3df1be5c46fa0f4e1ca49f956e88e38c01cf41b7c7","size":32344,"triangleCount":40},{"id":"collision-401","fileName":"collision-401.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-401.glb","checksum":"e9f52b994d1749e36bde5b4bc162b31ab0df3e686305eb75cc68674fbd1ce4ea","size":32340,"triangleCount":40},{"id":"collision-402","fileName":"collision-402.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-402.glb","checksum":"147f7868df74fcf33189399b5674cb7f978afd42a63f821acb9cc56218e6aeaf","size":33524,"triangleCount":152},{"id":"collision-403","fileName":"collision-403.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-403.glb","checksum":"f02e6df156ae3e72d43e00f5dd063cf72b8187b363ad6161519937e812ab533f","size":50132,"triangleCount":1508},{"id":"collision-404","fileName":"collision-404.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-404.glb","checksum":"de1d9b18c3e851e42aacd3a95a36b03eefefffca23623e28101b883fa4f0aa3d","size":32344,"triangleCount":40},{"id":"collision-405","fileName":"collision-405.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-405.glb","checksum":"f63680ad6d4e29b906f8b6a20f1fdac00d1791692942956a70704044a6faea7f","size":32320,"triangleCount":40},{"id":"collision-406","fileName":"collision-406.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-406.glb","checksum":"ce7188c577a745b19b9500148362d773a339f3160b8600e5301e83832e2b8187","size":32340,"triangleCount":40},{"id":"collision-407","fileName":"collision-407.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-407.glb","checksum":"5db4df9af79a995bcfa304b51aff2acb76172cb425303cf1dbdd147f2073457d","size":40196,"triangleCount":547},{"id":"collision-408","fileName":"collision-408.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-408.glb","checksum":"a4c26f90a77d26e1797a34528950b32667d4d3b6c4f2e46d36aff7ca4707ca67","size":32340,"triangleCount":40},{"id":"collision-409","fileName":"collision-409.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-409.glb","checksum":"cba0ed65a27d0f17cb0e626fbcb26cd7dd921eb3dbb6e212e931cb09a2dd791e","size":32336,"triangleCount":40},{"id":"collision-410","fileName":"collision-410.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-410.glb","checksum":"08e55de760f231ecf8c382265a202f3d2f6bf989b5d90017370d088d89d8d301","size":32344,"triangleCount":40},{"id":"collision-411","fileName":"collision-411.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-411.glb","checksum":"966474cb1cbecbf4a5c2235ab58fa044d7d766e3f23811d755e699efc718131a","size":40308,"triangleCount":547},{"id":"collision-412","fileName":"collision-412.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-412.glb","checksum":"21a5066f7979a44aaed7d843a7e7c6c5812f4770b9e88bfb11ad540f4627e3d1","size":40080,"triangleCount":576},{"id":"collision-413","fileName":"collision-413.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-413.glb","checksum":"a1b6d64e60f7cd1ea123a03d8cd4d530e4d717c4b507f15d5a1584d045bb7f23","size":40080,"triangleCount":576},{"id":"collision-414","fileName":"collision-414.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-414.glb","checksum":"b82fca77127fdbec877ba843a8ba8948f192261af89ca1ac79c6a5502cc827ea","size":32336,"triangleCount":40},{"id":"collision-415","fileName":"collision-415.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-415.glb","checksum":"99bcc2e581f2966e2d040428d0dcb8700192da059d8cdd81025624eba340162b","size":40100,"triangleCount":576},{"id":"collision-416","fileName":"collision-416.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-416.glb","checksum":"694ce78d52f9721663e2398847a3fb4c30d89485b7af70162bfa1939f096dffb","size":32348,"triangleCount":40},{"id":"collision-417","fileName":"collision-417.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-417.glb","checksum":"350b1cd71fc3e980bbbf8dff7ff83ffcc09a4834b0eec4d952b83aea5578310f","size":32336,"triangleCount":40},{"id":"collision-418","fileName":"collision-418.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-418.glb","checksum":"aa7fdad38be264cc5ed08c51247e7e44dc85b113d9cda65265faac027ca5a106","size":32340,"triangleCount":40},{"id":"collision-419","fileName":"collision-419.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-419.glb","checksum":"a0b4177e73d8b7c3da4a8fc2e36ecf3ab3c33da47e79a034fdb31c7b9d881255","size":32340,"triangleCount":40},{"id":"collision-420","fileName":"collision-420.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-420.glb","checksum":"38876960077620398871d30fa0ba3ece4784b15d5ba4dea0f96fde96439cdf6c","size":40128,"triangleCount":547},{"id":"collision-421","fileName":"collision-421.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-421.glb","checksum":"69924012cbb454262278b78c7dc53bb718b327415dc0917ae1165bf27c2ff621","size":32344,"triangleCount":40},{"id":"collision-422","fileName":"collision-422.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-422.glb","checksum":"7d80045d73ab44bf4f69fa4bd7951d581778e35da31ac2d0c362eb76efeb1980","size":32348,"triangleCount":40},{"id":"collision-423","fileName":"collision-423.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-423.glb","checksum":"fad4377a3f82b156bcf2c9b4dcfb2cefa04a5cd5cc8cb6772df50ce940d10d4f","size":42208,"triangleCount":762},{"id":"collision-424","fileName":"collision-424.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-424.glb","checksum":"6195017bfd6837c4402e18af5957707b55ff2482002f0fc1c3612430c7f55d06","size":32348,"triangleCount":40},{"id":"collision-425","fileName":"collision-425.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-425.glb","checksum":"7e2f90a72df2e7a0195c5b82c2336a7a18dfab493a6e49102ff03c0a9fca7ae0","size":32352,"triangleCount":40},{"id":"collision-426","fileName":"collision-426.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-426.glb","checksum":"ff25f21ada6e8fc0c60a6d5cc345b0f7891bb2be3db1a1fc83ec13415e13001c","size":32344,"triangleCount":40},{"id":"collision-427","fileName":"collision-427.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-427.glb","checksum":"4a3e1c113747b4fe5739025b050de3a7a3210cf26c0bd4c36b91535f3aaa1a9d","size":98172,"triangleCount":5630},{"id":"collision-428","fileName":"collision-428.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-428.glb","checksum":"734f49d9d741e54aaff49b43006f51347af42b10c89ffb840fc31a79a6a5d093","size":35576,"triangleCount":318},{"id":"collision-429","fileName":"collision-429.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-429.glb","checksum":"750d1bc74167dda9ebb2981ab596c32b6be3fb37f3d5876f175bf9f7c0541cff","size":32344,"triangleCount":40},{"id":"collision-430","fileName":"collision-430.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-430.glb","checksum":"f0915582ad281ef10c1abf638ee547036e60f37ced01f11a3deb60b81cc98d38","size":45280,"triangleCount":1512},{"id":"collision-431","fileName":"collision-431.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-431.glb","checksum":"846d3b3c12b821af18cb599894fe5ea29d35479b18646372f57f3dd5b0b7e168","size":32352,"triangleCount":40},{"id":"collision-432","fileName":"collision-432.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-432.glb","checksum":"90830e7290b76456b0c4d4d79fb5645f78f09078cf03a32db6ea96fdf6ad2d7b","size":40204,"triangleCount":547},{"id":"collision-433","fileName":"collision-433.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-433.glb","checksum":"1ce068b986992974a23a16f1ad37edac2c9f21b665c33eb78300163806c464e5","size":32336,"triangleCount":40},{"id":"collision-434","fileName":"collision-434.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-434.glb","checksum":"96dcbcb41f723138cedaa2066376775ab61b7a5b40fc42a9a23ee92c6cc8576b","size":40084,"triangleCount":576},{"id":"collision-435","fileName":"collision-435.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-435.glb","checksum":"8556920274348626e1ef2ccf50fdf72358719f11acd679e3058b8301871872ff","size":33568,"triangleCount":136},{"id":"collision-436","fileName":"collision-436.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-436.glb","checksum":"7cc17c169257a1aea10ed899f9950f053f5ddd62d58db0cf6055b93d58de8208","size":32324,"triangleCount":40},{"id":"collision-437","fileName":"collision-437.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-437.glb","checksum":"529c8763e2956ede02a2cff8fee4680a4a79dc518afa10642d0b6bdf241bc7c1","size":34140,"triangleCount":192},{"id":"collision-438","fileName":"collision-438.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-438.glb","checksum":"6834bd104937f841793bd7344b61641cc871bf83ae6393b7501acd1045ac25f5","size":45240,"triangleCount":840},{"id":"collision-439","fileName":"collision-439.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-439.glb","checksum":"55c4ffca87e978b13bd9cf9d6fe643cf978d84f196a699c42bf69b1975dc5446","size":32348,"triangleCount":40},{"id":"collision-440","fileName":"collision-440.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-440.glb","checksum":"d58c01cb5cbbd7502fc5fc1c8aedd81ae15dd0ea770b3fdc2c507400fdf3d933","size":32344,"triangleCount":40},{"id":"collision-441","fileName":"collision-441.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-441.glb","checksum":"93b216a9d9b15cd5c29e1a30847e9f0804dd5bd08bcd9dd3d474d62b1ed654ba","size":35628,"triangleCount":318},{"id":"collision-442","fileName":"collision-442.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-442.glb","checksum":"24b593e0dce8b505b5bedd855816ef6df6bb036ec1ea9530fcbe7abe8f2dc1b8","size":32332,"triangleCount":40},{"id":"collision-443","fileName":"collision-443.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-443.glb","checksum":"d212debf456e708da0420a929d8a879dc309824a747bcaca5fed5a69b0a79fa1","size":32336,"triangleCount":40},{"id":"collision-444","fileName":"collision-444.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-444.glb","checksum":"dae9881ea5cf3d496ff4f4d8605b10c55ddaf34e2a529c61e9a398482ded642b","size":53840,"triangleCount":2288},{"id":"collision-445","fileName":"collision-445.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-445.glb","checksum":"d99ffc732758106a9e06cbe868d4ba40120ff8b26da3f74814428002862607e4","size":33588,"triangleCount":136},{"id":"collision-446","fileName":"collision-446.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-446.glb","checksum":"ac41f7a3dffb055ab299f6397dfb33d8c23815d0b431f426f8efbda42125992b","size":32352,"triangleCount":40},{"id":"collision-447","fileName":"collision-447.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-447.glb","checksum":"23dba50af74ff87d92ad442e575bfc7626ba3836030ce09877f82100b14f0de1","size":45260,"triangleCount":840},{"id":"collision-448","fileName":"collision-448.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-448.glb","checksum":"6637331e36c8ed82b97c20e670e35f853ca83929487bd38ef60c53a4f27d3b2a","size":32340,"triangleCount":40},{"id":"collision-449","fileName":"collision-449.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-449.glb","checksum":"fc37632f8475d4a79b67a368b467e64b72b99abd22129322dd4e03095e24ed23","size":34144,"triangleCount":192},{"id":"collision-450","fileName":"collision-450.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-450.glb","checksum":"17145b51f4b1709e0b9bbb05c3e9d4dc8077734cfe19502eaeb602de94d0a153","size":40152,"triangleCount":547},{"id":"collision-451","fileName":"collision-451.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-451.glb","checksum":"08478b4f74f9cc883dc95e7bcd26d42be09bbe3e15869b60a41acf8453248a1d","size":32328,"triangleCount":40},{"id":"collision-452","fileName":"collision-452.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-452.glb","checksum":"2cdadb38ca8c1fa21d31e931ccba88ad0e0a914a1573e6d4bfb1826e412301fc","size":32344,"triangleCount":40},{"id":"collision-453","fileName":"collision-453.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-453.glb","checksum":"d948eb2ac12b92ce3c65cd80c5f56f42ab27817743c66a218ea668d02555368d","size":32332,"triangleCount":40},{"id":"collision-454","fileName":"collision-454.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-454.glb","checksum":"8f95bd042da280e3aab2f595d658e6e8686f5eeb169e2608da2dfc486c26af48","size":40212,"triangleCount":547},{"id":"collision-455","fileName":"collision-455.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-455.glb","checksum":"e8a77b64b2f6cb427d503ce110d0399cc6c30b6a80666d42691d910c0ea37e25","size":32344,"triangleCount":40},{"id":"collision-456","fileName":"collision-456.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-456.glb","checksum":"d2d35d64d2c541ffeb53d96e883c716fe06c18c6565d08c59236e39e5b4193d4","size":33552,"triangleCount":136},{"id":"collision-457","fileName":"collision-457.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-457.glb","checksum":"f4760fcaa266ad7e90505000b47da748f5d0c8ff5285b85b1375544ecf14a7c8","size":32344,"triangleCount":40},{"id":"collision-458","fileName":"collision-458.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-458.glb","checksum":"7a4959236114e64a6fe8c14f842c109a34587c998da71c88a0ff43ab64852fec","size":40084,"triangleCount":576},{"id":"collision-459","fileName":"collision-459.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-459.glb","checksum":"0e0c2fafb9c6823ea48617bb74a69dbeee621906e55f56295eedc1dc28e6cf24","size":35512,"triangleCount":318},{"id":"collision-460","fileName":"collision-460.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-460.glb","checksum":"07cf9bbe0d2f84b171ee8224dcc5d9171bf9c2e2537230f2cac51d83104542dd","size":32348,"triangleCount":40},{"id":"collision-461","fileName":"collision-461.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-461.glb","checksum":"89f5e3a2fba572e04e9a36ff2c2759330ea5c1e9a19bf5d1ef2ce9f40b11cba2","size":32340,"triangleCount":40},{"id":"collision-462","fileName":"collision-462.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-462.glb","checksum":"fdfd7204fc64d81ef7ea96286dda833485b2df55875b4960ba1f8f1579786dee","size":70676,"triangleCount":2609},{"id":"collision-463","fileName":"collision-463.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-463.glb","checksum":"66ed2ad6036326f8a42b2a81fbc5f976dde341d04a92f632d9a40dcf6e14a9d5","size":37560,"triangleCount":516},{"id":"collision-464","fileName":"collision-464.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-464.glb","checksum":"6bcb42265e9b5a5582d69e4bb917c50c6c8733d31fc408a34d4ee8c05cffb85e","size":40244,"triangleCount":547},{"id":"collision-465","fileName":"collision-465.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-465.glb","checksum":"f66fd9f2b4b4a3397d6ac41701d7f90b7fe83a0346c0d2e0632224daf5f8be2e","size":40108,"triangleCount":576},{"id":"collision-466","fileName":"collision-466.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-466.glb","checksum":"e88aa77da0a365620e362d638d14a79ff83dae3fd3718ee502bdebc5ed65fe97","size":40232,"triangleCount":547},{"id":"collision-467","fileName":"collision-467.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-467.glb","checksum":"cdfc291a44f5260fafac01135ce0ae2037878860d5587d806a55235371243622","size":32332,"triangleCount":40},{"id":"collision-468","fileName":"collision-468.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-468.glb","checksum":"ef06811e683f607dea089c0e6e3f2bcb2cabbfa56b5e50b9f941ae155c7ae54e","size":40080,"triangleCount":576},{"id":"collision-469","fileName":"collision-469.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-469.glb","checksum":"55b7a428313341bb57eed975fd59087a512cacc9f1e9aa700a16c34f526ecd27","size":32344,"triangleCount":40},{"id":"collision-470","fileName":"collision-470.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-470.glb","checksum":"6123d5f3ec1c3be100a0f944d173c4b60429637b802758d2bd3aae0fda2138df","size":32348,"triangleCount":40},{"id":"collision-471","fileName":"collision-471.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-471.glb","checksum":"2a06dd3080e887eee6705bfa4065b56f87d5a608eb74897fa78824ef9e8c1e8d","size":48320,"triangleCount":1770},{"id":"collision-472","fileName":"collision-472.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-472.glb","checksum":"7c873fbddc2f659268c338bf2027fe988c211fa90c4e0172939a640222c55c67","size":40232,"triangleCount":547},{"id":"collision-473","fileName":"collision-473.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-473.glb","checksum":"4368d5f2047e1fe04af585fba60905849e0869aa992c4be0fa534a197cbd49d4","size":40152,"triangleCount":547},{"id":"collision-474","fileName":"collision-474.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-474.glb","checksum":"051948efa718f1d48c9b137b92c6af72b24b218cc9a5a0b7fedce9cc45b6b576","size":42024,"triangleCount":762},{"id":"collision-475","fileName":"collision-475.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-475.glb","checksum":"887ddb91453168157fe93c273e9d5eb170582227b1c26723ea8743b2767bcbaa","size":32332,"triangleCount":40},{"id":"collision-476","fileName":"collision-476.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-476.glb","checksum":"0acb69096d41b9e6b042e1f734004613b7625f62dd69a1f300d6cdcc256f1eeb","size":32352,"triangleCount":40},{"id":"collision-477","fileName":"collision-477.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-477.glb","checksum":"9bbc8404d680bf5fedacf8f002cffd3ceb3fc4b436b2d9ec6c293a68e4e3cc5f","size":37580,"triangleCount":516},{"id":"collision-478","fileName":"collision-478.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-478.glb","checksum":"187a7214dd26ed64b3ef856f256a147c6d881572a4a94e24cd0ec8dac7ba0c06","size":40064,"triangleCount":576},{"id":"collision-479","fileName":"collision-479.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-479.glb","checksum":"e3626b2988a2f6dbe592e9b4a7a64e0f6f0e85bce5d0cca4d102dc6b7c081bf0","size":53880,"triangleCount":1906},{"id":"collision-480","fileName":"collision-480.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-480.glb","checksum":"a13da12fd80f4d8b31f449820b57c2533e746172271a81e0b124615dd73c7941","size":34088,"triangleCount":192},{"id":"collision-481","fileName":"collision-481.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-481.glb","checksum":"21280f451b418667ba66df78d8fd1d4e59cb7962bf5a086feb83c8e0a96819f4","size":62432,"triangleCount":3260},{"id":"collision-482","fileName":"collision-482.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-482.glb","checksum":"b8af7d681df0147f1a511331dbbfd12d63aadfd0c4702acd79a08c804fb2774f","size":40248,"triangleCount":547},{"id":"collision-483","fileName":"collision-483.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-483.glb","checksum":"83d8736e95e064574d36364475f50c25bb5fa649c32bc1867cb47a78458af291","size":62428,"triangleCount":3260},{"id":"collision-484","fileName":"collision-484.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-484.glb","checksum":"dfa59f275d701e37582139681f163cf6eea30511890ce367ed3abb90b6fafee3","size":32328,"triangleCount":40},{"id":"collision-485","fileName":"collision-485.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-485.glb","checksum":"49c474d2f108ef5f12b394a362b1fbc68fd3995133ef46e16b7e0be08de4fc60","size":32340,"triangleCount":40},{"id":"collision-486","fileName":"collision-486.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-486.glb","checksum":"4179fbe6a5bfb9586d64a40246a93c2bd70aae1efaeed18caa9c1e5e56ccfe2f","size":32340,"triangleCount":40},{"id":"collision-487","fileName":"collision-487.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-487.glb","checksum":"7a2ca6e71187a4220a195c52003a009fe29dcac37ead3273722e5c207b31dab8","size":32344,"triangleCount":40},{"id":"collision-488","fileName":"collision-488.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-488.glb","checksum":"6b9e13823a90d0f04b7d00897df07ef1b18ebc1ff818f8f76912f25de7f7addc","size":40080,"triangleCount":576},{"id":"collision-489","fileName":"collision-489.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-489.glb","checksum":"790b7256ec2e0ac1506c13852d7149c8afb6ad5f329724ac35eec38782a43dc6","size":40100,"triangleCount":576},{"id":"collision-490","fileName":"collision-490.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-490.glb","checksum":"8508413a73a597352846d3ea115d54da7f091b9525a7c55511ade70a4af7cc2d","size":32344,"triangleCount":40},{"id":"collision-491","fileName":"collision-491.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-491.glb","checksum":"be0c01c362a6e805fa51497f2942581461443dbc888e76397443cd9a1633d30a","size":40100,"triangleCount":576},{"id":"collision-492","fileName":"collision-492.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-492.glb","checksum":"9ff82bd854ef523a54cf9bec25c92283d3f79efc5b0485a7ed67dd3b0ebfda40","size":33572,"triangleCount":136},{"id":"collision-493","fileName":"collision-493.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-493.glb","checksum":"e0c3230b2ff449e8e020446bcf4f016991553d69468d48586d54925fc44d848b","size":32332,"triangleCount":40},{"id":"collision-494","fileName":"collision-494.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-494.glb","checksum":"a246cb99c63dee45ee4789083dbcd7b3f716882f48154edc68f58eb5150ddacc","size":32332,"triangleCount":40},{"id":"collision-495","fileName":"collision-495.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-495.glb","checksum":"d1ea99dcc62ad4a388c38c0283fc82a43d9384c3bb6ebcf2e829c8094c5be270","size":35632,"triangleCount":318},{"id":"collision-496","fileName":"collision-496.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-496.glb","checksum":"24349fac7db58f482e9438a3fdee70f4690c54376786071f6fd04793d6919dbb","size":32332,"triangleCount":40},{"id":"collision-497","fileName":"collision-497.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-497.glb","checksum":"36b3ab1550e93c930aeadc5789f361d38f89d05859c0383a053d40773b97c28b","size":32344,"triangleCount":40},{"id":"collision-498","fileName":"collision-498.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-498.glb","checksum":"bf9e1cf750aef5d5aef68398efd8a4a158f0bfeccbb339fa6f233901866fd6ec","size":33580,"triangleCount":136},{"id":"collision-499","fileName":"collision-499.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-499.glb","checksum":"114de55fdd713ef824036e1c16b11836c50636b3777ff9f91d59f1041a557323","size":32348,"triangleCount":40},{"id":"collision-500","fileName":"collision-500.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-500.glb","checksum":"6d0016c9194e4dff83224f05b32989b03228d27c17b35deb92a8e63c5823dabc","size":53932,"triangleCount":1906},{"id":"collision-501","fileName":"collision-501.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-501.glb","checksum":"8654302e53c1729b8d45ab06abb79bc4386c59664e471af13c13f32e2a858ac3","size":40176,"triangleCount":547},{"id":"collision-502","fileName":"collision-502.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-502.glb","checksum":"70abc34381ae40e9f1cca08d0acdbe205585da3f1551117ecf3f7f4f65526551","size":53852,"triangleCount":1906},{"id":"collision-503","fileName":"collision-503.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-503.glb","checksum":"f16b960a74264181b0536ae9c363de7398e16a8e7ea8e774d53589c15fd46a31","size":45268,"triangleCount":840},{"id":"collision-504","fileName":"collision-504.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-504.glb","checksum":"c49b48570aeaf793490578959f5e25dccb47d36aff3191e059173139d3243688","size":32336,"triangleCount":40},{"id":"collision-505","fileName":"collision-505.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-505.glb","checksum":"1940a4d1fe1e8b079c11add0258d5ade1fc4e3782cfc7a828177ed72d2c5cb63","size":37580,"triangleCount":516},{"id":"collision-506","fileName":"collision-506.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-506.glb","checksum":"b4571cab06b2e497328f78b30bb16ed4d3fa9fa23d2cf9740a4cb8dab812648d","size":32344,"triangleCount":40},{"id":"collision-507","fileName":"collision-507.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-507.glb","checksum":"1c8d84aeeb2f99e25d26a5369dd513e4df4196b1fc03549763c8a3beb879214c","size":40048,"triangleCount":576},{"id":"collision-508","fileName":"collision-508.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-508.glb","checksum":"c80ff19cb4dfb249f3881bba725a808ecff7e1e59d693aee24393f1999c0aabd","size":40156,"triangleCount":547},{"id":"collision-509","fileName":"collision-509.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-509.glb","checksum":"408089fb2fdd68df10779e7576a1f18cec5d9b56cc0b41328783ab8284c54a34","size":32344,"triangleCount":40},{"id":"collision-510","fileName":"collision-510.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-510.glb","checksum":"e8d086a689e2578a64f35bc5195fd8e07750b7d4c4f94bd339c0a76698315626","size":32336,"triangleCount":40},{"id":"collision-511","fileName":"collision-511.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-511.glb","checksum":"f2a00c6a4a8833c34ba2543107536e76a64b5df363acd4f7e50eb5993d2cc61a","size":40236,"triangleCount":547},{"id":"collision-512","fileName":"collision-512.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-512.glb","checksum":"6804ac2e85c24875931e4113a92af2dcde70516faf34511e6e86dde3f4723477","size":32332,"triangleCount":40},{"id":"collision-513","fileName":"collision-513.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-513.glb","checksum":"bea5e1d2e06d9201d5e18e1f997f536aba4f7e925eb55331916dd9ab6470e5f7","size":32324,"triangleCount":40},{"id":"collision-514","fileName":"collision-514.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-514.glb","checksum":"a7f2ed0039c9b1c015f2b979328df29a8b3d7feca4ec53f71b0314870d4fbb3c","size":32336,"triangleCount":40},{"id":"collision-515","fileName":"collision-515.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-515.glb","checksum":"4ad902f5b757fae054a1dea688ba63b9f8e5f8167e9c2224732cce6a0aca1df5","size":32352,"triangleCount":40},{"id":"collision-516","fileName":"collision-516.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-516.glb","checksum":"45b6a5814f81b922e6cf912c6353846c6e1938a986c09e5226044bda80095031","size":40084,"triangleCount":576},{"id":"collision-517","fileName":"collision-517.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-517.glb","checksum":"9205857b106f11749f258cc3e38c103c3dade0d3146385e645809a7ed4d6f3e2","size":33520,"triangleCount":152},{"id":"collision-518","fileName":"collision-518.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-518.glb","checksum":"4f87532fac1663567828182d01b08b5e1f19eb3159f590896b8e323876c7da2f","size":32332,"triangleCount":40},{"id":"collision-519","fileName":"collision-519.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-519.glb","checksum":"188a50392f485458a3ddddb2099068526a8b1da3e5deb7ebcf8a110bd4715319","size":32340,"triangleCount":40},{"id":"collision-520","fileName":"collision-520.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-520.glb","checksum":"249a72251723a5296b4276dc5681ca4e664e1ce6ade3d46c4c0c54d172209f67","size":32332,"triangleCount":40},{"id":"collision-521","fileName":"collision-521.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-521.glb","checksum":"2fd2cb2b75c2c82bc0eaf4d00f7a141fc2deb3a85d88218f1535ad667ae4aa39","size":45276,"triangleCount":840},{"id":"collision-522","fileName":"collision-522.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-522.glb","checksum":"fb8d90988da2462f39863cbebc2e5c0d7d0fa81a9a891343bce3d1df25867b0f","size":32340,"triangleCount":40},{"id":"collision-523","fileName":"collision-523.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-523.glb","checksum":"989385c66d444d42ec1768d14c304077e627366ae26d2be478f820bc65e73257","size":45220,"triangleCount":840},{"id":"collision-524","fileName":"collision-524.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-524.glb","checksum":"ca5e2e204fea17435fda36fec64e4f5e5a85019065c4665abeb3f5f824515c31","size":37624,"triangleCount":516},{"id":"collision-525","fileName":"collision-525.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-525.glb","checksum":"8784a778c19188bb169fd6653cffa80fb34763cafa51a4b288e52076666584e8","size":40348,"triangleCount":547},{"id":"collision-526","fileName":"collision-526.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-526.glb","checksum":"4ccb510859f89bf1fc134577841d28d85406c66075b0550459297b530040f371","size":40200,"triangleCount":547},{"id":"collision-527","fileName":"collision-527.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-527.glb","checksum":"1bd6f34b2d206aec6e6e6ad84b88009f2b36a9836fc5995c4df828631af64350","size":90560,"triangleCount":5075},{"id":"collision-528","fileName":"collision-528.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-528.glb","checksum":"b59f4d24f7a81f12117b67ec48c03f10dadb8bbffd406e7b27516c7fb2d87db9","size":40088,"triangleCount":576},{"id":"collision-529","fileName":"collision-529.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-529.glb","checksum":"754530842044e590ff15042fcbdd4e8f31fe604a3f47bc27b807a87bbb51590f","size":40068,"triangleCount":576},{"id":"collision-530","fileName":"collision-530.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-530.glb","checksum":"29ae3e341093340e0be42fd382ecab837f059b0c002331ea931746744d9619ee","size":32340,"triangleCount":40},{"id":"collision-531","fileName":"collision-531.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-531.glb","checksum":"8d2d014e99fae2daffea58c5eeb62f53a7f92d17935db0f627d8a9d36cf5a13d","size":32336,"triangleCount":40},{"id":"collision-532","fileName":"collision-532.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-532.glb","checksum":"99bfee371645a2d4c44544eb443138fe59d7e09b48793aeae3bdb754381bbe6c","size":32340,"triangleCount":40},{"id":"collision-533","fileName":"collision-533.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-533.glb","checksum":"fabbf36e4416466b8f222c62141faf2f75a9a7b5c5ae0bcf7823e88603157e53","size":32348,"triangleCount":40},{"id":"collision-534","fileName":"collision-534.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-534.glb","checksum":"7b71f60d740161120e829dde660510e60f86afafdea0686e6c3645230183fb4a","size":32336,"triangleCount":40},{"id":"collision-535","fileName":"collision-535.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-535.glb","checksum":"be4239e3579739111b94a24dd28529606de5b61b9a18fe2f8d2358ea84ddc999","size":32340,"triangleCount":40},{"id":"collision-536","fileName":"collision-536.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-536.glb","checksum":"aac3f9c6d8b233ec65e83b2ebd52e2b8c6ef1cc65449396e6051b4f27604266b","size":32340,"triangleCount":40},{"id":"collision-537","fileName":"collision-537.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-537.glb","checksum":"07580c20da472ac7379ad6acb8005fc52999e6c0278966eb3726dc53c26f0007","size":32332,"triangleCount":40},{"id":"collision-538","fileName":"collision-538.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-538.glb","checksum":"efda3dbcee84c6fb1dd4e8e0dfe31b73b494372221c183c319e6416d2d2521bd","size":40160,"triangleCount":547},{"id":"collision-539","fileName":"collision-539.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-539.glb","checksum":"4793575c1e38f5cf7f54af7cb919bdf166facaeedbb12a890a7298d763c45115","size":32352,"triangleCount":40},{"id":"collision-540","fileName":"collision-540.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-540.glb","checksum":"f0614aab36972a9914d23cdf98ffcd057d0bf43b913e3128f422f99061f15172","size":32348,"triangleCount":40},{"id":"collision-541","fileName":"collision-541.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-541.glb","checksum":"2027b53bf966f3f4941326712eeee3508ae9ffd67e67af47bd9891d59d60b972","size":32320,"triangleCount":40},{"id":"collision-542","fileName":"collision-542.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-542.glb","checksum":"5f7c5b20b4a7dcb1f53d3d106cba9e4b432df068f86da51f14809d6beb550165","size":32328,"triangleCount":40},{"id":"collision-543","fileName":"collision-543.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-543.glb","checksum":"6afcbf88e20dc0ba43981bfb625a0deafe6b3a9efc5f90f8e3d70410383cfce9","size":40148,"triangleCount":547},{"id":"collision-544","fileName":"collision-544.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-544.glb","checksum":"868e741485d0f901b7293f730643bce44faa5178092396c242d37a751d350386","size":33516,"triangleCount":152},{"id":"collision-545","fileName":"collision-545.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-545.glb","checksum":"7e453be8f87cdce5ae72c49cf9b0f18e0a04b39177ec1c3c589ca06652bbbfcf","size":40036,"triangleCount":576},{"id":"collision-546","fileName":"collision-546.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-546.glb","checksum":"b3ec9691e05ec83c296ef1679a86ab4a73ef022a3e86fa6a523a9d44d78dd22f","size":50240,"triangleCount":1508},{"id":"collision-547","fileName":"collision-547.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-547.glb","checksum":"303d651e1b4847990a395050da862753a5f0b6c880fd35445ed199f2703dcd66","size":62656,"triangleCount":2760},{"id":"collision-548","fileName":"collision-548.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-548.glb","checksum":"dcafe3a9c11ca0b6b436a6bd0e257a060d8876b778e852038ee7a98d45f812d9","size":42028,"triangleCount":762},{"id":"collision-549","fileName":"collision-549.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-549.glb","checksum":"ee3f7e577aa186b2aa631fdceee187e60ebba13217575eb1164f34944acddf8f","size":42008,"triangleCount":762},{"id":"collision-550","fileName":"collision-550.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-550.glb","checksum":"41800b59a22ef8a7abdc77d4357b0c764a9f308ccf5d0ed1892010846f510ff3","size":40136,"triangleCount":547},{"id":"collision-551","fileName":"collision-551.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-551.glb","checksum":"fcb7a8223456d16cc7e6564faaf28541ab510ebe3a58f877a69683a5a1799f32","size":32348,"triangleCount":40},{"id":"collision-552","fileName":"collision-552.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-552.glb","checksum":"1345e9186184af35e7cf68b8c837ba53fb96127a817fcfba398aef524eb0fa1d","size":53884,"triangleCount":1906},{"id":"collision-553","fileName":"collision-553.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-553.glb","checksum":"e6e7ed65aa527df6c44edf2b52b17bcaba95c9c44f112f7d303f6b514d842d5e","size":42644,"triangleCount":680},{"id":"collision-554","fileName":"collision-554.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-554.glb","checksum":"f6d54340f5c97afd73b0a7f4887be463142fd1cd3780ed578643aa97a984fa60","size":62476,"triangleCount":3260},{"id":"collision-555","fileName":"collision-555.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-555.glb","checksum":"8874613e5d9b0ed03361c95d3e3ebe12d450ab21ff11328c12a587aa04347801","size":32340,"triangleCount":40},{"id":"collision-556","fileName":"collision-556.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-556.glb","checksum":"d38606fc4e007b8793dcda7191d92e9c566eaf7a13e30057ab34db39a3314fb7","size":35624,"triangleCount":318},{"id":"collision-557","fileName":"collision-557.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-557.glb","checksum":"aa232b6ece5e1819b76f9ef26b5aa47a7b4c4ecd5e460169597ed90f1c54f163","size":40044,"triangleCount":576},{"id":"collision-558","fileName":"collision-558.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-558.glb","checksum":"e200404370d434b78e049784fef95157243004f958f6df220e2359e022d000c4","size":33512,"triangleCount":152},{"id":"collision-559","fileName":"collision-559.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-559.glb","checksum":"eb6e224ff62227c844eec147e6f7b2f4e305a6d7b08983916b113b6d1e755878","size":35572,"triangleCount":318},{"id":"collision-560","fileName":"collision-560.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-560.glb","checksum":"6568dfcdecde751a693e01c91de91603dce47d578cba4e228bb89ade6c5d5b56","size":40056,"triangleCount":576},{"id":"collision-561","fileName":"collision-561.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-561.glb","checksum":"93e1613b48ec5acc26accf015d821b626dd63b8e37f2ceb6f4b458359126f958","size":32352,"triangleCount":40},{"id":"collision-562","fileName":"collision-562.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-562.glb","checksum":"3315c3b8f372c35edb42b2aed7d178f22aecce659c67e382f08c36dc91b70661","size":32352,"triangleCount":40},{"id":"collision-563","fileName":"collision-563.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-563.glb","checksum":"50bd863c0932c4df7bdd702ea908f61065c534f235860906de2aa9cbf60dec59","size":40080,"triangleCount":576},{"id":"collision-564","fileName":"collision-564.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-564.glb","checksum":"1d32543fd46df0cfe6069e02aaf06c400f5f5f85887a98a9aeeadece91b47b41","size":33520,"triangleCount":152},{"id":"collision-565","fileName":"collision-565.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-565.glb","checksum":"0666a92915f48d9b78f1072c811f3f2e49fba8d0c43568f52be5d44218664a2d","size":40244,"triangleCount":547},{"id":"collision-566","fileName":"collision-566.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-566.glb","checksum":"7394b31e5c552fd87a1a0a62c0fcc932f211466d9be94427e75b354f429a377e","size":32352,"triangleCount":40},{"id":"collision-567","fileName":"collision-567.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-567.glb","checksum":"6733261e43093938680cc78ba34c5c76dd929756585232798cae833d51a9e120","size":32332,"triangleCount":40},{"id":"collision-568","fileName":"collision-568.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-568.glb","checksum":"493fa1afd575650e6237e1a85611d26bed4b09b98c9d840014566e0869d4397a","size":32340,"triangleCount":40},{"id":"collision-569","fileName":"collision-569.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-569.glb","checksum":"95477e36d0cdcbedfe51032408ead12af4c2340b61b5aa41fe8fe0cdcd02ceed","size":32328,"triangleCount":40},{"id":"collision-570","fileName":"collision-570.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-570.glb","checksum":"c76ffde4b0a93a8888ba831a647ab2fedd268e711f993b27ef5b9673f9f2914c","size":40212,"triangleCount":547},{"id":"collision-571","fileName":"collision-571.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-571.glb","checksum":"c1b3125fec2fc234c9f3d0e6d75f7afc551d8356ffeec27125f87540f5a793ab","size":40100,"triangleCount":576},{"id":"collision-572","fileName":"collision-572.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-572.glb","checksum":"dfd9dab0c4a7c8a54251e8c2c17dc25629f9f6e13d5a558703c19ac6a634a8b0","size":32352,"triangleCount":40},{"id":"collision-573","fileName":"collision-573.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-573.glb","checksum":"e55a52c1a6d2a4f2b2a9edef967110d441ba8e2f07faf220f971a5ef23e1eea3","size":32336,"triangleCount":40},{"id":"collision-574","fileName":"collision-574.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-574.glb","checksum":"54332c9b95241493e533281040d8dcd008e95bfaff29b88bcf29fa79e53769a3","size":32348,"triangleCount":40},{"id":"collision-575","fileName":"collision-575.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-575.glb","checksum":"4bca721672d764d85af2d04f8e5946c3c5dff13fb61500c36225a25fd9388d46","size":32348,"triangleCount":40},{"id":"collision-576","fileName":"collision-576.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-576.glb","checksum":"b91ee021967fa1370f3a56b5593aec992b5b8b67b4c932a11b39770ad5d7495a","size":32348,"triangleCount":40},{"id":"collision-577","fileName":"collision-577.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-577.glb","checksum":"bd589d8b57d5f68d3f0cd8ce63fcd6278306d656bc6bfda1890162ca58237c33","size":32336,"triangleCount":40},{"id":"collision-578","fileName":"collision-578.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-578.glb","checksum":"713ca9dbef2ec628011447e87e9e527c38af3262c4954b5937b9a3f77b89405b","size":42020,"triangleCount":762},{"id":"collision-579","fileName":"collision-579.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-579.glb","checksum":"442c4d2b9049d168839867efc1b0bf052c6a6027f1f2da068463489fbb83e901","size":40244,"triangleCount":547},{"id":"collision-580","fileName":"collision-580.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-580.glb","checksum":"524f7f07d36fc0eb72d2f5aafe6cc7e037226998bf729a1fa9cf6e49880ba0a3","size":32340,"triangleCount":40},{"id":"collision-581","fileName":"collision-581.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-581.glb","checksum":"19a7bbab0072e02ff9ad63667fa7ed7296d3def9c5ea6338cb21e739b6590369","size":40240,"triangleCount":547},{"id":"collision-582","fileName":"collision-582.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-582.glb","checksum":"52cc1e2eeab91c6ba20a5d464a58114edf477be0f5cc9a8376af7e64acb3d599","size":51620,"triangleCount":1296},{"id":"collision-583","fileName":"collision-583.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-583.glb","checksum":"ac4ae65759ea4ddaff2dab303d3dc337d6cc588a2dca14a44bfcf6dba0d5b374","size":32340,"triangleCount":40},{"id":"collision-584","fileName":"collision-584.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-584.glb","checksum":"e19e85a9475ccc3233aa83118143fdf0f1ae84dab046ec97eb59eeaf6ef3690e","size":40096,"triangleCount":576},{"id":"collision-585","fileName":"collision-585.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-585.glb","checksum":"0563a8c2d779d221e7edd4f24bf0e390c90ece737418fee2dc68c5f43fda4a9d","size":186536,"triangleCount":65536},{"id":"collision-586","fileName":"collision-586.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-586.glb","checksum":"a4e395841f037278497e204005b609219325c28ff5123a83afc0303a1589a482","size":62404,"triangleCount":3260},{"id":"collision-587","fileName":"collision-587.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-587.glb","checksum":"321b13c8ae5ae229e32eb2536c0da6255350bb86a226a2555ff293911995f9ba","size":50180,"triangleCount":1877},{"id":"collision-588","fileName":"collision-588.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-588.glb","checksum":"c2bf3ce500696180af57584209669e646932b744b0c15c86b1099e1b0da09349","size":45164,"triangleCount":1512},{"id":"collision-589","fileName":"collision-589.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-589.glb","checksum":"344f5e2c53cd3ffabb6f9e3af90e786e5fa3795e3197a7df6c3c9c0530c161a0","size":193508,"triangleCount":65536},{"id":"collision-590","fileName":"collision-590.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-590.glb","checksum":"25ba7ddeabb6e06c4bfae54a0b39955e15973870635fa5483495d053fadbf8c0","size":197704,"triangleCount":65504},{"id":"collision-591","fileName":"collision-591.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-591.glb","checksum":"113dd338a6d50bd5fdeab704cb4dfc0ffd60f362b54b4ac168b1e969a3e1d814","size":522368,"triangleCount":46197},{"id":"collision-592","fileName":"collision-592.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-592.glb","checksum":"60c7036cda1bf597972b484f4e6cf3991a22b66418d7d11430c929940f72b71b","size":32340,"triangleCount":40},{"id":"collision-593","fileName":"collision-593.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-593.glb","checksum":"bc47c53b9c01fde5b368af440a6d094c892e7cd374977ad9486eb3041fb0ea52","size":32336,"triangleCount":40},{"id":"collision-594","fileName":"collision-594.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-594.glb","checksum":"c9c3718f03eeac19b56065d82021ce9dca3a83fbb5b941adc24e174fdb325960","size":32344,"triangleCount":40},{"id":"collision-595","fileName":"collision-595.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-595.glb","checksum":"e73039a84834ec4432f9e2c3d68fe06bc8ed15f7749b60990efef4f9d1d99994","size":32344,"triangleCount":40},{"id":"collision-596","fileName":"collision-596.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-596.glb","checksum":"a6b0efe91e15e9e669717223575396b8342fb0003078c186ca1222b94adbffcd","size":32348,"triangleCount":40},{"id":"collision-597","fileName":"collision-597.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-597.glb","checksum":"238d69876651080a6c86d5853aa5904724841269df5fa6fb51eec6deace0b53c","size":40016,"triangleCount":576},{"id":"collision-598","fileName":"collision-598.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-598.glb","checksum":"a85ca1100ee960735c36c155a63896b32e57c852b03765c70e20347a8f0fbc6b","size":32348,"triangleCount":40},{"id":"collision-599","fileName":"collision-599.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-599.glb","checksum":"040b5564416dd10b42a00dea8796246d492896e77ca3962c6231f844330c726b","size":32340,"triangleCount":40},{"id":"collision-600","fileName":"collision-600.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-600.glb","checksum":"2908e21ab96aa5f59326377c9c3275e15ebce7db9a05345c44adc6106768fd5d","size":32332,"triangleCount":40},{"id":"collision-601","fileName":"collision-601.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-601.glb","checksum":"0120b5e8e4ac02b3d19a06496a055ee410c5a0f69342890f4f3ad4f039d94a7d","size":32336,"triangleCount":40},{"id":"collision-602","fileName":"collision-602.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-602.glb","checksum":"5e5cfae2fbaa50b9adbd126fc4cc8217662216246e88462a8cf52f197c9d99a1","size":32324,"triangleCount":40},{"id":"collision-603","fileName":"collision-603.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-603.glb","checksum":"7565917bef093929acac21bac6d3d1f33d0a0bfb9be60870d538d5488564402f","size":32336,"triangleCount":40},{"id":"collision-604","fileName":"collision-604.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-604.glb","checksum":"6f7900bbd5e1f94bde83a31a9f214464dffced941502a4fc0cd82842de6a5f62","size":32344,"triangleCount":40},{"id":"collision-605","fileName":"collision-605.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-605.glb","checksum":"85fdf8467eff2a0d57ea3349b584f2d153a5f592b906c76f19c8d17ecdf9ea53","size":32340,"triangleCount":40},{"id":"collision-606","fileName":"collision-606.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-606.glb","checksum":"dccc39520bd2b6317fd0f16fdd5269fe3517bee08552188aa082a3d9b06c8ad8","size":32336,"triangleCount":40},{"id":"collision-607","fileName":"collision-607.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-607.glb","checksum":"14c7adba753733801587d3f9d5ca837abbb811dcb38be277ffaf982c2fdc9f35","size":33524,"triangleCount":152},{"id":"collision-608","fileName":"collision-608.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-608.glb","checksum":"6113ea60297145e954b1d0c8e7b445c086a4f88688bf8293dbebdebd40fd3a7c","size":32344,"triangleCount":40},{"id":"collision-609","fileName":"collision-609.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-609.glb","checksum":"e42a19651658fc3c63d4ac1e3a48c88cfddd8403cc5679ed5a479edc90f73073","size":40132,"triangleCount":547},{"id":"collision-610","fileName":"collision-610.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-610.glb","checksum":"038ac0cd1da150fdd8215595e1a6f775e408a5c73510537ca6866baf0f6c0d86","size":40016,"triangleCount":576},{"id":"collision-611","fileName":"collision-611.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-611.glb","checksum":"672e9305dd74bcdad746b9d0f83f197816b1f9bc048cab4c5940812fe3f62d0a","size":40116,"triangleCount":547},{"id":"collision-612","fileName":"collision-612.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-612.glb","checksum":"c3a991be300a0079eeda57c9e3e79aca5fe015b5a94c39a1d08f263d6a34cd97","size":32344,"triangleCount":40},{"id":"collision-613","fileName":"collision-613.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-613.glb","checksum":"d007f826057d75f4e0eb10ddaa66c86afab78cbbf97609f69e212c922ecc8116","size":32356,"triangleCount":40},{"id":"collision-614","fileName":"collision-614.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-614.glb","checksum":"12a5a7bf5f1dc409a64299eef0cec2c9a3704b05670e2e06cd1afc31b12a3332","size":32336,"triangleCount":40},{"id":"collision-615","fileName":"collision-615.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-615.glb","checksum":"5fed406a35c9e86678532678728e59e0b5b2d5b5b9fc62681b87a975f85dd66c","size":41888,"triangleCount":762},{"id":"collision-616","fileName":"collision-616.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-616.glb","checksum":"0906253f7855badb9ccb507e30444db49c1e3bbc7d597f7b248b5471823ca7a1","size":40132,"triangleCount":547},{"id":"collision-617","fileName":"collision-617.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-617.glb","checksum":"d20b59a684b3db2a466ac5251bdd72f46e035e7cd5ea1ff7331747c54cf464b9","size":45116,"triangleCount":840},{"id":"collision-618","fileName":"collision-618.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-618.glb","checksum":"9c7bcda74276c0538d37aa39f7142faf36c71a3d794f5722891ff285317cb3b7","size":40164,"triangleCount":547},{"id":"collision-619","fileName":"collision-619.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-619.glb","checksum":"98fb8cfb22366d5b85f9ee1a7dcfda33505ec85d1a37ea7abc8a9733ef8c3230","size":40156,"triangleCount":547},{"id":"collision-620","fileName":"collision-620.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-620.glb","checksum":"4ee0b32f0510306286f1017e1785f67906de6a4b9f3166f6f89bb4a9d2394801","size":40144,"triangleCount":547},{"id":"collision-621","fileName":"collision-621.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-621.glb","checksum":"02455e47b3e3f764c36b2ac165d06cb1e991214329c454ba88576cb02f27e538","size":40216,"triangleCount":547},{"id":"collision-622","fileName":"collision-622.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-622.glb","checksum":"e8c15c0ee120005691890b7cfad0fb6479f7458eaaaf58d4da3f891fb65fc3d0","size":32332,"triangleCount":40},{"id":"collision-623","fileName":"collision-623.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-623.glb","checksum":"8435f709917c07e0e8236035b022b41cd470e9a74044f7eaa67e007c5699dbd1","size":32348,"triangleCount":40},{"id":"collision-624","fileName":"collision-624.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-624.glb","checksum":"d368e63a870b871d2f69f4bd57fe864e9c903c4d8412fdce4e5c031ed670d32a","size":32336,"triangleCount":40},{"id":"collision-625","fileName":"collision-625.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-625.glb","checksum":"455f6eee3c824c45ded29494f1ea9108adbf8ba7eab06dae6063d33c006b498e","size":32332,"triangleCount":40},{"id":"collision-626","fileName":"collision-626.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-626.glb","checksum":"dfb78ce5c6efe01ff1ff98290fb6ee1f83fe287e1dd2e1be72dc38a734eb0389","size":32336,"triangleCount":40},{"id":"collision-627","fileName":"collision-627.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-627.glb","checksum":"1493ff60e68abebf5425f3be3501e74b1787f465a5a2099ec62a90237905c3f5","size":32340,"triangleCount":40},{"id":"collision-628","fileName":"collision-628.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-628.glb","checksum":"35bc67edfd9e5b1ed58d42e6cc16776558e75e0e26d43a5a5fc7f6313fd0e0aa","size":32344,"triangleCount":40},{"id":"collision-629","fileName":"collision-629.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-629.glb","checksum":"ac3121921097d3bea4644e47f80a99cb49fda1c68166ec815a4b803913fb51b0","size":32344,"triangleCount":40},{"id":"collision-630","fileName":"collision-630.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-630.glb","checksum":"7aa726344cda59fc6f6584638eece630fcf4cf68af73961776c21893b2e99974","size":32336,"triangleCount":40},{"id":"collision-631","fileName":"collision-631.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-631.glb","checksum":"e007dc46e65ca45034d23998d059679be5ff00d9ed9ca1017bd77cefa1583a8d","size":32324,"triangleCount":40},{"id":"collision-632","fileName":"collision-632.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-632.glb","checksum":"7a36c880bda19eba5c80492c1bc23e07bbb51698c5f9a19f27515e20b4ea7280","size":32336,"triangleCount":40},{"id":"collision-633","fileName":"collision-633.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-633.glb","checksum":"6c6bed0dd52a9e0b2256be6cc1b18a51ee0f172cbc202957410539e221d65674","size":32336,"triangleCount":40},{"id":"collision-634","fileName":"collision-634.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-634.glb","checksum":"ce93d8256b2ad03c781166be36f8fc29d07e2797b7d6e081bd1ade8de4e52f2d","size":45340,"triangleCount":1512},{"id":"collision-635","fileName":"collision-635.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-635.glb","checksum":"7e02a8311cbd37909a5eca172875f69587244444e5d224540f9ff8e9b3d0fb5b","size":45352,"triangleCount":1512},{"id":"collision-636","fileName":"collision-636.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-636.glb","checksum":"d09834286ccd790eaf49a44dd534301525d120ea93fe696053a57cc7e7e61ef5","size":42064,"triangleCount":762},{"id":"collision-637","fileName":"collision-637.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-637.glb","checksum":"2ebb87becb9e1996736512f46ff2a08c019772bc4530e6c1a35e3c4a2165e542","size":42072,"triangleCount":762},{"id":"collision-638","fileName":"collision-638.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-638.glb","checksum":"96c2c8f5e55f18f9284f85eb5beac98ae499c528e08dc48db8dff2577892d25a","size":45240,"triangleCount":840},{"id":"collision-639","fileName":"collision-639.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-639.glb","checksum":"eac693d9651b818b3257189ef39bc4ed6a83500751ff3c79620760af1dfac47e","size":45244,"triangleCount":840},{"id":"collision-640","fileName":"collision-640.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-640.glb","checksum":"d4ef2920d6faf84e5b2eb4860884e99deb157bd75c12234c2ba1f16140650624","size":40104,"triangleCount":576},{"id":"collision-641","fileName":"collision-641.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-641.glb","checksum":"a4201c076f6506f4ffde04d5724ca4529e081da76a6d575b4d9ea298a95e4a94","size":40040,"triangleCount":576},{"id":"collision-642","fileName":"collision-642.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-642.glb","checksum":"2d9a9959e6cbc39b47ed2a640189762b45f383d3442fcb9d438022fe8fc23a09","size":52796,"triangleCount":2010},{"id":"collision-643","fileName":"collision-643.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-643.glb","checksum":"0586189ca6cb867fbf21c8fa5f664c3e7a0ee38f6550eb2608f589021ac56e42","size":45168,"triangleCount":1512},{"id":"collision-644","fileName":"collision-644.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-644.glb","checksum":"1cf650bec1b052b32d3431734ec150bb05851dd76dfb8a9f888cdad9b6453697","size":45172,"triangleCount":1512},{"id":"collision-645","fileName":"collision-645.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-645.glb","checksum":"f9c72ac7a0487d222ecd59ab4d339be01e8246576492600040cf9d4ed3cc0faf","size":62428,"triangleCount":3260},{"id":"collision-646","fileName":"collision-646.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-646.glb","checksum":"1f0ebaf1850e62a71dd0f3c2b52b248cfa269457b4411c9f30b1c7cb0e991611","size":45260,"triangleCount":840},{"id":"collision-647","fileName":"collision-647.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-647.glb","checksum":"8b57d2759e8030e2760fd71183f7ba8c0f9e12cdc0a7b9f1c4cf3428998fc7b5","size":40104,"triangleCount":576},{"id":"collision-648","fileName":"collision-648.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-648.glb","checksum":"1e581eaecf353c2b915ad00a726cb4263ba569ef5523cb678296b0b89ad53aaa","size":40108,"triangleCount":576},{"id":"collision-649","fileName":"collision-649.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-649.glb","checksum":"19ddab059325eb2f6b67c8943a0eaccef3aa8ca48af02c9bbf9d06167bbb782f","size":40108,"triangleCount":576},{"id":"collision-650","fileName":"collision-650.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-650.glb","checksum":"2fb952ab86d0601d9bdab6e6307da72964779a6a6dc26ee0741d124b255b373c","size":40044,"triangleCount":576},{"id":"collision-651","fileName":"collision-651.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-651.glb","checksum":"72103747d522d0b85027130956305d9f829b05be549247aacdb65475314d51b8","size":40180,"triangleCount":547},{"id":"collision-652","fileName":"collision-652.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-652.glb","checksum":"d19142cb939e3b1493ec1c43b4e7b00a7e4e8075d769971a7af8b77b0736cd61","size":35608,"triangleCount":318},{"id":"collision-653","fileName":"collision-653.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-653.glb","checksum":"26f6ad333dc2d43899e30bcc86207f76acdd55752e1640901b4f1c228b6adbd6","size":40052,"triangleCount":576},{"id":"collision-654","fileName":"collision-654.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-654.glb","checksum":"ef5f0c188b9379203f8411d72dc6e3a1634cab8fa0695742a6f87d213ceda164","size":40052,"triangleCount":576},{"id":"collision-655","fileName":"collision-655.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-655.glb","checksum":"82a455b03cf87e5561fe28d78fb4b6b5f44ad960adf6752d8bcc17873f9f9f76","size":35560,"triangleCount":318},{"id":"collision-656","fileName":"collision-656.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-656.glb","checksum":"2f2f1caeaee27ed90d1c40b3bd33ed0210c2dbf9afb010c10679ccbffc580ef8","size":32340,"triangleCount":40},{"id":"collision-657","fileName":"collision-657.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-657.glb","checksum":"29c54579caf64b3c6b18db357735d36e401dd01fc1b6a871949bad13bfbf4aa1","size":32344,"triangleCount":40},{"id":"collision-658","fileName":"collision-658.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-658.glb","checksum":"cc9dde875197c719915ad8443b9279984b2a8377717e5b433a1f838333b944c5","size":40044,"triangleCount":576},{"id":"collision-659","fileName":"collision-659.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-659.glb","checksum":"933892c7f2f933fecb915b22aa45591b5d166f4970e820dd7750f74e2822a324","size":40044,"triangleCount":576},{"id":"collision-660","fileName":"collision-660.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-660.glb","checksum":"399b01bc91876cf61b32f1f639003429c705e6d1b4a59ff24087ba72bd574f40","size":32340,"triangleCount":40},{"id":"collision-661","fileName":"collision-661.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-661.glb","checksum":"44064d1c7dc6177182f0fbc1cbc6c85fcce6a8129327ae8381eb286dbb7552bf","size":32332,"triangleCount":40},{"id":"collision-662","fileName":"collision-662.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-662.glb","checksum":"14050cf26baba5071fe1d38c537a71070fef41b85aefd768b0a6b3897c44cc78","size":32336,"triangleCount":40},{"id":"collision-663","fileName":"collision-663.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-663.glb","checksum":"2eb2faa7de60c96df2bd9dcc50039c236ee4e9d1cc4d135f5663299426161cca","size":32340,"triangleCount":40},{"id":"collision-664","fileName":"collision-664.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-664.glb","checksum":"c7669ad7750424665a5f23248c75cbfa0cac4cab802bbd300dfeb2528ac83641","size":197624,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/1781-forgottenmine/navigation.glb","checksum":"aeb76952fab6a4494febff8fdeccab8d1d56fd01f5a51c4cc72b4b1a42501874","size":5360496,"triangleCount":440319}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[1240.8861,116.0807,1679.2645],"max":[2291.0667,218.1808,2192.8667]},"entrance":{"name":"Forgotten Mine Entrance","footPosition":[1285.8861,149.5807,1724.2645],"forward":[0.9682295680569261,0,0.2500629991428129],"yaw":1.318051005871305},"areas":[{"id":"entrance","name":"Forgotten Mine Entrance","center":[1285.8861,149.5807,1724.2645],"radius":35},{"id":"area-geolord-vek","name":"Geolord Vek's Encounter","center":[2246.0667,198.1808,2147.8667],"radius":42}],"entities":{"entry-254272":{"id":"entry-254272","kind":"boss","name":"Creature 254272","title":"Dungeon Boss","hasLoot":true,"combat":{"level":1,"healthMultiplier":1.15,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6768,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.08,"archetype":"humanoid"}},"forgotten-mine-guardian":{"id":"forgotten-mine-guardian","kind":"mob","name":"Forgotten Mine Guardian","hasLoot":false,"combat":{"level":255,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":26,"cooldownMs":6753,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid"}},"forgotten-mine-caster":{"id":"forgotten-mine-caster","kind":"mob","name":"Forgotten Mine Invoker","hasLoot":false,"combat":{"level":255,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":26,"cooldownMs":5074,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid"}},"forgotten-mine-brute":{"id":"forgotten-mine-brute","kind":"mob","name":"Forgotten Mine Brute","hasLoot":false,"combat":{"level":255,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":26,"cooldownMs":7134,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid"}}},"staticSpawns":[{"id":"encounter-5069","entityId":"entry-254272","position":[2246.0667,198.1808,2147.8667],"yaw":0,"spawnMask":1},{"id":"generated-trash-1","entityId":"forgotten-mine-guardian","position":[1428.7799,146.2057,1761.1694],"yaw":0,"spawnMask":1},{"id":"generated-trash-2","entityId":"forgotten-mine-caster","position":[1484.3889,144.8557,1777.3499],"yaw":1.618,"spawnMask":1},{"id":"generated-trash-3","entityId":"forgotten-mine-brute","position":[1543.3275,143.5057,1788.0436],"yaw":3.236,"spawnMask":1},{"id":"generated-trash-4","entityId":"forgotten-mine-guardian","position":[1601.1895,142.1557,1806.6775],"yaw":4.854,"spawnMask":1},{"id":"generated-trash-5","entityId":"forgotten-mine-caster","position":[1657.41,140.8057,1820.2174],"yaw":0.1888,"spawnMask":1},{"id":"generated-trash-6","entityId":"forgotten-mine-brute","position":[1713.019,139.4557,1836.3978],"yaw":1.8068,"spawnMask":1},{"id":"generated-trash-7","entityId":"forgotten-mine-guardian","position":[1888.7823,141.0488,1891.3131],"yaw":3.4248,"spawnMask":1},{"id":"generated-trash-8","entityId":"forgotten-mine-caster","position":[1922.5182,146.3273,1918.6435],"yaw":5.0428,"spawnMask":1},{"id":"generated-trash-9","entityId":"forgotten-mine-brute","position":[1954.6126,151.6058,1940.8799],"yaw":0.3776,"spawnMask":1},{"id":"generated-trash-10","entityId":"forgotten-mine-guardian","position":[1986.0956,156.8843,1965.7569],"yaw":1.9956,"spawnMask":1},{"id":"generated-trash-11","entityId":"forgotten-mine-caster","position":[2020.9081,162.1628,1985.1471],"yaw":3.6136,"spawnMask":1},{"id":"generated-trash-12","entityId":"forgotten-mine-brute","position":[2054.644,167.4413,2012.4775],"yaw":5.2316,"spawnMask":1},{"id":"generated-trash-13","entityId":"forgotten-mine-guardian","position":[2086.7385,172.7198,2034.7139],"yaw":0.5664,"spawnMask":1},{"id":"generated-trash-14","entityId":"forgotten-mine-caster","position":[2118.2214,177.9983,2059.5909],"yaw":2.1844,"spawnMask":1},{"id":"generated-trash-15","entityId":"forgotten-mine-brute","position":[2153.034,183.2768,2078.9811],"yaw":3.8024,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"encounter-5069","name":"Geolord Vek","position":[2246.0667,198.1808,2147.8667]}],"objectiveOrder":[{"id":"encounter-5069","name":"Geolord Vek","position":[2246.0667,198.1808,2147.8667]}],"navigationLinks":[],"serverGameObjects":[],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"patch-WB1/world/maps/forgottenmine":"693b7067aa1109e14beb944bc95aed8299bf64e2ec6ae3dc43f4fab7d18f57b6"},"databaseAdapter":"ascension-encounter-identities-with-procedural-population","sourceSnapshot":"dungeon-pipeline/work/forgotten-mine/source-snapshot.json","coordinateTransform":"three(x,y,z)=(-wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["Creature bodies use explicit procedural fallbacks until the corresponding client display composites are exported.","Trash identities and placements are procedural; boss identities come from the installed Ascension encounter catalog."]}}]} +{"schemaVersion":1,"source":{"campaignManifest":"dungeon-pipeline/dungeon-campaign.json","environmentPackages":["src/game/generated/fivePlayerDungeonImports.json","src/game/generated/manastormAssetPackages.json (temporary fallback)"],"encounterCatalog":"src/game/generated/manastormRuntimeCatalog.json","azerothCoreCommit":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","azerothCoreSourceLock":"src/game/generated/azerothCoreSourceLock.json","spellCatalog":{"ascension":"../LadiksMPQEditor/client-current/area-52/patch-D/DBFilesClient/Spell.dbc","epoch":"../HealerMan-Storage/pipeline-work/dungeons/epoch-client/DBFilesClient/Spell.dbc"}},"coverage":[{"dungeonId":"shadowfang-keep","mapId":33,"encounters":7,"entities":31,"staticSpawns":109,"roamingPacks":24,"source":"azerothcore"},{"dungeonId":"stormwind-stockade","mapId":34,"encounters":5,"entities":11,"staticSpawns":93,"roamingPacks":0,"source":"azerothcore"},{"dungeonId":"deadmines","mapId":36,"encounters":7,"entities":22,"staticSpawns":179,"roamingPacks":23,"source":"azerothcore"},{"dungeonId":"wailing-caverns","mapId":43,"encounters":8,"entities":20,"staticSpawns":252,"roamingPacks":7,"source":"azerothcore"},{"dungeonId":"razorfen-kraul","mapId":47,"encounters":7,"entities":38,"staticSpawns":179,"roamingPacks":12,"source":"azerothcore"},{"dungeonId":"blackfathom-deeps","mapId":48,"encounters":6,"entities":27,"staticSpawns":201,"roamingPacks":10,"source":"azerothcore"},{"dungeonId":"uldaman","mapId":70,"encounters":7,"entities":38,"staticSpawns":302,"roamingPacks":12,"source":"azerothcore"},{"dungeonId":"gnomeregan","mapId":90,"encounters":4,"entities":31,"staticSpawns":371,"roamingPacks":31,"source":"azerothcore"},{"dungeonId":"sunken-temple","mapId":109,"encounters":4,"entities":33,"staticSpawns":245,"roamingPacks":4,"source":"azerothcore"},{"dungeonId":"razorfen-downs","mapId":129,"encounters":6,"entities":25,"staticSpawns":194,"roamingPacks":13,"source":"azerothcore"},{"dungeonId":"scarlet-monastery","mapId":189,"encounters":5,"entities":37,"staticSpawns":310,"roamingPacks":16,"source":"azerothcore"},{"dungeonId":"zulfarrak","mapId":209,"encounters":5,"entities":21,"staticSpawns":252,"roamingPacks":14,"source":"azerothcore"},{"dungeonId":"blackrock-spire","mapId":229,"encounters":15,"entities":78,"staticSpawns":566,"roamingPacks":22,"source":"azerothcore"},{"dungeonId":"blackrock-depths","mapId":230,"encounters":13,"entities":61,"staticSpawns":1040,"roamingPacks":15,"source":"azerothcore"},{"dungeonId":"scholomance","mapId":289,"encounters":8,"entities":38,"staticSpawns":326,"roamingPacks":16,"source":"azerothcore"},{"dungeonId":"stratholme","mapId":329,"encounters":9,"entities":50,"staticSpawns":431,"roamingPacks":29,"source":"azerothcore"},{"dungeonId":"maraudon","mapId":349,"encounters":8,"entities":33,"staticSpawns":525,"roamingPacks":20,"source":"azerothcore"},{"dungeonId":"ragefire-chasm","mapId":389,"encounters":4,"entities":11,"staticSpawns":127,"roamingPacks":4,"source":"azerothcore"},{"dungeonId":"dire-maul","mapId":429,"encounters":12,"entities":75,"staticSpawns":756,"roamingPacks":59,"source":"azerothcore"},{"dungeonId":"shattered-halls","mapId":540,"encounters":3,"entities":32,"staticSpawns":198,"roamingPacks":13,"source":"azerothcore"},{"dungeonId":"blood-furnace","mapId":542,"encounters":3,"entities":17,"staticSpawns":139,"roamingPacks":13,"source":"azerothcore"},{"dungeonId":"hellfire-ramparts","mapId":543,"encounters":2,"entities":12,"staticSpawns":85,"roamingPacks":12,"source":"azerothcore"},{"dungeonId":"steamvault","mapId":545,"encounters":3,"entities":17,"staticSpawns":127,"roamingPacks":17,"source":"azerothcore"},{"dungeonId":"underbog","mapId":546,"encounters":4,"entities":22,"staticSpawns":161,"roamingPacks":23,"source":"azerothcore"},{"dungeonId":"slave-pens","mapId":547,"encounters":3,"entities":21,"staticSpawns":122,"roamingPacks":32,"source":"azerothcore"},{"dungeonId":"arcatraz","mapId":552,"encounters":4,"entities":29,"staticSpawns":85,"roamingPacks":9,"source":"azerothcore"},{"dungeonId":"botanica","mapId":553,"encounters":5,"entities":29,"staticSpawns":169,"roamingPacks":15,"source":"azerothcore"},{"dungeonId":"mechanar","mapId":554,"encounters":3,"entities":17,"staticSpawns":84,"roamingPacks":14,"source":"azerothcore"},{"dungeonId":"shadow-labyrinth","mapId":555,"encounters":4,"entities":22,"staticSpawns":189,"roamingPacks":13,"source":"azerothcore"},{"dungeonId":"sethekk-halls","mapId":556,"encounters":2,"entities":16,"staticSpawns":104,"roamingPacks":24,"source":"azerothcore"},{"dungeonId":"mana-tombs","mapId":557,"encounters":3,"entities":14,"staticSpawns":119,"roamingPacks":15,"source":"azerothcore"},{"dungeonId":"auchenai-crypts","mapId":558,"encounters":2,"entities":14,"staticSpawns":93,"roamingPacks":37,"source":"azerothcore"},{"dungeonId":"magisters-terrace","mapId":585,"encounters":3,"entities":18,"staticSpawns":145,"roamingPacks":8,"source":"azerothcore"},{"dungeonId":"black-morass","mapId":269,"encounters":3,"entities":7,"staticSpawns":137,"roamingPacks":4,"source":"azerothcore"},{"dungeonId":"escape-from-durnholde","mapId":560,"encounters":3,"entities":29,"staticSpawns":379,"roamingPacks":38,"source":"azerothcore"},{"dungeonId":"utgarde-keep","mapId":574,"encounters":3,"entities":22,"staticSpawns":112,"roamingPacks":17,"source":"azerothcore"},{"dungeonId":"utgarde-pinnacle","mapId":575,"encounters":4,"entities":17,"staticSpawns":84,"roamingPacks":4,"source":"azerothcore"},{"dungeonId":"the-nexus","mapId":576,"encounters":6,"entities":26,"staticSpawns":234,"roamingPacks":14,"source":"azerothcore"},{"dungeonId":"the-oculus","mapId":578,"encounters":4,"entities":12,"staticSpawns":112,"roamingPacks":2,"source":"azerothcore"},{"dungeonId":"culling-of-stratholme","mapId":595,"encounters":4,"entities":20,"staticSpawns":213,"roamingPacks":0,"source":"azerothcore"},{"dungeonId":"halls-of-stone","mapId":599,"encounters":4,"entities":17,"staticSpawns":77,"roamingPacks":23,"source":"azerothcore"},{"dungeonId":"draktharon-keep","mapId":600,"encounters":4,"entities":22,"staticSpawns":99,"roamingPacks":16,"source":"azerothcore"},{"dungeonId":"azjol-nerub","mapId":601,"encounters":3,"entities":13,"staticSpawns":70,"roamingPacks":2,"source":"azerothcore"},{"dungeonId":"halls-of-lightning","mapId":602,"encounters":4,"entities":20,"staticSpawns":112,"roamingPacks":21,"source":"azerothcore"},{"dungeonId":"gundrak","mapId":604,"encounters":5,"entities":20,"staticSpawns":87,"roamingPacks":10,"source":"azerothcore"},{"dungeonId":"violet-hold","mapId":608,"encounters":3,"entities":5,"staticSpawns":9,"roamingPacks":0,"source":"azerothcore"},{"dungeonId":"ahnkahet-old-kingdom","mapId":619,"encounters":5,"entities":24,"staticSpawns":133,"roamingPacks":15,"source":"azerothcore"},{"dungeonId":"forge-of-souls","mapId":632,"encounters":2,"entities":13,"staticSpawns":41,"roamingPacks":8,"source":"azerothcore"},{"dungeonId":"trial-of-the-champion","mapId":650,"encounters":5,"entities":5,"staticSpawns":5,"roamingPacks":0,"source":"azerothcore"},{"dungeonId":"pit-of-saron","mapId":658,"encounters":3,"entities":30,"staticSpawns":168,"roamingPacks":12,"source":"azerothcore"},{"dungeonId":"halls-of-reflection","mapId":668,"encounters":2,"entities":10,"staticSpawns":13,"roamingPacks":0,"source":"azerothcore"},{"dungeonId":"tinkertech-showdown","mapId":821,"encounters":1,"entities":4,"staticSpawns":16,"roamingPacks":0,"source":"procedural-fallback"},{"dungeonId":"frozen-reach","mapId":908,"encounters":1,"entities":4,"staticSpawns":16,"roamingPacks":0,"source":"procedural-fallback"},{"dungeonId":"forgotten-mine","mapId":1781,"encounters":1,"entities":4,"staticSpawns":16,"roamingPacks":0,"source":"procedural-fallback"}],"definitions":[{"schemaVersion":1,"id":"shadowfang-keep","title":"Shadowfang Keep","mapId":33,"lfgDungeonIds":[8],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[18,30]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Shadowfang Keep","theme":"Instanced dungeon","summary":"Fight through Shadowfang Keep, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Shadowfang Keep...","unchartedAreaName":"Uncharted Shadowfang Keep","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":260},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/33-shadowfang/visual.glb","checksum":"5cb097035ac29008986d20bc738ff0c524471ef1efe8e30afb7e0996b53168a4","size":966008,"triangleCount":16399}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/33-shadowfang/collision.glb","checksum":"3a40b224d97f6a59750c2ff7cedf133a1b5ac4a34e7dff60f0f907caf1e3ec5e","size":257896,"triangleCount":16345}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/33-shadowfang/navigation.glb","checksum":"855cc0bc41e2d7b93300abbad7ca95bfc4577034c05318dc749b96c1b2a882e0","size":42776,"triangleCount":2840}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-235.8601,-0.8691,-74.1393],"max":[79.4978,119.9235,248.2807]},"entrance":{"name":"Shadowfang Keep Entrance","footPosition":[-38.4792,21.0213,-15.9093],"forward":[-0.5008438775564547,0,0.8655376423438874],"yaw":-0.5245734758744819},"areas":[{"id":"entrance","name":"Shadowfang Keep Entrance","center":[-38.4792,21.0213,-15.9093],"radius":35},{"id":"area-rethilgore","name":"Rethilgore's Encounter","center":[-15.5232,25.311,-1.9793],"radius":42},{"id":"area-baron-silverlaine","name":"Baron Silverlaine's Encounter","center":[7.7278,20.368,172.2607],"radius":42},{"id":"area-commander-springvale","name":"Commander Springvale's Encounter","center":[-45.0222,46.9705,134.3507],"radius":42},{"id":"area-odo-the-blindwatcher","name":"Odo the Blindwatcher's Encounter","center":[-30.9062,44.2435,20.9907],"radius":42},{"id":"area-fenrus-the-devourer","name":"Fenrus the Devourer's Encounter","center":[-132.0052,72.9105,43.5707],"radius":42},{"id":"area-wolf-master-nandos","name":"Wolf Master Nandos's Encounter","center":[-146.8892,99.8935,36.9407],"radius":42},{"id":"area-archmage-arugal","name":"Archmage Arugal's Encounter","center":[-190.8601,99.9235,27.3207],"radius":42}],"entities":{"entry-3861":{"id":"entry-3861","kind":"mob","name":"Bleak Worg","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7127","name":"Wavering Will","spellId":7127,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4280,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-801-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.9405,"markerRadius":1.28}}},"entry-3851":{"id":"entry-3851","kind":"mob","name":"Shadowfang Whitescalp","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12544","name":"Frost Armor","spellId":12544,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7673,"markerRadius":0.676}}},"entry-3927":{"id":"entry-3927","kind":"boss","name":"Wolf Master Nandos","title":"Dungeon Boss","hasLoot":true,"combat":{"level":21,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5929,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-11179-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.0608,"markerRadius":1.0139}}},"entry-3863":{"id":"entry-3863","kind":"mob","name":"Lupine Horror","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2446-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2212,"markerRadius":1.5058}}},"entry-3862":{"id":"entry-3862","kind":"mob","name":"Slavering Worg","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-11421-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.944,"markerRadius":1.2074}}},"entry-5058":{"id":"entry-5058","kind":"mob","name":"Wolfguard Worg","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-246-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2253,"markerRadius":1.4205}}},"entry-3914":{"id":"entry-3914","kind":"boss","name":"Rethilgore","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7295","name":"Soul Drain","spellId":7295,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5536,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-524-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.1299,"markerRadius":0.7773}}},"entry-3859":{"id":"entry-3859","kind":"mob","name":"Shadowfang Ragetooth","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7072","name":"Wild Rage","spellId":7072,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6528,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-736-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.1299,"markerRadius":0.7773}}},"entry-2529":{"id":"entry-2529","kind":"mob","name":"Son of Arugal","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7124","name":"Arugal's Gift","spellId":7124,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5201,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-1098-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.9255,"markerRadius":0.9801}}},"entry-3886":{"id":"entry-3886","kind":"mob","name":"Razorclaw the Butcher","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3200,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-524-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.1299,"markerRadius":0.7773}}},"entry-3887":{"id":"entry-3887","kind":"boss","name":"Baron Silverlaine","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7068","name":"Veil of Shadow","spellId":7068,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5742,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3222-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-4275":{"id":"entry-4275","kind":"boss","name":"Archmage Arugal","title":"Dungeon Boss","hasLoot":true,"combat":{"level":21,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22709","name":"Void Bolt","spellId":22709,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6870,"damageMultiplier":1.35},{"id":"spell-7803","name":"Thundershock","spellId":7803,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6870,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2353-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-4278":{"id":"entry-4278","kind":"boss","name":"Commander Springvale","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5588","name":"Hammer of Justice","spellId":5588,"delivery":"projectile","target":"random-party","school":"holy","animation":"cast","range":28,"cooldownMs":5606,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":2500}},{"id":"spell-1026","name":"Holy Light","spellId":1026,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5606,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-33581","name":"Divine Shield","spellId":33581,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":5606,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-33581","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3223-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4279":{"id":"entry-4279","kind":"boss","name":"Odo the Blindwatcher","title":"Dungeon Boss","hasLoot":true,"combat":{"level":21,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7756,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-522-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5194,"markerRadius":0.8787}}},"entry-3868":{"id":"entry-3868","kind":"mob","name":"Blood Seeker","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7140","name":"Expose Weakness","spellId":7140,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5776,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/d1808c723ce299735a6e04353e27ea6350abc507068bc4737393e3d16145bac6.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.17,"markerRadius":2.1069}}},"entry-3866":{"id":"entry-3866","kind":"mob","name":"Vile Bat","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5072,"damageMultiplier":1.12},{"id":"spell-7145","name":"Diving Sweep","spellId":7145,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5072,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-8808-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":0.8967,"markerRadius":1.4046}}},"entry-4444":{"id":"entry-4444","kind":"mob","name":"Deathstalker Vincent","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2689-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-3849":{"id":"entry-3849","kind":"mob","name":"Deathstalker Adamant","combat":{"level":18,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2006-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-3850":{"id":"entry-3850","kind":"mob","name":"Sorcerer Ashcrombe","combat":{"level":18,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2005-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3853":{"id":"entry-3853","kind":"mob","name":"Shadowfang Moonwalker","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7121","name":"Anti-Magic Shield","spellId":7121,"delivery":"area","target":"self","school":"shadow","animation":"cast","range":0,"cooldownMs":5870,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-7121","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7673,"markerRadius":0.676}}},"entry-3875":{"id":"entry-3875","kind":"mob","name":"Haunted Servitor","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7057","name":"Haunting Spirits","spellId":7057,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6502,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3229-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3857":{"id":"entry-3857","kind":"mob","name":"Shadowfang Glutton","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7122","name":"Blood Tap","spellId":7122,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6156,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-202-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7673,"markerRadius":0.676}}},"entry-3877":{"id":"entry-3877","kind":"mob","name":"Wailing Guardsman","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3226-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3855":{"id":"entry-3855","kind":"mob","name":"Shadowfang Darksoul","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8140","name":"Befuddlement","spellId":8140,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5432,"damageMultiplier":1.12},{"id":"spell-970","name":"Shadow Word: Pain","spellId":970,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5432,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-657-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.4047,"markerRadius":0.65}}},"entry-3864":{"id":"entry-3864","kind":"mob","name":"Fel Steed","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-1951-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":3.3237,"markerRadius":1.4617}}},"entry-3873":{"id":"entry-3873","kind":"mob","name":"Tormented Officer","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3225-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4274":{"id":"entry-4274","kind":"boss","name":"Fenrus the Devourer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":21,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7125","name":"Toxic Saliva","spellId":7125,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6963,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-20180-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2003,"markerRadius":2.8409}}},"entry-3854":{"id":"entry-3854","kind":"mob","name":"Shadowfang Wolfguard","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7106","name":"Dark Restore","spellId":7106,"delivery":"projectile","target":"lowest-health-friendly","school":"shadow","animation":"cast","range":28,"cooldownMs":4217,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-203-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7673,"markerRadius":0.676}}},"entry-3872":{"id":"entry-3872","kind":"mob","name":"Deathsworn Captain","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-40505","name":"Cleave","spellId":40505,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4715,"damageMultiplier":0.62,"radius":8},{"id":"spell-2457","name":"Battle Stance","spellId":2457,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4715,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-3224-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10000":{"id":"entry-10000","kind":"mob","name":"Arugal","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-2353-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-14682":{"id":"entry-14682","kind":"mob","name":"Sever","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17745","name":"Diseased Spit","spellId":17745,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7174,"damageMultiplier":1.12},{"id":"spell-16508","name":"Intimidating Roar","spellId":16508,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":7174,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadowfang-keep/creatures/display-1061-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":3.9287,"markerRadius":1.7317}}}},"staticSpawns":[{"id":"creature-2114","entityId":"entry-3861","position":[-54.7222,21.1088,-22.2793],"yaw":-6.00393,"spawnMask":1},{"id":"creature-3478","entityId":"entry-3861","position":[-30.9912,31.216,-6.5593],"yaw":-6.00393,"spawnMask":1},{"id":"creature-3479","entityId":"entry-3851","position":[-62.2362,25.2694,-7.9393],"yaw":-1.0472,"spawnMask":1},{"id":"creature-3480","entityId":"entry-3851","position":[-20.9092,25.3944,11.1907],"yaw":-2.32129,"spawnMask":1},{"id":"creature-3481","entityId":"entry-3861","position":[-76.6112,25.7165,0.7107],"yaw":-0.418879,"spawnMask":1},{"id":"creature-3482","entityId":"entry-3851","position":[-73.0252,25.7155,8.4107],"yaw":-6.03884,"spawnMask":1},{"id":"creature-3483","entityId":"entry-3851","position":[-20.7872,31.2274,-10.0193],"yaw":-2.79253,"spawnMask":1},{"id":"creature-11514","entityId":"entry-3851","position":[-61.2502,30.7154,5.2407],"yaw":-5.88176,"spawnMask":1},{"id":"creature-13352","entityId":"entry-3861","position":[-12.3242,25.3944,4.8007],"yaw":-1.74533,"spawnMask":1},{"id":"creature-13353","entityId":"entry-3861","position":[-8.8572,25.3944,-3.7193],"yaw":-1.50098,"spawnMask":1},{"id":"creature-16237","entityId":"entry-3927","position":[-146.8892,99.8935,36.9407],"yaw":-2.67035,"spawnMask":1},{"id":"creature-16238","entityId":"entry-3863","position":[-148.9112,99.8935,48.3307],"yaw":-3.35103,"spawnMask":1},{"id":"creature-16239","entityId":"entry-3861","position":[-139.9842,99.8935,28.1907],"yaw":-2.16421,"spawnMask":1},{"id":"creature-16240","entityId":"entry-3862","position":[-128.2072,99.8935,57.8207],"yaw":-5.09636,"spawnMask":1},{"id":"creature-16241","entityId":"entry-5058","position":[-118.4012,99.8935,38.0907],"yaw":-0.10472,"spawnMask":1},{"id":"creature-16242","entityId":"entry-3914","position":[-15.5232,25.311,-1.9793],"yaw":-0.919918,"spawnMask":1},{"id":"creature-16244","entityId":"entry-3859","position":[-86.3322,57.6315,64.5007],"yaw":-5.90112,"spawnMask":1},{"id":"creature-16246","entityId":"entry-2529","position":[-160.0982,45.7345,28.3807],"yaw":-4.31096,"spawnMask":1},{"id":"creature-16247","entityId":"entry-3863","position":[-156.1932,45.7345,41.4307],"yaw":-0.244346,"spawnMask":1},{"id":"creature-16248","entityId":"entry-2529","position":[-133.4732,38.2568,38.7407],"yaw":-6.17846,"spawnMask":1},{"id":"creature-16250","entityId":"entry-3863","position":[-146.8582,57.3465,57.9307],"yaw":-4.13643,"spawnMask":1},{"id":"creature-16252","entityId":"entry-3863","position":[-137.8822,38.26,51.1807],"yaw":-2.54818,"spawnMask":1},{"id":"creature-16253","entityId":"entry-3886","position":[-65.0182,20.4161,132.8707],"yaw":-3.97935,"spawnMask":1},{"id":"creature-16254","entityId":"entry-3887","position":[7.7278,20.368,172.2607],"yaw":-5.89921,"spawnMask":1},{"id":"creature-16255","entityId":"entry-4275","position":[-190.8601,99.9235,27.3207],"yaw":-2.49582,"spawnMask":1},{"id":"creature-16256","entityId":"entry-4278","position":[-45.0222,46.9705,134.3507],"yaw":-3.47321,"spawnMask":1},{"id":"creature-16257","entityId":"entry-4279","position":[-30.9062,44.2435,20.9907],"yaw":-4.46804,"spawnMask":1},{"id":"creature-16258","entityId":"entry-3868","position":[-18.8262,44.2435,-2.2293],"yaw":-1.58825,"spawnMask":1},{"id":"creature-16259","entityId":"entry-3866","position":[-24.4402,44.2435,1.8407],"yaw":-6.07375,"spawnMask":1},{"id":"creature-16260","entityId":"entry-4444","position":[-49.6232,25.2642,25.6807],"yaw":-2.79253,"spawnMask":1},{"id":"creature-16261","entityId":"entry-3849","position":[-23.9022,25.3944,-11.3693],"yaw":-2.86234,"spawnMask":1},{"id":"creature-16262","entityId":"entry-3850","position":[-26.7102,25.3944,-2.5393],"yaw":-2.47837,"spawnMask":1},{"id":"creature-16263","entityId":"entry-3853","position":[-72.1392,23.9784,78.0407],"yaw":-4.43314,"spawnMask":1},{"id":"creature-16264","entityId":"entry-3853","position":[-66.7542,23.9794,65.9207],"yaw":-3.28122,"spawnMask":1},{"id":"creature-16266","entityId":"entry-3853","position":[-58.2452,23.981,117.2607],"yaw":-5.86431,"spawnMask":1},{"id":"creature-16267","entityId":"entry-3862","position":[-46.7942,25.3421,28.4407],"yaw":-4.72984,"spawnMask":1},{"id":"creature-16269","entityId":"entry-3853","position":[-37.4622,25.3671,33.6207],"yaw":-0.191986,"spawnMask":1},{"id":"creature-16270","entityId":"entry-3853","position":[-90.4542,24.228,87.4307],"yaw":-1.50098,"spawnMask":1},{"id":"creature-16271","entityId":"entry-3853","position":[-44.2272,23.9767,77.6207],"yaw":-1.46608,"spawnMask":1},{"id":"creature-16272","entityId":"entry-3853","position":[-68.4702,23.9726,95.8807],"yaw":-6.26573,"spawnMask":1},{"id":"creature-16278","entityId":"entry-3875","position":[-74.8272,20.4161,124.7907],"yaw":-3.19395,"spawnMask":1},{"id":"creature-16279","entityId":"entry-3875","position":[-85.5182,20.4561,106.7007],"yaw":-1.71042,"spawnMask":1},{"id":"creature-16280","entityId":"entry-3875","position":[-74.4802,20.4161,132.2107],"yaw":-4.95674,"spawnMask":1},{"id":"creature-16281","entityId":"entry-3875","position":[-88.5312,20.4561,111.4007],"yaw":-0.541052,"spawnMask":1},{"id":"creature-16282","entityId":"entry-3875","position":[-6.1282,19.2141,162.5507],"yaw":-5.3058,"spawnMask":1},{"id":"creature-16283","entityId":"entry-3875","position":[-27.7022,19.2142,164.1607],"yaw":-0.715585,"spawnMask":1},{"id":"creature-16284","entityId":"entry-3857","position":[-31.7872,19.2142,151.6907],"yaw":-3.45575,"spawnMask":1},{"id":"creature-16285","entityId":"entry-3857","position":[-16.2012,19.2141,169.8307],"yaw":-1.88496,"spawnMask":1},{"id":"creature-16286","entityId":"entry-3875","position":[-38.2082,19.2142,147.4607],"yaw":-0.977384,"spawnMask":1},{"id":"creature-16289","entityId":"entry-3857","position":[-22.2502,19.2141,155.4307],"yaw":-0.139626,"spawnMask":1},{"id":"creature-16290","entityId":"entry-3875","position":[-13.1902,19.2141,158.1907],"yaw":-4.2586,"spawnMask":1},{"id":"creature-16291","entityId":"entry-3875","position":[-37.0112,19.2142,159.8007],"yaw":-1.44862,"spawnMask":1},{"id":"creature-16292","entityId":"entry-3875","position":[-5.4752,19.6023,171.7507],"yaw":-2.87979,"spawnMask":1},{"id":"creature-16293","entityId":"entry-3877","position":[-45.8392,46.9725,127.0107],"yaw":-4.2237,"spawnMask":1},{"id":"creature-16294","entityId":"entry-3877","position":[-25.9592,45.1085,130.9807],"yaw":-6.0912,"spawnMask":1},{"id":"creature-16295","entityId":"entry-3875","position":[-10.6322,45.1075,124.5007],"yaw":-1.50098,"spawnMask":1},{"id":"creature-16296","entityId":"entry-3877","position":[-17.1082,45.1115,112.8607],"yaw":-1.58825,"spawnMask":1},{"id":"creature-16297","entityId":"entry-3877","position":[-7.6962,45.1085,117.4707],"yaw":-3.03687,"spawnMask":1},{"id":"creature-16298","entityId":"entry-3877","position":[-35.3882,46.0165,125.5007],"yaw":-6.23082,"spawnMask":1},{"id":"creature-16299","entityId":"entry-3875","position":[-37.7652,46.9715,136.5507],"yaw":-2.46091,"spawnMask":1},{"id":"creature-16300","entityId":"entry-3875","position":[-20.3932,45.1085,122.4407],"yaw":-3.66519,"spawnMask":1},{"id":"creature-16313","entityId":"entry-3875","position":[-17.5352,45.1035,137.6807],"yaw":-2.04204,"spawnMask":1},{"id":"creature-16314","entityId":"entry-3855","position":[-0.8062,40.0813,189.5507],"yaw":-0.488692,"spawnMask":1},{"id":"creature-16318","entityId":"entry-3855","position":[-9.4972,41.0369,194.7007],"yaw":-6.23082,"spawnMask":1},{"id":"creature-16319","entityId":"entry-3855","position":[10.1788,40.0813,197.0107],"yaw":-3.49066,"spawnMask":1},{"id":"creature-16343","entityId":"entry-3855","position":[16.7428,40.0813,152.0907],"yaw":-0.314159,"spawnMask":1},{"id":"creature-16436","entityId":"entry-3855","position":[31.3898,37.2416,170.7107],"yaw":-0.296706,"spawnMask":1},{"id":"creature-16438","entityId":"entry-3855","position":[5.7798,40.0813,148.0407],"yaw":-2.04204,"spawnMask":1},{"id":"creature-16439","entityId":"entry-3855","position":[-16.2572,40.0813,182.3707],"yaw":-3.89208,"spawnMask":1},{"id":"creature-16440","entityId":"entry-3864","position":[-33.4832,23.9934,111.1707],"yaw":-0.296706,"spawnMask":1},{"id":"creature-16441","entityId":"entry-3864","position":[-44.0022,23.9898,120.6307],"yaw":-5.13127,"spawnMask":1},{"id":"creature-16442","entityId":"entry-3864","position":[-50.4792,23.9894,122.0407],"yaw":-4.88692,"spawnMask":1},{"id":"creature-16443","entityId":"entry-3873","position":[-61.7922,41.5214,-19.8393],"yaw":-1.07407,"spawnMask":1},{"id":"creature-16444","entityId":"entry-3877","position":[-19.1102,38.0624,58.5407],"yaw":-4.4644,"spawnMask":1},{"id":"creature-16449","entityId":"entry-3877","position":[-16.4582,38.1515,50.4407],"yaw":-1.61463,"spawnMask":1},{"id":"creature-18183","entityId":"entry-3873","position":[-80.9162,41.5214,12.1507],"yaw":-4.28856,"spawnMask":1},{"id":"creature-18189","entityId":"entry-3873","position":[-75.6252,41.6048,4.0207],"yaw":-1.29655,"spawnMask":1},{"id":"creature-18241","entityId":"entry-3873","position":[-72.7702,41.6048,-4.9093],"yaw":-1.11768,"spawnMask":1},{"id":"creature-18304","entityId":"entry-3861","position":[-63.1332,30.7147,14.0607],"yaw":-1.42291,"spawnMask":1},{"id":"creature-18308","entityId":"entry-3851","position":[-60.3702,21.1088,-22.9293],"yaw":-1.88094,"spawnMask":1},{"id":"creature-18312","entityId":"entry-3861","position":[-70.2982,25.2716,-13.9293],"yaw":-5.9909,"spawnMask":1},{"id":"creature-18313","entityId":"entry-3851","position":[-24.5752,31.2277,3.9407],"yaw":-1.45932,"spawnMask":1},{"id":"creature-18401","entityId":"entry-3863","position":[-139.5502,57.3465,61.6807],"yaw":-2.67035,"spawnMask":1},{"id":"creature-18403","entityId":"entry-3859","position":[-124.1622,38.2562,37.6107],"yaw":-0.069813,"spawnMask":1},{"id":"creature-18431","entityId":"entry-3859","position":[-97.9282,38.1776,46.6107],"yaw":-5.93232,"spawnMask":1},{"id":"creature-18690","entityId":"entry-3863","position":[-116.7072,44.091,57.0807],"yaw":-1.01229,"spawnMask":1},{"id":"creature-18691","entityId":"entry-2529","position":[-172.7617,89.1355,25.2807],"yaw":-3.07178,"spawnMask":1},{"id":"creature-18692","entityId":"entry-3859","position":[-118.5132,44.091,49.2507],"yaw":-2.86234,"spawnMask":1},{"id":"creature-18693","entityId":"entry-3863","position":[-149.5052,45.7345,27.0907],"yaw":-5.72468,"spawnMask":1},{"id":"creature-18694","entityId":"entry-2529","position":[-160.7542,89.1355,8.1107],"yaw":-2.70526,"spawnMask":1},{"id":"creature-18695","entityId":"entry-2529","position":[-177.427,89.1355,6.3207],"yaw":-6.26573,"spawnMask":1},{"id":"creature-18697","entityId":"entry-3862","position":[-75.1762,23.9746,97.8607],"yaw":-2.94961,"spawnMask":1},{"id":"creature-18698","entityId":"entry-3853","position":[-60.5152,23.9798,36.9207],"yaw":-0.623848,"spawnMask":1},{"id":"creature-18699","entityId":"entry-3862","position":[-97.6802,30.4907,119.1307],"yaw":-3.1765,"spawnMask":1},{"id":"creature-18700","entityId":"entry-3853","position":[-108.5922,30.2307,118.4207],"yaw":-0.10472,"spawnMask":1},{"id":"creature-18701","entityId":"entry-3862","position":[-69.0202,23.9786,28.8407],"yaw":-4.46288,"spawnMask":1},{"id":"creature-18702","entityId":"entry-3853","position":[-71.6882,23.9642,37.8607],"yaw":-0.456987,"spawnMask":1},{"id":"creature-18703","entityId":"entry-3862","position":[-35.7482,23.9791,40.8207],"yaw":-2.68061,"spawnMask":1},{"id":"creature-18704","entityId":"entry-3853","position":[-91.4572,30.7213,125.2107],"yaw":-5.11381,"spawnMask":1},{"id":"creature-18705","entityId":"entry-3853","position":[-43.9512,23.9753,84.3607],"yaw":-3.46964,"spawnMask":1},{"id":"creature-18706","entityId":"entry-3853","position":[-98.0892,24.7137,95.5707],"yaw":-0.715585,"spawnMask":1},{"id":"creature-18710","entityId":"entry-2529","position":[-139.5602,56.9095,53.9607],"yaw":-1.74533,"spawnMask":1},{"id":"creature-18711","entityId":"entry-3859","position":[-147.0722,45.7345,35.9307],"yaw":-6.03884,"spawnMask":1},{"id":"creature-18712","entityId":"entry-3862","position":[-63.6022,23.9803,59.0407],"yaw":-4.31299,"spawnMask":1},{"id":"creature-18713","entityId":"entry-3853","position":[-50.4712,23.9747,100.1007],"yaw":-4.5204,"spawnMask":1},{"id":"creature-18714","entityId":"entry-4274","position":[-132.0052,72.9105,43.5707],"yaw":-2.86234,"spawnMask":1},{"id":"creature-45823","entityId":"entry-3855","position":[-72.9702,40.0305,164.6807],"yaw":-2.57587,"spawnMask":1},{"id":"creature-247103","entityId":"entry-10000","position":[-48.6562,25.2315,27.7407],"yaw":-5.09,"spawnMask":1},{"id":"creature-248653","entityId":"entry-14682","position":[-42.4832,38.8914,177.8607],"yaw":-6.02139,"spawnMask":1}],"roamingPacks":[{"id":"patrol-16243","name":"Shadowfang Ragetooth Patrol","speed":1.15,"pathId":162430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-120.1582,51.3525,60.5407],[-114.3222,49.2185,63.0707],[-109.6312,46.3205,52.0607],[-113.7332,49.1215,63.0007],[-125.4782,53.5355,58.2107],[-132.7912,56.8265,55.0807],[-147.5152,56.8265,48.8007],[-156.1792,51.9405,45.9507],[-164.5292,49.0835,42.7607],[-158.4172,45.6515,29.0607],[-140.7002,45.6475,31.3507],[-130.4492,48.7795,35.6007],[-116.7222,53.0505,40.5307],[-97.9102,53.3855,48.0907],[-115.8312,53.2715,41.1607],[-127.3812,49.6975,36.3607],[-140.7322,45.6475,31.2007],[-149.1102,45.6505,31.4807],[-159.8582,45.6505,31.1407],[-164.3252,49.0695,42.5507],[-155.9022,51.9815,45.6107],[-147.3722,56.8265,49.5407],[-129.8892,56.4685,56.2507]],"members":[{"id":"member","entityId":"entry-3859","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16245","name":"Son of Arugal Patrol","speed":1.15,"pathId":162450,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-146.7612,83.4185,42.8507],[-149.0962,84.6025,50.4307],[-148.6332,85.5945,56.6007],[-144.1662,87.4325,66.1107],[-140.0202,88.6035,71.8907],[-135.4202,89.5655,75.0807],[-126.6812,91.1005,77.2107],[-118.0472,92.6055,77.4607],[-111.3582,93.8905,74.6907],[-102.7562,95.5375,68.4007],[-99.5052,96.0385,63.6907],[-95.6142,96.0385,54.3107],[-100.0912,96.0385,63.7907],[-103.8612,95.3235,69.1307],[-107.6892,94.5565,73.0707],[-114.3622,93.2855,76.1707],[-122.8192,91.7845,77.1907],[-130.1462,90.4685,76.5307],[-136.9172,89.1965,73.6307],[-142.2062,87.9385,68.5207],[-146.0952,86.4995,61.1907],[-148.1532,85.1785,53.8807],[-148.2562,83.8975,46.4107],[-143.8462,82.8285,34.4707]],"members":[{"id":"member","entityId":"entry-2529","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16249","name":"Shadowfang Ragetooth Patrol","speed":1.15,"pathId":162490,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-86.1632,41.5216,46.0507],[-86.8502,41.5216,48.1007],[-85.1162,42.1449,53.5507],[-86.8012,41.9699,57.2807],[-90.9772,40.9303,59.1107],[-95.4342,39.8742,57.3607],[-96.7672,38.8839,53.1207],[-95.0962,38.1882,48.1407],[-137.2252,38.1738,33.5607],[-95.0262,38.1878,48.2107],[-96.9062,38.8849,53.1207],[-95.7452,39.6586,56.6707],[-92.5042,40.5816,58.7607],[-88.7592,41.4303,58.7507],[-86.0192,42.1882,55.5307],[-85.3072,42.0758,53.0607],[-87.1192,41.5216,47.9507]],"members":[{"id":"member","entityId":"entry-3859","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16251","name":"Son of Arugal Patrol","speed":1.15,"pathId":162510,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-95.5452,54.7285,58.5607],[-93.5812,55.8885,62.7707],[-90.2692,56.7565,64.6907],[-86.1912,57.6515,64.4707],[-83.1042,58.5295,61.9707],[-82.3212,60.2675,54.4207],[-88.7062,62.0285,50.7807],[-94.9392,63.6215,53.9907],[-95.2292,65.1255,60.1707],[-89.5602,66.8555,64.6807],[-82.8322,68.7855,61.1707],[-82.5262,70.4145,54.1707],[-86.9962,71.6685,50.9907],[-93.0932,73.0745,52.0707],[-97.0122,73.3865,59.4607],[-93.4912,73.2135,52.7907],[-87.2222,71.7375,50.9607],[-82.1482,70.2515,54.4907],[-83.2392,68.4865,62.2507],[-90.4282,66.7335,64.7007],[-95.6922,65.0945,60.0707],[-92.7172,63.0285,52.0807],[-85.8422,61.3605,51.6607],[-81.8472,59.4985,57.9807],[-84.4062,58.0845,63.6107],[-90.5282,56.6955,64.5107],[-95.8302,54.9345,59.5707],[-95.3652,54.0715,55.8607],[-93.2382,53.3865,48.3407],[-95.3302,53.8305,54.4107]],"members":[{"id":"member","entityId":"entry-2529","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16265","name":"Slavering Worg Patrol","speed":1.15,"pathId":162650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-61.8812,23.8957,89.1907],[-69.4122,23.8957,76.8107],[-64.4242,23.8962,66.6307],[-57.4702,23.8963,56.6707],[-57.9792,23.8967,48.9807],[-64.2162,23.877,42.8307],[-63.3582,23.8958,35.0507],[-60.6122,23.8958,31.7107],[-55.1072,23.8958,34.5307],[-43.1172,23.8958,36.4707],[-38.0022,23.8958,41.0907],[-37.3922,23.8962,45.0207],[-40.2722,23.8971,50.6307],[-43.1532,23.8971,59.1407],[-41.5042,23.8942,70.4607],[-43.6392,23.8942,74.4707],[-48.0472,23.8942,77.9407],[-48.5352,23.8942,85.5207],[-50.0172,23.8942,92.0107],[-57.0082,23.8948,91.5407]],"members":[{"id":"member","entityId":"entry-3862","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16268","name":"Slavering Worg Patrol","speed":1.15,"pathId":162680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-53.3362,25.0623,20.8707],[-50.1692,25.2609,28.9207],[-51.8512,23.8964,37.3507],[-52.2482,23.8967,46.5607],[-42.1182,23.8967,45.8207],[-39.2982,23.8956,62.5007],[-46.9652,23.8957,69.9007],[-47.4292,23.8957,79.6407],[-49.9552,23.8943,89.2307],[-64.6532,23.8947,95.5407],[-53.7602,23.8918,102.1207],[-59.4292,23.8932,92.4607],[-48.3952,23.894,83.8507],[-47.8662,23.8955,72.6007],[-40.2102,23.8955,62.1307],[-45.2322,23.8981,50.4207],[-38.5992,23.8981,46.5007],[-44.5452,23.8967,34.7407],[-47.8722,25.2431,28.1707],[-50.8352,25.1029,22.3107]],"members":[{"id":"member","entityId":"entry-3862","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16273","name":"Haunted Servitor Patrol","speed":1.15,"pathId":162730,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-63.7292,23.8958,89.1007],[-76.3712,23.893,90.3007],[-91.0312,23.8804,92.4407],[-90.2082,23.8878,98.2207],[-91.1822,24.1309,90.7007],[-74.0932,23.8926,90.3207],[-64.2532,23.894,89.0107],[-56.7382,23.8944,88.0107],[-48.0162,23.8932,92.7407],[-58.8172,23.8948,90.7507]],"members":[{"id":"member","entityId":"entry-3875","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16274","name":"Haunted Servitor Patrol","speed":1.15,"pathId":162740,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-109.9372,26.9152,102.7407],[-109.9122,28.7211,110.2007],[-106.7242,30.2761,118.4707],[-97.1202,30.5513,128.0207],[-90.9182,31.1551,130.7407],[-84.0682,33.5729,133.7607],[-80.3992,35.2215,136.1007],[-90.6492,31.3451,131.6607],[-98.9912,30.4872,125.7707],[-105.8612,30.2135,117.1607],[-109.6602,28.5235,108.9007],[-109.8342,26.9417,102.9507]],"members":[{"id":"member","entityId":"entry-3875","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16275","name":"Haunted Servitor Patrol","speed":1.15,"pathId":162750,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-45.1952,23.8955,34.4907],[-49.4912,23.8964,51.1907],[-48.3752,23.8964,71.7007],[-72.1362,23.8846,101.4207],[-46.3452,23.8956,69.1607],[-49.5222,23.8964,51.3907],[-45.9202,23.8964,35.6707],[-42.6252,25.1841,24.0207],[-44.5372,25.2846,31.3007]],"members":[{"id":"member","entityId":"entry-3875","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16276","name":"Haunted Servitor Patrol","speed":1.15,"pathId":162760,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-62.5072,23.8952,83.8907],[-53.4852,23.891,101.2307],[-62.3422,23.8938,84.4407],[-62.9392,23.8953,63.1107],[-51.3152,23.8965,46.5107],[-62.7102,23.8951,29.3507],[-53.1472,23.8966,51.9207],[-64.1492,23.8966,66.4307],[-63.1592,23.8966,79.2407]],"members":[{"id":"member","entityId":"entry-3875","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16277","name":"Haunted Servitor Patrol","speed":1.15,"pathId":162770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-104.7972,26.1739,97.0907],[-99.6062,25.0813,93.7007],[-93.1642,24.3811,91.6207],[-101.2732,25.4692,93.3307],[-109.1752,26.4597,100.4507],[-112.2682,28.6516,110.0007],[-106.3562,30.2679,118.1207],[-98.5932,30.4856,125.3907],[-93.5952,30.6056,128.8307],[-100.9662,30.3778,120.3807],[-105.3552,29.8106,113.6607],[-109.2542,28.3172,107.7007],[-106.5742,26.2584,100.8507]],"members":[{"id":"member","entityId":"entry-3875","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16288","name":"Shadowfang Glutton Patrol","speed":1.15,"pathId":162880,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-41.7842,19.1309,153.3907],[-38.4992,19.1309,146.0307],[-47.0152,19.1309,141.6707],[-54.3452,20.3329,138.9107],[-39.4042,19.1309,145.4607],[-41.4352,19.1309,153.1307],[-43.1062,19.1309,159.4407],[-31.6732,19.1309,164.4007],[-19.2322,19.1309,170.0507],[-8.4992,19.1309,174.9207],[-2.1922,22.6179,177.3907],[4.5488,25.4905,180.0307],[11.0578,28.6096,182.5807],[14.3358,30.9733,181.7207],[17.4318,33.559,180.1007],[21.1888,34.7372,177.9707],[27.3888,34.7411,180.3707],[21.7368,34.7411,178.1607],[19.4178,34.7378,178.3907],[14.9588,31.6014,180.9607],[10.7348,28.4303,182.3207],[6.1118,25.4906,181.0807],[2.5398,25.1975,179.3407],[-3.5122,21.9591,177.1807],[-10.9872,19.1312,174.5107],[-24.6112,19.1312,167.0607],[-44.3442,19.1312,158.8707],[-43.2782,19.1312,157.3407]],"members":[{"id":"member","entityId":"entry-3857","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16315","name":"Shadowfang Darksoul Patrol","speed":1.15,"pathId":163150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[10.3058,39.998,198.8907],[1.3078,39.998,194.6907],[-26.8252,39.998,184.7407],[1.9698,39.998,195.7507],[18.8718,39.998,202.2107],[21.2468,39.9378,196.8707],[24.2288,35.6486,187.2907],[22.0618,37.9478,192.2007],[17.3968,39.9983,202.7807],[13.9558,39.9983,200.9807]],"members":[{"id":"member","entityId":"entry-3855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16437","name":"Shadowfang Darksoul Patrol","speed":1.15,"pathId":164370,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-81.0082,40.03,159.2207],[-82.9282,40.03,163.2207],[-70.5312,40.03,168.3807],[-55.6742,40.0276,173.6507],[-69.1352,40.0306,166.3807],[-78.9672,40.0306,161.7807],[-76.4292,38.4736,154.6207],[-73.1892,34.7753,145.4807],[-70.9622,34.7753,139.2007],[-75.7692,35.3532,147.0807],[-77.9892,37.8489,152.4607],[-79.7712,39.8549,156.7807]],"members":[{"id":"member","entityId":"entry-3855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16445","name":"Tormented Officer Patrol","speed":1.15,"pathId":164450,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-25.9332,41.5216,-13.5093],[-43.3892,41.5216,-21.8393],[-58.6352,41.5216,-26.3293],[-68.9472,41.5216,2.7107],[-84.5122,41.5216,43.7307],[-71.6732,41.5216,12.3707],[-55.9802,41.5216,-25.8893],[-43.1342,41.5216,-21.1993]],"members":[{"id":"member","entityId":"entry-3873","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-16448","name":"Wailing Guardsman Patrol","speed":1.15,"pathId":164480,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-11.6682,35.9857,24.3907],[-10.1642,36.945,20.1007],[-1.1862,39.9464,25.0607],[0.7368,40.0026,20.9307],[-0.5342,39.9241,25.9307],[-9.8752,36.8889,22.0807],[-12.6532,35.2363,28.6507],[-17.3822,35.2378,27.1507],[-20.1152,36.6513,33.2907],[-15.8972,37.9385,35.1107],[-13.7532,38.0501,36.1107],[-14.8062,38.0668,38.7907],[-13.7132,38.05,36.1107],[-20.2822,36.64,33.3207],[-17.3922,35.239,27.0807],[-13.7332,35.2375,28.4207],[-12.3472,35.2294,25.9807]],"members":[{"id":"member","entityId":"entry-3877","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-17901","name":"Tormented Officer Patrol","speed":1.15,"pathId":179010,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-87.0052,41.5219,44.0307],[-77.3622,41.5219,13.8707],[-59.5942,41.5219,-26.9393],[-54.9802,41.5219,-29.1393],[-27.5802,41.5219,-18.3593],[-54.7142,41.5219,-28.8093],[-63.5612,41.5219,-24.1393],[-81.1312,41.5219,21.4707],[-82.9602,41.5219,32.1407]],"members":[{"id":"member","entityId":"entry-3873","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-17956","name":"Wailing Guardsman Patrol","speed":1.15,"pathId":179560,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-15.0082,38.0669,44.6407],[-13.2932,38.0669,40.5807],[-18.6022,38.0669,52.9307],[-22.2632,38.0653,58.7707],[-26.5012,41.4768,65.5407],[-30.6142,41.4768,78.2707],[-34.1332,41.4684,92.7907],[-30.7262,41.4757,79.9807],[-26.2732,41.4757,64.9907],[-22.3452,38.0654,57.7907],[-17.9642,38.0669,49.3907]],"members":[{"id":"member","entityId":"entry-3877","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-18696","name":"Shadowfang Ragetooth Patrol","speed":1.15,"pathId":186960,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-101.5092,82.6245,66.0007],[-96.2732,82.8285,54.4307],[-101.1892,82.6115,66.2907],[-110.1182,81.1995,73.8207],[-115.8852,80.4285,76.9007],[-123.6522,79.4865,77.8607],[-131.2592,78.5365,75.9607],[-138.0082,77.5895,72.2307],[-143.7282,76.6695,67.2507],[-146.7922,75.8965,61.4707],[-148.5212,74.9785,53.9707],[-147.1092,73.7345,44.0207],[-148.3462,75.3355,57.1507],[-141.1082,77.2055,71.0207],[-132.5512,78.3945,75.8207],[-123.6142,79.4925,78.0907],[-116.7752,80.3075,77.2607],[-110.5822,81.1295,74.0107],[-104.6212,82.0445,69.5207]],"members":[{"id":"member","entityId":"entry-3859","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-18707","name":"Shadowfang Darksoul Patrol","speed":1.15,"pathId":187070,"formationSource":"database-solo","spawnMask":1,"waypoints":[[26.8568,39.9984,154.1307],[34.2998,39.9984,157.7107],[33.9528,39.9984,163.3107],[31.7278,37.5949,169.9607],[30.2068,35.1609,174.5107],[31.1608,36.6873,171.6307],[32.6658,39.1074,167.0807],[34.4978,39.9985,161.5507],[25.1358,39.9985,157.3307],[16.7388,39.9985,154.1007],[7.0418,39.9985,150.3807],[-1.3552,40.0862,147.1507],[-6.9092,43.0694,145.0207],[-10.5162,44.7675,143.6307],[-4.8572,42.0359,145.4507],[3.9218,39.998,148.2607],[13.0478,39.998,151.1907],[21.7038,39.998,153.9907]],"members":[{"id":"member","entityId":"entry-3855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-18708","name":"Shadowfang Darksoul Patrol","speed":1.15,"pathId":187080,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-71.2062,34.7753,137.8207],[-75.6642,34.7753,145.4807],[-78.4352,37.6394,151.7607],[-82.7732,40.0306,161.6007],[-72.8812,40.0306,165.4407],[-63.7102,40.0306,168.9107],[-56.7242,40.0306,171.5607],[-66.0832,40.0306,169.0007],[-76.8432,40.0306,164.7807],[-80.1802,40.0306,160.1307],[-76.5032,37.4517,152.0507],[-73.4992,34.7754,145.4507]],"members":[{"id":"member","entityId":"entry-3855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-18709","name":"Wailing Guardsman Patrol","speed":1.15,"pathId":187090,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-35.6592,41.4758,87.6307],[-36.1682,41.4657,92.2607],[-35.8182,38.3717,99.0207],[-35.9392,41.4717,91.7007],[-31.9202,41.4772,74.5407],[-29.2452,41.4772,64.4007],[-26.0482,38.0647,56.5007],[-18.6912,38.067,38.3307],[-26.2452,38.0654,57.0207],[-29.4592,41.4767,64.4907],[-33.8072,41.4767,82.4907]],"members":[{"id":"member","entityId":"entry-3877","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-134516","name":"Shadowfang Wolfguard Patrol","speed":1.15,"pathId":1345160,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-42.7582,38.808,178.3707],[-11.7882,39.9982,190.2407],[25.5768,34.7428,185.3207],[20.5388,34.4764,174.9107],[10.9108,25.4907,164.4107],[-9.7322,19.131,159.4507],[-43.6502,19.131,143.1307],[-66.9452,20.3328,133.7707],[-88.1162,20.3725,112.8307],[-88.8102,20.373,105.8707],[-60.3772,20.3328,136.2007],[-39.4662,19.1309,145.1907],[-13.9112,19.1309,171.8907],[4.0678,25.4907,179.8707],[16.9758,33.0211,180.7807],[24.3728,35.1292,186.0207],[18.1918,39.998,203.2807],[-27.3282,39.998,184.6707],[-69.5392,40.0317,167.5807],[-74.8632,34.7752,145.6907],[-87.8692,32.3458,133.0507],[-98.5572,30.5143,126.9307],[-73.0252,34.7743,139.2107],[-79.3032,40.0305,164.4107],[-45.6322,38.8081,177.3707]],"members":[{"id":"member","entityId":"entry-3854","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-134517","name":"Deathsworn Captain Patrol","speed":1.15,"pathId":1345170,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-75.6682,41.5214,-0.4093],[-64.3262,41.5214,-24.6193],[-53.8332,41.5214,-27.1193],[-27.7482,41.5214,-17.0393],[-21.8042,44.1625,-14.6293],[-27.7772,41.5215,-17.2493],[-55.4602,41.5215,-27.6293],[-65.3952,41.5215,-22.3693],[-80.5022,41.5215,8.8107],[-77.6562,41.5215,3.3907]],"members":[{"id":"member","entityId":"entry-3872","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-16242","name":"Rethilgore","position":[-15.5232,25.311,-1.9793]},{"id":"creature-16254","name":"Baron Silverlaine","position":[7.7278,20.368,172.2607]},{"id":"creature-16256","name":"Commander Springvale","position":[-45.0222,46.9705,134.3507]},{"id":"creature-16257","name":"Odo the Blindwatcher","position":[-30.9062,44.2435,20.9907]},{"id":"creature-18714","name":"Fenrus the Devourer","position":[-132.0052,72.9105,43.5707]},{"id":"creature-16237","name":"Wolf Master Nandos","position":[-146.8892,99.8935,36.9407]},{"id":"creature-16255","name":"Archmage Arugal","position":[-190.8601,99.9235,27.3207]}],"objectiveOrder":[{"id":"creature-16242","name":"Rethilgore","position":[-15.5232,25.311,-1.9793]},{"id":"creature-16254","name":"Baron Silverlaine","position":[7.7278,20.368,172.2607]},{"id":"creature-16256","name":"Commander Springvale","position":[-45.0222,46.9705,134.3507]},{"id":"creature-16257","name":"Odo the Blindwatcher","position":[-30.9062,44.2435,20.9907]},{"id":"creature-18714","name":"Fenrus the Devourer","position":[-132.0052,72.9105,43.5707]},{"id":"creature-16237","name":"Wolf Master Nandos","position":[-146.8892,99.8935,36.9407]},{"id":"creature-16255","name":"Archmage Arugal","position":[-190.8601,99.9235,27.3207]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9743,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-201.795,"position_y":2162.82,"position_z":79.7638,"rotation0":0,"rotation1":0,"rotation2":0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9744,"id":201289,"map":33,"orientation":0,"phaseMask":1,"position_x":-203.363,"position_y":2178.46,"position_z":79.7654,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9745,"id":202105,"map":33,"orientation":4.04917,"phaseMask":1,"position_x":-227.738,"position_y":2168.46,"position_z":79.7658,"rotation0":0,"rotation1":0,"rotation2":-0.898793,"rotation3":0.438373,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9746,"id":200300,"map":33,"orientation":4.46804,"phaseMask":1,"position_x":-228.733,"position_y":2192.91,"position_z":79.7614,"rotation0":0,"rotation1":0,"rotation2":-0.788011,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9747,"id":200300,"map":33,"orientation":4.81711,"phaseMask":1,"position_x":-228.116,"position_y":2194.75,"position_z":82.4938,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9748,"id":200332,"map":33,"orientation":4.46804,"phaseMask":1,"position_x":-228.852,"position_y":2192.88,"position_z":79.7613,"rotation0":0,"rotation1":0,"rotation2":-0.788011,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9749,"id":200332,"map":33,"orientation":4.83456,"phaseMask":1,"position_x":-228.222,"position_y":2194.7,"position_z":82.4937,"rotation0":0,"rotation1":0,"rotation2":-0.66262,"rotation3":0.748956,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9750,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-218.931,"position_y":2221.09,"position_z":80.7205,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9751,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-195.741,"position_y":2204.79,"position_z":81.769,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9752,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9753,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-215.632,"position_y":2219.21,"position_z":79.7624,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9754,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-195.221,"position_y":2204.57,"position_z":80.7209,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9755,"id":181018,"map":33,"orientation":0.401425,"phaseMask":1,"position_x":-159.226,"position_y":2167.59,"position_z":132.232,"rotation0":0,"rotation1":0,"rotation2":0.199367,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9756,"id":200332,"map":33,"orientation":4.4855,"phaseMask":1,"position_x":-227.832,"position_y":2197.06,"position_z":79.7609,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9757,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9758,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.363,"position_y":2211.85,"position_z":81.0316,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9759,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.743,"position_y":2209.16,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9760,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9761,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.608,"position_y":2210.14,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9762,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9763,"id":200334,"map":33,"orientation":0,"phaseMask":1,"position_x":-203.431,"position_y":2178.22,"position_z":81.0531,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9764,"id":181018,"map":33,"orientation":1.8675,"phaseMask":1,"position_x":-140.861,"position_y":2160.24,"position_z":131.955,"rotation0":0,"rotation1":0,"rotation2":0.803857,"rotation3":0.594823,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9765,"id":201906,"map":33,"orientation":1.37881,"phaseMask":1,"position_x":-201.818,"position_y":2165.14,"position_z":80.6793,"rotation0":0,"rotation1":0,"rotation2":0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9766,"id":200300,"map":33,"orientation":4.46804,"phaseMask":1,"position_x":-227.712,"position_y":2197.08,"position_z":79.761,"rotation0":0,"rotation1":0,"rotation2":-0.788011,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9767,"id":201906,"map":33,"orientation":0.680677,"phaseMask":1,"position_x":-201.056,"position_y":2165.41,"position_z":80.6763,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9768,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.743,"position_y":2209.16,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9769,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.363,"position_y":2211.85,"position_z":81.0316,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9770,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.102,"position_y":2209.57,"position_z":81.0145,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9771,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-199.137,"position_y":2165.32,"position_z":80.6689,"rotation0":0,"rotation1":0,"rotation2":0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9772,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-223.21,"position_y":2215.07,"position_z":80.9929,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9773,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.833,"position_y":2210.94,"position_z":81.057,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9774,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-196.936,"position_y":2191.94,"position_z":79.75,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9775,"id":181060,"map":33,"orientation":5.91667,"phaseMask":1,"position_x":-266.908,"position_y":2297.32,"position_z":77.5253,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9776,"id":181018,"map":33,"orientation":4.38078,"phaseMask":1,"position_x":-260.819,"position_y":2304.19,"position_z":82.1945,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9777,"id":201906,"map":33,"orientation":3.08918,"phaseMask":1,"position_x":-199.852,"position_y":2164.86,"position_z":80.6729,"rotation0":0,"rotation1":0,"rotation2":0.999657,"rotation3":0.0262017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9778,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9779,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.608,"position_y":2210.14,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9780,"id":200336,"map":33,"orientation":1.23918,"phaseMask":1,"position_x":-196.036,"position_y":2203.82,"position_z":79.7639,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9781,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-218.132,"position_y":2218.64,"position_z":80.7216,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9782,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-196.009,"position_y":2204.84,"position_z":80.7224,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9783,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-196.865,"position_y":2192.99,"position_z":79.7589,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9784,"id":201906,"map":33,"orientation":0.174532,"phaseMask":1,"position_x":-199.467,"position_y":2166.15,"position_z":80.6654,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9785,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-217.469,"position_y":2219.5,"position_z":80.7216,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9786,"id":201906,"map":33,"orientation":5.63741,"phaseMask":1,"position_x":-200.339,"position_y":2165.79,"position_z":80.671,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9787,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-196.733,"position_y":2202.13,"position_z":80.5776,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9788,"id":181060,"map":33,"orientation":4.24115,"phaseMask":1,"position_x":-251.602,"position_y":2289.04,"position_z":76.3188,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9789,"id":201906,"map":33,"orientation":0.174532,"phaseMask":1,"position_x":-200.524,"position_y":2164.54,"position_z":80.6773,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9790,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-198.396,"position_y":2201.86,"position_z":79.764,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9791,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.608,"position_y":2210.14,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9792,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.078,"position_y":2211.08,"position_z":81.0274,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9793,"id":201289,"map":33,"orientation":6.10865,"phaseMask":1,"position_x":-224.648,"position_y":2210.9,"position_z":79.7595,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9794,"id":201289,"map":33,"orientation":6.05629,"phaseMask":1,"position_x":-223.453,"position_y":2215.89,"position_z":79.7598,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9795,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-218.703,"position_y":2219.25,"position_z":80.7212,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9796,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-200.911,"position_y":2162.44,"position_z":79.7639,"rotation0":0,"rotation1":0,"rotation2":0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9797,"id":200336,"map":33,"orientation":2.32129,"phaseMask":1,"position_x":-218.674,"position_y":2220.03,"position_z":79.7609,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.39875,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9798,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-225.352,"position_y":2209.58,"position_z":81.0139,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9799,"id":200335,"map":33,"orientation":0,"phaseMask":1,"position_x":-196.556,"position_y":2195.78,"position_z":79.7637,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9800,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-225.16,"position_y":2211.52,"position_z":81.0294,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9801,"id":190678,"map":33,"orientation":0,"phaseMask":1,"position_x":-222.55,"position_y":2206.36,"position_z":81.0686,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9802,"id":201289,"map":33,"orientation":0.383971,"phaseMask":1,"position_x":-222.823,"position_y":2206.05,"position_z":79.7614,"rotation0":0,"rotation1":0,"rotation2":0.190808,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9803,"id":200336,"map":33,"orientation":0.453785,"phaseMask":1,"position_x":-200.215,"position_y":2165.32,"position_z":79.7479,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9804,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-225.222,"position_y":2210.19,"position_z":81.0138,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9805,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-219.042,"position_y":2219.86,"position_z":80.7208,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9807,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-219.502,"position_y":2219.88,"position_z":81.8517,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9808,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-223.701,"position_y":2212.13,"position_z":81.0575,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9809,"id":200338,"map":33,"orientation":0,"phaseMask":1,"position_x":-197.938,"position_y":2192.51,"position_z":79.7641,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9810,"id":200333,"map":33,"orientation":3.28124,"phaseMask":1,"position_x":-194.804,"position_y":2199.3,"position_z":79.7631,"rotation0":0,"rotation1":0,"rotation2":-0.997563,"rotation3":0.0697661,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9811,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-218.33,"position_y":2220.42,"position_z":80.721,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9813,"id":200337,"map":33,"orientation":0,"phaseMask":1,"position_x":-219.682,"position_y":2220.34,"position_z":80.7204,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9814,"id":181018,"map":33,"orientation":1.11701,"phaseMask":1,"position_x":-233.536,"position_y":2268.83,"position_z":82.173,"rotation0":0,"rotation1":0,"rotation2":0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9815,"id":181018,"map":33,"orientation":5.044,"phaseMask":1,"position_x":-151.878,"position_y":2185.76,"position_z":132.195,"rotation0":0,"rotation1":0,"rotation2":-0.580703,"rotation3":0.814116,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9816,"id":181018,"map":33,"orientation":1.13446,"phaseMask":1,"position_x":-245.509,"position_y":2273.54,"position_z":82.1679,"rotation0":0,"rotation1":0,"rotation2":0.537299,"rotation3":0.843392,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9817,"id":181018,"map":33,"orientation":5.8294,"phaseMask":1,"position_x":-275.078,"position_y":2302.97,"position_z":82.4822,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9818,"id":181018,"map":33,"orientation":1.29154,"phaseMask":1,"position_x":-257.375,"position_y":2278.22,"position_z":82.1422,"rotation0":0,"rotation1":0,"rotation2":0.601814,"rotation3":0.798636,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9819,"id":181018,"map":33,"orientation":3.4034,"phaseMask":1,"position_x":-133.693,"position_y":2178.62,"position_z":132.166,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9820,"id":181060,"map":33,"orientation":4.24115,"phaseMask":1,"position_x":-245.212,"position_y":2284.84,"position_z":76.3643,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9821,"id":181019,"map":33,"orientation":5.91667,"phaseMask":1,"position_x":-244.988,"position_y":2285.46,"position_z":76.32,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9822,"id":181060,"map":33,"orientation":4.24115,"phaseMask":1,"position_x":-237.128,"position_y":2281.8,"position_z":76.3139,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9823,"id":181019,"map":33,"orientation":0.628317,"phaseMask":1,"position_x":-236.846,"position_y":2282.42,"position_z":76.2727,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9824,"id":181060,"map":33,"orientation":4.24115,"phaseMask":1,"position_x":-244.696,"position_y":2286.15,"position_z":76.2698,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9825,"id":181060,"map":33,"orientation":4.24115,"phaseMask":1,"position_x":-236.609,"position_y":2283.01,"position_z":76.2624,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9826,"id":181060,"map":33,"orientation":4.43314,"phaseMask":1,"position_x":-252.101,"position_y":2287.61,"position_z":76.3343,"rotation0":0,"rotation1":0,"rotation2":-0.798635,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9827,"id":181018,"map":33,"orientation":1.23918,"phaseMask":1,"position_x":-269.25,"position_y":2282.98,"position_z":82.2886,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9828,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.363,"position_y":2211.85,"position_z":81.0316,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9829,"id":181060,"map":33,"orientation":5.89921,"phaseMask":1,"position_x":-268.96,"position_y":2291.8,"position_z":77.4431,"rotation0":0,"rotation1":0,"rotation2":-0.190808,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9830,"id":202948,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.363,"position_y":2211.85,"position_z":81.0316,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9831,"id":181018,"map":33,"orientation":4.38078,"phaseMask":1,"position_x":-237.116,"position_y":2294.86,"position_z":82.2157,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9832,"id":181018,"map":33,"orientation":5.89921,"phaseMask":1,"position_x":-278.743,"position_y":2293.67,"position_z":82.4162,"rotation0":0,"rotation1":0,"rotation2":-0.190808,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9833,"id":202947,"map":33,"orientation":0,"phaseMask":1,"position_x":-224.743,"position_y":2209.16,"position_z":81.0142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9834,"id":181019,"map":33,"orientation":0.628317,"phaseMask":1,"position_x":-251.858,"position_y":2288.43,"position_z":76.3263,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9835,"id":181018,"map":33,"orientation":4.38078,"phaseMask":1,"position_x":-225.115,"position_y":2290.13,"position_z":82.1598,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9836,"id":181018,"map":33,"orientation":4.38078,"phaseMask":1,"position_x":-248.991,"position_y":2299.53,"position_z":82.2632,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":23420,"animprogress":255,"areaId":0,"guid":9837,"id":181019,"map":33,"orientation":0.628317,"phaseMask":1,"position_x":-268.661,"position_y":2295.62,"position_z":77.5094,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":12368,"id":38491,"map":33,"orientation":3.55175,"phaseMask":1,"position_x":-344.818,"position_y":2035.34,"position_z":16.9989,"rotation0":0,"rotation1":0,"rotation2":-0.979045,"rotation3":0.203644,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":209,"guid":20835,"id":18895,"map":33,"orientation":-1.94604,"phaseMask":1,"position_x":-242.581,"position_y":2159.05,"position_z":90.6226,"rotation0":0,"rotation1":0,"rotation2":-0.826589,"rotation3":0.562806,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":209},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":100,"areaId":0,"guid":32442,"id":18900,"map":33,"orientation":6.09235,"phaseMask":1,"position_x":-252.696,"position_y":2114.22,"position_z":82.8052,"rotation0":-0.131892,"rotation1":-0.694696,"rotation2":-0.131892,"rotation3":0.694698,"spawnMask":1,"spawntimesecs":0,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32443,"id":101812,"map":33,"orientation":1.5708,"phaseMask":1,"position_x":-236.251,"position_y":2164.04,"position_z":91.1562,"rotation0":0.584487,"rotation1":0.397963,"rotation2":0.584487,"rotation3":-0.397963,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":100,"areaId":0,"guid":32444,"id":101811,"map":33,"orientation":6.09235,"phaseMask":1,"position_x":-245.598,"position_y":2132.32,"position_z":82.8052,"rotation0":-0.131892,"rotation1":-0.694696,"rotation2":-0.131892,"rotation3":0.694698,"spawnMask":1,"spawntimesecs":0,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32445,"id":18934,"map":33,"orientation":-0.375245,"phaseMask":1,"position_x":-251.244,"position_y":2116.38,"position_z":81.218,"rotation0":0,"rotation1":0,"rotation2":-0.186524,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32446,"id":18935,"map":33,"orientation":-0.375245,"phaseMask":1,"position_x":-244.14,"position_y":2134.41,"position_z":81.0625,"rotation0":0,"rotation1":0,"rotation2":-0.186524,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32447,"id":18973,"map":33,"orientation":-1.94604,"phaseMask":1,"position_x":-146.391,"position_y":2173,"position_z":150.543,"rotation0":0,"rotation1":0,"rotation2":-0.826589,"rotation3":0.562806,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32448,"id":35594,"map":33,"orientation":-2.73144,"phaseMask":1,"position_x":-219.694,"position_y":2259.45,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":-0.979045,"rotation3":0.203642,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32450,"id":35595,"map":33,"orientation":0.802852,"phaseMask":1,"position_x":-218.509,"position_y":2260.46,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32452,"id":35597,"map":33,"orientation":-2.47837,"phaseMask":1,"position_x":-214.755,"position_y":2272.27,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32457,"id":35593,"map":33,"orientation":-0.375245,"phaseMask":1,"position_x":-220.578,"position_y":2258.18,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":-0.186524,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":32480,"id":18899,"map":33,"orientation":1.1957,"phaseMask":1,"position_x":-113.462,"position_y":2165.08,"position_z":156.755,"rotation0":0.694697,"rotation1":-0.131892,"rotation2":0.694696,"rotation3":0.131897,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33219,"id":18936,"map":33,"orientation":-0.375245,"phaseMask":1,"position_x":-247.757,"position_y":2125.23,"position_z":81.0625,"rotation0":0,"rotation1":0,"rotation2":-0.186524,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33241,"id":18971,"map":33,"orientation":2.76635,"phaseMask":1,"position_x":-118.11,"position_y":2161.86,"position_z":155.678,"rotation0":0,"rotation1":0,"rotation2":0.982451,"rotation3":0.186522,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33427,"id":35598,"map":33,"orientation":-3.12414,"phaseMask":1,"position_x":-213.2,"position_y":2273.37,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33633,"id":35596,"map":33,"orientation":-1.94604,"phaseMask":1,"position_x":-215.003,"position_y":2270.45,"position_z":77.338,"rotation0":0,"rotation1":0,"rotation2":-0.826589,"rotation3":0.562806,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33785,"id":18972,"map":33,"orientation":-0.375245,"phaseMask":1,"position_x":-129.034,"position_y":2166.16,"position_z":129.187,"rotation0":0,"rotation1":0,"rotation2":-0.186524,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":100,"areaId":0,"guid":34006,"id":18901,"map":33,"orientation":6.09235,"phaseMask":1,"position_x":-249.22,"position_y":2123.1,"position_z":82.8052,"rotation0":-0.131892,"rotation1":-0.694696,"rotation2":-0.131892,"rotation3":0.694698,"spawnMask":1,"spawntimesecs":0,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34280,"id":22567,"map":33,"orientation":0.270526,"phaseMask":1,"position_x":-325.356,"position_y":2089.16,"position_z":30.2577,"rotation0":0,"rotation1":0,"rotation2":0.134851,"rotation3":0.990866,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35408,"id":22566,"map":33,"orientation":-1.91986,"phaseMask":1,"position_x":-326.355,"position_y":2089.7,"position_z":25.3409,"rotation0":0,"rotation1":0,"rotation2":-0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35797,"id":22563,"map":33,"orientation":1.56207,"phaseMask":1,"position_x":-326.002,"position_y":2090.32,"position_z":25.3409,"rotation0":0,"rotation1":0,"rotation2":0.704015,"rotation3":0.710185,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40656,"id":22564,"map":33,"orientation":-1.91986,"phaseMask":1,"position_x":-326.139,"position_y":2089.7,"position_z":30.2577,"rotation0":0,"rotation1":0,"rotation2":-0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40658,"id":22565,"map":33,"orientation":0.270526,"phaseMask":1,"position_x":-325.573,"position_y":2089.16,"position_z":25.3409,"rotation0":0,"rotation1":0,"rotation2":0.134851,"rotation3":0.990866,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40660,"id":75295,"map":33,"orientation":1.39626,"phaseMask":1,"position_x":-189.568,"position_y":2122.88,"position_z":97.3899,"rotation0":0,"rotation1":0,"rotation2":0.642786,"rotation3":0.766046,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40661,"id":3659,"map":33,"orientation":-2.21657,"phaseMask":1,"position_x":-197.138,"position_y":2268.28,"position_z":76.2013,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40662,"id":75293,"map":33,"orientation":-1.23918,"phaseMask":1,"position_x":-190.976,"position_y":2225.68,"position_z":79.7585,"rotation0":0,"rotation1":0,"rotation2":-0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40663,"id":3695,"map":33,"orientation":1.16937,"phaseMask":1,"position_x":-206.199,"position_y":2249.48,"position_z":76.2013,"rotation0":0,"rotation1":0,"rotation2":0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40664,"id":3659,"map":33,"orientation":-2.02458,"phaseMask":1,"position_x":-232.514,"position_y":2290.86,"position_z":74.9993,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40665,"id":75298,"map":33,"orientation":3.03687,"phaseMask":1,"position_x":-106.541,"position_y":2164.01,"position_z":101.52,"rotation0":0,"rotation1":0,"rotation2":0.998629,"rotation3":0.0523374,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40666,"id":3695,"map":33,"orientation":1.23918,"phaseMask":1,"position_x":-257.011,"position_y":2279.7,"position_z":74.9993,"rotation0":0,"rotation1":0,"rotation2":0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40667,"id":36738,"map":33,"orientation":0.785398,"phaseMask":1,"position_x":-155.171,"position_y":2185.61,"position_z":130.643,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40668,"id":91138,"map":33,"orientation":-2.18166,"phaseMask":1,"position_x":-218.464,"position_y":2237.2,"position_z":80.7977,"rotation0":0,"rotation1":0,"rotation2":-0.88701,"rotation3":0.461749,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40669,"id":182011,"map":33,"orientation":-1.90241,"phaseMask":1,"position_x":-207.395,"position_y":2245.31,"position_z":79.7689,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":55894,"id":38492,"map":33,"orientation":0.98611,"phaseMask":1,"position_x":-346.742,"position_y":2029.02,"position_z":18.8068,"rotation0":0,"rotation1":0,"rotation2":0.473319,"rotation3":0.880891,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":55895,"id":38493,"map":33,"orientation":5.78577,"phaseMask":1,"position_x":-350.577,"position_y":2038.32,"position_z":18.8068,"rotation0":0,"rotation1":0,"rotation2":-0.246153,"rotation3":0.969231,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":55896,"id":38494,"map":33,"orientation":4.34587,"phaseMask":1,"position_x":-337.114,"position_y":2037.85,"position_z":18.7984,"rotation0":0,"rotation1":0,"rotation2":-0.824125,"rotation3":0.566408,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":55897,"id":38495,"map":33,"orientation":2.31256,"phaseMask":1,"position_x":-338.949,"position_y":2032.28,"position_z":18.8068,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402748,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242252,"id":201289,"map":33,"orientation":3.34831,"phaseMask":1,"position_x":-222.652,"position_y":2207.23,"position_z":79.7614,"rotation0":0,"rotation1":0,"rotation2":0.994663,"rotation3":-0.103175,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242253,"id":201289,"map":33,"orientation":2.93597,"phaseMask":1,"position_x":-222.311,"position_y":2211.65,"position_z":79.7616,"rotation0":0,"rotation1":0,"rotation2":0.99472,"rotation3":0.10263,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242254,"id":201289,"map":33,"orientation":2.90848,"phaseMask":1,"position_x":-220.849,"position_y":2216.83,"position_z":79.7609,"rotation0":0,"rotation1":0,"rotation2":0.993215,"rotation3":0.116293,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242255,"id":201289,"map":33,"orientation":0.756489,"phaseMask":1,"position_x":-205.261,"position_y":2177.29,"position_z":79.7651,"rotation0":0,"rotation1":0,"rotation2":0.36929,"rotation3":0.929314,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242256,"id":200332,"map":33,"orientation":6.06264,"phaseMask":1,"position_x":-228.634,"position_y":2196.77,"position_z":79.7618,"rotation0":0,"rotation1":0,"rotation2":0.110049,"rotation3":-0.993926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242257,"id":200332,"map":33,"orientation":6.13725,"phaseMask":1,"position_x":-229.234,"position_y":2192.63,"position_z":79.7622,"rotation0":0,"rotation1":0,"rotation2":0.0729029,"rotation3":-0.997339,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242258,"id":200332,"map":33,"orientation":6.02886,"phaseMask":1,"position_x":-228.925,"position_y":2195.46,"position_z":82.4863,"rotation0":0,"rotation1":0,"rotation2":0.12682,"rotation3":-0.991926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242259,"id":200300,"map":33,"orientation":6.13725,"phaseMask":1,"position_x":-229.234,"position_y":2192.63,"position_z":79.7622,"rotation0":0,"rotation1":0,"rotation2":0.0729029,"rotation3":-0.997339,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242260,"id":200300,"map":33,"orientation":6.06264,"phaseMask":1,"position_x":-228.634,"position_y":2196.77,"position_z":79.7618,"rotation0":0,"rotation1":0,"rotation2":0.110049,"rotation3":-0.993926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242261,"id":200300,"map":33,"orientation":6.02886,"phaseMask":1,"position_x":-228.925,"position_y":2195.46,"position_z":82.4863,"rotation0":0,"rotation1":0,"rotation2":0.12682,"rotation3":-0.991926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242262,"id":200336,"map":33,"orientation":1.19474,"phaseMask":1,"position_x":-195.872,"position_y":2205.43,"position_z":79.7639,"rotation0":0,"rotation1":0,"rotation2":0.56247,"rotation3":0.826818,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242263,"id":200336,"map":33,"orientation":2.30215,"phaseMask":1,"position_x":-217.118,"position_y":2219.3,"position_z":79.7625,"rotation0":0,"rotation1":0,"rotation2":0.913203,"rotation3":0.407506,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242264,"id":200333,"map":33,"orientation":3.65696,"phaseMask":1,"position_x":-193.981,"position_y":2199.37,"position_z":79.7493,"rotation0":0,"rotation1":0,"rotation2":0.966983,"rotation3":-0.254841,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242265,"id":200334,"map":33,"orientation":3.76692,"phaseMask":1,"position_x":-205.174,"position_y":2177.62,"position_z":81.039,"rotation0":0,"rotation1":0,"rotation2":0.951518,"rotation3":-0.307594,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242266,"id":200335,"map":33,"orientation":1.72096,"phaseMask":1,"position_x":-196.882,"position_y":2195.72,"position_z":79.765,"rotation0":0,"rotation1":0,"rotation2":0.758156,"rotation3":0.652074,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242267,"id":200337,"map":33,"orientation":2.59275,"phaseMask":1,"position_x":-220.423,"position_y":2216.37,"position_z":81.0388,"rotation0":0,"rotation1":0,"rotation2":0.962582,"rotation3":0.27099,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242268,"id":200337,"map":33,"orientation":5.03141,"phaseMask":1,"position_x":-213.83,"position_y":2218.7,"position_z":79.7631,"rotation0":0,"rotation1":0,"rotation2":0.585817,"rotation3":-0.810444,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242269,"id":200337,"map":33,"orientation":2.23539,"phaseMask":1,"position_x":-217.341,"position_y":2220.39,"position_z":80.8288,"rotation0":0,"rotation1":0,"rotation2":0.899094,"rotation3":0.437756,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242270,"id":200337,"map":33,"orientation":2.23539,"phaseMask":1,"position_x":-216.527,"position_y":2219.35,"position_z":80.7348,"rotation0":0,"rotation1":0,"rotation2":0.899094,"rotation3":0.437756,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242271,"id":200337,"map":33,"orientation":2.23539,"phaseMask":1,"position_x":-215.719,"position_y":2218.32,"position_z":80.7345,"rotation0":0,"rotation1":0,"rotation2":0.899094,"rotation3":0.437756,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242272,"id":200337,"map":33,"orientation":2.38305,"phaseMask":1,"position_x":-218.174,"position_y":2219.65,"position_z":80.7954,"rotation0":0,"rotation1":0,"rotation2":0.928935,"rotation3":0.370244,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242273,"id":200337,"map":33,"orientation":2.38305,"phaseMask":1,"position_x":-217.446,"position_y":2218.96,"position_z":80.7347,"rotation0":0,"rotation1":0,"rotation2":0.928935,"rotation3":0.370244,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242274,"id":200337,"map":33,"orientation":2.35556,"phaseMask":1,"position_x":-216.943,"position_y":2218.31,"position_z":80.7347,"rotation0":0,"rotation1":0,"rotation2":0.923758,"rotation3":0.382976,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242275,"id":200337,"map":33,"orientation":2.35556,"phaseMask":1,"position_x":-216.325,"position_y":2217.69,"position_z":80.7346,"rotation0":0,"rotation1":0,"rotation2":0.923758,"rotation3":0.382976,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242276,"id":200337,"map":33,"orientation":2.35556,"phaseMask":1,"position_x":-218.195,"position_y":2219.56,"position_z":81.9112,"rotation0":0,"rotation1":0,"rotation2":0.923758,"rotation3":0.382976,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242277,"id":200338,"map":33,"orientation":4.6882,"phaseMask":1,"position_x":-198.645,"position_y":2203.81,"position_z":79.7959,"rotation0":0,"rotation1":0,"rotation2":0.715607,"rotation3":-0.698503,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242278,"id":200338,"map":33,"orientation":0.933992,"phaseMask":1,"position_x":-196.699,"position_y":2203.76,"position_z":80.7359,"rotation0":0,"rotation1":0,"rotation2":0.450206,"rotation3":0.892925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242279,"id":200338,"map":33,"orientation":0.933992,"phaseMask":1,"position_x":-195.022,"position_y":2206.03,"position_z":80.7362,"rotation0":0,"rotation1":0,"rotation2":0.450206,"rotation3":0.892925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242280,"id":200338,"map":33,"orientation":1.10678,"phaseMask":1,"position_x":-196.073,"position_y":2206.38,"position_z":80.7368,"rotation0":0,"rotation1":0,"rotation2":0.525574,"rotation3":0.850748,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242281,"id":200338,"map":33,"orientation":1.26386,"phaseMask":1,"position_x":-195.499,"position_y":2206.3,"position_z":81.6454,"rotation0":0,"rotation1":0,"rotation2":0.590703,"rotation3":0.806889,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242282,"id":200338,"map":33,"orientation":5.88593,"phaseMask":1,"position_x":-196.832,"position_y":2193.36,"position_z":79.764,"rotation0":0,"rotation1":0,"rotation2":0.197324,"rotation3":-0.980338,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242283,"id":200338,"map":33,"orientation":5.90163,"phaseMask":1,"position_x":-197.179,"position_y":2192.53,"position_z":79.7641,"rotation0":0,"rotation1":0,"rotation2":0.189623,"rotation3":-0.981857,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242284,"id":200338,"map":33,"orientation":5.90163,"phaseMask":1,"position_x":-198.496,"position_y":2193.06,"position_z":79.7644,"rotation0":0,"rotation1":0,"rotation2":0.189623,"rotation3":-0.981857,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242299,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-199.137,"position_y":2165.32,"position_z":80.6689,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242300,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-200.911,"position_y":2162.44,"position_z":79.7639,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242301,"id":201906,"map":33,"orientation":3.08918,"phaseMask":1,"position_x":-199.852,"position_y":2164.86,"position_z":80.6729,"rotation0":0,"rotation1":0,"rotation2":0.999657,"rotation3":0.0262033,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242302,"id":201906,"map":33,"orientation":0.680677,"phaseMask":1,"position_x":-201.056,"position_y":2165.41,"position_z":80.6763,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242303,"id":201906,"map":33,"orientation":-0.645772,"phaseMask":1,"position_x":-200.339,"position_y":2165.8,"position_z":80.671,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242304,"id":201906,"map":33,"orientation":2.04204,"phaseMask":1,"position_x":-201.795,"position_y":2162.82,"position_z":79.7638,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242305,"id":201906,"map":33,"orientation":0.174532,"phaseMask":1,"position_x":-199.467,"position_y":2166.15,"position_z":80.6654,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242306,"id":201906,"map":33,"orientation":0.174532,"phaseMask":1,"position_x":-200.524,"position_y":2164.54,"position_z":80.6773,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":242307,"id":201906,"map":33,"orientation":1.37881,"phaseMask":1,"position_x":-201.818,"position_y":2165.14,"position_z":80.6793,"rotation0":0,"rotation1":0,"rotation2":0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/Shadowfang":"f839bf3f8e8f6d0cc00b55ea61ebe22e0f7cfe9c6c1153794c3eee74a8390d95","patch/World/maps/Shadowfang":"ccfb1fb26edb1b2eb6ac5cb5b432f597a3b6404e11e01ab7a8fe4d0faf5acf67"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/shadowfang-keep/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["31/31 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"stormwind-stockade","title":"Stormwind Stockade","mapId":34,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[20,30]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Stormwind Stockade","theme":"Instanced dungeon","summary":"Fight through Stormwind Stockade, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Stormwind Stockade...","unchartedAreaName":"Uncharted Stormwind Stockade","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":269.8942},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/34-stormwindjail/visual.glb","checksum":"97c7e14d57de58687ab232f6692d669e4f2dfa74f9764e0d28d33ec9e0e50635","size":1740940,"triangleCount":56890}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/34-stormwindjail/collision.glb","checksum":"557b6392d1bbcddf5be7856b35f8118feb604254e1d11dad4c3d61c349d61f09","size":681800,"triangleCount":56467}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/34-stormwindjail/navigation.glb","checksum":"7d9bf2b4292b7ac3aea531e399e9203b677125b3c01da1966ccf5036753e4f5e","size":47404,"triangleCount":3538}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-237.771,-55.1896,-181.922],"max":[-9.23,1.66,192.931]},"entrance":{"name":"Stormwind Stockade Entrance","footPosition":[-54.23,-18.34,0.28],"forward":[-0.2756962614591509,0,0.9612448030639477],"yaw":-0.27931396036383},"areas":[{"id":"entrance","name":"Stormwind Stockade Entrance","center":[-54.23,-18.34,0.28],"radius":35},{"id":"area-targorr-the-dread","name":"Targorr the Dread's Encounter","center":[-159.582,-25.6062,1.2531],"radius":42},{"id":"area-kam-deepfury","name":"Kam Deepfury's Encounter","center":[-142.644,-34.8562,-71.8536],"radius":42},{"id":"area-hamhock","name":"Hamhock's Encounter","center":[-105.523,-35.1062,-105.795],"radius":42},{"id":"area-bazil-thredd","name":"Bazil Thredd's Encounter","center":[-89.5518,-33.9396,-136.922],"radius":42},{"id":"area-dextren-ward","name":"Dextren Ward's Encounter","center":[-166.789,-33.9396,134.787],"radius":42}],"entities":{"entry-1707":{"id":"entry-1707","kind":"mob","name":"Defias Captive","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15657","name":"Backstab","spellId":15657,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6699,"damageMultiplier":1.12},{"id":"spell-17230","name":"Infected Wound","spellId":17230,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6699,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2144-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1706":{"id":"entry-1706","kind":"mob","name":"Defias Prisoner","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11978","name":"Kick","spellId":11978,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5136,"damageMultiplier":1.12},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5136,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2148-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1715":{"id":"entry-1715","kind":"mob","name":"Defias Insurgent","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2600,"damageMultiplier":1},{"id":"spell-9128","name":"Battle Shout","spellId":9128,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7061,"damageMultiplier":1.12},{"id":"spell-13730","name":"Demoralizing Shout","spellId":13730,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7061,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2147-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1711":{"id":"entry-1711","kind":"mob","name":"Defias Convict","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6253","name":"Backhand","spellId":6253,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4062,"damageMultiplier":1.12},{"id":"spell-16244","name":"Demoralizing Shout","spellId":16244,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4062,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2145-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1708":{"id":"entry-1708","kind":"mob","name":"Defias Inmate","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6547","name":"Rend","spellId":6547,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4004,"damageMultiplier":1.12},{"id":"spell-7165","name":"Battle Stance","spellId":7165,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4004,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2146-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1666":{"id":"entry-1666","kind":"boss","name":"Kam Deepfury","title":"Dungeon Boss","hasLoot":true,"combat":{"level":25,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":5741,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-825-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-1720":{"id":"entry-1720","kind":"mob","name":"Bruegal Ironknuckle","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2142-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-1717":{"id":"entry-1717","kind":"boss","name":"Hamhock","title":"Dungeon Boss","hasLoot":true,"combat":{"level":25,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6742","name":"Bloodlust","spellId":6742,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5269,"damageMultiplier":1.35},{"id":"spell-421","name":"Chain Lightning","spellId":421,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-3250-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0106,"labelHeight":3.3144,"markerRadius":0.916}}},"entry-1663":{"id":"entry-1663","kind":"boss","name":"Dextren Ward","title":"Dungeon Boss","hasLoot":true,"combat":{"level":25,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-5246","name":"Intimidating Shout","spellId":5246,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6110,"damageMultiplier":1.35},{"id":"spell-2457","name":"Battle Stance","spellId":2457,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6110,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-2149-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1716":{"id":"entry-1716","kind":"boss","name":"Bazil Thredd","title":"Dungeon Boss","hasLoot":true,"combat":{"level":25,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9128","name":"Battle Shout","spellId":9128,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6296,"damageMultiplier":1.35},{"id":"spell-7964","name":"Smoke Bomb","spellId":7964,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6296,"damageMultiplier":1.35},{"id":"spell-29651","name":"Dual Wield","spellId":29651,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6296,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-1621-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1696":{"id":"entry-1696","kind":"boss","name":"Targorr the Dread","title":"Dungeon Boss","hasLoot":true,"combat":{"level":24,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5726,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":12000,"magnitude":0.25}},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5726,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stormwind-stockade/creatures/display-517-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.4082,"markerRadius":0.6886}}}},"staticSpawns":[{"id":"creature-79035","entityId":"entry-1707","position":[-82.3245,-26.4396,-10.6106],"yaw":-0.371108,"spawnMask":1},{"id":"creature-79036","entityId":"entry-1706","position":[-110.986,-26.4396,-29.1003],"yaw":-4.23787,"spawnMask":1},{"id":"creature-79037","entityId":"entry-1715","position":[-77.8325,-33.8562,-88.7943],"yaw":-1.87365,"spawnMask":1},{"id":"creature-79038","entityId":"entry-1715","position":[-128.395,-33.9396,-36.2513],"yaw":-3.46348,"spawnMask":1},{"id":"creature-79039","entityId":"entry-1711","position":[-70.595,-33.8562,-83.9379],"yaw":-4.83093,"spawnMask":1},{"id":"creature-79040","entityId":"entry-1715","position":[-99.3863,-34.7729,-37.6553],"yaw":-5.84427,"spawnMask":1},{"id":"creature-79041","entityId":"entry-1708","position":[-117.7,-34.7729,-45.8883],"yaw":-2.96333,"spawnMask":1},{"id":"creature-79042","entityId":"entry-1707","position":[-110.662,-25.5229,-0.7978],"yaw":-0.30335,"spawnMask":1},{"id":"creature-79043","entityId":"entry-1706","position":[-88.573,-26.4396,-15.4623],"yaw":-4.33564,"spawnMask":1},{"id":"creature-79044","entityId":"entry-1707","position":[-87.736,-26.4396,-28.9658],"yaw":-1.5708,"spawnMask":1},{"id":"creature-79045","entityId":"entry-1707","position":[-102.687,-26.4396,-28.8744],"yaw":-6.02139,"spawnMask":1},{"id":"creature-79046","entityId":"entry-1706","position":[-81.5075,-25.5229,-2.0358],"yaw":-2.77507,"spawnMask":1},{"id":"creature-79047","entityId":"entry-1711","position":[-111.721,-34.7729,-41.2636],"yaw":-2.05949,"spawnMask":1},{"id":"creature-79048","entityId":"entry-1706","position":[-110.512,-26.4396,-14.289],"yaw":-2.07694,"spawnMask":1},{"id":"creature-79049","entityId":"entry-1715","position":[-110.796,-34.7729,-65.9973],"yaw":-3.56047,"spawnMask":1},{"id":"creature-79050","entityId":"entry-1707","position":[-108.735,-26.5229,21.5291],"yaw":-2.66238,"spawnMask":1},{"id":"creature-79051","entityId":"entry-1707","position":[-110.493,-34.7729,42.8924],"yaw":-3.87516,"spawnMask":1},{"id":"creature-79052","entityId":"entry-1707","position":[-110.413,-26.4396,30.1479],"yaw":-5.35283,"spawnMask":1},{"id":"creature-79053","entityId":"entry-1711","position":[-129.414,-29.216,21.692],"yaw":-1.50148,"spawnMask":1},{"id":"creature-79054","entityId":"entry-1708","position":[-76.2288,-25.5229,0.3021],"yaw":-3.49974,"spawnMask":1},{"id":"creature-79055","entityId":"entry-1706","position":[-83.9548,-26.4396,30.5974],"yaw":-0.369557,"spawnMask":1},{"id":"creature-79056","entityId":"entry-1706","position":[-131.149,-25.5229,3.3395],"yaw":-1.50787,"spawnMask":1},{"id":"creature-79057","entityId":"entry-1707","position":[-86.8127,-26.4396,21.0691],"yaw":-4.59022,"spawnMask":1},{"id":"creature-79058","entityId":"entry-1708","position":[-128.622,-33.8562,49.0336],"yaw":-4.17134,"spawnMask":1},{"id":"creature-79059","entityId":"entry-1707","position":[-80.683,-26.4396,16.7574],"yaw":-2.04204,"spawnMask":1},{"id":"creature-79060","entityId":"entry-1707","position":[-131.167,-33.8562,40.9354],"yaw":-1.98968,"spawnMask":1},{"id":"creature-79061","entityId":"entry-1708","position":[-105.4,-34.7729,70.095],"yaw":-2.75762,"spawnMask":1},{"id":"creature-79062","entityId":"entry-1707","position":[-140.338,-25.5229,3.0836],"yaw":-5.99824,"spawnMask":1},{"id":"creature-79063","entityId":"entry-1711","position":[-129.687,-33.8562,-47.4302],"yaw":-3.40339,"spawnMask":1},{"id":"creature-79064","entityId":"entry-1706","position":[-93.4684,-25.5229,3.0337],"yaw":-3.50811,"spawnMask":1},{"id":"creature-79065","entityId":"entry-1707","position":[-103.24,-26.4396,12.9131],"yaw":-1.16937,"spawnMask":1},{"id":"creature-79066","entityId":"entry-1708","position":[-100.916,-34.7729,53.2517],"yaw":-2.70526,"spawnMask":1},{"id":"creature-79067","entityId":"entry-1708","position":[-100.564,-34.7729,44.3137],"yaw":-2.30383,"spawnMask":1},{"id":"creature-79068","entityId":"entry-1706","position":[-127.145,-25.5229,-1.4023],"yaw":-2.26893,"spawnMask":1},{"id":"creature-79069","entityId":"entry-1708","position":[-123.368,-33.8562,-61.7398],"yaw":-3.01942,"spawnMask":1},{"id":"creature-79070","entityId":"entry-1711","position":[-94.8542,-34.7729,-60.1856],"yaw":-2.61799,"spawnMask":1},{"id":"creature-79071","entityId":"entry-1711","position":[-66.9717,-33.8562,-90.2606],"yaw":-5.39307,"spawnMask":1},{"id":"creature-79072","entityId":"entry-1708","position":[-96.4198,-34.7729,-54.7564],"yaw":-2.51327,"spawnMask":1},{"id":"creature-79073","entityId":"entry-1707","position":[-115.026,-34.7729,46.7235],"yaw":-4.31096,"spawnMask":1},{"id":"creature-79074","entityId":"entry-1711","position":[-104.11,-34.7729,-55.8138],"yaw":-4.83456,"spawnMask":1},{"id":"creature-79075","entityId":"entry-1711","position":[-124.704,-33.9396,-70.8525],"yaw":-4.719,"spawnMask":1},{"id":"creature-79076","entityId":"entry-1708","position":[-82.6119,-33.8562,-94.8407],"yaw":-5.54853,"spawnMask":1},{"id":"creature-79077","entityId":"entry-1715","position":[-146.893,-34.8562,-42.7851],"yaw":-3.56855,"spawnMask":1},{"id":"creature-79078","entityId":"entry-1711","position":[-138.566,-34.7729,-48.0856],"yaw":-0.529011,"spawnMask":1},{"id":"creature-79079","entityId":"entry-1708","position":[-121.623,-34.7729,74.722],"yaw":-0.645772,"spawnMask":1},{"id":"creature-79080","entityId":"entry-1708","position":[-108.453,-34.8562,82.4015],"yaw":-1.40505,"spawnMask":1},{"id":"creature-79081","entityId":"entry-1707","position":[-153.705,-25.6062,3.6997],"yaw":-5.67859,"spawnMask":1},{"id":"creature-79082","entityId":"entry-1708","position":[-145.489,-34.7729,43.3674],"yaw":-4.00042,"spawnMask":1},{"id":"creature-79083","entityId":"entry-1706","position":[-150.993,-34.7729,39.1095],"yaw":-2.50405,"spawnMask":1},{"id":"creature-79084","entityId":"entry-1708","position":[-114.613,-33.9396,-86.3965],"yaw":-5.65375,"spawnMask":1},{"id":"creature-79085","entityId":"entry-1715","position":[-140.158,-34.7729,-64.5333],"yaw":-5.99149,"spawnMask":1},{"id":"creature-79086","entityId":"entry-1706","position":[-165.944,-25.6062,1.0911],"yaw":-2.88702,"spawnMask":1},{"id":"creature-79087","entityId":"entry-1707","position":[-134.054,-33.8562,70.9823],"yaw":-6.04937,"spawnMask":1},{"id":"creature-79088","entityId":"entry-1666","position":[-142.644,-34.8562,-71.8536],"yaw":-4.49228,"spawnMask":1},{"id":"creature-79089","entityId":"entry-1711","position":[-155.148,-34.8562,-52.0394],"yaw":-3.07747,"spawnMask":1},{"id":"creature-79090","entityId":"entry-1720","position":[-160.051,-34.7729,45.709],"yaw":-3.36848,"spawnMask":1},{"id":"creature-79091","entityId":"entry-1708","position":[-159.931,-34.8562,39.9643],"yaw":-0.52169,"spawnMask":1},{"id":"creature-79092","entityId":"entry-1708","position":[-151.641,-34.7729,60.1077],"yaw":-2.38636,"spawnMask":1},{"id":"creature-79093","entityId":"entry-1707","position":[-148.353,-34.7729,65.0762],"yaw":-5.40655,"spawnMask":1},{"id":"creature-79094","entityId":"entry-1708","position":[-161.133,-34.8562,54.0252],"yaw":-4.38428,"spawnMask":1},{"id":"creature-79095","entityId":"entry-1708","position":[-141.995,-33.9396,84.1125],"yaw":-3.0374,"spawnMask":1},{"id":"creature-79096","entityId":"entry-1706","position":[-162.726,-34.8562,59.1677],"yaw":-4.46164,"spawnMask":1},{"id":"creature-79097","entityId":"entry-1708","position":[-152.804,-34.7729,-69.5129],"yaw":-4.67092,"spawnMask":1},{"id":"creature-79098","entityId":"entry-1717","position":[-105.523,-35.1062,-105.795],"yaw":-1.09956,"spawnMask":1},{"id":"creature-79099","entityId":"entry-1715","position":[-95.4846,-35.1062,-105.947],"yaw":-0.663225,"spawnMask":1},{"id":"creature-79100","entityId":"entry-1708","position":[-150.261,-34.8562,-76.7672],"yaw":-2.28934,"spawnMask":1},{"id":"creature-79101","entityId":"entry-1715","position":[-109.097,-35.1062,-114.239],"yaw":-1.43117,"spawnMask":1},{"id":"creature-79102","entityId":"entry-1707","position":[-148.538,-35.1896,103.18],"yaw":-4.52629,"spawnMask":1},{"id":"creature-79103","entityId":"entry-1708","position":[-171.119,-33.8562,93.3214],"yaw":-4.20114,"spawnMask":1},{"id":"creature-79104","entityId":"entry-1708","position":[-155.673,-35.1896,99.6374],"yaw":-4.85931,"spawnMask":1},{"id":"creature-79105","entityId":"entry-1708","position":[-123.941,-33.8562,119.574],"yaw":-3.60874,"spawnMask":1},{"id":"creature-79106","entityId":"entry-1708","position":[-129.951,-33.8562,122.361],"yaw":-1.54336,"spawnMask":1},{"id":"creature-79107","entityId":"entry-1707","position":[-147.452,-35.1896,111.814],"yaw":-3.40928,"spawnMask":1},{"id":"creature-79108","entityId":"entry-1708","position":[-156.316,-35.1896,109.516],"yaw":-2.99417,"spawnMask":1},{"id":"creature-79109","entityId":"entry-1708","position":[-189.206,-33.8562,87.3162],"yaw":-0.762264,"spawnMask":1},{"id":"creature-79110","entityId":"entry-1708","position":[-182.74,-33.8562,95.2994],"yaw":-1.40045,"spawnMask":1},{"id":"creature-79111","entityId":"entry-1706","position":[-186.274,-33.8562,86.9216],"yaw":-3.42742,"spawnMask":1},{"id":"creature-79112","entityId":"entry-1707","position":[-192.771,-33.8562,91.34],"yaw":-5.44344,"spawnMask":1},{"id":"creature-79113","entityId":"entry-1708","position":[-119.78,-33.9396,128.785],"yaw":-6.2394,"spawnMask":1},{"id":"creature-79114","entityId":"entry-1708","position":[-161.07,-33.8562,129.292],"yaw":-4.39901,"spawnMask":1},{"id":"creature-79115","entityId":"entry-1706","position":[-167.363,-33.8562,127.883],"yaw":-0.959931,"spawnMask":1},{"id":"creature-79116","entityId":"entry-1663","position":[-166.789,-33.9396,134.787],"yaw":-1.78929,"spawnMask":1},{"id":"creature-79117","entityId":"entry-1708","position":[-171.059,-33.9396,142.025],"yaw":-4.49541,"spawnMask":1},{"id":"creature-79118","entityId":"entry-1708","position":[-168.987,-33.9396,147.931],"yaw":-1.38903,"spawnMask":1},{"id":"creature-79119","entityId":"entry-1708","position":[-176.087,-33.8562,142.688],"yaw":-2.28023,"spawnMask":1},{"id":"creature-79120","entityId":"entry-1711","position":[-126.276,-33.9396,-116.828],"yaw":-2.39055,"spawnMask":1},{"id":"creature-79121","entityId":"entry-1715","position":[-132.264,-33.9396,-123.557],"yaw":-2.95052,"spawnMask":1},{"id":"creature-79122","entityId":"entry-1708","position":[-141.424,-33.9396,-120.264],"yaw":-1.87443,"spawnMask":1},{"id":"creature-79123","entityId":"entry-1708","position":[-139.681,-33.8562,-128.899],"yaw":-2.90953,"spawnMask":1},{"id":"creature-79124","entityId":"entry-1716","position":[-89.5518,-33.9396,-136.922],"yaw":-5.00727,"spawnMask":1},{"id":"creature-79125","entityId":"entry-1715","position":[-91.7954,-33.9396,-126.047],"yaw":-4.01449,"spawnMask":1},{"id":"creature-79126","entityId":"entry-1711","position":[-95.3684,-33.9396,-128.729],"yaw":-2.07435,"spawnMask":1},{"id":"creature-84027","entityId":"entry-1696","position":[-159.582,-25.6062,1.2531],"yaw":-6.25925,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"creature-84027","name":"Targorr the Dread","position":[-159.582,-25.6062,1.2531]},{"id":"creature-79088","name":"Kam Deepfury","position":[-142.644,-34.8562,-71.8536]},{"id":"creature-79098","name":"Hamhock","position":[-105.523,-35.1062,-105.795]},{"id":"creature-79124","name":"Bazil Thredd","position":[-89.5518,-33.9396,-136.922]},{"id":"creature-79116","name":"Dextren Ward","position":[-166.789,-33.9396,134.787]}],"objectiveOrder":[{"id":"creature-84027","name":"Targorr the Dread","position":[-159.582,-25.6062,1.2531]},{"id":"creature-79088","name":"Kam Deepfury","position":[-142.644,-34.8562,-71.8536]},{"id":"creature-79098","name":"Hamhock","position":[-105.523,-35.1062,-105.795]},{"id":"creature-79124","name":"Bazil Thredd","position":[-89.5518,-33.9396,-136.922]},{"id":"creature-79116","name":"Dextren Ward","position":[-166.789,-33.9396,134.787]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2385,"id":180410,"map":34,"orientation":5.21854,"phaseMask":1,"position_x":145.938,"position_y":123.273,"position_z":-31.7391,"rotation0":0,"rotation1":0,"rotation2":-0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2386,"id":180410,"map":34,"orientation":3.38594,"phaseMask":1,"position_x":170.264,"position_y":109.914,"position_z":-31.8002,"rotation0":0,"rotation1":0,"rotation2":-0.992546,"rotation3":0.12187,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2597,"id":180411,"map":34,"orientation":3.73501,"phaseMask":1,"position_x":105.119,"position_y":-106.235,"position_z":-30.7941,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2598,"id":180411,"map":34,"orientation":5.70723,"phaseMask":1,"position_x":129.09,"position_y":0.796682,"position_z":-21.8337,"rotation0":0,"rotation1":0,"rotation2":-0.284015,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2599,"id":180411,"map":34,"orientation":0.645772,"phaseMask":1,"position_x":153.183,"position_y":107.68,"position_z":-30.8561,"rotation0":0,"rotation1":0,"rotation2":0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":717,"guid":26178,"id":75298,"map":34,"orientation":2.47837,"phaseMask":1,"position_x":188.603,"position_y":81.585,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":717},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":717,"guid":26179,"id":75298,"map":34,"orientation":1.44862,"phaseMask":1,"position_x":90.5921,"position_y":-145.882,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":0.662619,"rotation3":0.748957,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":717},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31963,"id":75295,"map":34,"orientation":-0.366519,"phaseMask":1,"position_x":104.455,"position_y":77.2554,"position_z":-34.8562,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31964,"id":75298,"map":34,"orientation":-1.18682,"phaseMask":1,"position_x":151.69,"position_y":-65.131,"position_z":-34.8562,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32162,"id":75295,"map":34,"orientation":2.9147,"phaseMask":1,"position_x":165.322,"position_y":57.6663,"position_z":-34.8562,"rotation0":0,"rotation1":0,"rotation2":0.993572,"rotation3":0.113203,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68059,"id":180405,"map":34,"orientation":5.89921,"phaseMask":1,"position_x":146.673,"position_y":89.169,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":-0.190808,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68060,"id":180405,"map":34,"orientation":4.24115,"phaseMask":1,"position_x":74.122,"position_y":-3.66818,"position_z":-25.6062,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68369,"id":180406,"map":34,"orientation":2.67035,"phaseMask":1,"position_x":111.621,"position_y":-87.8627,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233448,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68370,"id":180406,"map":34,"orientation":5.81195,"phaseMask":1,"position_x":134.891,"position_y":3.94964,"position_z":-25.6062,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68371,"id":180406,"map":34,"orientation":0.331611,"phaseMask":1,"position_x":142.028,"position_y":91.9442,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":0.165047,"rotation3":0.986286,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68372,"id":180406,"map":34,"orientation":5.81195,"phaseMask":1,"position_x":74.3244,"position_y":5.02471,"position_z":-25.6062,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68679,"id":180407,"map":34,"orientation":3.28124,"phaseMask":1,"position_x":116.247,"position_y":-90.2323,"position_z":-33.9396,"rotation0":0,"rotation1":0,"rotation2":-0.997563,"rotation3":0.0697661,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68680,"id":180407,"map":34,"orientation":3.28124,"phaseMask":1,"position_x":125.731,"position_y":-3.61262,"position_z":-25.6062,"rotation0":0,"rotation1":0,"rotation2":-0.997563,"rotation3":0.0697661,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/StormwindJail":"e6cde05107cf4cf9b627e2ba51f5e63666e7518758947b02a5b38a01fa241d87","patch/World/maps/StormwindJail":"f9be884b0da76821503e48ef4fea48a5b71b2690fd4e4757235300f3810f8a5b"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/stormwind-stockade/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["11/11 combat entity templates use native animated client models from the reviewed five-player import.","Server positions use the packaged global-wmo environment's native world coordinates."]}},{"schemaVersion":1,"id":"deadmines","title":"The Deadmines","mapId":36,"lfgDungeonIds":[6],"expansion":"classic","environmentMode":"adt-hybrid","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[15,25]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Deadmines","theme":"Open-world expedition","summary":"Fight through The Deadmines, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Deadmines...","unchartedAreaName":"Uncharted The Deadmines","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":474.8126},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/36-deadminesinstance/visual.glb","checksum":"46bff6e94a6297382a7d31578bb085c75d7b25c0716f219f32abaea135a7abf4","size":24376732,"triangleCount":2649478}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-000.glb","checksum":"3c79220accb5540236ab26c4a7005c5a5287373930748fcc5147e637316706a0","size":116356,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-001.glb","checksum":"fbb80dcc89b1990aee002560e7a021c484a9674cdbec5368b33dbd73a8335d23","size":116048,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-002.glb","checksum":"e96cf008b1224880b708918c938fef1c64497c70e5263d766965c8c11f89570a","size":116260,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-003.glb","checksum":"0f3f726183834b1b122da46c5525bfea15c1240d073accfe480def7fa0bc2c1a","size":116052,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-004.glb","checksum":"49d03beb974916ab59f3cee441270fc886dd631c19154c18bdd4147a51a1c190","size":115496,"triangleCount":65184},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-005.glb","checksum":"9267654084dfb0eb5394621e211da6536df69c9060e2cd3aa1fbe17c3874f299","size":101260,"triangleCount":51056},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-006.glb","checksum":"1c42bdbe8bdecd7dbfcb160235726f42cb51d2d38e769cd4f9a05588d7cc3c62","size":117024,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-007.glb","checksum":"f5f6620b876ec0d1dd1927389f2172bfc90d7704f37c933926d7d058af8bb13b","size":116768,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-008.glb","checksum":"602e2197ac6f1cc66b7ec87a3ffd5db248ceabfa8c1bbbdf419a0717431346ad","size":117352,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-009.glb","checksum":"91cb699e7066630e0df6a6f7ee231354e79ac91bd0d9a9e99f39a3b9bba27bbb","size":117104,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-010.glb","checksum":"c892ea0ea961e171230d6188d2c54fb86770417570ab43ade90e65bbcbb33d48","size":115916,"triangleCount":65456},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-011.glb","checksum":"4ae7c7a61191ceef1615687198a06a08c323a72e98a9480111a3ddb590656f20","size":121936,"triangleCount":63232},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-012.glb","checksum":"0bd38a18f7c703ab108062980fd2099bf230264744b8f2e7ce5d300d5436926b","size":116356,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-013.glb","checksum":"9b13bf1257c74c29c42c2b4424234062d0db222f90441744f6bf9c373a47f8ea","size":127396,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-014.glb","checksum":"3abb62143237c9a6bfb185cbbdef25f72ad0a6852a77243ec62dfdc8c697983b","size":1114132,"triangleCount":100000},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-015.glb","checksum":"aedc5eed8b2057c86b91e524ac455e5e14d9fd846df9d56174d2c94858c1d1a7","size":121864,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-016.glb","checksum":"39f8310712fc133adb1e1b97723517ff696006812a1ac06f9ecbdbb6ee2bcd8a","size":119080,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-017.glb","checksum":"b9fe42c2817744cc54c7f2a943153056acaf9dd012bf92f60a5d41886b717d2a","size":117400,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-018.glb","checksum":"c14338408fb430b03f30c05fa6b08d6f148cf9c124ca3b06309b5e0448fd30a4","size":116604,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-019.glb","checksum":"00fac06da6dcda8826439ecbce947bec35429c233c24a6ed8fbb2a94567573f6","size":116228,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-020.glb","checksum":"b7927b3012de3e8c9567bac8b564120f28853081734605ef0673d035b70cb127","size":138236,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-021.glb","checksum":"7d3839e04adb86dc05de8e0b33642e9c7b5a7f2b4114d25944fbb9303b0c4494","size":13640,"triangleCount":374},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-022.glb","checksum":"7b7814c76422796674f66ea1f15d6be1c9ba8b83065b527526179416c68d5879","size":13688,"triangleCount":374},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-023.glb","checksum":"b2e6c2c619aa5522e6906eb439dc42c4a613bff8438c97f188d99bdd9f43d8a8","size":13704,"triangleCount":374},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-024.glb","checksum":"8030f3d420cca8fb4bbf1f485f50adede366596d8263c393d29d3b974e4cfc98","size":13716,"triangleCount":374},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-025.glb","checksum":"9e4cd861bb5ca6c1d1a36cdda43910110714f677da240633da4dc48473cda51b","size":9816,"triangleCount":295},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-026.glb","checksum":"1f5a0349db4852755f400a13a4101579d19599291d75070e363974552445beab","size":9804,"triangleCount":295},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-027.glb","checksum":"a4b608b49da4366da0417aa2b146f080fb95639f80c8f631e6e56c10a83ea1bc","size":9832,"triangleCount":295},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-028.glb","checksum":"896786c6205b57938a2d0201bc57a60696c3fdef29270b356909983f16f93048","size":9812,"triangleCount":295},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-029.glb","checksum":"3abbbba30ea58dc11d9f200281c1258d5442e92446acd5f0d9b95cf99368c671","size":148236,"triangleCount":65440},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-030.glb","checksum":"46fbba8dc90793611922f95921c2a596afd013bc65407442d1608f48a95176e2","size":88756,"triangleCount":7370},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-031.glb","checksum":"6294c97fd171aae2e6fa709453731de4151551dbd4c581589b9bc2878c470458","size":18668,"triangleCount":616},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-032.glb","checksum":"54772a435efbbf0f4bb656ff7f6e7ee7b50e4c7ca356beaaf8ddb5d4c26e63fc","size":49204,"triangleCount":2216},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-033.glb","checksum":"9a402302ded3a28360017c5dab7757200112d7db0077089ed70387297cf17e4f","size":119004,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-034.glb","checksum":"5fb71d4982ed4bac9140ac7ec1a1cd80a5bf4a507b0ca695381e0f208a90c234","size":117536,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-035.glb","checksum":"165d3038a1f0806ffdc197af231120cc7d163aada8f22aceb6ae2cf9cba4d57c","size":116528,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-036.glb","checksum":"2cc7fba8034b5e5402d2e039379f1b28630bb07d157943a338c5553b840ddaa3","size":116356,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-037.glb","checksum":"0b731f64b2a35ed6e830cf37edf0129098f5409db116abe3e76f6168474f7ddb","size":124168,"triangleCount":65536},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-038.glb","checksum":"a0181fc996a4cee567dff1febcd64886f43912d3432265d5abce4ffea28eb697","size":126676,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-039.glb","checksum":"6412ef65fd1fe7b22623cea8083512b544f14139885efb19cccde3265781faee","size":121392,"triangleCount":65536},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-040.glb","checksum":"8b118c00d82df41fa66c82d6a2014cbcd54d87d0d569a7b86b60a60ff1fddb25","size":117104,"triangleCount":65536},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-041.glb","checksum":"af37400441d66aa0e9108a6bc546133c18e57036a82daf972152f689ac33e7bf","size":116240,"triangleCount":65536},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-042.glb","checksum":"e5f39582fcfd8f280f94e32e9860f2fdbe5e823be50871163029b3c60b78f72a","size":117132,"triangleCount":65536},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-043.glb","checksum":"f71c1884cc2eb6706f950efe7ef9644f74ea667af6dc1d98bdbb8872844a7931","size":117056,"triangleCount":65536},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-044.glb","checksum":"56bc4de15d2ceaf8d8726c2ede55e982d8e0e8d63c4e06e1f0881086dacee4af","size":117424,"triangleCount":65536},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-045.glb","checksum":"b573525f30c9c9c644f210e6c7f699e58519028f108b53bb1c568f75d7795222","size":117084,"triangleCount":65536},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-046.glb","checksum":"6428265a71f2f7333d0b6d0ef70dc2dae6004052c049e0e47752ce359552b9ca","size":116132,"triangleCount":65536},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/36-deadminesinstance/collision-047.glb","checksum":"37764a47184f88fb577656da6b2924464066202a0201af24215c1a88ecef5afa","size":116464,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/36-deadminesinstance/navigation.glb","checksum":"3ce1c783d2ccee06d502103fb4e3eb58ff05e6f6a012c563b9974035d5fb2fb0","size":1172504,"triangleCount":103978}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"bounds":{"min":[-964.0937,-17.4997,-358.1248],"max":[-304.6317,81.9028,45.0756]},"entrance":{"name":"The Deadmines Entrance","footPosition":[-383.0017,61.9028,-16.4018],"forward":[-0.47333703714506437,0,-0.8808814047683899],"yaw":-2.6485174211650198},"areas":[{"id":"entrance","name":"The Deadmines Entrance","center":[-383.0017,61.9028,-16.4018],"radius":35},{"id":"area-rhahk-zor","name":"Rhahk'zor's Encounter","center":[-448.1427,54.5567,-192.9168],"radius":42},{"id":"area-sneed","name":"Sneed's Encounter","center":[-512.9407,49.8013,-289.4548],"radius":42},{"id":"area-gilnid","name":"Gilnid's Encounter","center":[-574.3897,19.4341,-177.3638],"radius":42},{"id":"area-mr-smite","name":"Mr. Smite's Encounter","center":[-797.2147,20.4973,-22.8489],"radius":42},{"id":"area-cookie","name":"Cookie's Encounter","center":[-853.6807,17.1978,-67.5862],"radius":42},{"id":"area-captain-greenskin","name":"Captain Greenskin's Encounter","center":[-820.0637,41.7362,-59.6218],"radius":42},{"id":"area-edwin-vancleef","name":"Edwin VanCleef's Encounter","center":[-819.8267,39.4232,-87.3708],"radius":42}],"entities":{"entry-598":{"id":"entry-598","kind":"mob","name":"Defias Miner","combat":{"level":18,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6016","name":"Pierce Armor","spellId":6016,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6707,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-308-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2724,"markerRadius":0.65}}},"entry-4416":{"id":"entry-4416","kind":"mob","name":"Defias Strip Miner","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6016","name":"Pierce Armor","spellId":6016,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5162,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2438-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3685,"markerRadius":0.65}}},"entry-1729":{"id":"entry-1729","kind":"mob","name":"Defias Evoker","combat":{"level":18,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-4979","name":"Quick Flame Ward","spellId":4979,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4501,"damageMultiplier":1.12},{"id":"spell-11829","name":"Flamestrike","spellId":11829,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4501,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2318-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-634":{"id":"entry-634","kind":"mob","name":"Defias Overseer","combat":{"level":18,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5115","name":"Battle Command","spellId":5115,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5578,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2316-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1725":{"id":"entry-1725","kind":"mob","name":"Defias Watchman","combat":{"level":16,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6718,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-184-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.254,"markerRadius":0.65}}},"entry-644":{"id":"entry-644","kind":"boss","name":"Rhahk'Zor","title":"Dungeon Boss","hasLoot":true,"combat":{"level":19,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3200,"damageMultiplier":1},{"id":"spell-6304","name":"Rhahk'Zor Slam","spellId":6304,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6434,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-14403-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0121,"labelHeight":3.8116,"markerRadius":1.0534}}},"entry-641":{"id":"entry-641","kind":"mob","name":"Goblin Woodcarver","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7111-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-622":{"id":"entry-622","kind":"mob","name":"Goblin Engineer","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7109-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-1731":{"id":"entry-1731","kind":"mob","name":"Goblin Craftsman","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7110-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-1763":{"id":"entry-1763","kind":"boss","name":"Gilnid","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":7693,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7124-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0048,"labelHeight":2.5668,"markerRadius":0.65}}},"entry-4417":{"id":"entry-4417","kind":"mob","name":"Defias Taskmaster","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4185,"damageMultiplier":1.12},{"id":"spell-6685","name":"Piercing Shot","spellId":6685,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4185,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2440-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-642":{"id":"entry-642","kind":"boss","name":"Sneed's Shredder","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7399","name":"Terrify","spellId":7399,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":4988,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}},{"id":"spell-3603","name":"Distracting Pain","spellId":3603,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4988,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-1269-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.1754,"markerRadius":1.9424}}},"entry-4418":{"id":"entry-4418","kind":"mob","name":"Defias Wizard","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6548,"damageMultiplier":1.12},{"id":"spell-4979","name":"Quick Flame Ward","spellId":4979,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6548,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2447-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3947":{"id":"entry-3947","kind":"mob","name":"Goblin Shipbuilder","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7112-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-657":{"id":"entry-657","kind":"mob","name":"Defias Pirate","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2347-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-1732":{"id":"entry-1732","kind":"mob","name":"Defias Squallshaper","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-122","name":"Frost Nova","spellId":122,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7260,"damageMultiplier":0.62,"radius":8},{"id":"spell-2138","name":"Fire Blast","spellId":2138,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":8000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2349-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-647":{"id":"entry-647","kind":"boss","name":"Captain Greenskin","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-40505","name":"Cleave","spellId":40505,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":6481,"damageMultiplier":0.82,"radius":11},{"id":"spell-5208","name":"Poisoned Harpoon","spellId":5208,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6481,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-7113-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0048,"labelHeight":2.5668,"markerRadius":0.65}}},"entry-639":{"id":"entry-639","kind":"boss","name":"Edwin VanCleef","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4411,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2029-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-646":{"id":"entry-646","kind":"boss","name":"Mr. Smite","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6432","name":"Smite Stomp","spellId":6432,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6783,"damageMultiplier":0.82,"radius":11},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6783,"damageMultiplier":1.35},{"id":"spell-6264","name":"Nimble Reflexes","spellId":6264,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6783,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2026-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0641,"labelHeight":3.2085,"markerRadius":0.8069}}},"entry-645":{"id":"entry-645","kind":"boss","name":"Cookie","title":"Dungeon Boss","hasLoot":true,"combat":{"level":20,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5174","name":"Cookie's Cooking","spellId":5174,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5281,"damageMultiplier":1.35},{"id":"spell-6306","name":"Acid Splash","spellId":6306,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5281,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-1305-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0072,"labelHeight":2.1541,"markerRadius":0.65}}},"entry-636":{"id":"entry-636","kind":"mob","name":"Defias Blackguard","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8874","name":"Stealth","spellId":8874,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6685,"damageMultiplier":1.12},{"id":"spell-14903","name":"Rupture","spellId":14903,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6685,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-2314-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3586":{"id":"entry-3586","kind":"mob","name":"Miner Johnson","combat":{"level":19,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/deadmines/creatures/display-556-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2724,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-79127","entityId":"entry-598","position":[-401.1297,55.8039,-50.2669],"yaw":-5.51524,"spawnMask":1},{"id":"creature-79128","entityId":"entry-598","position":[-406.9617,55.0956,-73.1354],"yaw":-2.56563,"spawnMask":1},{"id":"creature-79129","entityId":"entry-598","position":[-426.6677,56.111,-104.3908],"yaw":-1.09956,"spawnMask":1},{"id":"creature-79130","entityId":"entry-4416","position":[-404.2887,59.1629,-87.4839],"yaw":-5.67232,"spawnMask":1},{"id":"creature-79131","entityId":"entry-598","position":[-430.6357,56.1278,-100.2638],"yaw":-0.767945,"spawnMask":1},{"id":"creature-79133","entityId":"entry-598","position":[-403.9077,60.1416,-108.0178],"yaw":-4.79965,"spawnMask":1},{"id":"creature-79134","entityId":"entry-598","position":[-406.6767,55.2564,-57.0612],"yaw":-5.06145,"spawnMask":1},{"id":"creature-79135","entityId":"entry-598","position":[-372.9277,59.3428,-100.5108],"yaw":-1.32645,"spawnMask":1},{"id":"creature-79136","entityId":"entry-598","position":[-382.0677,55.5112,-79.0682],"yaw":-4.64258,"spawnMask":1},{"id":"creature-79137","entityId":"entry-598","position":[-370.1337,55.7804,-72.5366],"yaw":-1.6057,"spawnMask":1},{"id":"creature-79138","entityId":"entry-598","position":[-370.3177,56.6896,-40.1218],"yaw":-2.35619,"spawnMask":1},{"id":"creature-79140","entityId":"entry-598","position":[-396.2847,59.2169,-83.0147],"yaw":-0.087266,"spawnMask":1},{"id":"creature-79142","entityId":"entry-598","position":[-395.6427,55.9241,-70.8914],"yaw":-3.64774,"spawnMask":1},{"id":"creature-79143","entityId":"entry-598","position":[-383.1597,59.4191,-98.2838],"yaw":-5.58505,"spawnMask":1},{"id":"creature-79145","entityId":"entry-598","position":[-364.0297,54.941,-66.8627],"yaw":-2.89725,"spawnMask":1},{"id":"creature-79146","entityId":"entry-598","position":[-367.9637,55.7159,-52.6487],"yaw":-1.41372,"spawnMask":1},{"id":"creature-79148","entityId":"entry-598","position":[-411.2287,58.9797,-116.7818],"yaw":-5.74213,"spawnMask":1},{"id":"creature-79149","entityId":"entry-598","position":[-384.0247,59.3116,-128.3068],"yaw":-3.10669,"spawnMask":1},{"id":"creature-79151","entityId":"entry-634","position":[-408.1767,58.3149,-136.0648],"yaw":-0.224902,"spawnMask":1},{"id":"creature-79154","entityId":"entry-598","position":[-399.7357,58.5615,-139.8048],"yaw":-1.48353,"spawnMask":1},{"id":"creature-79155","entityId":"entry-598","position":[-394.3427,59.5471,-130.8128],"yaw":-2.47837,"spawnMask":1},{"id":"creature-79156","entityId":"entry-598","position":[-412.5047,59.053,-139.3438],"yaw":-3.57792,"spawnMask":1},{"id":"creature-79157","entityId":"entry-598","position":[-407.2267,57.8996,-147.7948],"yaw":-4.06662,"spawnMask":1},{"id":"creature-79158","entityId":"entry-598","position":[-450.3457,56.5468,-114.9058],"yaw":0,"spawnMask":1},{"id":"creature-79159","entityId":"entry-598","position":[-441.7017,55.7135,-126.5188],"yaw":-4.06662,"spawnMask":1},{"id":"creature-79160","entityId":"entry-598","position":[-395.5547,57.1235,-153.9428],"yaw":-1.16937,"spawnMask":1},{"id":"creature-79161","entityId":"entry-598","position":[-403.1397,57.4486,-165.1268],"yaw":-5.48033,"spawnMask":1},{"id":"creature-79162","entityId":"entry-598","position":[-400.0507,57.6871,-175.2528],"yaw":-2.49582,"spawnMask":1},{"id":"creature-79163","entityId":"entry-598","position":[-409.5147,57.8187,-169.9638],"yaw":-5.60251,"spawnMask":1},{"id":"creature-79164","entityId":"entry-598","position":[-410.2277,55.7381,-182.3038],"yaw":-2.77507,"spawnMask":1},{"id":"creature-79165","entityId":"entry-1725","position":[-449.9657,54.7703,-183.7328],"yaw":-3.37684,"spawnMask":1},{"id":"creature-79167","entityId":"entry-1725","position":[-453.2087,54.4119,-202.1678],"yaw":-0.811484,"spawnMask":1},{"id":"creature-79168","entityId":"entry-644","position":[-448.1427,54.5567,-192.9168],"yaw":-1.66886,"spawnMask":1},{"id":"creature-79169","entityId":"entry-598","position":[-487.8767,54.3743,-176.8158],"yaw":-6.26573,"spawnMask":1},{"id":"creature-79170","entityId":"entry-634","position":[-483.2917,54.1641,-191.7318],"yaw":-2.0461,"spawnMask":1},{"id":"creature-79171","entityId":"entry-1729","position":[-486.6297,54.1668,-188.0758],"yaw":-1.56971,"spawnMask":1},{"id":"creature-79172","entityId":"entry-598","position":[-499.2907,54.3565,-176.3468],"yaw":-0.890118,"spawnMask":1},{"id":"creature-79173","entityId":"entry-598","position":[-485.7467,49.6195,-219.4398],"yaw":-0.698132,"spawnMask":1},{"id":"creature-79174","entityId":"entry-598","position":[-490.6707,54.1471,-197.4398],"yaw":-3.76991,"spawnMask":1},{"id":"creature-79175","entityId":"entry-598","position":[-476.9217,49.4673,-231.3108],"yaw":-1.06465,"spawnMask":1},{"id":"creature-79176","entityId":"entry-598","position":[-499.0877,51.1628,-207.5608],"yaw":-1.02974,"spawnMask":1},{"id":"creature-79177","entityId":"entry-1729","position":[-506.4997,50.9471,-214.7048],"yaw":-4.64998,"spawnMask":1},{"id":"creature-79178","entityId":"entry-598","position":[-490.2447,49.7207,-233.4628],"yaw":-4.06662,"spawnMask":1},{"id":"creature-79179","entityId":"entry-598","position":[-506.2457,53.5184,-186.4738],"yaw":-4.79965,"spawnMask":1},{"id":"creature-79180","entityId":"entry-598","position":[-509.9887,53.5909,-198.6558],"yaw":-4.99164,"spawnMask":1},{"id":"creature-79181","entityId":"entry-598","position":[-500.1547,49.736,-222.0408],"yaw":-3.66519,"spawnMask":1},{"id":"creature-79182","entityId":"entry-598","position":[-509.3477,53.8464,-170.7468],"yaw":-4.85202,"spawnMask":1},{"id":"creature-79183","entityId":"entry-598","position":[-506.5067,53.5654,-157.9348],"yaw":-1.02974,"spawnMask":1},{"id":"creature-79184","entityId":"entry-598","position":[-511.9917,51.6977,-206.6208],"yaw":-4.55531,"spawnMask":1},{"id":"creature-79185","entityId":"entry-598","position":[-513.9157,52.8769,-158.6538],"yaw":-4.08407,"spawnMask":1},{"id":"creature-79187","entityId":"entry-598","position":[-516.1617,51.614,-214.1818],"yaw":-5.89921,"spawnMask":1},{"id":"creature-79190","entityId":"entry-598","position":[-529.1977,52.3916,-159.5958],"yaw":-3.24631,"spawnMask":1},{"id":"creature-79191","entityId":"entry-598","position":[-519.4167,53.2097,-149.5018],"yaw":-0.10472,"spawnMask":1},{"id":"creature-79192","entityId":"entry-641","position":[-494.0167,49.7086,-277.2578],"yaw":-0.436332,"spawnMask":1},{"id":"creature-79193","entityId":"entry-641","position":[-480.8247,49.4064,-284.6738],"yaw":-4.01426,"spawnMask":1},{"id":"creature-79194","entityId":"entry-598","position":[-528.7047,52.2956,-146.3468],"yaw":-0.366519,"spawnMask":1},{"id":"creature-79195","entityId":"entry-641","position":[-489.0417,50.1985,-285.5088],"yaw":-1.3742,"spawnMask":1},{"id":"creature-79196","entityId":"entry-622","position":[-550.5907,19.4293,-193.1058],"yaw":-4.45445,"spawnMask":1},{"id":"creature-79197","entityId":"entry-1731","position":[-548.3837,19.4293,-213.9518],"yaw":-1.22022,"spawnMask":1},{"id":"creature-79198","entityId":"entry-622","position":[-546.7537,19.4293,-207.9558],"yaw":-1.66173,"spawnMask":1},{"id":"creature-79199","entityId":"entry-1731","position":[-566.9527,51.149,-182.3958],"yaw":-3.21455,"spawnMask":1},{"id":"creature-79200","entityId":"entry-1731","position":[-564.5087,51.3524,-183.2108],"yaw":-0.113424,"spawnMask":1},{"id":"creature-79201","entityId":"entry-1731","position":[-553.4967,19.4293,-186.8798],"yaw":-3.02864,"spawnMask":1},{"id":"creature-79202","entityId":"entry-641","position":[-523.7957,50.0732,-270.2298],"yaw":-0.296706,"spawnMask":1},{"id":"creature-79203","entityId":"entry-1731","position":[-568.0817,21.0996,-209.5748],"yaw":-2.94235,"spawnMask":1},{"id":"creature-79204","entityId":"entry-1731","position":[-565.3607,19.4293,-178.3988],"yaw":-2.53463,"spawnMask":1},{"id":"creature-79205","entityId":"entry-1731","position":[-555.8587,19.4293,-226.0358],"yaw":-0.854289,"spawnMask":1},{"id":"creature-79206","entityId":"entry-1763","position":[-574.3897,19.4341,-177.3638],"yaw":-0.092073,"spawnMask":1},{"id":"creature-79207","entityId":"entry-641","position":[-501.9447,49.5059,-281.2808],"yaw":-1.4796,"spawnMask":1},{"id":"creature-79208","entityId":"entry-622","position":[-563.6367,19.4293,-226.1148],"yaw":-2.36988,"spawnMask":1},{"id":"creature-79209","entityId":"entry-622","position":[-582.2727,21.0997,-196.7558],"yaw":-1.21763,"spawnMask":1},{"id":"creature-79210","entityId":"entry-4416","position":[-569.3737,19.9134,-139.8298],"yaw":-1.39626,"spawnMask":1},{"id":"creature-79211","entityId":"entry-1731","position":[-581.4277,19.434,-178.3208],"yaw":-2.21882,"spawnMask":1},{"id":"creature-79212","entityId":"entry-622","position":[-590.6007,21.0997,-209.0458],"yaw":-2.30227,"spawnMask":1},{"id":"creature-79213","entityId":"entry-622","position":[-569.7167,19.4293,-232.5038],"yaw":-1.08319,"spawnMask":1},{"id":"creature-79214","entityId":"entry-4417","position":[-580.5167,19.4359,-149.1528],"yaw":-3.12269,"spawnMask":1},{"id":"creature-79215","entityId":"entry-4416","position":[-578.7767,18.775,-131.6928],"yaw":-0.314159,"spawnMask":1},{"id":"creature-79216","entityId":"entry-4416","position":[-590.6407,19.1763,-152.9988],"yaw":-4.81711,"spawnMask":1},{"id":"creature-79217","entityId":"entry-1731","position":[-600.3977,36.7012,-188.7358],"yaw":-5.17014,"spawnMask":1},{"id":"creature-79218","entityId":"entry-1731","position":[-575.7477,19.4293,-234.9928],"yaw":-1.36211,"spawnMask":1},{"id":"creature-79219","entityId":"entry-641","position":[-571.2207,51.1687,-263.5158],"yaw":-2.60054,"spawnMask":1},{"id":"creature-79220","entityId":"entry-641","position":[-477.6947,49.3963,-291.9828],"yaw":-3.01942,"spawnMask":1},{"id":"creature-79221","entityId":"entry-641","position":[-518.4447,48.6613,-284.8168],"yaw":-4.5204,"spawnMask":1},{"id":"creature-79222","entityId":"entry-641","position":[-506.1487,49.3906,-294.2658],"yaw":-5.69011,"spawnMask":1},{"id":"creature-79223","entityId":"entry-642","position":[-512.9407,49.8013,-289.4548],"yaw":-3.78367,"spawnMask":1},{"id":"creature-79224","entityId":"entry-641","position":[-559.9327,49.6368,-283.2308],"yaw":-0.034907,"spawnMask":1},{"id":"creature-79225","entityId":"entry-4416","position":[-574.4007,50.642,-275.4928],"yaw":-2.49582,"spawnMask":1},{"id":"creature-79226","entityId":"entry-4416","position":[-587.5987,51.1524,-259.3298],"yaw":-3.80482,"spawnMask":1},{"id":"creature-79227","entityId":"entry-641","position":[-529.9547,49.5102,-295.5298],"yaw":-5.50756,"spawnMask":1},{"id":"creature-79231","entityId":"entry-641","position":[-485.2127,49.9248,-308.8718],"yaw":-1.6057,"spawnMask":1},{"id":"creature-79232","entityId":"entry-4416","position":[-567.1167,50.1894,-297.7918],"yaw":-3.07178,"spawnMask":1},{"id":"creature-79233","entityId":"entry-4417","position":[-578.1247,50.6786,-263.8068],"yaw":-6.26195,"spawnMask":1},{"id":"creature-79234","entityId":"entry-4416","position":[-576.5177,49.4016,-287.6198],"yaw":-5.46288,"spawnMask":1},{"id":"creature-79235","entityId":"entry-4416","position":[-584.4527,49.8872,-294.3138],"yaw":-5.61996,"spawnMask":1},{"id":"creature-79236","entityId":"entry-4416","position":[-579.7177,48.9591,-305.6608],"yaw":-2.35619,"spawnMask":1},{"id":"creature-79237","entityId":"entry-4416","position":[-592.5517,48.688,-313.1248],"yaw":-3.14159,"spawnMask":1},{"id":"creature-79238","entityId":"entry-4416","position":[-589.1427,51.0262,-272.9398],"yaw":-5.8294,"spawnMask":1},{"id":"creature-79239","entityId":"entry-4416","position":[-588.0617,51.1635,-280.8128],"yaw":-2.37365,"spawnMask":1},{"id":"creature-79240","entityId":"entry-4416","position":[-601.3147,50.9662,-281.6928],"yaw":-5.06145,"spawnMask":1},{"id":"creature-79241","entityId":"entry-641","position":[-608.1677,47.8264,-292.7768],"yaw":-5.37561,"spawnMask":1},{"id":"creature-79242","entityId":"entry-1731","position":[-606.8217,28.5228,-208.3258],"yaw":-3.16188,"spawnMask":1},{"id":"creature-79243","entityId":"entry-1731","position":[-602.5887,30.4789,-203.2758],"yaw":-3.56974,"spawnMask":1},{"id":"creature-79247","entityId":"entry-1731","position":[-603.7107,19.425,-198.9278],"yaw":-5.74754,"spawnMask":1},{"id":"creature-79248","entityId":"entry-4416","position":[-602.3297,16.2325,-138.0048],"yaw":-3.03687,"spawnMask":1},{"id":"creature-79249","entityId":"entry-4416","position":[-593.5977,18.0196,-135.1298],"yaw":-3.29867,"spawnMask":1},{"id":"creature-79250","entityId":"entry-4416","position":[-613.1667,15.4264,-138.0528],"yaw":-3.38594,"spawnMask":1},{"id":"creature-79251","entityId":"entry-4416","position":[-607.4767,15.2968,-127.4158],"yaw":-0.15708,"spawnMask":1},{"id":"creature-79252","entityId":"entry-4416","position":[-596.2957,17.9316,-126.2538],"yaw":-6.24828,"spawnMask":1},{"id":"creature-79253","entityId":"entry-4416","position":[-622.8187,15.1651,-137.6508],"yaw":-2.98451,"spawnMask":1},{"id":"creature-79255","entityId":"entry-4416","position":[-613.5437,14.5166,-106.1318],"yaw":-1.6057,"spawnMask":1},{"id":"creature-79256","entityId":"entry-4416","position":[-621.1327,14.2355,-115.1888],"yaw":-4.93928,"spawnMask":1},{"id":"creature-79257","entityId":"entry-4416","position":[-620.4977,14.6247,-104.4188],"yaw":-5.0091,"spawnMask":1},{"id":"creature-79258","entityId":"entry-4416","position":[-637.7127,14.4536,-132.5058],"yaw":-4.46804,"spawnMask":1},{"id":"creature-79259","entityId":"entry-4416","position":[-635.1337,12.3198,-118.3948],"yaw":-0.785398,"spawnMask":1},{"id":"creature-79261","entityId":"entry-4416","position":[-651.4187,8.287,-115.4228],"yaw":-3.57792,"spawnMask":1},{"id":"creature-79262","entityId":"entry-3947","position":[-702.6217,8.9806,-188.7828],"yaw":-2.06811,"spawnMask":1},{"id":"creature-79271","entityId":"entry-4416","position":[-640.7207,8.8895,-104.3778],"yaw":-0.733038,"spawnMask":1},{"id":"creature-79277","entityId":"entry-1729","position":[-399.0917,57.3818,-146.7788],"yaw":-0.099881,"spawnMask":1},{"id":"creature-79281","entityId":"entry-1729","position":[-505.1087,53.2487,-195.2728],"yaw":-3.31299,"spawnMask":1},{"id":"creature-79286","entityId":"entry-3947","position":[-698.0947,8.8094,-121.6468],"yaw":-4.4315,"spawnMask":1},{"id":"creature-79287","entityId":"entry-3947","position":[-681.2557,10.6844,-123.1578],"yaw":-5.09576,"spawnMask":1},{"id":"creature-79292","entityId":"entry-657","position":[-722.3317,8.6056,-95.1432],"yaw":-5.50703,"spawnMask":1},{"id":"creature-79293","entityId":"entry-3947","position":[-685.0117,4.0226,-49.5141],"yaw":-3.17298,"spawnMask":1},{"id":"creature-79296","entityId":"entry-634","position":[-605.4047,15.358,-130.7778],"yaw":-5.44543,"spawnMask":1},{"id":"creature-79297","entityId":"entry-657","position":[-729.3727,9.0719,-79.97],"yaw":-6.16024,"spawnMask":1},{"id":"creature-79298","entityId":"entry-3947","position":[-692.6407,4.6476,-34.3768],"yaw":-4.69944,"spawnMask":1},{"id":"creature-79299","entityId":"entry-1732","position":[-723.2737,9.1998,-50.1373],"yaw":-1.48353,"spawnMask":1},{"id":"creature-79300","entityId":"entry-657","position":[-727.8427,8.5967,-31.3819],"yaw":-2.96909,"spawnMask":1},{"id":"creature-79301","entityId":"entry-1732","position":[-732.0197,9.1639,-42.2445],"yaw":-4.52774,"spawnMask":1},{"id":"creature-79303","entityId":"entry-3947","position":[-762.0597,4.7118,-140.0148],"yaw":-2.42708,"spawnMask":1},{"id":"creature-79304","entityId":"entry-3947","position":[-788.6037,17.4359,-123.7408],"yaw":-5.22666,"spawnMask":1},{"id":"creature-79305","entityId":"entry-657","position":[-782.3697,17.5112,-79.6601],"yaw":-0.686417,"spawnMask":1},{"id":"creature-79306","entityId":"entry-1732","position":[-736.0717,8.753,-22.57],"yaw":-1.42668,"spawnMask":1},{"id":"creature-79307","entityId":"entry-657","position":[-783.3077,26.3693,-74.8649],"yaw":-2.98393,"spawnMask":1},{"id":"creature-79308","entityId":"entry-657","position":[-778.1977,22.4623,-99.9414],"yaw":-5.88379,"spawnMask":1},{"id":"creature-79309","entityId":"entry-3947","position":[-788.0617,38.9458,-79.578],"yaw":-2.92716,"spawnMask":1},{"id":"creature-79311","entityId":"entry-657","position":[-789.1277,17.5236,-131.0998],"yaw":-2.26836,"spawnMask":1},{"id":"creature-79312","entityId":"entry-3947","position":[-766.1827,3.991,-132.9168],"yaw":-1.59329,"spawnMask":1},{"id":"creature-79314","entityId":"entry-3947","position":[-787.3037,17.2344,-94.1755],"yaw":-0.542439,"spawnMask":1},{"id":"creature-79315","entityId":"entry-3947","position":[-791.0977,25.9729,-83.4996],"yaw":-2.49507,"spawnMask":1},{"id":"creature-79316","entityId":"entry-657","position":[-724.5867,8.0366,-15.0073],"yaw":-3.36236,"spawnMask":1},{"id":"creature-79319","entityId":"entry-3947","position":[-805.4917,30.8058,-97.6547],"yaw":-5.10199,"spawnMask":1},{"id":"creature-79320","entityId":"entry-3947","position":[-805.9537,17.0175,-122.8388],"yaw":-2.01555,"spawnMask":1},{"id":"creature-79321","entityId":"entry-657","position":[-794.3327,39.523,-65.919],"yaw":-3.9576,"spawnMask":1},{"id":"creature-79323","entityId":"entry-657","position":[-788.4977,18.9177,-41.5852],"yaw":-4.86947,"spawnMask":1},{"id":"creature-79324","entityId":"entry-657","position":[-740.8417,9.0403,-9.2525],"yaw":-5.75106,"spawnMask":1},{"id":"creature-79325","entityId":"entry-3947","position":[-786.9597,18.5748,-45.3114],"yaw":-5.4415,"spawnMask":1},{"id":"creature-79326","entityId":"entry-1732","position":[-793.2187,28.2859,-106.4348],"yaw":-2.29205,"spawnMask":1},{"id":"creature-79327","entityId":"entry-1732","position":[-796.7807,38.4947,-78.3801],"yaw":-2.56158,"spawnMask":1},{"id":"creature-79328","entityId":"entry-657","position":[-791.1997,38.7319,-52.9995],"yaw":-0.738249,"spawnMask":1},{"id":"creature-79329","entityId":"entry-1732","position":[-797.9047,39.4485,-40.2806],"yaw":-0.914945,"spawnMask":1},{"id":"creature-79330","entityId":"entry-657","position":[-794.2727,18.9283,-36.8214],"yaw":-6.26542,"spawnMask":1},{"id":"creature-79333","entityId":"entry-647","position":[-820.0637,41.7362,-59.6218],"yaw":-1.23189,"spawnMask":1},{"id":"creature-79334","entityId":"entry-657","position":[-809.4277,40.9922,-67.6419],"yaw":-3.10425,"spawnMask":1},{"id":"creature-79335","entityId":"entry-1732","position":[-806.5847,40.9529,-67.9725],"yaw":-3.10443,"spawnMask":1},{"id":"creature-79336","entityId":"entry-639","position":[-819.8267,39.4232,-87.3708],"yaw":0,"spawnMask":1},{"id":"creature-79337","entityId":"entry-646","position":[-797.2147,20.4973,-22.8489],"yaw":-1.0472,"spawnMask":1},{"id":"creature-79338","entityId":"entry-1732","position":[-811.7187,19.6766,-21.7671],"yaw":-1.62187,"spawnMask":1},{"id":"creature-79340","entityId":"entry-657","position":[-835.8487,19.7756,-20.9426],"yaw":-2.05681,"spawnMask":1},{"id":"creature-79341","entityId":"entry-657","position":[-830.2757,19.875,-19.0486],"yaw":-4.01444,"spawnMask":1},{"id":"creature-79343","entityId":"entry-657","position":[-843.1447,19.2921,-30.3784],"yaw":-5.61834,"spawnMask":1},{"id":"creature-79344","entityId":"entry-645","position":[-853.6807,17.1978,-67.5862],"yaw":-4.92527,"spawnMask":1},{"id":"creature-79345","entityId":"entry-636","position":[-776.9997,9.9907,-3.989],"yaw":-0.991293,"spawnMask":1},{"id":"creature-79346","entityId":"entry-636","position":[-781.5477,10.0946,0.0756],"yaw":-1.39409,"spawnMask":1},{"id":"creature-79347","entityId":"entry-3947","position":[-852.1797,18.7217,-43.2717],"yaw":-1.28568,"spawnMask":1},{"id":"creature-79348","entityId":"entry-657","position":[-854.7657,17.337,-89.5702],"yaw":-5.22399,"spawnMask":1},{"id":"creature-79349","entityId":"entry-657","position":[-856.5007,17.4065,-85.9135],"yaw":-3.16079,"spawnMask":1},{"id":"creature-79351","entityId":"entry-1732","position":[-847.6337,17.152,-103.0348],"yaw":-5.40776,"spawnMask":1},{"id":"creature-79353","entityId":"entry-3947","position":[-823.9027,17.0675,-122.5878],"yaw":-3.7869,"spawnMask":1},{"id":"creature-79354","entityId":"entry-1732","position":[-836.3077,17.0381,-119.0878],"yaw":-5.99994,"spawnMask":1},{"id":"creature-79355","entityId":"entry-1732","position":[-873.6967,2.5003,-142.7728],"yaw":-3.76723,"spawnMask":1},{"id":"creature-79369","entityId":"entry-636","position":[-824.7157,40.1235,-78.2809],"yaw":-2.93215,"spawnMask":1},{"id":"creature-79370","entityId":"entry-636","position":[-815.0287,40.1416,-77.8089],"yaw":-3.26377,"spawnMask":1},{"id":"creature-79377","entityId":"entry-634","position":[-579.4727,51.2697,-259.0198],"yaw":-0.186022,"spawnMask":1},{"id":"creature-79384","entityId":"entry-657","position":[-891.7467,5.7661,-154.9978],"yaw":-3.05433,"spawnMask":1},{"id":"creature-79385","entityId":"entry-1732","position":[-905.9677,8.3018,-146.1428],"yaw":-4.04916,"spawnMask":1},{"id":"creature-79388","entityId":"entry-657","position":[-908.9317,8.85,-153.1838],"yaw":-2.61799,"spawnMask":1},{"id":"creature-79390","entityId":"entry-1732","position":[-919.0937,12.6665,-147.6758],"yaw":-6.04953,"spawnMask":1},{"id":"creature-84079","entityId":"entry-3586","position":[-526.3657,51.2558,-152.5468],"yaw":-1.73877,"spawnMask":1}],"roamingPacks":[{"id":"patrol-79139","name":"Defias Evoker Patrol","speed":1.15,"pathId":791390,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-393.9437,54.4254,-58.1104],[-400.1157,54.6715,-55.945],[-401.7777,54.4459,-67.4428],[-395.6647,54.551,-65.5084],[-391.0677,53.8509,-59.4716],[-386.8577,54.0379,-57.7458],[-381.2527,54.1566,-57.6079],[-382.1487,53.9233,-68.0765],[-378.1117,55.2696,-75.5946],[-375.9717,57.673,-87.6704],[-377.3097,58.1746,-97.0323],[-380.8247,57.5756,-103.8508],[-377.1677,57.9105,-94.3342],[-376.7667,56.3313,-82.0837],[-374.2967,55.2095,-68.3527],[-376.3087,54.426,-60.551],[-379.2867,54.3809,-54.3402],[-385.6157,53.9889,-58.7386],[-389.9507,53.9064,-57.8531]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79144","name":"Defias Overseer Patrol","speed":1.15,"pathId":791440,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-380.0837,54.996,-49.1424],[-383.3687,55.6327,-44.0311],[-391.1887,56.0001,-48.049],[-400.9697,55.6847,-52.4963],[-403.1177,54.114,-59.166],[-401.4897,54.8692,-69.0781],[-397.7817,55.2284,-68.659],[-392.5987,54.2421,-58.4741],[-382.0777,54.7927,-53.6907],[-373.5707,55.4138,-49.8229],[-367.5697,55.4553,-57.1317],[-358.5007,54.4561,-62.8938],[-349.6317,56.0778,-62.7871],[-358.5667,54.4549,-63.6458],[-366.8677,55.1759,-63.6936],[-369.1027,55.7816,-68.7988],[-373.6357,55.1671,-75.178],[-378.5057,55.3538,-76.8168],[-383.7767,53.8133,-67.4703],[-384.6437,53.8018,-60.7499],[-377.1097,54.4166,-53.4688]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79152","name":"Defias Overseer Patrol","speed":1.15,"pathId":791520,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-400.9877,59.848,-108.4098],[-407.9577,59.2874,-118.7998],[-414.8067,58.3295,-120.4968],[-424.4927,55.5058,-115.3328],[-431.6597,55.3187,-107.4898],[-441.7087,55.1171,-114.2748],[-438.5577,54.8408,-119.8668],[-429.9027,55.0571,-116.7048],[-422.7327,56.0513,-118.3238],[-418.1117,57.7375,-124.1918],[-410.6067,58.0429,-131.8718],[-405.1157,58.7358,-125.2128],[-408.4687,59.1262,-119.0598]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79188","name":"Defias Evoker Patrol","speed":1.15,"pathId":791880,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-395.2877,57.8397,-106.3738],[-396.3807,57.1137,-115.1198],[-404.0307,58.6258,-123.2738],[-393.4997,56.7825,-118.2858],[-383.7657,57.6166,-113.2498],[-376.3617,58.5081,-110.7558],[-375.5787,58.6416,-102.9828],[-385.9007,58.3475,-100.9828],[-395.0047,59.2601,-95.2886],[-400.9257,58.4156,-91.1296]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79189","name":"Defias Overseer Patrol","speed":1.15,"pathId":791890,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-396.1457,59.0004,-94.8145],[-389.2327,57.442,-103.3008],[-382.5507,57.0778,-107.6118],[-383.1447,59.4163,-122.7548],[-390.3827,59.0214,-125.4008],[-398.6537,59.2768,-130.0018],[-403.0507,58.7695,-125.4798],[-397.2727,57.2892,-116.0988],[-394.7247,57.7594,-105.9068],[-398.8207,58.7621,-100.3758],[-398.9857,58.5589,-98.5215]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79229","name":"Defias Wizard Patrol","speed":1.15,"pathId":792290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-589.1437,50.6918,-278.1158],[-595.6487,49.9871,-283.4308],[-600.2537,47.6012,-292.6168],[-600.7517,47.7582,-297.7288],[-597.2737,48.2585,-301.5018],[-590.7937,47.9888,-302.4218],[-579.3817,48.6283,-296.2858],[-575.7677,48.6689,-294.9608],[-568.9727,49.267,-289.6268],[-560.1017,49.0378,-289.3248],[-548.3467,49.5681,-289.5218],[-558.3567,49.0641,-288.8798],[-567.6767,49.2689,-290.4708],[-574.6787,48.7966,-293.7078],[-581.0557,47.1116,-299.0118],[-589.4307,47.8092,-302.8828],[-595.2567,48.2425,-302.6598],[-601.2417,47.8393,-298.6528],[-601.5397,47.8595,-291.1838],[-597.8127,49.4407,-284.5738],[-590.6107,51.1463,-279.7918],[-582.8557,50.3683,-273.9848],[-578.5407,50.4106,-268.4728],[-577.1387,50.6948,-264.6328],[-576.7217,51.2727,-255.1038],[-577.1427,50.7245,-264.0648],[-578.4347,50.2192,-269.5288],[-581.4757,50.0996,-271.8888]],"members":[{"id":"member","entityId":"entry-4418","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79230","name":"Defias Taskmaster Patrol","speed":1.15,"pathId":792300,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-579.5597,50.4095,-268.1478],[-576.1847,50.799,-261.9268],[-581.8497,50.7786,-262.6468],[-582.4327,49.9166,-269.8398],[-585.0807,50.3288,-275.0498],[-591.9057,51.2402,-279.7448],[-599.5447,47.9941,-289.3308],[-591.4527,47.9657,-303.1278],[-600.0437,48.0861,-306.4618],[-600.8617,47.8619,-298.5588],[-604.2487,47.7936,-292.6988],[-600.6517,50.0045,-283.3838],[-589.8067,50.9558,-279.1648],[-581.8957,50.0249,-271.0488]],"members":[{"id":"member","entityId":"entry-4417","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79244","name":"Defias Overseer Patrol","speed":1.15,"pathId":792440,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-504.0547,51.7866,-208.3898],[-496.1557,49.3813,-216.7488],[-486.0237,48.6944,-223.8478],[-479.6007,49.4067,-235.5018],[-480.7867,49.5668,-255.6228],[-480.6767,49.2881,-238.0248],[-484.0817,48.9363,-228.4558],[-489.7137,48.7114,-221.8968],[-496.8657,49.366,-217.4778],[-501.4257,51.3394,-212.4988],[-504.2147,52.0335,-206.9748],[-504.2127,52.9621,-202.6558]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79245","name":"Defias Evoker Patrol","speed":1.15,"pathId":792450,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-504.5957,51.0267,-213.0488],[-498.6447,49.3176,-218.6698],[-491.5287,48.2111,-223.3658],[-484.9657,48.9432,-233.8178],[-483.6917,49.2149,-239.7518],[-483.7737,49.3305,-245.6908],[-483.5487,49.5684,-254.8848],[-483.6377,49.0625,-241.8388],[-485.1137,48.9332,-234.5178],[-491.9267,48.0572,-225.9208],[-494.0527,48.3353,-222.5778],[-498.7997,49.4578,-217.7518],[-502.6277,50.9318,-215.4928],[-505.3737,51.4753,-209.7258],[-505.7117,52.9302,-201.6618]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79260","name":"Defias Wizard Patrol","speed":1.15,"pathId":792600,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-637.3727,13.0375,-126.0588],[-632.4697,13.696,-131.2088],[-622.1797,13.6879,-133.3368],[-610.7497,14.0087,-133.8728],[-601.1987,15.8859,-133.4738],[-593.5737,17.7762,-132.3498],[-587.7267,18.6683,-133.9778],[-581.2217,18.4554,-138.8868],[-580.4037,18.8492,-144.9468],[-584.3047,18.168,-137.1558],[-588.0097,18.749,-134.3018],[-595.2827,17.1212,-132.5438],[-606.6087,14.8372,-134.8738],[-619.0857,13.9207,-134.1908],[-630.6197,13.3451,-130.3868],[-636.4797,13.1075,-126.9848],[-640.4447,11.2816,-119.1768],[-641.9827,10.3442,-114.6398],[-646.6447,8.5112,-111.3648]],"members":[{"id":"member","entityId":"entry-4418","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79273","name":"Defias Overseer Patrol","speed":1.15,"pathId":792730,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-491.6177,54.1629,-181.3878],[-498.1857,53.586,-180.9718],[-502.4707,53.5036,-183.7928],[-506.0087,53.2997,-193.5808],[-496.3577,53.3232,-193.9448],[-490.0147,53.6618,-192.3628],[-492.1137,53.6751,-187.4148]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79280","name":"Defias Overseer Patrol","speed":1.15,"pathId":792800,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-501.1007,54.0345,-178.5178],[-506.1737,53.792,-170.6218],[-509.4587,53.4422,-159.0528],[-512.3717,53.0524,-155.5568],[-522.1037,52.2217,-153.6398],[-511.0757,53.2443,-156.6438],[-507.4377,53.3306,-163.5648],[-506.9977,53.7551,-170.2008],[-502.5137,54.0341,-177.7228],[-502.8197,53.1036,-185.8928],[-503.6677,53.2839,-192.1428]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79294","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":792940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-697.6617,8.7277,-95.7356],[-688.7347,8.1493,-96.7807],[-701.5327,8.9358,-96.1538],[-714.4847,8.8041,-96.7272],[-721.1347,8.572,-97.0217],[-726.5277,9.0341,-85.5159],[-728.1297,9.0839,-81.3772],[-723.5537,8.6732,-92.601],[-718.5177,8.6501,-96.1975],[-709.7817,8.9105,-95.9779]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79302","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":793020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-730.0607,8.8011,-74.245],[-729.4057,9.075,-77.1654],[-731.7477,8.2344,-68.9675],[-731.3837,9.0992,-58.8174],[-729.2617,9.2409,-46.8814],[-729.2457,8.9591,-36.0481],[-732.2587,8.4879,-23.4798],[-736.4797,8.87,-16.3474],[-743.4127,9.1018,-9.5903],[-752.7727,8.9157,-3.0158],[-740.8377,9.1839,-12.3893],[-731.7867,8.4846,-22.1444],[-727.7387,8.576,-30.9541],[-726.9277,9.0181,-43.1842],[-729.0397,9.4228,-53.4491],[-731.5237,8.8925,-61.0884]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79310","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":793100,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-783.2947,26.5838,-79.8274],[-786.9077,26.329,-84.707],[-790.9547,27.936,-98.3692],[-792.4997,28.2941,-103.9618],[-786.2327,27.1812,-92.1156],[-782.8567,26.5988,-83.4019],[-776.4667,26.9103,-84.0802],[-776.9687,26.5255,-88.592],[-778.4607,22.4584,-97.0753],[-781.3817,22.2302,-102.9248],[-786.3887,17.4035,-112.9508],[-790.6677,17.2766,-118.4748],[-784.3377,18.5723,-109.8668],[-780.7637,22.2763,-102.6538],[-778.4497,22.4667,-95.9267],[-776.8347,26.9009,-86.3064],[-776.4237,26.9112,-82.7037]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79313","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":793130,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-783.2957,18.5228,-47.0225],[-780.8837,18.1312,-57.6292],[-779.8977,17.8086,-67.8579],[-780.7547,17.5239,-78.736],[-783.2787,17.3315,-87.9733],[-787.6647,17.1463,-99.7822],[-795.6627,16.9487,-117.2938],[-790.8697,17.2655,-121.2068],[-793.7537,17.308,-128.6168],[-796.5817,16.9172,-123.1378],[-799.1577,16.9593,-120.1088],[-791.8717,17.0583,-107.4868],[-785.9997,17.1555,-98.2201],[-783.1107,17.2771,-90.2063],[-782.0687,17.4472,-82.5701],[-780.0637,17.5844,-75.9874],[-780.7897,17.9336,-63.7448],[-782.4637,18.1795,-56.1276]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79322","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":793220,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-803.2017,17.0302,-120.6298],[-794.4857,17.0704,-108.9668],[-789.9327,17.1933,-98.7259],[-787.0377,17.3588,-87.8993],[-785.1497,17.5971,-76.0223],[-783.7757,17.9057,-64.5571],[-784.8787,18.2561,-53.9884],[-784.4657,18.5533,-46.1787],[-787.6297,18.8832,-38.511],[-795.7917,19.1807,-31.522],[-786.4007,18.8028,-40.4272],[-784.0387,18.4852,-47.8884],[-784.6697,18.1243,-57.4208],[-782.3817,17.8085,-67.7975],[-784.7727,17.4122,-84.9504],[-789.2057,17.1618,-99.9488],[-795.1197,17.0482,-111.0828]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79352","name":"Defias Squallshaper Patrol","speed":1.15,"pathId":793520,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-838.9407,17.0273,-117.1078],[-831.2337,17.0668,-122.1938],[-826.3877,17.0501,-123.0028],[-834.2027,17.0248,-122.0008],[-840.6797,17.03,-115.4628],[-849.8947,17.1405,-101.8518],[-854.8167,17.3756,-87.6227],[-856.4517,17.5623,-78.4293],[-856.5567,17.242,-66.7606],[-856.2977,18.202,-56.7422],[-853.0787,18.6714,-44.1914],[-848.9917,19.0242,-36.0599],[-841.4097,19.3742,-28.4685],[-834.2837,19.5785,-24.0791],[-825.6437,19.7624,-20.3305],[-835.0517,19.499,-25.521],[-844.1757,19.0748,-34.389],[-850.6547,18.6746,-43.7551],[-853.3247,18.3014,-53.5549],[-854.8777,17.1991,-67.8279],[-854.1527,17.5241,-80.7551],[-853.2537,17.4093,-86.6421],[-847.0207,17.21,-100.0908],[-842.0417,17.1418,-107.9748],[-837.2817,17.0709,-116.3828]],"members":[{"id":"member","entityId":"entry-1732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79360","name":"Defias Evoker Patrol","speed":1.15,"pathId":793600,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-648.0137,7.0771,-101.3248],[-643.1877,8.3752,-106.8948],[-638.2147,10.7023,-116.1578],[-635.7777,12.872,-123.2178],[-629.9837,13.2949,-127.7498],[-621.1187,12.878,-125.6338],[-617.7157,13.8015,-121.6358],[-617.5017,13.4505,-112.4118],[-614.9817,14.1376,-121.3088],[-613.6737,13.3276,-131.9738],[-619.7467,14.4957,-135.8608],[-626.8357,13.4427,-128.4218],[-633.9127,12.9916,-127.5358],[-637.2567,12.7422,-121.5138],[-638.9357,10.1439,-112.9188],[-642.3457,8.7977,-108.4678],[-650.9817,7.3005,-110.7368]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79361","name":"Defias Overseer Patrol","speed":1.15,"pathId":793610,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-640.2207,10.4548,-115.5328],[-637.0967,12.12,-119.6118],[-634.1717,12.9858,-125.7238],[-627.4927,13.3672,-129.8028],[-620.9767,13.1764,-131.1658],[-612.6187,13.7728,-130.2608],[-604.6667,15.3822,-131.3438],[-596.0477,16.7491,-131.8698],[-589.0937,18.5584,-132.6698],[-581.6517,18.092,-137.0828],[-579.2297,18.9115,-144.1548],[-582.2047,18.1291,-135.8298],[-587.8537,18.4842,-132.7668],[-595.5197,17.0049,-131.5098],[-606.4207,14.6987,-132.4888],[-617.0227,13.3519,-131.7738],[-625.2767,13.2226,-130.2118],[-635.0067,12.9193,-124.7148],[-640.2537,10.6504,-116.7038],[-643.1177,9.137,-110.4408],[-649.3617,7.0889,-107.3198]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79373","name":"Defias Overseer Patrol","speed":1.15,"pathId":793730,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-399.8267,56.4552,-158.9048],[-401.9747,57.0699,-151.9858],[-403.8917,57.7375,-144.2988],[-401.4277,56.8875,-154.3698],[-400.2577,56.8222,-161.6338],[-401.8057,57.1419,-167.4948],[-405.7097,57.304,-170.6598],[-417.1187,55.1901,-179.5428],[-407.2557,56.6005,-172.6948],[-402.7667,57.2247,-169.5558]],"members":[{"id":"member","entityId":"entry-634","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79374","name":"Defias Evoker Patrol","speed":1.15,"pathId":793740,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-399.1917,57.3917,-167.0438],[-397.4717,56.42,-157.8958],[-399.4277,56.9835,-150.1158],[-402.1857,58.0449,-142.3078],[-398.4617,56.814,-152.1078],[-397.2517,56.7481,-161.7198],[-400.6737,57.3317,-168.7508],[-404.2867,56.8651,-173.9198],[-416.4497,55.0575,-182.8028],[-408.2727,55.7775,-177.1768],[-403.0247,57.1892,-172.1918],[-399.7307,57.3758,-169.0628]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79376","name":"Defias Evoker Patrol","speed":1.15,"pathId":793760,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-584.7477,50.4965,-272.5568],[-589.4427,50.6854,-276.0148],[-596.4927,50.8313,-280.1568],[-600.3607,49.3223,-284.9868],[-603.9897,47.7061,-294.5998],[-603.9537,47.7995,-300.2068],[-595.2847,48.231,-303.9878],[-589.5927,47.6788,-304.5428],[-582.4627,47.0809,-299.2558],[-577.1007,48.1079,-297.6978],[-569.1747,48.9319,-293.2308],[-562.2477,49.1158,-292.1978],[-549.5277,49.5699,-292.5498],[-555.8097,49.5701,-292.5418],[-566.2327,48.7741,-294.6068],[-573.7497,48.3028,-297.8408],[-583.8367,48.1639,-304.1678],[-591.8467,47.8343,-307.0898],[-599.3707,48.1736,-304.9378],[-602.8627,47.7535,-299.1308],[-601.7707,48.5715,-287.2888],[-599.6377,49.9321,-283.3978],[-593.1587,51.0463,-279.4468],[-587.0617,50.65,-274.2138],[-581.8567,50.196,-268.5378],[-579.7987,50.7023,-261.9718],[-579.0997,51.2727,-256.2068],[-578.6207,50.6467,-264.2848]],"members":[{"id":"member","entityId":"entry-1729","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-79168","name":"Rhahk'zor","position":[-448.1427,54.5567,-192.9168]},{"id":"creature-79223","name":"Sneed","position":[-512.9407,49.8013,-289.4548]},{"id":"creature-79206","name":"Gilnid","position":[-574.3897,19.4341,-177.3638]},{"id":"creature-79337","name":"Mr. Smite","position":[-797.2147,20.4973,-22.8489]},{"id":"creature-79344","name":"Cookie","position":[-853.6807,17.1978,-67.5862]},{"id":"creature-79333","name":"Captain Greenskin","position":[-820.0637,41.7362,-59.6218]},{"id":"creature-79336","name":"Edwin VanCleef","position":[-819.8267,39.4232,-87.3708]}],"objectiveOrder":[{"id":"creature-79168","name":"Rhahk'zor","position":[-448.1427,54.5567,-192.9168]},{"id":"creature-79223","name":"Sneed","position":[-512.9407,49.8013,-289.4548]},{"id":"creature-79206","name":"Gilnid","position":[-574.3897,19.4341,-177.3638]},{"id":"creature-79337","name":"Mr. Smite","position":[-797.2147,20.4973,-22.8489]},{"id":"creature-79344","name":"Cookie","position":[-853.6807,17.1978,-67.5862]},{"id":"creature-79333","name":"Captain Greenskin","position":[-820.0637,41.7362,-59.6218]},{"id":"creature-79336","name":"Edwin VanCleef","position":[-819.8267,39.4232,-87.3708]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":5639,"id":180024,"map":36,"orientation":3.082,"phaseMask":1,"position_x":-32.1232,"position_y":-374.64,"position_z":59.06,"rotation0":0,"rotation1":0,"rotation2":0.999556,"rotation3":0.0297919,"spawnMask":1,"spawntimesecs":-1,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26182,"id":16399,"map":36,"orientation":3.12412,"phaseMask":1,"position_x":-168.514,"position_y":-579.861,"position_z":19.3159,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26183,"id":17153,"map":36,"orientation":6.26573,"phaseMask":1,"position_x":-262.714,"position_y":-482.361,"position_z":49.4353,"rotation0":0,"rotation1":0,"rotation2":-0.00872612,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26184,"id":17154,"map":36,"orientation":3.12412,"phaseMask":1,"position_x":-242.965,"position_y":-578.561,"position_z":51.1366,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26185,"id":16400,"map":36,"orientation":1.55334,"phaseMask":1,"position_x":-290.294,"position_y":-536.96,"position_z":49.4353,"rotation0":0,"rotation1":0,"rotation2":0.700909,"rotation3":0.713251,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26186,"id":1731,"map":36,"orientation":0.436332,"phaseMask":1,"position_x":-81.0082,"position_y":-394.329,"position_z":61.5258,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26187,"id":1732,"map":36,"orientation":0.349066,"phaseMask":1,"position_x":-127.872,"position_y":-444.354,"position_z":57.161,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26188,"id":101831,"map":36,"orientation":1.72787,"phaseMask":1,"position_x":-188.137,"position_y":-460.313,"position_z":54.5591,"rotation0":0,"rotation1":0,"rotation2":0.760406,"rotation3":0.649449,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26189,"id":1732,"map":36,"orientation":-2.33874,"phaseMask":1,"position_x":-211.943,"position_y":-518.46,"position_z":52.8603,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26190,"id":19019,"map":36,"orientation":-1.37881,"phaseMask":1,"position_x":-214.701,"position_y":-545.259,"position_z":19.3065,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26191,"id":123207,"map":36,"orientation":1.55334,"phaseMask":1,"position_x":-205.664,"position_y":-574.581,"position_z":20.9987,"rotation0":0,"rotation1":0,"rotation2":0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26192,"id":101834,"map":36,"orientation":3.29869,"phaseMask":1,"position_x":-165.404,"position_y":-576.924,"position_z":19.3064,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784664,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26193,"id":123210,"map":36,"orientation":-1.58825,"phaseMask":1,"position_x":-205.805,"position_y":-583.964,"position_z":20.9987,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26194,"id":123208,"map":36,"orientation":3.12414,"phaseMask":1,"position_x":-210.428,"position_y":-579.201,"position_z":20.9987,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26195,"id":123209,"map":36,"orientation":-0.017454,"phaseMask":1,"position_x":-201.043,"position_y":-579.374,"position_z":20.9987,"rotation0":0,"rotation1":0,"rotation2":-0.00872689,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26196,"id":19019,"map":36,"orientation":2.77507,"phaseMask":1,"position_x":-170.766,"position_y":-588.508,"position_z":19.3276,"rotation0":0,"rotation1":0,"rotation2":0.983255,"rotation3":0.182237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26197,"id":101832,"map":36,"orientation":1.72787,"phaseMask":1,"position_x":-287.282,"position_y":-539.877,"position_z":49.4321,"rotation0":0,"rotation1":0,"rotation2":0.760406,"rotation3":0.649449,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26198,"id":75293,"map":36,"orientation":-1.55334,"phaseMask":1,"position_x":-312.046,"position_y":-477.501,"position_z":49.5979,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26199,"id":1731,"map":36,"orientation":-0.069813,"phaseMask":1,"position_x":-286.104,"position_y":-577.582,"position_z":50.9829,"rotation0":0,"rotation1":0,"rotation2":-0.0348994,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26200,"id":123211,"map":36,"orientation":6.17847,"phaseMask":1,"position_x":-205.973,"position_y":-613.262,"position_z":19.4004,"rotation0":0,"rotation1":0,"rotation2":-0.0523348,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26201,"id":123213,"map":36,"orientation":1.64061,"phaseMask":1,"position_x":-196.491,"position_y":-605.381,"position_z":19.4004,"rotation0":0,"rotation1":0,"rotation2":0.731353,"rotation3":0.681999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26202,"id":123212,"map":36,"orientation":4.25861,"phaseMask":1,"position_x":-196.417,"position_y":-610.98,"position_z":19.4004,"rotation0":0,"rotation1":0,"rotation2":-0.848047,"rotation3":0.529921,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26203,"id":17155,"map":36,"orientation":-0.767945,"phaseMask":1,"position_x":-106.409,"position_y":-617.284,"position_z":13.8495,"rotation0":0,"rotation1":0,"rotation2":-0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26204,"id":1732,"map":36,"orientation":2.25148,"phaseMask":1,"position_x":-106.249,"position_y":-611.118,"position_z":16.6945,"rotation0":0,"rotation1":0,"rotation2":0.902586,"rotation3":0.430509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1582,"guid":26205,"id":16398,"map":36,"orientation":-0.890294,"phaseMask":1,"position_x":-107.562,"position_y":-659.674,"position_z":7.21211,"rotation0":-0.002224,"rotation1":0.0111,"rotation2":-0.430507,"rotation3":0.902516,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":26206,"id":101833,"map":36,"orientation":1.90241,"phaseMask":1,"position_x":-96.9277,"position_y":-670.597,"position_z":7.40338,"rotation0":0,"rotation1":0,"rotation2":0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26207,"id":3705,"map":36,"orientation":-2.63545,"phaseMask":1,"position_x":-89.3315,"position_y":-682.574,"position_z":7.42373,"rotation0":0,"rotation1":0,"rotation2":-0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26208,"id":3705,"map":36,"orientation":1.18682,"phaseMask":1,"position_x":-43.7597,"position_y":-733.648,"position_z":9.18536,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1582,"guid":26209,"id":19019,"map":36,"orientation":0.017453,"phaseMask":1,"position_x":-141.933,"position_y":-770.301,"position_z":2.44696,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1581,"guid":26210,"id":75293,"map":36,"orientation":1.16937,"phaseMask":1,"position_x":-77.7409,"position_y":-788.596,"position_z":26.1097,"rotation0":0,"rotation1":0,"rotation2":0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1582,"guid":26211,"id":144111,"map":36,"orientation":2.33874,"phaseMask":1,"position_x":2.69086,"position_y":-781.633,"position_z":9.76985,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1582,"guid":26212,"id":3662,"map":36,"orientation":1.51844,"phaseMask":1,"position_x":-144.899,"position_y":-891.56,"position_z":4.30954,"rotation0":0,"rotation1":0,"rotation2":0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1581},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":30533,"id":13965,"map":36,"orientation":1.69297,"phaseMask":1,"position_x":-191.415,"position_y":-457.446,"position_z":54.4391,"rotation0":0,"rotation1":0,"rotation2":0.748955,"rotation3":0.662621,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":30534,"id":16397,"map":36,"orientation":1.81514,"phaseMask":1,"position_x":-100.502,"position_y":-668.771,"position_z":7.41049,"rotation0":0,"rotation1":0,"rotation2":0.788011,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30536,"id":1732,"map":36,"orientation":-0.628319,"phaseMask":1,"position_x":-146.761,"position_y":-519.81,"position_z":55.0914,"rotation0":0,"rotation1":0,"rotation2":-0.309017,"rotation3":0.951056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30537,"id":19019,"map":36,"orientation":-0.401426,"phaseMask":1,"position_x":-236.247,"position_y":-560.498,"position_z":19.3065,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30538,"id":75293,"map":36,"orientation":-0.139626,"phaseMask":1,"position_x":-209.206,"position_y":-602.72,"position_z":19.3065,"rotation0":0,"rotation1":0,"rotation2":-0.0697563,"rotation3":0.997564,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30539,"id":19019,"map":36,"orientation":0.802851,"phaseMask":1,"position_x":-123.418,"position_y":-705.997,"position_z":8.44232,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30540,"id":75293,"map":36,"orientation":1.55334,"phaseMask":1,"position_x":-63.0889,"position_y":-797.013,"position_z":39.0067,"rotation0":0,"rotation1":0,"rotation2":0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31957,"id":3662,"map":36,"orientation":0.698132,"phaseMask":1,"position_x":-103.57,"position_y":-723.359,"position_z":8.49449,"rotation0":0,"rotation1":0,"rotation2":0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34847,"id":1731,"map":36,"orientation":-1.06465,"phaseMask":1,"position_x":-56.9023,"position_y":-349.056,"position_z":57.4095,"rotation0":0,"rotation1":0,"rotation2":-0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34848,"id":19019,"map":36,"orientation":0.767945,"phaseMask":1,"position_x":-200.774,"position_y":-574.159,"position_z":20.9768,"rotation0":0,"rotation1":0,"rotation2":0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34849,"id":1732,"map":36,"orientation":-1.37881,"phaseMask":1,"position_x":-140.057,"position_y":-602.209,"position_z":17.7757,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34850,"id":75293,"map":36,"orientation":0.226893,"phaseMask":1,"position_x":-300.887,"position_y":-532.542,"position_z":49.4236,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34851,"id":1731,"map":36,"orientation":0.959931,"phaseMask":1,"position_x":-314.51,"position_y":-592.77,"position_z":51.2438,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":34852,"id":19019,"map":36,"orientation":-1.41372,"phaseMask":1,"position_x":-185.016,"position_y":-692.186,"position_z":8.81941,"rotation0":0,"rotation1":0,"rotation2":-0.649449,"rotation3":0.760405,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a","clientArchiveHashes":{"common-2.mpq/World/Maps/DeadminesInstance":"d7e35db77547a3ab50e2ba25afed6b1e4f83c6b57f173b6e3e59753a4436f9d0","patch/World/maps/DeadminesInstance":"0741f7683ebaf82477c3f30e8cd1a5400673f69924cfc8c6ec314dc354adfa54","patch-2/World/maps/DeadminesInstance":"c88959c69a85dd34b870b56522ce9a58db60c5ec1890fdf680306ea0753f5e22"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/deadmines/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["22/22 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"wailing-caverns","title":"Wailing Caverns","mapId":43,"lfgDungeonIds":[1],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[15,25]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Wailing Caverns","theme":"Instanced dungeon","summary":"Fight through Wailing Caverns, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Wailing Caverns...","unchartedAreaName":"Uncharted Wailing Caverns","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":701.1907},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/43-wailingcaverns/visual.glb","checksum":"459f50a5dff5c6b2c12741b90b9b7c57898fe768510c9cf5f5c947054ec59c57","size":5390988,"triangleCount":160890}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/43-wailingcaverns/collision.glb","checksum":"fa308b4b7110a35d0b0e2c89d50416f8191aa95566487b196e4de5d3e1eb1cae","size":1140784,"triangleCount":90000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/43-wailingcaverns/navigation.glb","checksum":"62cbc347e644fe6b8ef2851cb80881b4cea51f4ed65254a4d86fad41a72e2f1e","size":589628,"triangleCount":45732}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-110.0811,-126.9218,-397.9609],"max":[435.1384,-8.2673,575.9151]},"entrance":{"name":"Wailing Caverns Entrance","footPosition":[163.4694,-73.4728,132.8901],"forward":[-0.8285565958400999,0,-0.5599053201121288],"yaw":-2.1650678515075716},"areas":[{"id":"entrance","name":"Wailing Caverns Entrance","center":[163.4694,-73.4728,132.8901],"radius":35},{"id":"area-lady-anacondra","name":"Lady Anacondra's Encounter","center":[-15.3655,-87.5144,297.1661],"radius":42},{"id":"area-lord-cobrahn","name":"Lord Cobrahn's Encounter","center":[151.1184,-72.4422,414.3571],"radius":42},{"id":"area-kresh","name":"Kresh's Encounter","center":[64.3876,-106.5118,319.0741],"radius":42},{"id":"area-lord-pythas","name":"Lord Pythas's Encounter","center":[-36.828,-79.3117,-241.0739],"radius":42},{"id":"area-skum","name":"Skum's Encounter","center":[285.5584,-69.0061,-312.9779],"radius":42},{"id":"area-lord-serpentis","name":"Lord Serpentis's Encounter","center":[24.1944,-84.7163,257.1004],"radius":42},{"id":"area-verdan-the-everliving","name":"Verdan the Everliving's Encounter","center":[81.8348,-30.8067,32.2466],"radius":42},{"id":"area-mutanus-the-devourer","name":"Mutanus the Devourer's Encounter","center":[-151.27,-102.82,252.26],"radius":42}],"entities":{"entry-5053":{"id":"entry-5053","kind":"mob","name":"Deviate Crocolisk","combat":{"serverEntry":5053,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0.95,"delivery":"melee","effect":{"kind":"damage","multiplier":0.95},"id":"spell-3604","initialCooldownMs":[4000,7000],"name":"Tendon Rip","range":4.5,"repeatCooldownMs":[10000,12000],"school":"physical","source":{"actionType":11,"comment":"Deviate Crocolisk - In Combat - Cast Tendon Rip","entry":5053,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":3604,"target":"primary"}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"crocolisk"}},"entry-5055":{"id":"entry-5055","kind":"mob","name":"Deviate Lasher","combat":{"serverEntry":5055,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":9000,"damageMultiplier":0.9,"delivery":"area","effect":{"kind":"damage","multiplier":0.9},"id":"spell-7342","initialCooldownMs":[4000,7000],"name":"Wide Slash","radius":8,"range":8,"repeatCooldownMs":[9000,12000],"school":"physical","source":{"actionType":11,"comment":"Deviate Lasher - In Combat - Cast Wide Slash","entry":5055,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":7342,"target":"nearby-party"}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"plant"}},"entry-3840":{"id":"entry-3840","kind":"mob","name":"Druid of the Fang","combat":{"serverEntry":3840,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":2400,"damageMultiplier":1.12,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.12},"id":"spell-9532","initialCooldownMs":[0,0],"name":"Lightning Bolt","range":30,"repeatCooldownMs":[2400,3800],"school":"nature","source":{"actionType":11,"comment":"Druid of the Fang - In Combat - Cast Lightning Bolt","entry":3840,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":9532,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"sleep"},"id":"spell-8040","initialCooldownMs":[8000,11000],"name":"Druid's Slumber","range":30,"repeatCooldownMs":[10000,20000],"school":"nature","source":{"actionType":11,"comment":"Druid of the Fang - In Combat - Cast Druid's Slumber","entry":3840,"eventType":0,"rowId":1,"sourceType":0,"targetType":6},"spellId":8040,"target":"random-party"},{"animation":"cast","condition":{"amount":400,"kind":"friendly-missing-health","range":40},"cooldownMs":12000,"damageMultiplier":0,"delivery":"projectile","effect":{"kind":"heal","multiplier":1.25},"id":"spell-5187","initialCooldownMs":[0,0],"name":"Healing Touch","range":40,"repeatCooldownMs":[12000,18000],"school":"nature","source":{"actionType":11,"comment":"Druid of the Fang - Friendly Missing Health - Cast Healing Touch","entry":3840,"eventType":14,"rowId":2,"sourceType":0,"targetType":7},"spellId":5187,"target":"lowest-health-friendly"},{"animation":"cast","condition":{"kind":"self-health-percent","maximum":30,"minimum":0},"cooldownMs":20000,"damageMultiplier":0,"delivery":"melee","effect":{"form":"serpent","kind":"transform"},"id":"spell-8041","initialCooldownMs":[0,0],"maximumCasts":1,"name":"Serpent Form","range":0,"repeatCooldownMs":[20000,25000],"school":"nature","source":{"actionType":11,"comment":"Druid of the Fang - Between 0-30% Health - Cast Serpent Form","entry":3840,"eventType":2,"rowId":3,"sourceType":0,"targetType":1},"spellId":8041,"target":"self"}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid"}},"entry-3636":{"id":"entry-3636","kind":"mob","name":"Deviate Ravager","combat":{"serverEntry":3636,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid"}},"entry-3637":{"id":"entry-3637","kind":"mob","name":"Deviate Guardian","combat":{"serverEntry":3637,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"self-health-percent","maximum":15,"minimum":0},"cooldownMs":60000,"damageMultiplier":0,"delivery":"area","effect":{"kind":"call-for-help","radius":40},"id":"call-for-help","initialCooldownMs":[0,0],"maximumCasts":1,"name":"Call for Help","radius":40,"range":40,"repeatCooldownMs":[60000,60000],"school":"physical","source":{"actionType":39,"comment":"Deviate Guardian - Between 0-15% Health - Call for help","entry":3637,"eventType":2,"rowId":0,"sourceType":0,"targetType":1},"target":"self"}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid"}},"entry-3640":{"id":"entry-3640","kind":"mob","name":"Evolving Ectoplasm","combat":{"serverEntry":3640,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"ooze"}},"entry-5756":{"id":"entry-5756","kind":"mob","name":"Deviate Venomwing","combat":{"serverEntry":5756,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":7000,"damageMultiplier":1,"delivery":"projectile","effect":{"kind":"damage","multiplier":1},"id":"spell-7951","initialCooldownMs":[3000,8000],"name":"Toxic Spit","range":30,"repeatCooldownMs":[7000,12000],"school":"nature","source":{"actionType":11,"comment":"Deviate Venomwing - In Combat - Cast Toxic Spit","entry":5756,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":7951,"target":"primary"}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"winged"}},"entry-3671":{"id":"entry-3671","kind":"boss","name":"Lady Anacondra","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3671,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":2400,"damageMultiplier":1.12,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.12},"id":"spell-9532","initialCooldownMs":[0,0],"name":"Lightning Bolt","range":30,"repeatCooldownMs":[2400,3800],"school":"nature","source":{"actionType":11,"comment":"Lady Anacondra - In Combat - Cast Lightning Bolt","entry":3671,"eventType":0,"rowId":1,"sourceType":0,"targetType":2},"spellId":9532,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"sleep"},"id":"spell-8040","initialCooldownMs":[8000,11000],"name":"Druid's Slumber","range":30,"repeatCooldownMs":[10000,20000],"school":"nature","source":{"actionType":11,"comment":"Lady Anacondra - In Combat - Cast Druid's Slumber","entry":3671,"eventType":0,"rowId":2,"sourceType":0,"targetType":6},"spellId":8040,"target":"random-party"},{"animation":"cast","condition":{"amount":400,"kind":"friendly-missing-health","range":40},"cooldownMs":12000,"damageMultiplier":0,"delivery":"projectile","effect":{"kind":"heal","multiplier":1.25},"id":"spell-5187","initialCooldownMs":[0,0],"name":"Healing Touch","range":40,"repeatCooldownMs":[12000,18000],"school":"nature","source":{"actionType":11,"comment":"Lady Anacondra - Friendly Missing Health - Cast Healing Touch","entry":3671,"eventType":14,"rowId":3,"sourceType":0,"targetType":7},"spellId":5187,"target":"lowest-health-friendly"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":40000,"damageMultiplier":0,"delivery":"melee","effect":{"aura":"thorns","durationMs":40000,"kind":"aura","magnitude":0.08},"id":"spell-8148","initialCooldownMs":[1000,3000],"name":"Thorns","range":0,"repeatCooldownMs":[40000,40000],"school":"nature","source":{"actionType":11,"comment":"Lady Anacondra - In Combat - Cast Thorns","entry":3671,"eventType":0,"rowId":4,"sourceType":0,"targetType":1},"spellId":8148,"target":"self"}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid"}},"entry-3653":{"id":"entry-3653","kind":"boss","name":"Kresh","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3653,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"turtle"}},"entry-5755":{"id":"entry-5755","kind":"mob","name":"Deviate Viper","combat":{"serverEntry":5755,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":12000,"damageMultiplier":0.9,"delivery":"projectile","effect":{"kind":"damage","multiplier":0.9},"id":"spell-7947","initialCooldownMs":[4000,7000],"name":"Localized Toxin","range":30,"repeatCooldownMs":[12000,15000],"school":"nature","source":{"actionType":11,"comment":"Deviate Viper - In Combat - Cast Localized Toxin","entry":5755,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":7947,"target":"primary"}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid"}},"entry-5048":{"id":"entry-5048","kind":"mob","name":"Deviate Adder","combat":{"serverEntry":5048,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid"}},"entry-3669":{"id":"entry-3669","kind":"boss","name":"Lord Cobrahn","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3669,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":2400,"damageMultiplier":1.12,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.12},"id":"spell-9532","initialCooldownMs":[0,0],"name":"Lightning Bolt","range":30,"repeatCooldownMs":[2400,3800],"school":"nature","source":{"actionType":11,"comment":"Lord Cobrahn - In Combat - Cast Lightning Bolt","entry":3669,"eventType":0,"rowId":2,"sourceType":0,"targetType":2},"spellId":9532,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"sleep"},"id":"spell-8040","initialCooldownMs":[8000,11000],"name":"Druid's Slumber","range":30,"repeatCooldownMs":[10000,20000],"school":"nature","source":{"actionType":11,"comment":"Lord Cobrahn - In Combat - Cast Druid's Slumber","entry":3669,"eventType":0,"rowId":3,"sourceType":0,"targetType":6},"spellId":8040,"target":"random-party"},{"animation":"cast","condition":{"amount":400,"kind":"friendly-missing-health","range":40},"cooldownMs":12000,"damageMultiplier":0,"delivery":"projectile","effect":{"kind":"heal","multiplier":1.25},"id":"spell-5187","initialCooldownMs":[0,0],"name":"Healing Touch","range":40,"repeatCooldownMs":[12000,18000],"school":"nature","source":{"actionType":11,"comment":"Lord Cobrahn - Friendly Missing Health - Cast Healing Touch","entry":3669,"eventType":14,"rowId":4,"sourceType":0,"targetType":7},"spellId":5187,"target":"lowest-health-friendly"},{"animation":"cast","condition":{"kind":"self-health-percent","maximum":30,"minimum":0},"cooldownMs":1,"damageMultiplier":0,"delivery":"melee","effect":{"form":"serpent","kind":"transform"},"id":"spell-7965","initialCooldownMs":[0,0],"maximumCasts":1,"name":"Cobrahn Serpent Form","range":0,"repeatCooldownMs":[1,1],"school":"nature","source":{"actionType":11,"comment":"Lord Cobrahn - Health Between 0-30% - Cast Cobrahn Serpent Form","entry":3669,"eventType":2,"rowId":5,"sourceType":0,"targetType":1},"spellId":7965,"target":"self"}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid"}},"entry-8886":{"id":"entry-8886","kind":"mob","name":"Deviate Python","combat":{"serverEntry":8886,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid"}},"entry-5775":{"id":"entry-5775","kind":"boss","name":"Verdan the Everliving","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":5775,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":3500,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[3500,3500]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":8000,"kind":"control","mechanic":"root"},"id":"spell-8142","initialCooldownMs":[3000,5000],"name":"Grasping Vines","range":30,"repeatCooldownMs":[10000,13000],"school":"nature","source":{"actionType":11,"comment":"Verdan the Everliving - In Combat - Cast Grasping Vines","entry":5775,"eventType":0,"rowId":0,"sourceType":0,"targetType":1},"spellId":8142,"target":"primary"}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid"}},"entry-5761":{"id":"entry-5761","kind":"mob","name":"Deviate Shambler","combat":{"serverEntry":5761,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"self-health-percent","maximum":70,"minimum":0},"cooldownMs":15000,"damageMultiplier":0,"delivery":"melee","effect":{"kind":"heal","multiplier":1.05},"id":"spell-7948","initialCooldownMs":[0,0],"name":"Wild Regeneration","range":30,"repeatCooldownMs":[15000,21000],"school":"nature","source":{"actionType":11,"comment":"Deviate Shambler - Between 0-70% Health - Cast Wild Regeneration","entry":5761,"eventType":2,"rowId":0,"sourceType":0,"targetType":2},"spellId":7948,"target":"lowest-health-friendly"}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid"}},"entry-5056":{"id":"entry-5056","kind":"mob","name":"Deviate Dreadfang","combat":{"serverEntry":5056,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":42,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.3,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":15000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"fear"},"id":"spell-7399","initialCooldownMs":[3000,9000],"name":"Terrify","range":30,"repeatCooldownMs":[15000,22000],"school":"shadow","source":{"actionType":11,"comment":"Deviate Dreadfang - In Combat - Cast Terrify","entry":5056,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":7399,"target":"primary"}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid"}},"entry-3673":{"id":"entry-3673","kind":"boss","name":"Lord Serpentis","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3673,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":2400,"damageMultiplier":1.12,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.12},"id":"spell-9532","initialCooldownMs":[0,0],"name":"Lightning Bolt","range":30,"repeatCooldownMs":[2400,3800],"school":"nature","source":{"actionType":11,"comment":"Lord Serpentis - In Combat - Cast Lightning Bolt","entry":3673,"eventType":0,"rowId":1,"sourceType":0,"targetType":2},"spellId":9532,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"sleep"},"id":"spell-8040","initialCooldownMs":[8000,11000],"name":"Druid's Slumber","range":30,"repeatCooldownMs":[10000,20000],"school":"nature","source":{"actionType":11,"comment":"Lord Serpentis - In Combat - Cast Druid's Slumber","entry":3673,"eventType":0,"rowId":2,"sourceType":0,"targetType":6},"spellId":8040,"target":"random-party"},{"animation":"cast","condition":{"amount":600,"kind":"friendly-missing-health","range":40},"cooldownMs":12000,"damageMultiplier":0,"delivery":"projectile","effect":{"kind":"heal","multiplier":1.45},"id":"spell-6778","initialCooldownMs":[0,0],"name":"Healing Touch","range":40,"repeatCooldownMs":[12000,18000],"school":"nature","source":{"actionType":11,"comment":"Lord Serpentis - Friendly Missing Health - Cast Healing Touch","entry":3673,"eventType":14,"rowId":3,"sourceType":0,"targetType":7},"spellId":6778,"target":"lowest-health-friendly"}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"serpent"}},"entry-3670":{"id":"entry-3670","kind":"boss","name":"Lord Pythas","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3670,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":2400,"damageMultiplier":1.12,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.12},"id":"spell-9532","initialCooldownMs":[0,0],"name":"Lightning Bolt","range":30,"repeatCooldownMs":[2400,3800],"school":"nature","source":{"actionType":11,"comment":"Lord Pythas - In Combat - Cast Lightning Bolt","entry":3670,"eventType":0,"rowId":1,"sourceType":0,"targetType":2},"spellId":9532,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":10000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"sleep"},"id":"spell-8040","initialCooldownMs":[8000,11000],"name":"Druid's Slumber","range":30,"repeatCooldownMs":[10000,20000],"school":"nature","source":{"actionType":11,"comment":"Lord Pythas - In Combat - Cast Druid's Slumber","entry":3670,"eventType":0,"rowId":2,"sourceType":0,"targetType":6},"spellId":8040,"target":"random-party"},{"animation":"cast","condition":{"amount":400,"kind":"friendly-missing-health","range":40},"cooldownMs":12000,"damageMultiplier":0,"delivery":"projectile","effect":{"kind":"heal","multiplier":1.25},"id":"spell-5187","initialCooldownMs":[0,0],"name":"Healing Touch","range":40,"repeatCooldownMs":[12000,18000],"school":"nature","source":{"actionType":11,"comment":"Lord Pythas - Friendly Missing Health - Cast Healing Touch","entry":3670,"eventType":14,"rowId":3,"sourceType":0,"targetType":7},"spellId":5187,"target":"lowest-health-friendly"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":20000,"damageMultiplier":0.9,"delivery":"area","effect":{"kind":"damage","multiplier":0.9},"id":"spell-8147","initialCooldownMs":[6000,9000],"name":"Thunder Clap","radius":10,"range":10,"repeatCooldownMs":[20000,25000],"school":"physical","source":{"actionType":11,"comment":"Lord Pythas - In Combat - Cast Thunder Clap","entry":3670,"eventType":0,"rowId":4,"sourceType":0,"targetType":1},"spellId":8147,"target":"nearby-party"}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid"}},"entry-3674":{"id":"entry-3674","kind":"boss","name":"Skum","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3674,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":4000,"damageMultiplier":1.1,"delivery":"projectile","effect":{"kind":"damage","multiplier":1.1},"id":"spell-6254","initialCooldownMs":[1000,2000],"name":"Chained Bolt","range":30,"repeatCooldownMs":[4000,8000],"school":"nature","source":{"actionType":11,"comment":"Skum - In Combat - Cast Chained Bolt","entry":3674,"eventType":0,"rowId":0,"sourceType":0,"targetType":2},"spellId":6254,"target":"primary"}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid"}},"entry-3654":{"id":"entry-3654","kind":"boss","name":"Mutanus the Devourer","title":"Dungeon Boss","hasLoot":true,"combat":{"serverEntry":3654,"healthMultiplier":0.86,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":55,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.2,"cooldownMs":2000,"damageMultiplier":1,"initialCooldownMs":[450,450],"repeatCooldownMs":[2000,2000]},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":32400,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":8000,"kind":"control","mechanic":"sleep"},"id":"spell-7967","initialCooldownMs":[11000,15000],"name":"Naralex's Nightmare","range":30,"repeatCooldownMs":[32400,33800],"school":"shadow","source":{"actionType":11,"comment":"Mutanus the Devourer - In Combat - Cast Naralex's Nightmare","entry":3654,"eventType":0,"rowId":2,"sourceType":0,"targetType":6},"spellId":7967,"target":"random-party"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":18000,"damageMultiplier":0,"delivery":"projectile","effect":{"durationMs":6000,"kind":"control","mechanic":"fear"},"id":"spell-7399","initialCooldownMs":[8000,11000],"name":"Terrify","range":30,"repeatCooldownMs":[18000,25000],"school":"shadow","source":{"actionType":11,"comment":"Mutanus the Devourer - In Combat - Cast Terrify","entry":3654,"eventType":0,"rowId":3,"sourceType":0,"targetType":2},"spellId":7399,"target":"primary"},{"animation":"cast","condition":{"kind":"in-combat"},"cooldownMs":15000,"damageMultiplier":1.05,"delivery":"area","effect":{"kind":"damage","multiplier":1.05},"id":"spell-8150","initialCooldownMs":[5000,6000],"name":"Thundercrack","radius":10,"range":10,"repeatCooldownMs":[15000,20000],"school":"nature","source":{"actionType":11,"comment":"Mutanus the Devourer - In Combat - Cast Thundercrack","entry":3654,"eventType":0,"rowId":4,"sourceType":0,"targetType":1},"spellId":8150,"target":"nearby-party"}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.32,"archetype":"humanoid"}}},"staticSpawns":[{"id":"creature-18678","entityId":"entry-5053","position":[161.4354,-105.8268,51.8148],"yaw":-1.03789,"spawnMask":1},{"id":"creature-18679","entityId":"entry-5055","position":[193.2814,-47.7329,63.3336],"yaw":-5.6868,"spawnMask":1},{"id":"creature-18680","entityId":"entry-5055","position":[185.3044,-46.0296,65.2623],"yaw":-1.22809,"spawnMask":1},{"id":"creature-18681","entityId":"entry-5055","position":[190.2134,-47.3,66.3321],"yaw":-4.38246,"spawnMask":1},{"id":"creature-18682","entityId":"entry-3840","position":[191.8214,-47.5395,61.3157],"yaw":-4.39218,"spawnMask":1},{"id":"creature-18683","entityId":"entry-5055","position":[154.5864,-75.5966,68.6937],"yaw":-1.91226,"spawnMask":1},{"id":"creature-18684","entityId":"entry-5055","position":[154.1234,-75.5522,63.7271],"yaw":-2.36478,"spawnMask":1},{"id":"creature-18685","entityId":"entry-5055","position":[159.0284,-75.7701,75.5734],"yaw":-5.01563,"spawnMask":1},{"id":"creature-18686","entityId":"entry-5055","position":[160.2874,-75.644,70.9311],"yaw":-2.03706,"spawnMask":1},{"id":"creature-18687","entityId":"entry-3840","position":[70.7683,-89.4864,120.0631],"yaw":-0.785398,"spawnMask":1},{"id":"creature-18688","entityId":"entry-3636","position":[70.96,-88.8264,106.5701],"yaw":-3.71402,"spawnMask":1},{"id":"creature-18689","entityId":"entry-3636","position":[78.8867,-90.9802,103.4181],"yaw":-5.55015,"spawnMask":1},{"id":"creature-26198","entityId":"entry-3637","position":[70.4921,-90.4158,129.6321],"yaw":-2.95968,"spawnMask":1},{"id":"creature-26199","entityId":"entry-3636","position":[60.7651,-91.3896,138.1801],"yaw":-5.135,"spawnMask":1},{"id":"creature-26200","entityId":"entry-3640","position":[79.9004,-92.2539,184.5961],"yaw":-1.15033,"spawnMask":1},{"id":"creature-26202","entityId":"entry-3637","position":[100.7994,-78.3478,181.8561],"yaw":-1.7531,"spawnMask":1},{"id":"creature-26203","entityId":"entry-5756","position":[193.6354,-47.7516,43.234],"yaw":-0.86582,"spawnMask":1},{"id":"creature-26204","entityId":"entry-3636","position":[53.6151,-89.3414,119.1301],"yaw":-0.293123,"spawnMask":1},{"id":"creature-26206","entityId":"entry-5053","position":[79.1069,-105.9748,71.524],"yaw":-3.23927,"spawnMask":1},{"id":"creature-26216","entityId":"entry-3636","position":[73.6654,-93.7163,197.5661],"yaw":-3.85005,"spawnMask":1},{"id":"creature-26217","entityId":"entry-3637","position":[35.1729,-96.3923,198.0641],"yaw":-5.19525,"spawnMask":1},{"id":"creature-26218","entityId":"entry-3636","position":[33.1489,-95.5925,163.5731],"yaw":-5.81154,"spawnMask":1},{"id":"creature-26220","entityId":"entry-3636","position":[105.5274,-89.6982,228.7161],"yaw":-6.0707,"spawnMask":1},{"id":"creature-26221","entityId":"entry-3637","position":[32.5145,-96.1239,173.3151],"yaw":-6.05171,"spawnMask":1},{"id":"creature-26223","entityId":"entry-3636","position":[72.1301,-93.4206,214.7851],"yaw":-0.008581,"spawnMask":1},{"id":"creature-26224","entityId":"entry-3636","position":[106.9914,-92.6049,240.2391],"yaw":-5.26343,"spawnMask":1},{"id":"creature-26225","entityId":"entry-3840","position":[35.4292,-95.895,166.3101],"yaw":-4.45059,"spawnMask":1},{"id":"creature-26227","entityId":"entry-3636","position":[34.9989,-96.1754,209.6031],"yaw":-5.83298,"spawnMask":1},{"id":"creature-26230","entityId":"entry-3636","position":[47.7275,-92.6571,254.7881],"yaw":-5.53629,"spawnMask":1},{"id":"creature-26252","entityId":"entry-3840","position":[55.2359,-92.5736,274.6861],"yaw":-4.69494,"spawnMask":1},{"id":"creature-26254","entityId":"entry-5053","position":[6.1059,-105.9748,214.8541],"yaw":-3.80331,"spawnMask":1},{"id":"creature-26256","entityId":"entry-3637","position":[-11.7746,-83.8489,224.1501],"yaw":-0.872665,"spawnMask":1},{"id":"creature-26257","entityId":"entry-5053","position":[39.0949,-105.9748,113.3911],"yaw":-0.897454,"spawnMask":1},{"id":"creature-26258","entityId":"entry-5053","position":[11.8791,-105.9748,158.6961],"yaw":-1.22841,"spawnMask":1},{"id":"creature-26259","entityId":"entry-3637","position":[-12.7921,-87.7365,160.4791],"yaw":-5.90303,"spawnMask":1},{"id":"creature-27346","entityId":"entry-3636","position":[-12.4092,-84.1138,212.4541],"yaw":-5.54391,"spawnMask":1},{"id":"creature-27348","entityId":"entry-3840","position":[-9.7948,-83.9306,204.2091],"yaw":-4.66731,"spawnMask":1},{"id":"creature-27349","entityId":"entry-3640","position":[-10.463,-83.9428,198.3981],"yaw":-1.50382,"spawnMask":1},{"id":"creature-27350","entityId":"entry-3840","position":[-43.2606,-88.5125,183.3401],"yaw":-5.55015,"spawnMask":1},{"id":"creature-27353","entityId":"entry-3637","position":[-47.0132,-87.9717,230.1161],"yaw":-2.45396,"spawnMask":1},{"id":"creature-27354","entityId":"entry-3636","position":[-33.2776,-87.6331,172.4141],"yaw":-3.40927,"spawnMask":1},{"id":"creature-27355","entityId":"entry-3637","position":[-41.8207,-87.9064,240.6311],"yaw":-5.04816,"spawnMask":1},{"id":"creature-27356","entityId":"entry-3636","position":[-42.2083,-88.4515,182.9541],"yaw":-0.317187,"spawnMask":1},{"id":"creature-27357","entityId":"entry-3840","position":[-47.6062,-88.1944,211.8401],"yaw":-1.30859,"spawnMask":1},{"id":"creature-27359","entityId":"entry-3637","position":[-24.25,-87.706,282.7531],"yaw":-5.8003,"spawnMask":1},{"id":"creature-27360","entityId":"entry-3637","position":[-11.5863,-87.1127,290.1201],"yaw":-4.70584,"spawnMask":1},{"id":"creature-27361","entityId":"entry-3637","position":[-30.5178,-87.0305,269.4091],"yaw":-4.01378,"spawnMask":1},{"id":"creature-27362","entityId":"entry-3636","position":[-57.5007,-90.7348,203.9701],"yaw":-5.27869,"spawnMask":1},{"id":"creature-27363","entityId":"entry-3640","position":[-60.6945,-91.4866,207.5791],"yaw":-3.09598,"spawnMask":1},{"id":"creature-27364","entityId":"entry-3637","position":[10.0305,-88.318,307.8281],"yaw":-4.89372,"spawnMask":1},{"id":"creature-27365","entityId":"entry-5053","position":[52.2297,-106.2248,309.4421],"yaw":-5.75272,"spawnMask":1},{"id":"creature-27366","entityId":"entry-3671","position":[-15.3655,-87.5144,297.1661],"yaw":-2.80998,"spawnMask":1},{"id":"creature-27367","entityId":"entry-3637","position":[-2.734,-88.6692,312.1581],"yaw":-3.36618,"spawnMask":1},{"id":"creature-27368","entityId":"entry-3653","position":[64.3876,-106.5118,319.0741],"yaw":-5.7292,"spawnMask":1},{"id":"creature-27369","entityId":"entry-3840","position":[49.4848,-59.5273,371.3791],"yaw":-0.296706,"spawnMask":1},{"id":"creature-27371","entityId":"entry-3840","position":[41.1149,-59.6473,371.3631],"yaw":-3.03687,"spawnMask":1},{"id":"creature-27372","entityId":"entry-5755","position":[48.7647,-59.5968,376.9901],"yaw":-5.42797,"spawnMask":1},{"id":"creature-27374","entityId":"entry-5053","position":[74.6537,-106.9218,413.0531],"yaw":-4.32351,"spawnMask":1},{"id":"creature-27375","entityId":"entry-5048","position":[123.6534,-72.5606,412.5731],"yaw":-1.51045,"spawnMask":1},{"id":"creature-27376","entityId":"entry-3840","position":[127.4484,-72.4547,410.4691],"yaw":-1.0821,"spawnMask":1},{"id":"creature-27378","entityId":"entry-5755","position":[33.9995,-60.0143,411.0541],"yaw":-2.86454,"spawnMask":1},{"id":"creature-27379","entityId":"entry-3640","position":[39.5406,-59.4782,400.9481],"yaw":-4.50625,"spawnMask":1},{"id":"creature-27380","entityId":"entry-3669","position":[151.1184,-72.4422,414.3571],"yaw":-0.279253,"spawnMask":1},{"id":"creature-27381","entityId":"entry-8886","position":[149.0154,-72.5333,415.8971],"yaw":-2.39019,"spawnMask":1},{"id":"creature-27382","entityId":"entry-8886","position":[114.0304,-72.5118,444.9931],"yaw":-2.09017,"spawnMask":1},{"id":"creature-27383","entityId":"entry-8886","position":[111.7364,-72.5173,444.0541],"yaw":-1.8594,"spawnMask":1},{"id":"creature-27384","entityId":"entry-3840","position":[27.0145,-60.8355,420.6371],"yaw":-1.45964,"spawnMask":1},{"id":"creature-27385","entityId":"entry-3840","position":[2.7656,-66.2874,419.9491],"yaw":-0.176776,"spawnMask":1},{"id":"creature-27387","entityId":"entry-8886","position":[151.6714,-72.4758,411.9771],"yaw":-4.46382,"spawnMask":1},{"id":"creature-27388","entityId":"entry-3840","position":[73.6407,-64.5452,475.0431],"yaw":-5.23408,"spawnMask":1},{"id":"creature-33931","entityId":"entry-5755","position":[101.5254,-72.0345,453.2251],"yaw":-1.6348,"spawnMask":1},{"id":"creature-33932","entityId":"entry-3840","position":[110.0974,-72.2384,451.0601],"yaw":-2.21646,"spawnMask":1},{"id":"creature-33933","entityId":"entry-3840","position":[113.8234,-71.8686,458.7661],"yaw":-4.85202,"spawnMask":1},{"id":"creature-33934","entityId":"entry-5048","position":[79.2971,-66.8146,471.5931],"yaw":-4.64989,"spawnMask":1},{"id":"creature-33935","entityId":"entry-5755","position":[87.0732,-68.696,468.0241],"yaw":-4.07011,"spawnMask":1},{"id":"creature-33936","entityId":"entry-3840","position":[102.8224,-72.1401,452.3661],"yaw":-3.87662,"spawnMask":1},{"id":"creature-33938","entityId":"entry-3840","position":[-4.9765,-74.1546,440.2451],"yaw":-2.20753,"spawnMask":1},{"id":"creature-33939","entityId":"entry-5755","position":[43.3939,-55.008,480.1721],"yaw":-5.04164,"spawnMask":1},{"id":"creature-33941","entityId":"entry-8886","position":[51.9492,-56.7455,473.3881],"yaw":-2.13896,"spawnMask":1},{"id":"creature-33942","entityId":"entry-8886","position":[51.2803,-56.6042,474.1371],"yaw":-2.27836,"spawnMask":1},{"id":"creature-33945","entityId":"entry-8886","position":[47.6992,-55.8653,475.8001],"yaw":-1.35513,"spawnMask":1},{"id":"creature-33946","entityId":"entry-3840","position":[34.2956,-53.628,475.5311],"yaw":-4.34998,"spawnMask":1},{"id":"creature-33947","entityId":"entry-5048","position":[24.2263,-54.9793,478.7501],"yaw":-6.26311,"spawnMask":1},{"id":"creature-33948","entityId":"entry-5755","position":[-7.1901,-78.1256,454.9021],"yaw":-0.441904,"spawnMask":1},{"id":"creature-33949","entityId":"entry-5755","position":[-16.8976,-80.7345,438.5811],"yaw":-2.36423,"spawnMask":1},{"id":"creature-33950","entityId":"entry-5048","position":[-23.5596,-59.2543,398.0511],"yaw":-3.3815,"spawnMask":1},{"id":"creature-33951","entityId":"entry-5755","position":[18.612,-54.7215,493.5641],"yaw":-3.87229,"spawnMask":1},{"id":"creature-33952","entityId":"entry-5048","position":[-28.8345,-85.9204,454.4201],"yaw":-1.88023,"spawnMask":1},{"id":"creature-33954","entityId":"entry-8886","position":[-42.9191,-65.6774,478.4491],"yaw":-0.596114,"spawnMask":1},{"id":"creature-33955","entityId":"entry-8886","position":[-42.1013,-65.7152,474.9521],"yaw":-4.8531,"spawnMask":1},{"id":"creature-33956","entityId":"entry-3840","position":[-15.8233,-57.0168,514.9821],"yaw":-2.62222,"spawnMask":1},{"id":"creature-33957","entityId":"entry-3840","position":[-44.3772,-65.5531,475.7441],"yaw":-0.949337,"spawnMask":1},{"id":"creature-33960","entityId":"entry-3840","position":[-27.7054,-59.9544,503.9981],"yaw":-2.49583,"spawnMask":1},{"id":"creature-33961","entityId":"entry-5048","position":[-14.5284,-57.0129,522.0141],"yaw":-0.238485,"spawnMask":1},{"id":"creature-33962","entityId":"entry-8886","position":[-48.5922,-61.8919,398.1541],"yaw":-3.08051,"spawnMask":1},{"id":"creature-33963","entityId":"entry-8886","position":[-53.4713,-62.9159,398.2381],"yaw":-5.6244,"spawnMask":1},{"id":"creature-33964","entityId":"entry-3840","position":[-52.5048,-63.3444,406.4561],"yaw":-0.431869,"spawnMask":1},{"id":"creature-33965","entityId":"entry-5048","position":[-65.0811,-64.1471,436.9021],"yaw":-5.87797,"spawnMask":1},{"id":"creature-33966","entityId":"entry-3840","position":[-25.2083,-56.6971,530.9151],"yaw":-5.18363,"spawnMask":1},{"id":"creature-33967","entityId":"entry-5048","position":[-24.8752,-57.0732,524.5271],"yaw":-2.05043,"spawnMask":1},{"id":"creature-33969","entityId":"entry-3637","position":[24.9815,-90.4034,97.1857],"yaw":-6.17846,"spawnMask":1},{"id":"creature-33970","entityId":"entry-5053","position":[50.4722,-105.9748,81.6788],"yaw":-1.7076,"spawnMask":1},{"id":"creature-33971","entityId":"entry-3636","position":[27.8613,-91.118,85.0085],"yaw":-1.44465,"spawnMask":1},{"id":"creature-33974","entityId":"entry-5775","position":[81.8348,-30.8067,32.2466],"yaw":-3.71755,"spawnMask":1},{"id":"creature-33975","entityId":"entry-5761","position":[57.7655,-60.6969,-31.1924],"yaw":-1.27409,"spawnMask":1},{"id":"creature-33976","entityId":"entry-3840","position":[63.2858,-59.395,-26.8074],"yaw":-3.9619,"spawnMask":1},{"id":"creature-33978","entityId":"entry-5053","position":[153.2154,-105.8588,23.7295],"yaw":-4.24839,"spawnMask":1},{"id":"creature-33980","entityId":"entry-5055","position":[148.4434,-74.4526,2.1822],"yaw":0,"spawnMask":1},{"id":"creature-33981","entityId":"entry-5055","position":[149.9744,-75.719,-6.0989],"yaw":-3.47236,"spawnMask":1},{"id":"creature-33982","entityId":"entry-5055","position":[146.2434,-76.2068,-10.9085],"yaw":-2.01923,"spawnMask":1},{"id":"creature-33983","entityId":"entry-5053","position":[183.2124,-106.1028,-5.7821],"yaw":-1.94846,"spawnMask":1},{"id":"creature-33987","entityId":"entry-3840","position":[218.5474,-82.1015,44.8913],"yaw":-3.92159,"spawnMask":1},{"id":"creature-38113","entityId":"entry-3840","position":[231.1394,-82.5443,50.742],"yaw":-1.8675,"spawnMask":1},{"id":"creature-38114","entityId":"entry-5761","position":[220.3644,-82.1357,49.2861],"yaw":-0.891545,"spawnMask":1},{"id":"creature-38115","entityId":"entry-3840","position":[198.3254,-48.9852,34.674],"yaw":-4.76475,"spawnMask":1},{"id":"creature-38118","entityId":"entry-5053","position":[203.6424,-105.5868,-5.2795],"yaw":-5.12866,"spawnMask":1},{"id":"creature-38119","entityId":"entry-3840","position":[133.4564,-76.7024,-31.8002],"yaw":-1.11701,"spawnMask":1},{"id":"creature-38120","entityId":"entry-5055","position":[155.7294,-79.6296,-42.9096],"yaw":-2.31588,"spawnMask":1},{"id":"creature-38121","entityId":"entry-5056","position":[145.7234,-28.3774,2.3528],"yaw":-5.75265,"spawnMask":1},{"id":"creature-38122","entityId":"entry-5756","position":[219.8334,-48.7544,58.6788],"yaw":-5.78034,"spawnMask":1},{"id":"creature-38123","entityId":"entry-5053","position":[249.3094,-105.4738,-17.1986],"yaw":-4.79718,"spawnMask":1},{"id":"creature-38124","entityId":"entry-3840","position":[145.9654,-78.2068,-50.888],"yaw":-1.46608,"spawnMask":1},{"id":"creature-38126","entityId":"entry-5055","position":[154.3554,-78.4942,-48.0787],"yaw":-0.267989,"spawnMask":1},{"id":"creature-38127","entityId":"entry-5055","position":[162.4684,-76.8899,-50.118],"yaw":-3.75461,"spawnMask":1},{"id":"creature-38132","entityId":"entry-5055","position":[156.3434,-76.6646,-53.7348],"yaw":-5.63513,"spawnMask":1},{"id":"creature-38134","entityId":"entry-5053","position":[273.6734,-106.1768,-7.5709],"yaw":-3.99369,"spawnMask":1},{"id":"creature-38136","entityId":"entry-3840","position":[265.8434,-87.4771,43.1279],"yaw":-4.88692,"spawnMask":1},{"id":"creature-38137","entityId":"entry-5761","position":[264.5484,-87.221,37.9749],"yaw":-5.53269,"spawnMask":1},{"id":"creature-38138","entityId":"entry-5761","position":[345.6644,-101.0748,22.5937],"yaw":-3.71755,"spawnMask":1},{"id":"creature-38139","entityId":"entry-3840","position":[352.5524,-100.6448,22.6164],"yaw":-4.06662,"spawnMask":1},{"id":"creature-38140","entityId":"entry-5761","position":[335.3914,-97.5864,50.9515],"yaw":-2.96918,"spawnMask":1},{"id":"creature-38142","entityId":"entry-3640","position":[344.5274,-100.9138,24.4974],"yaw":-2.69132,"spawnMask":1},{"id":"creature-38143","entityId":"entry-3840","position":[352.8054,-99.8948,43.2833],"yaw":-0.733038,"spawnMask":1},{"id":"creature-38144","entityId":"entry-3840","position":[343.7894,-98.3939,51.485],"yaw":-3.85718,"spawnMask":1},{"id":"creature-38146","entityId":"entry-3840","position":[102.1194,-28.9313,-8.7838],"yaw":-6.03884,"spawnMask":1},{"id":"creature-38147","entityId":"entry-5756","position":[111.0244,-28.2673,-16.0753],"yaw":-6.22136,"spawnMask":1},{"id":"creature-38148","entityId":"entry-3673","position":[120.1424,-28.396,-24.6339],"yaw":-2.83035,"spawnMask":1},{"id":"creature-38168","entityId":"entry-5761","position":[172.8374,-67.5248,-82.2706],"yaw":-5.59834,"spawnMask":1},{"id":"creature-45718","entityId":"entry-3840","position":[74.9491,-59.1589,-39.5501],"yaw":-0.820305,"spawnMask":1},{"id":"creature-45721","entityId":"entry-5055","position":[68.3863,-60.5496,-39.3142],"yaw":-2.00713,"spawnMask":1},{"id":"creature-45722","entityId":"entry-3840","position":[174.3454,-67.607,-87.5144],"yaw":-3.29544,"spawnMask":1},{"id":"creature-45723","entityId":"entry-5761","position":[172.1854,-67.2174,-91.7022],"yaw":-4.768,"spawnMask":1},{"id":"creature-45724","entityId":"entry-5761","position":[120.5274,-72.5846,-100.9929],"yaw":-0.855211,"spawnMask":1},{"id":"creature-48752","entityId":"entry-5055","position":[61.6978,-61.6233,-37.6738],"yaw":-0.14321,"spawnMask":1},{"id":"creature-49413","entityId":"entry-5761","position":[120.6544,-66.8033,-129.0379],"yaw":-0.405046,"spawnMask":1},{"id":"creature-49414","entityId":"entry-3840","position":[140.3344,-67.9648,-181.3499],"yaw":-2.46184,"spawnMask":1},{"id":"creature-49415","entityId":"entry-5761","position":[102.9504,-67.4117,-160.9179],"yaw":-3.61124,"spawnMask":1},{"id":"creature-49416","entityId":"entry-5756","position":[144.2454,-67.7979,-195.1909],"yaw":-4.92362,"spawnMask":1},{"id":"creature-52598","entityId":"entry-5761","position":[69.5044,-79.0998,-144.6979],"yaw":-5.11381,"spawnMask":1},{"id":"creature-85900","entityId":"entry-3640","position":[75.6184,-79.0318,-142.5389],"yaw":-5.66487,"spawnMask":1},{"id":"creature-85901","entityId":"entry-5761","position":[57.3062,-69.184,-123.0919],"yaw":-3.53947,"spawnMask":1},{"id":"creature-85902","entityId":"entry-5761","position":[61.5475,-78.5347,-152.8879],"yaw":-6.12289,"spawnMask":1},{"id":"creature-85912","entityId":"entry-5055","position":[35.166,-71.3952,-109.4399],"yaw":-4.83972,"spawnMask":1},{"id":"creature-85916","entityId":"entry-5055","position":[35.6748,-70.9521,-102.8329],"yaw":-0.200927,"spawnMask":1},{"id":"creature-85917","entityId":"entry-5055","position":[35.2649,-71.4588,-115.2959],"yaw":-5.0583,"spawnMask":1},{"id":"creature-85918","entityId":"entry-5055","position":[40.85,-70.6068,-109.5689],"yaw":-1.05035,"spawnMask":1},{"id":"creature-85919","entityId":"entry-3840","position":[39.1986,-71.1785,-118.2819],"yaw":-5.65877,"spawnMask":1},{"id":"creature-85920","entityId":"entry-5055","position":[60.4971,-62.4611,-42.8651],"yaw":-3.59899,"spawnMask":1},{"id":"creature-85947","entityId":"entry-5761","position":[34.107,-71.027,-102.6019],"yaw":-1.03311,"spawnMask":1},{"id":"creature-85948","entityId":"entry-3840","position":[32.0817,-64.7891,-44.1521],"yaw":-3.38594,"spawnMask":1},{"id":"creature-85953","entityId":"entry-5761","position":[37.4235,-65.1479,-48.2285],"yaw":-0.700297,"spawnMask":1},{"id":"creature-85954","entityId":"entry-5761","position":[6.0754,-67.0375,-60.7969],"yaw":-2.70526,"spawnMask":1},{"id":"creature-85958","entityId":"entry-3840","position":[-0.4771,-66.5834,-58.08],"yaw":-1.41372,"spawnMask":1},{"id":"creature-85959","entityId":"entry-3840","position":[-2.3385,-65.7089,-47.7004],"yaw":-4.64258,"spawnMask":1},{"id":"creature-85961","entityId":"entry-5761","position":[-26.6416,-79.9091,-155.9729],"yaw":-2.01608,"spawnMask":1},{"id":"creature-85965","entityId":"entry-3840","position":[35.9532,-74.0394,-188.8889],"yaw":-5.40204,"spawnMask":1},{"id":"creature-85974","entityId":"entry-5761","position":[49.4776,-74.556,-184.7039],"yaw":-3.2571,"spawnMask":1},{"id":"creature-85988","entityId":"entry-5055","position":[-31.7822,-82.0231,-164.0329],"yaw":-1.95201,"spawnMask":1},{"id":"creature-85989","entityId":"entry-5055","position":[-30.7047,-81.7136,-162.3039],"yaw":-1.01849,"spawnMask":1},{"id":"creature-85993","entityId":"entry-5056","position":[151.9694,-68.3298,-193.8029],"yaw":-2.55062,"spawnMask":1},{"id":"creature-85994","entityId":"entry-5055","position":[179.3274,-56.98,-213.4689],"yaw":-4.99566,"spawnMask":1},{"id":"creature-85995","entityId":"entry-5055","position":[181.5844,-59.1867,-204.3039],"yaw":-6.15698,"spawnMask":1},{"id":"creature-85996","entityId":"entry-5055","position":[187.9924,-60.961,-194.5259],"yaw":-2.01214,"spawnMask":1},{"id":"creature-86000","entityId":"entry-5055","position":[192.0364,-61.9839,-191.6569],"yaw":-1.60461,"spawnMask":1},{"id":"creature-86004","entityId":"entry-3840","position":[124.6074,-62.9948,-240.4669],"yaw":-0.264839,"spawnMask":1},{"id":"creature-86011","entityId":"entry-5756","position":[123.3354,-61.8209,-246.8359],"yaw":-5.19314,"spawnMask":1},{"id":"creature-86012","entityId":"entry-5756","position":[166.7954,-57.0868,-246.2149],"yaw":-6.20765,"spawnMask":1},{"id":"creature-86013","entityId":"entry-3840","position":[209.5404,-62.0719,-195.6869],"yaw":-0.287966,"spawnMask":1},{"id":"creature-86045","entityId":"entry-5756","position":[193.0244,-69.9218,-237.7629],"yaw":-2.84551,"spawnMask":1},{"id":"creature-86046","entityId":"entry-5761","position":[56.9218,-68.6573,-236.0529],"yaw":-2.01367,"spawnMask":1},{"id":"creature-86047","entityId":"entry-3640","position":[109.1974,-56.9728,-260.4419],"yaw":-1.5912,"spawnMask":1},{"id":"creature-86048","entityId":"entry-3840","position":[96.4674,-55.2368,-262.3179],"yaw":-0.92934,"spawnMask":1},{"id":"creature-86104","entityId":"entry-3840","position":[55.0596,-68.4685,-249.6089],"yaw":-4.71643,"spawnMask":1},{"id":"creature-86105","entityId":"entry-5055","position":[160.9284,-62.7344,-285.3729],"yaw":-1.97666,"spawnMask":1},{"id":"creature-86107","entityId":"entry-3840","position":[104.0264,-62.6882,-305.0929],"yaw":-4.95674,"spawnMask":1},{"id":"creature-86108","entityId":"entry-3840","position":[101.0664,-62.2167,-314.3739],"yaw":-1.97222,"spawnMask":1},{"id":"creature-86109","entityId":"entry-3840","position":[17.6453,-66.3291,-269.5969],"yaw":-1.0472,"spawnMask":1},{"id":"creature-86110","entityId":"entry-5761","position":[30.815,-67.2392,-270.3679],"yaw":-1.67204,"spawnMask":1},{"id":"creature-86111","entityId":"entry-5756","position":[107.8974,-62.2181,-297.2479],"yaw":-0.421712,"spawnMask":1},{"id":"creature-86112","entityId":"entry-3840","position":[29.1141,-67.6348,-264.1809],"yaw":-6.05629,"spawnMask":1},{"id":"creature-86136","entityId":"entry-3840","position":[11.4345,-67.7831,-260.9709],"yaw":-3.9968,"spawnMask":1},{"id":"creature-86137","entityId":"entry-3840","position":[154.0784,-64.2513,-304.5469],"yaw":-4.83202,"spawnMask":1},{"id":"creature-86325","entityId":"entry-5055","position":[157.5784,-63.5805,-295.3609],"yaw":-4.91261,"spawnMask":1},{"id":"creature-86415","entityId":"entry-5055","position":[159.9094,-63.1148,-293.5089],"yaw":-1.5125,"spawnMask":1},{"id":"creature-87094","entityId":"entry-5056","position":[126.0744,-62.9709,-310.8719],"yaw":-3.80482,"spawnMask":1},{"id":"creature-87095","entityId":"entry-3840","position":[116.6284,-62.6497,-315.8519],"yaw":-3.57792,"spawnMask":1},{"id":"creature-87096","entityId":"entry-3840","position":[123.9264,-62.6706,-319.3889],"yaw":-0.471239,"spawnMask":1},{"id":"creature-87097","entityId":"entry-5055","position":[3.3466,-67.5955,-264.4979],"yaw":0,"spawnMask":1},{"id":"creature-87098","entityId":"entry-5055","position":[4.8001,-68.9945,-255.4779],"yaw":-2.16421,"spawnMask":1},{"id":"creature-87100","entityId":"entry-3840","position":[-2.6261,-81.1749,-194.9849],"yaw":-1.96162,"spawnMask":1},{"id":"creature-87101","entityId":"entry-5055","position":[-2.5698,-68.4578,-262.2309],"yaw":-0.873738,"spawnMask":1},{"id":"creature-87102","entityId":"entry-5055","position":[-7.6552,-68.9196,-261.7819],"yaw":-2.49019,"spawnMask":1},{"id":"creature-87103","entityId":"entry-5055","position":[-4.8977,-80.8084,-207.1209],"yaw":-2.66648,"spawnMask":1},{"id":"creature-87104","entityId":"entry-5055","position":[154.2294,-64.4457,-307.1939],"yaw":-5.65985,"spawnMask":1},{"id":"creature-87105","entityId":"entry-5761","position":[-22.7211,-78.1313,-238.8019],"yaw":-3.65987,"spawnMask":1},{"id":"creature-87106","entityId":"entry-5055","position":[-10.8159,-82.5226,-202.9659],"yaw":-2.64557,"spawnMask":1},{"id":"creature-87107","entityId":"entry-3670","position":[-36.828,-79.3117,-241.0739],"yaw":-3.26377,"spawnMask":1},{"id":"creature-87108","entityId":"entry-3840","position":[-30.9175,-78.7308,-242.3989],"yaw":-0.296706,"spawnMask":1},{"id":"creature-87109","entityId":"entry-5055","position":[-7.4133,-82.0582,-193.4049],"yaw":-2.95981,"spawnMask":1},{"id":"creature-87110","entityId":"entry-5055","position":[-14.402,-83.0564,-194.2359],"yaw":-3.17283,"spawnMask":1},{"id":"creature-87111","entityId":"entry-5055","position":[-30.4151,-82.9742,-170.8259],"yaw":-5.05349,"spawnMask":1},{"id":"creature-87112","entityId":"entry-5055","position":[-36.8286,-82.7817,-165.8329],"yaw":-4.33359,"spawnMask":1},{"id":"creature-87113","entityId":"entry-5761","position":[-36.9903,-81.2941,-161.7999],"yaw":-0.021414,"spawnMask":1},{"id":"creature-87114","entityId":"entry-5056","position":[221.0094,-64.3225,-248.6759],"yaw":-5.4692,"spawnMask":1},{"id":"creature-87115","entityId":"entry-3640","position":[229.0504,-62.547,-148.3189],"yaw":-1.434,"spawnMask":1},{"id":"creature-87116","entityId":"entry-3840","position":[229.1814,-64.3298,-252.4749],"yaw":-5.14928,"spawnMask":1},{"id":"creature-87118","entityId":"entry-5055","position":[226.3684,-69.9672,-297.4549],"yaw":-4.36783,"spawnMask":1},{"id":"creature-87119","entityId":"entry-5055","position":[219.8284,-70.1607,-301.1439],"yaw":-3.95375,"spawnMask":1},{"id":"creature-87120","entityId":"entry-5055","position":[220.4644,-68.6492,-290.9299],"yaw":-1.82428,"spawnMask":1},{"id":"creature-87121","entityId":"entry-3840","position":[219.1314,-70.8694,-307.0039],"yaw":-4.03858,"spawnMask":1},{"id":"creature-87122","entityId":"entry-3840","position":[264.4794,-60.2281,-182.8159],"yaw":-4.74168,"spawnMask":1},{"id":"creature-87123","entityId":"entry-5756","position":[243.7454,-62.9829,-158.6449],"yaw":-3.9086,"spawnMask":1},{"id":"creature-87125","entityId":"entry-3840","position":[216.2684,-70.7628,-320.9309],"yaw":-5.31839,"spawnMask":1},{"id":"creature-87126","entityId":"entry-3840","position":[275.7834,-63.4872,-213.7049],"yaw":-3.24631,"spawnMask":1},{"id":"creature-87127","entityId":"entry-5756","position":[281.5624,-63.8672,-219.0689],"yaw":-6.12038,"spawnMask":1},{"id":"creature-87128","entityId":"entry-3840","position":[269.4144,-67.4794,-297.7849],"yaw":-0.680678,"spawnMask":1},{"id":"creature-87129","entityId":"entry-3840","position":[264.5264,-68.1671,-301.7709],"yaw":-0.541052,"spawnMask":1},{"id":"creature-87130","entityId":"entry-5056","position":[280.1694,-64.0201,-219.4459],"yaw":-0.379014,"spawnMask":1},{"id":"creature-87131","entityId":"entry-3674","position":[285.5584,-69.0061,-312.9779],"yaw":-3.38678,"spawnMask":1},{"id":"creature-87132","entityId":"entry-5056","position":[179.8784,-70.5363,-352.9609],"yaw":-3.54306,"spawnMask":1},{"id":"creature-87134","entityId":"entry-5756","position":[185.8654,-70.8775,-351.1539],"yaw":-0.578072,"spawnMask":1},{"id":"creature-87135","entityId":"entry-5055","position":[292.8304,-64.0509,-245.8229],"yaw":-2.23773,"spawnMask":1},{"id":"creature-87136","entityId":"entry-5055","position":[293.0014,-63.7882,-237.8579],"yaw":-5.69922,"spawnMask":1},{"id":"creature-87137","entityId":"entry-5055","position":[298.4834,-63.5772,-246.4779],"yaw":-4.04456,"spawnMask":1},{"id":"creature-87138","entityId":"entry-5055","position":[299.8104,-63.4177,-247.4769],"yaw":-5.99316,"spawnMask":1},{"id":"creature-87139","entityId":"entry-3840","position":[307.0284,-62.9765,-232.1679],"yaw":-4.66003,"spawnMask":1},{"id":"creature-87141","entityId":"entry-3840","position":[307.0394,-62.9773,-240.6679],"yaw":-1.58825,"spawnMask":1},{"id":"creature-87142","entityId":"entry-3840","position":[290.8394,-62.9031,-215.1139],"yaw":-0.087266,"spawnMask":1},{"id":"creature-87143","entityId":"entry-5056","position":[271.4424,-59.9633,-179.8769],"yaw":-3.26983,"spawnMask":1},{"id":"creature-87144","entityId":"entry-5056","position":[307.4074,-61.158,-147.5479],"yaw":-1.59788,"spawnMask":1},{"id":"creature-87146","entityId":"entry-5756","position":[322.3614,-62.0437,-133.9829],"yaw":-0.093105,"spawnMask":1},{"id":"creature-87147","entityId":"entry-5056","position":[304.6834,-63.6193,-104.2859],"yaw":-5.49598,"spawnMask":1},{"id":"creature-87148","entityId":"entry-5055","position":[331.7284,-64.5571,-106.7699],"yaw":-4.19085,"spawnMask":1},{"id":"creature-87149","entityId":"entry-5055","position":[336.8514,-64.2996,-108.1179],"yaw":-0.248071,"spawnMask":1},{"id":"creature-87150","entityId":"entry-3840","position":[341.9314,-63.2852,-118.9959],"yaw":-0.148351,"spawnMask":1},{"id":"creature-87151","entityId":"entry-5055","position":[339.0754,-63.3598,-114.6879],"yaw":-2.0554,"spawnMask":1},{"id":"creature-87152","entityId":"entry-5055","position":[338.8954,-64.7878,-104.2419],"yaw":-3.05615,"spawnMask":1},{"id":"creature-87153","entityId":"entry-3840","position":[331.4904,-65.4745,-79.2673],"yaw":-0.065628,"spawnMask":1},{"id":"creature-87155","entityId":"entry-5056","position":[333.9284,-65.2261,-72.1747],"yaw":-0.870512,"spawnMask":1},{"id":"creature-87156","entityId":"entry-5056","position":[373.9774,-64.97,-101.0849],"yaw":-2.12917,"spawnMask":1},{"id":"creature-87157","entityId":"entry-3640","position":[390.1384,-64.2375,-97.6813],"yaw":-2.2797,"spawnMask":1},{"id":"encounter-43005","entityId":"entry-3673","position":[24.1944,-84.7163,257.1004],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-26197","name":"Deviate Crocolisk Patrol","speed":1.15,"pathId":261970,"formationSource":"database-solo","spawnMask":1,"waypoints":[[143.9754,-106.0888,68.6926],[99.0863,-106.0238,68.6931],[61.1645,-105.9738,72.8168],[99.0863,-106.0238,68.6931]],"members":[{"id":"member","entityId":"entry-5053","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26228","name":"Evolving Ectoplasm Patrol","speed":1.15,"pathId":262280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[20.5316,-104.3238,171.9971],[21.4633,-103.1218,186.0151],[19.0025,-98.9466,201.2151],[18.4846,-102.9488,221.0511],[23.2312,-104.1058,258.8251],[18.4846,-102.9488,221.0511],[19.0025,-98.9466,201.2151],[21.4633,-103.1218,186.0151]],"members":[{"id":"member","entityId":"entry-3640","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26229","name":"Evolving Ectoplasm Patrol","speed":1.15,"pathId":262290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[34.6258,-95.8791,211.3641],[65.5598,-93.3733,204.7041],[81.5498,-93.2674,223.5981],[65.5598,-93.3733,204.7041],[34.6258,-95.8791,211.3641],[36.7056,-93.119,249.2991],[30.9039,-94.9498,227.5451]],"members":[{"id":"member","entityId":"entry-3640","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26239","name":"Druid of the Fang Patrol","speed":1.15,"pathId":262390,"formationSource":"database-solo","spawnMask":1,"waypoints":[[50.8907,-92.6566,263.7621],[40.968,-92.2551,280.0041],[62.6144,-90.7807,288.4101],[64.708,-92.6571,265.8851]],"members":[{"id":"member","entityId":"entry-3840","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-38116","name":"Deviate Shambler Patrol","speed":1.15,"pathId":381160,"formationSource":"database-solo","spawnMask":1,"waypoints":[[218.2004,-82.153,51.41],[198.6814,-82.2893,69.7613],[180.1524,-78.937,87.0488],[164.9054,-75.8051,82.5416],[180.1524,-78.937,87.0488],[198.6814,-82.2893,69.7613]],"members":[{"id":"member","entityId":"entry-5761","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-38117","name":"Evolving Ectoplasm Patrol","speed":1.15,"pathId":381170,"formationSource":"database-solo","spawnMask":1,"waypoints":[[206.6274,-49.2251,58.6555],[187.3104,-49.7665,56.9169],[169.2484,-40.4488,54.021],[147.9394,-29.5747,31.9756],[169.2484,-40.4488,54.021],[187.3104,-49.7665,56.9169]],"members":[{"id":"member","entityId":"entry-3640","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-85963","name":"Deviate Shambler Patrol","speed":1.15,"pathId":859630,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-22.7854,-75.3597,-150.7919],[1.6283,-76.0383,-136.5459],[32.1654,-71.8254,-123.0929],[1.6283,-76.0383,-136.5459]],"members":[{"id":"member","entityId":"entry-5761","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-27366","name":"Lady Anacondra","position":[-15.3655,-87.5144,297.1661]},{"id":"creature-27380","name":"Lord Cobrahn","position":[151.1184,-72.4422,414.3571]},{"id":"creature-27368","name":"Kresh","position":[64.3876,-106.5118,319.0741]},{"id":"creature-87107","name":"Lord Pythas","position":[-36.828,-79.3117,-241.0739]},{"id":"creature-87131","name":"Skum","position":[285.5584,-69.0061,-312.9779]},{"id":"encounter-43005","name":"Lord Serpentis","position":[24.1944,-84.7163,257.1004]},{"id":"creature-33974","name":"Verdan the Everliving","position":[81.8348,-30.8067,32.2466]},{"id":"mutanus-spawn","name":"Mutanus the Devourer","position":[-151.27,-102.82,252.26],"eventOnly":true}],"objectiveOrder":[{"id":"creature-27366","name":"Lady Anacondra","position":[-15.3655,-87.5144,297.1661]},{"id":"creature-27380","name":"Lord Cobrahn","position":[151.1184,-72.4422,414.3571]},{"id":"creature-27368","name":"Kresh","position":[64.3876,-106.5118,319.0741]},{"id":"creature-87107","name":"Lord Pythas","position":[-36.828,-79.3117,-241.0739]},{"id":"creature-87131","name":"Skum","position":[285.5584,-69.0061,-312.9779]},{"id":"encounter-43005","name":"Lord Serpentis","position":[24.1944,-84.7163,257.1004]},{"id":"creature-33974","name":"Verdan the Everliving","position":[81.8348,-30.8067,32.2466]},{"id":"mutanus-spawn","name":"Mutanus the Devourer","position":[-151.27,-102.82,252.26],"eventOnly":true}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":718,"guid":5638,"id":180055,"map":43,"orientation":2.08,"phaseMask":1,"position_x":-97.6,"position_y":173.8,"position_z":-79,"rotation0":0,"rotation1":0,"rotation2":0.862404,"rotation3":0.50622,"spawnMask":1,"spawntimesecs":-1,"state":1,"zoneId":718},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31990,"id":13891,"map":43,"orientation":-2.84489,"phaseMask":1,"position_x":-31.3705,"position_y":268.373,"position_z":-103.759,"rotation0":0,"rotation1":0,"rotation2":-0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31992,"id":2041,"map":43,"orientation":-0.139626,"phaseMask":1,"position_x":-33.4606,"position_y":282.588,"position_z":-105.51,"rotation0":0,"rotation1":0,"rotation2":-0.0697563,"rotation3":0.997564,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":31993,"id":56819,"map":43,"orientation":2.75526,"phaseMask":1,"position_x":36.4862,"position_y":186.328,"position_z":-87.6447,"rotation0":0.0560317,"rotation1":0.0081358,"rotation2":0.980019,"rotation3":0.190677,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31995,"id":13891,"map":43,"orientation":-1.78024,"phaseMask":1,"position_x":28.4734,"position_y":146.89,"position_z":-90.4116,"rotation0":0,"rotation1":0,"rotation2":-0.777147,"rotation3":0.629319,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31997,"id":13891,"map":43,"orientation":-2.21657,"phaseMask":1,"position_x":45.9468,"position_y":275.327,"position_z":-89.1026,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31999,"id":75293,"map":43,"orientation":0.575959,"phaseMask":1,"position_x":-49.9295,"position_y":370.574,"position_z":-59.6856,"rotation0":0,"rotation1":0,"rotation2":0.284016,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32000,"id":1619,"map":43,"orientation":-1.0821,"phaseMask":1,"position_x":-53.0091,"position_y":389.589,"position_z":-61.6968,"rotation0":0,"rotation1":0,"rotation2":-0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32001,"id":13891,"map":43,"orientation":2.84489,"phaseMask":1,"position_x":-95.8325,"position_y":423.05,"position_z":-106.731,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32003,"id":146091,"map":43,"orientation":4.42802,"phaseMask":1,"position_x":-136.916,"position_y":414.704,"position_z":-72.737,"rotation0":-0.0211639,"rotation1":0.000874519,"rotation2":-0.800125,"rotation3":0.599459,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32005,"id":13891,"map":43,"orientation":-2.16421,"phaseMask":1,"position_x":3.27935,"position_y":411.871,"position_z":-65.9418,"rotation0":0,"rotation1":0,"rotation2":-0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35590,"id":13891,"map":43,"orientation":-2.93215,"phaseMask":1,"position_x":-35.8711,"position_y":463.283,"position_z":-54.8242,"rotation0":0,"rotation1":0,"rotation2":-0.994522,"rotation3":0.10453,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35592,"id":1624,"map":43,"orientation":2.93215,"phaseMask":1,"position_x":36.5195,"position_y":461.61,"position_z":-85.8738,"rotation0":0,"rotation1":0,"rotation2":0.994522,"rotation3":0.10453,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35593,"id":13891,"map":43,"orientation":-2.61799,"phaseMask":1,"position_x":60.8216,"position_y":459.733,"position_z":-63.9568,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35595,"id":1619,"map":43,"orientation":0.541052,"phaseMask":1,"position_x":47.5179,"position_y":517.586,"position_z":-58.1344,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.96363,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35596,"id":1731,"map":43,"orientation":3.01942,"phaseMask":1,"position_x":-161.053,"position_y":411.129,"position_z":-72.5271,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610484,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35597,"id":13891,"map":43,"orientation":2.16421,"phaseMask":1,"position_x":-46.0182,"position_y":63.2591,"position_z":-85.972,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35599,"id":1732,"map":43,"orientation":2.26893,"phaseMask":1,"position_x":-32.2606,"position_y":43.5227,"position_z":-117.543,"rotation0":0,"rotation1":0,"rotation2":0.906308,"rotation3":0.422617,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35600,"id":13891,"map":43,"orientation":-2.35619,"phaseMask":1,"position_x":-64.4431,"position_y":62.0624,"position_z":-28.4545,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35602,"id":146088,"map":43,"orientation":4.42802,"phaseMask":1,"position_x":-70.0215,"position_y":-31.7023,"position_z":-60.1562,"rotation0":-0.0211639,"rotation1":0.000874519,"rotation2":-0.800125,"rotation3":0.599459,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35604,"id":60393,"map":43,"orientation":3.15159,"phaseMask":1,"position_x":-228.116,"position_y":40.6489,"position_z":-82.3157,"rotation0":0.00846481,"rotation1":0.0224495,"rotation2":-0.999699,"rotation3":0.0051905,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35606,"id":13891,"map":43,"orientation":0.645772,"phaseMask":1,"position_x":-196.059,"position_y":29.3717,"position_z":-50.2278,"rotation0":0,"rotation1":0,"rotation2":0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35608,"id":56821,"map":43,"orientation":3.14002,"phaseMask":1,"position_x":-148.837,"position_y":-51.4536,"position_z":-78.262,"rotation0":-0.0212135,"rotation1":-0.110293,"rotation2":-0.993671,"rotation3":0.00156326,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35610,"id":60394,"map":43,"orientation":3.13346,"phaseMask":1,"position_x":-142.382,"position_y":-64.699,"position_z":-77.6614,"rotation0":0.0143766,"rotation1":0.134123,"rotation2":0.990858,"rotation3":0.00215619,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35612,"id":13891,"map":43,"orientation":-2.79253,"phaseMask":1,"position_x":-223.392,"position_y":-50.9034,"position_z":-102.96,"rotation0":0,"rotation1":0,"rotation2":-0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35614,"id":56818,"map":43,"orientation":3.15087,"phaseMask":1,"position_x":-350.49,"position_y":23.1432,"position_z":-100.991,"rotation0":-0.0536928,"rotation1":0.0398283,"rotation2":-0.99776,"rotation3":0.00247776,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35616,"id":13891,"map":43,"orientation":-1.8326,"phaseMask":1,"position_x":-360.631,"position_y":43.2781,"position_z":-100.909,"rotation0":0,"rotation1":0,"rotation2":-0.793355,"rotation3":0.60876,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35618,"id":13891,"map":43,"orientation":-3.03687,"phaseMask":1,"position_x":-111.872,"position_y":-38.7467,"position_z":-28.4545,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523374,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35620,"id":1619,"map":43,"orientation":2.84489,"phaseMask":1,"position_x":-81.6752,"position_y":-33.1718,"position_z":-58.8048,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35621,"id":75293,"map":43,"orientation":-0.296706,"phaseMask":1,"position_x":-79.462,"position_y":-32.6,"position_z":-59.1092,"rotation0":0,"rotation1":0,"rotation2":-0.147809,"rotation3":0.989016,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35622,"id":59530,"map":43,"orientation":2.35478,"phaseMask":1,"position_x":-69.8097,"position_y":-34.2418,"position_z":-60.2396,"rotation0":0.0156779,"rotation1":0.0317993,"rotation2":0.923059,"rotation3":0.38302,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35624,"id":13891,"map":43,"orientation":-2.79253,"phaseMask":1,"position_x":-178.29,"position_y":-101.693,"position_z":-65.8531,"rotation0":0,"rotation1":0,"rotation2":-0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35626,"id":1732,"map":43,"orientation":0.907571,"phaseMask":1,"position_x":-122.103,"position_y":-121.608,"position_z":-64.2499,"rotation0":0,"rotation1":0,"rotation2":0.438371,"rotation3":0.898794,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35627,"id":13891,"map":43,"orientation":4.71239,"phaseMask":1,"position_x":-147.206,"position_y":-146.156,"position_z":-66.9507,"rotation0":0,"rotation1":0,"rotation2":0.707106,"rotation3":-0.707107,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35629,"id":13891,"map":43,"orientation":-2.07694,"phaseMask":1,"position_x":-232.344,"position_y":-148.216,"position_z":-62.7499,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35631,"id":1731,"map":43,"orientation":0.523599,"phaseMask":1,"position_x":-87.6443,"position_y":-136.019,"position_z":-65.0488,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35632,"id":1731,"map":43,"orientation":-1.16937,"phaseMask":1,"position_x":-179.484,"position_y":-190.661,"position_z":-60.6078,"rotation0":0,"rotation1":0,"rotation2":-0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35633,"id":1622,"map":43,"orientation":-1.65806,"phaseMask":1,"position_x":-56.9757,"position_y":-116.137,"position_z":-69.4735,"rotation0":0,"rotation1":0,"rotation2":-0.737276,"rotation3":0.675591,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35634,"id":13891,"map":43,"orientation":-0.226893,"phaseMask":1,"position_x":-0.314322,"position_y":-42.1754,"position_z":-65.0227,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35636,"id":1619,"map":43,"orientation":-1.72788,"phaseMask":1,"position_x":-9.10271,"position_y":-166.562,"position_z":-76.5781,"rotation0":0,"rotation1":0,"rotation2":-0.760407,"rotation3":0.649446,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35637,"id":13891,"map":43,"orientation":2.18166,"phaseMask":1,"position_x":-169.717,"position_y":-224.064,"position_z":-55.6624,"rotation0":0,"rotation1":0,"rotation2":0.88701,"rotation3":0.461749,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35639,"id":1619,"map":43,"orientation":-1.90241,"phaseMask":1,"position_x":-227.876,"position_y":-204.881,"position_z":-58.5064,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35640,"id":13891,"map":43,"orientation":1.06465,"phaseMask":1,"position_x":-94.1341,"position_y":-264.677,"position_z":-55.5865,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35642,"id":1624,"map":43,"orientation":-0.331612,"phaseMask":1,"position_x":-69.5988,"position_y":-259.049,"position_z":-67.1074,"rotation0":0,"rotation1":0,"rotation2":-0.165047,"rotation3":0.986286,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35643,"id":146089,"map":43,"orientation":2.36853,"phaseMask":1,"position_x":-113.451,"position_y":-313.306,"position_z":-63.0296,"rotation0":0.01015,"rotation1":-0.0185919,"rotation2":0.925931,"rotation3":0.377098,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35645,"id":13891,"map":43,"orientation":-0.977384,"phaseMask":1,"position_x":-36.2995,"position_y":-281.637,"position_z":-66.5813,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35647,"id":75293,"map":43,"orientation":2.32129,"phaseMask":1,"position_x":-95.0718,"position_y":-311.132,"position_z":-61.8035,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35648,"id":56820,"map":43,"orientation":2.75491,"phaseMask":1,"position_x":-15.4209,"position_y":-252.946,"position_z":-69.0084,"rotation0":0.0104156,"rotation1":0.0626049,"rotation2":0.979367,"rotation3":0.191864,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35650,"id":1732,"map":43,"orientation":0.959931,"phaseMask":1,"position_x":-89.4373,"position_y":-314.586,"position_z":-60.7897,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35651,"id":1619,"map":43,"orientation":2.86234,"phaseMask":1,"position_x":-128.068,"position_y":-324.797,"position_z":-62.8066,"rotation0":0,"rotation1":0,"rotation2":0.990268,"rotation3":0.139173,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35652,"id":75293,"map":43,"orientation":0.715585,"phaseMask":1,"position_x":-10.4679,"position_y":-272.442,"position_z":-66.1606,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35653,"id":13891,"map":43,"orientation":0.767945,"phaseMask":1,"position_x":48.0354,"position_y":-165.494,"position_z":-81.7236,"rotation0":0,"rotation1":0,"rotation2":0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35655,"id":13891,"map":43,"orientation":0.959931,"phaseMask":1,"position_x":-164.128,"position_y":-337.607,"position_z":-68.9215,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35657,"id":59529,"map":43,"orientation":3.45621,"phaseMask":1,"position_x":-286.253,"position_y":-234.953,"position_z":-63.6185,"rotation0":0.0103116,"rotation1":-0.0114851,"rotation2":-0.987552,"rotation3":0.156536,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35659,"id":13891,"map":43,"orientation":-0.890118,"phaseMask":1,"position_x":-293.322,"position_y":-319.377,"position_z":-68.2288,"rotation0":0,"rotation1":0,"rotation2":-0.430511,"rotation3":0.902585,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":35661,"id":146090,"map":43,"orientation":5.52816,"phaseMask":1,"position_x":-300.358,"position_y":-239.158,"position_z":-63.889,"rotation0":-0.0208106,"rotation1":0.0149622,"rotation2":-0.368344,"rotation3":0.929336,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35663,"id":13891,"map":43,"orientation":-1.88496,"phaseMask":1,"position_x":-382.755,"position_y":-100.201,"position_z":-64.46,"rotation0":0,"rotation1":0,"rotation2":-0.809018,"rotation3":0.587783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a","clientArchiveHashes":{"common-2.mpq/World/Maps/WailingCaverns":"b06e6a3402badaa2509682f9fa58850609839fe48c50528ddc87132a42cd2465","patch/World/maps/WailingCaverns":"1b304271f9c250362a7a83fed4b3bcc8177b513ecf08a7e96805a90bc4e92b79"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3+dirty-file-lock","sourceSnapshot":"dungeon-pipeline/work/wailing-caverns/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["Creature bodies use explicit procedural fallbacks until the corresponding client display composites are exported.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"razorfen-kraul","title":"Razorfen Kraul","mapId":47,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[25,40]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Razorfen Kraul","theme":"Instanced dungeon","summary":"Fight through Razorfen Kraul, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Razorfen Kraul...","unchartedAreaName":"Uncharted Razorfen Kraul","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":505.4057},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/47-razorfenkraulinstance/visual.glb","checksum":"1c13b561c3f6a7e6bec1ef5b3e87d443bfecaf08974c3692d5ab9df554bee865","size":5710312,"triangleCount":216703}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/47-razorfenkraulinstance/collision.glb","checksum":"38f23ca147ad5d6d40ad3d33f55dfec4a82d06bf5c57b0ea9dc49eeda2a81eed","size":1272744,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/47-razorfenkraulinstance/navigation.glb","checksum":"feed612f71fd635f96d0cec96486d5a4e8cc96f30510d8f7f47ad8d5b6b57d5b","size":973440,"triangleCount":70120}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-78.81,-60.1884,-164.7604],"max":[487.4443,19.949,537.192]},"entrance":{"name":"Razorfen Kraul Entrance","footPosition":[-33.81,-5.2481,21.522],"forward":[0.9983765577770614,0,0.05695830827215772],"yaw":1.5138071756522968},"areas":[{"id":"entrance","name":"Razorfen Kraul Entrance","center":[-33.81,-5.2481,21.522],"radius":35},{"id":"area-roogug","name":"Roogug's Encounter","center":[166.18,-6.8639,58.462],"radius":42},{"id":"area-aggem-thorncurse","name":"Aggem Thorncurse's Encounter","center":[105.5,-14.0692,-59.568],"radius":42},{"id":"area-death-speaker-jargba","name":"Death Speaker Jargba's Encounter","center":[169.62,-13.2943,-111.868],"radius":42},{"id":"area-overlord-ramtusk","name":"Overlord Ramtusk's Encounter","center":[226.32,-1.3459,116.942],"radius":42},{"id":"area-charlga-razorflank","name":"Charlga Razorflank's Encounter","center":[213.59,-8.1092,341.182],"radius":42},{"id":"area-agathelos-the-raging","name":"Agathelos the Raging's Encounter","center":[17.59,-23.9561,453.332],"radius":42},{"id":"area-earthcaller-halmgar","name":"Earthcaller Halmgar's Encounter","center":[141.77,-6.9165,172.212],"radius":42}],"entities":{"entry-4512":{"id":"entry-4512","kind":"mob","name":"Rotting Agam'ar","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8267","name":"Cursed Blood","spellId":8267,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4189,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4714-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0417,"labelHeight":3.519,"markerRadius":1.7492}}},"entry-4436":{"id":"entry-4436","kind":"mob","name":"Razorfen Quilguard","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7390,"damageMultiplier":1.12},{"id":"spell-15548","name":"Thunderclap","spellId":15548,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7390,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6108-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":3.7373,"markerRadius":1.1612}}},"entry-4530":{"id":"entry-4530","kind":"mob","name":"Razorfen Handler","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7081,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-1963-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.5209,"markerRadius":0.65}}},"entry-4520":{"id":"entry-4520","kind":"mob","name":"Razorfen Geomancer","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9532","name":"Lightning Bolt","spellId":9532,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5985,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4647-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.7703,"markerRadius":0.65}}},"entry-4435":{"id":"entry-4435","kind":"mob","name":"Razorfen Warrior","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6109-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":3.7373,"markerRadius":1.1612}}},"entry-4442":{"id":"entry-4442","kind":"mob","name":"Razorfen Defender","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3248","name":"Improved Blocking","spellId":3248,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5082,"damageMultiplier":1.12},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5082,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6103-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":4.1858,"markerRadius":1.3005}}},"entry-4514":{"id":"entry-4514","kind":"mob","name":"Raging Agam'ar","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5016,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-2453-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0417,"labelHeight":3.519,"markerRadius":1.7492}}},"entry-4511":{"id":"entry-4511","kind":"mob","name":"Agam'ar","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6268","name":"Rushing Charge","spellId":6268,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4713-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0362,"labelHeight":3.0731,"markerRadius":1.5159}}},"entry-4541":{"id":"entry-4541","kind":"mob","name":"Blood of Agamaggan","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8282","name":"Curse of Blood","spellId":8282,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5445,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4754-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.0705,"labelHeight":4.0944,"markerRadius":2.0195}}},"entry-4519":{"id":"entry-4519","kind":"mob","name":"Death's Head Seer","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/9fceacb1e87178ca5f1c580a75f07683cbcce1123c9c71d3b3baf3a63a40ffd6.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":4.066,"markerRadius":0.9488}}},"entry-4516":{"id":"entry-4516","kind":"mob","name":"Death's Head Adept","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9672","name":"Frostbolt","spellId":9672,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5142,"damageMultiplier":1.12},{"id":"spell-113","name":"Chains of Ice","spellId":113,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5142,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6098-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.5239,"markerRadius":0.8223}}},"entry-4525":{"id":"entry-4525","kind":"mob","name":"Razorfen Earthbreaker","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4647-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.7703,"markerRadius":0.65}}},"entry-4518":{"id":"entry-4518","kind":"mob","name":"Death's Head Sage","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6099-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":3.2543,"markerRadius":0.759}}},"entry-6035":{"id":"entry-6035","kind":"mob","name":"Razorfen Stalker","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7259","name":"Nature Protection Potion","spellId":7259,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6271,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6106-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.5209,"markerRadius":0.65}}},"entry-4532":{"id":"entry-4532","kind":"mob","name":"Razorfen Beastmaster","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5542,"damageMultiplier":1.12},{"id":"spell-8275","name":"Poisoned Shot","spellId":8275,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5542,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6105-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.1722,"markerRadius":0.798}}},"entry-6168":{"id":"entry-6168","kind":"boss","name":"Roogug","title":"Dungeon Boss","hasLoot":true,"combat":{"level":26,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9532","name":"Lightning Bolt","spellId":9532,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6232,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6110-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":3.2543,"markerRadius":0.759}}},"entry-4623":{"id":"entry-4623","kind":"mob","name":"Quilguard Champion","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6908,"damageMultiplier":1.12},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6908,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6103-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":4.1858,"markerRadius":1.3005}}},"entry-4523":{"id":"entry-4523","kind":"mob","name":"Razorfen Groundshaker","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6524","name":"Ground Tremor","spellId":6524,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.12},{"id":"spell-8046","name":"Earth Shock","spellId":8046,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4568,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6111-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.5239,"markerRadius":0.8223}}},"entry-4424":{"id":"entry-4424","kind":"boss","name":"Aggem Thorncurse","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6396,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6097-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":3.6471,"markerRadius":0.9207}}},"entry-4531":{"id":"entry-4531","kind":"mob","name":"Razorfen Beast Trainer","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4453-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0023,"labelHeight":2.8466,"markerRadius":0.7059}}},"entry-4522":{"id":"entry-4522","kind":"mob","name":"Razorfen Dustweaver","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6728","name":"Enveloping Winds","spellId":6728,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7084,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6110-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":3.2543,"markerRadius":0.759}}},"entry-4440":{"id":"entry-4440","kind":"mob","name":"Razorfen Totemic","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6112-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":3.795,"markerRadius":0.8855}}},"entry-4515":{"id":"entry-4515","kind":"mob","name":"Death's Head Acolyte","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5904,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15785","name":"Mana Burn","spellId":15785,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5904,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6093-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0023,"labelHeight":3.1333,"markerRadius":0.7274}}},"entry-4420":{"id":"entry-4420","kind":"boss","name":"Overlord Ramtusk","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5920,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4652-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":4.7838,"markerRadius":1.4863}}},"entry-4438":{"id":"entry-4438","kind":"mob","name":"Razorfen Spearhide","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8148","name":"Thorns Aura","spellId":8148,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5089,"damageMultiplier":1.12},{"id":"spell-8259","name":"Whirling Barrage","spellId":8259,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5089,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6078-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":2.9551,"markerRadius":0.7366}}},"entry-4428":{"id":"entry-4428","kind":"boss","name":"Death Speaker Jargba","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5528,"damageMultiplier":1.35},{"id":"spell-14515","name":"Dominate Mind","spellId":14515,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5528,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4644-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":4.4848,"markerRadius":1.3934}}},"entry-4510":{"id":"entry-4510","kind":"mob","name":"Heralath Fallowbrook","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-2596-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-4437":{"id":"entry-4437","kind":"mob","name":"Razorfen Warden","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6533","name":"Net","spellId":6533,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4756,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4758-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":3.7373,"markerRadius":1.1612}}},"entry-4508":{"id":"entry-4508","kind":"mob","name":"Willix the Importer","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-7155-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-4517":{"id":"entry-4517","kind":"mob","name":"Death's Head Priest","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5746,"damageMultiplier":1.12},{"id":"spell-6063","name":"Greater Heal","spellId":6063,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5746,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6096-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.7703,"markerRadius":0.65}}},"entry-4538":{"id":"entry-4538","kind":"mob","name":"Kraul Bat","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/d1808c723ce299735a6e04353e27ea6350abc507068bc4737393e3d16145bac6.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.17,"markerRadius":2.1069}}},"entry-4539":{"id":"entry-4539","kind":"mob","name":"Greater Kraul Bat","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3242","name":"Ravage","spellId":3242,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7255,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/b436a3eaa350ebf59fb34bc8aaf7baa25a7dcafe72fc6a85ed66da8833a517b0.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.4433,"markerRadius":2.8092}}},"entry-4427":{"id":"entry-4427","kind":"mob","name":"Ward Guardian","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-959","name":"Healing Wave","spellId":959,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":5810,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6104-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":4.1858,"markerRadius":1.3005}}},"entry-4625":{"id":"entry-4625","kind":"mob","name":"Death's Head Ward Keeper","combat":{"level":15,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6101-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":2.2862,"markerRadius":0.65}}},"entry-4425":{"id":"entry-4425","kind":"mob","name":"Blind Hunter","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4735-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.17,"markerRadius":2.1069}}},"entry-4422":{"id":"entry-4422","kind":"boss","name":"Agathelos the Raging","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6158,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-2450-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0834,"labelHeight":7.0381,"markerRadius":3.4983}}},"entry-4421":{"id":"entry-4421","kind":"boss","name":"Charlga Razorflank","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8292","name":"Chain Bolt","spellId":8292,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7109,"damageMultiplier":1.35},{"id":"spell-8361","name":"Purity","spellId":8361,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7109,"damageMultiplier":1.35},{"id":"spell-8358","name":"Mana Spike","spellId":8358,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7109,"damageMultiplier":1.35},{"id":"spell-6077","name":"Renew","spellId":6077,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":7109,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-4642-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":3.795,"markerRadius":0.8855}}},"entry-4842":{"id":"entry-4842","kind":"boss","name":"Earthcaller Halmgar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":27,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9532","name":"Lightning Bolt","spellId":9532,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6027,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.29,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-kraul/creatures/display-6102-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":4.3371,"markerRadius":1.012}}}},"staticSpawns":[{"id":"creature-87284","entityId":"entry-4436","position":[56.75,-6.5981,7.292],"yaw":-3.4383,"spawnMask":1},{"id":"creature-87285","entityId":"entry-4436","position":[53.12,-6.1576,15.602],"yaw":-3.56047,"spawnMask":1},{"id":"creature-87286","entityId":"entry-4530","position":[35.61,-7.5968,-4.818],"yaw":-0.626741,"spawnMask":1},{"id":"creature-87287","entityId":"entry-4436","position":[28.25,-5.9383,74.752],"yaw":-3.03687,"spawnMask":1},{"id":"creature-87288","entityId":"entry-4530","position":[38.74,-6.3581,14.082],"yaw":-1.04361,"spawnMask":1},{"id":"creature-87290","entityId":"entry-4435","position":[39.29,-6.0329,27.482],"yaw":-2.00106,"spawnMask":1},{"id":"creature-87291","entityId":"entry-4435","position":[27.94,-6.2482,7.432],"yaw":-4.31675,"spawnMask":1},{"id":"creature-87292","entityId":"entry-4436","position":[25.36,-5.3361,49.642],"yaw":-4.22739,"spawnMask":1},{"id":"creature-87293","entityId":"entry-4436","position":[27.82,-6.4756,33.212],"yaw":-4.78123,"spawnMask":1},{"id":"creature-87294","entityId":"entry-4442","position":[43.58,-12.7444,-29.698],"yaw":-1.79769,"spawnMask":1},{"id":"creature-87296","entityId":"entry-4530","position":[10.72,-7.4454,76.922],"yaw":-6.25575,"spawnMask":1},{"id":"creature-87297","entityId":"entry-4436","position":[20.15,-5.433,83.302],"yaw":-3.64774,"spawnMask":1},{"id":"creature-87301","entityId":"entry-4520","position":[19.44,-6.3265,107.532],"yaw":-2.57618,"spawnMask":1},{"id":"creature-87302","entityId":"entry-4436","position":[24.13,-6.7425,123.572],"yaw":-4.34587,"spawnMask":1},{"id":"creature-87304","entityId":"entry-4514","position":[69.16,-22.4595,41.122],"yaw":-1.22348,"spawnMask":1},{"id":"creature-87305","entityId":"entry-4436","position":[35.58,-6.8253,123.272],"yaw":-3.86109,"spawnMask":1},{"id":"creature-87306","entityId":"entry-4520","position":[42.51,-4.5439,137.282],"yaw":-4.57276,"spawnMask":1},{"id":"creature-87307","entityId":"entry-4530","position":[55.49,-5.7774,127.422],"yaw":-4.05184,"spawnMask":1},{"id":"creature-87310","entityId":"entry-4514","position":[90.43,-24.3996,76.442],"yaw":-3.14159,"spawnMask":1},{"id":"creature-87311","entityId":"entry-4436","position":[67.25,-5.2501,125.882],"yaw":-2.6529,"spawnMask":1},{"id":"creature-87312","entityId":"entry-4436","position":[71.32,-5.634,132.852],"yaw":-2.96706,"spawnMask":1},{"id":"creature-87313","entityId":"entry-4511","position":[82.77,-24.2567,94.182],"yaw":-5.3058,"spawnMask":1},{"id":"creature-87314","entityId":"entry-4511","position":[89.08,-22.9521,110.042],"yaw":-0.709751,"spawnMask":1},{"id":"creature-87315","entityId":"entry-4514","position":[89.79,-24.0935,91.352],"yaw":-1.48928,"spawnMask":1},{"id":"creature-87316","entityId":"entry-4442","position":[103.37,-5.5409,42.152],"yaw":-3.71137,"spawnMask":1},{"id":"creature-87317","entityId":"entry-4512","position":[91.29,-25.9934,137.302],"yaw":-1.12516,"spawnMask":1},{"id":"creature-87318","entityId":"entry-4514","position":[103.71,-25.9808,151.532],"yaw":-4.32842,"spawnMask":1},{"id":"creature-87319","entityId":"entry-4514","position":[55.76,-26.6216,204.872],"yaw":-2.50425,"spawnMask":1},{"id":"creature-87320","entityId":"entry-4514","position":[67.43,-27.5298,186.802],"yaw":-2.13508,"spawnMask":1},{"id":"creature-87322","entityId":"entry-4511","position":[84.92,-28.9357,178.822],"yaw":-2.9891,"spawnMask":1},{"id":"creature-87323","entityId":"entry-4442","position":[124.57,-6.7551,71.112],"yaw":-2.3911,"spawnMask":1},{"id":"creature-87324","entityId":"entry-4511","position":[138.46,-27.7636,142.762],"yaw":-2.30383,"spawnMask":1},{"id":"creature-87325","entityId":"entry-4519","position":[126.55,-6.3694,78.262],"yaw":-4.44461,"spawnMask":1},{"id":"creature-87326","entityId":"entry-4516","position":[130.87,-6.4759,85.902],"yaw":-4.79965,"spawnMask":1},{"id":"creature-87327","entityId":"entry-4525","position":[140.37,-6.6715,170.562],"yaw":-5.96903,"spawnMask":1},{"id":"creature-87328","entityId":"entry-4518","position":[95.93,-10.227,205.502],"yaw":-1.3439,"spawnMask":1},{"id":"creature-87329","entityId":"entry-6035","position":[89.21,-10.5284,219.782],"yaw":-0.174533,"spawnMask":1},{"id":"creature-87330","entityId":"entry-4525","position":[88.36,-10.6224,210.842],"yaw":-0.349066,"spawnMask":1},{"id":"creature-87331","entityId":"entry-4525","position":[145.82,-6.7531,184.832],"yaw":-4.83456,"spawnMask":1},{"id":"creature-87332","entityId":"entry-4518","position":[151.26,-5.5786,96.472],"yaw":-5.20059,"spawnMask":1},{"id":"creature-87333","entityId":"entry-4516","position":[138.46,-5.8024,57.802],"yaw":-3.60296,"spawnMask":1},{"id":"creature-87334","entityId":"entry-4442","position":[155.5,-5.7481,60.902],"yaw":-0.791037,"spawnMask":1},{"id":"creature-87335","entityId":"entry-4519","position":[115.28,-5.9712,32.962],"yaw":-2.55439,"spawnMask":1},{"id":"creature-87336","entityId":"entry-4516","position":[144.52,-6.7409,46.642],"yaw":-1.95454,"spawnMask":1},{"id":"creature-87337","entityId":"entry-4518","position":[155.95,-5.4119,90.402],"yaw":-0.340052,"spawnMask":1},{"id":"creature-87338","entityId":"entry-4532","position":[169.22,-5.57,91.632],"yaw":-4.85866,"spawnMask":1},{"id":"creature-87340","entityId":"entry-4532","position":[161.57,-5.5097,107.832],"yaw":-1.32335,"spawnMask":1},{"id":"creature-87342","entityId":"entry-4519","position":[129.22,-5.6243,28.042],"yaw":-2.23835,"spawnMask":1},{"id":"creature-87343","entityId":"entry-4519","position":[126.31,-0.051,16.052],"yaw":-6.11408,"spawnMask":1},{"id":"creature-87344","entityId":"entry-4516","position":[135.12,-5.6243,27.062],"yaw":-0.545883,"spawnMask":1},{"id":"creature-87345","entityId":"entry-4442","position":[154.93,-5.7508,50.772],"yaw":-4.40274,"spawnMask":1},{"id":"creature-87346","entityId":"entry-6168","position":[166.18,-6.8639,58.462],"yaw":-3.08923,"spawnMask":1},{"id":"creature-87347","entityId":"entry-4516","position":[162.69,-6.4745,65.362],"yaw":-3.82997,"spawnMask":1},{"id":"creature-87349","entityId":"entry-4623","position":[155.53,-5.1604,134.032],"yaw":-4.72984,"spawnMask":1},{"id":"creature-87350","entityId":"entry-4623","position":[148.82,-4.8631,135.132],"yaw":-5.96903,"spawnMask":1},{"id":"creature-87351","entityId":"entry-4442","position":[53.79,-14.2548,-24.998],"yaw":-2.33874,"spawnMask":1},{"id":"creature-87352","entityId":"entry-4523","position":[182.08,-15.2326,26.422],"yaw":-5.16617,"spawnMask":1},{"id":"creature-87353","entityId":"entry-4523","position":[175.49,-14.2749,16.282],"yaw":-5.74726,"spawnMask":1},{"id":"creature-87355","entityId":"entry-4442","position":[175.33,-14.3189,2.192],"yaw":-4.19474,"spawnMask":1},{"id":"creature-87356","entityId":"entry-4623","position":[184.34,-5.5442,104.982],"yaw":-1.72788,"spawnMask":1},{"id":"creature-87357","entityId":"entry-4424","position":[105.5,-14.0692,-59.568],"yaw":-5.46288,"spawnMask":1},{"id":"creature-87358","entityId":"entry-4531","position":[127.48,-13.5468,-53.638],"yaw":-5.53269,"spawnMask":1},{"id":"creature-87359","entityId":"entry-4442","position":[59.95,-19.6216,-47.338],"yaw":-2.25853,"spawnMask":1},{"id":"creature-87360","entityId":"entry-4522","position":[145.4,-14.1661,-37.618],"yaw":-4.21812,"spawnMask":1},{"id":"creature-87362","entityId":"entry-4442","position":[192.99,-15.9572,-0.178],"yaw":-0.226893,"spawnMask":1},{"id":"creature-87364","entityId":"entry-4523","position":[158.84,-14.1648,-29.658],"yaw":-0.447883,"spawnMask":1},{"id":"creature-87365","entityId":"entry-4532","position":[177.92,-19.3161,-28.968],"yaw":-0.186359,"spawnMask":1},{"id":"creature-87367","entityId":"entry-4442","position":[183.33,-20.1712,-16.008],"yaw":-0.885894,"spawnMask":1},{"id":"creature-87368","entityId":"entry-4442","position":[180.8,-19.7757,-14.348],"yaw":-0.852833,"spawnMask":1},{"id":"creature-87370","entityId":"entry-4516","position":[87.49,-19.7792,-64.018],"yaw":-0.511291,"spawnMask":1},{"id":"creature-87371","entityId":"entry-4531","position":[124.76,-13.3522,-73.018],"yaw":-1.93731,"spawnMask":1},{"id":"creature-87372","entityId":"entry-4516","position":[155.88,-20.8962,-61.958],"yaw":-5.21432,"spawnMask":1},{"id":"creature-87373","entityId":"entry-4523","position":[101.9,-20.5857,-79.728],"yaw":-1.18513,"spawnMask":1},{"id":"creature-87374","entityId":"entry-4442","position":[205.27,-15.7376,2.932],"yaw":-3.31613,"spawnMask":1},{"id":"creature-87375","entityId":"entry-4442","position":[175.75,-20.1499,-48.848],"yaw":-2.98618,"spawnMask":1},{"id":"creature-87378","entityId":"entry-4440","position":[206.3,-7.3233,73.312],"yaw":-5.85803,"spawnMask":1},{"id":"creature-87379","entityId":"entry-4515","position":[215.03,-13.8197,-24.498],"yaw":-2.04204,"spawnMask":1},{"id":"creature-87380","entityId":"entry-4442","position":[217.97,-13.918,-21.408],"yaw":-1.8675,"spawnMask":1},{"id":"creature-87381","entityId":"entry-4518","position":[230.79,-5.6057,88.722],"yaw":-4.99159,"spawnMask":1},{"id":"creature-87382","entityId":"entry-4440","position":[200.65,-6.1388,115.712],"yaw":-3.66033,"spawnMask":1},{"id":"creature-87383","entityId":"entry-4623","position":[182.49,-5.361,112.892],"yaw":-5.3058,"spawnMask":1},{"id":"creature-87384","entityId":"entry-4525","position":[213,-6.8443,85.292],"yaw":-2.44378,"spawnMask":1},{"id":"creature-87385","entityId":"entry-4525","position":[205.38,-5.8148,100.282],"yaw":-5.16836,"spawnMask":1},{"id":"creature-87386","entityId":"entry-4420","position":[226.32,-1.3459,116.942],"yaw":-4.7822,"spawnMask":1},{"id":"creature-87387","entityId":"entry-4438","position":[229.17,-1.3211,121.642],"yaw":-4.76475,"spawnMask":1},{"id":"creature-87388","entityId":"entry-4438","position":[221.59,-1.1703,118.972],"yaw":-4.93928,"spawnMask":1},{"id":"creature-87389","entityId":"entry-4518","position":[236.68,-5.9431,79.612],"yaw":-5.09984,"spawnMask":1},{"id":"creature-87390","entityId":"entry-4511","position":[189.19,-28.5113,163.242],"yaw":-2.93215,"spawnMask":1},{"id":"creature-87391","entityId":"entry-4511","position":[172.7,-28.8405,162.622],"yaw":-6.07375,"spawnMask":1},{"id":"creature-87392","entityId":"entry-4514","position":[172.83,-28.3035,150.962],"yaw":-3.71252,"spawnMask":1},{"id":"creature-87393","entityId":"entry-4623","position":[168.58,-5.5672,103.852],"yaw":-1.88496,"spawnMask":1},{"id":"creature-87394","entityId":"entry-4623","position":[165.99,-5.5786,103.442],"yaw":-2.04204,"spawnMask":1},{"id":"creature-87395","entityId":"entry-4516","position":[122.66,-23.5624,-86.448],"yaw":-2.69286,"spawnMask":1},{"id":"creature-87397","entityId":"entry-4442","position":[147.38,-22.8003,-88.268],"yaw":-2.3911,"spawnMask":1},{"id":"creature-87398","entityId":"entry-4442","position":[142.75,-23.0571,-93.078],"yaw":-2.51327,"spawnMask":1},{"id":"creature-87399","entityId":"entry-4440","position":[166.82,-11.3263,-92.178],"yaw":-2.32917,"spawnMask":1},{"id":"creature-87400","entityId":"entry-4428","position":[169.62,-13.2943,-111.868],"yaw":-1.5708,"spawnMask":1},{"id":"creature-87401","entityId":"entry-4515","position":[163.72,-13.3613,-109.258],"yaw":-0.872665,"spawnMask":1},{"id":"creature-87402","entityId":"entry-4523","position":[166.46,-9.252,-72.668],"yaw":-3.27257,"spawnMask":1},{"id":"creature-87403","entityId":"entry-4523","position":[178.29,-12.9152,-93.418],"yaw":-4.68963,"spawnMask":1},{"id":"creature-87404","entityId":"entry-4522","position":[186.39,-13.3863,-62.768],"yaw":-5.92303,"spawnMask":1},{"id":"creature-87405","entityId":"entry-4523","position":[177.93,-13.0001,-108.488],"yaw":-2.00713,"spawnMask":1},{"id":"creature-87407","entityId":"entry-4522","position":[201.82,-14.8891,-48.808],"yaw":-5.17167,"spawnMask":1},{"id":"creature-87408","entityId":"entry-4520","position":[207.15,-14.3405,-42.568],"yaw":-5.19729,"spawnMask":1},{"id":"creature-87411","entityId":"entry-4623","position":[204.68,-12.3955,46.032],"yaw":-4.27606,"spawnMask":1},{"id":"creature-87412","entityId":"entry-4623","position":[197.71,-12.2251,48.612],"yaw":-4.5204,"spawnMask":1},{"id":"creature-87413","entityId":"entry-4511","position":[190.24,-32.1836,178.512],"yaw":-0.609866,"spawnMask":1},{"id":"creature-87414","entityId":"entry-4518","position":[152.93,-7.1336,184.522],"yaw":-4.31096,"spawnMask":1},{"id":"creature-87415","entityId":"entry-4514","position":[175.73,-35.1529,198.922],"yaw":-4.2182,"spawnMask":1},{"id":"creature-87416","entityId":"entry-4512","position":[92.25,-29.6441,178.322],"yaw":-0.081818,"spawnMask":1},{"id":"creature-87417","entityId":"entry-4511","position":[145.85,-34.4412,215.752],"yaw":-5.86431,"spawnMask":1},{"id":"creature-87418","entityId":"entry-4623","position":[114.7,-9.577,224.302],"yaw":-3.87463,"spawnMask":1},{"id":"creature-87419","entityId":"entry-4623","position":[111.33,-9.4645,229.972],"yaw":-3.38594,"spawnMask":1},{"id":"creature-87420","entityId":"entry-4511","position":[161.51,-34.6848,221.252],"yaw":-4.83456,"spawnMask":1},{"id":"creature-87421","entityId":"entry-6035","position":[156.92,-6.4197,175.892],"yaw":-3.01942,"spawnMask":1},{"id":"creature-87422","entityId":"entry-4514","position":[135.26,-38.8618,262.032],"yaw":-1.91986,"spawnMask":1},{"id":"creature-87423","entityId":"entry-4511","position":[69.8,-27.7834,242.202],"yaw":-4.47792,"spawnMask":1},{"id":"creature-87424","entityId":"entry-4514","position":[103.27,-32.4738,261.482],"yaw":-3.77963,"spawnMask":1},{"id":"creature-87425","entityId":"entry-4511","position":[145.54,-39.8363,272.192],"yaw":-3.84249,"spawnMask":1},{"id":"creature-87426","entityId":"entry-4541","position":[139.87,-39.427,268.642],"yaw":-6.1975,"spawnMask":1},{"id":"creature-87427","entityId":"entry-4514","position":[57.8,-26.9375,238.642],"yaw":-5.41052,"spawnMask":1},{"id":"creature-87428","entityId":"entry-4511","position":[131.43,-39.0035,278.962],"yaw":-4.34587,"spawnMask":1},{"id":"creature-87432","entityId":"entry-4511","position":[160.7,-39.964,278.142],"yaw":-3.92376,"spawnMask":1},{"id":"creature-87433","entityId":"entry-4623","position":[135.55,-6.7123,299.422],"yaw":-4.01426,"spawnMask":1},{"id":"creature-87434","entityId":"entry-4623","position":[128.69,-7.3564,299.362],"yaw":-4.76475,"spawnMask":1},{"id":"creature-87436","entityId":"entry-4512","position":[90.22,-31.9255,325.302],"yaw":-3.0186,"spawnMask":1},{"id":"creature-87437","entityId":"entry-4514","position":[93.87,-32.3966,327.362],"yaw":-1.12912,"spawnMask":1},{"id":"creature-87438","entityId":"entry-4514","position":[60.38,-31.2896,338.482],"yaw":-5.81195,"spawnMask":1},{"id":"creature-87439","entityId":"entry-4514","position":[61.83,-31.0455,328.852],"yaw":-0.087266,"spawnMask":1},{"id":"creature-87440","entityId":"entry-4511","position":[114.3,-36.2015,336.982],"yaw":-5.74213,"spawnMask":1},{"id":"creature-87441","entityId":"entry-4511","position":[140.67,-37.8318,327.972],"yaw":-3.36736,"spawnMask":1},{"id":"creature-87442","entityId":"entry-4510","position":[209.96,-22.0991,266.382],"yaw":-0.890118,"spawnMask":1},{"id":"creature-87443","entityId":"entry-4437","position":[207.34,-22.751,283.512],"yaw":-1.43117,"spawnMask":1},{"id":"creature-87444","entityId":"entry-4514","position":[159.89,-38.5016,324.832],"yaw":-2.61795,"spawnMask":1},{"id":"creature-87445","entityId":"entry-4508","position":[217.57,-21.6754,268.582],"yaw":-2.11185,"spawnMask":1},{"id":"creature-87447","entityId":"entry-4437","position":[219.82,-22.2888,282.632],"yaw":-2.14675,"spawnMask":1},{"id":"creature-87448","entityId":"entry-4517","position":[201.5,-28.8461,321.162],"yaw":-5.20154,"spawnMask":1},{"id":"creature-87449","entityId":"entry-4517","position":[216.25,-26.9262,313.042],"yaw":-3.77636,"spawnMask":1},{"id":"creature-87450","entityId":"entry-4437","position":[218.62,-24.9694,293.942],"yaw":-3.32956,"spawnMask":1},{"id":"creature-87451","entityId":"entry-4437","position":[208.61,-26.4125,305.012],"yaw":-4.73733,"spawnMask":1},{"id":"creature-87452","entityId":"entry-4437","position":[184.77,-30.362,338.752],"yaw":-3.76991,"spawnMask":1},{"id":"creature-87453","entityId":"entry-4437","position":[186.91,-30.2735,328.982],"yaw":-3.05433,"spawnMask":1},{"id":"creature-87454","entityId":"entry-4623","position":[133.2,-15.2246,363.662],"yaw":-5.044,"spawnMask":1},{"id":"creature-87455","entityId":"entry-4623","position":[140.07,-15.589,360.722],"yaw":-4.13643,"spawnMask":1},{"id":"creature-87456","entityId":"entry-4517","position":[201.53,-29.0517,331.972],"yaw":-3.70765,"spawnMask":1},{"id":"creature-87457","entityId":"entry-4517","position":[213.99,-28.7467,339.252],"yaw":-2.33087,"spawnMask":1},{"id":"creature-87458","entityId":"entry-4518","position":[165.1,-20.6788,395.762],"yaw":-4.34914,"spawnMask":1},{"id":"creature-87459","entityId":"entry-4538","position":[101.4,-24.2334,439.202],"yaw":-5.65254,"spawnMask":1},{"id":"creature-87460","entityId":"entry-4538","position":[79.63,-17.777,397.022],"yaw":-2.73908,"spawnMask":1},{"id":"creature-87461","entityId":"entry-4538","position":[105.07,-21.7447,416.412],"yaw":-4.63723,"spawnMask":1},{"id":"creature-87462","entityId":"entry-4539","position":[104.22,-23.3032,422.282],"yaw":-1.96165,"spawnMask":1},{"id":"creature-87463","entityId":"entry-4538","position":[85.78,-22.4954,415.752],"yaw":-1.56869,"spawnMask":1},{"id":"creature-87464","entityId":"entry-4538","position":[115.22,-22.2835,443.602],"yaw":-0.428552,"spawnMask":1},{"id":"creature-87465","entityId":"entry-4623","position":[180.06,-21.4894,411.202],"yaw":-0.628319,"spawnMask":1},{"id":"creature-87466","entityId":"entry-4440","position":[169.15,-19.9551,407.912],"yaw":-1.00215,"spawnMask":1},{"id":"creature-87467","entityId":"entry-4538","position":[138.36,-21.7392,460.582],"yaw":-1.03096,"spawnMask":1},{"id":"creature-87468","entityId":"entry-4539","position":[127.22,-22.3777,460.352],"yaw":-1.91355,"spawnMask":1},{"id":"creature-87469","entityId":"entry-4539","position":[100.23,-23.7838,458.362],"yaw":-3.90556,"spawnMask":1},{"id":"creature-87470","entityId":"entry-4538","position":[212.1,-31.4757,451.672],"yaw":-4.01327,"spawnMask":1},{"id":"creature-87471","entityId":"entry-4538","position":[174.33,-23.4175,441.862],"yaw":-4.67624,"spawnMask":1},{"id":"creature-87472","entityId":"entry-4538","position":[174.91,-27.2504,465.112],"yaw":-1.71821,"spawnMask":1},{"id":"creature-87473","entityId":"entry-4538","position":[185.11,-28.6838,437.932],"yaw":-1.52629,"spawnMask":1},{"id":"creature-87474","entityId":"entry-4538","position":[158.79,-27.0786,455.302],"yaw":-4.4854,"spawnMask":1},{"id":"creature-87475","entityId":"entry-4539","position":[184.24,-26.3473,471.252],"yaw":-4.02457,"spawnMask":1},{"id":"creature-87476","entityId":"entry-4538","position":[187.49,-29.0503,431.322],"yaw":-2.01097,"spawnMask":1},{"id":"creature-87477","entityId":"entry-4538","position":[151.32,-22.9794,477.372],"yaw":-6.08115,"spawnMask":1},{"id":"creature-87478","entityId":"entry-4427","position":[90.46,-22.322,476.242],"yaw":-5.72468,"spawnMask":1},{"id":"creature-87479","entityId":"entry-4519","position":[95.08,-23.8909,481.412],"yaw":-5.44543,"spawnMask":1},{"id":"creature-87480","entityId":"entry-4427","position":[99.92,-24.7279,486.172],"yaw":-5.23599,"spawnMask":1},{"id":"creature-87481","entityId":"entry-4625","position":[92.42,-23.204,492.192],"yaw":-2.40855,"spawnMask":1},{"id":"creature-87482","entityId":"entry-4625","position":[87,-23.0349,485.662],"yaw":-2.47837,"spawnMask":1},{"id":"creature-87483","entityId":"entry-4539","position":[154.32,-22.3989,483.822],"yaw":-4.33878,"spawnMask":1},{"id":"creature-87484","entityId":"entry-4539","position":[166.93,-21.6958,489.772],"yaw":-2.77843,"spawnMask":1},{"id":"creature-87485","entityId":"entry-4425","position":[223.95,-30.5253,455.082],"yaw":-3.735,"spawnMask":1},{"id":"creature-87486","entityId":"entry-4422","position":[17.59,-23.9561,453.332],"yaw":-0.750492,"spawnMask":1},{"id":"creature-87487","entityId":"entry-4421","position":[213.59,-8.1092,341.182],"yaw":-1.37881,"spawnMask":1},{"id":"creature-87488","entityId":"entry-6035","position":[184.05,-21.4258,406.732],"yaw":-0.855211,"spawnMask":1},{"id":"creature-87489","entityId":"entry-6035","position":[185.12,-20.6561,397.252],"yaw":-5.78799,"spawnMask":1},{"id":"creature-1975863","entityId":"entry-4842","position":[141.77,-6.9165,172.212],"yaw":-1.46786,"spawnMask":1}],"roamingPacks":[{"id":"patrol-84369","name":"Rotting Agam'ar Patrol","speed":1.15,"pathId":843690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[120.26,-22.8264,-90.348],[144.68,-22.9705,-87.818],[157.92,-20.8536,-58.318],[174.93,-20.1613,-49.158],[179.82,-19.679,-25.978],[181.14,-19.9643,-19.738],[195.43,-17.0948,-3.388],[178.1,-19.6243,-23.768],[175.44,-20.0469,-47.898],[154,-20.7452,-66.948],[144.09,-22.9599,-88.028]],"members":[{"id":"member","entityId":"entry-4512","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87289","name":"Razorfen Geomancer Patrol","speed":1.15,"pathId":872890,"formationSource":"database-solo","spawnMask":1,"waypoints":[[42.56,-8.6299,-12.598],[52.4,-17.7937,-35.178],[94.9,-20.1578,-72.488],[52.4,-17.7937,-35.178]],"members":[{"id":"member","entityId":"entry-4520","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87321","name":"Blood of Agamaggan Patrol","speed":1.15,"pathId":873210,"formationSource":"database-solo","spawnMask":1,"waypoints":[[84.64,-25.3177,123.082],[111.79,-26.0044,149.962],[126.22,-28.2407,148.772],[111.79,-26.0044,149.962]],"members":[{"id":"member","entityId":"entry-4541","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87354","name":"Razorfen Defender Patrol","speed":1.15,"pathId":873540,"formationSource":"database-solo","spawnMask":1,"waypoints":[[160.68,-14.5556,-17.098],[125.91,-13.8357,-65.358]],"members":[{"id":"member","entityId":"entry-4442","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87363","name":"Death's Head Adept Patrol","speed":1.15,"pathId":873630,"formationSource":"database-solo","spawnMask":1,"waypoints":[[179.16,-19.7339,-22.618],[195.68,-19.3206,-8.718],[196,-16.0652,-0.388],[197.06,-15.0657,36.532],[196,-16.0652,-0.388],[195.68,-19.3206,-8.718]],"members":[{"id":"member","entityId":"entry-4516","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87377","name":"Razorfen Defender Patrol","speed":1.15,"pathId":873770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[201.93,-14.1569,-27.028],[179,-12.2482,-64.068]],"members":[{"id":"member","entityId":"entry-4442","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87396","name":"Razorfen Defender Patrol","speed":1.15,"pathId":873960,"formationSource":"database-solo","spawnMask":1,"waypoints":[[140.13,-23.2249,-83.568],[155.43,-20.8026,-58.018],[178.65,-20.2188,-44.758],[155.43,-20.8026,-58.018]],"members":[{"id":"member","entityId":"entry-4442","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87429","name":"Blood of Agamaggan Patrol","speed":1.15,"pathId":874290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[56.88,-26.8891,234.962],[70.49,-27.8082,182.962],[111.8,-30.6795,182.822],[70.49,-27.8082,182.962]],"members":[{"id":"member","entityId":"entry-4541","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87430","name":"Quilguard Champion Patrol","speed":1.15,"pathId":874300,"formationSource":"database-solo","spawnMask":1,"waypoints":[[117.58,-8.9159,250.452],[124.83,-13.3064,272.012],[134.02,-7.3435,299.532],[137.91,-13.9377,335.502],[134.02,-7.3435,299.532],[124.83,-13.3064,272.012]],"members":[{"id":"member","entityId":"entry-4623","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87431","name":"Quilguard Champion Patrol","speed":1.15,"pathId":874310,"formationSource":"database-solo","spawnMask":1,"waypoints":[[114.02,-9.017,251.532],[120.3,-13.0618,273.622],[130.35,-7.3839,300.132],[132.82,-13.9703,337.182],[130.35,-7.3839,300.132],[120.3,-13.0618,273.622]],"members":[{"id":"member","entityId":"entry-4623","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87435","name":"Blood of Agamaggan Patrol","speed":1.15,"pathId":874350,"formationSource":"database-solo","spawnMask":1,"waypoints":[[93.87,-32.165,323.112],[132.41,-37.8839,331.122],[155.01,-40.1884,311.022],[132.41,-37.8839,331.122]],"members":[{"id":"member","entityId":"entry-4541","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87446","name":"Razorfen Warden Patrol","speed":1.15,"pathId":874460,"formationSource":"database-solo","spawnMask":1,"waypoints":[[185.44,-30.249,334.502],[211.09,-27.3185,313.422],[185.44,-30.249,334.502],[168.22,-37.6763,325.522]],"members":[{"id":"member","entityId":"entry-4437","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-87346","name":"Roogug","position":[166.18,-6.8639,58.462]},{"id":"creature-87357","name":"Aggem Thorncurse","position":[105.5,-14.0692,-59.568]},{"id":"creature-87400","name":"Death Speaker Jargba","position":[169.62,-13.2943,-111.868]},{"id":"creature-87386","name":"Overlord Ramtusk","position":[226.32,-1.3459,116.942]},{"id":"creature-87487","name":"Charlga Razorflank","position":[213.59,-8.1092,341.182]},{"id":"creature-87486","name":"Agathelos the Raging","position":[17.59,-23.9561,453.332]},{"id":"creature-1975863","name":"Earthcaller Halmgar","position":[141.77,-6.9165,172.212]}],"objectiveOrder":[{"id":"creature-87346","name":"Roogug","position":[166.18,-6.8639,58.462]},{"id":"creature-87357","name":"Aggem Thorncurse","position":[105.5,-14.0692,-59.568]},{"id":"creature-87400","name":"Death Speaker Jargba","position":[169.62,-13.2943,-111.868]},{"id":"creature-87386","name":"Overlord Ramtusk","position":[226.32,-1.3459,116.942]},{"id":"creature-87487","name":"Charlga Razorflank","position":[213.59,-8.1092,341.182]},{"id":"creature-87486","name":"Agathelos the Raging","position":[17.59,-23.9561,453.332]},{"id":"creature-1975863","name":"Earthcaller Halmgar","position":[141.77,-6.9165,172.212]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29727,"id":20919,"map":47,"orientation":3.66079,"phaseMask":1,"position_x":2082.74,"position_y":1671.82,"position_z":61.2396,"rotation0":0,"rotation1":0,"rotation2":0.966493,"rotation3":-0.256693,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29728,"id":20919,"map":47,"orientation":3.66079,"phaseMask":1,"position_x":2159.43,"position_y":1687.49,"position_z":57.5433,"rotation0":0,"rotation1":0,"rotation2":0.966493,"rotation3":-0.256693,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29729,"id":20919,"map":47,"orientation":0.553757,"phaseMask":1,"position_x":2080.89,"position_y":1703.36,"position_z":56.6447,"rotation0":0,"rotation1":0,"rotation2":0.273354,"rotation3":0.961913,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29730,"id":20919,"map":47,"orientation":2.98378,"phaseMask":1,"position_x":2055.28,"position_y":1767.7,"position_z":58.4559,"rotation0":0,"rotation1":0,"rotation2":0.996889,"rotation3":0.0788245,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29731,"id":20919,"map":47,"orientation":2.11277,"phaseMask":1,"position_x":2196.64,"position_y":1827.96,"position_z":61.4706,"rotation0":0,"rotation1":0,"rotation2":0.870583,"rotation3":0.492022,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29732,"id":20919,"map":47,"orientation":5.6777,"phaseMask":1,"position_x":2030.32,"position_y":1867.61,"position_z":56.2866,"rotation0":0,"rotation1":0,"rotation2":0.298139,"rotation3":-0.954522,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29733,"id":20919,"map":47,"orientation":1.25355,"phaseMask":1,"position_x":2091.33,"position_y":1861.73,"position_z":51.0341,"rotation0":0,"rotation1":0,"rotation2":0.586536,"rotation3":0.809923,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29734,"id":20919,"map":47,"orientation":2.6492,"phaseMask":1,"position_x":2200.15,"position_y":1897.64,"position_z":71.3191,"rotation0":0,"rotation1":0,"rotation2":0.969846,"rotation3":0.243717,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29735,"id":20919,"map":47,"orientation":1.33994,"phaseMask":1,"position_x":2075.75,"position_y":1742.04,"position_z":76.7184,"rotation0":0,"rotation1":0,"rotation2":0.620962,"rotation3":0.78384,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29736,"id":20919,"map":47,"orientation":0.0220437,"phaseMask":1,"position_x":2126,"position_y":1661.15,"position_z":82.4824,"rotation0":0,"rotation1":0,"rotation2":0.0110216,"rotation3":0.999939,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29737,"id":20919,"map":47,"orientation":3.60582,"phaseMask":1,"position_x":2207.92,"position_y":1596.91,"position_z":80.7375,"rotation0":0,"rotation1":0,"rotation2":0.973182,"rotation3":-0.230035,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29738,"id":20919,"map":47,"orientation":2.43086,"phaseMask":1,"position_x":2156.98,"position_y":1542.26,"position_z":72.849,"rotation0":0,"rotation1":0,"rotation2":0.937519,"rotation3":0.347934,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29739,"id":20919,"map":47,"orientation":0.778385,"phaseMask":1,"position_x":2179.95,"position_y":1514.06,"position_z":69.0709,"rotation0":0,"rotation1":0,"rotation2":0.379441,"rotation3":0.925216,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29740,"id":20919,"map":47,"orientation":4.919,"phaseMask":1,"position_x":2000.85,"position_y":1533.93,"position_z":80.3971,"rotation0":0,"rotation1":0,"rotation2":0.630419,"rotation3":-0.776255,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":29741,"id":20919,"map":47,"orientation":1.1004,"phaseMask":1,"position_x":1991.49,"position_y":1608.53,"position_z":81.1601,"rotation0":0,"rotation1":0,"rotation2":0.522858,"rotation3":0.85242,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35693,"id":11899,"map":47,"orientation":-0.18326,"phaseMask":1,"position_x":1729.23,"position_y":1350.39,"position_z":-44.1443,"rotation0":0,"rotation1":0,"rotation2":-0.0915018,"rotation3":0.995805,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35694,"id":11898,"map":47,"orientation":0.061086,"phaseMask":1,"position_x":1734.57,"position_y":1372.33,"position_z":85.4053,"rotation0":0,"rotation1":0,"rotation2":0.0305383,"rotation3":0.999534,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35695,"id":2042,"map":47,"orientation":1.16937,"phaseMask":1,"position_x":2035.23,"position_y":1525.38,"position_z":80.6839,"rotation0":0,"rotation1":0,"rotation2":0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35696,"id":69431,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":1896.43,"position_y":1626.5,"position_z":73.9552,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35698,"id":21099,"map":47,"orientation":-0.357792,"phaseMask":1,"position_x":2060.41,"position_y":2015.7,"position_z":62.3831,"rotation0":0,"rotation1":0,"rotation2":-0.177943,"rotation3":0.984041,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35699,"id":69425,"map":47,"orientation":0.820303,"phaseMask":1,"position_x":1885.3,"position_y":1644.9,"position_z":80.4157,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35701,"id":1621,"map":47,"orientation":-1.62316,"phaseMask":1,"position_x":2073.56,"position_y":1600.3,"position_z":63.6955,"rotation0":0,"rotation1":0,"rotation2":-0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35702,"id":2042,"map":47,"orientation":-2.49582,"phaseMask":1,"position_x":2039.44,"position_y":1700.29,"position_z":61.0109,"rotation0":0,"rotation1":0,"rotation2":-0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35703,"id":69422,"map":47,"orientation":0.820303,"phaseMask":1,"position_x":2096.74,"position_y":1597.51,"position_z":80.4157,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35705,"id":74447,"map":47,"orientation":-1.98968,"phaseMask":1,"position_x":2111.45,"position_y":1613.83,"position_z":81.1889,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35706,"id":1621,"map":47,"orientation":-0.418879,"phaseMask":1,"position_x":2096.28,"position_y":1557.81,"position_z":81.4785,"rotation0":0,"rotation1":0,"rotation2":-0.207912,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35707,"id":74078,"map":47,"orientation":0.820303,"phaseMask":1,"position_x":2110.67,"position_y":1543.94,"position_z":81.4979,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35709,"id":69436,"map":47,"orientation":0.856097,"phaseMask":1,"position_x":2146.93,"position_y":1541.3,"position_z":72.1165,"rotation0":0.0148201,"rotation1":-0.0225077,"rotation2":0.415046,"rotation3":0.909401,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35711,"id":69429,"map":47,"orientation":0.855641,"phaseMask":1,"position_x":2157.04,"position_y":1552.62,"position_z":72.277,"rotation0":0.0298719,"rotation1":0.0088129,"rotation2":0.41481,"rotation3":0.909375,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35713,"id":69432,"map":47,"orientation":0.854632,"phaseMask":1,"position_x":2107.36,"position_y":1453.43,"position_z":73.7746,"rotation0":-0.0234752,"rotation1":-0.0138464,"rotation2":0.414205,"rotation3":0.909776,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35715,"id":69424,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2136.88,"position_y":1476.97,"position_z":72.9517,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35717,"id":69421,"map":47,"orientation":0.856097,"phaseMask":1,"position_x":2202.55,"position_y":1518.84,"position_z":84.805,"rotation0":0.0148201,"rotation1":-0.0225077,"rotation2":0.415046,"rotation3":0.909401,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35719,"id":69426,"map":47,"orientation":0.817546,"phaseMask":1,"position_x":2202.16,"position_y":1646.29,"position_z":85.5384,"rotation0":-0.00733662,"rotation1":0.000103951,"rotation2":0.397491,"rotation3":0.917577,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35721,"id":74447,"map":47,"orientation":-1.37881,"phaseMask":1,"position_x":2199.22,"position_y":1654.65,"position_z":86.1542,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35722,"id":69434,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2083.82,"position_y":1431.21,"position_z":85.4887,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35724,"id":69435,"map":47,"orientation":0.846398,"phaseMask":1,"position_x":2112.14,"position_y":1413.64,"position_z":85.7095,"rotation0":-0.0380807,"rotation1":0.0856991,"rotation2":0.408829,"rotation3":0.90778,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35726,"id":69430,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2132.16,"position_y":1410.02,"position_z":73.9552,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35728,"id":1621,"map":47,"orientation":2.00713,"phaseMask":1,"position_x":2139.33,"position_y":1404.52,"position_z":73.725,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35729,"id":69437,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2155.07,"position_y":1405.45,"position_z":84.1599,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35731,"id":74075,"map":47,"orientation":0.820303,"phaseMask":1,"position_x":2158.47,"position_y":1413.67,"position_z":74.1121,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35733,"id":69423,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2145.55,"position_y":1405.98,"position_z":73.6876,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35735,"id":69433,"map":47,"orientation":0.853841,"phaseMask":1,"position_x":2192.71,"position_y":1487.74,"position_z":82.826,"rotation0":0.0250072,"rotation1":0.00626087,"rotation2":0.41404,"rotation3":0.909894,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35737,"id":1734,"map":47,"orientation":-1.81514,"phaseMask":1,"position_x":2175.92,"position_y":1714.05,"position_z":55.2663,"rotation0":0,"rotation1":0,"rotation2":-0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35738,"id":1621,"map":47,"orientation":-1.93731,"phaseMask":1,"position_x":2097.27,"position_y":1746.72,"position_z":78.7565,"rotation0":0,"rotation1":0,"rotation2":-0.824125,"rotation3":0.566409,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35739,"id":1735,"map":47,"orientation":0.680678,"phaseMask":1,"position_x":2097.83,"position_y":1864.54,"position_z":52.5586,"rotation0":0,"rotation1":0,"rotation2":0.333807,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35740,"id":69438,"map":47,"orientation":1.51814,"phaseMask":1,"position_x":2191.35,"position_y":1788.04,"position_z":65.3368,"rotation0":-0.0429792,"rotation1":-0.0164337,"rotation2":0.688065,"rotation3":0.724189,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35742,"id":1621,"map":47,"orientation":0.715585,"phaseMask":1,"position_x":2026.93,"position_y":1858.32,"position_z":56.4944,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35743,"id":1735,"map":47,"orientation":-2.72271,"phaseMask":1,"position_x":2128.49,"position_y":1922.27,"position_z":68.3568,"rotation0":0,"rotation1":0,"rotation2":-0.978147,"rotation3":0.207914,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35744,"id":74076,"map":47,"orientation":0.820303,"phaseMask":1,"position_x":2137.15,"position_y":1923.77,"position_z":66.4822,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35746,"id":69428,"map":47,"orientation":1.51844,"phaseMask":1,"position_x":2147.91,"position_y":1917.96,"position_z":66.5457,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35748,"id":1621,"map":47,"orientation":-2.37365,"phaseMask":1,"position_x":2210.56,"position_y":1881.96,"position_z":71.2617,"rotation0":0,"rotation1":0,"rotation2":-0.927184,"rotation3":0.374606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51943,"animprogress":255,"areaId":0,"guid":35749,"id":69427,"map":47,"orientation":1.51844,"phaseMask":1,"position_x":2067.08,"position_y":2010.08,"position_z":63.7909,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35751,"id":1735,"map":47,"orientation":-0.977384,"phaseMask":1,"position_x":2166.68,"position_y":1998.86,"position_z":62.0029,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56185,"id":20920,"map":47,"orientation":3.66079,"phaseMask":1,"position_x":2082.74,"position_y":1671.82,"position_z":61.2396,"rotation0":0,"rotation1":0,"rotation2":0.966493,"rotation3":-0.256693,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56186,"id":20920,"map":47,"orientation":3.66079,"phaseMask":1,"position_x":2159.43,"position_y":1687.49,"position_z":57.5433,"rotation0":0,"rotation1":0,"rotation2":0.966493,"rotation3":-0.256693,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56187,"id":20920,"map":47,"orientation":0.553757,"phaseMask":1,"position_x":2080.89,"position_y":1703.36,"position_z":56.6447,"rotation0":0,"rotation1":0,"rotation2":0.273354,"rotation3":0.961913,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56188,"id":20920,"map":47,"orientation":2.98378,"phaseMask":1,"position_x":2055.28,"position_y":1767.7,"position_z":58.4559,"rotation0":0,"rotation1":0,"rotation2":0.996889,"rotation3":0.0788245,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56189,"id":20920,"map":47,"orientation":2.11277,"phaseMask":1,"position_x":2196.64,"position_y":1827.96,"position_z":61.4706,"rotation0":0,"rotation1":0,"rotation2":0.870583,"rotation3":0.492022,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56190,"id":20920,"map":47,"orientation":5.6777,"phaseMask":1,"position_x":2030.32,"position_y":1867.61,"position_z":56.2866,"rotation0":0,"rotation1":0,"rotation2":0.298139,"rotation3":-0.954522,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56191,"id":20920,"map":47,"orientation":1.25355,"phaseMask":1,"position_x":2091.33,"position_y":1861.73,"position_z":51.0341,"rotation0":0,"rotation1":0,"rotation2":0.586536,"rotation3":0.809923,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56192,"id":20920,"map":47,"orientation":2.6492,"phaseMask":1,"position_x":2200.15,"position_y":1897.64,"position_z":71.3191,"rotation0":0,"rotation1":0,"rotation2":0.969846,"rotation3":0.243717,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56193,"id":20920,"map":47,"orientation":1.33994,"phaseMask":1,"position_x":2075.75,"position_y":1742.04,"position_z":76.7184,"rotation0":0,"rotation1":0,"rotation2":0.620962,"rotation3":0.78384,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56194,"id":20920,"map":47,"orientation":0.0220437,"phaseMask":1,"position_x":2126,"position_y":1661.15,"position_z":82.4824,"rotation0":0,"rotation1":0,"rotation2":0.0110216,"rotation3":0.999939,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56195,"id":20920,"map":47,"orientation":3.60582,"phaseMask":1,"position_x":2207.92,"position_y":1596.91,"position_z":80.7375,"rotation0":0,"rotation1":0,"rotation2":0.973182,"rotation3":-0.230035,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56196,"id":20920,"map":47,"orientation":2.43086,"phaseMask":1,"position_x":2156.98,"position_y":1542.26,"position_z":72.849,"rotation0":0,"rotation1":0,"rotation2":0.937519,"rotation3":0.347934,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56197,"id":20920,"map":47,"orientation":0.778385,"phaseMask":1,"position_x":2179.95,"position_y":1514.06,"position_z":69.0709,"rotation0":0,"rotation1":0,"rotation2":0.379441,"rotation3":0.925216,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56198,"id":20920,"map":47,"orientation":4.919,"phaseMask":1,"position_x":2000.85,"position_y":1533.93,"position_z":80.3971,"rotation0":0,"rotation1":0,"rotation2":0.630419,"rotation3":-0.776255,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":56199,"id":20920,"map":47,"orientation":1.1004,"phaseMask":1,"position_x":1991.49,"position_y":1608.53,"position_z":81.1601,"rotation0":0,"rotation1":0,"rotation2":0.522858,"rotation3":0.85242,"spawnMask":1,"spawntimesecs":-43200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/RazorfenKraulInstance":"6050c0a6de60895854687701cf877db89b74f5960592fbcbbd6a1fc547f62f8b","patch/World/maps/RazorfenKraulInstance":"8849a5d5aa16929cda8d5b376e9f68c34175d43fc7f7e1237fff0e9fdee459d8"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/razorfen-kraul/source-snapshot.json","coordinateTransform":"three(x,y,z)=(-draft.x,draft.y,draft.z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["38/38 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"blackfathom-deeps","title":"Blackfathom Deeps","mapId":48,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[20,30]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Blackfathom Deeps","theme":"Instanced dungeon","summary":"Fight through Blackfathom Deeps, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Blackfathom Deeps...","unchartedAreaName":"Uncharted Blackfathom Deeps","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1075.1237},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/48-blackfathom/visual.glb","checksum":"a47ad9d57ea9483d24b3231d9b6af183a5e67a75c87e23115a586ad41f8dda54","size":6153284,"triangleCount":208217}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/48-blackfathom/collision.glb","checksum":"3cff675247f3382146e0636a55f059d59a243cd63861950e6b647bd5b714bf6f","size":1105232,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/48-blackfathom/navigation.glb","checksum":"3f3750af3cd035a25ee63f27512088772b2a5faaa558422151ca972eba73e834","size":386652,"triangleCount":30083}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[285.0258,-90.6708,-1057.7993],"max":[1584.4204,7.7551,435.428]},"entrance":{"name":"Blackfathom Deeps Entrance","footPosition":[838.8504,-33.8975,-451.9743],"forward":[-0.5516996718852001,0,0.8340428478452186],"yaw":-0.5844007387776634},"areas":[{"id":"entrance","name":"Blackfathom Deeps Entrance","center":[838.8504,-33.8975,-451.9743],"radius":35},{"id":"area-ghamoo-ra","name":"Ghamoo-ra's Encounter","center":[1129.3844,-46.6642,-347.1123],"radius":42},{"id":"area-lady-sarevess","name":"Lady Sarevess's Encounter","center":[986.8774,-51.1504,-145.1793],"radius":42},{"id":"area-gelihast","name":"Gelihast's Encounter","center":[1099.6134,-42.1638,-518.0153],"radius":42},{"id":"area-lorgus-jett","name":"Lorgus Jett's Encounter","center":[1309.3154,-16.8045,-569.2844],"radius":42},{"id":"area-twilight-lord-kelris","name":"Twilight Lord Kelris's Encounter","center":[1505.7924,-19.8198,-714.5103],"radius":42},{"id":"area-aku-mai","name":"Aku'mai's Encounter","center":[1535.4064,-27.9197,-1012.7993],"radius":42}],"entities":{"entry-4815":{"id":"entry-4815","kind":"mob","name":"Murkshallow Snapclaw","combat":{"level":22,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8379","name":"Disarm","spellId":8379,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4840,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"murloc","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2835-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0188,"labelHeight":3.088,"markerRadius":1.3309}}},"entry-4821":{"id":"entry-4821","kind":"mob","name":"Skittering Crustacean","combat":{"level":22,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-981-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0763,"labelHeight":1.3218,"markerRadius":0.9309}}},"entry-4818":{"id":"entry-4818","kind":"mob","name":"Blindlight Murloc","combat":{"level":22,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6116,"damageMultiplier":1.12},{"id":"spell-7405","name":"Sunder Armor","spellId":7405,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6116,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"murloc","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-4920-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":2.4316,"markerRadius":0.65}}},"entry-4819":{"id":"entry-4819","kind":"mob","name":"Blindlight Muckdweller","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8382","name":"Leech Poison","spellId":8382,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6036,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-11293-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0097,"labelHeight":2.7785,"markerRadius":0.7177}}},"entry-4820":{"id":"entry-4820","kind":"mob","name":"Blindlight Oracle","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6063","name":"Greater Heal","spellId":6063,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":7007,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-9532","name":"Lightning Bolt","spellId":9532,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7007,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-3617-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0072,"labelHeight":2.1541,"markerRadius":0.65}}},"entry-6243":{"id":"entry-6243","kind":"boss","name":"Gelihast","title":"Dungeon Boss","hasLoot":true,"combat":{"level":24,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5547,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-1773-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0111,"labelHeight":3.1255,"markerRadius":0.8203}}},"entry-4805":{"id":"entry-4805","kind":"mob","name":"Blackfathom Sea Witch","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12544","name":"Frost Armor","spellId":12544,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.12},{"id":"spell-122","name":"Frost Nova","spellId":122,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5017,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-4982-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.4671,"labelHeight":6.5645,"markerRadius":1.2676}}},"entry-4822":{"id":"entry-4822","kind":"mob","name":"Snapping Crustacean","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-1001-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0878,"labelHeight":1.4676,"markerRadius":1.0705}}},"entry-4807":{"id":"entry-4807","kind":"mob","name":"Blackfathom Myrmidon","combat":{"level":22,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8379","name":"Disarm","spellId":8379,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6790,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-4762-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.2222,"labelHeight":5.7598,"markerRadius":0.8396}}},"entry-4824":{"id":"entry-4824","kind":"mob","name":"Aku'mai Fisher","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/7fd512b6d0b4caacdaa0d47f61101dffccbe0c7f14b6c6cd3022c55c73d2fe72.glb","rotationY":-1.5707963267948966,"groundOffset":0.0159,"labelHeight":2.7541,"markerRadius":1.7458}}},"entry-4887":{"id":"entry-4887","kind":"boss","name":"Ghamoo-ra","title":"Dungeon Boss","hasLoot":true,"combat":{"level":23,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5407,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-5027-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0239,"labelHeight":4.0389,"markerRadius":2.6186}}},"entry-4831":{"id":"entry-4831","kind":"boss","name":"Lady Sarevess","title":"Dungeon Boss","hasLoot":true,"combat":{"level":23,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6162,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-4979-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-4798":{"id":"entry-4798","kind":"mob","name":"Fallenroot Shadowstalker","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6205","name":"Curse of Weakness","spellId":6205,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6674,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/a8b97785230064bd46404c9b8eaf50380f71ee24f3c78ccedb3746d7e59764a6.glb","rotationY":-1.5707963267948966,"groundOffset":0.0055,"labelHeight":3.536,"markerRadius":1.0248}}},"entry-4799":{"id":"entry-4799","kind":"mob","name":"Fallenroot Hellcaller","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6961,"damageMultiplier":1.12},{"id":"spell-8129","name":"Mana Burn","spellId":8129,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6961,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c40245171481eb04ae88340d52e24044e16b3e0053584016264adcf3e83f9bbf.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-12902":{"id":"entry-12902","kind":"boss","name":"Lorgus Jett","title":"Dungeon Boss","hasLoot":true,"combat":{"level":24,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":7958,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.39,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-12822-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4809":{"id":"entry-4809","kind":"mob","name":"Twilight Acolyte","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-2055","name":"Greater Heal","spellId":2055,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6372,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6372,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2882-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-4811":{"id":"entry-4811","kind":"mob","name":"Twilight Aquamancer","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9672","name":"Frostbolt","spellId":9672,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4700,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2886-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0069,"labelHeight":2.5678,"markerRadius":0.65}}},"entry-4812":{"id":"entry-4812","kind":"mob","name":"Twilight Loreseeker","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18972","name":"Slow","spellId":18972,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6068,"damageMultiplier":1.12},{"id":"spell-8365","name":"Enlarge","spellId":8365,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6068,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2894-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-4827":{"id":"entry-4827","kind":"mob","name":"Deep Pool Threshfin","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3604","name":"Tendon Rip","spellId":3604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4064,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2836-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7193,"markerRadius":3.8653}}},"entry-4810":{"id":"entry-4810","kind":"mob","name":"Twilight Reaver","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8374","name":"Arcing Smash","spellId":8374,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6580,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2898-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-4823":{"id":"entry-4823","kind":"mob","name":"Barbed Crustacean","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-9565-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0992,"labelHeight":1.6133,"markerRadius":1.2101}}},"entry-4830":{"id":"entry-4830","kind":"mob","name":"Old Serra'kis","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-1816-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.7301,"markerRadius":4.5}}},"entry-4813":{"id":"entry-4813","kind":"mob","name":"Twilight Shadowmage","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4498,"damageMultiplier":1.12},{"id":"spell-7645","name":"Dominate Mind","spellId":7645,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4498,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2876-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.5086,"markerRadius":0.65}}},"entry-4814":{"id":"entry-4814","kind":"mob","name":"Twilight Elementalist","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8046","name":"Earth Shock","spellId":8046,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5882,"damageMultiplier":1.12},{"id":"spell-8052","name":"Flame Shock","spellId":8052,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5882,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2890-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-4832":{"id":"entry-4832","kind":"boss","name":"Twilight Lord Kelris","title":"Dungeon Boss","hasLoot":true,"combat":{"level":24,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15587","name":"Mind Blast","spellId":15587,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6656,"damageMultiplier":1.35},{"id":"spell-8399","name":"Sleep","spellId":8399,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":6656,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":4500}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-4939-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-4825":{"id":"entry-4825","kind":"mob","name":"Aku'mai Snapjaw","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8391","name":"Ravage","spellId":8391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4282,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-5026-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0159,"labelHeight":2.7541,"markerRadius":1.7458}}},"entry-4829":{"id":"entry-4829","kind":"boss","name":"Aku'mai","title":"Dungeon Boss","hasLoot":true,"combat":{"level":24,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":7639,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackfathom-deeps/creatures/display-2837-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0204,"labelHeight":11.2552,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-18716","entityId":"entry-4815","position":[865.3284,-43.8504,-506.1951],"yaw":-1.27409,"spawnMask":1},{"id":"creature-18717","entityId":"entry-4821","position":[918.9464,-48.3246,-522.6128],"yaw":-0.471239,"spawnMask":1},{"id":"creature-18718","entityId":"entry-4818","position":[923.6014,-48.7352,-527.9218],"yaw":-0.785398,"spawnMask":1},{"id":"creature-18719","entityId":"entry-4821","position":[954.8964,-51.2127,-486.3358],"yaw":-3.76991,"spawnMask":1},{"id":"creature-18720","entityId":"entry-4818","position":[964.1244,-60.9866,-515.3098],"yaw":-3.61283,"spawnMask":1},{"id":"creature-18721","entityId":"entry-4818","position":[946.0954,-49.9812,-538.2128],"yaw":-4.86947,"spawnMask":1},{"id":"creature-18722","entityId":"entry-4818","position":[941.6884,-49.6978,-524.2401],"yaw":-2.25148,"spawnMask":1},{"id":"creature-18723","entityId":"entry-4815","position":[940.3344,-47.4206,-503.9148],"yaw":-4.4855,"spawnMask":1},{"id":"creature-18724","entityId":"entry-4818","position":[941.2824,-47.6392,-506.9576],"yaw":-5.35816,"spawnMask":1},{"id":"creature-18725","entityId":"entry-4818","position":[983.7794,-45.4856,-469.0928],"yaw":-1.51844,"spawnMask":1},{"id":"creature-18726","entityId":"entry-4821","position":[977.2644,-46.0636,-471.7652],"yaw":-1.32645,"spawnMask":1},{"id":"creature-18727","entityId":"entry-4821","position":[970.6894,-50.978,-550.4887],"yaw":-0.610865,"spawnMask":1},{"id":"creature-18728","entityId":"entry-4821","position":[989.4014,-57.5306,-488.2862],"yaw":-5.81195,"spawnMask":1},{"id":"creature-18729","entityId":"entry-4821","position":[968.1954,-51.0201,-542.4783],"yaw":-4.43314,"spawnMask":1},{"id":"creature-18730","entityId":"entry-4815","position":[993.8154,-62.7002,-582.6],"yaw":-5.61996,"spawnMask":1},{"id":"creature-18731","entityId":"entry-4818","position":[1003.4034,-65.8448,-562.1487],"yaw":-6.05629,"spawnMask":1},{"id":"creature-18732","entityId":"entry-4818","position":[1006.1344,-65.1833,-575.8725],"yaw":-2.32129,"spawnMask":1},{"id":"creature-18733","entityId":"entry-4821","position":[1021.2544,-54.6994,-480.7502],"yaw":-3.61283,"spawnMask":1},{"id":"creature-18734","entityId":"entry-4818","position":[982.4354,-47.5351,-450.7333],"yaw":-3.10669,"spawnMask":1},{"id":"creature-18735","entityId":"entry-4821","position":[1008.6064,-52.6479,-455.4423],"yaw":-3.28122,"spawnMask":1},{"id":"creature-18736","entityId":"entry-4818","position":[1024.7654,-66.3453,-583.5247],"yaw":-0.645772,"spawnMask":1},{"id":"creature-18737","entityId":"entry-4815","position":[1025.0564,-64.612,-592.6982],"yaw":-0.575959,"spawnMask":1},{"id":"creature-18738","entityId":"entry-4821","position":[1029.3874,-65.1373,-549.1639],"yaw":-1.78024,"spawnMask":1},{"id":"creature-18739","entityId":"entry-4821","position":[1060.5804,-50.8579,-508.5369],"yaw":-5.5676,"spawnMask":1},{"id":"creature-18740","entityId":"entry-4819","position":[1087.0334,-42.1516,-533.2437],"yaw":-2.30383,"spawnMask":1},{"id":"creature-18741","entityId":"entry-4820","position":[1093.8174,-42.4438,-532.4403],"yaw":-2.93215,"spawnMask":1},{"id":"creature-18742","entityId":"entry-4819","position":[1097.2334,-42.4578,-536.0711],"yaw":-1.17895,"spawnMask":1},{"id":"creature-18743","entityId":"entry-6243","position":[1099.6134,-42.1638,-518.0153],"yaw":-4.31096,"spawnMask":1},{"id":"creature-18744","entityId":"entry-4820","position":[1115.9654,-42.0259,-554.0696],"yaw":-2.74017,"spawnMask":1},{"id":"creature-18745","entityId":"entry-4819","position":[1109.9304,-42.098,-533.9231],"yaw":-3.45575,"spawnMask":1},{"id":"creature-18746","entityId":"entry-4820","position":[1109.3014,-41.8918,-554.7708],"yaw":-1.78024,"spawnMask":1},{"id":"creature-18747","entityId":"entry-4820","position":[1123.1134,-41.9995,-538.0598],"yaw":-3.45575,"spawnMask":1},{"id":"creature-18748","entityId":"entry-4820","position":[1122.7474,-42.2781,-520.5089],"yaw":-1.5708,"spawnMask":1},{"id":"creature-18749","entityId":"entry-4819","position":[1140.3714,-42.0273,-545.9122],"yaw":-3.42085,"spawnMask":1},{"id":"creature-18750","entityId":"entry-4819","position":[1147.9654,-41.9935,-549.9597],"yaw":-5.2709,"spawnMask":1},{"id":"creature-18751","entityId":"entry-4815","position":[1012.4224,-42.1363,-429.4253],"yaw":-0.575959,"spawnMask":1},{"id":"creature-18752","entityId":"entry-4815","position":[1034.0864,-44.7372,-428.3773],"yaw":-1.8326,"spawnMask":1},{"id":"creature-18753","entityId":"entry-4821","position":[1005.3924,-43.1201,-434.6533],"yaw":-0.802851,"spawnMask":1},{"id":"creature-18754","entityId":"entry-4815","position":[1040.2194,-44.9273,-421.8783],"yaw":-4.01426,"spawnMask":1},{"id":"creature-18755","entityId":"entry-4805","position":[1011.9134,-62.6654,-353.7023],"yaw":-3.00197,"spawnMask":1},{"id":"creature-18756","entityId":"entry-4822","position":[1074.2044,-50.6647,-385.1623],"yaw":-1.95477,"spawnMask":1},{"id":"creature-18989","entityId":"entry-4807","position":[1013.3104,-59.6268,-367.0933],"yaw":-0.24262,"spawnMask":1},{"id":"creature-18990","entityId":"entry-4822","position":[1048.2664,-59.4638,-358.8493],"yaw":-3.61283,"spawnMask":1},{"id":"creature-18992","entityId":"entry-4805","position":[1109.4894,-64.6958,-449.5073],"yaw":-1.82729,"spawnMask":1},{"id":"creature-19226","entityId":"entry-4822","position":[1096.0644,-50.5106,-377.9913],"yaw":-4.04916,"spawnMask":1},{"id":"creature-22274","entityId":"entry-4807","position":[1029.7194,-62.8015,-344.0363],"yaw":-2.00713,"spawnMask":1},{"id":"creature-22318","entityId":"entry-4805","position":[1078.1134,-51.1334,-375.6063],"yaw":-3.91349,"spawnMask":1},{"id":"creature-22332","entityId":"entry-4822","position":[1121.4954,-64.5943,-452.8623],"yaw":-2.93215,"spawnMask":1},{"id":"creature-25066","entityId":"entry-4822","position":[1130.1214,-64.6071,-428.4723],"yaw":-1.8675,"spawnMask":1},{"id":"creature-25067","entityId":"entry-4824","position":[1101.2054,-47.3507,-354.2763],"yaw":-0.261799,"spawnMask":1},{"id":"creature-25730","entityId":"entry-4805","position":[1052.7684,-61.7439,-337.3713],"yaw":-4.01426,"spawnMask":1},{"id":"creature-25731","entityId":"entry-4822","position":[1154.7834,-66.5944,-450.6283],"yaw":-1.18682,"spawnMask":1},{"id":"creature-25732","entityId":"entry-4887","position":[1129.3844,-46.6642,-347.1123],"yaw":-2.23402,"spawnMask":1},{"id":"creature-25733","entityId":"entry-4824","position":[1131.5494,-47.0596,-370.6673],"yaw":-1.69297,"spawnMask":1},{"id":"creature-25734","entityId":"entry-4824","position":[1103.5064,-47.7828,-325.3373],"yaw":-2.04204,"spawnMask":1},{"id":"creature-25735","entityId":"entry-4805","position":[1148.3734,-64.8023,-420.9323],"yaw":-6.19592,"spawnMask":1},{"id":"creature-25736","entityId":"entry-4805","position":[1061.6034,-61.0902,-321.4033],"yaw":-1.95477,"spawnMask":1},{"id":"creature-25737","entityId":"entry-4807","position":[1173.5004,-65.3085,-406.0413],"yaw":-6.14356,"spawnMask":1},{"id":"creature-25904","entityId":"entry-4824","position":[1132.4574,-47.7183,-321.1733],"yaw":-5.21853,"spawnMask":1},{"id":"creature-25905","entityId":"entry-4824","position":[1150.3334,-47.2828,-335.1243],"yaw":-5.11381,"spawnMask":1},{"id":"creature-26005","entityId":"entry-4824","position":[1156.9454,-47.1852,-357.8363],"yaw":-2.04204,"spawnMask":1},{"id":"creature-26006","entityId":"entry-4822","position":[1063.9334,-62.8536,-307.4233],"yaw":-3.28122,"spawnMask":1},{"id":"creature-26007","entityId":"entry-4822","position":[1175.6634,-67.245,-438.8423],"yaw":-4.08407,"spawnMask":1},{"id":"creature-26008","entityId":"entry-4822","position":[1202.1774,-59.3628,-369.7773],"yaw":-3.735,"spawnMask":1},{"id":"creature-26010","entityId":"entry-4807","position":[1195.1034,-66.7223,-391.3153],"yaw":-2.30383,"spawnMask":1},{"id":"creature-26011","entityId":"entry-4807","position":[1182.3344,-53.6714,-345.6643],"yaw":-1.27409,"spawnMask":1},{"id":"creature-26012","entityId":"entry-4805","position":[1203.2444,-69.3139,-401.0263],"yaw":-6.0845,"spawnMask":1},{"id":"creature-26013","entityId":"entry-4822","position":[1198.6074,-57.9497,-316.7743],"yaw":-2.82743,"spawnMask":1},{"id":"creature-26014","entityId":"entry-4807","position":[1203.0084,-56.8331,-335.1833],"yaw":-0.593412,"spawnMask":1},{"id":"creature-26015","entityId":"entry-4822","position":[1188.9784,-58.8605,-301.6523],"yaw":-2.93215,"spawnMask":1},{"id":"creature-26016","entityId":"entry-4805","position":[1188.9894,-57.498,-310.6593],"yaw":-0.823047,"spawnMask":1},{"id":"creature-26017","entityId":"entry-4822","position":[1149.4904,-56.8475,-279.2933],"yaw":-3.22886,"spawnMask":1},{"id":"creature-26018","entityId":"entry-4805","position":[1098.4404,-62.9785,-273.3653],"yaw":-2.14675,"spawnMask":1},{"id":"creature-26028","entityId":"entry-4822","position":[1088.9334,-65.1421,-284.6283],"yaw":-4.11898,"spawnMask":1},{"id":"creature-26051","entityId":"entry-4807","position":[1123.6384,-60.2306,-269.1463],"yaw":-1.97222,"spawnMask":1},{"id":"creature-26052","entityId":"entry-4822","position":[1167.1744,-59.3145,-284.6743],"yaw":-3.45575,"spawnMask":1},{"id":"creature-26108","entityId":"entry-4807","position":[1066.8524,-69.4201,-287.0453],"yaw":-2.74017,"spawnMask":1},{"id":"creature-26109","entityId":"entry-4807","position":[1103.3154,-62.1618,-256.9823],"yaw":-4.86947,"spawnMask":1},{"id":"creature-26110","entityId":"entry-4805","position":[1099.2134,-62.2528,-244.0893],"yaw":-6.17846,"spawnMask":1},{"id":"creature-26111","entityId":"entry-4822","position":[1044.8814,-70.6708,-274.7563],"yaw":-0.628319,"spawnMask":1},{"id":"creature-26112","entityId":"entry-4807","position":[1098.0314,-65.3863,-221.2543],"yaw":-0.05236,"spawnMask":1},{"id":"creature-26113","entityId":"entry-4805","position":[1100.1504,-62.263,-236.9313],"yaw":-4.72522,"spawnMask":1},{"id":"creature-26114","entityId":"entry-4807","position":[1032.4724,-64.0163,-259.7613],"yaw":-4.59022,"spawnMask":1},{"id":"creature-26115","entityId":"entry-4805","position":[1040.7064,-47.8615,-220.2843],"yaw":-4.43314,"spawnMask":1},{"id":"creature-26116","entityId":"entry-4807","position":[1014.1244,-47.8255,-216.6683],"yaw":-0.820305,"spawnMask":1},{"id":"creature-26117","entityId":"entry-4805","position":[1029.5394,-47.9678,-204.9533],"yaw":-3.45575,"spawnMask":1},{"id":"creature-26118","entityId":"entry-4807","position":[992.9334,-47.9948,-241.1013],"yaw":-3.29867,"spawnMask":1},{"id":"creature-26119","entityId":"entry-4805","position":[988.3514,-47.2725,-229.9673],"yaw":-0.296706,"spawnMask":1},{"id":"creature-26120","entityId":"entry-4805","position":[993.9084,-47.4837,-214.9543],"yaw":-5.23599,"spawnMask":1},{"id":"creature-26121","entityId":"entry-4807","position":[1014.7004,-49.8076,-159.0013],"yaw":-4.36332,"spawnMask":1},{"id":"creature-26129","entityId":"entry-4831","position":[986.8774,-51.1504,-145.1793],"yaw":-3.60618,"spawnMask":1},{"id":"creature-26130","entityId":"entry-4822","position":[1235.9644,-55.9029,-336.8143],"yaw":-6.12611,"spawnMask":1},{"id":"creature-26131","entityId":"entry-4807","position":[1221.8424,-56.7661,-338.1593],"yaw":-0.733038,"spawnMask":1},{"id":"creature-26132","entityId":"entry-4822","position":[1255.2964,-51.4319,-320.3023],"yaw":-3.45575,"spawnMask":1},{"id":"creature-26133","entityId":"entry-4805","position":[1239.6674,-55.0553,-330.1073],"yaw":-4.88692,"spawnMask":1},{"id":"creature-26134","entityId":"entry-4822","position":[1254.3084,-51.4933,-337.2573],"yaw":-1.78024,"spawnMask":1},{"id":"creature-26135","entityId":"entry-4807","position":[1201.6774,-67.9757,-389.5533],"yaw":-5.24776,"spawnMask":1},{"id":"creature-26137","entityId":"entry-4798","position":[1284.4504,-44.8591,-315.4343],"yaw":-3.94444,"spawnMask":1},{"id":"creature-26138","entityId":"entry-4807","position":[1301.5184,-44.2049,-310.7293],"yaw":-3.50811,"spawnMask":1},{"id":"creature-26139","entityId":"entry-4807","position":[1295.0474,-45.2704,-329.7783],"yaw":-6.21337,"spawnMask":1},{"id":"creature-26140","entityId":"entry-4798","position":[1305.3204,-47.3261,-371.1513],"yaw":-6.03884,"spawnMask":1},{"id":"creature-26141","entityId":"entry-4798","position":[1295.9144,-47.7836,-373.8163],"yaw":-2.82743,"spawnMask":1},{"id":"creature-26142","entityId":"entry-4807","position":[1308.1444,-42.7269,-314.9963],"yaw":-0.767945,"spawnMask":1},{"id":"creature-26143","entityId":"entry-4805","position":[1317.6234,-52.127,-414.7703],"yaw":-3.40339,"spawnMask":1},{"id":"creature-26144","entityId":"entry-4805","position":[1326.7834,-52.0565,-414.2193],"yaw":-5.89921,"spawnMask":1},{"id":"creature-26145","entityId":"entry-4805","position":[1327.4164,-51.9699,-442.2203],"yaw":-0.733038,"spawnMask":1},{"id":"creature-26146","entityId":"entry-4805","position":[1322.3624,-52.0302,-437.3683],"yaw":-3.94444,"spawnMask":1},{"id":"creature-26147","entityId":"entry-4798","position":[1323.7414,-52.2958,-416.1783],"yaw":-4.67099,"spawnMask":1},{"id":"creature-26149","entityId":"entry-4798","position":[1294.2604,-48.9882,-511.1229],"yaw":-2.63545,"spawnMask":1},{"id":"creature-26150","entityId":"entry-4807","position":[1271.9224,-45.4953,-513.388],"yaw":-2.14675,"spawnMask":1},{"id":"creature-26151","entityId":"entry-4798","position":[1289.8424,-44.4346,-536.0454],"yaw":-2.84489,"spawnMask":1},{"id":"creature-26152","entityId":"entry-4799","position":[1299.8954,-46.7623,-525.504],"yaw":-5.41052,"spawnMask":1},{"id":"creature-26153","entityId":"entry-4798","position":[1299.3274,-45.7702,-531.7362],"yaw":-5.67232,"spawnMask":1},{"id":"creature-26154","entityId":"entry-4807","position":[1277.0284,-45.9814,-509.0327],"yaw":-5.81195,"spawnMask":1},{"id":"creature-26155","entityId":"entry-4799","position":[1375.9114,-24.6594,-534.862],"yaw":-2.40855,"spawnMask":1},{"id":"creature-26156","entityId":"entry-4799","position":[1383.2744,-24.8947,-530.2737],"yaw":-5.88176,"spawnMask":1},{"id":"creature-26157","entityId":"entry-4799","position":[1359.0974,-19.3024,-550.0856],"yaw":-1.18682,"spawnMask":1},{"id":"creature-26170","entityId":"entry-4805","position":[1353.3784,-16.9327,-552.9763],"yaw":-6.14356,"spawnMask":1},{"id":"creature-26173","entityId":"entry-12902","position":[1309.3154,-16.8045,-569.2844],"yaw":-4.90438,"spawnMask":1},{"id":"creature-26285","entityId":"entry-4807","position":[1344.6084,-12.2449,-572.8984],"yaw":-4.50295,"spawnMask":1},{"id":"creature-26286","entityId":"entry-4798","position":[1249.6974,-39.3578,-562.0006],"yaw":-1.01229,"spawnMask":1},{"id":"creature-26287","entityId":"entry-4807","position":[1305.0364,-17.3836,-567.6458],"yaw":-1.48353,"spawnMask":1},{"id":"creature-26288","entityId":"entry-4799","position":[1311.1924,-15.9006,-573.3728],"yaw":-0.383972,"spawnMask":1},{"id":"creature-26289","entityId":"entry-4799","position":[1257.3244,-41.1653,-558.0366],"yaw":-3.35103,"spawnMask":1},{"id":"creature-26290","entityId":"entry-4805","position":[1231.3984,-36.0633,-561.933],"yaw":-3.4383,"spawnMask":1},{"id":"creature-26291","entityId":"entry-4798","position":[1233.4674,-32.5687,-608.7158],"yaw":-0.226893,"spawnMask":1},{"id":"creature-26292","entityId":"entry-4799","position":[1310.9314,-15.8012,-596.2423],"yaw":-4.43314,"spawnMask":1},{"id":"creature-26293","entityId":"entry-4805","position":[1261.2264,-28.6422,-604.3123],"yaw":-4.53786,"spawnMask":1},{"id":"creature-26294","entityId":"entry-4799","position":[1232.9024,-33.2236,-599.7879],"yaw":-0.645772,"spawnMask":1},{"id":"creature-26295","entityId":"entry-4805","position":[1267.1024,-27.1188,-595.9779],"yaw":-3.24631,"spawnMask":1},{"id":"creature-26296","entityId":"entry-4805","position":[1310.0294,-16.4139,-604.2775],"yaw":-1.50098,"spawnMask":1},{"id":"creature-26297","entityId":"entry-4805","position":[1205.1894,-37.1783,-568.4123],"yaw":-4.20624,"spawnMask":1},{"id":"creature-26299","entityId":"entry-4805","position":[1200.7834,-40.2605,-528.6107],"yaw":-5.20108,"spawnMask":1},{"id":"creature-26300","entityId":"entry-4805","position":[1194.6654,-39.4619,-539.8285],"yaw":-2.07694,"spawnMask":1},{"id":"creature-26301","entityId":"entry-4807","position":[1198.0394,-37.0217,-592.0917],"yaw":-1.88496,"spawnMask":1},{"id":"creature-26302","entityId":"entry-4805","position":[1205.9744,-35.5553,-600.2018],"yaw":-1.88496,"spawnMask":1},{"id":"creature-26303","entityId":"entry-4805","position":[1166.9274,-34.9972,-599.9034],"yaw":-0.139626,"spawnMask":1},{"id":"creature-26304","entityId":"entry-4807","position":[1192.3024,-36.0819,-611.9872],"yaw":-3.75246,"spawnMask":1},{"id":"creature-26305","entityId":"entry-4807","position":[1196.9494,-35.8462,-617.4831],"yaw":-1.18682,"spawnMask":1},{"id":"creature-26306","entityId":"entry-4799","position":[1201.2204,-36.1793,-604.2433],"yaw":-2.53691,"spawnMask":1},{"id":"creature-26307","entityId":"entry-4798","position":[1174.3314,-36.7613,-644.9081],"yaw":-6.19592,"spawnMask":1},{"id":"creature-26308","entityId":"entry-4798","position":[1155.5764,-30.6659,-599.5113],"yaw":-1.37881,"spawnMask":1},{"id":"creature-26309","entityId":"entry-4799","position":[1165.7064,-34.6836,-645.0506],"yaw":-3.24631,"spawnMask":1},{"id":"creature-26311","entityId":"entry-4809","position":[1379.6314,-23.978,-604.6868],"yaw":-4.04916,"spawnMask":1},{"id":"creature-26312","entityId":"entry-4811","position":[1382.4014,-23.9801,-599.4408],"yaw":-3.10669,"spawnMask":1},{"id":"creature-26313","entityId":"entry-4812","position":[1381.4924,-23.9775,-589.0077],"yaw":-1.32645,"spawnMask":1},{"id":"creature-26314","entityId":"entry-4827","position":[1387.7034,-32.3631,-636.2891],"yaw":-3.59538,"spawnMask":1},{"id":"creature-26315","entityId":"entry-4810","position":[1405.2804,-31.6778,-589.9234],"yaw":-2.35619,"spawnMask":1},{"id":"creature-26316","entityId":"entry-4810","position":[1408.9734,-31.6778,-615.4781],"yaw":-3.83972,"spawnMask":1},{"id":"creature-26317","entityId":"entry-4810","position":[1409.0654,-31.6778,-586.3599],"yaw":-5.5676,"spawnMask":1},{"id":"creature-26318","entityId":"entry-4810","position":[1412.3264,-31.6856,-619.0529],"yaw":-0.907571,"spawnMask":1},{"id":"creature-26319","entityId":"entry-4798","position":[1407.1454,-23.8784,-518.7581],"yaw":-0.383972,"spawnMask":1},{"id":"creature-26320","entityId":"entry-4810","position":[1431.5674,-23.9745,-551.0693],"yaw":-3.59538,"spawnMask":1},{"id":"creature-26321","entityId":"entry-4810","position":[1412.5164,-23.9775,-552.9864],"yaw":-5.93412,"spawnMask":1},{"id":"creature-26322","entityId":"entry-4812","position":[1406.8234,-23.9775,-554.6237],"yaw":-2.93215,"spawnMask":1},{"id":"creature-26323","entityId":"entry-4807","position":[1400.2454,-23.9574,-516.1727],"yaw":-3.47321,"spawnMask":1},{"id":"creature-26324","entityId":"entry-4812","position":[1409.3704,-31.6865,-637.9651],"yaw":-5.28835,"spawnMask":1},{"id":"creature-26325","entityId":"entry-4811","position":[1435.7134,-23.9432,-553.2061],"yaw":-0.506145,"spawnMask":1},{"id":"creature-26326","entityId":"entry-4823","position":[1448.4264,-34.3605,-593.5952],"yaw":-1.65806,"spawnMask":1},{"id":"creature-26327","entityId":"entry-4812","position":[1451.5934,-23.8739,-613.0376],"yaw":-5.39307,"spawnMask":1},{"id":"creature-26328","entityId":"entry-4810","position":[1480.8534,-23.6257,-618.3168],"yaw":-1.8326,"spawnMask":1},{"id":"creature-26330","entityId":"entry-4811","position":[1485.4404,-23.6257,-613.9219],"yaw":-0.191986,"spawnMask":1},{"id":"creature-26331","entityId":"entry-4811","position":[1451.6854,-23.8749,-620.5879],"yaw":-1.5708,"spawnMask":1},{"id":"creature-26333","entityId":"entry-4812","position":[1485.2404,-23.7091,-615.9444],"yaw":-6.23816,"spawnMask":1},{"id":"creature-27352","entityId":"entry-4812","position":[1488.8964,-23.6257,-618.826],"yaw":-4.50295,"spawnMask":1},{"id":"creature-27390","entityId":"entry-4827","position":[1440.0304,-34.8982,-646.2792],"yaw":-6.0912,"spawnMask":1},{"id":"creature-27396","entityId":"entry-4811","position":[1409.1724,-24.0012,-664.6293],"yaw":-1.18682,"spawnMask":1},{"id":"creature-27397","entityId":"entry-4809","position":[1421.1424,-23.9799,-664.2403],"yaw":-2.30383,"spawnMask":1},{"id":"creature-27399","entityId":"entry-4810","position":[1429.0284,-24.0342,-664.4133],"yaw":-3.35103,"spawnMask":1},{"id":"creature-27400","entityId":"entry-4827","position":[1413.4744,-30.9254,-677.1873],"yaw":-3.75246,"spawnMask":1},{"id":"creature-27401","entityId":"entry-4827","position":[1465.3284,-34.1717,-653.4282],"yaw":-3.66519,"spawnMask":1},{"id":"creature-27403","entityId":"entry-4813","position":[1486.2804,-19.8143,-667.6373],"yaw":-3.10669,"spawnMask":1},{"id":"creature-27404","entityId":"entry-4814","position":[1476.6574,-19.8142,-683.5923],"yaw":-3.08923,"spawnMask":1},{"id":"creature-27405","entityId":"entry-4827","position":[1503.8924,-34.2991,-647.4964],"yaw":-6.14356,"spawnMask":1},{"id":"creature-27406","entityId":"entry-4823","position":[1495.0054,-30.8958,-675.2103],"yaw":-3.10669,"spawnMask":1},{"id":"creature-27408","entityId":"entry-4812","position":[1509.0794,-23.6453,-638.8727],"yaw":-1.15192,"spawnMask":1},{"id":"creature-27409","entityId":"entry-4813","position":[1500.0474,-19.6973,-658.2518],"yaw":-3.68265,"spawnMask":1},{"id":"creature-27410","entityId":"entry-4814","position":[1505.6144,-19.8142,-667.1513],"yaw":-4.43314,"spawnMask":1},{"id":"creature-27411","entityId":"entry-4827","position":[1505.5584,-32.2957,-613.623],"yaw":-0.907571,"spawnMask":1},{"id":"creature-27412","entityId":"entry-4811","position":[1509.1784,-23.6257,-613.6422],"yaw":-6.14356,"spawnMask":1},{"id":"creature-27413","entityId":"entry-4812","position":[1504.9964,-23.6636,-634.2805],"yaw":-2.84489,"spawnMask":1},{"id":"creature-27415","entityId":"entry-4811","position":[1503.1644,-23.6257,-614.3477],"yaw":-3.87463,"spawnMask":1},{"id":"creature-27416","entityId":"entry-4827","position":[1482.9504,-37.1262,-715.1423],"yaw":-3.59538,"spawnMask":1},{"id":"creature-27417","entityId":"entry-4814","position":[1476.6704,-19.8142,-699.3093],"yaw":-3.10669,"spawnMask":1},{"id":"creature-27418","entityId":"entry-4827","position":[1530.4274,-31.263,-652.9899],"yaw":-0.191986,"spawnMask":1},{"id":"creature-27419","entityId":"entry-4823","position":[1531.0254,-29.8694,-629.5843],"yaw":-4.50295,"spawnMask":1},{"id":"creature-27420","entityId":"entry-4813","position":[1506.4394,-19.8142,-691.6213],"yaw":-3.42085,"spawnMask":1},{"id":"creature-27421","entityId":"entry-4814","position":[1524.9594,-19.8142,-667.2363],"yaw":-0.017453,"spawnMask":1},{"id":"creature-27422","entityId":"entry-4814","position":[1492.5224,-19.8142,-686.6123],"yaw":-3.1765,"spawnMask":1},{"id":"creature-27423","entityId":"entry-4814","position":[1519.9754,-19.8142,-690.6793],"yaw":-6.03884,"spawnMask":1},{"id":"creature-27424","entityId":"entry-4832","position":[1505.7924,-19.8198,-714.5103],"yaw":-4.74729,"spawnMask":1},{"id":"creature-27425","entityId":"entry-4813","position":[1534.2714,-19.8142,-698.6483],"yaw":-6.24828,"spawnMask":1},{"id":"creature-27427","entityId":"entry-4813","position":[1533.9424,-19.8142,-683.2003],"yaw":-0.034907,"spawnMask":1},{"id":"creature-27429","entityId":"entry-4825","position":[1482.7234,-19.8142,-773.7263],"yaw":-1.32645,"spawnMask":1},{"id":"creature-27430","entityId":"entry-4825","position":[1516.3204,-19.826,-778.9123],"yaw":-4.04916,"spawnMask":1},{"id":"creature-27431","entityId":"entry-4825","position":[1484.6074,-19.8142,-810.3283],"yaw":-3.10669,"spawnMask":1},{"id":"creature-27432","entityId":"entry-4825","position":[1515.8074,-20.1863,-811.9693],"yaw":-0.897793,"spawnMask":1},{"id":"creature-27433","entityId":"entry-4829","position":[1535.4064,-27.9197,-1012.7993],"yaw":-1.5708,"spawnMask":1},{"id":"creature-27434","entityId":"entry-4825","position":[1527.8914,-27.8182,-915.5543],"yaw":-1.18682,"spawnMask":1},{"id":"creature-27435","entityId":"entry-4825","position":[1507.5384,-27.8346,-955.1583],"yaw":-2.30383,"spawnMask":1},{"id":"creature-27436","entityId":"entry-4825","position":[1539.4204,-28.0513,-966.5553],"yaw":-3.35103,"spawnMask":1}],"roamingPacks":[{"id":"patrol-26148","name":"Fallenroot Shadowstalker Patrol","speed":1.15,"pathId":261480,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1319.7714,-51.2372,-454.9183],[1309.0024,-49.8035,-492.5685],[1287.0394,-47.1656,-523.2242],[1309.0024,-49.8035,-492.5685]],"members":[{"id":"member","entityId":"entry-4798","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26298","name":"Fallenroot Hellcaller Patrol","speed":1.15,"pathId":262980,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1220.1264,-34.4464,-562.4895],[1260.7964,-42.6827,-548.5083],[1273.3544,-42.4628,-536.849],[1292.1694,-47.5434,-517.1072],[1273.3544,-42.4628,-536.849],[1260.7964,-42.6827,-548.5083]],"members":[{"id":"member","entityId":"entry-4799","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26310","name":"Fallenroot Shadowstalker Patrol","speed":1.15,"pathId":263100,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1219.2804,-33.6367,-602.4849],[1256.8704,-29.544,-602.6368],[1291.1034,-19.6772,-593.3188],[1256.8704,-29.544,-602.6368]],"members":[{"id":"member","entityId":"entry-4798","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26329","name":"Twilight Acolyte Patrol","speed":1.15,"pathId":263290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1407.9994,-31.7897,-645.4236],[1407.1974,-31.7613,-588.4812],[1400.6124,-31.7601,-588.0396],[1385.0094,-24.0607,-588.0209],[1400.6124,-31.7601,-588.0396],[1407.1974,-31.7613,-588.4812],[1407.7364,-31.7901,-573.0068],[1407.1974,-31.7613,-588.4812]],"members":[{"id":"member","entityId":"entry-4809","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-26332","name":"Twilight Reaver Patrol","speed":1.15,"pathId":263320,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1441.2704,-23.9576,-617.103],[1504.2474,-23.7119,-616.8687],[1503.9534,-23.7665,-634.5333],[1504.2474,-23.7119,-616.8687]],"members":[{"id":"member","entityId":"entry-4810","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27402","name":"Old Serra'kis Patrol","speed":1.15,"pathId":274020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1433.7044,-44.6514,-728.3613],[1461.6304,-37.186,-747.2663],[1478.4314,-32.9746,-729.1443],[1449.7544,-40.5623,-716.0163]],"members":[{"id":"member","entityId":"entry-4830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27407","name":"Twilight Reaver Patrol","speed":1.15,"pathId":274070,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1503.9514,-23.7665,-634.5332],[1501.4404,-23.717,-618.0234],[1441.2694,-23.9577,-617.1029],[1501.4404,-23.717,-618.0234]],"members":[{"id":"member","entityId":"entry-4810","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27414","name":"Twilight Reaver Patrol","speed":1.15,"pathId":274140,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1504.2474,-23.7119,-616.8686],[1503.9524,-23.7665,-634.5332],[1504.2474,-23.7119,-616.8686],[1441.2704,-23.9576,-617.103]],"members":[{"id":"member","entityId":"entry-4810","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27426","name":"Twilight Shadowmage Patrol","speed":1.15,"pathId":274260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1476.3914,-19.8978,-733.8763],[1476.3044,-19.8978,-706.4343]],"members":[{"id":"member","entityId":"entry-4813","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27428","name":"Twilight Shadowmage Patrol","speed":1.15,"pathId":274280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1535.8994,-19.8975,-705.2573],[1534.2364,-19.8975,-732.6243]],"members":[{"id":"member","entityId":"entry-4813","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-25732","name":"Ghamoo-ra","position":[1129.3844,-46.6642,-347.1123]},{"id":"creature-26129","name":"Lady Sarevess","position":[986.8774,-51.1504,-145.1793]},{"id":"creature-18743","name":"Gelihast","position":[1099.6134,-42.1638,-518.0153]},{"id":"creature-26173","name":"Lorgus Jett","position":[1309.3154,-16.8045,-569.2844]},{"id":"creature-27424","name":"Twilight Lord Kelris","position":[1505.7924,-19.8198,-714.5103]},{"id":"creature-27433","name":"Aku'mai","position":[1535.4064,-27.9197,-1012.7993]}],"objectiveOrder":[{"id":"creature-25732","name":"Ghamoo-ra","position":[1129.3844,-46.6642,-347.1123]},{"id":"creature-26129","name":"Lady Sarevess","position":[986.8774,-51.1504,-145.1793]},{"id":"creature-18743","name":"Gelihast","position":[1099.6134,-42.1638,-518.0153]},{"id":"creature-26173","name":"Lorgus Jett","position":[1309.3154,-16.8045,-569.2844]},{"id":"creature-27424","name":"Twilight Lord Kelris","position":[1505.7924,-19.8198,-714.5103]},{"id":"creature-27433","name":"Aku'mai","position":[1535.4064,-27.9197,-1012.7993]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3086,"id":19018,"map":48,"orientation":0.471238,"phaseMask":1,"position_x":-331.169,"position_y":-27.6077,"position_z":-72.2552,"rotation0":0,"rotation1":0,"rotation2":0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3087,"id":19018,"map":48,"orientation":3.10665,"phaseMask":1,"position_x":-346.634,"position_y":291.605,"position_z":-70.7872,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174693,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":3088,"id":19018,"map":48,"orientation":3.45576,"phaseMask":1,"position_x":-348.722,"position_y":-34.5047,"position_z":-68.4577,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3089,"id":19018,"map":48,"orientation":2.9845,"phaseMask":1,"position_x":-354.931,"position_y":308.109,"position_z":-69.8227,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784664,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":3090,"id":19018,"map":48,"orientation":4.95674,"phaseMask":1,"position_x":-421.114,"position_y":121.535,"position_z":-70.3831,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":3091,"id":19018,"map":48,"orientation":0.139624,"phaseMask":1,"position_x":-427.409,"position_y":311.43,"position_z":-65.817,"rotation0":0,"rotation1":0,"rotation2":0.0697556,"rotation3":0.997564,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3092,"id":19018,"map":48,"orientation":1.58825,"phaseMask":1,"position_x":-489.734,"position_y":144.383,"position_z":-72.4147,"rotation0":0,"rotation1":0,"rotation2":0.71325,"rotation3":0.70091,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3093,"id":19018,"map":48,"orientation":2.16421,"phaseMask":1,"position_x":-686.755,"position_y":-34.1224,"position_z":-36.9234,"rotation0":0,"rotation1":0,"rotation2":0.882947,"rotation3":0.469473,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3094,"id":19018,"map":48,"orientation":2.93214,"phaseMask":1,"position_x":-713.454,"position_y":-21.8693,"position_z":-39.3414,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104536,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3095,"id":19018,"map":48,"orientation":1.6057,"phaseMask":1,"position_x":-756.047,"position_y":-176.359,"position_z":-54.119,"rotation0":0,"rotation1":0,"rotation2":0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3096,"id":19018,"map":48,"orientation":0.977383,"phaseMask":1,"position_x":-760.39,"position_y":-52.2364,"position_z":-41.6095,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":3097,"id":19018,"map":48,"orientation":0.471238,"phaseMask":1,"position_x":-760.683,"position_y":-155.534,"position_z":-51.5062,"rotation0":0,"rotation1":0,"rotation2":0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3098,"id":19018,"map":48,"orientation":5.77704,"phaseMask":1,"position_x":-770.512,"position_y":-189.072,"position_z":-48.8139,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":3099,"id":19018,"map":48,"orientation":3.45576,"phaseMask":1,"position_x":-835.627,"position_y":-47.6639,"position_z":-35.6945,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":3100,"id":19018,"map":48,"orientation":1.71042,"phaseMask":1,"position_x":-870.495,"position_y":-105.115,"position_z":-35.4094,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32607,"id":19018,"map":48,"orientation":0.628319,"phaseMask":1,"position_x":-320.238,"position_y":65.9714,"position_z":-63.7392,"rotation0":0,"rotation1":0,"rotation2":0.309017,"rotation3":0.951056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32608,"id":2045,"map":48,"orientation":0.907571,"phaseMask":1,"position_x":-345.151,"position_y":-10.1984,"position_z":-70.4985,"rotation0":0,"rotation1":0,"rotation2":0.438371,"rotation3":0.898794,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":32609,"id":19018,"map":48,"orientation":5.70723,"phaseMask":1,"position_x":-347.471,"position_y":76.0812,"position_z":-61.8706,"rotation0":0,"rotation1":0,"rotation2":-0.284015,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":32610,"id":103015,"map":48,"orientation":3.14159,"phaseMask":1,"position_x":-413.324,"position_y":43.6505,"position_z":-47.9681,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32612,"id":1732,"map":48,"orientation":2.26893,"phaseMask":1,"position_x":-401.418,"position_y":46.9318,"position_z":-47.7134,"rotation0":0,"rotation1":0,"rotation2":0.906308,"rotation3":0.422617,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32613,"id":2045,"map":48,"orientation":-0.715585,"phaseMask":1,"position_x":-328.711,"position_y":211.076,"position_z":-69.6185,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32614,"id":13949,"map":48,"orientation":2.80998,"phaseMask":1,"position_x":-330.544,"position_y":212.014,"position_z":-69.706,"rotation0":0,"rotation1":0,"rotation2":0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32615,"id":19018,"map":48,"orientation":1.62316,"phaseMask":1,"position_x":-472.575,"position_y":130.778,"position_z":-72.3319,"rotation0":0,"rotation1":0,"rotation2":0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32616,"id":2045,"map":48,"orientation":1.76278,"phaseMask":1,"position_x":-494.592,"position_y":106.927,"position_z":-73.508,"rotation0":0,"rotation1":0,"rotation2":0.771624,"rotation3":0.636079,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":32617,"id":19018,"map":48,"orientation":2.74016,"phaseMask":1,"position_x":-400.427,"position_y":279.812,"position_z":-71.1439,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32618,"id":19018,"map":48,"orientation":-2.02458,"phaseMask":1,"position_x":-405.571,"position_y":319.074,"position_z":-68.079,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32619,"id":19018,"map":48,"orientation":0.558504,"phaseMask":1,"position_x":-410.671,"position_y":348.695,"position_z":-71.7385,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32620,"id":1622,"map":48,"orientation":2.40855,"phaseMask":1,"position_x":-331.144,"position_y":362.221,"position_z":-52.3723,"rotation0":0,"rotation1":0,"rotation2":0.93358,"rotation3":0.35837,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32621,"id":1733,"map":48,"orientation":-0.855212,"phaseMask":1,"position_x":-351.981,"position_y":402.932,"position_z":-53.4195,"rotation0":0,"rotation1":0,"rotation2":-0.414694,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32622,"id":21327,"map":48,"orientation":3.14593,"phaseMask":1,"position_x":-534.789,"position_y":317.353,"position_z":-49.8213,"rotation0":-0.0191727,"rotation1":0.0212412,"rotation2":-0.999589,"rotation3":0.00176052,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32624,"id":3689,"map":48,"orientation":-1.46608,"phaseMask":1,"position_x":-614.864,"position_y":252.745,"position_z":-49.4881,"rotation0":0,"rotation1":0,"rotation2":-0.669132,"rotation3":0.743144,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32682,"id":21117,"map":48,"orientation":-1.5708,"phaseMask":1,"position_x":-818.361,"position_y":-200.647,"position_z":-25.7911,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32683,"id":1622,"map":48,"orientation":-0.767945,"phaseMask":1,"position_x":-454.55,"position_y":-34.1752,"position_z":-31.5826,"rotation0":0,"rotation1":0,"rotation2":-0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32684,"id":75298,"map":48,"orientation":3.08923,"phaseMask":1,"position_x":-450.61,"position_y":-38.0686,"position_z":-31.7772,"rotation0":0,"rotation1":0,"rotation2":0.999657,"rotation3":0.0261783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32685,"id":19018,"map":48,"orientation":-1.27409,"phaseMask":1,"position_x":-753.173,"position_y":-21.3254,"position_z":-37.499,"rotation0":0,"rotation1":0,"rotation2":-0.594823,"rotation3":0.803857,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32686,"id":177964,"map":48,"orientation":-2.44346,"phaseMask":1,"position_x":-782.021,"position_y":-63.5876,"position_z":-45.0935,"rotation0":0,"rotation1":0,"rotation2":-0.939692,"rotation3":0.342021,"spawnMask":1,"spawntimesecs":5,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32687,"id":19018,"map":48,"orientation":-2.33874,"phaseMask":1,"position_x":-700.195,"position_y":-100.683,"position_z":-35.6787,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32688,"id":75295,"map":48,"orientation":1.48353,"phaseMask":1,"position_x":-743.061,"position_y":-111.067,"position_z":-30.0483,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737277,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32689,"id":19018,"map":48,"orientation":-2.98451,"phaseMask":1,"position_x":-727.025,"position_y":-118.419,"position_z":-37.0088,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32690,"id":2045,"map":48,"orientation":-0.593412,"phaseMask":1,"position_x":-726.43,"position_y":-159.34,"position_z":-56.596,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32691,"id":19018,"map":48,"orientation":0.575959,"phaseMask":1,"position_x":-741.055,"position_y":-152.381,"position_z":-56.7611,"rotation0":0,"rotation1":0,"rotation2":0.284016,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32692,"id":19018,"map":48,"orientation":1.29154,"phaseMask":1,"position_x":-807.617,"position_y":-120.467,"position_z":-37.3081,"rotation0":0,"rotation1":0,"rotation2":0.601814,"rotation3":0.798637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32930,"id":21118,"map":48,"orientation":-1.51844,"phaseMask":1,"position_x":-813.47,"position_y":-158.535,"position_z":-24.5271,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32931,"id":21121,"map":48,"orientation":0.925024,"phaseMask":1,"position_x":-823.88,"position_y":-158.535,"position_z":-24.5278,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32932,"id":21119,"map":48,"orientation":0.10472,"phaseMask":1,"position_x":-813.578,"position_y":-170.461,"position_z":-24.5276,"rotation0":0,"rotation1":0,"rotation2":0.0523361,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32933,"id":21120,"map":48,"orientation":2.82743,"phaseMask":1,"position_x":-823.955,"position_y":-170.407,"position_z":-24.5267,"rotation0":0,"rotation1":0,"rotation2":0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32934,"id":19018,"map":48,"orientation":5.8294,"phaseMask":1,"position_x":-781.432,"position_y":-165.561,"position_z":-47.9078,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":32935,"id":103016,"map":48,"orientation":3.14159,"phaseMask":1,"position_x":-839.619,"position_y":-477.904,"position_z":-33.7343,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268935,"id":94039,"map":48,"orientation":3.14159,"phaseMask":1,"position_x":-413.324,"position_y":43.6505,"position_z":-47.9681,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268936,"id":94039,"map":48,"orientation":3.14159,"phaseMask":1,"position_x":-839.619,"position_y":-477.904,"position_z":-33.7343,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/Blackfathom":"d0a81ddd8250402ac4c769a303986b4d944d077c7b60526091443629d86410f2","patch/World/maps/Blackfathom":"3828ee58667887d2fbd7e3cce20209c36f245cfd3fd9c789b6ad2d7c19a540a4"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/blackfathom-deeps/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["27/27 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"uldaman","title":"Uldaman","mapId":70,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[35,50]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Uldaman","theme":"Instanced dungeon","summary":"Fight through Uldaman, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Uldaman...","unchartedAreaName":"Uncharted Uldaman","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":641.487},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/70-uldaman/visual.glb","checksum":"6d6290d18d62a79e57b63fff19d485afc98e06bbc6ecd66498a5a0df160066ae","size":5010532,"triangleCount":115018}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/70-uldaman/collision.glb","checksum":"b9a1a79d35897410d89fddd18610e65eed36ad869e80905bd1c353a5bb5008f6","size":1432628,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/70-uldaman/navigation.glb","checksum":"7a44b07858eb389f730aa2d6f3d606b7db2365a4b2456885605f33dc96fd73e1","size":205156,"triangleCount":15618}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-588.6455,-69.4263,215.251],"max":[302.3087,13.0549,733.673]},"entrance":{"name":"Uldaman Entrance","footPosition":[-147.6785,-26.5263,282.464],"forward":[0.9971555194597762,0,0.07537154642770613],"yaw":1.4953532346573846},"areas":[{"id":"entrance","name":"Uldaman Entrance","center":[-147.6785,-26.5263,282.464],"radius":35},{"id":"area-revelosh","name":"Revelosh's Encounter","center":[-148.8805,-25.0426,394.598],"radius":42},{"id":"area-ironaya","name":"Ironaya's Encounter","center":[-138.8055,-28.0939,543.013],"radius":42},{"id":"area-ancient-stone-keeper","name":"Ancient Stone Keeper's Encounter","center":[-336.0495,-28.8626,454.627],"radius":42},{"id":"area-galgann-firehammer","name":"Galgann Firehammer's Encounter","center":[-364.0972,-27.3534,648.082],"radius":42},{"id":"area-grimlok","name":"Grimlok's Encounter","center":[-431.1881,-21.4586,688.673],"radius":42},{"id":"area-archaedas","name":"Archaedas's Encounter","center":[-478.8165,-32.1922,505.684],"radius":42},{"id":"area-obsidian-sentinel","name":"Obsidian Sentinel's Encounter","center":[-210.7185,-16.8527,621.366],"radius":42}],"entities":{"entry-6906":{"id":"entry-6906","kind":"mob","name":"Baelog","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5710-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-6907":{"id":"entry-6907","kind":"mob","name":"Eric \"The Swift\"","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5708-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-6908":{"id":"entry-6908","kind":"mob","name":"Olaf","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-7078":{"id":"entry-7078","kind":"mob","name":"Cleft Scorpid","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5985-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.1225,"markerRadius":0.65}}},"entry-4860":{"id":"entry-4860","kind":"mob","name":"Stone Steward","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6524","name":"Ground Tremor","spellId":6524,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-2234-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7302,"markerRadius":1.2749}}},"entry-7405":{"id":"entry-7405","kind":"mob","name":"Deadly Cleft Scorpid","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5985-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.1225,"markerRadius":0.65}}},"entry-4848":{"id":"entry-4848","kind":"mob","name":"Shadowforge Darkcaster","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9081","name":"Shadow Bolt Volley","spellId":9081,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7317,"damageMultiplier":0.62,"radius":8},{"id":"spell-15800","name":"Mana Burn","spellId":15800,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7317,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6055-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-4849":{"id":"entry-4849","kind":"mob","name":"Shadowforge Archaeologist","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4969,"damageMultiplier":1.12},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4969,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6067-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-7290":{"id":"entry-7290","kind":"mob","name":"Shadowforge Sharpshooter","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5797,"damageMultiplier":1.12},{"id":"spell-6685","name":"Piercing Shot","spellId":6685,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5797,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6057-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-7291":{"id":"entry-7291","kind":"boss","name":"Galgann Firehammer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7961,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6059-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-7030":{"id":"entry-7030","kind":"mob","name":"Shadowforge Geologist","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8814","name":"Flamestrike","spellId":8814,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4892,"damageMultiplier":1.12},{"id":"spell-3356","name":"Flame Lash","spellId":3356,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4892,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6056-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-4855":{"id":"entry-4855","kind":"mob","name":"Stonevault Brawler","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6630,"damageMultiplier":1.12},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6630,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-11166-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.9201,"markerRadius":1.036}}},"entry-7320":{"id":"entry-7320","kind":"mob","name":"Stonevault Mauler","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6993,"damageMultiplier":1.12},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6993,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-11166-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.9201,"markerRadius":1.036}}},"entry-7321":{"id":"entry-7321","kind":"mob","name":"Stonevault Flameweaver","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7739","name":"Inferno Shell","spellId":7739,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7105,"damageMultiplier":1.12},{"id":"spell-2941","name":"Immolate","spellId":2941,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7105,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-160-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3504,"markerRadius":0.65}}},"entry-4853":{"id":"entry-4853","kind":"mob","name":"Stonevault Geomancer","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4620,"damageMultiplier":1.12},{"id":"spell-10452","name":"Flame Buffet","spellId":10452,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4620,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-1194-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3601,"markerRadius":0.888}}},"entry-4854":{"id":"entry-4854","kind":"boss","name":"Grimlok","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6639,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-11165-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.4801,"markerRadius":1.184}}},"entry-4863":{"id":"entry-4863","kind":"mob","name":"Jadespine Basilisk","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3636","name":"Crystalline Slumber","spellId":3636,"delivery":"projectile","target":"random-party","school":"arcane","animation":"cast","range":28,"cooldownMs":7450,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":3000}},{"id":"spell-9906","name":"Reflection","spellId":9906,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":7450,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-9906","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"lizard","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-4486-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2182,"markerRadius":3.1019}}},"entry-6910":{"id":"entry-6910","kind":"boss","name":"Revelosh","title":"Dungeon Boss","hasLoot":true,"combat":{"level":39,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15117","name":"Chain Lightning","spellId":15117,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5586,"damageMultiplier":1.35},{"id":"spell-15801","name":"Lightning Bolt","spellId":15801,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5586,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5945-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3601,"markerRadius":0.888}}},"entry-4851":{"id":"entry-4851","kind":"mob","name":"Stonevault Rockchewer","combat":{"level":37,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5378,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-721-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9505,"markerRadius":0.7696}}},"entry-4852":{"id":"entry-4852","kind":"mob","name":"Stonevault Oracle","combat":{"level":37,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8005","name":"Healing Wave","spellId":8005,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":6828,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-945","name":"Lightning Shield","spellId":945,"delivery":"area","target":"self","school":"nature","animation":"cast","range":0,"cooldownMs":6828,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-945","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-160-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3504,"markerRadius":0.65}}},"entry-7175":{"id":"entry-7175","kind":"mob","name":"Stonevault Ambusher","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8721","name":"Backstab","spellId":8721,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6006,"damageMultiplier":1.12},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6006,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-763-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0503,"markerRadius":0.65}}},"entry-7206":{"id":"entry-7206","kind":"boss","name":"Ancient Stone Keeper","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":7977,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-10798-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.8493,"markerRadius":1.6573}}},"entry-4857":{"id":"entry-4857","kind":"mob","name":"Stone Keeper","combat":{"level":40,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"spell-5568","name":"Trample","spellId":5568,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6977,"damageMultiplier":1.12},{"id":"spell-9874","name":"Self Destruct","spellId":9874,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6977,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-10805-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5279,"markerRadius":2.231}}},"entry-7396":{"id":"entry-7396","kind":"mob","name":"Earthen Stonebreaker","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2700,"damageMultiplier":1},{"id":"spell-12057","name":"Strike","spellId":12057,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6245,"damageMultiplier":1.12},{"id":"spell-2457","name":"Battle Stance","spellId":2457,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6245,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6010-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-7397":{"id":"entry-7397","kind":"mob","name":"Earthen Stonecarver","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10452","name":"Flame Buffet","spellId":10452,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4203,"damageMultiplier":1.12},{"id":"spell-2602","name":"Fire Shield IV","spellId":2602,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":4203,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-2602","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6009-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-7011":{"id":"entry-7011","kind":"mob","name":"Earthen Rocksmasher","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2700,"damageMultiplier":1},{"id":"spell-12057","name":"Strike","spellId":12057,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5910,"damageMultiplier":1.12},{"id":"spell-2457","name":"Battle Stance","spellId":2457,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5910,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6010-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-7012":{"id":"entry-7012","kind":"mob","name":"Earthen Sculptor","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10452","name":"Flame Buffet","spellId":10452,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5203,"damageMultiplier":1.12},{"id":"spell-2602","name":"Fire Shield IV","spellId":2602,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":5203,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-2602","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6009-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-4847":{"id":"entry-4847","kind":"mob","name":"Shadowforge Relic Hunter","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6064","name":"Greater Heal","spellId":6064,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":7285,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-2767","name":"Shadow Word: Pain","spellId":2767,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7285,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6054-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-7023":{"id":"entry-7023","kind":"boss","name":"Obsidian Sentinel","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6562,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5285-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.5954,"markerRadius":1.9123}}},"entry-4850":{"id":"entry-4850","kind":"mob","name":"Stonevault Cave Lurker","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8721","name":"Backstab","spellId":8721,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5208,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-722-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6504,"markerRadius":0.6808}}},"entry-4861":{"id":"entry-4861","kind":"mob","name":"Shrike Bat","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8281","name":"Sonic Burst","spellId":8281,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6306,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/b436a3eaa350ebf59fb34bc8aaf7baa25a7dcafe72fc6a85ed66da8833a517b0.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.4433,"markerRadius":2.8092}}},"entry-7022":{"id":"entry-7022","kind":"mob","name":"Venomlash Scorpid","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5416","name":"Venom Sting","spellId":5416,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5718,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"plant","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-2488-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.895,"markerRadius":1.0532}}},"entry-10120":{"id":"entry-10120","kind":"mob","name":"Vault Warder","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5989-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.5954,"markerRadius":1.9123}}},"entry-2748":{"id":"entry-2748","kind":"boss","name":"Archaedas","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2600,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":7417,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-5988-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0171,"labelHeight":12.8077,"markerRadius":2.5742}}},"entry-7309":{"id":"entry-7309","kind":"mob","name":"Earthen Custodian","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6025-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.007,"labelHeight":2.8649,"markerRadius":0.7098}}},"entry-7076":{"id":"entry-7076","kind":"mob","name":"Earthen Guardian","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2300,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6026-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.007,"labelHeight":2.8649,"markerRadius":0.7098}}},"entry-7077":{"id":"entry-7077","kind":"mob","name":"Earthen Hallshaper","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6025-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.007,"labelHeight":2.8649,"markerRadius":0.7098}}},"entry-7228":{"id":"entry-7228","kind":"boss","name":"Ironaya","title":"Dungeon Boss","hasLoot":true,"combat":{"level":39,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2900,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":7317,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/uldaman/creatures/display-6089-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0002,"labelHeight":9.9858,"markerRadius":1.6346}}}},"staticSpawns":[{"id":"creature-18715","entityId":"entry-6906","position":[-21.4715,-24.8647,350.56],"yaw":-0.523599,"spawnMask":1},{"id":"creature-27449","entityId":"entry-6907","position":[-16.1435,-24.8799,352.321],"yaw":-0.942478,"spawnMask":1},{"id":"creature-27450","entityId":"entry-6908","position":[-17.4935,-28.1936,365.468],"yaw":-1.3439,"spawnMask":1},{"id":"creature-27451","entityId":"entry-7078","position":[-208.1135,-33.9519,523.122],"yaw":-2.28638,"spawnMask":1},{"id":"creature-27452","entityId":"entry-7078","position":[-209.6355,-33.7633,519.725],"yaw":-5.39362,"spawnMask":1},{"id":"creature-27453","entityId":"entry-7078","position":[-201.9275,-33.6725,521.956],"yaw":0,"spawnMask":1},{"id":"creature-27454","entityId":"entry-7078","position":[-202.9415,-34.6485,529.196],"yaw":-3.62543,"spawnMask":1},{"id":"creature-27455","entityId":"entry-7078","position":[-201.8625,-34.0744,525.098],"yaw":-2.678,"spawnMask":1},{"id":"creature-27456","entityId":"entry-7078","position":[-204.9985,-34.3746,526.817],"yaw":-4.11476,"spawnMask":1},{"id":"creature-27457","entityId":"entry-7078","position":[-204.1545,-34.1985,525.564],"yaw":-4.04997,"spawnMask":1},{"id":"creature-27458","entityId":"entry-7078","position":[-199.7625,-34.0699,526.204],"yaw":-3.00687,"spawnMask":1},{"id":"creature-27459","entityId":"entry-7078","position":[-206.8665,-33.7586,517.41],"yaw":0,"spawnMask":1},{"id":"creature-27460","entityId":"entry-7078","position":[-203.7075,-33.6361,518.547],"yaw":0,"spawnMask":1},{"id":"creature-27461","entityId":"entry-7078","position":[-218.0855,-28.6058,441.702],"yaw":-3.07178,"spawnMask":1},{"id":"creature-27462","entityId":"entry-7078","position":[-215.1705,-30.5219,444.982],"yaw":-2.67035,"spawnMask":1},{"id":"creature-27463","entityId":"entry-7078","position":[-212.9935,-30.1532,441.321],"yaw":-5.60251,"spawnMask":1},{"id":"creature-27464","entityId":"entry-7078","position":[-213.7675,-28.8345,450.757],"yaw":-0.698132,"spawnMask":1},{"id":"creature-27465","entityId":"entry-7078","position":[-217.0925,-30.2063,434.983],"yaw":-5.48033,"spawnMask":1},{"id":"creature-27466","entityId":"entry-7078","position":[-213.6035,-30.4697,434.178],"yaw":-2.32129,"spawnMask":1},{"id":"creature-27467","entityId":"entry-7078","position":[-209.5765,-30.1385,442.275],"yaw":-5.74213,"spawnMask":1},{"id":"creature-27468","entityId":"entry-7078","position":[-211.0465,-29.4217,447.61],"yaw":-0.977384,"spawnMask":1},{"id":"creature-27469","entityId":"entry-7078","position":[-214.1175,-30.0862,436.889],"yaw":-5.53269,"spawnMask":1},{"id":"creature-27470","entityId":"entry-7078","position":[-219.5075,-28.8066,438.489],"yaw":-5.67232,"spawnMask":1},{"id":"creature-27474","entityId":"entry-7405","position":[-352.7282,-27.3923,566.106],"yaw":-2.4716,"spawnMask":1},{"id":"creature-27476","entityId":"entry-7405","position":[-355.8183,-27.2271,564.503],"yaw":-5.44729,"spawnMask":1},{"id":"creature-27477","entityId":"entry-7405","position":[-356.7538,-27.2125,561.362],"yaw":-5.88029,"spawnMask":1},{"id":"creature-27478","entityId":"entry-7405","position":[-354.1771,-27.5408,562.228],"yaw":-5.60312,"spawnMask":1},{"id":"creature-27479","entityId":"entry-7405","position":[-350.1141,-27.126,567.349],"yaw":-0.959931,"spawnMask":1},{"id":"creature-27480","entityId":"entry-7405","position":[-350.952,-27.0376,568.444],"yaw":-2.11845,"spawnMask":1},{"id":"creature-27481","entityId":"entry-7405","position":[-354.689,-27.4749,563.086],"yaw":-4.97419,"spawnMask":1},{"id":"creature-27483","entityId":"entry-7405","position":[-351.4388,-27.3179,566.646],"yaw":-0.173056,"spawnMask":1},{"id":"creature-27484","entityId":"entry-7405","position":[-351.2216,-25.9949,571.23],"yaw":-4.31096,"spawnMask":1},{"id":"creature-27485","entityId":"entry-4848","position":[-387.226,-28.2132,646.915],"yaw":-0.087266,"spawnMask":1},{"id":"creature-27486","entityId":"entry-4849","position":[-382.4331,-28.0214,645.6],"yaw":-1.64061,"spawnMask":1},{"id":"creature-27487","entityId":"entry-4849","position":[-389.5463,-24.6273,635.145],"yaw":-2.84489,"spawnMask":1},{"id":"creature-27488","entityId":"entry-7290","position":[-377.8662,-23.3398,616.924],"yaw":-4.32842,"spawnMask":1},{"id":"creature-27489","entityId":"entry-4848","position":[-388.6937,-24.578,631.159],"yaw":-2.02458,"spawnMask":1},{"id":"creature-27490","entityId":"entry-7290","position":[-369.5006,-24.2334,623.099],"yaw":-4.85202,"spawnMask":1},{"id":"creature-27491","entityId":"entry-7291","position":[-364.0972,-27.3534,648.082],"yaw":-6.16101,"spawnMask":1},{"id":"creature-27492","entityId":"entry-7030","position":[-364.2064,-27.6747,644.298],"yaw":-6.21337,"spawnMask":1},{"id":"creature-27494","entityId":"entry-7030","position":[-366.1109,-27.4189,651.663],"yaw":-6.16101,"spawnMask":1},{"id":"creature-27495","entityId":"entry-7078","position":[-236.1545,-34.7861,495.839],"yaw":-4.20754,"spawnMask":1},{"id":"creature-27496","entityId":"entry-7078","position":[-238.6815,-33.9601,494.05],"yaw":-0.45734,"spawnMask":1},{"id":"creature-27497","entityId":"entry-7078","position":[-241.3285,-33.9773,492.831],"yaw":-1.61797,"spawnMask":1},{"id":"creature-27498","entityId":"entry-7078","position":[-237.1455,-33.9953,491.386],"yaw":-4.51605,"spawnMask":1},{"id":"creature-27499","entityId":"entry-7078","position":[-234.4045,-34.7227,493.451],"yaw":-4.4855,"spawnMask":1},{"id":"creature-27500","entityId":"entry-7078","position":[-237.8275,-33.3108,501.65],"yaw":-0.753239,"spawnMask":1},{"id":"creature-27501","entityId":"entry-7078","position":[-233.8335,-33.3278,505.736],"yaw":-2.43514,"spawnMask":1},{"id":"creature-27502","entityId":"entry-7078","position":[-232.8355,-33.0395,503.89],"yaw":-1.72272,"spawnMask":1},{"id":"creature-27503","entityId":"entry-7078","position":[-229.8915,-32.4789,499.851],"yaw":-2.11185,"spawnMask":1},{"id":"creature-27504","entityId":"entry-7078","position":[-233.9215,-33.3365,510.08],"yaw":-3.02355,"spawnMask":1},{"id":"creature-27506","entityId":"entry-7320","position":[-390.8185,-14.2647,478.528],"yaw":-4.32489,"spawnMask":1},{"id":"creature-27507","entityId":"entry-7320","position":[-383.6795,-12.3606,457.43],"yaw":-1.17416,"spawnMask":1},{"id":"creature-27508","entityId":"entry-7321","position":[-381.174,-14.6125,476.098],"yaw":-2.11185,"spawnMask":1},{"id":"creature-27509","entityId":"entry-7321","position":[-390.4913,-13.3984,475.274],"yaw":-3.21727,"spawnMask":1},{"id":"creature-27510","entityId":"entry-4855","position":[-383.7683,-19.1285,565.584],"yaw":-5.21853,"spawnMask":1},{"id":"creature-27511","entityId":"entry-4853","position":[-390.8202,-19.9263,565.389],"yaw":-2.47837,"spawnMask":1},{"id":"creature-27512","entityId":"entry-4855","position":[-453.3703,-18.6752,638.316],"yaw":-5.02655,"spawnMask":1},{"id":"creature-27513","entityId":"entry-4855","position":[-459.9663,-18.6752,637.05],"yaw":-6.12611,"spawnMask":1},{"id":"creature-27514","entityId":"entry-4853","position":[-459.7429,-18.6752,630.469],"yaw":-2.3911,"spawnMask":1},{"id":"creature-27515","entityId":"entry-7320","position":[-402.864,-11.9384,453.441],"yaw":-2.11185,"spawnMask":1},{"id":"creature-27516","entityId":"entry-7320","position":[-399.5612,-11.0357,447.595],"yaw":-1.85005,"spawnMask":1},{"id":"creature-27517","entityId":"entry-7321","position":[-402.157,-12.2831,459.828],"yaw":-3.31613,"spawnMask":1},{"id":"creature-27518","entityId":"entry-7321","position":[-394.4336,-10.8924,448.922],"yaw":-1.72788,"spawnMask":1},{"id":"creature-27519","entityId":"entry-7320","position":[-382.8306,-19.0904,518.106],"yaw":-1.79769,"spawnMask":1},{"id":"creature-27520","entityId":"entry-7321","position":[-378.2668,-18.6921,515.437],"yaw":-4.88692,"spawnMask":1},{"id":"creature-27521","entityId":"entry-4855","position":[-423.8196,-20.584,579.602],"yaw":-3.07178,"spawnMask":1},{"id":"creature-27522","entityId":"entry-4853","position":[-423.376,-21.3506,574.054],"yaw":-2.67035,"spawnMask":1},{"id":"creature-27523","entityId":"entry-7320","position":[-384.6902,-16.1293,496.401],"yaw":-5.84685,"spawnMask":1},{"id":"creature-27524","entityId":"entry-7321","position":[-378.3065,-16.3337,496.732],"yaw":-5.84685,"spawnMask":1},{"id":"creature-27525","entityId":"entry-4855","position":[-416.5317,-23.3685,556.576],"yaw":-2.38446,"spawnMask":1},{"id":"creature-27526","entityId":"entry-4855","position":[-410.7249,-19.3729,609.392],"yaw":-2.86234,"spawnMask":1},{"id":"creature-27527","entityId":"entry-4853","position":[-404.9736,-20.4831,609.153],"yaw":-2.02458,"spawnMask":1},{"id":"creature-27528","entityId":"entry-4854","position":[-431.1881,-21.4586,688.673],"yaw":-4.2586,"spawnMask":1},{"id":"creature-27529","entityId":"entry-4863","position":[-433.9092,-21.4572,686.481],"yaw":-4.01426,"spawnMask":1},{"id":"creature-27530","entityId":"entry-4853","position":[-425.3632,-21.4639,686.087],"yaw":-4.50295,"spawnMask":1},{"id":"creature-27531","entityId":"entry-4855","position":[-431.9378,-21.4561,680.685],"yaw":0,"spawnMask":1},{"id":"creature-27532","entityId":"entry-6910","position":[-148.8805,-25.0426,394.598],"yaw":-0.034907,"spawnMask":1},{"id":"creature-27533","entityId":"entry-4851","position":[-146.3625,-25.1264,410.829],"yaw":-3.06182,"spawnMask":1},{"id":"creature-27534","entityId":"entry-4852","position":[-140.9675,-25.1264,404.226],"yaw":-2.58106,"spawnMask":1},{"id":"creature-27537","entityId":"entry-4852","position":[-108.2125,-29.2073,324.1782],"yaw":-0.575959,"spawnMask":1},{"id":"creature-27538","entityId":"entry-4851","position":[-93.7235,-29.2154,313.3184],"yaw":-5.88176,"spawnMask":1},{"id":"creature-27539","entityId":"entry-4852","position":[-200.1575,-27.8246,399.274],"yaw":-4.43314,"spawnMask":1},{"id":"creature-27540","entityId":"entry-4852","position":[-129.2485,-28.5344,329.4717],"yaw":-6.00393,"spawnMask":1},{"id":"creature-27541","entityId":"entry-4852","position":[-94.1125,-29.2133,320.8022],"yaw":-3.68265,"spawnMask":1},{"id":"creature-27542","entityId":"entry-4851","position":[-195.5395,-27.8227,403.25],"yaw":-0.802851,"spawnMask":1},{"id":"creature-27543","entityId":"entry-4852","position":[-102.8255,-27.8203,373.777],"yaw":-1.55334,"spawnMask":1},{"id":"creature-27544","entityId":"entry-4851","position":[-198.1235,-29.222,294.4782],"yaw":-6.16101,"spawnMask":1},{"id":"creature-27545","entityId":"entry-4851","position":[-199.8075,-29.2229,321.427],"yaw":-1.78024,"spawnMask":1},{"id":"creature-27552","entityId":"entry-4852","position":[-164.3235,-28.5176,328.2177],"yaw":-1.90241,"spawnMask":1},{"id":"creature-27553","entityId":"entry-7206","position":[-336.0495,-28.8626,454.627],"yaw":-3.15905,"spawnMask":1},{"id":"creature-27554","entityId":"entry-4857","position":[-492.2835,-6.9451,501.25],"yaw":-2.75762,"spawnMask":1},{"id":"creature-27555","entityId":"entry-4857","position":[-474.1818,-6.9451,492.703],"yaw":-1.22173,"spawnMask":1},{"id":"creature-27568","entityId":"entry-7396","position":[-506.8485,-22.903,458.505],"yaw":-5.60251,"spawnMask":1},{"id":"creature-27691","entityId":"entry-7396","position":[-497.0565,-22.9025,458.169],"yaw":-0.226893,"spawnMask":1},{"id":"creature-27692","entityId":"entry-7396","position":[-497.9195,-22.904,453.868],"yaw":-4.88692,"spawnMask":1},{"id":"creature-27728","entityId":"entry-7396","position":[-492.6885,-22.9015,453.742],"yaw":-5.84685,"spawnMask":1},{"id":"creature-27730","entityId":"entry-7397","position":[-505.8705,-22.9015,463.401],"yaw":-4.27606,"spawnMask":1},{"id":"creature-27763","entityId":"entry-4860","position":[-501.9485,-22.9038,457.655],"yaw":-4.43314,"spawnMask":1},{"id":"creature-27764","entityId":"entry-7396","position":[-463.0771,-7.0844,484.86],"yaw":-3.24601,"spawnMask":1},{"id":"creature-27765","entityId":"entry-7396","position":[-447.5126,-7.001,495.305],"yaw":-5.16617,"spawnMask":1},{"id":"creature-27766","entityId":"entry-7396","position":[-448.5945,-7.001,490.351],"yaw":-4.2237,"spawnMask":1},{"id":"creature-27767","entityId":"entry-7396","position":[-457.9918,-7.0844,495.138],"yaw":-4.90455,"spawnMask":1},{"id":"creature-27768","entityId":"entry-7397","position":[-454.8026,-7.0844,502.345],"yaw":-0.761993,"spawnMask":1},{"id":"creature-27769","entityId":"entry-4860","position":[-453.0882,-7.0844,495.617],"yaw":-4.69281,"spawnMask":1},{"id":"creature-27770","entityId":"entry-7396","position":[-479.5325,-7.001,530.361],"yaw":-4.5204,"spawnMask":1},{"id":"creature-27789","entityId":"entry-7396","position":[-473.2876,-7.001,533.098],"yaw":-4.55531,"spawnMask":1},{"id":"creature-27790","entityId":"entry-7396","position":[-462.1101,-7.001,525.204],"yaw":-2.1293,"spawnMask":1},{"id":"creature-27791","entityId":"entry-7396","position":[-482.0015,-7.001,534.723],"yaw":-2.46091,"spawnMask":1},{"id":"creature-27792","entityId":"entry-7397","position":[-470.7073,-7.001,526.301],"yaw":-5.79449,"spawnMask":1},{"id":"creature-27793","entityId":"entry-4860","position":[-466.006,-7.001,529.984],"yaw":-0.767945,"spawnMask":1},{"id":"creature-27794","entityId":"entry-4857","position":[-483.8355,-6.9451,519.489],"yaw":-4.36332,"spawnMask":1},{"id":"creature-27796","entityId":"entry-7396","position":[-528.0905,-6.9945,531.718],"yaw":-2.02458,"spawnMask":1},{"id":"creature-27798","entityId":"entry-7396","position":[-522.5535,-6.9945,521.254],"yaw":-4.86947,"spawnMask":1},{"id":"creature-27800","entityId":"entry-7396","position":[-518.8775,-6.9945,532.38],"yaw":-4.4855,"spawnMask":1},{"id":"creature-28363","entityId":"entry-7396","position":[-519.0255,-6.9945,539.859],"yaw":-2.11185,"spawnMask":1},{"id":"creature-28364","entityId":"entry-7397","position":[-525.7035,-6.9945,537.18],"yaw":-0.331613,"spawnMask":1},{"id":"creature-28367","entityId":"entry-4860","position":[-527.1445,-7.0778,521.764],"yaw":-2.01064,"spawnMask":1},{"id":"creature-28368","entityId":"entry-4857","position":[-465.9068,-6.9451,510.892],"yaw":-5.96903,"spawnMask":1},{"id":"creature-28369","entityId":"entry-7011","position":[-301.4945,-30.2066,453.218],"yaw":-0.11546,"spawnMask":1},{"id":"creature-28370","entityId":"entry-7011","position":[-293.4594,-30.2086,458.811],"yaw":-5.79837,"spawnMask":1},{"id":"creature-28371","entityId":"entry-7011","position":[-304.181,-30.2072,473.024],"yaw":-0.252966,"spawnMask":1},{"id":"creature-28372","entityId":"entry-7012","position":[-294.2659,-30.1252,470.615],"yaw":-3.05433,"spawnMask":1},{"id":"creature-28373","entityId":"entry-7012","position":[-285.3478,-30.1252,465.819],"yaw":-3.29867,"spawnMask":1},{"id":"creature-28374","entityId":"entry-7011","position":[-286.8162,-30.1252,473.963],"yaw":-4.2586,"spawnMask":1},{"id":"creature-28376","entityId":"entry-7011","position":[-289.2235,-28.1271,509.258],"yaw":-1.85184,"spawnMask":1},{"id":"creature-28377","entityId":"entry-7011","position":[-283.1735,-28.0437,515.324],"yaw":-0.645772,"spawnMask":1},{"id":"creature-28532","entityId":"entry-7011","position":[-276.2632,-28.0437,509.387],"yaw":-2.1293,"spawnMask":1},{"id":"creature-28533","entityId":"entry-7012","position":[-279.0115,-28.0437,501.208],"yaw":-0.820305,"spawnMask":1},{"id":"creature-28534","entityId":"entry-7012","position":[-286.2069,-28.1271,496.205],"yaw":-3.30022,"spawnMask":1},{"id":"creature-28535","entityId":"entry-7011","position":[-295.7364,-28.127,500.226],"yaw":-4.72767,"spawnMask":1},{"id":"creature-28536","entityId":"entry-7011","position":[-265.5695,-28.5164,548.502],"yaw":-5.5676,"spawnMask":1},{"id":"creature-28537","entityId":"entry-7011","position":[-276.7904,-28.0335,565.68],"yaw":-1.6057,"spawnMask":1},{"id":"creature-28538","entityId":"entry-7011","position":[-273.4785,-29.8209,548.852],"yaw":-4.29351,"spawnMask":1},{"id":"creature-28539","entityId":"entry-7011","position":[-263.7465,-27.4277,557.939],"yaw":-2.28638,"spawnMask":1},{"id":"creature-28540","entityId":"entry-7012","position":[-274.1885,-29.8266,556.089],"yaw":-1.58825,"spawnMask":1},{"id":"creature-28541","entityId":"entry-7011","position":[-372.5702,-30.1242,512.609],"yaw":-6.17846,"spawnMask":1},{"id":"creature-28542","entityId":"entry-7011","position":[-365.756,-28.4969,521.398],"yaw":-0.261799,"spawnMask":1},{"id":"creature-28543","entityId":"entry-7011","position":[-359.6553,-27.1828,522.926],"yaw":-3.49066,"spawnMask":1},{"id":"creature-28544","entityId":"entry-7011","position":[-360.6328,-28.8509,507.795],"yaw":-4.88692,"spawnMask":1},{"id":"creature-28545","entityId":"entry-7012","position":[-350.7063,-28.1591,511.824],"yaw":-1.55334,"spawnMask":1},{"id":"creature-28546","entityId":"entry-7011","position":[-330.9193,-28.8245,470.649],"yaw":-2.7571,"spawnMask":1},{"id":"creature-28547","entityId":"entry-7011","position":[-331.2964,-28.8238,437.174],"yaw":-6.12569,"spawnMask":1},{"id":"creature-28784","entityId":"entry-7011","position":[-331.7933,-29.4318,488.529],"yaw":-1.90241,"spawnMask":1},{"id":"creature-28789","entityId":"entry-7012","position":[-332.1727,-29.4318,497.249],"yaw":-2.96706,"spawnMask":1},{"id":"creature-28795","entityId":"entry-7011","position":[-324.8342,-28.8216,435.355],"yaw":-0.987509,"spawnMask":1},{"id":"creature-29384","entityId":"entry-7011","position":[-275.1192,-24.194,453.63],"yaw":-2.80998,"spawnMask":1},{"id":"creature-29488","entityId":"entry-7011","position":[-272.8085,-22.4049,446.782],"yaw":-2.79253,"spawnMask":1},{"id":"creature-29573","entityId":"entry-7011","position":[-274.2075,-19.9158,430.37],"yaw":-4.64258,"spawnMask":1},{"id":"creature-29574","entityId":"entry-7011","position":[-266.9925,-20.8229,430.873],"yaw":-4.46804,"spawnMask":1},{"id":"creature-29589","entityId":"entry-7012","position":[-289.4152,-26.5578,448.038],"yaw":-3.83972,"spawnMask":1},{"id":"creature-29591","entityId":"entry-4847","position":[-213.6205,-14.3409,597.334],"yaw":-4.39823,"spawnMask":1},{"id":"creature-29592","entityId":"entry-4847","position":[-235.0575,-22.1835,603.493],"yaw":-3.56047,"spawnMask":1},{"id":"creature-29593","entityId":"entry-7030","position":[-235.1765,-20.7437,627.214],"yaw":-5.79449,"spawnMask":1},{"id":"creature-29594","entityId":"entry-4847","position":[-237.1845,-20.6967,619.768],"yaw":-5.96903,"spawnMask":1},{"id":"creature-29649","entityId":"entry-4847","position":[-222.6395,-14.4617,601.83],"yaw":-5.93412,"spawnMask":1},{"id":"creature-29650","entityId":"entry-7023","position":[-210.7185,-16.8527,621.366],"yaw":-0.10472,"spawnMask":1},{"id":"creature-29651","entityId":"entry-4847","position":[-231.4085,-20.3228,622.423],"yaw":-0.959931,"spawnMask":1},{"id":"creature-29652","entityId":"entry-4852","position":[-126.2875,-27.0257,474.094],"yaw":-0.296706,"spawnMask":1},{"id":"creature-29653","entityId":"entry-4850","position":[-132.4055,-28.4815,474.629],"yaw":-2.70526,"spawnMask":1},{"id":"creature-29654","entityId":"entry-4850","position":[-127.8145,-27.4131,479.348],"yaw":-5.44543,"spawnMask":1},{"id":"creature-29655","entityId":"entry-4852","position":[-115.6325,-29.0347,514.204],"yaw":-2.79253,"spawnMask":1},{"id":"creature-29656","entityId":"entry-4850","position":[-108.5155,-28.8861,513.384],"yaw":-0.767945,"spawnMask":1},{"id":"creature-29657","entityId":"entry-4850","position":[-107.2205,-27.7318,519.548],"yaw":-5.51524,"spawnMask":1},{"id":"creature-29658","entityId":"entry-4852","position":[-130.3105,-30.8141,500.14],"yaw":-3.57792,"spawnMask":1},{"id":"creature-29659","entityId":"entry-4850","position":[-150.8785,-25.0286,431.336],"yaw":-3.42085,"spawnMask":1},{"id":"creature-29773","entityId":"entry-4850","position":[-162.5335,-29.0101,481.269],"yaw":-3.89208,"spawnMask":1},{"id":"creature-30022","entityId":"entry-4850","position":[-163.6545,-28.3032,475.558],"yaw":-1.02974,"spawnMask":1},{"id":"creature-30023","entityId":"entry-7175","position":[-131.3135,-27.1534,448.767],"yaw":-5.91667,"spawnMask":1},{"id":"creature-30024","entityId":"entry-7175","position":[-162.6805,-27.159,453.814],"yaw":-3.08923,"spawnMask":1},{"id":"creature-30025","entityId":"entry-7175","position":[-161.2145,-27.2257,448.73],"yaw":-2.18166,"spawnMask":1},{"id":"creature-30027","entityId":"entry-7175","position":[-131.2155,-26.8447,454.177],"yaw":-1.0472,"spawnMask":1},{"id":"creature-30028","entityId":"entry-7175","position":[-139.1845,-29.9144,448.21],"yaw":-0.890118,"spawnMask":1},{"id":"creature-30029","entityId":"entry-7175","position":[-153.1205,-29.9042,447.638],"yaw":-2.32129,"spawnMask":1},{"id":"creature-30030","entityId":"entry-4850","position":[-144.1195,-29.9624,488.513],"yaw":-6.12611,"spawnMask":1},{"id":"creature-30066","entityId":"entry-4850","position":[-142.4725,-25.0283,431.435],"yaw":-2.94961,"spawnMask":1},{"id":"creature-30067","entityId":"entry-4850","position":[-123.7795,-30.7638,498.363],"yaw":-6.05629,"spawnMask":1},{"id":"creature-30068","entityId":"entry-4852","position":[-39.4845,-31.6435,314.3736],"yaw":-0.890118,"spawnMask":1},{"id":"creature-30069","entityId":"entry-4852","position":[-77.5325,-27.0496,374.205],"yaw":-0.349066,"spawnMask":1},{"id":"creature-30073","entityId":"entry-4850","position":[-56.7525,-29.5113,351.122],"yaw":0,"spawnMask":1},{"id":"creature-30074","entityId":"entry-4852","position":[-24.1515,-33.542,334.004],"yaw":-4.71239,"spawnMask":1},{"id":"creature-30075","entityId":"entry-4852","position":[-41.1695,-36.584,332.2121],"yaw":-0.418879,"spawnMask":1},{"id":"creature-30076","entityId":"entry-4850","position":[-42.4785,-34.5267,345.641],"yaw":-5.06145,"spawnMask":1},{"id":"creature-30077","entityId":"entry-4852","position":[-32.2025,-32.3497,319.4196],"yaw":-0.645772,"spawnMask":1},{"id":"creature-30078","entityId":"entry-4850","position":[-35.7695,-30.0713,373.082],"yaw":-4.29351,"spawnMask":1},{"id":"creature-30079","entityId":"entry-4850","position":[-69.4435,-27.033,364.935],"yaw":-3.56047,"spawnMask":1},{"id":"creature-30080","entityId":"entry-4852","position":[-42.7355,-33.8529,352.38],"yaw":0,"spawnMask":1},{"id":"creature-30082","entityId":"entry-7022","position":[-221.5275,-27.3349,508.493],"yaw":-4.24115,"spawnMask":1},{"id":"creature-30083","entityId":"entry-4861","position":[-304.5891,-31.8581,591.814],"yaw":-5.23599,"spawnMask":1},{"id":"creature-30084","entityId":"entry-4863","position":[-195.5275,-33.1489,555.042],"yaw":-2.72271,"spawnMask":1},{"id":"creature-30086","entityId":"entry-7022","position":[-218.5205,-29.6165,552.518],"yaw":-1.15192,"spawnMask":1},{"id":"creature-30087","entityId":"entry-7022","position":[-240.8485,-28.3209,462.822],"yaw":-4.64258,"spawnMask":1},{"id":"creature-30088","entityId":"entry-4861","position":[-296.8894,-26.7685,607.227],"yaw":-3.1765,"spawnMask":1},{"id":"creature-30089","entityId":"entry-4863","position":[-248.5355,-26.2062,500.23],"yaw":-3.9619,"spawnMask":1},{"id":"creature-30090","entityId":"entry-4861","position":[-262.4555,-26.0082,586.469],"yaw":-1.93731,"spawnMask":1},{"id":"creature-30091","entityId":"entry-4855","position":[-433.1288,-19.367,600.095],"yaw":-0.785398,"spawnMask":1},{"id":"creature-30092","entityId":"entry-4855","position":[-429.8826,-18.6662,612.398],"yaw":-2.18166,"spawnMask":1},{"id":"creature-30093","entityId":"entry-4853","position":[-437.0042,-18.7519,611.286],"yaw":-2.10292,"spawnMask":1},{"id":"creature-30094","entityId":"entry-4855","position":[-430.2963,-21.5305,649.456],"yaw":-2.3869,"spawnMask":1},{"id":"creature-30095","entityId":"entry-7320","position":[-381.4202,-17.7689,512.188],"yaw":-1.00828,"spawnMask":1},{"id":"creature-30096","entityId":"entry-7320","position":[-400.2896,-20.812,533.789],"yaw":-4.08407,"spawnMask":1},{"id":"creature-30097","entityId":"entry-7320","position":[-400.6374,-19.9715,526.715],"yaw":-1.65806,"spawnMask":1},{"id":"creature-30098","entityId":"entry-4855","position":[-424.2637,-21.4497,651.841],"yaw":-0.122173,"spawnMask":1},{"id":"creature-30099","entityId":"entry-4853","position":[-423.9532,-21.4519,658.954],"yaw":-3.59538,"spawnMask":1},{"id":"creature-30100","entityId":"entry-4855","position":[-414.6219,-21.4613,678.559],"yaw":-4.62512,"spawnMask":1},{"id":"creature-30101","entityId":"entry-4853","position":[-412.0759,-21.4599,672.134],"yaw":-4.7822,"spawnMask":1},{"id":"creature-30102","entityId":"entry-4855","position":[-413.8499,-19.6249,544.404],"yaw":-2.63545,"spawnMask":1},{"id":"creature-30103","entityId":"entry-4855","position":[-424.4736,-20.6811,543.085],"yaw":-2.26893,"spawnMask":1},{"id":"creature-30104","entityId":"entry-4853","position":[-417.8715,-20.0575,537.959],"yaw":-5.48033,"spawnMask":1},{"id":"creature-30105","entityId":"entry-4855","position":[-415.0601,-23.7487,593.238],"yaw":-5.74213,"spawnMask":1},{"id":"creature-30107","entityId":"entry-4851","position":[-182.9005,-27.8173,371.561],"yaw":-6.13962,"spawnMask":1},{"id":"creature-30108","entityId":"entry-4852","position":[-130.6945,-27.1275,354.335],"yaw":-4.99385,"spawnMask":1},{"id":"creature-30109","entityId":"entry-4851","position":[-197.8135,-27.8235,376.711],"yaw":-1.65806,"spawnMask":1},{"id":"creature-30111","entityId":"entry-4851","position":[-87.0325,-29.2193,316.6581],"yaw":-0.948537,"spawnMask":1},{"id":"creature-30112","entityId":"entry-4852","position":[-199.6525,-29.2231,309.0084],"yaw":-3.2467,"spawnMask":1},{"id":"creature-30113","entityId":"entry-4851","position":[-142.9035,-27.1262,370.548],"yaw":-3.1363,"spawnMask":1},{"id":"creature-33501","entityId":"entry-4852","position":[-202.0785,-27.8252,373.415],"yaw":-2.60054,"spawnMask":1},{"id":"creature-33502","entityId":"entry-4851","position":[-98.4475,-27.8214,402.607],"yaw":-3.15905,"spawnMask":1},{"id":"creature-33503","entityId":"entry-4851","position":[-98.1015,-27.8222,369.846],"yaw":-5.34071,"spawnMask":1},{"id":"creature-33504","entityId":"entry-10120","position":[-422.982,-32.611,484.52],"yaw":-0.558505,"spawnMask":1},{"id":"creature-33505","entityId":"entry-7396","position":[-423.3022,-32.611,493.994],"yaw":-5.51524,"spawnMask":1},{"id":"creature-33506","entityId":"entry-7396","position":[-439.5805,-32.6944,484.795],"yaw":-5.42025,"spawnMask":1},{"id":"creature-33507","entityId":"entry-7396","position":[-434.1311,-32.6943,480.855],"yaw":-1.62304,"spawnMask":1},{"id":"creature-33508","entityId":"entry-7396","position":[-429.5119,-32.6943,488.269],"yaw":-2.13041,"spawnMask":1},{"id":"creature-33509","entityId":"entry-7397","position":[-436.4545,-32.6943,481.184],"yaw":-2.02133,"spawnMask":1},{"id":"creature-33510","entityId":"entry-7397","position":[-432.8777,-32.6943,487.817],"yaw":-5.78542,"spawnMask":1},{"id":"creature-33511","entityId":"entry-4860","position":[-436.0945,-32.6943,471.397],"yaw":-0.140379,"spawnMask":1},{"id":"creature-33513","entityId":"entry-7396","position":[-496.8195,-7.0844,491.613],"yaw":-2.8043,"spawnMask":1},{"id":"creature-33514","entityId":"entry-7396","position":[-503.9735,-7.0844,492.084],"yaw":-1.24716,"spawnMask":1},{"id":"creature-33515","entityId":"entry-7396","position":[-503.9645,-7.0844,497.35],"yaw":-5.05695,"spawnMask":1},{"id":"creature-33516","entityId":"entry-7396","position":[-486.9665,-7.001,477.607],"yaw":-0.593412,"spawnMask":1},{"id":"creature-33517","entityId":"entry-7397","position":[-498.6935,-7.0844,483.869],"yaw":-0.043685,"spawnMask":1},{"id":"creature-33518","entityId":"entry-4860","position":[-487.8655,-7.0844,485.765],"yaw":-0.518236,"spawnMask":1},{"id":"creature-33519","entityId":"entry-7022","position":[-251.2545,-28.8391,472.885],"yaw":-3.07178,"spawnMask":1},{"id":"creature-33520","entityId":"entry-4863","position":[-233.4485,-24.8501,545.919],"yaw":-5.61996,"spawnMask":1},{"id":"creature-33521","entityId":"entry-4861","position":[-330.2501,-28.071,590.371],"yaw":-0.575959,"spawnMask":1},{"id":"creature-33524","entityId":"entry-4851","position":[-92.6345,-27.823,397.169],"yaw":-4.4855,"spawnMask":1},{"id":"creature-33525","entityId":"entry-4852","position":[-207.9085,-29.2271,302.8172],"yaw":-1.53746,"spawnMask":1},{"id":"creature-33526","entityId":"entry-4852","position":[-100.6005,-29.2104,295.4963],"yaw":-3.41824,"spawnMask":1},{"id":"creature-33527","entityId":"entry-4851","position":[-162.3655,-27.1275,354.37],"yaw":-4.60462,"spawnMask":1},{"id":"creature-33528","entityId":"entry-4851","position":[-94.1565,-29.2131,292.961],"yaw":-0.403883,"spawnMask":1},{"id":"creature-33529","entityId":"entry-4851","position":[-209.9625,-29.2279,315.4785],"yaw":-0.567649,"spawnMask":1},{"id":"creature-33530","entityId":"entry-4851","position":[-130.2585,-28.5269,323.4828],"yaw":-3.45953,"spawnMask":1},{"id":"creature-33531","entityId":"entry-4852","position":[-91.7955,-27.8234,403.92],"yaw":-2.51327,"spawnMask":1},{"id":"creature-33532","entityId":"entry-4851","position":[-161.9975,-28.5168,322.2118],"yaw":-3.08739,"spawnMask":1},{"id":"creature-33533","entityId":"entry-4852","position":[-150.2695,-27.1254,368.177],"yaw":-3.37407,"spawnMask":1},{"id":"creature-33534","entityId":"entry-4851","position":[-143.8665,-27.1245,363.216],"yaw":-1.46608,"spawnMask":1},{"id":"creature-33535","entityId":"entry-10120","position":[-426.4533,-32.611,477.139],"yaw":-0.593412,"spawnMask":1},{"id":"creature-33537","entityId":"entry-2748","position":[-478.8165,-32.1922,505.684],"yaw":-3.64774,"spawnMask":1},{"id":"creature-33538","entityId":"entry-7309","position":[-507.3245,-32.6176,493.097],"yaw":-2.60054,"spawnMask":1},{"id":"creature-33539","entityId":"entry-7309","position":[-454.3055,-32.6176,525.418],"yaw":-5.84685,"spawnMask":1},{"id":"creature-33540","entityId":"entry-7309","position":[-494.1925,-32.6176,533.309],"yaw":-4.18879,"spawnMask":1},{"id":"creature-33541","entityId":"entry-7309","position":[-448.1278,-32.6176,509.472],"yaw":-6.0912,"spawnMask":1},{"id":"creature-33542","entityId":"entry-7076","position":[-481.2155,-32.196,523.992],"yaw":-4.59022,"spawnMask":1},{"id":"creature-33543","entityId":"entry-7309","position":[-470.6663,-32.6176,475.922],"yaw":-1.36136,"spawnMask":1},{"id":"creature-33544","entityId":"entry-10120","position":[-492.0195,-32.6176,477.854],"yaw":-2.09439,"spawnMask":1},{"id":"creature-33545","entityId":"entry-7309","position":[-459.872,-32.6176,481.335],"yaw":-0.959931,"spawnMask":1},{"id":"creature-33546","entityId":"entry-7309","position":[-461.7814,-32.6176,480.225],"yaw":-1.06465,"spawnMask":1},{"id":"creature-33547","entityId":"entry-7309","position":[-482.3755,-32.6176,537.034],"yaw":-4.57276,"spawnMask":1},{"id":"creature-33548","entityId":"entry-7309","position":[-485.0305,-32.6176,536.668],"yaw":-4.57276,"spawnMask":1},{"id":"creature-33549","entityId":"entry-10120","position":[-465.4433,-32.6176,535.078],"yaw":-5.28835,"spawnMask":1},{"id":"creature-33550","entityId":"entry-7077","position":[-500.4365,-32.6176,529.486],"yaw":-3.9619,"spawnMask":1},{"id":"creature-33551","entityId":"entry-7076","position":[-464.2095,-32.196,516.188],"yaw":-5.67232,"spawnMask":1},{"id":"creature-33552","entityId":"entry-7309","position":[-453.0264,-32.6176,523.368],"yaw":-5.70723,"spawnMask":1},{"id":"creature-33553","entityId":"entry-7309","position":[-451.6469,-32.6176,521.14],"yaw":-5.81195,"spawnMask":1},{"id":"creature-33554","entityId":"entry-7309","position":[-450.4444,-32.6176,519.122],"yaw":-5.65487,"spawnMask":1},{"id":"creature-33555","entityId":"entry-7309","position":[-448.7736,-32.6176,514.272],"yaw":-6.0912,"spawnMask":1},{"id":"creature-33556","entityId":"entry-7309","position":[-448.3981,-32.6176,511.857],"yaw":-6.12611,"spawnMask":1},{"id":"creature-33557","entityId":"entry-7309","position":[-447.7743,-32.6176,507.008],"yaw":-6.00393,"spawnMask":1},{"id":"creature-33558","entityId":"entry-7077","position":[-457.8216,-32.6176,482.64],"yaw":-0.837758,"spawnMask":1},{"id":"creature-33559","entityId":"entry-7077","position":[-468.2673,-32.6176,476.403],"yaw":-1.23918,"spawnMask":1},{"id":"creature-33560","entityId":"entry-7076","position":[-477.1125,-32.196,488.562],"yaw":-1.48353,"spawnMask":1},{"id":"creature-33561","entityId":"entry-7309","position":[-504.8485,-32.6176,488.885],"yaw":-2.58309,"spawnMask":1},{"id":"creature-33562","entityId":"entry-7309","position":[-506.1205,-32.6176,491.065],"yaw":-2.61799,"spawnMask":1},{"id":"creature-33563","entityId":"entry-7077","position":[-489.9165,-32.6176,535.813],"yaw":-4.34587,"spawnMask":1},{"id":"creature-33577","entityId":"entry-7077","position":[-477.5455,-32.6176,537.624],"yaw":-4.74729,"spawnMask":1},{"id":"creature-33578","entityId":"entry-7309","position":[-466.0476,-32.6176,477.637],"yaw":-1.0472,"spawnMask":1},{"id":"creature-33579","entityId":"entry-7309","position":[-473.1189,-32.6176,475.471],"yaw":-1.36136,"spawnMask":1},{"id":"creature-33580","entityId":"entry-7309","position":[-475.6535,-32.6176,475.108],"yaw":-1.41372,"spawnMask":1},{"id":"creature-33581","entityId":"entry-7309","position":[-509.2935,-32.6176,497.936],"yaw":-2.9147,"spawnMask":1},{"id":"creature-33582","entityId":"entry-7309","position":[-509.6905,-32.6176,500.416],"yaw":-2.98451,"spawnMask":1},{"id":"creature-33583","entityId":"entry-7309","position":[-510.0375,-32.6176,503.047],"yaw":-2.98451,"spawnMask":1},{"id":"creature-33584","entityId":"entry-7309","position":[-510.4055,-32.6176,505.465],"yaw":-3.01942,"spawnMask":1},{"id":"creature-33585","entityId":"entry-7309","position":[-498.4135,-32.6176,530.854],"yaw":-4.15388,"spawnMask":1},{"id":"creature-33586","entityId":"entry-7076","position":[-462.5697,-32.196,498.702],"yaw":-0.436332,"spawnMask":1},{"id":"creature-33587","entityId":"entry-7309","position":[-492.0625,-32.6176,534.527],"yaw":-4.24115,"spawnMask":1},{"id":"creature-33588","entityId":"entry-7077","position":[-502.2095,-32.6176,484.974],"yaw":-2.40855,"spawnMask":1},{"id":"creature-33589","entityId":"entry-7077","position":[-508.5595,-32.6176,495.404],"yaw":-2.80998,"spawnMask":1},{"id":"creature-33593","entityId":"entry-7077","position":[-449.3608,-32.6176,516.773],"yaw":-5.91667,"spawnMask":1},{"id":"creature-33594","entityId":"entry-7309","position":[-478.0505,-32.6176,474.788],"yaw":-1.36136,"spawnMask":1},{"id":"creature-33595","entityId":"entry-7309","position":[-496.4035,-32.6176,532.063],"yaw":-4.15388,"spawnMask":1},{"id":"creature-33596","entityId":"entry-7309","position":[-487.4705,-32.6176,536.322],"yaw":-4.50295,"spawnMask":1},{"id":"creature-33597","entityId":"entry-7309","position":[-479.9765,-32.6176,537.374],"yaw":-4.59022,"spawnMask":1},{"id":"creature-35238","entityId":"entry-7309","position":[-503.5255,-32.6176,486.865],"yaw":-2.53073,"spawnMask":1},{"id":"creature-44158","entityId":"entry-7077","position":[-480.4625,-32.6176,474.431],"yaw":-1.64061,"spawnMask":1},{"id":"creature-44159","entityId":"entry-7077","position":[-447.5184,-32.6176,504.905],"yaw":-0.017453,"spawnMask":1},{"id":"creature-44391","entityId":"entry-7077","position":[-455.6337,-32.6176,527.362],"yaw":-5.51524,"spawnMask":1},{"id":"creature-46995","entityId":"entry-7076","position":[-495.4755,-32.196,513.526],"yaw":-3.61283,"spawnMask":1},{"id":"creature-47441","entityId":"entry-7076","position":[-493.9435,-32.196,496.672],"yaw":-2.56563,"spawnMask":1},{"id":"creature-47579","entityId":"entry-7077","position":[-510.3825,-32.6176,507.697],"yaw":-3.21141,"spawnMask":1},{"id":"creature-48034","entityId":"entry-7309","position":[-463.9466,-32.6176,478.82],"yaw":-1.06465,"spawnMask":1},{"id":"creature-54080","entityId":"entry-7228","position":[-138.8055,-28.0939,543.013],"yaw":-4.74317,"spawnMask":1}],"roamingPacks":[{"id":"patrol-27471","name":"Stone Steward Patrol","speed":1.15,"pathId":274710,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-267.2585,-21.4927,435.55],[-272.1685,-20.1558,438.185],[-278.0852,-23.6638,452.817],[-283.1727,-26.2926,455.852],[-286.1647,-26.5342,453.636],[-292.1025,-28.8895,453.255],[-297.6518,-29.872,457.406],[-299.9018,-29.872,462.656],[-309.3896,-29.9924,470.388],[-314.4865,-28.5294,471.647],[-321.5465,-28.5735,472.111],[-331.936,-28.5842,449.771],[-329.2529,-28.5746,439.793],[-332.0419,-28.5878,449.562],[-331.047,-28.5764,464.582],[-314.6098,-28.537,471.575],[-309.4768,-29.8871,470.55],[-299.8179,-29.9802,462.642],[-297.8179,-29.9802,457.392],[-295.2947,-29.7446,454.048],[-291.0447,-27.9946,452.798],[-281.7568,-24.7345,455.594],[-278.3101,-23.9288,452.828],[-272.3525,-20.0219,438.146]],"members":[{"id":"member","entityId":"entry-4860","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27472","name":"Stone Steward Patrol","speed":1.15,"pathId":274720,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-284.2532,-31.3137,545.727],[-284.7275,-31.0299,537.231],[-284.8944,-29.6798,532.587],[-284.8944,-29.4298,531.587],[-284.8944,-27.9298,527.337],[-285.1444,-27.9298,525.087],[-285.4621,-27.8764,518.442],[-285.4676,-27.977,488.024],[-285.4676,-27.977,484.774],[-285.5444,-27.9771,493.646],[-285.4371,-27.8766,518.543],[-285.0128,-27.9067,527.124],[-285.0128,-29.4067,531.624],[-285.0128,-29.6567,532.624],[-284.2524,-31.3206,541.009]],"members":[{"id":"member","entityId":"entry-4860","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27473","name":"Stone Steward Patrol","speed":1.15,"pathId":274730,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-358.784,-28.1701,512.392],[-353.803,-28.1345,509.811],[-352.9539,-28.1686,509.382],[-349.9539,-28.4186,508.882],[-348.7039,-28.4186,508.382],[-339.6795,-28.7949,506.972],[-338.4295,-28.7949,506.972],[-335.6795,-29.0449,506.472],[-335.1363,-29.2869,506.227],[-333.3922,-29.1681,484.277],[-332.9795,-28.6683,479.027],[-332.9795,-28.6683,476.027],[-332.9795,-28.6683,474.777],[-332.6204,-28.5732,474.084],[-320.8806,-28.7754,471.662],[-314.6306,-28.5254,471.662],[-312.3806,-29.2754,471.662],[-309.6307,-29.7754,471.662],[-314.5647,-28.5265,471.402],[-320.8147,-28.7765,471.402],[-322.3147,-28.7765,471.402],[-325.1488,-28.5715,471.588],[-332.8196,-28.5721,478.78],[-333.3692,-29.1675,484.086],[-333.9644,-29.265,495.83],[-339.5848,-28.7262,506.713],[-341.5848,-28.9762,506.963],[-349.6079,-28.2955,508.649],[-352.3579,-28.2955,509.149],[-356.3066,-28.2023,511.037]],"members":[{"id":"member","entityId":"entry-4860","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27505","name":"Stonevault Brawler Patrol","speed":1.15,"pathId":275050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-432.3817,-18.7462,607.324],[-449.741,-18.7712,629.325],[-437.022,-18.7599,643.038],[-449.741,-18.7712,629.325]],"members":[{"id":"member","entityId":"entry-4855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27535","name":"Stonevault Ambusher Patrol","speed":1.15,"pathId":275350,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-113.5025,-29.0445,294.6054],[-85.7055,-29.0507,301.3288],[-81.5965,-29.0522,313.7081],[-101.2185,-29.0414,324.8092],[-124.4475,-28.4578,324.8475],[-130.3855,-28.1697,350.044],[-130.1935,-27.1285,360.424],[-117.2185,-27.5529,371.27],[-95.5725,-27.6521,376.579],[-96.9205,-27.6544,399.412],[-118.4695,-26.765,402.854],[-127.4695,-25.015,402.854],[-134.4635,-25.0189,402.97],[-167.8925,-25.0123,403.008],[-176.9475,-27.4993,403.432],[-199.9095,-27.6567,393.419],[-186.9345,-27.6523,371.908],[-169.8685,-27.0558,371.502],[-146.8995,-26.9594,370.638],[-130.3845,-27.152,360.111],[-130.3325,-27.6699,350.787],[-130.4135,-28.3717,338.177],[-118.2895,-28.4596,324.0144],[-96.2425,-29.0438,321.1507],[-91.4195,-29.0478,306.2795]],"members":[{"id":"member","entityId":"entry-7175","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-27536","name":"Stonevault Ambusher Patrol","speed":1.15,"pathId":275360,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-164.3025,-28.2108,342.663],[-163.3025,-27.4608,351.163],[-163.1285,-26.9609,354.503],[-163.1285,-26.9609,360.253],[-169.9455,-27.0551,371.383],[-174.9455,-27.0551,371.883],[-176.2515,-27.5582,372.274],[-199.5095,-27.6542,377.35],[-200.3145,-27.6562,378.33],[-196.3205,-27.6563,399.617],[-186.9345,-27.6535,401.88],[-174.6265,-26.7655,402.798],[-165.8765,-25.0155,402.548],[-159.2905,-25.031,402.261],[-134.5285,-24.8762,401.976],[-125.2705,-25.0128,402.305],[-118.7705,-26.7628,402.805],[-117.5785,-27.5147,402.673],[-102.9105,-27.6521,403.014],[-92.6435,-27.6551,392.438],[-93.0565,-27.655,380.385],[-93.8565,-27.6531,376.25],[-94.8565,-27.6531,374.75],[-118.2065,-27.0553,371.134],[-129.4285,-26.9602,371.046],[-155.0235,-26.9596,369.924],[-162.6075,-26.9601,369.127],[-162.7445,-27.1556,360.275],[-162.7445,-27.1556,357.025],[-162.7445,-27.6556,351.025],[-162.8055,-28.2237,346.326]],"members":[{"id":"member","entityId":"entry-7175","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-28365","name":"Stone Steward Patrol","speed":1.15,"pathId":283650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-531.8375,-6.984,512.025],[-533.7895,-6.9671,508.022],[-536.5395,-8.7171,502.022],[-543.6455,-9.6067,485.81],[-515.4855,-22.6709,464.821],[-500.7455,-22.9369,457.813],[-492.2455,-22.9369,453.813],[-486.9955,-22.9369,451.313],[-485.1205,-23.2299,450.161],[-464.1908,-35.2245,440.169],[-444.9364,-34.334,459.233],[-440.9364,-32.584,467.233],[-431.5518,-32.4444,485.514],[-431.6867,-32.4444,485.069],[-445.5131,-35.0836,458.294],[-455.9137,-35.224,437.386],[-489.5295,-22.7654,452.608],[-499.2795,-22.7654,457.108],[-509.7795,-22.7654,462.108],[-537.6225,-9.6979,475.735],[-536.6785,-8.7176,502.063],[-533.9285,-6.9676,508.063]],"members":[{"id":"member","entityId":"entry-4860","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30081","name":"Shrike Bat Patrol","speed":1.15,"pathId":300810,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-258.2815,-26.5807,551.153],[-247.6145,-24.6264,551.886],[-241.2945,-24.4383,559.419],[-234.8805,-24.7203,564.207],[-229.0325,-26.5384,560.641],[-216.8545,-29.733,553.933],[-202.4325,-31.7284,556.637],[-197.4135,-32.9903,553.282],[-195.1215,-33.3028,545.187],[-191.2065,-29.3508,526.874],[-190.0455,-28.768,524.142],[-189.5455,-28.018,521.392],[-187.0645,-28.4112,515.61],[-189.4095,-28.2036,522.473],[-190.7995,-28.9844,525.956],[-191.5495,-30.4844,528.706],[-195.1045,-33.2628,546.15],[-197.3015,-33.1375,553.342],[-200.5185,-32.0779,556.552],[-206.5185,-31.3279,557.052],[-211.5595,-30.1381,555.734],[-224.5465,-29.1759,555.481],[-233.0385,-24.9381,563.861],[-242.6665,-24.344,557.183],[-247.2475,-24.6795,552.259],[-255.3745,-25.814,550.961]],"members":[{"id":"member","entityId":"entry-4861","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30085","name":"Shrike Bat Patrol","speed":1.15,"pathId":300850,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-231.6835,-26.2588,458.625],[-239.1805,-27.9553,463.7],[-241.5105,-28.1655,465.133],[-249.7715,-28.5966,472.646],[-252.2155,-28.715,484.012],[-249.7915,-26.7864,498.601],[-247.7135,-26.0788,503.808],[-246.2135,-26.3288,509.058],[-242.4455,-26.2108,516.918],[-239.9455,-26.4608,519.918],[-238.4565,-26.4502,521.797],[-234.4085,-26.5358,532.603],[-235.2795,-26.3264,525.966],[-242.4285,-26.1833,516.988],[-245.7775,-26.3458,509.031],[-247.7775,-26.0958,503.781],[-250.8915,-27.6817,496.072],[-252.3145,-28.6841,484.102],[-251.5215,-28.3524,476.888],[-244.3455,-28.1876,467.391],[-235.8725,-27.2604,461.328]],"members":[{"id":"member","entityId":"entry-4861","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30106","name":"Stonevault Brawler Patrol","speed":1.15,"pathId":301060,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-383.6642,-23.0213,595.18],[-386.1642,-23.5213,594.43],[-390.9142,-23.7713,593.43],[-395.505,-23.2777,592.691],[-405.0344,-22.6491,590.161],[-412.8556,-22.7442,581.141],[-415.1056,-22.7442,576.141],[-408.6774,-23.1692,565.265],[-405.6774,-22.4192,563.015],[-394.8069,-20.4504,560.116],[-384.1001,-19.0746,559.204],[-384.2133,-19.0238,559.212],[-396.9598,-19.8537,552.849],[-402.2407,-19.6445,547.49],[-416.306,-19.9202,542.398],[-418.2128,-21.6322,546.452],[-417.4628,-22.1322,549.202],[-416.662,-22.6402,551.335],[-410.8659,-23.1866,561.182],[-410.9662,-23.6504,568.54],[-414.4373,-23.3071,572.307],[-412.3732,-23.0122,584.62],[-409.5112,-23.0742,587.814],[-397.1733,-23.4999,590.927],[-386.1778,-23.3906,594.292]],"members":[{"id":"member","entityId":"entry-4855","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30110","name":"Stonevault Rockchewer Patrol","speed":1.15,"pathId":301100,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-200.3525,-27.9075,370.767],[-197.4045,-27.9075,399.339],[-178.8165,-27.9005,403.138],[-197.4045,-27.9075,399.339]],"members":[{"id":"member","entityId":"entry-4851","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-33522","name":"Shrike Bat Patrol","speed":1.15,"pathId":335220,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-340.1203,-25.2142,582.556],[-332.9654,-27.0269,589.029],[-329.6844,-28.762,597.741],[-326.3493,-30.0526,602.448],[-316.1363,-30.8452,604.184],[-303.3842,-31.532,593.382],[-297.1119,-31.4688,590.053],[-291.1119,-31.4688,587.803],[-283.6621,-29.7968,585.276],[-271.6935,-28.7917,584.772],[-287.981,-29.9114,586.661],[-290.1936,-31.042,587.54],[-297.1936,-31.292,590.04],[-306.1104,-31.2594,595.343],[-316.0781,-30.8062,604.302],[-318.6036,-30.6046,604.852],[-326.3536,-30.1046,602.852],[-329.5405,-28.8652,598.146],[-332.8046,-27.0585,590.119]],"members":[{"id":"member","entityId":"entry-4861","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-27532","name":"Revelosh","position":[-148.8805,-25.0426,394.598]},{"id":"creature-54080","name":"Ironaya","position":[-138.8055,-28.0939,543.013]},{"id":"creature-27553","name":"Ancient Stone Keeper","position":[-336.0495,-28.8626,454.627]},{"id":"creature-27491","name":"Galgann Firehammer","position":[-364.0972,-27.3534,648.082]},{"id":"creature-27528","name":"Grimlok","position":[-431.1881,-21.4586,688.673]},{"id":"creature-33537","name":"Archaedas","position":[-478.8165,-32.1922,505.684]},{"id":"creature-29650","name":"Obsidian Sentinel","position":[-210.7185,-16.8527,621.366]}],"objectiveOrder":[{"id":"creature-27532","name":"Revelosh","position":[-148.8805,-25.0426,394.598]},{"id":"creature-54080","name":"Ironaya","position":[-138.8055,-28.0939,543.013]},{"id":"creature-27553","name":"Ancient Stone Keeper","position":[-336.0495,-28.8626,454.627]},{"id":"creature-27491","name":"Galgann Firehammer","position":[-364.0972,-27.3534,648.082]},{"id":"creature-27528","name":"Grimlok","position":[-431.1881,-21.4586,688.673]},{"id":"creature-33537","name":"Archaedas","position":[-478.8165,-32.1922,505.684]},{"id":"creature-29650","name":"Obsidian Sentinel","position":[-210.7185,-16.8527,621.366]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":11402,"id":102999,"map":70,"orientation":0.137746,"phaseMask":1,"position_x":-6613.02,"position_y":-3759.54,"position_z":265.712,"rotation0":0.988544,"rotation1":0.058706,"rotation2":0.092733,"rotation3":0.10361,"spawnMask":1,"spawntimesecs":900,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":11403,"id":103000,"map":70,"orientation":0.037998,"phaseMask":1,"position_x":-6612.58,"position_y":-3761.45,"position_z":266.028,"rotation0":0.989215,"rotation1":0.008309,"rotation2":0.116963,"rotation3":0.087771,"spawnMask":1,"spawntimesecs":900,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14354,"id":48483,"map":70,"orientation":2.79253,"phaseMask":1,"position_x":-12.7417,"position_y":276.117,"position_z":-48.6347,"rotation0":0,"rotation1":0,"rotation2":0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14355,"id":48508,"map":70,"orientation":2.15463,"phaseMask":1,"position_x":-100.862,"position_y":330.383,"position_z":-47.5363,"rotation0":0.0195336,"rotation1":0.00107479,"rotation2":0.880602,"rotation3":0.473453,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14357,"id":48484,"map":70,"orientation":2.46679,"phaseMask":1,"position_x":-8.03935,"position_y":279.003,"position_z":-48.7176,"rotation0":0.057618,"rotation1":-0.032506,"rotation2":0.941299,"rotation3":0.331027,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14358,"id":48500,"map":70,"orientation":-3.14122,"phaseMask":1,"position_x":-32.0942,"position_y":303.005,"position_z":-45.404,"rotation0":0.013268,"rotation1":-0.007055,"rotation2":0.999887,"rotation3":-0.000094,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14359,"id":48459,"map":70,"orientation":-0.411659,"phaseMask":1,"position_x":-223.822,"position_y":-52.8567,"position_z":-45.3611,"rotation0":-0.012865,"rotation1":0.030369,"rotation2":-0.203769,"rotation3":0.978463,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14360,"id":48470,"map":70,"orientation":-0.410762,"phaseMask":1,"position_x":-360.689,"position_y":122.367,"position_z":-45.088,"rotation0":-0.064403,"rotation1":-0.032508,"rotation2":-0.205898,"rotation3":0.975911,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14361,"id":48477,"map":70,"orientation":0.604296,"phaseMask":1,"position_x":-360.417,"position_y":119.553,"position_z":-44.7049,"rotation0":-0.04773,"rotation1":-0.005713,"rotation2":0.297623,"rotation3":0.953473,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14362,"id":48507,"map":70,"orientation":-3.124,"phaseMask":1,"position_x":-148.232,"position_y":244.513,"position_z":-40.2454,"rotation0":-0.106509,"rotation1":0.040367,"rotation2":0.993483,"rotation3":-0.004328,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14363,"id":48491,"map":70,"orientation":0.387906,"phaseMask":1,"position_x":-120.337,"position_y":238.514,"position_z":-48.8304,"rotation0":0.062014,"rotation1":0.015925,"rotation2":0.192113,"rotation3":0.979282,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":14364,"id":48492,"map":70,"orientation":0.69019,"phaseMask":1,"position_x":49.7145,"position_y":348.337,"position_z":-39.9966,"rotation0":-0.011673,"rotation1":0.0457115,"rotation2":0.337711,"rotation3":0.940067,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":14366,"id":48493,"map":70,"orientation":2.50987,"phaseMask":1,"position_x":26.7081,"position_y":372.597,"position_z":-40.4458,"rotation0":-0.0183816,"rotation1":0.0933571,"rotation2":0.945005,"rotation3":0.312908,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14368,"id":48495,"map":70,"orientation":0.347655,"phaseMask":1,"position_x":-246.792,"position_y":242.174,"position_z":-46.7675,"rotation0":-0.00666189,"rotation1":0.0722609,"rotation2":0.172073,"rotation3":0.982408,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14370,"id":48433,"map":70,"orientation":-3.13009,"phaseMask":1,"position_x":-135.821,"position_y":293.887,"position_z":-45.7767,"rotation0":-0.048573,"rotation1":0.058928,"rotation2":0.997076,"rotation3":-0.002871,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14371,"id":48434,"map":70,"orientation":1.49974,"phaseMask":1,"position_x":-140.419,"position_y":267.264,"position_z":-52.6497,"rotation0":0.015758,"rotation1":0.061965,"rotation2":0.678784,"rotation3":0.731549,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14372,"id":48436,"map":70,"orientation":2.08567,"phaseMask":1,"position_x":-138.724,"position_y":267.537,"position_z":-52.9151,"rotation0":0,"rotation1":0,"rotation2":0.863836,"rotation3":0.503773,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14373,"id":48405,"map":70,"orientation":0.071304,"phaseMask":1,"position_x":-215.523,"position_y":7.14708,"position_z":-48.1857,"rotation0":-0.022407,"rotation1":-0.016676,"rotation2":0.035266,"rotation3":0.998988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14374,"id":103012,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-82.0178,"position_y":334.937,"position_z":-48.8487,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14375,"id":48445,"map":70,"orientation":0.894205,"phaseMask":1,"position_x":-214.739,"position_y":5.66459,"position_z":-48.3328,"rotation0":0.07621,"rotation1":-0.043425,"rotation2":0.433945,"rotation3":0.896659,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14376,"id":48455,"map":70,"orientation":1.35416,"phaseMask":1,"position_x":-244.407,"position_y":-9.22357,"position_z":-48.7237,"rotation0":0.0383768,"rotation1":0.0343132,"rotation2":0.625582,"rotation3":0.778458,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14378,"id":103011,"map":70,"orientation":1.01602,"phaseMask":1,"position_x":-357.999,"position_y":120.864,"position_z":-44.8125,"rotation0":-0.0688019,"rotation1":0.0711031,"rotation2":0.486192,"rotation3":0.868233,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":14380,"id":48411,"map":70,"orientation":2.27835,"phaseMask":1,"position_x":-11.2335,"position_y":278.878,"position_z":-48.4381,"rotation0":0.0596538,"rotation1":-0.0224438,"rotation2":0.906563,"rotation3":0.417231,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14382,"id":48407,"map":70,"orientation":2.77514,"phaseMask":1,"position_x":-208.763,"position_y":-2.70435,"position_z":-48.624,"rotation0":0.006293,"rotation1":0.010469,"rotation2":0.983197,"rotation3":0.182139,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14383,"id":48408,"map":70,"orientation":-1.06362,"phaseMask":1,"position_x":-216.16,"position_y":-6.56397,"position_z":-48.5339,"rotation0":0.028372,"rotation1":0.020748,"rotation2":-0.507168,"rotation3":0.86113,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14384,"id":48505,"map":70,"orientation":-0.91449,"phaseMask":1,"position_x":-255.654,"position_y":267.584,"position_z":-50.3883,"rotation0":-0.046963,"rotation1":0.0118,"rotation2":-0.441391,"rotation3":0.896007,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14385,"id":48496,"map":70,"orientation":1.03334,"phaseMask":1,"position_x":-211.64,"position_y":215.49,"position_z":-46.8359,"rotation0":-0.0442247,"rotation1":0.0101795,"rotation2":0.49437,"rotation3":0.868066,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14387,"id":48417,"map":70,"orientation":0.469331,"phaseMask":1,"position_x":19.6114,"position_y":212.707,"position_z":-30.7543,"rotation0":0.033086,"rotation1":-0.024473,"rotation2":0.233133,"rotation3":0.971574,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14388,"id":48418,"map":70,"orientation":-0.843491,"phaseMask":1,"position_x":16.754,"position_y":234.987,"position_z":-31.6856,"rotation0":-0.021154,"rotation1":-0.092952,"rotation2":-0.405883,"rotation3":0.90894,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14389,"id":48409,"map":70,"orientation":2.07612,"phaseMask":1,"position_x":-205.883,"position_y":-33.3631,"position_z":-46.9783,"rotation0":-0.004051,"rotation1":0.052416,"rotation2":0.859568,"rotation3":0.50831,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14390,"id":48430,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-154.319,"position_y":327.64,"position_z":-44.8869,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14391,"id":48431,"map":70,"orientation":2.14482,"phaseMask":1,"position_x":-139.767,"position_y":270.428,"position_z":-52.9144,"rotation0":0.0503206,"rotation1":0.0679951,"rotation2":0.875677,"rotation3":0.47543,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14393,"id":124371,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-234.688,"position_y":239.619,"position_z":-50.9083,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14394,"id":124372,"map":70,"orientation":-1.5708,"phaseMask":1,"position_x":-234.567,"position_y":294.81,"position_z":-47.596,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14395,"id":48452,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-19.0193,"position_y":341.359,"position_z":-40.9857,"rotation0":0.047978,"rotation1":0,"rotation2":0.998848,"rotation3":0,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14396,"id":48453,"map":70,"orientation":-3.13663,"phaseMask":1,"position_x":-18.0883,"position_y":343.805,"position_z":-40.8768,"rotation0":0.056499,"rotation1":-0.056668,"rotation2":0.996793,"rotation3":0.000736,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14397,"id":48454,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-9.40941,"position_y":319.774,"position_z":-39.4051,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14398,"id":48465,"map":70,"orientation":2.25925,"phaseMask":1,"position_x":7.355,"position_y":404.675,"position_z":-46.9825,"rotation0":-0.037649,"rotation1":-0.020446,"rotation2":0.903796,"rotation3":0.425814,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14399,"id":48469,"map":70,"orientation":2.54912,"phaseMask":1,"position_x":-152.808,"position_y":364.384,"position_z":-33.9316,"rotation0":-0.058626,"rotation1":-0.002853,"rotation2":0.955113,"rotation3":0.290369,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14400,"id":48462,"map":70,"orientation":-0.154758,"phaseMask":1,"position_x":-103.491,"position_y":210.84,"position_z":-41.3915,"rotation0":-0.109685,"rotation1":-0.015535,"rotation2":-0.079426,"rotation3":0.990666,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14401,"id":48473,"map":70,"orientation":-0.531384,"phaseMask":1,"position_x":-144.195,"position_y":393.703,"position_z":-40.0772,"rotation0":0.049971,"rotation1":0.100852,"rotation2":-0.263239,"rotation3":0.958143,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14402,"id":48474,"map":70,"orientation":-1.89947,"phaseMask":1,"position_x":-141.793,"position_y":394.541,"position_z":-39.9671,"rotation0":0.051664,"rotation1":0.129574,"rotation2":-0.800081,"rotation3":0.583448,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14403,"id":48475,"map":70,"orientation":-2.46514,"phaseMask":1,"position_x":-139.3,"position_y":393.074,"position_z":-40.5301,"rotation0":0.015535,"rotation1":-0.074359,"rotation2":0.940367,"rotation3":-0.33157,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":14404,"id":48476,"map":70,"orientation":3.64433,"phaseMask":1,"position_x":5.13656,"position_y":407.546,"position_z":-47.2073,"rotation0":0.0832896,"rotation1":0.0190258,"rotation2":-0.96508,"rotation3":0.247631,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14406,"id":48422,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-46.5848,"position_y":276.383,"position_z":-49.0577,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14407,"id":48424,"map":70,"orientation":2.45111,"phaseMask":1,"position_x":51.4933,"position_y":324.965,"position_z":-43.2233,"rotation0":-0.054899,"rotation1":0.010948,"rotation2":0.939673,"rotation3":0.337463,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14408,"id":48440,"map":70,"orientation":-0.444336,"phaseMask":1,"position_x":-166.525,"position_y":206.859,"position_z":-49.5789,"rotation0":0.013922,"rotation1":0.043679,"rotation2":-0.22029,"rotation3":0.974357,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14409,"id":48442,"map":70,"orientation":-0.49742,"phaseMask":1,"position_x":-164.875,"position_y":215.454,"position_z":-48.8381,"rotation0":0.021144,"rotation1":-0.00537,"rotation2":-0.246095,"rotation3":0.969,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14410,"id":48482,"map":70,"orientation":-0.007972,"phaseMask":1,"position_x":-165.338,"position_y":394.298,"position_z":-36.4654,"rotation0":0.024064,"rotation1":0.014628,"rotation2":-0.004338,"rotation3":0.999594,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14411,"id":124367,"map":70,"orientation":-2.70526,"phaseMask":1,"position_x":137.664,"position_y":288.136,"position_z":-26.4418,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14412,"id":124368,"map":70,"orientation":-2.70526,"phaseMask":1,"position_x":50.0446,"position_y":247.246,"position_z":-26.5175,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14413,"id":48420,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-269.12,"position_y":-37.7511,"position_z":-43.9261,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14414,"id":48421,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-46.4928,"position_y":278.334,"position_z":-49.0708,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14415,"id":48426,"map":70,"orientation":1.66822,"phaseMask":1,"position_x":44.9896,"position_y":326.255,"position_z":-43.3459,"rotation0":0.006089,"rotation1":0.02726,"rotation2":0.740185,"rotation3":0.671823,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14416,"id":48428,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-127.33,"position_y":331.134,"position_z":-44.246,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14417,"id":48460,"map":70,"orientation":5.26538,"phaseMask":1,"position_x":-68.4732,"position_y":356.613,"position_z":-51.1938,"rotation0":-0.0268426,"rotation1":-0.0882473,"rotation2":-0.483595,"rotation3":0.870418,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14419,"id":48461,"map":70,"orientation":-0.68017,"phaseMask":1,"position_x":27.2443,"position_y":290.927,"position_z":-39.1096,"rotation0":0.016806,"rotation1":-0.076304,"rotation2":-0.329956,"rotation3":0.940757,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14420,"id":48412,"map":70,"orientation":0.085863,"phaseMask":1,"position_x":-36.8029,"position_y":301.933,"position_z":-44.6243,"rotation0":-0.009131,"rotation1":0.049952,"rotation2":0.043214,"rotation3":0.997774,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14421,"id":48403,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":29.6978,"position_y":372.833,"position_z":-40.6615,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14422,"id":124369,"map":70,"orientation":-2.70526,"phaseMask":1,"position_x":137.654,"position_y":288.125,"position_z":-52.1341,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14423,"id":48480,"map":70,"orientation":5.03271,"phaseMask":1,"position_x":-158.077,"position_y":363.416,"position_z":-33.9055,"rotation0":-0.0528679,"rotation1":-0.00267887,"rotation2":-0.585579,"rotation3":0.808885,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14425,"id":48481,"map":70,"orientation":0.13138,"phaseMask":1,"position_x":-165.191,"position_y":392.62,"position_z":-36.4654,"rotation0":0.026413,"rotation1":0.009768,"rotation2":0.065401,"rotation3":0.997462,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14426,"id":48486,"map":70,"orientation":-2.26391,"phaseMask":1,"position_x":28.7753,"position_y":375.097,"position_z":-40.5884,"rotation0":-0.076564,"rotation1":0.022726,"rotation2":0.903698,"rotation3":-0.420656,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14427,"id":48479,"map":70,"orientation":1.7111,"phaseMask":1,"position_x":-162.738,"position_y":391.294,"position_z":-36.4654,"rotation0":0.00703,"rotation1":0.02727,"rotation2":0.754426,"rotation3":0.655781,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14428,"id":48487,"map":70,"orientation":0.092437,"phaseMask":1,"position_x":-142.095,"position_y":391.401,"position_z":-40.3016,"rotation0":-0.0415759,"rotation1":0.0728502,"rotation2":0.0488968,"rotation3":0.995276,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14430,"id":48488,"map":70,"orientation":2.27262,"phaseMask":1,"position_x":-110.742,"position_y":231.829,"position_z":-52.3405,"rotation0":-0.035729,"rotation1":0.049317,"rotation2":0.904735,"rotation3":0.421599,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14431,"id":48472,"map":70,"orientation":5.70705,"phaseMask":1,"position_x":-242.776,"position_y":-18.5393,"position_z":-48.1187,"rotation0":-0.0224919,"rotation1":0.0711832,"rotation2":-0.280823,"rotation3":0.956852,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14433,"id":48413,"map":70,"orientation":0.194096,"phaseMask":1,"position_x":23.5414,"position_y":220.783,"position_z":-31.5287,"rotation0":-0.062099,"rotation1":0.015717,"rotation2":0.097999,"rotation3":0.993123,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":14434,"id":48443,"map":70,"orientation":3.438,"phaseMask":1,"position_x":-85.3134,"position_y":336.897,"position_z":-48.1264,"rotation0":-0.0128717,"rotation1":-0.00276852,"rotation2":-0.988951,"rotation3":0.147659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14436,"id":48446,"map":70,"orientation":-3.03638,"phaseMask":1,"position_x":-155.154,"position_y":223.659,"position_z":-46.52,"rotation0":0.073329,"rotation1":0.002183,"rotation2":0.995932,"rotation3":-0.052317,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14437,"id":48447,"map":70,"orientation":-3.13073,"phaseMask":1,"position_x":-65.3726,"position_y":361.648,"position_z":-51.0291,"rotation0":0.06755,"rotation1":-0.039838,"rotation2":0.996917,"rotation3":-0.002699,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14438,"id":48448,"map":70,"orientation":0.837718,"phaseMask":1,"position_x":-74.9544,"position_y":355.604,"position_z":-51.2773,"rotation0":-0.057085,"rotation1":0.047478,"rotation2":0.407598,"rotation3":0.910138,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14439,"id":48450,"map":70,"orientation":1.62581,"phaseMask":1,"position_x":-73.3156,"position_y":355.061,"position_z":-51.1343,"rotation0":-0.023265,"rotation1":0.041953,"rotation2":0.724994,"rotation3":0.687083,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14440,"id":48464,"map":70,"orientation":-0.739997,"phaseMask":1,"position_x":-103.14,"position_y":212.677,"position_z":-41.8789,"rotation0":-0.116105,"rotation1":-0.070591,"rotation2":-0.366638,"rotation3":0.920388,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14441,"id":141869,"map":70,"orientation":-2.70526,"phaseMask":1,"position_x":70.701,"position_y":256.905,"position_z":-52.0584,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":14442,"id":48511,"map":70,"orientation":3.07154,"phaseMask":1,"position_x":-240.033,"position_y":-18.5585,"position_z":-48.4242,"rotation0":0.032299,"rotation1":-0.004082,"rotation2":0.998854,"rotation3":0.035097,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":15412,"id":48432,"map":70,"orientation":6.26573,"phaseMask":1,"position_x":-211.481,"position_y":-33.4789,"position_z":-47.2107,"rotation0":0.0281429,"rotation1":0.0602579,"rotation2":-0.0103817,"rotation3":0.997732,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1337,"guid":15506,"id":48509,"map":70,"orientation":-0.488972,"phaseMask":1,"position_x":-246.485,"position_y":215.413,"position_z":-46.8472,"rotation0":-0.001092,"rotation1":-0.019423,"rotation2":-0.241944,"rotation3":0.970095,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1337},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33214,"id":48513,"map":70,"orientation":0.559547,"phaseMask":1,"position_x":-214.306,"position_y":213.869,"position_z":-46.7948,"rotation0":-0.047695,"rotation1":-0.08301,"rotation2":0.270444,"rotation3":0.957964,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33215,"id":48514,"map":70,"orientation":-0.052072,"phaseMask":1,"position_x":-215.031,"position_y":215.95,"position_z":-46.9364,"rotation0":-0.049881,"rotation1":-0.044778,"rotation2":-0.028222,"rotation3":0.997352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33216,"id":48515,"map":70,"orientation":2.64952,"phaseMask":1,"position_x":-193.623,"position_y":-20.8782,"position_z":-33.2921,"rotation0":0.030977,"rotation1":-0.046301,"rotation2":0.968002,"rotation3":0.244681,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33217,"id":48410,"map":70,"orientation":-0.72074,"phaseMask":1,"position_x":-243.487,"position_y":-16.6386,"position_z":-48.1398,"rotation0":-0.023905,"rotation1":0.053165,"rotation2":-0.350428,"rotation3":0.934774,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33218,"id":48501,"map":70,"orientation":2.2825,"phaseMask":1,"position_x":-35.1563,"position_y":301.21,"position_z":-44.8091,"rotation0":0.042688,"rotation1":0.070671,"rotation2":0.906372,"rotation3":0.414335,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33220,"id":103007,"map":70,"orientation":0.880767,"phaseMask":1,"position_x":-217.173,"position_y":384.857,"position_z":-39.0385,"rotation0":0.063291,"rotation1":-0.131798,"rotation2":0.421848,"rotation3":0.8948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33221,"id":131474,"map":70,"orientation":-0.174533,"phaseMask":1,"position_x":161.826,"position_y":298.283,"position_z":-51.3698,"rotation0":0,"rotation1":0,"rotation2":-0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33222,"id":48510,"map":70,"orientation":-2.53924,"phaseMask":1,"position_x":-241.045,"position_y":-16.8139,"position_z":-48.2756,"rotation0":-0.003279,"rotation1":0.007053,"rotation2":0.954961,"rotation3":-0.296629,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33223,"id":124370,"map":70,"orientation":0,"phaseMask":1,"position_x":-185.394,"position_y":389.599,"position_z":-36.3661,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33224,"id":48471,"map":70,"orientation":3.19725,"phaseMask":1,"position_x":-242.871,"position_y":9.15532,"position_z":-47.8467,"rotation0":0.0222368,"rotation1":-0.0474024,"rotation2":-0.998269,"rotation3":0.0267844,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33226,"id":48467,"map":70,"orientation":3.07303,"phaseMask":1,"position_x":8.29184,"position_y":406.718,"position_z":-46.901,"rotation0":-0.032725,"rotation1":0.029802,"rotation2":0.998399,"rotation3":0.035207,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33227,"id":48503,"map":70,"orientation":-1.45661,"phaseMask":1,"position_x":-246.137,"position_y":275.353,"position_z":-50.0709,"rotation0":0.019126,"rotation1":0.000954,"rotation2":-0.665622,"rotation3":0.746043,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33228,"id":48435,"map":70,"orientation":1.92762,"phaseMask":1,"position_x":-215.627,"position_y":361.523,"position_z":-39.3363,"rotation0":0.063823,"rotation1":-0.040403,"rotation2":0.819162,"rotation3":0.568566,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33229,"id":48490,"map":70,"orientation":1.84201,"phaseMask":1,"position_x":-218.364,"position_y":362.314,"position_z":-39.1264,"rotation0":0.0533819,"rotation1":-0.0348234,"rotation2":0.794768,"rotation3":0.603557,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33231,"id":48423,"map":70,"orientation":0.325101,"phaseMask":1,"position_x":-259.395,"position_y":370.126,"position_z":-37.1944,"rotation0":-0.03313,"rotation1":0.074323,"rotation2":0.162909,"rotation3":0.98328,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33232,"id":48425,"map":70,"orientation":1.40642,"phaseMask":1,"position_x":42.9327,"position_y":326.448,"position_z":-43.193,"rotation0":0.009595,"rotation1":0.026232,"rotation2":0.646162,"rotation3":0.762689,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33233,"id":48415,"map":70,"orientation":-2.50895,"phaseMask":1,"position_x":-255.129,"position_y":372.414,"position_z":-37.9806,"rotation0":0.041143,"rotation1":-0.02152,"rotation2":0.949697,"rotation3":-0.30971,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33234,"id":48451,"map":70,"orientation":2.71758,"phaseMask":1,"position_x":-162.023,"position_y":205.416,"position_z":-49.7395,"rotation0":-0.0370426,"rotation1":-0.0262156,"rotation2":0.976819,"rotation3":0.209201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33236,"id":48504,"map":70,"orientation":-1.54689,"phaseMask":1,"position_x":-247.816,"position_y":275.446,"position_z":-50.0534,"rotation0":0.024115,"rotation1":0.042028,"rotation2":-0.697377,"rotation3":0.715065,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33237,"id":48406,"map":70,"orientation":-0.797098,"phaseMask":1,"position_x":-247.478,"position_y":-7.58863,"position_z":-48.3038,"rotation0":0.08282,"rotation1":0.05369,"rotation2":-0.390378,"rotation3":0.915349,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33238,"id":103010,"map":70,"orientation":1.72626,"phaseMask":1,"position_x":-242.733,"position_y":7.14204,"position_z":-47.7888,"rotation0":0.011142,"rotation1":-0.050888,"rotation2":0.757998,"rotation3":0.650173,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33239,"id":48458,"map":70,"orientation":1.96629,"phaseMask":1,"position_x":-215.218,"position_y":384.681,"position_z":-38.7247,"rotation0":-0.005656,"rotation1":-0.041683,"rotation2":0.831121,"rotation3":0.554498,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33240,"id":170353,"map":70,"orientation":0.436333,"phaseMask":1,"position_x":150.495,"position_y":305.928,"position_z":-52.2261,"rotation0":0,"rotation1":0,"rotation2":0.21644,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":33242,"id":48419,"map":70,"orientation":1.84374,"phaseMask":1,"position_x":22.4306,"position_y":214.409,"position_z":-30.6124,"rotation0":-0.0370727,"rotation1":0.028266,"rotation2":0.795862,"rotation3":0.60368,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33244,"id":48494,"map":70,"orientation":3.2658,"phaseMask":1,"position_x":-112.48,"position_y":234.122,"position_z":-52.2094,"rotation0":-0.0681696,"rotation1":0.0656815,"rotation2":-0.993858,"rotation3":0.0573102,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33246,"id":48444,"map":70,"orientation":2.15463,"phaseMask":1,"position_x":-88.7184,"position_y":313.445,"position_z":-51.1717,"rotation0":0.0195336,"rotation1":0.00107479,"rotation2":0.880602,"rotation3":0.473453,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":33248,"id":48466,"map":70,"orientation":1.55063,"phaseMask":1,"position_x":-94.9388,"position_y":203.878,"position_z":-39.6716,"rotation0":-0.0343728,"rotation1":0.0555735,"rotation2":0.69779,"rotation3":0.713315,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33250,"id":48468,"map":70,"orientation":-2.76553,"phaseMask":1,"position_x":6.15078,"position_y":390.771,"position_z":-44.5271,"rotation0":0.003794,"rotation1":0.109831,"rotation2":0.975932,"rotation3":-0.18836,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":33251,"id":48414,"map":70,"orientation":5.56686,"phaseMask":1,"position_x":26.641,"position_y":221.423,"position_z":-31.6789,"rotation0":0.00346565,"rotation1":-0.000417709,"rotation2":-0.350554,"rotation3":0.936536,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33253,"id":142488,"map":70,"orientation":0.436333,"phaseMask":1,"position_x":150.495,"position_y":305.928,"position_z":-52.2261,"rotation0":0,"rotation1":0,"rotation2":0.21644,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33254,"id":48437,"map":70,"orientation":0.153015,"phaseMask":1,"position_x":-213.755,"position_y":7.63143,"position_z":-48.1748,"rotation0":-0.035141,"rotation1":0.0410681,"rotation2":0.0777111,"rotation3":0.99551,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33256,"id":48502,"map":70,"orientation":-1.63188,"phaseMask":1,"position_x":-247.077,"position_y":286.443,"position_z":-48.6889,"rotation0":0,"rotation1":0,"rotation2":-0.72837,"rotation3":0.685184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33257,"id":48416,"map":70,"orientation":-0.626887,"phaseMask":1,"position_x":24.4553,"position_y":223.402,"position_z":-31.8671,"rotation0":-0.039967,"rotation1":-0.033002,"rotation2":-0.309081,"rotation3":0.949622,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33258,"id":48506,"map":70,"orientation":0.915699,"phaseMask":1,"position_x":-248.061,"position_y":238.934,"position_z":-46.504,"rotation0":-0.015833,"rotation1":0.007554,"rotation2":0.442086,"rotation3":0.896801,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33259,"id":103006,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-82.1037,"position_y":332.987,"position_z":-48.6892,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33260,"id":103009,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-85.766,"position_y":314.434,"position_z":-51.2457,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33261,"id":48485,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":52.875,"position_y":345.382,"position_z":-40.1759,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33262,"id":48457,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-36.6456,"position_y":337.479,"position_z":-39.5379,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33263,"id":48478,"map":70,"orientation":2.43293,"phaseMask":1,"position_x":-354.055,"position_y":113.161,"position_z":-44.222,"rotation0":0.035616,"rotation1":0.020336,"rotation2":0.937377,"rotation3":0.345893,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33264,"id":48427,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-126.334,"position_y":332.602,"position_z":-44.0837,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33265,"id":48498,"map":70,"orientation":-1.5708,"phaseMask":1,"position_x":-245.441,"position_y":286.356,"position_z":-48.6889,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33266,"id":103005,"map":70,"orientation":3.14159,"phaseMask":1,"position_x":-115.06,"position_y":345.334,"position_z":-44.6386,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33267,"id":48439,"map":70,"orientation":2.80547,"phaseMask":1,"position_x":-198.304,"position_y":270.631,"position_z":-48.6933,"rotation0":0.060366,"rotation1":-0.018399,"rotation2":0.983862,"rotation3":0.167433,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33268,"id":48497,"map":70,"orientation":4.08307,"phaseMask":1,"position_x":-246.502,"position_y":265,"position_z":-50.3298,"rotation0":-0.0128069,"rotation1":-0.00695419,"rotation2":-0.891137,"rotation3":0.4535,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":33270,"id":48463,"map":70,"orientation":1.8128,"phaseMask":1,"position_x":-15.815,"position_y":341.419,"position_z":-41.1402,"rotation0":-0.0378938,"rotation1":-0.00888443,"rotation2":0.787149,"rotation3":0.615533,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":33272,"id":48429,"map":70,"orientation":4.94709,"phaseMask":1,"position_x":30.4804,"position_y":317.575,"position_z":-39.893,"rotation0":-0.00670195,"rotation1":0.0167913,"rotation2":-0.619243,"rotation3":0.784992,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33274,"id":48438,"map":70,"orientation":2.90467,"phaseMask":1,"position_x":-197.55,"position_y":272.136,"position_z":-48.7444,"rotation0":0.074492,"rotation1":-0.004459,"rotation2":0.990261,"rotation3":0.117531,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46902,"animprogress":255,"areaId":0,"guid":33275,"id":48512,"map":70,"orientation":4.81984,"phaseMask":1,"position_x":-215.032,"position_y":-8.5477,"position_z":-48.5745,"rotation0":-0.0179706,"rotation1":0.0289459,"rotation2":-0.667496,"rotation3":0.743834,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33277,"id":48489,"map":70,"orientation":-3.07411,"phaseMask":1,"position_x":-109.96,"position_y":234.258,"position_z":-52.2748,"rotation0":-0.073691,"rotation1":-0.058389,"rotation2":0.994851,"rotation3":-0.037827,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33278,"id":1735,"map":70,"orientation":2.77507,"phaseMask":1,"position_x":-179.772,"position_y":95.0592,"position_z":-48.8041,"rotation0":0,"rotation1":0,"rotation2":0.983255,"rotation3":0.182237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33279,"id":1735,"map":70,"orientation":-1.97222,"phaseMask":1,"position_x":-23.9125,"position_y":326.636,"position_z":-44.5684,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33280,"id":2040,"map":70,"orientation":2.68781,"phaseMask":1,"position_x":26.3165,"position_y":209.089,"position_z":-29.7314,"rotation0":0,"rotation1":0,"rotation2":0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":1800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33281,"id":2040,"map":70,"orientation":-0.174533,"phaseMask":1,"position_x":-360.646,"position_y":141.757,"position_z":-48.4138,"rotation0":0,"rotation1":0,"rotation2":-0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":1800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33282,"id":3707,"map":70,"orientation":-2.61799,"phaseMask":1,"position_x":-101.293,"position_y":329.776,"position_z":-47.5239,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33283,"id":3707,"map":70,"orientation":-0.10472,"phaseMask":1,"position_x":-247.885,"position_y":236.192,"position_z":-46.4701,"rotation0":0,"rotation1":0,"rotation2":-0.0523361,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40670,"id":3707,"map":70,"orientation":-0.401426,"phaseMask":1,"position_x":-117.284,"position_y":235.933,"position_z":-51.811,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40671,"id":3707,"map":70,"orientation":-3.10669,"phaseMask":1,"position_x":54.6041,"position_y":348.621,"position_z":-40.4473,"rotation0":0,"rotation1":0,"rotation2":-0.999848,"rotation3":0.0174505,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40672,"id":3707,"map":70,"orientation":-2.67035,"phaseMask":1,"position_x":37.0305,"position_y":227.32,"position_z":-32.1131,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40673,"id":123329,"map":70,"orientation":0.383972,"phaseMask":1,"position_x":-355.996,"position_y":112.829,"position_z":-43.2036,"rotation0":0,"rotation1":0,"rotation2":0.190809,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40674,"id":128293,"map":70,"orientation":1.0472,"phaseMask":1,"position_x":-358.599,"position_y":100.755,"position_z":-53.1931,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40675,"id":126049,"map":70,"orientation":2.23402,"phaseMask":1,"position_x":-203.678,"position_y":214.625,"position_z":-46.4376,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40677,"id":126049,"map":70,"orientation":-0.418879,"phaseMask":1,"position_x":57.257,"position_y":322.762,"position_z":-41.8984,"rotation0":0,"rotation1":0,"rotation2":-0.207912,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40679,"id":128293,"map":70,"orientation":-1.71042,"phaseMask":1,"position_x":-164.64,"position_y":301.678,"position_z":-53.1613,"rotation0":0,"rotation1":0,"rotation2":-0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40680,"id":126049,"map":70,"orientation":-2.63545,"phaseMask":1,"position_x":1.60166,"position_y":236.356,"position_z":-32.3796,"rotation0":0,"rotation1":0,"rotation2":-0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40682,"id":126049,"map":70,"orientation":-1.43117,"phaseMask":1,"position_x":-95.1379,"position_y":337.393,"position_z":-47.0908,"rotation0":0,"rotation1":0,"rotation2":-0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40684,"id":126049,"map":70,"orientation":-0.471239,"phaseMask":1,"position_x":-112.397,"position_y":230.632,"position_z":-52.1536,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40686,"id":126049,"map":70,"orientation":-2.04204,"phaseMask":1,"position_x":-129.112,"position_y":384.45,"position_z":-39.9942,"rotation0":0,"rotation1":0,"rotation2":-0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40688,"id":142088,"map":70,"orientation":-1.62316,"phaseMask":1,"position_x":-1.89168,"position_y":422.099,"position_z":-47.1127,"rotation0":0,"rotation1":0,"rotation2":-0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40689,"id":19903,"map":70,"orientation":-2.11185,"phaseMask":1,"position_x":-119.96,"position_y":269.695,"position_z":-45.7821,"rotation0":0,"rotation1":0,"rotation2":-0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40690,"id":19903,"map":70,"orientation":-0.383972,"phaseMask":1,"position_x":-143.01,"position_y":210.889,"position_z":-46.4858,"rotation0":0,"rotation1":0,"rotation2":-0.190809,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40691,"id":19903,"map":70,"orientation":-0.907571,"phaseMask":1,"position_x":-14.075,"position_y":300.25,"position_z":-46.1978,"rotation0":0,"rotation1":0,"rotation2":-0.438371,"rotation3":0.898794,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40692,"id":131978,"map":70,"orientation":-2.98451,"phaseMask":1,"position_x":-150.166,"position_y":201.764,"position_z":-49.9121,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40693,"id":131978,"map":70,"orientation":2.82743,"phaseMask":1,"position_x":-73.5079,"position_y":265.315,"position_z":-47.6291,"rotation0":0,"rotation1":0,"rotation2":0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40694,"id":113757,"map":70,"orientation":-2.02458,"phaseMask":1,"position_x":21.1868,"position_y":413.872,"position_z":-45.0149,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40695,"id":125477,"map":70,"orientation":1.93731,"phaseMask":1,"position_x":-350.81,"position_y":82.6264,"position_z":-51.2318,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566409,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40696,"id":130511,"map":70,"orientation":-2.67035,"phaseMask":1,"position_x":104.845,"position_y":272.453,"position_z":-26.5322,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40697,"id":123463,"map":70,"orientation":2.54818,"phaseMask":1,"position_x":-355.018,"position_y":114.854,"position_z":-43.2878,"rotation0":0,"rotation1":0,"rotation2":0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":40698,"id":133234,"map":70,"orientation":-2.70526,"phaseMask":1,"position_x":96.4808,"position_y":269.052,"position_z":-52.1487,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268523,"id":141979,"map":70,"orientation":2.78,"phaseMask":1,"position_x":154.952,"position_y":290.27,"position_z":-52.226,"rotation0":0,"rotation1":0,"rotation2":0.983701,"rotation3":0.179813,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/Uldaman":"6a7cb4e380b3ac4be528055f51eeb150f20dfa85cb5390eca2ba64a9c3cad2ae","patch/World/maps/Uldaman":"dee4bcf241b4ed013528b657f743419e38ec9ae16c4ba0abfe2dacad48a7feed"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/uldaman/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["38/38 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"gnomeregan","title":"Gnomeregan","mapId":90,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[25,40]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Gnomeregan","theme":"Instanced dungeon","summary":"Fight through Gnomeregan, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Gnomeregan...","unchartedAreaName":"Uncharted Gnomeregan","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":751.6791},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/90-gnomeragoninstance/visual.glb","checksum":"22dbee0fbf7eb1c7e6f6c98c3112a062b40e9e71906a9f37b115dc12a9f156e2","size":4662676,"triangleCount":139771}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/90-gnomeragoninstance/collision.glb","checksum":"c0a73fd9508fea6d80e446e9c77c6a0fb6d543edcdb595e52fad2c42a6f5bb4f","size":1167604,"triangleCount":99999}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/90-gnomeragoninstance/navigation.glb","checksum":"2630886a2ff3960221014305645e9e55197e5459ce5b7fa3e35097bb701e4eae","size":258384,"triangleCount":20294}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[481.1252,-358.9878,-282.4787],"max":[1145.5582,-135.8028,761.5201]},"entrance":{"name":"Gnomeregan Entrance","footPosition":[526.1252,-155.8028,-101.2147],"forward":[0.07796997673392829,0,0.9969557075056598],"yaw":0.07804919434527577},"areas":[{"id":"entrance","name":"Gnomeregan Entrance","center":[526.1252,-155.8028,-101.2147],"radius":35},{"id":"area-viscous-fallout","name":"Viscous Fallout's Encounter","center":[665.2952,-212.8968,-50.4591],"radius":42},{"id":"area-electrocutioner-6000","name":"Electrocutioner 6000's Encounter","center":[745.9532,-221.6698,403.9673],"radius":42},{"id":"area-crowd-pummeler-9-60","name":"Crowd Pummeler 9-60's Encounter","center":[1083.0422,-277.4558,261.7333],"radius":42},{"id":"area-mekgineer-thermaplugg","name":"Mekgineer Thermaplugg's Encounter","center":[725.2292,-330.1278,571.2243],"radius":42}],"entities":{"entry-6233":{"id":"entry-6233","kind":"mob","name":"Mechanized Sentry","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4013,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6978-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.8958,"markerRadius":0.8947}}},"entry-6223":{"id":"entry-6223","kind":"mob","name":"Leprous Defender","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6096,"damageMultiplier":1.12},{"id":"spell-2643","name":"Multi-Shot","spellId":2643,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6096,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6982-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0021,"labelHeight":1.6433,"markerRadius":0.65}}},"entry-6229":{"id":"entry-6229","kind":"boss","name":"Crowd Pummeler 9-60","title":"Dungeon Boss","hasLoot":true,"combat":{"level":28,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16169","name":"Arcing Smash","spellId":16169,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6409,"damageMultiplier":1.35},{"id":"spell-5568","name":"Trample","spellId":5568,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6409,"damageMultiplier":1.35},{"id":"spell-10887","name":"Crowd Pummel","spellId":10887,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6409,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6774-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.4211,"markerRadius":1.4843}}},"entry-6224":{"id":"entry-6224","kind":"mob","name":"Leprous Machinesmith","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/24c2a0dfe0450f20fff15e59b309083239d9eb9af6d0eb0d698be3aaaf7eb382.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6234":{"id":"entry-6234","kind":"mob","name":"Mechanized Guardian","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11820","name":"Electrified Net","spellId":11820,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4368,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4368,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6979-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":3.4215,"markerRadius":1.0736}}},"entry-6212":{"id":"entry-6212","kind":"mob","name":"Dark Iron Agent","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-3456-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-6235":{"id":"entry-6235","kind":"boss","name":"Electrocutioner 6000","title":"Dungeon Boss","hasLoot":true,"combat":{"level":28,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11082","name":"Megavolt","spellId":11082,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6605,"damageMultiplier":1.35},{"id":"spell-11085","name":"Chain Bolt","spellId":11085,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6605,"damageMultiplier":1.35},{"id":"spell-11084","name":"Shock","spellId":11084,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6605,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6915-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":3.2715,"markerRadius":1.398}}},"entry-7897":{"id":"entry-7897","kind":"mob","name":"Alarm-a-bomb 2600","combat":{"level":20,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6888-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.1082,"markerRadius":0.8619}}},"entry-7998":{"id":"entry-7998","kind":"mob","name":"Blastmaster Emi Shortfuse","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-7138-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0019,"labelHeight":1.5257,"markerRadius":0.65}}},"entry-7079":{"id":"entry-7079","kind":"boss","name":"Viscous Fallout","title":"Dungeon Boss","hasLoot":true,"combat":{"level":28,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.126976,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6341,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-5497-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2829,"markerRadius":1.7306}}},"entry-7800":{"id":"entry-7800","kind":"boss","name":"Mekgineer Thermaplugg","title":"Dungeon Boss","hasLoot":true,"combat":{"level":28,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4228,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6980-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1677,"labelHeight":5.4247,"markerRadius":2.1242}}},"entry-7849":{"id":"entry-7849","kind":"mob","name":"Mobile Alert System","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6888-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.1082,"markerRadius":0.8619}}},"entry-6219":{"id":"entry-6219","kind":"mob","name":"Corrosive Lurker","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9459","name":"Corrosive Ooze","spellId":9459,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4835,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4835,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-11137-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.4273,"labelHeight":5.4592,"markerRadius":2.6926}}},"entry-6218":{"id":"entry-6218","kind":"mob","name":"Irradiated Slime","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10341","name":"Radiation Cloud","spellId":10341,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6402,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6402,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"ooze","model":{"url":"/assets/game/creatures/shared/2da48b305af87e5b7fe3a62db57cec0b5328ee4b5e390214600ddb6f9428db8b.glb","rotationY":-1.5707963267948966,"groundOffset":0.7137,"labelHeight":2.7872,"markerRadius":1.3463}}},"entry-6220":{"id":"entry-6220","kind":"mob","name":"Irradiated Horror","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8211","name":"Chain Burn","spellId":8211,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6245,"damageMultiplier":1.12},{"id":"spell-10341","name":"Radiation Cloud","spellId":10341,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6245,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-4907-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3404,"markerRadius":1.3312}}},"entry-6206":{"id":"entry-6206","kind":"mob","name":"Caverndeep Burrower","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9770","name":"Radiation","spellId":9770,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6827,"damageMultiplier":1.12},{"id":"spell-16145","name":"Sunder Armor","spellId":16145,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6827,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-830-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6504,"markerRadius":0.6808}}},"entry-6329":{"id":"entry-6329","kind":"mob","name":"Irradiated Pillager","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-976-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3504,"markerRadius":0.65}}},"entry-6211":{"id":"entry-6211","kind":"mob","name":"Caverndeep Reaver","combat":{"level":26,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-10285-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9505,"markerRadius":0.7696}}},"entry-6222":{"id":"entry-6222","kind":"mob","name":"Leprous Technician","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13398","name":"Throw Wrench","spellId":13398,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5672,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5672,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6932-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-7603":{"id":"entry-7603","kind":"mob","name":"Leprous Assistant","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6350,"damageMultiplier":1.12},{"id":"spell-11264","name":"Ice Blast","spellId":11264,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6350,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6967-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6225":{"id":"entry-6225","kind":"mob","name":"Mechano-Tank","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10346","name":"Machine Gun","spellId":10346,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4645,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4645,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-5926-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0021,"labelHeight":2.7842,"markerRadius":1.165}}},"entry-6230":{"id":"entry-6230","kind":"mob","name":"Peacekeeper Security Suit","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10730","name":"Pacify","spellId":10730,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4472,"damageMultiplier":1.12},{"id":"spell-6533","name":"Net","spellId":6533,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4472,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-8369-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0416,"markerRadius":1.012}}},"entry-6227":{"id":"entry-6227","kind":"mob","name":"Mechano-Frostwalker","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22519","name":"Ice Nova","spellId":22519,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4909,"damageMultiplier":0.62,"radius":8},{"id":"spell-11264","name":"Ice Blast","spellId":11264,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4909,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6891-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0023,"labelHeight":3.0276,"markerRadius":1.2815}}},"entry-6207":{"id":"entry-6207","kind":"mob","name":"Caverndeep Ambusher","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-764-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.7502,"markerRadius":0.65}}},"entry-9676":{"id":"entry-9676","kind":"mob","name":"Tink Sprocketwhistle","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-9027-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6407":{"id":"entry-6407","kind":"mob","name":"Holdout Technician","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6430,"damageMultiplier":1.12},{"id":"spell-8858","name":"Bomb","spellId":8858,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6430,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6628-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6392":{"id":"entry-6392","kind":"mob","name":"Holdout Medic","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6608-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6391":{"id":"entry-6391","kind":"mob","name":"Holdout Warrior","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6610-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-6232":{"id":"entry-6232","kind":"mob","name":"Arcane Nullifier X-21","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6889-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0416,"markerRadius":1.012}}},"entry-6226":{"id":"entry-6226","kind":"mob","name":"Mechano-Flamewalker","combat":{"level":27,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11306","name":"Fire Nova","spellId":11306,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":7323,"damageMultiplier":0.62,"radius":8},{"id":"spell-10733","name":"Flame Spray","spellId":10733,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7323,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6890-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0023,"labelHeight":3.0276,"markerRadius":1.2815}}},"entry-6228":{"id":"entry-6228","kind":"mob","name":"Dark Iron Ambassador","combat":{"level":28,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5485,"damageMultiplier":1.12},{"id":"spell-184","name":"Fire Shield II","spellId":184,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":5485,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-184","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gnomeregan/creatures/display-6669-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-17971","entityId":"entry-6233","position":[754.8312,-218.4038,212.9663],"yaw":-1.2258,"spawnMask":1},{"id":"creature-19225","entityId":"entry-6233","position":[668.6122,-216.4018,182.5413],"yaw":-4.66003,"spawnMask":1},{"id":"creature-23963","entityId":"entry-6233","position":[833.5132,-260.4638,255.0133],"yaw":-1.41372,"spawnMask":1},{"id":"creature-30114","entityId":"entry-6233","position":[639.6442,-212.7658,136.8693],"yaw":-3.83972,"spawnMask":1},{"id":"creature-30115","entityId":"entry-6223","position":[705.2842,-212.7658,164.1533],"yaw":-4.86947,"spawnMask":1},{"id":"creature-30116","entityId":"entry-6223","position":[811.3672,-252.1308,271.7613],"yaw":-2.68781,"spawnMask":1},{"id":"creature-30117","entityId":"entry-6233","position":[732.8632,-218.2508,200.7343],"yaw":-4.88692,"spawnMask":1},{"id":"creature-30118","entityId":"entry-6233","position":[711.2942,-212.7658,163.6383],"yaw":-5.55015,"spawnMask":1},{"id":"creature-30119","entityId":"entry-6233","position":[667.7952,-212.7658,163.9913],"yaw":-0.645772,"spawnMask":1},{"id":"creature-30120","entityId":"entry-6233","position":[645.4832,-212.7658,155.5833],"yaw":-1.37881,"spawnMask":1},{"id":"creature-30121","entityId":"entry-6229","position":[1083.0422,-277.4558,261.7333],"yaw":-6.24828,"spawnMask":1},{"id":"creature-30122","entityId":"entry-6224","position":[786.0752,-331.8988,576.5393],"yaw":-2.68781,"spawnMask":1},{"id":"creature-30123","entityId":"entry-6234","position":[927.8132,-296.0028,440.6123],"yaw":-6.05298,"spawnMask":1},{"id":"creature-30124","entityId":"entry-6212","position":[937.4972,-295.9198,485.6583],"yaw":-5.25344,"spawnMask":1},{"id":"creature-30125","entityId":"entry-6212","position":[820.4682,-331.9208,596.2053],"yaw":-1.39626,"spawnMask":1},{"id":"creature-30126","entityId":"entry-6234","position":[944.9482,-308.9478,500.9823],"yaw":-5.5676,"spawnMask":1},{"id":"creature-30127","entityId":"entry-6212","position":[899.7012,-322.9198,593.9693],"yaw":-2.26893,"spawnMask":1},{"id":"creature-30128","entityId":"entry-6234","position":[866.4372,-290.6418,440.3713],"yaw":-0.610865,"spawnMask":1},{"id":"creature-30129","entityId":"entry-6212","position":[902.6722,-322.9198,594.4883],"yaw":-5.5676,"spawnMask":1},{"id":"creature-30130","entityId":"entry-6234","position":[785.5702,-331.9038,590.4573],"yaw":-2.98451,"spawnMask":1},{"id":"creature-30131","entityId":"entry-6212","position":[925.1322,-322.9198,611.3453],"yaw":-2.42601,"spawnMask":1},{"id":"creature-30133","entityId":"entry-6235","position":[745.9532,-221.6698,403.9673],"yaw":-5.75959,"spawnMask":1},{"id":"creature-30136","entityId":"entry-7998","position":[708.8402,-157.3418,-237.4787],"yaw":-1.65806,"spawnMask":1},{"id":"creature-30137","entityId":"entry-7079","position":[665.2952,-212.8968,-50.4591],"yaw":-6.03304,"spawnMask":1},{"id":"creature-30139","entityId":"entry-7800","position":[725.2292,-330.1278,571.2243],"yaw":-2.9147,"spawnMask":1},{"id":"creature-30140","entityId":"entry-7849","position":[640.0392,-212.8498,125.4463],"yaw":-4.68705,"spawnMask":1},{"id":"creature-30142","entityId":"entry-7849","position":[621.9712,-216.4858,124.9613],"yaw":-4.84694,"spawnMask":1},{"id":"creature-30145","entityId":"entry-6219","position":[586.7452,-214.7098,-32.8748],"yaw":-5.11381,"spawnMask":1},{"id":"creature-30146","entityId":"entry-6218","position":[567.4232,-213.8328,32.9213],"yaw":-3.52556,"spawnMask":1},{"id":"creature-30147","entityId":"entry-6220","position":[666.0912,-213.4138,-31.2628],"yaw":-4.62512,"spawnMask":1},{"id":"creature-30148","entityId":"entry-6218","position":[650.7312,-214.9448,-6.6787],"yaw":-3.59538,"spawnMask":1},{"id":"creature-30149","entityId":"entry-6220","position":[638.8662,-213.6748,75.4743],"yaw":-3.26377,"spawnMask":1},{"id":"creature-30150","entityId":"entry-6219","position":[603.3482,-215.9648,-25.1594],"yaw":-5.75959,"spawnMask":1},{"id":"creature-30151","entityId":"entry-6220","position":[574.6022,-215.3368,-1.0697],"yaw":-3.05433,"spawnMask":1},{"id":"creature-30152","entityId":"entry-6218","position":[691.5662,-214.1108,31.6973],"yaw":-3.9619,"spawnMask":1},{"id":"creature-30153","entityId":"entry-6219","position":[666.7982,-212.7978,-49.3031],"yaw":-0.282745,"spawnMask":1},{"id":"creature-30154","entityId":"entry-6220","position":[646.7702,-215.2358,19.5703],"yaw":-4.93928,"spawnMask":1},{"id":"creature-30155","entityId":"entry-6206","position":[764.5402,-209.0368,-18.776],"yaw":-3.735,"spawnMask":1},{"id":"creature-30156","entityId":"entry-6206","position":[813.7452,-204.5078,-40.5051],"yaw":-3.1765,"spawnMask":1},{"id":"creature-30157","entityId":"entry-6329","position":[836.6652,-188.1128,-21.988],"yaw":-0.890118,"spawnMask":1},{"id":"creature-30158","entityId":"entry-6211","position":[792.2192,-174.9088,102.8553],"yaw":-0.907571,"spawnMask":1},{"id":"creature-30159","entityId":"entry-6329","position":[781.9392,-184.5388,-80.2315],"yaw":-5.51524,"spawnMask":1},{"id":"creature-30160","entityId":"entry-6329","position":[744.2562,-207.0108,38.8283],"yaw":-5.48033,"spawnMask":1},{"id":"creature-30161","entityId":"entry-6329","position":[828.4522,-200.4348,-25.9012],"yaw":-5.06145,"spawnMask":1},{"id":"creature-30162","entityId":"entry-6329","position":[830.6432,-188.7368,36.0953],"yaw":-0.139626,"spawnMask":1},{"id":"creature-30163","entityId":"entry-6329","position":[734.2662,-201.9068,-64.969],"yaw":-0.122173,"spawnMask":1},{"id":"creature-30164","entityId":"entry-6206","position":[767.8702,-208.8168,-21.924],"yaw":-5.88176,"spawnMask":1},{"id":"creature-30165","entityId":"entry-6222","position":[807.5142,-235.5438,334.6253],"yaw":-4.0887,"spawnMask":1},{"id":"creature-30166","entityId":"entry-7603","position":[668.8322,-235.4608,344.2383],"yaw":-3.15905,"spawnMask":1},{"id":"creature-30167","entityId":"entry-7603","position":[674.2182,-235.4608,341.9733],"yaw":-1.76278,"spawnMask":1},{"id":"creature-30168","entityId":"entry-7603","position":[674.9212,-235.4608,331.8683],"yaw":-2.33874,"spawnMask":1},{"id":"creature-30169","entityId":"entry-7603","position":[680.2162,-235.4608,336.9873],"yaw":0,"spawnMask":1},{"id":"creature-30170","entityId":"entry-6233","position":[666.8322,-235.4608,340.5953],"yaw":-1.11701,"spawnMask":1},{"id":"creature-30171","entityId":"entry-6225","position":[733.1292,-278.0228,457.1653],"yaw":-4.43745,"spawnMask":1},{"id":"creature-30172","entityId":"entry-6222","position":[828.7342,-278.0058,342.1443],"yaw":-0.601507,"spawnMask":1},{"id":"creature-30173","entityId":"entry-6222","position":[780.2052,-235.5438,497.2353],"yaw":-1.44707,"spawnMask":1},{"id":"creature-30174","entityId":"entry-6225","position":[697.0972,-278.0228,380.9343],"yaw":-5.01041,"spawnMask":1},{"id":"creature-30175","entityId":"entry-7603","position":[658.7632,-235.5438,388.5373],"yaw":-0.360909,"spawnMask":1},{"id":"creature-30176","entityId":"entry-7603","position":[663.2112,-235.5448,381.1123],"yaw":-3.47808,"spawnMask":1},{"id":"creature-30177","entityId":"entry-7603","position":[667.8652,-235.4608,373.0633],"yaw":-3.85718,"spawnMask":1},{"id":"creature-30178","entityId":"entry-7603","position":[663.8942,-235.5448,387.4683],"yaw":-5.99827,"spawnMask":1},{"id":"creature-30179","entityId":"entry-6233","position":[660.8752,-235.5438,376.3963],"yaw":-5.81475,"spawnMask":1},{"id":"creature-30180","entityId":"entry-7603","position":[697.9312,-235.4608,493.9183],"yaw":-4.5204,"spawnMask":1},{"id":"creature-30181","entityId":"entry-7603","position":[697.5252,-235.4608,489.7503],"yaw":0,"spawnMask":1},{"id":"creature-30182","entityId":"entry-7603","position":[692.4662,-235.4608,490.8483],"yaw":-5.07891,"spawnMask":1},{"id":"creature-30183","entityId":"entry-7603","position":[698.9072,-235.5438,497.8413],"yaw":-3.60776,"spawnMask":1},{"id":"creature-30184","entityId":"entry-6222","position":[687.4902,-235.4598,492.6773],"yaw":-1.0821,"spawnMask":1},{"id":"creature-30185","entityId":"entry-6222","position":[698.9752,-278.0228,383.8753],"yaw":-6.21937,"spawnMask":1},{"id":"creature-30187","entityId":"entry-7603","position":[1054.0582,-321.3558,229.7273],"yaw":-1.86721,"spawnMask":1},{"id":"creature-30188","entityId":"entry-7603","position":[1054.7492,-321.3758,231.9853],"yaw":-1.86691,"spawnMask":1},{"id":"creature-30189","entityId":"entry-7603","position":[1049.8282,-321.3508,220.6083],"yaw":-5.21929,"spawnMask":1},{"id":"creature-30190","entityId":"entry-7603","position":[1052.5472,-321.3498,221.3853],"yaw":-5.21926,"spawnMask":1},{"id":"creature-30191","entityId":"entry-6233","position":[1053.3252,-321.3498,218.6663],"yaw":-5.21927,"spawnMask":1},{"id":"creature-30192","entityId":"entry-6224","position":[962.3582,-277.5388,250.2273],"yaw":-4.49674,"spawnMask":1},{"id":"creature-30194","entityId":"entry-7603","position":[1010.3312,-269.5908,2.2543],"yaw":-0.139626,"spawnMask":1},{"id":"creature-30195","entityId":"entry-7603","position":[1000.6802,-269.5908,0.9844],"yaw":-4.92183,"spawnMask":1},{"id":"creature-30196","entityId":"entry-7603","position":[1004.8172,-269.5908,-3.1299],"yaw":-3.85718,"spawnMask":1},{"id":"creature-30197","entityId":"entry-7603","position":[1005.0112,-269.5908,5.0013],"yaw":-1.41372,"spawnMask":1},{"id":"creature-30198","entityId":"entry-6224","position":[1005.5022,-269.5908,1.2823],"yaw":-6.03884,"spawnMask":1},{"id":"creature-30199","entityId":"entry-7603","position":[957.1732,-277.5388,247.9333],"yaw":-5.02194,"spawnMask":1},{"id":"creature-30200","entityId":"entry-7603","position":[955.4552,-277.5388,256.0693],"yaw":-4.64483,"spawnMask":1},{"id":"creature-30201","entityId":"entry-7603","position":[950.5492,-277.5388,242.0573],"yaw":-1.35328,"spawnMask":1},{"id":"creature-30202","entityId":"entry-7603","position":[955.3252,-277.5388,246.6923],"yaw":-4.43788,"spawnMask":1},{"id":"creature-30203","entityId":"entry-6233","position":[952.4942,-277.4558,259.4333],"yaw":0,"spawnMask":1},{"id":"creature-30204","entityId":"entry-6224","position":[962.4132,-277.5388,248.2853],"yaw":-1.75239,"spawnMask":1},{"id":"creature-30206","entityId":"entry-6233","position":[960.3472,-261.6368,-45.9103],"yaw":-4.72984,"spawnMask":1},{"id":"creature-30207","entityId":"entry-6227","position":[1070.5982,-321.3758,264.2623],"yaw":-4.18204,"spawnMask":1},{"id":"creature-30208","entityId":"entry-7603","position":[1018.7962,-277.4558,320.7273],"yaw":-0.383972,"spawnMask":1},{"id":"creature-30209","entityId":"entry-7603","position":[1014.2212,-277.4558,323.0593],"yaw":0,"spawnMask":1},{"id":"creature-30210","entityId":"entry-7603","position":[1027.4372,-277.4558,316.7733],"yaw":-2.25148,"spawnMask":1},{"id":"creature-30211","entityId":"entry-7603","position":[1023.5272,-277.4558,322.1433],"yaw":-4.90438,"spawnMask":1},{"id":"creature-30212","entityId":"entry-6233","position":[1028.1572,-277.4558,324.2833],"yaw":-1.309,"spawnMask":1},{"id":"creature-30218","entityId":"entry-6207","position":[777.0152,-207.9388,-16.6048],"yaw":-4.52782,"spawnMask":1},{"id":"creature-30219","entityId":"entry-6206","position":[649.8402,-159.6028,79.5943],"yaw":-3.66519,"spawnMask":1},{"id":"creature-30220","entityId":"entry-6329","position":[752.3982,-160.0958,73.3313],"yaw":-2.11185,"spawnMask":1},{"id":"creature-30221","entityId":"entry-6329","position":[701.3072,-159.6118,-20.0109],"yaw":-2.1293,"spawnMask":1},{"id":"creature-30222","entityId":"entry-6329","position":[656.9382,-156.1158,11.8873],"yaw":-3.08923,"spawnMask":1},{"id":"creature-30223","entityId":"entry-6329","position":[662.2532,-159.5958,78.2473],"yaw":-6.0912,"spawnMask":1},{"id":"creature-30224","entityId":"entry-6329","position":[748.3042,-160.0958,70.3973],"yaw":-1.01229,"spawnMask":1},{"id":"creature-30225","entityId":"entry-6329","position":[630.3462,-161.3858,23.6043],"yaw":-6.23082,"spawnMask":1},{"id":"creature-30227","entityId":"entry-6329","position":[561.2272,-159.6028,27.7243],"yaw":-3.40339,"spawnMask":1},{"id":"creature-30228","entityId":"entry-6329","position":[717.9892,-161.3468,-81.0538],"yaw":-2.87979,"spawnMask":1},{"id":"creature-30229","entityId":"entry-9676","position":[753.4132,-198.5898,96.8943],"yaw":-5.93412,"spawnMask":1},{"id":"creature-30230","entityId":"entry-6407","position":[686.1842,-198.5618,96.7583],"yaw":-1.43117,"spawnMask":1},{"id":"creature-30231","entityId":"entry-6407","position":[685.3042,-198.5608,99.1033],"yaw":-4.08407,"spawnMask":1},{"id":"creature-30232","entityId":"entry-6392","position":[757.6052,-198.5958,84.7633],"yaw":-3.36848,"spawnMask":1},{"id":"creature-30233","entityId":"entry-6391","position":[743.8292,-198.5968,71.2583],"yaw":-4.45059,"spawnMask":1},{"id":"creature-30234","entityId":"entry-6392","position":[711.0392,-198.5808,79.3313],"yaw":-6.16101,"spawnMask":1},{"id":"creature-30235","entityId":"entry-6391","position":[725.7432,-198.5738,108.8943],"yaw":-0.645772,"spawnMask":1},{"id":"creature-30236","entityId":"entry-6392","position":[760.0022,-198.5968,83.0813],"yaw":-0.715585,"spawnMask":1},{"id":"creature-30237","entityId":"entry-6391","position":[720.7252,-198.5738,103.1323],"yaw":-0.907571,"spawnMask":1},{"id":"creature-30238","entityId":"entry-6407","position":[759.0272,-198.5958,85.7653],"yaw":-5.06145,"spawnMask":1},{"id":"creature-30240","entityId":"entry-6233","position":[710.2902,-216.4028,182.1173],"yaw":-5.95157,"spawnMask":1},{"id":"creature-30241","entityId":"entry-6223","position":[742.9622,-212.8738,179.6603],"yaw":-4.79965,"spawnMask":1},{"id":"creature-30242","entityId":"entry-6223","position":[684.3862,-215.9568,173.7263],"yaw":-5.72468,"spawnMask":1},{"id":"creature-30243","entityId":"entry-6223","position":[661.9522,-212.7658,163.7453],"yaw":-4.2237,"spawnMask":1},{"id":"creature-30244","entityId":"entry-6233","position":[739.1442,-212.7658,175.6303],"yaw":-4.39823,"spawnMask":1},{"id":"creature-30246","entityId":"entry-6233","position":[648.9382,-212.7658,158.6863],"yaw":-0.122173,"spawnMask":1},{"id":"creature-30247","entityId":"entry-6223","position":[749.3702,-236.5388,270.5773],"yaw":-5.51524,"spawnMask":1},{"id":"creature-30248","entityId":"entry-6233","position":[640.2772,-212.8508,134.0733],"yaw":-4.77612,"spawnMask":1},{"id":"creature-30249","entityId":"entry-6212","position":[964.2682,-295.9198,495.7743],"yaw":-2.68781,"spawnMask":1},{"id":"creature-30250","entityId":"entry-6212","position":[933.8312,-326.6418,556.7833],"yaw":-3.28122,"spawnMask":1},{"id":"creature-30251","entityId":"entry-6224","position":[786.4962,-331.9218,585.3763],"yaw":-2.87979,"spawnMask":1},{"id":"creature-30252","entityId":"entry-6212","position":[837.5632,-277.9198,432.5293],"yaw":-2.16421,"spawnMask":1},{"id":"creature-30253","entityId":"entry-6234","position":[823.2952,-331.9158,589.5693],"yaw":-0.314159,"spawnMask":1},{"id":"creature-30254","entityId":"entry-6232","position":[929.8382,-308.6418,457.1103],"yaw":-0.034907,"spawnMask":1},{"id":"creature-30255","entityId":"entry-6232","position":[956.7432,-304.9198,526.1633],"yaw":-2.86234,"spawnMask":1},{"id":"creature-30256","entityId":"entry-6232","position":[820.5852,-331.9208,603.3463],"yaw":-2.30383,"spawnMask":1},{"id":"creature-30257","entityId":"entry-6224","position":[784.0822,-331.8988,582.2483],"yaw":-2.82743,"spawnMask":1},{"id":"creature-30258","entityId":"entry-6234","position":[947.1292,-313.9198,556.1063],"yaw":-5.2709,"spawnMask":1},{"id":"creature-30259","entityId":"entry-6218","position":[602.9422,-215.2168,8.9573],"yaw":-4.24115,"spawnMask":1},{"id":"creature-30260","entityId":"entry-6220","position":[591.9902,-215.5678,38.3093],"yaw":-5.39307,"spawnMask":1},{"id":"creature-30261","entityId":"entry-6218","position":[669.8172,-215.4288,9.4813],"yaw":-2.47837,"spawnMask":1},{"id":"creature-30262","entityId":"entry-6220","position":[671.4472,-213.3848,66.4523],"yaw":-4.95674,"spawnMask":1},{"id":"creature-30263","entityId":"entry-6218","position":[601.4122,-214.4518,60.1623],"yaw":-6.19592,"spawnMask":1},{"id":"creature-30264","entityId":"entry-6219","position":[624.0282,-214.3398,-4.762],"yaw":-4.20624,"spawnMask":1},{"id":"creature-30265","entityId":"entry-6219","position":[685.1442,-211.3108,-16.5617],"yaw":-0.750492,"spawnMask":1},{"id":"creature-30266","entityId":"entry-6218","position":[595.4702,-214.0368,-47.5177],"yaw":-3.66783,"spawnMask":1},{"id":"creature-30267","entityId":"entry-6218","position":[623.7572,-216.6118,39.0413],"yaw":-1.29154,"spawnMask":1},{"id":"creature-30268","entityId":"entry-6329","position":[795.8242,-176.6088,98.7593],"yaw":-4.60767,"spawnMask":1},{"id":"creature-30269","entityId":"entry-6206","position":[826.1112,-188.7378,26.9393],"yaw":-0.436332,"spawnMask":1},{"id":"creature-30270","entityId":"entry-6211","position":[763.0242,-206.8198,20.6193],"yaw":-4.15388,"spawnMask":1},{"id":"creature-30272","entityId":"entry-6211","position":[806.8782,-204.5158,44.6033],"yaw":-0.820305,"spawnMask":1},{"id":"creature-30273","entityId":"entry-6211","position":[735.9162,-205.0518,-54.3733],"yaw":-0.174533,"spawnMask":1},{"id":"creature-30274","entityId":"entry-6206","position":[765.0362,-206.6728,16.0633],"yaw":-1.74533,"spawnMask":1},{"id":"creature-30275","entityId":"entry-6211","position":[730.6262,-204.4688,-58.4294],"yaw":-3.92699,"spawnMask":1},{"id":"creature-30276","entityId":"entry-6211","position":[785.0402,-184.5418,-73.9055],"yaw":-1.06465,"spawnMask":1},{"id":"creature-30277","entityId":"entry-6329","position":[750.7372,-206.4238,-2.0812],"yaw":-2.21657,"spawnMask":1},{"id":"creature-30280","entityId":"entry-7603","position":[746.3012,-235.5438,498.7273],"yaw":-5.71414,"spawnMask":1},{"id":"creature-30281","entityId":"entry-7603","position":[748.7902,-235.5438,501.7313],"yaw":-0.612689,"spawnMask":1},{"id":"creature-30282","entityId":"entry-7603","position":[738.3302,-235.4608,498.2843],"yaw":0,"spawnMask":1},{"id":"creature-30283","entityId":"entry-7603","position":[743.3882,-235.5438,505.4733],"yaw":-1.01299,"spawnMask":1},{"id":"creature-30284","entityId":"entry-6233","position":[741.7882,-235.4608,501.9043],"yaw":-0.279253,"spawnMask":1},{"id":"creature-30285","entityId":"entry-6225","position":[799.6852,-278.0058,408.5513],"yaw":-2.93658,"spawnMask":1},{"id":"creature-30286","entityId":"entry-6225","position":[732.8112,-278.0228,350.6733],"yaw":-4.82357,"spawnMask":1},{"id":"creature-30287","entityId":"entry-6225","position":[778.6152,-278.0208,449.1473],"yaw":-1.99953,"spawnMask":1},{"id":"creature-30288","entityId":"entry-7603","position":[790.0842,-235.4608,319.7733],"yaw":-4.97419,"spawnMask":1},{"id":"creature-30289","entityId":"entry-7603","position":[797.8122,-235.4608,323.6933],"yaw":-3.42085,"spawnMask":1},{"id":"creature-30290","entityId":"entry-7603","position":[789.8402,-235.4608,324.4633],"yaw":0,"spawnMask":1},{"id":"creature-30291","entityId":"entry-7603","position":[795.5782,-235.4608,319.8553],"yaw":-3.92699,"spawnMask":1},{"id":"creature-30292","entityId":"entry-6222","position":[794.3832,-235.4608,326.7123],"yaw":-5.3058,"spawnMask":1},{"id":"creature-30293","entityId":"entry-6225","position":[780.5632,-278.0238,365.3503],"yaw":-4.12239,"spawnMask":1},{"id":"creature-30294","entityId":"entry-6222","position":[661.9982,-235.5438,369.0903],"yaw":-5.24667,"spawnMask":1},{"id":"creature-30295","entityId":"entry-6222","position":[696.2902,-278.0228,384.8083],"yaw":-6.06902,"spawnMask":1},{"id":"creature-30296","entityId":"entry-6224","position":[1032.7682,-277.5488,190.6183],"yaw":-3.08878,"spawnMask":1},{"id":"creature-30297","entityId":"entry-7603","position":[1006.7132,-276.1708,62.4493],"yaw":-3.61283,"spawnMask":1},{"id":"creature-30298","entityId":"entry-7603","position":[1004.4462,-277.6168,68.4723],"yaw":-0.418879,"spawnMask":1},{"id":"creature-30299","entityId":"entry-7603","position":[1008.6122,-277.9388,73.7873],"yaw":-0.20944,"spawnMask":1},{"id":"creature-30300","entityId":"entry-7603","position":[1008.7472,-277.6158,68.4763],"yaw":-6.12611,"spawnMask":1},{"id":"creature-30301","entityId":"entry-6224","position":[1011.7862,-276.1838,62.5003],"yaw":-1.46608,"spawnMask":1},{"id":"creature-30302","entityId":"entry-6227","position":[1017.0672,-321.3758,303.1603],"yaw":-0.206138,"spawnMask":1},{"id":"creature-30303","entityId":"entry-6224","position":[954.3882,-262.3448,-42.5025],"yaw":-4.5204,"spawnMask":1},{"id":"creature-30304","entityId":"entry-6227","position":[975.3672,-278.0238,101.6833],"yaw":-5.06208,"spawnMask":1},{"id":"creature-30306","entityId":"entry-6224","position":[1017.6952,-321.3758,302.3353],"yaw":-6.02521,"spawnMask":1},{"id":"creature-30307","entityId":"entry-6227","position":[961.5472,-277.5388,247.3363],"yaw":-5.21228,"spawnMask":1},{"id":"creature-30308","entityId":"entry-6224","position":[957.4252,-277.5388,259.7893],"yaw":-1.43922,"spawnMask":1},{"id":"creature-30309","entityId":"entry-6226","position":[952.2512,-261.6108,-46.0463],"yaw":-4.72984,"spawnMask":1},{"id":"creature-30310","entityId":"entry-6329","position":[694.4222,-159.5758,46.5853],"yaw":-0.837758,"spawnMask":1},{"id":"creature-30311","entityId":"entry-6329","position":[749.7772,-160.0968,77.5063],"yaw":-6.16101,"spawnMask":1},{"id":"creature-30312","entityId":"entry-6329","position":[700.8262,-159.6028,20.4813],"yaw":-3.54302,"spawnMask":1},{"id":"creature-30313","entityId":"entry-6329","position":[628.5952,-156.6898,-13.976],"yaw":-5.93412,"spawnMask":1},{"id":"creature-30314","entityId":"entry-6329","position":[659.0602,-159.6878,80.3153],"yaw":-0.047407,"spawnMask":1},{"id":"creature-30315","entityId":"entry-6206","position":[619.0012,-161.3678,12.1263],"yaw":-3.29867,"spawnMask":1},{"id":"creature-30316","entityId":"entry-6329","position":[690.9472,-159.6588,-31.1817],"yaw":-2.98451,"spawnMask":1},{"id":"creature-30317","entityId":"entry-6206","position":[722.3672,-160.0988,106.6683],"yaw":-5.93412,"spawnMask":1},{"id":"creature-30318","entityId":"entry-6206","position":[716.1652,-158.6348,-53.9427],"yaw":-1.16937,"spawnMask":1},{"id":"creature-30319","entityId":"entry-6206","position":[645.2002,-159.6028,-58.5541],"yaw":-0.890118,"spawnMask":1},{"id":"creature-30320","entityId":"entry-6391","position":[737.5962,-198.5968,68.1633],"yaw":-4.17134,"spawnMask":1},{"id":"creature-30321","entityId":"entry-6391","position":[694.0182,-198.5548,124.1433],"yaw":-4.38078,"spawnMask":1},{"id":"creature-30322","entityId":"entry-6391","position":[697.4372,-198.5558,122.5613],"yaw":-2.84489,"spawnMask":1},{"id":"creature-30323","entityId":"entry-6392","position":[695.8652,-198.5558,123.3983],"yaw":-0.279253,"spawnMask":1},{"id":"creature-30324","entityId":"entry-6391","position":[707.2402,-198.5798,78.1133],"yaw":-2.61799,"spawnMask":1},{"id":"creature-30325","entityId":"entry-6233","position":[732.3752,-236.3298,271.9103],"yaw":-3.64774,"spawnMask":1},{"id":"creature-30326","entityId":"entry-6223","position":[755.3282,-217.7818,207.0753],"yaw":-1.79769,"spawnMask":1},{"id":"creature-30327","entityId":"entry-6223","position":[634.0742,-216.4028,168.7483],"yaw":-1.27409,"spawnMask":1},{"id":"creature-30328","entityId":"entry-6223","position":[621.1662,-216.4038,139.6343],"yaw":-3.29867,"spawnMask":1},{"id":"creature-30329","entityId":"entry-6233","position":[847.4512,-235.4838,321.8493],"yaw":-4.39823,"spawnMask":1},{"id":"creature-30332","entityId":"entry-6234","position":[787.7382,-331.8988,580.5123],"yaw":-2.84489,"spawnMask":1},{"id":"creature-30333","entityId":"entry-6212","position":[948.3632,-313.9198,558.8993],"yaw":-2.3911,"spawnMask":1},{"id":"creature-30334","entityId":"entry-6212","position":[921.6532,-313.9198,549.3373],"yaw":-0.226893,"spawnMask":1},{"id":"creature-30335","entityId":"entry-6234","position":[895.8182,-299.6418,448.1243],"yaw":-0.383972,"spawnMask":1},{"id":"creature-30336","entityId":"entry-6212","position":[928.9982,-322.9198,614.3653],"yaw":-5.67232,"spawnMask":1},{"id":"creature-30337","entityId":"entry-6234","position":[858.1902,-336.6538,598.7623],"yaw":-3.4383,"spawnMask":1},{"id":"creature-30338","entityId":"entry-6234","position":[952.7782,-308.9818,541.6823],"yaw":-4.48742,"spawnMask":1},{"id":"creature-30339","entityId":"entry-6212","position":[937.0132,-317.6418,523.6663],"yaw":-2.80998,"spawnMask":1},{"id":"creature-30340","entityId":"entry-6232","position":[948.3492,-308.6418,475.9953],"yaw":-5.3058,"spawnMask":1},{"id":"creature-30342","entityId":"entry-6329","position":[835.6052,-197.3128,2.7743],"yaw":-0.017453,"spawnMask":1},{"id":"creature-30343","entityId":"entry-6211","position":[753.9592,-184.5968,-76.7932],"yaw":-2.77507,"spawnMask":1},{"id":"creature-30344","entityId":"entry-6206","position":[845.6652,-184.2058,-10.6718],"yaw":-5.49779,"spawnMask":1},{"id":"creature-30345","entityId":"entry-6329","position":[776.2892,-206.9948,38.3393],"yaw":-5.58505,"spawnMask":1},{"id":"creature-30346","entityId":"entry-6329","position":[770.9622,-202.2698,-62.9383],"yaw":-2.93215,"spawnMask":1},{"id":"creature-30348","entityId":"entry-6329","position":[771.2982,-206.9968,40.9583],"yaw":-5.2709,"spawnMask":1},{"id":"creature-30349","entityId":"entry-6329","position":[749.1852,-184.5958,-78.8853],"yaw":-2.26893,"spawnMask":1},{"id":"creature-30350","entityId":"entry-6211","position":[829.7132,-188.1298,-9.6186],"yaw":-4.50295,"spawnMask":1},{"id":"creature-30351","entityId":"entry-6206","position":[740.9782,-206.1908,-20.0613],"yaw":-3.38594,"spawnMask":1},{"id":"creature-30352","entityId":"entry-6211","position":[763.8302,-164.2878,132.4123],"yaw":-1.88496,"spawnMask":1},{"id":"creature-30353","entityId":"entry-7603","position":[834.1142,-235.5448,415.7483],"yaw":-1.01504,"spawnMask":1},{"id":"creature-30354","entityId":"entry-7603","position":[839.0812,-235.5438,413.2143],"yaw":-3.99623,"spawnMask":1},{"id":"creature-30355","entityId":"entry-7603","position":[835.4422,-235.4608,409.1483],"yaw":-5.34071,"spawnMask":1},{"id":"creature-30356","entityId":"entry-7603","position":[840.8092,-235.5438,406.6803],"yaw":-2.21234,"spawnMask":1},{"id":"creature-30357","entityId":"entry-6233","position":[831.6612,-235.4608,417.2573],"yaw":0,"spawnMask":1},{"id":"creature-30358","entityId":"entry-6222","position":[829.5302,-235.5448,414.2403],"yaw":-1.09437,"spawnMask":1},{"id":"creature-30360","entityId":"entry-7603","position":[733.3372,-235.4618,326.9533],"yaw":0,"spawnMask":1},{"id":"creature-30361","entityId":"entry-7603","position":[726.4612,-235.4608,322.3353],"yaw":-4.95674,"spawnMask":1},{"id":"creature-30362","entityId":"entry-7603","position":[732.4802,-235.4608,317.5993],"yaw":-2.82743,"spawnMask":1},{"id":"creature-30363","entityId":"entry-7603","position":[738.3272,-235.4608,322.0833],"yaw":-3.80482,"spawnMask":1},{"id":"creature-30364","entityId":"entry-6222","position":[725.9002,-235.4608,317.4003],"yaw":-0.349066,"spawnMask":1},{"id":"creature-30366","entityId":"entry-6222","position":[733.7082,-278.0218,455.1613],"yaw":-3.99421,"spawnMask":1},{"id":"creature-30367","entityId":"entry-6222","position":[779.6062,-278.0238,365.6423],"yaw":-3.43791,"spawnMask":1},{"id":"creature-30368","entityId":"entry-7603","position":[715.3052,-278.0168,440.5363],"yaw":-5.12912,"spawnMask":1},{"id":"creature-30370","entityId":"entry-7603","position":[713.4122,-278.0168,441.3743],"yaw":-5.12912,"spawnMask":1},{"id":"creature-30371","entityId":"entry-7603","position":[716.0942,-278.0168,442.3193],"yaw":-5.12912,"spawnMask":1},{"id":"creature-30372","entityId":"entry-6222","position":[717.1632,-278.0158,439.7133],"yaw":-5.12912,"spawnMask":1},{"id":"creature-30373","entityId":"entry-7603","position":[650.7692,-235.5438,367.6803],"yaw":-1.93866,"spawnMask":1},{"id":"creature-30374","entityId":"entry-7603","position":[658.0392,-235.4608,354.5943],"yaw":-1.22173,"spawnMask":1},{"id":"creature-30375","entityId":"entry-7603","position":[661.0322,-235.4608,359.6653],"yaw":0,"spawnMask":1},{"id":"creature-30376","entityId":"entry-7603","position":[654.6682,-235.4598,352.3233],"yaw":-6.26573,"spawnMask":1},{"id":"creature-30377","entityId":"entry-6222","position":[655.0762,-235.5438,365.1343],"yaw":-0.802967,"spawnMask":1},{"id":"creature-30378","entityId":"entry-7603","position":[785.1932,-235.4598,484.9673],"yaw":-6.24828,"spawnMask":1},{"id":"creature-30379","entityId":"entry-7603","position":[790.8192,-235.5438,485.6363],"yaw":-4.46223,"spawnMask":1},{"id":"creature-30380","entityId":"entry-7603","position":[787.1962,-235.4598,490.4683],"yaw":0,"spawnMask":1},{"id":"creature-30381","entityId":"entry-7603","position":[793.0802,-235.5448,480.2843],"yaw":-0.809533,"spawnMask":1},{"id":"creature-30382","entityId":"entry-6222","position":[786.8962,-235.4598,479.1123],"yaw":-5.3058,"spawnMask":1},{"id":"creature-30383","entityId":"entry-6222","position":[681.1302,-235.5448,450.4413],"yaw":-2.94272,"spawnMask":1},{"id":"creature-30384","entityId":"entry-6226","position":[1031.6452,-277.5478,192.7973],"yaw":-0.783807,"spawnMask":1},{"id":"creature-30386","entityId":"entry-6226","position":[1052.6172,-321.3728,292.2223],"yaw":-2.59422,"spawnMask":1},{"id":"creature-30387","entityId":"entry-6224","position":[1034.6122,-277.5498,191.2053],"yaw":-5.71985,"spawnMask":1},{"id":"creature-30388","entityId":"entry-6227","position":[1016.4322,-277.5328,326.8353],"yaw":-0.008276,"spawnMask":1},{"id":"creature-30389","entityId":"entry-6224","position":[991.9702,-321.3758,283.7453],"yaw":-1.66084,"spawnMask":1},{"id":"creature-30390","entityId":"entry-6227","position":[937.5272,-278.0228,139.1843],"yaw":-2.5883,"spawnMask":1},{"id":"creature-30393","entityId":"entry-6224","position":[1020.6132,-277.5348,327.0083],"yaw":-6.18491,"spawnMask":1},{"id":"creature-30394","entityId":"entry-6329","position":[706.0592,-160.0958,76.5713],"yaw":-2.53073,"spawnMask":1},{"id":"creature-30395","entityId":"entry-6329","position":[618.9442,-159.6028,79.3603],"yaw":-5.74213,"spawnMask":1},{"id":"creature-30396","entityId":"entry-6206","position":[693.5812,-161.3458,-55.6182],"yaw":-1.44862,"spawnMask":1},{"id":"creature-30397","entityId":"entry-6329","position":[724.5712,-160.0988,102.9673],"yaw":-4.45059,"spawnMask":1},{"id":"creature-30398","entityId":"entry-6329","position":[604.1012,-159.6028,-59.4464],"yaw":-4.85202,"spawnMask":1},{"id":"creature-30399","entityId":"entry-6329","position":[701.6082,-159.6028,11.8693],"yaw":-4.10152,"spawnMask":1},{"id":"creature-30400","entityId":"entry-6206","position":[562.1562,-159.6028,-14.3835],"yaw":-5.02655,"spawnMask":1},{"id":"creature-31796","entityId":"entry-6329","position":[591.1222,-159.6568,-48.7733],"yaw":-3.08923,"spawnMask":1},{"id":"creature-31797","entityId":"entry-6206","position":[709.4592,-159.1108,-46.6954],"yaw":-3.9968,"spawnMask":1},{"id":"creature-31944","entityId":"entry-6329","position":[665.9902,-159.5968,-55.1489],"yaw":-2.51327,"spawnMask":1},{"id":"creature-31981","entityId":"entry-6212","position":[941.9512,-317.6418,525.6113],"yaw":-5.84685,"spawnMask":1},{"id":"creature-31982","entityId":"entry-6224","position":[782.4402,-331.9218,592.9273],"yaw":-3.08923,"spawnMask":1},{"id":"creature-31983","entityId":"entry-6212","position":[920.5602,-313.9198,553.0633],"yaw":-5.16617,"spawnMask":1},{"id":"creature-31984","entityId":"entry-6234","position":[889.9592,-322.9198,621.9923],"yaw":-5.44543,"spawnMask":1},{"id":"creature-31985","entityId":"entry-6212","position":[927.8322,-322.9198,610.1143],"yaw":-2.89725,"spawnMask":1},{"id":"creature-31986","entityId":"entry-6234","position":[959.3032,-295.9198,462.1213],"yaw":-4.93928,"spawnMask":1},{"id":"creature-31987","entityId":"entry-6234","position":[939.2932,-317.6418,527.0433],"yaw":-5.88176,"spawnMask":1},{"id":"creature-31988","entityId":"entry-6234","position":[921.1062,-335.6418,594.4223],"yaw":-0.10472,"spawnMask":1},{"id":"creature-31989","entityId":"entry-6212","position":[897.3332,-322.9198,596.0293],"yaw":-4.34587,"spawnMask":1},{"id":"creature-31990","entityId":"entry-6212","position":[960.1082,-295.9198,501.5183],"yaw":-2.98451,"spawnMask":1},{"id":"creature-31991","entityId":"entry-6211","position":[744.0382,-184.5948,-80.4316],"yaw":-5.21853,"spawnMask":1},{"id":"creature-31992","entityId":"entry-6329","position":[827.3012,-200.9348,14.6853],"yaw":-2.82743,"spawnMask":1},{"id":"creature-31993","entityId":"entry-6206","position":[794.4252,-184.5408,-74.3339],"yaw":-1.0472,"spawnMask":1},{"id":"creature-31994","entityId":"entry-6329","position":[749.0772,-206.6018,3.6023],"yaw":-2.93215,"spawnMask":1},{"id":"creature-31995","entityId":"entry-6329","position":[759.8302,-164.2878,134.4583],"yaw":-5.79449,"spawnMask":1},{"id":"creature-31996","entityId":"entry-6211","position":[739.7882,-205.6678,-26.8778],"yaw":-0.907571,"spawnMask":1},{"id":"creature-31997","entityId":"entry-6206","position":[788.0132,-204.4008,-2.8067],"yaw":-0.925298,"spawnMask":1},{"id":"creature-31998","entityId":"entry-6329","position":[824.3632,-188.7388,33.5123],"yaw":-3.82227,"spawnMask":1},{"id":"creature-31999","entityId":"entry-6329","position":[800.4672,-177.2418,94.6513],"yaw":-6.02139,"spawnMask":1},{"id":"creature-32000","entityId":"entry-6211","position":[827.5372,-200.8308,2.5743],"yaw":-3.87463,"spawnMask":1},{"id":"creature-32001","entityId":"entry-7603","position":[711.7412,-278.0168,375.4783],"yaw":-0.027287,"spawnMask":1},{"id":"creature-32002","entityId":"entry-7603","position":[710.3892,-278.0208,375.5153],"yaw":-0.027284,"spawnMask":1},{"id":"creature-32003","entityId":"entry-7603","position":[712.4482,-278.0198,377.4593],"yaw":-0.027285,"spawnMask":1},{"id":"creature-32004","entityId":"entry-7603","position":[714.3932,-278.0178,375.4053],"yaw":-0.027286,"spawnMask":1},{"id":"creature-32005","entityId":"entry-6233","position":[711.5162,-278.0198,373.4833],"yaw":-0.027281,"spawnMask":1},{"id":"creature-32006","entityId":"entry-6222","position":[797.5922,-278.0058,408.4543],"yaw":-5.74002,"spawnMask":1},{"id":"creature-32007","entityId":"entry-6222","position":[780.4332,-278.0238,366.3413],"yaw":-4.58216,"spawnMask":1},{"id":"creature-32008","entityId":"entry-6225","position":[697.1202,-278.0228,429.0233],"yaw":-5.09596,"spawnMask":1},{"id":"creature-32014","entityId":"entry-7603","position":[673.3502,-235.4608,450.0093],"yaw":0,"spawnMask":1},{"id":"creature-32103","entityId":"entry-7603","position":[677.9842,-235.5448,462.5023],"yaw":-5.94259,"spawnMask":1},{"id":"creature-32104","entityId":"entry-7603","position":[674.4372,-235.5438,461.7253],"yaw":-2.62881,"spawnMask":1},{"id":"creature-33390","entityId":"entry-7603","position":[683.7172,-235.5448,461.0263],"yaw":-3.65961,"spawnMask":1},{"id":"creature-33395","entityId":"entry-6233","position":[673.8972,-235.5448,454.2243],"yaw":-3.59214,"spawnMask":1},{"id":"creature-33396","entityId":"entry-7603","position":[660.3132,-235.5448,428.3943],"yaw":-6.11885,"spawnMask":1},{"id":"creature-33397","entityId":"entry-7603","position":[658.3422,-235.5438,428.6853],"yaw":-0.364823,"spawnMask":1},{"id":"creature-33398","entityId":"entry-7603","position":[661.8042,-235.4608,418.0983],"yaw":-2.00713,"spawnMask":1},{"id":"creature-33399","entityId":"entry-7603","position":[665.9502,-235.5448,428.1283],"yaw":-0.923557,"spawnMask":1},{"id":"creature-33400","entityId":"entry-6222","position":[658.3632,-235.5448,419.6123],"yaw":-5.24279,"spawnMask":1},{"id":"creature-33401","entityId":"entry-6222","position":[709.5362,-235.5448,488.3003],"yaw":-6.02039,"spawnMask":1},{"id":"creature-33402","entityId":"entry-6222","position":[733.7032,-278.0228,459.1503],"yaw":-1.41736,"spawnMask":1},{"id":"creature-33403","entityId":"entry-7603","position":[825.1522,-277.9218,345.7663],"yaw":-0.925025,"spawnMask":1},{"id":"creature-33404","entityId":"entry-7603","position":[820.2002,-277.9208,349.2343],"yaw":-3.735,"spawnMask":1},{"id":"creature-33405","entityId":"entry-7603","position":[824.7042,-277.9218,351.0653],"yaw":0,"spawnMask":1},{"id":"creature-33421","entityId":"entry-7603","position":[828.1102,-278.0058,354.5543],"yaw":-2.70326,"spawnMask":1},{"id":"creature-33422","entityId":"entry-6222","position":[827.7872,-278.0058,348.4723],"yaw":-5.88472,"spawnMask":1},{"id":"creature-33423","entityId":"entry-7603","position":[926.4142,-277.9398,142.1483],"yaw":-1.65806,"spawnMask":1},{"id":"creature-33426","entityId":"entry-7603","position":[928.3112,-277.3458,135.7543],"yaw":-2.49582,"spawnMask":1},{"id":"creature-33427","entityId":"entry-7603","position":[932.7002,-277.9398,126.5413],"yaw":-5.49779,"spawnMask":1},{"id":"creature-33428","entityId":"entry-7603","position":[933.9462,-277.9398,136.3803],"yaw":0,"spawnMask":1},{"id":"creature-33429","entityId":"entry-6233","position":[931.9392,-277.9398,131.9003],"yaw":-0.174533,"spawnMask":1},{"id":"creature-33430","entityId":"entry-6224","position":[1071.3122,-321.3758,265.0183],"yaw":-1.62105,"spawnMask":1},{"id":"creature-33431","entityId":"entry-6224","position":[1052.8302,-321.3728,290.9633],"yaw":-3.65923,"spawnMask":1},{"id":"creature-33432","entityId":"entry-6224","position":[958.0002,-262.2898,-42.7587],"yaw":-4.92183,"spawnMask":1},{"id":"creature-33433","entityId":"entry-7603","position":[1041.2592,-277.5538,190.5123],"yaw":-2.57274,"spawnMask":1},{"id":"creature-33434","entityId":"entry-7603","position":[1040.2722,-277.4558,195.1453],"yaw":-5.044,"spawnMask":1},{"id":"creature-33435","entityId":"entry-7603","position":[1041.5992,-277.5478,185.1563],"yaw":-2.96448,"spawnMask":1},{"id":"creature-33436","entityId":"entry-7603","position":[1053.6922,-277.4558,193.4693],"yaw":-5.32325,"spawnMask":1},{"id":"creature-33437","entityId":"entry-6233","position":[1046.4922,-277.5528,191.9833],"yaw":-4.08323,"spawnMask":1},{"id":"creature-33438","entityId":"entry-7603","position":[982.1442,-277.9418,106.0783],"yaw":-3.61283,"spawnMask":1},{"id":"creature-33439","entityId":"entry-7603","position":[991.7082,-277.9418,106.9633],"yaw":-2.96706,"spawnMask":1},{"id":"creature-33440","entityId":"entry-7603","position":[973.4492,-277.9418,117.3653],"yaw":0,"spawnMask":1},{"id":"creature-33441","entityId":"entry-7603","position":[985.2392,-278.0248,103.5593],"yaw":-3.34306,"spawnMask":1},{"id":"creature-33442","entityId":"entry-6224","position":[978.0682,-277.9418,111.6893],"yaw":-4.18879,"spawnMask":1},{"id":"creature-33443","entityId":"entry-6224","position":[1060.9912,-321.3738,233.0813],"yaw":-2.58111,"spawnMask":1},{"id":"creature-33444","entityId":"entry-6224","position":[936.2392,-278.0228,136.5983],"yaw":-0.66947,"spawnMask":1},{"id":"creature-33445","entityId":"entry-6226","position":[1061.0252,-321.3758,235.0053],"yaw":-1.04478,"spawnMask":1},{"id":"creature-33446","entityId":"entry-6224","position":[1070.8672,-321.3758,266.2613],"yaw":-1.62033,"spawnMask":1},{"id":"creature-33447","entityId":"entry-6329","position":[680.6752,-159.5768,60.0723],"yaw":-2.1293,"spawnMask":1},{"id":"creature-33448","entityId":"entry-6206","position":[560.9842,-159.6858,2.6763],"yaw":-4.66665,"spawnMask":1},{"id":"creature-33449","entityId":"entry-6206","position":[701.7022,-159.6028,6.5673],"yaw":-2.04204,"spawnMask":1},{"id":"creature-33450","entityId":"entry-6329","position":[700.4802,-160.0958,83.6633],"yaw":-2.3911,"spawnMask":1},{"id":"creature-33451","entityId":"entry-6329","position":[648.9262,-159.6028,-60.8176],"yaw":-0.506145,"spawnMask":1},{"id":"creature-33452","entityId":"entry-6329","position":[623.0102,-159.6858,81.0653],"yaw":-3.19489,"spawnMask":1},{"id":"creature-33453","entityId":"entry-6206","position":[725.5782,-160.0958,61.8343],"yaw":-4.2586,"spawnMask":1},{"id":"creature-33454","entityId":"entry-6212","position":[918.1652,-335.6418,600.0113],"yaw":-3.89208,"spawnMask":1},{"id":"creature-33455","entityId":"entry-6212","position":[940.4792,-295.9198,444.0213],"yaw":-4.03171,"spawnMask":1},{"id":"creature-33456","entityId":"entry-6234","position":[840.1462,-277.9198,425.7953],"yaw":-2.32129,"spawnMask":1},{"id":"creature-33457","entityId":"entry-6212","position":[962.5762,-296.0028,469.9473],"yaw":-1.68938,"spawnMask":1},{"id":"creature-33458","entityId":"entry-6212","position":[882.0862,-335.6418,605.7133],"yaw":-3.89208,"spawnMask":1},{"id":"creature-33459","entityId":"entry-6212","position":[900.6772,-300.4618,450.4133],"yaw":-5.3058,"spawnMask":1},{"id":"creature-33460","entityId":"entry-6232","position":[931.2142,-328.3988,560.8653],"yaw":-2.79253,"spawnMask":1},{"id":"creature-33471","entityId":"entry-6212","position":[936.2342,-295.9198,480.2173],"yaw":-0.959931,"spawnMask":1},{"id":"creature-33472","entityId":"entry-6232","position":[914.9312,-335.6418,604.3423],"yaw":-3.21141,"spawnMask":1},{"id":"creature-33473","entityId":"entry-6212","position":[934.7652,-308.6418,459.5493],"yaw":-1.36136,"spawnMask":1},{"id":"creature-33474","entityId":"entry-6211","position":[766.1502,-201.6438,-62.793],"yaw":-4.46804,"spawnMask":1},{"id":"creature-33475","entityId":"entry-6211","position":[834.5352,-197.7798,-38.0028],"yaw":-6.05629,"spawnMask":1},{"id":"creature-33476","entityId":"entry-6206","position":[773.8632,-206.9778,-0.7378],"yaw":-5.93412,"spawnMask":1},{"id":"creature-33477","entityId":"entry-6329","position":[769.1932,-205.0998,-52.1586],"yaw":-4.88692,"spawnMask":1},{"id":"creature-33478","entityId":"entry-6206","position":[834.9572,-197.6098,14.1883],"yaw":-2.98451,"spawnMask":1},{"id":"creature-33479","entityId":"entry-6211","position":[788.0612,-204.3568,-4.1467],"yaw":-3.29641,"spawnMask":1},{"id":"creature-33480","entityId":"entry-6329","position":[739.9872,-207.0108,38.8193],"yaw":-4.81711,"spawnMask":1},{"id":"creature-33481","entityId":"entry-7603","position":[859.9992,-277.9238,322.1803],"yaw":-1.11701,"spawnMask":1},{"id":"creature-33482","entityId":"entry-7603","position":[873.8772,-278.0068,313.7773],"yaw":-4.5664,"spawnMask":1},{"id":"creature-33483","entityId":"entry-7603","position":[864.3982,-277.9238,324.7523],"yaw":-0.820305,"spawnMask":1},{"id":"creature-33484","entityId":"entry-7603","position":[862.5872,-277.9238,319.4703],"yaw":0,"spawnMask":1},{"id":"creature-33485","entityId":"entry-6222","position":[867.1002,-278.0068,314.0543],"yaw":-0.950813,"spawnMask":1},{"id":"creature-33486","entityId":"entry-6224","position":[1017.6852,-277.5338,326.6053],"yaw":-2.92918,"spawnMask":1},{"id":"creature-33487","entityId":"entry-6226","position":[990.9062,-321.3758,285.5943],"yaw":-1.96094,"spawnMask":1},{"id":"creature-33488","entityId":"entry-6224","position":[975.6122,-278.0238,105.1323],"yaw":-3.81134,"spawnMask":1},{"id":"creature-33489","entityId":"entry-6234","position":[881.3522,-322.9198,621.0223],"yaw":-2.87979,"spawnMask":1},{"id":"creature-33490","entityId":"entry-6212","position":[918.9912,-313.7228,549.7483],"yaw":-3.29867,"spawnMask":1},{"id":"creature-33491","entityId":"entry-6212","position":[850.0132,-338.9878,597.3273],"yaw":-2.85127,"spawnMask":1},{"id":"creature-33492","entityId":"entry-6234","position":[935.6842,-295.9198,442.3203],"yaw":-3.00197,"spawnMask":1},{"id":"creature-33493","entityId":"entry-6212","position":[944.9262,-310.9908,505.8553],"yaw":-2.60054,"spawnMask":1},{"id":"creature-33494","entityId":"entry-6212","position":[949.4782,-308.6418,481.2753],"yaw":-3.80482,"spawnMask":1},{"id":"creature-33495","entityId":"entry-6224","position":[783.3482,-331.9438,587.1343],"yaw":-2.94961,"spawnMask":1},{"id":"creature-33497","entityId":"entry-6212","position":[871.3742,-290.9248,442.8083],"yaw":-2.49582,"spawnMask":1},{"id":"creature-33498","entityId":"entry-6212","position":[932.6362,-329.9738,564.9863],"yaw":-6.14356,"spawnMask":1},{"id":"creature-33499","entityId":"entry-6212","position":[936.0802,-295.9198,482.6613],"yaw":-3.61283,"spawnMask":1},{"id":"creature-33500","entityId":"entry-6212","position":[965.6802,-295.9198,502.9613],"yaw":-6.12611,"spawnMask":1}],"roamingPacks":[{"id":"patrol-30132","name":"Dark Iron Agent Patrol","speed":1.15,"pathId":301320,"formationSource":"database-solo","spawnMask":1,"waypoints":[[892.2562,-287.0028,460.9833],[930.7722,-296.0028,470.9793],[937.6592,-296.0028,482.4683],[928.3362,-305.0028,520.4223],[920.8342,-314.0028,550.5783],[911.0392,-323.0028,588.8973],[899.1582,-323.0028,595.8943],[910.9642,-323.0028,588.5713],[920.6812,-314.0028,551.2363],[928.1302,-305.0028,520.2683],[937.5542,-296.0028,482.8053],[930.8242,-296.0028,470.8903]],"members":[{"id":"member","entityId":"entry-6212","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30134","name":"Alarm-a-bomb 2600 Patrol","speed":1.15,"pathId":301340,"formationSource":"database-solo","spawnMask":1,"waypoints":[[754.4982,-207.0928,48.9283],[784.0022,-207.0688,11.2843],[780.0512,-207.5868,-20.6925],[784.0022,-207.0688,11.2843]],"members":[{"id":"member","entityId":"entry-7897","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30141","name":"Mobile Alert System Patrol","speed":1.15,"pathId":301410,"formationSource":"database-solo","spawnMask":1,"waypoints":[[952.5212,-277.5218,290.6963],[955.5422,-277.5218,273.1263],[961.9662,-277.5388,224.3303],[966.2702,-277.5388,196.2603],[984.0352,-277.5388,184.0113],[1013.2502,-277.5408,187.6683],[1058.4722,-277.5398,193.9713],[1089.3542,-277.5398,198.2923],[1100.3522,-277.5398,211.3213],[1096.4952,-277.5398,245.0343],[1090.7452,-277.5398,290.2303],[1084.8062,-277.5398,324.2573],[1069.9942,-277.5398,332.9373],[1039.8182,-277.5398,328.8333],[992.3462,-277.5218,322.1843],[963.7692,-277.5218,318.3283],[953.0402,-277.5218,301.8673]],"members":[{"id":"member","entityId":"entry-7849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30143","name":"Mobile Alert System Patrol","speed":1.15,"pathId":301430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[932.2162,-326.7528,556.9913],[927.3432,-335.5268,576.7073],[912.8962,-335.7258,605.1843],[894.0862,-335.7248,608.1173],[912.8962,-335.7258,605.1843],[927.3432,-335.5268,576.7073]],"members":[{"id":"member","entityId":"entry-7849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30144","name":"Mobile Alert System Patrol","speed":1.15,"pathId":301440,"formationSource":"database-solo","spawnMask":1,"waypoints":[[966.6392,-296.0608,457.0073],[991.6722,-300.5198,437.8043],[1013.3192,-306.8438,421.1153],[1024.0532,-308.8798,406.3783],[1022.5952,-308.8798,390.6373],[1008.7922,-313.0468,368.3193],[1014.4182,-313.0468,352.4073],[1058.4202,-321.0978,318.5343],[1062.9342,-321.3798,308.4573],[1055.0282,-321.3698,298.3943],[1062.7962,-321.3798,308.1843],[1058.3512,-321.1218,318.2853],[1014.1632,-313.0468,352.2403],[1008.6802,-313.0468,367.9703],[1022.5802,-308.8798,390.5613],[1023.8032,-308.8798,406.2933],[1013.0222,-306.8138,420.8893]],"members":[{"id":"member","entityId":"entry-7849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30186","name":"Peacekeeper Security Suit Patrol","speed":1.15,"pathId":301860,"formationSource":"database-solo","spawnMask":1,"waypoints":[[686.3152,-235.5438,477.0533],[668.5422,-235.5438,461.6503],[652.4232,-235.5438,429.8723],[653.4152,-235.5438,388.3403],[659.6272,-235.5438,366.3373],[680.4382,-235.5438,339.8313],[700.7572,-235.5438,323.6143],[728.6692,-235.5438,310.0703],[761.7852,-235.5438,314.8793],[784.8102,-235.5438,321.8663],[811.6982,-235.5438,341.4583],[825.8872,-235.5438,361.1153],[840.8242,-235.5438,397.2313],[834.9282,-235.5438,432.5723],[813.2732,-235.5438,471.2373],[777.1812,-235.5438,492.5553],[750.3012,-235.5438,498.0663],[724.0342,-235.5438,493.7113],[697.4222,-235.5438,485.5383]],"members":[{"id":"member","entityId":"entry-6230","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30193","name":"Mechano-Frostwalker Patrol","speed":1.15,"pathId":301930,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1008.6382,-278.0218,75.3333],[1008.7782,-273.6608,40.5113],[1007.6682,-269.6748,4.4033],[997.9502,-269.6748,-3.268],[967.7812,-265.5088,-3.7834],[956.3922,-265.5088,-15.0343],[967.7812,-265.5088,-3.7834],[997.9502,-269.6748,-3.268],[1007.6682,-269.6748,4.4033],[1008.7782,-273.6608,40.5113],[1008.6382,-278.0218,75.3333],[1002.9492,-278.0218,86.4173]],"members":[{"id":"member","entityId":"entry-6227","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30205","name":"Leprous Machinesmith Patrol","speed":1.15,"pathId":302050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[996.3722,-278.0238,90.7283],[941.6752,-278.0238,132.5793]],"members":[{"id":"member","entityId":"entry-6224","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30213","name":"Caverndeep Ambusher Patrol","speed":1.15,"pathId":302130,"formationSource":"database-solo","spawnMask":1,"waypoints":[[568.8842,-159.6748,-27.0048],[560.5152,-159.6858,-19.0016],[560.8142,-159.6858,35.3393],[560.8522,-159.6858,-19.1166]],"members":[{"id":"member","entityId":"entry-6207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30214","name":"Caverndeep Ambusher Patrol","speed":1.15,"pathId":302140,"formationSource":"database-solo","spawnMask":1,"waypoints":[[723.8762,-160.1818,102.5913],[736.8442,-160.9848,115.1613],[758.7272,-164.3708,133.7733],[780.8662,-170.6208,114.4313],[814.9592,-183.1418,80.3503],[780.5812,-170.6208,114.4753],[758.5682,-164.3708,133.5583],[736.6502,-160.9348,114.9553]],"members":[{"id":"member","entityId":"entry-6207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30215","name":"Caverndeep Ambusher Patrol","speed":1.15,"pathId":302150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[818.2502,-188.8248,26.2103],[829.9362,-188.8198,40.8603],[830.5972,-189.4518,62.6833],[829.8722,-188.8198,41.2773],[818.1522,-188.8248,26.5653],[800.6612,-192.6048,26.2993]],"members":[{"id":"member","entityId":"entry-6207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30216","name":"Caverndeep Ambusher Patrol","speed":1.15,"pathId":302160,"formationSource":"database-solo","spawnMask":1,"waypoints":[[703.4342,-159.6868,1.5843],[695.6002,-159.7428,-33.1743],[726.4752,-158.0138,-64.307],[695.6002,-159.7428,-33.1743]],"members":[{"id":"member","entityId":"entry-6207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30217","name":"Caverndeep Ambusher Patrol","speed":1.15,"pathId":302170,"formationSource":"database-solo","spawnMask":1,"waypoints":[[676.2602,-161.9098,-45.9227],[661.8002,-159.6838,-59.2192],[646.4962,-159.6858,-60.3571],[660.9162,-159.6838,-59.3281],[675.6202,-161.9078,-45.6393],[698.1942,-161.4318,-61.8949],[715.1562,-161.4278,-75.7301]],"members":[{"id":"member","entityId":"entry-6207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30226","name":"Irradiated Pillager Patrol","speed":1.15,"pathId":302260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[725.9572,-160.1788,65.7063],[706.4662,-160.1788,75.3503],[685.9642,-159.6398,63.0953],[706.4662,-160.1788,75.3503]],"members":[{"id":"member","entityId":"entry-6329","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30239","name":"Mechanized Sentry Patrol","speed":1.15,"pathId":302390,"formationSource":"database-solo","spawnMask":1,"waypoints":[[626.2832,-216.4808,141.3623],[636.9572,-216.4838,166.8533],[663.3522,-216.4828,178.2623],[685.4462,-216.4728,178.1993],[710.1052,-216.4818,178.3493],[732.1972,-216.4808,187.5943],[741.3632,-221.8908,210.0693],[740.8112,-228.6538,231.9803],[740.3872,-235.9618,252.9723],[740.8112,-228.6538,231.9803],[741.3632,-221.8908,210.0693],[732.1972,-216.4808,187.5943],[710.1052,-216.4818,178.3493],[685.4462,-216.4728,178.1993],[663.3522,-216.4828,178.2623],[636.9572,-216.4838,166.8533],[626.2882,-216.4808,141.5613],[626.4282,-216.4808,121.2693]],"members":[{"id":"member","entityId":"entry-6233","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30245","name":"Mechanized Sentry Patrol","speed":1.15,"pathId":302450,"formationSource":"database-solo","spawnMask":1,"waypoints":[[622.8462,-216.4868,141.3513],[634.6322,-216.4868,169.6453],[664.2162,-216.4868,181.7743],[710.0252,-216.4868,182.2863],[728.1612,-216.4868,190.3293],[737.3042,-221.8788,210.5063],[736.6382,-236.4498,266.3133],[737.2752,-221.8778,210.5263],[728.0092,-216.4868,189.7963],[709.7422,-216.4888,182.1903],[663.8622,-216.4878,181.7023],[634.4182,-216.4868,169.4463],[622.4602,-216.4858,141.3893],[622.6122,-216.4868,135.5413]],"members":[{"id":"member","entityId":"entry-6233","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30271","name":"Caverndeep Reaver Patrol","speed":1.15,"pathId":302710,"formationSource":"database-solo","spawnMask":1,"waypoints":[[755.3322,-207.9768,-22.6974],[776.6962,-208.0468,-25.2219],[776.1792,-207.9418,-4.5844],[767.6152,-206.6598,12.2863],[777.3062,-207.0768,35.6433],[766.9532,-207.0888,52.1633],[734.9522,-207.0938,40.8713],[732.8992,-209.4738,8.8223],[732.7142,-206.4868,-25.7601]],"members":[{"id":"member","entityId":"entry-6211","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30278","name":"Peacekeeper Security Suit Patrol","speed":1.15,"pathId":302780,"formationSource":"database-solo","spawnMask":1,"waypoints":[[710.2642,-278.0118,405.4203],[721.7992,-278.0118,430.6363],[759.8092,-278.0138,443.7733],[773.5272,-278.0138,433.0323],[774.4312,-278.0118,393.1383],[752.8002,-278.0118,373.9953],[724.4322,-278.0118,379.1523]],"members":[{"id":"member","entityId":"entry-6230","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30279","name":"Peacekeeper Security Suit Patrol","speed":1.15,"pathId":302790,"formationSource":"database-solo","spawnMask":1,"waypoints":[[820.2122,-278.0058,424.6233],[790.1602,-278.0168,412.8253],[783.7202,-278.0198,375.9643],[840.0962,-278.0058,333.3653],[873.4212,-278.0058,308.0793],[883.1532,-278.0058,320.3473],[873.6082,-278.0058,308.2423],[840.2212,-278.0058,333.0283],[784.1282,-278.0208,375.9533],[790.6382,-278.0188,412.9653]],"members":[{"id":"member","entityId":"entry-6230","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30305","name":"Mechano-Frostwalker Patrol","speed":1.15,"pathId":303050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1013.3092,-277.5388,187.6893],[1058.6972,-277.5398,194.1183],[1089.8692,-277.5398,198.3953],[1100.4922,-277.5398,211.4053],[1096.6782,-277.5398,244.9523],[1090.8852,-277.5398,290.3433],[1084.9692,-277.5398,324.6133],[1070.2222,-277.5398,333.0093],[1040.1342,-277.5398,328.9013],[992.4982,-277.5218,322.2493],[964.0102,-277.5218,318.3803],[953.1712,-277.5218,301.9463],[952.8552,-277.5218,290.5583],[955.9172,-277.5218,272.9593],[962.2322,-277.5388,224.2563],[966.5672,-277.5388,196.3593],[984.3242,-277.5388,184.0663]],"members":[{"id":"member","entityId":"entry-6227","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30330","name":"Mechanized Sentry Patrol","speed":1.15,"pathId":303300,"formationSource":"database-solo","spawnMask":1,"waypoints":[[636.6382,-212.8488,120.3773],[639.1512,-212.8488,151.5153],[655.7832,-212.8488,164.9713],[639.1512,-212.8488,151.5153]],"members":[{"id":"member","entityId":"entry-6233","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30331","name":"Mechanized Sentry Patrol","speed":1.15,"pathId":303310,"formationSource":"database-solo","spawnMask":1,"waypoints":[[839.2122,-235.5678,308.3043],[848.6852,-235.5678,320.6483],[816.4642,-235.5428,346.3763],[848.8222,-235.5678,320.6653],[838.7782,-235.5678,308.1653],[828.2932,-243.9018,294.0753],[811.5462,-252.2138,272.2963],[833.6642,-260.5468,254.7773],[873.1762,-278.0058,307.1003],[833.7762,-260.5468,254.9113],[811.9062,-252.2128,272.3933],[828.3242,-243.9018,294.1273]],"members":[{"id":"member","entityId":"entry-6233","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30341","name":"Dark Iron Agent Patrol","speed":1.15,"pathId":303410,"formationSource":"database-solo","spawnMask":1,"waypoints":[[894.5862,-299.7258,448.3963],[924.8502,-308.7258,455.9133],[938.8802,-308.7258,459.6663],[949.0942,-308.7258,476.8433],[950.3662,-308.7258,483.7753],[947.4002,-308.7258,496.4013],[950.3512,-308.7258,484.0483],[949.0432,-308.7258,476.8313],[939.1742,-308.7258,460.0163],[925.0802,-308.7258,456.3113]],"members":[{"id":"member","entityId":"entry-6212","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30365","name":"Leprous Technician Patrol","speed":1.15,"pathId":303650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[818.1342,-278.0048,350.8893],[860.3602,-278.0058,317.9783]],"members":[{"id":"member","entityId":"entry-6222","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30369","name":"Leprous Assistant Patrol","speed":1.15,"pathId":303690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[703.5392,-278.0168,419.4543],[700.0592,-278.0168,404.2943],[708.2362,-278.0158,388.0073],[720.2572,-278.0158,370.8653],[756.2532,-278.0158,363.5423],[785.5982,-278.0158,389.5873],[782.8212,-278.0178,433.8293],[755.9592,-278.0178,454.0043],[715.3022,-278.0168,440.8663]],"members":[{"id":"member","entityId":"entry-7603","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30385","name":"Mechano-Flamewalker Patrol","speed":1.15,"pathId":303850,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1065.9492,-321.3878,312.0203],[1047.2802,-321.3738,288.8623],[1065.9192,-321.3898,311.9653],[1013.6602,-313.0468,352.6863],[1009.1902,-313.0468,362.0713],[1012.1052,-313.0468,376.3733],[1009.3332,-313.0468,362.0143],[1013.6732,-313.0468,352.9443]],"members":[{"id":"member","entityId":"entry-6226","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30391","name":"Mechano-Flamewalker Patrol","speed":1.15,"pathId":303910,"formationSource":"database-solo","spawnMask":1,"waypoints":[[992.6902,-277.5218,322.1333],[1017.3932,-277.5388,325.4143],[1040.0712,-277.5388,328.7123],[1070.4552,-277.5388,332.7333],[1084.9052,-277.5388,324.2393],[1091.0102,-277.5388,289.9233],[1096.7242,-277.5388,245.0903],[1100.5582,-277.5388,211.2823],[1089.6642,-277.5388,198.1283],[1058.6332,-277.5388,194.0443],[1013.4052,-277.5408,187.5613],[984.4802,-277.5408,184.0103],[966.4872,-277.5408,196.3713],[962.2492,-277.5408,224.2953],[955.7962,-277.5208,273.1343],[952.7422,-277.5208,290.6803],[953.2852,-277.5208,301.7633],[964.0052,-277.5208,318.4733]],"members":[{"id":"member","entityId":"entry-6226","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-30392","name":"Mechano-Flamewalker Patrol","speed":1.15,"pathId":303920,"formationSource":"database-solo","spawnMask":1,"waypoints":[[966.9452,-296.0598,456.8853],[991.6312,-300.5198,437.8043],[1006.2302,-304.7098,426.8393],[1016.3182,-308.5528,416.0713],[1024.1972,-308.8798,404.3453],[1024.0972,-308.8798,392.0023],[1023.9962,-308.8798,404.6333],[1016.1492,-308.4918,416.1693],[1005.9892,-304.7068,426.8343],[991.5652,-300.5208,437.6313]],"members":[{"id":"member","entityId":"entry-6226","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-32013","name":"Peacekeeper Security Suit Patrol","speed":1.15,"pathId":320130,"formationSource":"database-solo","spawnMask":1,"waypoints":[[659.4192,-235.5438,366.2723],[653.2872,-235.5438,388.1053],[652.3902,-235.5438,429.5373],[668.6722,-235.5438,461.4993],[686.4952,-235.5438,476.9043],[697.7772,-235.5438,485.4353],[724.1572,-235.5438,493.4673],[750.5682,-235.5438,497.8503],[777.3662,-235.5438,492.3143],[813.3492,-235.5438,470.8773],[835.0212,-235.5438,432.3643],[840.8242,-235.5438,396.7163],[825.9312,-235.5438,360.5803],[811.5952,-235.5438,341.0723],[784.8982,-235.5438,321.5863],[761.5302,-235.5438,314.5423],[728.4722,-235.5438,309.9503],[700.7022,-235.5438,323.5533],[680.4322,-235.5438,339.5183]],"members":[{"id":"member","entityId":"entry-6230","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-33496","name":"Arcane Nullifier X-21 Patrol","speed":1.15,"pathId":334960,"formationSource":"database-solo","spawnMask":1,"waypoints":[[857.2132,-332.0028,614.8523],[885.9672,-323.0028,622.4423],[900.0082,-323.0028,624.1393],[914.0852,-323.0028,620.2813],[926.3472,-323.0028,613.1333],[937.5962,-323.0028,598.2813],[943.5592,-321.8458,578.5203],[946.8402,-315.2858,563.6873],[951.1342,-312.1648,548.8653],[953.6992,-307.1988,537.6573],[951.1342,-312.1648,548.8653],[946.8402,-315.2858,563.6873],[943.5592,-321.8458,578.5203],[937.5962,-323.0028,598.2813],[926.3472,-323.0028,613.1333],[914.0852,-323.0028,620.2813],[900.0082,-323.0028,624.1393],[885.9672,-323.0028,622.4423],[857.4152,-331.9168,614.9023],[830.7412,-331.9988,607.9283]],"members":[{"id":"member","entityId":"entry-6232","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-300376","name":"Dark Iron Ambassador Patrol","speed":1.15,"pathId":3000376,"formationSource":"database-solo","spawnMask":1,"waypoints":[[892.2562,-287.0028,460.9833],[930.7722,-296.0028,470.9793],[937.6592,-296.0028,482.4683],[928.3362,-305.0028,520.4223],[920.8342,-314.0028,550.5783],[911.0392,-323.0028,588.8973],[899.1582,-323.0028,595.8943],[910.9642,-323.0028,588.5713],[920.6812,-314.0028,551.2363],[928.1302,-305.0028,520.2683],[937.5542,-296.0028,482.8053],[930.8242,-296.0028,470.8903]],"members":[{"id":"member","entityId":"entry-6228","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-30137","name":"Viscous Fallout","position":[665.2952,-212.8968,-50.4591]},{"id":"creature-30133","name":"Electrocutioner 6000","position":[745.9532,-221.6698,403.9673]},{"id":"creature-30121","name":"Crowd Pummeler 9-60","position":[1083.0422,-277.4558,261.7333]},{"id":"creature-30139","name":"Mekgineer Thermaplugg","position":[725.2292,-330.1278,571.2243]}],"objectiveOrder":[{"id":"creature-30137","name":"Viscous Fallout","position":[665.2952,-212.8968,-50.4591]},{"id":"creature-30133","name":"Electrocutioner 6000","position":[745.9532,-221.6698,403.9673]},{"id":"creature-30121","name":"Crowd Pummeler 9-60","position":[1083.0422,-277.4558,261.7333]},{"id":"creature-30139","name":"Mekgineer Thermaplugg","position":[725.2292,-330.1278,571.2243]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6388,"id":142208,"map":90,"orientation":2.70526,"phaseMask":1,"position_x":-486.665,"position_y":647.652,"position_z":-327.485,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6447,"id":146085,"map":90,"orientation":-2.77507,"phaseMask":1,"position_x":-505.096,"position_y":-93.973,"position_z":-147.814,"rotation0":0,"rotation1":0,"rotation2":-0.983255,"rotation3":0.182237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6582,"id":142214,"map":90,"orientation":0.662801,"phaseMask":1,"position_x":-551.574,"position_y":706.112,"position_z":-325.738,"rotation0":0.037235,"rotation1":-0.102301,"rotation2":0.323633,"rotation3":0.939899,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6726,"id":142215,"map":90,"orientation":-0.236043,"phaseMask":1,"position_x":-515.979,"position_y":708.01,"position_z":-325.738,"rotation0":-0.010907,"rotation1":-0.108319,"rotation2":-0.116839,"rotation3":0.987166,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6748,"id":142216,"map":90,"orientation":-1.13489,"phaseMask":1,"position_x":-492.593,"position_y":681.819,"position_z":-325.738,"rotation0":-0.056883,"rotation1":-0.092824,"rotation2":-0.534106,"rotation3":0.838379,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6755,"id":142213,"map":90,"orientation":1.81514,"phaseMask":1,"position_x":-521.022,"position_y":621.549,"position_z":-327.485,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":6910,"id":142207,"map":90,"orientation":2.88852,"phaseMask":1,"position_x":-618.608,"position_y":691.118,"position_z":-327.049,"rotation0":0,"rotation1":0,"rotation2":0.992005,"rotation3":0.126199,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":9265,"id":142210,"map":90,"orientation":-1.78024,"phaseMask":1,"position_x":-518.904,"position_y":718.472,"position_z":-327.505,"rotation0":0,"rotation1":0,"rotation2":-0.777147,"rotation3":0.629319,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":9593,"id":142211,"map":90,"orientation":-0.881392,"phaseMask":1,"position_x":-561.236,"position_y":709.881,"position_z":-327.485,"rotation0":0,"rotation1":0,"rotation2":-0.426569,"rotation3":0.904455,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":11977,"id":142217,"map":90,"orientation":-2.03373,"phaseMask":1,"position_x":-497.995,"position_y":647.425,"position_z":-325.738,"rotation0":-0.091561,"rotation1":-0.058894,"rotation2":-0.845298,"rotation3":0.523086,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":11994,"id":142209,"map":90,"orientation":-2.67908,"phaseMask":1,"position_x":-485.723,"position_y":690.871,"position_z":-327.5,"rotation0":0,"rotation1":0,"rotation2":-0.973379,"rotation3":0.229201,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":12003,"id":90858,"map":90,"orientation":2.22529,"phaseMask":1,"position_x":-758.538,"position_y":260.386,"position_z":-273.049,"rotation0":0,"rotation1":0,"rotation2":0.896872,"rotation3":0.442291,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":14139,"id":85556,"map":90,"orientation":2.21308,"phaseMask":1,"position_x":-806.887,"position_y":323.963,"position_z":-271.656,"rotation0":0,"rotation1":0,"rotation2":0.894155,"rotation3":0.447758,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":14140,"id":142218,"map":90,"orientation":-2.93258,"phaseMask":1,"position_x":-528.375,"position_y":630.048,"position_z":-325.738,"rotation0":0.108055,"rotation1":0.013268,"rotation2":0.988611,"rotation3":-0.103907,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":15766,"id":142219,"map":90,"orientation":2.45177,"phaseMask":1,"position_x":-560.737,"position_y":643.358,"position_z":-325.738,"rotation0":0.103089,"rotation1":-0.034994,"rotation2":0.935582,"rotation3":0.335908,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":16565,"id":144179,"map":90,"orientation":4.72984,"phaseMask":1,"position_x":-547.903,"position_y":167.259,"position_z":-193.804,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":17633,"id":146086,"map":90,"orientation":0.767944,"phaseMask":1,"position_x":-541.607,"position_y":-105.434,"position_z":-151.829,"rotation0":0,"rotation1":0,"rotation2":0.374606,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":28327,"id":142212,"map":90,"orientation":0.916298,"phaseMask":1,"position_x":-562.961,"position_y":632.162,"position_z":-327.485,"rotation0":0,"rotation1":0,"rotation2":0.442289,"rotation3":0.896873,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":28487,"id":142475,"map":90,"orientation":-1.98968,"phaseMask":1,"position_x":-563.833,"position_y":154.52,"position_z":-202.151,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":721,"guid":28683,"id":142475,"map":90,"orientation":-3.12414,"phaseMask":1,"position_x":-562.086,"position_y":125.454,"position_z":-202.145,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":721},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":28934,"id":142475,"map":90,"orientation":3.14159,"phaseMask":1,"position_x":-550.357,"position_y":101.493,"position_z":-202.102,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29116,"id":142475,"map":90,"orientation":1.55334,"phaseMask":1,"position_x":-546.673,"position_y":129.436,"position_z":-202.151,"rotation0":0,"rotation1":0,"rotation2":0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29196,"id":142476,"map":90,"orientation":-1.81514,"phaseMask":1,"position_x":-555.494,"position_y":488.075,"position_z":-216.81,"rotation0":0,"rotation1":0,"rotation2":-0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29513,"id":142476,"map":90,"orientation":-1.8326,"phaseMask":1,"position_x":-554.104,"position_y":487.732,"position_z":-216.81,"rotation0":0,"rotation1":0,"rotation2":-0.793355,"rotation3":0.60876,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32379,"id":142696,"map":90,"orientation":0.645772,"phaseMask":1,"position_x":-864.416,"position_y":394.925,"position_z":-316.429,"rotation0":0,"rotation1":0,"rotation2":0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32380,"id":142696,"map":90,"orientation":2.30383,"phaseMask":1,"position_x":-842.562,"position_y":369.682,"position_z":-316.873,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32381,"id":142696,"map":90,"orientation":-2.47837,"phaseMask":1,"position_x":-857.861,"position_y":399.913,"position_z":-316.423,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32382,"id":19020,"map":90,"orientation":-0.453786,"phaseMask":1,"position_x":-472.186,"position_y":509.814,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32383,"id":19020,"map":90,"orientation":2.30383,"phaseMask":1,"position_x":-541.045,"position_y":15.7146,"position_z":-179.734,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32384,"id":142487,"map":90,"orientation":1.06465,"phaseMask":1,"position_x":-519.316,"position_y":163.12,"position_z":-193.73,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32385,"id":175084,"map":90,"orientation":-2.05949,"phaseMask":1,"position_x":-550.033,"position_y":206.148,"position_z":-193.723,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32386,"id":175085,"map":90,"orientation":0.977384,"phaseMask":1,"position_x":-496.932,"position_y":185.134,"position_z":-193.71,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32387,"id":142477,"map":90,"orientation":2.6529,"phaseMask":1,"position_x":-459.943,"position_y":634.926,"position_z":-325.315,"rotation0":0,"rotation1":0,"rotation2":0.970296,"rotation3":0.241922,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32388,"id":142344,"map":90,"orientation":1.74533,"phaseMask":1,"position_x":-821.033,"position_y":296.943,"position_z":-272.596,"rotation0":0,"rotation1":0,"rotation2":0.766045,"rotation3":0.642787,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32389,"id":142344,"map":90,"orientation":2.54818,"phaseMask":1,"position_x":-425.91,"position_y":33.8693,"position_z":-207.919,"rotation0":0,"rotation1":0,"rotation2":0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32390,"id":142344,"map":90,"orientation":1.51844,"phaseMask":1,"position_x":-613.813,"position_y":50.1167,"position_z":-199.653,"rotation0":0,"rotation1":0,"rotation2":0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32391,"id":142344,"map":90,"orientation":1.43117,"phaseMask":1,"position_x":-651.159,"position_y":404.573,"position_z":-273.063,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32392,"id":142344,"map":90,"orientation":2.68781,"phaseMask":1,"position_x":-497.876,"position_y":268.348,"position_z":-207.906,"rotation0":0,"rotation1":0,"rotation2":0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32393,"id":142344,"map":90,"orientation":1.5708,"phaseMask":1,"position_x":-495.907,"position_y":463.871,"position_z":-273.07,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32394,"id":142344,"map":90,"orientation":-1.95477,"phaseMask":1,"position_x":-484.388,"position_y":524.049,"position_z":-273.068,"rotation0":0,"rotation1":0,"rotation2":-0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32395,"id":142344,"map":90,"orientation":-1.50098,"phaseMask":1,"position_x":-623.627,"position_y":715.784,"position_z":-327.056,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32396,"id":142344,"map":90,"orientation":-1.97222,"phaseMask":1,"position_x":-857.707,"position_y":357.317,"position_z":-316.873,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32397,"id":142344,"map":90,"orientation":-2.25148,"phaseMask":1,"position_x":-577.389,"position_y":429.721,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":-0.902586,"rotation3":0.430509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32398,"id":3659,"map":90,"orientation":-2.61799,"phaseMask":1,"position_x":-571.492,"position_y":510.91,"position_z":-216.81,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32399,"id":74448,"map":90,"orientation":2.80998,"phaseMask":1,"position_x":-754.344,"position_y":364,"position_z":-272.596,"rotation0":0,"rotation1":0,"rotation2":0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32400,"id":142344,"map":90,"orientation":2.09439,"phaseMask":1,"position_x":-618.898,"position_y":546.456,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32401,"id":142344,"map":90,"orientation":0.174533,"phaseMask":1,"position_x":-650.266,"position_y":507.459,"position_z":-273.061,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32402,"id":142344,"map":90,"orientation":0.226893,"phaseMask":1,"position_x":-598.683,"position_y":441.687,"position_z":-230.601,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32403,"id":142344,"map":90,"orientation":3.14159,"phaseMask":1,"position_x":-440.51,"position_y":195.739,"position_z":-207.906,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32404,"id":142344,"map":90,"orientation":-0.575959,"phaseMask":1,"position_x":-619.782,"position_y":463.787,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":-0.284016,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32405,"id":142344,"map":90,"orientation":0.680678,"phaseMask":1,"position_x":-494.991,"position_y":445.379,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":0.333807,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32406,"id":142344,"map":90,"orientation":1.50098,"phaseMask":1,"position_x":-640.366,"position_y":115.257,"position_z":-183.875,"rotation0":0,"rotation1":0,"rotation2":0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32407,"id":142344,"map":90,"orientation":0.069813,"phaseMask":1,"position_x":-893.433,"position_y":346.016,"position_z":-272.596,"rotation0":0,"rotation1":0,"rotation2":0.0348994,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32408,"id":142344,"map":90,"orientation":2.86234,"phaseMask":1,"position_x":-737.696,"position_y":252.43,"position_z":-273.08,"rotation0":0,"rotation1":0,"rotation2":0.990268,"rotation3":0.139173,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32409,"id":142344,"map":90,"orientation":0.174533,"phaseMask":1,"position_x":-360.87,"position_y":139.481,"position_z":-154.743,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32410,"id":3695,"map":90,"orientation":-1.76278,"phaseMask":1,"position_x":-910.038,"position_y":357.305,"position_z":-272.596,"rotation0":0,"rotation1":0,"rotation2":-0.771624,"rotation3":0.636079,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32411,"id":19020,"map":90,"orientation":0.226893,"phaseMask":1,"position_x":-466.196,"position_y":104.798,"position_z":-150.114,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32412,"id":142344,"map":90,"orientation":0.069813,"phaseMask":1,"position_x":-688.657,"position_y":537.412,"position_z":-290.292,"rotation0":0,"rotation1":0,"rotation2":0.0348994,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32413,"id":142344,"map":90,"orientation":-1.18682,"phaseMask":1,"position_x":-535.189,"position_y":309.62,"position_z":-216.94,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32414,"id":142344,"map":90,"orientation":2.53073,"phaseMask":1,"position_x":-518.071,"position_y":207.96,"position_z":-155.237,"rotation0":0,"rotation1":0,"rotation2":0.953717,"rotation3":0.300705,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32415,"id":142344,"map":90,"orientation":1.58825,"phaseMask":1,"position_x":-688.036,"position_y":441.761,"position_z":-273.062,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32416,"id":142344,"map":90,"orientation":0.10472,"phaseMask":1,"position_x":-626.23,"position_y":534.406,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":0.0523361,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32417,"id":142344,"map":90,"orientation":-0.244346,"phaseMask":1,"position_x":-449.446,"position_y":470.808,"position_z":-230.601,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32418,"id":142344,"map":90,"orientation":-1.65806,"phaseMask":1,"position_x":-503.163,"position_y":288.431,"position_z":-211.552,"rotation0":0,"rotation1":0,"rotation2":-0.737276,"rotation3":0.675591,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32419,"id":142344,"map":90,"orientation":2.49582,"phaseMask":1,"position_x":-639.499,"position_y":98.2576,"position_z":-183.267,"rotation0":0,"rotation1":0,"rotation2":0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32420,"id":142344,"map":90,"orientation":3.01942,"phaseMask":1,"position_x":-614.765,"position_y":446.326,"position_z":-273.06,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610484,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32421,"id":142344,"map":90,"orientation":-1.13446,"phaseMask":1,"position_x":-554.923,"position_y":524.83,"position_z":-273.063,"rotation0":0,"rotation1":0,"rotation2":-0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32422,"id":74448,"map":90,"orientation":1.25664,"phaseMask":1,"position_x":-440.175,"position_y":81.8185,"position_z":-151.476,"rotation0":0,"rotation1":0,"rotation2":0.587786,"rotation3":0.809016,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32423,"id":142344,"map":90,"orientation":0.680678,"phaseMask":1,"position_x":-500.244,"position_y":550.958,"position_z":-273.07,"rotation0":0,"rotation1":0,"rotation2":0.333807,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32424,"id":142344,"map":90,"orientation":1.58825,"phaseMask":1,"position_x":-549.984,"position_y":572.745,"position_z":-273.072,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32425,"id":142344,"map":90,"orientation":-0.244346,"phaseMask":1,"position_x":-780.991,"position_y":192.097,"position_z":-273.082,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32426,"id":142344,"map":90,"orientation":1.309,"phaseMask":1,"position_x":-573.166,"position_y":358.569,"position_z":-231.679,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32427,"id":142344,"map":90,"orientation":2.98451,"phaseMask":1,"position_x":-560.135,"position_y":587.789,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32428,"id":142344,"map":90,"orientation":-0.715585,"phaseMask":1,"position_x":-771.775,"position_y":368.892,"position_z":-272.59,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32429,"id":142344,"map":90,"orientation":0.890118,"phaseMask":1,"position_x":-441.089,"position_y":235.067,"position_z":-207.907,"rotation0":0,"rotation1":0,"rotation2":0.430511,"rotation3":0.902585,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32430,"id":142344,"map":90,"orientation":-1.15192,"phaseMask":1,"position_x":-737.905,"position_y":683.435,"position_z":-330.783,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32431,"id":142344,"map":90,"orientation":-1.6057,"phaseMask":1,"position_x":-835.579,"position_y":507.531,"position_z":-303.937,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32432,"id":142344,"map":90,"orientation":-1.81514,"phaseMask":1,"position_x":-824.705,"position_y":434.837,"position_z":-272.596,"rotation0":0,"rotation1":0,"rotation2":-0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32433,"id":142344,"map":90,"orientation":-0.698132,"phaseMask":1,"position_x":-474.898,"position_y":39.9007,"position_z":-207.411,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32434,"id":142344,"map":90,"orientation":2.70526,"phaseMask":1,"position_x":-798.868,"position_y":397.023,"position_z":-316.433,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32435,"id":142344,"map":90,"orientation":3.05433,"phaseMask":1,"position_x":-508.935,"position_y":436.862,"position_z":-230.602,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32436,"id":142344,"map":90,"orientation":1.62316,"phaseMask":1,"position_x":-565.759,"position_y":306.406,"position_z":-213.012,"rotation0":0,"rotation1":0,"rotation2":0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32437,"id":142344,"map":90,"orientation":-1.0821,"phaseMask":1,"position_x":-676.904,"position_y":694.759,"position_z":-331.384,"rotation0":0,"rotation1":0,"rotation2":-0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32438,"id":142344,"map":90,"orientation":-2.25148,"phaseMask":1,"position_x":-750.604,"position_y":633.824,"position_z":-314.793,"rotation0":0,"rotation1":0,"rotation2":-0.902586,"rotation3":0.430509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32439,"id":142344,"map":90,"orientation":1.97222,"phaseMask":1,"position_x":-585.429,"position_y":401.097,"position_z":-230.601,"rotation0":0,"rotation1":0,"rotation2":0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32440,"id":74448,"map":90,"orientation":2.75762,"phaseMask":1,"position_x":-630.556,"position_y":66.5022,"position_z":-183.275,"rotation0":0,"rotation1":0,"rotation2":0.981627,"rotation3":0.190809,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32441,"id":19020,"map":90,"orientation":0.174533,"phaseMask":1,"position_x":-527.599,"position_y":-134.657,"position_z":-152.499,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/GnomeragonInstance":"37e3466c4bcc5537abc68c4664667994b0f94e765cc8c82c9b4208905edc41ca","patch/World/maps/GnomeragonInstance":"5dbdf0c9c04353a366ca9809b00eef7bc2ab85b5322fff1c28bc9077d872b90a"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/gnomeregan/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["31/31 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"sunken-temple","title":"Sunken Temple","mapId":109,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[45,55]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Sunken Temple","theme":"Instanced dungeon","summary":"Fight through Sunken Temple, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Sunken Temple...","unchartedAreaName":"Uncharted Sunken Temple","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":396.0821},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/109-sunkentemple/visual.glb","checksum":"0a6c95ae831ab75ecc90d94f9deb518b31977aed806e994c19febfdbeca28d10","size":6571032,"triangleCount":265928}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/109-sunkentemple/collision.glb","checksum":"05969af5c5483a4fa92f0ffcd613f6db2d14e7ac46039343a6a1848b08fe0614","size":1357500,"triangleCount":99999}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/109-sunkentemple/navigation.glb","checksum":"171ffab86deb411c74f282d6e0821c880dc0ac03833f33802b8d2637fd06509f","size":149416,"triangleCount":11583}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[184.6799,-195.5097,-168.0819],"max":[734.7939,-19.725,339.2511]},"entrance":{"name":"Sunken Temple Entrance","footPosition":[262.1939,-117.6297,97.0181],"forward":[0.9941070026027956,0,-0.10840326275571827],"yaw":1.679413032812117},"areas":[{"id":"entrance","name":"Sunken Temple Entrance","center":[262.1939,-117.6297,97.0181],"radius":35},{"id":"area-atal-alarion","name":"Atal'alarion's Encounter","center":[423.3539,-175.5097,93.6844],"radius":42},{"id":"area-jammal-an-and-ogom","name":"Jammal'an and Ogom's Encounter","center":[368.8479,-74.0037,-88.9566],"radius":42},{"id":"area-avatar-of-hakkar","name":"Avatar of Hakkar's Encounter","center":[617.2319,-90.9937,23.5188],"radius":42},{"id":"area-shade-of-eranikus","name":"Shade of Eranikus's Encounter","center":[601.3329,-76.6149,-38.6442],"radius":42}],"entities":{"entry-5226":{"id":"entry-5226","kind":"mob","name":"Murk Worm","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7992","name":"Slowing Poison","spellId":7992,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5547,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7549-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.377,"labelHeight":1.207,"markerRadius":3.0783}}},"entry-8384":{"id":"entry-8384","kind":"mob","name":"Deep Lurker","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5568","name":"Trample","spellId":5568,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6188,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-631-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1511,"labelHeight":4.9521,"markerRadius":1.4299}}},"entry-5708":{"id":"entry-5708","kind":"mob","name":"Spawn of Hakkar","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12280","name":"Acid of Hakkar","spellId":12280,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6062,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4065-animated.glb","rotationY":-1.5707963267948966,"groundOffset":8.4338,"labelHeight":14.1434,"markerRadius":3.4485}}},"entry-5228":{"id":"entry-5228","kind":"mob","name":"Saturated Ooze","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7992","name":"Slowing Poison","spellId":7992,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6689,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"ooze","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-682-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.0705,"labelHeight":4.0944,"markerRadius":2.0195}}},"entry-8318":{"id":"entry-8318","kind":"mob","name":"Atal'ai Slave","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7554-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.2692,"markerRadius":0.65}}},"entry-5267":{"id":"entry-5267","kind":"mob","name":"Unliving Atal'ai","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8247","name":"Wandering Plague","spellId":8247,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5825,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4771-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5259":{"id":"entry-5259","kind":"mob","name":"Atal'ai Witch Doctor","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15208","name":"Lightning Bolt","spellId":15208,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6404,"damageMultiplier":1.12},{"id":"spell-10605","name":"Chain Lightning","spellId":10605,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6670-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5291":{"id":"entry-5291","kind":"mob","name":"Hakkari Frostwing","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9915","name":"Frost Nova","spellId":9915,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4541,"damageMultiplier":0.62,"radius":8},{"id":"spell-8398","name":"Frostbolt Volley","spellId":8398,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4541,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7569-animated.glb","rotationY":-1.5707963267948966,"groundOffset":8.4338,"labelHeight":14.1434,"markerRadius":3.4485}}},"entry-5277":{"id":"entry-5277","kind":"mob","name":"Nightmare Scalebane","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12782","name":"Shield Spike","spellId":12782,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5410,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-12782","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7903-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":5.6557,"markerRadius":3.1644}}},"entry-5280":{"id":"entry-5280","kind":"mob","name":"Nightmare Wyrmkin","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15653","name":"Acid Spit","spellId":15653,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5611,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"serpent","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7863-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0057,"labelHeight":2.8487,"markerRadius":1.9451}}},"entry-5283":{"id":"entry-5283","kind":"mob","name":"Nightmare Wanderer","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5275,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-181-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0057,"labelHeight":3.018,"markerRadius":2.1096}}},"entry-5719":{"id":"entry-5719","kind":"mob","name":"Morphaz","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12882","name":"Wing Flap","spellId":12882,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7199,"damageMultiplier":1.12},{"id":"spell-12884","name":"Acid Breath","spellId":12884,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7199,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7975-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.0628,"labelHeight":9.2006,"markerRadius":4.4747}}},"entry-5722":{"id":"entry-5722","kind":"mob","name":"Hazzas","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12884","name":"Acid Breath","spellId":12884,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":5323,"damageMultiplier":0.62,"radius":8},{"id":"spell-12882","name":"Wing Flap","spellId":12882,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5323,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-9584-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.3816,"labelHeight":11.9608,"markerRadius":4.5}}},"entry-8319":{"id":"entry-8319","kind":"mob","name":"Nightmare Whelp","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15653","name":"Acid Spit","spellId":15653,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7496,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-621-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7649,"markerRadius":1.5914}}},"entry-8580":{"id":"entry-8580","kind":"boss","name":"Atal'alarion","title":"Dungeon Boss","hasLoot":true,"combat":{"level":49,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3000,"damageMultiplier":1},{"id":"spell-12887","name":"Sweeping Slam","spellId":12887,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4086,"damageMultiplier":1.35},{"id":"spell-6524","name":"Ground Tremor","spellId":6524,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7873-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.017,"labelHeight":6.9778,"markerRadius":2.2481}}},"entry-5716":{"id":"entry-5716","kind":"mob","name":"Zul'Lor","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12530","name":"Frailty","spellId":12530,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5510,"damageMultiplier":1.12},{"id":"spell-40505","name":"Cleave","spellId":40505,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5510,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6701-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5270":{"id":"entry-5270","kind":"mob","name":"Atal'ai Corpse Eater","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10893","name":"Shadow Word: Pain","spellId":10893,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4116,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4778-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5256":{"id":"entry-5256","kind":"mob","name":"Atal'ai Warrior","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":3.4889,"markerRadius":1.124}}},"entry-5710":{"id":"entry-5710","kind":"boss","name":"Jammal'an the Prophet","title":"Dungeon Boss","hasLoot":true,"combat":{"level":50,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12468","name":"Flamestrike","spellId":12468,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6996,"damageMultiplier":1.35},{"id":"spell-10893","name":"Shadow Word: Pain","spellId":10893,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6996,"damageMultiplier":1.35},{"id":"spell-12480","name":"Hex of Jammal'an","spellId":12480,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6996,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6708-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5271":{"id":"entry-5271","kind":"mob","name":"Atal'ai Deathwalker","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10893","name":"Shadow Word: Pain","spellId":10893,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4728,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4773-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5273":{"id":"entry-5273","kind":"mob","name":"Atal'ai High Priest","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15654","name":"Shadow Word: Pain","spellId":15654,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4781,"damageMultiplier":1.12},{"id":"spell-11660","name":"Shadow Bolt","spellId":11660,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4781,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6675-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5269":{"id":"entry-5269","kind":"mob","name":"Atal'ai Priest","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11660","name":"Shadow Bolt","spellId":11660,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7264,"damageMultiplier":1.12},{"id":"spell-8600","name":"Fevered Plague","spellId":8600,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7264,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4776-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5711":{"id":"entry-5711","kind":"mob","name":"Ogom the Wretched","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15654","name":"Shadow Word: Pain","spellId":15654,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5015,"damageMultiplier":1.12},{"id":"spell-11660","name":"Shadow Bolt","spellId":11660,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5015,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5263":{"id":"entry-5263","kind":"mob","name":"Mummified Atal'ai","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8600","name":"Fevered Plague","spellId":8600,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5660,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-4769-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5709":{"id":"entry-5709","kind":"boss","name":"Shade of Eranikus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":50,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4601,"damageMultiplier":1.35},{"id":"spell-12890","name":"Deep Slumber","spellId":12890,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":4601,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":4500}},{"id":"spell-11876","name":"War Stomp","spellId":11876,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4601,"damageMultiplier":0.82,"radius":11},{"id":"spell-12891","name":"Acid Breath","spellId":12891,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":4601,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7806-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.2274,"labelHeight":19.4124,"markerRadius":4.5}}},"entry-5712":{"id":"entry-5712","kind":"mob","name":"Zolo","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12058","name":"Chain Lightning","spellId":12058,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5139,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6699-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5713":{"id":"entry-5713","kind":"mob","name":"Gasher","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5400,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6698-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5714":{"id":"entry-5714","kind":"mob","name":"Loro","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12782","name":"Shield Spike","spellId":12782,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4449,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-12782","durationMs":8000,"magnitude":0.15}},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4449,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6700-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5715":{"id":"entry-5715","kind":"mob","name":"Hukku","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5602,"damageMultiplier":1.12},{"id":"spell-12279","name":"Curse of Blood","spellId":12279,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5602,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6702-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5717":{"id":"entry-5717","kind":"mob","name":"Mijan","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4859,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-12492","name":"Healing Wave","spellId":12492,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":4859,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6707-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5721":{"id":"entry-5721","kind":"mob","name":"Dreamscythe","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12882","name":"Wing Flap","spellId":12882,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5838,"damageMultiplier":1.12},{"id":"spell-12884","name":"Acid Breath","spellId":12884,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":5838,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-7553-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.5942,"labelHeight":13.8009,"markerRadius":4.5}}},"entry-5720":{"id":"entry-5720","kind":"mob","name":"Weaver","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12882","name":"Wing Flap","spellId":12882,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6526,"damageMultiplier":1.12},{"id":"spell-12884","name":"Acid Breath","spellId":12884,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6526,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-6375-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.2222,"labelHeight":10.5807,"markerRadius":4.5}}},"entry-8443":{"id":"entry-8443","kind":"boss","name":"Avatar of Hakkar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":50,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6607","name":"Lash","spellId":6607,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4851,"damageMultiplier":1.35},{"id":"spell-12888","name":"Cause Insanity","spellId":12888,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4851,"damageMultiplier":1.35},{"id":"spell-12889","name":"Curse of Tongues","spellId":12889,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4851,"damageMultiplier":1.35},{"id":"spell-10893","name":"Shadow Word: Pain","spellId":10893,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4851,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sunken-temple/creatures/display-8053-animated.glb","rotationY":-1.5707963267948966,"groundOffset":13.929,"labelHeight":23.1673,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-33598","entityId":"entry-5226","position":[434.0879,-134.5217,138.1631],"yaw":-2.54743,"spawnMask":1},{"id":"creature-33601","entityId":"entry-8384","position":[453.9109,-134.5817,183.9961],"yaw":-5.14474,"spawnMask":1},{"id":"creature-33609","entityId":"entry-8384","position":[464.1049,-134.5207,87.5909],"yaw":-2.20734,"spawnMask":1},{"id":"creature-33610","entityId":"entry-8384","position":[463.9979,-134.5227,99.4031],"yaw":-3.88653,"spawnMask":1},{"id":"creature-33611","entityId":"entry-8384","position":[512.6409,-134.5817,98.9891],"yaw":-6.16495,"spawnMask":1},{"id":"creature-33612","entityId":"entry-8384","position":[506.2129,-134.5817,106.3251],"yaw":-4.29571,"spawnMask":1},{"id":"creature-33619","entityId":"entry-5226","position":[444.8489,-134.5237,49.362],"yaw":-4.71197,"spawnMask":1},{"id":"creature-33620","entityId":"entry-5226","position":[434.8489,-134.5227,43.4726],"yaw":-3.41607,"spawnMask":1},{"id":"creature-33622","entityId":"entry-8384","position":[470.5219,-134.5817,15.3943],"yaw":-0.469254,"spawnMask":1},{"id":"creature-33628","entityId":"entry-5228","position":[377.0609,-134.5217,50.929],"yaw":-4.15671,"spawnMask":1},{"id":"creature-33629","entityId":"entry-5228","position":[389.2099,-134.5237,40.7273],"yaw":-5.58535,"spawnMask":1},{"id":"creature-33630","entityId":"entry-5226","position":[341.6909,-134.5817,30.3533],"yaw":-4.22267,"spawnMask":1},{"id":"creature-33631","entityId":"entry-8384","position":[373.2929,-134.5817,1.4807],"yaw":-0.998612,"spawnMask":1},{"id":"creature-33639","entityId":"entry-8318","position":[310.5929,-134.4927,9.4705],"yaw":-1.81071,"spawnMask":1},{"id":"creature-33640","entityId":"entry-8318","position":[318.7449,-134.5727,10.0031],"yaw":-1.31984,"spawnMask":1},{"id":"creature-33641","entityId":"entry-5267","position":[316.9409,-134.4987,5.5679],"yaw":-1.63792,"spawnMask":1},{"id":"creature-33642","entityId":"entry-5259","position":[319.5089,-134.4567,2.59],"yaw":-1.41801,"spawnMask":1},{"id":"creature-33643","entityId":"entry-5259","position":[309.2569,-134.4367,17.8231],"yaw":-4.0923,"spawnMask":1},{"id":"creature-33644","entityId":"entry-5259","position":[313.5929,-117.6287,87.7749],"yaw":-2.3945,"spawnMask":1},{"id":"creature-33645","entityId":"entry-5267","position":[310.4209,-117.6287,80.6676],"yaw":-0.520293,"spawnMask":1},{"id":"creature-33646","entityId":"entry-5291","position":[341.9999,-76.6593,206.5211],"yaw":-3.34538,"spawnMask":1},{"id":"creature-33647","entityId":"entry-5291","position":[321.6709,-76.6236,248.3201],"yaw":-2.56862,"spawnMask":1},{"id":"creature-33648","entityId":"entry-5291","position":[323.5469,-76.6097,267.6351],"yaw":-3.83625,"spawnMask":1},{"id":"creature-33649","entityId":"entry-5291","position":[431.4529,-76.5068,270.2311],"yaw":-5.83116,"spawnMask":1},{"id":"creature-33650","entityId":"entry-5291","position":[414.2629,-76.4792,294.2511],"yaw":-5.01434,"spawnMask":1},{"id":"creature-33651","entityId":"entry-5291","position":[498.4979,-76.6143,267.7611],"yaw":-5.27195,"spawnMask":1},{"id":"creature-33652","entityId":"entry-5291","position":[478.5819,-76.6855,200.2301],"yaw":-1.4667,"spawnMask":1},{"id":"creature-33653","entityId":"entry-5277","position":[445.1799,-76.6673,159.1151],"yaw":-5.24682,"spawnMask":1},{"id":"creature-33654","entityId":"entry-5280","position":[454.7899,-76.6659,153.4401],"yaw":-5.19577,"spawnMask":1},{"id":"creature-33655","entityId":"entry-5283","position":[450.2349,-76.6671,156.1801],"yaw":-5.26646,"spawnMask":1},{"id":"creature-33656","entityId":"entry-5283","position":[440.5679,-76.6699,161.9831],"yaw":-5.23897,"spawnMask":1},{"id":"creature-33657","entityId":"entry-5719","position":[610.5439,-76.611,100.2291],"yaw":-6.18358,"spawnMask":1},{"id":"creature-33659","entityId":"entry-5277","position":[541.8979,-76.6646,96.3488],"yaw":-1.0031,"spawnMask":1},{"id":"creature-33660","entityId":"entry-8319","position":[542.2989,-76.6668,84.1638],"yaw":-0.311951,"spawnMask":1},{"id":"creature-33661","entityId":"entry-8319","position":[548.7449,-76.6645,94.7324],"yaw":-5.9676,"spawnMask":1},{"id":"creature-33662","entityId":"entry-8319","position":[540.4649,-76.6696,81.4955],"yaw":-2.34299,"spawnMask":1},{"id":"creature-33663","entityId":"entry-8319","position":[531.7239,-76.6668,94.2529],"yaw":-3.40642,"spawnMask":1},{"id":"creature-33664","entityId":"entry-5283","position":[530.4989,-76.6691,89.856],"yaw":-3.17708,"spawnMask":1},{"id":"creature-33665","entityId":"entry-5283","position":[485.8059,-76.6464,84.025],"yaw":-0.0111437,"spawnMask":1},{"id":"creature-33666","entityId":"entry-5277","position":[485.6059,-76.6486,91.4083],"yaw":-0.0582671,"spawnMask":1},{"id":"creature-33667","entityId":"entry-5277","position":[486.2519,-76.6494,98.8401],"yaw":-0.0504134,"spawnMask":1},{"id":"creature-33668","entityId":"entry-5280","position":[504.2859,-76.6216,-69.4649],"yaw":-5.882,"spawnMask":1},{"id":"creature-33669","entityId":"entry-5277","position":[486.8879,-76.6123,-75.8662],"yaw":-3.44334,"spawnMask":1},{"id":"creature-33670","entityId":"entry-8319","position":[484.3039,-76.6164,-70.4313],"yaw":-2.08617,"spawnMask":1},{"id":"creature-33671","entityId":"entry-8319","position":[499.1429,-76.6168,-77.9293],"yaw":-1.78458,"spawnMask":1},{"id":"creature-33672","entityId":"entry-8319","position":[504.7969,-76.6181,-77.9532],"yaw":-0.712507,"spawnMask":1},{"id":"creature-33673","entityId":"entry-8319","position":[499.6709,-76.6237,-60.9113],"yaw":-5.50344,"spawnMask":1},{"id":"creature-33675","entityId":"entry-5226","position":[229.6799,-158.7827,114.4371],"yaw":-5.52842,"spawnMask":1},{"id":"creature-33676","entityId":"entry-5226","position":[271.6309,-142.5107,130.3361],"yaw":-2.07267,"spawnMask":1},{"id":"creature-33678","entityId":"entry-8319","position":[459.2159,-76.6626,-8.0965],"yaw":-2.1197,"spawnMask":1},{"id":"creature-33679","entityId":"entry-8319","position":[455.3719,-76.6626,1.8094],"yaw":-4.82933,"spawnMask":1},{"id":"creature-33680","entityId":"entry-8319","position":[460.0339,-76.6626,6.0966],"yaw":-0.603882,"spawnMask":1},{"id":"creature-33712","entityId":"entry-5277","position":[472.7159,-76.6579,7.2894],"yaw":-6.17628,"spawnMask":1},{"id":"creature-33713","entityId":"entry-5280","position":[467.6799,-76.6602,13.5887],"yaw":-4.6212,"spawnMask":1},{"id":"creature-33714","entityId":"entry-8319","position":[351.9959,-76.9761,85.0613],"yaw":-0.466443,"spawnMask":1},{"id":"creature-33715","entityId":"entry-8319","position":[347.7769,-76.875,95.8745],"yaw":-2.43858,"spawnMask":1},{"id":"creature-33716","entityId":"entry-8319","position":[341.1659,-76.6986,88.1184],"yaw":-2.43072,"spawnMask":1},{"id":"creature-33717","entityId":"entry-8319","position":[334.5779,-76.6573,95.685],"yaw":-0.33371,"spawnMask":1},{"id":"creature-33718","entityId":"entry-8319","position":[328.7889,-76.6544,88.2242],"yaw":-3.69522,"spawnMask":1},{"id":"creature-33719","entityId":"entry-5277","position":[236.6089,-77.2468,77.5319],"yaw":-2.16369,"spawnMask":1},{"id":"creature-33721","entityId":"entry-8319","position":[230.9619,-77.2468,73.6105],"yaw":-2.98836,"spawnMask":1},{"id":"creature-33722","entityId":"entry-5283","position":[236.4979,-77.2468,71.239],"yaw":-1.51573,"spawnMask":1},{"id":"creature-33723","entityId":"entry-5280","position":[243.9989,-77.2468,74.4333],"yaw":-0.365127,"spawnMask":1},{"id":"creature-33727","entityId":"entry-8384","position":[458.7119,-158.7187,120.8401],"yaw":-5.88575,"spawnMask":1},{"id":"creature-33728","entityId":"entry-5228","position":[437.1969,-158.7187,138.4721],"yaw":-5.34383,"spawnMask":1},{"id":"creature-33733","entityId":"entry-8384","position":[411.3849,-158.7187,148.7891],"yaw":-5.08858,"spawnMask":1},{"id":"creature-33737","entityId":"entry-8384","position":[358.3409,-158.7187,114.2071],"yaw":-2.93816,"spawnMask":1},{"id":"creature-33738","entityId":"entry-8384","position":[364.1729,-158.7187,123.0611],"yaw":-4.51681,"spawnMask":1},{"id":"creature-33744","entityId":"entry-8384","position":[458.9799,-158.7187,63.3839],"yaw":-0.0455403,"spawnMask":1},{"id":"creature-33745","entityId":"entry-5228","position":[438.6619,-159.0927,49.0108],"yaw":-0.8922,"spawnMask":1},{"id":"creature-33750","entityId":"entry-8384","position":[409.4489,-158.7187,36.7896],"yaw":-4.24194,"spawnMask":1},{"id":"creature-33751","entityId":"entry-5228","position":[383.6729,-159.4347,50.8559],"yaw":-4.04951,"spawnMask":1},{"id":"creature-33763","entityId":"entry-5226","position":[406.1019,-175.5097,90.022],"yaw":-0.109954,"spawnMask":1},{"id":"creature-33835","entityId":"entry-5226","position":[410.3819,-175.5097,93.8738],"yaw":-3.79191,"spawnMask":1},{"id":"creature-33836","entityId":"entry-5228","position":[412.2199,-175.5097,101.4901],"yaw":-2.66565,"spawnMask":1},{"id":"creature-34165","entityId":"entry-8384","position":[368.6399,-161.8547,85.6835],"yaw":-0.649529,"spawnMask":1},{"id":"creature-34166","entityId":"entry-8384","position":[348.8929,-158.7137,96.2612],"yaw":-5.87635,"spawnMask":1},{"id":"creature-34167","entityId":"entry-8384","position":[315.9119,-158.7167,87.4999],"yaw":-0.592196,"spawnMask":1},{"id":"creature-34168","entityId":"entry-5226","position":[249.2549,-158.7597,92.9527],"yaw":-3.15259,"spawnMask":1},{"id":"creature-34171","entityId":"entry-5226","position":[231.8489,-158.7827,105.5841],"yaw":-2.81487,"spawnMask":1},{"id":"creature-34173","entityId":"entry-5226","position":[445.8439,-134.5217,131.5531],"yaw":-0.854892,"spawnMask":1},{"id":"creature-34452","entityId":"entry-8384","position":[354.9709,-134.5817,165.5461],"yaw":-1.38111,"spawnMask":1},{"id":"creature-34453","entityId":"entry-8384","position":[361.7379,-134.5817,168.8421],"yaw":-6.15084,"spawnMask":1},{"id":"creature-34469","entityId":"entry-8384","position":[377.4919,-134.5217,134.8231],"yaw":-2.60241,"spawnMask":1},{"id":"creature-34472","entityId":"entry-5228","position":[385.5029,-134.5227,141.5631],"yaw":-5.47225,"spawnMask":1},{"id":"creature-34475","entityId":"entry-8384","position":[354.0059,-134.5227,97.2221],"yaw":-5.08113,"spawnMask":1},{"id":"creature-34476","entityId":"entry-5226","position":[360.3979,-134.5227,85.6419],"yaw":-0.361671,"spawnMask":1},{"id":"creature-34519","entityId":"entry-8384","position":[316.0259,-134.5817,74.442],"yaw":-1.41254,"spawnMask":1},{"id":"creature-34521","entityId":"entry-8580","position":[423.3539,-175.5097,93.6844],"yaw":-6.19797,"spawnMask":1},{"id":"creature-34522","entityId":"entry-5716","position":[410.3499,-52.4824,163.1151],"yaw":-4.7096,"spawnMask":1},{"id":"creature-34523","entityId":"entry-5267","position":[340.0359,-117.6367,141.3911],"yaw":-5.92995,"spawnMask":1},{"id":"creature-34524","entityId":"entry-5259","position":[345.2839,-117.6297,142.1481],"yaw":-3.08,"spawnMask":1},{"id":"creature-34584","entityId":"entry-8318","position":[272.8619,-55.2675,146.2071],"yaw":-2.67134,"spawnMask":1},{"id":"creature-34585","entityId":"entry-8318","position":[321.0289,-39.726,138.6421],"yaw":-4.75178,"spawnMask":1},{"id":"creature-34586","entityId":"entry-8318","position":[325.4889,-39.726,139.0261],"yaw":-4.7832,"spawnMask":1},{"id":"creature-34587","entityId":"entry-5267","position":[323.7909,-39.726,140.7991],"yaw":-4.85938,"spawnMask":1},{"id":"creature-34588","entityId":"entry-8318","position":[324.6279,-39.726,52.4942],"yaw":-0.998201,"spawnMask":1},{"id":"creature-34589","entityId":"entry-5270","position":[343.0379,-39.726,27.9616],"yaw":-4.07932,"spawnMask":1},{"id":"creature-34590","entityId":"entry-5270","position":[339.2949,-39.726,33.0626],"yaw":-4.07932,"spawnMask":1},{"id":"creature-34591","entityId":"entry-5259","position":[337.6119,-39.726,26.8804],"yaw":-2.3483,"spawnMask":1},{"id":"creature-34592","entityId":"entry-5256","position":[379.7509,-39.726,-0.6208],"yaw":-0.797142,"spawnMask":1},{"id":"creature-34593","entityId":"entry-5256","position":[385.2809,-39.726,2.738],"yaw":-0.0376612,"spawnMask":1},{"id":"creature-34602","entityId":"entry-5259","position":[375.7999,-39.726,6.8831],"yaw":-4.27489,"spawnMask":1},{"id":"creature-34642","entityId":"entry-8318","position":[381.7509,-39.726,5.9572],"yaw":-5.81977,"spawnMask":1},{"id":"creature-34643","entityId":"entry-8318","position":[373.6789,-39.726,0.6443],"yaw":-1.63673,"spawnMask":1},{"id":"creature-34644","entityId":"entry-8318","position":[424.2869,-39.726,-2.9191],"yaw":-0.266214,"spawnMask":1},{"id":"creature-34645","entityId":"entry-8318","position":[429.2939,-39.726,3.5075],"yaw":-3.60416,"spawnMask":1},{"id":"creature-34652","entityId":"entry-5270","position":[473.8559,-39.726,18.6459],"yaw":-5.97527,"spawnMask":1},{"id":"creature-34653","entityId":"entry-8318","position":[472.9339,-39.726,22.0329],"yaw":-5.97527,"spawnMask":1},{"id":"creature-34654","entityId":"entry-8318","position":[472.7699,-39.726,15.3788],"yaw":-2.16687,"spawnMask":1},{"id":"creature-34655","entityId":"entry-5259","position":[494.6719,-39.726,55.3325],"yaw":-0.246433,"spawnMask":1},{"id":"creature-34656","entityId":"entry-5259","position":[503.5179,-39.726,58.6656],"yaw":-3.36054,"spawnMask":1},{"id":"creature-34657","entityId":"entry-5256","position":[496.5929,-39.726,59.6821],"yaw":-4.97037,"spawnMask":1},{"id":"creature-34658","entityId":"entry-8318","position":[500.7289,-39.726,58.8811],"yaw":-4.79208,"spawnMask":1},{"id":"creature-34659","entityId":"entry-8318","position":[500.1439,-39.726,51.5544],"yaw":-4.79208,"spawnMask":1},{"id":"creature-34660","entityId":"entry-5256","position":[503.6489,-39.726,106.3751],"yaw":-5.22798,"spawnMask":1},{"id":"creature-34757","entityId":"entry-5259","position":[389.6029,-39.726,188.2011],"yaw":-5.62382,"spawnMask":1},{"id":"creature-35236","entityId":"entry-5259","position":[381.7449,-39.726,182.1921],"yaw":-2.89071,"spawnMask":1},{"id":"creature-38074","entityId":"entry-8318","position":[381.1339,-39.726,186.9141],"yaw":-3.10119,"spawnMask":1},{"id":"creature-38075","entityId":"entry-5267","position":[385.3569,-39.726,184.6001],"yaw":-3.01794,"spawnMask":1},{"id":"creature-38076","entityId":"entry-8318","position":[387.4539,-39.726,182.8921],"yaw":-2.84594,"spawnMask":1},{"id":"creature-38077","entityId":"entry-5256","position":[354.9869,-39.726,173.2971],"yaw":-5.23434,"spawnMask":1},{"id":"creature-38078","entityId":"entry-8318","position":[521.4119,-55.181,177.0231],"yaw":-3.89918,"spawnMask":1},{"id":"creature-38079","entityId":"entry-8318","position":[515.5039,-55.181,184.2501],"yaw":-4.07982,"spawnMask":1},{"id":"creature-38080","entityId":"entry-5259","position":[293.1929,-55.172,1.945],"yaw":-2.37323,"spawnMask":1},{"id":"creature-38081","entityId":"entry-5267","position":[305.4679,-55.172,0.5624],"yaw":-0.64142,"spawnMask":1},{"id":"creature-38082","entityId":"entry-8318","position":[299.7979,-55.172,10.2929],"yaw":-4.61004,"spawnMask":1},{"id":"creature-38084","entityId":"entry-5259","position":[549.1749,-55.1325,43.244],"yaw":-5.56428,"spawnMask":1},{"id":"creature-38085","entityId":"entry-8318","position":[544.9479,-55.1325,50.0961],"yaw":-5.3216,"spawnMask":1},{"id":"creature-38086","entityId":"entry-8318","position":[539.5279,-55.1325,41.3849],"yaw":-2.95519,"spawnMask":1},{"id":"creature-39040","entityId":"entry-8319","position":[443.8649,-77.1967,54.539],"yaw":-1.4378,"spawnMask":1},{"id":"creature-39041","entityId":"entry-8319","position":[447.4769,-77.2195,59.7127],"yaw":-0.431703,"spawnMask":1},{"id":"creature-39042","entityId":"entry-8319","position":[368.6199,-76.6475,22.7809],"yaw":-2.11245,"spawnMask":1},{"id":"creature-39043","entityId":"entry-8319","position":[357.7329,-76.6385,19.3901],"yaw":-2.42583,"spawnMask":1},{"id":"creature-39044","entityId":"entry-8319","position":[401.5079,-79.4359,74.5411],"yaw":-4.09951,"spawnMask":1},{"id":"creature-39448","entityId":"entry-8319","position":[395.0629,-78.328,67.1578],"yaw":-3.32589,"spawnMask":1},{"id":"creature-39449","entityId":"entry-5283","position":[402.4189,-78.7696,67.3374],"yaw":-0.92493,"spawnMask":1},{"id":"creature-39450","entityId":"entry-8319","position":[400.0799,-77.7194,61.5592],"yaw":-1.41031,"spawnMask":1},{"id":"creature-39451","entityId":"entry-8319","position":[407.2919,-79.3238,71.7162],"yaw":-5.78026,"spawnMask":1},{"id":"creature-39734","entityId":"entry-5277","position":[365.1959,-76.6505,153.2941],"yaw":-4.17668,"spawnMask":1},{"id":"creature-39735","entityId":"entry-5277","position":[379.8129,-76.6457,161.9931],"yaw":-4.16098,"spawnMask":1},{"id":"creature-39736","entityId":"entry-5283","position":[445.8419,-76.3993,119.8751],"yaw":-5.14026,"spawnMask":1},{"id":"creature-39737","entityId":"entry-5710","position":[368.8479,-74.0037,-88.9566],"yaw":-3.11157,"spawnMask":1},{"id":"creature-39738","entityId":"entry-5271","position":[419.2049,-76.6072,-83.7547],"yaw":-0.275089,"spawnMask":1},{"id":"creature-39739","entityId":"entry-5273","position":[402.8519,-76.6072,-80.6656],"yaw":-6.26499,"spawnMask":1},{"id":"creature-39740","entityId":"entry-5271","position":[419.6229,-76.6072,-77.0897],"yaw":-0.0630307,"spawnMask":1},{"id":"creature-39741","entityId":"entry-5271","position":[402.7109,-76.6072,-77.5595],"yaw":-5.61186,"spawnMask":1},{"id":"creature-39742","entityId":"entry-5271","position":[385.9389,-76.6072,-56.5928],"yaw":-3.67469,"spawnMask":1},{"id":"creature-39743","entityId":"entry-5271","position":[392.6449,-76.6072,-57.9378],"yaw":-5.98769,"spawnMask":1},{"id":"creature-39744","entityId":"entry-5273","position":[409.4539,-76.6072,-97.6552],"yaw":-6.212,"spawnMask":1},{"id":"creature-39745","entityId":"entry-5269","position":[391.3769,-76.6072,-94.4145],"yaw":-5.98973,"spawnMask":1},{"id":"creature-39746","entityId":"entry-5271","position":[391.8979,-76.6072,-96.7931],"yaw":-6.11177,"spawnMask":1},{"id":"creature-39747","entityId":"entry-5271","position":[431.2999,-76.6072,-119.8529],"yaw":-0.749854,"spawnMask":1},{"id":"creature-39748","entityId":"entry-5271","position":[429.7909,-76.6072,-115.1519],"yaw":-4.87075,"spawnMask":1},{"id":"creature-39749","entityId":"entry-5271","position":[383.4529,-76.6072,-123.0819],"yaw":-2.34569,"spawnMask":1},{"id":"creature-39750","entityId":"entry-5271","position":[409.7449,-76.6071,-94.995],"yaw":-6.26874,"spawnMask":1},{"id":"creature-39751","entityId":"entry-5259","position":[272.2779,-55.2676,138.8661],"yaw":-2.60411,"spawnMask":1},{"id":"creature-39752","entityId":"entry-5259","position":[288.2559,-55.2676,142.4351],"yaw":-0.606829,"spawnMask":1},{"id":"creature-39753","entityId":"entry-8318","position":[281.7039,-55.2676,140.7301],"yaw":-2.08416,"spawnMask":1},{"id":"creature-39754","entityId":"entry-5256","position":[317.5309,-39.726,106.0941],"yaw":-0.332726,"spawnMask":1},{"id":"creature-39755","entityId":"entry-5259","position":[337.8319,-39.725,148.4401],"yaw":-3.92995,"spawnMask":1},{"id":"creature-39756","entityId":"entry-5259","position":[336.3729,-39.726,157.0741],"yaw":-5.27019,"spawnMask":1},{"id":"creature-39757","entityId":"entry-8318","position":[331.0019,-39.726,155.2721],"yaw":-5.62754,"spawnMask":1},{"id":"creature-39758","entityId":"entry-8318","position":[337.0559,-39.726,153.3051],"yaw":-5.62754,"spawnMask":1},{"id":"creature-39759","entityId":"entry-5256","position":[426.2419,-39.726,180.9681],"yaw":-1.3809,"spawnMask":1},{"id":"creature-39760","entityId":"entry-5256","position":[424.7379,-39.726,190.7051],"yaw":-5.30475,"spawnMask":1},{"id":"creature-39761","entityId":"entry-5259","position":[418.0099,-39.726,184.5331],"yaw":-4.96275,"spawnMask":1},{"id":"creature-39762","entityId":"entry-8318","position":[421.6799,-39.726,185.3961],"yaw":-3.33497,"spawnMask":1},{"id":"creature-39763","entityId":"entry-8318","position":[426.1219,-39.726,186.3371],"yaw":-3.25722,"spawnMask":1},{"id":"creature-39764","entityId":"entry-5259","position":[466.0089,-39.8746,169.2071],"yaw":-3.22816,"spawnMask":1},{"id":"creature-39765","entityId":"entry-8318","position":[464.6749,-39.8746,173.3341],"yaw":-3.62871,"spawnMask":1},{"id":"creature-39766","entityId":"entry-8318","position":[469.8309,-39.8746,164.8041],"yaw":-2.548,"spawnMask":1},{"id":"creature-39767","entityId":"entry-5267","position":[467.7459,-39.8746,172.8101],"yaw":-3.12527,"spawnMask":1},{"id":"creature-39768","entityId":"entry-5259","position":[513.2079,-55.181,187.3461],"yaw":-4.66544,"spawnMask":1},{"id":"creature-39769","entityId":"entry-8318","position":[521.7879,-55.181,190.7771],"yaw":-4.69292,"spawnMask":1},{"id":"creature-39770","entityId":"entry-8318","position":[517.8669,-55.181,186.5781],"yaw":-4.64187,"spawnMask":1},{"id":"creature-39771","entityId":"entry-5267","position":[521.4629,-55.181,182.0031],"yaw":-4.43217,"spawnMask":1},{"id":"creature-39772","entityId":"entry-5256","position":[493.7479,-39.7262,127.9741],"yaw":-1.49243,"spawnMask":1},{"id":"creature-39773","entityId":"entry-5259","position":[499.7219,-39.7259,139.4421],"yaw":-2.70865,"spawnMask":1},{"id":"creature-39774","entityId":"entry-5259","position":[503.0739,-39.726,128.1921],"yaw":-2.905,"spawnMask":1},{"id":"creature-39775","entityId":"entry-8318","position":[502.3999,-39.7262,133.6971],"yaw":-0.682749,"spawnMask":1},{"id":"creature-39776","entityId":"entry-8318","position":[494.9789,-39.7262,132.7661],"yaw":-0.792705,"spawnMask":1},{"id":"creature-39777","entityId":"entry-8318","position":[500.1879,-39.7262,130.8131],"yaw":-0.81234,"spawnMask":1},{"id":"creature-39778","entityId":"entry-5256","position":[498.8279,-39.7262,79.2249],"yaw":-3.32405,"spawnMask":1},{"id":"creature-39779","entityId":"entry-5259","position":[545.8559,-55.1325,52.2903],"yaw":-5.53965,"spawnMask":1},{"id":"creature-39780","entityId":"entry-8318","position":[539.0019,-55.1325,42.2957],"yaw":-5.53965,"spawnMask":1},{"id":"creature-39781","entityId":"entry-8318","position":[546.3989,-55.1325,49.0974],"yaw":-5.53965,"spawnMask":1},{"id":"creature-39782","entityId":"entry-5270","position":[464.4199,-39.726,19.3673],"yaw":-4.55947,"spawnMask":1},{"id":"creature-39783","entityId":"entry-5256","position":[465.8119,-39.726,6.8993],"yaw":-1.44928,"spawnMask":1},{"id":"creature-39784","entityId":"entry-5259","position":[423.7619,-39.726,1.8179],"yaw":-1.29494,"spawnMask":1},{"id":"creature-39785","entityId":"entry-8318","position":[424.4129,-39.726,-6.9943],"yaw":-0.0402737,"spawnMask":1},{"id":"creature-39786","entityId":"entry-5270","position":[418.2309,-39.726,-2.2949],"yaw":-0.0261377,"spawnMask":1},{"id":"creature-39787","entityId":"entry-5270","position":[302.3119,-55.172,4.079],"yaw":-1.15946,"spawnMask":1},{"id":"creature-39788","entityId":"entry-8318","position":[301.9689,-55.172,-6.3664],"yaw":-1.82862,"spawnMask":1},{"id":"creature-39789","entityId":"entry-5270","position":[323.8539,-39.7252,46.0661],"yaw":-4.39688,"spawnMask":1},{"id":"creature-39790","entityId":"entry-8318","position":[323.0179,-39.7252,40.5158],"yaw":-4.25551,"spawnMask":1},{"id":"creature-39791","entityId":"entry-8318","position":[328.0279,-39.7252,46.985],"yaw":-4.25551,"spawnMask":1},{"id":"creature-39792","entityId":"entry-5259","position":[314.0649,-39.7252,70.7672],"yaw":-1.95193,"spawnMask":1},{"id":"creature-39793","entityId":"entry-8318","position":[310.8309,-39.7252,75.1562],"yaw":-1.95193,"spawnMask":1},{"id":"creature-39794","entityId":"entry-8318","position":[317.2489,-39.7252,74.6521],"yaw":-1.46891,"spawnMask":1},{"id":"creature-39795","entityId":"entry-5277","position":[363.4059,-76.6385,12.6294],"yaw":-2.17262,"spawnMask":1},{"id":"creature-39796","entityId":"entry-5283","position":[374.1659,-76.6478,6.073],"yaw":-1.28512,"spawnMask":1},{"id":"creature-39797","entityId":"entry-8319","position":[379.6889,-76.6513,18.9881],"yaw":-2.18097,"spawnMask":1},{"id":"creature-39798","entityId":"entry-8319","position":[363.1109,-76.6455,30.2186],"yaw":-2.14327,"spawnMask":1},{"id":"creature-39799","entityId":"entry-8319","position":[449.1559,-77.2184,62.5345],"yaw":-4.70553,"spawnMask":1},{"id":"creature-39800","entityId":"entry-8319","position":[447.5149,-76.6105,73.2501],"yaw":-4.03873,"spawnMask":1},{"id":"creature-39801","entityId":"entry-8319","position":[439.0439,-77.1646,72.9657],"yaw":-1.91344,"spawnMask":1},{"id":"creature-39802","entityId":"entry-5277","position":[441.8989,-76.7648,34.6493],"yaw":-0.39055,"spawnMask":1},{"id":"creature-39803","entityId":"entry-5283","position":[417.4479,-77.1729,127.1251],"yaw":-3.5884,"spawnMask":1},{"id":"creature-39804","entityId":"entry-8319","position":[415.0959,-78.3947,121.0901],"yaw":-3.37247,"spawnMask":1},{"id":"creature-39805","entityId":"entry-8319","position":[424.1019,-77.6256,120.8921],"yaw":-2.99626,"spawnMask":1},{"id":"creature-39806","entityId":"entry-8319","position":[423.6139,-77.0135,127.0251],"yaw":-6.23525,"spawnMask":1},{"id":"creature-39807","entityId":"entry-8319","position":[415.9389,-76.8037,131.9191],"yaw":-5.11055,"spawnMask":1},{"id":"creature-39808","entityId":"entry-5277","position":[376.3749,-76.6959,124.5511],"yaw":-4.91028,"spawnMask":1},{"id":"creature-39809","entityId":"entry-5283","position":[374.3649,-76.6484,160.8011],"yaw":-4.19556,"spawnMask":1},{"id":"creature-39810","entityId":"entry-8319","position":[366.7839,-77.1808,118.5691],"yaw":-3.00176,"spawnMask":1},{"id":"creature-39811","entityId":"entry-8319","position":[378.0699,-76.851,114.9511],"yaw":-1.7412,"spawnMask":1},{"id":"creature-39812","entityId":"entry-5283","position":[376.3959,-76.7748,70.702],"yaw":-2.69153,"spawnMask":1},{"id":"creature-39823","entityId":"entry-8319","position":[381.6139,-76.96,66.4786],"yaw":-1.80403,"spawnMask":1},{"id":"creature-39824","entityId":"entry-8319","position":[374.0209,-76.802,75.5221],"yaw":-2.7465,"spawnMask":1},{"id":"creature-39825","entityId":"entry-5283","position":[459.0279,-76.9905,122.0381],"yaw":-4.82409,"spawnMask":1},{"id":"creature-39826","entityId":"entry-5277","position":[454.8059,-77.0855,122.2961],"yaw":-4.54586,"spawnMask":1},{"id":"creature-39827","entityId":"entry-5711","position":[368.6479,-74.0037,-96.406],"yaw":-2.51817,"spawnMask":1},{"id":"creature-39828","entityId":"entry-5263","position":[435.7239,-76.6072,-57.4477],"yaw":-5.42032,"spawnMask":1},{"id":"creature-39829","entityId":"entry-5271","position":[430.0729,-76.6078,-57.0907],"yaw":-3.87692,"spawnMask":1},{"id":"creature-39830","entityId":"entry-5271","position":[434.7659,-76.6078,-64.0043],"yaw":-1.33301,"spawnMask":1},{"id":"creature-39831","entityId":"entry-5271","position":[393.0529,-76.6071,-77.4439],"yaw":-0.0975781,"spawnMask":1},{"id":"creature-39832","entityId":"entry-5271","position":[392.9479,-76.6071,-82.35],"yaw":-0.0975781,"spawnMask":1},{"id":"creature-39833","entityId":"entry-5263","position":[420.8309,-76.6072,-96.7752],"yaw":-0.220976,"spawnMask":1},{"id":"creature-39834","entityId":"entry-5271","position":[420.7939,-76.6072,-100.5345],"yaw":-0.113043,"spawnMask":1},{"id":"creature-39835","entityId":"entry-5271","position":[400.1259,-76.6072,-92.9285],"yaw":-0.131107,"spawnMask":1},{"id":"creature-39836","entityId":"entry-5271","position":[400.1979,-76.6072,-100.6255],"yaw":-6.16061,"spawnMask":1},{"id":"creature-39837","entityId":"entry-5271","position":[387.5579,-76.6072,-119.3639],"yaw":-2.26697,"spawnMask":1},{"id":"creature-39838","entityId":"entry-5263","position":[425.9119,-76.6072,-118.9829],"yaw":-2.75782,"spawnMask":1},{"id":"creature-39839","entityId":"entry-5263","position":[410.5369,-76.6072,-79.2553],"yaw":-0.146237,"spawnMask":1},{"id":"creature-39840","entityId":"entry-5263","position":[390.0269,-76.6072,-55.1287],"yaw":-5.03312,"spawnMask":1},{"id":"creature-39841","entityId":"entry-5263","position":[409.6169,-76.6072,-100.3784],"yaw":-0.122803,"spawnMask":1},{"id":"creature-39842","entityId":"entry-5709","position":[601.3329,-76.6149,-38.6442],"yaw":-1.57592,"spawnMask":1},{"id":"creature-39843","entityId":"entry-5712","position":[471.5999,-52.533,127.2811],"yaw":-5.66229,"spawnMask":1},{"id":"creature-39844","entityId":"entry-5713","position":[470.9229,-52.4985,56.5697],"yaw":-0.397759,"spawnMask":1},{"id":"creature-39845","entityId":"entry-5714","position":[409.6089,-52.5705,21.5442],"yaw":-1.5515,"spawnMask":1},{"id":"creature-39846","entityId":"entry-5715","position":[348.4599,-52.8475,57.575],"yaw":-2.57409,"spawnMask":1},{"id":"creature-39847","entityId":"entry-5717","position":[349.1429,-52.6935,128.1861],"yaw":-3.68072,"spawnMask":1},{"id":"creature-239021","entityId":"entry-5720","position":[401.7939,-77.3497,124.8181],"yaw":-5.77,"spawnMask":1},{"id":"encounter-492","entityId":"entry-8443","position":[617.2319,-90.9937,23.5188],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-33621","name":"Spawn of Hakkar Patrol","speed":1.15,"pathId":336210,"formationSource":"database-solo","spawnMask":1,"waypoints":[[479.6189,-134.5817,26.4623],[495.2349,-134.5817,43.6742],[504.8279,-134.5817,79.7297],[504.0479,-134.5817,113.5691],[490.6139,-134.5067,146.4871],[460.5679,-134.5817,177.4221],[422.1749,-134.5817,187.1811],[393.7769,-134.6227,186.6101],[366.3749,-134.6037,176.8641],[348.0809,-134.5817,165.0801],[327.8699,-134.5817,144.0241],[316.4839,-134.5817,109.6001],[312.6299,-134.5817,91.256],[321.4019,-134.5817,57.4055],[334.7389,-134.5817,36.9772],[359.1969,-134.5817,10.3823],[390.9059,-134.5817,-1.3132],[433.2699,-134.5817,0.4375],[461.3149,-134.5817,8.3849]],"members":[{"id":"member","entityId":"entry-5708","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-33658","name":"Hazzas Patrol","speed":1.15,"pathId":336580,"formationSource":"database-solo","spawnMask":1,"waypoints":[[597.4399,-76.6118,78.0068],[597.3559,-76.6118,67.5071],[597.1679,-76.6147,44.1279],[597.0369,-76.8706,27.8184],[596.8499,-76.6154,4.5091],[596.7599,-76.6154,16.1988],[596.7079,-76.6152,30.1987],[596.6239,-76.6144,52.3185],[596.5499,-76.6136,72.1284],[596.4709,-76.6126,93.1282],[596.4009,-76.6112,111.8181],[596.3569,-76.6104,123.4381],[596.3269,-76.6098,131.5581],[596.2689,-76.6098,117.5581],[596.2119,-76.6098,103.5581]],"members":[{"id":"member","entityId":"entry-5722","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-34520","name":"Spawn of Hakkar Patrol","speed":1.15,"pathId":345200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[318.7579,-134.5817,70.9574],[325.1339,-134.5817,44.9901],[339.6289,-134.5817,30.4046],[361.7089,-134.5387,7.9935],[396.3559,-134.5817,-2.4373],[423.8909,-134.5817,-2.5641],[451.0609,-134.5127,4.1387],[471.7729,-134.5817,19.1089],[494.4479,-134.5817,40.9741],[502.4559,-134.5817,68.9507],[508.7369,-134.5817,93.853],[499.9349,-134.5817,128.8351],[488.6419,-134.5207,149.2121],[458.2929,-134.5817,179.7281],[431.0799,-134.5817,185.6811],[405.7309,-134.6527,189.4761],[378.5669,-134.6407,182.6861],[357.7179,-134.5817,173.0851],[333.8119,-134.5817,152.4751],[323.7509,-134.5817,133.1761],[312.9579,-134.5817,99.8831]],"members":[{"id":"member","entityId":"entry-5708","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-239020","name":"Dreamscythe Patrol","speed":1.15,"pathId":2390200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[380.3079,-76.5016,125.4161],[372.7579,-76.5478,113.6261],[367.0959,-76.5107,104.7841],[366.5909,-76.5073,91.9841],[366.7529,-76.5184,81.5554],[372.2219,-76.5162,71.2232],[378.0119,-76.5125,61.068],[398.7779,-76.5163,49.0898],[420.8889,-76.5628,49.6941],[440.8149,-76.4779,59.6156],[453.4499,-76.5026,81.9596],[453.2829,-76.5162,102.9581],[441.9309,-76.5311,123.2221],[421.4289,-76.4538,136.4691],[406.3289,-76.5125,135.7001]],"members":[{"id":"member","entityId":"entry-5721","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-34521","name":"Atal'alarion","position":[423.3539,-175.5097,93.6844]},{"id":"creature-39737","name":"Jammal'an and Ogom","position":[368.8479,-74.0037,-88.9566]},{"id":"encounter-492","name":"Avatar of Hakkar","position":[617.2319,-90.9937,23.5188]},{"id":"creature-39842","name":"Shade of Eranikus","position":[601.3329,-76.6149,-38.6442]}],"objectiveOrder":[{"id":"creature-34521","name":"Atal'alarion","position":[423.3539,-175.5097,93.6844]},{"id":"creature-39737","name":"Jammal'an and Ogom","position":[368.8479,-74.0037,-88.9566]},{"id":"encounter-492","name":"Avatar of Hakkar","position":[617.2319,-90.9937,23.5188]},{"id":"creature-39842","name":"Shade of Eranikus","position":[601.3329,-76.6149,-38.6442]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":1477,"guid":11922,"id":148836,"map":109,"orientation":3.14159,"phaseMask":1,"position_x":-420.848,"position_y":94.7487,"position_z":-174.196,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":1477,"guid":14724,"id":148512,"map":109,"orientation":2.11185,"phaseMask":1,"position_x":-634.352,"position_y":-51.915,"position_z":-90.8352,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":27898,"id":148830,"map":109,"orientation":-1.50098,"phaseMask":1,"position_x":-515.553,"position_y":95.2582,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":27899,"id":148831,"map":109,"orientation":1.53589,"phaseMask":1,"position_x":-419.849,"position_y":94.4837,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":28111,"id":148832,"map":109,"orientation":-2.68781,"phaseMask":1,"position_x":-491.4,"position_y":135.97,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":-0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":28112,"id":148833,"map":109,"orientation":-0.610865,"phaseMask":1,"position_x":-491.491,"position_y":53.4818,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":-0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":28113,"id":148834,"map":109,"orientation":2.53073,"phaseMask":1,"position_x":-443.855,"position_y":136.101,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":0.953717,"rotation3":0.300705,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1477,"guid":28114,"id":148835,"map":109,"orientation":0.471239,"phaseMask":1,"position_x":-443.417,"position_y":53.8312,"position_z":-148.74,"rotation0":0,"rotation1":0,"rotation2":0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1477},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47561,"id":148418,"map":109,"orientation":2.40799,"phaseMask":1,"position_x":-435.417,"position_y":248.872,"position_z":-90.8275,"rotation0":0,"rotation1":0,"rotation2":0.933479,"rotation3":0.358631,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47562,"id":148419,"map":109,"orientation":0.659252,"phaseMask":1,"position_x":-499.066,"position_y":248.605,"position_z":-90.8275,"rotation0":0,"rotation1":0,"rotation2":0.323689,"rotation3":0.946163,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47563,"id":148420,"map":109,"orientation":5.535,"phaseMask":1,"position_x":-499.108,"position_y":303.472,"position_z":-90.8275,"rotation0":0,"rotation1":0,"rotation2":0.365428,"rotation3":-0.93084,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47564,"id":148421,"map":109,"orientation":3.84954,"phaseMask":1,"position_x":-434.857,"position_y":303.821,"position_z":-90.8264,"rotation0":0,"rotation1":0,"rotation2":0.938003,"rotation3":-0.346628,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99877,"id":148422,"map":109,"orientation":0,"phaseMask":1,"position_x":-467.09,"position_y":276.58,"position_z":-90.47,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268932,"id":149431,"map":109,"orientation":0,"phaseMask":1,"position_x":-518.1,"position_y":-85.545,"position_z":-91.2,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268933,"id":149432,"map":109,"orientation":0,"phaseMask":1,"position_x":-518.23,"position_y":276.04,"position_z":-91.2,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268934,"id":149433,"map":109,"orientation":0,"phaseMask":1,"position_x":-416.012,"position_y":275.855,"position_z":-91.2,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/SunkenTemple":"baf69425568962914908466e6818ec56283abc6d64fa6c3cb18dcc5a683433eb","patch/World/maps/SunkenTemple":"5633a3f5a145ca5fc01dcb6e1f025c646c2c1c6dfd10745e7e862b5007a1a8aa"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/sunken-temple/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["33/33 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"razorfen-downs","title":"Razorfen Downs","mapId":129,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[35,50]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Razorfen Downs","theme":"Instanced dungeon","summary":"Fight through Razorfen Downs, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Razorfen Downs...","unchartedAreaName":"Uncharted Razorfen Downs","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":773.802},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/129-razorfendowns/visual.glb","checksum":"c319cb06d926ae3668d1b670f4920375a151b3050f6d2268114187cfc005640b","size":5312064,"triangleCount":161644}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/129-razorfendowns/collision.glb","checksum":"71108797744e64985618caebb9c80f7a5cc9f39804e1f1fcdc8426286a542f09","size":1402912,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/129-razorfendowns/navigation.glb","checksum":"5468601f6a49eb1c695148a2793e6914f3a1fb378048974829574ff4da19e3e3","size":902384,"triangleCount":65826}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-162.5372,-10.9929,-1099.5347],"max":[207.7728,69.2058,-24.8097]},"entrance":{"name":"Razorfen Downs Entrance","footPosition":[-110.9772,37.0264,-592.9987],"forward":[0.126831947394427,0,0.9919242194442766],"yaw":0.12717447645095128},"areas":[{"id":"entrance","name":"Razorfen Downs Entrance","center":[-110.9772,37.0264,-592.9987],"radius":35},{"id":"area-tuten-kash","name":"Tuten'kash's Encounter","center":[-67.5724,37.0804,-237.0766],"radius":42},{"id":"area-mordresh-fire-eye","name":"Mordresh Fire Eye's Encounter","center":[14.9528,49.2058,-1029.0557],"radius":42},{"id":"area-glutton","name":"Glutton's Encounter","center":[12.8628,9.4937,-693.6687],"radius":42},{"id":"area-amnennar-the-coldbringer","name":"Amnennar the Coldbringer's Encounter","center":[78.2028,40.8801,-739.5687],"radius":42},{"id":"area-ragglesnout","name":"Ragglesnout's Encounter","center":[116.8228,14.5035,-795.9747],"radius":42},{"id":"area-plaguemaw-the-rotting","name":"Plaguemaw the Rotting's Encounter","center":[-55.7744,12.7264,-69.8097],"radius":42}],"entities":{"entry-7347":{"id":"entry-7347","kind":"mob","name":"Boneflayer Ghoul","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-1065-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.5115,"markerRadius":0.65}}},"entry-7353":{"id":"entry-7353","kind":"mob","name":"Freezing Spirit","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"spell-15532","name":"Frost Nova","spellId":15532,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5407,"damageMultiplier":0.62,"radius":8},{"id":"spell-12531","name":"Chilling Touch","spellId":12531,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5407,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-146-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-7342":{"id":"entry-7342","kind":"mob","name":"Skeletal Summoner","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9532","name":"Lightning Bolt","spellId":9532,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6477,"damageMultiplier":1.12},{"id":"spell-11980","name":"Curse of Weakness","spellId":11980,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6477,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-1245-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":2.6321,"markerRadius":0.65}}},"entry-7332":{"id":"entry-7332","kind":"mob","name":"Withered Spearhide","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11385-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.1722,"markerRadius":0.798}}},"entry-7333":{"id":"entry-7333","kind":"mob","name":"Withered Battle Boar","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-6121-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0278,"labelHeight":2.4447,"markerRadius":1.1661}}},"entry-7327":{"id":"entry-7327","kind":"mob","name":"Withered Warrior","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.8868,"markerRadius":1.2076}}},"entry-7335":{"id":"entry-7335","kind":"mob","name":"Death's Head Geomancer","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5947,"damageMultiplier":1.12},{"id":"spell-6725","name":"Flame Spike","spellId":6725,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5947,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/9fceacb1e87178ca5f1c580a75f07683cbcce1123c9c71d3b3baf3a63a40ffd6.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":4.066,"markerRadius":0.9488}}},"entry-7346":{"id":"entry-7346","kind":"mob","name":"Splinterbone Centurion","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8078","name":"Thunderclap","spellId":8078,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5042,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/70ea1c98df2681d8282db8d3c117575ba28c9de492c29ced19580955691a5080.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":3.1657,"markerRadius":0.65}}},"entry-7329":{"id":"entry-7329","kind":"mob","name":"Withered Quilguard","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11383-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":4.4848,"markerRadius":1.3934}}},"entry-7328":{"id":"entry-7328","kind":"mob","name":"Withered Reaver","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11384-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":5.2323,"markerRadius":1.6257}}},"entry-7337":{"id":"entry-7337","kind":"mob","name":"Death's Head Necromancer","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4945,"damageMultiplier":1.12},{"id":"spell-11443","name":"Cripple","spellId":11443,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4945,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11381-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":4.7437,"markerRadius":1.1069}}},"entry-7352":{"id":"entry-7352","kind":"mob","name":"Frozen Soul","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12528","name":"Silence","spellId":12528,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4904,"damageMultiplier":1.12},{"id":"spell-12531","name":"Chilling Touch","spellId":12531,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4904,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-146-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-7344":{"id":"entry-7344","kind":"mob","name":"Splinterbone Warrior","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11971","name":"Sunder Armor","spellId":11971,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5683,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/707138afbd77ec1a940d662fc32222f045bec0e87e0ab7ce83c282a9804ec065.glb","rotationY":-1.5707963267948966,"groundOffset":0.0027,"labelHeight":2.8408,"markerRadius":0.65}}},"entry-7334":{"id":"entry-7334","kind":"mob","name":"Battle Boar Horror","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-6122-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0417,"labelHeight":3.519,"markerRadius":1.7492}}},"entry-7341":{"id":"entry-7341","kind":"mob","name":"Skeletal Frostweaver","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9672","name":"Frostbolt","spellId":9672,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4294,"damageMultiplier":1.12},{"id":"spell-33624","name":"Blizzard","spellId":33624,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4294,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-9783-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-7348":{"id":"entry-7348","kind":"mob","name":"Thorn Eater Ghoul","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-1065-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.5115,"markerRadius":0.65}}},"entry-7343":{"id":"entry-7343","kind":"mob","name":"Splinterbone Skeleton","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-7550-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-7357":{"id":"entry-7357","kind":"boss","name":"Mordresh Fire Eye","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12466","name":"Fireball","spellId":12466,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6911,"damageMultiplier":1.35},{"id":"spell-12470","name":"Fire Nova","spellId":12470,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6911,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-8055-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":4.6181,"markerRadius":0.65}}},"entry-7345":{"id":"entry-7345","kind":"mob","name":"Splinterbone Captain","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"spell-9128","name":"Battle Shout","spellId":9128,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5444,"damageMultiplier":1.12},{"id":"spell-12461","name":"Backhand","spellId":12461,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5444,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/9a6dd0a8f5d239e51ad1ceaed4079f25646ad7be2e952cc4feef7bbcda29613b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":3.6388,"markerRadius":0.7423}}},"entry-7358":{"id":"entry-7358","kind":"boss","name":"Amnennar the Coldbringer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6401,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-7971-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4146,"labelHeight":5.638,"markerRadius":1.2491}}},"entry-8567":{"id":"entry-8567","kind":"boss","name":"Glutton","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"spell-16345","name":"Disease Cloud","spellId":16345,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4275,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-7864-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0061,"labelHeight":5.6966,"markerRadius":2.5109}}},"entry-7354":{"id":"entry-7354","kind":"boss","name":"Ragglesnout","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4332,"damageMultiplier":1.35},{"id":"spell-11639","name":"Shadow Word: Pain","spellId":11639,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4332,"damageMultiplier":1.35},{"id":"spell-12039","name":"Heal","spellId":12039,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4332,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15859","name":"Dominate Mind","spellId":15859,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4332,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.39,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-11382-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.004,"labelHeight":4.8629,"markerRadius":1.2277}}},"entry-14686":{"id":"entry-14686","kind":"mob","name":"Lady Falther'ess","combat":{"level":37,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/665ecc22aef511be0a627a08dde9c3b544903a64eeb2323c96fbbc3dfd76cf14.glb","rotationY":-1.5707963267948966,"groundOffset":0.5402,"labelHeight":5.6694,"markerRadius":1.2275}}},"entry-7355":{"id":"entry-7355","kind":"boss","name":"Tuten'kash","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12252","name":"Web Spray","spellId":12252,"delivery":"projectile","target":"random-party","school":"physical","animation":"cast","range":28,"cooldownMs":4796,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4796,"damageMultiplier":1.35},{"id":"spell-12255","name":"Curse of Tuten'kash","spellId":12255,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4796,"damageMultiplier":1.35},{"id":"spell-12251","name":"Virulent Poison","spellId":12251,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4796,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-7845-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4504,"labelHeight":10.4008,"markerRadius":4.5}}},"entry-7356":{"id":"entry-7356","kind":"boss","name":"Plaguemaw the Rotting","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12946","name":"Putrid Stench","spellId":12946,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4478,"damageMultiplier":1.35},{"id":"spell-11441","name":"Withered Touch","spellId":11441,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4478,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/razorfen-downs/creatures/display-6124-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":3.6471,"markerRadius":0.9207}}}},"staticSpawns":[{"id":"creature-13358","entityId":"entry-7347","position":[-76.9672,37.0825,-652.7387],"yaw":-3.28056,"spawnMask":1},{"id":"creature-13359","entityId":"entry-7347","position":[-86.1972,39.344,-638.5987],"yaw":-1.63284,"spawnMask":1},{"id":"creature-13360","entityId":"entry-7353","position":[-77.5172,37.2657,-648.3187],"yaw":-3.18938,"spawnMask":1},{"id":"creature-13361","entityId":"entry-7353","position":[-80.3572,38.5671,-642.3487],"yaw":-5.28222,"spawnMask":1},{"id":"creature-13362","entityId":"entry-7342","position":[-83.4372,38.3695,-646.6787],"yaw":-3.80795,"spawnMask":1},{"id":"creature-13363","entityId":"entry-7332","position":[-96.6072,36.6616,-675.7587],"yaw":-3.6748,"spawnMask":1},{"id":"creature-13364","entityId":"entry-7333","position":[-90.8472,37.4007,-681.2287],"yaw":-2.04549,"spawnMask":1},{"id":"creature-13365","entityId":"entry-7333","position":[-94.6072,36.5427,-675.7387],"yaw":-3.49232,"spawnMask":1},{"id":"creature-13366","entityId":"entry-7333","position":[-94.4672,37.064,-679.0087],"yaw":-3.7573,"spawnMask":1},{"id":"creature-28775","entityId":"entry-7333","position":[-93.2072,37.4623,-682.1187],"yaw":-1.13262,"spawnMask":1},{"id":"creature-28776","entityId":"entry-7327","position":[-114.1772,38.7766,-653.6387],"yaw":-5.8427,"spawnMask":1},{"id":"creature-28778","entityId":"entry-7335","position":[-117.5372,39.491,-649.6687],"yaw":-0.693344,"spawnMask":1},{"id":"creature-28780","entityId":"entry-7332","position":[-112.2972,40.7199,-628.7387],"yaw":-1.50789,"spawnMask":1},{"id":"creature-28783","entityId":"entry-7347","position":[-18.1572,33.3332,-646.2187],"yaw":-5.95304,"spawnMask":1},{"id":"creature-31763","entityId":"entry-7353","position":[-14.0572,33.2741,-637.8187],"yaw":-4.14281,"spawnMask":1},{"id":"creature-31764","entityId":"entry-7346","position":[-19.4772,33.3645,-641.7987],"yaw":-2.73081,"spawnMask":1},{"id":"creature-31765","entityId":"entry-7346","position":[-25.2272,33.3919,-647.6787],"yaw":-3.39876,"spawnMask":1},{"id":"creature-31766","entityId":"entry-7327","position":[-102.6272,40.0194,-703.2997],"yaw":-4.68028,"spawnMask":1},{"id":"creature-31767","entityId":"entry-7327","position":[-73.9372,37.9339,-690.4287],"yaw":-4.80224,"spawnMask":1},{"id":"creature-31768","entityId":"entry-7332","position":[-71.9372,38.0025,-696.7987],"yaw":-3.24463,"spawnMask":1},{"id":"creature-31775","entityId":"entry-7335","position":[-79.0672,37.9511,-694.3587],"yaw":-3.93116,"spawnMask":1},{"id":"creature-31776","entityId":"entry-7335","position":[-102.2872,39.8218,-706.3367],"yaw":-2.33696,"spawnMask":1},{"id":"creature-31780","entityId":"entry-7332","position":[-88.2172,36.5192,-729.4767],"yaw":-3.1765,"spawnMask":1},{"id":"creature-31953","entityId":"entry-7327","position":[-80.5272,36.6106,-732.0577],"yaw":-4.3838,"spawnMask":1},{"id":"creature-31955","entityId":"entry-7335","position":[-78.0772,36.9309,-734.6987],"yaw":-2.56314,"spawnMask":1},{"id":"creature-31956","entityId":"entry-7332","position":[-92.5272,39.0905,-754.4027],"yaw":-5.55015,"spawnMask":1},{"id":"creature-31957","entityId":"entry-7332","position":[-108.5972,37.6471,-739.3367],"yaw":-0.942478,"spawnMask":1},{"id":"creature-31958","entityId":"entry-7333","position":[-107.3372,37.9471,-744.0467],"yaw":-4.28424,"spawnMask":1},{"id":"creature-31959","entityId":"entry-7333","position":[-106.5272,38.3926,-748.2997],"yaw":-4.35363,"spawnMask":1},{"id":"creature-31960","entityId":"entry-7333","position":[-104.1372,37.9232,-741.7017],"yaw":-0.226893,"spawnMask":1},{"id":"creature-31961","entityId":"entry-7333","position":[-110.6472,37.6168,-740.1127],"yaw":-1.88311,"spawnMask":1},{"id":"creature-31962","entityId":"entry-7329","position":[-57.3172,35.7797,-730.7197],"yaw":-0.241608,"spawnMask":1},{"id":"creature-31963","entityId":"entry-7328","position":[-54.9772,35.5433,-735.7367],"yaw":-6.10735,"spawnMask":1},{"id":"creature-31966","entityId":"entry-7329","position":[-40.6872,34.5905,-754.8167],"yaw":-1.64132,"spawnMask":1},{"id":"creature-31968","entityId":"entry-7327","position":[-92.2672,39.9993,-763.0257],"yaw":-4.00769,"spawnMask":1},{"id":"creature-31969","entityId":"entry-7335","position":[-84.9972,40.13,-758.6087],"yaw":-2.52156,"spawnMask":1},{"id":"creature-31972","entityId":"entry-7347","position":[-1.6272,33.1367,-632.0387],"yaw":-2.01005,"spawnMask":1},{"id":"creature-31974","entityId":"entry-7328","position":[-42.5372,33.4878,-766.2547],"yaw":-5.82781,"spawnMask":1},{"id":"creature-31975","entityId":"entry-7337","position":[-45.4072,34.2331,-761.5857],"yaw":-5.1856,"spawnMask":1},{"id":"creature-31976","entityId":"entry-7352","position":[0.8428,9.4497,-711.0777],"yaw":-4.44082,"spawnMask":1},{"id":"creature-31977","entityId":"entry-7344","position":[-0.3872,9.5344,-704.9357],"yaw":-2.49086,"spawnMask":1},{"id":"creature-31978","entityId":"entry-7329","position":[-57.0372,31.9133,-788.8117],"yaw":-1.27834,"spawnMask":1},{"id":"creature-31979","entityId":"entry-7328","position":[-63.8172,32.1902,-794.5177],"yaw":-5.02576,"spawnMask":1},{"id":"creature-32009","entityId":"entry-7337","position":[-32.9472,31.8433,-783.5137],"yaw":-4.10141,"spawnMask":1},{"id":"creature-33694","entityId":"entry-7337","position":[-19.1472,34.3882,-759.8097],"yaw":-5.07891,"spawnMask":1},{"id":"creature-39533","entityId":"entry-7329","position":[-28.7772,32.2719,-786.6177],"yaw":-0.894557,"spawnMask":1},{"id":"creature-42671","entityId":"entry-7329","position":[-13.7072,34.3865,-772.6867],"yaw":-5.84932,"spawnMask":1},{"id":"creature-42672","entityId":"entry-7329","position":[-16.0372,34.075,-767.3767],"yaw":-2.33214,"spawnMask":1},{"id":"creature-42673","entityId":"entry-7328","position":[-55.3772,33.4835,-822.0897],"yaw":-1.43083,"spawnMask":1},{"id":"creature-42674","entityId":"entry-7329","position":[-60.0472,33.6197,-822.1637],"yaw":-4.3058,"spawnMask":1},{"id":"creature-42675","entityId":"entry-7337","position":[-59.8072,33.6618,-816.8717],"yaw":-2.88717,"spawnMask":1},{"id":"creature-42677","entityId":"entry-7328","position":[-16.1472,34.2366,-763.8687],"yaw":-0.538688,"spawnMask":1},{"id":"creature-42682","entityId":"entry-7346","position":[23.5928,22.2649,-728.7067],"yaw":-4.31884,"spawnMask":1},{"id":"creature-42684","entityId":"entry-7344","position":[8.9228,9.4359,-713.6697],"yaw":-5.35144,"spawnMask":1},{"id":"creature-42687","entityId":"entry-7348","position":[8.2128,9.1091,-706.7717],"yaw":-2.87391,"spawnMask":1},{"id":"creature-42689","entityId":"entry-7352","position":[11.4528,12.3755,-786.8447],"yaw":-1.6057,"spawnMask":1},{"id":"creature-42690","entityId":"entry-7348","position":[11.3128,11.4793,-780.0917],"yaw":-0.488461,"spawnMask":1},{"id":"creature-42691","entityId":"entry-7344","position":[17.0928,11.7947,-779.9697],"yaw":-3.2304,"spawnMask":1},{"id":"creature-42692","entityId":"entry-7347","position":[30.1328,21.7984,-732.9927],"yaw":-4.30387,"spawnMask":1},{"id":"creature-42693","entityId":"entry-7347","position":[26.8728,21.4527,-722.9507],"yaw":-4.43857,"spawnMask":1},{"id":"creature-42694","entityId":"entry-7346","position":[32.6028,21.9082,-725.6657],"yaw":-3.88879,"spawnMask":1},{"id":"creature-42695","entityId":"entry-7352","position":[14.5028,14.1907,-809.4467],"yaw":-1.44223,"spawnMask":1},{"id":"creature-42696","entityId":"entry-7341","position":[16.5728,14.4378,-809.5167],"yaw":-1.41227,"spawnMask":1},{"id":"creature-42698","entityId":"entry-7344","position":[16.5128,12.511,-787.8367],"yaw":-4.53875,"spawnMask":1},{"id":"creature-42699","entityId":"entry-7329","position":[-39.6772,33.4977,-835.1227],"yaw":-3.9555,"spawnMask":1},{"id":"creature-42700","entityId":"entry-7328","position":[-22.2372,33.4977,-837.9357],"yaw":-5.02056,"spawnMask":1},{"id":"creature-42701","entityId":"entry-7329","position":[-70.5172,37.3837,-841.2397],"yaw":-4.33457,"spawnMask":1},{"id":"creature-42702","entityId":"entry-7337","position":[-65.2572,36.9343,-842.3567],"yaw":-1.71377,"spawnMask":1},{"id":"creature-42703","entityId":"entry-7352","position":[35.4628,20.8643,-762.3097],"yaw":-0.437342,"spawnMask":1},{"id":"creature-42704","entityId":"entry-7344","position":[42.9128,21.2838,-765.4827],"yaw":-2.16991,"spawnMask":1},{"id":"creature-42705","entityId":"entry-7344","position":[39.5928,21.2245,-758.2977],"yaw":-0.943392,"spawnMask":1},{"id":"creature-42706","entityId":"entry-7348","position":[43.6428,21.7019,-753.3377],"yaw":-2.56806,"spawnMask":1},{"id":"creature-42707","entityId":"entry-7344","position":[46.3228,22.06,-759.3837],"yaw":-1.37881,"spawnMask":1},{"id":"creature-42711","entityId":"entry-7329","position":[-20.9172,33.4144,-845.5117],"yaw":-6.09667,"spawnMask":1},{"id":"creature-42712","entityId":"entry-7329","position":[-23.5372,33.4144,-851.9847],"yaw":-0.56702,"spawnMask":1},{"id":"creature-42713","entityId":"entry-7337","position":[-26.5172,33.4977,-844.9527],"yaw":-5.96903,"spawnMask":1},{"id":"creature-42715","entityId":"entry-7352","position":[18.6928,15.1047,-813.7637],"yaw":-1.27455,"spawnMask":1},{"id":"creature-42716","entityId":"entry-7348","position":[16.5628,14.7562,-813.6217],"yaw":-1.27452,"spawnMask":1},{"id":"creature-42717","entityId":"entry-7329","position":[-58.2772,35.7276,-851.4467],"yaw":-5.88545,"spawnMask":1},{"id":"creature-42718","entityId":"entry-7328","position":[-66.0472,37.0343,-847.9667],"yaw":-6.01331,"spawnMask":1},{"id":"creature-42720","entityId":"entry-7347","position":[52.3528,33.8835,-721.4817],"yaw":-5.62966,"spawnMask":1},{"id":"creature-42721","entityId":"entry-7346","position":[48.6728,34.455,-716.0637],"yaw":-0.52512,"spawnMask":1},{"id":"creature-42722","entityId":"entry-7329","position":[-5.0872,30.1707,-868.8397],"yaw":-4.69989,"spawnMask":1},{"id":"creature-42723","entityId":"entry-7346","position":[77.0628,28.4411,-772.1867],"yaw":-5.3209,"spawnMask":1},{"id":"creature-42724","entityId":"entry-7346","position":[57.4328,34.6467,-714.6617],"yaw":-2.23633,"spawnMask":1},{"id":"creature-42725","entityId":"entry-7346","position":[76.8728,26.0533,-762.8167],"yaw":0,"spawnMask":1},{"id":"creature-42786","entityId":"entry-7337","position":[-4.4772,29.3937,-875.7317],"yaw":-2.07059,"spawnMask":1},{"id":"creature-42788","entityId":"entry-7329","position":[-14.2472,25.256,-912.4047],"yaw":-4.04916,"spawnMask":1},{"id":"creature-42789","entityId":"entry-7328","position":[-7.5272,27.3369,-903.3137],"yaw":-2.46071,"spawnMask":1},{"id":"creature-42790","entityId":"entry-7329","position":[-47.7072,31.6759,-903.2047],"yaw":-5.73285,"spawnMask":1},{"id":"creature-42791","entityId":"entry-7337","position":[-45.1472,31.879,-914.3937],"yaw":-2.0424,"spawnMask":1},{"id":"creature-42794","entityId":"entry-7328","position":[-53.4072,32.9453,-909.4027],"yaw":-6.19147,"spawnMask":1},{"id":"creature-44452","entityId":"entry-7329","position":[-5.0472,31.9211,-936.4987],"yaw":-1.61091,"spawnMask":1},{"id":"creature-44467","entityId":"entry-7328","position":[-0.3672,31.8378,-931.9337],"yaw":-4.26963,"spawnMask":1},{"id":"creature-45091","entityId":"entry-7337","position":[6.9628,31.8378,-936.6697],"yaw":-4.97067,"spawnMask":1},{"id":"creature-45538","entityId":"entry-7329","position":[-52.7972,39.6361,-949.7297],"yaw":-0.0245,"spawnMask":1},{"id":"creature-85583","entityId":"entry-7329","position":[13.8928,31.8307,-939.2767],"yaw":-5.77056,"spawnMask":1},{"id":"creature-87159","entityId":"entry-7328","position":[-64.1672,39.7086,-961.4997],"yaw":-2.56756,"spawnMask":1},{"id":"creature-87160","entityId":"entry-7337","position":[-62.6872,40.23,-953.8637],"yaw":-4.11696,"spawnMask":1},{"id":"creature-87172","entityId":"entry-7343","position":[-3.5672,39.6966,-1014.3917],"yaw":-3.83972,"spawnMask":1},{"id":"creature-87173","entityId":"entry-7343","position":[-10.9772,39.6055,-1037.3557],"yaw":-2.84489,"spawnMask":1},{"id":"creature-87174","entityId":"entry-7343","position":[-6.6272,40.2234,-1029.2647],"yaw":-3.19395,"spawnMask":1},{"id":"creature-87175","entityId":"entry-7343","position":[-3.8172,39.9025,-1020.9327],"yaw":-3.52556,"spawnMask":1},{"id":"creature-87177","entityId":"entry-7343","position":[7.5928,41.8405,-1036.0167],"yaw":-2.14675,"spawnMask":1},{"id":"creature-87178","entityId":"entry-7343","position":[-1.9472,40.398,-1042.8957],"yaw":-2.42601,"spawnMask":1},{"id":"creature-87179","entityId":"entry-7343","position":[-0.0872,40.4861,-1039.2957],"yaw":-2.53073,"spawnMask":1},{"id":"creature-87180","entityId":"entry-7343","position":[5.8328,40.5047,-1043.5457],"yaw":-2.14675,"spawnMask":1},{"id":"creature-87181","entityId":"entry-7343","position":[-4.5372,40.4118,-1035.6787],"yaw":-2.58309,"spawnMask":1},{"id":"creature-87182","entityId":"entry-7343","position":[2.7328,40.6678,-1034.5967],"yaw":-2.74017,"spawnMask":1},{"id":"creature-87183","entityId":"entry-7343","position":[1.3128,40.3504,-1049.5307],"yaw":-2.11185,"spawnMask":1},{"id":"creature-87184","entityId":"entry-7343","position":[2.2628,40.488,-1019.7187],"yaw":-3.82227,"spawnMask":1},{"id":"creature-87185","entityId":"entry-7343","position":[-2.3872,40.4967,-1032.0777],"yaw":-3.01942,"spawnMask":1},{"id":"creature-87186","entityId":"entry-7343","position":[4.0928,41.9564,-1029.8417],"yaw":-2.6529,"spawnMask":1},{"id":"creature-87187","entityId":"entry-7357","position":[14.9528,49.2058,-1029.0557],"yaw":-5.55015,"spawnMask":1},{"id":"creature-87188","entityId":"entry-7343","position":[-2.6072,40.1776,-1025.6497],"yaw":-3.31613,"spawnMask":1},{"id":"creature-87189","entityId":"entry-7343","position":[0.9128,41.1409,-1027.6087],"yaw":-3.29867,"spawnMask":1},{"id":"creature-87190","entityId":"entry-7343","position":[3.1528,41.7832,-1024.0347],"yaw":-3.63029,"spawnMask":1},{"id":"creature-87191","entityId":"entry-7343","position":[11.6428,40.5456,-1046.0877],"yaw":-1.64061,"spawnMask":1},{"id":"creature-87192","entityId":"entry-7343","position":[11.1628,41.2073,-1040.7347],"yaw":-1.72788,"spawnMask":1},{"id":"creature-87193","entityId":"entry-7343","position":[8.5428,40.3504,-1054.5347],"yaw":-1.74533,"spawnMask":1},{"id":"creature-87194","entityId":"entry-7343","position":[6.4128,40.3641,-1048.9587],"yaw":-1.90241,"spawnMask":1},{"id":"creature-87195","entityId":"entry-7343","position":[12.5728,40.4205,-1051.1837],"yaw":-1.5708,"spawnMask":1},{"id":"creature-87196","entityId":"entry-7348","position":[102.0728,14.8506,-798.4207],"yaw":-6.26162,"spawnMask":1},{"id":"creature-87197","entityId":"entry-7352","position":[106.0728,15.3678,-784.7927],"yaw":-2.26721,"spawnMask":1},{"id":"creature-87198","entityId":"entry-7344","position":[98.7028,15.2327,-789.8207],"yaw":-3.43725,"spawnMask":1},{"id":"creature-87199","entityId":"entry-7344","position":[106.8928,14.4823,-793.9857],"yaw":-5.33118,"spawnMask":1},{"id":"creature-87201","entityId":"entry-7345","position":[92.0928,27.2156,-771.4017],"yaw":-1.56939,"spawnMask":1},{"id":"creature-87202","entityId":"entry-7342","position":[85.7728,27.5669,-771.7627],"yaw":-2.5705,"spawnMask":1},{"id":"creature-87203","entityId":"entry-7346","position":[82.4628,28.9848,-766.2137],"yaw":-1.81994,"spawnMask":1},{"id":"creature-87204","entityId":"entry-7346","position":[89.0228,28.4956,-766.1207],"yaw":-5.2715,"spawnMask":1},{"id":"creature-87207","entityId":"entry-7343","position":[103.0928,14.5631,-792.0597],"yaw":-5.67051,"spawnMask":1},{"id":"creature-87208","entityId":"entry-7343","position":[103.2828,14.9449,-789.4807],"yaw":-5.81243,"spawnMask":1},{"id":"creature-87209","entityId":"entry-7358","position":[78.2028,40.8801,-739.5687],"yaw":-2.33874,"spawnMask":1},{"id":"creature-87212","entityId":"entry-7347","position":[43.1428,23.8721,-688.6687],"yaw":-3.60922,"spawnMask":1},{"id":"creature-87213","entityId":"entry-7342","position":[58.9528,35.0102,-706.5057],"yaw":-4.24915,"spawnMask":1},{"id":"creature-87215","entityId":"entry-7342","position":[70.7328,22.9028,-683.6087],"yaw":-4.52994,"spawnMask":1},{"id":"creature-87216","entityId":"entry-7346","position":[76.8528,23.468,-687.9387],"yaw":-5.0058,"spawnMask":1},{"id":"creature-87217","entityId":"entry-7347","position":[47.9928,23.1156,-687.0587],"yaw":-3.92188,"spawnMask":1},{"id":"creature-87218","entityId":"entry-7346","position":[48.3028,22.875,-681.3787],"yaw":-1.73413,"spawnMask":1},{"id":"creature-87219","entityId":"entry-7346","position":[53.2828,22.826,-683.6787],"yaw":-3.59712,"spawnMask":1},{"id":"creature-87220","entityId":"entry-7341","position":[34.6628,11.3552,-673.7287],"yaw":-3.33788,"spawnMask":1},{"id":"creature-87221","entityId":"entry-7344","position":[29.1128,10.6396,-671.5687],"yaw":-1.62255,"spawnMask":1},{"id":"creature-87222","entityId":"entry-7348","position":[39.2028,11.0618,-669.3187],"yaw":-0.052807,"spawnMask":1},{"id":"creature-87223","entityId":"entry-7348","position":[27.6428,10.4535,-663.8187],"yaw":-5.48754,"spawnMask":1},{"id":"creature-87224","entityId":"entry-7344","position":[33.9428,10.3814,-664.4487],"yaw":-2.7683,"spawnMask":1},{"id":"creature-87228","entityId":"entry-7347","position":[83.3028,23.1909,-683.2087],"yaw":-3.09463,"spawnMask":1},{"id":"creature-87229","entityId":"entry-7345","position":[102.9428,40.7889,-719.2797],"yaw":-4.62224,"spawnMask":1},{"id":"creature-87230","entityId":"entry-7346","position":[93.7728,39.4689,-704.8027],"yaw":-0.837758,"spawnMask":1},{"id":"creature-87231","entityId":"entry-7346","position":[101.0228,39.609,-705.8447],"yaw":-1.3179,"spawnMask":1},{"id":"creature-87232","entityId":"entry-7346","position":[96.5928,39.8324,-711.0607],"yaw":-0.407338,"spawnMask":1},{"id":"creature-87233","entityId":"entry-7346","position":[97.5928,40.8474,-716.9777],"yaw":-1.73634,"spawnMask":1},{"id":"creature-87235","entityId":"entry-7346","position":[74.3128,23.3698,-675.5987],"yaw":-1.21404,"spawnMask":1},{"id":"creature-87237","entityId":"entry-7347","position":[10.5928,34.0783,-644.5587],"yaw":-2.04848,"spawnMask":1},{"id":"creature-87238","entityId":"entry-7353","position":[7.5928,34.0783,-641.5587],"yaw":-1.13317,"spawnMask":1},{"id":"creature-87239","entityId":"entry-7346","position":[16.0528,33.882,-643.2087],"yaw":-4.13079,"spawnMask":1},{"id":"creature-87240","entityId":"entry-7346","position":[12.8328,33.532,-638.1587],"yaw":-4.03171,"spawnMask":1},{"id":"creature-87241","entityId":"entry-7344","position":[68.5328,23.614,-674.6287],"yaw":-4.18879,"spawnMask":1},{"id":"creature-87242","entityId":"entry-8567","position":[12.8628,9.4937,-693.6687],"yaw":-6.11095,"spawnMask":1},{"id":"creature-87243","entityId":"entry-7342","position":[103.8628,40.2547,-711.6737],"yaw":-0.833919,"spawnMask":1},{"id":"creature-87244","entityId":"entry-7347","position":[-3.9372,33.3533,-622.1487],"yaw":-0.039764,"spawnMask":1},{"id":"creature-87245","entityId":"entry-7346","position":[3.1028,33.4355,-623.2487],"yaw":-4.61104,"spawnMask":1},{"id":"creature-87246","entityId":"entry-7346","position":[12.1328,33.5572,-626.6187],"yaw":-5.67638,"spawnMask":1},{"id":"creature-87247","entityId":"entry-7353","position":[6.5228,33.4102,-627.3487],"yaw":-5.15106,"spawnMask":1},{"id":"creature-87248","entityId":"entry-7346","position":[6.4728,33.4578,-620.7587],"yaw":-0.473428,"spawnMask":1},{"id":"creature-87250","entityId":"entry-7347","position":[84.2728,17.2551,-607.5787],"yaw":-2.62714,"spawnMask":1},{"id":"creature-87251","entityId":"entry-7346","position":[81.6028,17.2551,-613.2887],"yaw":-5.9572,"spawnMask":1},{"id":"creature-87253","entityId":"entry-7346","position":[75.5928,17.3384,-609.2587],"yaw":-0.418879,"spawnMask":1},{"id":"creature-87254","entityId":"entry-7346","position":[80.3928,17.2551,-602.1687],"yaw":-2.49671,"spawnMask":1},{"id":"creature-87255","entityId":"entry-7342","position":[119.6228,24.6372,-720.5067],"yaw":-5.19039,"spawnMask":1},{"id":"creature-87256","entityId":"entry-7347","position":[123.6928,24.7438,-713.4327],"yaw":-2.52523,"spawnMask":1},{"id":"creature-87258","entityId":"entry-7352","position":[125.9228,11.2542,-676.8587],"yaw":-3.41611,"spawnMask":1},{"id":"creature-87259","entityId":"entry-7344","position":[137.1228,11.2659,-673.9587],"yaw":-0.956109,"spawnMask":1},{"id":"creature-87260","entityId":"entry-7348","position":[132.4128,11.044,-678.8787],"yaw":-3.54302,"spawnMask":1},{"id":"creature-87261","entityId":"entry-7344","position":[134.0628,11.3766,-684.3987],"yaw":-0.769891,"spawnMask":1},{"id":"creature-87264","entityId":"entry-7353","position":[84.2328,17.3384,-598.1287],"yaw":-6.2712,"spawnMask":1},{"id":"creature-87265","entityId":"entry-7347","position":[117.2228,27.7487,-754.9597],"yaw":-6.07286,"spawnMask":1},{"id":"creature-87266","entityId":"entry-7347","position":[117.8028,27.1777,-749.9887],"yaw":-1.71042,"spawnMask":1},{"id":"creature-87267","entityId":"entry-7346","position":[126.2228,27.589,-747.9807],"yaw":-4.45059,"spawnMask":1},{"id":"creature-87268","entityId":"entry-7344","position":[162.7728,12.3908,-724.9147],"yaw":-5.61897,"spawnMask":1},{"id":"creature-87269","entityId":"entry-7348","position":[158.7328,12.3909,-731.5407],"yaw":-4.58991,"spawnMask":1},{"id":"creature-87270","entityId":"entry-7344","position":[153.7428,12.6114,-726.3117],"yaw":-3.83972,"spawnMask":1},{"id":"creature-87271","entityId":"entry-7346","position":[131.7028,26.8027,-729.2607],"yaw":-4.2586,"spawnMask":1},{"id":"creature-87272","entityId":"entry-7346","position":[131.7828,25.6356,-721.8927],"yaw":-1.10869,"spawnMask":1},{"id":"creature-87276","entityId":"entry-7344","position":[144.1628,14.0415,-775.2877],"yaw":-3.87935,"spawnMask":1},{"id":"creature-87277","entityId":"entry-7348","position":[139.0828,13.7218,-769.7417],"yaw":-2.31183,"spawnMask":1},{"id":"creature-87278","entityId":"entry-7346","position":[122.6828,27.8127,-754.2227],"yaw":-4.32424,"spawnMask":1},{"id":"creature-87279","entityId":"entry-7341","position":[154.2128,12.4296,-738.3667],"yaw":-3.50811,"spawnMask":1},{"id":"creature-87280","entityId":"entry-7344","position":[162.0228,12.5508,-736.2677],"yaw":-0.220178,"spawnMask":1},{"id":"creature-87281","entityId":"entry-7341","position":[132.8928,14.1888,-765.7997],"yaw":-4.76254,"spawnMask":1},{"id":"creature-87282","entityId":"entry-7344","position":[144.3128,13.58,-766.4227],"yaw":-2.89744,"spawnMask":1},{"id":"creature-247108","entityId":"entry-7354","position":[116.8228,14.5035,-795.9747],"yaw":-0.304753,"spawnMask":1},{"id":"creature-248650","entityId":"entry-14686","position":[-101.6072,42.5397,-1004.6377],"yaw":-1.8675,"spawnMask":1},{"id":"encounter-434","entityId":"entry-7355","position":[-67.5724,37.0804,-237.0766],"yaw":0,"spawnMask":1},{"id":"encounter-2618","entityId":"entry-7356","position":[-55.7744,12.7264,-69.8097],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-28777","name":"Withered Spearhide Patrol","speed":1.15,"pathId":287770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-105.4472,36.2272,-667.3187],[-114.9072,39.4316,-649.1087],[-115.4972,41.0643,-626.0087],[-114.9072,39.4316,-649.1087]],"members":[{"id":"member","entityId":"entry-7332","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-31980","name":"Battle Boar Horror Patrol","speed":1.15,"pathId":319800,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-64.8372,33.4331,-814.6627],[-65.6772,32.666,-796.8107],[-36.5672,32.5565,-773.2527],[-58.5972,36.2973,-725.5167],[-72.1972,36.1855,-727.4387],[-90.8572,36.1855,-743.4207],[-72.1972,36.1855,-727.4387],[-58.5972,36.2973,-725.5167],[-36.5672,32.5565,-773.2527],[-65.6772,32.666,-796.8107]],"members":[{"id":"member","entityId":"entry-7334","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42678","name":"Frozen Soul Patrol","speed":1.15,"pathId":426780,"formationSource":"database-solo","spawnMask":1,"waypoints":[[3.1028,9.0071,-760.2807],[1.7228,9.218,-728.0517],[24.7228,10.5793,-677.7687],[1.7228,9.218,-728.0517]],"members":[{"id":"member","entityId":"entry-7352","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42681","name":"Skeletal Frostweaver Patrol","speed":1.15,"pathId":426810,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1.4628,9.1496,-761.0927],[-0.2172,9.4353,-726.8447],[21.5528,10.3553,-676.0687],[-0.2172,9.4353,-726.8447]],"members":[{"id":"member","entityId":"entry-7341","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42709","name":"Splinterbone Skeleton Patrol","speed":1.15,"pathId":427090,"formationSource":"database-solo","spawnMask":1,"waypoints":[[18.2028,10.0682,-685.4487],[47.0828,9.9924,-659.2387],[115.8628,10.9819,-660.1587],[159.4928,12.2438,-727.4797],[128.4928,14.2459,-775.0717],[159.4928,12.2438,-727.4797],[115.8628,10.9819,-660.1587],[47.0828,9.9924,-659.2387]],"members":[{"id":"member","entityId":"entry-7343","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42710","name":"Splinterbone Skeleton Patrol","speed":1.15,"pathId":427100,"formationSource":"database-solo","spawnMask":1,"waypoints":[[16.6428,10.0943,-683.8087],[45.0228,10.0501,-657.0587],[118.9228,11.0948,-658.7787],[161.4628,12.3036,-726.7467],[130.1828,14.0166,-777.9087],[161.4628,12.3036,-726.7467],[118.9228,11.0948,-658.7787],[45.0228,10.0501,-657.0587]],"members":[{"id":"member","entityId":"entry-7343","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42787","name":"Battle Boar Horror Patrol","speed":1.15,"pathId":427870,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-48.6172,31.2526,-897.0677],[-28.1972,27.623,-905.9307],[-16.5972,25.1727,-911.8897],[-6.7472,28.7726,-897.7167],[-7.3172,29.8033,-869.3907],[-6.7472,28.7726,-897.7167],[-16.5972,25.1727,-911.8897],[-39.4372,25.9651,-963.5897],[-16.5972,25.1727,-911.8897],[-28.1972,27.623,-905.9307]],"members":[{"id":"member","entityId":"entry-7334","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87205","name":"Boneflayer Ghoul Patrol","speed":1.15,"pathId":872050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[89.2728,39.2248,-703.8057],[53.5728,34.9712,-706.4457],[53.2728,32.1058,-735.2777],[63.9528,30.0619,-770.8587],[93.1028,27.2123,-771.3637],[63.9528,30.0619,-770.8587],[53.2728,32.1058,-735.2777],[53.5728,34.9712,-706.4457]],"members":[{"id":"member","entityId":"entry-7347","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87206","name":"Freezing Spirit Patrol","speed":1.15,"pathId":872060,"formationSource":"database-solo","spawnMask":1,"waypoints":[[89.1128,38.9,-707.0407],[55.9628,34.9867,-708.1037],[55.5528,32.2215,-735.1287],[64.0428,29.7951,-768.2927],[96.6128,27.1753,-769.8077],[64.0428,29.7951,-768.2927],[55.5528,32.2215,-735.1287],[55.9628,34.9867,-708.1037]],"members":[{"id":"member","entityId":"entry-7353","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87210","name":"Splinterbone Skeleton Patrol","speed":1.15,"pathId":872100,"formationSource":"database-solo","spawnMask":1,"waypoints":[[36.0628,21.4888,-746.0087],[28.1628,21.5378,-715.1747],[33.5328,24.4778,-696.2487],[60.3828,22.8434,-678.4287],[102.4428,23.4186,-684.9887],[60.3828,22.8434,-678.4287],[33.5328,24.4778,-696.2487],[28.1628,21.5378,-715.1747]],"members":[{"id":"member","entityId":"entry-7343","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87211","name":"Splinterbone Skeleton Patrol","speed":1.15,"pathId":872110,"formationSource":"database-solo","spawnMask":1,"waypoints":[[38.3828,21.6489,-746.4057],[31.8328,22.27,-714.7507],[36.8628,24.4794,-696.6787],[59.8628,22.4432,-681.1487],[102.0128,23.9582,-688.4287],[59.8628,22.4432,-681.1487],[36.8628,24.4794,-696.6787],[31.8328,22.27,-714.7507]],"members":[{"id":"member","entityId":"entry-7343","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87226","name":"Skeletal Frostweaver Patrol","speed":1.15,"pathId":872260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[19.2028,10.2288,-680.5087],[50.7928,10.1144,-658.3787],[110.8528,10.967,-658.6487],[142.1428,11.3505,-692.7487],[110.8528,10.967,-658.6487],[50.7928,10.1144,-658.3787]],"members":[{"id":"member","entityId":"entry-7341","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-87227","name":"Thorn Eater Ghoul Patrol","speed":1.15,"pathId":872270,"formationSource":"database-solo","spawnMask":1,"waypoints":[[20.6828,10.276,-681.6187],[51.6928,10.5493,-660.0387],[108.9628,10.8411,-660.7387],[139.7828,11.6422,-693.8787],[108.9628,10.8411,-660.7387],[51.6928,10.5493,-660.0387]],"members":[{"id":"member","entityId":"entry-7348","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"encounter-434","name":"Tuten'kash","position":[-67.5724,37.0804,-237.0766]},{"id":"creature-87187","name":"Mordresh Fire Eye","position":[14.9528,49.2058,-1029.0557]},{"id":"creature-87242","name":"Glutton","position":[12.8628,9.4937,-693.6687]},{"id":"creature-87209","name":"Amnennar the Coldbringer","position":[78.2028,40.8801,-739.5687]},{"id":"creature-247108","name":"Ragglesnout","position":[116.8228,14.5035,-795.9747]},{"id":"encounter-2618","name":"Plaguemaw the Rotting","position":[-55.7744,12.7264,-69.8097]}],"objectiveOrder":[{"id":"encounter-434","name":"Tuten'kash","position":[-67.5724,37.0804,-237.0766]},{"id":"creature-87187","name":"Mordresh Fire Eye","position":[14.9528,49.2058,-1029.0557]},{"id":"creature-87242","name":"Glutton","position":[12.8628,9.4937,-693.6687]},{"id":"creature-87209","name":"Amnennar the Coldbringer","position":[78.2028,40.8801,-739.5687]},{"id":"creature-247108","name":"Ragglesnout","position":[116.8228,14.5035,-795.9747]},{"id":"encounter-2618","name":"Plaguemaw the Rotting","position":[-55.7744,12.7264,-69.8097]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32020,"id":157820,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2561.65,"position_y":692.778,"position_z":55.132,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32021,"id":157816,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2586.09,"position_y":765.225,"position_z":55.132,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32022,"id":157817,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2605.48,"position_y":726.652,"position_z":55.132,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32023,"id":157818,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2600.1,"position_y":709.109,"position_z":55.132,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32024,"id":157819,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2581.85,"position_y":698.974,"position_z":55.132,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32025,"id":148850,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2563.35,"position_y":1000.16,"position_z":61.1681,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32027,"id":151952,"map":129,"orientation":2.49582,"phaseMask":1,"position_x":2590.95,"position_y":944.905,"position_z":63.5354,"rotation0":0,"rotation1":0,"rotation2":0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32028,"id":142141,"map":129,"orientation":-2.32129,"phaseMask":1,"position_x":2479.97,"position_y":1006.34,"position_z":24.0507,"rotation0":0,"rotation1":0,"rotation2":-0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32029,"id":151951,"map":129,"orientation":0.087266,"phaseMask":1,"position_x":2586.83,"position_y":937.335,"position_z":54.6307,"rotation0":0,"rotation1":0,"rotation2":0.0436192,"rotation3":0.999048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32030,"id":151952,"map":129,"orientation":2.49582,"phaseMask":1,"position_x":2579.3,"position_y":933.342,"position_z":63.8774,"rotation0":0,"rotation1":0,"rotation2":0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32031,"id":151973,"map":129,"orientation":1.51844,"phaseMask":1,"position_x":2582.49,"position_y":941.554,"position_z":64.2574,"rotation0":0,"rotation1":0,"rotation2":0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32032,"id":75300,"map":129,"orientation":-2.05949,"phaseMask":1,"position_x":2502.75,"position_y":944.867,"position_z":49.1772,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32033,"id":148858,"map":129,"orientation":0.200711,"phaseMask":1,"position_x":2516.57,"position_y":881.267,"position_z":61.1051,"rotation0":0,"rotation1":0,"rotation2":0.100187,"rotation3":0.994969,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32035,"id":148847,"map":129,"orientation":3.14123,"phaseMask":1,"position_x":2459.19,"position_y":956.073,"position_z":35.414,"rotation0":-0.00516891,"rotation1":-0.0355492,"rotation2":0.999354,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32037,"id":148849,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2455.71,"position_y":925.767,"position_z":48.1272,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32039,"id":148848,"map":129,"orientation":3.03737,"phaseMask":1,"position_x":2529.56,"position_y":858.371,"position_z":48.5066,"rotation0":-0.240603,"rotation1":-0.0028944,"rotation2":0.969493,"rotation3":0.0467477,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32041,"id":148861,"map":129,"orientation":3.11178,"phaseMask":1,"position_x":2544.21,"position_y":865.916,"position_z":49.7136,"rotation0":-0.211318,"rotation1":0.0472574,"rotation2":0.975976,"rotation3":0.0241267,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32043,"id":148860,"map":129,"orientation":3.14676,"phaseMask":1,"position_x":2543.59,"position_y":850.734,"position_z":51.312,"rotation0":0.0219378,"rotation1":-0.00812531,"rotation2":-0.999723,"rotation3":0.00240451,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":32045,"id":148917,"map":129,"orientation":2.68781,"phaseMask":1,"position_x":2552.44,"position_y":856.984,"position_z":51.495,"rotation0":0,"rotation1":0,"rotation2":0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32046,"id":148846,"map":129,"orientation":2.73447,"phaseMask":1,"position_x":2439.51,"position_y":996.783,"position_z":49.2134,"rotation0":0.00810099,"rotation1":0.107634,"rotation2":0.97333,"rotation3":0.202433,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32048,"id":40198,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2409.97,"position_y":954.724,"position_z":54.7089,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32050,"id":2046,"map":129,"orientation":-0.663225,"phaseMask":1,"position_x":2413.38,"position_y":939.964,"position_z":45.2382,"rotation0":0,"rotation1":0,"rotation2":-0.325568,"rotation3":0.945519,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32051,"id":1628,"map":129,"orientation":-0.20944,"phaseMask":1,"position_x":2422,"position_y":982.551,"position_z":48.5452,"rotation0":0,"rotation1":0,"rotation2":-0.104529,"rotation3":0.994522,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32052,"id":142141,"map":129,"orientation":3.05433,"phaseMask":1,"position_x":2536.55,"position_y":736.053,"position_z":53.7239,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32053,"id":1628,"map":129,"orientation":1.3439,"phaseMask":1,"position_x":2599.42,"position_y":701.18,"position_z":55.4969,"rotation0":0,"rotation1":0,"rotation2":0.622513,"rotation3":0.782609,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32054,"id":2046,"map":129,"orientation":-0.645772,"phaseMask":1,"position_x":2582.36,"position_y":693.47,"position_z":56.6378,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32055,"id":1628,"map":129,"orientation":0.314159,"phaseMask":1,"position_x":2501.06,"position_y":666.093,"position_z":53.2512,"rotation0":0,"rotation1":0,"rotation2":0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32056,"id":148859,"map":129,"orientation":4.26339,"phaseMask":1,"position_x":2499.28,"position_y":667.883,"position_z":54.6696,"rotation0":0.0830717,"rotation1":-0.074296,"rotation2":-0.843264,"rotation3":0.525819,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":32058,"id":148864,"map":129,"orientation":4.26339,"phaseMask":1,"position_x":2455.52,"position_y":698.852,"position_z":55.8303,"rotation0":0.0830717,"rotation1":-0.074296,"rotation2":-0.843264,"rotation3":0.525819,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32060,"id":1628,"map":129,"orientation":0.349066,"phaseMask":1,"position_x":2459.58,"position_y":673.032,"position_z":63.7238,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32061,"id":148862,"map":129,"orientation":4.26339,"phaseMask":1,"position_x":2459.83,"position_y":641.64,"position_z":55.662,"rotation0":0.0830717,"rotation1":-0.074296,"rotation2":-0.843264,"rotation3":0.525819,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":32063,"id":148863,"map":129,"orientation":4.26339,"phaseMask":1,"position_x":2433.28,"position_y":653.952,"position_z":55.7454,"rotation0":0.0830717,"rotation1":-0.074296,"rotation2":-0.843264,"rotation3":0.525819,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":32065,"id":40199,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2394.63,"position_y":886.028,"position_z":55.4499,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35667,"id":40200,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2399.8,"position_y":893.103,"position_z":39.144,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35669,"id":142141,"map":129,"orientation":-2.3911,"phaseMask":1,"position_x":2423.88,"position_y":1027.32,"position_z":38.2242,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35670,"id":148843,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2436.99,"position_y":1058.62,"position_z":59.6726,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35672,"id":148844,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2427.53,"position_y":1051.77,"position_z":40.9434,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35674,"id":148845,"map":129,"orientation":3.13545,"phaseMask":1,"position_x":2416.99,"position_y":1032.8,"position_z":39.0779,"rotation0":-0.0242677,"rotation1":-0.0794239,"rotation2":0.996545,"rotation3":0.00114512,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35676,"id":148857,"map":129,"orientation":2.53945,"phaseMask":1,"position_x":2312.43,"position_y":989.682,"position_z":58.8116,"rotation0":0,"rotation1":0,"rotation2":0.955019,"rotation3":0.296545,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35678,"id":40201,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2361.76,"position_y":965.172,"position_z":39.826,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35680,"id":148856,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2323.65,"position_y":1008.87,"position_z":51.9277,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35682,"id":75300,"map":129,"orientation":1.309,"phaseMask":1,"position_x":2358.62,"position_y":966.718,"position_z":40.2895,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35683,"id":148851,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2358.82,"position_y":903.675,"position_z":28.7906,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35685,"id":148853,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2341.9,"position_y":902.615,"position_z":54.8697,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35687,"id":148854,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2328.16,"position_y":922.935,"position_z":51.7426,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35689,"id":148855,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2325.3,"position_y":908.668,"position_z":58.5663,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35691,"id":148852,"map":129,"orientation":3.14159,"phaseMask":1,"position_x":2360.86,"position_y":889.033,"position_z":60.6865,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/RazorfenDowns":"3ccc15717f5d3619c0d06ffa983b1bbd41f108e9c9c91636f48bf9832915dd93","patch/World/maps/RazorfenDowns":"c54479d549d6d9c47d12735096f8d9ea6777346538c2ad79f0c1e053db240421"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/razorfen-downs/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["25/25 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"scarlet-monastery","title":"Scarlet Monastery","mapId":189,"lfgDungeonIds":[18,163,164,165],"expansion":"classic","environmentMode":"adt-hybrid","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[26,45]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Scarlet Monastery","theme":"Open-world expedition","summary":"Fight through Scarlet Monastery, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Scarlet Monastery...","unchartedAreaName":"Uncharted Scarlet Monastery","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1489.2278},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/189-monasteryinstances/visual.glb","checksum":"5a74f8355d4060259befe4310ca56912e53e906ab9c04dc255ad337a022d5355","size":20257948,"triangleCount":2584921}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-000.glb","checksum":"d0c3299ea5ded62a251b68e83451d02aecbbc85e87b6180344d21d6ef1d15fe2","size":113760,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-001.glb","checksum":"343b0a65ed770b9617f265398bce94b52e51f47c0be65e12961b52e42bedaaf0","size":113404,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-002.glb","checksum":"70e2e9ba7f5933c35bf5fc2252b4040ad531ddcc0d88ac018dce893cff562923","size":113224,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-003.glb","checksum":"297e8c08db94a1d4e3bbffb973e90b3bd9a4aa3b21ae50a74bae463b6a2f9239","size":113564,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-004.glb","checksum":"07d51b7eba9b44d44531b82c12974da9a21f75c5a3f5a9c969831ab470f54974","size":113400,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-005.glb","checksum":"9fd3f2e4638570b4000a59a2038eed768e523f75ee86bcf2e2d436bb07ac98dd","size":113752,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-006.glb","checksum":"a0db3bd31e9206e8f38c3ac8b26bec6d8414ad2abdc0fbddbe0fbf5309cd41c5","size":113584,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-007.glb","checksum":"af616578ecb2b82ca4ba4a65656f10ad2d0035fcbb1b9c9912e87dd91c8971f3","size":111572,"triangleCount":64512},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-008.glb","checksum":"015b037edb5b874fe37dace7ccc300170c2c91f7d255dee9e28598691c0f9b2a","size":752008,"triangleCount":58367},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-009.glb","checksum":"6f3d6f165bece112f8ec37bc9941f0f70dceb0c9a710d707f8e438bf75a1f8e0","size":113048,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-010.glb","checksum":"956d7f3690cc8f637a048a22cf519c13f2bb20a9342e9c21b89b75abdb7c252b","size":717348,"triangleCount":54646},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-011.glb","checksum":"cbe22e3fd08de619c69e4b07a25fc17255e18f0c11b1504db60fff463c0c7f6f","size":113152,"triangleCount":65280},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-012.glb","checksum":"2db39239150831e5332107a16d1d48c7d1de542595af91efdca6aa61ec83b691","size":113224,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-013.glb","checksum":"9d0977cec5676e7c056fea4ae6f744c6e4af84fa2ef60a9d97570f4c81e43cd1","size":113576,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-014.glb","checksum":"d82b7e84a1cd82060b1d689e07731170724fed1236f7c8f78275cad4f100750b","size":113380,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-015.glb","checksum":"cd60ba21373412aa70a3add5b2289f349b5e915049f0c19b29f04c5e1f563912","size":113384,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-016.glb","checksum":"37c2be520b7f3cb894141e0ad2ddb2669144316d8b727c8145be37ffefdbe12b","size":112424,"triangleCount":65136},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-017.glb","checksum":"3f4a78baf88fa234f4c1c19836ee2df6e3b9830d234201a01f6ab51837670799","size":113692,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-018.glb","checksum":"3f54e39288b3c987f8b2ef395257894bb61ce0c17d52f34a9a3db797d6e17196","size":113380,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-019.glb","checksum":"58958d8c718846285d68dc69373e94d2e07cdce19408d386f656f794cc00ea6e","size":113596,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-020.glb","checksum":"fd6ff2618c2181c0c15847394831bcd0812fae6a50f20a993f49f1f5dac57d2d","size":113632,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-021.glb","checksum":"f7ff4cd70711b3a9168339f48793f6f5241cebfa4398bcc88120c757003f231a","size":113228,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-022.glb","checksum":"4b4cd8a206f546dd5d75188f0bec5ab99ef3e71cc4839b24e50eb3c5ab21cdbe","size":113048,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-023.glb","checksum":"702ccb99de34b593ebd7f4beafc29b6ea694cfd3da883d0e3f0230a2ed23d607","size":113692,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-024.glb","checksum":"d1c5ebd7592e4aae7fb18716b64d518b41a2bc97f0c2f1135f60373e4233e345","size":113440,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-025.glb","checksum":"1a66ca04f6b73699de6456454f981444f4c271f18d641c1244cbf05c49e3c17b","size":113624,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-026.glb","checksum":"693b64a5d3bb2bc2c312d75894a8f474ba11e514b8fce05e4a133d92a77213c5","size":113948,"triangleCount":65536},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-027.glb","checksum":"ab9414b99167b44708db8842fc587fc9bf15559e3e69303d6e5af45c84fb80ea","size":113452,"triangleCount":65536},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-028.glb","checksum":"ade13d4e9921a2265c996a60d8117242cf13028a1c836b9c92f2a4f366df22a2","size":607272,"triangleCount":50259},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-029.glb","checksum":"5a33702d71847f7301a17a4ee4d9838ad7ab98580f9f6e46d8fee36399f7fc5f","size":113272,"triangleCount":65536},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-030.glb","checksum":"5befa71c228d06efe93b91fee2765de405a16213cfc421478a9763236d22cac7","size":113692,"triangleCount":65536},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-031.glb","checksum":"17a331ffad0dbc1b6f871e1995628cea2b4a61641e0ead361884733cb776dcdc","size":113616,"triangleCount":65536},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-032.glb","checksum":"cf3e36b973bfeb8b27c386480b42b6f84c1c3f2c38d92962bd6d6068d9f683c2","size":820352,"triangleCount":64033},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-033.glb","checksum":"3e4b45f13ea5013d0486681e220409c1d45cb657b9af8626c04f0fad3b4d56f9","size":114132,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-034.glb","checksum":"2233e71eaee5e04e637abc79300efb4d8ec58b24bb00f0d1da122be3d27727e0","size":113872,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-035.glb","checksum":"f7f4a3397079fd312e83dca9004859bf5c9ec7ad0468a5b72e2598f9ad03eb57","size":113516,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-036.glb","checksum":"79ca9fac6df5610e58bd13389ab8df66fd6e2b6ab1f59b319817575cc8b54266","size":113336,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-037.glb","checksum":"1f36edbe85ac9a8f28daccdaf413a5140c541f84965bc3ab9264d430411edf46","size":113564,"triangleCount":65536},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-038.glb","checksum":"dc8fccaced3cb5ec4acff45cd3a185a6c86d9d050596e715311d01592880129e","size":113512,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/189-monasteryinstances/collision-039.glb","checksum":"d579d98aee7236b15dedc024163b7a680a855230545e6796fbba026adb70a3e8","size":113864,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/189-monasteryinstances/navigation.glb","checksum":"3ad09ecfdf9c51117f3257586e16b4fd97e71cefc40e02d147bd2e3976d16a0f","size":267376,"triangleCount":25804}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[842.9527,-27.7777,-834.5853],"max":[2840.6557,52.7508,1233.7867]},"entrance":{"name":"Scarlet Monastery Entrance","footPosition":[1297.1327,18.8171,779.4667],"forward":[0.3427831851216407,0,0.9394145453408006],"yaw":0.34987798263675796},"areas":[{"id":"entrance","name":"Scarlet Monastery Entrance","center":[1297.1327,18.8171,779.4667],"radius":35},{"id":"area-bloodmage-thalnos","name":"Bloodmage Thalnos's Encounter","center":[933.9027,-7.7777,910.8167],"radius":42},{"id":"area-houndmaster-loksey","name":"Houndmaster Loksey's Encounter","center":[2611.4817,18.7695,-789.5853],"radius":42},{"id":"area-arcanist-doan","name":"Arcanist Doan's Encounter","center":[2779.3047,18.626,-761.2033],"radius":42},{"id":"area-herod","name":"Herod's Encounter","center":[2782.2197,6.4004,1055.5667],"radius":42},{"id":"area-high-inquisitor-whitemane","name":"High Inquisitor Whitemane's Encounter","center":[951.5427,29.2327,292.6067],"radius":42}],"entities":{"entry-6489":{"id":"entry-6489","kind":"mob","name":"Ironspine","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/707138afbd77ec1a940d662fc32222f045bec0e87e0ab7ce83c282a9804ec065.glb","rotationY":-1.5707963267948966,"groundOffset":0.0027,"labelHeight":2.8408,"markerRadius":0.65}}},"entry-4306":{"id":"entry-4306","kind":"mob","name":"Scarlet Torturer","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9276","name":"Immolate","spellId":9276,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7432,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2607-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4283":{"id":"entry-4283","kind":"mob","name":"Scarlet Sentry","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2520-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3983":{"id":"entry-3983","kind":"mob","name":"Interrogator Vishas","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"crocolisk","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2044-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-6547":{"id":"entry-6547","kind":"mob","name":"Suffering Victim","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-1027-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-3981":{"id":"entry-3981","kind":"mob","name":"Vorrel Sengutz","combat":{"level":8,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2046-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-4308":{"id":"entry-4308","kind":"mob","name":"Unfettered Spirit","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-5430-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2488,"labelHeight":2.6366,"markerRadius":0.9526}}},"entry-6426":{"id":"entry-6426","kind":"mob","name":"Anguished Dead","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-10255-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.8066,"markerRadius":0.65}}},"entry-6427":{"id":"entry-6427","kind":"mob","name":"Haunting Phantasm","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8278","name":"Invisibility Detection","spellId":8278,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6325,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c55728c00da7742391fcf25802b59d661f313cdc864a9cdc4036d3a240cbbf5b.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.2201,"markerRadius":0.65}}},"entry-6488":{"id":"entry-6488","kind":"mob","name":"Fallen Champion","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-19644","name":"Strike","spellId":19644,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7483,"damageMultiplier":1.12},{"id":"spell-21949","name":"Rend","spellId":21949,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7483,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-5230-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-4543":{"id":"entry-4543","kind":"boss","name":"Bloodmage Thalnos","title":"Dungeon Boss","hasLoot":true,"combat":{"level":32,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12470","name":"Fire Nova","spellId":12470,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5251,"damageMultiplier":0.82,"radius":11},{"id":"spell-8053","name":"Flame Shock","spellId":8053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5251,"damageMultiplier":1.35},{"id":"spell-8814","name":"Flamestrike","spellId":8814,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5251,"damageMultiplier":1.35},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5251,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-11396-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0039,"labelHeight":3.3228,"markerRadius":0.65}}},"entry-4295":{"id":"entry-4295","kind":"mob","name":"Scarlet Myrmidon","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1700,"damageMultiplier":1},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6177,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2514-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3977":{"id":"entry-3977","kind":"boss","name":"High Inquisitor Whitemane","title":"Dungeon Boss","hasLoot":true,"combat":{"level":40,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22187","name":"Power Word: Shield","spellId":22187,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":7241,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-22187","durationMs":12000,"magnitude":0.25}},{"id":"spell-9481","name":"Holy Smite","spellId":9481,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7241,"damageMultiplier":1.35},{"id":"spell-9256","name":"Deep Sleep","spellId":9256,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":7241,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":4500}},{"id":"spell-12039","name":"Heal","spellId":12039,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":7241,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2043-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7721,"markerRadius":0.65}}},"entry-4294":{"id":"entry-4294","kind":"mob","name":"Scarlet Sorcerer","combat":{"level":38,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8364","name":"Blizzard","spellId":8364,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6118,"damageMultiplier":0.62,"radius":8},{"id":"spell-6146","name":"Slow","spellId":6146,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6118,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2524-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4298":{"id":"entry-4298","kind":"mob","name":"Scarlet Defender","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":7036,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7036,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2462-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4301":{"id":"entry-4301","kind":"mob","name":"Scarlet Centurion","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31403","name":"Battle Shout","spellId":31403,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4797,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2499-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4300":{"id":"entry-4300","kind":"mob","name":"Scarlet Wizard","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8439","name":"Arcane Explosion","spellId":8439,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":4638,"damageMultiplier":0.62,"radius":8},{"id":"spell-2601","name":"Fire Shield III","spellId":2601,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":4638,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-2601","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2525-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4299":{"id":"entry-4299","kind":"mob","name":"Scarlet Chaplain","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-1006","name":"Inner Fire","spellId":1006,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6488,"damageMultiplier":1.12},{"id":"spell-6066","name":"Power Word: Shield","spellId":6066,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":6488,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-6066","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2501-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4302":{"id":"entry-4302","kind":"mob","name":"Scarlet Champion","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17143","name":"Holy Strike","spellId":17143,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4936,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2460-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4540":{"id":"entry-4540","kind":"mob","name":"Scarlet Monk","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4528,"damageMultiplier":1.12},{"id":"spell-11978","name":"Kick","spellId":11978,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4528,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2603-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4303":{"id":"entry-4303","kind":"mob","name":"Scarlet Abbot","combat":{"level":39,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-1006","name":"Inner Fire","spellId":1006,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4310,"damageMultiplier":1.12},{"id":"spell-6064","name":"Greater Heal","spellId":6064,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4310,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2492-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3976":{"id":"entry-3976","kind":"mob","name":"Scarlet Commander Mograine","combat":{"level":40,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-8990","name":"Retribution Aura","spellId":8990,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4193,"damageMultiplier":1.12},{"id":"spell-5589","name":"Hammer of Justice","spellId":5589,"delivery":"projectile","target":"random-party","school":"holy","animation":"cast","range":28,"cooldownMs":4193,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":1500}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2042-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-4542":{"id":"entry-4542","kind":"mob","name":"High Inquisitor Fairbanks","combat":{"level":40,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15090","name":"Dispel Magic","spellId":15090,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5985,"damageMultiplier":1.12},{"id":"spell-8282","name":"Curse of Blood","spellId":8282,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5985,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2605-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7121,"markerRadius":0.65}}},"entry-4287":{"id":"entry-4287","kind":"mob","name":"Scarlet Gallant","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14517","name":"Crusader Strike","spellId":14517,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4384,"damageMultiplier":1.12},{"id":"spell-5589","name":"Hammer of Justice","spellId":5589,"delivery":"projectile","target":"random-party","school":"holy","animation":"cast","range":28,"cooldownMs":4384,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":1500}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2463-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4296":{"id":"entry-4296","kind":"mob","name":"Scarlet Adept","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6063","name":"Greater Heal","spellId":6063,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5791,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-9734","name":"Holy Smite","spellId":9734,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5791,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-5726-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4288":{"id":"entry-4288","kind":"mob","name":"Scarlet Beastmaster","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6597,"damageMultiplier":1.12},{"id":"spell-7896","name":"Exploding Shot","spellId":7896,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6597,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2497-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4304":{"id":"entry-4304","kind":"mob","name":"Scarlet Tracking Hound","combat":{"level":33,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0941,"markerRadius":1.0464}}},"entry-4291":{"id":"entry-4291","kind":"mob","name":"Scarlet Diviner","combat":{"level":34,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6409,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2507-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3974":{"id":"entry-3974","kind":"boss","name":"Houndmaster Loksey","title":"Dungeon Boss","hasLoot":true,"combat":{"level":34,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6742","name":"Bloodlust","spellId":6742,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6272,"damageMultiplier":1.35},{"id":"spell-6192","name":"Battle Shout","spellId":6192,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6272,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2040-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-6487":{"id":"entry-6487","kind":"boss","name":"Arcanist Doan","title":"Dungeon Boss","hasLoot":true,"combat":{"level":35,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5149,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-5266-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0009,"labelHeight":3.0101,"markerRadius":0.65}}},"entry-4286":{"id":"entry-4286","kind":"mob","name":"Scarlet Soldier","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3639","name":"Improved Blocking","spellId":3639,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7340,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2522-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-4297":{"id":"entry-4297","kind":"mob","name":"Scarlet Conjuror","combat":{"level":35,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4220,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2503-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4289":{"id":"entry-4289","kind":"mob","name":"Scarlet Evoker","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4139,"damageMultiplier":1.12},{"id":"spell-2601","name":"Fire Shield III","spellId":2601,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":4139,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-2601","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2509-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4292":{"id":"entry-4292","kind":"mob","name":"Scarlet Protector","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31713","name":"Holy Light","spellId":31713,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4701,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4701,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2476-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-4290":{"id":"entry-4290","kind":"mob","name":"Scarlet Guardsman","combat":{"level":36,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6307,"damageMultiplier":1.12},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6307,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2511-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-3975":{"id":"entry-3975","kind":"boss","name":"Herod","title":"Dungeon Boss","hasLoot":true,"combat":{"level":37,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-6268","name":"Rushing Charge","spellId":6268,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-30619","name":"Mortal Cleave","spellId":30619,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4140,"damageMultiplier":0.82,"radius":11},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4140,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-2041-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0009,"labelHeight":3.1165,"markerRadius":0.65}}},"entry-6490":{"id":"entry-6490","kind":"mob","name":"Azshir the Sleepless","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scarlet-monastery/creatures/display-5534-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-12164","entityId":"entry-6489","position":[1103.2127,18.2972,840.0867],"yaw":-0.051613,"spawnMask":1},{"id":"creature-27437","entityId":"entry-4306","position":[1227.0127,7.7132,841.8867],"yaw":-0.750492,"spawnMask":1},{"id":"creature-27438","entityId":"entry-4283","position":[1257.7527,7.0429,830.3467],"yaw":-1.50098,"spawnMask":1},{"id":"creature-27439","entityId":"entry-4283","position":[1247.1327,7.0429,854.0567],"yaw":-3.83972,"spawnMask":1},{"id":"creature-27442","entityId":"entry-4306","position":[1224.5527,7.7132,844.4867],"yaw":-3.92699,"spawnMask":1},{"id":"creature-27443","entityId":"entry-3983","position":[1226.1727,7.7132,877.0267],"yaw":-4.81711,"spawnMask":1},{"id":"creature-27446","entityId":"entry-4306","position":[1232.2927,7.7132,874.5067],"yaw":-2.87979,"spawnMask":1},{"id":"creature-27447","entityId":"entry-4306","position":[1203.9627,7.7132,845.9467],"yaw":0,"spawnMask":1},{"id":"creature-27448","entityId":"entry-4306","position":[1206.3727,7.7132,849.7667],"yaw":-3.14159,"spawnMask":1},{"id":"creature-39848","entityId":"entry-4306","position":[1207.0827,7.7132,847.6867],"yaw":-0.558505,"spawnMask":1},{"id":"creature-39849","entityId":"entry-6547","position":[1204.4727,8.9008,847.7067],"yaw":-0.785398,"spawnMask":1},{"id":"creature-39850","entityId":"entry-3981","position":[1231.1327,8.8976,876.6967],"yaw":-4.64258,"spawnMask":1},{"id":"creature-39851","entityId":"entry-4306","position":[1203.5727,7.7132,848.8667],"yaw":-3.4383,"spawnMask":1},{"id":"creature-39853","entityId":"entry-4306","position":[1207.3027,7.7132,883.9267],"yaw":-1.22173,"spawnMask":1},{"id":"creature-39854","entityId":"entry-4306","position":[1204.2327,7.7132,883.5467],"yaw":-5.37561,"spawnMask":1},{"id":"creature-39855","entityId":"entry-4306","position":[1180.2227,7.0433,897.9567],"yaw":-4.95674,"spawnMask":1},{"id":"creature-39856","entityId":"entry-6547","position":[1205.6827,8.8589,884.7167],"yaw":-5.63741,"spawnMask":1},{"id":"creature-39857","entityId":"entry-4306","position":[1184.6327,7.0433,898.3167],"yaw":-1.51844,"spawnMask":1},{"id":"creature-39858","entityId":"entry-4308","position":[1106.6127,18.3803,844.6467],"yaw":-4.46804,"spawnMask":1},{"id":"creature-39859","entityId":"entry-4308","position":[1102.9927,18.3803,849.7667],"yaw":0,"spawnMask":1},{"id":"creature-39860","entityId":"entry-4308","position":[1103.0827,18.5514,886.6767],"yaw":-0.802851,"spawnMask":1},{"id":"creature-39861","entityId":"entry-4308","position":[1103.7827,18.5474,889.3067],"yaw":0,"spawnMask":1},{"id":"creature-39862","entityId":"entry-4308","position":[1100.7427,18.5646,891.1467],"yaw":0,"spawnMask":1},{"id":"creature-39864","entityId":"entry-4308","position":[1099.9827,18.3803,844.5467],"yaw":-3.53748,"spawnMask":1},{"id":"creature-39865","entityId":"entry-6426","position":[1101.5427,18.3803,928.1667],"yaw":-4.55531,"spawnMask":1},{"id":"creature-39866","entityId":"entry-4308","position":[1088.1727,17.7938,867.7167],"yaw":-5.58505,"spawnMask":1},{"id":"creature-39867","entityId":"entry-4308","position":[1085.4127,17.8401,872.2267],"yaw":0,"spawnMask":1},{"id":"creature-39868","entityId":"entry-4308","position":[1082.8427,17.8045,868.7567],"yaw":0,"spawnMask":1},{"id":"creature-39870","entityId":"entry-6426","position":[1071.2327,18.3803,925.4067],"yaw":-3.08923,"spawnMask":1},{"id":"creature-39871","entityId":"entry-4308","position":[1043.3427,17.7426,863.6167],"yaw":-1.72788,"spawnMask":1},{"id":"creature-39872","entityId":"entry-4308","position":[1040.7827,18.2085,856.9767],"yaw":0,"spawnMask":1},{"id":"creature-39873","entityId":"entry-6427","position":[1067.5127,18.7526,887.7067],"yaw":-1.71042,"spawnMask":1},{"id":"creature-39874","entityId":"entry-4308","position":[1048.1527,17.9457,902.2667],"yaw":-5.74213,"spawnMask":1},{"id":"creature-39875","entityId":"entry-4308","position":[1050.3227,17.8319,906.3267],"yaw":0,"spawnMask":1},{"id":"creature-39876","entityId":"entry-4308","position":[1049.9727,17.7258,909.9467],"yaw":0,"spawnMask":1},{"id":"creature-39877","entityId":"entry-4308","position":[1071.9927,18.3803,846.8867],"yaw":-5.3058,"spawnMask":1},{"id":"creature-39878","entityId":"entry-4308","position":[1067.8727,18.3803,845.6767],"yaw":0,"spawnMask":1},{"id":"creature-39879","entityId":"entry-4308","position":[1069.3927,18.3803,850.5667],"yaw":0,"spawnMask":1},{"id":"creature-39880","entityId":"entry-6426","position":[1034.8627,18.9299,892.7667],"yaw":-4.42769,"spawnMask":1},{"id":"creature-39881","entityId":"entry-4308","position":[1036.6527,17.7417,864.1167],"yaw":-5.91172,"spawnMask":1},{"id":"creature-39882","entityId":"entry-6426","position":[1040.7127,18.6645,840.0767],"yaw":-3.89208,"spawnMask":1},{"id":"creature-39888","entityId":"entry-4308","position":[1035.5927,19.2376,928.2367],"yaw":-0.226893,"spawnMask":1},{"id":"creature-39889","entityId":"entry-6427","position":[1021.0127,18.786,835.9567],"yaw":-3.05433,"spawnMask":1},{"id":"creature-39891","entityId":"entry-6426","position":[1016.0527,19.1105,877.6567],"yaw":-3.80482,"spawnMask":1},{"id":"creature-39893","entityId":"entry-6427","position":[1029.5427,17.4626,944.1667],"yaw":-4.76481,"spawnMask":1},{"id":"creature-39894","entityId":"entry-6488","position":[1005.1627,19.5115,846.6467],"yaw":-5.03576,"spawnMask":1},{"id":"creature-39895","entityId":"entry-6427","position":[1006.5527,18.5971,939.2767],"yaw":-4.63511,"spawnMask":1},{"id":"creature-39896","entityId":"entry-4308","position":[1012.2527,17.7211,910.9467],"yaw":-5.91667,"spawnMask":1},{"id":"creature-39897","entityId":"entry-4308","position":[1012.9427,17.754,915.8967],"yaw":0,"spawnMask":1},{"id":"creature-39898","entityId":"entry-4308","position":[1008.4427,17.8553,914.0167],"yaw":0,"spawnMask":1},{"id":"creature-39899","entityId":"entry-6426","position":[987.8527,19.1105,885.8567],"yaw":-5.65487,"spawnMask":1},{"id":"creature-39900","entityId":"entry-6426","position":[992.3527,18.6649,860.8067],"yaw":-2.61366,"spawnMask":1},{"id":"creature-39901","entityId":"entry-6426","position":[982.2827,19.6526,852.4067],"yaw":-0.418879,"spawnMask":1},{"id":"creature-39903","entityId":"entry-4308","position":[953.4727,0.2229,865.8967],"yaw":-4.43314,"spawnMask":1},{"id":"creature-39904","entityId":"entry-4308","position":[950.1627,0.2229,867.3167],"yaw":0,"spawnMask":1},{"id":"creature-39905","entityId":"entry-4308","position":[953.0627,0.2229,871.1467],"yaw":0,"spawnMask":1},{"id":"creature-39906","entityId":"entry-6426","position":[933.6527,0.2229,877.7767],"yaw":-2.6529,"spawnMask":1},{"id":"creature-39907","entityId":"entry-6426","position":[944.1927,21.5898,829.9067],"yaw":-2.92881,"spawnMask":1},{"id":"creature-39908","entityId":"entry-6427","position":[932.7327,8.5857,905.3667],"yaw":-3.00822,"spawnMask":1},{"id":"creature-39910","entityId":"entry-4308","position":[950.0327,20.9985,857.8467],"yaw":-5.23599,"spawnMask":1},{"id":"creature-39911","entityId":"entry-4308","position":[948.7327,21.2596,863.8767],"yaw":0,"spawnMask":1},{"id":"creature-39912","entityId":"entry-4308","position":[942.9527,21.5528,862.9867],"yaw":0,"spawnMask":1},{"id":"creature-39913","entityId":"entry-4308","position":[948.8027,21.4236,934.6767],"yaw":-0.331613,"spawnMask":1},{"id":"creature-39914","entityId":"entry-4308","position":[976.8327,19.2894,932.3967],"yaw":-6.03884,"spawnMask":1},{"id":"creature-39915","entityId":"entry-4308","position":[979.1727,19.33,934.3867],"yaw":0,"spawnMask":1},{"id":"creature-39916","entityId":"entry-4308","position":[977.0227,19.3462,935.9467],"yaw":0,"spawnMask":1},{"id":"creature-39917","entityId":"entry-6427","position":[949.5827,8.6668,901.8267],"yaw":-2.98451,"spawnMask":1},{"id":"creature-39930","entityId":"entry-4308","position":[948.3827,0.2229,874.0567],"yaw":-0.488692,"spawnMask":1},{"id":"creature-39931","entityId":"entry-4308","position":[944.6627,0.2229,871.7167],"yaw":0,"spawnMask":1},{"id":"creature-39932","entityId":"entry-4308","position":[944.4327,0.2229,876.7167],"yaw":0,"spawnMask":1},{"id":"creature-39933","entityId":"entry-6426","position":[950.4127,21.4447,908.2367],"yaw":-4.7822,"spawnMask":1},{"id":"creature-39934","entityId":"entry-4543","position":[933.9027,-7.7777,910.8167],"yaw":-3.15905,"spawnMask":1},{"id":"creature-39935","entityId":"entry-4308","position":[920.9127,0.2229,867.8467],"yaw":-3.78736,"spawnMask":1},{"id":"creature-39936","entityId":"entry-4308","position":[921.4627,0.2229,871.3567],"yaw":0,"spawnMask":1},{"id":"creature-39937","entityId":"entry-4308","position":[916.4527,0.2229,868.7067],"yaw":0,"spawnMask":1},{"id":"creature-39938","entityId":"entry-6426","position":[917.7627,8.6707,902.9567],"yaw":-1.65806,"spawnMask":1},{"id":"creature-39939","entityId":"entry-4308","position":[919.4627,8.5868,894.0767],"yaw":-3.41441,"spawnMask":1},{"id":"creature-39940","entityId":"entry-4308","position":[918.0527,8.5879,896.4767],"yaw":-4.42443,"spawnMask":1},{"id":"creature-39941","entityId":"entry-4308","position":[917.4927,8.5879,894.4967],"yaw":-3.33666,"spawnMask":1},{"id":"creature-39942","entityId":"entry-4308","position":[946.0527,21.8273,940.5167],"yaw":-3.0719,"spawnMask":1},{"id":"creature-39943","entityId":"entry-4308","position":[947.6627,21.7771,939.1967],"yaw":-5.25023,"spawnMask":1},{"id":"creature-39944","entityId":"entry-6426","position":[919.3327,0.2229,875.3167],"yaw":-1.0472,"spawnMask":1},{"id":"creature-39945","entityId":"entry-4295","position":[1028.0627,18.2289,-32.8223],"yaw":-3.15905,"spawnMask":1},{"id":"creature-39946","entityId":"entry-3977","position":[951.5427,29.2327,292.6067],"yaw":-3.12414,"spawnMask":1},{"id":"creature-39948","entityId":"entry-4295","position":[944.5627,18.2289,-36.2223],"yaw":-3.21141,"spawnMask":1},{"id":"creature-39949","entityId":"entry-4294","position":[990.6327,18.9007,17.7637],"yaw":-0.296706,"spawnMask":1},{"id":"creature-39950","entityId":"entry-4298","position":[944.6127,18.2289,-41.1253],"yaw":-6.26573,"spawnMask":1},{"id":"creature-39951","entityId":"entry-4294","position":[976.3627,18.9007,-19.5603],"yaw":-1.43117,"spawnMask":1},{"id":"creature-39952","entityId":"entry-4298","position":[991.2927,18.2289,-33.0173],"yaw":-3.10669,"spawnMask":1},{"id":"creature-39953","entityId":"entry-4301","position":[951.5827,18.2462,-0.2923],"yaw":-3.18328,"spawnMask":1},{"id":"creature-39954","entityId":"entry-4295","position":[972.6027,18.9007,-19.5453],"yaw":-4.85202,"spawnMask":1},{"id":"creature-39955","entityId":"entry-4298","position":[991.2027,18.2289,-44.2793],"yaw":-0.017453,"spawnMask":1},{"id":"creature-39956","entityId":"entry-4298","position":[989.9427,18.9007,-19.2413],"yaw":-0.802851,"spawnMask":1},{"id":"creature-39957","entityId":"entry-4294","position":[990.2527,18.9007,21.6867],"yaw":-3.03687,"spawnMask":1},{"id":"creature-39958","entityId":"entry-4301","position":[972.0427,18.219,-0.2723],"yaw":-4.96092,"spawnMask":1},{"id":"creature-39959","entityId":"entry-4301","position":[973.0627,18.1629,16.1097],"yaw":-0.018956,"spawnMask":1},{"id":"creature-39960","entityId":"entry-4300","position":[974.9427,18.2462,37.8527],"yaw":-5.91667,"spawnMask":1},{"id":"creature-39961","entityId":"entry-4295","position":[990.0927,18.9007,47.0627],"yaw":-0.122173,"spawnMask":1},{"id":"creature-39962","entityId":"entry-4298","position":[928.7227,18.2238,-1.0203],"yaw":-0.907571,"spawnMask":1},{"id":"creature-39964","entityId":"entry-4295","position":[912.9627,18.9007,-14.7623],"yaw":-3.59538,"spawnMask":1},{"id":"creature-39965","entityId":"entry-4295","position":[929.9127,18.9007,-19.5313],"yaw":-5.39307,"spawnMask":1},{"id":"creature-39966","entityId":"entry-4294","position":[915.8827,18.9007,-19.1183],"yaw":-0.785398,"spawnMask":1},{"id":"creature-39967","entityId":"entry-4300","position":[989.8827,18.9351,34.2827],"yaw":-3.14345,"spawnMask":1},{"id":"creature-39968","entityId":"entry-4294","position":[990.0027,18.9007,51.1227],"yaw":-3.05433,"spawnMask":1},{"id":"creature-39969","entityId":"entry-4295","position":[913.0627,18.9007,22.0897],"yaw":-4.59022,"spawnMask":1},{"id":"creature-39970","entityId":"entry-4300","position":[927.0127,18.2462,39.2817],"yaw":-2.42601,"spawnMask":1},{"id":"creature-39971","entityId":"entry-4298","position":[913.1327,18.9007,52.5317],"yaw":-3.03687,"spawnMask":1},{"id":"creature-39972","entityId":"entry-4295","position":[913.0527,18.9007,48.1367],"yaw":-0.05236,"spawnMask":1},{"id":"creature-39973","entityId":"entry-4301","position":[936.2027,18.9007,54.7747],"yaw":-2.16421,"spawnMask":1},{"id":"creature-39974","entityId":"entry-4301","position":[988.5027,27.5223,83.1887],"yaw":-5.51524,"spawnMask":1},{"id":"creature-39975","entityId":"entry-4298","position":[913.1927,27.5215,81.6077],"yaw":-3.33358,"spawnMask":1},{"id":"creature-39976","entityId":"entry-4298","position":[896.1527,29.3695,76.4337],"yaw":-0.907571,"spawnMask":1},{"id":"creature-39977","entityId":"entry-4295","position":[1007.4127,29.3695,76.6567],"yaw":-0.994838,"spawnMask":1},{"id":"creature-39978","entityId":"entry-4301","position":[1007.1827,29.2861,88.6017],"yaw":-3.14447,"spawnMask":1},{"id":"creature-39979","entityId":"entry-4294","position":[913.7327,27.5273,106.5167],"yaw":-6.16101,"spawnMask":1},{"id":"creature-39980","entityId":"entry-4295","position":[987.1327,27.4433,121.7367],"yaw":-0.467584,"spawnMask":1},{"id":"creature-39981","entityId":"entry-4300","position":[988.3227,27.5275,112.1167],"yaw":-4.13643,"spawnMask":1},{"id":"creature-39982","entityId":"entry-4295","position":[951.4327,27.5363,118.2567],"yaw":-3.15905,"spawnMask":1},{"id":"creature-39983","entityId":"entry-4301","position":[972.2427,27.5296,126.2167],"yaw":-1.309,"spawnMask":1},{"id":"creature-39984","entityId":"entry-4295","position":[1007.0927,29.3694,107.1567],"yaw":-2.80998,"spawnMask":1},{"id":"creature-39986","entityId":"entry-4298","position":[931.7427,27.5299,126.0367],"yaw":-4.66003,"spawnMask":1},{"id":"creature-39988","entityId":"entry-4298","position":[986.7727,27.5231,133.1167],"yaw":-2.40855,"spawnMask":1},{"id":"creature-39989","entityId":"entry-4301","position":[895.8927,29.3694,102.8867],"yaw":-6.17846,"spawnMask":1},{"id":"creature-39990","entityId":"entry-4300","position":[895.9227,29.3694,108.2167],"yaw":-2.82743,"spawnMask":1},{"id":"creature-39991","entityId":"entry-4295","position":[950.3227,27.5295,131.8867],"yaw":-2.14675,"spawnMask":1},{"id":"creature-39992","entityId":"entry-4295","position":[1007.0527,29.3694,135.7067],"yaw":-2.9147,"spawnMask":1},{"id":"creature-39993","entityId":"entry-4301","position":[968.4127,30.9865,153.5267],"yaw":-2.86234,"spawnMask":1},{"id":"creature-39994","entityId":"entry-4301","position":[963.2827,30.9865,154.8767],"yaw":-3.05433,"spawnMask":1},{"id":"creature-39995","entityId":"entry-4301","position":[914.5027,27.5227,133.0267],"yaw":-0.890118,"spawnMask":1},{"id":"creature-39996","entityId":"entry-4301","position":[939.7727,30.9865,155.2667],"yaw":-3.22886,"spawnMask":1},{"id":"creature-39997","entityId":"entry-4301","position":[934.6827,30.9865,153.6767],"yaw":-3.42085,"spawnMask":1},{"id":"creature-39998","entityId":"entry-4294","position":[901.4027,29.2861,136.1367],"yaw":-1.05107,"spawnMask":1},{"id":"creature-39999","entityId":"entry-4294","position":[897.0127,29.3694,133.2767],"yaw":-0.523599,"spawnMask":1},{"id":"creature-40000","entityId":"entry-4301","position":[978.3227,30.5259,172.0267],"yaw":-1.50098,"spawnMask":1},{"id":"creature-40001","entityId":"entry-4299","position":[972.7327,30.529,169.4167],"yaw":-5.91667,"spawnMask":1},{"id":"creature-40002","entityId":"entry-4301","position":[894.1727,29.3694,136.3467],"yaw":-4.03171,"spawnMask":1},{"id":"creature-40003","entityId":"entry-4301","position":[978.1327,30.5281,190.5167],"yaw":-1.50098,"spawnMask":1},{"id":"creature-40004","entityId":"entry-4302","position":[957.4827,30.5265,184.5667],"yaw":-0.069813,"spawnMask":1},{"id":"creature-40005","entityId":"entry-4540","position":[959.6327,30.5225,184.3567],"yaw":-0.139626,"spawnMask":1},{"id":"creature-40006","entityId":"entry-4540","position":[943.1727,30.5221,184.4167],"yaw":-6.12611,"spawnMask":1},{"id":"creature-40007","entityId":"entry-4303","position":[945.4027,30.5262,184.3667],"yaw":-6.17846,"spawnMask":1},{"id":"creature-40008","entityId":"entry-4299","position":[971.1427,30.5855,172.1067],"yaw":-3.12306,"spawnMask":1},{"id":"creature-40009","entityId":"entry-4301","position":[924.7727,30.5258,171.8267],"yaw":-4.81711,"spawnMask":1},{"id":"creature-40010","entityId":"entry-4302","position":[971.4427,30.4421,197.2767],"yaw":-3.1506,"spawnMask":1},{"id":"creature-40011","entityId":"entry-4303","position":[946.8127,30.5305,197.4867],"yaw":-6.16101,"spawnMask":1},{"id":"creature-40012","entityId":"entry-4299","position":[933.3827,30.5245,169.7567],"yaw":-4.7822,"spawnMask":1},{"id":"creature-40013","entityId":"entry-4303","position":[955.1427,30.5305,196.9867],"yaw":-0.087266,"spawnMask":1},{"id":"creature-40014","entityId":"entry-4301","position":[924.7427,30.5279,190.3967],"yaw":-4.67748,"spawnMask":1},{"id":"creature-40016","entityId":"entry-4302","position":[931.2327,30.5304,194.4367],"yaw":-5.23599,"spawnMask":1},{"id":"creature-40017","entityId":"entry-4302","position":[947.1927,30.5307,209.5167],"yaw":-6.19592,"spawnMask":1},{"id":"creature-40018","entityId":"entry-4303","position":[955.7627,30.5307,209.0367],"yaw":-0.174533,"spawnMask":1},{"id":"creature-40019","entityId":"entry-4300","position":[970.1027,30.4407,203.5567],"yaw":-3.14111,"spawnMask":1},{"id":"creature-40020","entityId":"entry-4303","position":[945.4727,30.5284,221.6667],"yaw":-6.14356,"spawnMask":1},{"id":"creature-40021","entityId":"entry-4540","position":[960.0027,30.522,221.7267],"yaw":-0.20944,"spawnMask":1},{"id":"creature-40022","entityId":"entry-4300","position":[972.9327,30.5307,213.5367],"yaw":-0.418879,"spawnMask":1},{"id":"creature-40023","entityId":"entry-4302","position":[931.2727,30.5303,214.3067],"yaw":-5.65487,"spawnMask":1},{"id":"creature-40024","entityId":"entry-4540","position":[942.8327,30.5224,221.4367],"yaw":-6.03884,"spawnMask":1},{"id":"creature-40025","entityId":"entry-4302","position":[957.5927,30.5248,221.5967],"yaw":-0.122173,"spawnMask":1},{"id":"creature-40026","entityId":"entry-4301","position":[924.9127,30.5284,208.9367],"yaw":-4.74729,"spawnMask":1},{"id":"creature-40027","entityId":"entry-4540","position":[945.3827,30.527,209.3667],"yaw":-6.10865,"spawnMask":1},{"id":"creature-40028","entityId":"entry-4301","position":[978.3727,30.5281,209.2467],"yaw":-1.50098,"spawnMask":1},{"id":"creature-40029","entityId":"entry-3976","position":[952.2227,32.7508,244.3467],"yaw":-6.12611,"spawnMask":1},{"id":"creature-40030","entityId":"entry-4299","position":[895.0327,30.5241,228.1267],"yaw":-4.36332,"spawnMask":1},{"id":"creature-40031","entityId":"entry-4302","position":[981.2527,30.5295,228.9767],"yaw":-1.46608,"spawnMask":1},{"id":"creature-40032","entityId":"entry-4300","position":[1008.7327,30.5245,228.1967],"yaw":-0.488692,"spawnMask":1},{"id":"creature-40033","entityId":"entry-4300","position":[899.3827,30.5259,226.8867],"yaw":-3.59538,"spawnMask":1},{"id":"creature-40035","entityId":"entry-4301","position":[1014.2927,30.5247,231.4467],"yaw":-1.5708,"spawnMask":1},{"id":"creature-40036","entityId":"entry-4301","position":[887.9527,30.5217,231.8367],"yaw":-4.69494,"spawnMask":1},{"id":"creature-40037","entityId":"entry-4302","position":[1007.3127,30.5266,232.3367],"yaw":-3.38594,"spawnMask":1},{"id":"creature-40038","entityId":"entry-4302","position":[912.3427,30.5278,250.8067],"yaw":-1.309,"spawnMask":1},{"id":"creature-40039","entityId":"entry-4542","position":[996.3427,30.5286,249.3367],"yaw":-4.69494,"spawnMask":1},{"id":"creature-40040","entityId":"entry-4540","position":[911.1527,31.7715,256.4167],"yaw":-5.8294,"spawnMask":1},{"id":"creature-40041","entityId":"entry-4540","position":[913.3427,31.7715,256.3567],"yaw":-0.279253,"spawnMask":1},{"id":"creature-40042","entityId":"entry-4299","position":[893.9027,30.5278,250.0667],"yaw":-4.17134,"spawnMask":1},{"id":"creature-40043","entityId":"entry-4540","position":[893.7727,31.7715,256.3067],"yaw":-0.10472,"spawnMask":1},{"id":"creature-40044","entityId":"entry-4540","position":[1010.1927,31.7724,257.4067],"yaw":-6.26573,"spawnMask":1},{"id":"creature-40045","entityId":"entry-4540","position":[2654.3797,20.3007,-666.4773],"yaw":-2.23402,"spawnMask":1},{"id":"creature-40046","entityId":"entry-4540","position":[2653.5907,20.3007,-646.1523],"yaw":-6.10865,"spawnMask":1},{"id":"creature-40048","entityId":"entry-4287","position":[2636.6247,19.4225,-691.3873],"yaw":-5.89921,"spawnMask":1},{"id":"creature-40049","entityId":"entry-4287","position":[2619.3467,19.424,-705.8203],"yaw":-3.12414,"spawnMask":1},{"id":"creature-40050","entityId":"entry-4299","position":[2652.3557,20.3007,-668.7653],"yaw":-5.67232,"spawnMask":1},{"id":"creature-40051","entityId":"entry-4296","position":[2636.6597,19.4225,-686.0763],"yaw":-3.54302,"spawnMask":1},{"id":"creature-40052","entityId":"entry-4287","position":[2639.1857,19.4225,-688.8123],"yaw":-1.46608,"spawnMask":1},{"id":"creature-40053","entityId":"entry-4288","position":[2624.1887,18.8175,-728.1273],"yaw":-0.837758,"spawnMask":1},{"id":"creature-40054","entityId":"entry-4304","position":[2626.3227,19.0339,-726.1083],"yaw":-3.22886,"spawnMask":1},{"id":"creature-40055","entityId":"entry-4299","position":[2655.0377,20.3007,-662.5003],"yaw":-6.0912,"spawnMask":1},{"id":"creature-40056","entityId":"entry-4291","position":[2653.6597,20.3007,-641.5913],"yaw":-3.28122,"spawnMask":1},{"id":"creature-40057","entityId":"entry-4287","position":[2580.3717,18.7536,-686.1833],"yaw":-2.30383,"spawnMask":1},{"id":"creature-40059","entityId":"entry-4288","position":[2609.7307,18.9641,-720.3443],"yaw":-0.645772,"spawnMask":1},{"id":"creature-40060","entityId":"entry-4304","position":[2608.5847,18.8133,-722.4733],"yaw":-3.49066,"spawnMask":1},{"id":"creature-40061","entityId":"entry-4287","position":[2573.2807,18.7536,-698.8133],"yaw":-4.67748,"spawnMask":1},{"id":"creature-40062","entityId":"entry-4296","position":[2577.3957,18.7536,-716.7853],"yaw":-4.99164,"spawnMask":1},{"id":"creature-40063","entityId":"entry-4287","position":[2590.6337,19.424,-728.0233],"yaw":-4.72984,"spawnMask":1},{"id":"creature-40064","entityId":"entry-4287","position":[2580.2397,18.7537,-668.6833],"yaw":-4.99164,"spawnMask":1},{"id":"creature-40065","entityId":"entry-4296","position":[2577.2707,18.7536,-688.4393],"yaw":-5.14872,"spawnMask":1},{"id":"creature-40066","entityId":"entry-4287","position":[2584.0627,18.7537,-668.5943],"yaw":-1.53589,"spawnMask":1},{"id":"creature-40067","entityId":"entry-4287","position":[2579.9657,18.7536,-715.3063],"yaw":-2.35619,"spawnMask":1},{"id":"creature-40070","entityId":"entry-4304","position":[2581.0447,18.6703,-708.4623],"yaw":-3.13901,"spawnMask":1},{"id":"creature-40071","entityId":"entry-4287","position":[2584.4267,18.7536,-641.6353],"yaw":-0.05236,"spawnMask":1},{"id":"creature-40072","entityId":"entry-4287","position":[2584.4037,18.7536,-638.1423],"yaw":-3.10669,"spawnMask":1},{"id":"creature-40073","entityId":"entry-4287","position":[2655.1597,18.7522,-680.4853],"yaw":-4.60767,"spawnMask":1},{"id":"creature-40074","entityId":"entry-4287","position":[2660.6967,18.7522,-680.8653],"yaw":-1.55334,"spawnMask":1},{"id":"creature-40075","entityId":"entry-4287","position":[2656.0597,18.7522,-714.4033],"yaw":-5.48033,"spawnMask":1},{"id":"creature-40076","entityId":"entry-4287","position":[2658.1397,18.7522,-712.0773],"yaw":-2.56563,"spawnMask":1},{"id":"creature-40077","entityId":"entry-4287","position":[2662.9787,18.7522,-698.0343],"yaw":-1.6057,"spawnMask":1},{"id":"creature-40078","entityId":"entry-4288","position":[2617.4527,18.8375,-742.5863],"yaw":-0.733038,"spawnMask":1},{"id":"creature-40079","entityId":"entry-4304","position":[2619.4457,18.8392,-741.4183],"yaw":-1.64061,"spawnMask":1},{"id":"creature-40080","entityId":"entry-4287","position":[2640.2667,19.424,-726.7363],"yaw":-1.51844,"spawnMask":1},{"id":"creature-40081","entityId":"entry-4287","position":[2619.4387,19.424,-755.5873],"yaw":-0.017453,"spawnMask":1},{"id":"creature-40083","entityId":"entry-4287","position":[2663.2937,18.7522,-734.8583],"yaw":-1.71042,"spawnMask":1},{"id":"creature-40084","entityId":"entry-4540","position":[2663.0177,20.2186,-644.4503],"yaw":-1.60504,"spawnMask":1},{"id":"creature-40085","entityId":"entry-4291","position":[2686.9447,18.757,-689.1063],"yaw":-2.63545,"spawnMask":1},{"id":"creature-40086","entityId":"entry-4291","position":[2676.3747,18.7566,-677.3493],"yaw":-1.53589,"spawnMask":1},{"id":"creature-40087","entityId":"entry-4299","position":[2683.2337,18.7589,-693.8443],"yaw":-5.49779,"spawnMask":1},{"id":"creature-40088","entityId":"entry-3974","position":[2611.4817,18.7695,-789.5853],"yaw":-0.10472,"spawnMask":1},{"id":"creature-40089","entityId":"entry-4304","position":[2612.0477,18.7695,-785.7693],"yaw":-2.96706,"spawnMask":1},{"id":"creature-40090","entityId":"entry-4304","position":[2608.3627,18.7695,-788.5653],"yaw":-4.43314,"spawnMask":1},{"id":"creature-40091","entityId":"entry-4304","position":[2609.0647,18.7695,-786.4333],"yaw":-3.80482,"spawnMask":1},{"id":"creature-40092","entityId":"entry-4291","position":[2683.2297,18.7568,-655.6113],"yaw":-4.69494,"spawnMask":1},{"id":"creature-40093","entityId":"entry-4291","position":[2685.7917,18.757,-661.5693],"yaw":-0.349066,"spawnMask":1},{"id":"creature-40094","entityId":"entry-4540","position":[2714.2587,20.6177,-657.6883],"yaw":-5.044,"spawnMask":1},{"id":"creature-40095","entityId":"entry-4291","position":[2717.6417,20.6216,-656.1603],"yaw":-2.16421,"spawnMask":1},{"id":"creature-40096","entityId":"entry-4540","position":[2677.2597,18.7568,-637.1113],"yaw":-4.99164,"spawnMask":1},{"id":"creature-40097","entityId":"entry-4299","position":[2681.6927,18.7568,-636.9553],"yaw":-1.309,"spawnMask":1},{"id":"creature-40099","entityId":"entry-4291","position":[2720.3747,20.6266,-629.6863],"yaw":-4.06662,"spawnMask":1},{"id":"creature-40100","entityId":"entry-4299","position":[2724.0897,20.6329,-631.8463],"yaw":-0.942478,"spawnMask":1},{"id":"creature-40101","entityId":"entry-4299","position":[2755.6137,20.6259,-655.7083],"yaw":-4.69494,"spawnMask":1},{"id":"creature-40102","entityId":"entry-4540","position":[2737.1237,20.3007,-643.5743],"yaw":-3.28122,"spawnMask":1},{"id":"creature-40103","entityId":"entry-4291","position":[2737.5557,20.3001,-646.3313],"yaw":-0.174533,"spawnMask":1},{"id":"creature-40104","entityId":"entry-4540","position":[2767.1557,19.0804,-727.5213],"yaw":-0.925025,"spawnMask":1},{"id":"creature-40105","entityId":"entry-4291","position":[2764.1227,19.0802,-727.5433],"yaw":-5.63741,"spawnMask":1},{"id":"creature-40106","entityId":"entry-4540","position":[2759.5677,20.6324,-658.0013],"yaw":-0.383972,"spawnMask":1},{"id":"creature-40107","entityId":"entry-4291","position":[2776.0337,18.7549,-677.5383],"yaw":-1.51844,"spawnMask":1},{"id":"creature-40108","entityId":"entry-4291","position":[2769.1567,18.7543,-693.0473],"yaw":-4.34587,"spawnMask":1},{"id":"creature-40110","entityId":"entry-4540","position":[2764.9117,19.076,-725.0193],"yaw":-3.14159,"spawnMask":1},{"id":"creature-40111","entityId":"entry-4291","position":[2783.4227,18.7559,-677.8093],"yaw":-4.5204,"spawnMask":1},{"id":"creature-40112","entityId":"entry-4540","position":[2772.5947,18.7599,-694.2193],"yaw":-1.27409,"spawnMask":1},{"id":"creature-40113","entityId":"entry-4540","position":[2759.7837,20.6332,-652.7203],"yaw":-2.77507,"spawnMask":1},{"id":"creature-40114","entityId":"entry-4540","position":[2756.4497,20.6271,-630.0173],"yaw":-4.29351,"spawnMask":1},{"id":"creature-40115","entityId":"entry-4291","position":[2760.7677,20.6344,-632.1083],"yaw":-1.0472,"spawnMask":1},{"id":"creature-40116","entityId":"entry-4291","position":[2783.5147,18.7581,-656.4733],"yaw":-4.88692,"spawnMask":1},{"id":"creature-40117","entityId":"entry-4291","position":[2786.3007,18.7599,-639.4573],"yaw":-1.06465,"spawnMask":1},{"id":"creature-40118","entityId":"entry-4540","position":[2781.6057,18.7569,-637.3313],"yaw":-4.31096,"spawnMask":1},{"id":"creature-40119","entityId":"entry-4540","position":[2781.4827,18.7556,-735.5463],"yaw":0,"spawnMask":1},{"id":"creature-40120","entityId":"entry-4540","position":[2778.1127,18.756,-735.5583],"yaw":-0.034907,"spawnMask":1},{"id":"creature-40121","entityId":"entry-4540","position":[2794.1097,19.0784,-726.4623],"yaw":-3.03687,"spawnMask":1},{"id":"creature-40122","entityId":"entry-4291","position":[2792.9507,19.0834,-729.4183],"yaw":-5.8294,"spawnMask":1},{"id":"creature-40123","entityId":"entry-4299","position":[2795.6557,19.083,-729.2803],"yaw":-0.471239,"spawnMask":1},{"id":"creature-40124","entityId":"entry-6487","position":[2779.3047,18.626,-761.2033],"yaw":-6.24828,"spawnMask":1},{"id":"creature-40126","entityId":"entry-4286","position":[2691.9907,18.2304,720.8267],"yaw":-3.1765,"spawnMask":1},{"id":"creature-40127","entityId":"entry-4286","position":[2733.7897,18.9007,731.8667],"yaw":-0.05236,"spawnMask":1},{"id":"creature-40128","entityId":"entry-4297","position":[2733.3267,18.9007,735.3267],"yaw":-3.10669,"spawnMask":1},{"id":"creature-40130","entityId":"entry-4286","position":[2697.1737,18.2462,761.0167],"yaw":-1.58825,"spawnMask":1},{"id":"creature-40131","entityId":"entry-4286","position":[2684.5087,18.2305,720.9367],"yaw":-3.05433,"spawnMask":1},{"id":"creature-40132","entityId":"entry-4286","position":[2698.5347,18.2462,768.7367],"yaw":-1.37881,"spawnMask":1},{"id":"creature-40133","entityId":"entry-4286","position":[2687.5387,18.9007,758.9167],"yaw":-4.11228,"spawnMask":1},{"id":"creature-40135","entityId":"entry-4286","position":[2690.2767,18.9007,801.3867],"yaw":-1.79769,"spawnMask":1},{"id":"creature-40136","entityId":"entry-4286","position":[2707.8807,18.2723,791.0467],"yaw":-6.21337,"spawnMask":1},{"id":"creature-40137","entityId":"entry-4286","position":[2722.6557,18.2876,789.4967],"yaw":-0.087266,"spawnMask":1},{"id":"creature-40139","entityId":"entry-4286","position":[2687.3817,18.9007,801.1967],"yaw":-4.55531,"spawnMask":1},{"id":"creature-40140","entityId":"entry-4286","position":[2729.0587,18.9007,800.9867],"yaw":-4.32842,"spawnMask":1},{"id":"creature-40141","entityId":"entry-4286","position":[2733.6907,18.9007,799.0067],"yaw":-1.15192,"spawnMask":1},{"id":"creature-40142","entityId":"entry-4289","position":[2713.5147,18.8165,807.7267],"yaw":-3.15247,"spawnMask":1},{"id":"creature-40143","entityId":"entry-4292","position":[2712.3447,8.2339,844.0767],"yaw":-5.48033,"spawnMask":1},{"id":"creature-40144","entityId":"entry-4286","position":[2736.4387,8.2336,841.5367],"yaw":-2.63545,"spawnMask":1},{"id":"creature-40145","entityId":"entry-4286","position":[2732.7447,8.2336,838.0267],"yaw":-5.13127,"spawnMask":1},{"id":"creature-40146","entityId":"entry-4292","position":[2737.2637,8.2333,837.8567],"yaw":-1.06465,"spawnMask":1},{"id":"creature-40147","entityId":"entry-4292","position":[2762.5667,8.2343,842.1267],"yaw":-2.37365,"spawnMask":1},{"id":"creature-40148","entityId":"entry-4290","position":[2758.0667,8.2334,837.6667],"yaw":-5.46288,"spawnMask":1},{"id":"creature-40149","entityId":"entry-4290","position":[2730.7617,8.2345,866.8567],"yaw":-6.16101,"spawnMask":1},{"id":"creature-40150","entityId":"entry-4292","position":[2715.7557,8.2332,847.1667],"yaw":-2.25148,"spawnMask":1},{"id":"creature-40152","entityId":"entry-4290","position":[2762.1927,8.234,863.9267],"yaw":-0.558505,"spawnMask":1},{"id":"creature-89058","entityId":"entry-4292","position":[2761.8967,8.2343,869.4867],"yaw":-2.68781,"spawnMask":1},{"id":"creature-89059","entityId":"entry-4292","position":[2731.8117,8.2346,872.4167],"yaw":-2.87979,"spawnMask":1},{"id":"creature-89060","entityId":"entry-4290","position":[2755.1507,8.2333,896.9367],"yaw":-2.21657,"spawnMask":1},{"id":"creature-89061","entityId":"entry-4292","position":[2751.9147,8.2351,892.5767],"yaw":-5.88176,"spawnMask":1},{"id":"creature-89062","entityId":"entry-4292","position":[2778.0207,8.2338,889.0867],"yaw":-5.8294,"spawnMask":1},{"id":"creature-89063","entityId":"entry-4290","position":[2781.1727,8.235,894.8067],"yaw":-2.6529,"spawnMask":1},{"id":"creature-89065","entityId":"entry-4295","position":[2735.8567,18.9,938.3067],"yaw":-0.628319,"spawnMask":1},{"id":"creature-89066","entityId":"entry-4298","position":[2752.8027,18.9017,939.3967],"yaw":-5.39307,"spawnMask":1},{"id":"creature-89067","entityId":"entry-4295","position":[2754.3567,18.9012,946.2267],"yaw":-3.24631,"spawnMask":1},{"id":"creature-89068","entityId":"entry-4295","position":[2758.9567,18.9007,939.1967],"yaw":-1.13446,"spawnMask":1},{"id":"creature-89069","entityId":"entry-4295","position":[2736.0727,18.9015,942.3567],"yaw":-2.33874,"spawnMask":1},{"id":"creature-89070","entityId":"entry-4298","position":[2731.9107,18.9007,941.8667],"yaw":-4.20624,"spawnMask":1},{"id":"creature-89072","entityId":"entry-4298","position":[2780.6177,18.9004,939.0067],"yaw":-0.122173,"spawnMask":1},{"id":"creature-89073","entityId":"entry-4290","position":[2779.5717,18.9005,943.6867],"yaw":-3.45575,"spawnMask":1},{"id":"creature-89074","entityId":"entry-4298","position":[2761.7687,18.9008,963.3567],"yaw":0,"spawnMask":1},{"id":"creature-89075","entityId":"entry-4292","position":[2761.3907,18.9008,968.7167],"yaw":-3.26377,"spawnMask":1},{"id":"creature-89076","entityId":"entry-4298","position":[2734.0347,18.9015,971.1867],"yaw":-3.47321,"spawnMask":1},{"id":"creature-89077","entityId":"entry-4298","position":[2738.6977,18.9016,970.3267],"yaw":-1.93731,"spawnMask":1},{"id":"creature-89078","entityId":"entry-4295","position":[2732.6847,18.901,964.8867],"yaw":-5.79449,"spawnMask":1},{"id":"creature-89079","entityId":"entry-4298","position":[2733.6237,18.9013,984.4667],"yaw":-1.50098,"spawnMask":1},{"id":"creature-89080","entityId":"entry-4295","position":[2758.5577,18.9007,995.2367],"yaw":-3.9968,"spawnMask":1},{"id":"creature-89081","entityId":"entry-4298","position":[2763.1137,18.9017,990.2067],"yaw":-0.628319,"spawnMask":1},{"id":"creature-89082","entityId":"entry-4298","position":[2729.3777,18.901,985.2567],"yaw":-4.36332,"spawnMask":1},{"id":"creature-89083","entityId":"entry-4290","position":[2788.8587,18.2309,1014.5867],"yaw":-0.174533,"spawnMask":1},{"id":"creature-89084","entityId":"entry-4298","position":[2790.9427,18.2309,1017.5367],"yaw":-2.02458,"spawnMask":1},{"id":"creature-89085","entityId":"entry-4295","position":[2772.5747,18.2309,1011.1167],"yaw":-6.17846,"spawnMask":1},{"id":"creature-89086","entityId":"entry-4295","position":[2787.7987,18.2309,1018.1667],"yaw":-3.82227,"spawnMask":1},{"id":"creature-89087","entityId":"entry-4295","position":[2745.3827,18.2309,1016.4767],"yaw":-0.890118,"spawnMask":1},{"id":"creature-89088","entityId":"entry-4295","position":[2739.2887,18.8998,998.1567],"yaw":-1.97222,"spawnMask":1},{"id":"creature-89089","entityId":"entry-4298","position":[2741.8547,18.2309,1017.6667],"yaw":-4.5204,"spawnMask":1},{"id":"creature-89090","entityId":"entry-4295","position":[2712.8887,18.9002,990.9367],"yaw":-3.64774,"spawnMask":1},{"id":"creature-89091","entityId":"entry-4295","position":[2716.4337,18.9008,988.9967],"yaw":-1.69297,"spawnMask":1},{"id":"creature-89092","entityId":"entry-4295","position":[2713.2047,18.9002,986.4167],"yaw":-5.89921,"spawnMask":1},{"id":"creature-89093","entityId":"entry-4292","position":[2735.5047,18.9004,996.6267],"yaw":-5.09636,"spawnMask":1},{"id":"creature-89094","entityId":"entry-4298","position":[2713.8577,18.2309,1022.1967],"yaw":-2.94961,"spawnMask":1},{"id":"creature-89095","entityId":"entry-4298","position":[2742.0417,18.2309,1022.0067],"yaw":-3.1765,"spawnMask":1},{"id":"creature-89097","entityId":"entry-3975","position":[2782.2197,6.4004,1055.5667],"yaw":-2.98451,"spawnMask":1},{"id":"creature-1975841","entityId":"entry-6490","position":[957.7927,20.6217,941.4467],"yaw":-3.13054,"spawnMask":1}],"roamingPacks":[{"id":"patrol-27440","name":"Scarlet Torturer Patrol","speed":1.15,"pathId":274400,"formationSource":"database-solo","spawnMask":1,"waypoints":[[1229.3727,7.6306,850.0167],[1227.7827,7.6306,872.2067],[1190.4727,7.6306,873.3167],[1182.1527,6.9601,873.3267],[1182.3727,6.9601,890.4867],[1182.1527,6.9601,873.3267],[1190.4727,7.6306,873.3167],[1205.4827,7.6303,874.6067],[1208.8827,7.6303,851.0167]],"members":[{"id":"member","entityId":"entry-4306","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40015","name":"Scarlet Wizard Patrol","speed":1.15,"pathId":400150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[933.2827,30.4423,173.3967],[933.6527,30.4416,223.7967]],"members":[{"id":"member","entityId":"entry-4300","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40034","name":"Scarlet Wizard Patrol","speed":1.15,"pathId":400340,"formationSource":"database-solo","spawnMask":1,"waypoints":[[891.1727,30.4387,225.8567],[929.9727,30.4459,225.8367]],"members":[{"id":"member","entityId":"entry-4300","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40047","name":"Scarlet Gallant Patrol","speed":1.15,"pathId":400470,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2638.1997,19.3407,-710.2793],[2638.2747,19.3407,-753.8393]],"members":[{"id":"member","entityId":"entry-4287","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40058","name":"Scarlet Adept Patrol","speed":1.15,"pathId":400580,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2582.5697,18.6704,-708.5203],[2582.0297,18.6704,-682.7813],[2575.7807,18.6704,-656.9343],[2582.0297,18.6704,-682.7813]],"members":[{"id":"member","entityId":"entry-4296","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40068","name":"Scarlet Beastmaster Patrol","speed":1.15,"pathId":400680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2583.5087,18.6703,-708.3003],[2590.0407,19.3407,-708.5643],[2638.6087,19.3407,-708.1263],[2590.0407,19.3407,-708.5643]],"members":[{"id":"member","entityId":"entry-4288","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40082","name":"Scarlet Gallant Patrol","speed":1.15,"pathId":400820,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2636.2797,19.3407,-753.7693],[2593.4177,19.3407,-753.7913]],"members":[{"id":"member","entityId":"entry-4287","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40098","name":"Scarlet Chaplain Patrol","speed":1.15,"pathId":400980,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2729.6597,20.2176,-644.4923],[2692.1187,20.2064,-644.3703],[2689.7127,18.6738,-644.3933],[2679.9417,18.6738,-644.4833],[2679.8317,18.6738,-688.4213],[2679.9417,18.6738,-644.4833],[2689.7127,18.6738,-644.3933],[2692.1187,20.2064,-644.3703]],"members":[{"id":"member","entityId":"entry-4299","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40109","name":"Scarlet Monk Patrol","speed":1.15,"pathId":401090,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2779.5487,18.6743,-644.5073],[2779.8757,18.6743,-695.9583],[2779.8567,18.6743,-728.2073],[2779.8757,18.6743,-695.9583]],"members":[{"id":"member","entityId":"entry-4540","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40125","name":"Scarlet Soldier Patrol","speed":1.15,"pathId":401250,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2730.9857,18.8174,734.5467],[2731.4517,18.8174,799.5267]],"members":[{"id":"member","entityId":"entry-4286","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40129","name":"Scarlet Soldier Patrol","speed":1.15,"pathId":401290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2706.7057,18.1629,740.5767],[2714.0927,18.1629,792.2467]],"members":[{"id":"member","entityId":"entry-4286","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40138","name":"Scarlet Soldier Patrol","speed":1.15,"pathId":401380,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2689.1027,18.8174,800.6267],[2725.8827,18.8183,800.5667]],"members":[{"id":"member","entityId":"entry-4286","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-40151","name":"Scarlet Protector Patrol","speed":1.15,"pathId":401510,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2759.4587,8.1511,867.2867],[2733.3957,8.1511,868.2967]],"members":[{"id":"member","entityId":"entry-4292","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-89064","name":"Scarlet Evoker Patrol","speed":1.15,"pathId":890640,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2777.3037,8.1511,893.5467],[2759.9467,8.1511,893.7167],[2760.0007,8.1511,871.4367],[2759.9467,8.1511,893.7167]],"members":[{"id":"member","entityId":"entry-4289","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-89071","name":"Scarlet Evoker Patrol","speed":1.15,"pathId":890710,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2777.3897,18.8172,940.6367],[2738.2317,18.8175,941.5767],[2737.3337,18.8174,964.9867],[2738.2317,18.8175,941.5767]],"members":[{"id":"member","entityId":"entry-4289","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-89096","name":"Scarlet Evoker Patrol","speed":1.15,"pathId":890960,"formationSource":"database-solo","spawnMask":1,"waypoints":[[2719.6267,18.1477,1015.4667],[2746.0807,18.1477,1014.8767]],"members":[{"id":"member","entityId":"entry-4289","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-39934","name":"Bloodmage Thalnos","position":[933.9027,-7.7777,910.8167]},{"id":"creature-40088","name":"Houndmaster Loksey","position":[2611.4817,18.7695,-789.5853]},{"id":"creature-40124","name":"Arcanist Doan","position":[2779.3047,18.626,-761.2033]},{"id":"creature-89097","name":"Herod","position":[2782.2197,6.4004,1055.5667]},{"id":"creature-39946","name":"High Inquisitor Whitemane","position":[951.5427,29.2327,292.6067]}],"objectiveOrder":[{"id":"creature-39934","name":"Bloodmage Thalnos","position":[933.9027,-7.7777,910.8167]},{"id":"creature-40088","name":"Houndmaster Loksey","position":[2611.4817,18.7695,-789.5853]},{"id":"creature-40124","name":"Arcanist Doan","position":[2779.3047,18.626,-761.2033]},{"id":"creature-89097","name":"Herod","position":[2782.2197,6.4004,1055.5667]},{"id":"creature-39946","name":"High Inquisitor Whitemane","position":[951.5427,29.2327,292.6067]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11870,"id":75299,"map":189,"orientation":-1.55334,"phaseMask":1,"position_x":1762.11,"position_y":1153.56,"position_z":7.49028,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11871,"id":1624,"map":189,"orientation":1.6057,"phaseMask":1,"position_x":1776.21,"position_y":1224.47,"position_z":17.5028,"rotation0":0,"rotation1":0,"rotation2":0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11872,"id":75299,"map":189,"orientation":2.80998,"phaseMask":1,"position_x":1847.77,"position_y":1276.34,"position_z":18.1573,"rotation0":0,"rotation1":0,"rotation2":0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11873,"id":1628,"map":189,"orientation":0.174533,"phaseMask":1,"position_x":1756.58,"position_y":1345.03,"position_z":19.7123,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11874,"id":1624,"map":189,"orientation":-1.06465,"phaseMask":1,"position_x":1739.89,"position_y":1377.57,"position_z":17.521,"rotation0":0,"rotation1":0,"rotation2":-0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11875,"id":104591,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1069.95,"position_y":1399.14,"position_z":30.7956,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11876,"id":97700,"map":189,"orientation":-1.5708,"phaseMask":1,"position_x":1167.79,"position_y":1347.26,"position_z":31.5494,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11877,"id":104600,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1173.01,"position_y":1398.91,"position_z":31.9723,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11878,"id":2046,"map":189,"orientation":0.645772,"phaseMask":1,"position_x":914.585,"position_y":1382.04,"position_z":18.0142,"rotation0":0,"rotation1":0,"rotation2":0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11879,"id":2046,"map":189,"orientation":2.75762,"phaseMask":1,"position_x":1003.95,"position_y":1362.73,"position_z":27.3063,"rotation0":0,"rotation1":0,"rotation2":0.981627,"rotation3":0.190809,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11880,"id":2041,"map":189,"orientation":0.401426,"phaseMask":1,"position_x":997.603,"position_y":1402.26,"position_z":27.1362,"rotation0":0,"rotation1":0,"rotation2":0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11881,"id":104589,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1073.91,"position_y":1405.92,"position_z":30.2722,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11882,"id":165622,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1161.39,"position_y":1375.41,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11883,"id":165623,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1163.24,"position_y":1375.41,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11884,"id":165624,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1165.07,"position_y":1375.41,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11885,"id":165631,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1163.25,"position_y":1422.59,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11886,"id":165626,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1165.07,"position_y":1372.93,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11887,"id":165627,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1161.39,"position_y":1372.93,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11888,"id":165628,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1163.25,"position_y":1425.97,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11889,"id":165630,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1165.1,"position_y":1425.97,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11890,"id":165629,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1161.42,"position_y":1425.97,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11891,"id":165632,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1165.1,"position_y":1422.59,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11892,"id":165633,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":1161.42,"position_y":1422.59,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":11893,"id":165625,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1163.24,"position_y":1372.93,"position_z":32.0802,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48632,"animprogress":255,"areaId":0,"guid":11894,"id":97701,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1169.03,"position_y":1345.63,"position_z":33.0456,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11895,"id":176667,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":222.625,"position_y":-285.836,"position_z":19.3069,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11896,"id":176665,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":219.111,"position_y":-285.836,"position_z":19.3069,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11897,"id":176666,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":217.263,"position_y":-285.836,"position_z":19.3069,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11898,"id":176668,"map":189,"orientation":4.71239,"phaseMask":1,"position_x":224.473,"position_y":-285.836,"position_z":19.3069,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11899,"id":75299,"map":189,"orientation":2.51327,"phaseMask":1,"position_x":223.898,"position_y":-292.728,"position_z":19.1996,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11900,"id":2042,"map":189,"orientation":2.00713,"phaseMask":1,"position_x":191.442,"position_y":-254.219,"position_z":18.7887,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11901,"id":20726,"map":189,"orientation":2.67035,"phaseMask":1,"position_x":238.548,"position_y":-307.686,"position_z":21.4263,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11902,"id":175738,"map":189,"orientation":0.401426,"phaseMask":1,"position_x":238.811,"position_y":-305.724,"position_z":21.4395,"rotation0":0,"rotation1":0,"rotation2":0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11903,"id":175739,"map":189,"orientation":2.68781,"phaseMask":1,"position_x":270.507,"position_y":-305.725,"position_z":21.437,"rotation0":0,"rotation1":0,"rotation2":0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11904,"id":2041,"map":189,"orientation":-2.47837,"phaseMask":1,"position_x":120.013,"position_y":-263.813,"position_z":18.5465,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11905,"id":176681,"map":189,"orientation":4.99164,"phaseMask":1,"position_x":251.672,"position_y":-346.867,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798636,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11906,"id":176686,"map":189,"orientation":1.12574,"phaseMask":1,"position_x":251.752,"position_y":-375.464,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.533614,"rotation3":0.845728,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11907,"id":176680,"map":189,"orientation":4.26733,"phaseMask":1,"position_x":256.717,"position_y":-346.867,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.845727,"rotation3":0.533616,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":11908,"id":175753,"map":189,"orientation":0.261799,"phaseMask":1,"position_x":249.214,"position_y":-369.016,"position_z":20.4024,"rotation0":0,"rotation1":0,"rotation2":0.130526,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11909,"id":176683,"map":189,"orientation":4.99164,"phaseMask":1,"position_x":273.072,"position_y":-347.144,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798636,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":11910,"id":176675,"map":189,"orientation":4.26733,"phaseMask":1,"position_x":256.717,"position_y":-382.901,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.845727,"rotation3":0.533616,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12530,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":1006.26,"position_y":1378.22,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12531,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":1007.67,"position_y":1420.25,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12532,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":1015.81,"position_y":1413.2,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12533,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":1016.31,"position_y":1385.57,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12534,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":930.253,"position_y":1410.02,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12535,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":930.58,"position_y":1390.51,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12536,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":937.726,"position_y":1390.33,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12537,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":938.155,"position_y":1410.31,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12538,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":945.658,"position_y":1410.39,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12539,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":945.698,"position_y":1389.98,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12540,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":954.622,"position_y":1410.24,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12541,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":954.755,"position_y":1389.91,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12542,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":962.285,"position_y":1403.81,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12543,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":962.465,"position_y":1395.05,"position_z":18.6324,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12544,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":978.132,"position_y":1406.84,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12545,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":978.205,"position_y":1391.7,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12546,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":986.471,"position_y":1406.73,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12547,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":986.602,"position_y":1391.99,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12548,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":995.073,"position_y":1391.92,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12549,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":995.073,"position_y":1406.61,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12550,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":999.352,"position_y":1411.55,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":12551,"id":181354,"map":189,"orientation":3.76991,"phaseMask":1,"position_x":999.707,"position_y":1386.05,"position_z":27.2643,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":13436,"id":176676,"map":189,"orientation":4.99164,"phaseMask":1,"position_x":251.672,"position_y":-382.901,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798636,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":15006,"id":176684,"map":189,"orientation":1.12574,"phaseMask":1,"position_x":273.152,"position_y":-375.741,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.533614,"rotation3":0.845728,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":15007,"id":176682,"map":189,"orientation":4.26733,"phaseMask":1,"position_x":278.117,"position_y":-347.144,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.845727,"rotation3":0.533616,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":15008,"id":19284,"map":189,"orientation":-0.610865,"phaseMask":1,"position_x":281.39,"position_y":-352.262,"position_z":20.4047,"rotation0":0,"rotation1":0,"rotation2":-0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":15032,"id":75296,"map":189,"orientation":3.05433,"phaseMask":1,"position_x":277.401,"position_y":-365.671,"position_z":20.3969,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":796,"guid":15043,"id":21581,"map":189,"orientation":2.93215,"phaseMask":1,"position_x":280.905,"position_y":-354.204,"position_z":20.4015,"rotation0":0,"rotation1":0,"rotation2":0.994522,"rotation3":0.10453,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":796},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32221,"id":176685,"map":189,"orientation":1.85005,"phaseMask":1,"position_x":278.197,"position_y":-375.741,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.798635,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32222,"id":176678,"map":189,"orientation":4.99164,"phaseMask":1,"position_x":273.075,"position_y":-382.734,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798636,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32223,"id":176677,"map":189,"orientation":4.26733,"phaseMask":1,"position_x":278.12,"position_y":-382.734,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":-0.845727,"rotation3":0.533616,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32224,"id":176690,"map":189,"orientation":3.42085,"phaseMask":1,"position_x":203.57,"position_y":-415.723,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":-0.990268,"rotation3":0.139175,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32225,"id":176687,"map":189,"orientation":5.83813,"phaseMask":1,"position_x":174.973,"position_y":-415.803,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":-0.220696,"rotation3":0.975343,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32226,"id":176689,"map":189,"orientation":2.69653,"phaseMask":1,"position_x":203.57,"position_y":-420.768,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":0.975342,"rotation3":0.2207,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32227,"id":176674,"map":189,"orientation":1.85005,"phaseMask":1,"position_x":256.797,"position_y":-411.498,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.798635,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32228,"id":176673,"map":189,"orientation":1.12574,"phaseMask":1,"position_x":251.752,"position_y":-411.498,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.533614,"rotation3":0.845728,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32229,"id":175758,"map":189,"orientation":-0.628319,"phaseMask":1,"position_x":260.621,"position_y":-418.135,"position_z":18.5252,"rotation0":0,"rotation1":0,"rotation2":-0.309017,"rotation3":0.951056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32230,"id":175730,"map":189,"orientation":2.19912,"phaseMask":1,"position_x":254.067,"position_y":-412.484,"position_z":20.4127,"rotation0":0,"rotation1":0,"rotation2":0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32231,"id":175756,"map":189,"orientation":-2.42601,"phaseMask":1,"position_x":219.355,"position_y":-423.785,"position_z":19.8973,"rotation0":0,"rotation1":0,"rotation2":-0.936673,"rotation3":0.350206,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32232,"id":21582,"map":189,"orientation":2.1293,"phaseMask":1,"position_x":244.774,"position_y":-423.123,"position_z":19.8917,"rotation0":0,"rotation1":0,"rotation2":0.874619,"rotation3":0.48481,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32233,"id":176679,"map":189,"orientation":1.12574,"phaseMask":1,"position_x":273.155,"position_y":-411.331,"position_z":20.4242,"rotation0":0,"rotation1":0,"rotation2":0.533614,"rotation3":0.845728,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32234,"id":175734,"map":189,"orientation":2.14675,"phaseMask":1,"position_x":274.557,"position_y":-411.359,"position_z":20.4126,"rotation0":0,"rotation1":0,"rotation2":0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32235,"id":175727,"map":189,"orientation":0.925024,"phaseMask":1,"position_x":266.258,"position_y":-432.047,"position_z":19.8889,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32236,"id":19283,"map":189,"orientation":-1.69297,"phaseMask":1,"position_x":277.481,"position_y":-425.391,"position_z":20.0659,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32237,"id":103664,"map":189,"orientation":-1.6057,"phaseMask":1,"position_x":277.586,"position_y":-429.488,"position_z":21.4194,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32238,"id":176691,"map":189,"orientation":2.69653,"phaseMask":1,"position_x":203.737,"position_y":-442.172,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":0.975342,"rotation3":0.2207,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32239,"id":176692,"map":189,"orientation":3.42085,"phaseMask":1,"position_x":203.737,"position_y":-437.126,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":-0.990268,"rotation3":0.139175,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32240,"id":176688,"map":189,"orientation":0.279252,"phaseMask":1,"position_x":174.973,"position_y":-420.848,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":0.139173,"rotation3":0.990268,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32241,"id":176693,"map":189,"orientation":5.83813,"phaseMask":1,"position_x":175.14,"position_y":-437.206,"position_z":18.8796,"rotation0":0,"rotation1":0,"rotation2":-0.220696,"rotation3":0.975343,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32242,"id":176672,"map":189,"orientation":3.50812,"phaseMask":1,"position_x":159.126,"position_y":-413.112,"position_z":18.5772,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32243,"id":175749,"map":189,"orientation":1.18682,"phaseMask":1,"position_x":160.654,"position_y":-440.271,"position_z":19.8477,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32244,"id":175761,"map":189,"orientation":-0.925024,"phaseMask":1,"position_x":147.959,"position_y":-412.862,"position_z":19.8459,"rotation0":0,"rotation1":0,"rotation2":-0.446198,"rotation3":0.894934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32245,"id":176669,"map":189,"orientation":0.0698136,"phaseMask":1,"position_x":130.5,"position_y":-434.093,"position_z":18.5772,"rotation0":0,"rotation1":0,"rotation2":0.0348997,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32246,"id":176670,"map":189,"orientation":5.41925,"phaseMask":1,"position_x":130.781,"position_y":-431.062,"position_z":18.5772,"rotation0":0,"rotation1":0,"rotation2":-0.418659,"rotation3":0.908143,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32247,"id":103821,"map":189,"orientation":0.017453,"phaseMask":1,"position_x":131.826,"position_y":-432.618,"position_z":18.5158,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":32248,"id":176671,"map":189,"orientation":0,"phaseMask":1,"position_x":147.215,"position_y":-412.032,"position_z":18.5674,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32249,"id":175754,"map":189,"orientation":-0.349066,"phaseMask":1,"position_x":146.443,"position_y":-444.578,"position_z":19.8542,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32250,"id":101854,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1933.69,"position_y":-431.654,"position_z":18.671,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32251,"id":2042,"map":189,"orientation":0.453786,"phaseMask":1,"position_x":1651.94,"position_y":-371.805,"position_z":18.0233,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32252,"id":75300,"map":189,"orientation":0.034907,"phaseMask":1,"position_x":1684.87,"position_y":-345.412,"position_z":18.0233,"rotation0":0,"rotation1":0,"rotation2":0.0174526,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32253,"id":3704,"map":189,"orientation":-1.85005,"phaseMask":1,"position_x":1745.17,"position_y":-357.994,"position_z":8.01148,"rotation0":0,"rotation1":0,"rotation2":-0.798636,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32254,"id":3703,"map":189,"orientation":-1.51844,"phaseMask":1,"position_x":1771.76,"position_y":-377.259,"position_z":8.01092,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32255,"id":103820,"map":189,"orientation":-1.78024,"phaseMask":1,"position_x":1895.6,"position_y":-416.358,"position_z":19.2626,"rotation0":0,"rotation1":0,"rotation2":-0.777147,"rotation3":0.629319,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32256,"id":103820,"map":189,"orientation":-1.0821,"phaseMask":1,"position_x":1905.72,"position_y":-414.568,"position_z":19.0876,"rotation0":0,"rotation1":0,"rotation2":-0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32257,"id":103820,"map":189,"orientation":2.63545,"phaseMask":1,"position_x":1899.35,"position_y":-415.707,"position_z":19.2136,"rotation0":0,"rotation1":0,"rotation2":0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32258,"id":103820,"map":189,"orientation":-2.33874,"phaseMask":1,"position_x":1897.99,"position_y":-416.516,"position_z":19.2,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32259,"id":103820,"map":189,"orientation":-1.62316,"phaseMask":1,"position_x":1906.05,"position_y":-416.476,"position_z":19.2964,"rotation0":0,"rotation1":0,"rotation2":-0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32260,"id":101855,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1939.48,"position_y":-427.998,"position_z":17.0815,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32261,"id":175778,"map":189,"orientation":-0.523598,"phaseMask":1,"position_x":1945.12,"position_y":-420.068,"position_z":15.5816,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32262,"id":175772,"map":189,"orientation":0.514872,"phaseMask":1,"position_x":1945.1,"position_y":-443.14,"position_z":15.5829,"rotation0":0,"rotation1":0,"rotation2":0.254602,"rotation3":0.967046,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32263,"id":175771,"map":189,"orientation":-1.09083,"phaseMask":1,"position_x":1954.54,"position_y":-411.113,"position_z":14.5238,"rotation0":0,"rotation1":0,"rotation2":-0.518773,"rotation3":0.854912,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32264,"id":97803,"map":189,"orientation":-0.383973,"phaseMask":1,"position_x":1951.83,"position_y":-426.404,"position_z":6.29011,"rotation0":0,"rotation1":0,"rotation2":-0.190809,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32265,"id":97801,"map":189,"orientation":0.36652,"phaseMask":1,"position_x":1951.79,"position_y":-436.72,"position_z":6.29011,"rotation0":0,"rotation1":0,"rotation2":0.182236,"rotation3":0.983255,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32266,"id":175777,"map":189,"orientation":-1.5708,"phaseMask":1,"position_x":1965.05,"position_y":-408.534,"position_z":12.5446,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32267,"id":97802,"map":189,"orientation":2.46964,"phaseMask":1,"position_x":1972.01,"position_y":-437.26,"position_z":6.29011,"rotation0":0,"rotation1":0,"rotation2":0.944089,"rotation3":0.329691,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32268,"id":175780,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1965.08,"position_y":-454.683,"position_z":12.5446,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32269,"id":175773,"map":189,"orientation":2.08567,"phaseMask":1,"position_x":1976.57,"position_y":-451.619,"position_z":12.5446,"rotation0":0,"rotation1":0,"rotation2":0.863836,"rotation3":0.503773,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32270,"id":175775,"map":189,"orientation":-2.09439,"phaseMask":1,"position_x":1976.6,"position_y":-411.61,"position_z":12.5438,"rotation0":0,"rotation1":0,"rotation2":-0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32271,"id":175776,"map":189,"orientation":1.07338,"phaseMask":1,"position_x":1954.42,"position_y":-452.057,"position_z":14.5107,"rotation0":0,"rotation1":0,"rotation2":0.511294,"rotation3":0.859406,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32272,"id":175781,"map":189,"orientation":-2.62672,"phaseMask":1,"position_x":1985.06,"position_y":-420.051,"position_z":12.5317,"rotation0":0,"rotation1":0,"rotation2":-0.967046,"rotation3":0.254602,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32273,"id":175779,"map":189,"orientation":3.14159,"phaseMask":1,"position_x":1988.16,"position_y":-431.608,"position_z":12.5446,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32274,"id":175774,"map":189,"orientation":2.61799,"phaseMask":1,"position_x":1985.06,"position_y":-443.161,"position_z":12.5446,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39805,"id":186269,"map":189,"orientation":3.4034,"phaseMask":1,"position_x":1774.87,"position_y":1347.73,"position_z":17.9662,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39806,"id":186269,"map":189,"orientation":2.33874,"phaseMask":1,"position_x":1774.77,"position_y":1349.65,"position_z":18.0742,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39807,"id":186269,"map":189,"orientation":4.81711,"phaseMask":1,"position_x":1776.55,"position_y":1346.47,"position_z":17.9903,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39808,"id":186269,"map":189,"orientation":1.5708,"phaseMask":1,"position_x":1776.73,"position_y":1350.71,"position_z":18.2772,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39809,"id":186269,"map":189,"orientation":5.70723,"phaseMask":1,"position_x":1778.53,"position_y":1347.8,"position_z":18.1645,"rotation0":0,"rotation1":0,"rotation2":-0.284015,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39810,"id":186269,"map":189,"orientation":0.331611,"phaseMask":1,"position_x":1778.41,"position_y":1349.91,"position_z":18.2217,"rotation0":0,"rotation1":0,"rotation2":0.165047,"rotation3":0.986286,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":39811,"id":186269,"map":189,"orientation":0.0698117,"phaseMask":1,"position_x":1765.26,"position_y":1347.54,"position_z":17.5504,"rotation0":0,"rotation1":0,"rotation2":0.0348988,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":39812,"id":186328,"map":189,"orientation":0.575957,"phaseMask":1,"position_x":1777.72,"position_y":1349.6,"position_z":18.2638,"rotation0":0,"rotation1":0,"rotation2":0.284015,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":39813,"id":186328,"map":189,"orientation":4.72984,"phaseMask":1,"position_x":1775.78,"position_y":1346.66,"position_z":18.0012,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":39814,"id":186328,"map":189,"orientation":0.0174525,"phaseMask":1,"position_x":1777.65,"position_y":1347.4,"position_z":18.1198,"rotation0":0,"rotation1":0,"rotation2":0.00872612,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":54946,"id":186327,"map":189,"orientation":4.62512,"phaseMask":1,"position_x":1776.36,"position_y":1348.66,"position_z":17.4133,"rotation0":0,"rotation1":0,"rotation2":-0.737277,"rotation3":0.675591,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":54947,"id":186267,"map":189,"orientation":6.14356,"phaseMask":1,"position_x":1776.44,"position_y":1348.63,"position_z":19.51,"rotation0":0,"rotation1":0,"rotation2":-0.0697556,"rotation3":0.997564,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":54948,"id":186314,"map":189,"orientation":5.00909,"phaseMask":1,"position_x":1762.91,"position_y":1347.56,"position_z":17.5611,"rotation0":0,"rotation1":0,"rotation2":-0.594823,"rotation3":0.803857,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63384,"id":1624,"map":189,"orientation":0.226892,"phaseMask":1,"position_x":1746.37,"position_y":1410.68,"position_z":22.1887,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63409,"id":1628,"map":189,"orientation":-2.68781,"phaseMask":1,"position_x":1796.03,"position_y":1417.5,"position_z":14.4893,"rotation0":0,"rotation1":0,"rotation2":-0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64019,"id":2042,"map":189,"orientation":-1.20428,"phaseMask":1,"position_x":1651.27,"position_y":-346.265,"position_z":18.1489,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64020,"id":2042,"map":189,"orientation":-0.593412,"phaseMask":1,"position_x":166.831,"position_y":-253.104,"position_z":19.0757,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64072,"id":2046,"map":189,"orientation":1.37881,"phaseMask":1,"position_x":944.069,"position_y":1421.18,"position_z":18.0233,"rotation0":0,"rotation1":0,"rotation2":0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64073,"id":2046,"map":189,"orientation":-0.261798,"phaseMask":1,"position_x":1037.43,"position_y":1401.24,"position_z":27.3085,"rotation0":0,"rotation1":0,"rotation2":-0.130525,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79203,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1000.33,"position_y":1449.26,"position_z":33.2207,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79204,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1000.46,"position_y":1348.97,"position_z":33.1527,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79205,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1008,"position_y":1348.97,"position_z":33.1856,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79206,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1008.14,"position_y":1449.26,"position_z":33.2373,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79207,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1015.94,"position_y":1449.26,"position_z":33.2645,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79208,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1016.01,"position_y":1348.97,"position_z":33.1771,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79209,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1023.71,"position_y":1348.97,"position_z":33.207,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79210,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1023.88,"position_y":1449.26,"position_z":33.2421,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79211,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1031.69,"position_y":1449.26,"position_z":33.2872,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79212,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1031.7,"position_y":1348.97,"position_z":33.2032,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79213,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":1039.41,"position_y":1348.97,"position_z":33.2153,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79214,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":1039.47,"position_y":1449.26,"position_z":33.2382,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79215,"id":181393,"map":189,"orientation":6.12611,"phaseMask":1,"position_x":895.562,"position_y":1375.65,"position_z":22.6461,"rotation0":0,"rotation1":0,"rotation2":-0.0784588,"rotation3":0.996917,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79216,"id":181393,"map":189,"orientation":6.12611,"phaseMask":1,"position_x":895.566,"position_y":1422.57,"position_z":22.5988,"rotation0":0,"rotation1":0,"rotation2":-0.0784588,"rotation3":0.996917,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79217,"id":181393,"map":189,"orientation":6.12611,"phaseMask":1,"position_x":895.569,"position_y":1383.49,"position_z":22.56,"rotation0":0,"rotation1":0,"rotation2":-0.0784588,"rotation3":0.996917,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79218,"id":181393,"map":189,"orientation":6.12611,"phaseMask":1,"position_x":895.585,"position_y":1414.74,"position_z":22.4544,"rotation0":0,"rotation1":0,"rotation2":-0.0784588,"rotation3":0.996917,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79219,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":905.049,"position_y":1432.08,"position_z":22.5227,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79220,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":912.792,"position_y":1432.08,"position_z":22.5428,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79221,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":912.925,"position_y":1366.14,"position_z":22.6271,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79222,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":920.63,"position_y":1432.09,"position_z":22.6049,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79223,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":920.665,"position_y":1366.14,"position_z":22.6091,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79224,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":928.472,"position_y":1432.09,"position_z":22.6326,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79225,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":928.547,"position_y":1366.13,"position_z":22.7076,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79226,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":936.325,"position_y":1366.13,"position_z":22.7679,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79227,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":936.325,"position_y":1432.08,"position_z":22.574,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79228,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":944.184,"position_y":1432.08,"position_z":22.5802,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79229,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":944.266,"position_y":1366.13,"position_z":22.7776,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79230,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":951.922,"position_y":1366.14,"position_z":22.6842,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79231,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":951.969,"position_y":1432.08,"position_z":22.5037,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79232,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":959.875,"position_y":1432.08,"position_z":22.5805,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79233,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":959.887,"position_y":1366.13,"position_z":22.72,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79234,"id":181393,"map":189,"orientation":4.67748,"phaseMask":1,"position_x":992.372,"position_y":1449.25,"position_z":33.072,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50129,"animprogress":255,"areaId":0,"guid":79235,"id":181393,"map":189,"orientation":1.43117,"phaseMask":1,"position_x":992.42,"position_y":1348.97,"position_z":33.1554,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a","clientArchiveHashes":{"common-2.mpq/World/Maps/MonasteryInstances":"8183157df6ef8132a20ebb01ee3a33f2e41adb888f025b12cf49c6945a3d5107","patch/World/maps/MonasteryInstances":"7015504c030a8308daa6dc43ca30d13d7297a50f1d118867c6b5d75442157d57","patch-WB1/world/maps/MonasteryInstances":"92e103f5b0631ad9cd6301e7c26e316dd9c179a5d1ab420af5d8ad5d472f3aa4"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/scarlet-monastery/source-snapshot.json","coordinateTransform":"three(x,y,z)=(-wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["37/37 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"zulfarrak","title":"Zul'Farrak","mapId":209,"lfgDungeonIds":[24],"expansion":"classic","environmentMode":"adt-hybrid","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[40,54]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Zul'Farrak","theme":"Open-world expedition","summary":"Fight through Zul'Farrak, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Zul'Farrak...","unchartedAreaName":"Uncharted Zul'Farrak","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1404.45},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/209-tanarisinstance/visual.glb","checksum":"a45ad3ad072fce73d657fb668cab691fc87059a8a0701630465249ce8670d8f0","size":26122864,"triangleCount":1630153}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-000.glb","checksum":"58737b57663dd73b828e2ca80fcc1c7e548ddae72be9473bfdb85998778fa232","size":190412,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-001.glb","checksum":"b5aacda77fdab384e038c9f725672c21adbc6e7eba323a8af154c18e970eb6d6","size":43508,"triangleCount":1027},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-002.glb","checksum":"efac28c0e971def89f429a45e2ca5fb993f7d01f018003e7108a1cffa4ef8604","size":37672,"triangleCount":684},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-003.glb","checksum":"86e161edf7f9b16d2687b24cb83d6658de43d1b5f5c162a8688af16e7ea1d0ff","size":37652,"triangleCount":684},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-004.glb","checksum":"de85b394dc6d50433905c377d97c2a894540a908e866e44b9a85054f1d3a2feb","size":37708,"triangleCount":684},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-005.glb","checksum":"4de105f5c55e0cf0f4e25e08435a6a934367211d1944eba485412d874d53f76c","size":37596,"triangleCount":684},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-006.glb","checksum":"de7441c632aee009148e43a272b197f4688d3755f900596f071ac95ad9064409","size":33564,"triangleCount":324},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-007.glb","checksum":"61178557e4663f255d831cc57e18ec68ff15e60514ddf549afa7fb55a1b7b865","size":52816,"triangleCount":1983},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-008.glb","checksum":"d8d7c079b71e91025e9b137a7054e19161dee2b0818053c002c4829f23cb7b95","size":186064,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-009.glb","checksum":"a4b47773fdd6828727c300cbbe0a0fe77d352b99b60f04f45fe9a800661a5e40","size":34984,"triangleCount":737},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-010.glb","checksum":"7bb043fb3179dceeebf9f236f0f8bfad264e16fdf3e1cfd847ff0d6d2992639a","size":35012,"triangleCount":737},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-011.glb","checksum":"6984ad4a4671009db677fb73f3ecb52f205aea620273d14a743f9bc9e77b3f33","size":50112,"triangleCount":1722},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-012.glb","checksum":"e060e9478585d9a28c954e08c5734e97730f40607cb2fdf4dc773401eccafb79","size":50108,"triangleCount":1722},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-013.glb","checksum":"d82a6fe0724faa2e80053fb7b6bcb5dc6892a1d442f90128b246a83502ea3936","size":50104,"triangleCount":1722},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-014.glb","checksum":"d4680580167b9958109ccbc6923399ee43f016d8438359a14d1331c6ac120210","size":50112,"triangleCount":1722},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-015.glb","checksum":"e9bec24f4092282a6f1dde794fc1abc8464583f34b285bf8a7a613c5c2523349","size":50164,"triangleCount":1722},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-016.glb","checksum":"901c88083c8fc41212d937e7931a8f1255a6c0ac55917f99aaa84655bc7fe18f","size":50156,"triangleCount":1722},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-017.glb","checksum":"46b9f4f9b7108709c041bf31d5edfecfbba0e96381aa1df9735ccb0c1e7b5cfb","size":50172,"triangleCount":1722},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-018.glb","checksum":"9cb7191851656cff1df6ee97c2b2729e187e403527fe25cbe04ba24e10f2b0d1","size":50152,"triangleCount":1722},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-019.glb","checksum":"e4898a2d981a59f6634748554ff26a6e3188f780991c629eae6ed3d5a3f5a714","size":110432,"triangleCount":8098},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-020.glb","checksum":"5bccf455ad1f05d6d204b66622e54275b695d31596bc9b281ff403cbea8de82f","size":95416,"triangleCount":5619},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-021.glb","checksum":"70cbb6d0114d32d247ce1962cef21dfc80baddb3f30fdc859b3a5216d43bd634","size":87484,"triangleCount":6133},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-022.glb","checksum":"893e94911ac23080407bc3165ebd12e3a6f497f8dde5587bf31b037973c8d76d","size":86212,"triangleCount":3437},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-023.glb","checksum":"d1b2d63da5c4911dbbd6194d6d3e785c4763c5c1f36e7de3aeabe4b0235b5814","size":89304,"triangleCount":5138},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-024.glb","checksum":"fdb9468b38974e30d4e150f39e7804138e1b9040343b5a31ede245020fe6dd06","size":34992,"triangleCount":737},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-025.glb","checksum":"fbe65d67f0e006f5613ee513ae7a71f66be5c3e6d31d1dc69f98077decec4675","size":192284,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-026.glb","checksum":"66e00cdebc6a2985588ae8db47b9e4c35f7dc69dac770b179dce5bfaea9b1f15","size":50128,"triangleCount":1722},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-027.glb","checksum":"82a29185cc49f23732e6f4efd07e32e779da9f19cea97e3c99b2a15ad2403748","size":50176,"triangleCount":1722},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-028.glb","checksum":"231fab5bbf47167ca737cad0d44df66f3a2b3b5766a9acd1d113864d26dbd836","size":50184,"triangleCount":1722},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-029.glb","checksum":"f8399aaf76002e85117a434006d5e8ce6103089c7a2c5e238b36775c0fce028d","size":50096,"triangleCount":1722},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-030.glb","checksum":"62a3b7ee67e65c0a8570a8a08ce8f33fccdf923dcf8d9239f6e08e3aca16e682","size":50148,"triangleCount":1722},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-031.glb","checksum":"f3e16382f6bdef2a525bf235d6df35cd1b01a6da4763ff02198e0a8ec7432cc6","size":45264,"triangleCount":1376},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-032.glb","checksum":"d1efbc9e159894c64756832cda3b70e7212a598d57df05ad9971b6599893a0a7","size":187664,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-033.glb","checksum":"9f9b2d9706cdd276f24a5b12f20bb5d07bc91ebdab5e4e9447ad45c10b05889d","size":185180,"triangleCount":64768},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-034.glb","checksum":"e0d3eeb250ffd74acb214f276b7cdf08194984ba4c26b9f04803ff0ac5b6ee5b","size":306444,"triangleCount":24491},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-035.glb","checksum":"a1c39c6f1aaa2986f54b578d834b5a9631aa156981019942a6b017956a5117bd","size":417132,"triangleCount":36507},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-036.glb","checksum":"19ef36bfb8d029226e17d5b1aadf1df019188cecffdc2d3495d50f3999bea894","size":182988,"triangleCount":65024},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-037.glb","checksum":"426e016cf17766d0736bf6f746e2f0e56f9facb783ac97044f662b4d63f0ed19","size":139884,"triangleCount":65536},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-038.glb","checksum":"40100ad3787387192adce161ec406812ea7cd37f6d88ced3365e88f7a2ff2493","size":189256,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-039.glb","checksum":"42679285a0952e25f26e339ef4e5a5b328fffe44fb27cca94a5691a11c787100","size":184004,"triangleCount":65456},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-040.glb","checksum":"c4a184348ed67e507d5d7dbd77ade32cd4a5b1c1248f7ac1f92ebb88a371c6a7","size":34968,"triangleCount":737},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-041.glb","checksum":"d691404413de222c7aa179a749e5cf058ac7e02b58de3314be8f12d4e7d56306","size":35012,"triangleCount":737},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-042.glb","checksum":"13fa764bbf7b190e8141f487cb079b83666f00d96599da67e12484477b37bc80","size":35036,"triangleCount":737},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-043.glb","checksum":"3058313be1938a2511db66c830f28b382cfd354c19ede3a57123d779b09e0c09","size":50100,"triangleCount":1722},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-044.glb","checksum":"7d3fdcef115066f7cf4eafb12d6de36a452a5cafeae7a2ccfc0d08513997ccd7","size":50120,"triangleCount":1722},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-045.glb","checksum":"567ef13b41aa4926ea4626f5e28b020701a2c9cb10a28e07ace27ca3b1428253","size":50100,"triangleCount":1722},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-046.glb","checksum":"137de2fddfd55345af289d868a01ff21dbeca852283a84d5e17b268d4f17ee03","size":50120,"triangleCount":1722},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-047.glb","checksum":"272124959ba852b804e1e324c21968c03a8fd1239396750bffa38d12a66e51d8","size":50164,"triangleCount":1722},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-048.glb","checksum":"a6156b00a74341627f3b2104f5636c252fd405a14ad767d2d7630fe2d144ac6e","size":50176,"triangleCount":1722},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-049.glb","checksum":"d46ec59311fb48c0cfbdb4de17e4f26862b2f1d297744914be0c5114b3ef6417","size":61700,"triangleCount":3338},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-050.glb","checksum":"6c23c45b44a81e1c02ec4b6f18b7d0ec9346c5517b7cf04c789e68a56f8641e1","size":86384,"triangleCount":5549},{"id":"collision-051","fileName":"collision-051.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-051.glb","checksum":"beccd61ea14ece654733b45359c7dc9e4eab7ec645cd74a88245fcde76731177","size":82688,"triangleCount":4484},{"id":"collision-052","fileName":"collision-052.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-052.glb","checksum":"6577b398f1534109a8cf0f27b509b67d2d5311efa26345115346bfd96de07f3c","size":189308,"triangleCount":65536},{"id":"collision-053","fileName":"collision-053.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-053.glb","checksum":"c98568055da4bb00e9fd3169f40b827dd1a21431029ffe44b19c4efe56fbca75","size":34984,"triangleCount":737},{"id":"collision-054","fileName":"collision-054.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-054.glb","checksum":"6934db4d97da43522d8e177cef641ee84b4c036187f1b1c932f4f5e3af503110","size":35020,"triangleCount":737},{"id":"collision-055","fileName":"collision-055.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-055.glb","checksum":"e85a89c4c568cc8311d7fdd96f26738281a4b87398e12076552601dd2d7ffa4f","size":35020,"triangleCount":737},{"id":"collision-056","fileName":"collision-056.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-056.glb","checksum":"182660b091693bc02910bdb638cf062e61b6f05da0d6f058557ac2282bb6af06","size":50180,"triangleCount":1722},{"id":"collision-057","fileName":"collision-057.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-057.glb","checksum":"240fcdff808996594837277151b7c06084d31c24c8ed087309c5058d763dbe63","size":50160,"triangleCount":1722},{"id":"collision-058","fileName":"collision-058.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-058.glb","checksum":"8d2b8b20752c2d167202f3c86723cf685798be228ddc2bc6a4566bb7166e39e7","size":50168,"triangleCount":1722},{"id":"collision-059","fileName":"collision-059.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-059.glb","checksum":"971b23e003bb14360749ee81116210d1fef6a5ee54c4fb37a7aa982760f8f334","size":50128,"triangleCount":1722},{"id":"collision-060","fileName":"collision-060.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-060.glb","checksum":"4abbbb3ec7c824d1f5977ae28453f7a1f003c76b832c3dc8cdbef8ab943d0b3e","size":50184,"triangleCount":1722},{"id":"collision-061","fileName":"collision-061.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-061.glb","checksum":"afbf8096fd50d97550bd22aec35c75cfb7dc7b42f4fc3e417fa8fc9ee16f48a3","size":50116,"triangleCount":1722},{"id":"collision-062","fileName":"collision-062.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-062.glb","checksum":"4f462eac1495855d3e586799bda32b4b3fe853a1f5c266eb15dd78e2ce15c5de","size":50180,"triangleCount":1722},{"id":"collision-063","fileName":"collision-063.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-063.glb","checksum":"586bd9ec924ef0f1de8c4090c9ee0169ef28fd4af6c1b302a32af96c49b6f4ea","size":50096,"triangleCount":1722},{"id":"collision-064","fileName":"collision-064.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-064.glb","checksum":"1be5847e5f904b27a038271c4a35e9f9036a33b89f23cc4474b61f98deb97dc1","size":50168,"triangleCount":1722},{"id":"collision-065","fileName":"collision-065.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-065.glb","checksum":"c34cc360df4aa692a10f3089662e98aaa76616d2e5c6145cf3df7241a0c0ea37","size":50112,"triangleCount":1722},{"id":"collision-066","fileName":"collision-066.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-066.glb","checksum":"e91eb03f63becd1cc08f8eb392cab9262a1bf753fb6b3c45e957fa844fe26d60","size":50140,"triangleCount":1722},{"id":"collision-067","fileName":"collision-067.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-067.glb","checksum":"c9e14e9611ef19764b5960522b279cd87ef92ed1c2686882ce7fbe8ece05f004","size":50096,"triangleCount":1722},{"id":"collision-068","fileName":"collision-068.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-068.glb","checksum":"86ab4df723625d0a6185607f5a565b184b200765a6afc41b5740da9ad631edd6","size":50100,"triangleCount":1722},{"id":"collision-069","fileName":"collision-069.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-069.glb","checksum":"b1f5bb8533e0fff41107c4315d50405f6d1e8db54794a4fd8c60da51c8d0fb55","size":50140,"triangleCount":1722},{"id":"collision-070","fileName":"collision-070.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-070.glb","checksum":"08be59dd805ac2fa0bbb2e5714072c4d2a45ce239e7954448bec9f095a42c0da","size":50128,"triangleCount":1722},{"id":"collision-071","fileName":"collision-071.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-071.glb","checksum":"8cd098fdcc5a8a8a3e7a14a6eb9451ab3a6097ba19fe00433b6823b3a9c0e2a8","size":45252,"triangleCount":1376},{"id":"collision-072","fileName":"collision-072.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-072.glb","checksum":"066fc08d9e55225aa5e7004015bd3adb6cf897daac1b1c5160c6ef9c37b21b9c","size":45080,"triangleCount":1376},{"id":"collision-073","fileName":"collision-073.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-073.glb","checksum":"7587c39dacc98fa9e27f15ec65de9f42cdb604519a258d364d43c1049653f0b2","size":93376,"triangleCount":5935},{"id":"collision-074","fileName":"collision-074.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-074.glb","checksum":"c3b1e6335a4c4f752eba5cec8ef4f2256b92901ccdaf3070eecd02147511cd4c","size":42040,"triangleCount":1112},{"id":"collision-075","fileName":"collision-075.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-075.glb","checksum":"e3287de4f455839791084570e1c9f6331d319a5708f57fed194b8ade37bfa187","size":41864,"triangleCount":1112},{"id":"collision-076","fileName":"collision-076.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-076.glb","checksum":"1dcff1f672251ea631c299444fb19e1df171adc85e9515ce74749e5a86bcda30","size":47240,"triangleCount":1590},{"id":"collision-077","fileName":"collision-077.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-077.glb","checksum":"a1574115076b3994cb429023309f438dfa6d80d73c7d1bdffcafb40b24efd55d","size":51624,"triangleCount":1455},{"id":"collision-078","fileName":"collision-078.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-078.glb","checksum":"2a90ad2e1f813b34d6528193a344929255ff01a9cddadfbff87d93fb06e35422","size":180004,"triangleCount":65536},{"id":"collision-079","fileName":"collision-079.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-079.glb","checksum":"9ccebe5910e0e11b627e0bb3022c93758ea34bbb9be3ea037495aba9332ec4d1","size":34980,"triangleCount":737},{"id":"collision-080","fileName":"collision-080.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-080.glb","checksum":"e53dde1f854244234795a186520e8a9daa8593f4deb5402cda7e984a0581613b","size":34976,"triangleCount":737},{"id":"collision-081","fileName":"collision-081.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-081.glb","checksum":"7fe560c86498dab84883dcb85c11050e02d74017d9f6dc69291a5e65da1be5d1","size":51868,"triangleCount":1455},{"id":"collision-082","fileName":"collision-082.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-082.glb","checksum":"ba634fb75402ee64bdc5ed2716e07dc03b067a51c38734c01ff253a7793f5f63","size":51684,"triangleCount":1455},{"id":"collision-083","fileName":"collision-083.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-083.glb","checksum":"8471a0ca83bb7812591b0817c1e32add00e1fcb101cee932f2af889c3cbdba04","size":44288,"triangleCount":1214},{"id":"collision-084","fileName":"collision-084.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-084.glb","checksum":"e8fc9e3342a1747f0da7289fe33638f322ca94dc0a1c3fdc19e5b3df0e47cf7f","size":44148,"triangleCount":1214},{"id":"collision-085","fileName":"collision-085.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-085.glb","checksum":"bd886be83fb10ec169a4fe8a1a8e6c193d7d18409e8fcaf1cae67f17039545cf","size":182412,"triangleCount":65536},{"id":"collision-086","fileName":"collision-086.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-086.glb","checksum":"e9c765735dcf36190ebe81fcfaf3d3b78f893a5b6db586ee99d0590fdc7c2705","size":180232,"triangleCount":65440},{"id":"collision-087","fileName":"collision-087.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-087.glb","checksum":"c4907b165ad8a4f262ff9aa82a94d73eded61b136c5eef2b02283dd20e60400a","size":54772,"triangleCount":1888},{"id":"collision-088","fileName":"collision-088.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-088.glb","checksum":"17880771d4a909a61ec8d678af475c845c38d071c377412c7d0d6b15510a76ac","size":139840,"triangleCount":65536},{"id":"collision-089","fileName":"collision-089.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-089.glb","checksum":"a8f5a2aa583bfaffa667acf5f545edf3be7ef8e69257f6e38252f622dee2bda4","size":140812,"triangleCount":65536},{"id":"collision-090","fileName":"collision-090.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-090.glb","checksum":"d9f48025b710bc3d6a1ac7cab8afef79d7dcbd7d41de22ee0a878af798738ac9","size":163564,"triangleCount":65536},{"id":"collision-091","fileName":"collision-091.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-091.glb","checksum":"90e4dd576f278dfeda536db2cfd2ec005f1f188f1bdbb2738354df5423642535","size":179976,"triangleCount":65376},{"id":"collision-092","fileName":"collision-092.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-092.glb","checksum":"f7a46117e708d9656617a1513ead32fdc250055e3d34e66f8399221e6f542cf1","size":156652,"triangleCount":11276},{"id":"collision-093","fileName":"collision-093.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-093.glb","checksum":"9c048f2e1753c457c6c617a3f636c7c105175a0c85949290127dabb201652d77","size":182268,"triangleCount":65536},{"id":"collision-094","fileName":"collision-094.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-094.glb","checksum":"e822279716a12cc1476aa82c8c9fdb83a85ec738290dd263023331294cfdfee5","size":47948,"triangleCount":1254},{"id":"collision-095","fileName":"collision-095.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-095.glb","checksum":"373f99cbaad23b2ace52cd10355c6fdec602b84922fe2939a885b05526d09d92","size":47460,"triangleCount":1279},{"id":"collision-096","fileName":"collision-096.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-096.glb","checksum":"a909a1fb5feb078e48fd994b924d95f1615491aef99ab96f55809e290ce8fed1","size":184464,"triangleCount":65536},{"id":"collision-097","fileName":"collision-097.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-097.glb","checksum":"cb89a22ad3ed6227f602b28099a229848bedba6a9df7a188d8ebbfa2d72f9100","size":185004,"triangleCount":65536},{"id":"collision-098","fileName":"collision-098.glb","url":"/assets/game/manastorm/209-tanarisinstance/collision-098.glb","checksum":"1e9def5c001274548214bc325e980b8db229650926f3ceb78404b26211fabc7a","size":139872,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/209-tanarisinstance/navigation.glb","checksum":"ad9ae8e7f13bbbb0fb082dadbea4e3aaef333db9819c45cee230386c4705f2df","size":7536340,"triangleCount":657069}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-367.9113,88.2815,1147.5327],"max":[1582.7137,174.3149,2102.2078]},"entrance":{"name":"Zul'Farrak Entrance","footPosition":[125.3887,108.3347,1192.5327],"forward":[0.6887850435157022,0,0.7249656294122309],"yaw":0.7598118341286575},"areas":[{"id":"entrance","name":"Zul'Farrak Entrance","center":[125.3887,108.3347,1192.5327],"radius":35},{"id":"area-hydromancer-velratha","name":"Hydromancer Velratha's Encounter","center":[-243.7613,108.8225,1677.2527],"radius":42},{"id":"area-ghaz-rilla","name":"Ghaz'rilla's Encounter","center":[1105.6865,140.6188,1987.5295],"radius":42},{"id":"area-antu-sul","name":"Antu'sul's Encounter","center":[296.5867,114.4277,1794.8627],"radius":42},{"id":"area-witch-doctor-zum-rah","name":"Witch Doctor Zum'rah's Encounter","center":[-49.1313,111.0035,1891.1827],"radius":42},{"id":"area-chief-ukorz-sandscalp-ruuzlu","name":"Chief Ukorz Sandscalp & Ruuzlu's Encounter","center":[-50.3713,154.3149,1706.4927],"radius":42}],"entities":{"entry-7267":{"id":"entry-7267","kind":"boss","name":"Chief Ukorz Sandscalp","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11837","name":"Wide Slash","spellId":11837,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4597,"damageMultiplier":1.35},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4597,"damageMultiplier":0.82,"radius":11},{"id":"spell-34409","name":"Frenzy","spellId":34409,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4597,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-34409","durationMs":12000,"magnitude":0.25}},{"id":"spell-7366","name":"Berserker Stance","spellId":7366,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4597,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6439-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2894,"markerRadius":0.6905}}},"entry-7797":{"id":"entry-7797","kind":"mob","name":"Ruuzlu","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2600,"damageMultiplier":1},{"id":"spell-38959","name":"Execute","spellId":38959,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7223,"damageMultiplier":1.12},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":7223,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6687-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2894,"markerRadius":0.6905}}},"entry-7268":{"id":"entry-7268","kind":"mob","name":"Sandfury Guardian","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1700,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5854,"damageMultiplier":1.12},{"id":"spell-13518","name":"Poison","spellId":13518,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5854,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/91410fe76473ce1ac43daf2acee48c51da05084c27f58d11904d3c63faa51260.glb","rotationY":-1.5707963267948966,"groundOffset":0.3657,"labelHeight":1.6848,"markerRadius":3.5943}}},"entry-5650":{"id":"entry-5650","kind":"mob","name":"Sandfury Witch Doctor","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17843","name":"Flash Heal","spellId":17843,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5770,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6421-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5648":{"id":"entry-5648","kind":"mob","name":"Sandfury Shadowcaster","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5565,"damageMultiplier":1.12},{"id":"spell-14032","name":"Shadow Word: Pain","spellId":14032,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5565,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6419-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-5649":{"id":"entry-5649","kind":"mob","name":"Sandfury Blood Drinker","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11898","name":"Blood Leech","spellId":11898,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6783,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6423-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-8095":{"id":"entry-8095","kind":"mob","name":"Sul'lithuz Sandcrawler","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-7345-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.5478,"markerRadius":3.6493}}},"entry-7269":{"id":"entry-7269","kind":"mob","name":"Scarab","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3256","name":"Plague Cloud","spellId":3256,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4350,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-7470-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0009,"labelHeight":1.1344,"markerRadius":0.65}}},"entry-7246":{"id":"entry-7246","kind":"mob","name":"Sandfury Shadowhunter","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15547","name":"Shoot","spellId":15547,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5599,"damageMultiplier":1.12},{"id":"spell-11641","name":"Hex","spellId":11641,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5599,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6425-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-7247":{"id":"entry-7247","kind":"mob","name":"Sandfury Soul Eater","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11016","name":"Soul Bite","spellId":11016,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4544,"damageMultiplier":1.12},{"id":"spell-7154","name":"Dark Offering","spellId":7154,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4544,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6427-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-7272":{"id":"entry-7272","kind":"mob","name":"Theka the Martyr","combat":{"level":46,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-8600","name":"Fevered Plague","spellId":8600,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4587,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6696-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-8127":{"id":"entry-8127","kind":"boss","name":"Antu'sul","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5718,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-7353-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-8130":{"id":"entry-8130","kind":"mob","name":"Sul'lithuz Hatchling","combat":{"level":33,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-1073-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":0.7896,"markerRadius":0.7299}}},"entry-7271":{"id":"entry-7271","kind":"boss","name":"Witch Doctor Zum'rah","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12491","name":"Healing Wave","spellId":12491,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":5617,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5617,"damageMultiplier":1.35},{"id":"spell-15245","name":"Shadow Bolt Volley","spellId":15245,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5617,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6434-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-8120":{"id":"entry-8120","kind":"mob","name":"Sul'lithuz Abomination","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-7345-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.5478,"markerRadius":3.6493}}},"entry-7274":{"id":"entry-7274","kind":"mob","name":"Sandfury Executioner","combat":{"level":46,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2600,"damageMultiplier":1},{"id":"spell-7160","name":"Execute","spellId":7160,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4005,"damageMultiplier":1.12},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4005,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6440-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2894,"markerRadius":0.6905}}},"entry-7795":{"id":"entry-7795","kind":"boss","name":"Hydromancer Velratha","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12491","name":"Healing Wave","spellId":12491,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":5225,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5225,"damageMultiplier":1.35},{"id":"spell-15245","name":"Shadow Bolt Volley","spellId":15245,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5225,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-6685-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0336,"markerRadius":0.65}}},"entry-10081":{"id":"entry-10081","kind":"mob","name":"Dustwraith","combat":{"level":46,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-9292-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-10082":{"id":"entry-10082","kind":"mob","name":"Zerillis","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12551","name":"Frost Shot","spellId":12551,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6655,"damageMultiplier":1.12},{"id":"spell-15547","name":"Shoot","spellId":15547,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6655,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-9293-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-10080":{"id":"entry-10080","kind":"mob","name":"Sandarr Dunereaver","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14516","name":"Strike","spellId":14516,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4509,"damageMultiplier":1.12},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4509,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-9291-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.932,"markerRadius":0.65}}},"entry-7273":{"id":"entry-7273","kind":"boss","name":"Gahz'rilla","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7049,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/zulfarrak/creatures/display-7271-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0306,"labelHeight":16.8828,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-37996","entityId":"entry-7267","position":[-50.3713,154.3149,1706.4927],"yaw":-1.00614,"spawnMask":1},{"id":"creature-37997","entityId":"entry-7797","position":[-48.1913,154.3121,1709.2927],"yaw":-0.900874,"spawnMask":1},{"id":"creature-37998","entityId":"entry-7268","position":[-91.6913,153.5072,1704.0127],"yaw":-5.60697,"spawnMask":1},{"id":"creature-37999","entityId":"entry-7268","position":[-89.2813,152.8927,1697.6527],"yaw":-5.68551,"spawnMask":1},{"id":"creature-38000","entityId":"entry-7268","position":[-57.0313,153.1881,1746.9227],"yaw":-2.25254,"spawnMask":1},{"id":"creature-38001","entityId":"entry-7268","position":[-47.2313,152.8913,1741.8827],"yaw":-2.42533,"spawnMask":1},{"id":"creature-38002","entityId":"entry-5650","position":[153.9677,110.5575,1275.8327],"yaw":-4.50295,"spawnMask":1},{"id":"creature-38003","entityId":"entry-5648","position":[126.1717,108.4006,1241.0827],"yaw":-0.383972,"spawnMask":1},{"id":"creature-38005","entityId":"entry-5648","position":[159.2487,111.5082,1275.5627],"yaw":-2.00713,"spawnMask":1},{"id":"creature-38006","entityId":"entry-5649","position":[120.6057,108.6914,1240.5627],"yaw":-5.34071,"spawnMask":1},{"id":"creature-38007","entityId":"entry-5648","position":[126.5697,108.5095,1244.8327],"yaw":-2.19912,"spawnMask":1},{"id":"creature-38008","entityId":"entry-5649","position":[156.0457,110.0449,1271.8227],"yaw":-5.72468,"spawnMask":1},{"id":"creature-38009","entityId":"entry-5648","position":[123.5567,111.192,1304.6727],"yaw":-4.01426,"spawnMask":1},{"id":"creature-38010","entityId":"entry-5649","position":[130.0927,108.3789,1298.6027],"yaw":-0.418879,"spawnMask":1},{"id":"creature-38011","entityId":"entry-5650","position":[128.8167,108.6429,1306.7427],"yaw":-3.24631,"spawnMask":1},{"id":"creature-38012","entityId":"entry-5649","position":[149.7467,108.3789,1336.2727],"yaw":-0.174533,"spawnMask":1},{"id":"creature-38013","entityId":"entry-5649","position":[146.9847,108.3789,1344.4427],"yaw":-3.71755,"spawnMask":1},{"id":"creature-38014","entityId":"entry-8095","position":[194.1677,128.1193,1393.7027],"yaw":-5.72987,"spawnMask":1},{"id":"creature-38015","entityId":"entry-5648","position":[171.8657,111.361,1409.5327],"yaw":-2.33874,"spawnMask":1},{"id":"creature-38016","entityId":"entry-5648","position":[172.5267,111.0639,1406.7827],"yaw":-1.79769,"spawnMask":1},{"id":"creature-38017","entityId":"entry-5648","position":[166.6757,110.0553,1405.0627],"yaw":-5.14872,"spawnMask":1},{"id":"creature-38018","entityId":"entry-8095","position":[205.1297,139.6964,1431.6227],"yaw":-6.17755,"spawnMask":1},{"id":"creature-42596","entityId":"entry-5649","position":[133.4097,109.4678,1444.1827],"yaw":-1.91986,"spawnMask":1},{"id":"creature-42597","entityId":"entry-8095","position":[107.5407,117.8489,1452.8127],"yaw":-0.151279,"spawnMask":1},{"id":"creature-42599","entityId":"entry-5648","position":[122.1647,109.1314,1490.3227],"yaw":-2.87979,"spawnMask":1},{"id":"creature-42600","entityId":"entry-5648","position":[148.4007,108.3789,1483.8927],"yaw":-2.46091,"spawnMask":1},{"id":"creature-42603","entityId":"entry-7269","position":[143.2357,108.3798,1496.1327],"yaw":-0.226893,"spawnMask":1},{"id":"creature-42604","entityId":"entry-5648","position":[142.8117,108.4914,1468.7427],"yaw":-6.00393,"spawnMask":1},{"id":"creature-42605","entityId":"entry-5648","position":[122.4667,108.8538,1484.3327],"yaw":-0.069813,"spawnMask":1},{"id":"creature-42606","entityId":"entry-5648","position":[150.8567,108.6191,1467.5527],"yaw":-5.37561,"spawnMask":1},{"id":"creature-42607","entityId":"entry-5648","position":[120.8727,109.1529,1484.5127],"yaw":-6.10865,"spawnMask":1},{"id":"creature-42609","entityId":"entry-7269","position":[149.6447,108.3788,1454.0327],"yaw":-2.56563,"spawnMask":1},{"id":"creature-42610","entityId":"entry-8095","position":[213.3227,126.3607,1498.8027],"yaw":-1.33225,"spawnMask":1},{"id":"creature-42611","entityId":"entry-5648","position":[144.4337,108.5755,1510.0527],"yaw":-0.628319,"spawnMask":1},{"id":"creature-42612","entityId":"entry-5649","position":[145.9377,108.7493,1511.1427],"yaw":-1.13446,"spawnMask":1},{"id":"creature-42614","entityId":"entry-5649","position":[141.1677,108.282,1514.2627],"yaw":-4.08407,"spawnMask":1},{"id":"creature-42615","entityId":"entry-8095","position":[224.3147,136.071,1526.6127],"yaw":-2.79026,"spawnMask":1},{"id":"creature-42617","entityId":"entry-5649","position":[98.0317,108.9258,1541.3227],"yaw":-1.0821,"spawnMask":1},{"id":"creature-42618","entityId":"entry-7269","position":[117.6887,108.3798,1539.2927],"yaw":-3.56047,"spawnMask":1},{"id":"creature-42620","entityId":"entry-8095","position":[216.4647,128.7517,1567.6627],"yaw":-3.5212,"spawnMask":1},{"id":"creature-42621","entityId":"entry-8095","position":[70.8567,111.6705,1517.3727],"yaw":-2.6316,"spawnMask":1},{"id":"creature-42622","entityId":"entry-5648","position":[113.8577,109.2899,1565.4727],"yaw":-4.24115,"spawnMask":1},{"id":"creature-42623","entityId":"entry-5649","position":[95.3517,109.1075,1543.2327],"yaw":-4.46804,"spawnMask":1},{"id":"creature-42624","entityId":"entry-5648","position":[119.3117,110.5387,1562.0127],"yaw":-0.890118,"spawnMask":1},{"id":"creature-42625","entityId":"entry-5650","position":[116.1537,109.2972,1561.0127],"yaw":-5.96903,"spawnMask":1},{"id":"creature-42627","entityId":"entry-5648","position":[109.2577,111.0066,1585.3127],"yaw":-5.0091,"spawnMask":1},{"id":"creature-42628","entityId":"entry-5650","position":[188.8087,110.7247,1595.8727],"yaw":-5.3058,"spawnMask":1},{"id":"creature-42630","entityId":"entry-5649","position":[193.5077,110.9385,1599.1027],"yaw":-2.18166,"spawnMask":1},{"id":"creature-42631","entityId":"entry-7246","position":[192.3787,109.7677,1599.4827],"yaw":-2.46091,"spawnMask":1},{"id":"creature-42632","entityId":"entry-7246","position":[50.1917,121.3759,1499.3427],"yaw":-5.0091,"spawnMask":1},{"id":"creature-42633","entityId":"entry-5650","position":[74.7077,108.4444,1592.0527],"yaw":-6.23082,"spawnMask":1},{"id":"creature-42634","entityId":"entry-7269","position":[86.0587,108.3795,1589.2927],"yaw":-5.32325,"spawnMask":1},{"id":"creature-43694","entityId":"entry-5650","position":[168.8857,108.3764,1618.9727],"yaw":-1.48353,"spawnMask":1},{"id":"creature-43695","entityId":"entry-5648","position":[69.9527,109.161,1593.6227],"yaw":-5.74213,"spawnMask":1},{"id":"creature-43696","entityId":"entry-7246","position":[162.1507,108.3692,1623.9227],"yaw":-3.87463,"spawnMask":1},{"id":"creature-43697","entityId":"entry-5649","position":[73.6917,108.7601,1598.1527],"yaw":-2.32129,"spawnMask":1},{"id":"creature-43702","entityId":"entry-7246","position":[152.3827,108.374,1623.9927],"yaw":-4.53786,"spawnMask":1},{"id":"creature-43703","entityId":"entry-7269","position":[148.8687,108.3648,1631.9827],"yaw":-3.54302,"spawnMask":1},{"id":"creature-43704","entityId":"entry-5650","position":[98.6737,109.859,1612.3127],"yaw":-5.02655,"spawnMask":1},{"id":"creature-44160","entityId":"entry-7246","position":[161.6977,108.3764,1618.3127],"yaw":-4.95674,"spawnMask":1},{"id":"creature-44161","entityId":"entry-7269","position":[37.8817,108.3657,1633.4627],"yaw":-0.890118,"spawnMask":1},{"id":"creature-44162","entityId":"entry-5648","position":[65.2367,108.3697,1639.4727],"yaw":-0.628319,"spawnMask":1},{"id":"creature-44163","entityId":"entry-7247","position":[63.3237,108.7387,1623.5227],"yaw":-2.3911,"spawnMask":1},{"id":"creature-44164","entityId":"entry-5650","position":[55.7227,108.3648,1643.1127],"yaw":-4.99164,"spawnMask":1},{"id":"creature-44165","entityId":"entry-5650","position":[70.5267,108.3648,1648.6827],"yaw":-2.51327,"spawnMask":1},{"id":"creature-44166","entityId":"entry-7269","position":[46.1017,108.3648,1634.8727],"yaw":-1.39626,"spawnMask":1},{"id":"creature-44167","entityId":"entry-7269","position":[24.1707,110.9036,1499.0127],"yaw":-2.86234,"spawnMask":1},{"id":"creature-44168","entityId":"entry-5649","position":[31.8047,111.2122,1504.1827],"yaw":-5.22015,"spawnMask":1},{"id":"creature-44169","entityId":"entry-5650","position":[58.6447,108.5451,1649.5827],"yaw":-2.56563,"spawnMask":1},{"id":"creature-44177","entityId":"entry-7246","position":[37.2757,108.5315,1641.3527],"yaw":-2.75114,"spawnMask":1},{"id":"creature-44191","entityId":"entry-7269","position":[79.1347,108.3648,1664.9627],"yaw":-5.48033,"spawnMask":1},{"id":"creature-44225","entityId":"entry-5649","position":[95.4567,108.3729,1659.8627],"yaw":-5.8294,"spawnMask":1},{"id":"creature-45708","entityId":"entry-5648","position":[98.3357,108.3648,1667.4527],"yaw":-2.87979,"spawnMask":1},{"id":"creature-45709","entityId":"entry-5649","position":[78.1317,108.4065,1664.9227],"yaw":-1.37218,"spawnMask":1},{"id":"creature-45710","entityId":"entry-5650","position":[161.4397,108.7004,1637.5327],"yaw":-1.36264,"spawnMask":1},{"id":"creature-47465","entityId":"entry-7269","position":[-3.7033,108.3678,1596.6927],"yaw":-1.81514,"spawnMask":1},{"id":"creature-81440","entityId":"entry-5648","position":[28.4377,108.651,1640.9527],"yaw":-2.33874,"spawnMask":1},{"id":"creature-81441","entityId":"entry-5649","position":[-2.6303,108.5851,1584.6927],"yaw":-1.29154,"spawnMask":1},{"id":"creature-81442","entityId":"entry-5649","position":[-3.7353,108.5856,1582.1527],"yaw":-0.820305,"spawnMask":1},{"id":"creature-81443","entityId":"entry-5649","position":[24.0207,108.5194,1635.7927],"yaw":-5.65487,"spawnMask":1},{"id":"creature-81444","entityId":"entry-5648","position":[29.3867,108.5757,1639.7727],"yaw":-2.19912,"spawnMask":1},{"id":"creature-81445","entityId":"entry-7269","position":[182.0607,110.5167,1629.3827],"yaw":-5.74213,"spawnMask":1},{"id":"creature-81446","entityId":"entry-5648","position":[52.5857,109.6128,1686.0627],"yaw":-1.18682,"spawnMask":1},{"id":"creature-81447","entityId":"entry-5648","position":[49.2507,110.5834,1685.1927],"yaw":-5.81195,"spawnMask":1},{"id":"creature-81448","entityId":"entry-5650","position":[51.6037,110.4101,1689.0927],"yaw":-2.49582,"spawnMask":1},{"id":"creature-81449","entityId":"entry-5649","position":[69.3207,108.4065,1687.3227],"yaw":-5.09013,"spawnMask":1},{"id":"creature-81450","entityId":"entry-5649","position":[-11.8783,108.4175,1587.4727],"yaw":-4.32842,"spawnMask":1},{"id":"creature-81451","entityId":"entry-8095","position":[183.9247,114.9739,1642.3527],"yaw":-2.02458,"spawnMask":1},{"id":"creature-81452","entityId":"entry-5649","position":[182.8967,116.7507,1692.6927],"yaw":-5.48033,"spawnMask":1},{"id":"creature-81453","entityId":"entry-7269","position":[105.5507,108.3648,1752.9027],"yaw":-3.14159,"spawnMask":1},{"id":"creature-81454","entityId":"entry-7269","position":[116.1927,108.3648,1741.6727],"yaw":-4.86947,"spawnMask":1},{"id":"creature-81455","entityId":"entry-7269","position":[93.2647,108.4991,1756.9927],"yaw":-3.10669,"spawnMask":1},{"id":"creature-81458","entityId":"entry-7269","position":[140.0137,115.4547,1752.1727],"yaw":-6.21337,"spawnMask":1},{"id":"creature-81459","entityId":"entry-8095","position":[213.0627,121.4109,1594.7927],"yaw":-0.170666,"spawnMask":1},{"id":"creature-81460","entityId":"entry-7246","position":[220.8327,119.0913,1634.4227],"yaw":-4.36332,"spawnMask":1},{"id":"creature-81461","entityId":"entry-5650","position":[249.6127,126.5774,1634.2027],"yaw":-1.27409,"spawnMask":1},{"id":"creature-81462","entityId":"entry-8095","position":[209.3197,126.7415,1747.3327],"yaw":-5.98648,"spawnMask":1},{"id":"creature-81464","entityId":"entry-7269","position":[107.3467,108.3648,1761.5227],"yaw":-1.09956,"spawnMask":1},{"id":"creature-81465","entityId":"entry-7269","position":[113.5047,108.3648,1762.6827],"yaw":-5.72468,"spawnMask":1},{"id":"creature-81466","entityId":"entry-7269","position":[160.0377,114.9728,1778.6827],"yaw":-0.139626,"spawnMask":1},{"id":"creature-81467","entityId":"entry-7269","position":[150.5397,121.075,1764.8327],"yaw":-1.22173,"spawnMask":1},{"id":"creature-81468","entityId":"entry-5650","position":[153.3227,122.6395,1755.9127],"yaw":-3.24631,"spawnMask":1},{"id":"creature-81469","entityId":"entry-7269","position":[76.4907,108.416,1772.4727],"yaw":-5.86431,"spawnMask":1},{"id":"creature-81470","entityId":"entry-7269","position":[117.9757,108.3987,1775.9427],"yaw":-4.24115,"spawnMask":1},{"id":"creature-81471","entityId":"entry-7269","position":[143.3167,108.5648,1791.7527],"yaw":-3.76991,"spawnMask":1},{"id":"creature-81472","entityId":"entry-7269","position":[123.0607,108.3676,1785.1727],"yaw":-5.75959,"spawnMask":1},{"id":"creature-81473","entityId":"entry-7269","position":[85.5277,108.3648,1765.7227],"yaw":-0.471239,"spawnMask":1},{"id":"creature-81474","entityId":"entry-7269","position":[101.4107,108.3648,1763.1227],"yaw":-5.39307,"spawnMask":1},{"id":"creature-81475","entityId":"entry-7269","position":[88.7867,108.3669,1772.1227],"yaw":-4.4855,"spawnMask":1},{"id":"creature-81476","entityId":"entry-7269","position":[93.9507,108.3648,1764.5227],"yaw":-4.46804,"spawnMask":1},{"id":"creature-81477","entityId":"entry-7269","position":[129.2577,108.3648,1792.7827],"yaw":-0.436332,"spawnMask":1},{"id":"creature-81478","entityId":"entry-7269","position":[73.7637,108.697,1762.7227],"yaw":-3.1765,"spawnMask":1},{"id":"creature-81479","entityId":"entry-7269","position":[132.9437,108.3648,1781.8727],"yaw":-1.72788,"spawnMask":1},{"id":"creature-81480","entityId":"entry-7269","position":[117.3007,108.3648,1796.1627],"yaw":-4.53786,"spawnMask":1},{"id":"creature-81481","entityId":"entry-7269","position":[115.7907,108.365,1786.8027],"yaw":-0.610865,"spawnMask":1},{"id":"creature-81482","entityId":"entry-5650","position":[219.7867,113.8372,1772.8727],"yaw":-0.907571,"spawnMask":1},{"id":"creature-81483","entityId":"entry-7269","position":[150.6797,114.5093,1813.4727],"yaw":-2.82743,"spawnMask":1},{"id":"creature-81484","entityId":"entry-7269","position":[68.4167,108.3649,1794.3827],"yaw":-3.64774,"spawnMask":1},{"id":"creature-81485","entityId":"entry-7269","position":[98.8047,108.3648,1796.8927],"yaw":-5.18363,"spawnMask":1},{"id":"creature-81486","entityId":"entry-7269","position":[78.9377,108.366,1792.4427],"yaw":-6.10865,"spawnMask":1},{"id":"creature-81487","entityId":"entry-7269","position":[80.4067,108.3849,1783.2627],"yaw":-5.72468,"spawnMask":1},{"id":"creature-81488","entityId":"entry-7269","position":[105.9297,108.3648,1799.1327],"yaw":-6.03884,"spawnMask":1},{"id":"creature-81489","entityId":"entry-7269","position":[128.4357,108.4496,1804.8827],"yaw":-4.11898,"spawnMask":1},{"id":"creature-81490","entityId":"entry-7269","position":[77.2147,108.3648,1804.9127],"yaw":-3.1765,"spawnMask":1},{"id":"creature-81491","entityId":"entry-7269","position":[86.7627,108.3648,1797.5327],"yaw":-3.08923,"spawnMask":1},{"id":"creature-81492","entityId":"entry-7269","position":[60.3147,108.3817,1773.1127],"yaw":-3.49066,"spawnMask":1},{"id":"creature-81493","entityId":"entry-7269","position":[70.8207,108.3898,1782.6927],"yaw":-4.11898,"spawnMask":1},{"id":"creature-81494","entityId":"entry-7269","position":[68.5217,108.3913,1771.5227],"yaw":0,"spawnMask":1},{"id":"creature-81495","entityId":"entry-7269","position":[122.5677,108.3648,1800.7727],"yaw":-3.49066,"spawnMask":1},{"id":"creature-81496","entityId":"entry-7269","position":[96.0757,108.3648,1803.3027],"yaw":-4.76475,"spawnMask":1},{"id":"creature-81497","entityId":"entry-7269","position":[67.0917,108.3766,1787.3927],"yaw":-5.35816,"spawnMask":1},{"id":"creature-81498","entityId":"entry-7269","position":[60.9157,108.4352,1781.2327],"yaw":-4.20624,"spawnMask":1},{"id":"creature-81499","entityId":"entry-7269","position":[113.0827,108.3648,1805.0627],"yaw":-2.53073,"spawnMask":1},{"id":"creature-81500","entityId":"entry-7269","position":[85.3537,108.3648,1803.4927],"yaw":-5.65487,"spawnMask":1},{"id":"creature-81501","entityId":"entry-8095","position":[112.8067,121.0467,1835.1927],"yaw":-1.25722,"spawnMask":1},{"id":"creature-81502","entityId":"entry-7269","position":[40.9777,108.3893,1781.9427],"yaw":-3.59538,"spawnMask":1},{"id":"creature-81503","entityId":"entry-7269","position":[124.7377,113.6595,1828.7427],"yaw":-5.84685,"spawnMask":1},{"id":"creature-81504","entityId":"entry-7269","position":[56.1957,108.3828,1799.7327],"yaw":-3.89208,"spawnMask":1},{"id":"creature-81505","entityId":"entry-5650","position":[52.7907,108.4065,1801.7327],"yaw":-4.11501,"spawnMask":1},{"id":"creature-81506","entityId":"entry-7269","position":[34.7927,108.3699,1811.1427],"yaw":-1.78024,"spawnMask":1},{"id":"creature-81507","entityId":"entry-5649","position":[138.2587,123.5218,1840.4627],"yaw":-3.64774,"spawnMask":1},{"id":"creature-81508","entityId":"entry-7246","position":[25.7937,108.3701,1795.2827],"yaw":-2.32129,"spawnMask":1},{"id":"creature-81509","entityId":"entry-5650","position":[19.6617,108.379,1793.8827],"yaw":-4.74729,"spawnMask":1},{"id":"creature-81510","entityId":"entry-7269","position":[27.0587,108.4123,1798.4827],"yaw":-0.767945,"spawnMask":1},{"id":"creature-81511","entityId":"entry-5649","position":[27.0017,108.3947,1789.6227],"yaw":-0.541052,"spawnMask":1},{"id":"creature-81512","entityId":"entry-8095","position":[228.2887,113.9279,1781.2527],"yaw":-4.79092,"spawnMask":1},{"id":"creature-81513","entityId":"entry-8095","position":[169.3797,134.3589,1861.5027],"yaw":-1.09561,"spawnMask":1},{"id":"creature-81514","entityId":"entry-5649","position":[176.1817,135.6842,1860.6627],"yaw":-1.51022,"spawnMask":1},{"id":"creature-81515","entityId":"entry-7246","position":[244.9877,119.4287,1822.7927],"yaw":-4.60767,"spawnMask":1},{"id":"creature-81516","entityId":"entry-8095","position":[237.9567,117.5516,1822.6227],"yaw":-2.65402,"spawnMask":1},{"id":"creature-81517","entityId":"entry-7246","position":[248.4147,120.6098,1731.9427],"yaw":-4.88692,"spawnMask":1},{"id":"creature-81518","entityId":"entry-5650","position":[237.1127,132.5316,1864.0427],"yaw":-3.42085,"spawnMask":1},{"id":"creature-81519","entityId":"entry-8127","position":[296.5867,114.4277,1794.8627],"yaw":-2.02458,"spawnMask":1},{"id":"creature-81520","entityId":"entry-8130","position":[288.6677,113.6284,1796.6227],"yaw":-3.9619,"spawnMask":1},{"id":"creature-81521","entityId":"entry-8130","position":[292.0407,113.9602,1798.8627],"yaw":-3.83972,"spawnMask":1},{"id":"creature-81522","entityId":"entry-8130","position":[299.6767,115.3011,1791.1527],"yaw":-1.62316,"spawnMask":1},{"id":"creature-81523","entityId":"entry-7269","position":[11.5837,108.3699,1803.3227],"yaw":-2.14675,"spawnMask":1},{"id":"creature-81524","entityId":"entry-7271","position":[-49.1313,111.0035,1891.1827],"yaw":-3.10669,"spawnMask":1},{"id":"creature-81525","entityId":"entry-7269","position":[-150.9713,108.6263,1861.9527],"yaw":-4.72984,"spawnMask":1},{"id":"creature-81527","entityId":"entry-8120","position":[-76.1913,150.0039,1748.0227],"yaw":-2.40855,"spawnMask":1},{"id":"creature-81530","entityId":"entry-7246","position":[-151.2913,110.2728,1844.2527],"yaw":-4.69151,"spawnMask":1},{"id":"creature-81531","entityId":"entry-8095","position":[-150.4513,109.2136,1846.3627],"yaw":-4.69091,"spawnMask":1},{"id":"creature-81532","entityId":"entry-7246","position":[-153.7513,109.8692,1848.5727],"yaw":-4.68603,"spawnMask":1},{"id":"creature-81533","entityId":"entry-7269","position":[-182.3813,108.7504,1863.3227],"yaw":-5.09636,"spawnMask":1},{"id":"creature-81534","entityId":"entry-5650","position":[-164.1513,110.2536,1905.0927],"yaw":-1.90241,"spawnMask":1},{"id":"creature-81535","entityId":"entry-5649","position":[-167.0113,108.3983,1882.8827],"yaw":-2.54818,"spawnMask":1},{"id":"creature-81536","entityId":"entry-5650","position":[-186.4913,109.0069,1890.8327],"yaw":-2.51327,"spawnMask":1},{"id":"creature-81537","entityId":"entry-5649","position":[-169.8713,108.5029,1878.6127],"yaw":-5.68977,"spawnMask":1},{"id":"creature-81538","entityId":"entry-7246","position":[-192.6713,109.0093,1857.7227],"yaw":-3.66519,"spawnMask":1},{"id":"creature-81539","entityId":"entry-5649","position":[-217.5713,108.393,1828.2127],"yaw":-6.19592,"spawnMask":1},{"id":"creature-81540","entityId":"entry-7269","position":[-219.6313,108.3739,1830.0727],"yaw":-4.90438,"spawnMask":1},{"id":"creature-81542","entityId":"entry-5649","position":[-199.4713,108.3706,1879.3427],"yaw":-0.785398,"spawnMask":1},{"id":"creature-81543","entityId":"entry-5650","position":[-232.9713,108.3648,1842.1227],"yaw":-4.93928,"spawnMask":1},{"id":"creature-81545","entityId":"entry-7246","position":[-231.5413,108.3648,1899.2927],"yaw":-3.45575,"spawnMask":1},{"id":"creature-81546","entityId":"entry-5650","position":[-232.5513,108.4462,1892.5127],"yaw":-5.81195,"spawnMask":1},{"id":"creature-81547","entityId":"entry-5650","position":[-227.2713,108.3648,1894.5627],"yaw":-1.0821,"spawnMask":1},{"id":"creature-81548","entityId":"entry-7246","position":[-244.1013,108.3653,1878.5027],"yaw":-3.19395,"spawnMask":1},{"id":"creature-81549","entityId":"entry-7247","position":[-247.7413,108.4065,1878.2527],"yaw":-1.80893,"spawnMask":1},{"id":"creature-81551","entityId":"entry-5649","position":[-255.5613,108.5696,1864.6527],"yaw":-4.27606,"spawnMask":1},{"id":"creature-81552","entityId":"entry-7274","position":[-322.9113,145.3672,1865.8127],"yaw":-3.38594,"spawnMask":1},{"id":"creature-81558","entityId":"entry-8095","position":[-248.4013,127.5291,1739.6227],"yaw":-4.92385,"spawnMask":1},{"id":"creature-81559","entityId":"entry-8095","position":[-276.7713,132.9041,1743.5927],"yaw":-1.84091,"spawnMask":1},{"id":"creature-81560","entityId":"entry-5649","position":[-215.4613,108.5546,1692.2427],"yaw":-0.837758,"spawnMask":1},{"id":"creature-81561","entityId":"entry-5650","position":[-214.9613,109.9107,1698.9927],"yaw":-5.46288,"spawnMask":1},{"id":"creature-81562","entityId":"entry-7246","position":[-221.6713,110.2324,1696.2027],"yaw":-4.31096,"spawnMask":1},{"id":"creature-81563","entityId":"entry-5650","position":[-223.3313,109.7422,1693.9327],"yaw":-4.31096,"spawnMask":1},{"id":"creature-81564","entityId":"entry-5649","position":[-220.5913,108.8024,1691.0827],"yaw":-5.49779,"spawnMask":1},{"id":"creature-81565","entityId":"entry-8120","position":[-99.6313,150.6392,1723.8927],"yaw":-5.51524,"spawnMask":1},{"id":"creature-81566","entityId":"entry-5649","position":[-184.9113,108.3648,1646.3027],"yaw":-3.63029,"spawnMask":1},{"id":"creature-81567","entityId":"entry-7269","position":[-186.7013,108.3648,1656.0827],"yaw":-1.29154,"spawnMask":1},{"id":"creature-81568","entityId":"entry-5649","position":[-251.6013,108.3648,1693.3927],"yaw":-5.48033,"spawnMask":1},{"id":"creature-81569","entityId":"entry-5649","position":[-185.3013,108.417,1627.1927],"yaw":-5.39307,"spawnMask":1},{"id":"creature-81570","entityId":"entry-7795","position":[-243.7613,108.8225,1677.2527],"yaw":-5.45566,"spawnMask":1},{"id":"creature-81571","entityId":"entry-5649","position":[-142.9213,108.3949,1615.8527],"yaw":-5.75959,"spawnMask":1},{"id":"creature-81572","entityId":"entry-7246","position":[-140.3813,108.4505,1623.1827],"yaw":-3.28122,"spawnMask":1},{"id":"creature-81573","entityId":"entry-5649","position":[-138.0813,108.3649,1615.0627],"yaw":-0.087266,"spawnMask":1},{"id":"creature-81574","entityId":"entry-5649","position":[-139.7213,108.3648,1615.1927],"yaw":-0.017453,"spawnMask":1},{"id":"creature-81575","entityId":"entry-5649","position":[-199.7713,108.4642,1611.5527],"yaw":-4.60767,"spawnMask":1},{"id":"creature-81576","entityId":"entry-5650","position":[-137.9813,108.6074,1623.0227],"yaw":-3.03687,"spawnMask":1},{"id":"creature-81578","entityId":"entry-5649","position":[-252.9313,109.0778,1631.0727],"yaw":-1.44862,"spawnMask":1},{"id":"creature-81579","entityId":"entry-5649","position":[-266.8613,108.3658,1678.8227],"yaw":-1.15192,"spawnMask":1},{"id":"creature-81580","entityId":"entry-5650","position":[-233.1313,108.4578,1622.6027],"yaw":-1.81514,"spawnMask":1},{"id":"creature-81581","entityId":"entry-8095","position":[-247.4913,108.6448,1632.6727],"yaw":-0.653508,"spawnMask":1},{"id":"creature-81582","entityId":"entry-7246","position":[-247.9613,108.9481,1628.4427],"yaw":-0.608068,"spawnMask":1},{"id":"creature-81583","entityId":"entry-7246","position":[-243.3013,108.5731,1631.6427],"yaw":-0.608942,"spawnMask":1},{"id":"creature-81584","entityId":"entry-5649","position":[-225.9613,108.4898,1603.8627],"yaw":-2.72271,"spawnMask":1},{"id":"creature-81585","entityId":"entry-5649","position":[-229.9913,108.8255,1601.2727],"yaw":-4.69494,"spawnMask":1},{"id":"creature-81586","entityId":"entry-5650","position":[-224.7213,108.5382,1599.6627],"yaw":-1.09956,"spawnMask":1},{"id":"creature-81587","entityId":"entry-8095","position":[-164.0213,110.6242,1585.8727],"yaw":-3.77943,"spawnMask":1},{"id":"creature-81588","entityId":"entry-7246","position":[-163.4113,108.8669,1589.9727],"yaw":-3.69682,"spawnMask":1},{"id":"creature-81589","entityId":"entry-5649","position":[-266.6213,108.8134,1645.9827],"yaw":-4.71239,"spawnMask":1},{"id":"creature-81590","entityId":"entry-5650","position":[-292.2513,109.8728,1645.9627],"yaw":-3.35103,"spawnMask":1},{"id":"creature-81591","entityId":"entry-7269","position":[-283.5113,109.6398,1693.4227],"yaw":-0.471239,"spawnMask":1},{"id":"creature-81592","entityId":"entry-7246","position":[-290.1713,109.8873,1641.2927],"yaw":-0.645772,"spawnMask":1},{"id":"creature-81594","entityId":"entry-7246","position":[-287.0913,109.492,1644.8227],"yaw":-2.07694,"spawnMask":1},{"id":"creature-81595","entityId":"entry-7246","position":[-293.7413,109.9682,1644.8727],"yaw":-4.06662,"spawnMask":1},{"id":"creature-81596","entityId":"entry-7269","position":[-251.6513,109.0128,1628.0227],"yaw":-1.74533,"spawnMask":1},{"id":"creature-81597","entityId":"entry-7246","position":[-280.7813,109.355,1692.2527],"yaw":-4.57276,"spawnMask":1},{"id":"creature-81598","entityId":"entry-5650","position":[-281.3213,109.206,1679.2827],"yaw":-5.76632,"spawnMask":1},{"id":"creature-81600","entityId":"entry-7269","position":[-152.8413,108.3648,1588.9427],"yaw":-1.8675,"spawnMask":1},{"id":"creature-81601","entityId":"entry-5649","position":[-159.9213,108.4065,1593.3227],"yaw":-0.655469,"spawnMask":1},{"id":"creature-81602","entityId":"entry-5649","position":[-317.0313,114.0011,1704.7627],"yaw":-5.42797,"spawnMask":1},{"id":"creature-81603","entityId":"entry-7246","position":[-314.6513,113.9939,1707.6427],"yaw":-2.58309,"spawnMask":1},{"id":"creature-81604","entityId":"entry-5650","position":[-139.0813,108.3648,1585.4427],"yaw":-4.95674,"spawnMask":1},{"id":"creature-81605","entityId":"entry-5650","position":[-141.3713,108.3648,1589.3927],"yaw":-3.52556,"spawnMask":1},{"id":"creature-81606","entityId":"entry-7246","position":[-137.4313,108.3648,1580.7227],"yaw":-0.471239,"spawnMask":1},{"id":"creature-81607","entityId":"entry-7246","position":[-143.8113,108.3648,1587.3127],"yaw":-3.94444,"spawnMask":1},{"id":"creature-81608","entityId":"entry-7246","position":[-118.1713,108.5832,1557.4327],"yaw":-4.31096,"spawnMask":1},{"id":"creature-81609","entityId":"entry-5650","position":[-112.1013,108.4262,1555.1827],"yaw":-1.25664,"spawnMask":1},{"id":"creature-81610","entityId":"entry-7246","position":[-80.6813,108.3693,1570.0327],"yaw":-6.26573,"spawnMask":1},{"id":"creature-81611","entityId":"entry-5649","position":[-68.5213,108.3648,1564.1127],"yaw":-3.03687,"spawnMask":1},{"id":"creature-81612","entityId":"entry-7269","position":[-88.8213,108.3648,1555.1027],"yaw":-5.32325,"spawnMask":1},{"id":"creature-81613","entityId":"entry-5649","position":[-83.8813,117.5493,1494.8227],"yaw":-1.36136,"spawnMask":1},{"id":"creature-81614","entityId":"entry-7269","position":[-52.5213,108.3648,1533.5427],"yaw":-0.750492,"spawnMask":1},{"id":"creature-81615","entityId":"entry-7269","position":[-51.4513,108.3648,1560.4127],"yaw":-5.89921,"spawnMask":1},{"id":"creature-81616","entityId":"entry-5649","position":[-34.7813,108.3648,1520.1427],"yaw":-5.23599,"spawnMask":1},{"id":"creature-81617","entityId":"entry-5649","position":[-50.3313,109.2205,1506.0527],"yaw":-0.959931,"spawnMask":1},{"id":"creature-81618","entityId":"entry-5650","position":[-39.7613,108.3648,1533.3127],"yaw":-4.41568,"spawnMask":1},{"id":"creature-81619","entityId":"entry-5650","position":[-35.3313,108.3648,1535.3627],"yaw":-2.6529,"spawnMask":1},{"id":"creature-81620","entityId":"entry-5649","position":[-52.0913,109.3934,1504.4827],"yaw":-0.436332,"spawnMask":1},{"id":"creature-81621","entityId":"entry-5650","position":[-54.4213,109.1275,1509.2727],"yaw":-3.61283,"spawnMask":1},{"id":"creature-81622","entityId":"entry-7269","position":[-14.9773,108.3932,1500.2727],"yaw":-3.57792,"spawnMask":1},{"id":"creature-81623","entityId":"entry-7247","position":[-17.9463,108.5315,1497.6027],"yaw":-5.25215,"spawnMask":1},{"id":"creature-81624","entityId":"entry-7246","position":[-28.0803,108.3648,1524.0627],"yaw":-1.88496,"spawnMask":1},{"id":"creature-81625","entityId":"entry-7269","position":[4.2727,113.8613,1466.5227],"yaw":-0.890118,"spawnMask":1},{"id":"creature-81634","entityId":"entry-5649","position":[-13.1123,115.7674,1457.6127],"yaw":-5.60251,"spawnMask":1},{"id":"creature-81635","entityId":"entry-5649","position":[21.4097,125.9798,1434.7727],"yaw":-3.71755,"spawnMask":1},{"id":"creature-81636","entityId":"entry-5650","position":[-66.2913,128.7531,1435.9027],"yaw":-1.46608,"spawnMask":1},{"id":"creature-205800","entityId":"entry-10081","position":[-184.6813,112.3334,1842.9027],"yaw":-0.540263,"spawnMask":1},{"id":"creature-205801","entityId":"entry-10082","position":[62.1257,108.329,1653.2527],"yaw":-0.304632,"spawnMask":1},{"id":"creature-205802","entityId":"entry-10080","position":[-48.4913,108.2817,1525.1727],"yaw":-0.202525,"spawnMask":1},{"id":"encounter-594","entityId":"entry-7273","position":[1105.6865,140.6188,1987.5295],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-42602","name":"Sandfury Shadowcaster Patrol","speed":1.15,"pathId":426020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[140.5927,108.2966,1500.9127],[168.8257,108.3847,1475.7927],[151.7627,108.2956,1453.3227],[129.4017,108.2956,1476.8627]],"members":[{"id":"member","entityId":"entry-5648","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42608","name":"Sandfury Blood Drinker Patrol","speed":1.15,"pathId":426080,"formationSource":"database-solo","spawnMask":1,"waypoints":[[132.6577,108.2956,1474.2427],[155.1517,108.3596,1415.6527],[152.3307,108.2958,1360.3527],[155.1517,108.3596,1415.6527]],"members":[{"id":"member","entityId":"entry-5649","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42619","name":"Sandfury Blood Drinker Patrol","speed":1.15,"pathId":426190,"formationSource":"database-solo","spawnMask":1,"waypoints":[[128.0407,108.2959,1523.7127],[93.4007,108.2961,1567.6127],[81.4627,108.297,1606.1527],[93.4007,108.2961,1567.6127]],"members":[{"id":"member","entityId":"entry-5649","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-42626","name":"Sandfury Shadowcaster Patrol","speed":1.15,"pathId":426260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[131.7527,108.2961,1525.4827],[96.6137,108.2965,1571.2027],[81.2347,108.2962,1613.8227],[96.6137,108.2965,1571.2027]],"members":[{"id":"member","entityId":"entry-5648","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-44170","name":"Sandfury Shadowhunter Patrol","speed":1.15,"pathId":441700,"formationSource":"database-solo","spawnMask":1,"waypoints":[[40.6317,108.4297,1642.3927],[71.2087,108.2827,1633.3027],[77.4537,108.2828,1666.9627]],"members":[{"id":"member","entityId":"entry-7246","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81456","name":"Sandfury Soul Eater Patrol","speed":1.15,"pathId":814560,"formationSource":"database-solo","spawnMask":1,"waypoints":[[116.0547,108.2879,1746.6827],[139.2937,108.4071,1718.7027],[161.1267,108.2815,1679.2927],[139.2937,108.4071,1718.7027]],"members":[{"id":"member","entityId":"entry-7247","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81457","name":"Sandfury Blood Drinker Patrol","speed":1.15,"pathId":814570,"formationSource":"database-solo","spawnMask":1,"waypoints":[[110.8107,108.2815,1745.6127],[134.9627,108.2821,1721.2727],[153.1847,108.2817,1687.5427],[134.9627,108.2821,1721.2727]],"members":[{"id":"member","entityId":"entry-5649","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81463","name":"Theka the Martyr Patrol","speed":1.15,"pathId":814630,"formationSource":"database-solo","spawnMask":1,"waypoints":[[107.3077,108.2815,1757.0227],[121.1027,108.2816,1792.7627],[81.5767,108.2816,1801.8427],[77.7527,108.3105,1766.4427]],"members":[{"id":"member","entityId":"entry-7272","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81526","name":"Sandfury Witch Doctor Patrol","speed":1.15,"pathId":815260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-143.6613,108.3625,1858.2127],[-91.6813,108.2815,1831.3627],[-61.7013,108.2818,1848.2827],[-91.6813,108.2815,1831.3627]],"members":[{"id":"member","entityId":"entry-5650","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81528","name":"Sandfury Shadowhunter Patrol","speed":1.15,"pathId":815280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-149.4013,128.1961,1798.3827],[-117.8713,140.3402,1764.2427]],"members":[{"id":"member","entityId":"entry-7246","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81529","name":"Sandfury Shadowhunter Patrol","speed":1.15,"pathId":815290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-154.0213,125.154,1807.6827],[-133.4913,133.5282,1784.3727],[-110.7213,142.4454,1759.7327],[-133.4913,133.5282,1784.3727]],"members":[{"id":"member","entityId":"entry-7246","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81541","name":"Sandfury Soul Eater Patrol","speed":1.15,"pathId":815410,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-210.0213,108.3959,1800.7127],[-177.0813,108.3925,1763.0827],[-179.4213,108.5435,1725.6427],[-177.0813,108.3925,1763.0827]],"members":[{"id":"member","entityId":"entry-7247","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81550","name":"Sandfury Soul Eater Patrol","speed":1.15,"pathId":815500,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-174.2713,108.5029,1736.1727],[-180.9713,108.3526,1698.7827],[-199.7413,108.3356,1678.9427],[-180.9713,108.3526,1698.7827]],"members":[{"id":"member","entityId":"entry-7247","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-81577","name":"Sandfury Shadowhunter Patrol","speed":1.15,"pathId":815770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-169.0413,108.2818,1605.5227],[-131.5113,108.2818,1570.9027]],"members":[{"id":"member","entityId":"entry-7246","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-81570","name":"Hydromancer Velratha","position":[-243.7613,108.8225,1677.2527]},{"id":"encounter-594","name":"Ghaz'rilla","position":[1105.6865,140.6188,1987.5295]},{"id":"creature-81519","name":"Antu'sul","position":[296.5867,114.4277,1794.8627]},{"id":"creature-81524","name":"Witch Doctor Zum'rah","position":[-49.1313,111.0035,1891.1827]},{"id":"creature-37996","name":"Chief Ukorz Sandscalp & Ruuzlu","position":[-50.3713,154.3149,1706.4927]}],"objectiveOrder":[{"id":"creature-81570","name":"Hydromancer Velratha","position":[-243.7613,108.8225,1677.2527]},{"id":"encounter-594","name":"Ghaz'rilla","position":[1105.6865,140.6188,1987.5295]},{"id":"creature-81519","name":"Antu'sul","position":[296.5867,114.4277,1794.8627]},{"id":"creature-81524","name":"Witch Doctor Zum'rah","position":[-49.1313,111.0035,1891.1827]},{"id":"creature-37996","name":"Chief Ukorz Sandscalp & Ruuzlu","position":[-50.3713,154.3149,1706.4927]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27086,"id":146084,"map":209,"orientation":0.671953,"phaseMask":1,"position_x":1854.53,"position_y":1142.89,"position_z":16.0846,"rotation0":0,"rotation1":0,"rotation2":0.329691,"rotation3":0.944089,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":27087,"id":141852,"map":209,"orientation":3.14159,"phaseMask":1,"position_x":1646.76,"position_y":801.712,"position_z":8.88617,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27089,"id":141073,"map":209,"orientation":2.76635,"phaseMask":1,"position_x":1886.88,"position_y":1298.94,"position_z":48.2268,"rotation0":0,"rotation1":0,"rotation2":0.982451,"rotation3":0.186522,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27090,"id":141074,"map":209,"orientation":-3.02815,"phaseMask":1,"position_x":1883.33,"position_y":1298.99,"position_z":48.2929,"rotation0":0,"rotation1":0,"rotation2":-0.998392,"rotation3":0.0566909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27091,"id":141072,"map":209,"orientation":2.19039,"phaseMask":1,"position_x":1889.76,"position_y":1297.68,"position_z":48.1727,"rotation0":0,"rotation1":0,"rotation2":0.889018,"rotation3":0.457873,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27092,"id":141071,"map":209,"orientation":-2.72271,"phaseMask":1,"position_x":1881.33,"position_y":1297.46,"position_z":48.3304,"rotation0":0,"rotation1":0,"rotation2":-0.978147,"rotation3":0.207914,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27093,"id":141070,"map":209,"orientation":1.66679,"phaseMask":1,"position_x":1890.96,"position_y":1294.47,"position_z":48.1535,"rotation0":0,"rotation1":0,"rotation2":0.740218,"rotation3":0.672367,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27094,"id":142715,"map":209,"orientation":1.9984,"phaseMask":1,"position_x":1800.81,"position_y":857.587,"position_z":8.65556,"rotation0":-0.264375,"rotation1":0.160184,"rotation2":0.801304,"rotation3":0.512209,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27095,"id":92426,"map":209,"orientation":1.49916,"phaseMask":1,"position_x":1810.09,"position_y":673.184,"position_z":14.2178,"rotation0":-0.00027,"rotation1":0.037908,"rotation2":0.680317,"rotation3":0.731937,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27097,"id":128403,"map":209,"orientation":-0.314159,"phaseMask":1,"position_x":1887.46,"position_y":967.143,"position_z":8.98506,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27098,"id":128403,"map":209,"orientation":1.0472,"phaseMask":1,"position_x":1879.89,"position_y":974.651,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27099,"id":128403,"map":209,"orientation":2.84489,"phaseMask":1,"position_x":1876.44,"position_y":972.207,"position_z":9.91169,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27100,"id":128403,"map":209,"orientation":0.994838,"phaseMask":1,"position_x":1882.7,"position_y":971.825,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":0.477159,"rotation3":0.878817,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27101,"id":128308,"map":209,"orientation":1.01229,"phaseMask":1,"position_x":1876.14,"position_y":976.482,"position_z":9.05195,"rotation0":0,"rotation1":0,"rotation2":0.484809,"rotation3":0.87462,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27102,"id":128403,"map":209,"orientation":2.98451,"phaseMask":1,"position_x":1839.42,"position_y":1023.49,"position_z":9.56256,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27103,"id":128403,"map":209,"orientation":-1.18682,"phaseMask":1,"position_x":1861.12,"position_y":1019.39,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27104,"id":128403,"map":209,"orientation":0.663225,"phaseMask":1,"position_x":1866.24,"position_y":1008.4,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":0.325568,"rotation3":0.945519,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27105,"id":128403,"map":209,"orientation":1.0472,"phaseMask":1,"position_x":1865.03,"position_y":1012.49,"position_z":8.8768,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27106,"id":128403,"map":209,"orientation":2.70526,"phaseMask":1,"position_x":1890.12,"position_y":989.759,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27107,"id":128308,"map":209,"orientation":-2.98451,"phaseMask":1,"position_x":1897.08,"position_y":980.836,"position_z":8.95884,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27108,"id":128403,"map":209,"orientation":-0.279253,"phaseMask":1,"position_x":1894.39,"position_y":977.006,"position_z":8.92631,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27109,"id":128308,"map":209,"orientation":2.75762,"phaseMask":1,"position_x":1897.98,"position_y":985.276,"position_z":8.89835,"rotation0":0,"rotation1":0,"rotation2":0.981627,"rotation3":0.190809,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27110,"id":128308,"map":209,"orientation":-2.56563,"phaseMask":1,"position_x":1888.64,"position_y":977.75,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.958819,"rotation3":0.284017,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27111,"id":128403,"map":209,"orientation":0.506145,"phaseMask":1,"position_x":1871.86,"position_y":994.256,"position_z":8.8819,"rotation0":0,"rotation1":0,"rotation2":0.25038,"rotation3":0.968148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27112,"id":128308,"map":209,"orientation":2.56563,"phaseMask":1,"position_x":1890.27,"position_y":970.862,"position_z":9.01388,"rotation0":0,"rotation1":0,"rotation2":0.958819,"rotation3":0.284017,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27113,"id":128403,"map":209,"orientation":1.0821,"phaseMask":1,"position_x":1871.3,"position_y":1008.32,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27114,"id":128403,"map":209,"orientation":0.575959,"phaseMask":1,"position_x":1832.72,"position_y":1032.39,"position_z":9.45168,"rotation0":0,"rotation1":0,"rotation2":0.284016,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27115,"id":128403,"map":209,"orientation":3.05433,"phaseMask":1,"position_x":1841.08,"position_y":1045.54,"position_z":9.21622,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27116,"id":128308,"map":209,"orientation":0.942478,"phaseMask":1,"position_x":1836.74,"position_y":1029.36,"position_z":9.62377,"rotation0":0,"rotation1":0,"rotation2":0.453991,"rotation3":0.891006,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27117,"id":128403,"map":209,"orientation":-2.49582,"phaseMask":1,"position_x":1852.41,"position_y":1024.78,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27118,"id":128403,"map":209,"orientation":-0.401426,"phaseMask":1,"position_x":1843.19,"position_y":1041.16,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27119,"id":128403,"map":209,"orientation":0.959931,"phaseMask":1,"position_x":1841.82,"position_y":1027.76,"position_z":9.15097,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27120,"id":128403,"map":209,"orientation":-1.67552,"phaseMask":1,"position_x":1839.18,"position_y":1036.88,"position_z":9.35239,"rotation0":0,"rotation1":0,"rotation2":-0.743146,"rotation3":0.669129,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27121,"id":128403,"map":209,"orientation":0.977384,"phaseMask":1,"position_x":1845.54,"position_y":1024.12,"position_z":9.07972,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27122,"id":128308,"map":209,"orientation":-1.71042,"phaseMask":1,"position_x":1863.41,"position_y":1044.78,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27123,"id":141596,"map":209,"orientation":-2.97579,"phaseMask":1,"position_x":1908.09,"position_y":1017.97,"position_z":11.5153,"rotation0":0,"rotation1":0,"rotation2":-0.996566,"rotation3":0.0828064,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":27124,"id":141851,"map":209,"orientation":2.79252,"phaseMask":1,"position_x":1909.48,"position_y":1016.13,"position_z":11.5157,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27126,"id":128403,"map":209,"orientation":-0.436333,"phaseMask":1,"position_x":1867.74,"position_y":1041.84,"position_z":8.8768,"rotation0":0,"rotation1":0,"rotation2":-0.21644,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27127,"id":128308,"map":209,"orientation":-0.488692,"phaseMask":1,"position_x":1869.28,"position_y":1020.08,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.241922,"rotation3":0.970296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27128,"id":128403,"map":209,"orientation":0.855211,"phaseMask":1,"position_x":1887.94,"position_y":1029.08,"position_z":9.14775,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27129,"id":128403,"map":209,"orientation":-2.1293,"phaseMask":1,"position_x":1892.57,"position_y":1006.37,"position_z":9.06781,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27130,"id":128403,"map":209,"orientation":-1.98968,"phaseMask":1,"position_x":1888.36,"position_y":1037,"position_z":8.92103,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27131,"id":128403,"map":209,"orientation":-0.453786,"phaseMask":1,"position_x":1881.99,"position_y":1034.68,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27132,"id":128403,"map":209,"orientation":2.79253,"phaseMask":1,"position_x":1891.6,"position_y":1023.06,"position_z":9.37117,"rotation0":0,"rotation1":0,"rotation2":0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27133,"id":128403,"map":209,"orientation":-0.453786,"phaseMask":1,"position_x":1845.96,"position_y":1047.25,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27134,"id":128403,"map":209,"orientation":-2.74017,"phaseMask":1,"position_x":1858.7,"position_y":1053.75,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.979925,"rotation3":0.199366,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27135,"id":128403,"map":209,"orientation":-2.3911,"phaseMask":1,"position_x":1862.12,"position_y":1050.76,"position_z":9.05665,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27136,"id":128308,"map":209,"orientation":1.11701,"phaseMask":1,"position_x":1866.33,"position_y":1049.64,"position_z":9.01483,"rotation0":0,"rotation1":0,"rotation2":0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27137,"id":128403,"map":209,"orientation":-2.19912,"phaseMask":1,"position_x":1881.46,"position_y":1041.43,"position_z":8.87679,"rotation0":0,"rotation1":0,"rotation2":-0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27138,"id":128403,"map":209,"orientation":-2.16421,"phaseMask":1,"position_x":1871.08,"position_y":1046.76,"position_z":9.03374,"rotation0":0,"rotation1":0,"rotation2":-0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27139,"id":128403,"map":209,"orientation":0.855211,"phaseMask":1,"position_x":1875.85,"position_y":1044.26,"position_z":9.07804,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1176,"guid":27140,"id":141832,"map":209,"orientation":-2.3911,"phaseMask":1,"position_x":1650.91,"position_y":1171.88,"position_z":10.901,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":1176}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/TanarisInstance":"9a5f1f52da6081aaf56c1d6edbb7bb64afd2ae40396bf59ce9a4b44584e7b7e7","patch/World/maps/TanarisInstance":"af1913e223a5af9b30163169cb09973fda55882f5033465791e32d60191a88f3"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/zulfarrak/source-snapshot.json","coordinateTransform":"three(x,y,z)=(-wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["21/21 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"blackrock-spire","title":"Blackrock Spire","mapId":229,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[55,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Blackrock Spire","theme":"Instanced dungeon","summary":"Fight through Blackrock Spire, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Blackrock Spire...","unchartedAreaName":"Uncharted Blackrock Spire","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":543.6145},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/229-blackrockspire/visual.glb","checksum":"6d23fe28b53771d4dc6bb0d5e49012afb163d0e935d5a7b53d79836d0c651691","size":11138748,"triangleCount":275958}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/229-blackrockspire/collision.glb","checksum":"eb47fcb1cf8ee74d46e4b8f0e8f8a057fb36ad2a4ceaffc2c8a3a9f1c7e4d309","size":1850720,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/229-blackrockspire/navigation.glb","checksum":"3fb6be3c02b2d84d1ffb7a943570df7f101173338a5dc9f109e34c275cfcabf9","size":435408,"triangleCount":33545}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-256.5857,-59.4414,-918.1778],"max":[274.3883,121.5526,-163.1577]},"entrance":{"name":"Blackrock Spire Entrance","footPosition":[-55.77,29.3326,-511.0078],"forward":[-0.13142282443853825,0,0.9913264049830395],"yaw":-0.1318041170900672},"areas":[{"id":"entrance","name":"Blackrock Spire Entrance","center":[-55.77,29.3326,-511.0078],"radius":35},{"id":"area-burning-felguard","name":"Burning Felguard's Encounter","center":[135.1883,43.8436,-610.2938],"radius":42},{"id":"area-crystal-fang","name":"Crystal Fang's Encounter","center":[128.3783,13.5936,-688.1338],"radius":42},{"id":"area-spirestone-battle-lord","name":"Spirestone Battle Lord's Encounter","center":[57.6283,11.2536,-703.0538],"radius":42},{"id":"area-spirestone-butcher","name":"Spirestone Butcher's Encounter","center":[59.3232,11.3259,-727.8818],"radius":42},{"id":"area-shadow-hunter-vosh-gajin","name":"Shadow Hunter Vosh'gajin's Encounter","center":[143.9283,4.2036,-768.1438],"radius":42},{"id":"area-war-master-voone","name":"War Master Voone's Encounter","center":[39.7147,-39.1506,-745.1128],"radius":42},{"id":"area-mother-smolderweb","name":"Mother Smolderweb's Encounter","center":[158.2483,-10.3364,-851.8138],"radius":42},{"id":"area-quartermaster-zigris","name":"Quartermaster Zigris's Encounter","center":[213.1973,66.8838,-761.5468],"radius":42},{"id":"area-halycon","name":"Halycon's Encounter","center":[216.6523,43.9815,-624.1118],"radius":42},{"id":"area-overlord-wyrmthalak","name":"Overlord Wyrmthalak's Encounter","center":[45.3708,70.2467,-772.1498],"radius":42},{"id":"area-pyroguard-emberseer","name":"Pyroguard Emberseer's Encounter","center":[-121.6997,75.9002,-543.9978],"radius":42},{"id":"area-solakar-flamewreath","name":"Solakar Flamewreath's Encounter","center":[-71.441,52.7562,-227.8167],"radius":42},{"id":"area-warchief-rend-blackhand","name":"Warchief Rend Blackhand's Encounter","center":[-136.5377,101.5526,-729.5828],"radius":42},{"id":"area-the-beast","name":"The Beast's Encounter","center":[-101.4717,86.9186,-849.7628],"radius":42},{"id":"area-general-drakkisath","name":"General Drakkisath's Encounter","center":[-13.7126,90.5296,-571.9578],"radius":42}],"entities":{"entry-10447":{"id":"entry-10447","kind":"mob","name":"Chromatic Dragonspawn","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5714,"damageMultiplier":1.12},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5714,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10094-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0057,"labelHeight":3.018,"markerRadius":2.1096}}},"entry-10442":{"id":"entry-10442","kind":"mob","name":"Chromatic Whelp","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-12167","name":"Lightning Bolt","spellId":12167,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4125,"damageMultiplier":1.12},{"id":"spell-16250","name":"Fireball Volley","spellId":16250,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4125,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10095-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6266,"markerRadius":1.0609}}},"entry-9216":{"id":"entry-9216","kind":"mob","name":"Spirestone Warlord","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-16171","name":"Empower Will","spellId":16171,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5393,"damageMultiplier":1.12},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5393,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11582-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0296,"labelHeight":9.2804,"markerRadius":2.5649}}},"entry-9240":{"id":"entry-9240","kind":"mob","name":"Smolderthorn Shadow Priest","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15800","name":"Mana Burn","spellId":15800,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4497,"damageMultiplier":1.12},{"id":"spell-11641","name":"Hex","spellId":11641,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4497,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28277-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-10221":{"id":"entry-10221","kind":"mob","name":"Bloodaxe Worg Pup","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9563-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.1001,"markerRadius":0.65}}},"entry-10220":{"id":"entry-10220","kind":"boss","name":"Halycon","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5931,"damageMultiplier":1.35},{"id":"spell-13738","name":"Rend","spellId":13738,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5931,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9567-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.2003,"markerRadius":2.8409}}},"entry-9268":{"id":"entry-9268","kind":"mob","name":"Smolderthorn Berserker","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17547","name":"Mortal Strike","spellId":17547,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":12000,"damageMultiplier":1.12},{"id":"spell-13446","name":"Strike","spellId":13446,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4169,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-7803-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0102,"labelHeight":4.1867,"markerRadius":1.3488}}},"entry-10299":{"id":"entry-10299","kind":"mob","name":"Scarshield Infiltrator","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":5257,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5257,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9642-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9583":{"id":"entry-9583","kind":"mob","name":"Bloodaxe Veteran","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-15618","name":"Snap Kick","spellId":15618,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4270,"damageMultiplier":1.12},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4270,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9633-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10261":{"id":"entry-10261","kind":"mob","name":"Burning Felhound","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1},{"id":"spell-20817","name":"Mana Burn","spellId":20817,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6370,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-1913-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.143,"markerRadius":2.3529}}},"entry-9201":{"id":"entry-9201","kind":"mob","name":"Spirestone Ogre Magus","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6742","name":"Bloodlust","spellId":6742,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5436,"damageMultiplier":1.12},{"id":"spell-13747","name":"Slow","spellId":13747,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5436,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11562-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-9199":{"id":"entry-9199","kind":"mob","name":"Spirestone Enforcer","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14516","name":"Strike","spellId":14516,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6116,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11577-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-9200":{"id":"entry-9200","kind":"mob","name":"Spirestone Reaver","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11876","name":"War Stomp","spellId":11876,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6810,"damageMultiplier":0.62,"radius":8},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":6810,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11581-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.028,"labelHeight":8.7832,"markerRadius":2.4275}}},"entry-9198":{"id":"entry-9198","kind":"mob","name":"Spirestone Mystic","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15981","name":"Rejuvenation","spellId":15981,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":4954,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15982","name":"Healing Wave","spellId":15982,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":4954,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11579-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0264,"labelHeight":8.2861,"markerRadius":2.2901}}},"entry-9196":{"id":"entry-9196","kind":"mob","name":"Highlord Omokk","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3200,"damageMultiplier":1},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4107,"damageMultiplier":1.12},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4107,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11565-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.028,"labelHeight":8.7287,"markerRadius":2.7613}}},"entry-9218":{"id":"entry-9218","kind":"boss","name":"Spirestone Battle Lord","title":"Dungeon Boss","hasLoot":true,"combat":{"level":58,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5144,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.29,"archetype":"winged","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11576-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0296,"labelHeight":9.2227,"markerRadius":2.9176}}},"entry-9197":{"id":"entry-9197","kind":"mob","name":"Spirestone Battle Mage","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16170","name":"Bloodlust","spellId":16170,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7446,"damageMultiplier":1.12},{"id":"spell-15305","name":"Chain Lightning","spellId":15305,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7446,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11543-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0264,"labelHeight":8.2861,"markerRadius":2.2901}}},"entry-9217":{"id":"entry-9217","kind":"mob","name":"Spirestone Lord Magus","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16170","name":"Bloodlust","spellId":16170,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6047,"damageMultiplier":1.12},{"id":"spell-13323","name":"Polymorph","spellId":13323,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6047,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11578-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0296,"labelHeight":9.2804,"markerRadius":2.5649}}},"entry-9236":{"id":"entry-9236","kind":"boss","name":"Shadow Hunter Vosh'gajin","title":"Dungeon Boss","hasLoot":true,"combat":{"level":58,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1300,"damageMultiplier":1},{"id":"spell-16097","name":"Hex","spellId":16097,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4990,"damageMultiplier":1.35},{"id":"spell-16098","name":"Curse of Blood","spellId":16098,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4990,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9732-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.6065,"markerRadius":0.65}}},"entry-9219":{"id":"entry-9219","kind":"boss","name":"Spirestone Butcher","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6763,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.34,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11574-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.028,"labelHeight":8.7287,"markerRadius":2.7613}}},"entry-9267":{"id":"entry-9267","kind":"mob","name":"Smolderthorn Axe Thrower","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16000","name":"Throw","spellId":16000,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6772,"damageMultiplier":1.12},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6772,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28267-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9239":{"id":"entry-9239","kind":"mob","name":"Smolderthorn Mystic","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15799","name":"Chain Heal","spellId":15799,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":4783,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-16006","name":"Chain Lightning","spellId":16006,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4783,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28271-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9269":{"id":"entry-9269","kind":"mob","name":"Smolderthorn Seer","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15801","name":"Lightning Bolt","spellId":15801,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.12},{"id":"spell-12492","name":"Healing Wave","spellId":12492,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28273-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9265":{"id":"entry-9265","kind":"mob","name":"Smolderthorn Shadow Hunter","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1},{"id":"spell-15582","name":"Backstab","spellId":15582,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6719,"damageMultiplier":1.12},{"id":"spell-12540","name":"Gouge","spellId":12540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6719,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28275-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9241":{"id":"entry-9241","kind":"mob","name":"Smolderthorn Headhunter","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15795","name":"Throw","spellId":15795,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6753,"damageMultiplier":1.12},{"id":"spell-16001","name":"Impale","spellId":16001,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6753,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28269-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9266":{"id":"entry-9266","kind":"mob","name":"Smolderthorn Witch Doctor","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28279-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0141,"labelHeight":3.7734,"markerRadius":0.682}}},"entry-9259":{"id":"entry-9259","kind":"mob","name":"Firebrand Grunt","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2700,"damageMultiplier":1},{"id":"spell-15128","name":"Mark of Flames","spellId":15128,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4342,"damageMultiplier":1.12},{"id":"spell-13737","name":"Mortal Strike","spellId":13737,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9664-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9261":{"id":"entry-9261","kind":"mob","name":"Firebrand Darkweaver","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15128","name":"Mark of Flames","spellId":15128,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7257,"damageMultiplier":1.12},{"id":"spell-14887","name":"Shadow Bolt Volley","spellId":14887,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7257,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9644-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9262":{"id":"entry-9262","kind":"mob","name":"Firebrand Invoker","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15128","name":"Mark of Flames","spellId":15128,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5960,"damageMultiplier":1.12},{"id":"spell-12468","name":"Flamestrike","spellId":12468,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5960,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9648-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9260":{"id":"entry-9260","kind":"mob","name":"Firebrand Legionnaire","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3248","name":"Improved Blocking","spellId":3248,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6027,"damageMultiplier":1.12},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":6027,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9660-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9264":{"id":"entry-9264","kind":"mob","name":"Firebrand Pyromancer","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1300,"damageMultiplier":1},{"id":"spell-15128","name":"Mark of Flames","spellId":15128,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6466,"damageMultiplier":1.12},{"id":"spell-15096","name":"Flame Shock","spellId":15096,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6466,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9656-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9263":{"id":"entry-9263","kind":"mob","name":"Firebrand Dreadweaver","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16071","name":"Curse of the Firebrand","spellId":16071,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5925,"damageMultiplier":1.12},{"id":"spell-15728","name":"Plague Cloud","spellId":15728,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5925,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9652-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10375":{"id":"entry-10375","kind":"mob","name":"Spire Spiderling","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9756-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.3303,"markerRadius":1.2168}}},"entry-10596":{"id":"entry-10596","kind":"boss","name":"Mother Smolderweb","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-16104","name":"Crystallize","spellId":16104,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4202,"damageMultiplier":1.35},{"id":"spell-16468","name":"Mother's Milk","spellId":16468,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4202,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9929-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.8428,"markerRadius":4.2588}}},"entry-10374":{"id":"entry-10374","kind":"mob","name":"Spire Spider","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-16104","name":"Crystallize","spellId":16104,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5803,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9755-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.8007,"markerRadius":3.042}}},"entry-10376":{"id":"entry-10376","kind":"boss","name":"Crystal Fang","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6281,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.29,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9755-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.8007,"markerRadius":3.042}}},"entry-9716":{"id":"entry-9716","kind":"mob","name":"Bloodaxe Warmonger","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4611,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}},{"id":"spell-10966","name":"Uppercut","spellId":10966,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4611,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9617-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9717":{"id":"entry-9717","kind":"mob","name":"Bloodaxe Summoner","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15791","name":"Arcane Missiles","spellId":15791,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6312,"damageMultiplier":1.12},{"id":"spell-15532","name":"Frost Nova","spellId":15532,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6312,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9613-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9692":{"id":"entry-9692","kind":"mob","name":"Bloodaxe Raider","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4531,"damageMultiplier":0.62,"radius":8},{"id":"spell-15572","name":"Sunder Armor","spellId":15572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4531,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9602-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9696":{"id":"entry-9696","kind":"mob","name":"Bloodaxe Worg","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9562-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7879,"markerRadius":1.8466}}},"entry-9736":{"id":"entry-9736","kind":"boss","name":"Quartermaster Zigris","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15504","name":"Drink Healing Potion","spellId":15504,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5589,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15609","name":"Hooked Net","spellId":15609,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5589,"damageMultiplier":1.35},{"id":"spell-16496","name":"Shoot","spellId":16496,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5589,"damageMultiplier":1.35},{"id":"spell-16497","name":"Stun Bomb","spellId":16497,"delivery":"projectile","target":"random-party","school":"fire","animation":"cast","range":28,"cooldownMs":5589,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":2500}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9738-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9568":{"id":"entry-9568","kind":"boss","name":"Overlord Wyrmthalak","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6762,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"serpent","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-8711-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0114,"labelHeight":7.5409,"markerRadius":4.2192}}},"entry-9708":{"id":"entry-9708","kind":"mob","name":"Burning Imp","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-4449-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.4865,"markerRadius":0.65}}},"entry-10263":{"id":"entry-10263","kind":"boss","name":"Burning Felguard","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2300,"damageMultiplier":1},{"id":"spell-16046","name":"Blast Wave","spellId":16046,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4299,"damageMultiplier":1.35},{"id":"spell-15588","name":"Thunderclap","spellId":15588,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4299,"damageMultiplier":1.35},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4299,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.29,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-5047-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0153,"labelHeight":8.673,"markerRadius":1.2829}}},"entry-9237":{"id":"entry-9237","kind":"boss","name":"War Master Voone","title":"Dungeon Boss","hasLoot":true,"combat":{"level":58,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6558,"damageMultiplier":1.35},{"id":"spell-16075","name":"Throw Axe","spellId":16075,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6558,"damageMultiplier":1.35},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":6558,"damageMultiplier":0.82,"radius":11},{"id":"spell-15618","name":"Snap Kick","spellId":15618,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6558,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-28281-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0169,"labelHeight":4.5281,"markerRadius":0.8184}}},"entry-9596":{"id":"entry-9596","kind":"mob","name":"Bannok Grimaxe","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9668-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0101,"labelHeight":4.3581,"markerRadius":1.0118}}},"entry-9693":{"id":"entry-9693","kind":"mob","name":"Bloodaxe Evoker","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13748","name":"Arcane Bolt","spellId":13748,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5505,"damageMultiplier":1.12},{"id":"spell-15744","name":"Blast Wave","spellId":15744,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5505,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9625-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10814":{"id":"entry-10814","kind":"mob","name":"Chromatic Elite Guard","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2600,"damageMultiplier":1},{"id":"spell-15708","name":"Mortal Strike","spellId":15708,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4586,"damageMultiplier":1.12},{"id":"spell-16790","name":"Stunning Strike","spellId":16790,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10116-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":5.6557,"markerRadius":3.1644}}},"entry-9701":{"id":"entry-9701","kind":"mob","name":"Spire Scorpid","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-2864-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.6632,"markerRadius":0.8953}}},"entry-10177":{"id":"entry-10177","kind":"mob","name":"Spire Scarab","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9469-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0009,"labelHeight":1.1344,"markerRadius":0.65}}},"entry-9816":{"id":"entry-9816","kind":"boss","name":"Pyroguard Emberseer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":7040,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/39572de3191c78a4573a438b4f299709d7ff1606c17e59844c7165b245fc5993.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9348,"markerRadius":0.878}}},"entry-9096":{"id":"entry-9096","kind":"mob","name":"Rage Talon Dragonspawn","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12021","name":"Fixate","spellId":12021,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5469,"damageMultiplier":1.12},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5469,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"raptor","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-2554-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":3.7351,"markerRadius":2.637}}},"entry-10083":{"id":"entry-10083","kind":"mob","name":"Rage Talon Flamescale","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16102","name":"Flamestrike","spellId":16102,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4078,"damageMultiplier":1.12},{"id":"spell-15285","name":"Fireball Volley","spellId":15285,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4078,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"raptor","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-8249-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0057,"labelHeight":2.8487,"markerRadius":1.9451}}},"entry-10366":{"id":"entry-10366","kind":"mob","name":"Rage Talon Dragon Guard","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6131,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":8000,"magnitude":0.15}},{"id":"spell-16145","name":"Sunder Armor","spellId":16145,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6131,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"raptor","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9753-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":4.7131,"markerRadius":2.637}}},"entry-10899":{"id":"entry-10899","kind":"mob","name":"Goraluk Anvilcrack","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6253","name":"Backhand","spellId":6253,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6320,"damageMultiplier":1.12},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6320,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10222-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-10371":{"id":"entry-10371","kind":"mob","name":"Rage Talon Captain","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16169","name":"Arcing Smash","spellId":16169,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5635,"damageMultiplier":1.12},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5635,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"raptor","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-8310-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":5.6557,"markerRadius":3.1644}}},"entry-10372":{"id":"entry-10372","kind":"mob","name":"Rage Talon Fire Tongue","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16144","name":"Fire Blast","spellId":16144,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6396,"damageMultiplier":1.12},{"id":"spell-16168","name":"Flame Buffet","spellId":16168,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6396,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"raptor","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-8309-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":3.4982,"markerRadius":2.4314}}},"entry-9818":{"id":"entry-9818","kind":"mob","name":"Blackhand Summoner","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12466","name":"Fireball","spellId":12466,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7230,"damageMultiplier":1.12},{"id":"spell-15532","name":"Frost Nova","spellId":15532,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7230,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9849-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-9819":{"id":"entry-9819","kind":"mob","name":"Blackhand Veteran","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":6550,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-15749","name":"Shield Charge","spellId":15749,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6550,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15749","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9686-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10316":{"id":"entry-10316","kind":"mob","name":"Blackhand Incarcerator","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16045","name":"Encage","spellId":16045,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5366,"damageMultiplier":1.12},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5366,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9690-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9817":{"id":"entry-9817","kind":"mob","name":"Blackhand Dreadweaver","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7479,"damageMultiplier":1.12},{"id":"spell-7068","name":"Veil of Shadow","spellId":7068,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7479,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9670-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10762":{"id":"entry-10762","kind":"mob","name":"Blackhand Thug","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10172-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-10317":{"id":"entry-10317","kind":"mob","name":"Blackhand Elite","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2300,"damageMultiplier":1},{"id":"spell-6253","name":"Backhand","spellId":6253,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6723,"damageMultiplier":1.12},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6723,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9734-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-10162":{"id":"entry-10162","kind":"mob","name":"Lord Victor Nefarius","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-20741","name":"Shadow Bolt Volley","spellId":20741,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4063,"damageMultiplier":0.62,"radius":8},{"id":"spell-24668","name":"Shadow Bolt","spellId":24668,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4063,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9472-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.001,"labelHeight":3.5751,"markerRadius":0.7474}}},"entry-10429":{"id":"entry-10429","kind":"boss","name":"Warchief Rend Blackhand","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7468,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9778-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10430":{"id":"entry-10430","kind":"boss","name":"The Beast","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.69,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16636","name":"Berserker Charge","spellId":16636,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4912,"damageMultiplier":1.35},{"id":"spell-16144","name":"Fire Blast","spellId":16144,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4912,"damageMultiplier":1.35},{"id":"spell-16788","name":"Fireball","spellId":16788,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4912,"damageMultiplier":1.35},{"id":"spell-16785","name":"Flamebreak","spellId":16785,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4912,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.37,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10193-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0402,"labelHeight":15.8698,"markerRadius":4.5}}},"entry-10509":{"id":"entry-10509","kind":"mob","name":"Jed Runewatcher","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35178","name":"Shield Bash","spellId":35178,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":5800,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-35178","durationMs":8000,"magnitude":0.15}},{"id":"spell-15749","name":"Shield Charge","spellId":15749,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5800,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15749","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9686-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10363":{"id":"entry-10363","kind":"boss","name":"General Drakkisath","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.1745920000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-23462","name":"Fire Nova","spellId":23462,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5725,"damageMultiplier":0.82,"radius":11},{"id":"spell-20691","name":"Cleave","spellId":20691,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5725,"damageMultiplier":0.82,"radius":11},{"id":"spell-23023","name":"Conflagration","spellId":23023,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5725,"damageMultiplier":1.35},{"id":"spell-23931","name":"Thunderclap","spellId":23931,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5725,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-10115-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0114,"labelHeight":11.1034,"markerRadius":4.5}}},"entry-10318":{"id":"entry-10318","kind":"mob","name":"Blackhand Assassin","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15582","name":"Backstab","spellId":15582,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4734,"damageMultiplier":1.12},{"id":"spell-12540","name":"Gouge","spellId":12540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4734,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9691-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-10319":{"id":"entry-10319","kind":"mob","name":"Blackhand Iron Guard","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4097,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":8000,"magnitude":0.15}},{"id":"spell-15062","name":"Shield Wall","spellId":15062,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4097,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15062","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9696-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-9045":{"id":"entry-9045","kind":"mob","name":"Scarshield Acolyte","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5823,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-14032","name":"Shadow Word: Pain","spellId":14032,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5823,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-8898-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9097":{"id":"entry-9097","kind":"mob","name":"Scarshield Legionnaire","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":7128,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":7128,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9629-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9098":{"id":"entry-9098","kind":"mob","name":"Scarshield Spellbinder","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15122","name":"Counterspell","spellId":15122,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4970,"damageMultiplier":1.12},{"id":"spell-15123","name":"Resist Fire","spellId":15123,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4970,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9618-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9416":{"id":"entry-9416","kind":"mob","name":"Scarshield Worg","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11420-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.5066,"markerRadius":1.6335}}},"entry-9258":{"id":"entry-9258","kind":"mob","name":"Scarshield Raider","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14030","name":"Hooked Net","spellId":14030,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5445,"damageMultiplier":1.12},{"id":"spell-12057","name":"Strike","spellId":12057,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5445,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9637-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9257":{"id":"entry-9257","kind":"mob","name":"Scarshield Warlock","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6704,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9609-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9718":{"id":"entry-9718","kind":"mob","name":"Ghok Bashguud","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-11809-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-10264":{"id":"entry-10264","kind":"boss","name":"Solakar Flamewreath","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16727","name":"War Stomp","spellId":16727,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4302,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-spire/creatures/display-9581-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.01,"labelHeight":6.5983,"markerRadius":3.6918}}}},"staticSpawns":[{"id":"creature-20","entityId":"entry-10447","position":[-179.7727,90.4806,-707.2708],"yaw":-3.12414,"spawnMask":1},{"id":"creature-21","entityId":"entry-10442","position":[-181.2767,90.4826,-704.4068],"yaw":-3.19395,"spawnMask":1},{"id":"creature-22","entityId":"entry-10442","position":[-180.4037,90.4796,-709.9628],"yaw":-3.07178,"spawnMask":1},{"id":"creature-23","entityId":"entry-10442","position":[-178.2697,90.4676,-702.6118],"yaw":-3.22886,"spawnMask":1},{"id":"creature-24187","entityId":"entry-9216","position":[78.49,31.9201,-655.5188],"yaw":-6.10359,"spawnMask":1},{"id":"creature-24188","entityId":"entry-9216","position":[57.2427,29.8147,-656.2918],"yaw":-3.8986,"spawnMask":1},{"id":"creature-40154","entityId":"entry-9240","position":[70.4683,-3.9264,-746.2038],"yaw":-6,"spawnMask":1},{"id":"creature-40169","entityId":"entry-10221","position":[218.0863,43.918,-611.7338],"yaw":-1.59871,"spawnMask":1},{"id":"creature-40245","entityId":"entry-10220","position":[216.6523,43.9815,-624.1118],"yaw":-0.657799,"spawnMask":1},{"id":"creature-40246","entityId":"entry-10221","position":[218.3853,43.918,-606.6848],"yaw":-4.7403,"spawnMask":1},{"id":"creature-40247","entityId":"entry-10221","position":[208.5453,43.918,-602.4018],"yaw":-2.69277,"spawnMask":1},{"id":"creature-40248","entityId":"entry-10221","position":[214.6213,43.918,-609.1708],"yaw":-3.14202,"spawnMask":1},{"id":"creature-40249","entityId":"entry-10221","position":[211.3223,43.918,-605.7148],"yaw":-1.77778,"spawnMask":1},{"id":"creature-40250","entityId":"entry-10221","position":[214.8673,43.918,-603.2748],"yaw":-0.261964,"spawnMask":1},{"id":"creature-42188","entityId":"entry-9268","position":[100.3002,60.9568,-802.8958],"yaw":-4.5204,"spawnMask":1},{"id":"creature-42189","entityId":"entry-9268","position":[86.0584,57.4927,-771.5928],"yaw":-0.85521,"spawnMask":1},{"id":"creature-42190","entityId":"entry-9268","position":[72.4221,67.8896,-800.2668],"yaw":-5.44524,"spawnMask":1},{"id":"creature-42191","entityId":"entry-9268","position":[63.9932,-39.1506,-734.4538],"yaw":-3.89064,"spawnMask":1},{"id":"creature-42192","entityId":"entry-9268","position":[23.3683,-39.1264,-767.9638],"yaw":-4.06,"spawnMask":1},{"id":"creature-42193","entityId":"entry-9268","position":[27.5083,-27.4664,-803.6638],"yaw":-2.78,"spawnMask":1},{"id":"creature-42194","entityId":"entry-9268","position":[41.9438,-39.2849,-843.6698],"yaw":-3.00598,"spawnMask":1},{"id":"creature-42195","entityId":"entry-9268","position":[87.7325,-39.3015,-776.2498],"yaw":-6.17529,"spawnMask":1},{"id":"creature-42196","entityId":"entry-9268","position":[87.6572,-39.3044,-824.7328],"yaw":-0.177575,"spawnMask":1},{"id":"creature-42197","entityId":"entry-9268","position":[100.2083,-27.4664,-799.0838],"yaw":-6.1,"spawnMask":1},{"id":"creature-42198","entityId":"entry-9268","position":[87.6228,-39.3181,-802.9688],"yaw":-6.21651,"spawnMask":1},{"id":"creature-42199","entityId":"entry-9268","position":[99.7867,-27.6493,-807.6178],"yaw":-6.201,"spawnMask":1},{"id":"creature-42798","entityId":"entry-10299","position":[-34.3162,43.9247,-685.6448],"yaw":-2.94961,"spawnMask":1},{"id":"creature-43100","entityId":"entry-9268","position":[71.7731,57.3258,-713.7288],"yaw":-1.64061,"spawnMask":1},{"id":"creature-43102","entityId":"entry-9583","position":[81.5482,57.4927,-766.9688],"yaw":-4.41568,"spawnMask":1},{"id":"creature-43103","entityId":"entry-9583","position":[66.2971,68.0802,-801.1348],"yaw":-3.70166,"spawnMask":1},{"id":"creature-43104","entityId":"entry-9583","position":[78.4032,50.4355,-630.7358],"yaw":-1.35292,"spawnMask":1},{"id":"creature-43105","entityId":"entry-9583","position":[106.5464,50.446,-602.1508],"yaw":-1.5988,"spawnMask":1},{"id":"creature-43106","entityId":"entry-9583","position":[94.8083,50.6436,-608.1138],"yaw":-3.22,"spawnMask":1},{"id":"creature-43107","entityId":"entry-9583","position":[95.0483,50.6436,-605.2138],"yaw":-3.26,"spawnMask":1},{"id":"creature-43108","entityId":"entry-9583","position":[111.3202,50.4471,-631.7918],"yaw":-1.63021,"spawnMask":1},{"id":"creature-43109","entityId":"entry-9583","position":[134.1093,50.446,-578.2688],"yaw":-5.4586,"spawnMask":1},{"id":"creature-43110","entityId":"entry-9583","position":[143.9683,50.4461,-615.7618],"yaw":-3.77626,"spawnMask":1},{"id":"creature-43111","entityId":"entry-9583","position":[158.6303,50.446,-584.8628],"yaw":-3.47851,"spawnMask":1},{"id":"creature-43112","entityId":"entry-9583","position":[225.6583,67.0636,-764.5538],"yaw":0,"spawnMask":1},{"id":"creature-43113","entityId":"entry-9583","position":[186.2533,55.6409,-703.2148],"yaw":-1.52424,"spawnMask":1},{"id":"creature-43114","entityId":"entry-9583","position":[177.7833,43.9394,-629.7598],"yaw":-3.10946,"spawnMask":1},{"id":"creature-43115","entityId":"entry-9583","position":[161.7213,37.5726,-655.0968],"yaw":-3.13493,"spawnMask":1},{"id":"creature-43493","entityId":"entry-10261","position":[39.3583,8.8636,-865.5938],"yaw":-6.26,"spawnMask":1},{"id":"creature-43503","entityId":"entry-9201","position":[47.8583,8.8336,-800.3938],"yaw":-2.98,"spawnMask":1},{"id":"creature-43504","entityId":"entry-9199","position":[63.2983,8.8236,-783.7438],"yaw":-4.66,"spawnMask":1},{"id":"creature-43505","entityId":"entry-9199","position":[55.6983,8.8136,-783.6138],"yaw":-4.73,"spawnMask":1},{"id":"creature-43506","entityId":"entry-9199","position":[53.7183,11.4736,-718.9238],"yaw":-3.23,"spawnMask":1},{"id":"creature-43507","entityId":"entry-9200","position":[59.7883,11.2936,-673.0338],"yaw":-4.65,"spawnMask":1},{"id":"creature-43508","entityId":"entry-9198","position":[64.0783,11.2936,-666.3738],"yaw":-4.82,"spawnMask":1},{"id":"creature-43510","entityId":"entry-9201","position":[37.3183,11.2936,-638.6538],"yaw":-3.1,"spawnMask":1},{"id":"creature-43512","entityId":"entry-9200","position":[36.9083,11.2436,-612.6238],"yaw":-3.11,"spawnMask":1},{"id":"creature-43513","entityId":"entry-9198","position":[70.3983,22.7336,-602.7238],"yaw":-5.57,"spawnMask":1},{"id":"creature-43514","entityId":"entry-9198","position":[49.4783,11.2936,-589.9838],"yaw":-6.17,"spawnMask":1},{"id":"creature-43515","entityId":"entry-9201","position":[41.9083,11.2936,-590.4638],"yaw":-3.1,"spawnMask":1},{"id":"creature-43516","entityId":"entry-9201","position":[81.6083,23.6236,-606.7138],"yaw":-5.53,"spawnMask":1},{"id":"creature-43517","entityId":"entry-9200","position":[75.1483,22.8336,-592.8638],"yaw":-5.53,"spawnMask":1},{"id":"creature-43518","entityId":"entry-9196","position":[45.5283,11.2936,-586.6438],"yaw":-4.65,"spawnMask":1},{"id":"creature-43519","entityId":"entry-9218","position":[57.6283,11.2536,-703.0538],"yaw":-4.76,"spawnMask":1},{"id":"creature-43520","entityId":"entry-9197","position":[67.1483,11.4736,-718.8238],"yaw":-6.24,"spawnMask":1},{"id":"creature-43521","entityId":"entry-9217","position":[53.4683,11.2936,-646.4938],"yaw":-4.56,"spawnMask":1},{"id":"creature-43522","entityId":"entry-9236","position":[143.9283,4.2036,-768.1438],"yaw":-6.28,"spawnMask":1},{"id":"creature-43523","entityId":"entry-9219","position":[59.3232,11.3259,-727.8818],"yaw":-1.6,"spawnMask":1},{"id":"creature-43524","entityId":"entry-9267","position":[19.3183,-4.3164,-742.9538],"yaw":-4.66,"spawnMask":1},{"id":"creature-43525","entityId":"entry-9267","position":[27.0583,-4.1664,-745.0538],"yaw":-0.14,"spawnMask":1},{"id":"creature-43526","entityId":"entry-9239","position":[27.0883,-4.1664,-748.6238],"yaw":-6.28,"spawnMask":1},{"id":"creature-43528","entityId":"entry-9239","position":[40.6383,-3.9064,-732.2738],"yaw":-4.66,"spawnMask":1},{"id":"creature-43529","entityId":"entry-9239","position":[44.8583,-3.8664,-733.7838],"yaw":-5.84,"spawnMask":1},{"id":"creature-43530","entityId":"entry-9240","position":[55.9283,-3.8364,-736.3538],"yaw":-3.75,"spawnMask":1},{"id":"creature-43531","entityId":"entry-9269","position":[56.3783,-3.8564,-739.5438],"yaw":-2.4,"spawnMask":1},{"id":"creature-43532","entityId":"entry-9265","position":[60.1283,-3.8664,-739.5038],"yaw":-0.64,"spawnMask":1},{"id":"creature-43533","entityId":"entry-9239","position":[60.2783,-3.8464,-736.6238],"yaw":-5.75,"spawnMask":1},{"id":"creature-43534","entityId":"entry-9240","position":[76.2383,-3.9664,-740.2538],"yaw":-2.25,"spawnMask":1},{"id":"creature-43535","entityId":"entry-9240","position":[80.3683,-3.9864,-740.1438],"yaw":-0.69,"spawnMask":1},{"id":"creature-43536","entityId":"entry-9239","position":[80.2983,-3.9764,-736.4138],"yaw":-5.57,"spawnMask":1},{"id":"creature-43537","entityId":"entry-9267","position":[76.4983,-3.9464,-736.5538],"yaw":-4,"spawnMask":1},{"id":"creature-43538","entityId":"entry-9240","position":[79.2583,-4.0264,-757.5538],"yaw":-6.26,"spawnMask":1},{"id":"creature-43539","entityId":"entry-9240","position":[52.6183,-3.9364,-760.5238],"yaw":-6.19,"spawnMask":1},{"id":"creature-43540","entityId":"entry-9240","position":[76.5483,-4.0864,-774.1438],"yaw":-3.92,"spawnMask":1},{"id":"creature-43541","entityId":"entry-9267","position":[76.3283,-4.1364,-777.3138],"yaw":-2.89,"spawnMask":1},{"id":"creature-43542","entityId":"entry-9240","position":[80.3983,-4.0964,-776.8238],"yaw":-0.63,"spawnMask":1},{"id":"creature-43543","entityId":"entry-9267","position":[80.6583,-4.0864,-774.1938],"yaw":-5.63,"spawnMask":1},{"id":"creature-43544","entityId":"entry-9240","position":[115.9383,3.9136,-763.8638],"yaw":-6.21,"spawnMask":1},{"id":"creature-43545","entityId":"entry-9239","position":[116.0083,3.9136,-769.1138],"yaw":-6.28,"spawnMask":1},{"id":"creature-43546","entityId":"entry-9269","position":[122.8083,3.9236,-777.5038],"yaw":-1.5,"spawnMask":1},{"id":"creature-43547","entityId":"entry-9265","position":[126.5283,3.9236,-777.7438],"yaw":-1.43,"spawnMask":1},{"id":"creature-43548","entityId":"entry-9239","position":[126.8183,3.9236,-759.1538],"yaw":-4.74,"spawnMask":1},{"id":"creature-43549","entityId":"entry-9240","position":[122.9583,3.9236,-758.4638],"yaw":-4.61,"spawnMask":1},{"id":"creature-43550","entityId":"entry-9240","position":[148.4083,3.9336,-759.7538],"yaw":-6.24,"spawnMask":1},{"id":"creature-43551","entityId":"entry-9240","position":[148.0783,3.9336,-775.8438],"yaw":-6.26,"spawnMask":1},{"id":"creature-43552","entityId":"entry-9265","position":[57.8183,-15.8164,-799.0438],"yaw":-3.82,"spawnMask":1},{"id":"creature-43553","entityId":"entry-9265","position":[67.2883,-15.8164,-807.6438],"yaw":-0.82,"spawnMask":1},{"id":"creature-43554","entityId":"entry-9240","position":[66.9783,-15.8164,-799.3738],"yaw":-5.68,"spawnMask":1},{"id":"creature-43555","entityId":"entry-9240","position":[57.7883,-15.8164,-807.7138],"yaw":-2.48,"spawnMask":1},{"id":"creature-43556","entityId":"entry-9267","position":[51.9283,-4.2164,-836.6638],"yaw":-0.1,"spawnMask":1},{"id":"creature-43557","entityId":"entry-9267","position":[64.7183,-4.2064,-839.7638],"yaw":-1.48,"spawnMask":1},{"id":"creature-43558","entityId":"entry-9240","position":[60.4883,-4.2064,-834.7038],"yaw":-1.57,"spawnMask":1},{"id":"creature-43559","entityId":"entry-9239","position":[64.7483,-4.1664,-827.4538],"yaw":-1.56,"spawnMask":1},{"id":"creature-43560","entityId":"entry-9241","position":[102.7383,-27.4664,-807.3038],"yaw":-0.08,"spawnMask":1},{"id":"creature-43567","entityId":"entry-9269","position":[22.7183,-39.1164,-761.0738],"yaw":-3.82,"spawnMask":1},{"id":"creature-43568","entityId":"entry-9240","position":[25.9583,-39.1164,-761.1138],"yaw":-4.85,"spawnMask":1},{"id":"creature-43569","entityId":"entry-9241","position":[30.0483,-39.1064,-761.1838],"yaw":-5.03,"spawnMask":1},{"id":"creature-43570","entityId":"entry-9266","position":[80.2183,-38.9664,-740.7838],"yaw":-2.55,"spawnMask":1},{"id":"creature-43571","entityId":"entry-9241","position":[84.7883,-38.9664,-743.3038],"yaw":-1.3,"spawnMask":1},{"id":"creature-43572","entityId":"entry-9269","position":[84.5583,-38.9664,-735.3238],"yaw":-5.17,"spawnMask":1},{"id":"creature-43574","entityId":"entry-9241","position":[50.7883,-39.0864,-759.7538],"yaw":-4.71,"spawnMask":1},{"id":"creature-43575","entityId":"entry-9241","position":[58.3483,-39.0964,-759.6538],"yaw":-4.94,"spawnMask":1},{"id":"creature-43576","entityId":"entry-9241","position":[94.5483,-39.1864,-863.1138],"yaw":-0.11,"spawnMask":1},{"id":"creature-43577","entityId":"entry-9241","position":[50.0183,-39.1764,-863.1538],"yaw":-2.27,"spawnMask":1},{"id":"creature-43578","entityId":"entry-9266","position":[49.5083,-39.1464,-859.7738],"yaw":-3.43,"spawnMask":1},{"id":"creature-43707","entityId":"entry-9266","position":[53.5383,-39.1464,-859.3038],"yaw":-5.39,"spawnMask":1},{"id":"creature-43748","entityId":"entry-9266","position":[87.4883,-39.1864,-861.0838],"yaw":-3.45,"spawnMask":1},{"id":"creature-43749","entityId":"entry-9266","position":[24.2283,-39.0964,-842.5438],"yaw":-2.99,"spawnMask":1},{"id":"creature-43750","entityId":"entry-9269","position":[28.4683,-39.0964,-840.0938],"yaw":-5.73,"spawnMask":1},{"id":"creature-43751","entityId":"entry-9269","position":[61.3683,-39.1364,-811.1738],"yaw":-1.59,"spawnMask":1},{"id":"creature-43752","entityId":"entry-9269","position":[66.5783,-39.1364,-805.4838],"yaw":0,"spawnMask":1},{"id":"creature-43753","entityId":"entry-9269","position":[56.1183,-39.1364,-805.3238],"yaw":-3.09,"spawnMask":1},{"id":"creature-43754","entityId":"entry-9269","position":[60.9883,-39.1364,-800.0838],"yaw":-4.72,"spawnMask":1},{"id":"creature-43755","entityId":"entry-9269","position":[54.6283,-39.0964,-759.4638],"yaw":-4.8,"spawnMask":1},{"id":"creature-43756","entityId":"entry-9267","position":[52.9283,-39.1064,-763.6338],"yaw":-4.73,"spawnMask":1},{"id":"creature-43757","entityId":"entry-9265","position":[56.9183,-39.1064,-763.4538],"yaw":-4.72,"spawnMask":1},{"id":"creature-43758","entityId":"entry-9265","position":[91.6283,-39.1764,-859.5438],"yaw":-5.16,"spawnMask":1},{"id":"creature-43759","entityId":"entry-9267","position":[88.7183,-39.1864,-864.2338],"yaw":-2.33,"spawnMask":1},{"id":"creature-43760","entityId":"entry-9239","position":[28.8083,-39.0964,-844.0138],"yaw":-0.57,"spawnMask":1},{"id":"creature-43761","entityId":"entry-9239","position":[53.4483,-39.1664,-862.8838],"yaw":-0.63,"spawnMask":1},{"id":"creature-43762","entityId":"entry-9259","position":[0.7083,-38.8564,-790.5938],"yaw":-4.8,"spawnMask":1},{"id":"creature-43763","entityId":"entry-9259","position":[-1.8017,-39.2564,-730.7738],"yaw":-4.28,"spawnMask":1},{"id":"creature-43764","entityId":"entry-9259","position":[24.1283,-39.2264,-707.3238],"yaw":-3.83,"spawnMask":1},{"id":"creature-43765","entityId":"entry-9259","position":[38.9283,-39.2664,-692.7138],"yaw":-4.54,"spawnMask":1},{"id":"creature-43766","entityId":"entry-9259","position":[65.1883,-39.2664,-696.9838],"yaw":-5.73,"spawnMask":1},{"id":"creature-43767","entityId":"entry-9259","position":[60.2183,-39.2664,-712.7938],"yaw":-3.6,"spawnMask":1},{"id":"creature-43768","entityId":"entry-9259","position":[65.3683,-39.2664,-712.1338],"yaw":-5.39,"spawnMask":1},{"id":"creature-43771","entityId":"entry-9261","position":[4.1483,-39.1964,-727.5438],"yaw":-4.72,"spawnMask":1},{"id":"creature-44007","entityId":"entry-9261","position":[48.0783,-39.2564,-694.5438],"yaw":-4.92,"spawnMask":1},{"id":"creature-44008","entityId":"entry-9261","position":[70.1283,-39.2564,-692.2138],"yaw":-5.66,"spawnMask":1},{"id":"creature-44009","entityId":"entry-9261","position":[73.9883,-39.2564,-699.2338],"yaw":-5.99,"spawnMask":1},{"id":"creature-44019","entityId":"entry-9259","position":[57.6483,-39.2664,-693.2438],"yaw":-4.67,"spawnMask":1},{"id":"creature-44020","entityId":"entry-9259","position":[97.6483,-39.2664,-690.9938],"yaw":-5.22,"spawnMask":1},{"id":"creature-44078","entityId":"entry-9261","position":[62.7983,-39.2664,-711.1738],"yaw":-4.45,"spawnMask":1},{"id":"creature-44149","entityId":"entry-9262","position":[64.6183,-39.2664,-716.4038],"yaw":-1.09,"spawnMask":1},{"id":"creature-44150","entityId":"entry-9262","position":[78.0683,-39.2664,-700.1938],"yaw":-1.53,"spawnMask":1},{"id":"creature-44151","entityId":"entry-9262","position":[52.0583,-39.2664,-698.7138],"yaw":-4.89,"spawnMask":1},{"id":"creature-44152","entityId":"entry-9262","position":[-4.2117,-38.8064,-757.5938],"yaw":-4.48,"spawnMask":1},{"id":"creature-44153","entityId":"entry-9261","position":[-2.6517,-38.8264,-763.1938],"yaw":-1.32,"spawnMask":1},{"id":"creature-44154","entityId":"entry-9261","position":[-7.5817,-39.0664,-772.6738],"yaw":-5.25,"spawnMask":1},{"id":"creature-44269","entityId":"entry-9262","position":[-10.8217,-39.1664,-773.2538],"yaw":-3.63,"spawnMask":1},{"id":"creature-44270","entityId":"entry-9259","position":[-6.9217,-39.0864,-775.7538],"yaw":-0.7,"spawnMask":1},{"id":"creature-44271","entityId":"entry-9262","position":[105.6783,-39.2564,-708.1638],"yaw":-4.7,"spawnMask":1},{"id":"creature-44272","entityId":"entry-9259","position":[110.0783,-39.2564,-713.5238],"yaw":-0.36,"spawnMask":1},{"id":"creature-44304","entityId":"entry-9259","position":[100.5183,-39.2564,-737.9838],"yaw":-4,"spawnMask":1},{"id":"creature-44305","entityId":"entry-9262","position":[101.7683,-39.2564,-742.3438],"yaw":-1.67,"spawnMask":1},{"id":"creature-44306","entityId":"entry-9259","position":[105.6883,-39.2664,-740.4738],"yaw":-0.24,"spawnMask":1},{"id":"creature-44307","entityId":"entry-9261","position":[103.5983,-39.2664,-737.2938],"yaw":-5.05,"spawnMask":1},{"id":"creature-44308","entityId":"entry-9259","position":[117.2683,-39.2664,-722.4838],"yaw":-3.39,"spawnMask":1},{"id":"creature-44309","entityId":"entry-9261","position":[123.0083,-39.2664,-723.3638],"yaw":-0.15,"spawnMask":1},{"id":"creature-44310","entityId":"entry-9262","position":[120.1583,-39.2664,-720.0838],"yaw":-4.79,"spawnMask":1},{"id":"creature-44311","entityId":"entry-9259","position":[117.2283,-39.2664,-707.0038],"yaw":-6.28,"spawnMask":1},{"id":"creature-44312","entityId":"entry-9261","position":[117.7483,-39.2664,-710.4538],"yaw":-6.2,"spawnMask":1},{"id":"creature-44313","entityId":"entry-9262","position":[132.5583,-39.2664,-720.2138],"yaw":-5.5,"spawnMask":1},{"id":"creature-44314","entityId":"entry-9261","position":[142.0583,-39.2664,-720.2538],"yaw":-1.07,"spawnMask":1},{"id":"creature-44315","entityId":"entry-9261","position":[137.9083,-39.2664,-707.7438],"yaw":-4.58,"spawnMask":1},{"id":"creature-44316","entityId":"entry-9259","position":[138.6583,-39.2664,-712.0038],"yaw":-4.64,"spawnMask":1},{"id":"creature-44317","entityId":"entry-9259","position":[142.9683,-39.2664,-717.5138],"yaw":-6.19,"spawnMask":1},{"id":"creature-44318","entityId":"entry-9260","position":[111.1483,-39.2664,-749.1438],"yaw":-2.93,"spawnMask":1},{"id":"creature-44319","entityId":"entry-9264","position":[181.4483,-38.7864,-787.2438],"yaw":-1.59,"spawnMask":1},{"id":"creature-44320","entityId":"entry-9263","position":[181.4283,-38.7864,-783.2838],"yaw":-4.67,"spawnMask":1},{"id":"creature-44321","entityId":"entry-9260","position":[172.1483,-38.7864,-783.4038],"yaw":-0.09,"spawnMask":1},{"id":"creature-44322","entityId":"entry-9260","position":[163.1383,-38.7864,-795.2438],"yaw":-3.94,"spawnMask":1},{"id":"creature-44323","entityId":"entry-9263","position":[168.0883,-38.7864,-798.8638],"yaw":-0.56,"spawnMask":1},{"id":"creature-44324","entityId":"entry-9263","position":[166.5983,-38.7864,-785.8338],"yaw":-2.31,"spawnMask":1},{"id":"creature-44325","entityId":"entry-9264","position":[165.2383,-38.7864,-781.0038],"yaw":-3.63,"spawnMask":1},{"id":"creature-44326","entityId":"entry-9264","position":[167.3283,-38.7864,-795.4638],"yaw":-5.61,"spawnMask":1},{"id":"creature-44327","entityId":"entry-9264","position":[140.1183,-38.7864,-770.8338],"yaw":-1.53,"spawnMask":1},{"id":"creature-44329","entityId":"entry-9264","position":[139.1483,-38.7864,-763.5538],"yaw":-4.33,"spawnMask":1},{"id":"creature-44330","entityId":"entry-9263","position":[136.9183,-38.7864,-767.1138],"yaw":-3.05,"spawnMask":1},{"id":"creature-44331","entityId":"entry-9260","position":[123.4283,-39.1664,-755.0038],"yaw":-2.95,"spawnMask":1},{"id":"creature-44332","entityId":"entry-9260","position":[125.7883,-38.9664,-758.9238],"yaw":-3.15,"spawnMask":1},{"id":"creature-44333","entityId":"entry-9260","position":[142.6483,-39.2564,-742.0238],"yaw":-0.14,"spawnMask":1},{"id":"creature-44334","entityId":"entry-9260","position":[142.4783,-39.2564,-744.3638],"yaw":-0.07,"spawnMask":1},{"id":"creature-44335","entityId":"entry-9263","position":[141.0383,-39.2564,-742.8938],"yaw":-0.02,"spawnMask":1},{"id":"creature-44336","entityId":"entry-9264","position":[125.2583,-39.0764,-756.7738],"yaw":-2.56,"spawnMask":1},{"id":"creature-44337","entityId":"entry-9264","position":[83.5683,-39.2664,-712.4638],"yaw":-5.46,"spawnMask":1},{"id":"creature-44338","entityId":"entry-9263","position":[78.2483,-39.2664,-715.3238],"yaw":-2.97,"spawnMask":1},{"id":"creature-44339","entityId":"entry-9260","position":[109.9283,-39.2664,-716.0838],"yaw":-0.26,"spawnMask":1},{"id":"creature-44340","entityId":"entry-10375","position":[138.7383,-22.6164,-823.2838],"yaw":-1.55,"spawnMask":1},{"id":"creature-44341","entityId":"entry-10375","position":[132.5783,-26.6564,-816.1538],"yaw":-1.65,"spawnMask":1},{"id":"creature-44342","entityId":"entry-10596","position":[158.2483,-10.3364,-851.8138],"yaw":-0.67,"spawnMask":1},{"id":"creature-44343","entityId":"entry-10375","position":[128.9783,-11.7164,-851.0138],"yaw":-2.02,"spawnMask":1},{"id":"creature-44344","entityId":"entry-10375","position":[147.0083,-7.0464,-858.7338],"yaw":-2.16,"spawnMask":1},{"id":"creature-44345","entityId":"entry-10375","position":[168.9283,-12.8264,-825.2138],"yaw":-1.03,"spawnMask":1},{"id":"creature-44346","entityId":"entry-10375","position":[164.5083,-13.3864,-822.3838],"yaw":-0.57,"spawnMask":1},{"id":"creature-44347","entityId":"entry-10375","position":[166.0783,-7.8464,-766.6438],"yaw":-0.95,"spawnMask":1},{"id":"creature-44348","entityId":"entry-10375","position":[169.1883,-1.6164,-738.5638],"yaw":-5.44,"spawnMask":1},{"id":"creature-44349","entityId":"entry-10375","position":[150.9983,-8.9664,-797.1338],"yaw":-4.56,"spawnMask":1},{"id":"creature-44350","entityId":"entry-10374","position":[130.5583,-17.7264,-835.0838],"yaw":-1.54,"spawnMask":1},{"id":"creature-44351","entityId":"entry-10374","position":[139.2583,-15.3564,-839.6438],"yaw":-1.03,"spawnMask":1},{"id":"creature-44352","entityId":"entry-10374","position":[134.0483,-9.5564,-857.8338],"yaw":-2.08,"spawnMask":1},{"id":"creature-44353","entityId":"entry-10374","position":[172.7083,-10.7264,-854.8838],"yaw":-1,"spawnMask":1},{"id":"creature-44354","entityId":"entry-10374","position":[171.0683,-12.1064,-836.5738],"yaw":-0.72,"spawnMask":1},{"id":"creature-44355","entityId":"entry-10374","position":[160.5883,-7.0464,-760.0638],"yaw":-1.53,"spawnMask":1},{"id":"creature-44356","entityId":"entry-10374","position":[160.5083,0.1736,-732.7238],"yaw":-4.26,"spawnMask":1},{"id":"creature-44374","entityId":"entry-10374","position":[156.9583,4.5836,-715.2038],"yaw":-0.75,"spawnMask":1},{"id":"creature-44375","entityId":"entry-10374","position":[151.2883,6.8536,-709.3938],"yaw":-0.79,"spawnMask":1},{"id":"creature-44376","entityId":"entry-10375","position":[144.3883,9.5436,-693.2138],"yaw":-6.1,"spawnMask":1},{"id":"creature-44377","entityId":"entry-10374","position":[143.3883,9.9636,-687.6638],"yaw":-6,"spawnMask":1},{"id":"creature-44378","entityId":"entry-10375","position":[159.5283,-4.8264,-750.2538],"yaw":-2.15,"spawnMask":1},{"id":"creature-44415","entityId":"entry-10374","position":[164.1483,-8.9764,-806.0138],"yaw":-6.25,"spawnMask":1},{"id":"creature-44416","entityId":"entry-10374","position":[137.9583,-9.2864,-806.3938],"yaw":-3.26,"spawnMask":1},{"id":"creature-44422","entityId":"entry-10376","position":[128.3783,13.5936,-688.1338],"yaw":-0.2,"spawnMask":1},{"id":"creature-44456","entityId":"entry-9197","position":[63.3744,30.0548,-658.1798],"yaw":-0.855211,"spawnMask":1},{"id":"creature-45095","entityId":"entry-9197","position":[45.5938,28.5423,-663.8338],"yaw":-6.16101,"spawnMask":1},{"id":"creature-45492","entityId":"entry-9716","position":[189.5883,44.0736,-611.6038],"yaw":-4.67,"spawnMask":1},{"id":"creature-45741","entityId":"entry-9716","position":[191.2183,55.8236,-704.6438],"yaw":-1.66,"spawnMask":1},{"id":"creature-45743","entityId":"entry-9717","position":[197.3483,67.0636,-736.7238],"yaw":-0.13,"spawnMask":1},{"id":"creature-45744","entityId":"entry-9716","position":[195.6483,67.0636,-748.5738],"yaw":-1.4,"spawnMask":1},{"id":"creature-45745","entityId":"entry-9692","position":[188.5483,67.0636,-745.4538],"yaw":-2.31,"spawnMask":1},{"id":"creature-45746","entityId":"entry-9696","position":[189.3283,67.0636,-748.0738],"yaw":-2.31,"spawnMask":1},{"id":"creature-45747","entityId":"entry-9696","position":[185.9383,67.0636,-744.8838],"yaw":-2.34,"spawnMask":1},{"id":"creature-45748","entityId":"entry-9717","position":[187.2083,67.0636,-739.2838],"yaw":-1.61,"spawnMask":1},{"id":"creature-45749","entityId":"entry-9736","position":[213.1973,66.8838,-761.5468],"yaw":-0.03,"spawnMask":1},{"id":"creature-45750","entityId":"entry-9716","position":[229.3883,67.0636,-748.1238],"yaw":-0.01,"spawnMask":1},{"id":"creature-45751","entityId":"entry-9716","position":[225.4983,67.0636,-745.0538],"yaw":-6.27,"spawnMask":1},{"id":"creature-45752","entityId":"entry-9717","position":[228.5283,67.0636,-741.0938],"yaw":-6.25,"spawnMask":1},{"id":"creature-45753","entityId":"entry-9717","position":[228.1083,67.0636,-761.6538],"yaw":-6.26,"spawnMask":1},{"id":"creature-45754","entityId":"entry-9716","position":[228.5783,67.0636,-767.4138],"yaw":-0.16,"spawnMask":1},{"id":"creature-45757","entityId":"entry-9568","position":[45.3708,70.2467,-772.1498],"yaw":-3.14159,"spawnMask":1},{"id":"creature-45762","entityId":"entry-9692","position":[143.8583,50.6236,-636.3138],"yaw":-1.67,"spawnMask":1},{"id":"creature-45763","entityId":"entry-9692","position":[112.7283,50.6236,-577.2338],"yaw":-4.05,"spawnMask":1},{"id":"creature-45764","entityId":"entry-9692","position":[161.6983,50.6236,-604.6338],"yaw":-6.28,"spawnMask":1},{"id":"creature-45765","entityId":"entry-9696","position":[115.4383,50.6236,-574.1138],"yaw":-4.01,"spawnMask":1},{"id":"creature-45766","entityId":"entry-9696","position":[109.4383,50.6236,-578.6538],"yaw":-3.76,"spawnMask":1},{"id":"creature-45767","entityId":"entry-9696","position":[159.1683,50.6236,-604.5838],"yaw":-6.26,"spawnMask":1},{"id":"creature-45768","entityId":"entry-9696","position":[141.4283,50.6236,-634.6938],"yaw":-2.27,"spawnMask":1},{"id":"creature-45769","entityId":"entry-10221","position":[145.3983,50.6236,-632.8238],"yaw":-2.35,"spawnMask":1},{"id":"creature-45770","entityId":"entry-10221","position":[147.4183,50.6236,-637.5938],"yaw":-2.12,"spawnMask":1},{"id":"creature-45771","entityId":"entry-10221","position":[161.5683,50.6236,-607.9338],"yaw":-6.22,"spawnMask":1},{"id":"creature-45772","entityId":"entry-10221","position":[162.1083,50.6236,-601.7038],"yaw":-0.01,"spawnMask":1},{"id":"creature-45773","entityId":"entry-10221","position":[116.0783,50.6236,-578.2538],"yaw":-3.99,"spawnMask":1},{"id":"creature-45774","entityId":"entry-10221","position":[112.0783,50.6236,-580.3538],"yaw":-4.21,"spawnMask":1},{"id":"creature-45779","entityId":"entry-9716","position":[147.9383,50.6236,-575.2238],"yaw":-5.31,"spawnMask":1},{"id":"creature-45780","entityId":"entry-9716","position":[150.9083,50.6236,-580.4538],"yaw":-5.73,"spawnMask":1},{"id":"creature-45781","entityId":"entry-9716","position":[110.6183,50.6236,-630.2338],"yaw":-1.82,"spawnMask":1},{"id":"creature-45790","entityId":"entry-9717","position":[146.3783,50.6236,-581.3238],"yaw":-3.24,"spawnMask":1},{"id":"creature-45791","entityId":"entry-9717","position":[163.9483,50.6236,-589.1438],"yaw":-1.44,"spawnMask":1},{"id":"creature-45792","entityId":"entry-9717","position":[134.4583,50.6236,-578.9038],"yaw":-4.66,"spawnMask":1},{"id":"creature-45793","entityId":"entry-9717","position":[108.8983,50.6236,-596.2738],"yaw":-5.38,"spawnMask":1},{"id":"creature-45794","entityId":"entry-9717","position":[108.8683,50.6236,-601.5038],"yaw":-0.68,"spawnMask":1},{"id":"creature-45795","entityId":"entry-9717","position":[75.0283,50.6436,-603.5138],"yaw":-2.34,"spawnMask":1},{"id":"creature-45796","entityId":"entry-9717","position":[73.3683,50.6136,-586.9838],"yaw":-4.56,"spawnMask":1},{"id":"creature-45798","entityId":"entry-9716","position":[70.7483,50.6336,-596.6638],"yaw":-3.76,"spawnMask":1},{"id":"creature-45799","entityId":"entry-9716","position":[70.0483,50.6236,-603.9138],"yaw":-3.46,"spawnMask":1},{"id":"creature-45800","entityId":"entry-9716","position":[95.8783,50.6336,-589.3738],"yaw":-4.72,"spawnMask":1},{"id":"creature-45803","entityId":"entry-9716","position":[147.7883,50.6236,-597.7438],"yaw":-4.17,"spawnMask":1},{"id":"creature-45804","entityId":"entry-9716","position":[72.5483,50.6136,-629.8738],"yaw":-1.73,"spawnMask":1},{"id":"creature-45806","entityId":"entry-9708","position":[75.2383,50.6136,-587.4338],"yaw":-4.54,"spawnMask":1},{"id":"creature-45807","entityId":"entry-9708","position":[107.0783,50.6236,-602.2038],"yaw":-1.47,"spawnMask":1},{"id":"creature-45808","entityId":"entry-10263","position":[135.1883,43.8436,-610.2938],"yaw":-4.72,"spawnMask":1},{"id":"creature-45835","entityId":"entry-10221","position":[215.9053,43.9173,-618.9818],"yaw":-0.774047,"spawnMask":1},{"id":"creature-45836","entityId":"entry-10221","position":[212.2443,43.9173,-624.3918],"yaw":-0.781901,"spawnMask":1},{"id":"creature-45837","entityId":"entry-10221","position":[214.0563,43.9173,-613.2528],"yaw":-0.0946771,"spawnMask":1},{"id":"creature-45839","entityId":"entry-10221","position":[212.6153,43.918,-600.2818],"yaw":-5.66943,"spawnMask":1},{"id":"creature-45840","entityId":"entry-9237","position":[39.7147,-39.1506,-745.1128],"yaw":-3.19856,"spawnMask":1},{"id":"creature-45843","entityId":"entry-9596","position":[49.4301,-39.4414,-714.5208],"yaw":-2.25881,"spawnMask":1},{"id":"creature-52124","entityId":"entry-9693","position":[95.1685,61.8252,-806.9248],"yaw":-3.40339,"spawnMask":1},{"id":"creature-52125","entityId":"entry-9693","position":[80.2185,57.4927,-773.0458],"yaw":-3.22886,"spawnMask":1},{"id":"creature-52126","entityId":"entry-9693","position":[70.5133,67.0579,-806.5278],"yaw":-1.30227,"spawnMask":1},{"id":"creature-52127","entityId":"entry-9693","position":[77.0287,50.4422,-598.7028],"yaw":-4.63863,"spawnMask":1},{"id":"creature-52128","entityId":"entry-9693","position":[66.2259,50.4368,-584.7888],"yaw":-4.82546,"spawnMask":1},{"id":"creature-52129","entityId":"entry-9693","position":[107.7948,50.4471,-635.9468],"yaw":-1.63021,"spawnMask":1},{"id":"creature-52130","entityId":"entry-9693","position":[141.1943,50.4461,-615.9888],"yaw":-3.73699,"spawnMask":1},{"id":"creature-52131","entityId":"entry-9693","position":[166.7323,50.4461,-586.3418],"yaw":-4.78619,"spawnMask":1},{"id":"creature-52132","entityId":"entry-9693","position":[190.1503,55.6409,-698.1148],"yaw":-1.52424,"spawnMask":1},{"id":"creature-52133","entityId":"entry-9693","position":[186.2913,43.889,-606.9338],"yaw":-4.62636,"spawnMask":1},{"id":"creature-52134","entityId":"entry-9693","position":[109.8034,50.4471,-599.1338],"yaw":-6.25575,"spawnMask":1},{"id":"creature-90975","entityId":"entry-10814","position":[-8.9677,90.4406,-579.8118],"yaw":-3.18881,"spawnMask":1},{"id":"creature-90976","entityId":"entry-10814","position":[-8.1051,90.4386,-564.3758],"yaw":-3.18881,"spawnMask":1},{"id":"creature-91696","entityId":"entry-9701","position":[135.6383,43.8117,-609.0378],"yaw":-5.41052,"spawnMask":1},{"id":"creature-91697","entityId":"entry-9701","position":[135.0703,42.7082,-616.9728],"yaw":-3.07178,"spawnMask":1},{"id":"creature-91698","entityId":"entry-9701","position":[132.1673,43.8189,-610.8818],"yaw":-0.03491,"spawnMask":1},{"id":"creature-91699","entityId":"entry-9701","position":[103.612,41.3114,-584.8868],"yaw":-5.18363,"spawnMask":1},{"id":"creature-91700","entityId":"entry-9701","position":[102.985,39.2571,-599.8728],"yaw":-0.45379,"spawnMask":1},{"id":"creature-91701","entityId":"entry-9701","position":[100.0211,38.6062,-610.7018],"yaw":-4.99164,"spawnMask":1},{"id":"creature-91702","entityId":"entry-10177","position":[134.4423,39.5724,-634.7058],"yaw":-0.82031,"spawnMask":1},{"id":"creature-91704","entityId":"entry-10177","position":[94.3073,34.0914,-644.1768],"yaw":-2.3911,"spawnMask":1},{"id":"creature-91705","entityId":"entry-10177","position":[94.77,34.3155,-633.0388],"yaw":-1.36136,"spawnMask":1},{"id":"creature-91706","entityId":"entry-10177","position":[89.6042,33.9721,-638.7258],"yaw":-1.0821,"spawnMask":1},{"id":"creature-91707","entityId":"entry-10177","position":[132.7503,38.0369,-642.6108],"yaw":-4.36332,"spawnMask":1},{"id":"creature-91772","entityId":"entry-10177","position":[134.9993,41.8307,-622.3198],"yaw":-4.92183,"spawnMask":1},{"id":"creature-91773","entityId":"entry-10177","position":[130.1623,39.1994,-637.9038],"yaw":-4.4855,"spawnMask":1},{"id":"creature-91774","entityId":"entry-10177","position":[131.1203,40.6721,-627.0038],"yaw":-1.64061,"spawnMask":1},{"id":"creature-91775","entityId":"entry-10177","position":[125.5013,40.2718,-635.0258],"yaw":-1.51844,"spawnMask":1},{"id":"creature-91776","entityId":"entry-10177","position":[102.53,38.0406,-614.1558],"yaw":-5.95157,"spawnMask":1},{"id":"creature-91777","entityId":"entry-10177","position":[98.1486,34.8873,-627.5258],"yaw":-4.90438,"spawnMask":1},{"id":"creature-91778","entityId":"entry-10177","position":[91.6069,34.6096,-629.0568],"yaw":-1.81514,"spawnMask":1},{"id":"creature-91779","entityId":"entry-10177","position":[96.2726,36.376,-617.9108],"yaw":-3.94444,"spawnMask":1},{"id":"creature-91794","entityId":"entry-10177","position":[131.6653,36.1184,-650.5648],"yaw":-1.0472,"spawnMask":1},{"id":"creature-137817","entityId":"entry-9816","position":[-121.6997,75.9002,-543.9978],"yaw":-4.67748,"spawnMask":1},{"id":"creature-137818","entityId":"entry-9096","position":[-78.0047,86.0126,-531.9688],"yaw":-2.6529,"spawnMask":1},{"id":"creature-137819","entityId":"entry-9096","position":[-78.9397,86.0126,-523.6308],"yaw":-3.54302,"spawnMask":1},{"id":"creature-137821","entityId":"entry-9096","position":[-80.3597,96.4196,-650.3028],"yaw":-5.86431,"spawnMask":1},{"id":"creature-137822","entityId":"entry-9096","position":[-82.4367,86.0126,-613.0748],"yaw":-2.53073,"spawnMask":1},{"id":"creature-137823","entityId":"entry-9096","position":[-105.2817,90.5226,-601.2538],"yaw":-2.98451,"spawnMask":1},{"id":"creature-137824","entityId":"entry-9096","position":[-113.2987,90.5376,-624.1708],"yaw":-0.645772,"spawnMask":1},{"id":"creature-137825","entityId":"entry-9096","position":[-113.5437,90.5666,-594.6458],"yaw":-0.279253,"spawnMask":1},{"id":"creature-137826","entityId":"entry-9096","position":[-113.6857,90.5576,-602.1528],"yaw":-0.0174533,"spawnMask":1},{"id":"creature-137827","entityId":"entry-9096","position":[-115.5777,101.5526,-681.0498],"yaw":-4.76475,"spawnMask":1},{"id":"creature-137828","entityId":"entry-9096","position":[-119.8547,90.5346,-628.2378],"yaw":-1.39626,"spawnMask":1},{"id":"creature-137829","entityId":"entry-9096","position":[-124.3037,50.5333,-598.3548],"yaw":-5.55015,"spawnMask":1},{"id":"creature-137831","entityId":"entry-9096","position":[-138.3517,50.4499,-602.1658],"yaw":-1.91313,"spawnMask":1},{"id":"creature-137832","entityId":"entry-9096","position":[-142.7827,101.5526,-680.8848],"yaw":-4.67748,"spawnMask":1},{"id":"creature-137833","entityId":"entry-9096","position":[-145.0357,90.5276,-624.6188],"yaw":-2.79253,"spawnMask":1},{"id":"creature-137834","entityId":"entry-9096","position":[-170.7417,56.5144,-600.8388],"yaw":-5.37561,"spawnMask":1},{"id":"creature-137835","entityId":"entry-9096","position":[-173.2477,56.4266,-577.8268],"yaw":-2.74624,"spawnMask":1},{"id":"creature-137836","entityId":"entry-9096","position":[-69.5067,90.4996,-713.5988],"yaw":-3.15905,"spawnMask":1},{"id":"creature-137837","entityId":"entry-9096","position":[-71.7804,71.0305,-542.6668],"yaw":-6.26573,"spawnMask":1},{"id":"creature-137838","entityId":"entry-9096","position":[-73.4406,71.0247,-554.5038],"yaw":-1.37881,"spawnMask":1},{"id":"creature-137839","entityId":"entry-9096","position":[-75.1792,86.0126,-619.6448],"yaw":-1.93732,"spawnMask":1},{"id":"creature-137840","entityId":"entry-10083","position":[-80.0637,86.0126,-618.0848],"yaw":-2.21657,"spawnMask":1},{"id":"creature-137841","entityId":"entry-10083","position":[-118.9597,101.5526,-680.7928],"yaw":-4.86947,"spawnMask":1},{"id":"creature-137844","entityId":"entry-10083","position":[-138.5757,101.5526,-679.6128],"yaw":-4.86947,"spawnMask":1},{"id":"creature-137845","entityId":"entry-10083","position":[-138.6017,90.5326,-629.3988],"yaw":-1.85005,"spawnMask":1},{"id":"creature-137846","entityId":"entry-10083","position":[-52.2585,71.0139,-602.2298],"yaw":-5.8618,"spawnMask":1},{"id":"creature-137847","entityId":"entry-10083","position":[-58.2681,71.0268,-570.3168],"yaw":-5.95157,"spawnMask":1},{"id":"creature-137848","entityId":"entry-10366","position":[11.4054,90.5166,-778.0858],"yaw":-0.733038,"spawnMask":1},{"id":"creature-137850","entityId":"entry-10366","position":[-4.9444,90.5026,-712.0308],"yaw":-5.48033,"spawnMask":1},{"id":"creature-137851","entityId":"entry-10366","position":[-8.5115,90.5286,-783.0648],"yaw":-1.27409,"spawnMask":1},{"id":"creature-137852","entityId":"entry-10366","position":[-17.0141,90.5046,-712.7328],"yaw":-3.9619,"spawnMask":1},{"id":"creature-137853","entityId":"entry-10366","position":[-20.4895,90.5206,-735.1468],"yaw":-3.85718,"spawnMask":1},{"id":"creature-137854","entityId":"entry-10366","position":[14.462,90.5076,-773.4978],"yaw":-0.436332,"spawnMask":1},{"id":"creature-137855","entityId":"entry-10366","position":[-70.1094,96.4196,-775.6568],"yaw":-1.58825,"spawnMask":1},{"id":"creature-137857","entityId":"entry-10371","position":[33.4326,90.5206,-635.9718],"yaw":-0.855211,"spawnMask":1},{"id":"creature-137858","entityId":"entry-10371","position":[38.7605,90.5206,-549.2988],"yaw":-5.70723,"spawnMask":1},{"id":"creature-137860","entityId":"entry-10371","position":[-11.2299,90.5206,-613.5008],"yaw":-4.72984,"spawnMask":1},{"id":"creature-137861","entityId":"entry-10371","position":[13.9356,90.5136,-736.5118],"yaw":-5.68977,"spawnMask":1},{"id":"creature-137862","entityId":"entry-10372","position":[38.3198,90.5206,-630.2788],"yaw":-0.715585,"spawnMask":1},{"id":"creature-137863","entityId":"entry-10372","position":[6.4323,90.5226,-735.2868],"yaw":-4.46804,"spawnMask":1},{"id":"creature-137864","entityId":"entry-10372","position":[1.31,90.5316,-761.1588],"yaw":-1.76278,"spawnMask":1},{"id":"creature-137865","entityId":"entry-10372","position":[-0.9797,90.5246,-544.2078],"yaw":-3.46037,"spawnMask":1},{"id":"creature-137866","entityId":"entry-10372","position":[-3.6743,90.5206,-613.3778],"yaw":-4.79966,"spawnMask":1},{"id":"creature-137867","entityId":"entry-10372","position":[16.093,90.5096,-746.4288],"yaw":-0.418879,"spawnMask":1},{"id":"creature-137868","entityId":"entry-10372","position":[-63.9457,96.4196,-766.1378],"yaw":-0.855211,"spawnMask":1},{"id":"creature-137869","entityId":"entry-9818","position":[-102.1337,50.5367,-620.4868],"yaw":-4.69494,"spawnMask":1},{"id":"creature-137870","entityId":"entry-9818","position":[-105.5827,50.5548,-581.0088],"yaw":-3.87463,"spawnMask":1},{"id":"creature-137871","entityId":"entry-9818","position":[-107.6937,50.5367,-626.0318],"yaw":-3.1765,"spawnMask":1},{"id":"creature-137872","entityId":"entry-9818","position":[-128.3647,50.5153,-644.3338],"yaw":-1.20428,"spawnMask":1},{"id":"creature-137873","entityId":"entry-9818","position":[-134.0767,50.529,-569.3038],"yaw":-1.98968,"spawnMask":1},{"id":"creature-137874","entityId":"entry-9818","position":[-139.8917,90.5276,-529.0368],"yaw":-4.32842,"spawnMask":1},{"id":"creature-137875","entityId":"entry-9818","position":[-147.8677,96.4176,-648.3168],"yaw":-4.86947,"spawnMask":1},{"id":"creature-137876","entityId":"entry-9818","position":[-157.2567,96.4196,-651.8578],"yaw":-3.19395,"spawnMask":1},{"id":"creature-137877","entityId":"entry-9818","position":[-166.1177,56.5294,-544.8408],"yaw":-6.07375,"spawnMask":1},{"id":"creature-137878","entityId":"entry-9818","position":[-189.3987,56.4799,-625.7558],"yaw":-1.15192,"spawnMask":1},{"id":"creature-137879","entityId":"entry-9818","position":[-194.4617,61.6807,-545.5278],"yaw":-6.26573,"spawnMask":1},{"id":"creature-137880","entityId":"entry-9818","position":[-200.9657,56.5451,-583.4478],"yaw":-5.46288,"spawnMask":1},{"id":"creature-137881","entityId":"entry-9818","position":[-201.6667,56.5442,-593.4568],"yaw":-0.785398,"spawnMask":1},{"id":"creature-137882","entityId":"entry-9818","position":[-64.4366,97.2896,-649.0488],"yaw":-4.72984,"spawnMask":1},{"id":"creature-137883","entityId":"entry-9818","position":[-67.3633,90.4996,-705.1678],"yaw":-0.994838,"spawnMask":1},{"id":"creature-137884","entityId":"entry-9819","position":[-90.9707,96.4256,-652.0358],"yaw":-5.8294,"spawnMask":1},{"id":"creature-137886","entityId":"entry-9819","position":[-98.9807,50.5496,-587.5408],"yaw":-0.750492,"spawnMask":1},{"id":"creature-137887","entityId":"entry-9819","position":[-118.9707,90.5256,-585.4468],"yaw":-0.0349066,"spawnMask":1},{"id":"creature-137888","entityId":"entry-9819","position":[-119.0247,90.5256,-588.2068],"yaw":-0.122173,"spawnMask":1},{"id":"creature-137889","entityId":"entry-9819","position":[-119.0537,90.5246,-582.7738],"yaw":-6.23083,"spawnMask":1},{"id":"creature-137890","entityId":"entry-9819","position":[-120.1237,90.5206,-558.0478],"yaw":-6.21337,"spawnMask":1},{"id":"creature-137891","entityId":"entry-9819","position":[-120.1637,90.5206,-560.9938],"yaw":-0.0349066,"spawnMask":1},{"id":"creature-137892","entityId":"entry-9819","position":[-120.2347,90.5206,-563.8548],"yaw":-0.139626,"spawnMask":1},{"id":"creature-137893","entityId":"entry-9819","position":[-122.2007,90.4136,-543.0958],"yaw":-5.8294,"spawnMask":1},{"id":"creature-137895","entityId":"entry-9819","position":[-126.5097,90.4016,-535.0008],"yaw":-4.86947,"spawnMask":1},{"id":"creature-137896","entityId":"entry-9819","position":[-127.7757,50.5133,-640.0218],"yaw":-5.21853,"spawnMask":1},{"id":"creature-137897","entityId":"entry-9819","position":[-134.5107,50.527,-577.7158],"yaw":-1.69297,"spawnMask":1},{"id":"creature-137898","entityId":"entry-9819","position":[-135.1417,50.5192,-645.2548],"yaw":-1.53589,"spawnMask":1},{"id":"creature-137899","entityId":"entry-9819","position":[-136.5307,90.5196,-531.5768],"yaw":-6.23083,"spawnMask":1},{"id":"creature-137900","entityId":"entry-9819","position":[-138.7097,90.5166,-603.8498],"yaw":-3.1765,"spawnMask":1},{"id":"creature-137901","entityId":"entry-9819","position":[-138.7327,90.5156,-600.9618],"yaw":-3.19395,"spawnMask":1},{"id":"creature-137902","entityId":"entry-9819","position":[-138.7997,90.5186,-606.8408],"yaw":-3.12414,"spawnMask":1},{"id":"creature-137903","entityId":"entry-9819","position":[-145.6927,90.5186,-574.5378],"yaw":-2.9147,"spawnMask":1},{"id":"creature-137904","entityId":"entry-9819","position":[-145.7287,90.5186,-571.3208],"yaw":-3.15905,"spawnMask":1},{"id":"creature-137905","entityId":"entry-9819","position":[-145.7917,90.5186,-568.1708],"yaw":-3.38594,"spawnMask":1},{"id":"creature-137906","entityId":"entry-9819","position":[-150.1407,96.4196,-651.4098],"yaw":-2.84489,"spawnMask":1},{"id":"creature-137907","entityId":"entry-9819","position":[-155.3747,96.4196,-650.0538],"yaw":-4.95674,"spawnMask":1},{"id":"creature-137908","entityId":"entry-9819","position":[-168.5907,56.5242,-557.9738],"yaw":-5.61996,"spawnMask":1},{"id":"creature-137909","entityId":"entry-9819","position":[-171.8767,56.5131,-541.9118],"yaw":-4.31096,"spawnMask":1},{"id":"creature-137910","entityId":"entry-9819","position":[-172.4837,56.5242,-557.8768],"yaw":-3.78736,"spawnMask":1},{"id":"creature-137911","entityId":"entry-9819","position":[-189.3627,56.4495,-622.0958],"yaw":-5.09636,"spawnMask":1},{"id":"creature-137912","entityId":"entry-9819","position":[-199.9277,56.5066,-620.5498],"yaw":-3.07178,"spawnMask":1},{"id":"creature-137913","entityId":"entry-9819","position":[-203.1777,61.6068,-547.4958],"yaw":-4.10386,"spawnMask":1},{"id":"creature-137914","entityId":"entry-9819","position":[-62.9958,96.4196,-659.5878],"yaw":-0.680678,"spawnMask":1},{"id":"creature-137915","entityId":"entry-9819","position":[-64.7617,90.4996,-712.5848],"yaw":-5.91667,"spawnMask":1},{"id":"creature-137916","entityId":"entry-9819","position":[-67.2883,97.0116,-653.3698],"yaw":-2.51327,"spawnMask":1},{"id":"creature-137917","entityId":"entry-9819","position":[-69.3711,90.4996,-701.1388],"yaw":-4.59022,"spawnMask":1},{"id":"creature-137918","entityId":"entry-9819","position":[-84.1907,96.4196,-653.2398],"yaw":-2.30383,"spawnMask":1},{"id":"creature-137920","entityId":"entry-10316","position":[-103.5687,71.1307,-544.5888],"yaw":-0.0349066,"spawnMask":1},{"id":"creature-137921","entityId":"entry-10316","position":[-103.7087,71.1312,-562.5608],"yaw":-0.820305,"spawnMask":1},{"id":"creature-137922","entityId":"entry-10316","position":[-103.7697,71.1151,-526.8588],"yaw":-5.53269,"spawnMask":1},{"id":"creature-137923","entityId":"entry-10316","position":[-121.5447,71.1163,-526.9578],"yaw":-4.72984,"spawnMask":1},{"id":"creature-137924","entityId":"entry-10316","position":[-139.4777,71.1831,-526.9348],"yaw":-3.89208,"spawnMask":1},{"id":"creature-137925","entityId":"entry-10316","position":[-139.5887,71.1897,-562.7228],"yaw":-2.32129,"spawnMask":1},{"id":"creature-137926","entityId":"entry-10316","position":[-139.7217,71.1113,-544.9248],"yaw":-3.08923,"spawnMask":1},{"id":"creature-137928","entityId":"entry-9817","position":[-96.2897,50.5396,-626.4048],"yaw":-0.0349066,"spawnMask":1},{"id":"creature-137929","entityId":"entry-9817","position":[-99.3137,50.5554,-579.1208],"yaw":-5.49779,"spawnMask":1},{"id":"creature-137930","entityId":"entry-9817","position":[-102.2947,50.5398,-632.3218],"yaw":-1.6057,"spawnMask":1},{"id":"creature-137931","entityId":"entry-9817","position":[-131.6907,50.5234,-575.4198],"yaw":-6.17847,"spawnMask":1},{"id":"creature-137934","entityId":"entry-9817","position":[-136.3047,50.5255,-574.5598],"yaw":-3.64774,"spawnMask":1},{"id":"creature-137935","entityId":"entry-9817","position":[-140.7647,90.5196,-533.4778],"yaw":-2.0944,"spawnMask":1},{"id":"creature-137936","entityId":"entry-9817","position":[-147.1777,96.4196,-653.1048],"yaw":-1.13446,"spawnMask":1},{"id":"creature-137937","entityId":"entry-9817","position":[-155.0927,96.4196,-653.5248],"yaw":-1.15192,"spawnMask":1},{"id":"creature-137938","entityId":"entry-9817","position":[-167.8947,56.5268,-549.9228],"yaw":-0.959931,"spawnMask":1},{"id":"creature-137939","entityId":"entry-9817","position":[-192.7807,56.446,-623.6968],"yaw":-3.10669,"spawnMask":1},{"id":"creature-137940","entityId":"entry-9817","position":[-198.7797,61.6229,-544.3878],"yaw":-3.04174,"spawnMask":1},{"id":"creature-137941","entityId":"entry-9817","position":[-203.1227,61.5809,-552.1108],"yaw":-3.30034,"spawnMask":1},{"id":"creature-137942","entityId":"entry-9817","position":[-210.1017,56.5482,-583.4548],"yaw":-4.08407,"spawnMask":1},{"id":"creature-137943","entityId":"entry-9817","position":[-211.5857,56.5541,-592.7278],"yaw":-2.44346,"spawnMask":1},{"id":"creature-137944","entityId":"entry-9817","position":[-62.9008,96.4196,-652.9138],"yaw":-0.802851,"spawnMask":1},{"id":"creature-137945","entityId":"entry-9817","position":[-71.1821,90.4996,-703.9288],"yaw":-2.79253,"spawnMask":1},{"id":"creature-137946","entityId":"entry-10762","position":[-48.8942,90.2886,-707.3098],"yaw":-1.74533,"spawnMask":1},{"id":"creature-137947","entityId":"entry-10762","position":[-49.0076,90.6376,-705.0698],"yaw":-4.69494,"spawnMask":1},{"id":"creature-137948","entityId":"entry-10317","position":[-96.6037,86.7446,-853.1048],"yaw":-5.91667,"spawnMask":1},{"id":"creature-137949","entityId":"entry-10317","position":[-97.2687,86.9466,-849.2108],"yaw":-5.84685,"spawnMask":1},{"id":"creature-137950","entityId":"entry-10317","position":[-121.8627,90.2286,-585.4028],"yaw":-3.08923,"spawnMask":1},{"id":"creature-137951","entityId":"entry-10317","position":[-123.5367,90.5206,-561.0278],"yaw":-3.10669,"spawnMask":1},{"id":"creature-137952","entityId":"entry-10317","position":[7.0297,90.4366,-555.4128],"yaw":-3.70087,"spawnMask":1},{"id":"creature-137953","entityId":"entry-10317","position":[-135.5967,90.2286,-603.8698],"yaw":-0.0349066,"spawnMask":1},{"id":"creature-137954","entityId":"entry-10317","position":[11.2747,90.4366,-548.6318],"yaw":-3.70086,"spawnMask":1},{"id":"creature-137955","entityId":"entry-10317","position":[-141.6957,90.5196,-571.2298],"yaw":0,"spawnMask":1},{"id":"creature-137956","entityId":"entry-10317","position":[41.143,90.5206,-624.1498],"yaw":-0.593412,"spawnMask":1},{"id":"creature-137957","entityId":"entry-10317","position":[2.0139,90.5286,-754.7658],"yaw":-4.83456,"spawnMask":1},{"id":"creature-137958","entityId":"entry-10317","position":[-1.6969,90.5206,-554.1858],"yaw":-2.83062,"spawnMask":1},{"id":"creature-137959","entityId":"entry-10317","position":[-6.7687,90.2416,-671.5188],"yaw":-5.42797,"spawnMask":1},{"id":"creature-137960","entityId":"entry-10317","position":[26.0304,90.5206,-545.8748],"yaw":-5.48033,"spawnMask":1},{"id":"creature-137961","entityId":"entry-10317","position":[-7.6788,90.5206,-618.8708],"yaw":-4.76475,"spawnMask":1},{"id":"creature-137962","entityId":"entry-10317","position":[-12.7485,90.5296,-778.9138],"yaw":-3.05433,"spawnMask":1},{"id":"creature-137963","entityId":"entry-10317","position":[-14.5949,90.5206,-619.7428],"yaw":-4.66003,"spawnMask":1},{"id":"creature-137964","entityId":"entry-10317","position":[-15.1816,90.5226,-737.0208],"yaw":-0.0872665,"spawnMask":1},{"id":"creature-137965","entityId":"entry-10317","position":[27.7649,90.5206,-638.5068],"yaw":-0.959931,"spawnMask":1},{"id":"creature-137966","entityId":"entry-10317","position":[-74.4785,96.4196,-762.7818],"yaw":-5.23599,"spawnMask":1},{"id":"creature-137967","entityId":"entry-10162","position":[-140.4297,101.5526,-730.1288],"yaw":-3.12414,"spawnMask":1},{"id":"creature-137968","entityId":"entry-10429","position":[-136.5377,101.5526,-729.5828],"yaw":-6.26573,"spawnMask":1},{"id":"creature-137969","entityId":"entry-10430","position":[-101.4717,86.9186,-849.7628],"yaw":-2.75762,"spawnMask":1},{"id":"creature-137971","entityId":"entry-10363","position":[-13.7126,90.5296,-571.9578],"yaw":-3.14159,"spawnMask":1},{"id":"creature-137973","entityId":"entry-10318","position":[4.5259,90.5246,-757.3638],"yaw":-6.17847,"spawnMask":1},{"id":"creature-137974","entityId":"entry-10318","position":[-0.7684,90.5326,-756.5018],"yaw":-3.56047,"spawnMask":1},{"id":"creature-137975","entityId":"entry-10318","position":[-9.1152,90.5296,-776.6268],"yaw":-4.32842,"spawnMask":1},{"id":"creature-137976","entityId":"entry-10318","position":[-15.4257,90.2916,-671.4438],"yaw":-4.18879,"spawnMask":1},{"id":"creature-137977","entityId":"entry-10318","position":[-17.6821,90.5176,-739.5768],"yaw":-1.3439,"spawnMask":1},{"id":"creature-137978","entityId":"entry-10318","position":[29.6184,90.5206,-538.3338],"yaw":-5.42797,"spawnMask":1},{"id":"creature-137979","entityId":"entry-10318","position":[-48.7552,95.2726,-760.5698],"yaw":-6.27849,"spawnMask":1},{"id":"creature-137980","entityId":"entry-10318","position":[-76.9904,96.4196,-765.3868],"yaw":-2.75762,"spawnMask":1},{"id":"creature-137981","entityId":"entry-10319","position":[12.5856,90.5146,-742.9708],"yaw":-4.50295,"spawnMask":1},{"id":"creature-137982","entityId":"entry-10319","position":[10.9988,90.5156,-746.4298],"yaw":-2.80998,"spawnMask":1},{"id":"creature-137983","entityId":"entry-10319","position":[-101.3197,96.4196,-756.9228],"yaw":-3.85718,"spawnMask":1},{"id":"creature-137984","entityId":"entry-10319","position":[-101.3557,96.4196,-764.2218],"yaw":-2.37365,"spawnMask":1},{"id":"creature-137985","entityId":"entry-10319","position":[36.5145,90.5206,-560.8898],"yaw":-5.89921,"spawnMask":1},{"id":"creature-137986","entityId":"entry-10319","position":[-114.6997,101.3676,-744.1278],"yaw":-1.61019,"spawnMask":1},{"id":"creature-137987","entityId":"entry-10319","position":[-149.3217,96.4016,-756.0818],"yaw":-3.38594,"spawnMask":1},{"id":"creature-137988","entityId":"entry-10319","position":[-149.4727,96.4166,-765.0898],"yaw":-2.77507,"spawnMask":1},{"id":"creature-137989","entityId":"entry-10319","position":[-3.2121,90.5296,-717.1118],"yaw":-3.45575,"spawnMask":1},{"id":"creature-137991","entityId":"entry-10319","position":[-7.7399,90.2596,-667.1478],"yaw":-4.97419,"spawnMask":1},{"id":"creature-137992","entityId":"entry-10319","position":[-10.2473,90.4416,-727.1618],"yaw":-4.68553,"spawnMask":1},{"id":"creature-137994","entityId":"entry-10319","position":[-17.9307,90.5206,-616.4908],"yaw":-4.62512,"spawnMask":1},{"id":"creature-137995","entityId":"entry-10319","position":[-19.7759,90.5226,-717.6828],"yaw":-5.93412,"spawnMask":1},{"id":"creature-137996","entityId":"entry-10319","position":[30.88,90.5206,-627.8568],"yaw":-0.767945,"spawnMask":1},{"id":"creature-137998","entityId":"entry-9045","position":[-84.2857,33.4973,-592.2778],"yaw":-4.2237,"spawnMask":1},{"id":"creature-137999","entityId":"entry-9045","position":[-84.6737,33.4969,-615.5468],"yaw":-5.20108,"spawnMask":1},{"id":"creature-138000","entityId":"entry-9045","position":[8.6167,44.9267,-545.1918],"yaw":-2.35619,"spawnMask":1},{"id":"creature-138001","entityId":"entry-9045","position":[4.7229,44.8694,-562.6978],"yaw":-1.03067,"spawnMask":1},{"id":"creature-138003","entityId":"entry-9045","position":[-25.3242,44.9528,-543.3708],"yaw":-0.418879,"spawnMask":1},{"id":"creature-138005","entityId":"entry-9045","position":[-30.1061,33.4973,-598.7748],"yaw":-0.575959,"spawnMask":1},{"id":"creature-138006","entityId":"entry-9045","position":[-46.4931,20.6849,-725.2918],"yaw":-3.15905,"spawnMask":1},{"id":"creature-138007","entityId":"entry-9045","position":[-52.9355,35.3604,-605.6928],"yaw":-1.71042,"spawnMask":1},{"id":"creature-138008","entityId":"entry-9045","position":[-57.1272,40.279,-639.8838],"yaw":-0.872665,"spawnMask":1},{"id":"creature-138009","entityId":"entry-9097","position":[24.6268,8.7678,-871.6068],"yaw":-2.49582,"spawnMask":1},{"id":"creature-138010","entityId":"entry-9097","position":[-79.6917,33.4948,-600.6618],"yaw":-1.06465,"spawnMask":1},{"id":"creature-138011","entityId":"entry-9097","position":[-84.5407,33.4973,-610.2108],"yaw":-3.50811,"spawnMask":1},{"id":"creature-138012","entityId":"entry-9097","position":[-84.8947,33.4973,-597.3508],"yaw":-2.67035,"spawnMask":1},{"id":"creature-138013","entityId":"entry-9097","position":[9.8453,28.3408,-615.7068],"yaw":-3.15905,"spawnMask":1},{"id":"creature-138014","entityId":"entry-9097","position":[9.7977,44.9456,-565.5718],"yaw":-5.96903,"spawnMask":1},{"id":"creature-138015","entityId":"entry-9097","position":[3.9755,44.9528,-570.2478],"yaw":-2.1293,"spawnMask":1},{"id":"creature-138016","entityId":"entry-9097","position":[25.6702,8.7673,-810.6218],"yaw":-0.593412,"spawnMask":1},{"id":"creature-138017","entityId":"entry-9097","position":[51.1277,8.7678,-849.0028],"yaw":-2.86234,"spawnMask":1},{"id":"creature-138018","entityId":"entry-9097","position":[-8.1813,28.2804,-685.6468],"yaw":-3.00197,"spawnMask":1},{"id":"creature-138019","entityId":"entry-9097","position":[54.2724,8.7678,-850.1808],"yaw":-1.16937,"spawnMask":1},{"id":"creature-138020","entityId":"entry-9097","position":[56.7777,8.7678,-871.6048],"yaw":-6.19592,"spawnMask":1},{"id":"creature-138021","entityId":"entry-9097","position":[60.7216,8.7678,-870.9668],"yaw":-1.50098,"spawnMask":1},{"id":"creature-138022","entityId":"entry-9097","position":[-20.8139,44.9528,-560.4858],"yaw":-6.10865,"spawnMask":1},{"id":"creature-138023","entityId":"entry-9097","position":[-22.9857,7.1,-735.1368],"yaw":-3.7001,"spawnMask":1},{"id":"creature-138024","entityId":"entry-9097","position":[-23.1082,44.8483,-565.3178],"yaw":-1.03703,"spawnMask":1},{"id":"creature-138025","entityId":"entry-9097","position":[-29.1526,44.9528,-573.3148],"yaw":-3.03687,"spawnMask":1},{"id":"creature-138027","entityId":"entry-9097","position":[-33.1782,4.1323,-745.1208],"yaw":-4.7473,"spawnMask":1},{"id":"creature-138028","entityId":"entry-9097","position":[-34.5879,10.1724,-855.6088],"yaw":-0.191986,"spawnMask":1},{"id":"creature-138029","entityId":"entry-9097","position":[-34.7669,33.4955,-600.8858],"yaw":-2.26893,"spawnMask":1},{"id":"creature-138030","entityId":"entry-9097","position":[-35.1,33.4951,-596.0958],"yaw":-3.57792,"spawnMask":1},{"id":"creature-138031","entityId":"entry-9097","position":[-36.5816,8.7588,-793.8688],"yaw":-6.05629,"spawnMask":1},{"id":"creature-138032","entityId":"entry-9097","position":[15.8293,44.9043,-557.9418],"yaw":-0.20944,"spawnMask":1},{"id":"creature-138033","entityId":"entry-9097","position":[-39.1158,10.1819,-846.6438],"yaw":-3.49066,"spawnMask":1},{"id":"creature-138034","entityId":"entry-9097","position":[-40.6555,8.7621,-791.3658],"yaw":-4.57276,"spawnMask":1},{"id":"creature-138035","entityId":"entry-9097","position":[-43.5001,40.2282,-560.4958],"yaw":-6.23083,"spawnMask":1},{"id":"creature-138036","entityId":"entry-9097","position":[-43.6971,21.5969,-721.9478],"yaw":-4.32842,"spawnMask":1},{"id":"creature-138037","entityId":"entry-9097","position":[-46.9014,40.1713,-564.2818],"yaw":-0.296706,"spawnMask":1},{"id":"creature-138038","entityId":"entry-9097","position":[30.3858,8.7678,-872.1718],"yaw":-0.925025,"spawnMask":1},{"id":"creature-138039","entityId":"entry-9097","position":[-48.9075,10.1799,-872.6128],"yaw":-6.26573,"spawnMask":1},{"id":"creature-138040","entityId":"entry-9097","position":[-56.2891,40.2676,-573.0188],"yaw":-1.98968,"spawnMask":1},{"id":"creature-138041","entityId":"entry-9097","position":[14.3045,44.934,-539.3408],"yaw":-5.46288,"spawnMask":1},{"id":"creature-138042","entityId":"entry-9097","position":[-59.5378,10.1837,-866.5408],"yaw":-4.11898,"spawnMask":1},{"id":"creature-138043","entityId":"entry-9097","position":[-59.6399,35.2779,-601.5368],"yaw":-2.65948,"spawnMask":1},{"id":"creature-138044","entityId":"entry-9097","position":[-62.4741,40.279,-643.9308],"yaw":-6.05629,"spawnMask":1},{"id":"creature-138048","entityId":"entry-9097","position":[13.6802,44.9072,-543.6948],"yaw":-0.698132,"spawnMask":1},{"id":"creature-138049","entityId":"entry-9097","position":[13.487,28.2886,-618.5208],"yaw":-1.23918,"spawnMask":1},{"id":"creature-138050","entityId":"entry-9097","position":[-67.4866,40.1754,-566.6858],"yaw":-4.83456,"spawnMask":1},{"id":"creature-138051","entityId":"entry-9097","position":[-68.7986,40.1956,-647.8698],"yaw":-1.54309,"spawnMask":1},{"id":"creature-138052","entityId":"entry-9097","position":[-71.9161,40.2462,-561.0108],"yaw":-3.14159,"spawnMask":1},{"id":"creature-138053","entityId":"entry-9097","position":[74.8107,8.7678,-872.1818],"yaw":-2.96706,"spawnMask":1},{"id":"creature-138054","entityId":"entry-9097","position":[78.4805,8.7678,-867.5178],"yaw":-4.24115,"spawnMask":1},{"id":"creature-138055","entityId":"entry-9097","position":[86.0777,8.7678,-858.3498],"yaw":-0.122173,"spawnMask":1},{"id":"creature-138056","entityId":"entry-9097","position":[89.9671,8.7678,-821.3688],"yaw":-3.87463,"spawnMask":1},{"id":"creature-138057","entityId":"entry-9097","position":[92.7574,8.7678,-861.7818],"yaw":-1.16937,"spawnMask":1},{"id":"creature-138058","entityId":"entry-9098","position":[24.0699,8.8245,-805.5128],"yaw":-5.42797,"spawnMask":1},{"id":"creature-138059","entityId":"entry-9098","position":[-79.4337,33.4957,-594.8958],"yaw":-5.91667,"spawnMask":1},{"id":"creature-138060","entityId":"entry-9098","position":[-82.7677,33.4963,-618.5408],"yaw":-6.23083,"spawnMask":1},{"id":"creature-138061","entityId":"entry-9098","position":[8.4889,44.9291,-540.1038],"yaw":-3.68264,"spawnMask":1},{"id":"creature-138062","entityId":"entry-9098","position":[25.5461,8.7678,-866.5028],"yaw":-3.94444,"spawnMask":1},{"id":"creature-138063","entityId":"entry-9098","position":[-6.3609,28.2947,-682.4588],"yaw":-4.53786,"spawnMask":1},{"id":"creature-138064","entityId":"entry-9098","position":[54.2679,8.7678,-845.1408],"yaw":-5.48033,"spawnMask":1},{"id":"creature-138065","entityId":"entry-9098","position":[-18.1571,7.4262,-734.4138],"yaw":-5.49779,"spawnMask":1},{"id":"creature-138066","entityId":"entry-9098","position":[-24.9472,44.8574,-556.8778],"yaw":-6.24155,"spawnMask":1},{"id":"creature-138067","entityId":"entry-9098","position":[-29.446,33.4955,-593.3038],"yaw":-5.25344,"spawnMask":1},{"id":"creature-138068","entityId":"entry-9098","position":[-29.6753,44.9528,-541.3308],"yaw":-3.63028,"spawnMask":1},{"id":"creature-138070","entityId":"entry-9098","position":[-32.7956,4.4393,-750.8228],"yaw":-1.44862,"spawnMask":1},{"id":"creature-138071","entityId":"entry-9098","position":[-34.4807,10.1653,-848.7638],"yaw":-0.418879,"spawnMask":1},{"id":"creature-138072","entityId":"entry-9098","position":[-42.6893,8.8103,-796.3238],"yaw":-2.56563,"spawnMask":1},{"id":"creature-138073","entityId":"entry-9098","position":[-44.7,20.2203,-729.4978],"yaw":-2.0944,"spawnMask":1},{"id":"creature-138074","entityId":"entry-9098","position":[13.8952,28.3509,-612.4868],"yaw":-5.11381,"spawnMask":1},{"id":"creature-138075","entityId":"entry-9098","position":[-57.5171,10.183,-870.6348],"yaw":-1.25664,"spawnMask":1},{"id":"creature-138076","entityId":"entry-9098","position":[-58.8726,35.3607,-611.3048],"yaw":-1.79769,"spawnMask":1},{"id":"creature-138077","entityId":"entry-9098","position":[-67.373,40.279,-640.3118],"yaw":-4.4855,"spawnMask":1},{"id":"creature-138078","entityId":"entry-9416","position":[7.0326,28.4232,-605.6588],"yaw":-4.81711,"spawnMask":1},{"id":"creature-138079","entityId":"entry-9416","position":[1.1119,28.4154,-605.2718],"yaw":-4.59022,"spawnMask":1},{"id":"creature-138080","entityId":"entry-9416","position":[-17.2375,28.2276,-687.2718],"yaw":-1.37881,"spawnMask":1},{"id":"creature-138081","entityId":"entry-9416","position":[66.7308,8.7678,-846.7258],"yaw":-5.77704,"spawnMask":1},{"id":"creature-138082","entityId":"entry-9416","position":[-21.5082,28.3418,-687.7138],"yaw":-1.41372,"spawnMask":1},{"id":"creature-138083","entityId":"entry-9416","position":[67.2438,8.7678,-841.9038],"yaw":-5.44543,"spawnMask":1},{"id":"creature-138084","entityId":"entry-9416","position":[-23.1203,8.7126,-789.2818],"yaw":-0.628319,"spawnMask":1},{"id":"creature-138085","entityId":"entry-9416","position":[-25.9968,8.7215,-793.5508],"yaw":-0.802851,"spawnMask":1},{"id":"creature-138086","entityId":"entry-9416","position":[-32.0428,6.2306,-763.6238],"yaw":-2.51327,"spawnMask":1},{"id":"creature-138087","entityId":"entry-9416","position":[-34.7068,5.3509,-758.0228],"yaw":-2.74017,"spawnMask":1},{"id":"creature-138088","entityId":"entry-9416","position":[84.811,8.7678,-836.1508],"yaw":-0.907571,"spawnMask":1},{"id":"creature-138090","entityId":"entry-9416","position":[88.3855,8.7678,-830.8958],"yaw":-0.575959,"spawnMask":1},{"id":"creature-138091","entityId":"entry-9258","position":[4.1048,28.419,-605.5278],"yaw":-4.69494,"spawnMask":1},{"id":"creature-138092","entityId":"entry-9258","position":[-19.5021,28.2826,-686.8638],"yaw":-1.39626,"spawnMask":1},{"id":"creature-138093","entityId":"entry-9258","position":[65.8637,8.7678,-844.9268],"yaw":-5.61996,"spawnMask":1},{"id":"creature-138094","entityId":"entry-9258","position":[-25.2654,8.7192,-790.8358],"yaw":-0.715585,"spawnMask":1},{"id":"creature-138095","entityId":"entry-9258","position":[-32.5524,5.5744,-760.4408],"yaw":-2.61799,"spawnMask":1},{"id":"creature-138096","entityId":"entry-9258","position":[85.5031,8.7678,-832.4508],"yaw":-0.750492,"spawnMask":1},{"id":"creature-138097","entityId":"entry-9257","position":[-3.3455,28.3184,-684.5458],"yaw":-6.07375,"spawnMask":1},{"id":"creature-138098","entityId":"entry-9257","position":[19.6007,8.9503,-810.9148],"yaw":-2.23402,"spawnMask":1},{"id":"creature-138099","entityId":"entry-9257","position":[-18.5145,5.9805,-739.7438],"yaw":-1.01229,"spawnMask":1},{"id":"creature-138100","entityId":"entry-9257","position":[-37.5541,4.339,-746.7568],"yaw":-3.29867,"spawnMask":1},{"id":"creature-138101","entityId":"entry-9257","position":[-39.8096,21.6472,-723.0588],"yaw":-5.53269,"spawnMask":1},{"id":"creature-138102","entityId":"entry-9257","position":[-40.1689,10.1932,-854.9658],"yaw":-3.10669,"spawnMask":1},{"id":"creature-138103","entityId":"entry-9257","position":[-52.5797,10.1813,-873.1778],"yaw":-2.86234,"spawnMask":1},{"id":"creature-138104","entityId":"entry-9257","position":[30.9789,8.7678,-866.9588],"yaw":-5.67232,"spawnMask":1},{"id":"creature-138105","entityId":"entry-9257","position":[79.4467,8.7678,-872.1008],"yaw":-1.29154,"spawnMask":1},{"id":"creature-248595","entityId":"entry-9216","position":[102.193,62.1203,-809.5788],"yaw":-0.80285,"spawnMask":1},{"id":"creature-248596","entityId":"entry-9216","position":[79.729,57.3259,-713.5098],"yaw":-1.44862,"spawnMask":1},{"id":"creature-248597","entityId":"entry-9216","position":[43.2777,28.0287,-676.8948],"yaw":-3.01552,"spawnMask":1},{"id":"creature-248598","entityId":"entry-9216","position":[44.7415,11.1038,-629.1258],"yaw":-5.37632,"spawnMask":1},{"id":"creature-248599","entityId":"entry-9216","position":[63.4585,11.1119,-647.0438],"yaw":-4.6267,"spawnMask":1},{"id":"creature-248600","entityId":"entry-9216","position":[54.3851,11.1119,-666.5608],"yaw":-4.68053,"spawnMask":1},{"id":"creature-300742","entityId":"entry-9718","position":[112.7283,50.446,-577.2338],"yaw":-3.86922,"spawnMask":1},{"id":"encounter-277","entityId":"entry-10264","position":[-71.441,52.7562,-227.8167],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-43101","name":"Smolderthorn Berserker Patrol","speed":1.15,"pathId":926800,"formationSource":"database-solo","spawnMask":1,"waypoints":[[76.3766,57.779,-728.7908],[76.028,57.2552,-691.4368],[75.5379,57.2638,-675.9298]],"members":[{"id":"member","entityId":"entry-9268","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-43527","name":"Smolderthorn Shadow Priest Patrol","speed":1.15,"pathId":435270,"formationSource":"database-solo","spawnMask":1,"waypoints":[[25.1367,-4.3655,-747.0898],[20.3791,-4.4415,-750.0158],[20.3791,-4.4415,-750.0158],[21.4495,-4.4357,-749.5288],[24.7829,-4.3708,-747.7898],[30.6662,-3.7764,-747.1438],[37.983,-3.9528,-746.3438],[44.0558,-3.9241,-741.6848],[45.4232,-3.9052,-737.6688],[45.4232,-3.9052,-737.6688],[42.15,-3.9281,-743.9578],[36.6921,-3.9202,-746.6168],[30.0664,-3.777,-746.9558]],"members":[{"id":"member","entityId":"entry-9240","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137820","name":"Rage Talon Dragonspawn Patrol","speed":1.15,"pathId":1378200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-79.7537,85.9296,-570.0438],[-80.6497,85.9296,-598.4648],[-79.7537,85.9296,-570.0438],[-79.3727,85.9296,-540.9998]],"members":[{"id":"member","entityId":"entry-9096","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137830","name":"Rage Talon Dragonspawn Patrol","speed":1.15,"pathId":1378300,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-114.2977,50.4499,-604.2728],[-116.8867,50.4499,-597.5588],[-122.2837,50.4499,-592.5758],[-132.8957,50.4499,-593.1898],[-142.9267,50.4499,-595.2538],[-157.1797,54.498,-594.3128],[-163.7457,56.374,-593.3388],[-167.6787,56.3799,-589.5788],[-167.2617,56.426,-581.7968],[-170.0097,56.4302,-570.9078],[-174.4827,56.4308,-567.5988],[-182.6647,56.4299,-565.9988],[-184.0307,56.4263,-574.0108],[-183.3107,56.398,-586.8448],[-181.0667,56.3923,-594.6488],[-177.3527,56.3856,-600.8668],[-173.2987,56.3785,-607.4958],[-164.5257,56.3674,-611.2138],[-149.7697,51.1572,-616.6718],[-135.0807,50.4499,-616.4358],[-128.6087,50.4499,-618.3698],[-118.6767,50.4499,-614.2838]],"members":[{"id":"member","entityId":"entry-9096","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137842","name":"Rage Talon Flamescale Patrol","speed":1.15,"pathId":1378420,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-128.7447,90.4346,-552.6318],[-128.6917,90.1486,-585.8118],[-129.0877,90.4416,-623.4418],[-128.6917,90.1486,-585.8118]],"members":[{"id":"member","entityId":"entry-10083","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137843","name":"Rage Talon Flamescale Patrol","speed":1.15,"pathId":1378430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-141.9347,96.3376,-652.1008],[-136.9517,96.3376,-652.0288],[-111.5757,96.3376,-651.8168],[-90.9427,96.3376,-652.1908],[-111.5757,96.3376,-651.8168],[-136.9517,96.3376,-652.0288]],"members":[{"id":"member","entityId":"entry-10083","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137849","name":"Rage Talon Dragon Guard Patrol","speed":1.15,"pathId":1378490,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-128.1787,96.3196,-761.6248],[-142.5347,96.3356,-761.4438],[-128.1787,96.3196,-761.6248],[-114.3707,96.3356,-760.6158],[-97.4227,96.3356,-760.6368],[-83.5197,96.3356,-760.6068],[-72.0113,96.3356,-759.0428],[-60.9468,96.3356,-760.2058],[-54.379,96.3356,-760.4598],[-42.3593,93.4446,-760.5418],[-29.1653,90.4166,-760.6518],[-42.1204,93.4446,-760.5438],[-54.379,96.3356,-760.4598],[-60.6711,96.3356,-760.2348],[-72.0113,96.3356,-759.0428],[-83.5197,96.3356,-760.6068],[-97.4227,96.3356,-760.6368],[-114.3707,96.3356,-760.6158]],"members":[{"id":"member","entityId":"entry-10366","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137856","name":"Goraluk Anvilcrack Patrol","speed":1.15,"pathId":1378560,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-118.1337,90.3196,-529.5538],[-117.2957,90.2976,-530.9568],[-117.2927,90.2666,-533.3118],[-119.2797,90.2726,-534.8978],[-122.1437,90.2816,-536.2628],[-126.1947,90.3556,-532.3908],[-129.3797,90.3936,-531.2858],[-136.8007,90.4166,-534.5928],[-132.4147,90.4196,-529.5958],[-126.2067,90.3906,-529.1298],[-124.4827,90.3886,-527.9818],[-122.2167,90.3176,-532.9258],[-125.2267,90.3706,-530.2288],[-126.9027,90.3926,-529.5248],[-125.0677,90.3246,-534.4688],[-125.5947,90.3556,-531.9438],[-129.5317,90.3836,-532.3918],[-125.0427,90.3776,-529.4858],[-125.4337,90.3616,-531.2928],[-126.3037,90.3486,-533.1638],[-127.3847,90.3836,-530.7008],[-122.4407,90.3646,-528.6708]],"members":[{"id":"member","entityId":"entry-10899","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137859","name":"Rage Talon Captain Patrol","speed":1.15,"pathId":1378590,"formationSource":"database-solo","spawnMask":1,"waypoints":[[22.6649,90.4226,-560.4798],[22.9362,90.4326,-606.6788],[-10.2524,90.4366,-630.5768],[20.0344,90.4356,-621.4318],[1.2009,90.4386,-601.2168],[0.8848,90.4366,-552.7568],[1.2009,90.4386,-601.2168],[20.0344,90.4356,-621.4318],[-10.2524,90.4366,-630.5768],[22.9373,90.4356,-606.8798],[22.6649,90.4226,-560.4798],[5.012,90.4366,-549.4308]],"members":[{"id":"member","entityId":"entry-10371","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137885","name":"Blackhand Veteran Patrol","speed":1.15,"pathId":1378850,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-115.1937,96.3376,-651.9098],[-96.3917,96.3416,-652.0218],[-115.1937,96.3376,-651.9098],[-114.9427,96.3006,-660.0988],[-115.2647,101.4686,-669.7928],[-114.8827,96.3006,-659.9958],[-114.5417,96.3316,-644.8608],[-115.2717,90.7786,-635.6098],[-115.7657,90.4586,-625.8898],[-115.3167,90.4636,-635.0918],[-114.5337,96.3316,-644.7918],[-115.2367,96.3376,-651.9908],[-129.2497,96.3376,-651.2828],[-146.2317,96.3376,-651.2168],[-129.2497,96.3376,-651.2828],[-115.2367,96.3376,-651.9908],[-114.5247,96.3316,-644.8978],[-115.3097,90.4646,-635.1728],[-115.7657,90.4586,-625.8898],[-115.2717,90.7786,-635.6098],[-114.5477,96.3316,-644.7918],[-114.8827,96.3006,-659.9958],[-115.2647,101.4686,-669.7928],[-114.9427,96.3006,-660.0988]],"members":[{"id":"member","entityId":"entry-9819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137894","name":"Blackhand Veteran Patrol","speed":1.15,"pathId":1378940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-133.9957,90.4426,-626.5378],[-138.5467,90.4346,-616.0488],[-141.6107,90.4286,-607.4008],[-141.3277,90.4196,-593.8588],[-139.1927,90.4306,-581.2178],[-138.8017,90.4336,-572.8068],[-138.8877,90.4356,-562.1238],[-139.8807,90.4156,-546.4438],[-138.1447,90.4046,-537.0378],[-130.5947,90.3346,-540.2028],[-125.1947,90.3436,-542.8378],[-121.6717,90.3456,-544.0528],[-119.4877,90.3816,-548.6848],[-116.5867,90.4216,-558.9448],[-116.3257,90.4576,-578.3748],[-115.6277,90.4696,-590.5258],[-117.4637,90.4496,-604.1538],[-118.8217,90.4416,-614.3118],[-123.1287,90.4436,-625.1388],[-129.2477,90.4456,-629.3448]],"members":[{"id":"member","entityId":"entry-9819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137933","name":"Blackhand Dreadweaver Patrol","speed":1.15,"pathId":1379330,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-133.9167,90.4046,-547.0208],[-133.9587,90.4386,-556.6728],[-134.6987,90.1466,-569.3448],[-133.9827,90.1486,-588.0548],[-132.6547,90.1516,-602.9178],[-123.0567,90.1516,-602.8528],[-115.8077,90.4646,-598.5198],[-105.3717,90.4416,-598.5248],[-90.7057,85.9296,-598.2868],[-84.5527,85.9296,-597.1228],[-84.4047,85.9296,-590.9978],[-85.2297,85.9296,-580.3158],[-85.3917,85.9296,-559.9248],[-85.5867,85.9296,-548.6598],[-90.8377,85.9296,-546.4248],[-96.7737,88.4056,-545.5928],[-104.1487,90.4436,-544.7708],[-111.5257,90.3656,-542.5408],[-119.3687,90.3016,-539.8218],[-126.4937,90.3286,-540.7488],[-133.2887,90.3666,-542.9438]],"members":[{"id":"member","entityId":"entry-9817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137970","name":"Jed Runewatcher Patrol","speed":1.15,"pathId":1379700,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-120.3427,90.4396,-618.0028],[-114.8297,90.4656,-632.4008],[-114.8437,90.4926,-635.2128],[-114.6657,96.3316,-643.6038],[-114.2667,96.3376,-652.2258],[-114.4347,96.3006,-660.9468],[-114.5137,101.4686,-669.0718],[-114.5607,101.4686,-678.2978],[-128.6547,101.4686,-678.9518],[-142.7987,101.4686,-678.7868],[-142.7017,101.4686,-669.0218],[-142.9127,96.3006,-660.8708],[-142.8177,96.3386,-653.5538],[-142.6767,96.3306,-643.4918],[-142.8067,90.4626,-634.8108],[-142.3557,90.4446,-627.9268],[-138.0457,90.4346,-616.9328],[-137.4527,90.1496,-595.1168],[-137.3407,90.1456,-566.5258],[-121.2937,90.1466,-566.5788],[-120.2487,90.1516,-597.9698]],"members":[{"id":"member","entityId":"entry-10509","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137972","name":"Blackhand Assassin Patrol","speed":1.15,"pathId":1379720,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-94.7767,86.6186,-853.9188],[-94.5527,86.8966,-848.5768],[-90.2287,87.1566,-843.5848],[-82.3527,87.1756,-843.2088],[-73.31,90.0716,-839.9118],[-64.9657,90.4166,-836.8728],[-57.2137,90.4326,-831.0058],[-49.0075,90.4336,-825.9588],[-40.7945,90.4356,-820.9068],[-48.9498,90.4336,-825.9438],[-57.2137,90.4326,-831.0058],[-64.9657,90.4166,-836.8728],[-73.31,90.0716,-839.9118],[-82.3527,87.1756,-843.2088],[-90.2287,87.1566,-843.5848],[-94.5527,86.8966,-848.5768]],"members":[{"id":"member","entityId":"entry-10318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-137990","name":"Blackhand Iron Guard Patrol","speed":1.15,"pathId":1379900,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-60.8039,96.3356,-760.6258],[-70.3787,96.3356,-762.7698],[-70.4234,96.3356,-778.3238],[-70.3787,96.3356,-762.7698],[-60.9468,96.3356,-760.6578],[-48.1636,94.9896,-760.5668],[-37.8688,91.6326,-760.3218],[-22.3143,90.4196,-762.1388],[-13.7667,90.4326,-769.8278],[-1.7721,90.4406,-771.5428],[10.4165,90.4296,-767.5458],[12.6707,90.4286,-758.9618],[5.3722,90.4406,-742.7698],[-6.8314,90.4536,-739.9898],[-12.7139,90.4366,-740.5618],[-12.0081,90.4386,-728.7818],[-10.7659,90.2056,-703.8818],[-12.0081,90.4386,-728.7818],[-12.7139,90.4366,-740.5618],[-6.8314,90.4536,-739.9898],[5.3722,90.4406,-742.7698],[12.6707,90.4286,-758.9618],[10.4165,90.4296,-767.5458],[-1.7721,90.4406,-771.5428],[-13.7667,90.4326,-769.8278],[-22.3143,90.4196,-762.1388],[-37.8688,91.6326,-760.3218],[-48.1636,94.9896,-760.5668]],"members":[{"id":"member","entityId":"entry-10319","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138002","name":"Scarshield Acolyte Patrol","speed":1.15,"pathId":1380020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-18.2665,90.4256,-765.1518],[-17.9563,90.4276,-756.0188],[-6.2487,90.4516,-743.6648],[3.3101,90.4416,-744.1068],[11.7896,90.4316,-751.8028],[10.7088,90.4286,-767.3238],[-4.4707,90.4426,-773.0698]],"members":[{"id":"member","entityId":"entry-9045","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138004","name":"Scarshield Acolyte Patrol","speed":1.15,"pathId":1380040,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-10.5005,90.4406,-737.2948],[-5.0966,90.4476,-753.1368],[0.1501,90.4386,-772.2728],[1.3437,90.4346,-781.9098],[0.1501,90.4386,-772.2728],[-5.0966,90.4476,-753.1368],[-10.5005,90.4406,-737.2948],[-10.2473,90.4416,-727.1618],[-10.4804,90.4426,-718.4868],[-10.2473,90.4416,-727.1618]],"members":[{"id":"member","entityId":"entry-9045","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138026","name":"Scarshield Legionnaire Patrol","speed":1.15,"pathId":1380260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-18.7785,33.2399,-613.2398],[-11.8386,33.1232,-615.2308],[0.6761,28.2499,-615.1778],[4.0185,28.2198,-618.4438],[4.1281,28.1692,-632.3218],[2.4866,28.1667,-635.1678],[-12.392,28.169,-635.1148],[-14.4254,28.1718,-638.3528],[-14.5284,28.1503,-650.0548],[-14.4254,28.1718,-638.3528],[-12.392,28.169,-635.1148],[2.4866,28.1667,-635.1678],[4.1281,28.1692,-632.3218],[4.0185,28.2198,-618.4438],[0.6761,28.2499,-615.1778],[-11.8386,33.1232,-615.2308],[-18.7785,33.2399,-613.2398],[-30.7212,33.4096,-611.3238]],"members":[{"id":"member","entityId":"entry-9097","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138045","name":"Scarshield Legionnaire Patrol","speed":1.15,"pathId":1380450,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-49.7689,40.1173,-567.7468],[-64.3864,40.1022,-569.2998],[-64.0025,40.1043,-569.0128],[-48.2113,40.1013,-568.0348]],"members":[{"id":"member","entityId":"entry-9097","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138046","name":"Scarshield Legionnaire Patrol","speed":1.15,"pathId":1380460,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-65.3925,40.1089,-574.3968],[-70.7436,40.1259,-577.8328],[-73.209,40.1588,-582.8958],[-73.2094,44.884,-595.6898],[-72.2548,44.9729,-600.9128],[-64.2626,44.9774,-602.9258],[-48.9781,44.9609,-605.5418],[-42.848,44.9528,-606.8618],[-41.9536,44.9571,-613.0288],[-41.9977,40.1956,-626.4548],[-43.4259,40.1956,-631.5738],[-48.6347,40.1956,-632.3878],[-52.4213,40.1956,-632.2018],[-61.0673,40.1956,-632.2778],[-68.7674,40.1956,-632.1338],[-71.7494,40.1956,-630.4218],[-72.7539,40.1956,-626.7458],[-72.5898,44.9571,-613.4678],[-71.9483,44.9595,-607.9828],[-66.7496,44.9874,-604.9898],[-58.0469,44.965,-605.4248],[-47.8789,44.9771,-604.7988],[-43.1886,44.9571,-600.5768],[-41.7957,44.9571,-596.2828],[-41.3993,40.2357,-583.1678],[-44.4045,40.1336,-578.4188],[-51.4675,40.1348,-575.3738],[-59.2357,40.1549,-574.0388]],"members":[{"id":"member","entityId":"entry-9097","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138047","name":"Scarshield Legionnaire Patrol","speed":1.15,"pathId":1380470,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-67.1998,40.0887,-572.0988],[-73.3265,40.12,-577.1138],[-75.2092,41.9223,-588.0098],[-73.9903,44.9807,-602.5408],[-45.7484,44.9485,-608.1238],[-43.8486,44.9571,-613.3748],[-43.9736,43.0233,-619.1178],[-71.9905,40.1956,-630.0738],[-72.1661,41.3049,-623.5758],[-70.5534,44.9571,-610.5328],[-65.3724,44.9633,-606.5048],[-51.1661,44.9555,-607.0048],[-45.1541,44.9547,-606.6348],[-39.6432,44.9571,-596.1288],[-39.3403,40.2501,-581.2448],[-48.4611,40.1039,-574.4918],[-61.2465,40.1366,-573.0038]],"members":[{"id":"member","entityId":"entry-9097","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138069","name":"Scarshield Spellbinder Patrol","speed":1.15,"pathId":1380690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-17.2311,33.2315,-615.7648],[-34.4484,33.4098,-612.7508],[-11.6044,32.9782,-617.2298],[-4.0697,28.242,-617.2048],[-1.2595,28.2441,-617.1858],[4.5426,28.2307,-617.1618],[4.2805,28.1937,-621.4308],[2.1259,28.1746,-623.5998],[2.1551,28.1662,-635.7528],[-0.813,28.1673,-636.8848],[-3.6563,28.1751,-633.1458],[-15.6855,28.1644,-633.1028],[-16.4737,28.1509,-643.8318],[-16.5531,28.1489,-652.8558],[-16.3961,28.1664,-635.0078],[-12.7532,28.1648,-631.9298],[-6.8658,28.1751,-633.1348],[5.1693,28.167,-633.1768],[2.0854,28.1839,-626.9278],[1.9905,28.2517,-614.8958],[-2.0784,28.2652,-615.2828],[-6.2101,29.5875,-617.2068],[-9.0478,31.3712,-617.2188],[-11.6044,32.9782,-617.2298],[-14.1545,33.1756,-617.2408]],"members":[{"id":"member","entityId":"entry-9098","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-45808","name":"Burning Felguard","position":[135.1883,43.8436,-610.2938]},{"id":"creature-44422","name":"Crystal Fang","position":[128.3783,13.5936,-688.1338]},{"id":"creature-43519","name":"Spirestone Battle Lord","position":[57.6283,11.2536,-703.0538]},{"id":"creature-43523","name":"Spirestone Butcher","position":[59.3232,11.3259,-727.8818]},{"id":"creature-43522","name":"Shadow Hunter Vosh'gajin","position":[143.9283,4.2036,-768.1438]},{"id":"creature-45840","name":"War Master Voone","position":[39.7147,-39.1506,-745.1128]},{"id":"creature-44342","name":"Mother Smolderweb","position":[158.2483,-10.3364,-851.8138]},{"id":"creature-45749","name":"Quartermaster Zigris","position":[213.1973,66.8838,-761.5468]},{"id":"creature-40245","name":"Halycon","position":[216.6523,43.9815,-624.1118]},{"id":"creature-45757","name":"Overlord Wyrmthalak","position":[45.3708,70.2467,-772.1498]},{"id":"creature-137817","name":"Pyroguard Emberseer","position":[-121.6997,75.9002,-543.9978]},{"id":"encounter-277","name":"Solakar Flamewreath","position":[-71.441,52.7562,-227.8167]},{"id":"creature-137968","name":"Warchief Rend Blackhand","position":[-136.5377,101.5526,-729.5828]},{"id":"creature-137969","name":"The Beast","position":[-101.4717,86.9186,-849.7628]},{"id":"creature-137971","name":"General Drakkisath","position":[-13.7126,90.5296,-571.9578]}],"objectiveOrder":[{"id":"creature-45808","name":"Burning Felguard","position":[135.1883,43.8436,-610.2938]},{"id":"creature-44422","name":"Crystal Fang","position":[128.3783,13.5936,-688.1338]},{"id":"creature-43519","name":"Spirestone Battle Lord","position":[57.6283,11.2536,-703.0538]},{"id":"creature-43523","name":"Spirestone Butcher","position":[59.3232,11.3259,-727.8818]},{"id":"creature-43522","name":"Shadow Hunter Vosh'gajin","position":[143.9283,4.2036,-768.1438]},{"id":"creature-45840","name":"War Master Voone","position":[39.7147,-39.1506,-745.1128]},{"id":"creature-44342","name":"Mother Smolderweb","position":[158.2483,-10.3364,-851.8138]},{"id":"creature-45749","name":"Quartermaster Zigris","position":[213.1973,66.8838,-761.5468]},{"id":"creature-40245","name":"Halycon","position":[216.6523,43.9815,-624.1118]},{"id":"creature-45757","name":"Overlord Wyrmthalak","position":[45.3708,70.2467,-772.1498]},{"id":"creature-137817","name":"Pyroguard Emberseer","position":[-121.6997,75.9002,-543.9978]},{"id":"encounter-277","name":"Solakar Flamewreath","position":[-71.441,52.7562,-227.8167]},{"id":"creature-137968","name":"Warchief Rend Blackhand","position":[-136.5377,101.5526,-729.5828]},{"id":"creature-137969","name":"The Beast","position":[-101.4717,86.9186,-849.7628]},{"id":"creature-137971","name":"General Drakkisath","position":[-13.7126,90.5296,-571.9578]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14219,"id":181096,"map":229,"orientation":0,"phaseMask":1,"position_x":-23.97,"position_y":-451.98,"position_z":-18.64,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14221,"id":181096,"map":229,"orientation":0,"phaseMask":1,"position_x":25.92,"position_y":-537.7,"position_z":110.93,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":35860,"id":175785,"map":229,"orientation":3.23389,"phaseMask":1,"position_x":-9.32359,"position_y":-445.283,"position_z":-18.6441,"rotation0":0,"rotation1":0,"rotation2":0.998935,"rotation3":-0.0461323,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":35869,"id":179880,"map":229,"orientation":3.04222,"phaseMask":1,"position_x":41.8915,"position_y":-285.414,"position_z":110.958,"rotation0":0,"rotation1":0,"rotation2":0.998766,"rotation3":0.0496658,"spawnMask":1,"spawntimesecs":25,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81163,"id":175245,"map":229,"orientation":-0.104719,"phaseMask":1,"position_x":75.9989,"position_y":-334.744,"position_z":91.5107,"rotation0":0,"rotation1":0,"rotation2":-0.0523356,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":81623,"id":136965,"map":229,"orientation":1.92859,"phaseMask":1,"position_x":215.773,"position_y":-341.663,"position_z":76.8611,"rotation0":0,"rotation1":0,"rotation2":0.821647,"rotation3":0.569997,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":81624,"id":136966,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":229.028,"position_y":-307.81,"position_z":76.9668,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87602,"id":175124,"map":229,"orientation":0.122173,"phaseMask":1,"position_x":100.58,"position_y":-312.489,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.0610485,"rotation3":0.998135,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87603,"id":175124,"map":229,"orientation":-1.58825,"phaseMask":1,"position_x":101.517,"position_y":-311.471,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87604,"id":175124,"map":229,"orientation":0.0174525,"phaseMask":1,"position_x":102.414,"position_y":-304.376,"position_z":91.4466,"rotation0":0,"rotation1":0,"rotation2":0.00872614,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87605,"id":175124,"map":229,"orientation":1.50098,"phaseMask":1,"position_x":104.213,"position_y":-289.411,"position_z":91.4732,"rotation0":0,"rotation1":0,"rotation2":0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87606,"id":175124,"map":229,"orientation":3.07177,"phaseMask":1,"position_x":104.316,"position_y":-302.841,"position_z":91.4741,"rotation0":0,"rotation1":0,"rotation2":0.999391,"rotation3":0.0349043,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87607,"id":175124,"map":229,"orientation":0.680677,"phaseMask":1,"position_x":104.404,"position_y":-299.438,"position_z":91.4757,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87608,"id":175124,"map":229,"orientation":-1.97222,"phaseMask":1,"position_x":104.602,"position_y":-287.997,"position_z":91.4788,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87609,"id":175124,"map":229,"orientation":1.44862,"phaseMask":1,"position_x":104.927,"position_y":-286.138,"position_z":91.4835,"rotation0":0,"rotation1":0,"rotation2":0.662619,"rotation3":0.748957,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87610,"id":175124,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":105.029,"position_y":-300.911,"position_z":91.4845,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87611,"id":175124,"map":229,"orientation":-1.20428,"phaseMask":1,"position_x":106.199,"position_y":-299.793,"position_z":91.5014,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87612,"id":175124,"map":229,"orientation":-0.593412,"phaseMask":1,"position_x":106.42,"position_y":-281.429,"position_z":91.5051,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87613,"id":175124,"map":229,"orientation":1.95477,"phaseMask":1,"position_x":106.604,"position_y":-283.776,"position_z":91.5078,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87614,"id":175124,"map":229,"orientation":0.750491,"phaseMask":1,"position_x":107.189,"position_y":-287.66,"position_z":91.5163,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87615,"id":175124,"map":229,"orientation":-2.19911,"phaseMask":1,"position_x":107.419,"position_y":-282.512,"position_z":91.5196,"rotation0":0,"rotation1":0,"rotation2":-0.891005,"rotation3":0.453993,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87616,"id":175124,"map":229,"orientation":2.00713,"phaseMask":1,"position_x":107.928,"position_y":-299.948,"position_z":91.5265,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87617,"id":175124,"map":229,"orientation":-0.122173,"phaseMask":1,"position_x":112.297,"position_y":-390.178,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.0610485,"rotation3":0.998135,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87618,"id":175124,"map":229,"orientation":2.82743,"phaseMask":1,"position_x":113.018,"position_y":-451.804,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87619,"id":175124,"map":229,"orientation":-0.785397,"phaseMask":1,"position_x":113.93,"position_y":-389.215,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87620,"id":175124,"map":229,"orientation":0.767944,"phaseMask":1,"position_x":114.806,"position_y":-450.286,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":0.374606,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87621,"id":175124,"map":229,"orientation":-0.837757,"phaseMask":1,"position_x":115.411,"position_y":-389.923,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.406736,"rotation3":0.913546,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87622,"id":175124,"map":229,"orientation":-1.98967,"phaseMask":1,"position_x":115.812,"position_y":-453.057,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87623,"id":175124,"map":229,"orientation":-1.53589,"phaseMask":1,"position_x":186.987,"position_y":-389.476,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87624,"id":175124,"map":229,"orientation":1.13446,"phaseMask":1,"position_x":187.741,"position_y":-387.874,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87625,"id":175124,"map":229,"orientation":1.3439,"phaseMask":1,"position_x":188.003,"position_y":-452.538,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":0.622513,"rotation3":0.782609,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87626,"id":175124,"map":229,"orientation":1.48353,"phaseMask":1,"position_x":188.126,"position_y":-450.82,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737277,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87627,"id":175124,"map":229,"orientation":-0.296705,"phaseMask":1,"position_x":189.08,"position_y":-388.611,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.147809,"rotation3":0.989016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87628,"id":175124,"map":229,"orientation":-2.86234,"phaseMask":1,"position_x":189.834,"position_y":-451.31,"position_z":110.863,"rotation0":0,"rotation1":0,"rotation2":-0.990268,"rotation3":0.139173,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87629,"id":175124,"map":229,"orientation":-2.16421,"phaseMask":1,"position_x":197.826,"position_y":-407.93,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87630,"id":175124,"map":229,"orientation":-1.51844,"phaseMask":1,"position_x":197.889,"position_y":-409.417,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87631,"id":175124,"map":229,"orientation":-2.05949,"phaseMask":1,"position_x":198.346,"position_y":-432.692,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87632,"id":175124,"map":229,"orientation":-2.44346,"phaseMask":1,"position_x":199.281,"position_y":-431.434,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.939692,"rotation3":0.342021,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87633,"id":175124,"map":229,"orientation":1.11701,"phaseMask":1,"position_x":199.588,"position_y":-433.807,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87634,"id":175124,"map":229,"orientation":-2.93214,"phaseMask":1,"position_x":199.616,"position_y":-410.272,"position_z":110.886,"rotation0":0,"rotation1":0,"rotation2":-0.994521,"rotation3":0.104535,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87635,"id":175124,"map":229,"orientation":2.87979,"phaseMask":1,"position_x":200.125,"position_y":-407.846,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87636,"id":175124,"map":229,"orientation":1.78023,"phaseMask":1,"position_x":200.72,"position_y":-431.708,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":0.777144,"rotation3":0.629323,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87637,"id":175124,"map":229,"orientation":-1.37881,"phaseMask":1,"position_x":200.743,"position_y":-409.406,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87638,"id":175124,"map":229,"orientation":1.44862,"phaseMask":1,"position_x":201.847,"position_y":-432.209,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":0.662619,"rotation3":0.748957,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87639,"id":175124,"map":229,"orientation":-1.36136,"phaseMask":1,"position_x":202.572,"position_y":-392.328,"position_z":111.154,"rotation0":0,"rotation1":0,"rotation2":-0.629322,"rotation3":0.777145,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87640,"id":175124,"map":229,"orientation":-2.80998,"phaseMask":1,"position_x":202.891,"position_y":-394.925,"position_z":111.134,"rotation0":0,"rotation1":0,"rotation2":-0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87641,"id":175124,"map":229,"orientation":-1.06465,"phaseMask":1,"position_x":203.082,"position_y":-401.453,"position_z":111.087,"rotation0":0,"rotation1":0,"rotation2":-0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87642,"id":175124,"map":229,"orientation":2.86234,"phaseMask":1,"position_x":203.281,"position_y":-398.872,"position_z":111.105,"rotation0":0,"rotation1":0,"rotation2":0.990268,"rotation3":0.139173,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87643,"id":175124,"map":229,"orientation":-1.15192,"phaseMask":1,"position_x":203.856,"position_y":-403.369,"position_z":111.071,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87644,"id":175124,"map":229,"orientation":-0.645772,"phaseMask":1,"position_x":204.115,"position_y":-393.598,"position_z":111.142,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87645,"id":175124,"map":229,"orientation":-1.29154,"phaseMask":1,"position_x":204.39,"position_y":-395.495,"position_z":111.127,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798637,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87646,"id":175124,"map":229,"orientation":-2.19911,"phaseMask":1,"position_x":204.402,"position_y":-400.307,"position_z":111.092,"rotation0":0,"rotation1":0,"rotation2":-0.891005,"rotation3":0.453993,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87647,"id":175124,"map":229,"orientation":0.261798,"phaseMask":1,"position_x":205.199,"position_y":-401.573,"position_z":111.082,"rotation0":0,"rotation1":0,"rotation2":0.130525,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87648,"id":175124,"map":229,"orientation":-0.750491,"phaseMask":1,"position_x":206.904,"position_y":-419.79,"position_z":110.925,"rotation0":0,"rotation1":0,"rotation2":-0.366501,"rotation3":0.930418,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87649,"id":175124,"map":229,"orientation":0.226892,"phaseMask":1,"position_x":207.267,"position_y":-434.716,"position_z":110.887,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87650,"id":175124,"map":229,"orientation":-0.174532,"phaseMask":1,"position_x":207.935,"position_y":-420.02,"position_z":110.93,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87651,"id":175124,"map":229,"orientation":-1.51844,"phaseMask":1,"position_x":208.006,"position_y":-422.069,"position_z":110.929,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87652,"id":175124,"map":229,"orientation":2.21657,"phaseMask":1,"position_x":208.166,"position_y":-418.361,"position_z":110.933,"rotation0":0,"rotation1":0,"rotation2":0.894935,"rotation3":0.446197,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87653,"id":175124,"map":229,"orientation":-2.82743,"phaseMask":1,"position_x":208.798,"position_y":-433.633,"position_z":110.888,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87654,"id":175124,"map":229,"orientation":-2.9496,"phaseMask":1,"position_x":209.072,"position_y":-435.188,"position_z":110.885,"rotation0":0,"rotation1":0,"rotation2":-0.995396,"rotation3":0.095849,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87655,"id":175124,"map":229,"orientation":-2.9496,"phaseMask":1,"position_x":209.286,"position_y":-391.27,"position_z":111.149,"rotation0":0,"rotation1":0,"rotation2":-0.995396,"rotation3":0.095849,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87656,"id":175124,"map":229,"orientation":-0.541051,"phaseMask":1,"position_x":209.563,"position_y":-419.84,"position_z":110.939,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87657,"id":175124,"map":229,"orientation":-0.122173,"phaseMask":1,"position_x":210.485,"position_y":-393.288,"position_z":111.132,"rotation0":0,"rotation1":0,"rotation2":-0.0610485,"rotation3":0.998135,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87658,"id":175124,"map":229,"orientation":1.91986,"phaseMask":1,"position_x":210.654,"position_y":-391.83,"position_z":111.142,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87659,"id":175124,"map":229,"orientation":-1.55334,"phaseMask":1,"position_x":211.617,"position_y":-434.677,"position_z":110.888,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87660,"id":175124,"map":229,"orientation":1.93731,"phaseMask":1,"position_x":211.907,"position_y":-420.136,"position_z":110.945,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566409,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87661,"id":175124,"map":229,"orientation":-0.558504,"phaseMask":1,"position_x":212.067,"position_y":-392.173,"position_z":111.137,"rotation0":0,"rotation1":0,"rotation2":-0.275637,"rotation3":0.961262,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87662,"id":175124,"map":229,"orientation":2.9845,"phaseMask":1,"position_x":212.459,"position_y":-418.521,"position_z":110.953,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784656,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87663,"id":175124,"map":229,"orientation":-0.174532,"phaseMask":1,"position_x":212.636,"position_y":-432.306,"position_z":110.892,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87664,"id":175124,"map":229,"orientation":2.14675,"phaseMask":1,"position_x":213.311,"position_y":-410.503,"position_z":110.963,"rotation0":0,"rotation1":0,"rotation2":0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87665,"id":175124,"map":229,"orientation":0.628317,"phaseMask":1,"position_x":213.577,"position_y":-419.533,"position_z":110.95,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87666,"id":175124,"map":229,"orientation":2.96704,"phaseMask":1,"position_x":214.32,"position_y":-408.951,"position_z":110.968,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.0871655,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87667,"id":175124,"map":229,"orientation":0.90757,"phaseMask":1,"position_x":217.875,"position_y":-392.087,"position_z":111.127,"rotation0":0,"rotation1":0,"rotation2":0.438371,"rotation3":0.898794,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87668,"id":175124,"map":229,"orientation":1.91986,"phaseMask":1,"position_x":218.954,"position_y":-392.579,"position_z":111.121,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87669,"id":175124,"map":229,"orientation":-1.98967,"phaseMask":1,"position_x":219.679,"position_y":-393.405,"position_z":111.114,"rotation0":0,"rotation1":0,"rotation2":-0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87670,"id":175124,"map":229,"orientation":-2.61799,"phaseMask":1,"position_x":219.995,"position_y":-399.617,"position_z":111.068,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87671,"id":175124,"map":229,"orientation":-1.76278,"phaseMask":1,"position_x":220.162,"position_y":-421.225,"position_z":110.948,"rotation0":0,"rotation1":0,"rotation2":-0.771624,"rotation3":0.636079,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87672,"id":175124,"map":229,"orientation":1.36136,"phaseMask":1,"position_x":220.173,"position_y":-391.63,"position_z":111.126,"rotation0":0,"rotation1":0,"rotation2":0.629322,"rotation3":0.777145,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87673,"id":175124,"map":229,"orientation":-1.98967,"phaseMask":1,"position_x":220.181,"position_y":-401.405,"position_z":111.055,"rotation0":0,"rotation1":0,"rotation2":-0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87674,"id":175124,"map":229,"orientation":-1.22173,"phaseMask":1,"position_x":220.602,"position_y":-418.447,"position_z":110.961,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87675,"id":175124,"map":229,"orientation":1.98967,"phaseMask":1,"position_x":220.824,"position_y":-398.357,"position_z":111.076,"rotation0":0,"rotation1":0,"rotation2":0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87676,"id":175124,"map":229,"orientation":-1.97222,"phaseMask":1,"position_x":220.836,"position_y":-393.649,"position_z":111.11,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87677,"id":175124,"map":229,"orientation":-2.47837,"phaseMask":1,"position_x":220.87,"position_y":-411.346,"position_z":110.993,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87678,"id":175124,"map":229,"orientation":0.977383,"phaseMask":1,"position_x":221.281,"position_y":-400.066,"position_z":111.063,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87679,"id":175124,"map":229,"orientation":-2.07694,"phaseMask":1,"position_x":221.348,"position_y":-409.122,"position_z":111.003,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87680,"id":175124,"map":229,"orientation":1.64061,"phaseMask":1,"position_x":221.701,"position_y":-420.444,"position_z":110.953,"rotation0":0,"rotation1":0,"rotation2":0.731354,"rotation3":0.681998,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87681,"id":175124,"map":229,"orientation":0,"phaseMask":1,"position_x":222.093,"position_y":-432.25,"position_z":110.901,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87682,"id":175124,"map":229,"orientation":-3.07177,"phaseMask":1,"position_x":222.152,"position_y":-411.776,"position_z":110.992,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349043,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87683,"id":175124,"map":229,"orientation":2.79252,"phaseMask":1,"position_x":222.219,"position_y":-428.908,"position_z":110.916,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87684,"id":175124,"map":229,"orientation":-1.20428,"phaseMask":1,"position_x":222.736,"position_y":-410.477,"position_z":110.998,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87685,"id":175124,"map":229,"orientation":-0.261798,"phaseMask":1,"position_x":222.816,"position_y":-430.971,"position_z":110.907,"rotation0":0,"rotation1":0,"rotation2":-0.130525,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87686,"id":175124,"map":229,"orientation":-1.88495,"phaseMask":1,"position_x":223.579,"position_y":-419.323,"position_z":110.959,"rotation0":0,"rotation1":0,"rotation2":-0.809015,"rotation3":0.587788,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87687,"id":175124,"map":229,"orientation":-0.174532,"phaseMask":1,"position_x":223.817,"position_y":-429.41,"position_z":110.914,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87688,"id":175124,"map":229,"orientation":1.88495,"phaseMask":1,"position_x":223.978,"position_y":-432.85,"position_z":110.899,"rotation0":0,"rotation1":0,"rotation2":0.809015,"rotation3":0.587788,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87689,"id":175124,"map":229,"orientation":1.58825,"phaseMask":1,"position_x":224.213,"position_y":-412.157,"position_z":110.991,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87690,"id":175124,"map":229,"orientation":2.26892,"phaseMask":1,"position_x":48.8127,"position_y":-337.076,"position_z":91.5302,"rotation0":0,"rotation1":0,"rotation2":0.906306,"rotation3":0.422622,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87691,"id":175124,"map":229,"orientation":-2.426,"phaseMask":1,"position_x":50.1711,"position_y":-316.652,"position_z":91.5303,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.350211,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87692,"id":175124,"map":229,"orientation":-1.98967,"phaseMask":1,"position_x":51.2665,"position_y":-338.088,"position_z":91.5419,"rotation0":0,"rotation1":0,"rotation2":-0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87693,"id":175124,"map":229,"orientation":2.14675,"phaseMask":1,"position_x":51.5754,"position_y":-315.042,"position_z":91.5225,"rotation0":0,"rotation1":0,"rotation2":0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87694,"id":175124,"map":229,"orientation":-0.593412,"phaseMask":1,"position_x":51.8635,"position_y":-316.614,"position_z":91.5209,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87695,"id":175124,"map":229,"orientation":1.3439,"phaseMask":1,"position_x":54.2656,"position_y":-255.435,"position_z":96.8589,"rotation0":0,"rotation1":0,"rotation2":0.622513,"rotation3":0.782609,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87696,"id":175124,"map":229,"orientation":-1.13446,"phaseMask":1,"position_x":54.5722,"position_y":-336.735,"position_z":91.5293,"rotation0":0,"rotation1":0,"rotation2":-0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87697,"id":175124,"map":229,"orientation":-2.65289,"phaseMask":1,"position_x":55.3531,"position_y":-249.984,"position_z":97.0487,"rotation0":0,"rotation1":0,"rotation2":-0.970294,"rotation3":0.241927,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87698,"id":175124,"map":229,"orientation":0.541051,"phaseMask":1,"position_x":55.442,"position_y":-254.351,"position_z":97.1978,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.963631,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87699,"id":175124,"map":229,"orientation":-1.06465,"phaseMask":1,"position_x":56.7615,"position_y":-332.325,"position_z":91.4652,"rotation0":0,"rotation1":0,"rotation2":-0.507538,"rotation3":0.861629,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87700,"id":175124,"map":229,"orientation":-0.087266,"phaseMask":1,"position_x":56.8515,"position_y":-253.343,"position_z":96.9626,"rotation0":0,"rotation1":0,"rotation2":-0.0436192,"rotation3":0.999048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87701,"id":175124,"map":229,"orientation":0.261798,"phaseMask":1,"position_x":56.876,"position_y":-255.377,"position_z":96.9689,"rotation0":0,"rotation1":0,"rotation2":0.130525,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87702,"id":175124,"map":229,"orientation":-2.23402,"phaseMask":1,"position_x":57.859,"position_y":-336.093,"position_z":91.5233,"rotation0":0,"rotation1":0,"rotation2":-0.898794,"rotation3":0.438372,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87703,"id":175124,"map":229,"orientation":-1.01229,"phaseMask":1,"position_x":57.8603,"position_y":-256.662,"position_z":96.7394,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87704,"id":175124,"map":229,"orientation":0.506145,"phaseMask":1,"position_x":58.1175,"position_y":-253.946,"position_z":96.881,"rotation0":0,"rotation1":0,"rotation2":0.25038,"rotation3":0.968148,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87705,"id":175124,"map":229,"orientation":0.977383,"phaseMask":1,"position_x":58.8178,"position_y":-334.107,"position_z":91.5048,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87706,"id":175124,"map":229,"orientation":-2.49582,"phaseMask":1,"position_x":59.0256,"position_y":-271.14,"position_z":93.6363,"rotation0":0,"rotation1":0,"rotation2":-0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87707,"id":175124,"map":229,"orientation":1.0821,"phaseMask":1,"position_x":59.1689,"position_y":-255.103,"position_z":96.8158,"rotation0":0,"rotation1":0,"rotation2":0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87708,"id":175124,"map":229,"orientation":-0.191985,"phaseMask":1,"position_x":59.1922,"position_y":-317.294,"position_z":91.4801,"rotation0":0,"rotation1":0,"rotation2":-0.0958451,"rotation3":0.995396,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87709,"id":175124,"map":229,"orientation":-1.64061,"phaseMask":1,"position_x":59.331,"position_y":-332.23,"position_z":91.4729,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87710,"id":175124,"map":229,"orientation":-0.471239,"phaseMask":1,"position_x":59.4191,"position_y":-337.406,"position_z":91.5356,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87711,"id":175124,"map":229,"orientation":-2.26892,"phaseMask":1,"position_x":60.1851,"position_y":-270.196,"position_z":93.6818,"rotation0":0,"rotation1":0,"rotation2":-0.906306,"rotation3":0.422622,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87712,"id":175124,"map":229,"orientation":1.13446,"phaseMask":1,"position_x":60.3514,"position_y":-312.297,"position_z":91.5221,"rotation0":0,"rotation1":0,"rotation2":0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87713,"id":175124,"map":229,"orientation":2.35619,"phaseMask":1,"position_x":60.665,"position_y":-268.136,"position_z":93.6019,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87714,"id":175124,"map":229,"orientation":0.733038,"phaseMask":1,"position_x":61.0127,"position_y":-315.653,"position_z":91.4848,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87715,"id":175124,"map":229,"orientation":-0.680679,"phaseMask":1,"position_x":61.0567,"position_y":-313.922,"position_z":91.505,"rotation0":0,"rotation1":0,"rotation2":-0.333807,"rotation3":0.942641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87716,"id":175124,"map":229,"orientation":-1.15192,"phaseMask":1,"position_x":61.3216,"position_y":-272.013,"position_z":93.6009,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87717,"id":175124,"map":229,"orientation":-0.349065,"phaseMask":1,"position_x":62.4955,"position_y":-334.331,"position_z":91.5069,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87718,"id":175124,"map":229,"orientation":-3.08918,"phaseMask":1,"position_x":63.3079,"position_y":-317.114,"position_z":91.4715,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0262033,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87719,"id":175124,"map":229,"orientation":0.069812,"phaseMask":1,"position_x":63.5717,"position_y":-336.638,"position_z":91.5284,"rotation0":0,"rotation1":0,"rotation2":0.0348989,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87720,"id":175124,"map":229,"orientation":-1.5708,"phaseMask":1,"position_x":64.204,"position_y":-268.474,"position_z":93.2454,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87721,"id":175124,"map":229,"orientation":1.78023,"phaseMask":1,"position_x":64.926,"position_y":-317.059,"position_z":91.461,"rotation0":0,"rotation1":0,"rotation2":0.777144,"rotation3":0.629323,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87722,"id":175124,"map":229,"orientation":0.349065,"phaseMask":1,"position_x":65.2965,"position_y":-267.93,"position_z":93.0764,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87723,"id":175124,"map":229,"orientation":1.09956,"phaseMask":1,"position_x":65.5835,"position_y":-305.105,"position_z":91.4853,"rotation0":0,"rotation1":0,"rotation2":0.5225,"rotation3":0.852639,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87724,"id":175124,"map":229,"orientation":-2.61799,"phaseMask":1,"position_x":65.9878,"position_y":-303.634,"position_z":91.4694,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87725,"id":175124,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":66.8018,"position_y":-302.481,"position_z":91.4515,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87726,"id":175124,"map":229,"orientation":3.12412,"phaseMask":1,"position_x":68.1218,"position_y":-302.416,"position_z":91.4389,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87727,"id":175124,"map":229,"orientation":1.36136,"phaseMask":1,"position_x":68.2518,"position_y":-314.875,"position_z":91.4335,"rotation0":0,"rotation1":0,"rotation2":0.629322,"rotation3":0.777145,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87728,"id":175124,"map":229,"orientation":0.994837,"phaseMask":1,"position_x":68.7284,"position_y":-307.073,"position_z":91.4505,"rotation0":0,"rotation1":0,"rotation2":0.477158,"rotation3":0.878817,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87729,"id":175124,"map":229,"orientation":-1.39626,"phaseMask":1,"position_x":69.4599,"position_y":-303.627,"position_z":91.438,"rotation0":0,"rotation1":0,"rotation2":-0.642786,"rotation3":0.766046,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87730,"id":175124,"map":229,"orientation":1.13446,"phaseMask":1,"position_x":69.6914,"position_y":-332.161,"position_z":91.4867,"rotation0":0,"rotation1":0,"rotation2":0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87731,"id":175124,"map":229,"orientation":2.89724,"phaseMask":1,"position_x":69.9306,"position_y":-326.64,"position_z":91.4588,"rotation0":0,"rotation1":0,"rotation2":0.992546,"rotation3":0.121873,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87732,"id":175124,"map":229,"orientation":-0.401425,"phaseMask":1,"position_x":69.9912,"position_y":-329.339,"position_z":91.4658,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87733,"id":175124,"map":229,"orientation":0.610864,"phaseMask":1,"position_x":70.5072,"position_y":-334.149,"position_z":91.5052,"rotation0":0,"rotation1":0,"rotation2":0.300705,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87734,"id":175124,"map":229,"orientation":3.03684,"phaseMask":1,"position_x":70.9291,"position_y":-304.97,"position_z":91.4315,"rotation0":0,"rotation1":0,"rotation2":0.998629,"rotation3":0.0523524,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87735,"id":175124,"map":229,"orientation":-1.51844,"phaseMask":1,"position_x":71.7115,"position_y":-306.066,"position_z":91.4182,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87736,"id":175124,"map":229,"orientation":2.23402,"phaseMask":1,"position_x":71.7949,"position_y":-278.165,"position_z":92.4567,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87737,"id":175124,"map":229,"orientation":-1.43117,"phaseMask":1,"position_x":72.0026,"position_y":-328.392,"position_z":91.461,"rotation0":0,"rotation1":0,"rotation2":-0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87738,"id":175124,"map":229,"orientation":-2.68781,"phaseMask":1,"position_x":72.026,"position_y":-331.225,"position_z":91.4723,"rotation0":0,"rotation1":0,"rotation2":-0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87739,"id":175124,"map":229,"orientation":1.43117,"phaseMask":1,"position_x":72.0531,"position_y":-325.809,"position_z":91.4542,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87740,"id":175124,"map":229,"orientation":2.61799,"phaseMask":1,"position_x":72.069,"position_y":-276.632,"position_z":92.2983,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87741,"id":175124,"map":229,"orientation":-1.01229,"phaseMask":1,"position_x":72.141,"position_y":-285.906,"position_z":91.9452,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87742,"id":175124,"map":229,"orientation":-0.645772,"phaseMask":1,"position_x":73.1332,"position_y":-306.736,"position_z":91.4127,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87743,"id":175124,"map":229,"orientation":0.453785,"phaseMask":1,"position_x":73.5452,"position_y":-324.156,"position_z":91.4481,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87744,"id":175124,"map":229,"orientation":-1.01229,"phaseMask":1,"position_x":74.0389,"position_y":-287.331,"position_z":91.4488,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87745,"id":175124,"map":229,"orientation":-0.401425,"phaseMask":1,"position_x":74.1004,"position_y":-291.837,"position_z":91.442,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87746,"id":175124,"map":229,"orientation":-1.39626,"phaseMask":1,"position_x":74.2068,"position_y":-273.591,"position_z":91.6428,"rotation0":0,"rotation1":0,"rotation2":-0.642786,"rotation3":0.766046,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87747,"id":175124,"map":229,"orientation":-0.733038,"phaseMask":1,"position_x":74.4491,"position_y":-307.403,"position_z":91.4144,"rotation0":0,"rotation1":0,"rotation2":-0.358368,"rotation3":0.93358,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87748,"id":175124,"map":229,"orientation":0.95993,"phaseMask":1,"position_x":74.7522,"position_y":-275.849,"position_z":91.6503,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87749,"id":175124,"map":229,"orientation":1.98967,"phaseMask":1,"position_x":75.1779,"position_y":-292.906,"position_z":91.4446,"rotation0":0,"rotation1":0,"rotation2":0.838669,"rotation3":0.544641,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87750,"id":175124,"map":229,"orientation":-0.785397,"phaseMask":1,"position_x":76.2422,"position_y":-277.381,"position_z":91.4738,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87751,"id":175124,"map":229,"orientation":0.767944,"phaseMask":1,"position_x":76.6499,"position_y":-263.575,"position_z":91.4803,"rotation0":0,"rotation1":0,"rotation2":0.374606,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87752,"id":175124,"map":229,"orientation":2.32129,"phaseMask":1,"position_x":76.8647,"position_y":-275.632,"position_z":91.4778,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87753,"id":175124,"map":229,"orientation":-1.25664,"phaseMask":1,"position_x":77.2751,"position_y":-262.143,"position_z":91.4799,"rotation0":0,"rotation1":0,"rotation2":-0.587786,"rotation3":0.809016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87754,"id":175124,"map":229,"orientation":-0.087266,"phaseMask":1,"position_x":77.4822,"position_y":-292.28,"position_z":91.447,"rotation0":0,"rotation1":0,"rotation2":-0.0436192,"rotation3":0.999048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87755,"id":175124,"map":229,"orientation":-1.11701,"phaseMask":1,"position_x":77.7013,"position_y":-295.117,"position_z":91.4437,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87756,"id":175124,"map":229,"orientation":2.00713,"phaseMask":1,"position_x":78.59,"position_y":-266.496,"position_z":91.4746,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87757,"id":175124,"map":229,"orientation":-2.33874,"phaseMask":1,"position_x":79.0012,"position_y":-331.653,"position_z":91.471,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87758,"id":175124,"map":229,"orientation":-0.541051,"phaseMask":1,"position_x":79.072,"position_y":-328.433,"position_z":91.4529,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87759,"id":175124,"map":229,"orientation":-2.1293,"phaseMask":1,"position_x":79.2062,"position_y":-262.497,"position_z":91.4758,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87760,"id":175124,"map":229,"orientation":-0.174532,"phaseMask":1,"position_x":79.5689,"position_y":-291.474,"position_z":91.4493,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87761,"id":175124,"map":229,"orientation":1.6057,"phaseMask":1,"position_x":79.7866,"position_y":-325.953,"position_z":91.4456,"rotation0":0,"rotation1":0,"rotation2":0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87762,"id":175124,"map":229,"orientation":-0.855211,"phaseMask":1,"position_x":80.4842,"position_y":-316.636,"position_z":91.438,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87763,"id":175124,"map":229,"orientation":-2.14675,"phaseMask":1,"position_x":80.7881,"position_y":-253.589,"position_z":91.4755,"rotation0":0,"rotation1":0,"rotation2":-0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87764,"id":175124,"map":229,"orientation":-2.09439,"phaseMask":1,"position_x":80.9162,"position_y":-328.544,"position_z":91.4511,"rotation0":0,"rotation1":0,"rotation2":-0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87765,"id":175124,"map":229,"orientation":-2.51327,"phaseMask":1,"position_x":81.0063,"position_y":-332.454,"position_z":91.4814,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87766,"id":175124,"map":229,"orientation":2.75761,"phaseMask":1,"position_x":81.0104,"position_y":-264.958,"position_z":91.4705,"rotation0":0,"rotation1":0,"rotation2":0.981626,"rotation3":0.190814,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87767,"id":175124,"map":229,"orientation":-1.02974,"phaseMask":1,"position_x":81.0718,"position_y":-330.129,"position_z":91.4551,"rotation0":0,"rotation1":0,"rotation2":-0.492422,"rotation3":0.870357,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87768,"id":175124,"map":229,"orientation":2.46091,"phaseMask":1,"position_x":81.7656,"position_y":-326.14,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.942641,"rotation3":0.333809,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87769,"id":175124,"map":229,"orientation":0.174532,"phaseMask":1,"position_x":81.8175,"position_y":-317.4,"position_z":91.4399,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87770,"id":175124,"map":229,"orientation":-1.50098,"phaseMask":1,"position_x":81.9745,"position_y":-335.984,"position_z":91.5223,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87771,"id":175124,"map":229,"orientation":-1.69297,"phaseMask":1,"position_x":82.0751,"position_y":-251.81,"position_z":91.4727,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87772,"id":175124,"map":229,"orientation":1.71042,"phaseMask":1,"position_x":82.5312,"position_y":-315.925,"position_z":91.4361,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87773,"id":175124,"map":229,"orientation":-3.01941,"phaseMask":1,"position_x":82.7643,"position_y":-267.748,"position_z":91.4651,"rotation0":0,"rotation1":0,"rotation2":-0.998134,"rotation3":0.0610534,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87774,"id":175124,"map":229,"orientation":0.698132,"phaseMask":1,"position_x":82.9415,"position_y":-330.608,"position_z":91.4542,"rotation0":0,"rotation1":0,"rotation2":0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87775,"id":175124,"map":229,"orientation":-1.64061,"phaseMask":1,"position_x":82.9601,"position_y":-249.989,"position_z":91.4709,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87776,"id":175124,"map":229,"orientation":-0.209439,"phaseMask":1,"position_x":83.0306,"position_y":-333.103,"position_z":91.4893,"rotation0":0,"rotation1":0,"rotation2":-0.104528,"rotation3":0.994522,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87777,"id":175124,"map":229,"orientation":-0.296705,"phaseMask":1,"position_x":83.2161,"position_y":-327.69,"position_z":91.4462,"rotation0":0,"rotation1":0,"rotation2":-0.147809,"rotation3":0.989016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87778,"id":175124,"map":229,"orientation":1.95477,"phaseMask":1,"position_x":83.6532,"position_y":-252.415,"position_z":91.4694,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87779,"id":175124,"map":229,"orientation":-2.96704,"phaseMask":1,"position_x":83.9509,"position_y":-325.865,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.996194,"rotation3":0.0871655,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87780,"id":175124,"map":229,"orientation":-0.541051,"phaseMask":1,"position_x":83.9541,"position_y":-315.109,"position_z":91.4341,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87781,"id":175124,"map":229,"orientation":-2.87979,"phaseMask":1,"position_x":84.112,"position_y":-268.795,"position_z":91.4617,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87782,"id":175124,"map":229,"orientation":1.78023,"phaseMask":1,"position_x":84.5061,"position_y":-248.377,"position_z":91.4676,"rotation0":0,"rotation1":0,"rotation2":0.777144,"rotation3":0.629323,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87783,"id":175124,"map":229,"orientation":0.157079,"phaseMask":1,"position_x":84.6573,"position_y":-301.761,"position_z":91.4432,"rotation0":0,"rotation1":0,"rotation2":0.0784588,"rotation3":0.996917,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87784,"id":175124,"map":229,"orientation":1.309,"phaseMask":1,"position_x":85.5635,"position_y":-293.523,"position_z":91.4479,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87785,"id":175124,"map":229,"orientation":-2.07694,"phaseMask":1,"position_x":85.6677,"position_y":-314.024,"position_z":91.436,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87786,"id":175124,"map":229,"orientation":2.77507,"phaseMask":1,"position_x":85.834,"position_y":-295.414,"position_z":91.4477,"rotation0":0,"rotation1":0,"rotation2":0.983255,"rotation3":0.182237,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87787,"id":175124,"map":229,"orientation":-2.93214,"phaseMask":1,"position_x":85.9751,"position_y":-250.81,"position_z":91.4645,"rotation0":0,"rotation1":0,"rotation2":-0.994521,"rotation3":0.104535,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87788,"id":175124,"map":229,"orientation":0.767944,"phaseMask":1,"position_x":86.1129,"position_y":-302.506,"position_z":91.4437,"rotation0":0,"rotation1":0,"rotation2":0.374606,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87789,"id":175124,"map":229,"orientation":1.81514,"phaseMask":1,"position_x":86.3671,"position_y":-246.965,"position_z":91.4637,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87790,"id":175124,"map":229,"orientation":-0.942477,"phaseMask":1,"position_x":87.2261,"position_y":-252.472,"position_z":91.4619,"rotation0":0,"rotation1":0,"rotation2":-0.45399,"rotation3":0.891007,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87791,"id":175124,"map":229,"orientation":0.034906,"phaseMask":1,"position_x":87.2811,"position_y":-254.392,"position_z":91.4618,"rotation0":0,"rotation1":0,"rotation2":0.0174521,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87792,"id":175124,"map":229,"orientation":-2.56563,"phaseMask":1,"position_x":87.411,"position_y":-278.121,"position_z":91.4532,"rotation0":0,"rotation1":0,"rotation2":-0.958819,"rotation3":0.284017,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87793,"id":175124,"map":229,"orientation":3.01941,"phaseMask":1,"position_x":87.8127,"position_y":-314.716,"position_z":91.4443,"rotation0":0,"rotation1":0,"rotation2":0.998134,"rotation3":0.0610534,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87794,"id":175124,"map":229,"orientation":-1.79769,"phaseMask":1,"position_x":87.8612,"position_y":-303.152,"position_z":91.4444,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622514,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87795,"id":175124,"map":229,"orientation":-2.70526,"phaseMask":1,"position_x":87.9231,"position_y":-280.001,"position_z":91.4471,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87796,"id":175124,"map":229,"orientation":1.43117,"phaseMask":1,"position_x":88.0984,"position_y":-333.163,"position_z":91.4844,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87797,"id":175124,"map":229,"orientation":2.28638,"phaseMask":1,"position_x":88.3432,"position_y":-248.339,"position_z":91.4596,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87798,"id":175124,"map":229,"orientation":0.366518,"phaseMask":1,"position_x":88.6913,"position_y":-301.07,"position_z":91.4447,"rotation0":0,"rotation1":0,"rotation2":0.182235,"rotation3":0.983255,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87799,"id":175124,"map":229,"orientation":-0.698132,"phaseMask":1,"position_x":88.8089,"position_y":-316.134,"position_z":91.4447,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87800,"id":175124,"map":229,"orientation":2.94959,"phaseMask":1,"position_x":89.0041,"position_y":-251.208,"position_z":91.4582,"rotation0":0,"rotation1":0,"rotation2":0.995395,"rotation3":0.0958539,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87801,"id":175124,"map":229,"orientation":1.53589,"phaseMask":1,"position_x":89.0992,"position_y":-290.133,"position_z":91.4463,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87802,"id":175124,"map":229,"orientation":0.541051,"phaseMask":1,"position_x":89.9268,"position_y":-301.831,"position_z":91.4451,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.963631,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87803,"id":175124,"map":229,"orientation":-0.872664,"phaseMask":1,"position_x":89.9589,"position_y":-318.159,"position_z":91.4443,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87804,"id":175124,"map":229,"orientation":2.61799,"phaseMask":1,"position_x":90.3071,"position_y":-332.646,"position_z":91.4737,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87805,"id":175124,"map":229,"orientation":1.20428,"phaseMask":1,"position_x":90.5754,"position_y":-320.019,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87806,"id":175124,"map":229,"orientation":-3.08918,"phaseMask":1,"position_x":91.8307,"position_y":-291.349,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0262033,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87807,"id":175124,"map":229,"orientation":0.733038,"phaseMask":1,"position_x":91.8609,"position_y":-301.935,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87808,"id":175124,"map":229,"orientation":0.453785,"phaseMask":1,"position_x":92.1155,"position_y":-334.861,"position_z":91.5066,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87809,"id":175124,"map":229,"orientation":-1.67551,"phaseMask":1,"position_x":92.1251,"position_y":-279.851,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.743143,"rotation3":0.669133,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87810,"id":175124,"map":229,"orientation":0.436332,"phaseMask":1,"position_x":92.6002,"position_y":-288.176,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87811,"id":175124,"map":229,"orientation":2.44346,"phaseMask":1,"position_x":92.6442,"position_y":-304.447,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.342021,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87812,"id":175124,"map":229,"orientation":-0.750491,"phaseMask":1,"position_x":93.6733,"position_y":-290.12,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.366501,"rotation3":0.930418,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87813,"id":175124,"map":229,"orientation":1.02974,"phaseMask":1,"position_x":93.8115,"position_y":-305.536,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.492422,"rotation3":0.870357,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87814,"id":175124,"map":229,"orientation":2.35619,"phaseMask":1,"position_x":93.8904,"position_y":-288.281,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87815,"id":175124,"map":229,"orientation":2.51327,"phaseMask":1,"position_x":94.5641,"position_y":-281.093,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87816,"id":175124,"map":229,"orientation":2.96704,"phaseMask":1,"position_x":94.9171,"position_y":-288.644,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.0871655,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87817,"id":175124,"map":229,"orientation":0.855211,"phaseMask":1,"position_x":95.4615,"position_y":-313.584,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87818,"id":175124,"map":229,"orientation":1.71042,"phaseMask":1,"position_x":96.0628,"position_y":-287.47,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87819,"id":175124,"map":229,"orientation":0.139624,"phaseMask":1,"position_x":96.3418,"position_y":-280.518,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.0697553,"rotation3":0.997564,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87820,"id":175124,"map":229,"orientation":-1.27409,"phaseMask":1,"position_x":97.1258,"position_y":-281.949,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.594823,"rotation3":0.803857,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87821,"id":175124,"map":229,"orientation":-3.03684,"phaseMask":1,"position_x":97.1963,"position_y":-310.891,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523524,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87822,"id":175124,"map":229,"orientation":2.67035,"phaseMask":1,"position_x":97.3405,"position_y":-313.43,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87823,"id":175124,"map":229,"orientation":-1.01229,"phaseMask":1,"position_x":98.8559,"position_y":-313.049,"position_z":91.4455,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87824,"id":175194,"map":229,"orientation":0,"phaseMask":1,"position_x":192.74,"position_y":-258.394,"position_z":76.8603,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87825,"id":175195,"map":229,"orientation":0.785397,"phaseMask":1,"position_x":124.779,"position_y":-298.037,"position_z":70.8526,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87826,"id":175196,"map":229,"orientation":-1.5708,"phaseMask":1,"position_x":228.803,"position_y":-301.542,"position_z":76.8812,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87827,"id":175197,"map":229,"orientation":2.35619,"phaseMask":1,"position_x":125.358,"position_y":-340.465,"position_z":70.8752,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87828,"id":175198,"map":229,"orientation":-2.35619,"phaseMask":1,"position_x":215.157,"position_y":-334.733,"position_z":76.8124,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87829,"id":175199,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":155.334,"position_y":-353.045,"position_z":70.8337,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87830,"id":175200,"map":229,"orientation":0,"phaseMask":1,"position_x":155.321,"position_y":-286.074,"position_z":70.8763,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87831,"id":175266,"map":229,"orientation":0,"phaseMask":1,"position_x":144.375,"position_y":-240.826,"position_z":91.4713,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87832,"id":175267,"map":229,"orientation":0,"phaseMask":1,"position_x":126.354,"position_y":-240.77,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87833,"id":175268,"map":229,"orientation":0,"phaseMask":1,"position_x":162.466,"position_y":-240.765,"position_z":91.4688,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87834,"id":175269,"map":229,"orientation":0,"phaseMask":1,"position_x":126.295,"position_y":-258.732,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87835,"id":175270,"map":229,"orientation":0,"phaseMask":1,"position_x":162.443,"position_y":-258.904,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87836,"id":175271,"map":229,"orientation":0,"phaseMask":1,"position_x":126.402,"position_y":-276.79,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87837,"id":175272,"map":229,"orientation":0,"phaseMask":1,"position_x":162.401,"position_y":-276.824,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87838,"id":175706,"map":229,"orientation":1.58825,"phaseMask":1,"position_x":144.445,"position_y":-280.941,"position_z":91.5476,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87839,"id":175244,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":216.443,"position_y":-286.135,"position_z":76.9406,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87840,"id":175187,"map":229,"orientation":0,"phaseMask":1,"position_x":144.37,"position_y":-299.198,"position_z":91.4701,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87841,"id":175153,"map":229,"orientation":0,"phaseMask":1,"position_x":113.751,"position_y":-258.945,"position_z":91.5603,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87842,"id":175705,"map":229,"orientation":0,"phaseMask":1,"position_x":175.127,"position_y":-258.945,"position_z":91.5603,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87843,"id":175185,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":194.235,"position_y":-420.225,"position_z":110.761,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87844,"id":175186,"map":229,"orientation":-1.5708,"phaseMask":1,"position_x":92.9595,"position_y":-435.59,"position_z":110.954,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87845,"id":164726,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":108.036,"position_y":-420.331,"position_z":110.954,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87846,"id":175382,"map":229,"orientation":-0.0349063,"phaseMask":1,"position_x":67.1283,"position_y":-297.421,"position_z":91.4255,"rotation0":0,"rotation1":0,"rotation2":-0.0174523,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87847,"id":175385,"map":229,"orientation":0.0698117,"phaseMask":1,"position_x":65.4179,"position_y":-280.416,"position_z":94.0465,"rotation0":0,"rotation1":0,"rotation2":0.0348988,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87848,"id":175528,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":100.257,"position_y":-313.14,"position_z":66.5453,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87849,"id":175529,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":100.257,"position_y":-324.88,"position_z":66.5453,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87850,"id":175530,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":110.215,"position_y":-324.88,"position_z":68.0355,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87851,"id":175531,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":110.215,"position_y":-313.14,"position_z":68.0355,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87852,"id":175532,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":120.462,"position_y":-324.88,"position_z":73.5331,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87853,"id":175533,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":120.462,"position_y":-313.14,"position_z":73.5331,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87854,"id":175946,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":45.1933,"position_y":-259.712,"position_z":106.533,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87855,"id":175947,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":45.1933,"position_y":-312.52,"position_z":106.533,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87856,"id":175970,"map":229,"orientation":-1.64933,"phaseMask":1,"position_x":147.228,"position_y":-240.436,"position_z":112.205,"rotation0":0,"rotation1":0,"rotation2":-0.73432,"rotation3":0.678803,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87857,"id":176447,"map":229,"orientation":3.14444,"phaseMask":1,"position_x":35.2499,"position_y":-505.634,"position_z":110.914,"rotation0":0.00822973,"rotation1":-0.0190172,"rotation2":-0.999784,"rotation3":0.00126859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87858,"id":176448,"map":229,"orientation":1.57142,"phaseMask":1,"position_x":31.283,"position_y":-505.634,"position_z":110.914,"rotation0":0.00762796,"rotation1":0.0192661,"rotation2":0.707066,"rotation3":0.706844,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87859,"id":176449,"map":229,"orientation":6.02201,"phaseMask":1,"position_x":27.4453,"position_y":-505.634,"position_z":110.914,"rotation0":0.0199299,"rotation1":0.00567627,"rotation2":-0.130342,"rotation3":0.991252,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87860,"id":176450,"map":229,"orientation":4.71302,"phaseMask":1,"position_x":21.5668,"position_y":-506.581,"position_z":110.914,"rotation0":0.0192666,"rotation1":-0.00762749,"rotation2":-0.706843,"rotation3":0.707067,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87861,"id":176451,"map":229,"orientation":3.14444,"phaseMask":1,"position_x":18.0824,"position_y":-505.634,"position_z":110.914,"rotation0":0.00822973,"rotation1":-0.0190172,"rotation2":-0.999784,"rotation3":0.00126859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87862,"id":176452,"map":229,"orientation":3.92762,"phaseMask":1,"position_x":24.542,"position_y":-504.736,"position_z":110.914,"rotation0":0.0148807,"rotation1":-0.0144205,"rotation2":-0.92362,"rotation3":0.382748,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87863,"id":136950,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":72.8373,"position_y":-265.63,"position_z":60.7365,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87864,"id":136952,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":69.9731,"position_y":-329.868,"position_z":55.8721,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87865,"id":136955,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":56.3641,"position_y":-306.158,"position_z":54.0157,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87866,"id":176459,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":68.6479,"position_y":-270.903,"position_z":60.7375,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87867,"id":176460,"map":229,"orientation":3.12412,"phaseMask":1,"position_x":70.5435,"position_y":-257.169,"position_z":60.7401,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87868,"id":176461,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":69.3254,"position_y":-265.102,"position_z":60.6044,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87869,"id":176462,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":90.4803,"position_y":-283.217,"position_z":60.7002,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87870,"id":176463,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":91.6333,"position_y":-262.053,"position_z":60.7002,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87871,"id":136922,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":88.2152,"position_y":-415.1,"position_z":110.957,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87872,"id":136923,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":87.4498,"position_y":-468.454,"position_z":116.887,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87873,"id":136925,"map":229,"orientation":1.74533,"phaseMask":1,"position_x":40.7229,"position_y":-586.71,"position_z":30.6817,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87874,"id":136926,"map":229,"orientation":1.74533,"phaseMask":1,"position_x":43.3149,"position_y":-572.476,"position_z":30.6817,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87875,"id":136927,"map":229,"orientation":1.74533,"phaseMask":1,"position_x":4.75705,"position_y":-567.073,"position_z":29.2222,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87876,"id":136928,"map":229,"orientation":1.74533,"phaseMask":1,"position_x":8.39204,"position_y":-583.677,"position_z":29.2222,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87877,"id":136929,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":152.587,"position_y":-396.408,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87878,"id":136930,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":147.161,"position_y":-389.954,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":87879,"id":136931,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":149.676,"position_y":-386.148,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87880,"id":136932,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":157.778,"position_y":-389.954,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87881,"id":136933,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":150.609,"position_y":-396.408,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87882,"id":136934,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":155.816,"position_y":-390.035,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87883,"id":136935,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":145.176,"position_y":-390.035,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":87884,"id":136936,"map":229,"orientation":4.71239,"phaseMask":1,"position_x":153.36,"position_y":-386.169,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":87885,"id":136937,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":149.569,"position_y":-454.687,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":87886,"id":136938,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":153.253,"position_y":-454.707,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87887,"id":136939,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":157.753,"position_y":-450.158,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87888,"id":136940,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":155.768,"position_y":-450.239,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87889,"id":136941,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":152.32,"position_y":-444.305,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87890,"id":136942,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":150.342,"position_y":-444.305,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87891,"id":136943,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":147.113,"position_y":-450.158,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":87892,"id":136944,"map":229,"orientation":1.5708,"phaseMask":1,"position_x":145.151,"position_y":-450.239,"position_z":121.964,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87893,"id":136945,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-174.134,"position_y":-342.773,"position_z":64.3939,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87894,"id":136946,"map":229,"orientation":4.67748,"phaseMask":1,"position_x":-172.352,"position_y":-462.842,"position_z":87.3983,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87895,"id":136947,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":16.9937,"position_y":-253.821,"position_z":65.4498,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87896,"id":136948,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":8.17041,"position_y":-268.98,"position_z":65.4498,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87897,"id":136949,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":51.2451,"position_y":-274.133,"position_z":65.4498,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87898,"id":136951,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":68.8802,"position_y":-283.794,"position_z":60.7365,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87899,"id":136954,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":16.1674,"position_y":-280.865,"position_z":9.61726,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87900,"id":136957,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":117.454,"position_y":-254.291,"position_z":91.5711,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87901,"id":136959,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":125.656,"position_y":-280.808,"position_z":91.5711,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87902,"id":136961,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":46.4689,"position_y":-309.649,"position_z":91.5711,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":87903,"id":136962,"map":229,"orientation":4.81711,"phaseMask":1,"position_x":106.177,"position_y":-265.953,"position_z":91.5711,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87904,"id":136963,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":107.69,"position_y":-253.095,"position_z":91.5711,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87905,"id":136964,"map":229,"orientation":2.72271,"phaseMask":1,"position_x":82.5879,"position_y":-364.586,"position_z":116.859,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87906,"id":153464,"map":229,"orientation":1.97222,"phaseMask":1,"position_x":-36.1176,"position_y":-583.828,"position_z":-18.8201,"rotation0":0,"rotation1":0,"rotation2":0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87907,"id":153469,"map":229,"orientation":-3.08918,"phaseMask":1,"position_x":-73.9985,"position_y":-453.335,"position_z":-18.935,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0262033,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87908,"id":153469,"map":229,"orientation":1.91986,"phaseMask":1,"position_x":-84.2677,"position_y":-350.104,"position_z":70.9524,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87909,"id":153469,"map":229,"orientation":2.63544,"phaseMask":1,"position_x":86.8551,"position_y":-587.501,"position_z":30.6085,"rotation0":0,"rotation1":0,"rotation2":0.968147,"rotation3":0.250383,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87910,"id":164725,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":126.879,"position_y":-319.109,"position_z":70.935,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87911,"id":175334,"map":229,"orientation":-1.53589,"phaseMask":1,"position_x":33.7166,"position_y":-466.067,"position_z":-18.4651,"rotation0":0,"rotation1":0,"rotation2":-0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87913,"id":175588,"map":229,"orientation":-2.426,"phaseMask":1,"position_x":-139.523,"position_y":-525.879,"position_z":6.36398,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.350211,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87914,"id":175606,"map":229,"orientation":-0.436332,"phaseMask":1,"position_x":-100.23,"position_y":-529.537,"position_z":-5.77381,"rotation0":0,"rotation1":0,"rotation2":-0.216439,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87915,"id":175606,"map":229,"orientation":2.11185,"phaseMask":1,"position_x":-100.325,"position_y":-523.847,"position_z":10.7029,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87916,"id":175606,"map":229,"orientation":-0.0349063,"phaseMask":1,"position_x":-101.886,"position_y":-521.985,"position_z":-7.84199,"rotation0":0,"rotation1":0,"rotation2":-0.0174523,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87917,"id":175606,"map":229,"orientation":2.47837,"phaseMask":1,"position_x":-102.465,"position_y":-575.651,"position_z":9.90089,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87918,"id":175606,"map":229,"orientation":2.18166,"phaseMask":1,"position_x":-112.21,"position_y":-569.506,"position_z":10.1992,"rotation0":0,"rotation1":0,"rotation2":0.88701,"rotation3":0.461749,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87919,"id":175606,"map":229,"orientation":-0.296705,"phaseMask":1,"position_x":-125.229,"position_y":-576.664,"position_z":13.7726,"rotation0":0,"rotation1":0,"rotation2":-0.147809,"rotation3":0.989016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87920,"id":175606,"map":229,"orientation":3.10665,"phaseMask":1,"position_x":-126.746,"position_y":-514.164,"position_z":-12.147,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174704,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87921,"id":175606,"map":229,"orientation":0.977383,"phaseMask":1,"position_x":-129.514,"position_y":-441.7,"position_z":24.4328,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87922,"id":175606,"map":229,"orientation":-1.13446,"phaseMask":1,"position_x":-131.57,"position_y":-439.602,"position_z":22.8934,"rotation0":0,"rotation1":0,"rotation2":-0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87923,"id":175606,"map":229,"orientation":-2.28638,"phaseMask":1,"position_x":-131.805,"position_y":-526.784,"position_z":6.55651,"rotation0":0,"rotation1":0,"rotation2":-0.909961,"rotation3":0.414694,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87924,"id":175606,"map":229,"orientation":-2.82743,"phaseMask":1,"position_x":-132.261,"position_y":-474.848,"position_z":9.82244,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87925,"id":175606,"map":229,"orientation":-1.79769,"phaseMask":1,"position_x":-132.404,"position_y":-514.961,"position_z":-15.9374,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622514,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87926,"id":175606,"map":229,"orientation":1.76278,"phaseMask":1,"position_x":-138.894,"position_y":-439.497,"position_z":24.8088,"rotation0":0,"rotation1":0,"rotation2":0.771624,"rotation3":0.636079,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87927,"id":175606,"map":229,"orientation":-2.74016,"phaseMask":1,"position_x":-139.153,"position_y":-434.738,"position_z":23.1123,"rotation0":0,"rotation1":0,"rotation2":-0.979924,"rotation3":0.199371,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87928,"id":175606,"map":229,"orientation":0.331611,"phaseMask":1,"position_x":-144.505,"position_y":-441.603,"position_z":23.1016,"rotation0":0,"rotation1":0,"rotation2":0.165047,"rotation3":0.986286,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87929,"id":175606,"map":229,"orientation":-0.802851,"phaseMask":1,"position_x":-146.907,"position_y":-441.463,"position_z":22.4744,"rotation0":0,"rotation1":0,"rotation2":-0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87930,"id":175606,"map":229,"orientation":1.32645,"phaseMask":1,"position_x":-147.881,"position_y":-448.549,"position_z":20.0911,"rotation0":0,"rotation1":0,"rotation2":0.615661,"rotation3":0.788011,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87931,"id":175606,"map":229,"orientation":1.76278,"phaseMask":1,"position_x":-150.104,"position_y":-470.008,"position_z":16.2278,"rotation0":0,"rotation1":0,"rotation2":0.771624,"rotation3":0.636079,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87932,"id":175606,"map":229,"orientation":-0.95993,"phaseMask":1,"position_x":-153.788,"position_y":-515.227,"position_z":-15.9504,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87933,"id":175606,"map":229,"orientation":-2.05949,"phaseMask":1,"position_x":-154.378,"position_y":-552.234,"position_z":9.91885,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87934,"id":175606,"map":229,"orientation":2.04204,"phaseMask":1,"position_x":-154.592,"position_y":-525.219,"position_z":8.16182,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87935,"id":175606,"map":229,"orientation":-0.104719,"phaseMask":1,"position_x":-154.77,"position_y":-541.317,"position_z":9.02217,"rotation0":0,"rotation1":0,"rotation2":-0.0523356,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87936,"id":175606,"map":229,"orientation":2.47837,"phaseMask":1,"position_x":-154.889,"position_y":-570.339,"position_z":10.0172,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87937,"id":175607,"map":229,"orientation":-2.26893,"phaseMask":1,"position_x":20.4895,"position_y":-438.857,"position_z":-18.7827,"rotation0":0,"rotation1":0,"rotation2":-0.906308,"rotation3":0.422617,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87938,"id":175608,"map":229,"orientation":1.43117,"phaseMask":1,"position_x":23.8203,"position_y":-440.806,"position_z":-18.7587,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87939,"id":175609,"map":229,"orientation":1.0821,"phaseMask":1,"position_x":20.9914,"position_y":-443.119,"position_z":-18.9183,"rotation0":0,"rotation1":0,"rotation2":0.515036,"rotation3":0.857168,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87940,"id":175609,"map":229,"orientation":2.11185,"phaseMask":1,"position_x":23.7352,"position_y":-445.173,"position_z":-18.935,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87941,"id":175609,"map":229,"orientation":-2.75761,"phaseMask":1,"position_x":25.9651,"position_y":-443.545,"position_z":-18.9203,"rotation0":0,"rotation1":0,"rotation2":-0.981626,"rotation3":0.190814,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87942,"id":175886,"map":229,"orientation":-0.593412,"phaseMask":1,"position_x":-34.5386,"position_y":-589.635,"position_z":30.9964,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87943,"id":175886,"map":229,"orientation":1.62316,"phaseMask":1,"position_x":-34.7324,"position_y":-589.615,"position_z":30.9339,"rotation0":0,"rotation1":0,"rotation2":0.725376,"rotation3":0.688353,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87944,"id":175886,"map":229,"orientation":-1.97222,"phaseMask":1,"position_x":-35.6387,"position_y":-589.632,"position_z":30.9825,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87945,"id":175886,"map":229,"orientation":1.09956,"phaseMask":1,"position_x":-36.2977,"position_y":-589.617,"position_z":31.0103,"rotation0":0,"rotation1":0,"rotation2":0.5225,"rotation3":0.852639,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87946,"id":175886,"map":229,"orientation":-3.08918,"phaseMask":1,"position_x":-37.7856,"position_y":-589.639,"position_z":30.9964,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0262033,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87947,"id":175949,"map":229,"orientation":-0.0174525,"phaseMask":1,"position_x":-128.234,"position_y":-482.381,"position_z":25.4535,"rotation0":0,"rotation1":0,"rotation2":-0.00872614,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87948,"id":175950,"map":229,"orientation":-1.55334,"phaseMask":1,"position_x":-11.1345,"position_y":-466.205,"position_z":-16.8553,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87949,"id":176089,"map":229,"orientation":2.51327,"phaseMask":1,"position_x":-18.8626,"position_y":-360.394,"position_z":-31.4268,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87950,"id":176090,"map":229,"orientation":-0.349065,"phaseMask":1,"position_x":-19.0726,"position_y":-361.991,"position_z":-31.5237,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87951,"id":176425,"map":229,"orientation":3.14444,"phaseMask":1,"position_x":60.0724,"position_y":-511.967,"position_z":29.2143,"rotation0":0.00822973,"rotation1":-0.0190172,"rotation2":-0.999784,"rotation3":0.00126859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87952,"id":176426,"map":229,"orientation":3.14444,"phaseMask":1,"position_x":56.9335,"position_y":-556.048,"position_z":30.6604,"rotation0":0.00822973,"rotation1":-0.0190172,"rotation2":-0.999784,"rotation3":0.00126859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87953,"id":176427,"map":229,"orientation":3.14169,"phaseMask":1,"position_x":53.1921,"position_y":-461.07,"position_z":24.3897,"rotation0":0.0295649,"rotation1":-0.0015707,"rotation2":-0.999561,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87954,"id":176428,"map":229,"orientation":3.14169,"phaseMask":1,"position_x":-63.2568,"position_y":-581.483,"position_z":29.2934,"rotation0":0.0295649,"rotation1":-0.0015707,"rotation2":-0.999561,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87955,"id":176429,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-37.6863,"position_y":-551.822,"position_z":16.2163,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87956,"id":176430,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-25.3349,"position_y":-478.438,"position_z":17.2504,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87957,"id":176431,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-46.3865,"position_y":-448.61,"position_z":-18.5644,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87958,"id":176432,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-2.64242,"position_y":-579.144,"position_z":-18.7609,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87959,"id":176433,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":26.982,"position_y":-583.365,"position_z":-18.5153,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87960,"id":176434,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":35.6424,"position_y":-550.73,"position_z":-18.411,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87961,"id":176435,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":33.1643,"position_y":-471.047,"position_z":-18.5059,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87962,"id":176436,"map":229,"orientation":3.14444,"phaseMask":1,"position_x":31.9839,"position_y":-495.349,"position_z":-18.8984,"rotation0":0.00822973,"rotation1":-0.0190172,"rotation2":-0.999784,"rotation3":0.00126859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87963,"id":176437,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-39.3852,"position_y":-424.878,"position_z":-18.8471,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87964,"id":176438,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-23.2051,"position_y":-410.609,"position_z":-18.8984,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87965,"id":176439,"map":229,"orientation":4.45059,"phaseMask":1,"position_x":-76.0975,"position_y":-418.801,"position_z":-18.9234,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608763,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87966,"id":176440,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-59.9712,"position_y":-409.641,"position_z":-18.8443,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87967,"id":176441,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-79.5309,"position_y":-453.927,"position_z":-18.8332,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87968,"id":176442,"map":229,"orientation":3.14085,"phaseMask":1,"position_x":-15.4378,"position_y":-368.781,"position_z":49.4936,"rotation0":-0.0333757,"rotation1":-0.0110826,"rotation2":0.999381,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87969,"id":176443,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-121.137,"position_y":-296.445,"position_z":71.0397,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87970,"id":176444,"map":229,"orientation":4.45059,"phaseMask":1,"position_x":-137.264,"position_y":-305.605,"position_z":70.9606,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608763,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47720,"animprogress":255,"areaId":0,"guid":87971,"id":176445,"map":229,"orientation":4.45059,"phaseMask":1,"position_x":-59.1198,"position_y":-339.829,"position_z":70.9606,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608763,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87972,"id":176446,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-87.3357,"position_y":-348.37,"position_z":71.0397,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87973,"id":176454,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":60.5715,"position_y":-562.501,"position_z":30.4811,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87974,"id":176455,"map":229,"orientation":3.14148,"phaseMask":1,"position_x":52.2037,"position_y":-470.448,"position_z":25.1121,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.0000563423,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87975,"id":176456,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-60.6476,"position_y":-584.383,"position_z":29.1115,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50375,"animprogress":255,"areaId":0,"guid":87976,"id":176457,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-115.273,"position_y":-428.518,"position_z":-18.701,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":87977,"id":176458,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-114.982,"position_y":-421.897,"position_z":-18.9179,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99791,"id":175621,"map":229,"orientation":3.14159,"phaseMask":1,"position_x":-14.3501,"position_y":-395.828,"position_z":48.5065,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99901,"id":181046,"map":229,"orientation":0,"phaseMask":1,"position_x":-23.97,"position_y":-451.98,"position_z":-18.64,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99905,"id":181050,"map":229,"orientation":0,"phaseMask":1,"position_x":25.92,"position_y":-537.7,"position_z":110.93,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268876,"id":181052,"map":229,"orientation":0,"phaseMask":1,"position_x":-23.97,"position_y":-451.98,"position_z":-18.64,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/BlackRockSpire":"1983f20190aa7a047fb7e111725ea9a9994ef3b481d3abc4076154161192d1a1","patch/World/maps/BlackRockSpire":"49cdff8464b5b8677e7449e95982a2e3118fc211195152b874bd5c7283ff0cfa"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/blackrock-spire/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["78/78 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"blackrock-depths","title":"Blackrock Depths","mapId":230,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[50,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Blackrock Depths","theme":"Instanced dungeon","summary":"Fight through Blackrock Depths, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Blackrock Depths...","unchartedAreaName":"Uncharted Blackrock Depths","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1295.9718},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/230-blackrockdepths/visual.glb","checksum":"7e4c7c75a898f5000fcb686dcfc6d3c1c4e675dc3dac5f7a8d48e53372b9f364","size":7068884,"triangleCount":248302}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/230-blackrockdepths/collision.glb","checksum":"78fb36852edfa10dbc7405ec3f2f02be825381114014919aa186972b976112e3","size":1657076,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/230-blackrockdepths/navigation.glb","checksum":"5aecda48e63b281d3841d604b7dfc2ae3ff4c45385b0c030fccfeeb48e1c1bda","size":575024,"triangleCount":46606}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-2051.4095,-138.4171,-1286.7939],"max":[-251.4486,-12.1419,-85.6484]},"entrance":{"name":"Blackrock Depths Entrance","footPosition":[-986.2485,-66.1647,-376.0566],"forward":[0.8638313690436978,0,0.5037810693705062],"yaw":1.0428260177743554},"areas":[{"id":"entrance","name":"Blackrock Depths Entrance","center":[-986.2485,-66.1647,-376.0566],"radius":35},{"id":"area-high-interrogator-gerstahn","name":"High Interrogator Gerstahn's Encounter","center":[-839.8775,-68.378,-556.3999],"radius":42},{"id":"area-lord-roccor","name":"Lord Roccor's Encounter","center":[-1144.8415,-81.6658,-677.5459],"radius":42},{"id":"area-houndmaster-grebmar","name":"Houndmaster Grebmar's Encounter","center":[-1136.9905,-82.5615,-584.9169],"radius":42},{"id":"area-pyromancer-loregrain","name":"Pyromancer Loregrain's Encounter","center":[-1059.4875,-41.0931,-654.0789],"radius":42},{"id":"area-lord-incendius","name":"Lord Incendius's Encounter","center":[-1422.8655,-69.9753,-677.2049],"radius":42},{"id":"area-warder-stilgiss","name":"Warder Stilgiss's Encounter","center":[-1352.7065,-48.1828,-752.4269],"radius":42},{"id":"area-fineous-darkvire","name":"Fineous Darkvire's Encounter","center":[-1492.5865,-69.8145,-753.8839],"radius":42},{"id":"area-bael-gar","name":"Bael'Gar's Encounter","center":[-1231.7355,-70.0631,-225.6869],"radius":42},{"id":"area-general-angerforge","name":"General Angerforge's Encounter","center":[-1181.7095,-58.0511,-388.7752],"radius":42},{"id":"area-golem-lord-argelmach","name":"Golem Lord Argelmach's Encounter","center":[-1376.1205,-51.7146,-393.8683],"radius":42},{"id":"area-ambassador-flamelash","name":"Ambassador Flamelash's Encounter","center":[-1539.0695,-59.3789,-649.1659],"radius":42},{"id":"area-magmus","name":"Magmus's Encounter","center":[-1910.0395,-90.0462,-1069.4629],"radius":42},{"id":"area-emperor-dagran-thaurissan","name":"Emperor Dagran Thaurissan's Encounter","center":[-1909.4995,-85.6651,-1241.7939],"radius":42}],"entities":{"entry-28067":{"id":"entry-28067","kind":"mob","name":"Dark Iron Brewer","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-21826-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8895":{"id":"entry-8895","kind":"mob","name":"Anvilrage Officer","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-25292","name":"Holy Light","spellId":25292,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6495,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8753-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8893":{"id":"entry-8893","kind":"mob","name":"Anvilrage Soldier","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14030","name":"Hooked Net","spellId":14030,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7437,"damageMultiplier":1.12},{"id":"spell-27991","name":"Sunder Armor","spellId":27991,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7437,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8757-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8894":{"id":"entry-8894","kind":"mob","name":"Anvilrage Medic","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8812","name":"Heal","spellId":8812,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6572,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-10961","name":"Prayer of Healing","spellId":10961,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6572,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8752-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8910":{"id":"entry-8910","kind":"mob","name":"Blazing Fireguard","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13341","name":"Fire Blast","spellId":13341,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4756,"damageMultiplier":1.12},{"id":"spell-12742","name":"Immolate","spellId":12742,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4756,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-1070-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.849,"markerRadius":1.1707}}},"entry-8892":{"id":"entry-8892","kind":"mob","name":"Anvilrage Footman","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-29560","name":"Kick","spellId":29560,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6536,"damageMultiplier":1.12},{"id":"spell-19644","name":"Strike","spellId":19644,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6536,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8718-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8921":{"id":"entry-8921","kind":"mob","name":"Bloodhound","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13692","name":"Dire Growl","spellId":13692,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7268,"damageMultiplier":1.12},{"id":"spell-13445","name":"Rend","spellId":13445,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7268,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8180-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0361,"markerRadius":0.9595}}},"entry-9016":{"id":"entry-9016","kind":"boss","name":"Bael'Gar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":52,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":7424,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-12162-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0172,"labelHeight":15.6385,"markerRadius":4.5}}},"entry-8912":{"id":"entry-8912","kind":"mob","name":"Twilight's Hammer Torturer","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14032","name":"Shadow Word: Pain","spellId":14032,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4131,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8790-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-8890":{"id":"entry-8890","kind":"mob","name":"Anvilrage Warden","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-24317","name":"Sunder Armor","spellId":24317,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4983,"damageMultiplier":1.12},{"id":"spell-19644","name":"Strike","spellId":19644,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4983,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8758-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8891":{"id":"entry-8891","kind":"mob","name":"Anvilrage Guardsman","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30901","name":"Sunder Armor","spellId":30901,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7487,"damageMultiplier":1.12},{"id":"spell-27581","name":"Disarm","spellId":27581,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7487,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8750-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8909":{"id":"entry-8909","kind":"mob","name":"Fireguard","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15242","name":"Fireball","spellId":15242,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7233,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/39572de3191c78a4573a438b4f299709d7ff1606c17e59844c7165b245fc5993.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9348,"markerRadius":0.878}}},"entry-8889":{"id":"entry-8889","kind":"mob","name":"Anvilrage Overseer","combat":{"level":49,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8754-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8983":{"id":"entry-8983","kind":"boss","name":"Golem Lord Argelmach","title":"Dungeon Boss","hasLoot":true,"combat":{"level":55,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5172,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8759-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0051,"labelHeight":2.1943,"markerRadius":0.65}}},"entry-8906":{"id":"entry-8906","kind":"mob","name":"Ragereaver Golem","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8177-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.5954,"markerRadius":1.9429}}},"entry-8907":{"id":"entry-8907","kind":"mob","name":"Wrath Hammer Construct","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15575","name":"Flame Cannon","spellId":15575,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5377,"damageMultiplier":1.12},{"id":"spell-10966","name":"Uppercut","spellId":10966,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5377,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8178-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":6.7144,"markerRadius":2.3315}}},"entry-8911":{"id":"entry-8911","kind":"mob","name":"Fireguard Destroyer","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-5488-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.8113,"markerRadius":1.4634}}},"entry-8898":{"id":"entry-8898","kind":"mob","name":"Anvilrage Marshal","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17143","name":"Holy Strike","spellId":17143,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5124,"damageMultiplier":1.12},{"id":"spell-10293","name":"Devotion Aura","spellId":10293,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5124,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8751-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8899":{"id":"entry-8899","kind":"mob","name":"Doomforge Dragoon","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15620","name":"Shoot","spellId":15620,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5816,"damageMultiplier":1.12},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5816,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8820-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9033":{"id":"entry-9033","kind":"boss","name":"General Angerforge","title":"Dungeon Boss","hasLoot":true,"combat":{"level":55,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":7441,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8756-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0058,"labelHeight":2.4458,"markerRadius":0.65}}},"entry-8901":{"id":"entry-8901","kind":"mob","name":"Anvilrage Reservist","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8755-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":1.8589,"markerRadius":0.65}}},"entry-8902":{"id":"entry-8902","kind":"mob","name":"Shadowforge Citizen","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15547","name":"Shoot","spellId":15547,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6174,"damageMultiplier":1.12},{"id":"spell-40505","name":"Cleave","spellId":40505,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":6174,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8798-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8900":{"id":"entry-8900","kind":"mob","name":"Doomforge Arcanasmith","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13748","name":"Arcane Bolt","spellId":13748,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6434,"damageMultiplier":1.12},{"id":"spell-13745","name":"Arcane Explosion","spellId":13745,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6434,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8812-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8920":{"id":"entry-8920","kind":"mob","name":"Weapon Technician","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8894-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-9319":{"id":"entry-9319","kind":"boss","name":"Houndmaster Grebmar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":52,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21049","name":"Bloodlust","spellId":21049,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4032,"damageMultiplier":1.35},{"id":"spell-13730","name":"Demoralizing Shout","spellId":13730,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4032,"damageMultiplier":1.35},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4032,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9212-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8905":{"id":"entry-8905","kind":"mob","name":"Warbringer Construct","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8289-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":7.8335,"markerRadius":2.6772}}},"entry-10043":{"id":"entry-10043","kind":"mob","name":"Ribbly's Crony","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15581","name":"Sinister Strike","spellId":15581,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4901,"damageMultiplier":1.12},{"id":"spell-15692","name":"Eviscerate","spellId":15692,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4901,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9233-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0534,"labelHeight":2.7321,"markerRadius":0.6724}}},"entry-9543":{"id":"entry-9543","kind":"mob","name":"Ribbly Screwspigot","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12540","name":"Gouge","spellId":12540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6635,"damageMultiplier":1.12},{"id":"spell-9080","name":"Hamstring","spellId":9080,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8667-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-9554":{"id":"entry-9554","kind":"mob","name":"Hammered Patron","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8681-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-9545":{"id":"entry-9545","kind":"mob","name":"Grim Patron","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8673-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9547":{"id":"entry-9547","kind":"mob","name":"Guzzling Patron","combat":{"level":50,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8678-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8908":{"id":"entry-8908","kind":"mob","name":"Molten War Golem","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-37628","name":"Fel Immolate","spellId":37628,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4704,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8179-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":6.7144,"markerRadius":2.2947}}},"entry-8929":{"id":"entry-8929","kind":"mob","name":"Princess Moira Bronzebeard","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15586","name":"Heal","spellId":15586,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4821,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4821,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8705-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":1.8943,"markerRadius":0.65}}},"entry-9018":{"id":"entry-9018","kind":"boss","name":"High Interrogator Gerstahn","title":"Dungeon Boss","hasLoot":true,"combat":{"level":52,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14033","name":"Mana Burn","spellId":14033,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5328,"damageMultiplier":1.35},{"id":"spell-13704","name":"Psychic Scream","spellId":13704,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5328,"damageMultiplier":1.35},{"id":"spell-14032","name":"Shadow Word: Pain","spellId":14032,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5328,"damageMultiplier":1.35},{"id":"spell-12040","name":"Shadow Shield","spellId":12040,"delivery":"area","target":"self","school":"shadow","animation":"cast","range":0,"cooldownMs":5328,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-12040","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"crocolisk","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8761-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":2.6752,"markerRadius":0.65}}},"entry-9956":{"id":"entry-9956","kind":"mob","name":"Shadowforge Flame Keeper","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4697,"damageMultiplier":1.12},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4697,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9309-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9025":{"id":"entry-9025","kind":"boss","name":"Lord Roccor","title":"Dungeon Boss","hasLoot":true,"combat":{"level":51,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5250,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-5781-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1904,"labelHeight":4.1639,"markerRadius":1.9755}}},"entry-9938":{"id":"entry-9938","kind":"boss","name":"Magmus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":56,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-15593","name":"War Stomp","spellId":15593,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4213,"damageMultiplier":0.82,"radius":11},{"id":"spell-15668","name":"Fiery Burst","spellId":15668,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4213,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-12162-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0172,"labelHeight":15.6385,"markerRadius":4.5}}},"entry-8904":{"id":"entry-8904","kind":"mob","name":"Shadowforge Senator","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15547","name":"Shoot","spellId":15547,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5638,"damageMultiplier":1.12},{"id":"spell-14034","name":"Fireball","spellId":14034,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5638,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8825-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8915":{"id":"entry-8915","kind":"mob","name":"Twilight's Hammer Ambassador","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15096","name":"Flame Shock","spellId":15096,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4486,"damageMultiplier":1.12},{"id":"spell-15499","name":"Frost Shock","spellId":15499,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4486,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8778-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-8903":{"id":"entry-8903","kind":"mob","name":"Anvilrage Captain","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8749-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9019":{"id":"entry-9019","kind":"boss","name":"Emperor Dagran Thaurissan","title":"Dungeon Boss","hasLoot":true,"combat":{"level":56,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15636","name":"Avatar of Flame","spellId":15636,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5602,"damageMultiplier":1.35},{"id":"spell-17492","name":"Hand of Thaurissan","spellId":17492,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5602,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8807-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-9023":{"id":"entry-9023","kind":"mob","name":"Marshal Windsor","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7428480000000004,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8707-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-9022":{"id":"entry-9022","kind":"mob","name":"Dughal Stormwing","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"winged","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9020":{"id":"entry-9020","kind":"mob","name":"Commander Gor'shak","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8703-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-9056":{"id":"entry-9056","kind":"boss","name":"Fineous Darkvire","title":"Dungeon Boss","hasLoot":true,"combat":{"level":53,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13953","name":"Holy Strike","spellId":13953,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4829,"damageMultiplier":1.35},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4829,"damageMultiplier":1.35},{"id":"spell-15493","name":"Holy Light","spellId":15493,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4829,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-11978","name":"Kick","spellId":11978,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4829,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"murloc","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8704-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8916":{"id":"entry-8916","kind":"mob","name":"Arena Spectator","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9069-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-8896":{"id":"entry-8896","kind":"mob","name":"Shadowforge Peasant","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6660","name":"Shoot","spellId":6660,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5524,"damageMultiplier":1.12},{"id":"spell-9053","name":"Fireball","spellId":9053,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5524,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8793-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9499":{"id":"entry-9499","kind":"mob","name":"Plugger Spazzring","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4493,"damageMultiplier":1.12},{"id":"spell-12742","name":"Immolate","spellId":12742,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4493,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8652-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-8897":{"id":"entry-8897","kind":"mob","name":"Doomforge Craftsman","combat":{"level":51,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15619","name":"Throw Wrench","spellId":15619,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5545,"damageMultiplier":1.12},{"id":"spell-13951","name":"Rebuild","spellId":13951,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5545,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8803-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9017":{"id":"entry-9017","kind":"boss","name":"Lord Incendius","title":"Dungeon Boss","hasLoot":true,"combat":{"level":53,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6043,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-1204-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.7735,"markerRadius":1.7561}}},"entry-8913":{"id":"entry-8913","kind":"mob","name":"Twilight Emissary","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15288","name":"Fury of Ragnaros","spellId":15288,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5728,"damageMultiplier":1.12},{"id":"spell-15043","name":"Frostbolt","spellId":15043,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5728,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8772-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-8922":{"id":"entry-8922","kind":"mob","name":"Bloodhound Mastiff","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7140","name":"Expose Weakness","spellId":7140,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7391,"damageMultiplier":1.12},{"id":"spell-15608","name":"Ravenous Claw","spellId":15608,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7391,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8181-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.289,"markerRadius":1.1034}}},"entry-8914":{"id":"entry-8914","kind":"mob","name":"Twilight Bodyguard","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13902","name":"Fist of Ragnaros","spellId":13902,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6427,"damageMultiplier":1.12},{"id":"spell-13903","name":"Seal of Sacrifice","spellId":13903,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6427,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9346-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-9024":{"id":"entry-9024","kind":"boss","name":"Pyromancer Loregrain","title":"Dungeon Boss","hasLoot":true,"combat":{"level":52,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15616","name":"Flame Shock","spellId":15616,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4920,"damageMultiplier":1.35},{"id":"spell-15095","name":"Molten Blast","spellId":15095,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4920,"damageMultiplier":1.35},{"id":"spell-15041","name":"Fire Ward","spellId":15041,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4920,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.34,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8762-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0534,"labelHeight":2.7321,"markerRadius":0.6724}}},"entry-9041":{"id":"entry-9041","kind":"boss","name":"Warder Stilgiss","title":"Dungeon Boss","hasLoot":true,"combat":{"level":54,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12674","name":"Frost Nova","spellId":12674,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4513,"damageMultiplier":0.82,"radius":11},{"id":"spell-12675","name":"Frostbolt","spellId":12675,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4513,"damageMultiplier":1.35},{"id":"spell-12556","name":"Frost Armor","spellId":12556,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4513,"damageMultiplier":1.35},{"id":"spell-15044","name":"Frost Ward","spellId":15044,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4513,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.39,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9089-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0056,"labelHeight":2.3619,"markerRadius":0.65}}},"entry-9042":{"id":"entry-9042","kind":"mob","name":"Verek","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15042","name":"Curse of Blood","spellId":15042,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7134,"damageMultiplier":1.12},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7134,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-9019-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.542,"markerRadius":1.2473}}},"entry-9156":{"id":"entry-9156","kind":"boss","name":"Ambassador Flamelash","title":"Dungeon Boss","hasLoot":true,"combat":{"level":55,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6043,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"plant","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8329-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.1453,"labelHeight":6.0896,"markerRadius":0.773}}},"entry-12944":{"id":"entry-12944","kind":"mob","name":"Lokhtos Darkbargainer","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-14666-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9541":{"id":"entry-9541","kind":"mob","name":"Blackbreath Crony","combat":{"level":53,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15583","name":"Rupture","spellId":15583,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6175,"damageMultiplier":1.12},{"id":"spell-15581","name":"Sinister Strike","spellId":15581,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6175,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8661-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-9537":{"id":"entry-9537","kind":"mob","name":"Hurley Blackbreath","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8658-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-8923":{"id":"entry-8923","kind":"mob","name":"Panzor the Invincible","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blackrock-depths/creatures/display-8270-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":6.7144,"markerRadius":2.3315}}}},"staticSpawns":[{"id":"creature-12482","entityId":"entry-28067","position":[-1420.5905,-42.0001,-585.0479],"yaw":-0.445,"spawnMask":1},{"id":"creature-45845","entityId":"entry-8895","position":[-1162.0835,-71.7799,-379.6485],"yaw":-0.122173,"spawnMask":1},{"id":"creature-45846","entityId":"entry-8893","position":[-1165.9775,-71.9047,-374.9969],"yaw":-3.22886,"spawnMask":1},{"id":"creature-45847","entityId":"entry-8893","position":[-1165.9715,-71.7443,-378.6681],"yaw":-3.19395,"spawnMask":1},{"id":"creature-45848","entityId":"entry-8894","position":[-1165.9025,-71.6136,-381.6861],"yaw":-3.21141,"spawnMask":1},{"id":"creature-45849","entityId":"entry-8894","position":[-1165.7715,-71.5008,-384.3215],"yaw":-3.22886,"spawnMask":1},{"id":"creature-45850","entityId":"entry-8910","position":[-1470.2955,-69.7534,-715.7699],"yaw":-3.9968,"spawnMask":1},{"id":"creature-45851","entityId":"entry-8910","position":[-1457.6305,-69.7534,-730.7639],"yaw":-0.890118,"spawnMask":1},{"id":"creature-45852","entityId":"entry-8895","position":[-1155.3085,-71.9145,-436.5936],"yaw":-0.523599,"spawnMask":1},{"id":"creature-45853","entityId":"entry-8893","position":[-1161.4915,-71.3178,-439.7353],"yaw":-3.59538,"spawnMask":1},{"id":"creature-45854","entityId":"entry-8893","position":[-1159.8835,-71.3179,-436.3012],"yaw":-3.61283,"spawnMask":1},{"id":"creature-45855","entityId":"entry-8894","position":[-1158.2475,-71.3575,-433.0015],"yaw":-3.63029,"spawnMask":1},{"id":"creature-45856","entityId":"entry-8894","position":[-1157.0125,-71.3182,-429.7427],"yaw":-3.64774,"spawnMask":1},{"id":"creature-45857","entityId":"entry-8895","position":[-1252.4335,-70.0105,-544.7279],"yaw":-1.92786,"spawnMask":1},{"id":"creature-45858","entityId":"entry-8893","position":[-1249.7485,-69.9621,-542.8059],"yaw":-6.0012,"spawnMask":1},{"id":"creature-45859","entityId":"entry-8894","position":[-1253.5175,-69.99,-541.7339],"yaw":-3.86779,"spawnMask":1},{"id":"creature-45861","entityId":"entry-8892","position":[-1249.7485,-69.9621,-542.8059],"yaw":-6.0012,"spawnMask":1},{"id":"creature-45862","entityId":"entry-8895","position":[-1148.7265,-71.8599,-323.8954],"yaw":-2.67035,"spawnMask":1},{"id":"creature-45863","entityId":"entry-8893","position":[-1139.1815,-71.8616,-327.135],"yaw":-6.03884,"spawnMask":1},{"id":"creature-45864","entityId":"entry-8893","position":[-1140.9625,-71.8615,-322.5378],"yaw":-5.93412,"spawnMask":1},{"id":"creature-45865","entityId":"entry-8893","position":[-1142.7935,-71.8614,-318.1214],"yaw":-5.84685,"spawnMask":1},{"id":"creature-45866","entityId":"entry-8894","position":[-1144.1445,-71.8616,-313.3388],"yaw":-5.75959,"spawnMask":1},{"id":"creature-45867","entityId":"entry-8921","position":[-1178.3785,-71.9446,-265.3039],"yaw":-4.78166,"spawnMask":1},{"id":"creature-45869","entityId":"entry-8895","position":[-1126.6355,-70.8211,-383.7292],"yaw":-0.244346,"spawnMask":1},{"id":"creature-45870","entityId":"entry-8893","position":[-1130.2165,-71.2464,-385.6636],"yaw":-3.28122,"spawnMask":1},{"id":"creature-45871","entityId":"entry-8894","position":[-1129.7885,-71.2266,-380.6126],"yaw":-3.28122,"spawnMask":1},{"id":"creature-45872","entityId":"entry-8893","position":[-1134.9475,-71.7495,-384.8043],"yaw":-3.28122,"spawnMask":1},{"id":"creature-45874","entityId":"entry-8892","position":[-1134.1465,-71.6887,-380.0585],"yaw":-3.28122,"spawnMask":1},{"id":"creature-45875","entityId":"entry-8895","position":[-1194.3825,-71.2245,-462.5766],"yaw":-2.4278,"spawnMask":1},{"id":"creature-45876","entityId":"entry-8893","position":[-1195.8375,-71.1386,-466.483],"yaw":-2.42779,"spawnMask":1},{"id":"creature-45877","entityId":"entry-8894","position":[-1198.4565,-71.1498,-463.4595],"yaw":-2.42779,"spawnMask":1},{"id":"creature-45878","entityId":"entry-8893","position":[-1194.5275,-71.1329,-467.9948],"yaw":-2.42779,"spawnMask":1},{"id":"creature-45879","entityId":"entry-8892","position":[-1199.7655,-71.1554,-461.9477],"yaw":-2.42779,"spawnMask":1},{"id":"creature-45880","entityId":"entry-8895","position":[-1171.0795,-71.8607,-285.7869],"yaw":-4.99164,"spawnMask":1},{"id":"creature-45881","entityId":"entry-8893","position":[-1169.4185,-71.8611,-282.3459],"yaw":-4.99164,"spawnMask":1},{"id":"creature-45882","entityId":"entry-8894","position":[-1167.5645,-71.861,-285.8629],"yaw":-4.99164,"spawnMask":1},{"id":"creature-45883","entityId":"entry-8893","position":[-1166.2815,-71.8615,-280.3849],"yaw":-4.99164,"spawnMask":1},{"id":"creature-45884","entityId":"entry-8892","position":[-1164.1645,-71.8614,-284.5789],"yaw":-4.99164,"spawnMask":1},{"id":"creature-45885","entityId":"entry-9016","position":[-1231.7355,-70.0631,-225.6869],"yaw":-4.20624,"spawnMask":1},{"id":"creature-45886","entityId":"entry-8912","position":[-888.2525,-65.1237,-464.4967],"yaw":-0.122173,"spawnMask":1},{"id":"creature-45887","entityId":"entry-8890","position":[-893.9385,-64.821,-464.3403],"yaw":-3.05433,"spawnMask":1},{"id":"creature-45888","entityId":"entry-8891","position":[-913.5055,-62.219,-492.4018],"yaw":-3.00197,"spawnMask":1},{"id":"creature-45889","entityId":"entry-8891","position":[-942.6585,-61.3576,-572.4219],"yaw":-3.94444,"spawnMask":1},{"id":"creature-45890","entityId":"entry-8891","position":[-938.4035,-61.9356,-454.5501],"yaw":-3.75246,"spawnMask":1},{"id":"creature-45891","entityId":"entry-8891","position":[-904.6235,-62.9408,-514.9919],"yaw":-4.24115,"spawnMask":1},{"id":"creature-45892","entityId":"entry-8891","position":[-877.5165,-62.9408,-522.5839],"yaw":-6.24828,"spawnMask":1},{"id":"creature-45893","entityId":"entry-8921","position":[-916.2885,-62.9408,-563.8879],"yaw":-1.06465,"spawnMask":1},{"id":"creature-45894","entityId":"entry-8890","position":[-909.8615,-62.5642,-489.8303],"yaw":-5.67232,"spawnMask":1},{"id":"creature-45895","entityId":"entry-8891","position":[-934.2575,-61.9212,-456.6657],"yaw":0,"spawnMask":1},{"id":"creature-45896","entityId":"entry-8921","position":[-1041.5765,-58.3342,-587.0129],"yaw":-5.01771,"spawnMask":1},{"id":"creature-45898","entityId":"entry-8921","position":[-1042.7875,-57.8072,-590.8559],"yaw":-5.01773,"spawnMask":1},{"id":"creature-45899","entityId":"entry-8892","position":[-1179.1185,-73.193,-598.6389],"yaw":-4.53786,"spawnMask":1},{"id":"creature-45900","entityId":"entry-8892","position":[-1176.8725,-81.3944,-637.5279],"yaw":-5.91667,"spawnMask":1},{"id":"creature-45901","entityId":"entry-8921","position":[-1121.8635,-67.3352,-544.7799],"yaw":-3.64774,"spawnMask":1},{"id":"creature-45902","entityId":"entry-8921","position":[-1126.1835,-67.5771,-546.3219],"yaw":-1.55334,"spawnMask":1},{"id":"creature-45903","entityId":"entry-8891","position":[-1184.4625,-81.6167,-643.8909],"yaw":-2.05949,"spawnMask":1},{"id":"creature-45904","entityId":"entry-8892","position":[-1077.6635,-60.2379,-533.8759],"yaw":-2.93215,"spawnMask":1},{"id":"creature-45905","entityId":"entry-8892","position":[-1079.3105,-60.46,-524.3009],"yaw":-2.96706,"spawnMask":1},{"id":"creature-45906","entityId":"entry-8909","position":[-1190.4595,-71.6887,-570.6659],"yaw":-0.15708,"spawnMask":1},{"id":"creature-45907","entityId":"entry-8909","position":[-1187.0655,-71.0555,-566.9279],"yaw":-1.36136,"spawnMask":1},{"id":"creature-45908","entityId":"entry-8891","position":[-1130.5165,-81.0691,-677.3499],"yaw":-0.715585,"spawnMask":1},{"id":"creature-45909","entityId":"entry-8891","position":[-1159.9295,-81.7521,-685.4009],"yaw":-3.83972,"spawnMask":1},{"id":"creature-45910","entityId":"entry-8892","position":[-1122.3105,-66.819,-549.3379],"yaw":-2.89725,"spawnMask":1},{"id":"creature-45911","entityId":"entry-8889","position":[-1011.5605,-60.7709,-526.1389],"yaw":-0.226893,"spawnMask":1},{"id":"creature-45912","entityId":"entry-8890","position":[-1005.7835,-60.5998,-504.1835],"yaw":-1.98968,"spawnMask":1},{"id":"creature-45913","entityId":"entry-8890","position":[-1017.7625,-60.0881,-523.7759],"yaw":-3.59538,"spawnMask":1},{"id":"creature-45914","entityId":"entry-8890","position":[-1051.3735,-60.6271,-496.789],"yaw":-3.05433,"spawnMask":1},{"id":"creature-45915","entityId":"entry-8921","position":[-1031.2935,-61.0963,-486.1825],"yaw":-4.5521,"spawnMask":1},{"id":"creature-45916","entityId":"entry-8921","position":[-1033.8815,-60.861,-484.88],"yaw":-4.42372,"spawnMask":1},{"id":"creature-45917","entityId":"entry-8921","position":[-1032.3955,-61.1137,-482.2523],"yaw":-4.40181,"spawnMask":1},{"id":"creature-45923","entityId":"entry-8890","position":[-1044.8235,-60.6334,-496.8583],"yaw":-0.069813,"spawnMask":1},{"id":"creature-45924","entityId":"entry-8921","position":[-1010.3195,-60.9849,-518.8039],"yaw":-0.712075,"spawnMask":1},{"id":"creature-45925","entityId":"entry-8921","position":[-1009.7155,-60.8078,-524.1089],"yaw":-1.59768,"spawnMask":1},{"id":"creature-45926","entityId":"entry-8921","position":[-1009.7885,-61.0299,-521.6219],"yaw":-1.34979,"spawnMask":1},{"id":"creature-45927","entityId":"entry-8889","position":[-1008.4385,-65.4847,-430.6775],"yaw":-1.93731,"spawnMask":1},{"id":"creature-45928","entityId":"entry-8889","position":[-999.7795,-65.9183,-433.1501],"yaw":-1.78024,"spawnMask":1},{"id":"creature-45929","entityId":"entry-8890","position":[-1038.1245,-60.8989,-527.8089],"yaw":-5.13127,"spawnMask":1},{"id":"creature-45930","entityId":"entry-8890","position":[-1028.8875,-60.8417,-467.6078],"yaw":-3.05433,"spawnMask":1},{"id":"creature-45931","entityId":"entry-8983","position":[-1376.1205,-51.7146,-393.8683],"yaw":-3.14159,"spawnMask":1},{"id":"creature-45932","entityId":"entry-8906","position":[-1381.1615,-51.717,-396.8825],"yaw":-2.28638,"spawnMask":1},{"id":"creature-45933","entityId":"entry-8907","position":[-1386.0205,-51.7059,-392.2779],"yaw":-2.53073,"spawnMask":1},{"id":"creature-45934","entityId":"entry-8892","position":[-1143.3665,-58.0504,-449.5512],"yaw":-3.61283,"spawnMask":1},{"id":"creature-45935","entityId":"entry-8892","position":[-1156.5045,-44.2255,-533.1039],"yaw":-2.70526,"spawnMask":1},{"id":"creature-45936","entityId":"entry-8891","position":[-1156.2605,-58.0512,-465.1412],"yaw":-0.715585,"spawnMask":1},{"id":"creature-45937","entityId":"entry-8892","position":[-1217.6635,-44.4217,-540.3859],"yaw":-2.14675,"spawnMask":1},{"id":"creature-45938","entityId":"entry-8891","position":[-1227.2395,-43.9709,-550.6919],"yaw":-5.89921,"spawnMask":1},{"id":"creature-45939","entityId":"entry-8892","position":[-1093.3955,-43.0128,-491.7615],"yaw":-6.23082,"spawnMask":1},{"id":"creature-45940","entityId":"entry-8891","position":[-1087.7955,-43.0128,-494.4117],"yaw":-4.55531,"spawnMask":1},{"id":"creature-45941","entityId":"entry-8891","position":[-1097.7465,-43.0128,-491.913],"yaw":-3.12414,"spawnMask":1},{"id":"creature-45942","entityId":"entry-8891","position":[-1120.0615,-58.0249,-466.2053],"yaw":-6.12611,"spawnMask":1},{"id":"creature-45944","entityId":"entry-8911","position":[-1212.2455,-58.0333,-355.0258],"yaw":-4.72984,"spawnMask":1},{"id":"creature-45945","entityId":"entry-8911","position":[-1241.2675,-43.4586,-376.891],"yaw":-0.418879,"spawnMask":1},{"id":"creature-45946","entityId":"entry-8898","position":[-1247.2415,-43.4599,-373.9119],"yaw":-3.9619,"spawnMask":1},{"id":"creature-45947","entityId":"entry-8898","position":[-1249.1505,-43.0128,-352.9771],"yaw":-1.74533,"spawnMask":1},{"id":"creature-45948","entityId":"entry-8898","position":[-1282.2985,-44.2255,-458.5501],"yaw":-5.3058,"spawnMask":1},{"id":"creature-45949","entityId":"entry-8911","position":[-1217.4515,-43.4589,-356.113],"yaw":-1.01229,"spawnMask":1},{"id":"creature-45950","entityId":"entry-8899","position":[-1221.6025,-43.666,-426.2253],"yaw":-1.71042,"spawnMask":1},{"id":"creature-45951","entityId":"entry-8899","position":[-1221.8085,-43.4593,-352.6377],"yaw":-3.50811,"spawnMask":1},{"id":"creature-45952","entityId":"entry-8898","position":[-1289.7205,-44.2255,-455.7344],"yaw":-5.37561,"spawnMask":1},{"id":"creature-45953","entityId":"entry-8898","position":[-1208.6315,-58.0503,-415.9226],"yaw":-5.41052,"spawnMask":1},{"id":"creature-45954","entityId":"entry-9033","position":[-1181.7095,-58.0511,-388.7752],"yaw":-0.087266,"spawnMask":1},{"id":"creature-45955","entityId":"entry-8901","position":[-1183.5995,-58.0506,-392.546],"yaw":-1.79769,"spawnMask":1},{"id":"creature-45956","entityId":"entry-8901","position":[-1185.8165,-58.05,-390.7251],"yaw":-2.56563,"spawnMask":1},{"id":"creature-45958","entityId":"entry-8901","position":[-1185.6895,-58.05,-387.5454],"yaw":-3.49066,"spawnMask":1},{"id":"creature-45959","entityId":"entry-8901","position":[-1184.2855,-58.0504,-385.9612],"yaw":-4.17134,"spawnMask":1},{"id":"creature-46236","entityId":"entry-8911","position":[-1551.4195,-114.4301,-713.5469],"yaw":-1.51979,"spawnMask":1},{"id":"creature-46245","entityId":"entry-8911","position":[-1691.2595,-103.1871,-725.7879],"yaw":-4.14595,"spawnMask":1},{"id":"creature-46246","entityId":"entry-8911","position":[-1358.3025,-52.1246,-520.9119],"yaw":-1.55334,"spawnMask":1},{"id":"creature-46247","entityId":"entry-8911","position":[-1369.7925,-51.9569,-516.6139],"yaw":-2.18166,"spawnMask":1},{"id":"creature-46248","entityId":"entry-8902","position":[-1460.3845,-47.9314,-699.8419],"yaw":-0.383972,"spawnMask":1},{"id":"creature-46249","entityId":"entry-8902","position":[-1460.8455,-47.9277,-694.6209],"yaw":-5.41052,"spawnMask":1},{"id":"creature-46250","entityId":"entry-8898","position":[-1468.6965,-47.9303,-698.7719],"yaw":-3.05433,"spawnMask":1},{"id":"creature-46251","entityId":"entry-8900","position":[-1465.6785,-47.9277,-695.2209],"yaw":-4.20624,"spawnMask":1},{"id":"creature-46252","entityId":"entry-8900","position":[-1458.3865,-47.9277,-697.3229],"yaw":-6.0912,"spawnMask":1},{"id":"creature-46253","entityId":"entry-8911","position":[-1463.8385,-47.9356,-702.8039],"yaw":-1.55334,"spawnMask":1},{"id":"creature-46254","entityId":"entry-8902","position":[-1465.0825,-48.1891,-657.0449],"yaw":-0.314159,"spawnMask":1},{"id":"creature-46255","entityId":"entry-8902","position":[-1462.9825,-47.9277,-668.6529],"yaw":-2.77507,"spawnMask":1},{"id":"creature-46256","entityId":"entry-8902","position":[-1459.0805,-47.9277,-666.4659],"yaw":-5.23599,"spawnMask":1},{"id":"creature-46258","entityId":"entry-8899","position":[-1456.7045,-47.9277,-670.1749],"yaw":-0.767945,"spawnMask":1},{"id":"creature-46259","entityId":"entry-8899","position":[-1469.7605,-48.3256,-656.6039],"yaw":-2.56563,"spawnMask":1},{"id":"creature-46260","entityId":"entry-8920","position":[-1464.0995,-48.2993,-653.0879],"yaw":-5.74213,"spawnMask":1},{"id":"creature-46261","entityId":"entry-8911","position":[-1348.6225,-52.2633,-486.0524],"yaw":-1.46608,"spawnMask":1},{"id":"creature-46262","entityId":"entry-8911","position":[-1358.9305,-52.2705,-482.915],"yaw":-2.26893,"spawnMask":1},{"id":"creature-46263","entityId":"entry-8911","position":[-1733.7495,-90.8485,-774.5409],"yaw":-0.593412,"spawnMask":1},{"id":"creature-46264","entityId":"entry-8911","position":[-1733.1795,-90.0727,-782.6199],"yaw":-0.715585,"spawnMask":1},{"id":"creature-46265","entityId":"entry-8911","position":[-1740.5095,-90.7846,-781.9729],"yaw":-0.837758,"spawnMask":1},{"id":"creature-46266","entityId":"entry-8911","position":[-1455.5125,-114.1871,-762.5149],"yaw":-2.25605,"spawnMask":1},{"id":"creature-46267","entityId":"entry-8911","position":[-1557.0095,-109.2091,-656.1419],"yaw":-6.25596,"spawnMask":1},{"id":"creature-46268","entityId":"entry-8911","position":[-1378.7005,-113.9981,-653.6019],"yaw":-2.75549,"spawnMask":1},{"id":"creature-46269","entityId":"entry-8921","position":[-1143.2595,-82.4837,-608.0599],"yaw":-0.261799,"spawnMask":1},{"id":"creature-46270","entityId":"entry-8921","position":[-1144.0255,-82.4812,-594.7169],"yaw":-3.52556,"spawnMask":1},{"id":"creature-46271","entityId":"entry-8921","position":[-1141.7495,-82.4818,-583.7209],"yaw":-0.191986,"spawnMask":1},{"id":"creature-46272","entityId":"entry-8921","position":[-1136.2265,-82.4799,-603.4539],"yaw":-1.8326,"spawnMask":1},{"id":"creature-46273","entityId":"entry-8921","position":[-1134.1315,-82.4772,-587.7489],"yaw":-0.506145,"spawnMask":1},{"id":"creature-46281","entityId":"entry-8921","position":[-1135.5415,-82.4819,-578.3419],"yaw":-5.72468,"spawnMask":1},{"id":"creature-46284","entityId":"entry-9319","position":[-1136.9905,-82.5615,-584.9169],"yaw":-2.30979,"spawnMask":1},{"id":"creature-46297","entityId":"entry-8921","position":[-1139.2375,-82.5615,-587.5509],"yaw":-2.08212,"spawnMask":1},{"id":"creature-46298","entityId":"entry-8921","position":[-1140.7695,-82.562,-588.6619],"yaw":-2.05198,"spawnMask":1},{"id":"creature-46299","entityId":"entry-8921","position":[-1116.5695,-82.5829,-611.6139],"yaw":-2.52397,"spawnMask":1},{"id":"creature-46300","entityId":"entry-8921","position":[-1109.5795,-82.4985,-612.8479],"yaw":-0.349066,"spawnMask":1},{"id":"creature-46301","entityId":"entry-8921","position":[-1104.0465,-82.4938,-606.7949],"yaw":-2.84489,"spawnMask":1},{"id":"creature-46302","entityId":"entry-8921","position":[-1110.4205,-82.4836,-600.6579],"yaw":-2.16421,"spawnMask":1},{"id":"creature-46309","entityId":"entry-8921","position":[-1105.6055,-82.487,-594.7989],"yaw":-3.735,"spawnMask":1},{"id":"creature-46607","entityId":"entry-8921","position":[-1110.6995,-82.4868,-585.5209],"yaw":-1.44862,"spawnMask":1},{"id":"creature-46608","entityId":"entry-8905","position":[-1342.9595,-48.5698,-751.9519],"yaw":-1.46608,"spawnMask":1},{"id":"creature-46610","entityId":"entry-8905","position":[-1348.7725,-48.5698,-759.1069],"yaw":-0.349066,"spawnMask":1},{"id":"creature-46611","entityId":"entry-8905","position":[-1342.8705,-48.5698,-763.8909],"yaw":-4.86947,"spawnMask":1},{"id":"creature-46612","entityId":"entry-8905","position":[-1337.3175,-48.5698,-756.0269],"yaw":-3.29867,"spawnMask":1},{"id":"creature-46616","entityId":"entry-10043","position":[-1410.1635,-47.7481,-578.0009],"yaw":-2.6529,"spawnMask":1},{"id":"creature-46617","entityId":"entry-10043","position":[-1404.9345,-47.7497,-578.3159],"yaw":-0.418879,"spawnMask":1},{"id":"creature-46618","entityId":"entry-10043","position":[-1406.3615,-47.7499,-576.6369],"yaw":-5.77704,"spawnMask":1},{"id":"creature-46619","entityId":"entry-9543","position":[-1407.7905,-47.7502,-577.8749],"yaw":-2.51327,"spawnMask":1},{"id":"creature-46620","entityId":"entry-9554","position":[-1404.8165,-40.6677,-626.2739],"yaw":-2.13984,"spawnMask":1},{"id":"creature-46621","entityId":"entry-9545","position":[-1348.2095,-47.745,-590.6529],"yaw":-0.105216,"spawnMask":1},{"id":"creature-46622","entityId":"entry-9547","position":[-1388.7215,-47.7472,-552.6469],"yaw":-4.63184,"spawnMask":1},{"id":"creature-46624","entityId":"entry-9547","position":[-1408.0885,-47.751,-557.5459],"yaw":-4.30297,"spawnMask":1},{"id":"creature-46625","entityId":"entry-9554","position":[-1372.5395,-47.7454,-598.4509],"yaw":-3.78738,"spawnMask":1},{"id":"creature-46626","entityId":"entry-9554","position":[-1370.0025,-47.745,-600.3619],"yaw":-5.73082,"spawnMask":1},{"id":"creature-46627","entityId":"entry-9545","position":[-1393.9415,-47.7482,-585.2279],"yaw":-1.99312,"spawnMask":1},{"id":"creature-46628","entityId":"entry-9547","position":[-1352.7045,-47.745,-590.1779],"yaw":-0.888466,"spawnMask":1},{"id":"creature-46629","entityId":"entry-9545","position":[-1421.8775,-41.6955,-615.6169],"yaw":-2.85076,"spawnMask":1},{"id":"creature-46630","entityId":"entry-9554","position":[-1395.6935,-47.7481,-572.8899],"yaw":-0.562199,"spawnMask":1},{"id":"creature-46631","entityId":"entry-8900","position":[-1716.3095,-72.353,-575.5849],"yaw":-2.87979,"spawnMask":1},{"id":"creature-46632","entityId":"entry-8900","position":[-1724.1395,-72.4475,-570.1899],"yaw":-5.54385,"spawnMask":1},{"id":"creature-46638","entityId":"entry-8900","position":[-1713.6295,-72.3567,-564.0959],"yaw":-0.436332,"spawnMask":1},{"id":"creature-46639","entityId":"entry-8900","position":[-1657.5995,-72.9076,-574.3069],"yaw":-3.89208,"spawnMask":1},{"id":"creature-46640","entityId":"entry-8900","position":[-1664.7195,-72.9899,-564.2649],"yaw":-2.00465,"spawnMask":1},{"id":"creature-46641","entityId":"entry-8908","position":[-1699.5295,-63.4444,-600.4939],"yaw":-0.314159,"spawnMask":1},{"id":"creature-46642","entityId":"entry-8900","position":[-1679.0295,-72.4416,-536.7709],"yaw":-4.85309,"spawnMask":1},{"id":"creature-46643","entityId":"entry-8900","position":[-1681.1695,-72.3551,-547.0829],"yaw":-0.593412,"spawnMask":1},{"id":"creature-46644","entityId":"entry-8900","position":[-1700.4495,-63.4136,-607.3299],"yaw":-3.97288,"spawnMask":1},{"id":"creature-46645","entityId":"entry-8900","position":[-1704.9795,-63.4547,-597.9479],"yaw":-5.20513,"spawnMask":1},{"id":"creature-46646","entityId":"entry-8900","position":[-1693.9795,-63.3009,-600.3479],"yaw":-3.36848,"spawnMask":1},{"id":"creature-46647","entityId":"entry-8908","position":[-1637.7895,-63.3004,-589.7289],"yaw":-2.30383,"spawnMask":1},{"id":"creature-46648","entityId":"entry-8908","position":[-1658.6695,-72.903,-565.4549],"yaw":-3.21141,"spawnMask":1},{"id":"creature-46649","entityId":"entry-8900","position":[-1638.9495,-63.3004,-596.9809],"yaw":-3.28122,"spawnMask":1},{"id":"creature-46650","entityId":"entry-8900","position":[-1644.4395,-63.3004,-588.5389],"yaw":-1.02974,"spawnMask":1},{"id":"creature-46651","entityId":"entry-8900","position":[-1631.5995,-63.3004,-587.9019],"yaw":-2.23402,"spawnMask":1},{"id":"creature-46652","entityId":"entry-8908","position":[-1683.3595,-72.3565,-542.9259],"yaw":-3.4383,"spawnMask":1},{"id":"creature-46653","entityId":"entry-8908","position":[-1717.8595,-72.3554,-569.9389],"yaw":-0.10472,"spawnMask":1},{"id":"creature-46654","entityId":"entry-8901","position":[-1829.0295,-90.0853,-829.1439],"yaw":-5.0075,"spawnMask":1},{"id":"creature-46655","entityId":"entry-8901","position":[-1830.7295,-90.1131,-815.4349],"yaw":-4.1211,"spawnMask":1},{"id":"creature-46657","entityId":"entry-8901","position":[-1832.1395,-90.1094,-818.1709],"yaw":-4.21156,"spawnMask":1},{"id":"creature-46658","entityId":"entry-8901","position":[-1832.6995,-90.1067,-814.3209],"yaw":-4.15168,"spawnMask":1},{"id":"creature-46659","entityId":"entry-8901","position":[-1877.8095,-90.0036,-897.4899],"yaw":-4.60767,"spawnMask":1},{"id":"creature-46660","entityId":"entry-8901","position":[-1872.5095,-90.0036,-879.8149],"yaw":-1.48353,"spawnMask":1},{"id":"creature-46661","entityId":"entry-8901","position":[-1841.5395,-90.0259,-898.3329],"yaw":-0.05236,"spawnMask":1},{"id":"creature-46662","entityId":"entry-8901","position":[-1879.4095,-90.0036,-900.1989],"yaw":-5.58505,"spawnMask":1},{"id":"creature-46663","entityId":"entry-8901","position":[-1869.4595,-90.0036,-883.8779],"yaw":-1.01229,"spawnMask":1},{"id":"creature-46664","entityId":"entry-8901","position":[-1889.2195,-90.0046,-884.2799],"yaw":-0.645772,"spawnMask":1},{"id":"creature-46665","entityId":"entry-8901","position":[-1890.0595,-90.0052,-886.2709],"yaw":-2.68781,"spawnMask":1},{"id":"creature-46666","entityId":"entry-8901","position":[-1857.7595,-90.0036,-890.0829],"yaw":-2.51327,"spawnMask":1},{"id":"creature-46667","entityId":"entry-8901","position":[-1856.3695,-90.0036,-886.5749],"yaw":-2.9147,"spawnMask":1},{"id":"creature-46668","entityId":"entry-8901","position":[-1842.7295,-90.0219,-900.5719],"yaw":-1.02974,"spawnMask":1},{"id":"creature-46669","entityId":"entry-8901","position":[-1901.8095,-90.0462,-724.5339],"yaw":-1.39626,"spawnMask":1},{"id":"creature-46670","entityId":"entry-8901","position":[-1895.7095,-90.0462,-739.8829],"yaw":-1.53589,"spawnMask":1},{"id":"creature-46671","entityId":"entry-8901","position":[-1903.8895,-90.0462,-730.1779],"yaw":-3.21141,"spawnMask":1},{"id":"creature-46672","entityId":"entry-8901","position":[-1885.7095,-90.0462,-734.5639],"yaw":-5.41052,"spawnMask":1},{"id":"creature-46673","entityId":"entry-8901","position":[-1891.1695,-90.0462,-740.8619],"yaw":-4.95674,"spawnMask":1},{"id":"creature-46690","entityId":"entry-8901","position":[-1907.1795,-90.0462,-728.9679],"yaw":-5.95157,"spawnMask":1},{"id":"creature-46724","entityId":"entry-8901","position":[-1887.9095,-90.0462,-735.7309],"yaw":-5.044,"spawnMask":1},{"id":"creature-46725","entityId":"entry-8901","position":[-1887.6895,-90.0462,-730.3089],"yaw":-4.55531,"spawnMask":1},{"id":"creature-46726","entityId":"entry-8901","position":[-1893.4695,-90.0462,-733.0329],"yaw":-0.383972,"spawnMask":1},{"id":"creature-46727","entityId":"entry-8901","position":[-1905.2895,-90.0462,-724.1839],"yaw":-6.26573,"spawnMask":1},{"id":"creature-46728","entityId":"entry-8901","position":[-1938.0495,-90.0914,-851.8009],"yaw":-2.67557,"spawnMask":1},{"id":"creature-46729","entityId":"entry-8901","position":[-1935.9895,-90.0925,-847.7079],"yaw":-3.05489,"spawnMask":1},{"id":"creature-46730","entityId":"entry-8901","position":[-1937.3595,-90.0906,-850.6389],"yaw":-2.88517,"spawnMask":1},{"id":"creature-46731","entityId":"entry-8901","position":[-1941.6795,-90.0436,-850.5329],"yaw":-2.98113,"spawnMask":1},{"id":"creature-46732","entityId":"entry-8901","position":[-1938.8895,-90.0885,-848.3959],"yaw":-2.93482,"spawnMask":1},{"id":"creature-46733","entityId":"entry-8901","position":[-1841.3395,-90.0395,-938.2499],"yaw":-2.26893,"spawnMask":1},{"id":"creature-46734","entityId":"entry-8901","position":[-1847.1495,-89.3252,-920.5219],"yaw":-4.83456,"spawnMask":1},{"id":"creature-46735","entityId":"entry-8901","position":[-1846.8595,-89.4793,-917.7989],"yaw":-6.0912,"spawnMask":1},{"id":"creature-46736","entityId":"entry-8901","position":[-1845.1495,-90.0372,-938.1939],"yaw":-4.15388,"spawnMask":1},{"id":"creature-46737","entityId":"entry-8901","position":[-1857.6095,-90.0317,-935.5849],"yaw":-4.86947,"spawnMask":1},{"id":"creature-46738","entityId":"entry-8901","position":[-1840.6395,-90.0381,-935.1479],"yaw":-2.25148,"spawnMask":1},{"id":"creature-46739","entityId":"entry-8901","position":[-1859.4895,-90.0293,-932.9099],"yaw":-5.35816,"spawnMask":1},{"id":"creature-46740","entityId":"entry-8901","position":[-1842.2395,-90.033,-919.2599],"yaw":-0.663225,"spawnMask":1},{"id":"creature-46741","entityId":"entry-8901","position":[-1889.8195,-90.0052,-947.4389],"yaw":-1.16937,"spawnMask":1},{"id":"creature-46742","entityId":"entry-8901","position":[-1892.7395,-90.0036,-945.6789],"yaw":-1.37881,"spawnMask":1},{"id":"creature-46743","entityId":"entry-8901","position":[-1888.3895,-90.0088,-924.3829],"yaw":-0.418879,"spawnMask":1},{"id":"creature-46744","entityId":"entry-8901","position":[-1892.5895,-90.0239,-920.1749],"yaw":-3.83972,"spawnMask":1},{"id":"creature-46745","entityId":"entry-8901","position":[-1895.0195,-90.0304,-920.9699],"yaw":-3.05433,"spawnMask":1},{"id":"creature-46856","entityId":"entry-8901","position":[-1878.5095,-90.0143,-950.6019],"yaw":-4.32842,"spawnMask":1},{"id":"creature-46892","entityId":"entry-8901","position":[-1891.4795,-90.0151,-925.6489],"yaw":-1.8675,"spawnMask":1},{"id":"creature-46893","entityId":"entry-8901","position":[-1874.8295,-90.0253,-950.4799],"yaw":-3.01942,"spawnMask":1},{"id":"creature-46895","entityId":"entry-8901","position":[-1892.9795,-90.0083,-948.5119],"yaw":-0.069813,"spawnMask":1},{"id":"creature-46896","entityId":"entry-8901","position":[-1878.0995,-90.0244,-954.1219],"yaw":-0.226893,"spawnMask":1},{"id":"creature-46960","entityId":"entry-8901","position":[-1942.5095,-90.0036,-893.1979],"yaw":-0.506145,"spawnMask":1},{"id":"creature-46962","entityId":"entry-8901","position":[-1961.6995,-90.0036,-892.5129],"yaw":-5.41052,"spawnMask":1},{"id":"creature-46963","entityId":"entry-8901","position":[-1960.3695,-90.0101,-873.6719],"yaw":-2.11185,"spawnMask":1},{"id":"creature-46965","entityId":"entry-8901","position":[-1944.8695,-89.9995,-868.6379],"yaw":-1.8326,"spawnMask":1},{"id":"creature-46966","entityId":"entry-8901","position":[-1939.5195,-90.011,-889.3409],"yaw":-5.72468,"spawnMask":1},{"id":"creature-46967","entityId":"entry-8901","position":[-1958.9795,-90.0107,-870.4529],"yaw":-4.97419,"spawnMask":1},{"id":"creature-46969","entityId":"entry-8901","position":[-1964.3895,-90.0036,-889.2119],"yaw":-0.349066,"spawnMask":1},{"id":"creature-46970","entityId":"entry-8901","position":[-1940.9195,-90.0011,-868.4879],"yaw":-0.191986,"spawnMask":1},{"id":"creature-46977","entityId":"entry-8901","position":[-1962.8395,-90.0036,-886.9649],"yaw":-2.84489,"spawnMask":1},{"id":"creature-46978","entityId":"entry-8901","position":[-1943.3695,-90.0024,-873.0699],"yaw":-3.52556,"spawnMask":1},{"id":"creature-46979","entityId":"entry-8901","position":[-1909.8395,-90.0442,-896.3639],"yaw":-1.91986,"spawnMask":1},{"id":"creature-46990","entityId":"entry-8901","position":[-1927.0395,-90.0046,-900.5909],"yaw":-5.18363,"spawnMask":1},{"id":"creature-46991","entityId":"entry-8901","position":[-1921.7295,-90.0036,-883.2149],"yaw":-1.62316,"spawnMask":1},{"id":"creature-46992","entityId":"entry-8901","position":[-1916.4195,-90.0138,-886.1809],"yaw":-5.39307,"spawnMask":1},{"id":"creature-46994","entityId":"entry-8901","position":[-1917.6095,-90.0131,-882.6519],"yaw":-0.383972,"spawnMask":1},{"id":"creature-47045","entityId":"entry-8901","position":[-1929.3595,-90.0036,-904.0909],"yaw":-5.23599,"spawnMask":1},{"id":"creature-47046","entityId":"entry-8901","position":[-1923.6295,-90.0047,-903.7929],"yaw":-0.296706,"spawnMask":1},{"id":"creature-47047","entityId":"entry-8901","position":[-1909.2395,-90.0402,-894.2149],"yaw":-0.453786,"spawnMask":1},{"id":"creature-47048","entityId":"entry-8901","position":[-1920.5595,-90.005,-887.1599],"yaw":-3.735,"spawnMask":1},{"id":"creature-47049","entityId":"entry-8901","position":[-1906.7195,-90.0239,-897.9119],"yaw":-3.19395,"spawnMask":1},{"id":"creature-47050","entityId":"entry-8901","position":[-1951.4695,-89.9971,-785.6419],"yaw":-6.03884,"spawnMask":1},{"id":"creature-47051","entityId":"entry-8901","position":[-1940.7895,-89.9996,-771.1099],"yaw":-4.81711,"spawnMask":1},{"id":"creature-47077","entityId":"entry-8901","position":[-1914.6795,-90.0152,-787.4499],"yaw":-3.00197,"spawnMask":1},{"id":"creature-47078","entityId":"entry-8901","position":[-1947.0195,-89.9895,-790.0259],"yaw":-3.08923,"spawnMask":1},{"id":"creature-47079","entityId":"entry-8901","position":[-1935.4595,-90.0057,-785.1969],"yaw":-3.07178,"spawnMask":1},{"id":"creature-47080","entityId":"entry-8901","position":[-1920.9495,-90.0033,-772.6289],"yaw":-0.279253,"spawnMask":1},{"id":"creature-47081","entityId":"entry-8901","position":[-1932.0195,-90.0233,-788.7529],"yaw":-4.53786,"spawnMask":1},{"id":"creature-47086","entityId":"entry-8901","position":[-1916.5295,-90.007,-784.8679],"yaw":-1.79769,"spawnMask":1},{"id":"creature-47087","entityId":"entry-8901","position":[-1936.7595,-90.0036,-768.3579],"yaw":-4.66003,"spawnMask":1},{"id":"creature-47205","entityId":"entry-8901","position":[-1918.6595,-90.0148,-770.5679],"yaw":-3.85718,"spawnMask":1},{"id":"creature-47206","entityId":"entry-8901","position":[-1919.5595,-92.6664,-809.7799],"yaw":-3.07178,"spawnMask":1},{"id":"creature-47207","entityId":"entry-8901","position":[-1905.5395,-92.6664,-811.2339],"yaw":-0.017453,"spawnMask":1},{"id":"creature-47209","entityId":"entry-8901","position":[-1903.3495,-92.6664,-815.8469],"yaw":-0.977384,"spawnMask":1},{"id":"creature-47210","entityId":"entry-8901","position":[-1917.8695,-92.6664,-811.6509],"yaw":-4.69494,"spawnMask":1},{"id":"creature-47211","entityId":"entry-8901","position":[-1918.7995,-92.6664,-826.0309],"yaw":-5.72468,"spawnMask":1},{"id":"creature-47212","entityId":"entry-8901","position":[-1917.2895,-92.6664,-808.9519],"yaw":-1.13446,"spawnMask":1},{"id":"creature-47213","entityId":"entry-8901","position":[-1915.3795,-92.6664,-825.9109],"yaw":-2.56563,"spawnMask":1},{"id":"creature-47214","entityId":"entry-8901","position":[-1902.2995,-92.6664,-812.4339],"yaw":-1.29154,"spawnMask":1},{"id":"creature-47215","entityId":"entry-8901","position":[-1918.7595,-92.6664,-827.8529],"yaw":-1.09956,"spawnMask":1},{"id":"creature-47216","entityId":"entry-8901","position":[-1905.4895,-92.6664,-813.8899],"yaw":-4.46804,"spawnMask":1},{"id":"creature-47217","entityId":"entry-8929","position":[-1913.9595,-85.6644,-1241.6349],"yaw":-1.62316,"spawnMask":1},{"id":"creature-47250","entityId":"entry-9018","position":[-839.8775,-68.378,-556.3999],"yaw":-5.51524,"spawnMask":1},{"id":"creature-47251","entityId":"entry-8912","position":[-842.0705,-68.378,-559.1669],"yaw":-2.47837,"spawnMask":1},{"id":"creature-47252","entityId":"entry-8890","position":[-843.3495,-68.378,-572.4879],"yaw":-1.01229,"spawnMask":1},{"id":"creature-47253","entityId":"entry-8921","position":[-842.6595,-68.378,-576.3779],"yaw":-1.06465,"spawnMask":1},{"id":"creature-47254","entityId":"entry-8921","position":[-839.9555,-68.378,-574.0619],"yaw":-0.942478,"spawnMask":1},{"id":"creature-47255","entityId":"entry-8900","position":[-1306.9345,-51.7851,-428.347],"yaw":-5.23021,"spawnMask":1},{"id":"creature-47256","entityId":"entry-8906","position":[-1318.6755,-51.7265,-452.5752],"yaw":-1.95477,"spawnMask":1},{"id":"creature-47257","entityId":"entry-8920","position":[-1308.0475,-51.7269,-367.7723],"yaw":-2.19912,"spawnMask":1},{"id":"creature-47258","entityId":"entry-8900","position":[-1292.6315,-51.7919,-408.333],"yaw":-3.26041,"spawnMask":1},{"id":"creature-47259","entityId":"entry-8920","position":[-1339.2715,-51.6341,-360.3866],"yaw":-1.22173,"spawnMask":1},{"id":"creature-47260","entityId":"entry-8920","position":[-1305.6075,-51.7269,-366.4778],"yaw":-0.418879,"spawnMask":1},{"id":"creature-47292","entityId":"entry-8920","position":[-1285.9195,-51.6582,-357.5976],"yaw":-3.90954,"spawnMask":1},{"id":"creature-47293","entityId":"entry-8920","position":[-1310.3275,-51.7269,-363.3589],"yaw":-3.52556,"spawnMask":1},{"id":"creature-47294","entityId":"entry-8920","position":[-1310.6075,-51.8218,-456.4594],"yaw":-4.25302,"spawnMask":1},{"id":"creature-47295","entityId":"entry-8900","position":[-1286.1235,-51.6617,-355.1466],"yaw":-0.715585,"spawnMask":1},{"id":"creature-47304","entityId":"entry-9025","position":[-1144.8415,-81.6658,-677.5459],"yaw":-3.86809,"spawnMask":1},{"id":"creature-47477","entityId":"entry-9938","position":[-1910.0395,-90.0462,-1069.4629],"yaw":-1.58825,"spawnMask":1},{"id":"creature-47478","entityId":"entry-8904","position":[-1937.7795,-90.714,-1179.8039],"yaw":-5.91667,"spawnMask":1},{"id":"creature-47561","entityId":"entry-8904","position":[-1949.6895,-90.7134,-1185.5769],"yaw":-2.56563,"spawnMask":1},{"id":"creature-47562","entityId":"entry-8915","position":[-1947.5595,-90.7139,-1179.1229],"yaw":-4.04916,"spawnMask":1},{"id":"creature-47563","entityId":"entry-8915","position":[-1938.4695,-90.714,-1185.9999],"yaw":-0.488692,"spawnMask":1},{"id":"creature-47564","entityId":"entry-8899","position":[-1928.1195,-89.9734,-1223.6339],"yaw":-5.3058,"spawnMask":1},{"id":"creature-47565","entityId":"entry-8899","position":[-1910.0495,-90.7151,-1156.9999],"yaw":-2.79253,"spawnMask":1},{"id":"creature-47566","entityId":"entry-8904","position":[-1946.1895,-83.1448,-1150.4189],"yaw":-6.0912,"spawnMask":1},{"id":"creature-47568","entityId":"entry-8904","position":[-1956.2395,-83.1458,-1152.2769],"yaw":-2.96706,"spawnMask":1},{"id":"creature-47569","entityId":"entry-8904","position":[-1951.0795,-83.1456,-1152.8699],"yaw":-1.43117,"spawnMask":1},{"id":"creature-47586","entityId":"entry-8915","position":[-1954.7295,-83.1457,-1148.6149],"yaw":-3.82227,"spawnMask":1},{"id":"creature-47587","entityId":"entry-8903","position":[-1883.1295,-83.139,-1160.4359],"yaw":-4.17134,"spawnMask":1},{"id":"creature-47588","entityId":"entry-8904","position":[-1874.3195,-83.1446,-1148.3549],"yaw":-5.55015,"spawnMask":1},{"id":"creature-47589","entityId":"entry-8904","position":[-1878.0995,-83.1448,-1156.4379],"yaw":-1.71042,"spawnMask":1},{"id":"creature-47590","entityId":"entry-8904","position":[-1877.4395,-83.1442,-1148.0569],"yaw":-5.14872,"spawnMask":1},{"id":"creature-47591","entityId":"entry-8904","position":[-1882.4795,-83.1435,-1147.4849],"yaw":-4.29351,"spawnMask":1},{"id":"creature-47592","entityId":"entry-8904","position":[-1882.1295,-83.1437,-1155.3229],"yaw":-2.19912,"spawnMask":1},{"id":"creature-47593","entityId":"entry-8899","position":[-1883.7395,-90.7133,-1181.9579],"yaw":-0.383972,"spawnMask":1},{"id":"creature-47594","entityId":"entry-8904","position":[-1897.6395,-90.7136,-1180.5299],"yaw":-3.54302,"spawnMask":1},{"id":"creature-47595","entityId":"entry-8904","position":[-1898.0095,-90.7136,-1185.1619],"yaw":-2.72271,"spawnMask":1},{"id":"creature-47598","entityId":"entry-8904","position":[-1894.0095,-89.9728,-1189.0419],"yaw":-1.79769,"spawnMask":1},{"id":"creature-47599","entityId":"entry-8904","position":[-1888.5095,-90.7135,-1183.1019],"yaw":-0.10472,"spawnMask":1},{"id":"creature-47601","entityId":"entry-8915","position":[-1893.1695,-89.9728,-1177.0579],"yaw":-4.57276,"spawnMask":1},{"id":"creature-47602","entityId":"entry-8904","position":[-1884.6495,-89.9734,-1227.7009],"yaw":-5.35816,"spawnMask":1},{"id":"creature-47603","entityId":"entry-8904","position":[-1889.2995,-89.9734,-1227.5209],"yaw":-3.9619,"spawnMask":1},{"id":"creature-47606","entityId":"entry-8915","position":[-1892.6395,-89.9734,-1234.1909],"yaw":-2.56563,"spawnMask":1},{"id":"creature-47611","entityId":"entry-8915","position":[-1884.4895,-89.9734,-1233.7449],"yaw":-0.994838,"spawnMask":1},{"id":"creature-47612","entityId":"entry-8899","position":[-1926.0295,-89.9733,-1141.4809],"yaw":-0.122173,"spawnMask":1},{"id":"creature-47613","entityId":"entry-9019","position":[-1909.4995,-85.6651,-1241.7939],"yaw":-1.32645,"spawnMask":1},{"id":"creature-47622","entityId":"entry-9023","position":[-845.6555,-75.8009,-635.6769],"yaw":-1.25664,"spawnMask":1},{"id":"creature-47628","entityId":"entry-9022","position":[-804.6465,-75.1176,-491.1142],"yaw":-5.79449,"spawnMask":1},{"id":"creature-47630","entityId":"entry-9020","position":[-901.5025,-68.1053,-588.4539],"yaw":-5.07891,"spawnMask":1},{"id":"creature-47631","entityId":"entry-9056","position":[-1492.5865,-69.8145,-753.8839],"yaw":-2.21696,"spawnMask":1},{"id":"creature-47634","entityId":"entry-8916","position":[-1076.8315,-34.9548,-578.5039],"yaw":-5.93412,"spawnMask":1},{"id":"creature-47641","entityId":"entry-8916","position":[-1068.9465,-33.5876,-599.3349],"yaw":0,"spawnMask":1},{"id":"creature-47643","entityId":"entry-8916","position":[-1068.1835,-32.153,-576.7939],"yaw":-5.91667,"spawnMask":1},{"id":"creature-47644","entityId":"entry-8894","position":[-1072.1655,-34.9621,-588.2989],"yaw":-6.10865,"spawnMask":1},{"id":"creature-47645","entityId":"entry-8896","position":[-1068.8765,-33.6008,-590.0109],"yaw":-6.14356,"spawnMask":1},{"id":"creature-47649","entityId":"entry-8896","position":[-1074.5965,-34.9432,-583.1129],"yaw":-6.02139,"spawnMask":1},{"id":"creature-47650","entityId":"entry-8902","position":[-1074.8075,-33.5357,-572.6349],"yaw":-5.86431,"spawnMask":1},{"id":"creature-47652","entityId":"entry-8902","position":[-1068.9315,-33.582,-594.4649],"yaw":-6.21337,"spawnMask":1},{"id":"creature-47653","entityId":"entry-8894","position":[-1063.6065,-32.1847,-583.9039],"yaw":-6.07375,"spawnMask":1},{"id":"creature-47654","entityId":"entry-8916","position":[-1178.5835,-34.9821,-586.2539],"yaw":-3.36848,"spawnMask":1},{"id":"creature-47655","entityId":"entry-8916","position":[-1176.8875,-34.9996,-583.0579],"yaw":-3.42085,"spawnMask":1},{"id":"creature-47656","entityId":"entry-8895","position":[-1179.3355,-34.9858,-594.9189],"yaw":-3.22886,"spawnMask":1},{"id":"creature-47657","entityId":"entry-8896","position":[-1179.4965,-34.9724,-590.3119],"yaw":-3.29867,"spawnMask":1},{"id":"creature-47658","entityId":"entry-8896","position":[-1181.1965,-33.5989,-582.7469],"yaw":-3.40339,"spawnMask":1},{"id":"creature-47659","entityId":"entry-8902","position":[-1179.8035,-33.5907,-578.7549],"yaw":-3.47321,"spawnMask":1},{"id":"creature-47664","entityId":"entry-8902","position":[-1188.3115,-32.1517,-596.5269],"yaw":-3.07178,"spawnMask":1},{"id":"creature-47665","entityId":"entry-8904","position":[-1182.6635,-33.6012,-600.6579],"yaw":-3.12414,"spawnMask":1},{"id":"creature-47666","entityId":"entry-8893","position":[-1188.5475,-32.1538,-591.9619],"yaw":-3.24631,"spawnMask":1},{"id":"creature-47667","entityId":"entry-8916","position":[-1158.2025,-33.6188,-647.0309],"yaw":-2.18166,"spawnMask":1},{"id":"creature-47668","entityId":"entry-8916","position":[-1158.4345,-34.9651,-642.8749],"yaw":-2.21657,"spawnMask":1},{"id":"creature-47669","entityId":"entry-8895","position":[-1162.9165,-34.988,-637.4739],"yaw":-2.33874,"spawnMask":1},{"id":"creature-47670","entityId":"entry-8896","position":[-1155.9325,-32.1587,-654.8329],"yaw":-2.09439,"spawnMask":1},{"id":"creature-47671","entityId":"entry-8896","position":[-1162.4405,-33.5645,-643.1109],"yaw":-2.26893,"spawnMask":1},{"id":"creature-47672","entityId":"entry-8902","position":[-1165.6175,-32.1654,-649.6099],"yaw":-2.25148,"spawnMask":1},{"id":"creature-47673","entityId":"entry-8902","position":[-1170.2165,-33.25,-635.1829],"yaw":-2.49582,"spawnMask":1},{"id":"creature-47674","entityId":"entry-8904","position":[-1167.5225,-33.4682,-639.5589],"yaw":-2.37365,"spawnMask":1},{"id":"creature-47675","entityId":"entry-8893","position":[-1154.4165,-34.9682,-645.5349],"yaw":-2.14675,"spawnMask":1},{"id":"creature-47676","entityId":"entry-8916","position":[-1102.1275,-34.8795,-551.0879],"yaw":-5.18363,"spawnMask":1},{"id":"creature-47677","entityId":"entry-8916","position":[-1088.1995,-32.1595,-547.3319],"yaw":-5.34071,"spawnMask":1},{"id":"creature-47678","entityId":"entry-8916","position":[-1107.6005,-34.8646,-549.3579],"yaw":-5.09636,"spawnMask":1},{"id":"creature-47679","entityId":"entry-8916","position":[-1110.6365,-33.5311,-544.1369],"yaw":-4.99164,"spawnMask":1},{"id":"creature-47680","entityId":"entry-8916","position":[-1103.5595,-33.5065,-546.8559],"yaw":-5.13127,"spawnMask":1},{"id":"creature-47681","entityId":"entry-8916","position":[-1109.9455,-34.8337,-548.1949],"yaw":-5.06145,"spawnMask":1},{"id":"creature-47682","entityId":"entry-8916","position":[-1094.2415,-32.1428,-542.4309],"yaw":-5.23599,"spawnMask":1},{"id":"creature-47683","entityId":"entry-8893","position":[-1098.1355,-34.9353,-552.6869],"yaw":-5.25344,"spawnMask":1},{"id":"creature-47684","entityId":"entry-8894","position":[-1100.7455,-33.5113,-548.0309],"yaw":-5.18363,"spawnMask":1},{"id":"creature-47685","entityId":"entry-8916","position":[-1099.4265,-32.1452,-654.5999],"yaw":-1.11701,"spawnMask":1},{"id":"creature-47686","entityId":"entry-8916","position":[-1101.0435,-34.9221,-647.4629],"yaw":-1.0821,"spawnMask":1},{"id":"creature-47687","entityId":"entry-8916","position":[-1093.3715,-34.9369,-642.9749],"yaw":-0.942478,"spawnMask":1},{"id":"creature-47688","entityId":"entry-8916","position":[-1088.9015,-32.1691,-652.7419],"yaw":-0.977384,"spawnMask":1},{"id":"creature-47689","entityId":"entry-8916","position":[-1102.4195,-32.1419,-655.4279],"yaw":-1.16937,"spawnMask":1},{"id":"creature-47690","entityId":"entry-8916","position":[-1089.6145,-33.533,-645.2339],"yaw":-0.925025,"spawnMask":1},{"id":"creature-47691","entityId":"entry-8916","position":[-1107.0435,-33.5522,-652.8719],"yaw":-1.41372,"spawnMask":1},{"id":"creature-47692","entityId":"entry-8893","position":[-1104.8085,-34.926,-648.5089],"yaw":-1.15192,"spawnMask":1},{"id":"creature-47693","entityId":"entry-8894","position":[-1094.7255,-33.5797,-648.8769],"yaw":-1.01229,"spawnMask":1},{"id":"creature-47694","entityId":"entry-8916","position":[-1159.8675,-33.6049,-551.6869],"yaw":-4.11898,"spawnMask":1},{"id":"creature-47695","entityId":"entry-8916","position":[-1167.8965,-33.594,-559.9709],"yaw":-3.94444,"spawnMask":1},{"id":"creature-47696","entityId":"entry-8916","position":[-1162.8705,-34.9972,-560.2339],"yaw":-4.01426,"spawnMask":1},{"id":"creature-47697","entityId":"entry-8894","position":[-1168.3615,-32.1478,-553.7779],"yaw":-3.9968,"spawnMask":1},{"id":"creature-47698","entityId":"entry-8896","position":[-1162.5105,-33.5986,-554.8109],"yaw":-4.06662,"spawnMask":1},{"id":"creature-47699","entityId":"entry-8896","position":[-1165.1905,-33.5918,-557.1539],"yaw":-4.01426,"spawnMask":1},{"id":"creature-47700","entityId":"entry-8902","position":[-1173.6175,-32.1469,-559.1739],"yaw":-3.89208,"spawnMask":1},{"id":"creature-47701","entityId":"entry-8902","position":[-1168.0845,-34.9922,-565.5099],"yaw":-3.63029,"spawnMask":1},{"id":"creature-47702","entityId":"entry-8894","position":[-1159.7585,-34.9946,-557.1939],"yaw":-4.08407,"spawnMask":1},{"id":"creature-47704","entityId":"entry-8905","position":[-1488.7625,-58.8295,-800.8959],"yaw":-5.89921,"spawnMask":1},{"id":"creature-47705","entityId":"entry-8897","position":[-1498.7565,-58.9944,-813.5219],"yaw":-3.68265,"spawnMask":1},{"id":"creature-47706","entityId":"entry-8897","position":[-1514.7495,-58.788,-819.7649],"yaw":-4.20624,"spawnMask":1},{"id":"creature-47707","entityId":"entry-8897","position":[-1510.4045,-58.2219,-824.2439],"yaw":-0.663225,"spawnMask":1},{"id":"creature-47708","entityId":"entry-8905","position":[-1474.4845,-52.9596,-835.3769],"yaw":-1.91986,"spawnMask":1},{"id":"creature-47709","entityId":"entry-8897","position":[-1484.6775,-52.8869,-840.4519],"yaw":-1.0472,"spawnMask":1},{"id":"creature-47710","entityId":"entry-8897","position":[-1485.1835,-52.7588,-848.3079],"yaw":-5.07891,"spawnMask":1},{"id":"creature-47711","entityId":"entry-8897","position":[-1481.7785,-52.7198,-847.7509],"yaw":-3.52556,"spawnMask":1},{"id":"creature-47712","entityId":"entry-8905","position":[-1517.9925,-63.5269,-768.9869],"yaw":-3.07178,"spawnMask":1},{"id":"creature-47713","entityId":"entry-8897","position":[-1531.4695,-63.142,-761.6539],"yaw":-0.959931,"spawnMask":1},{"id":"creature-47714","entityId":"entry-8897","position":[-1535.4495,-63.1594,-761.6579],"yaw":-2.05949,"spawnMask":1},{"id":"creature-47715","entityId":"entry-8897","position":[-1525.8455,-65.0673,-778.3709],"yaw":-5.07891,"spawnMask":1},{"id":"creature-47717","entityId":"entry-8905","position":[-1496.3295,-69.4644,-749.3599],"yaw":-3.22886,"spawnMask":1},{"id":"creature-47718","entityId":"entry-8897","position":[-1498.3845,-69.0167,-743.5299],"yaw":-2.05949,"spawnMask":1},{"id":"creature-47719","entityId":"entry-8897","position":[-1508.5895,-69.1686,-738.3929],"yaw":-0.366519,"spawnMask":1},{"id":"creature-47720","entityId":"entry-8897","position":[-1511.0245,-69.5343,-742.3349],"yaw":-0.750492,"spawnMask":1},{"id":"creature-47721","entityId":"entry-8905","position":[-1432.7355,-46.8873,-802.5389],"yaw":-2.25148,"spawnMask":1},{"id":"creature-47722","entityId":"entry-8897","position":[-1431.1925,-47.4509,-819.5939],"yaw":-5.63741,"spawnMask":1},{"id":"creature-47723","entityId":"entry-8897","position":[-1429.2195,-47.6059,-822.2729],"yaw":-4.83456,"spawnMask":1},{"id":"creature-47724","entityId":"entry-8897","position":[-1424.0035,-47.7267,-820.6839],"yaw":-2.6529,"spawnMask":1},{"id":"creature-47725","entityId":"entry-8905","position":[-1515.0475,-64.2803,-787.7989],"yaw":-3.15905,"spawnMask":1},{"id":"creature-47726","entityId":"entry-8897","position":[-1522.7035,-64.6789,-785.7099],"yaw":-0.715585,"spawnMask":1},{"id":"creature-47727","entityId":"entry-8897","position":[-1534.3795,-63.3234,-796.4949],"yaw":-4.55531,"spawnMask":1},{"id":"creature-47728","entityId":"entry-8897","position":[-1531.1195,-62.4513,-801.3699],"yaw":-0.226893,"spawnMask":1},{"id":"creature-47729","entityId":"entry-8905","position":[-1459.8215,-53.9817,-836.3959],"yaw":-0.802851,"spawnMask":1},{"id":"creature-47730","entityId":"entry-8897","position":[-1444.3535,-53.4766,-844.4769],"yaw":-3.76991,"spawnMask":1},{"id":"creature-47731","entityId":"entry-8897","position":[-1444.2795,-53.0682,-848.3339],"yaw":-2.82743,"spawnMask":1},{"id":"creature-47732","entityId":"entry-8897","position":[-1454.9105,-53.6913,-848.5419],"yaw":-3.83972,"spawnMask":1},{"id":"creature-47733","entityId":"entry-9017","position":[-1422.8655,-69.9753,-677.2049],"yaw":-3.10204,"spawnMask":1},{"id":"creature-47734","entityId":"entry-8896","position":[-1160.1655,-41.0995,-696.0579],"yaw":-1.6057,"spawnMask":1},{"id":"creature-47735","entityId":"entry-8896","position":[-1157.8095,-41.0995,-694.4569],"yaw":-0.680678,"spawnMask":1},{"id":"creature-47736","entityId":"entry-8913","position":[-1160.4505,-41.0996,-689.2849],"yaw":-4.59022,"spawnMask":1},{"id":"creature-47737","entityId":"entry-8922","position":[-1162.1285,-41.1081,-690.8769],"yaw":-3.85718,"spawnMask":1},{"id":"creature-47738","entityId":"entry-8911","position":[-1227.4705,-41.1554,-689.9609],"yaw":-3.25592,"spawnMask":1},{"id":"creature-47739","entityId":"entry-8896","position":[-1322.3425,-41.2742,-627.4129],"yaw":-5.68977,"spawnMask":1},{"id":"creature-47740","entityId":"entry-8896","position":[-1327.6285,-41.2801,-629.5459],"yaw":-3.38594,"spawnMask":1},{"id":"creature-47741","entityId":"entry-8913","position":[-1325.2705,-41.2806,-633.0709],"yaw":-1.3439,"spawnMask":1},{"id":"creature-47742","entityId":"entry-8914","position":[-1319.4025,-41.2751,-631.3199],"yaw":-0.069813,"spawnMask":1},{"id":"creature-47743","entityId":"entry-8910","position":[-1245.5465,-40.8642,-679.0679],"yaw":-6.05629,"spawnMask":1},{"id":"creature-47744","entityId":"entry-8910","position":[-1247.1015,-40.8652,-696.3799],"yaw":-0.418879,"spawnMask":1},{"id":"creature-47745","entityId":"entry-8896","position":[-1339.2815,-41.2851,-706.1919],"yaw":-5.32325,"spawnMask":1},{"id":"creature-47746","entityId":"entry-8896","position":[-1340.2365,-41.2851,-714.9169],"yaw":-1.64061,"spawnMask":1},{"id":"creature-47747","entityId":"entry-8896","position":[-1342.7795,-41.2851,-713.5819],"yaw":-1.98968,"spawnMask":1},{"id":"creature-47748","entityId":"entry-8922","position":[-1351.5025,-41.2851,-708.7759],"yaw":-3.19395,"spawnMask":1},{"id":"creature-47749","entityId":"entry-8896","position":[-1321.8845,-41.2873,-712.3399],"yaw":-4.53786,"spawnMask":1},{"id":"creature-47750","entityId":"entry-8896","position":[-1325.2035,-41.2856,-717.2119],"yaw":-2.9147,"spawnMask":1},{"id":"creature-47751","entityId":"entry-8913","position":[-1317.7495,-41.288,-713.6759],"yaw":-5.79449,"spawnMask":1},{"id":"creature-47754","entityId":"entry-8922","position":[-1322.2675,-41.2859,-719.6129],"yaw":-1.8675,"spawnMask":1},{"id":"creature-47755","entityId":"entry-8894","position":[-1294.1585,-41.3532,-663.2199],"yaw":-5.67232,"spawnMask":1},{"id":"creature-47757","entityId":"entry-8892","position":[-1326.3425,-41.2071,-669.2599],"yaw":-4.36332,"spawnMask":1},{"id":"creature-47758","entityId":"entry-8896","position":[-1295.9305,-41.3924,-669.8819],"yaw":-5.60251,"spawnMask":1},{"id":"creature-47759","entityId":"entry-8896","position":[-1302.9865,-41.3455,-664.6529],"yaw":-1.50098,"spawnMask":1},{"id":"creature-47760","entityId":"entry-8913","position":[-1300.8835,-41.3201,-659.2219],"yaw":-0.802851,"spawnMask":1},{"id":"creature-47761","entityId":"entry-8922","position":[-1303.7935,-41.2951,-655.3489],"yaw":-4.53786,"spawnMask":1},{"id":"creature-47762","entityId":"entry-8896","position":[-1382.7525,-48.2622,-710.2819],"yaw":-5.37561,"spawnMask":1},{"id":"creature-47763","entityId":"entry-8896","position":[-1396.4775,-47.9278,-705.5039],"yaw":-5.58505,"spawnMask":1},{"id":"creature-47764","entityId":"entry-8896","position":[-1384.7545,-48.1407,-711.7219],"yaw":-2.68781,"spawnMask":1},{"id":"creature-47765","entityId":"entry-8913","position":[-1395.5715,-47.9412,-717.1689],"yaw":-0.331613,"spawnMask":1},{"id":"creature-47766","entityId":"entry-8913","position":[-1397.7195,-47.9278,-716.4809],"yaw":-3.42085,"spawnMask":1},{"id":"creature-47767","entityId":"entry-8914","position":[-1398.3125,-47.9278,-706.8389],"yaw":-2.58309,"spawnMask":1},{"id":"creature-47771","entityId":"entry-9024","position":[-1059.4875,-41.0931,-654.0789],"yaw":-2.23402,"spawnMask":1},{"id":"creature-47772","entityId":"entry-8913","position":[-1060.0275,-41.0931,-657.1159],"yaw":-2.09439,"spawnMask":1},{"id":"creature-47773","entityId":"entry-8913","position":[-1063.8305,-41.0931,-655.1329],"yaw":-2.68781,"spawnMask":1},{"id":"creature-47774","entityId":"entry-9041","position":[-1352.7065,-48.1828,-752.4269],"yaw":-0.785398,"spawnMask":1},{"id":"creature-47775","entityId":"entry-9042","position":[-1351.0255,-48.1827,-750.5329],"yaw":-0.750492,"spawnMask":1},{"id":"creature-47778","entityId":"entry-9156","position":[-1539.0695,-59.3789,-649.1659],"yaw":-2.30383,"spawnMask":1},{"id":"creature-47779","entityId":"entry-12944","position":[-1441.8395,-41.6955,-596.0049],"yaw":-3.735,"spawnMask":1},{"id":"creature-47781","entityId":"entry-8895","position":[-1263.5995,-70.3929,-252.1119],"yaw":-0.244346,"spawnMask":1},{"id":"creature-47782","entityId":"entry-8893","position":[-1264.2745,-70.3318,-246.3369],"yaw":-3.28122,"spawnMask":1},{"id":"creature-47783","entityId":"entry-8894","position":[-1269.2795,-70.3971,-248.5099],"yaw":-3.28122,"spawnMask":1},{"id":"creature-47784","entityId":"entry-8892","position":[-1268.0655,-70.2593,-239.3669],"yaw":-3.28122,"spawnMask":1},{"id":"creature-47785","entityId":"entry-8892","position":[-1273.8215,-70.2712,-242.1379],"yaw":-3.28122,"spawnMask":1},{"id":"creature-47786","entityId":"entry-8895","position":[-1197.6195,-71.3063,-271.5959],"yaw":-4.17134,"spawnMask":1},{"id":"creature-47787","entityId":"entry-8893","position":[-1195.0245,-71.3066,-269.5639],"yaw":-4.18879,"spawnMask":1},{"id":"creature-47788","entityId":"entry-8893","position":[-1200.3265,-71.3061,-273.0789],"yaw":-4.13643,"spawnMask":1},{"id":"creature-47789","entityId":"entry-8894","position":[-1203.1275,-71.3059,-274.6169],"yaw":-4.11898,"spawnMask":1},{"id":"creature-47790","entityId":"entry-8894","position":[-1192.3805,-71.3069,-267.9649],"yaw":-4.20624,"spawnMask":1},{"id":"creature-47791","entityId":"entry-8921","position":[-1177.2825,-71.9445,-267.6849],"yaw":-4.10217,"spawnMask":1},{"id":"creature-47792","entityId":"entry-8921","position":[-1138.2825,-72.0984,-396.9917],"yaw":-2.76571,"spawnMask":1},{"id":"creature-47793","entityId":"entry-8910","position":[-1170.3695,-71.3238,-412.8573],"yaw":-5.11964,"spawnMask":1},{"id":"creature-47794","entityId":"entry-8921","position":[-1167.2855,-71.9446,-463.3352],"yaw":-6.06573,"spawnMask":1},{"id":"creature-47796","entityId":"entry-8910","position":[-1319.2945,-71.4618,-557.5759],"yaw":-2.58309,"spawnMask":1},{"id":"creature-47797","entityId":"entry-8910","position":[-1296.6245,-71.4252,-583.8769],"yaw":-2.16421,"spawnMask":1},{"id":"creature-47798","entityId":"entry-8921","position":[-1170.5875,-71.8579,-464.7891],"yaw":-0.191986,"spawnMask":1},{"id":"creature-47799","entityId":"entry-8895","position":[-1211.0865,-70.6032,-474.3321],"yaw":-2.3911,"spawnMask":1},{"id":"creature-47800","entityId":"entry-8893","position":[-1209.9835,-70.5896,-475.8722],"yaw":-2.36762,"spawnMask":1},{"id":"creature-47801","entityId":"entry-8894","position":[-1212.4505,-70.6063,-472.8694],"yaw":-2.25304,"spawnMask":1},{"id":"creature-47802","entityId":"entry-8893","position":[-1209.6325,-70.5434,-477.7006],"yaw":-2.80691,"spawnMask":1},{"id":"creature-47803","entityId":"entry-8892","position":[-1214.0375,-70.6201,-470.8426],"yaw":-2.3911,"spawnMask":1},{"id":"creature-47804","entityId":"entry-8912","position":[-903.4315,-68.9612,-603.8349],"yaw":-0.366519,"spawnMask":1},{"id":"creature-47805","entityId":"entry-8890","position":[-938.1335,-63.4995,-612.3299],"yaw":-0.820305,"spawnMask":1},{"id":"creature-47806","entityId":"entry-8921","position":[-929.0775,-63.1562,-528.4969],"yaw":-2.58309,"spawnMask":1},{"id":"creature-47807","entityId":"entry-8912","position":[-960.4685,-63.4313,-531.2399],"yaw":-1.41372,"spawnMask":1},{"id":"creature-47808","entityId":"entry-8921","position":[-906.1575,-62.736,-486.4545],"yaw":-1.36136,"spawnMask":1},{"id":"creature-47809","entityId":"entry-8921","position":[-936.5365,-61.9437,-461.1659],"yaw":-0.628253,"spawnMask":1},{"id":"creature-47810","entityId":"entry-8912","position":[-850.0865,-76.1217,-621.0819],"yaw":-5.14872,"spawnMask":1},{"id":"creature-47811","entityId":"entry-8890","position":[-824.7595,-68.0359,-525.6909],"yaw":-4.15388,"spawnMask":1},{"id":"creature-47812","entityId":"entry-8921","position":[-894.7605,-71.2293,-624.6879],"yaw":-4.50295,"spawnMask":1},{"id":"creature-47813","entityId":"entry-8890","position":[-866.4835,-76.2238,-607.1189],"yaw":-2.25148,"spawnMask":1},{"id":"creature-47814","entityId":"entry-8892","position":[-1177.3395,-73.7128,-599.9849],"yaw":-4.86947,"spawnMask":1},{"id":"creature-47815","entityId":"entry-8891","position":[-1179.4335,-80.6886,-634.3069],"yaw":-5.3058,"spawnMask":1},{"id":"creature-47816","entityId":"entry-8891","position":[-1163.4515,-68.7784,-563.1969],"yaw":-4.81711,"spawnMask":1},{"id":"creature-47817","entityId":"entry-8891","position":[-1048.7135,-63.4444,-652.1399],"yaw":-1.97222,"spawnMask":1},{"id":"creature-47818","entityId":"entry-8892","position":[-1118.2595,-66.6369,-547.8489],"yaw":-5.79449,"spawnMask":1},{"id":"creature-47819","entityId":"entry-8891","position":[-1188.4675,-70.7272,-560.1649],"yaw":-5.51524,"spawnMask":1},{"id":"creature-47820","entityId":"entry-8892","position":[-1118.5845,-80.5807,-697.7549],"yaw":-3.00197,"spawnMask":1},{"id":"creature-47821","entityId":"entry-8892","position":[-1164.9455,-69.1351,-566.8869],"yaw":-2.81399,"spawnMask":1},{"id":"creature-47822","entityId":"entry-8892","position":[-1196.0525,-76.2611,-608.7139],"yaw":-1.3439,"spawnMask":1},{"id":"creature-47823","entityId":"entry-8892","position":[-1130.0605,-81.3504,-673.1679],"yaw":-0.20944,"spawnMask":1},{"id":"creature-47824","entityId":"entry-8890","position":[-1022.9435,-60.4559,-470.2084],"yaw":-0.750492,"spawnMask":1},{"id":"creature-47825","entityId":"entry-8890","position":[-1033.6535,-60.3624,-534.8889],"yaw":-3.3539,"spawnMask":1},{"id":"creature-47826","entityId":"entry-8921","position":[-1035.5295,-60.067,-536.5169],"yaw":-3.60864,"spawnMask":1},{"id":"creature-47827","entityId":"entry-8921","position":[-1036.4155,-60.0695,-533.8309],"yaw":-3.60864,"spawnMask":1},{"id":"creature-47828","entityId":"entry-8889","position":[-1002.8485,-60.9102,-498.4753],"yaw":-5.23599,"spawnMask":1},{"id":"creature-47829","entityId":"entry-8890","position":[-1040.2845,-60.6673,-533.2649],"yaw":-1.90241,"spawnMask":1},{"id":"creature-47830","entityId":"entry-8921","position":[-1048.8695,-60.0862,-478.1713],"yaw":-2.3229,"spawnMask":1},{"id":"creature-47831","entityId":"entry-8921","position":[-1049.4875,-60.1069,-481.7588],"yaw":-2.20067,"spawnMask":1},{"id":"creature-47832","entityId":"entry-8921","position":[-1052.3145,-60.1947,-481.853],"yaw":-2.16334,"spawnMask":1},{"id":"creature-47833","entityId":"entry-8892","position":[-1160.0725,-43.8207,-491.2124],"yaw":-1.22173,"spawnMask":1},{"id":"creature-47834","entityId":"entry-8892","position":[-1088.0785,-43.0128,-496.5435],"yaw":-1.93731,"spawnMask":1},{"id":"creature-47835","entityId":"entry-8892","position":[-1163.6555,-43.715,-484.879],"yaw":-4.03171,"spawnMask":1},{"id":"creature-47837","entityId":"entry-8891","position":[-1197.9495,-44.2255,-552.4789],"yaw":-4.15388,"spawnMask":1},{"id":"creature-47838","entityId":"entry-8892","position":[-1221.0295,-44.4233,-536.8789],"yaw":-2.21657,"spawnMask":1},{"id":"creature-47839","entityId":"entry-8891","position":[-1154.8805,-58.0513,-462.3412],"yaw":-0.366519,"spawnMask":1},{"id":"creature-47840","entityId":"entry-8891","position":[-1141.5375,-43.9364,-510.0742],"yaw":-3.08923,"spawnMask":1},{"id":"creature-47841","entityId":"entry-8892","position":[-1152.4495,-44.1811,-530.4729],"yaw":-5.60251,"spawnMask":1},{"id":"creature-47842","entityId":"entry-8891","position":[-1098.6855,-43.0128,-510.9079],"yaw":-6.0912,"spawnMask":1},{"id":"creature-47843","entityId":"entry-8899","position":[-1212.1845,-58.0505,-419.7587],"yaw":-2.56563,"spawnMask":1},{"id":"creature-47844","entityId":"entry-8911","position":[-1221.5675,-43.6522,-422.4272],"yaw":-4.60767,"spawnMask":1},{"id":"creature-47845","entityId":"entry-8911","position":[-1245.2735,-43.4327,-378.9116],"yaw":-1.27409,"spawnMask":1},{"id":"creature-47846","entityId":"entry-8898","position":[-1218.5455,-43.459,-352.7729],"yaw":-5.13127,"spawnMask":1},{"id":"creature-47847","entityId":"entry-8899","position":[-1262.1695,-44.1418,-424.6975],"yaw":-0.401426,"spawnMask":1},{"id":"creature-47848","entityId":"entry-8898","position":[-1224.0525,-43.6633,-422.8044],"yaw":-4.93928,"spawnMask":1},{"id":"creature-47849","entityId":"entry-8898","position":[-1231.2965,-43.451,-384.6502],"yaw":-4.69494,"spawnMask":1},{"id":"creature-47850","entityId":"entry-8911","position":[-1208.1995,-58.0287,-354.3329],"yaw":-4.85202,"spawnMask":1},{"id":"creature-47868","entityId":"entry-8899","position":[-1291.4745,-44.2255,-459.583],"yaw":-1.91986,"spawnMask":1},{"id":"creature-47877","entityId":"entry-8899","position":[-1266.3785,-44.2255,-426.9043],"yaw":-1.8675,"spawnMask":1},{"id":"creature-47878","entityId":"entry-8902","position":[-1431.3555,-47.9278,-643.1999],"yaw":-4.74729,"spawnMask":1},{"id":"creature-47881","entityId":"entry-8902","position":[-1431.1535,-48.1103,-637.7859],"yaw":-5.44543,"spawnMask":1},{"id":"creature-47882","entityId":"entry-8902","position":[-1434.7015,-47.9716,-640.4509],"yaw":-2.67035,"spawnMask":1},{"id":"creature-47948","entityId":"entry-8900","position":[-1427.3855,-47.9278,-645.8519],"yaw":-1.53589,"spawnMask":1},{"id":"creature-47950","entityId":"entry-8911","position":[-1427.4155,-47.9278,-642.2259],"yaw":-4.76475,"spawnMask":1},{"id":"creature-47951","entityId":"entry-8911","position":[-1431.3665,-47.9278,-648.6889],"yaw":-1.5708,"spawnMask":1},{"id":"creature-47952","entityId":"entry-8911","position":[-1416.0595,-114.1951,-738.0539],"yaw":-5.21696,"spawnMask":1},{"id":"creature-47995","entityId":"entry-8911","position":[-1539.0495,-102.9381,-646.0389],"yaw":-0.180177,"spawnMask":1},{"id":"creature-47996","entityId":"entry-8911","position":[-1739.3095,-100.1011,-852.1839],"yaw":-1.85005,"spawnMask":1},{"id":"creature-47997","entityId":"entry-8911","position":[-1647.5095,-118.4171,-768.6539],"yaw":-2.67035,"spawnMask":1},{"id":"creature-48037","entityId":"entry-8911","position":[-1680.2195,-103.6761,-734.0529],"yaw":-0.855211,"spawnMask":1},{"id":"creature-48039","entityId":"entry-8911","position":[-1381.0025,-114.1971,-691.8239],"yaw":-5.61394,"spawnMask":1},{"id":"creature-48040","entityId":"entry-8911","position":[-1541.4895,-102.9381,-649.4999],"yaw":-2.11793,"spawnMask":1},{"id":"creature-48091","entityId":"entry-8911","position":[-1694.3995,-102.6911,-737.3979],"yaw":-4.61086,"spawnMask":1},{"id":"creature-48092","entityId":"entry-9547","position":[-1406.3665,-41.6955,-610.7649],"yaw":-4.85932,"spawnMask":1},{"id":"creature-48093","entityId":"entry-9547","position":[-1399.4235,-47.7489,-577.5149],"yaw":-5.38127,"spawnMask":1},{"id":"creature-48094","entityId":"entry-9545","position":[-1387.7565,-41.6955,-606.5689],"yaw":-4.80094,"spawnMask":1},{"id":"creature-48152","entityId":"entry-9545","position":[-1395.8295,-47.7487,-552.3229],"yaw":-3.18714,"spawnMask":1},{"id":"creature-48153","entityId":"entry-9554","position":[-1355.8125,-47.745,-586.3529],"yaw":-2.19405,"spawnMask":1},{"id":"creature-48168","entityId":"entry-9545","position":[-1413.3215,-40.7927,-619.9119],"yaw":-0.521002,"spawnMask":1},{"id":"creature-48169","entityId":"entry-9547","position":[-1404.7905,-47.7495,-571.8189],"yaw":-6.03025,"spawnMask":1},{"id":"creature-48170","entityId":"entry-9554","position":[-1403.8255,-41.6955,-620.6629],"yaw":-3.2657,"spawnMask":1},{"id":"creature-48171","entityId":"entry-9547","position":[-1401.8515,-47.7504,-547.8159],"yaw":-4.36103,"spawnMask":1},{"id":"creature-48172","entityId":"entry-9545","position":[-1420.5005,-41.6955,-613.0429],"yaw":-3.79794,"spawnMask":1},{"id":"creature-48173","entityId":"entry-8901","position":[-1910.5495,-92.7497,-842.7089],"yaw":-1.51663,"spawnMask":1},{"id":"creature-48174","entityId":"entry-8901","position":[-1911.2795,-92.7497,-844.6979],"yaw":-1.51698,"spawnMask":1},{"id":"creature-48203","entityId":"entry-8901","position":[-1908.7495,-92.7497,-846.1379],"yaw":-1.654,"spawnMask":1},{"id":"creature-48209","entityId":"entry-8901","position":[-1912.8995,-92.7497,-843.8349],"yaw":-1.52719,"spawnMask":1},{"id":"creature-71997","entityId":"entry-9541","position":[-1408.3375,-47.8342,-565.4219],"yaw":-0.57177,"spawnMask":1},{"id":"creature-71998","entityId":"entry-9541","position":[-1406.2805,-47.8342,-561.9449],"yaw":-0.499513,"spawnMask":1},{"id":"creature-71999","entityId":"entry-9541","position":[-1405.8545,-47.8337,-564.4829],"yaw":-0.339292,"spawnMask":1},{"id":"creature-72000","entityId":"entry-9537","position":[-1407.4405,-47.8351,-563.2229],"yaw":-0.527783,"spawnMask":1},{"id":"creature-88903","entityId":"entry-8901","position":[-1913.2595,-92.7497,-847.7319],"yaw":-1.63536,"spawnMask":1},{"id":"creature-88904","entityId":"entry-8901","position":[-1909.2795,-92.7497,-842.8809],"yaw":-1.58454,"spawnMask":1},{"id":"creature-88905","entityId":"entry-8901","position":[-2003.8595,-90.0462,-839.3329],"yaw":-4.90438,"spawnMask":1},{"id":"creature-88906","entityId":"entry-8901","position":[-2001.8195,-90.0462,-841.2779],"yaw":-5.95157,"spawnMask":1},{"id":"creature-88907","entityId":"entry-8901","position":[-2004.2595,-90.0462,-846.3009],"yaw":-1.55334,"spawnMask":1},{"id":"creature-88908","entityId":"entry-8901","position":[-1996.6095,-90.0462,-852.6989],"yaw":-3.59538,"spawnMask":1},{"id":"creature-88909","entityId":"entry-8901","position":[-1994.6095,-90.0444,-856.7629],"yaw":-1.79769,"spawnMask":1},{"id":"creature-88911","entityId":"entry-8901","position":[-1986.0095,-90.0341,-865.1569],"yaw":-2.35619,"spawnMask":1},{"id":"creature-90487","entityId":"entry-8901","position":[-2006.4095,-90.0462,-843.2109],"yaw":-2.67035,"spawnMask":1},{"id":"creature-90489","entityId":"entry-8901","position":[-1984.1895,-90.0271,-862.1329],"yaw":-5.13127,"spawnMask":1},{"id":"creature-90491","entityId":"entry-8901","position":[-1991.3095,-90.0385,-854.6059],"yaw":-0.226893,"spawnMask":1},{"id":"creature-90513","entityId":"entry-8901","position":[-1992.8095,-90.0412,-851.2869],"yaw":-5.11381,"spawnMask":1},{"id":"creature-90514","entityId":"entry-8911","position":[-1859.6095,-87.8754,-909.4669],"yaw":-1.46608,"spawnMask":1},{"id":"creature-90515","entityId":"entry-8901","position":[-1914.3895,-92.6664,-853.0019],"yaw":-4.5204,"spawnMask":1},{"id":"creature-90516","entityId":"entry-8901","position":[-1901.7595,-92.6664,-853.4249],"yaw":-0.471239,"spawnMask":1},{"id":"creature-90517","entityId":"entry-8901","position":[-1916.8595,-92.6664,-851.6839],"yaw":-0.558505,"spawnMask":1},{"id":"creature-90519","entityId":"entry-8901","position":[-1916.7095,-92.6664,-855.8949],"yaw":-2.09439,"spawnMask":1},{"id":"creature-90520","entityId":"entry-8901","position":[-1901.6795,-92.6664,-839.1599],"yaw":-0.558505,"spawnMask":1},{"id":"creature-90521","entityId":"entry-8901","position":[-1900.0195,-92.6664,-836.3969],"yaw":-1.41372,"spawnMask":1},{"id":"creature-90522","entityId":"entry-8901","position":[-1919.6695,-92.6664,-854.5779],"yaw":-4.17134,"spawnMask":1},{"id":"creature-90523","entityId":"entry-8901","position":[-1904.2095,-92.6664,-836.2839],"yaw":-2.51327,"spawnMask":1},{"id":"creature-90524","entityId":"entry-8901","position":[-1904.6895,-92.6664,-856.7069],"yaw":-5.55015,"spawnMask":1},{"id":"creature-90525","entityId":"entry-8901","position":[-1900.6395,-92.6664,-855.3849],"yaw":-1.97222,"spawnMask":1},{"id":"creature-90526","entityId":"entry-8901","position":[-1859.2895,-89.9997,-858.7849],"yaw":-4.46804,"spawnMask":1},{"id":"creature-90527","entityId":"entry-8901","position":[-1856.0895,-90.0063,-853.7569],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90528","entityId":"entry-8901","position":[-1879.9195,-90.0218,-856.3109],"yaw":-6.14356,"spawnMask":1},{"id":"creature-90529","entityId":"entry-8901","position":[-1841.0595,-90.0275,-871.7629],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90530","entityId":"entry-8901","position":[-1860.3495,-90.0046,-853.9669],"yaw":-6.03884,"spawnMask":1},{"id":"creature-90531","entityId":"entry-8901","position":[-1842.7995,-90.0005,-852.2989],"yaw":-2.47837,"spawnMask":1},{"id":"creature-90532","entityId":"entry-8901","position":[-1843.6795,-90.0187,-868.9459],"yaw":-5.48033,"spawnMask":1},{"id":"creature-90533","entityId":"entry-8901","position":[-1843.5395,-90.001,-848.9259],"yaw":-6.00393,"spawnMask":1},{"id":"creature-90534","entityId":"entry-8901","position":[-1846.3095,-89.9916,-849.9419],"yaw":-1.53589,"spawnMask":1},{"id":"creature-90535","entityId":"entry-8901","position":[-1875.4795,-90.0124,-859.9549],"yaw":-2.54818,"spawnMask":1},{"id":"creature-90536","entityId":"entry-8901","position":[-1945.6395,-90.01,-843.7809],"yaw":-1.85005,"spawnMask":1},{"id":"creature-90537","entityId":"entry-8901","position":[-1943.1295,-90.0145,-842.8709],"yaw":-1.06465,"spawnMask":1},{"id":"creature-90538","entityId":"entry-8901","position":[-1944.6695,-90.0184,-839.3279],"yaw":-4.60767,"spawnMask":1},{"id":"creature-90539","entityId":"entry-8901","position":[-1962.0695,-90.009,-847.8489],"yaw":-3.31613,"spawnMask":1},{"id":"creature-90540","entityId":"entry-8901","position":[-1958.0895,-90.0098,-821.1559],"yaw":-0.453786,"spawnMask":1},{"id":"creature-90541","entityId":"entry-8901","position":[-1961.6195,-90.0088,-818.7449],"yaw":-3.90954,"spawnMask":1},{"id":"creature-90542","entityId":"entry-8901","position":[-1969.1295,-90.0037,-835.2759],"yaw":-3.00197,"spawnMask":1},{"id":"creature-90543","entityId":"entry-8901","position":[-1964.7495,-90.0035,-832.9099],"yaw":-5.74213,"spawnMask":1},{"id":"creature-90544","entityId":"entry-8901","position":[-1964.6995,-89.9974,-836.4509],"yaw":-0.331613,"spawnMask":1},{"id":"creature-90545","entityId":"entry-8901","position":[-1958.9295,-90.0103,-848.0259],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90546","entityId":"entry-8901","position":[-1927.9195,-90.0184,-952.0389],"yaw":-5.65487,"spawnMask":1},{"id":"creature-90547","entityId":"entry-8901","position":[-1925.6895,-90.0036,-931.9159],"yaw":-0.977384,"spawnMask":1},{"id":"creature-90548","entityId":"entry-8901","position":[-1925.2195,-90.0047,-947.2649],"yaw":-5.0091,"spawnMask":1},{"id":"creature-90549","entityId":"entry-8901","position":[-1928.7495,-90.0036,-929.6119],"yaw":-5.70723,"spawnMask":1},{"id":"creature-90550","entityId":"entry-8901","position":[-1928.3495,-90.0036,-935.0619],"yaw":-3.1765,"spawnMask":1},{"id":"creature-90551","entityId":"entry-8901","position":[-1944.3295,-90.0141,-930.8749],"yaw":-2.96706,"spawnMask":1},{"id":"creature-90552","entityId":"entry-8901","position":[-1941.9995,-90.0231,-953.6729],"yaw":-0.244346,"spawnMask":1},{"id":"creature-90553","entityId":"entry-8901","position":[-1948.9095,-90.0244,-934.9819],"yaw":-0.610865,"spawnMask":1},{"id":"creature-90554","entityId":"entry-8901","position":[-1929.3595,-90.0058,-947.6449],"yaw":-3.71755,"spawnMask":1},{"id":"creature-90555","entityId":"entry-8901","position":[-1945.0695,-90.0252,-950.4489],"yaw":-3.92699,"spawnMask":1},{"id":"creature-90556","entityId":"entry-8901","position":[-1892.9195,-90.018,-784.9579],"yaw":-3.12414,"spawnMask":1},{"id":"creature-90557","entityId":"entry-8901","position":[-1874.5395,-89.9949,-769.3119],"yaw":-1.20428,"spawnMask":1},{"id":"creature-90558","entityId":"entry-8901","position":[-1875.0595,-90.0246,-753.1519],"yaw":-2.46091,"spawnMask":1},{"id":"creature-90559","entityId":"entry-8901","position":[-1891.7895,-90.0162,-788.1699],"yaw":-0.925025,"spawnMask":1},{"id":"creature-90560","entityId":"entry-8901","position":[-1874.2895,-90.0326,-750.9789],"yaw":-5.13127,"spawnMask":1},{"id":"creature-90561","entityId":"entry-8901","position":[-1887.7795,-90.0028,-767.4309],"yaw":-4.85202,"spawnMask":1},{"id":"creature-90562","entityId":"entry-8901","position":[-1875.8195,-89.9973,-787.1399],"yaw":-2.00713,"spawnMask":1},{"id":"creature-90563","entityId":"entry-8901","position":[-1877.1095,-89.995,-784.4319],"yaw":-5.95157,"spawnMask":1},{"id":"creature-90564","entityId":"entry-8901","position":[-1891.3395,-90.0006,-771.2399],"yaw":-3.56047,"spawnMask":1},{"id":"creature-90565","entityId":"entry-8901","position":[-1873.5895,-90.0031,-773.0839],"yaw":-5.06145,"spawnMask":1},{"id":"creature-90566","entityId":"entry-8901","position":[-1818.2095,-90.0462,-853.6839],"yaw":-1.55334,"spawnMask":1},{"id":"creature-90567","entityId":"entry-8901","position":[-1823.0795,-90.0462,-859.0899],"yaw":-3.35103,"spawnMask":1},{"id":"creature-90568","entityId":"entry-8901","position":[-1819.7695,-90.0462,-859.4919],"yaw":-6.26573,"spawnMask":1},{"id":"creature-90569","entityId":"entry-8901","position":[-1827.5695,-90.0404,-851.8219],"yaw":-3.36848,"spawnMask":1},{"id":"creature-90570","entityId":"entry-8901","position":[-1813.3795,-90.0462,-847.2049],"yaw":-3.03687,"spawnMask":1},{"id":"creature-90571","entityId":"entry-8901","position":[-1823.6395,-90.0462,-853.0679],"yaw":-0.541052,"spawnMask":1},{"id":"creature-90572","entityId":"entry-8901","position":[-1826.4495,-90.0424,-850.3729],"yaw":-3.97935,"spawnMask":1},{"id":"creature-90573","entityId":"entry-8901","position":[-1811.0095,-90.0462,-849.2729],"yaw":-1.85005,"spawnMask":1},{"id":"creature-90574","entityId":"entry-8901","position":[-1818.8495,-90.0462,-851.8219],"yaw":-4.13643,"spawnMask":1},{"id":"creature-90575","entityId":"entry-8901","position":[-1809.4795,-90.0462,-846.2339],"yaw":-5.60251,"spawnMask":1},{"id":"creature-90576","entityId":"entry-8901","position":[-1975.3895,-90.0293,-919.6959],"yaw":-4.85202,"spawnMask":1},{"id":"creature-90577","entityId":"entry-8901","position":[-1978.6595,-90.0349,-922.4189],"yaw":-1.88496,"spawnMask":1},{"id":"creature-90578","entityId":"entry-8901","position":[-1962.1895,-90.0375,-938.7719],"yaw":-5.02655,"spawnMask":1},{"id":"creature-90579","entityId":"entry-8901","position":[-1974.4395,-90.0355,-935.5099],"yaw":-1.48353,"spawnMask":1},{"id":"creature-90580","entityId":"entry-8901","position":[-1978.4195,-90.0364,-933.1999],"yaw":-5.88176,"spawnMask":1},{"id":"creature-90581","entityId":"entry-8901","position":[-1961.2295,-90.0293,-934.1199],"yaw":-0.383972,"spawnMask":1},{"id":"creature-90582","entityId":"entry-8901","position":[-1975.7895,-90.0229,-907.2129],"yaw":-2.40855,"spawnMask":1},{"id":"creature-90583","entityId":"entry-8901","position":[-1978.0895,-90.0387,-937.2769],"yaw":-6.0912,"spawnMask":1},{"id":"creature-90584","entityId":"entry-8901","position":[-1979.4795,-90.0299,-905.4839],"yaw":-1.06465,"spawnMask":1},{"id":"creature-90585","entityId":"entry-8901","position":[-1979.7595,-90.037,-918.8209],"yaw":-0.314159,"spawnMask":1},{"id":"creature-90586","entityId":"entry-8906","position":[-1336.4605,-51.6464,-358.0275],"yaw":-3.1765,"spawnMask":1},{"id":"creature-90587","entityId":"entry-8900","position":[-1333.8565,-51.6555,-359.3007],"yaw":-0.139626,"spawnMask":1},{"id":"creature-90588","entityId":"entry-8920","position":[-1317.6875,-51.7269,-410.6476],"yaw":-3.01942,"spawnMask":1},{"id":"creature-90589","entityId":"entry-8920","position":[-1308.0345,-51.7269,-362.6224],"yaw":-4.7822,"spawnMask":1},{"id":"creature-90590","entityId":"entry-8906","position":[-1308.5315,-51.7269,-365.1877],"yaw":-3.19395,"spawnMask":1},{"id":"creature-90591","entityId":"entry-8920","position":[-1330.0935,-51.7394,-375.0172],"yaw":-5.67365,"spawnMask":1},{"id":"creature-90592","entityId":"entry-8920","position":[-1322.8575,-51.7061,-444.5439],"yaw":-5.28835,"spawnMask":1},{"id":"creature-90593","entityId":"entry-8900","position":[-1303.4925,-51.8069,-419.7624],"yaw":-1.59027,"spawnMask":1},{"id":"creature-90594","entityId":"entry-8900","position":[-1289.4855,-51.6933,-354.528],"yaw":-3.24631,"spawnMask":1},{"id":"creature-90595","entityId":"entry-8906","position":[-1309.5635,-51.7264,-419.5893],"yaw":-1.72788,"spawnMask":1},{"id":"creature-90596","entityId":"entry-8904","position":[-1935.3695,-89.9734,-1232.0509],"yaw":-2.93215,"spawnMask":1},{"id":"creature-90597","entityId":"entry-8904","position":[-1924.7095,-89.9733,-1226.5329],"yaw":-5.67232,"spawnMask":1},{"id":"creature-90598","entityId":"entry-8915","position":[-1927.8595,-89.9734,-1234.1169],"yaw":-0.698132,"spawnMask":1},{"id":"creature-90599","entityId":"entry-8915","position":[-1935.3695,-89.9734,-1226.6819],"yaw":-3.97935,"spawnMask":1},{"id":"creature-90600","entityId":"entry-8903","position":[-1884.2495,-83.1387,-1206.1569],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90601","entityId":"entry-8899","position":[-1910.3095,-90.7153,-1203.2009],"yaw":-5.88176,"spawnMask":1},{"id":"creature-90602","entityId":"entry-8904","position":[-1941.0695,-83.1447,-1209.8239],"yaw":-3.66519,"spawnMask":1},{"id":"creature-90603","entityId":"entry-8904","position":[-1935.8195,-83.1405,-1208.2839],"yaw":-5.18363,"spawnMask":1},{"id":"creature-90604","entityId":"entry-8915","position":[-1941.1895,-83.1443,-1214.2479],"yaw":-2.54818,"spawnMask":1},{"id":"creature-90605","entityId":"entry-8915","position":[-1935.8395,-83.1429,-1211.6519],"yaw":-6.16101,"spawnMask":1},{"id":"creature-90606","entityId":"entry-8904","position":[-1936.0495,-89.9734,-1132.6839],"yaw":-3.92699,"spawnMask":1},{"id":"creature-90607","entityId":"entry-8904","position":[-1930.6895,-89.9734,-1138.3399],"yaw":-0.436332,"spawnMask":1},{"id":"creature-90608","entityId":"entry-8904","position":[-1937.4595,-89.9734,-1138.6199],"yaw":-2.75762,"spawnMask":1},{"id":"creature-90609","entityId":"entry-8904","position":[-1933.7595,-89.9734,-1141.5169],"yaw":-1.32645,"spawnMask":1},{"id":"creature-90610","entityId":"entry-8915","position":[-1931.8495,-89.9734,-1133.4959],"yaw":-5.25344,"spawnMask":1},{"id":"creature-90611","entityId":"entry-8899","position":[-1938.2695,-83.1442,-1153.4239],"yaw":-5.61996,"spawnMask":1},{"id":"creature-90612","entityId":"entry-8904","position":[-1882.2495,-89.9734,-1142.8679],"yaw":-0.698132,"spawnMask":1},{"id":"creature-90613","entityId":"entry-8904","position":[-1881.6795,-89.9734,-1137.0439],"yaw":-0.034907,"spawnMask":1},{"id":"creature-90614","entityId":"entry-8904","position":[-1888.0695,-89.9734,-1136.7899],"yaw":-3.49066,"spawnMask":1},{"id":"creature-90615","entityId":"entry-8904","position":[-1884.0595,-89.9734,-1133.1789],"yaw":-5.39307,"spawnMask":1},{"id":"creature-90616","entityId":"entry-8904","position":[-1886.2695,-89.9734,-1143.1519],"yaw":-1.74533,"spawnMask":1},{"id":"creature-90617","entityId":"entry-8904","position":[-1874.9095,-83.1451,-1209.8889],"yaw":-5.55015,"spawnMask":1},{"id":"creature-90618","entityId":"entry-8904","position":[-1881.2495,-83.1441,-1212.9389],"yaw":-3.15905,"spawnMask":1},{"id":"creature-90619","entityId":"entry-8904","position":[-1879.5295,-83.1447,-1209.6059],"yaw":-4.36332,"spawnMask":1},{"id":"creature-90620","entityId":"entry-8915","position":[-1879.1195,-83.144,-1216.3079],"yaw":-1.79769,"spawnMask":1},{"id":"creature-90621","entityId":"entry-8899","position":[-1935.6995,-83.1355,-1201.3439],"yaw":-5.32325,"spawnMask":1},{"id":"creature-90622","entityId":"entry-8894","position":[-1333.3435,-41.2097,-682.2539],"yaw":-2.53073,"spawnMask":1},{"id":"creature-90623","entityId":"entry-8892","position":[-1298.4495,-41.3765,-716.3519],"yaw":-4.32842,"spawnMask":1},{"id":"creature-90624","entityId":"entry-8896","position":[-1093.9295,-41.0931,-683.7919],"yaw":-3.36848,"spawnMask":1},{"id":"creature-90625","entityId":"entry-8896","position":[-1085.8005,-41.0931,-686.4169],"yaw":-0.401426,"spawnMask":1},{"id":"creature-90626","entityId":"entry-8896","position":[-1090.7665,-41.0931,-680.4159],"yaw":-4.46804,"spawnMask":1},{"id":"creature-90627","entityId":"entry-8896","position":[-1082.0115,-41.0931,-675.2699],"yaw":-5.35816,"spawnMask":1},{"id":"creature-90628","entityId":"entry-8897","position":[-1084.7035,-41.0931,-678.3569],"yaw":-2.32129,"spawnMask":1},{"id":"creature-90629","entityId":"entry-8894","position":[-1089.4335,-41.0931,-689.2319],"yaw":-1.50098,"spawnMask":1},{"id":"creature-90630","entityId":"entry-8892","position":[-1347.5345,-41.2851,-711.9239],"yaw":-2.70526,"spawnMask":1},{"id":"creature-90631","entityId":"entry-8896","position":[-1442.9305,-47.9291,-716.8299],"yaw":-4.06662,"spawnMask":1},{"id":"creature-90632","entityId":"entry-8896","position":[-1439.5515,-47.9271,-719.9249],"yaw":-0.488692,"spawnMask":1},{"id":"creature-90633","entityId":"entry-8913","position":[-1442.7635,-47.9311,-720.2749],"yaw":-2.3911,"spawnMask":1},{"id":"creature-90634","entityId":"entry-8897","position":[-1439.7765,-47.9235,-717.2029],"yaw":-5.44543,"spawnMask":1},{"id":"creature-90635","entityId":"entry-8895","position":[-1436.6025,-47.9278,-713.8979],"yaw":-0.436332,"spawnMask":1},{"id":"creature-90636","entityId":"entry-8913","position":[-1439.5355,-47.9188,-712.2159],"yaw":-3.75246,"spawnMask":1},{"id":"creature-90637","entityId":"entry-8894","position":[-1324.8185,-41.2864,-713.3289],"yaw":-4.2586,"spawnMask":1},{"id":"creature-90638","entityId":"entry-8910","position":[-1184.1705,-41.1749,-681.8629],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90639","entityId":"entry-8910","position":[-1186.8115,-41.2752,-705.2629],"yaw":-0.244346,"spawnMask":1},{"id":"creature-90640","entityId":"entry-8893","position":[-1311.5425,-41.3745,-651.1929],"yaw":-4.11218,"spawnMask":1},{"id":"creature-90641","entityId":"entry-8896","position":[-1374.2575,-48.2745,-742.7709],"yaw":-3.40339,"spawnMask":1},{"id":"creature-90642","entityId":"entry-8896","position":[-1363.8035,-48.27,-724.6899],"yaw":-6.03884,"spawnMask":1},{"id":"creature-90643","entityId":"entry-8896","position":[-1357.4955,-48.2732,-736.9409],"yaw":-2.07694,"spawnMask":1},{"id":"creature-90644","entityId":"entry-8913","position":[-1355.6745,-48.2625,-731.7979],"yaw":-4.90438,"spawnMask":1},{"id":"creature-90645","entityId":"entry-8913","position":[-1369.5945,-48.2745,-743.8219],"yaw":-0.191986,"spawnMask":1},{"id":"creature-90646","entityId":"entry-8914","position":[-1369.7315,-48.2761,-726.5949],"yaw":-2.74017,"spawnMask":1},{"id":"creature-90647","entityId":"entry-8896","position":[-1327.6095,-41.212,-673.0289],"yaw":-4.39823,"spawnMask":1},{"id":"creature-90648","entityId":"entry-8896","position":[-1324.2045,-41.2703,-676.4689],"yaw":-5.95157,"spawnMask":1},{"id":"creature-90649","entityId":"entry-8913","position":[-1332.1145,-41.1912,-677.8749],"yaw":-2.77507,"spawnMask":1},{"id":"creature-90650","entityId":"entry-8914","position":[-1326.8985,-41.2689,-680.6849],"yaw":-1.72788,"spawnMask":1},{"id":"creature-90651","entityId":"entry-8921","position":[-1134.5115,-72.1205,-365.674],"yaw":-2.07537,"spawnMask":1},{"id":"creature-90652","entityId":"entry-8921","position":[-1168.0645,-71.9429,-460.4818],"yaw":-2.76303,"spawnMask":1},{"id":"creature-90653","entityId":"entry-8895","position":[-1208.7025,-70.1648,-536.7439],"yaw":-4.34226,"spawnMask":1},{"id":"creature-90654","entityId":"entry-8893","position":[-1209.0495,-70.1633,-537.6419],"yaw":-3.87625,"spawnMask":1},{"id":"creature-90655","entityId":"entry-8893","position":[-1209.5865,-70.1524,-536.3969],"yaw":-5.45412,"spawnMask":1},{"id":"creature-90656","entityId":"entry-8893","position":[-1210.3485,-70.1388,-535.2439],"yaw":-4.13096,"spawnMask":1},{"id":"creature-90657","entityId":"entry-8894","position":[-1206.8385,-70.1862,-536.0199],"yaw":-5.13357,"spawnMask":1},{"id":"creature-90658","entityId":"entry-8895","position":[-1191.9965,-70.2566,-218.1249],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90659","entityId":"entry-8893","position":[-1186.9965,-70.2527,-217.6309],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90660","entityId":"entry-8894","position":[-1190.0385,-70.1801,-212.3729],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90661","entityId":"entry-8893","position":[-1181.9545,-70.2079,-214.1139],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90662","entityId":"entry-8892","position":[-1184.4155,-70.2162,-208.9009],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90663","entityId":"entry-8910","position":[-1374.2765,-70.2516,-614.6879],"yaw":-4.06662,"spawnMask":1},{"id":"creature-90664","entityId":"entry-8910","position":[-1360.5265,-70.0386,-638.5659],"yaw":-1.13446,"spawnMask":1},{"id":"creature-90665","entityId":"entry-8910","position":[-1350.9805,-71.1892,-584.8969],"yaw":-4.08407,"spawnMask":1},{"id":"creature-90666","entityId":"entry-8910","position":[-1331.4365,-70.8179,-617.8139],"yaw":-1.13446,"spawnMask":1},{"id":"creature-90667","entityId":"entry-8895","position":[-1197.1825,-71.8619,-308.5509],"yaw":-5.81195,"spawnMask":1},{"id":"creature-90668","entityId":"entry-8893","position":[-1204.6455,-71.8619,-306.4409],"yaw":-2.51327,"spawnMask":1},{"id":"creature-90669","entityId":"entry-8893","position":[-1202.8715,-71.8619,-309.6199],"yaw":-2.58309,"spawnMask":1},{"id":"creature-90670","entityId":"entry-8894","position":[-1200.9845,-71.8619,-312.9535],"yaw":-2.60054,"spawnMask":1},{"id":"creature-90671","entityId":"entry-8894","position":[-1199.0725,-71.8619,-316.3113],"yaw":-2.56563,"spawnMask":1},{"id":"creature-90672","entityId":"entry-8921","position":[-1272.5345,-70.0705,-470.5016],"yaw":-2.42601,"spawnMask":1},{"id":"creature-90673","entityId":"entry-8921","position":[-1270.7475,-69.7938,-466.6376],"yaw":-2.89725,"spawnMask":1},{"id":"creature-90674","entityId":"entry-8921","position":[-1270.4325,-69.8012,-462.4715],"yaw":-3.52556,"spawnMask":1},{"id":"creature-90675","entityId":"entry-8895","position":[-1181.0245,-71.9452,-348.909],"yaw":-2.74017,"spawnMask":1},{"id":"creature-90676","entityId":"entry-8893","position":[-1178.0855,-71.9455,-341.855],"yaw":-5.93412,"spawnMask":1},{"id":"creature-90677","entityId":"entry-8893","position":[-1176.6295,-71.9455,-345.1659],"yaw":-5.91667,"spawnMask":1},{"id":"creature-90678","entityId":"entry-8894","position":[-1175.4305,-71.9455,-348.4735],"yaw":-5.8294,"spawnMask":1},{"id":"creature-90679","entityId":"entry-8894","position":[-1174.0705,-71.9455,-351.2265],"yaw":-5.81195,"spawnMask":1},{"id":"creature-90680","entityId":"entry-8895","position":[-1265.8165,-69.9348,-469.1077],"yaw":-3.92699,"spawnMask":1},{"id":"creature-90681","entityId":"entry-8893","position":[-1266.7055,-69.9197,-469.7551],"yaw":-5.31331,"spawnMask":1},{"id":"creature-90682","entityId":"entry-8894","position":[-1264.8155,-69.9741,-468.436],"yaw":-2.0785,"spawnMask":1},{"id":"creature-90683","entityId":"entry-8893","position":[-1268.6455,-69.8845,-471.9361],"yaw":-5.29402,"spawnMask":1},{"id":"creature-90684","entityId":"entry-8892","position":[-1262.9885,-70.0426,-466.2793],"yaw":-2.07851,"spawnMask":1},{"id":"creature-90685","entityId":"entry-8890","position":[-820.6725,-67.9257,-528.0959],"yaw":-0.558505,"spawnMask":1},{"id":"creature-90686","entityId":"entry-8921","position":[-934.7565,-60.1423,-483.9017],"yaw":-2.82692,"spawnMask":1},{"id":"creature-90687","entityId":"entry-8921","position":[-941.7635,-60.4992,-488.2858],"yaw":-2.82692,"spawnMask":1},{"id":"creature-90688","entityId":"entry-8921","position":[-944.3015,-60.7422,-487.0085],"yaw":-2.82692,"spawnMask":1},{"id":"creature-90689","entityId":"entry-8891","position":[-927.8095,-63.1718,-521.7279],"yaw":-4.81711,"spawnMask":1},{"id":"creature-90690","entityId":"entry-8890","position":[-923.1585,-62.9408,-553.7859],"yaw":-4.62512,"spawnMask":1},{"id":"creature-90691","entityId":"entry-8890","position":[-962.1945,-63.2994,-526.2219],"yaw":-3.90954,"spawnMask":1},{"id":"creature-90692","entityId":"entry-8891","position":[-908.8285,-67.7931,-602.1199],"yaw":-3.40339,"spawnMask":1},{"id":"creature-90693","entityId":"entry-8921","position":[-990.1635,-61.7702,-546.8519],"yaw":-3.05433,"spawnMask":1},{"id":"creature-90694","entityId":"entry-8921","position":[-973.4155,-61.7959,-492.9385],"yaw":-5.16617,"spawnMask":1},{"id":"creature-90695","entityId":"entry-8912","position":[-890.3025,-62.9408,-572.1569],"yaw":-3.03687,"spawnMask":1},{"id":"creature-90696","entityId":"entry-8890","position":[-977.5335,-60.1883,-500.458],"yaw":0,"spawnMask":1},{"id":"creature-90697","entityId":"entry-8890","position":[-977.2035,-60.9034,-490.1015],"yaw":-6.16101,"spawnMask":1},{"id":"creature-90698","entityId":"entry-8892","position":[-1118.7345,-79.5892,-682.1889],"yaw":-3.66308,"spawnMask":1},{"id":"creature-90699","entityId":"entry-8921","position":[-1043.2495,-57.1531,-615.6059],"yaw":-0.645772,"spawnMask":1},{"id":"creature-90700","entityId":"entry-8921","position":[-1038.9715,-57.3713,-603.8019],"yaw":-3.87463,"spawnMask":1},{"id":"creature-90701","entityId":"entry-8921","position":[-1041.8465,-57.6248,-609.4319],"yaw":-3.14159,"spawnMask":1},{"id":"creature-90702","entityId":"entry-8891","position":[-1050.0415,-63.7188,-651.1839],"yaw":-2.28638,"spawnMask":1},{"id":"creature-90703","entityId":"entry-8892","position":[-1046.5065,-62.5084,-646.6049],"yaw":-5.06145,"spawnMask":1},{"id":"creature-90704","entityId":"entry-8891","position":[-1155.9925,-70.8679,-535.1939],"yaw":-2.9147,"spawnMask":1},{"id":"creature-90705","entityId":"entry-8892","position":[-1031.3115,-60.0748,-568.6929],"yaw":-1.93731,"spawnMask":1},{"id":"creature-90706","entityId":"entry-8891","position":[-1041.0345,-59.8748,-565.1939],"yaw":-1.93731,"spawnMask":1},{"id":"creature-90707","entityId":"entry-8891","position":[-1154.8735,-81.9507,-689.0649],"yaw":-0.575959,"spawnMask":1},{"id":"creature-90708","entityId":"entry-8891","position":[-1149.4855,-70.6154,-533.3809],"yaw":-5.95157,"spawnMask":1},{"id":"creature-90709","entityId":"entry-8891","position":[-1198.0035,-75.5522,-602.4659],"yaw":-5.07891,"spawnMask":1},{"id":"creature-90710","entityId":"entry-8892","position":[-1187.5165,-81.296,-640.2749],"yaw":-2.82743,"spawnMask":1},{"id":"creature-90711","entityId":"entry-8891","position":[-1158.2035,-43.7079,-487.6727],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90712","entityId":"entry-8892","position":[-1140.2705,-58.0495,-451.2043],"yaw":-0.506145,"spawnMask":1},{"id":"creature-90713","entityId":"entry-8892","position":[-1101.3565,-43.0128,-510.9069],"yaw":-3.29867,"spawnMask":1},{"id":"creature-90714","entityId":"entry-8891","position":[-1138.7145,-43.8057,-509.8468],"yaw":-6.17846,"spawnMask":1},{"id":"creature-90715","entityId":"entry-8892","position":[-1117.1525,-58.0503,-448.1398],"yaw":-2.53073,"spawnMask":1},{"id":"creature-90716","entityId":"entry-8909","position":[-1163.9955,-43.7273,-487.714],"yaw":-3.1765,"spawnMask":1},{"id":"creature-90717","entityId":"entry-8892","position":[-1111.6195,-58.0511,-444.7427],"yaw":-5.95157,"spawnMask":1},{"id":"creature-90718","entityId":"entry-8891","position":[-1116.9405,-58.0509,-445.5499],"yaw":-3.03687,"spawnMask":1},{"id":"creature-90719","entityId":"entry-8891","position":[-1160.6605,-44.0221,-519.7079],"yaw":-1.50098,"spawnMask":1},{"id":"creature-90720","entityId":"entry-8891","position":[-1198.3385,-44.2255,-554.9029],"yaw":-2.21657,"spawnMask":1},{"id":"creature-90721","entityId":"entry-8899","position":[-1284.6795,-44.2255,-462.2766],"yaw":-2.11185,"spawnMask":1},{"id":"creature-90722","entityId":"entry-8898","position":[-1231.4405,-43.4507,-391.2828],"yaw":-1.6057,"spawnMask":1},{"id":"creature-90723","entityId":"entry-8911","position":[-1265.5835,-44.21,-422.7092],"yaw":-4.29351,"spawnMask":1},{"id":"creature-90724","entityId":"entry-8911","position":[-1248.6815,-43.0128,-348.9572],"yaw":-4.53786,"spawnMask":1},{"id":"creature-90725","entityId":"entry-8898","position":[-1247.5615,-43.0128,-352.7576],"yaw":-1.25664,"spawnMask":1},{"id":"creature-90726","entityId":"entry-8898","position":[-1207.2595,-58.0507,-418.4148],"yaw":-6.0912,"spawnMask":1},{"id":"creature-90727","entityId":"entry-8911","position":[-1225.1355,-43.6788,-425.9022],"yaw":-1.98968,"spawnMask":1},{"id":"creature-90729","entityId":"entry-8911","position":[-1512.9795,-114.4861,-689.0719],"yaw":-2.10731,"spawnMask":1},{"id":"creature-90730","entityId":"entry-8911","position":[-1683.3095,-102.4051,-723.7389],"yaw":-4.20332,"spawnMask":1},{"id":"creature-90731","entityId":"entry-8911","position":[-1669.4995,-102.8431,-859.2779],"yaw":-1.11701,"spawnMask":1},{"id":"creature-90732","entityId":"entry-8911","position":[-1662.4195,-101.3771,-854.5839],"yaw":-0.820305,"spawnMask":1},{"id":"creature-90733","entityId":"entry-8911","position":[-1658.4395,-100.2371,-847.5709],"yaw":-0.523599,"spawnMask":1},{"id":"creature-90734","entityId":"entry-8911","position":[-1470.3415,-114.3101,-720.6809],"yaw":-1.64001,"spawnMask":1},{"id":"creature-90735","entityId":"entry-8911","position":[-1597.2495,-114.4311,-674.8439],"yaw":-3.96163,"spawnMask":1},{"id":"creature-90736","entityId":"entry-8911","position":[-1461.8165,-114.4041,-660.5099],"yaw":-3.49474,"spawnMask":1},{"id":"creature-90737","entityId":"entry-9554","position":[-1356.7855,-47.745,-573.2489],"yaw":-5.48649,"spawnMask":1},{"id":"creature-90738","entityId":"entry-9554","position":[-1403.2255,-40.7024,-623.7869],"yaw":-5.28143,"spawnMask":1},{"id":"creature-90739","entityId":"entry-9547","position":[-1410.8685,-41.6955,-619.9329],"yaw":-5.08309,"spawnMask":1},{"id":"creature-90740","entityId":"entry-9545","position":[-1399.4705,-47.7493,-554.3119],"yaw":-2.64149,"spawnMask":1},{"id":"creature-90741","entityId":"entry-9547","position":[-1419.1345,-40.6955,-616.0419],"yaw":-0.153653,"spawnMask":1},{"id":"creature-90742","entityId":"entry-9547","position":[-1410.1145,-41.917,-590.1979],"yaw":-0.199057,"spawnMask":1},{"id":"creature-90743","entityId":"entry-9554","position":[-1347.2795,-47.745,-588.8229],"yaw":-5.18238,"spawnMask":1},{"id":"creature-90744","entityId":"entry-9545","position":[-1343.8745,-47.745,-582.3169],"yaw":-2.39913,"spawnMask":1},{"id":"creature-90745","entityId":"entry-9547","position":[-1411.6795,-41.6955,-622.0209],"yaw":-1.9415,"spawnMask":1},{"id":"creature-90746","entityId":"entry-9545","position":[-1361.1595,-47.745,-566.8119],"yaw":-4.1155,"spawnMask":1},{"id":"creature-90747","entityId":"entry-8901","position":[-1978.4195,-90.0267,-767.0819],"yaw":-0.698132,"spawnMask":1},{"id":"creature-90748","entityId":"entry-8901","position":[-1980.3995,-90.0258,-769.9699],"yaw":-2.16421,"spawnMask":1},{"id":"creature-90749","entityId":"entry-8901","position":[-1980.6895,-90.0273,-783.9419],"yaw":-1.11701,"spawnMask":1},{"id":"creature-90750","entityId":"entry-8901","position":[-1975.7395,-90.0198,-768.7779],"yaw":-3.15905,"spawnMask":1},{"id":"creature-90751","entityId":"entry-8901","position":[-1978.6495,-90.0174,-786.2889],"yaw":-5.70723,"spawnMask":1},{"id":"creature-90752","entityId":"entry-8901","position":[-1963.8095,-90.0245,-756.1189],"yaw":-6.00393,"spawnMask":1},{"id":"creature-90753","entityId":"entry-8901","position":[-1966.8695,-90.0249,-757.5919],"yaw":-3.33358,"spawnMask":1},{"id":"creature-90754","entityId":"entry-8901","position":[-1977.1795,-90.0103,-772.3059],"yaw":-3.52556,"spawnMask":1},{"id":"creature-90755","entityId":"entry-8901","position":[-1966.4795,-90.0315,-754.5519],"yaw":-1.74533,"spawnMask":1},{"id":"creature-90756","entityId":"entry-8901","position":[-1968.7395,-90.0293,-755.9819],"yaw":-3.21141,"spawnMask":1},{"id":"creature-90757","entityId":"entry-8901","position":[-1916.5095,-90.0345,-750.9929],"yaw":-1.36136,"spawnMask":1},{"id":"creature-90758","entityId":"entry-8901","position":[-1917.8295,-90.0188,-754.4739],"yaw":-1.88496,"spawnMask":1},{"id":"creature-90759","entityId":"entry-8901","position":[-1937.6695,-90.0462,-727.3649],"yaw":-6.17846,"spawnMask":1},{"id":"creature-90760","entityId":"entry-8901","position":[-1940.3895,-90.0375,-750.9209],"yaw":-1.85005,"spawnMask":1},{"id":"creature-90761","entityId":"entry-8901","position":[-1932.0195,-90.0462,-731.8879],"yaw":-1.71042,"spawnMask":1},{"id":"creature-90762","entityId":"entry-8901","position":[-1934.1495,-90.0462,-745.8979],"yaw":-0.20944,"spawnMask":1},{"id":"creature-90763","entityId":"entry-8901","position":[-1914.2095,-90.0152,-755.2859],"yaw":-1.88496,"spawnMask":1},{"id":"creature-90764","entityId":"entry-8901","position":[-1932.8795,-90.0462,-726.9369],"yaw":-3.59538,"spawnMask":1},{"id":"creature-90765","entityId":"entry-8901","position":[-1935.8095,-90.0462,-733.0989],"yaw":-0.733038,"spawnMask":1},{"id":"creature-90766","entityId":"entry-8901","position":[-1940.6495,-90.0462,-745.7369],"yaw":-3.7001,"spawnMask":1},{"id":"creature-90767","entityId":"entry-8911","position":[-1960.7595,-87.5113,-910.1589],"yaw":-1.6057,"spawnMask":1},{"id":"creature-90768","entityId":"entry-8901","position":[-1989.8195,-90.0326,-808.8899],"yaw":-5.5676,"spawnMask":1},{"id":"creature-90769","entityId":"entry-8901","position":[-1992.6595,-90.0399,-811.2639],"yaw":-2.46091,"spawnMask":1},{"id":"creature-90770","entityId":"entry-8901","position":[-2002.5395,-90.0462,-817.9799],"yaw":-5.51524,"spawnMask":1},{"id":"creature-90771","entityId":"entry-8901","position":[-1987.4495,-90.0319,-820.1819],"yaw":-5.68977,"spawnMask":1},{"id":"creature-90772","entityId":"entry-8901","position":[-2001.9395,-90.0462,-820.6989],"yaw":-0.418879,"spawnMask":1},{"id":"creature-90773","entityId":"entry-8901","position":[-2005.5095,-90.0462,-820.0159],"yaw":-2.87979,"spawnMask":1},{"id":"creature-90774","entityId":"entry-8901","position":[-1982.5695,-90.0147,-812.4069],"yaw":-4.2586,"spawnMask":1},{"id":"creature-90775","entityId":"entry-8901","position":[-1990.2595,-90.0369,-820.2029],"yaw":-3.42085,"spawnMask":1},{"id":"creature-90776","entityId":"entry-8901","position":[-1989.1895,-90.035,-822.6949],"yaw":-1.98968,"spawnMask":1},{"id":"creature-90777","entityId":"entry-8901","position":[-1980.6695,-90.0151,-815.9259],"yaw":-1.0472,"spawnMask":1},{"id":"creature-90778","entityId":"entry-8901","position":[-1943.7395,-90.084,-789.2029],"yaw":-1.29743,"spawnMask":1},{"id":"creature-90779","entityId":"entry-8901","position":[-1939.5795,-90.0943,-810.9399],"yaw":-2.49214,"spawnMask":1},{"id":"creature-90780","entityId":"entry-8901","position":[-1940.4795,-90.1031,-800.9199],"yaw":-1.60551,"spawnMask":1},{"id":"creature-90784","entityId":"entry-8901","position":[-1939.0395,-90.1013,-815.1669],"yaw":-2.53054,"spawnMask":1},{"id":"creature-90786","entityId":"entry-8901","position":[-1942.0095,-90.1025,-813.4889],"yaw":-2.31446,"spawnMask":1},{"id":"creature-90787","entityId":"entry-8901","position":[-1817.5795,-90.0462,-832.7069],"yaw":-1.64061,"spawnMask":1},{"id":"creature-90788","entityId":"entry-8901","position":[-1829.0495,-90.038,-820.3549],"yaw":-1.76278,"spawnMask":1},{"id":"creature-90789","entityId":"entry-8901","position":[-1817.1495,-90.0462,-821.5669],"yaw":-0.436332,"spawnMask":1},{"id":"creature-90790","entityId":"entry-8901","position":[-1826.4295,-90.0427,-817.9439],"yaw":-0.174533,"spawnMask":1},{"id":"creature-90791","entityId":"entry-8901","position":[-1818.9095,-90.0462,-828.7019],"yaw":-4.24115,"spawnMask":1},{"id":"creature-90792","entityId":"entry-8901","position":[-1827.9995,-90.0399,-815.2769],"yaw":-4.93928,"spawnMask":1},{"id":"creature-90793","entityId":"entry-8901","position":[-1816.4295,-90.0462,-829.4949],"yaw":-5.20108,"spawnMask":1},{"id":"creature-90794","entityId":"entry-8901","position":[-1819.6695,-90.0462,-819.9719],"yaw":-3.9968,"spawnMask":1},{"id":"creature-90795","entityId":"entry-8901","position":[-1830.6095,-90.0352,-817.0749],"yaw":-3.36848,"spawnMask":1},{"id":"creature-90796","entityId":"entry-8901","position":[-1818.5895,-90.0462,-822.8249],"yaw":-1.37881,"spawnMask":1},{"id":"creature-90797","entityId":"entry-8901","position":[-1851.2595,-90.0054,-818.3599],"yaw":-5.07891,"spawnMask":1},{"id":"creature-90798","entityId":"entry-8901","position":[-1871.4295,-90.0018,-823.0149],"yaw":-2.9147,"spawnMask":1},{"id":"creature-90799","entityId":"entry-8901","position":[-1875.7095,-90.0056,-826.8539],"yaw":-3.10669,"spawnMask":1},{"id":"creature-90800","entityId":"entry-8901","position":[-1850.5095,-90.0022,-821.9069],"yaw":-4.57276,"spawnMask":1},{"id":"creature-90801","entityId":"entry-8901","position":[-1877.7095,-90.0032,-823.8899],"yaw":-1.50098,"spawnMask":1},{"id":"creature-90802","entityId":"entry-8901","position":[-1874.7895,-89.9427,-821.3669],"yaw":-2.68781,"spawnMask":1},{"id":"creature-90803","entityId":"entry-8901","position":[-1857.9495,-89.9933,-801.7419],"yaw":-1.5708,"spawnMask":1},{"id":"creature-90804","entityId":"entry-8901","position":[-1872.8795,-90.0042,-826.7929],"yaw":-1.6057,"spawnMask":1},{"id":"creature-90806","entityId":"entry-8901","position":[-1860.0095,-90.0005,-807.6789],"yaw":-4.83456,"spawnMask":1},{"id":"creature-90807","entityId":"entry-8901","position":[-1855.0295,-89.9929,-804.1919],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90808","entityId":"entry-8920","position":[-1285.3185,-51.6472,-348.5348],"yaw":-6.21337,"spawnMask":1},{"id":"creature-90809","entityId":"entry-8920","position":[-1335.4155,-51.6518,-355.9041],"yaw":-5.48033,"spawnMask":1},{"id":"creature-90810","entityId":"entry-8920","position":[-1292.5885,-51.7391,-387.8781],"yaw":-3.10291,"spawnMask":1},{"id":"creature-90811","entityId":"entry-8920","position":[-1324.0995,-51.7119,-446.0797],"yaw":-2.04204,"spawnMask":1},{"id":"creature-90812","entityId":"entry-8906","position":[-1322.6675,-51.7269,-419.4489],"yaw":-3.07178,"spawnMask":1},{"id":"creature-90813","entityId":"entry-8920","position":[-1289.1815,-51.6836,-351.8891],"yaw":-3.9619,"spawnMask":1},{"id":"creature-90814","entityId":"entry-8920","position":[-1316.1175,-51.7256,-452.2596],"yaw":-0.366519,"spawnMask":1},{"id":"creature-90815","entityId":"entry-8920","position":[-1316.7835,-51.7244,-450.5241],"yaw":-5.23599,"spawnMask":1},{"id":"creature-90816","entityId":"entry-8900","position":[-1286.6855,-51.6684,-350.5537],"yaw":-0.837758,"spawnMask":1},{"id":"creature-90817","entityId":"entry-8900","position":[-1320.4625,-51.7257,-451.0741],"yaw":-3.85718,"spawnMask":1},{"id":"creature-90818","entityId":"entry-8896","position":[-1384.9005,-47.9278,-669.8039],"yaw":-2.16421,"spawnMask":1},{"id":"creature-90819","entityId":"entry-8896","position":[-1379.8125,-47.9413,-667.3959],"yaw":-0.314159,"spawnMask":1},{"id":"creature-90820","entityId":"entry-8913","position":[-1387.3465,-47.9517,-666.0159],"yaw":-3.22886,"spawnMask":1},{"id":"creature-90821","entityId":"entry-8897","position":[-1384.5755,-47.9532,-664.7149],"yaw":-3.87463,"spawnMask":1},{"id":"creature-90822","entityId":"entry-8895","position":[-1381.5385,-47.9386,-668.7189],"yaw":-1.11701,"spawnMask":1},{"id":"creature-90823","entityId":"entry-8913","position":[-1380.8815,-47.9654,-663.3019],"yaw":-5.23599,"spawnMask":1},{"id":"creature-90824","entityId":"entry-8896","position":[-1282.5475,-40.8378,-683.5889],"yaw":-3.63029,"spawnMask":1},{"id":"creature-90825","entityId":"entry-8913","position":[-1270.8465,-40.8269,-685.1209],"yaw":-6.17846,"spawnMask":1},{"id":"creature-90826","entityId":"entry-8910","position":[-1282.3415,-40.8455,-687.7649],"yaw":-2.72271,"spawnMask":1},{"id":"creature-90827","entityId":"entry-8922","position":[-1274.9915,-40.8269,-687.7009],"yaw":-0.506145,"spawnMask":1},{"id":"creature-90828","entityId":"entry-8910","position":[-1384.4745,-48.0111,-694.1869],"yaw":-1.98067,"spawnMask":1},{"id":"creature-90829","entityId":"entry-8896","position":[-1121.8255,-41.0931,-690.7179],"yaw":-5.48033,"spawnMask":1},{"id":"creature-90830","entityId":"entry-8896","position":[-1126.4315,-41.0936,-689.9699],"yaw":-4.50295,"spawnMask":1},{"id":"creature-90831","entityId":"entry-8896","position":[-1124.3435,-41.0961,-699.2729],"yaw":-1.32645,"spawnMask":1},{"id":"creature-90832","entityId":"entry-8913","position":[-1121.3255,-41.0944,-695.4369],"yaw":-0.20944,"spawnMask":1},{"id":"creature-90833","entityId":"entry-8913","position":[-1130.2805,-41.0951,-692.8639],"yaw":-3.47321,"spawnMask":1},{"id":"creature-90834","entityId":"entry-8914","position":[-1129.6395,-41.0966,-698.1529],"yaw":-2.42601,"spawnMask":1},{"id":"creature-90835","entityId":"entry-8896","position":[-1303.4165,-41.2922,-713.3409],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90836","entityId":"entry-8896","position":[-1308.4155,-41.2906,-721.6219],"yaw":-2.14675,"spawnMask":1},{"id":"creature-90837","entityId":"entry-8896","position":[-1299.6695,-41.2919,-721.0899],"yaw":-1.02974,"spawnMask":1},{"id":"creature-90838","entityId":"entry-8922","position":[-1304.0465,-41.2911,-726.8649],"yaw":-1.58825,"spawnMask":1},{"id":"creature-90839","entityId":"entry-8895","position":[-1201.1505,-71.3865,-445.0766],"yaw":-0.244346,"spawnMask":1},{"id":"creature-90840","entityId":"entry-8893","position":[-1196.8865,-71.3863,-443.5184],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90841","entityId":"entry-8893","position":[-1200.4745,-71.3885,-440.2999],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90842","entityId":"entry-8893","position":[-1193.3625,-71.3646,-438.6257],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90843","entityId":"entry-8894","position":[-1196.8365,-71.9499,-435.3271],"yaw":-3.28122,"spawnMask":1},{"id":"creature-90844","entityId":"entry-8910","position":[-1399.4995,-69.7527,-649.4759],"yaw":-4.06662,"spawnMask":1},{"id":"creature-90845","entityId":"entry-8910","position":[-1393.1255,-69.7507,-660.9829],"yaw":-1.29154,"spawnMask":1},{"id":"creature-90846","entityId":"entry-8921","position":[-890.8775,-64.7808,-468.534],"yaw":-2.49582,"spawnMask":1},{"id":"creature-90847","entityId":"entry-8890","position":[-940.4065,-61.5405,-577.8839],"yaw":-1.24097,"spawnMask":1},{"id":"creature-90848","entityId":"entry-8921","position":[-986.8735,-61.8896,-550.9389],"yaw":-1.78024,"spawnMask":1},{"id":"creature-90849","entityId":"entry-8921","position":[-853.9375,-76.2893,-622.1629],"yaw":-0.698132,"spawnMask":1},{"id":"creature-90850","entityId":"entry-8890","position":[-884.9885,-62.9408,-571.7979],"yaw":-6.24828,"spawnMask":1},{"id":"creature-90851","entityId":"entry-8921","position":[-886.7815,-65.4563,-468.1888],"yaw":-1.20428,"spawnMask":1},{"id":"creature-90852","entityId":"entry-8921","position":[-914.1835,-62.0661,-488.4706],"yaw":-1.65806,"spawnMask":1},{"id":"creature-90853","entityId":"entry-8921","position":[-868.4425,-68.4675,-486.2668],"yaw":-4.71239,"spawnMask":1},{"id":"creature-90854","entityId":"entry-8912","position":[-793.7685,-70.6159,-559.8739],"yaw":-0.907571,"spawnMask":1},{"id":"creature-90855","entityId":"entry-8921","position":[-938.5245,-61.8239,-594.4699],"yaw":-3.89351,"spawnMask":1},{"id":"creature-90856","entityId":"entry-8921","position":[-943.2395,-61.0914,-591.7689],"yaw":-4.07896,"spawnMask":1},{"id":"creature-90857","entityId":"entry-8921","position":[-942.8155,-61.0406,-588.9659],"yaw":-4.07896,"spawnMask":1},{"id":"creature-90858","entityId":"entry-8892","position":[-1084.8995,-73.6817,-684.6939],"yaw":-2.77507,"spawnMask":1},{"id":"creature-90859","entityId":"entry-8891","position":[-1164.4175,-69.0375,-569.0709],"yaw":-2.53073,"spawnMask":1},{"id":"creature-90860","entityId":"entry-8921","position":[-1149.4435,-81.8715,-686.9359],"yaw":-1.32645,"spawnMask":1},{"id":"creature-90861","entityId":"entry-8921","position":[-1155.5635,-81.9963,-682.4669],"yaw":-5.46288,"spawnMask":1},{"id":"creature-90862","entityId":"entry-8909","position":[-1162.5805,-81.2946,-677.2979],"yaw":-1.8675,"spawnMask":1},{"id":"creature-90863","entityId":"entry-8892","position":[-1177.9275,-74.3919,-605.9249],"yaw":-1.62316,"spawnMask":1},{"id":"creature-90864","entityId":"entry-8891","position":[-1161.7545,-68.7797,-564.3369],"yaw":-5.23599,"spawnMask":1},{"id":"creature-90865","entityId":"entry-8892","position":[-1135.9695,-81.5605,-673.0649],"yaw":-2.9147,"spawnMask":1},{"id":"creature-90866","entityId":"entry-8891","position":[-1164.0035,-81.5831,-662.7969],"yaw":-4.04995,"spawnMask":1},{"id":"creature-90867","entityId":"entry-8921","position":[-1156.4915,-81.9616,-671.9199],"yaw":-3.85347,"spawnMask":1},{"id":"creature-90868","entityId":"entry-8921","position":[-1156.6995,-81.8251,-669.0989],"yaw":-3.85346,"spawnMask":1},{"id":"creature-90869","entityId":"entry-8891","position":[-1135.2035,-81.3165,-674.9309],"yaw":-2.79253,"spawnMask":1},{"id":"creature-90870","entityId":"entry-8892","position":[-1085.4865,-68.6843,-658.3119],"yaw":-2.49582,"spawnMask":1},{"id":"creature-90872","entityId":"entry-8892","position":[-1192.7265,-71.8482,-564.5469],"yaw":-2.30383,"spawnMask":1},{"id":"creature-90874","entityId":"entry-8891","position":[-1123.9445,-58.0429,-464.6709],"yaw":-3.56047,"spawnMask":1},{"id":"creature-90875","entityId":"entry-8891","position":[-1123.7705,-58.0351,-466.7598],"yaw":-3.00197,"spawnMask":1},{"id":"creature-90876","entityId":"entry-8891","position":[-1195.5325,-44.2255,-553.0359],"yaw":-6.02139,"spawnMask":1},{"id":"creature-90877","entityId":"entry-8892","position":[-1138.7605,-43.8083,-507.918],"yaw":-5.5676,"spawnMask":1},{"id":"creature-90878","entityId":"entry-8909","position":[-1157.4585,-58.0512,-467.2354],"yaw":-0.820305,"spawnMask":1},{"id":"creature-90879","entityId":"entry-8909","position":[-1158.5465,-43.6204,-483.8645],"yaw":-5.34071,"spawnMask":1},{"id":"creature-90880","entityId":"entry-8892","position":[-1160.2945,-44.0268,-515.7029],"yaw":-5.0091,"spawnMask":1},{"id":"creature-90881","entityId":"entry-9545","position":[-1354.2775,-47.745,-576.5369],"yaw":-4.27777,"spawnMask":1},{"id":"creature-90882","entityId":"entry-9545","position":[-1410.8185,-47.7505,-573.3769],"yaw":-3.72741,"spawnMask":1},{"id":"creature-90883","entityId":"entry-9545","position":[-1387.0875,-47.7468,-572.8869],"yaw":-6.04803,"spawnMask":1},{"id":"creature-90884","entityId":"entry-9547","position":[-1407.1595,-41.6955,-616.1169],"yaw":-2.24715,"spawnMask":1},{"id":"creature-90885","entityId":"entry-9545","position":[-1395.8755,-41.6955,-606.0979],"yaw":-5.48534,"spawnMask":1},{"id":"creature-90886","entityId":"entry-9547","position":[-1416.9475,-41.6955,-618.4489],"yaw":-2.07571,"spawnMask":1},{"id":"creature-90887","entityId":"entry-9545","position":[-1359.5825,-47.745,-567.7559],"yaw":-0.53946,"spawnMask":1},{"id":"creature-90888","entityId":"entry-9554","position":[-1401.8235,-40.6885,-620.9119],"yaw":-2.4924,"spawnMask":1},{"id":"creature-90889","entityId":"entry-9545","position":[-1390.6815,-47.7475,-577.9719],"yaw":-2.18598,"spawnMask":1},{"id":"creature-90890","entityId":"entry-9547","position":[-1392.2095,-41.6955,-610.3419],"yaw":-3.4411,"spawnMask":1},{"id":"creature-90892","entityId":"entry-8920","position":[-1284.6655,-51.6451,-359.0593],"yaw":-1.0472,"spawnMask":1},{"id":"creature-90894","entityId":"entry-8920","position":[-1288.9475,-51.6493,-348.7199],"yaw":-3.21141,"spawnMask":1},{"id":"creature-90895","entityId":"entry-8920","position":[-1312.5435,-51.7267,-415.234],"yaw":-2.3911,"spawnMask":1},{"id":"creature-90896","entityId":"entry-8921","position":[-943.6655,-61.5417,-576.2879],"yaw":-3.40339,"spawnMask":1},{"id":"creature-90897","entityId":"entry-8912","position":[-909.2835,-62.3238,-491.5741],"yaw":-6.02139,"spawnMask":1},{"id":"creature-90898","entityId":"entry-8921","position":[-930.5655,-63.2983,-523.2309],"yaw":-4.45059,"spawnMask":1},{"id":"creature-90899","entityId":"entry-8912","position":[-869.4625,-62.9408,-527.1989],"yaw":-5.09636,"spawnMask":1},{"id":"creature-90900","entityId":"entry-8921","position":[-939.0925,-62.8499,-606.1519],"yaw":-4.15388,"spawnMask":1},{"id":"creature-90901","entityId":"entry-8890","position":[-862.6115,-76.2977,-605.3369],"yaw":-0.087266,"spawnMask":1},{"id":"creature-90902","entityId":"entry-8912","position":[-905.2835,-62.9408,-517.9659],"yaw":-2.75762,"spawnMask":1},{"id":"creature-90903","entityId":"entry-8890","position":[-847.5845,-73.2287,-472.9556],"yaw":-3.35103,"spawnMask":1},{"id":"creature-90904","entityId":"entry-8890","position":[-936.8745,-63.4049,-610.2929],"yaw":-0.122173,"spawnMask":1},{"id":"creature-90905","entityId":"entry-8921","position":[-817.6625,-73.6719,-503.1372],"yaw":-0.610865,"spawnMask":1},{"id":"creature-90906","entityId":"entry-8892","position":[-1112.4015,-80.2339,-696.7409],"yaw":-6.0912,"spawnMask":1},{"id":"creature-90907","entityId":"entry-8892","position":[-1117.2575,-80.7819,-699.7959],"yaw":-2.21657,"spawnMask":1},{"id":"creature-90908","entityId":"entry-8909","position":[-1145.5975,-69.7452,-535.6249],"yaw":-2.07694,"spawnMask":1},{"id":"creature-90910","entityId":"entry-8909","position":[-1150.8925,-70.6787,-537.8449],"yaw":-1.67552,"spawnMask":1},{"id":"creature-90911","entityId":"entry-8909","position":[-1073.4865,-67.3341,-656.7489],"yaw":-2.47837,"spawnMask":1},{"id":"creature-90912","entityId":"entry-8891","position":[-1083.7825,-73.7556,-686.8019],"yaw":-2.49582,"spawnMask":1},{"id":"creature-90913","entityId":"entry-8892","position":[-1035.3805,-58.0905,-607.0819],"yaw":-4.99164,"spawnMask":1},{"id":"creature-90914","entityId":"entry-8892","position":[-1198.1605,-76.2676,-607.7569],"yaw":-1.5708,"spawnMask":1},{"id":"creature-90915","entityId":"entry-8892","position":[-1078.6345,-72.1281,-682.4559],"yaw":-5.53269,"spawnMask":1},{"id":"creature-90916","entityId":"entry-8921","position":[-1117.1845,-66.6301,-534.9069],"yaw":-5.95941,"spawnMask":1},{"id":"creature-90917","entityId":"entry-8921","position":[-1099.1505,-62.071,-530.8759],"yaw":-1.65336,"spawnMask":1},{"id":"creature-90918","entityId":"entry-8921","position":[-1098.7835,-62.1592,-534.7499],"yaw":-4.46512,"spawnMask":1},{"id":"creature-90919","entityId":"entry-8892","position":[-1199.5115,-76.1314,-606.2759],"yaw":-1.95477,"spawnMask":1},{"id":"creature-91010","entityId":"entry-9547","position":[-1397.8455,-47.7484,-571.5349],"yaw":-5.34704,"spawnMask":1},{"id":"creature-91011","entityId":"entry-9545","position":[-1415.1045,-40.7719,-618.8889],"yaw":-3.6626,"spawnMask":1},{"id":"creature-91012","entityId":"entry-9545","position":[-1384.3775,-41.6955,-616.6599],"yaw":-2.05573,"spawnMask":1},{"id":"creature-91013","entityId":"entry-9545","position":[-1416.2975,-41.917,-588.9509],"yaw":-5.17016,"spawnMask":1},{"id":"creature-91014","entityId":"entry-9545","position":[-1352.1105,-47.745,-581.2039],"yaw":-1.18745,"spawnMask":1},{"id":"creature-91015","entityId":"entry-9545","position":[-1361.6935,-47.745,-572.6209],"yaw":-3.26892,"spawnMask":1},{"id":"creature-91016","entityId":"entry-9545","position":[-1408.8775,-41.917,-591.2179],"yaw":-0.68901,"spawnMask":1},{"id":"creature-91017","entityId":"entry-9545","position":[-1383.3715,-41.6955,-614.7499],"yaw":-1.73405,"spawnMask":1},{"id":"creature-91018","entityId":"entry-9545","position":[-1391.1665,-47.7478,-551.7649],"yaw":-3.48803,"spawnMask":1},{"id":"creature-91019","entityId":"entry-9545","position":[-1403.4275,-41.6955,-615.3479],"yaw":-4.78717,"spawnMask":1},{"id":"creature-91027","entityId":"entry-8912","position":[-957.9135,-63.3684,-521.0519],"yaw":-3.7001,"spawnMask":1},{"id":"creature-91028","entityId":"entry-8912","position":[-821.8745,-67.729,-529.2349],"yaw":-0.767945,"spawnMask":1},{"id":"creature-91029","entityId":"entry-8912","position":[-798.4235,-69.5424,-554.3999],"yaw":-3.90954,"spawnMask":1},{"id":"creature-91030","entityId":"entry-8921","position":[-906.9785,-68.1248,-607.4769],"yaw":-3.4383,"spawnMask":1},{"id":"creature-91031","entityId":"entry-8912","position":[-852.2135,-76.0327,-624.9359],"yaw":-2.72271,"spawnMask":1},{"id":"creature-91032","entityId":"entry-8921","position":[-937.9355,-63.6067,-530.1939],"yaw":-3.44326,"spawnMask":1},{"id":"creature-91033","entityId":"entry-8921","position":[-940.4595,-63.7353,-531.5029],"yaw":-3.44326,"spawnMask":1},{"id":"creature-91034","entityId":"entry-8921","position":[-941.7745,-63.8313,-528.9999],"yaw":-3.59174,"spawnMask":1},{"id":"creature-91035","entityId":"entry-8921","position":[-843.4955,-74.8541,-477.2689],"yaw":-2.75762,"spawnMask":1},{"id":"creature-91036","entityId":"entry-8891","position":[-942.1405,-62.5591,-608.3359],"yaw":-3.89208,"spawnMask":1},{"id":"creature-91037","entityId":"entry-8890","position":[-880.2005,-62.9408,-524.1499],"yaw":-2.75762,"spawnMask":1},{"id":"creature-91038","entityId":"entry-8891","position":[-898.4245,-71.0498,-628.0319],"yaw":-3.40339,"spawnMask":1},{"id":"creature-91039","entityId":"entry-8892","position":[-1080.5815,-68.0895,-654.9429],"yaw":-5.72468,"spawnMask":1},{"id":"creature-91040","entityId":"entry-8891","position":[-1160.1465,-68.9454,-565.6749],"yaw":-5.55015,"spawnMask":1},{"id":"creature-91041","entityId":"entry-8892","position":[-1113.8005,-80.2631,-694.9139],"yaw":-5.74213,"spawnMask":1},{"id":"creature-91042","entityId":"entry-8891","position":[-1038.1725,-57.8479,-614.0489],"yaw":-2.05949,"spawnMask":1},{"id":"creature-91043","entityId":"entry-9547","position":[-1353.6475,-47.745,-579.7849],"yaw":-3.88715,"spawnMask":1},{"id":"creature-91044","entityId":"entry-9547","position":[-1401.3575,-47.7491,-576.3059],"yaw":-3.70043,"spawnMask":1},{"id":"creature-91045","entityId":"entry-9545","position":[-1415.4655,-41.6955,-615.7679],"yaw":-4.59701,"spawnMask":1},{"id":"creature-91046","entityId":"entry-9547","position":[-1409.1245,-47.7503,-574.5009],"yaw":-2.58739,"spawnMask":1},{"id":"creature-91047","entityId":"entry-9547","position":[-1353.5815,-47.745,-577.5569],"yaw":-0.972107,"spawnMask":1},{"id":"creature-91048","entityId":"entry-9554","position":[-1400.3585,-41.6955,-619.7999],"yaw":-6.03945,"spawnMask":1},{"id":"creature-91049","entityId":"entry-9545","position":[-1407.7125,-47.75,-568.3229],"yaw":-4.01626,"spawnMask":1},{"id":"creature-91050","entityId":"entry-9547","position":[-1354.8405,-47.745,-593.6959],"yaw":-2.56911,"spawnMask":1},{"id":"creature-91051","entityId":"entry-9547","position":[-1402.2835,-47.7494,-581.1339],"yaw":-1.7603,"spawnMask":1},{"id":"creature-91052","entityId":"entry-9547","position":[-1389.9945,-47.7472,-572.0359],"yaw":-3.42633,"spawnMask":1},{"id":"creature-91053","entityId":"entry-8912","position":[-798.2495,-70.1014,-558.3199],"yaw":-2.09439,"spawnMask":1},{"id":"creature-91054","entityId":"entry-8890","position":[-896.4805,-62.9408,-562.7209],"yaw":-4.50295,"spawnMask":1},{"id":"creature-91055","entityId":"entry-8921","position":[-825.8675,-73.8368,-589.0939],"yaw":-1.20428,"spawnMask":1},{"id":"creature-91056","entityId":"entry-8921","position":[-890.5915,-72.062,-627.1199],"yaw":-5.46288,"spawnMask":1},{"id":"creature-91057","entityId":"entry-8891","position":[-892.7855,-71.6573,-629.4169],"yaw":-0.226893,"spawnMask":1},{"id":"creature-91058","entityId":"entry-8890","position":[-992.6095,-59.8479,-551.7819],"yaw":-0.628319,"spawnMask":1},{"id":"creature-91059","entityId":"entry-8890","position":[-986.4605,-61.4659,-544.7099],"yaw":-0.541052,"spawnMask":1},{"id":"creature-91060","entityId":"entry-8891","position":[-866.2715,-68.6688,-489.958],"yaw":-0.174533,"spawnMask":1},{"id":"creature-91061","entityId":"entry-8921","position":[-839.3385,-75.1817,-478.9134],"yaw":-3.92699,"spawnMask":1},{"id":"creature-91062","entityId":"entry-8891","position":[-897.3845,-62.9408,-516.8189],"yaw":-5.81195,"spawnMask":1},{"id":"creature-91063","entityId":"entry-8921","position":[-828.8745,-73.8952,-592.0549],"yaw":-2.60054,"spawnMask":1},{"id":"creature-91064","entityId":"entry-9547","position":[-1382.7885,-41.6955,-611.2129],"yaw":-6.21552,"spawnMask":1},{"id":"creature-91065","entityId":"entry-9547","position":[-1358.3235,-47.745,-574.8229],"yaw":-0.578797,"spawnMask":1},{"id":"creature-91066","entityId":"entry-9547","position":[-1405.0855,-40.751,-613.5339],"yaw":-5.38874,"spawnMask":1},{"id":"creature-91067","entityId":"entry-9547","position":[-1348.8075,-47.745,-572.1169],"yaw":-5.60345,"spawnMask":1},{"id":"creature-91068","entityId":"entry-9547","position":[-1388.2015,-41.6955,-611.5789],"yaw":-4.06716,"spawnMask":1},{"id":"creature-91069","entityId":"entry-9547","position":[-1417.1295,-41.917,-590.6399],"yaw":-3.0787,"spawnMask":1},{"id":"creature-91070","entityId":"entry-9545","position":[-1418.4795,-41.6955,-614.5999],"yaw":-3.51151,"spawnMask":1},{"id":"creature-91071","entityId":"entry-9554","position":[-1340.4265,-47.745,-579.1529],"yaw":-0.698433,"spawnMask":1},{"id":"creature-91072","entityId":"entry-8912","position":[-919.9585,-62.9408,-560.0929],"yaw":-1.02974,"spawnMask":1},{"id":"creature-91073","entityId":"entry-8921","position":[-851.3305,-72.7477,-474.5896],"yaw":-0.715585,"spawnMask":1},{"id":"creature-91074","entityId":"entry-8921","position":[-847.0705,-73.928,-476.9729],"yaw":-1.16937,"spawnMask":1},{"id":"creature-91075","entityId":"entry-8891","position":[-955.2155,-63.5242,-522.6749],"yaw":-0.523599,"spawnMask":1},{"id":"creature-91076","entityId":"entry-8921","position":[-876.1275,-62.9408,-527.8799],"yaw":0,"spawnMask":1},{"id":"creature-91077","entityId":"entry-8890","position":[-814.5005,-74.0446,-501.6702],"yaw":-1.11701,"spawnMask":1},{"id":"creature-91078","entityId":"entry-8921","position":[-821.4465,-68.5486,-523.6639],"yaw":-1.8675,"spawnMask":1},{"id":"creature-91079","entityId":"entry-8921","position":[-973.7255,-61.6625,-497.3516],"yaw":-3.01942,"spawnMask":1},{"id":"creature-91080","entityId":"entry-8891","position":[-863.0485,-76.1238,-603.5559],"yaw":-5.5676,"spawnMask":1},{"id":"creature-91081","entityId":"entry-8912","position":[-928.2015,-63.1483,-526.0549],"yaw":-1.65806,"spawnMask":1},{"id":"creature-91082","entityId":"entry-8912","position":[-895.6795,-62.9408,-569.1799],"yaw":-1.55334,"spawnMask":1},{"id":"creature-91083","entityId":"entry-8891","position":[-958.2015,-63.5079,-527.8939],"yaw":-0.20944,"spawnMask":1},{"id":"creature-91084","entityId":"entry-8890","position":[-948.2585,-61.4095,-488.4178],"yaw":-2.68535,"spawnMask":1},{"id":"creature-91085","entityId":"entry-8921","position":[-946.5325,-61.1531,-489.7989],"yaw":-2.68535,"spawnMask":1},{"id":"creature-91086","entityId":"entry-8921","position":[-949.2275,-61.5792,-488.8935],"yaw":-2.68535,"spawnMask":1},{"id":"creature-91087","entityId":"entry-8912","position":[-870.6485,-62.9408,-532.1069],"yaw":-1.98968,"spawnMask":1},{"id":"creature-91088","entityId":"entry-8890","position":[-831.1655,-74.5797,-589.1549],"yaw":-2.30383,"spawnMask":1},{"id":"creature-91089","entityId":"entry-8890","position":[-938.9095,-61.4119,-577.0629],"yaw":-0.959931,"spawnMask":1},{"id":"creature-91090","entityId":"entry-8891","position":[-794.7385,-70.2765,-551.7819],"yaw":-5.20108,"spawnMask":1},{"id":"creature-91091","entityId":"entry-8912","position":[-871.4125,-68.2095,-488.6876],"yaw":-3.4383,"spawnMask":1},{"id":"creature-91092","entityId":"entry-8912","position":[-817.8025,-74.9618,-496.0529],"yaw":-4.08407,"spawnMask":1},{"id":"creature-91093","entityId":"entry-8921","position":[-835.0855,-74.2612,-594.3499],"yaw":-2.19912,"spawnMask":1},{"id":"creature-91094","entityId":"entry-8912","position":[-827.3965,-74.3314,-584.8119],"yaw":-5.39307,"spawnMask":1},{"id":"creature-91095","entityId":"entry-8912","position":[-924.8215,-62.9408,-558.6949],"yaw":-2.02458,"spawnMask":1},{"id":"creature-91096","entityId":"entry-8891","position":[-867.2385,-75.9602,-604.9569],"yaw":-3.22886,"spawnMask":1},{"id":"creature-91097","entityId":"entry-8890","position":[-841.3375,-74.4386,-474.7911],"yaw":-0.349066,"spawnMask":1},{"id":"creature-91098","entityId":"entry-8912","position":[-898.7085,-62.9408,-520.7749],"yaw":-0.872665,"spawnMask":1},{"id":"creature-91099","entityId":"entry-8890","position":[-910.9535,-63.0241,-538.2489],"yaw":-0.267563,"spawnMask":1},{"id":"creature-91102","entityId":"entry-8891","position":[-938.4915,-61.9545,-459.1006],"yaw":-2.46091,"spawnMask":1},{"id":"creature-91103","entityId":"entry-8921","position":[-912.7745,-66.554,-602.3929],"yaw":-2.3911,"spawnMask":1},{"id":"creature-91104","entityId":"entry-8921","position":[-932.2375,-63.2132,-518.6459],"yaw":-1.65806,"spawnMask":1},{"id":"creature-91105","entityId":"entry-8891","position":[-848.4835,-76.0588,-622.7719],"yaw":-5.65487,"spawnMask":1},{"id":"creature-91106","entityId":"entry-8891","position":[-1171.6855,-41.1843,-684.6649],"yaw":-0.471239,"spawnMask":1},{"id":"creature-91107","entityId":"entry-8891","position":[-1269.4335,-40.8259,-693.4939],"yaw":-2.86234,"spawnMask":1},{"id":"creature-91108","entityId":"entry-8901","position":[-1860.7795,-90.0349,-937.3499],"yaw":-2.6529,"spawnMask":1},{"id":"creature-91109","entityId":"entry-8901","position":[-1845.4395,-90.0345,-933.8559],"yaw":-0.366519,"spawnMask":1},{"id":"creature-91110","entityId":"entry-8901","position":[-1961.7995,-90.0727,-824.3379],"yaw":-1.80106,"spawnMask":1},{"id":"creature-91112","entityId":"entry-8901","position":[-1958.3995,-90.0743,-825.6969],"yaw":-1.72027,"spawnMask":1},{"id":"creature-91119","entityId":"entry-9956","position":[-1960.6995,-90.0099,-872.3899],"yaw":-5.18363,"spawnMask":1}],"roamingPacks":[{"id":"patrol-45868","name":"Blazing Fireguard Patrol","speed":1.15,"pathId":458680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1149.8685,-72.1672,-377.12],[-1152.4185,-71.7341,-387.2478],[-1158.1325,-71.3211,-407.7452],[-1167.1515,-71.3211,-426.5667],[-1177.1875,-71.3211,-439.5788],[-1194.4615,-71.2351,-458.1445],[-1176.8305,-71.3226,-436.4656],[-1159.7815,-71.3226,-408.3153],[-1153.6985,-71.8799,-384.0067],[-1157.7635,-71.3212,-347.4318],[-1167.3505,-71.3212,-323.8543],[-1181.3115,-71.3385,-300.0519],[-1204.1975,-71.1625,-263.9779],[-1197.2195,-71.3887,-276.1099],[-1173.6725,-71.3225,-310.8575],[-1161.5085,-71.3225,-334.9697],[-1152.0985,-71.7544,-367.6676]],"members":[{"id":"member","entityId":"entry-8910","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-45943","name":"Fireguard Patrol","speed":1.15,"pathId":459430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1120.4315,-43.5161,-501.4355],[-1110.6295,-43.5288,-501.2492],[-1107.8445,-43.0961,-501.1871],[-1110.8405,-43.5278,-501.1803],[-1124.2805,-43.5155,-501.1106],[-1151.1545,-44.0095,-500.5548],[-1155.9405,-44.1813,-524.7249],[-1151.9615,-44.045,-501.5441],[-1119.5945,-43.5117,-502.4701]],"members":[{"id":"member","entityId":"entry-8909","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47302","name":"Shadowforge Flame Keeper Patrol","speed":1.15,"pathId":473020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1911.7395,-92.6861,-806.7059],[-1911.6295,-90.2769,-797.7469],[-1913.8495,-90.1111,-794.7619],[-1913.4895,-90.1069,-796.9619],[-1913.0095,-92.7496,-807.2749],[-1912.8995,-92.7496,-810.2689],[-1907.2895,-92.7496,-833.1089],[-1914.2395,-92.7496,-808.3159],[-1913.6495,-92.3682,-805.5309],[-1911.8995,-90.2254,-797.5469],[-1911.3295,-92.6189,-806.4569]],"members":[{"id":"member","entityId":"entry-9956","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47303","name":"Shadowforge Flame Keeper Patrol","speed":1.15,"pathId":473030,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1914.1195,-92.7497,-850.2969],[-1911.4895,-92.7497,-836.3549],[-1911.6795,-92.7497,-849.0369],[-1922.8795,-92.7497,-849.1439],[-1933.2395,-90.1027,-850.9099],[-1939.1995,-90.099,-851.0329],[-1932.5195,-90.2402,-850.2939],[-1922.8595,-92.7497,-849.5989],[-1913.9695,-92.7497,-848.8009]],"members":[{"id":"member","entityId":"entry-9956","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47703","name":"Plugger Spazzring Patrol","speed":1.15,"pathId":477030,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1417.5555,-41.0375,-587.9579],[-1416.1105,-41.0375,-585.3339],[-1415.9055,-41.0375,-585.0429],[-1407.4525,-41.0374,-589.6849],[-1415.8975,-41.0374,-584.9169],[-1417.7735,-41.0374,-588.1339]],"members":[{"id":"member","entityId":"entry-9499","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47716","name":"Warbringer Construct Patrol","speed":1.15,"pathId":477160,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1439.1655,-47.3857,-800.5149],[-1448.7325,-47.532,-809.9149],[-1462.0425,-53.462,-822.9129],[-1469.2755,-53.1419,-828.1999],[-1474.6635,-53.142,-823.0269],[-1486.8525,-58.707,-810.9069],[-1499.4555,-59.1525,-797.4089],[-1510.2315,-64.3636,-784.7419],[-1516.2255,-64.4801,-777.0959],[-1511.6775,-64.0527,-772.2009],[-1497.8695,-69.4615,-760.4829],[-1494.6885,-69.8145,-757.3279],[-1496.8135,-69.5234,-759.4389],[-1510.5495,-64.2384,-772.6239],[-1511.3785,-64.0375,-773.8549],[-1514.4405,-64.6046,-780.2429],[-1510.5485,-64.3636,-784.7609],[-1499.2375,-59.0572,-797.6319],[-1486.7205,-58.7978,-810.3539],[-1474.8885,-53.289,-822.2809],[-1469.0555,-53.1553,-828.0149],[-1460.5395,-52.9524,-820.7879],[-1448.8185,-47.5694,-810.4569],[-1442.1655,-47.3679,-803.9259]],"members":[{"id":"member","entityId":"entry-8905","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47777","name":"Molten War Golem Patrol","speed":1.15,"pathId":477770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1655.6295,-63.5293,-607.1139],[-1662.0495,-63.5075,-612.2259],[-1670.5995,-63.4274,-613.0679],[-1684.7695,-63.5288,-612.3689],[-1694.6195,-63.5182,-608.9729],[-1703.0695,-63.5262,-599.8189],[-1688.8695,-63.5216,-612.4989],[-1675.8095,-63.4115,-613.0189],[-1660.6495,-63.5105,-611.2789],[-1643.0795,-63.4142,-596.8029],[-1654.2095,-63.5311,-606.7849]],"members":[{"id":"member","entityId":"entry-8908","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47795","name":"Blazing Fireguard Patrol","speed":1.15,"pathId":477950,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1068.3905,-68.8682,-380.9279],[-1059.2035,-68.9011,-384.0914],[-1038.5055,-68.9851,-391.6518],[-1061.9965,-69.0809,-392.657],[-1083.6085,-68.1478,-399.7492],[-1097.0255,-68.5884,-399.0032],[-1109.4805,-69.3862,-387.1961],[-1092.3845,-68.9244,-383.3327],[-1071.9415,-68.9187,-381.5414]],"members":[{"id":"member","entityId":"entry-8910","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-47836","name":"Fireguard Patrol","speed":1.15,"pathId":478360,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1124.4255,-43.5344,-494.89],[-1124.6175,-43.5415,-489.6856],[-1125.0165,-50.1314,-477.9701],[-1125.0305,-50.1518,-472.7561],[-1118.3725,-50.2678,-472.95],[-1108.0655,-58.084,-473.1654],[-1099.1055,-58.1003,-473.2823],[-1101.6985,-58.0859,-462.0416],[-1118.5675,-58.1286,-458.9157],[-1128.9875,-58.1307,-458.2413],[-1114.0885,-58.1193,-457.4051],[-1098.7485,-58.0843,-464.2411],[-1097.7465,-58.1004,-471.6446],[-1108.3505,-57.9962,-473.1777],[-1118.8195,-50.1445,-473.0162],[-1123.2985,-50.1479,-473.0926],[-1124.6435,-50.0303,-478.9028],[-1124.7245,-43.6764,-489.3465],[-1124.7145,-43.54,-493.0705]],"members":[{"id":"member","entityId":"entry-8909","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48090","name":"Fireguard Destroyer Patrol","speed":1.15,"pathId":480900,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1670.9595,-114.4981,-649.5899],[-1661.6995,-114.4981,-652.1969],[-1652.4995,-114.4981,-658.2219],[-1644.9595,-114.4981,-669.4289],[-1652.2995,-114.4981,-673.9769],[-1656.8395,-114.4981,-665.3959],[-1659.8295,-114.4981,-653.0669],[-1668.1295,-114.4981,-650.2849]],"members":[{"id":"member","entityId":"entry-8911","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-90728","name":"Fireguard Destroyer Patrol","speed":1.15,"pathId":907280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1235.8035,-43.7682,-399.5204],[-1228.0315,-43.8045,-417.2476],[-1247.1865,-44.0992,-420.5176],[-1243.8555,-44.0772,-406.9236],[-1242.1945,-43.5034,-384.8348],[-1234.8425,-43.7404,-399.0736]],"members":[{"id":"member","entityId":"entry-8911","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91100","name":"Bloodhound Patrol","speed":1.15,"pathId":911000,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-907.6115,-63.0241,-538.1979],[-901.8935,-63.0241,-523.6259],[-910.2215,-63.0241,-549.5609],[-916.7965,-63.0241,-558.6269],[-911.1075,-63.0241,-549.8759],[-907.5775,-63.0241,-539.2739]],"members":[{"id":"member","entityId":"entry-8921","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91101","name":"Bloodhound Patrol","speed":1.15,"pathId":911010,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-905.7955,-63.0241,-538.7809],[-910.6855,-63.0241,-551.7199],[-915.6465,-63.0241,-557.2679],[-909.3675,-63.0241,-548.8899],[-902.6905,-63.0241,-525.5589],[-906.4615,-63.0241,-538.4579]],"members":[{"id":"member","entityId":"entry-8921","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91120","name":"Shadowforge Flame Keeper Patrol","speed":1.15,"pathId":911200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1910.9895,-90.1222,-937.1409],[-1911.2595,-90.1215,-900.6469],[-1910.9095,-90.1229,-914.6419],[-1910.1095,-90.1289,-953.2739],[-1896.1095,-90.1054,-953.4429],[-1882.4995,-90.1054,-953.4279],[-1894.4795,-90.1068,-953.8499],[-1921.3095,-90.1091,-954.9109],[-1940.6995,-90.1105,-955.5539],[-1909.7495,-90.1293,-954.7819],[-1910.5795,-90.1253,-939.1049]],"members":[{"id":"member","entityId":"entry-9956","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-300627","name":"Panzor the Invincible Patrol","speed":1.15,"pathId":3000627,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1664.7895,-72.9992,-573.1719],[-1680.6595,-72.986,-559.8979],[-1704.1395,-72.436,-568.0779],[-1715.2695,-72.4403,-560.9019],[-1700.4395,-72.4403,-546.1949],[-1687.9895,-72.4403,-541.9209],[-1662.7095,-72.4373,-537.7039],[-1641.0595,-72.4214,-547.0959],[-1627.8195,-63.465,-560.3849],[-1613.1595,-63.3852,-576.4809],[-1598.1795,-62.1852,-595.6789],[-1584.8495,-60.9127,-607.9779],[-1574.5995,-59.915,-618.4269],[-1590.4095,-61.3053,-604.9799],[-1604.4995,-63.1348,-588.9789],[-1613.3795,-63.3833,-578.6859],[-1623.3895,-63.3833,-577.4259],[-1642.4195,-63.4926,-598.0439],[-1655.8095,-63.5253,-608.9079],[-1669.7995,-63.4253,-612.7199],[-1682.5295,-63.4491,-611.5949],[-1702.1795,-63.5206,-601.5859],[-1689.1195,-63.5198,-613.1789],[-1673.7895,-63.3923,-612.8669],[-1653.8495,-63.5318,-606.2519],[-1643.4195,-63.3835,-596.0129],[-1629.8395,-63.3835,-581.1539],[-1628.4995,-63.3849,-561.3959],[-1640.2495,-72.3281,-549.2689],[-1657.6095,-72.4333,-546.9159],[-1664.5195,-72.4333,-558.9849],[-1665.6095,-72.9923,-565.8209]],"members":[{"id":"member","entityId":"entry-8923","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-47250","name":"High Interrogator Gerstahn","position":[-839.8775,-68.378,-556.3999]},{"id":"creature-47304","name":"Lord Roccor","position":[-1144.8415,-81.6658,-677.5459]},{"id":"creature-46284","name":"Houndmaster Grebmar","position":[-1136.9905,-82.5615,-584.9169]},{"id":"creature-47771","name":"Pyromancer Loregrain","position":[-1059.4875,-41.0931,-654.0789]},{"id":"creature-47733","name":"Lord Incendius","position":[-1422.8655,-69.9753,-677.2049]},{"id":"creature-47774","name":"Warder Stilgiss","position":[-1352.7065,-48.1828,-752.4269]},{"id":"creature-47631","name":"Fineous Darkvire","position":[-1492.5865,-69.8145,-753.8839]},{"id":"creature-45885","name":"Bael'Gar","position":[-1231.7355,-70.0631,-225.6869]},{"id":"creature-45954","name":"General Angerforge","position":[-1181.7095,-58.0511,-388.7752]},{"id":"creature-45931","name":"Golem Lord Argelmach","position":[-1376.1205,-51.7146,-393.8683]},{"id":"creature-47778","name":"Ambassador Flamelash","position":[-1539.0695,-59.3789,-649.1659]},{"id":"creature-47477","name":"Magmus","position":[-1910.0395,-90.0462,-1069.4629]},{"id":"creature-47613","name":"Emperor Dagran Thaurissan","position":[-1909.4995,-85.6651,-1241.7939]}],"objectiveOrder":[{"id":"creature-47250","name":"High Interrogator Gerstahn","position":[-839.8775,-68.378,-556.3999]},{"id":"creature-47304","name":"Lord Roccor","position":[-1144.8415,-81.6658,-677.5459]},{"id":"creature-46284","name":"Houndmaster Grebmar","position":[-1136.9905,-82.5615,-584.9169]},{"id":"creature-47771","name":"Pyromancer Loregrain","position":[-1059.4875,-41.0931,-654.0789]},{"id":"creature-47733","name":"Lord Incendius","position":[-1422.8655,-69.9753,-677.2049]},{"id":"creature-47774","name":"Warder Stilgiss","position":[-1352.7065,-48.1828,-752.4269]},{"id":"creature-47631","name":"Fineous Darkvire","position":[-1492.5865,-69.8145,-753.8839]},{"id":"creature-45885","name":"Bael'Gar","position":[-1231.7355,-70.0631,-225.6869]},{"id":"creature-45954","name":"General Angerforge","position":[-1181.7095,-58.0511,-388.7752]},{"id":"creature-45931","name":"Golem Lord Argelmach","position":[-1376.1205,-51.7146,-393.8683]},{"id":"creature-47778","name":"Ambassador Flamelash","position":[-1539.0695,-59.3789,-649.1659]},{"id":"creature-47477","name":"Magmus","position":[-1910.0395,-90.0462,-1069.4629]},{"id":"creature-47613","name":"Emperor Dagran Thaurissan","position":[-1909.4995,-85.6651,-1241.7939]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":563,"id":179552,"map":230,"orientation":1.68579,"phaseMask":1,"position_x":839.6,"position_y":9.86411,"position_z":-53.7335,"rotation0":0,"rotation1":0,"rotation2":0.746572,"rotation3":0.665304,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":1584,"guid":9468,"id":165738,"map":230,"orientation":4.98,"phaseMask":1,"position_x":891.99,"position_y":-181.77,"position_z":-42.811,"rotation0":0,"rotation1":0,"rotation2":0.606454,"rotation3":-0.795119,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":1584,"guid":9469,"id":165738,"map":230,"orientation":3.6782,"phaseMask":1,"position_x":891.36,"position_y":-182.133,"position_z":-42.811,"rotation0":0,"rotation1":0,"rotation2":0.964222,"rotation3":-0.265096,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":1584,"guid":9470,"id":165738,"map":230,"orientation":4.55,"phaseMask":1,"position_x":891.299,"position_y":-183.168,"position_z":-42.811,"rotation0":0,"rotation1":0,"rotation2":0.762127,"rotation3":-0.647427,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":1584,"guid":9471,"id":165738,"map":230,"orientation":0.597,"phaseMask":1,"position_x":891.788,"position_y":-182.847,"position_z":-42.811,"rotation0":0,"rotation1":0,"rotation2":0.294087,"rotation3":0.955779,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":1584,"guid":9472,"id":165738,"map":230,"orientation":4.673,"phaseMask":1,"position_x":891.7,"position_y":-184.356,"position_z":-42.811,"rotation0":0,"rotation1":0,"rotation2":0.720895,"rotation3":-0.693044,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10617,"id":165658,"map":230,"orientation":-1.18682,"phaseMask":1,"position_x":679.721,"position_y":102.181,"position_z":-73.2564,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10618,"id":165658,"map":230,"orientation":2.96704,"phaseMask":1,"position_x":634.768,"position_y":-56.406,"position_z":-73.6264,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.0871655,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10619,"id":165658,"map":230,"orientation":0.715585,"phaseMask":1,"position_x":327.184,"position_y":-58.5715,"position_z":-71.3615,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10620,"id":165658,"map":230,"orientation":0.59341,"phaseMask":1,"position_x":1204.1,"position_y":-350.158,"position_z":-93.6315,"rotation0":0,"rotation1":0,"rotation2":0.292371,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10621,"id":165658,"map":230,"orientation":0.261798,"phaseMask":1,"position_x":918.903,"position_y":-447.008,"position_z":-53.8907,"rotation0":0,"rotation1":0,"rotation2":0.130525,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10622,"id":165658,"map":230,"orientation":2.96706,"phaseMask":1,"position_x":748.476,"position_y":-53.7894,"position_z":-71.278,"rotation0":0,"rotation1":0,"rotation2":0.996195,"rotation3":0.0871556,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10623,"id":165658,"map":230,"orientation":1.41372,"phaseMask":1,"position_x":291.891,"position_y":-122.786,"position_z":-69.1713,"rotation0":0,"rotation1":0,"rotation2":0.649449,"rotation3":0.760405,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10624,"id":165658,"map":230,"orientation":-0.401426,"phaseMask":1,"position_x":503.193,"position_y":-190.118,"position_z":-59.3156,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10625,"id":165658,"map":230,"orientation":0.523598,"phaseMask":1,"position_x":643.342,"position_y":144.62,"position_z":-73.8284,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":0,"guid":10626,"id":165658,"map":230,"orientation":5.96903,"phaseMask":1,"position_x":964.466,"position_y":-436.64,"position_z":-54.6864,"rotation0":0,"rotation1":0,"rotation2":0.156433,"rotation3":-0.987689,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15229,"id":174744,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1330.14,"position_y":-508.858,"position_z":-88.8709,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15230,"id":174698,"map":230,"orientation":3.38594,"phaseMask":1,"position_x":337.824,"position_y":-145.837,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-0.992546,"rotation3":0.12187,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15232,"id":140439,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":782.058,"position_y":-37.7377,"position_z":-53.7351,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15233,"id":140376,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":631.595,"position_y":-146.055,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15241,"id":140378,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":634.43,"position_y":-148.843,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15248,"id":140401,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":576.696,"position_y":-248.789,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15249,"id":140402,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":572.998,"position_y":-247.158,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15250,"id":140403,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":569.286,"position_y":-245.732,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15251,"id":140373,"map":230,"orientation":3.52557,"phaseMask":1,"position_x":649.304,"position_y":-172.329,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190812,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15252,"id":140374,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":637.171,"position_y":-151.813,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15253,"id":140396,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":538.074,"position_y":-190.059,"position_z":-35.5994,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15254,"id":140397,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":581.72,"position_y":-246.604,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15255,"id":140400,"map":230,"orientation":1.91114,"phaseMask":1,"position_x":581.661,"position_y":-253.098,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.816642,"rotation3":0.577145,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15256,"id":174434,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":707.989,"position_y":58.1926,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15257,"id":140372,"map":230,"orientation":3.52557,"phaseMask":1,"position_x":650.824,"position_y":-176.003,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190812,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15258,"id":158583,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":582.324,"position_y":-254.622,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15259,"id":158585,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":571.203,"position_y":-250.139,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15260,"id":170503,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-786.485,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15261,"id":158674,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-783.717,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15262,"id":140382,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":640.006,"position_y":-148.657,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15263,"id":140383,"map":230,"orientation":4.64258,"phaseMask":1,"position_x":637.074,"position_y":-136.967,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15265,"id":158581,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":580.42,"position_y":-137.035,"position_z":-36.9204,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15266,"id":158582,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":583.853,"position_y":-131.551,"position_z":-35.6645,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15267,"id":170502,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-792.107,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15268,"id":174411,"map":230,"orientation":4.30224,"phaseMask":1,"position_x":571.652,"position_y":-84.3746,"position_z":-45.0172,"rotation0":0,"rotation1":0,"rotation2":-0.836286,"rotation3":0.548294,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15269,"id":170456,"map":230,"orientation":5.73341,"phaseMask":1,"position_x":976.336,"position_y":-323.201,"position_z":-70.7043,"rotation0":0,"rotation1":0,"rotation2":-0.27144,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15270,"id":170458,"map":230,"orientation":4.38078,"phaseMask":1,"position_x":988.142,"position_y":-380.085,"position_z":-66.2875,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15271,"id":158678,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":581.15,"position_y":-132.632,"position_z":-35.6645,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15272,"id":170487,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-778.143,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15273,"id":174432,"map":230,"orientation":6.09993,"phaseMask":1,"position_x":707.989,"position_y":55.8425,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.0915012,"rotation3":0.995805,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15274,"id":170462,"map":230,"orientation":4.09652,"phaseMask":1,"position_x":959.945,"position_y":-436.884,"position_z":-55.3675,"rotation0":0.045383,"rotation1":0.0708761,"rotation2":-0.883594,"rotation3":0.460629,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15275,"id":170463,"map":230,"orientation":5.63333,"phaseMask":1,"position_x":925.641,"position_y":-436.307,"position_z":-56.0272,"rotation0":-0.0749898,"rotation1":0.0214796,"rotation2":-0.318531,"rotation3":0.944697,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15276,"id":170464,"map":230,"orientation":5.63333,"phaseMask":1,"position_x":916.325,"position_y":-435.013,"position_z":-55.5633,"rotation0":-0.0749898,"rotation1":0.0214796,"rotation2":-0.318531,"rotation3":0.944697,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15277,"id":170470,"map":230,"orientation":2.01585,"phaseMask":1,"position_x":797.143,"position_y":-214.991,"position_z":-43.2866,"rotation0":0,"rotation1":0,"rotation2":0.845727,"rotation3":0.533616,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15278,"id":174437,"map":230,"orientation":2.58309,"phaseMask":1,"position_x":711.074,"position_y":47.553,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.961262,"rotation3":0.275637,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15279,"id":170454,"map":230,"orientation":1.0472,"phaseMask":1,"position_x":861.908,"position_y":-198.118,"position_z":-43.6942,"rotation0":0,"rotation1":0,"rotation2":0.5,"rotation3":0.866025,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15280,"id":140381,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":637.171,"position_y":-145.869,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15281,"id":170455,"map":230,"orientation":2.53072,"phaseMask":1,"position_x":877.22,"position_y":-203.719,"position_z":-43.7001,"rotation0":0,"rotation1":0,"rotation2":0.953716,"rotation3":0.300708,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15282,"id":158545,"map":230,"orientation":2.37364,"phaseMask":1,"position_x":634.132,"position_y":-227.8,"position_z":-37.0216,"rotation0":0,"rotation1":0,"rotation2":0.927183,"rotation3":0.374608,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15283,"id":170478,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1348.43,"position_y":-778.283,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15284,"id":158549,"map":230,"orientation":2.74016,"phaseMask":1,"position_x":647.252,"position_y":-220.081,"position_z":-35.3726,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15285,"id":170486,"map":230,"orientation":0,"phaseMask":1,"position_x":1346.59,"position_y":-772.353,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15286,"id":140390,"map":230,"orientation":0.794123,"phaseMask":1,"position_x":551.528,"position_y":-221.466,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.38671,"rotation3":0.922201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15287,"id":140384,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":639.909,"position_y":-142.899,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15288,"id":140385,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":642.65,"position_y":-145.869,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15289,"id":140386,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":645.485,"position_y":-148.657,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15290,"id":140389,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":645.485,"position_y":-143.851,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15291,"id":140391,"map":230,"orientation":0.794123,"phaseMask":1,"position_x":554.387,"position_y":-224.229,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.38671,"rotation3":0.922201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15292,"id":140392,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":575.652,"position_y":-239.522,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15293,"id":140393,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":571.941,"position_y":-238.096,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15294,"id":158559,"map":230,"orientation":0.776672,"phaseMask":1,"position_x":550.548,"position_y":-226.078,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":0.378649,"rotation3":0.92554,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15295,"id":161524,"map":230,"orientation":1.8326,"phaseMask":1,"position_x":585.739,"position_y":-147.762,"position_z":-52.8988,"rotation0":0,"rotation1":0,"rotation2":0.793355,"rotation3":0.60876,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15296,"id":170489,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1414.79,"position_y":-775.303,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15297,"id":170494,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-763.826,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15298,"id":170571,"map":230,"orientation":2.16421,"phaseMask":1,"position_x":870.693,"position_y":-228.936,"position_z":-43.7509,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15299,"id":170515,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-792.355,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15300,"id":170516,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1293.62,"position_y":-399.635,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15301,"id":170550,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-402.735,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15302,"id":170551,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":1376.16,"position_y":-828.828,"position_z":-91.9804,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15303,"id":170514,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-789.586,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15304,"id":170568,"map":230,"orientation":1.20428,"phaseMask":1,"position_x":589.74,"position_y":-141.631,"position_z":-68.4205,"rotation0":0,"rotation1":0,"rotation2":0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15305,"id":158567,"map":230,"orientation":5.9254,"phaseMask":1,"position_x":544.504,"position_y":-161.737,"position_z":-35.6229,"rotation0":0,"rotation1":0,"rotation2":-0.177942,"rotation3":0.984041,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15306,"id":174566,"map":230,"orientation":-0.820305,"phaseMask":1,"position_x":806.764,"position_y":-335.402,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":-0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15307,"id":164689,"map":230,"orientation":-0.837759,"phaseMask":1,"position_x":525.063,"position_y":-238.897,"position_z":-41.0423,"rotation0":0,"rotation1":0,"rotation2":-0.406737,"rotation3":0.913545,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15308,"id":174407,"map":230,"orientation":3.51685,"phaseMask":1,"position_x":359.07,"position_y":-122.451,"position_z":-64.9464,"rotation0":0,"rotation1":0,"rotation2":-0.98245,"rotation3":0.186529,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15309,"id":161523,"map":230,"orientation":0.261799,"phaseMask":1,"position_x":555.751,"position_y":-199.744,"position_z":-52.908,"rotation0":0,"rotation1":0,"rotation2":0.130526,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":600,"state":0,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15310,"id":170439,"map":230,"orientation":4.89565,"phaseMask":1,"position_x":387.75,"position_y":-158.397,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-0.639439,"rotation3":0.768842,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15311,"id":174548,"map":230,"orientation":0,"phaseMask":1,"position_x":807.73,"position_y":-218.651,"position_z":-43.2779,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15312,"id":170448,"map":230,"orientation":3.72628,"phaseMask":1,"position_x":864.765,"position_y":-138.702,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.957571,"rotation3":0.288197,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15313,"id":158560,"map":230,"orientation":0.776672,"phaseMask":1,"position_x":555.782,"position_y":-230.75,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":0.378649,"rotation3":0.92554,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15314,"id":158561,"map":230,"orientation":0.776672,"phaseMask":1,"position_x":564.607,"position_y":-239.377,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":0.378649,"rotation3":0.92554,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15315,"id":158563,"map":230,"orientation":5.9254,"phaseMask":1,"position_x":544.525,"position_y":-171.697,"position_z":-37.0216,"rotation0":0,"rotation1":0,"rotation2":-0.177942,"rotation3":0.984041,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15316,"id":158564,"map":230,"orientation":5.9254,"phaseMask":1,"position_x":546.181,"position_y":-167.31,"position_z":-37.0216,"rotation0":0,"rotation1":0,"rotation2":-0.177942,"rotation3":0.984041,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15317,"id":170548,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-411.637,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15318,"id":170549,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-406.046,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15319,"id":158565,"map":230,"orientation":0.00872424,"phaseMask":1,"position_x":537.947,"position_y":-179.56,"position_z":-35.5946,"rotation0":0,"rotation1":0,"rotation2":0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15320,"id":170440,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":328.053,"position_y":-145.898,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15321,"id":158555,"map":230,"orientation":0.410153,"phaseMask":1,"position_x":548.262,"position_y":-215.418,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.203642,"rotation3":0.979045,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15322,"id":158572,"map":230,"orientation":2.37364,"phaseMask":1,"position_x":637.401,"position_y":-224.436,"position_z":-37.0216,"rotation0":0,"rotation1":0,"rotation2":0.927183,"rotation3":0.374608,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15323,"id":158576,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":328.053,"position_y":-143.881,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15324,"id":174468,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":858.563,"position_y":-141.575,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15325,"id":174494,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":828.191,"position_y":-154.672,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15326,"id":174508,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":880.718,"position_y":-161.082,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15327,"id":174547,"map":230,"orientation":4.72112,"phaseMask":1,"position_x":796.519,"position_y":-211.351,"position_z":-43.2866,"rotation0":0,"rotation1":0,"rotation2":-0.704015,"rotation3":0.710185,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15328,"id":158568,"map":230,"orientation":0.776672,"phaseMask":1,"position_x":531.751,"position_y":-180.286,"position_z":-34.2119,"rotation0":0,"rotation1":0,"rotation2":0.378649,"rotation3":0.92554,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15329,"id":174555,"map":230,"orientation":0.776671,"phaseMask":1,"position_x":797.782,"position_y":-349.003,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.378648,"rotation3":0.925541,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15330,"id":174556,"map":230,"orientation":-0.794125,"phaseMask":1,"position_x":797.862,"position_y":-343.729,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":-0.386711,"rotation3":0.922201,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15331,"id":174557,"map":230,"orientation":-0.820305,"phaseMask":1,"position_x":802.325,"position_y":-339.54,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":-0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15332,"id":161522,"map":230,"orientation":0.261799,"phaseMask":1,"position_x":637.64,"position_y":-177.801,"position_z":-52.8988,"rotation0":0,"rotation1":0,"rotation2":0.130526,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15333,"id":174422,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":564.942,"position_y":-84.6081,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15334,"id":170577,"map":230,"orientation":-0.785397,"phaseMask":1,"position_x":1262.85,"position_y":-293.797,"position_z":-78.1676,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15335,"id":170556,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":496.211,"position_y":121.043,"position_z":0,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15336,"id":174423,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":564.942,"position_y":-93.1329,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15337,"id":170518,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1293.64,"position_y":-404.209,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15338,"id":170491,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1414.79,"position_y":-772.525,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15339,"id":170523,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1470.93,"position_y":-451.666,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15340,"id":170524,"map":230,"orientation":-1.5708,"phaseMask":1,"position_x":1468.17,"position_y":-451.666,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15341,"id":158550,"map":230,"orientation":2.74016,"phaseMask":1,"position_x":649.098,"position_y":-215.769,"position_z":-35.1574,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15342,"id":158552,"map":230,"orientation":4.18879,"phaseMask":1,"position_x":628.817,"position_y":-238.586,"position_z":-35.6229,"rotation0":0,"rotation1":0,"rotation2":-0.866025,"rotation3":0.500001,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15343,"id":174429,"map":230,"orientation":1.53589,"phaseMask":1,"position_x":714.676,"position_y":46.4855,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.694657,"rotation3":0.719341,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15344,"id":170522,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1290.85,"position_y":-447.092,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15345,"id":170525,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1470.91,"position_y":-447.092,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15346,"id":170529,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1468.14,"position_y":-399.635,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15347,"id":158558,"map":230,"orientation":3.50812,"phaseMask":1,"position_x":626.093,"position_y":-133.305,"position_z":-34.2415,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15348,"id":170459,"map":230,"orientation":4.38924,"phaseMask":1,"position_x":975.157,"position_y":-397.196,"position_z":-61.1861,"rotation0":-0.0529556,"rotation1":0.122543,"rotation2":-0.802181,"rotation3":0.581966,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15349,"id":170519,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1290.87,"position_y":-404.209,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15350,"id":170520,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1293.64,"position_y":-451.666,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15351,"id":161460,"map":230,"orientation":2.07694,"phaseMask":1,"position_x":615.614,"position_y":-49.7823,"position_z":-60.0557,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15352,"id":161516,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":702.108,"position_y":-125.745,"position_z":-45.7123,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15353,"id":174410,"map":230,"orientation":2.21657,"phaseMask":1,"position_x":358.277,"position_y":-124.572,"position_z":-64.9464,"rotation0":0,"rotation1":0,"rotation2":0.894934,"rotation3":0.446199,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15354,"id":170484,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1350.63,"position_y":-763.966,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15355,"id":170485,"map":230,"orientation":0,"phaseMask":1,"position_x":1346.59,"position_y":-774.923,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15356,"id":170495,"map":230,"orientation":0,"phaseMask":1,"position_x":1414.93,"position_y":-763.826,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15357,"id":170465,"map":230,"orientation":1.28746,"phaseMask":1,"position_x":908.452,"position_y":-407.597,"position_z":-49.1449,"rotation0":-0.0601768,"rotation1":-0.0496349,"rotation2":0.598132,"rotation3":0.797592,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15358,"id":170481,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1350.63,"position_y":-781.052,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15359,"id":174408,"map":230,"orientation":0.453785,"phaseMask":1,"position_x":356.266,"position_y":-123.488,"position_z":-64.9464,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15360,"id":158546,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":651.512,"position_y":-180.2,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15361,"id":170441,"map":230,"orientation":3.90081,"phaseMask":1,"position_x":781.014,"position_y":-35.2817,"position_z":-53.7351,"rotation0":0,"rotation1":0,"rotation2":-0.928809,"rotation3":0.370558,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15362,"id":170444,"map":230,"orientation":3.1678,"phaseMask":1,"position_x":714.772,"position_y":54.9921,"position_z":-45.0278,"rotation0":0,"rotation1":0,"rotation2":-0.999914,"rotation3":0.013102,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15363,"id":174560,"map":230,"orientation":0.759217,"phaseMask":1,"position_x":810.909,"position_y":-363.11,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.370557,"rotation3":0.92881,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15364,"id":174561,"map":230,"orientation":2.32129,"phaseMask":1,"position_x":816.412,"position_y":-363.597,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15365,"id":174562,"map":230,"orientation":2.32129,"phaseMask":1,"position_x":820.844,"position_y":-359.464,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15366,"id":170461,"map":230,"orientation":4.09652,"phaseMask":1,"position_x":953.668,"position_y":-429.444,"position_z":-54.8981,"rotation0":0.045383,"rotation1":0.0708761,"rotation2":-0.883594,"rotation3":0.460629,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15367,"id":174421,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":568.026,"position_y":-84.5912,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15368,"id":170477,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1348.43,"position_y":-781.052,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15369,"id":170479,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1348.43,"position_y":-766.735,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15370,"id":174497,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":877.092,"position_y":-142.478,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15371,"id":174551,"map":230,"orientation":0.95993,"phaseMask":1,"position_x":790.243,"position_y":-265.338,"position_z":-43.3257,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15372,"id":158608,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1293.62,"position_y":-447.092,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15373,"id":170473,"map":230,"orientation":0,"phaseMask":1,"position_x":1346.59,"position_y":-769.575,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15374,"id":174419,"map":230,"orientation":2.58309,"phaseMask":1,"position_x":568.026,"position_y":-95.2477,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.961262,"rotation3":0.275637,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15375,"id":174438,"map":230,"orientation":4.30224,"phaseMask":1,"position_x":714.699,"position_y":58.4261,"position_z":-45.0278,"rotation0":0,"rotation1":0,"rotation2":-0.836286,"rotation3":0.548294,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15376,"id":170483,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1350.63,"position_y":-766.735,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15377,"id":170469,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":798.546,"position_y":-212.559,"position_z":-43.2866,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15378,"id":170511,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-755.484,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15379,"id":170512,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-752.716,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15380,"id":170561,"map":230,"orientation":-1.8326,"phaseMask":1,"position_x":404.642,"position_y":-60.5172,"position_z":-63.8164,"rotation0":0,"rotation1":0,"rotation2":-0.793355,"rotation3":0.60876,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15381,"id":174420,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":564.942,"position_y":-95.2646,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15382,"id":174413,"map":230,"orientation":2.71399,"phaseMask":1,"position_x":571.919,"position_y":-103.167,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.977231,"rotation3":0.212178,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15383,"id":170471,"map":230,"orientation":2.53072,"phaseMask":1,"position_x":809.888,"position_y":-218.725,"position_z":-43.2779,"rotation0":0,"rotation1":0,"rotation2":0.953716,"rotation3":0.300708,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15384,"id":170475,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1346.45,"position_y":-781.052,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15385,"id":170476,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1346.45,"position_y":-778.283,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15386,"id":158547,"map":230,"orientation":3.71755,"phaseMask":1,"position_x":326.075,"position_y":-138.218,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-0.958819,"rotation3":0.284016,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15387,"id":158548,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":651.497,"position_y":-184.89,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15514,"id":158553,"map":230,"orientation":3.50812,"phaseMask":1,"position_x":653.562,"position_y":-172.165,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15515,"id":158554,"map":230,"orientation":3.50812,"phaseMask":1,"position_x":651.895,"position_y":-167.781,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15516,"id":158557,"map":230,"orientation":3.50812,"phaseMask":1,"position_x":647.242,"position_y":-156.35,"position_z":-35.6356,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15517,"id":174478,"map":230,"orientation":0.610865,"phaseMask":1,"position_x":865.286,"position_y":-177.086,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15518,"id":170501,"map":230,"orientation":0,"phaseMask":1,"position_x":1414.93,"position_y":-780.912,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15519,"id":170482,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1350.63,"position_y":-778.283,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15520,"id":170446,"map":230,"orientation":3.72628,"phaseMask":1,"position_x":814.658,"position_y":-174.76,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.957571,"rotation3":0.288197,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15521,"id":170506,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-758.089,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15522,"id":170507,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-755.236,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15523,"id":170509,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-761.106,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15524,"id":170510,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-758.337,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15525,"id":174424,"map":230,"orientation":6.09993,"phaseMask":1,"position_x":564.942,"position_y":-86.9582,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.0915012,"rotation3":0.995805,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15526,"id":170447,"map":230,"orientation":2.07694,"phaseMask":1,"position_x":841.268,"position_y":-191.12,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15527,"id":170451,"map":230,"orientation":3.10665,"phaseMask":1,"position_x":857.4,"position_y":-203.156,"position_z":-43.7186,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174693,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15528,"id":174409,"map":230,"orientation":5.16618,"phaseMask":1,"position_x":356.917,"position_y":-121.018,"position_z":-64.9464,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15529,"id":140387,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":637.074,"position_y":-135.305,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15530,"id":174426,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":568.026,"position_y":-93.4484,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15531,"id":174427,"map":230,"orientation":4.7473,"phaseMask":1,"position_x":572.025,"position_y":-93.24,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.694657,"rotation3":0.719341,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15532,"id":174496,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":878.337,"position_y":-144.471,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15533,"id":174512,"map":230,"orientation":3.73501,"phaseMask":1,"position_x":875.812,"position_y":-213.275,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15534,"id":174513,"map":230,"orientation":3.73501,"phaseMask":1,"position_x":874.798,"position_y":-211.648,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15535,"id":174515,"map":230,"orientation":0.349065,"phaseMask":1,"position_x":874.356,"position_y":-216.88,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15536,"id":174564,"map":230,"orientation":2.32129,"phaseMask":1,"position_x":829.574,"position_y":-351.323,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15537,"id":174430,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":711.074,"position_y":49.3523,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15538,"id":174539,"map":230,"orientation":1.11701,"phaseMask":1,"position_x":840.772,"position_y":-340.139,"position_z":-50.2247,"rotation0":0,"rotation1":0,"rotation2":0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15539,"id":174546,"map":230,"orientation":1.05592,"phaseMask":1,"position_x":795.8,"position_y":-213.383,"position_z":-43.2866,"rotation0":0,"rotation1":0,"rotation2":0.503774,"rotation3":0.863836,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15540,"id":170573,"map":230,"orientation":-1.5708,"phaseMask":1,"position_x":1389.55,"position_y":-555.851,"position_z":-92.0093,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15541,"id":174522,"map":230,"orientation":4.24115,"phaseMask":1,"position_x":857.538,"position_y":-199.724,"position_z":-43.7186,"rotation0":0,"rotation1":0,"rotation2":-0.85264,"rotation3":0.522499,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15542,"id":174523,"map":230,"orientation":2.05076,"phaseMask":1,"position_x":884.439,"position_y":-210.863,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.854912,"rotation3":0.518773,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15543,"id":174526,"map":230,"orientation":5.26217,"phaseMask":1,"position_x":885.051,"position_y":-207.044,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.488621,"rotation3":0.872496,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15544,"id":174745,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1431.13,"position_y":-508.938,"position_z":-88.8709,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15545,"id":174501,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":874.79,"position_y":-138.886,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15546,"id":174542,"map":230,"orientation":4.06662,"phaseMask":1,"position_x":843.322,"position_y":-337.313,"position_z":-50.2247,"rotation0":0,"rotation1":0,"rotation2":-0.894934,"rotation3":0.446199,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15547,"id":170581,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1029.29,"position_y":-224.058,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15548,"id":140398,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":578.022,"position_y":-244.973,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15549,"id":170468,"map":230,"orientation":2.57787,"phaseMask":1,"position_x":897.003,"position_y":-414.01,"position_z":-49.47,"rotation0":0,"rotation1":0,"rotation2":0.96054,"rotation3":0.278143,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15550,"id":170584,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":978.344,"position_y":-240.967,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15551,"id":170576,"map":230,"orientation":-0.767945,"phaseMask":1,"position_x":1230.33,"position_y":-205.21,"position_z":-85.6843,"rotation0":0,"rotation1":0,"rotation2":-0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":600,"state":0,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15552,"id":170578,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1029.22,"position_y":-257.987,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15553,"id":174477,"map":230,"orientation":5.86431,"phaseMask":1,"position_x":865.75,"position_y":-143.843,"position_z":-49.7157,"rotation0":0,"rotation1":0,"rotation2":-0.207911,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15554,"id":174490,"map":230,"orientation":4.86074,"phaseMask":1,"position_x":844.962,"position_y":-145.934,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.65276,"rotation3":0.757565,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15555,"id":170490,"map":230,"orientation":0,"phaseMask":1,"position_x":1414.93,"position_y":-778.143,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15556,"id":174491,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":837.766,"position_y":-153.555,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15557,"id":174492,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":832.043,"position_y":-155.015,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15558,"id":174498,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":874.485,"position_y":-144.127,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15559,"id":174499,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":875.73,"position_y":-146.12,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15562,"id":174509,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":879.473,"position_y":-159.089,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15563,"id":174504,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":870.833,"position_y":-132.549,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15564,"id":174505,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":869.588,"position_y":-130.556,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15571,"id":170498,"map":230,"orientation":0,"phaseMask":1,"position_x":1410.75,"position_y":-766.594,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15572,"id":170540,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-442.487,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15573,"id":170541,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-435.961,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15574,"id":140399,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":574.311,"position_y":-243.547,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15575,"id":174479,"map":230,"orientation":3.72628,"phaseMask":1,"position_x":886.162,"position_y":-164.351,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.957571,"rotation3":0.288197,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15576,"id":157923,"map":230,"orientation":2.35619,"phaseMask":1,"position_x":723.106,"position_y":-105.874,"position_z":-71.4839,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":0,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15577,"id":170582,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":995.262,"position_y":-257.966,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15578,"id":174451,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":824.111,"position_y":-172.223,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15579,"id":174452,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":819.593,"position_y":-164.994,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15580,"id":174540,"map":230,"orientation":2.41728,"phaseMask":1,"position_x":843.022,"position_y":-339.882,"position_z":-50.2247,"rotation0":0,"rotation1":0,"rotation2":0.935135,"rotation3":0.354292,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15581,"id":174510,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":876.866,"position_y":-160.738,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15582,"id":174511,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":878.111,"position_y":-162.731,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15583,"id":174544,"map":230,"orientation":4.18879,"phaseMask":1,"position_x":807.868,"position_y":-301.474,"position_z":-43.2868,"rotation0":0,"rotation1":0,"rotation2":-0.866025,"rotation3":0.500001,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15584,"id":174545,"map":230,"orientation":2.61799,"phaseMask":1,"position_x":808.709,"position_y":-303.887,"position_z":-43.2868,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15585,"id":174436,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":707.989,"position_y":47.5361,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15586,"id":174503,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":873.428,"position_y":-142.527,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15587,"id":170545,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-442.487,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15588,"id":170546,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-445.798,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15589,"id":170538,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-411.637,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15590,"id":170539,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-445.798,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15591,"id":170543,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-435.961,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15592,"id":174480,"map":230,"orientation":3.27252,"phaseMask":1,"position_x":878.786,"position_y":-168.69,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.997858,"rotation3":0.0654165,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15593,"id":174414,"map":230,"orientation":3.1678,"phaseMask":1,"position_x":578.09,"position_y":-100.769,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.999914,"rotation3":0.013102,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15594,"id":174484,"map":230,"orientation":0.183259,"phaseMask":1,"position_x":858.867,"position_y":-166.316,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.0915012,"rotation3":0.995805,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15595,"id":170542,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-432.65,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15596,"id":174481,"map":230,"orientation":6.25701,"phaseMask":1,"position_x":883.364,"position_y":-165.954,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.0130892,"rotation3":0.999914,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15597,"id":174482,"map":230,"orientation":3.74374,"phaseMask":1,"position_x":867.799,"position_y":-175.515,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.955019,"rotation3":0.296545,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15598,"id":174483,"map":230,"orientation":0.183259,"phaseMask":1,"position_x":858.46,"position_y":-164.224,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.0915012,"rotation3":0.995805,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15599,"id":174485,"map":230,"orientation":3.4034,"phaseMask":1,"position_x":861.834,"position_y":-165.583,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15600,"id":174486,"map":230,"orientation":3.4034,"phaseMask":1,"position_x":861.265,"position_y":-163.529,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15601,"id":174487,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":840.372,"position_y":-151.906,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15602,"id":170532,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1379.53,"position_y":-385.027,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15603,"id":170533,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1382.29,"position_y":-398.309,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15604,"id":170536,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-402.735,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15605,"id":170562,"map":230,"orientation":-0.523598,"phaseMask":1,"position_x":284.599,"position_y":-85.7571,"position_z":-76.9561,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15606,"id":170564,"map":230,"orientation":-1.23046,"phaseMask":1,"position_x":375.598,"position_y":-189.419,"position_z":-70.0353,"rotation0":0,"rotation1":0,"rotation2":-0.577146,"rotation3":0.816641,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15607,"id":170569,"map":230,"orientation":0.898845,"phaseMask":1,"position_x":630.367,"position_y":-160.274,"position_z":-71.0334,"rotation0":0,"rotation1":0,"rotation2":0.434445,"rotation3":0.900698,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15608,"id":174045,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1211.41,"position_y":-443.718,"position_z":-102.585,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15609,"id":174472,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":868.681,"position_y":-165.685,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15610,"id":174470,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":857.317,"position_y":-139.582,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15611,"id":174471,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":859.924,"position_y":-137.933,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15612,"id":174495,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":829.437,"position_y":-156.665,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15613,"id":170492,"map":230,"orientation":0,"phaseMask":1,"position_x":1414.93,"position_y":-766.594,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15614,"id":174449,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":823.445,"position_y":-165.337,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15615,"id":170528,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1470.91,"position_y":-399.635,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15616,"id":170534,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1378.98,"position_y":-398.309,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15617,"id":170559,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":496.397,"position_y":16.0126,"position_z":-70.2566,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15618,"id":174514,"map":230,"orientation":0.523598,"phaseMask":1,"position_x":873.163,"position_y":-214.855,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15619,"id":174525,"map":230,"orientation":2.05076,"phaseMask":1,"position_x":889.649,"position_y":-207.771,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.854912,"rotation3":0.518773,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":15620,"id":170552,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":1384.54,"position_y":-828.828,"position_z":-91.9804,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15621,"id":158570,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":572.759,"position_y":-139.973,"position_z":-36.9204,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15622,"id":174417,"map":230,"orientation":0.0523589,"phaseMask":1,"position_x":556.021,"position_y":-103.134,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.0261765,"rotation3":0.999657,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15623,"id":174418,"map":230,"orientation":3.18527,"phaseMask":1,"position_x":558.985,"position_y":-103.134,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.999762,"rotation3":0.0218352,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15624,"id":170513,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-783.965,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15625,"id":174463,"map":230,"orientation":6.25701,"phaseMask":1,"position_x":857.41,"position_y":-173.557,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.0130892,"rotation3":0.999914,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15626,"id":174469,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":867.552,"position_y":-163.878,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15627,"id":170505,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-760.858,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15628,"id":170567,"map":230,"orientation":-2.33874,"phaseMask":1,"position_x":556.919,"position_y":-243.199,"position_z":-70.249,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15629,"id":170579,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1046.23,"position_y":-241.007,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15630,"id":174441,"map":230,"orientation":5.6985,"phaseMask":1,"position_x":717.915,"position_y":42.1551,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.288196,"rotation3":0.957572,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15631,"id":174443,"map":230,"orientation":2.71399,"phaseMask":1,"position_x":714.967,"position_y":39.6332,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.977231,"rotation3":0.212178,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15635,"id":174444,"map":230,"orientation":3.1678,"phaseMask":1,"position_x":721.137,"position_y":42.032,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.999914,"rotation3":0.013102,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15636,"id":174445,"map":230,"orientation":0.0523589,"phaseMask":1,"position_x":699.069,"position_y":39.6672,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.0261765,"rotation3":0.999657,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15637,"id":174440,"map":230,"orientation":2.58309,"phaseMask":1,"position_x":708.651,"position_y":42.1332,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.961262,"rotation3":0.275637,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15638,"id":174465,"map":230,"orientation":2.65289,"phaseMask":1,"position_x":868.341,"position_y":-145.547,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.970295,"rotation3":0.241925,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15639,"id":161461,"map":230,"orientation":-2.63545,"phaseMask":1,"position_x":614.021,"position_y":-46.8877,"position_z":-59.636,"rotation0":0,"rotation1":0,"rotation2":-0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15640,"id":161462,"map":230,"orientation":2.35619,"phaseMask":1,"position_x":723.114,"position_y":-105.856,"position_z":-71.4763,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15641,"id":174435,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":711.074,"position_y":58.2095,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15642,"id":170583,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1012.31,"position_y":-207.095,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15643,"id":158566,"map":230,"orientation":0.00872424,"phaseMask":1,"position_x":537.973,"position_y":-184.249,"position_z":-35.5492,"rotation0":0,"rotation1":0,"rotation2":0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15644,"id":174447,"map":230,"orientation":2.09439,"phaseMask":1,"position_x":831.309,"position_y":-165.398,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.866025,"rotation3":0.500001,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15645,"id":170566,"map":230,"orientation":1.08211,"phaseMask":1,"position_x":550.306,"position_y":-277.685,"position_z":-75.2609,"rotation0":0,"rotation1":0,"rotation2":0.515041,"rotation3":0.857166,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15646,"id":174565,"map":230,"orientation":0.75049,"phaseMask":1,"position_x":804.315,"position_y":-356.08,"position_z":-49.3661,"rotation0":0,"rotation1":0,"rotation2":0.3665,"rotation3":0.930418,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15647,"id":174473,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":871.288,"position_y":-164.036,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15648,"id":174475,"map":230,"orientation":5.37562,"phaseMask":1,"position_x":870.39,"position_y":-169.872,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.438371,"rotation3":0.898794,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15649,"id":174466,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":870.335,"position_y":-162.511,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15650,"id":170531,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1382.29,"position_y":-385.027,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15651,"id":170574,"map":230,"orientation":-1.5708,"phaseMask":1,"position_x":1370.65,"position_y":-555.846,"position_z":-92.0093,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15652,"id":172911,"map":230,"orientation":2.37364,"phaseMask":1,"position_x":895.106,"position_y":-273.564,"position_z":-71.8876,"rotation0":0,"rotation1":0,"rotation2":0.927183,"rotation3":0.374608,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15653,"id":158569,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":568.548,"position_y":-141.397,"position_z":-36.9204,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15654,"id":140395,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":579.35,"position_y":-241.153,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15655,"id":174457,"map":230,"orientation":5.20981,"phaseMask":1,"position_x":816.703,"position_y":-178.889,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.511292,"rotation3":0.859407,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15656,"id":174459,"map":230,"orientation":5.3058,"phaseMask":1,"position_x":830.015,"position_y":-162.58,"position_z":-49.7157,"rotation0":0,"rotation1":0,"rotation2":-0.46947,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15657,"id":174460,"map":230,"orientation":0.610865,"phaseMask":1,"position_x":822.982,"position_y":-182.302,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15658,"id":174461,"map":230,"orientation":3.72628,"phaseMask":1,"position_x":860.208,"position_y":-171.954,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.957571,"rotation3":0.288197,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15659,"id":170449,"map":230,"orientation":2.13803,"phaseMask":1,"position_x":875.88,"position_y":-170.521,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.876726,"rotation3":0.48099,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15660,"id":170450,"map":230,"orientation":3.72628,"phaseMask":1,"position_x":846.843,"position_y":-148.808,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.957571,"rotation3":0.288197,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15661,"id":174500,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":876.035,"position_y":-140.878,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15662,"id":170555,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":436.751,"position_y":-343.548,"position_z":0,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15663,"id":170537,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-414.949,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":15664,"id":170570,"map":230,"orientation":2.62672,"phaseMask":1,"position_x":560.531,"position_y":-51.8159,"position_z":-60.094,"rotation0":0,"rotation1":0,"rotation2":0.967046,"rotation3":0.254602,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15665,"id":174446,"map":230,"orientation":3.18527,"phaseMask":1,"position_x":702.032,"position_y":39.6672,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.999762,"rotation3":0.0218352,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15666,"id":158584,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":578.612,"position_y":-253.196,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15667,"id":174416,"map":230,"orientation":0.0523589,"phaseMask":1,"position_x":562.379,"position_y":-100.629,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.0261765,"rotation3":0.999657,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15668,"id":140388,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":639.909,"position_y":-138.093,"position_z":-34.1376,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15669,"id":170466,"map":230,"orientation":2.57787,"phaseMask":1,"position_x":899.684,"position_y":-408.182,"position_z":-49.47,"rotation0":0,"rotation1":0,"rotation2":0.96054,"rotation3":0.278143,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":15670,"id":170467,"map":230,"orientation":1.28633,"phaseMask":1,"position_x":892.737,"position_y":-407.466,"position_z":-49.47,"rotation0":0,"rotation1":0,"rotation2":0.599732,"rotation3":0.800201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":15671,"id":174439,"map":230,"orientation":0.0523589,"phaseMask":1,"position_x":705.427,"position_y":42.172,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.0261765,"rotation3":0.999657,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":16717,"id":174549,"map":230,"orientation":4.18007,"phaseMask":1,"position_x":793.602,"position_y":-263.943,"position_z":-43.3257,"rotation0":0,"rotation1":0,"rotation2":-0.868198,"rotation3":0.496217,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":16733,"id":174450,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":820.839,"position_y":-166.987,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17102,"id":174453,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":822.2,"position_y":-163.345,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17103,"id":174488,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":839.127,"position_y":-149.913,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17104,"id":174535,"map":230,"orientation":0.130899,"phaseMask":1,"position_x":902.35,"position_y":-200.156,"position_z":-43.7186,"rotation0":0,"rotation1":0,"rotation2":0.065403,"rotation3":0.997859,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17105,"id":174537,"map":230,"orientation":0.0872641,"phaseMask":1,"position_x":862.476,"position_y":-196.087,"position_z":-43.6942,"rotation0":0,"rotation1":0,"rotation2":0.0436182,"rotation3":0.999048,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17106,"id":174538,"map":230,"orientation":0,"phaseMask":1,"position_x":875.048,"position_y":-203.645,"position_z":-43.7001,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17107,"id":174543,"map":230,"orientation":0.968655,"phaseMask":1,"position_x":806.124,"position_y":-303.902,"position_z":-43.2868,"rotation0":0,"rotation1":0,"rotation2":0.465613,"rotation3":0.884988,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17108,"id":170493,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-766.594,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17109,"id":170496,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-780.912,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17110,"id":170497,"map":230,"orientation":0,"phaseMask":1,"position_x":1410.75,"position_y":-763.826,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17111,"id":174527,"map":230,"orientation":5.26217,"phaseMask":1,"position_x":890.261,"position_y":-203.953,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.488621,"rotation3":0.872496,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17112,"id":174528,"map":230,"orientation":5.26217,"phaseMask":1,"position_x":882.976,"position_y":-208.147,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.488621,"rotation3":0.872496,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17113,"id":174529,"map":230,"orientation":5.26217,"phaseMask":1,"position_x":888.187,"position_y":-205.056,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.488621,"rotation3":0.872496,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17114,"id":174532,"map":230,"orientation":0.532325,"phaseMask":1,"position_x":894.583,"position_y":-203.381,"position_z":-43.6971,"rotation0":0,"rotation1":0,"rotation2":0.263031,"rotation3":0.964787,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17115,"id":174431,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":711.074,"position_y":55.8596,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17116,"id":174454,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":825.24,"position_y":-174.031,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17117,"id":174456,"map":230,"orientation":4.86074,"phaseMask":1,"position_x":812.777,"position_y":-171.886,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.65276,"rotation3":0.757565,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17118,"id":174489,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":836.52,"position_y":-151.562,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17119,"id":170442,"map":230,"orientation":3.1678,"phaseMask":1,"position_x":571.724,"position_y":-87.8086,"position_z":-45.0172,"rotation0":0,"rotation1":0,"rotation2":-0.999914,"rotation3":0.013102,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17120,"id":170443,"map":230,"orientation":1.57952,"phaseMask":1,"position_x":568.484,"position_y":-103.18,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.710185,"rotation3":0.704015,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17121,"id":174458,"map":230,"orientation":1.45735,"phaseMask":1,"position_x":818.056,"position_y":-181.816,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.665882,"rotation3":0.746057,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":17122,"id":170553,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":1381.39,"position_y":-827.561,"position_z":-91.9804,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17123,"id":170521,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1290.87,"position_y":-451.666,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":17124,"id":170580,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1012.28,"position_y":-274.911,"position_z":-61.9462,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17125,"id":174518,"map":230,"orientation":0.523598,"phaseMask":1,"position_x":870.956,"position_y":-211.203,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17126,"id":174519,"map":230,"orientation":0.349065,"phaseMask":1,"position_x":872.149,"position_y":-213.228,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17127,"id":174520,"map":230,"orientation":2.03331,"phaseMask":1,"position_x":853.396,"position_y":-208.027,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.850351,"rotation3":0.526215,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":17128,"id":158556,"map":230,"orientation":0.410153,"phaseMask":1,"position_x":546.405,"position_y":-211.112,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.203642,"rotation3":0.979045,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17129,"id":174516,"map":230,"orientation":3.73501,"phaseMask":1,"position_x":877.005,"position_y":-215.3,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17130,"id":174428,"map":230,"orientation":1.53589,"phaseMask":1,"position_x":571.629,"position_y":-96.3151,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.694657,"rotation3":0.719341,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17131,"id":170526,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1468.14,"position_y":-447.092,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":17132,"id":170488,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1414.79,"position_y":-769.955,"position_z":-85.1453,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":17133,"id":174699,"map":230,"orientation":3.38594,"phaseMask":1,"position_x":334.587,"position_y":-133.674,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-0.992546,"rotation3":0.12187,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17635,"id":174530,"map":230,"orientation":1.87623,"phaseMask":1,"position_x":891.724,"position_y":-206.668,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.806444,"rotation3":0.59131,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17899,"id":170452,"map":230,"orientation":5.27962,"phaseMask":1,"position_x":905.256,"position_y":-198.325,"position_z":-43.7186,"rotation0":0,"rotation1":0,"rotation2":-0.480989,"rotation3":0.876727,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17900,"id":174425,"map":230,"orientation":3.20274,"phaseMask":1,"position_x":568.026,"position_y":-86.9411,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17901,"id":170508,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-752.468,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":17902,"id":170517,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1290.85,"position_y":-399.635,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":17903,"id":170535,"map":230,"orientation":0,"phaseMask":1,"position_x":1368.48,"position_y":-406.046,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":17904,"id":174554,"map":230,"orientation":0.776671,"phaseMask":1,"position_x":802.021,"position_y":-353.522,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.378648,"rotation3":0.925541,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17905,"id":174462,"map":230,"orientation":3.21142,"phaseMask":1,"position_x":844.28,"position_y":-189.47,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349061,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":17906,"id":170558,"map":230,"orientation":-0.785397,"phaseMask":1,"position_x":1311.48,"position_y":-343.072,"position_z":-92.0093,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":17962,"id":174493,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":830.798,"position_y":-153.023,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":18196,"id":174531,"map":230,"orientation":3.60411,"phaseMask":1,"position_x":897.474,"position_y":-202.262,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.973379,"rotation3":0.229201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":18197,"id":170557,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":488.845,"position_y":87.2209,"position_z":0,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":18216,"id":170565,"map":230,"orientation":2.24275,"phaseMask":1,"position_x":412.167,"position_y":-202.4,"position_z":-65.0041,"rotation0":0,"rotation1":0,"rotation2":0.900699,"rotation3":0.434444,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":18217,"id":174521,"map":230,"orientation":5.24472,"phaseMask":1,"position_x":852.277,"position_y":-205.136,"position_z":-43.6971,"rotation0":0,"rotation1":0,"rotation2":-0.496216,"rotation3":0.868199,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":1584,"guid":18280,"id":161525,"map":230,"orientation":1.8326,"phaseMask":1,"position_x":607.668,"position_y":-229.653,"position_z":-52.8988,"rotation0":0,"rotation1":0,"rotation2":0.793355,"rotation3":0.60876,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":1584},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":18875,"id":170544,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-432.65,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":20541,"id":158680,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":571.139,"position_y":-136.509,"position_z":-35.6645,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":20861,"id":174476,"map":230,"orientation":1.62316,"phaseMask":1,"position_x":872.208,"position_y":-172.535,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.725374,"rotation3":0.688355,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":26225,"id":170499,"map":230,"orientation":0,"phaseMask":1,"position_x":1410.75,"position_y":-778.143,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35794,"id":170530,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1468.17,"position_y":-404.209,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35795,"id":170547,"map":230,"orientation":0,"phaseMask":1,"position_x":1392.44,"position_y":-414.949,"position_z":-94.6781,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35801,"id":174563,"map":230,"orientation":2.32129,"phaseMask":1,"position_x":825.268,"position_y":-355.339,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35802,"id":174536,"map":230,"orientation":3.75246,"phaseMask":1,"position_x":864.572,"position_y":-195.525,"position_z":-43.6942,"rotation0":0,"rotation1":0,"rotation2":-0.953716,"rotation3":0.300708,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35803,"id":174415,"map":230,"orientation":2.58309,"phaseMask":1,"position_x":565.604,"position_y":-100.667,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":0.961262,"rotation3":0.275637,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35804,"id":170445,"map":230,"orientation":1.57952,"phaseMask":1,"position_x":711.532,"position_y":39.6208,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":0.710185,"rotation3":0.704015,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35805,"id":158580,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":577.717,"position_y":-138.115,"position_z":-36.9204,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35806,"id":174534,"map":230,"orientation":0.532325,"phaseMask":1,"position_x":891.735,"position_y":-198.835,"position_z":-43.6971,"rotation0":0,"rotation1":0,"rotation2":0.263031,"rotation3":0.964787,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35807,"id":170572,"map":230,"orientation":-2.35619,"phaseMask":1,"position_x":1449.13,"position_y":-342.325,"position_z":-92.0093,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":35808,"id":158571,"map":230,"orientation":3.71755,"phaseMask":1,"position_x":327.122,"position_y":-139.953,"position_z":-64.948,"rotation0":0,"rotation1":0,"rotation2":-0.958819,"rotation3":0.284016,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":35809,"id":158551,"map":230,"orientation":2.37364,"phaseMask":1,"position_x":634.132,"position_y":-233.81,"position_z":-35.6229,"rotation0":0,"rotation1":0,"rotation2":0.927183,"rotation3":0.374608,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35810,"id":170563,"map":230,"orientation":1.02102,"phaseMask":1,"position_x":319.473,"position_y":-216.317,"position_z":-77.7557,"rotation0":0,"rotation1":0,"rotation2":0.488622,"rotation3":0.872495,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35811,"id":170480,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1348.43,"position_y":-763.966,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":35812,"id":170554,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":1379.13,"position_y":-827.561,"position_z":-91.9804,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35813,"id":170474,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1346.45,"position_y":-766.735,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35814,"id":174467,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":861.169,"position_y":-139.926,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":35815,"id":170457,"map":230,"orientation":4.38078,"phaseMask":1,"position_x":991.852,"position_y":-356.764,"position_z":-65.3932,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35816,"id":170504,"map":230,"orientation":0,"phaseMask":1,"position_x":1412.95,"position_y":-789.338,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":35817,"id":140380,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":634.43,"position_y":-142.899,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35818,"id":170472,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":1346.45,"position_y":-763.966,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35819,"id":174524,"map":230,"orientation":1.87623,"phaseMask":1,"position_x":886.514,"position_y":-209.76,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":0.806444,"rotation3":0.59131,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35820,"id":170575,"map":230,"orientation":-1.5708,"phaseMask":1,"position_x":1380.12,"position_y":-710.482,"position_z":-92.0093,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35821,"id":170560,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":569.589,"position_y":-9.36154,"position_z":-70.2566,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35822,"id":170453,"map":230,"orientation":2.79252,"phaseMask":1,"position_x":864.724,"position_y":-197.895,"position_z":-43.6942,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35823,"id":174474,"map":230,"orientation":4.86074,"phaseMask":1,"position_x":862.884,"position_y":-135.828,"position_z":-49.7372,"rotation0":0,"rotation1":0,"rotation2":-0.65276,"rotation3":0.757565,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35824,"id":174433,"map":230,"orientation":6.27446,"phaseMask":1,"position_x":707.989,"position_y":49.6678,"position_z":-45.0302,"rotation0":0,"rotation1":0,"rotation2":-0.00436211,"rotation3":0.99999,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35825,"id":158679,"map":230,"orientation":5.02655,"phaseMask":1,"position_x":573.842,"position_y":-135.429,"position_z":-35.6645,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35826,"id":174550,"map":230,"orientation":0.95993,"phaseMask":1,"position_x":792,"position_y":-266.546,"position_z":-43.3257,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":35827,"id":170460,"map":230,"orientation":4.39999,"phaseMask":1,"position_x":972.812,"position_y":-408.586,"position_z":-60.673,"rotation0":-0.0449386,"rotation1":-0.0442982,"rotation2":-0.806544,"rotation3":0.587796,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35828,"id":174533,"map":230,"orientation":3.60411,"phaseMask":1,"position_x":894.627,"position_y":-197.716,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.973379,"rotation3":0.229201,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35862,"id":170592,"map":230,"orientation":1.5708,"phaseMask":1,"position_x":1380.52,"position_y":-834.296,"position_z":-86.6783,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35863,"id":174502,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":872.183,"position_y":-140.534,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35864,"id":174558,"map":230,"orientation":-0.820305,"phaseMask":1,"position_x":811.128,"position_y":-331.38,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":-0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":35865,"id":174517,"map":230,"orientation":3.73501,"phaseMask":1,"position_x":873.605,"position_y":-209.623,"position_z":-43.721,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35866,"id":170500,"map":230,"orientation":0,"phaseMask":1,"position_x":1410.75,"position_y":-780.912,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":39923,"id":164688,"map":230,"orientation":-0.881392,"phaseMask":1,"position_x":525.067,"position_y":-238.766,"position_z":-41.0167,"rotation0":0,"rotation1":0,"rotation2":-0.426569,"rotation3":0.904455,"spawnMask":1,"spawntimesecs":600,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":39924,"id":174559,"map":230,"orientation":0.759217,"phaseMask":1,"position_x":806.742,"position_y":-358.63,"position_z":-49.3422,"rotation0":0,"rotation1":0,"rotation2":0.370557,"rotation3":0.92881,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":39925,"id":170607,"map":230,"orientation":-1.03847,"phaseMask":1,"position_x":848.268,"position_y":-197.164,"position_z":-43.6743,"rotation0":0,"rotation1":0,"rotation2":-0.496216,"rotation3":0.868199,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":39926,"id":174448,"map":230,"orientation":3.76119,"phaseMask":1,"position_x":826.894,"position_y":-170.856,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.952395,"rotation3":0.304865,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":43082,"id":158562,"map":230,"orientation":1.45735,"phaseMask":1,"position_x":547.474,"position_y":-155.238,"position_z":-35.6229,"rotation0":0,"rotation1":0,"rotation2":0.665882,"rotation3":0.746057,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":43083,"id":140375,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":640.006,"position_y":-154.601,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43084,"id":174412,"map":230,"orientation":5.6985,"phaseMask":1,"position_x":574.867,"position_y":-100.646,"position_z":-45.0247,"rotation0":0,"rotation1":0,"rotation2":-0.288196,"rotation3":0.957572,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43085,"id":174541,"map":230,"orientation":5.63741,"phaseMask":1,"position_x":840.824,"position_y":-337.855,"position_z":-50.2247,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43086,"id":174442,"map":230,"orientation":4.7473,"phaseMask":1,"position_x":715.072,"position_y":49.5606,"position_z":-45.0064,"rotation0":0,"rotation1":0,"rotation2":-0.694657,"rotation3":0.719341,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43087,"id":174455,"map":230,"orientation":3.14159,"phaseMask":1,"position_x":827.847,"position_y":-172.382,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43088,"id":174506,"map":230,"orientation":0.549779,"phaseMask":1,"position_x":866.981,"position_y":-132.205,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":43089,"id":140394,"map":230,"orientation":1.19555,"phaseMask":1,"position_x":583.062,"position_y":-242.579,"position_z":-37.0031,"rotation0":0,"rotation1":0,"rotation2":0.562804,"rotation3":0.82659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43090,"id":174464,"map":230,"orientation":3.74374,"phaseMask":1,"position_x":825.495,"position_y":-180.731,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":-0.955019,"rotation3":0.296545,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43091,"id":158599,"map":230,"orientation":0,"phaseMask":1,"position_x":1348.44,"position_y":-786.733,"position_z":-85.165,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43092,"id":170527,"map":230,"orientation":4.71239,"phaseMask":1,"position_x":1470.93,"position_y":-404.209,"position_z":-92.0635,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43093,"id":174552,"map":230,"orientation":4.18007,"phaseMask":1,"position_x":791.756,"position_y":-262.877,"position_z":-43.3257,"rotation0":0,"rotation1":0,"rotation2":-0.868198,"rotation3":0.496217,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43094,"id":174553,"map":230,"orientation":-2.3911,"phaseMask":1,"position_x":804.221,"position_y":-356.07,"position_z":-48.9646,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47966,"animprogress":255,"areaId":0,"guid":43095,"id":174507,"map":230,"orientation":0.375245,"phaseMask":1,"position_x":868.226,"position_y":-134.198,"position_z":-49.7396,"rotation0":0,"rotation1":0,"rotation2":0.186523,"rotation3":0.98245,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46779,"animprogress":255,"areaId":0,"guid":43096,"id":140379,"map":230,"orientation":3.92699,"phaseMask":1,"position_x":631.595,"position_y":-140.111,"position_z":-35.6289,"rotation0":0,"rotation1":0,"rotation2":-0.92388,"rotation3":0.382683,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43100,"id":175736,"map":230,"orientation":-2.89725,"phaseMask":1,"position_x":796.877,"position_y":-259.958,"position_z":-43.2215,"rotation0":0,"rotation1":0,"rotation2":-0.992546,"rotation3":0.121868,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43101,"id":175739,"map":230,"orientation":1.309,"phaseMask":1,"position_x":768.508,"position_y":-313.491,"position_z":-42.3144,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43102,"id":175725,"map":230,"orientation":1.69297,"phaseMask":1,"position_x":816.034,"position_y":-310.85,"position_z":-42.3211,"rotation0":0,"rotation1":0,"rotation2":0.748956,"rotation3":0.66262,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43109,"id":165739,"map":230,"orientation":-2.63545,"phaseMask":1,"position_x":896.804,"position_y":-180.447,"position_z":-42.8357,"rotation0":0,"rotation1":0,"rotation2":-0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43110,"id":165739,"map":230,"orientation":0.523599,"phaseMask":1,"position_x":892.705,"position_y":-183.942,"position_z":-42.8634,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43111,"id":165738,"map":230,"orientation":0.436332,"phaseMask":1,"position_x":890.764,"position_y":-182.514,"position_z":-42.8079,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43116,"id":171941,"map":230,"orientation":-1.22173,"phaseMask":1,"position_x":848.112,"position_y":-194.884,"position_z":-43.7037,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43117,"id":173234,"map":230,"orientation":-1.20428,"phaseMask":1,"position_x":388.327,"position_y":-159.248,"position_z":-64.0879,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43118,"id":173232,"map":230,"orientation":1.74533,"phaseMask":1,"position_x":793.133,"position_y":-32.2615,"position_z":-52.628,"rotation0":0,"rotation1":0,"rotation2":0.766045,"rotation3":0.642787,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43119,"id":166872,"map":230,"orientation":0.331613,"phaseMask":1,"position_x":401.911,"position_y":-52.3001,"position_z":-63.939,"rotation0":0,"rotation1":0,"rotation2":0.165048,"rotation3":0.986286,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43120,"id":160836,"map":230,"orientation":0.767945,"phaseMask":1,"position_x":800.501,"position_y":-354.719,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43121,"id":160836,"map":230,"orientation":2.33874,"phaseMask":1,"position_x":830.274,"position_y":-352.138,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43122,"id":160836,"map":230,"orientation":-0.802851,"phaseMask":1,"position_x":805.92,"position_y":-334.672,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":-0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43123,"id":160836,"map":230,"orientation":0.802851,"phaseMask":1,"position_x":805.943,"position_y":-359.275,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43124,"id":160836,"map":230,"orientation":-0.802851,"phaseMask":1,"position_x":801.531,"position_y":-338.64,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":-0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43125,"id":160836,"map":230,"orientation":-0.820305,"phaseMask":1,"position_x":810.212,"position_y":-330.354,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":-0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43126,"id":160836,"map":230,"orientation":2.26893,"phaseMask":1,"position_x":826.025,"position_y":-356.067,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.906308,"rotation3":0.422617,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43127,"id":160836,"map":230,"orientation":2.23402,"phaseMask":1,"position_x":821.327,"position_y":-360.303,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43128,"id":160836,"map":230,"orientation":2.35619,"phaseMask":1,"position_x":817.216,"position_y":-364.331,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43129,"id":160836,"map":230,"orientation":-0.802851,"phaseMask":1,"position_x":796.978,"position_y":-342.902,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":-0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43130,"id":164819,"map":230,"orientation":0.820305,"phaseMask":1,"position_x":831.471,"position_y":-339.58,"position_z":-46.7698,"rotation0":0,"rotation1":0,"rotation2":0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43131,"id":164825,"map":230,"orientation":0.802851,"phaseMask":1,"position_x":831.54,"position_y":-339.529,"position_z":-46.682,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43133,"id":179553,"map":230,"orientation":3.01942,"phaseMask":1,"position_x":1128.01,"position_y":-471.763,"position_z":-104.032,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610484,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43134,"id":160845,"map":230,"orientation":0.750492,"phaseMask":1,"position_x":803.861,"position_y":-356.356,"position_z":-47.464,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930417,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43135,"id":160836,"map":230,"orientation":0.785398,"phaseMask":1,"position_x":810.224,"position_y":-363.701,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43136,"id":160836,"map":230,"orientation":0.767945,"phaseMask":1,"position_x":796.287,"position_y":-350.17,"position_z":-48.9411,"rotation0":0,"rotation1":0,"rotation2":0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43137,"id":161495,"map":230,"orientation":0.733038,"phaseMask":1,"position_x":803.48,"position_y":-357.449,"position_z":-48.9414,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":1,"spawntimesecs":600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67022,"id":195253,"map":230,"orientation":2.09439,"phaseMask":1,"position_x":876.175,"position_y":-218.116,"position_z":-37.5498,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67023,"id":195253,"map":230,"orientation":-2.61799,"phaseMask":1,"position_x":892.459,"position_y":-168.132,"position_z":-37.2257,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67024,"id":195253,"map":230,"orientation":2.07694,"phaseMask":1,"position_x":897.07,"position_y":-206.645,"position_z":-37.4959,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67025,"id":195253,"map":230,"orientation":2.07694,"phaseMask":1,"position_x":886.68,"position_y":-212.39,"position_z":-37.4664,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67026,"id":195253,"map":230,"orientation":2.11185,"phaseMask":1,"position_x":855.381,"position_y":-230.789,"position_z":-37.2527,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67027,"id":195253,"map":230,"orientation":-2.61799,"phaseMask":1,"position_x":898.565,"position_y":-178.468,"position_z":-37.0915,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67028,"id":195253,"map":230,"orientation":0.558504,"phaseMask":1,"position_x":843.094,"position_y":-229.722,"position_z":-36.9933,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67871,"id":164869,"map":230,"orientation":0.0494741,"phaseMask":1,"position_x":1225.07,"position_y":-244.98,"position_z":-85.67,"rotation0":0,"rotation1":0,"rotation2":0.0247345,"rotation3":0.999694,"spawnMask":1,"spawntimesecs":-250,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":67872,"id":169243,"map":230,"orientation":0.786698,"phaseMask":1,"position_x":1265.55,"position_y":-284.421,"position_z":-78.2193,"rotation0":0,"rotation1":0,"rotation2":0.383284,"rotation3":0.923631,"spawnMask":1,"spawntimesecs":-300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67915,"id":195256,"map":230,"orientation":-1.11701,"phaseMask":1,"position_x":855.561,"position_y":-142.067,"position_z":-48.0872,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67917,"id":195256,"map":230,"orientation":-1.85005,"phaseMask":1,"position_x":879.826,"position_y":-145.935,"position_z":-49.7594,"rotation0":0,"rotation1":0,"rotation2":-0.798636,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67918,"id":195256,"map":230,"orientation":-1.11701,"phaseMask":1,"position_x":874.269,"position_y":-182.294,"position_z":-43.7037,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67919,"id":195256,"map":230,"orientation":2.96704,"phaseMask":1,"position_x":870.174,"position_y":-219.478,"position_z":-43.7037,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.0871655,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67920,"id":195256,"map":230,"orientation":-3.03684,"phaseMask":1,"position_x":886.752,"position_y":-156.676,"position_z":-49.7605,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523524,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":67921,"id":195256,"map":230,"orientation":-1.11701,"phaseMask":1,"position_x":848.401,"position_y":-146.281,"position_z":-48.0859,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80698,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":830.654,"position_y":-163.978,"position_z":-48.88,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80699,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":891.046,"position_y":-170.57,"position_z":-42.8332,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80700,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":821.517,"position_y":-174.795,"position_z":-48.8382,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80701,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":858.851,"position_y":-172.606,"position_z":-48.8478,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80702,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":866.958,"position_y":-144.804,"position_z":-48.8856,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80703,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":877.285,"position_y":-169.196,"position_z":-48.8409,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80704,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":893.253,"position_y":-198.25,"position_z":-42.8703,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80705,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":830.051,"position_y":-154.908,"position_z":-48.8725,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80706,"id":195264,"map":230,"orientation":-1.16937,"phaseMask":1,"position_x":845.779,"position_y":-147.699,"position_z":-48.8352,"rotation0":0,"rotation1":0,"rotation2":-0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80707,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":896.01,"position_y":-202.806,"position_z":-42.8655,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80708,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":821.511,"position_y":-165.19,"position_z":-48.8584,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80709,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":869.124,"position_y":-163.9,"position_z":-48.864,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80710,"id":195264,"map":230,"orientation":-0.471238,"phaseMask":1,"position_x":817.588,"position_y":-180.07,"position_z":-48.8832,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80711,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":842.664,"position_y":-190.035,"position_z":-48.9151,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80712,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":859.877,"position_y":-164.822,"position_z":-48.8168,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80713,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":814.409,"position_y":-163.35,"position_z":-48.8338,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80714,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":874.01,"position_y":-140.864,"position_z":-48.8708,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80715,"id":195264,"map":230,"orientation":2.93214,"phaseMask":1,"position_x":876.237,"position_y":-144.417,"position_z":-48.8697,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104535,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80716,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":825.645,"position_y":-172.156,"position_z":-48.8906,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80717,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":863.471,"position_y":-196.908,"position_z":-42.7922,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80718,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":857.5,"position_y":-201.502,"position_z":-42.8256,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80719,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":838.307,"position_y":-151.834,"position_z":-48.8711,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80720,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":813.797,"position_y":-173.237,"position_z":-48.8576,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80721,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":884.739,"position_y":-164.978,"position_z":-48.8522,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80722,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":824.186,"position_y":-181.403,"position_z":-48.8683,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80723,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":859.089,"position_y":-139.845,"position_z":-48.8765,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80724,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":866.536,"position_y":-176.091,"position_z":-48.8598,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80725,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":852.691,"position_y":-206.595,"position_z":-42.8749,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80726,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":878.632,"position_y":-161.085,"position_z":-48.8504,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80727,"id":195264,"map":230,"orientation":0.628317,"phaseMask":1,"position_x":868.826,"position_y":-132.477,"position_z":-48.8574,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80890,"id":195266,"map":230,"orientation":2.09439,"phaseMask":1,"position_x":904.153,"position_y":-202.728,"position_z":-37.4635,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80891,"id":195266,"map":230,"orientation":2.16421,"phaseMask":1,"position_x":862.141,"position_y":-226.757,"position_z":-37.2087,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80892,"id":195266,"map":230,"orientation":2.16421,"phaseMask":1,"position_x":848.73,"position_y":-234.751,"position_z":-37.2759,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80893,"id":195266,"map":230,"orientation":2.09439,"phaseMask":1,"position_x":907.949,"position_y":-200.629,"position_z":-37.4735,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":80894,"id":195266,"map":230,"orientation":0.575957,"phaseMask":1,"position_x":838.715,"position_y":-222.66,"position_z":-37.0062,"rotation0":0,"rotation1":0,"rotation2":0.284015,"rotation3":0.95882,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81065,"id":195273,"map":230,"orientation":-1.15192,"phaseMask":1,"position_x":867.617,"position_y":-130.514,"position_z":-45.2255,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81066,"id":195273,"map":230,"orientation":-1.15192,"phaseMask":1,"position_x":860.128,"position_y":-134.844,"position_z":-45.1896,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81067,"id":195273,"map":230,"orientation":-1.15192,"phaseMask":1,"position_x":839.243,"position_y":-146.911,"position_z":-45.1784,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81068,"id":195273,"map":230,"orientation":-1.11701,"phaseMask":1,"position_x":813.863,"position_y":-161.558,"position_z":-45.3045,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81069,"id":195273,"map":230,"orientation":1.91986,"phaseMask":1,"position_x":838.528,"position_y":-216.232,"position_z":-40.4566,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81070,"id":195273,"map":230,"orientation":-2.67035,"phaseMask":1,"position_x":888.095,"position_y":-157.43,"position_z":-45.9001,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81071,"id":195273,"map":230,"orientation":1.91986,"phaseMask":1,"position_x":850.869,"position_y":-209.102,"position_z":-40.4154,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81072,"id":195273,"map":230,"orientation":-2.67035,"phaseMask":1,"position_x":880.24,"position_y":-144.102,"position_z":-45.7563,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81073,"id":195273,"map":230,"orientation":-1.15192,"phaseMask":1,"position_x":831.004,"position_y":-151.674,"position_z":-45.2715,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":81074,"id":195273,"map":230,"orientation":0.488691,"phaseMask":1,"position_x":825.044,"position_y":-196.507,"position_z":-45.1789,"rotation0":0,"rotation1":0,"rotation2":0.241921,"rotation3":0.970296,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99906,"id":181059,"map":230,"orientation":0,"phaseMask":1,"position_x":596.82,"position_y":-188.77,"position_z":-54.15,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":265712,"id":164911,"map":230,"orientation":3.64769,"phaseMask":1,"position_x":914.763,"position_y":-146.862,"position_z":-49.7579,"rotation0":0,"rotation1":0,"rotation2":0.968154,"rotation3":-0.250357,"spawnMask":1,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":265713,"id":164911,"map":230,"orientation":3.71367,"phaseMask":1,"position_x":918.736,"position_y":-153.958,"position_z":-49.758,"rotation0":0,"rotation1":0,"rotation2":0.959369,"rotation3":-0.282154,"spawnMask":1,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":265714,"id":164911,"map":230,"orientation":3.70111,"phaseMask":1,"position_x":916.727,"position_y":-150.147,"position_z":-49.7584,"rotation0":0,"rotation1":0,"rotation2":0.961122,"rotation3":-0.276124,"spawnMask":1,"spawntimesecs":43200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/BlackrockDepths":"eb49782515a1ecd22c4e503f23d4d007d20b112ecfc022a2fe25089f577a70d0","patch/World/maps/BlackrockDepths":"6c44ae01b480a2c6aed30d86da46ca65f65212fffc9ea7b3ad7967f96e46dc14"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/blackrock-depths/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["61/61 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"scholomance","title":"Scholomance","mapId":289,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[55,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Scholomance","theme":"Instanced dungeon","summary":"Fight through Scholomance, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Scholomance...","unchartedAreaName":"Uncharted Scholomance","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":340.6629},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/289-schoolofnecromancy/visual.glb","checksum":"e07fd81044b6b5ea46b881e9028ee1f7802f9ddb2af93e77e3fe0e722bdb255d","size":5749272,"triangleCount":137577}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/289-schoolofnecromancy/collision.glb","checksum":"b3e631bba1aa625fcb824fe1eafd1c640f372cda7c640d56402a73d91a40034d","size":856364,"triangleCount":80478}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/289-schoolofnecromancy/navigation.glb","checksum":"ca327ee985145aa0675c2d60ec7b74ea93836d4d7e331af9d6c7e264eacb6948","size":92620,"triangleCount":6886}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-244.0128,-156.7334,-376.0589],"max":[229.1301,-25.2802,82.2511]},"entrance":{"name":"Scholomance Entrance","footPosition":[-113.0128,-72.6802,-108.5718],"forward":[0.9020474555642062,0,0.43163687042482995],"yaw":1.1244897192524548},"areas":[{"id":"entrance","name":"Scholomance Entrance","center":[-113.0128,-72.6802,-108.5718],"radius":35},{"id":"area-jandice-barov","name":"Jandice Barov's Encounter","center":[-184.8658,-111.6657,-161.9888],"radius":42},{"id":"area-rattlegore","name":"Rattlegore's Encounter","center":[-53.7878,-111.6238,-63.9458],"radius":42},{"id":"area-instructor-malicia","name":"Instructor Malicia's Encounter","center":[-3.3062,-122.2785,-237.5822],"radius":42},{"id":"area-doctor-theolen-krastinov","name":"Doctor Theolen Krastinov's Encounter","center":[-98.8888,-122.2785,-331.0589],"radius":42},{"id":"area-lorekeeper-polkelt","name":"Lorekeeper Polkelt's Encounter","center":[-191.5198,-122.2785,-234.2881],"radius":42},{"id":"area-lord-alexei-barov","name":"Lord Alexei Barov's Encounter","center":[-95.3668,-136.7334,-326.645],"radius":42},{"id":"area-lady-illucia-barov","name":"Lady Illucia Barov's Encounter","center":[-182.5988,-132.2568,-234.7184],"radius":42},{"id":"area-ras-frostwhisper","name":"Ras Frostwhisper's Encounter","center":[108.4651,-123.6819,-94.3378],"radius":42}],"entities":{"entry-10480":{"id":"entry-10480","kind":"mob","name":"Unstable Corpse","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17689","name":"Disease Burst","spellId":17689,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6903,"damageMultiplier":1.12},{"id":"spell-15571","name":"Dazed","spellId":15571,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6903,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10978-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.127,"markerRadius":0.65}}},"entry-10481":{"id":"entry-10481","kind":"mob","name":"Reanimated Corpse","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18270","name":"Dark Plague","spellId":18270,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6224,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10975-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5887,"markerRadius":0.65}}},"entry-10475":{"id":"entry-10475","kind":"mob","name":"Scholomance Student","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11161-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-11551":{"id":"entry-11551","kind":"mob","name":"Necrofiend","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16469","name":"Web Explosion","spellId":16469,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4924,"damageMultiplier":0.62,"radius":8},{"id":"spell-25349","name":"Deadly Poison V","spellId":25349,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4924,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11178-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1531,"labelHeight":3.5363,"markerRadius":1.6675}}},"entry-10485":{"id":"entry-10485","kind":"mob","name":"Risen Aberration","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12021","name":"Fixate","spellId":12021,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7184,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c507c6b298bda6969a80215b8be3a3eb943fdacf22ee5ffc13becfd9fd7f686e.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-10495":{"id":"entry-10495","kind":"mob","name":"Diseased Ghoul","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1},{"id":"spell-24063","name":"Disease Cloud","spellId":24063,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5716,"damageMultiplier":1.12},{"id":"spell-18270","name":"Dark Plague","spellId":18270,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5716,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/46dbc556794b321a584218463446041b44ea68c28fb0be594db6c7c669f7125f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8357,"markerRadius":0.6634}}},"entry-10469":{"id":"entry-10469","kind":"mob","name":"Scholomance Adept","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15043","name":"Frostbolt","spellId":15043,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7332,"damageMultiplier":1.12},{"id":"spell-15499","name":"Frost Shock","spellId":15499,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7332,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11161-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10477":{"id":"entry-10477","kind":"mob","name":"Scholomance Necromancer","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17616","name":"Corpse Explosion","spellId":17616,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4104,"damageMultiplier":0.62,"radius":8},{"id":"spell-12020","name":"Call of the Grave","spellId":12020,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4104,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11163-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10498":{"id":"entry-10498","kind":"mob","name":"Spectral Tutor","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17630","name":"Mana Burn","spellId":17630,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4282,"damageMultiplier":1.12},{"id":"spell-12528","name":"Silence","spellId":12528,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4282,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-3942-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-10487":{"id":"entry-10487","kind":"mob","name":"Risen Protector","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17439","name":"Shadow Shock","spellId":17439,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4381,"damageMultiplier":1.12},{"id":"spell-6726","name":"Silence","spellId":6726,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4381,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11489-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":3.6388,"markerRadius":0.7423}}},"entry-11582":{"id":"entry-11582","kind":"mob","name":"Scholomance Dark Summoner","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15042","name":"Curse of Blood","spellId":15042,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4877,"damageMultiplier":1.12},{"id":"spell-17620","name":"Drain Life","spellId":17620,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4877,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11163-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10489":{"id":"entry-10489","kind":"mob","name":"Risen Guard","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5396,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":8000,"magnitude":0.15}},{"id":"spell-15572","name":"Sunder Armor","spellId":15572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5396,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/70ea1c98df2681d8282db8d3c117575ba28c9de492c29ced19580955691a5080.glb","rotationY":-1.5707963267948966,"groundOffset":0.003,"labelHeight":3.1657,"markerRadius":0.65}}},"entry-10476":{"id":"entry-10476","kind":"mob","name":"Scholomance Necrolyte","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6913,"damageMultiplier":1.12},{"id":"spell-17151","name":"Shadow Barrier","spellId":17151,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6913,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11161-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10488":{"id":"entry-10488","kind":"mob","name":"Risen Construct","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.809536,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":7379,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7379,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-12074-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6817,"markerRadius":0.7285}}},"entry-10432":{"id":"entry-10432","kind":"mob","name":"Vectus","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18399","name":"Flamestrike","spellId":18399,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7368,"damageMultiplier":1.12},{"id":"spell-16046","name":"Blast Wave","spellId":16046,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7368,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/84695efc6bafcc2d2fb5df07bd44d55d4c65562c3818de690087991d6294cf97.glb","rotationY":-1.5707963267948966,"groundOffset":0.0045,"labelHeight":3.834,"markerRadius":0.7434}}},"entry-10433":{"id":"entry-10433","kind":"mob","name":"Marduk Blackpool","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-17228","name":"Shadow Bolt Volley","spellId":17228,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6270,"damageMultiplier":0.62,"radius":8},{"id":"spell-12040","name":"Shadow Shield","spellId":12040,"delivery":"area","target":"self","school":"shadow","animation":"cast","range":0,"cooldownMs":6270,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-12040","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10248-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0033,"labelHeight":3.4391,"markerRadius":0.65}}},"entry-10503":{"id":"entry-10503","kind":"boss","name":"Jandice Barov","title":"Dungeon Boss","hasLoot":true,"combat":{"level":61,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-24673","name":"Curse of Blood","spellId":24673,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7311,"damageMultiplier":1.35},{"id":"spell-18270","name":"Dark Plague","spellId":18270,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7311,"damageMultiplier":1.35},{"id":"spell-18116","name":"Kirtonos Gargoyle Passive","spellId":18116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7311,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11073-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7721,"markerRadius":0.65}}},"entry-10470":{"id":"entry-10470","kind":"mob","name":"Scholomance Neophyte","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6172,"damageMultiplier":1.12},{"id":"spell-12542","name":"Fear","spellId":12542,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6172,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11164-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10471":{"id":"entry-10471","kind":"mob","name":"Scholomance Acolyte","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17613","name":"Dark Mending","spellId":17613,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4600,"damageMultiplier":1.12},{"id":"spell-11443","name":"Cripple","spellId":11443,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4600,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11157-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10508":{"id":"entry-10508","kind":"boss","name":"Ras Frostwhisper","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18099","name":"Chill Nova","spellId":18099,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7250,"damageMultiplier":0.82,"radius":11},{"id":"spell-8398","name":"Frostbolt Volley","spellId":8398,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7250,"damageMultiplier":0.82,"radius":11},{"id":"spell-12096","name":"Fear","spellId":12096,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7250,"damageMultiplier":0,"radius":11,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}},{"id":"spell-18763","name":"Freeze","spellId":18763,"delivery":"projectile","target":"random-party","school":"frost","animation":"cast","range":28,"cooldownMs":7250,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/39bfb5c35e192459b036ef2b5f276819df5e8591dda7c03082ce9968b53365b2.glb","rotationY":-1.5707963267948966,"groundOffset":0.4975,"labelHeight":6.7656,"markerRadius":1.4989}}},"entry-10478":{"id":"entry-10478","kind":"mob","name":"Splintered Skeleton","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11401-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0019,"labelHeight":3.4636,"markerRadius":0.65}}},"entry-10507":{"id":"entry-10507","kind":"mob","name":"The Ravenian","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17963","name":"Sundering Cleave","spellId":17963,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4448,"damageMultiplier":0.62,"radius":8},{"id":"spell-15550","name":"Trample","spellId":15550,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4448,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/e814a203d28d25862645cdbba9124e4b453ad5e05bdaaaad0695e3937bb57f27.glb","rotationY":-1.5707963267948966,"groundOffset":0.0443,"labelHeight":3.6969,"markerRadius":1.1544}}},"entry-10502":{"id":"entry-10502","kind":"boss","name":"Lady Illucia Barov","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18116","name":"Kirtonos Gargoyle Passive","spellId":18116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6751,"damageMultiplier":1.35},{"id":"spell-19460","name":"Shadow Shock","spellId":19460,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6751,"damageMultiplier":1.35},{"id":"spell-6215","name":"Fear","spellId":6215,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6751,"damageMultiplier":0,"radius":11,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}},{"id":"spell-15487","name":"Silence","spellId":15487,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11835-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":2.7721,"markerRadius":0.65}}},"entry-10491":{"id":"entry-10491","kind":"mob","name":"Risen Bonewarder","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17620","name":"Drain Life","spellId":17620,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4651,"damageMultiplier":0.62,"radius":8},{"id":"spell-16431","name":"Bone Armor","spellId":16431,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4651,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11397-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0034,"labelHeight":2.9745,"markerRadius":0.65}}},"entry-10504":{"id":"entry-10504","kind":"boss","name":"Lord Alexei Barov","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11668","name":"Immolate","spellId":11668,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5855,"damageMultiplier":1.35},{"id":"spell-11700","name":"Drain Life","spellId":11700,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5855,"damageMultiplier":0.82,"radius":11},{"id":"spell-18116","name":"Kirtonos Gargoyle Passive","spellId":18116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5855,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11072-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0012,"labelHeight":4.171,"markerRadius":0.8719}}},"entry-10486":{"id":"entry-10486","kind":"mob","name":"Risen Warrior","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-14516","name":"Strike","spellId":14516,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6538,"damageMultiplier":1.12},{"id":"spell-11428","name":"Stunning Strike","spellId":11428,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6538,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/9a6dd0a8f5d239e51ad1ceaed4079f25646ad7be2e952cc4feef7bbcda29613b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":3.6388,"markerRadius":0.7423}}},"entry-10505":{"id":"entry-10505","kind":"boss","name":"Instructor Malicia","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18376","name":"Corruption","spellId":18376,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4194,"damageMultiplier":1.35},{"id":"spell-12020","name":"Call of the Grave","spellId":12020,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4194,"damageMultiplier":1.35},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4194,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-17843","name":"Flash Heal","spellId":17843,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4194,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-20981-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0012,"labelHeight":2.3842,"markerRadius":0.65}}},"entry-10472":{"id":"entry-10472","kind":"mob","name":"Scholomance Occultist","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15122","name":"Counterspell","spellId":15122,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5274,"damageMultiplier":1.12},{"id":"spell-17682","name":"Drain Mana","spellId":17682,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5274,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11157-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10500":{"id":"entry-10500","kind":"mob","name":"Spectral Teacher","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17630","name":"Mana Burn","spellId":17630,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5754,"damageMultiplier":1.12},{"id":"spell-17633","name":"Arcane Focus","spellId":17633,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5754,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-3942-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-11622":{"id":"entry-11622","kind":"boss","name":"Rattlegore","title":"Dungeon Boss","hasLoot":true,"combat":{"level":61,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.809536,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5433,"damageMultiplier":1.35},{"id":"spell-16727","name":"War Stomp","spellId":16727,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5433,"damageMultiplier":0.82,"radius":11},{"id":"spell-18116","name":"Kirtonos Gargoyle Passive","spellId":18116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5433,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-12073-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.1783,"markerRadius":1.1657}}},"entry-11261":{"id":"entry-11261","kind":"boss","name":"Doctor Theolen Krastinov","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-16509","name":"Rend","spellId":16509,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5566,"damageMultiplier":1.35},{"id":"spell-18103","name":"Backhand","spellId":18103,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5566,"damageMultiplier":1.35},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5566,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10901-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10678":{"id":"entry-10678","kind":"mob","name":"Plagued Hatchling","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10007-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6266,"markerRadius":1.0609}}},"entry-11257":{"id":"entry-11257","kind":"mob","name":"Scholomance Handler","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10833","name":"Arcane Blast","spellId":10833,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4402,"damageMultiplier":1.12},{"id":"spell-15244","name":"Cone of Cold","spellId":15244,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4402,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11161-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6847,"markerRadius":0.65}}},"entry-10901":{"id":"entry-10901","kind":"boss","name":"Lorekeeper Polkelt","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8245","name":"Corrosive Acid","spellId":8245,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6412,"damageMultiplier":1.35},{"id":"spell-18149","name":"Volatile Infection","spellId":18149,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6412,"damageMultiplier":1.35},{"id":"spell-18116","name":"Kirtonos Gargoyle Passive","spellId":18116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6412,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11492-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.1868,"markerRadius":0.65}}},"entry-10499":{"id":"entry-10499","kind":"mob","name":"Spectral Researcher","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17630","name":"Mana Burn","spellId":17630,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6539,"damageMultiplier":1.12},{"id":"spell-17631","name":"Wail of Souls","spellId":17631,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6539,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-3942-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-14861":{"id":"entry-14861","kind":"mob","name":"Blood Steward of Kirtonos","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22371","name":"Curse of Impotence","spellId":22371,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6244,"damageMultiplier":1.12},{"id":"spell-12493","name":"Curse of Weakness","spellId":12493,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6244,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-10925-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0019,"labelHeight":3.3747,"markerRadius":2.5476}}},"entry-14695":{"id":"entry-14695","kind":"mob","name":"Lord Blackwood","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-14699-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":5.7727,"markerRadius":0.7378}}},"entry-1853":{"id":"entry-1853","kind":"mob","name":"Darkmaster Gandling","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17950","name":"Shadow Portal","spellId":17950,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7201,"damageMultiplier":1.12},{"id":"spell-12040","name":"Shadow Shield","spellId":12040,"delivery":"area","target":"self","school":"shadow","animation":"cast","range":0,"cooldownMs":7201,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-12040","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/scholomance/creatures/display-11070-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.001,"labelHeight":3.5751,"markerRadius":0.7474}}}},"staticSpawns":[{"id":"creature-48361","entityId":"entry-10480","position":[-166.3578,-122.4845,-241.5994],"yaw":-3.1765,"spawnMask":1},{"id":"creature-48363","entityId":"entry-10481","position":[-184.2888,-122.2785,-227.1569],"yaw":-3.50811,"spawnMask":1},{"id":"creature-48374","entityId":"entry-10480","position":[-184.7868,-122.2785,-243.2529],"yaw":-4.17134,"spawnMask":1},{"id":"creature-48375","entityId":"entry-10480","position":[-172.2378,-122.2785,-225.2455],"yaw":-5.58505,"spawnMask":1},{"id":"creature-48385","entityId":"entry-10480","position":[-144.8138,-122.2785,-226.1471],"yaw":-5.63741,"spawnMask":1},{"id":"creature-48389","entityId":"entry-10480","position":[-174.2428,-122.666,-230.6607],"yaw":-1.65806,"spawnMask":1},{"id":"creature-48428","entityId":"entry-10480","position":[-179.0988,-122.666,-230.545],"yaw":-2.35619,"spawnMask":1},{"id":"creature-48436","entityId":"entry-10481","position":[-150.3858,-122.666,-240.4754],"yaw":-4.18879,"spawnMask":1},{"id":"creature-48457","entityId":"entry-10480","position":[-175.9708,-122.666,-240.6821],"yaw":-2.96706,"spawnMask":1},{"id":"creature-48458","entityId":"entry-10480","position":[-146.6928,-122.2785,-245.5678],"yaw":-5.84685,"spawnMask":1},{"id":"creature-48459","entityId":"entry-10475","position":[-26.6958,-107.7907,-136.8195],"yaw":-1.64061,"spawnMask":1},{"id":"creature-48460","entityId":"entry-10475","position":[-11.5416,-109.8139,-162.1164],"yaw":-0.872665,"spawnMask":1},{"id":"creature-48461","entityId":"entry-10475","position":[-20.4648,-108.9729,-128.6888],"yaw":-0.558505,"spawnMask":1},{"id":"creature-48462","entityId":"entry-10475","position":[-40.2328,-105.8922,-155.8603],"yaw":-0.383972,"spawnMask":1},{"id":"creature-48463","entityId":"entry-10475","position":[-27.8818,-108.5552,-170.7839],"yaw":-1.46608,"spawnMask":1},{"id":"creature-48464","entityId":"entry-10475","position":[-52.7458,-105.4602,-148.2979],"yaw":-3.94444,"spawnMask":1},{"id":"creature-48465","entityId":"entry-10475","position":[-14.5674,-109.6276,-160.5333],"yaw":-3.40339,"spawnMask":1},{"id":"creature-48466","entityId":"entry-10475","position":[-26.9648,-107.6668,-150.6356],"yaw":-0.453786,"spawnMask":1},{"id":"creature-48467","entityId":"entry-10475","position":[-13.7689,-109.7843,-138.0615],"yaw":-5.044,"spawnMask":1},{"id":"creature-48468","entityId":"entry-10475","position":[-25.8878,-108.6519,-166.8186],"yaw":-5.8294,"spawnMask":1},{"id":"creature-48470","entityId":"entry-10485","position":[-114.7868,-102.9242,-161.7328],"yaw":-0.058792,"spawnMask":1},{"id":"creature-48476","entityId":"entry-10481","position":[-114.2018,-103.2632,-156.0327],"yaw":-1.99957,"spawnMask":1},{"id":"creature-48477","entityId":"entry-10495","position":[-120.8338,-102.7922,-162.5566],"yaw":-5.23599,"spawnMask":1},{"id":"creature-48478","entityId":"entry-10481","position":[-96.0268,-102.7902,-151.9548],"yaw":-1.40979,"spawnMask":1},{"id":"creature-48479","entityId":"entry-10485","position":[-107.9858,-103.2632,-152.1615],"yaw":-2.59332,"spawnMask":1},{"id":"creature-48548","entityId":"entry-10481","position":[-108.3308,-103.2632,-144.7644],"yaw":-5.79797,"spawnMask":1},{"id":"creature-48563","entityId":"entry-10495","position":[-103.6768,-102.7922,-149.1206],"yaw":-1.70667,"spawnMask":1},{"id":"creature-48570","entityId":"entry-10485","position":[-95.7688,-102.7902,-140.9537],"yaw":-0.762391,"spawnMask":1},{"id":"creature-48575","entityId":"entry-10485","position":[-103.7288,-102.8232,-143.0848],"yaw":-3.50555,"spawnMask":1},{"id":"creature-48585","entityId":"entry-10495","position":[-96.9988,-102.7922,-132.7208],"yaw":-0.181816,"spawnMask":1},{"id":"creature-48586","entityId":"entry-10485","position":[-131.0228,-102.7922,-162.5201],"yaw":-1.15192,"spawnMask":1},{"id":"creature-48760","entityId":"entry-10481","position":[-138.6448,-102.7922,-153.3603],"yaw":-1.62244,"spawnMask":1},{"id":"creature-48761","entityId":"entry-10495","position":[-137.0148,-102.7922,-162.1011],"yaw":-5.64305,"spawnMask":1},{"id":"creature-48762","entityId":"entry-10485","position":[-132.2758,-102.7922,-155.8108],"yaw":-6.26976,"spawnMask":1},{"id":"creature-48763","entityId":"entry-10485","position":[-127.9558,-103.2632,-146.7486],"yaw":-3.96787,"spawnMask":1},{"id":"creature-48764","entityId":"entry-10485","position":[-123.2248,-103.2632,-149.7157],"yaw":-3.7241,"spawnMask":1},{"id":"creature-48765","entityId":"entry-10495","position":[-128.4048,-103.2632,-152.9186],"yaw":-3.23844,"spawnMask":1},{"id":"creature-48766","entityId":"entry-10485","position":[-113.3638,-103.2632,-143.7201],"yaw":-3.12665,"spawnMask":1},{"id":"creature-48767","entityId":"entry-10485","position":[-119.6808,-102.7922,-136.9226],"yaw":-0.305482,"spawnMask":1},{"id":"creature-48768","entityId":"entry-10495","position":[-113.7608,-102.7922,-137.5402],"yaw":-2.56765,"spawnMask":1},{"id":"creature-48769","entityId":"entry-10495","position":[-121.0128,-103.2632,-143.1212],"yaw":-4.0093,"spawnMask":1},{"id":"creature-48770","entityId":"entry-10485","position":[-138.5598,-102.7922,-139.2172],"yaw":-4.38522,"spawnMask":1},{"id":"creature-48771","entityId":"entry-10481","position":[-138.5988,-102.7922,-131.7318],"yaw":-3.64813,"spawnMask":1},{"id":"creature-48772","entityId":"entry-10495","position":[-132.6388,-102.7922,-143.8732],"yaw":-5.54672,"spawnMask":1},{"id":"creature-48773","entityId":"entry-10485","position":[-134.1788,-102.7922,-136.2087],"yaw":-5.86525,"spawnMask":1},{"id":"creature-48774","entityId":"entry-10469","position":[-126.9638,-97.7832,-86.6888],"yaw":-5.13127,"spawnMask":1},{"id":"creature-48775","entityId":"entry-10469","position":[-138.3298,-97.8672,-114.5498],"yaw":-5.84685,"spawnMask":1},{"id":"creature-48776","entityId":"entry-10477","position":[-137.9608,-97.8662,-112.3908],"yaw":-6.14356,"spawnMask":1},{"id":"creature-48777","entityId":"entry-10477","position":[-131.6748,-97.8572,-112.3468],"yaw":-3.36848,"spawnMask":1},{"id":"creature-48778","entityId":"entry-10498","position":[-88.6258,-97.9232,-63.0538],"yaw":-5.74213,"spawnMask":1},{"id":"creature-48779","entityId":"entry-10498","position":[-193.3548,-97.7212,-81.7468],"yaw":-3.14159,"spawnMask":1},{"id":"creature-48780","entityId":"entry-10487","position":[-89.8028,-97.8812,-108.4328],"yaw":-0.680678,"spawnMask":1},{"id":"creature-48782","entityId":"entry-10477","position":[-98.3668,-97.8672,-120.3298],"yaw":-5.3058,"spawnMask":1},{"id":"creature-48783","entityId":"entry-10498","position":[-104.3568,-97.7992,-61.6258],"yaw":-4.64258,"spawnMask":1},{"id":"creature-48784","entityId":"entry-10469","position":[-91.8768,-97.9532,-98.9168],"yaw":-3.92699,"spawnMask":1},{"id":"creature-48785","entityId":"entry-10469","position":[-88.0228,-97.9522,-99.0858],"yaw":-5.49779,"spawnMask":1},{"id":"creature-48786","entityId":"entry-10477","position":[-92.3638,-97.9262,-102.5198],"yaw":-2.58309,"spawnMask":1},{"id":"creature-48787","entityId":"entry-10469","position":[-136.7408,-97.8672,-59.8818],"yaw":-2.28638,"spawnMask":1},{"id":"creature-48788","entityId":"entry-11582","position":[-196.6218,-97.7482,-156.7133],"yaw":-2.44346,"spawnMask":1},{"id":"creature-48790","entityId":"entry-10476","position":[-190.3808,-97.7412,-114.7278],"yaw":-0.034907,"spawnMask":1},{"id":"creature-48791","entityId":"entry-11582","position":[-165.8218,-97.7842,-136.2657],"yaw":-2.68781,"spawnMask":1},{"id":"creature-48792","entityId":"entry-10476","position":[-193.2898,-97.8322,-129.5208],"yaw":-4.69494,"spawnMask":1},{"id":"creature-48793","entityId":"entry-11582","position":[-165.8658,-97.5882,-114.1388],"yaw":-3.56047,"spawnMask":1},{"id":"creature-48795","entityId":"entry-10488","position":[-70.2618,-114.4216,-43.5028],"yaw":-4.82485,"spawnMask":1},{"id":"creature-48796","entityId":"entry-10488","position":[-24.9298,-109.9454,-99.1078],"yaw":-1.31211,"spawnMask":1},{"id":"creature-48797","entityId":"entry-10488","position":[-35.6948,-115.3479,-78.8518],"yaw":-2.92533,"spawnMask":1},{"id":"creature-48798","entityId":"entry-10488","position":[-62.8158,-114.4748,-77.6958],"yaw":-4.14954,"spawnMask":1},{"id":"creature-48799","entityId":"entry-10488","position":[-74.1048,-114.4216,-90.9618],"yaw":-4.77398,"spawnMask":1},{"id":"creature-48800","entityId":"entry-10488","position":[-38.0068,-112.4211,-40.2898],"yaw":-4.18879,"spawnMask":1},{"id":"creature-48801","entityId":"entry-10488","position":[-60.7658,-112.5283,-59.4238],"yaw":-0.460671,"spawnMask":1},{"id":"creature-48802","entityId":"entry-10488","position":[-35.8308,-114.8642,-58.9638],"yaw":-0.597001,"spawnMask":1},{"id":"creature-48803","entityId":"entry-10488","position":[-53.6018,-114.0449,-41.6718],"yaw":-6.13,"spawnMask":1},{"id":"creature-48804","entityId":"entry-10488","position":[-53.8798,-114.4535,-95.2108],"yaw":-4.42364,"spawnMask":1},{"id":"creature-48806","entityId":"entry-10433","position":[-67.0108,-102.9292,-119.4018],"yaw":-3.83972,"spawnMask":1},{"id":"creature-48807","entityId":"entry-10503","position":[-184.8658,-111.6657,-161.9888],"yaw":-1.64061,"spawnMask":1},{"id":"creature-48808","entityId":"entry-10481","position":[-171.5358,-111.6839,-140.8869],"yaw":-3.18587,"spawnMask":1},{"id":"creature-48809","entityId":"entry-10495","position":[-167.5298,-111.684,-145.0683],"yaw":-1.65319,"spawnMask":1},{"id":"creature-48810","entityId":"entry-10485","position":[-166.3348,-111.684,-136.923],"yaw":-2.74121,"spawnMask":1},{"id":"creature-48811","entityId":"entry-10485","position":[-173.6738,-111.6841,-134.5658],"yaw":-5.5676,"spawnMask":1},{"id":"creature-48813","entityId":"entry-10485","position":[-173.0698,-111.6843,-110.9618],"yaw":-4.32302,"spawnMask":1},{"id":"creature-48814","entityId":"entry-10485","position":[-179.8508,-111.6843,-113.6528],"yaw":-0.267297,"spawnMask":1},{"id":"creature-48815","entityId":"entry-10485","position":[-170.4458,-111.6843,-121.8748],"yaw":-5.45107,"spawnMask":1},{"id":"creature-48816","entityId":"entry-10495","position":[-176.6578,-111.6843,-121.6518],"yaw":-0.133371,"spawnMask":1},{"id":"creature-48817","entityId":"entry-10481","position":[-152.1318,-111.6843,-117.2338],"yaw":-2.45582,"spawnMask":1},{"id":"creature-48818","entityId":"entry-10495","position":[-148.4098,-111.6843,-123.1058],"yaw":-0.031724,"spawnMask":1},{"id":"creature-48819","entityId":"entry-10485","position":[-146.3878,-111.6843,-116.6898],"yaw":-3.36618,"spawnMask":1},{"id":"creature-48820","entityId":"entry-10485","position":[-150.7288,-111.6843,-109.9688],"yaw":-3.02623,"spawnMask":1},{"id":"creature-48821","entityId":"entry-10485","position":[-157.1698,-111.6843,-114.0708],"yaw":-3.05655,"spawnMask":1},{"id":"creature-48822","entityId":"entry-10481","position":[-189.3708,-111.6841,-138.7449],"yaw":-5.8101,"spawnMask":1},{"id":"creature-48823","entityId":"entry-10481","position":[-195.1198,-111.6842,-132.7878],"yaw":-2.64623,"spawnMask":1},{"id":"creature-48824","entityId":"entry-10485","position":[-195.1938,-111.7676,-141.6654],"yaw":-3.25042,"spawnMask":1},{"id":"creature-48825","entityId":"entry-10485","position":[-187.9478,-111.6841,-145.3142],"yaw":-2.87892,"spawnMask":1},{"id":"creature-48826","entityId":"entry-10485","position":[-183.9958,-111.684,-139.3142],"yaw":-0.032736,"spawnMask":1},{"id":"creature-48827","entityId":"entry-10495","position":[-186.9078,-111.6841,-133.4878],"yaw":-0.883407,"spawnMask":1},{"id":"creature-48828","entityId":"entry-10481","position":[-191.0638,-111.6842,-63.8308],"yaw":-3.52556,"spawnMask":1},{"id":"creature-48829","entityId":"entry-10485","position":[-197.2048,-111.7677,-57.0978],"yaw":-2.77441,"spawnMask":1},{"id":"creature-48830","entityId":"entry-10485","position":[-197.5768,-111.7677,-63.7058],"yaw":-0.631015,"spawnMask":1},{"id":"creature-48831","entityId":"entry-10485","position":[-192.4968,-111.6842,-68.7718],"yaw":-1.71042,"spawnMask":1},{"id":"creature-48832","entityId":"entry-10495","position":[-187.8118,-111.6842,-66.3148],"yaw":-4.45059,"spawnMask":1},{"id":"creature-48833","entityId":"entry-10481","position":[-146.5618,-111.6843,-89.0438],"yaw":-2.82045,"spawnMask":1},{"id":"creature-48834","entityId":"entry-10485","position":[-154.3688,-111.6843,-86.3408],"yaw":-2.05128,"spawnMask":1},{"id":"creature-48835","entityId":"entry-10485","position":[-154.3518,-111.6843,-97.9048],"yaw":-0.231746,"spawnMask":1},{"id":"creature-48836","entityId":"entry-10495","position":[-148.0448,-111.6843,-97.4578],"yaw":-5.61193,"spawnMask":1},{"id":"creature-48837","entityId":"entry-10495","position":[-165.3178,-111.6843,-87.6068],"yaw":-6.24893,"spawnMask":1},{"id":"creature-48838","entityId":"entry-10485","position":[-175.8828,-111.6843,-91.0668],"yaw":-3.07471,"spawnMask":1},{"id":"creature-48839","entityId":"entry-10485","position":[-162.6148,-111.7677,-122.1018],"yaw":-3.00302,"spawnMask":1},{"id":"creature-48840","entityId":"entry-10470","position":[-149.0758,-91.7992,-235.1444],"yaw":-4.46804,"spawnMask":1},{"id":"creature-48841","entityId":"entry-10471","position":[-147.3628,-91.7812,-215.7033],"yaw":-4.67748,"spawnMask":1},{"id":"creature-48842","entityId":"entry-10471","position":[-138.4108,-91.7992,-254.1057],"yaw":-6.21337,"spawnMask":1},{"id":"creature-48843","entityId":"entry-10470","position":[-133.8668,-91.7992,-243.4191],"yaw":-5.65487,"spawnMask":1},{"id":"creature-48844","entityId":"entry-10470","position":[-159.4228,-91.7992,-203.4788],"yaw":-5.16617,"spawnMask":1},{"id":"creature-48845","entityId":"entry-10470","position":[-126.0178,-91.7992,-223.1846],"yaw":-5.32325,"spawnMask":1},{"id":"creature-48847","entityId":"entry-10470","position":[-88.6718,-91.7992,-232.2864],"yaw":-0.750492,"spawnMask":1},{"id":"creature-48848","entityId":"entry-10470","position":[-146.2058,-91.7822,-217.809],"yaw":-0.593412,"spawnMask":1},{"id":"creature-48849","entityId":"entry-10471","position":[-155.9238,-91.7992,-181.9627],"yaw":-6.10865,"spawnMask":1},{"id":"creature-48850","entityId":"entry-10508","position":[108.4651,-123.6819,-94.3378],"yaw":-0.034907,"spawnMask":1},{"id":"creature-48851","entityId":"entry-10478","position":[-40.0718,-132.1923,-229.7224],"yaw":-3.36196,"spawnMask":1},{"id":"creature-48852","entityId":"entry-10478","position":[-41.6838,-132.1923,-243.4265],"yaw":-4.7045,"spawnMask":1},{"id":"creature-48853","entityId":"entry-10478","position":[-47.0968,-132.1923,-224.4667],"yaw":-2.60897,"spawnMask":1},{"id":"creature-48854","entityId":"entry-10507","position":[-19.9478,-132.3719,-237.2993],"yaw":-6.17846,"spawnMask":1},{"id":"creature-48855","entityId":"entry-10478","position":[-47.2328,-132.1923,-238.5713],"yaw":-3.88106,"spawnMask":1},{"id":"creature-48856","entityId":"entry-10478","position":[-47.4028,-132.1923,-249.2618],"yaw":-1.99339,"spawnMask":1},{"id":"creature-48857","entityId":"entry-10502","position":[-182.5988,-132.2568,-234.7184],"yaw":-3.07178,"spawnMask":1},{"id":"creature-48858","entityId":"entry-10491","position":[-164.7578,-134.9218,-232.8126],"yaw":-4.66764,"spawnMask":1},{"id":"creature-48859","entityId":"entry-10491","position":[-143.4968,-134.9172,-235.3602],"yaw":-3.16098,"spawnMask":1},{"id":"creature-48860","entityId":"entry-10491","position":[-151.8498,-134.9172,-228.3259],"yaw":-1.55028,"spawnMask":1},{"id":"creature-48861","entityId":"entry-10491","position":[-157.4508,-134.9172,-226.857],"yaw":-1.5994,"spawnMask":1},{"id":"creature-48862","entityId":"entry-10489","position":[-91.9088,-136.7334,-323.8033],"yaw":-1.5708,"spawnMask":1},{"id":"creature-48863","entityId":"entry-10504","position":[-95.3668,-136.7334,-326.645],"yaw":-1.64061,"spawnMask":1},{"id":"creature-48864","entityId":"entry-10489","position":[-99.7308,-136.7334,-323.6452],"yaw":-1.53589,"spawnMask":1},{"id":"creature-48865","entityId":"entry-10486","position":[-103.9378,-132.109,-293.4283],"yaw":-1.76278,"spawnMask":1},{"id":"creature-48866","entityId":"entry-10486","position":[-93.3048,-132.109,-293.5556],"yaw":-1.41372,"spawnMask":1},{"id":"creature-48867","entityId":"entry-10505","position":[-3.3062,-122.2785,-237.5822],"yaw":-0.017453,"spawnMask":1},{"id":"creature-48868","entityId":"entry-10472","position":[-42.0388,-122.1523,-233.0258],"yaw":-2.72271,"spawnMask":1},{"id":"creature-48869","entityId":"entry-10472","position":[-17.7248,-122.2785,-229.2199],"yaw":-5.2709,"spawnMask":1},{"id":"creature-48870","entityId":"entry-10469","position":[-19.0968,-122.2785,-231.2476],"yaw":-2.18166,"spawnMask":1},{"id":"creature-48871","entityId":"entry-10472","position":[-27.5348,-122.2785,-242.0846],"yaw":-0.436332,"spawnMask":1},{"id":"creature-48896","entityId":"entry-10477","position":[-29.5638,-122.1304,-240.0727],"yaw":-4.57276,"spawnMask":1},{"id":"creature-48897","entityId":"entry-10472","position":[-30.3788,-122.2785,-242.7186],"yaw":-2.56563,"spawnMask":1},{"id":"creature-48898","entityId":"entry-10469","position":[-39.9488,-122.2785,-231.689],"yaw":-6.05629,"spawnMask":1},{"id":"creature-48899","entityId":"entry-10472","position":[-43.1158,-122.2785,-230.7405],"yaw":-3.85718,"spawnMask":1},{"id":"creature-48900","entityId":"entry-10471","position":[45.2969,-123.9612,-74.5128],"yaw":-6.24828,"spawnMask":1},{"id":"creature-48901","entityId":"entry-10477","position":[66.7255,-123.9612,-78.5078],"yaw":-6.14356,"spawnMask":1},{"id":"creature-48902","entityId":"entry-10500","position":[43.2974,-123.9612,-76.0848],"yaw":-0.698132,"spawnMask":1},{"id":"creature-48903","entityId":"entry-10470","position":[51.6151,-123.9612,-104.3718],"yaw":-5.65487,"spawnMask":1},{"id":"creature-48904","entityId":"entry-10471","position":[61.4371,-123.9612,-78.6608],"yaw":-2.87979,"spawnMask":1},{"id":"creature-48905","entityId":"entry-10477","position":[41.6827,-123.9612,-77.9998],"yaw":-1.79769,"spawnMask":1},{"id":"creature-48906","entityId":"entry-10469","position":[47.4413,-123.9612,-108.8728],"yaw":-1.64061,"spawnMask":1},{"id":"creature-48907","entityId":"entry-10500","position":[64.4126,-123.9612,-79.3618],"yaw":-1.5708,"spawnMask":1},{"id":"creature-48908","entityId":"entry-10500","position":[47.7514,-123.9612,-105.8628],"yaw":-3.9619,"spawnMask":1},{"id":"creature-48910","entityId":"entry-11622","position":[-53.7878,-111.6238,-63.9458],"yaw":-3.28122,"spawnMask":1},{"id":"creature-48921","entityId":"entry-10495","position":[-109.3818,-122.2785,-304.6683],"yaw":-4.81711,"spawnMask":1},{"id":"creature-48922","entityId":"entry-10495","position":[-91.3878,-122.2785,-300.9125],"yaw":-0.314159,"spawnMask":1},{"id":"creature-48923","entityId":"entry-10495","position":[-97.3508,-122.666,-311.4395],"yaw":-1.39626,"spawnMask":1},{"id":"creature-48924","entityId":"entry-10495","position":[-102.3218,-122.666,-300.2489],"yaw":-5.55015,"spawnMask":1},{"id":"creature-48925","entityId":"entry-11261","position":[-98.8888,-122.2785,-331.0589],"yaw":-4.72984,"spawnMask":1},{"id":"creature-48926","entityId":"entry-10495","position":[-86.6478,-122.2785,-313.7724],"yaw":-4.27606,"spawnMask":1},{"id":"creature-48927","entityId":"entry-10678","position":[-23.3388,-98.0192,-74.3768],"yaw":-5.98648,"spawnMask":1},{"id":"creature-48928","entityId":"entry-11257","position":[-28.6858,-98.0992,-82.3378],"yaw":-3.53422,"spawnMask":1},{"id":"creature-48929","entityId":"entry-10678","position":[-59.4248,-97.9022,-51.7928],"yaw":-0.331613,"spawnMask":1},{"id":"creature-48930","entityId":"entry-10678","position":[-24.1688,-98.0332,-59.3538],"yaw":-3.29867,"spawnMask":1},{"id":"creature-48931","entityId":"entry-10678","position":[-58.9968,-97.9122,-66.5308],"yaw":-4.04916,"spawnMask":1},{"id":"creature-48932","entityId":"entry-10678","position":[-39.2748,-97.9822,-81.6268],"yaw":-4.55531,"spawnMask":1},{"id":"creature-48933","entityId":"entry-10678","position":[-62.9608,-97.9202,-56.1828],"yaw":-4.08407,"spawnMask":1},{"id":"creature-48934","entityId":"entry-10678","position":[-72.6298,-97.9982,-85.6518],"yaw":-0.436332,"spawnMask":1},{"id":"creature-48935","entityId":"entry-10678","position":[-34.6478,-97.9882,-70.9788],"yaw":-3.05433,"spawnMask":1},{"id":"creature-48936","entityId":"entry-10678","position":[-67.2108,-97.9072,-52.7278],"yaw":-4.90438,"spawnMask":1},{"id":"creature-48938","entityId":"entry-10480","position":[-172.9318,-122.666,-234.9702],"yaw":-4.76475,"spawnMask":1},{"id":"creature-48939","entityId":"entry-10480","position":[-186.7358,-122.2785,-233.3533],"yaw":-3.26377,"spawnMask":1},{"id":"creature-48940","entityId":"entry-10481","position":[-152.2668,-122.2785,-252.3137],"yaw":-3.87463,"spawnMask":1},{"id":"creature-48941","entityId":"entry-10480","position":[-151.3658,-122.666,-230.4191],"yaw":-1.44862,"spawnMask":1},{"id":"creature-48942","entityId":"entry-10480","position":[-167.0298,-122.666,-236.0923],"yaw":-5.77704,"spawnMask":1},{"id":"creature-48943","entityId":"entry-10481","position":[-180.3758,-122.666,-239.9114],"yaw":-0.418879,"spawnMask":1},{"id":"creature-48944","entityId":"entry-10480","position":[-160.2808,-122.2785,-227.2942],"yaw":-4.55531,"spawnMask":1},{"id":"creature-48945","entityId":"entry-10480","position":[-161.6518,-122.666,-237.9402],"yaw":-3.35103,"spawnMask":1},{"id":"creature-48946","entityId":"entry-10901","position":[-191.5198,-122.2785,-234.2881],"yaw":-3.22886,"spawnMask":1},{"id":"creature-48947","entityId":"entry-10480","position":[-173.2098,-122.2785,-243.9824],"yaw":-3.52556,"spawnMask":1},{"id":"creature-48948","entityId":"entry-10475","position":[-29.3038,-107.934,-149.4428],"yaw":-3.08923,"spawnMask":1},{"id":"creature-48950","entityId":"entry-10475","position":[-27.0768,-107.4802,-133.8368],"yaw":-3.28122,"spawnMask":1},{"id":"creature-48951","entityId":"entry-10475","position":[-59.7568,-104.3642,-170.5214],"yaw":-1.90241,"spawnMask":1},{"id":"creature-48952","entityId":"entry-10475","position":[-60.8708,-104.1172,-167.4334],"yaw":-3.735,"spawnMask":1},{"id":"creature-48953","entityId":"entry-10475","position":[-21.9698,-108.7217,-125.2708],"yaw":-4.88692,"spawnMask":1},{"id":"creature-48954","entityId":"entry-10475","position":[-13.4405,-110.1742,-141.719],"yaw":-1.16937,"spawnMask":1},{"id":"creature-48955","entityId":"entry-10475","position":[-48.2688,-105.5342,-149.0328],"yaw":-5.95157,"spawnMask":1},{"id":"creature-48956","entityId":"entry-10475","position":[-56.4898,-104.3832,-167.0576],"yaw":-5.96903,"spawnMask":1},{"id":"creature-48957","entityId":"entry-10475","position":[-16.633,-109.832,-140.4912],"yaw":-2.79253,"spawnMask":1},{"id":"creature-48958","entityId":"entry-10469","position":[-92.0368,-97.9272,-63.4418],"yaw":-2.9147,"spawnMask":1},{"id":"creature-48959","entityId":"entry-10498","position":[-129.6628,-97.8672,-66.8658],"yaw":-0.314159,"spawnMask":1},{"id":"creature-48960","entityId":"entry-10498","position":[-87.6028,-97.9232,-102.9648],"yaw":-0.733038,"spawnMask":1},{"id":"creature-48961","entityId":"entry-10477","position":[-126.7198,-97.7732,-89.9638],"yaw":-1.27409,"spawnMask":1},{"id":"creature-48963","entityId":"entry-10487","position":[-176.4768,-97.7422,-70.9988],"yaw":-4.81711,"spawnMask":1},{"id":"creature-48964","entityId":"entry-10469","position":[-102.9878,-97.8522,-64.0708],"yaw":-1.09956,"spawnMask":1},{"id":"creature-48965","entityId":"entry-10469","position":[-101.0908,-97.8672,-119.0518],"yaw":-4.53786,"spawnMask":1},{"id":"creature-48966","entityId":"entry-10498","position":[-147.8608,-97.8672,-92.3188],"yaw":-4.81711,"spawnMask":1},{"id":"creature-48967","entityId":"entry-10469","position":[-188.9998,-97.7252,-80.0218],"yaw":-5.67232,"spawnMask":1},{"id":"creature-48968","entityId":"entry-10476","position":[-160.5138,-97.6732,-152.6533],"yaw":-6.00393,"spawnMask":1},{"id":"creature-48969","entityId":"entry-10476","position":[-165.8928,-97.6032,-117.6108],"yaw":-2.40855,"spawnMask":1},{"id":"creature-48970","entityId":"entry-10476","position":[-160.2778,-97.7072,-134.4268],"yaw":-0.139626,"spawnMask":1},{"id":"creature-48971","entityId":"entry-11582","position":[-191.9218,-97.7482,-110.9808],"yaw":-5.11381,"spawnMask":1},{"id":"creature-48972","entityId":"entry-10476","position":[-193.9728,-97.6082,-157.1375],"yaw":-1.13446,"spawnMask":1},{"id":"creature-48973","entityId":"entry-10476","position":[-195.6838,-97.8152,-111.2918],"yaw":-4.06662,"spawnMask":1},{"id":"creature-48974","entityId":"entry-10476","position":[-190.2798,-97.5572,-134.5368],"yaw":-0.226893,"spawnMask":1},{"id":"creature-48976","entityId":"entry-10488","position":[-39.2938,-114.4216,-97.7618],"yaw":-1.44862,"spawnMask":1},{"id":"creature-48977","entityId":"entry-10488","position":[-20.6088,-113.7277,-39.9288],"yaw":-1.44862,"spawnMask":1},{"id":"creature-48978","entityId":"entry-10481","position":[-152.6498,-111.6841,-141.1848],"yaw":-0.034907,"spawnMask":1},{"id":"creature-48979","entityId":"entry-10481","position":[-149.7818,-111.6842,-147.6516],"yaw":-4.57276,"spawnMask":1},{"id":"creature-48980","entityId":"entry-10485","position":[-147.6228,-111.6842,-139.2117],"yaw":-3.85718,"spawnMask":1},{"id":"creature-48981","entityId":"entry-10485","position":[-156.6128,-111.6841,-135.5728],"yaw":-2.35619,"spawnMask":1},{"id":"creature-48982","entityId":"entry-10485","position":[-159.7258,-111.6841,-140.9908],"yaw":-1.41372,"spawnMask":1},{"id":"creature-48983","entityId":"entry-10495","position":[-158.1108,-111.6841,-146.5576],"yaw":-4.24115,"spawnMask":1},{"id":"creature-48984","entityId":"entry-10481","position":[-162.3198,-111.6841,-146.0091],"yaw":-5.06145,"spawnMask":1},{"id":"creature-48985","entityId":"entry-10481","position":[-167.4508,-111.6843,-93.1598],"yaw":-0.575959,"spawnMask":1},{"id":"creature-48986","entityId":"entry-10485","position":[-169.5858,-111.6843,-86.0708],"yaw":-0.191986,"spawnMask":1},{"id":"creature-48987","entityId":"entry-10495","position":[-173.0988,-111.6843,-99.3868],"yaw":-4.03171,"spawnMask":1},{"id":"creature-48988","entityId":"entry-10481","position":[-191.3708,-111.6843,-115.0658],"yaw":-3.4383,"spawnMask":1},{"id":"creature-48989","entityId":"entry-10481","position":[-194.9228,-111.6843,-110.3038],"yaw":-5.88176,"spawnMask":1},{"id":"creature-48990","entityId":"entry-10485","position":[-196.8248,-111.6843,-117.9178],"yaw":-6.07375,"spawnMask":1},{"id":"creature-48991","entityId":"entry-10485","position":[-188.7928,-111.6843,-110.5668],"yaw":-1.67552,"spawnMask":1},{"id":"creature-48992","entityId":"entry-10485","position":[-185.4198,-111.6843,-116.0698],"yaw":-5.68977,"spawnMask":1},{"id":"creature-48993","entityId":"entry-10495","position":[-189.0108,-111.6843,-121.4698],"yaw":-4.41568,"spawnMask":1},{"id":"creature-48994","entityId":"entry-10481","position":[-169.0638,-111.7677,-117.3608],"yaw":-0.032734,"spawnMask":1},{"id":"creature-48995","entityId":"entry-10481","position":[-193.7868,-111.6843,-85.7558],"yaw":-1.11701,"spawnMask":1},{"id":"creature-48996","entityId":"entry-10485","position":[-195.9238,-111.7315,-92.1838],"yaw":-3.32769,"spawnMask":1},{"id":"creature-48997","entityId":"entry-10485","position":[-193.2548,-111.6843,-98.3608],"yaw":-1.5708,"spawnMask":1},{"id":"creature-48998","entityId":"entry-10485","position":[-186.5788,-111.6843,-86.8088],"yaw":-3.00197,"spawnMask":1},{"id":"creature-48999","entityId":"entry-10495","position":[-186.6128,-111.6843,-95.6468],"yaw":-6.19592,"spawnMask":1},{"id":"creature-49000","entityId":"entry-10485","position":[-162.6708,-111.6842,-66.1958],"yaw":-0.890118,"spawnMask":1},{"id":"creature-49001","entityId":"entry-10485","position":[-181.1018,-111.6843,-111.4248],"yaw":-1.88496,"spawnMask":1},{"id":"creature-49002","entityId":"entry-10489","position":[-127.2188,-91.7992,-227.5791],"yaw":-1.74533,"spawnMask":1},{"id":"creature-49003","entityId":"entry-10499","position":[-92.3198,-91.8822,-205.9854],"yaw":-0.026647,"spawnMask":1},{"id":"creature-49004","entityId":"entry-10471","position":[-157.4208,-91.7992,-190.2674],"yaw":-0.767945,"spawnMask":1},{"id":"creature-49005","entityId":"entry-10499","position":[-158.2448,-91.7992,-187.2231],"yaw":-4.43314,"spawnMask":1},{"id":"creature-49006","entityId":"entry-10471","position":[-100.8548,-91.7992,-254.5348],"yaw":-2.87979,"spawnMask":1},{"id":"creature-49008","entityId":"entry-10471","position":[-112.0128,-91.7992,-238.5561],"yaw":-3.9619,"spawnMask":1},{"id":"creature-49009","entityId":"entry-10470","position":[-156.9358,-91.7902,-207.7882],"yaw":-4.83456,"spawnMask":1},{"id":"creature-49010","entityId":"entry-10489","position":[-126.4508,-79.0722,-155.7536],"yaw":-2.58309,"spawnMask":1},{"id":"creature-49011","entityId":"entry-10470","position":[-157.6578,-91.7992,-183.5513],"yaw":-1.72788,"spawnMask":1},{"id":"creature-91294","entityId":"entry-10678","position":[-66.5268,-97.9442,-86.3408],"yaw":-5.48033,"spawnMask":1},{"id":"creature-91295","entityId":"entry-11257","position":[-63.3948,-98.0282,-57.1978],"yaw":-0.046656,"spawnMask":1},{"id":"creature-91296","entityId":"entry-11257","position":[-66.2578,-97.9392,-78.7678],"yaw":-0.959931,"spawnMask":1},{"id":"creature-91297","entityId":"entry-10678","position":[-21.2288,-98.0562,-48.7508],"yaw":-5.09636,"spawnMask":1},{"id":"creature-91298","entityId":"entry-10678","position":[-38.9578,-97.9922,-62.4538],"yaw":-1.25664,"spawnMask":1},{"id":"creature-91299","entityId":"entry-10678","position":[-46.8668,-97.9642,-53.0158],"yaw":-2.9147,"spawnMask":1},{"id":"creature-91300","entityId":"entry-10678","position":[-37.5248,-98.0092,-51.8318],"yaw":-4.29351,"spawnMask":1},{"id":"creature-91301","entityId":"entry-10678","position":[-54.3738,-97.9312,-69.1008],"yaw":-0.226893,"spawnMask":1},{"id":"creature-91302","entityId":"entry-11257","position":[-46.1798,-98.0472,-69.0798],"yaw":-4.11946,"spawnMask":1},{"id":"creature-91303","entityId":"entry-10678","position":[-61.5838,-97.9032,-82.5368],"yaw":-3.63029,"spawnMask":1},{"id":"creature-91304","entityId":"entry-10481","position":[-157.9878,-122.666,-231.3906],"yaw":-5.06145,"spawnMask":1},{"id":"creature-91305","entityId":"entry-10480","position":[-155.1898,-122.666,-235.7662],"yaw":-1.90241,"spawnMask":1},{"id":"creature-91306","entityId":"entry-10481","position":[-167.6738,-122.4648,-228.1657],"yaw":-1.44862,"spawnMask":1},{"id":"creature-91307","entityId":"entry-10480","position":[-157.3188,-122.2785,-224.4697],"yaw":-4.97419,"spawnMask":1},{"id":"creature-91308","entityId":"entry-10480","position":[-149.7488,-122.666,-235.2783],"yaw":-0.10472,"spawnMask":1},{"id":"creature-91309","entityId":"entry-10480","position":[-163.3908,-122.666,-232.1019],"yaw":-5.09636,"spawnMask":1},{"id":"creature-91310","entityId":"entry-10480","position":[-156.8808,-122.666,-240.8607],"yaw":-0.872665,"spawnMask":1},{"id":"creature-91311","entityId":"entry-10480","position":[-154.2548,-122.2785,-245.8611],"yaw":-1.0821,"spawnMask":1},{"id":"creature-91312","entityId":"entry-10475","position":[-34.9458,-106.0032,-120.0448],"yaw":-4.92183,"spawnMask":1},{"id":"creature-91313","entityId":"entry-10475","position":[-42.9708,-105.7222,-154.4378],"yaw":-3.7001,"spawnMask":1},{"id":"creature-91314","entityId":"entry-10475","position":[-30.4188,-107.7564,-166.7085],"yaw":-3.89208,"spawnMask":1},{"id":"creature-91315","entityId":"entry-10475","position":[-37.5988,-106.2312,-138.5488],"yaw":-0.349066,"spawnMask":1},{"id":"creature-91316","entityId":"entry-10475","position":[-34.8238,-105.7632,-121.9748],"yaw":-1.51844,"spawnMask":1},{"id":"creature-91317","entityId":"entry-10475","position":[-40.1428,-105.5842,-136.3072],"yaw":-4.2586,"spawnMask":1},{"id":"creature-91318","entityId":"entry-10475","position":[-50.4118,-105.1672,-152.6563],"yaw":-1.32645,"spawnMask":1},{"id":"creature-91319","entityId":"entry-10475","position":[-22.3408,-109.3133,-147.0135],"yaw":-1.65846,"spawnMask":1},{"id":"creature-91320","entityId":"entry-10475","position":[-11.928,-109.8027,-159.1126],"yaw":-5.37561,"spawnMask":1},{"id":"creature-91321","entityId":"entry-10475","position":[-23.6758,-108.4544,-128.7928],"yaw":-2.35619,"spawnMask":1},{"id":"creature-91322","entityId":"entry-10469","position":[-130.0648,-97.8672,-89.7108],"yaw":-2.47837,"spawnMask":1},{"id":"creature-91323","entityId":"entry-10477","position":[-131.2098,-97.8672,-64.4388],"yaw":-4.10152,"spawnMask":1},{"id":"creature-91324","entityId":"entry-10498","position":[-100.4578,-97.8672,-122.3828],"yaw":-1.8675,"spawnMask":1},{"id":"creature-91325","entityId":"entry-10477","position":[-105.8928,-97.7432,-64.0318],"yaw":-2.09439,"spawnMask":1},{"id":"creature-91326","entityId":"entry-10477","position":[-192.8378,-97.7222,-84.7558],"yaw":-2.61799,"spawnMask":1},{"id":"creature-91328","entityId":"entry-10469","position":[-159.2978,-97.8512,-69.6788],"yaw":-0.349066,"spawnMask":1},{"id":"creature-91329","entityId":"entry-10469","position":[-153.7198,-97.8612,-69.1058],"yaw":-1.53589,"spawnMask":1},{"id":"creature-91330","entityId":"entry-10477","position":[-160.5448,-97.8482,-71.5028],"yaw":-1.15192,"spawnMask":1},{"id":"creature-91331","entityId":"entry-10477","position":[-90.2308,-97.9482,-65.9888],"yaw":-2.26893,"spawnMask":1},{"id":"creature-91333","entityId":"entry-10469","position":[-152.3678,-97.8622,-93.8178],"yaw":-3.49066,"spawnMask":1},{"id":"creature-91334","entityId":"entry-10477","position":[-146.7118,-97.8672,-95.3658],"yaw":-0.925025,"spawnMask":1},{"id":"creature-91335","entityId":"entry-10477","position":[-149.4078,-97.8662,-95.3588],"yaw":-2.6529,"spawnMask":1},{"id":"creature-91336","entityId":"entry-10476","position":[-166.2498,-97.5572,-132.3288],"yaw":-3.33358,"spawnMask":1},{"id":"creature-91337","entityId":"entry-10476","position":[-162.7448,-97.7822,-111.5678],"yaw":-4.86947,"spawnMask":1},{"id":"creature-91338","entityId":"entry-11582","position":[-190.1388,-97.5352,-132.6948],"yaw":-5.96903,"spawnMask":1},{"id":"creature-91340","entityId":"entry-11582","position":[-160.1298,-97.5352,-155.0469],"yaw":0,"spawnMask":1},{"id":"creature-91341","entityId":"entry-10471","position":[-112.6658,-92.5422,-215.9596],"yaw":-4.99164,"spawnMask":1},{"id":"creature-91342","entityId":"entry-10471","position":[-83.8618,-91.7992,-210.0455],"yaw":-5.41052,"spawnMask":1},{"id":"creature-91343","entityId":"entry-10470","position":[-140.4098,-91.7992,-253.2729],"yaw":-4.31096,"spawnMask":1},{"id":"creature-91344","entityId":"entry-10471","position":[-155.9098,-91.7852,-210.3579],"yaw":-0.593412,"spawnMask":1},{"id":"creature-91345","entityId":"entry-10471","position":[-121.3838,-91.7992,-245.349],"yaw":-3.49066,"spawnMask":1},{"id":"creature-91346","entityId":"entry-10470","position":[-119.1038,-91.7992,-244.8098],"yaw":-4.90438,"spawnMask":1},{"id":"creature-91347","entityId":"entry-10470","position":[-117.6178,-91.7992,-247.244],"yaw":-0.593412,"spawnMask":1},{"id":"creature-91348","entityId":"entry-10470","position":[-110.4768,-91.7992,-240.7172],"yaw":-1.09956,"spawnMask":1},{"id":"creature-91349","entityId":"entry-10499","position":[-97.5908,-91.7992,-254.1999],"yaw":-6.23082,"spawnMask":1},{"id":"creature-91350","entityId":"entry-10499","position":[-112.7508,-92.5112,-219.4429],"yaw":-1.91986,"spawnMask":1},{"id":"creature-91352","entityId":"entry-10489","position":[-115.0288,-79.0722,-171.3661],"yaw":-1.44862,"spawnMask":1},{"id":"creature-91363","entityId":"entry-10678","position":[-69.7048,-97.9652,-71.7868],"yaw":-1.44862,"spawnMask":1},{"id":"creature-91364","entityId":"entry-10678","position":[-46.6118,-97.9642,-74.8538],"yaw":-2.72271,"spawnMask":1},{"id":"creature-91365","entityId":"entry-11257","position":[-29.0158,-98.0722,-56.9808],"yaw":-1.13787,"spawnMask":1},{"id":"creature-91366","entityId":"entry-10678","position":[-47.2948,-97.9672,-85.6248],"yaw":-3.78736,"spawnMask":1},{"id":"creature-91367","entityId":"entry-10678","position":[-67.8118,-97.9112,-61.0138],"yaw":-5.8294,"spawnMask":1},{"id":"creature-91368","entityId":"entry-10678","position":[-31.1408,-97.9902,-87.0128],"yaw":-5.48033,"spawnMask":1},{"id":"creature-91369","entityId":"entry-10678","position":[-29.1418,-97.9992,-68.4918],"yaw":-4.18879,"spawnMask":1},{"id":"creature-91370","entityId":"entry-10475","position":[-40.2138,-105.9752,-139.7325],"yaw":-1.98968,"spawnMask":1},{"id":"creature-91371","entityId":"entry-10475","position":[-27.0378,-107.7647,-148.4758],"yaw":-5.75959,"spawnMask":1},{"id":"creature-91372","entityId":"entry-10469","position":[-132.6918,-97.8672,-67.4098],"yaw":-3.01942,"spawnMask":1},{"id":"creature-91373","entityId":"entry-10470","position":[-87.2268,-91.7992,-210.5316],"yaw":-3.52556,"spawnMask":1},{"id":"creature-91375","entityId":"entry-10489","position":[-120.3218,-79.0722,-170.9643],"yaw":-1.53589,"spawnMask":1},{"id":"creature-91376","entityId":"entry-10489","position":[-107.7268,-79.0722,-155.8788],"yaw":-0.628319,"spawnMask":1},{"id":"creature-91377","entityId":"entry-10499","position":[-117.6978,-91.7992,-175.3236],"yaw":-0.471239,"spawnMask":1},{"id":"creature-91378","entityId":"entry-10471","position":[-135.3288,-91.7992,-244.1806],"yaw":-2.93215,"spawnMask":1},{"id":"creature-91379","entityId":"entry-10470","position":[-97.8318,-91.7992,-252.6751],"yaw":-5.72468,"spawnMask":1},{"id":"creature-91380","entityId":"entry-10471","position":[-147.0258,-91.7992,-237.3222],"yaw":-0.087266,"spawnMask":1},{"id":"creature-91381","entityId":"entry-10499","position":[-129.2938,-91.7992,-225.8946],"yaw":-2.51327,"spawnMask":1},{"id":"creature-91382","entityId":"entry-10470","position":[-91.5808,-91.7992,-230.0689],"yaw":-3.47321,"spawnMask":1},{"id":"creature-91393","entityId":"entry-10470","position":[-78.0008,-91.7992,-190.4167],"yaw":-2.98451,"spawnMask":1},{"id":"creature-91408","entityId":"entry-10485","position":[-135.6448,-102.8752,-165.0991],"yaw":-4.14758,"spawnMask":1},{"id":"creature-91409","entityId":"entry-10485","position":[-97.2548,-102.7922,-135.4458],"yaw":-0.465572,"spawnMask":1},{"id":"creature-91410","entityId":"entry-10485","position":[-102.5688,-102.7922,-135.5428],"yaw":-3.5243,"spawnMask":1},{"id":"creature-91411","entityId":"entry-10495","position":[-101.8108,-102.7912,-140.6134],"yaw":-2.84489,"spawnMask":1},{"id":"creature-91412","entityId":"entry-10495","position":[-95.7598,-102.7902,-140.1052],"yaw":-2.14675,"spawnMask":1},{"id":"creature-91413","entityId":"entry-10485","position":[-133.3648,-102.7922,-139.0433],"yaw":-1.8817,"spawnMask":1},{"id":"creature-91414","entityId":"entry-10481","position":[-138.5598,-102.7922,-139.2172],"yaw":-3.82625,"spawnMask":1},{"id":"creature-91415","entityId":"entry-10495","position":[-138.5988,-102.7922,-131.7318],"yaw":-3.4383,"spawnMask":1},{"id":"creature-91416","entityId":"entry-10485","position":[-131.2168,-102.7922,-133.7048],"yaw":-2.70261,"spawnMask":1},{"id":"creature-91417","entityId":"entry-10485","position":[-97.1258,-102.7912,-161.4682],"yaw":-2.8371,"spawnMask":1},{"id":"creature-91418","entityId":"entry-10485","position":[-97.8568,-102.7912,-155.0189],"yaw":-0.386879,"spawnMask":1},{"id":"creature-91419","entityId":"entry-10495","position":[-102.5458,-102.7922,-165.2095],"yaw":-1.36245,"spawnMask":1},{"id":"creature-153321","entityId":"entry-14695","position":[-116.8438,-97.7112,-84.7828],"yaw":-5.06145,"spawnMask":1},{"id":"creature-247104","entityId":"entry-1853","position":[-97.4138,-132.02,-241.0504],"yaw":-1.29154,"spawnMask":1}],"roamingPacks":[{"id":"patrol-48469","name":"Necrofiend Patrol","speed":1.15,"pathId":484690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-124.5548,-103.2462,-160.7131],[-128.6718,-103.3462,-154.527],[-132.5458,-102.8752,-149.0358],[-126.5538,-103.3462,-142.0024],[-116.9208,-102.8752,-133.4638],[-109.0378,-103.3462,-141.7709],[-101.4948,-102.8752,-150.7906],[-109.1618,-103.3462,-158.5267],[-114.3558,-102.8752,-164.7499]],"members":[{"id":"member","entityId":"entry-11551","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48781","name":"Risen Protector Patrol","speed":1.15,"pathId":487810,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-87.3378,-98.0742,-82.6088],[-110.5228,-97.7952,-81.2448],[-133.2008,-97.9492,-81.0408],[-171.8358,-97.8412,-81.0398],[-148.0818,-97.9492,-82.0968],[-116.5848,-97.7952,-82.5548],[-99.6608,-97.9762,-82.8208]],"members":[{"id":"member","entityId":"entry-10487","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48789","name":"Risen Guard Patrol","speed":1.15,"pathId":487890,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-198.5868,-97.6172,-109.5708],[-181.0968,-97.6172,-107.2978],[-157.7168,-97.6172,-109.0078],[-158.1938,-97.6172,-121.8918],[-180.1868,-97.6192,-124.1728],[-197.7058,-97.6182,-119.7338],[-198.4178,-97.6182,-111.9488]],"members":[{"id":"member","entityId":"entry-10489","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48794","name":"Necrofiend Patrol","speed":1.15,"pathId":487940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-160.5638,-97.6192,-143.5141],[-171.0628,-97.6192,-143.3656],[-197.5698,-97.6172,-142.8559],[-177.4468,-97.6192,-143.9797]],"members":[{"id":"member","entityId":"entry-11551","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48805","name":"Vectus Patrol","speed":1.15,"pathId":488050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-60.1238,-102.9312,-136.5254],[-60.1238,-102.9312,-136.5254],[-60.1238,-102.9312,-136.5254],[-60.1238,-102.9312,-136.5254],[-60.1238,-102.9312,-136.5254]],"members":[{"id":"member","entityId":"entry-10432","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48812","name":"Diseased Ghoul Patrol","speed":1.15,"pathId":488120,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-181.2828,-111.7677,-71.7328],[-162.8028,-111.7677,-71.6688],[-147.9968,-111.7677,-72.3798],[-147.9648,-111.7668,-87.4998],[-167.8078,-111.7668,-88.4268],[-193.5208,-111.7668,-88.1968],[-193.5538,-111.7668,-72.1058]],"members":[{"id":"member","entityId":"entry-10495","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48846","name":"Risen Guard Patrol","speed":1.15,"pathId":488460,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-100.2478,-91.8822,-204.9627],[-104.5758,-91.9482,-222.6251],[-120.3188,-91.8822,-237.3165],[-136.2968,-91.8812,-226.6008],[-140.5818,-91.8782,-200.9969],[-117.9088,-91.8812,-201.123],[-117.7048,-91.8782,-181.6222],[-117.9758,-91.8822,-198.6761],[-104.5478,-91.8822,-202.6385]],"members":[{"id":"member","entityId":"entry-10489","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48949","name":"Scholomance Student Patrol","speed":1.15,"pathId":489490,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-30.8498,-107.7341,-129.4608],[-30.3398,-108.5769,-137.9514],[-36.2138,-106.3012,-150.638],[-41.1268,-106.0132,-166.3956],[-52.1778,-104.6722,-164.6161],[-48.7168,-105.1342,-155.1543],[-46.4428,-106.2492,-150.7868],[-42.8078,-105.8892,-146.5318],[-36.4678,-107.3942,-140.0507],[-34.1398,-106.1322,-131.9808],[-30.9308,-107.6761,-130.2808]],"members":[{"id":"member","entityId":"entry-10475","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48975","name":"Risen Guard Patrol","speed":1.15,"pathId":489750,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-177.5468,-97.6172,-105.2978],[-177.7388,-97.6192,-127.6818],[-178.1918,-97.6192,-148.6767],[-178.4328,-97.6172,-166.0418],[-178.3698,-97.6192,-145.042],[-177.7578,-97.6192,-116.2158]],"members":[{"id":"member","entityId":"entry-10489","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-49007","name":"Risen Guard Patrol","speed":1.15,"pathId":490070,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-117.8948,-78.8142,-184.8863],[-109.2248,-79.1542,-185.1119],[-89.8678,-91.6572,-185.9804],[-83.1518,-91.8822,-186.2378],[-84.4438,-91.8822,-199.0416],[-103.8898,-91.8872,-202.972],[-131.8278,-91.9412,-202.6781],[-152.4468,-91.8812,-197.886],[-152.3068,-91.8812,-184.5526],[-146.9818,-91.8192,-184.8487],[-127.0688,-78.7492,-185.2515]],"members":[{"id":"member","entityId":"entry-10489","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91327","name":"Necrofiend Patrol","speed":1.15,"pathId":913270,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-136.7208,-97.9502,-101.2068],[-136.3788,-97.9502,-78.2368],[-109.5718,-97.7952,-70.2318],[-97.9038,-97.9912,-84.9108],[-120.6228,-97.7952,-101.2628]],"members":[{"id":"member","entityId":"entry-11551","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91332","name":"Risen Protector Patrol","speed":1.15,"pathId":913320,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-115.0148,-97.7952,-62.9918],[-115.0438,-97.7952,-81.1768],[-115.9478,-97.7952,-105.8468],[-115.7928,-97.7952,-85.1428]],"members":[{"id":"member","entityId":"entry-10487","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91339","name":"Risen Guard Patrol","speed":1.15,"pathId":913390,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-157.5898,-97.6182,-159.9642],[-169.6438,-97.6182,-159.8884],[-184.1888,-97.6182,-160.366],[-199.0128,-97.6182,-159.5655],[-198.6468,-97.6182,-143.9042],[-185.7748,-97.6182,-144.0576],[-158.0308,-97.6182,-147.6542]],"members":[{"id":"member","entityId":"entry-10489","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91351","name":"Spectral Researcher Patrol","speed":1.15,"pathId":913510,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-109.8218,-91.8822,-247.514],[-110.4278,-91.8822,-257.5757],[-110.2008,-91.8822,-246.9474],[-105.1258,-91.8822,-234.5259],[-122.3748,-91.8822,-236.3481],[-123.8628,-91.8822,-246.8662],[-124.2488,-91.8822,-254.4373],[-124.0888,-91.8822,-246.0391],[-122.7918,-91.8822,-237.7439],[-110.6528,-91.8822,-233.6789],[-105.5008,-91.8822,-240.4469],[-109.0398,-91.8822,-246.5789]],"members":[{"id":"member","entityId":"entry-10499","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91374","name":"Blood Steward of Kirtonos Patrol","speed":1.15,"pathId":913740,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-78.2698,-91.8822,-237.1133],[-90.5648,-91.8822,-236.637],[-104.5578,-91.8822,-236.0077],[-119.6768,-91.8822,-235.213],[-133.0068,-91.8822,-233.504],[-139.5708,-91.8822,-243.2532],[-134.8048,-91.8822,-235.9316],[-113.8088,-91.8822,-235.624],[-88.8928,-91.8822,-236.3466]],"members":[{"id":"member","entityId":"entry-14861","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91420","name":"Necrofiend Patrol","speed":1.15,"pathId":914200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-118.4128,-103.3462,-139.5975],[-106.1968,-103.3462,-148.8487],[-101.0588,-102.8752,-153.1798],[-108.0048,-103.3462,-156.1634],[-112.1338,-103.2962,-160.7539],[-117.3598,-102.8752,-166.5878],[-121.9758,-102.9792,-161.7048],[-129.8078,-103.1302,-152.5864]],"members":[{"id":"member","entityId":"entry-11551","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-48807","name":"Jandice Barov","position":[-184.8658,-111.6657,-161.9888]},{"id":"creature-48910","name":"Rattlegore","position":[-53.7878,-111.6238,-63.9458]},{"id":"creature-48867","name":"Instructor Malicia","position":[-3.3062,-122.2785,-237.5822]},{"id":"creature-48925","name":"Doctor Theolen Krastinov","position":[-98.8888,-122.2785,-331.0589]},{"id":"creature-48946","name":"Lorekeeper Polkelt","position":[-191.5198,-122.2785,-234.2881]},{"id":"creature-48863","name":"Lord Alexei Barov","position":[-95.3668,-136.7334,-326.645]},{"id":"creature-48857","name":"Lady Illucia Barov","position":[-182.5988,-132.2568,-234.7184]},{"id":"creature-48850","name":"Ras Frostwhisper","position":[108.4651,-123.6819,-94.3378]}],"objectiveOrder":[{"id":"creature-48807","name":"Jandice Barov","position":[-184.8658,-111.6657,-161.9888]},{"id":"creature-48910","name":"Rattlegore","position":[-53.7878,-111.6238,-63.9458]},{"id":"creature-48867","name":"Instructor Malicia","position":[-3.3062,-122.2785,-237.5822]},{"id":"creature-48925","name":"Doctor Theolen Krastinov","position":[-98.8888,-122.2785,-331.0589]},{"id":"creature-48946","name":"Lorekeeper Polkelt","position":[-191.5198,-122.2785,-234.2881]},{"id":"creature-48863","name":"Lord Alexei Barov","position":[-95.3668,-136.7334,-326.645]},{"id":"creature-48857","name":"Lady Illucia Barov","position":[-182.5988,-132.2568,-234.7184]},{"id":"creature-48850","name":"Ras Frostwhisper","position":[108.4651,-123.6819,-94.3378]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14220,"id":181096,"map":289,"orientation":0,"phaseMask":1,"position_x":-3.82,"position_y":141.88,"position_z":83.9,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":15231,"id":177381,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":241.399,"position_y":129.666,"position_z":110.012,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2057,"guid":18892,"id":175570,"map":289,"orientation":-3.12414,"phaseMask":1,"position_x":288.435,"position_y":92.9581,"position_z":109.974,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2057},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35798,"id":177371,"map":289,"orientation":-1.55334,"phaseMask":1,"position_x":204.326,"position_y":0.011124,"position_z":76.1678,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":35799,"id":177379,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":280.912,"position_y":72.2313,"position_z":110.012,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47168,"animprogress":255,"areaId":0,"guid":35830,"id":177378,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":242.413,"position_y":71.5593,"position_z":110.012,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47168,"animprogress":255,"areaId":0,"guid":42985,"id":177383,"map":289,"orientation":3.15543,"phaseMask":1,"position_x":111.627,"position_y":67.163,"position_z":99.1107,"rotation0":0.0646195,"rotation1":0.0148668,"rotation2":-0.997768,"rotation3":0.00783916,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":43177,"id":177385,"map":289,"orientation":0.0174525,"phaseMask":1,"position_x":227.259,"position_y":88.3103,"position_z":99.1948,"rotation0":0,"rotation1":0,"rotation2":0.00872612,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":43178,"id":175610,"map":289,"orientation":4.72984,"phaseMask":1,"position_x":172.045,"position_y":99.4433,"position_z":105.135,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43179,"id":175613,"map":289,"orientation":-1.55334,"phaseMask":1,"position_x":261.929,"position_y":64.9468,"position_z":110.028,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43180,"id":177380,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":279.898,"position_y":130.338,"position_z":110.012,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43182,"id":177382,"map":289,"orientation":3.15548,"phaseMask":1,"position_x":142.413,"position_y":67.2058,"position_z":103.283,"rotation0":0.0384789,"rotation1":0.0146103,"rotation2":-0.999125,"rotation3":0.00748919,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43184,"id":177375,"map":289,"orientation":-3.12414,"phaseMask":1,"position_x":151.773,"position_y":-0.602287,"position_z":88.9039,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43185,"id":175616,"map":289,"orientation":0.017453,"phaseMask":1,"position_x":166.337,"position_y":153.214,"position_z":109.639,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43186,"id":175617,"map":289,"orientation":0.017453,"phaseMask":1,"position_x":91.0901,"position_y":100.655,"position_z":97.6291,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43187,"id":177372,"map":289,"orientation":-1.55334,"phaseMask":1,"position_x":159.746,"position_y":-0.767021,"position_z":76.1678,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43188,"id":177373,"map":289,"orientation":0.017453,"phaseMask":1,"position_x":181.054,"position_y":-21.3466,"position_z":76.1317,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43189,"id":175618,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":135.951,"position_y":59.0352,"position_z":102.766,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43190,"id":175614,"map":289,"orientation":-1.55334,"phaseMask":1,"position_x":260.844,"position_y":137.045,"position_z":110.028,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43191,"id":179724,"map":289,"orientation":0.017453,"phaseMask":1,"position_x":94.1333,"position_y":181.318,"position_z":93.2171,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43192,"id":175167,"map":289,"orientation":-3.12414,"phaseMask":1,"position_x":174.378,"position_y":77.9398,"position_z":104.802,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43193,"id":177384,"map":289,"orientation":3.15543,"phaseMask":1,"position_x":105.716,"position_y":108.08,"position_z":98.0796,"rotation0":0.0646195,"rotation1":0.0148668,"rotation2":-0.997768,"rotation3":0.00783916,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":43195,"id":177370,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":57.4782,"position_y":142.856,"position_z":83.4797,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43196,"id":177376,"map":289,"orientation":-3.12414,"phaseMask":1,"position_x":209.065,"position_y":0.011116,"position_z":88.9113,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43197,"id":175615,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":199.721,"position_y":125.504,"position_z":110.028,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43198,"id":175611,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":201.211,"position_y":58.2171,"position_z":128.794,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43199,"id":175612,"map":289,"orientation":-3.12414,"phaseMask":1,"position_x":247.466,"position_y":37.5645,"position_z":115.725,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43200,"id":175619,"map":289,"orientation":4.72984,"phaseMask":1,"position_x":198.878,"position_y":180.594,"position_z":110.108,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":1,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43201,"id":177374,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":179.137,"position_y":29.0423,"position_z":88.8537,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43202,"id":175620,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":241.679,"position_y":181.246,"position_z":95.8874,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43203,"id":177377,"map":289,"orientation":-1.55334,"phaseMask":1,"position_x":181.244,"position_y":-29.1116,"position_z":88.9104,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43204,"id":177387,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":38.8082,"position_y":163.686,"position_z":83.5698,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43205,"id":175965,"map":289,"orientation":1.53589,"phaseMask":1,"position_x":-17.8299,"position_y":124.581,"position_z":84.8528,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43206,"id":176544,"map":289,"orientation":2.46091,"phaseMask":1,"position_x":196.871,"position_y":-73.8801,"position_z":85.2284,"rotation0":0,"rotation1":0,"rotation2":0.942641,"rotation3":0.333809,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43207,"id":176545,"map":289,"orientation":3.00197,"phaseMask":1,"position_x":165.317,"position_y":-81.145,"position_z":85.2284,"rotation0":0,"rotation1":0,"rotation2":0.997564,"rotation3":0.0697546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47168,"animprogress":255,"areaId":0,"guid":43208,"id":175564,"map":289,"orientation":3.15906,"phaseMask":1,"position_x":325.122,"position_y":93.6436,"position_z":101.637,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43209,"id":175763,"map":289,"orientation":-1.81514,"phaseMask":1,"position_x":185.373,"position_y":175.628,"position_z":110.747,"rotation0":0,"rotation1":0,"rotation2":-0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43210,"id":175753,"map":289,"orientation":0.872665,"phaseMask":1,"position_x":236.514,"position_y":25.5745,"position_z":116.662,"rotation0":0,"rotation1":0,"rotation2":0.422618,"rotation3":0.906308,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43211,"id":175760,"map":289,"orientation":-1.18682,"phaseMask":1,"position_x":174.178,"position_y":165.658,"position_z":110.788,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43212,"id":175762,"map":289,"orientation":0.471239,"phaseMask":1,"position_x":170.06,"position_y":23.499,"position_z":116.652,"rotation0":0,"rotation1":0,"rotation2":0.233445,"rotation3":0.97237,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43213,"id":175749,"map":289,"orientation":-2.19912,"phaseMask":1,"position_x":233.369,"position_y":20.1783,"position_z":116.667,"rotation0":0,"rotation1":0,"rotation2":-0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43214,"id":175748,"map":289,"orientation":1.69297,"phaseMask":1,"position_x":171.383,"position_y":5.92264,"position_z":116.625,"rotation0":0,"rotation1":0,"rotation2":0.748956,"rotation3":0.66262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43215,"id":175754,"map":289,"orientation":-1.88496,"phaseMask":1,"position_x":173.759,"position_y":3.56098,"position_z":116.652,"rotation0":0,"rotation1":0,"rotation2":-0.809018,"rotation3":0.587783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43216,"id":175737,"map":289,"orientation":-2.25148,"phaseMask":1,"position_x":243.078,"position_y":49.9478,"position_z":116.638,"rotation0":0,"rotation1":0,"rotation2":-0.902586,"rotation3":0.430509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43217,"id":175725,"map":289,"orientation":-2.87979,"phaseMask":1,"position_x":273.328,"position_y":154.363,"position_z":111.123,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":43218,"id":175745,"map":289,"orientation":2.02458,"phaseMask":1,"position_x":231.868,"position_y":-4.19412,"position_z":117.052,"rotation0":0,"rotation1":0,"rotation2":0.848047,"rotation3":0.529921,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43219,"id":176944,"map":289,"orientation":0.034907,"phaseMask":1,"position_x":167.378,"position_y":98.986,"position_z":104.727,"rotation0":0,"rotation1":0,"rotation2":0.0174526,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43220,"id":176561,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":182.53,"position_y":-100.098,"position_z":85.2284,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43221,"id":176484,"map":289,"orientation":1.46608,"phaseMask":1,"position_x":-16.4044,"position_y":158.618,"position_z":84.8517,"rotation0":0,"rotation1":0,"rotation2":0.669132,"rotation3":0.743144,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43222,"id":176485,"map":289,"orientation":-1.02974,"phaseMask":1,"position_x":185.297,"position_y":-90.6366,"position_z":72.5991,"rotation0":0,"rotation1":0,"rotation2":-0.492422,"rotation3":0.870357,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43223,"id":176486,"map":289,"orientation":-1.6057,"phaseMask":1,"position_x":223.524,"position_y":-21.3739,"position_z":116.694,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43224,"id":176487,"map":289,"orientation":-2.26893,"phaseMask":1,"position_x":175.154,"position_y":167.22,"position_z":110.734,"rotation0":0,"rotation1":0,"rotation2":-0.906308,"rotation3":0.422617,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43225,"id":175731,"map":289,"orientation":-1.88496,"phaseMask":1,"position_x":179.786,"position_y":106.997,"position_z":106.099,"rotation0":0,"rotation1":0,"rotation2":-0.809018,"rotation3":0.587783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43226,"id":175756,"map":289,"orientation":1.27409,"phaseMask":1,"position_x":195.84,"position_y":-9.33474,"position_z":116.638,"rotation0":0,"rotation1":0,"rotation2":0.594823,"rotation3":0.803857,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43227,"id":175733,"map":289,"orientation":-0.680679,"phaseMask":1,"position_x":150.812,"position_y":120.409,"position_z":105.659,"rotation0":0,"rotation1":0,"rotation2":-0.333807,"rotation3":0.942641,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43228,"id":175747,"map":289,"orientation":1.58825,"phaseMask":1,"position_x":216.765,"position_y":64.7193,"position_z":106.099,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43229,"id":175741,"map":289,"orientation":-0.017453,"phaseMask":1,"position_x":170.056,"position_y":171.955,"position_z":110.725,"rotation0":0,"rotation1":0,"rotation2":-0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43230,"id":175724,"map":289,"orientation":-1.09956,"phaseMask":1,"position_x":224.275,"position_y":-21.3776,"position_z":116.666,"rotation0":0,"rotation1":0,"rotation2":-0.5225,"rotation3":0.852639,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99866,"id":179746,"map":289,"orientation":3.60657,"phaseMask":1,"position_x":139.496,"position_y":174.816,"position_z":95.5388,"rotation0":0,"rotation1":0,"rotation2":0.973096,"rotation3":-0.2304,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99890,"id":176111,"map":289,"orientation":0,"phaseMask":1,"position_x":133.69,"position_y":91.67,"position_z":101.73,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99904,"id":181049,"map":289,"orientation":0,"phaseMask":1,"position_x":-3.82,"position_y":141.88,"position_z":83.9,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268879,"id":181094,"map":289,"orientation":0,"phaseMask":1,"position_x":-3.82,"position_y":141.88,"position_z":83.9,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/SchoolofNecromancy":"5d4a94bd2ec0dc65901a4ad706dcfef52e4987f9474f6e6b26b10d38ea43683e","patch/World/maps/SchoolofNecromancy":"980652e632b1c397703455fb77ee9f8dad9e349de4df385cbe1be834a5c28cfc"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/scholomance/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["38/38 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"stratholme","title":"Stratholme","mapId":329,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[55,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Stratholme","theme":"Instanced dungeon","summary":"Fight through Stratholme, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Stratholme...","unchartedAreaName":"Uncharted Stratholme","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":922.7909},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/329-stratholme/visual.glb","checksum":"9950e7baac4fdb241162de1f29f1fae3b3cc1054521a5f959e9a686c3414ffc8","size":9125544,"triangleCount":197572}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/329-stratholme/collision.glb","checksum":"f6482e63a2547489bb27a6eb5ac1c556af5a93dd7995ce5fe78e96bc300e53df","size":1981248,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/329-stratholme/navigation.glb","checksum":"987b03c42d5a9d112baf9b8f5b0b51b5e0f9c760c5769bf350d2e8cfebb19f2f","size":683920,"triangleCount":53098}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-1200.405,-70.5061,-203.6636],"max":[81.249,18.3499,703.3964]},"entrance":{"name":"Stratholme Entrance","footPosition":[-650.575,-27.1501,-50.8536],"forward":[0.9920429711174936,0,-0.12589973572798177],"yaw":1.6970310582719639},"areas":[{"id":"entrance","name":"Stratholme Entrance","center":[-650.575,-27.1501,-50.8536],"radius":35},{"id":"area-the-unforgiven","name":"The Unforgiven's Encounter","center":[-764.205,-33.6001,182.7364],"radius":42},{"id":"area-cannon-master-willey","name":"Cannon Master Willey's Encounter","center":[-630.995,-40.5651,658.3964],"radius":42},{"id":"area-malor-the-zealous","name":"Malor the Zealous's Encounter","center":[-678.495,-29.9021,468.8864],"radius":42},{"id":"area-archivist-galford","name":"Archivist Galford's Encounter","center":[-513.385,-29.1051,492.2964],"radius":42},{"id":"area-balnazzar","name":"Balnazzar's Encounter","center":[-100.5006,-6.2831,-38.3734],"radius":42},{"id":"area-baroness-anastari","name":"Baroness Anastari's Encounter","center":[-912.765,-17.4751,-120.0436],"radius":42},{"id":"area-nerub-enkan","name":"Nerub'enkan's Encounter","center":[-912.405,-21.3571,66.8664],"radius":42},{"id":"area-maleki-the-pallid","name":"Maleki the Pallid's Encounter","center":[-1093.235,-29.9121,-52.0736],"radius":42},{"id":"area-magistrate-barthilas","name":"Magistrate Barthilas's Encounter","center":[-720.655,-27.6661,-23.4336],"radius":42}],"entities":{"entry-11032":{"id":"entry-11032","kind":"boss","name":"Malor the Zealous","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12734","name":"Ground Smash","spellId":12734,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5278,"damageMultiplier":1.35},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5278,"damageMultiplier":1.35},{"id":"spell-17233","name":"Lay on Hands","spellId":17233,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5278,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15493","name":"Holy Light","spellId":15493,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5278,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10458-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-11043":{"id":"entry-11043","kind":"mob","name":"Crimson Monk","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4645,"damageMultiplier":1.12},{"id":"spell-11978","name":"Kick","spellId":11978,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4645,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10463-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10809":{"id":"entry-10809","kind":"mob","name":"Stonespine","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14331","name":"Vicious Rend","spellId":14331,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7464,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-7856-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.9019,"labelHeight":5.6459,"markerRadius":3.3105}}},"entry-10811":{"id":"entry-10811","kind":"boss","name":"Archivist Galford","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17293","name":"Burning Winds","spellId":17293,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7441,"damageMultiplier":1.35},{"id":"spell-23462","name":"Fire Nova","spellId":23462,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":7441,"damageMultiplier":0.82,"radius":11},{"id":"spell-17274","name":"Pyroblast","spellId":17274,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7441,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10544-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10812":{"id":"entry-10812","kind":"mob","name":"Grand Crusader Dathrohan","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17286","name":"Crusader's Hammer","spellId":17286,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7322,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7322,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10545-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10558":{"id":"entry-10558","kind":"mob","name":"Hearthsinger Forresten","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16798","name":"Enchanting Lullaby","spellId":16798,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4481,"damageMultiplier":1.12},{"id":"spell-16244","name":"Demoralizing Shout","spellId":16244,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4481,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10482-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-11082":{"id":"entry-11082","kind":"mob","name":"Stratholme Courier","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10547-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10381":{"id":"entry-10381","kind":"mob","name":"Ravaged Cadaver","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10974-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.127,"markerRadius":0.65}}},"entry-10382":{"id":"entry-10382","kind":"mob","name":"Mangled Cadaver","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16143","name":"Cadaver Worms","spellId":16143,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6194,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6194,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10972-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9022,"markerRadius":0.65}}},"entry-10384":{"id":"entry-10384","kind":"mob","name":"Spectral Citizen","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16333","name":"Debilitating Touch","spellId":16333,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6986,"damageMultiplier":1.12},{"id":"spell-16336","name":"Haunting Phantoms","spellId":16336,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6986,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10483-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10385":{"id":"entry-10385","kind":"mob","name":"Ghostly Citizen","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22687","name":"Veil of Shadow","spellId":22687,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4753,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4753,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10478-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10390":{"id":"entry-10390","kind":"mob","name":"Skeletal Guardian","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9672","name":"Frostbolt","spellId":9672,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6589,"damageMultiplier":1.12},{"id":"spell-9613","name":"Shadow Bolt","spellId":9613,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6589,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-9789-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.0302,"markerRadius":0.65}}},"entry-10391":{"id":"entry-10391","kind":"mob","name":"Skeletal Berserker","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6146,"damageMultiplier":1.12},{"id":"spell-11971","name":"Sunder Armor","spellId":11971,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6146,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-9784-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-10398":{"id":"entry-10398","kind":"mob","name":"Thuzadin Shadowcaster","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10631-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10399":{"id":"entry-10399","kind":"mob","name":"Thuzadin Acolyte","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10535-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10400":{"id":"entry-10400","kind":"mob","name":"Thuzadin Necromancer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10539-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10405":{"id":"entry-10405","kind":"mob","name":"Plague Ghoul","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-559-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8357,"markerRadius":0.6634}}},"entry-10406":{"id":"entry-10406","kind":"mob","name":"Ghoul Ravener","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1},{"id":"spell-12538","name":"Ravenous Claw","spellId":12538,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4321,"damageMultiplier":1.12},{"id":"spell-15608","name":"Ravenous Claw","spellId":15608,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4321,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10626-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.1599,"markerRadius":0.75}}},"entry-10407":{"id":"entry-10407","kind":"mob","name":"Fleshflayer Ghoul","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18200","name":"Rend","spellId":18200,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6194,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6194,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-414-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.1599,"markerRadius":0.75}}},"entry-10408":{"id":"entry-10408","kind":"mob","name":"Rockwing Gargoyle","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"winged","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-7533-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.6938,"labelHeight":4.343,"markerRadius":2.5465}}},"entry-10409":{"id":"entry-10409","kind":"mob","name":"Rockwing Screecher","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-11071-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.7979,"labelHeight":4.9944,"markerRadius":2.9285}}},"entry-10412":{"id":"entry-10412","kind":"mob","name":"Crypt Crawler","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15471","name":"Enveloping Web","spellId":15471,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5832,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5832,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-6841-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":4.1603,"markerRadius":1.9618}}},"entry-10413":{"id":"entry-10413","kind":"mob","name":"Crypt Beast","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-4962","name":"Encasing Webs","spellId":4962,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6540,"damageMultiplier":1.12},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6540,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-9758-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":4.1603,"markerRadius":1.9618}}},"entry-10414":{"id":"entry-10414","kind":"mob","name":"Patchwork Horror","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/2f64a293ef2b8514538c3e3c90e480b7f8d3c71dc2855c2183bad097933f4da2.glb","rotationY":-1.5707963267948966,"groundOffset":0.0061,"labelHeight":5.6966,"markerRadius":2.5109}}},"entry-10416":{"id":"entry-10416","kind":"mob","name":"Bile Spewer","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-1604","name":"Dazed","spellId":1604,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5050,"damageMultiplier":1.12},{"id":"spell-16866","name":"Venom Spit","spellId":16866,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5050,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-9760-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0073,"labelHeight":6.8752,"markerRadius":3.0304}}},"entry-10417":{"id":"entry-10417","kind":"mob","name":"Venom Belcher","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-12819-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0073,"labelHeight":6.8752,"markerRadius":3.0304}}},"entry-10418":{"id":"entry-10418","kind":"mob","name":"Crimson Guardsman","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15749","name":"Shield Charge","spellId":15749,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4797,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15749","durationMs":8000,"magnitude":0.15}},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4797,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10492-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10419":{"id":"entry-10419","kind":"mob","name":"Crimson Conjuror","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12675","name":"Frostbolt","spellId":12675,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6100,"damageMultiplier":1.12},{"id":"spell-12674","name":"Frost Nova","spellId":12674,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6100,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10488-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10420":{"id":"entry-10420","kind":"mob","name":"Crimson Initiate","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4239,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-17138","name":"Flash Heal","spellId":17138,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4239,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10496-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10421":{"id":"entry-10421","kind":"mob","name":"Crimson Defender","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4738,"damageMultiplier":1.12},{"id":"spell-15493","name":"Holy Light","spellId":15493,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4738,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10500-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10422":{"id":"entry-10422","kind":"mob","name":"Crimson Sorcerer","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15230","name":"Arcane Bolt","spellId":15230,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6475,"damageMultiplier":1.12},{"id":"spell-13323","name":"Polymorph","spellId":13323,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6475,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10504-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10423":{"id":"entry-10423","kind":"mob","name":"Crimson Priest","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15586","name":"Heal","spellId":15586,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5520,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15238","name":"Holy Smite","spellId":15238,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5520,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10508-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10424":{"id":"entry-10424","kind":"mob","name":"Crimson Gallant","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17143","name":"Holy Strike","spellId":17143,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4581,"damageMultiplier":1.12},{"id":"spell-14518","name":"Crusader Strike","spellId":14518,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4581,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10512-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10425":{"id":"entry-10425","kind":"mob","name":"Crimson Battle Mage","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12742","name":"Immolate","spellId":12742,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5327,"damageMultiplier":1.12},{"id":"spell-15253","name":"Arcane Explosion","spellId":15253,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5327,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"winged","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10529-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10426":{"id":"entry-10426","kind":"mob","name":"Crimson Inquisitor","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15785","name":"Mana Burn","spellId":15785,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5671,"damageMultiplier":1.12},{"id":"spell-17146","name":"Shadow Word: Pain","spellId":17146,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5671,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10516-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10435":{"id":"entry-10435","kind":"boss","name":"Magistrate Barthilas","title":"Dungeon Boss","hasLoot":true,"combat":{"level":58,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-10887","name":"Crowd Pummel","spellId":10887,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7146,"damageMultiplier":1.35},{"id":"spell-14099","name":"Mighty Blow","spellId":14099,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-16793","name":"Draining Blow","spellId":16793,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7146,"damageMultiplier":0.82,"radius":11},{"id":"spell-16791","name":"Furious Anger","spellId":16791,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7146,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/e814a203d28d25862645cdbba9124e4b453ad5e05bdaaaad0695e3937bb57f27.glb","rotationY":-1.5707963267948966,"groundOffset":0.0443,"labelHeight":3.6969,"markerRadius":1.1544}}},"entry-10436":{"id":"entry-10436","kind":"boss","name":"Baroness Anastari","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16867","name":"Banshee Curse","spellId":16867,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7304,"damageMultiplier":1.35},{"id":"spell-16565","name":"Banshee Wail","spellId":16565,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7304,"damageMultiplier":1.35},{"id":"spell-18327","name":"Silence","spellId":18327,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7304,"damageMultiplier":1.35},{"id":"spell-17244","name":"Possess","spellId":17244,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7304,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/665ecc22aef511be0a627a08dde9c3b544903a64eeb2323c96fbbc3dfd76cf14.glb","rotationY":-1.5707963267948966,"groundOffset":0.5402,"labelHeight":5.6694,"markerRadius":1.2275}}},"entry-10437":{"id":"entry-10437","kind":"boss","name":"Nerub'enkan","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6183,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/ed106356c4811ff2d38eb79b7cc1d330b013d79ce241aca42ac86898efb56ea0.glb","rotationY":-1.5707963267948966,"groundOffset":0.2252,"labelHeight":5.2004,"markerRadius":2.4522}}},"entry-10438":{"id":"entry-10438","kind":"boss","name":"Maleki the Pallid","title":"Dungeon Boss","hasLoot":true,"combat":{"level":61,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17238","name":"Drain Life","spellId":17238,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5708,"damageMultiplier":0.82,"radius":11},{"id":"spell-16869","name":"Ice Tomb","spellId":16869,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5708,"damageMultiplier":1.35},{"id":"spell-17503","name":"Frostbolt","spellId":17503,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5708,"damageMultiplier":1.35},{"id":"spell-17243","name":"Drain Mana","spellId":17243,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5708,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10546-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10440":{"id":"entry-10440","kind":"mob","name":"Baron Rivendare","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0088,"labelHeight":5.1505,"markerRadius":2.0388}}},"entry-10463":{"id":"entry-10463","kind":"mob","name":"Shrieking Banshee","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10728-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4141,"labelHeight":4.3465,"markerRadius":0.9411}}},"entry-10464":{"id":"entry-10464","kind":"mob","name":"Wailing Banshee","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-19645","name":"Anti-Magic Shield","spellId":19645,"delivery":"area","target":"self","school":"shadow","animation":"cast","range":0,"cooldownMs":5746,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-19645","durationMs":8000,"magnitude":0.15}},{"id":"spell-17105","name":"Banshee Curse","spellId":17105,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5746,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-8782-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4682,"labelHeight":4.9135,"markerRadius":1.0639}}},"entry-10997":{"id":"entry-10997","kind":"boss","name":"Cannon Master Willey","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5185,"damageMultiplier":1.35},{"id":"spell-16615","name":"Add Lightning Dam - Weap 03","spellId":16615,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5185,"damageMultiplier":1.35},{"id":"spell-11729","name":"Create Healthstone","spellId":11729,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5185,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10674-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-10411":{"id":"entry-10411","kind":"mob","name":"Eye of Naxxramas","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c55728c00da7742391fcf25802b59d661f313cdc864a9cdc4036d3a240cbbf5b.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.2201,"markerRadius":0.65}}},"entry-10393":{"id":"entry-10393","kind":"mob","name":"Skul","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16799","name":"Frostbolt","spellId":16799,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4149,"damageMultiplier":1.12},{"id":"spell-31256","name":"Frost Armor","spellId":31256,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/84695efc6bafcc2d2fb5df07bd44d55d4c65562c3818de690087991d6294cf97.glb","rotationY":-1.5707963267948966,"groundOffset":0.0045,"labelHeight":3.834,"markerRadius":0.7434}}},"entry-10516":{"id":"entry-10516","kind":"boss","name":"The Unforgiven","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14907","name":"Frost Nova","spellId":14907,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4199,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10771-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-10808":{"id":"entry-10808","kind":"mob","name":"Timmy the Cruel","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1},{"id":"spell-3417","name":"Thrash","spellId":3417,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5029,"damageMultiplier":1.12},{"id":"spell-17470","name":"Ravenous Claw","spellId":17470,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5029,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-571-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0019,"labelHeight":3.6312,"markerRadius":0.8654}}},"entry-16031":{"id":"entry-16031","kind":"mob","name":"Ysida Harmon","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-15967-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-14684":{"id":"entry-14684","kind":"mob","name":"Balzaphon","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12096","name":"Fear","spellId":12096,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4066,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}},{"id":"spell-37265","name":"Cone of Cold","spellId":37265,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4066,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/39bfb5c35e192459b036ef2b5f276819df5e8591dda7c03082ce9968b53365b2.glb","rotationY":-1.5707963267948966,"groundOffset":0.4975,"labelHeight":6.7656,"markerRadius":1.4989}}},"entry-10813":{"id":"entry-10813","kind":"boss","name":"Balnazzar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17287","name":"Mind Blast","spellId":17287,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5522,"damageMultiplier":1.35},{"id":"spell-17399","name":"Shadow Shock","spellId":17399,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5522,"damageMultiplier":1.35},{"id":"spell-12098","name":"Sleep","spellId":12098,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":5522,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":4500}},{"id":"spell-13704","name":"Psychic Scream","spellId":13704,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5522,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/stratholme/creatures/display-10691-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.5559,"labelHeight":11.4183,"markerRadius":3.55}}}},"staticSpawns":[{"id":"creature-52122","entityId":"entry-11032","position":[-678.495,-29.9021,468.8864],"yaw":-2.18166,"spawnMask":1},{"id":"creature-52142","entityId":"entry-11043","position":[-530.485,-29.0211,501.9464],"yaw":-3.68265,"spawnMask":1},{"id":"creature-52143","entityId":"entry-11043","position":[-535.935,-29.0211,505.9764],"yaw":-0.610865,"spawnMask":1},{"id":"creature-52147","entityId":"entry-10809","position":[-1058.665,-36.8331,10.4864],"yaw":-4.44992,"spawnMask":1},{"id":"creature-52148","entityId":"entry-10811","position":[-513.385,-29.1051,492.2964],"yaw":-3.29655,"spawnMask":1},{"id":"creature-52149","entityId":"entry-10812","position":[-473.265,-28.8361,551.1664],"yaw":-5.42797,"spawnMask":1},{"id":"creature-52150","entityId":"entry-10558","position":[-653.175,-28.1491,85.7764],"yaw":-5.74213,"spawnMask":1},{"id":"creature-52151","entityId":"entry-11082","position":[-532.965,-33.5961,302.4364],"yaw":-2.00713,"spawnMask":1},{"id":"creature-52152","entityId":"entry-10381","position":[-718.865,-29.0511,97.2764],"yaw":-3.24898,"spawnMask":1},{"id":"creature-52153","entityId":"entry-10381","position":[-724.235,-28.7271,82.4164],"yaw":-3.08573,"spawnMask":1},{"id":"creature-52154","entityId":"entry-10381","position":[-715.325,-28.8121,105.1964],"yaw":-3.2922,"spawnMask":1},{"id":"creature-52155","entityId":"entry-10381","position":[-707.545,-27.1601,-47.3836],"yaw":-1.22656,"spawnMask":1},{"id":"creature-52156","entityId":"entry-10381","position":[-693.485,-27.4321,-41.1136],"yaw":-0.454397,"spawnMask":1},{"id":"creature-52157","entityId":"entry-10381","position":[-739.835,-28.0291,-5.8336],"yaw":-2.18111,"spawnMask":1},{"id":"creature-52158","entityId":"entry-10381","position":[-767.935,-24.1031,-24.4536],"yaw":-0.100955,"spawnMask":1},{"id":"creature-52159","entityId":"entry-10381","position":[-597.205,-35.9531,252.3964],"yaw":-1.47985,"spawnMask":1},{"id":"creature-52160","entityId":"entry-10381","position":[-514.115,-26.1591,215.4264],"yaw":-0.128416,"spawnMask":1},{"id":"creature-52161","entityId":"entry-10381","position":[-598.715,-30.1041,170.5464],"yaw":-2.4321,"spawnMask":1},{"id":"creature-52162","entityId":"entry-10381","position":[-654.885,-30.7041,123.1364],"yaw":-4.09147,"spawnMask":1},{"id":"creature-52163","entityId":"entry-10381","position":[-740.155,-38.1071,237.7564],"yaw":-0.76348,"spawnMask":1},{"id":"creature-52164","entityId":"entry-10381","position":[-562.695,-31.0681,216.8264],"yaw":-0.153494,"spawnMask":1},{"id":"creature-52165","entityId":"entry-10381","position":[-617.595,-35.2301,282.7264],"yaw":-2.319,"spawnMask":1},{"id":"creature-52166","entityId":"entry-10381","position":[-629.295,-35.4581,276.0864],"yaw":-2.29236,"spawnMask":1},{"id":"creature-52167","entityId":"entry-10381","position":[-532.165,-33.4761,295.5564],"yaw":-4.36771,"spawnMask":1},{"id":"creature-52168","entityId":"entry-10381","position":[-535.285,-34.7791,289.9764],"yaw":-5.1335,"spawnMask":1},{"id":"creature-52169","entityId":"entry-10381","position":[-538.475,-35.2511,287.5464],"yaw":-1.73816,"spawnMask":1},{"id":"creature-52170","entityId":"entry-10381","position":[-740.335,-37.7441,303.5764],"yaw":-1.72944,"spawnMask":1},{"id":"creature-52171","entityId":"entry-10381","position":[-744.345,-37.5861,300.5564],"yaw":-2.60413,"spawnMask":1},{"id":"creature-52172","entityId":"entry-10381","position":[-604.205,-32.6021,208.7464],"yaw":-4.91979,"spawnMask":1},{"id":"creature-52173","entityId":"entry-10381","position":[-794.085,-36.3691,339.1364],"yaw":-0.377382,"spawnMask":1},{"id":"creature-52174","entityId":"entry-10381","position":[-746.475,-34.0741,206.8264],"yaw":-6.22011,"spawnMask":1},{"id":"creature-52175","entityId":"entry-10381","position":[-745.565,-33.5791,201.8964],"yaw":-0.653204,"spawnMask":1},{"id":"creature-52176","entityId":"entry-10381","position":[-758.465,-33.6451,205.0264],"yaw":-5.24097,"spawnMask":1},{"id":"creature-52177","entityId":"entry-10381","position":[-669.735,-28.8561,100.6664],"yaw":-5.95079,"spawnMask":1},{"id":"creature-52179","entityId":"entry-10381","position":[-743.665,-30.9141,99.7264],"yaw":-3.12041,"spawnMask":1},{"id":"creature-52180","entityId":"entry-10381","position":[-696.055,-28.8841,74.0964],"yaw":-0.01085,"spawnMask":1},{"id":"creature-52181","entityId":"entry-10381","position":[-693.105,-28.6621,69.7664],"yaw":-2.67903,"spawnMask":1},{"id":"creature-52182","entityId":"entry-10381","position":[-686.825,-28.5441,69.4964],"yaw":-5.41519,"spawnMask":1},{"id":"creature-52183","entityId":"entry-10382","position":[-702.215,-27.7021,-32.2236],"yaw":-1.51418,"spawnMask":1},{"id":"creature-52184","entityId":"entry-10382","position":[-746.795,-27.2531,-12.2736],"yaw":-0.26182,"spawnMask":1},{"id":"creature-52185","entityId":"entry-10382","position":[-739.295,-28.0311,1.6264],"yaw":-5.50927,"spawnMask":1},{"id":"creature-52186","entityId":"entry-10382","position":[-572.465,-34.3001,279.1364],"yaw":-4.23023,"spawnMask":1},{"id":"creature-52187","entityId":"entry-10382","position":[-564.295,-34.6761,272.2264],"yaw":-4.2854,"spawnMask":1},{"id":"creature-52188","entityId":"entry-10382","position":[-566.665,-34.7091,282.0964],"yaw":-2.70836,"spawnMask":1},{"id":"creature-52189","entityId":"entry-10382","position":[-772.495,-23.9431,-1.8036],"yaw":-2.80487,"spawnMask":1},{"id":"creature-52190","entityId":"entry-10382","position":[-591.635,-34.9971,250.1164],"yaw":-0.980717,"spawnMask":1},{"id":"creature-52191","entityId":"entry-10382","position":[-542.575,-30.3501,214.2364],"yaw":-2.02046,"spawnMask":1},{"id":"creature-52192","entityId":"entry-10382","position":[-543.745,-30.5501,223.9664],"yaw":-1.54922,"spawnMask":1},{"id":"creature-52193","entityId":"entry-10382","position":[-542.915,-30.5841,219.4664],"yaw":-4.5298,"spawnMask":1},{"id":"creature-52194","entityId":"entry-10382","position":[-512.255,-24.9731,204.2664],"yaw":-5.42154,"spawnMask":1},{"id":"creature-52195","entityId":"entry-10382","position":[-607.635,-29.7761,173.7464],"yaw":-4.81375,"spawnMask":1},{"id":"creature-52196","entityId":"entry-10382","position":[-599.685,-30.6191,176.6664],"yaw":-4.51707,"spawnMask":1},{"id":"creature-52197","entityId":"entry-10382","position":[-653.565,-30.6061,114.1164],"yaw":-3.87758,"spawnMask":1},{"id":"creature-52198","entityId":"entry-10382","position":[-731.965,-38.5031,229.2964],"yaw":-1.66585,"spawnMask":1},{"id":"creature-52199","entityId":"entry-10382","position":[-725.375,-39.6741,236.0264],"yaw":-0.005031,"spawnMask":1},{"id":"creature-52200","entityId":"entry-10382","position":[-571.695,-32.4281,207.6264],"yaw":-2.43279,"spawnMask":1},{"id":"creature-52201","entityId":"entry-10382","position":[-560.805,-30.8141,207.4364],"yaw":-3.20638,"spawnMask":1},{"id":"creature-52202","entityId":"entry-10382","position":[-620.285,-35.9751,271.6064],"yaw":-0.43437,"spawnMask":1},{"id":"creature-52203","entityId":"entry-10382","position":[-636.095,-35.9971,247.7364],"yaw":-5.12787,"spawnMask":1},{"id":"creature-52204","entityId":"entry-10382","position":[-632.395,-36.6671,252.5264],"yaw":-4.10899,"spawnMask":1},{"id":"creature-52205","entityId":"entry-10382","position":[-626.835,-35.7261,249.5464],"yaw":-2.61909,"spawnMask":1},{"id":"creature-52206","entityId":"entry-10382","position":[-736.345,-37.8171,312.5964],"yaw":-2.06272,"spawnMask":1},{"id":"creature-52207","entityId":"entry-10382","position":[-602.695,-33.1031,213.8564],"yaw":-0.867061,"spawnMask":1},{"id":"creature-52208","entityId":"entry-10382","position":[-612.215,-33.0721,226.0264],"yaw":-1.02675,"spawnMask":1},{"id":"creature-52209","entityId":"entry-10382","position":[-792.405,-36.5171,328.4364],"yaw":-4.71749,"spawnMask":1},{"id":"creature-52210","entityId":"entry-10382","position":[-783.135,-37.7901,332.9764],"yaw":-3.85656,"spawnMask":1},{"id":"creature-52211","entityId":"entry-10382","position":[-689.315,-28.6361,102.9564],"yaw":-0.00543,"spawnMask":1},{"id":"creature-52212","entityId":"entry-10382","position":[-676.175,-28.4571,98.6964],"yaw":-5.60792,"spawnMask":1},{"id":"creature-52213","entityId":"entry-10382","position":[-749.355,-33.1131,105.0064],"yaw":-6.19207,"spawnMask":1},{"id":"creature-52214","entityId":"entry-10382","position":[-756.275,-33.5281,101.4264],"yaw":-6.14401,"spawnMask":1},{"id":"creature-52215","entityId":"entry-10382","position":[-725.055,-41.8921,267.3364],"yaw":-5.9826,"spawnMask":1},{"id":"creature-52216","entityId":"entry-10382","position":[-716.315,-41.7721,275.3164],"yaw":-1.7659,"spawnMask":1},{"id":"creature-52217","entityId":"entry-10382","position":[-722.235,-41.2841,276.6964],"yaw":-0.415108,"spawnMask":1},{"id":"creature-52218","entityId":"entry-10384","position":[-541.055,-30.4531,216.1364],"yaw":-3.12449,"spawnMask":1},{"id":"creature-52219","entityId":"entry-10384","position":[-727.805,-37.7571,334.2964],"yaw":-4.85202,"spawnMask":1},{"id":"creature-52220","entityId":"entry-10384","position":[-761.685,-33.5441,187.1664],"yaw":-5.41942,"spawnMask":1},{"id":"creature-52221","entityId":"entry-10384","position":[-585.765,-32.7361,240.9864],"yaw":-1.43117,"spawnMask":1},{"id":"creature-52222","entityId":"entry-10384","position":[-587.465,-33.2711,244.9264],"yaw":-3.9619,"spawnMask":1},{"id":"creature-52223","entityId":"entry-10384","position":[-537.705,-35.0671,293.1364],"yaw":-2.23402,"spawnMask":1},{"id":"creature-52224","entityId":"entry-10384","position":[-771.465,-35.9491,114.8764],"yaw":-0.876692,"spawnMask":1},{"id":"creature-52225","entityId":"entry-10384","position":[-727.495,-37.7641,331.5264],"yaw":-1.16937,"spawnMask":1},{"id":"creature-52227","entityId":"entry-10384","position":[-755.045,-34.4041,220.9364],"yaw":-4.36332,"spawnMask":1},{"id":"creature-52228","entityId":"entry-10384","position":[-754.085,-34.2741,218.7664],"yaw":-1.0821,"spawnMask":1},{"id":"creature-52229","entityId":"entry-10384","position":[-539.775,-34.2751,300.1164],"yaw":-5.33953,"spawnMask":1},{"id":"creature-52233","entityId":"entry-10384","position":[-740.735,-40.6901,267.7364],"yaw":-0.162112,"spawnMask":1},{"id":"creature-52234","entityId":"entry-10384","position":[-720.075,-41.7371,258.2664],"yaw":-5.27352,"spawnMask":1},{"id":"creature-52235","entityId":"entry-10385","position":[-727.495,-37.7641,331.5264],"yaw":-1.16937,"spawnMask":1},{"id":"creature-52248","entityId":"entry-10385","position":[-783.335,-35.4561,114.9364],"yaw":-2.45175,"spawnMask":1},{"id":"creature-52249","entityId":"entry-10385","position":[-591.465,-27.5681,164.9164],"yaw":-4.74729,"spawnMask":1},{"id":"creature-52258","entityId":"entry-10385","position":[-686.595,-27.1091,59.4064],"yaw":-3.36848,"spawnMask":1},{"id":"creature-52599","entityId":"entry-10385","position":[-683.775,-27.0941,59.1064],"yaw":0,"spawnMask":1},{"id":"creature-52600","entityId":"entry-10385","position":[-714.235,-39.5831,240.6864],"yaw":-0.972282,"spawnMask":1},{"id":"creature-52601","entityId":"entry-10385","position":[-755.045,-34.4041,220.9364],"yaw":-4.36332,"spawnMask":1},{"id":"creature-52602","entityId":"entry-10385","position":[-754.085,-34.2741,218.7664],"yaw":-1.0821,"spawnMask":1},{"id":"creature-52605","entityId":"entry-10385","position":[-790.145,-34.2071,109.4264],"yaw":-2.32129,"spawnMask":1},{"id":"creature-52612","entityId":"entry-10385","position":[-593.275,-29.0301,167.2964],"yaw":-0.920928,"spawnMask":1},{"id":"creature-52613","entityId":"entry-10385","position":[-528.725,-28.2961,231.8764],"yaw":-5.09636,"spawnMask":1},{"id":"creature-52614","entityId":"entry-10385","position":[-698.725,-28.2301,108.4064],"yaw":-3.92997,"spawnMask":1},{"id":"creature-52615","entityId":"entry-10390","position":[-717.905,-28.9511,90.6964],"yaw":-3.58451,"spawnMask":1},{"id":"creature-52616","entityId":"entry-10390","position":[-714.805,-29.0671,91.9264],"yaw":-5.42045,"spawnMask":1},{"id":"creature-52617","entityId":"entry-10390","position":[-702.725,-27.0941,-42.7036],"yaw":-3.69155,"spawnMask":1},{"id":"creature-52618","entityId":"entry-10390","position":[-698.565,-27.0451,-51.6336],"yaw":-2.07028,"spawnMask":1},{"id":"creature-52619","entityId":"entry-10390","position":[-747.105,-27.5421,0.7564],"yaw":-1.03683,"spawnMask":1},{"id":"creature-52620","entityId":"entry-10390","position":[-748.095,-27.3481,-4.7536],"yaw":-5.06276,"spawnMask":1},{"id":"creature-52621","entityId":"entry-10390","position":[-563.955,-34.9701,280.4564],"yaw":-4.71131,"spawnMask":1},{"id":"creature-52622","entityId":"entry-10390","position":[-568.695,-34.3921,277.5664],"yaw":-0.848166,"spawnMask":1},{"id":"creature-52623","entityId":"entry-10390","position":[-762.555,-25.0641,-17.1236],"yaw":-4.44236,"spawnMask":1},{"id":"creature-52643","entityId":"entry-10390","position":[-761.095,-24.8851,-22.8636],"yaw":-2.96533,"spawnMask":1},{"id":"creature-52644","entityId":"entry-10390","position":[-773.835,-24.0361,-8.4236],"yaw":-1.2528,"spawnMask":1},{"id":"creature-52645","entityId":"entry-10390","position":[-602.015,-36.2181,254.7964],"yaw":-1.01358,"spawnMask":1},{"id":"creature-52646","entityId":"entry-10390","position":[-593.315,-34.4041,244.3264],"yaw":-0.93052,"spawnMask":1},{"id":"creature-52647","entityId":"entry-10390","position":[-598.095,-35.1991,244.6164],"yaw":-5.39423,"spawnMask":1},{"id":"creature-52648","entityId":"entry-10390","position":[-536.055,-30.3731,223.8964],"yaw":-0.453583,"spawnMask":1},{"id":"creature-52649","entityId":"entry-10390","position":[-542.915,-30.5841,219.4664],"yaw":-3.41846,"spawnMask":1},{"id":"creature-52650","entityId":"entry-10390","position":[-513.355,-25.6961,208.8264],"yaw":-5.62357,"spawnMask":1},{"id":"creature-52651","entityId":"entry-10390","position":[-509.695,-24.0461,201.9864],"yaw":-5.49792,"spawnMask":1},{"id":"creature-52652","entityId":"entry-10390","position":[-518.125,-26.3441,207.5064],"yaw":-4.49728,"spawnMask":1},{"id":"creature-52653","entityId":"entry-10390","position":[-593.255,-30.9891,179.4764],"yaw":-6.25018,"spawnMask":1},{"id":"creature-52683","entityId":"entry-10390","position":[-605.395,-29.9211,168.2664],"yaw":-4.89957,"spawnMask":1},{"id":"creature-52837","entityId":"entry-10390","position":[-647.665,-30.7161,120.5964],"yaw":-2.18971,"spawnMask":1},{"id":"creature-52838","entityId":"entry-10390","position":[-641.865,-30.3071,129.5164],"yaw":-1.67972,"spawnMask":1},{"id":"creature-52852","entityId":"entry-10390","position":[-649.215,-30.5401,110.7364],"yaw":-3.90172,"spawnMask":1},{"id":"creature-52853","entityId":"entry-10390","position":[-738.125,-37.6291,232.1464],"yaw":-0.674902,"spawnMask":1},{"id":"creature-52934","entityId":"entry-10390","position":[-728.015,-40.2431,243.3064],"yaw":-5.92991,"spawnMask":1},{"id":"creature-52992","entityId":"entry-10390","position":[-569.735,-31.0631,219.2564],"yaw":-3.2928,"spawnMask":1},{"id":"creature-52993","entityId":"entry-10390","position":[-570.665,-30.7671,220.3664],"yaw":-2.56238,"spawnMask":1},{"id":"creature-52994","entityId":"entry-10390","position":[-612.335,-35.2221,284.6564],"yaw":-0.905975,"spawnMask":1},{"id":"creature-52995","entityId":"entry-10390","position":[-609.175,-35.8731,277.0064],"yaw":-0.119286,"spawnMask":1},{"id":"creature-52996","entityId":"entry-10390","position":[-547.705,-35.1521,300.4264],"yaw":-5.25262,"spawnMask":1},{"id":"creature-52997","entityId":"entry-10390","position":[-541.285,-34.7941,296.1464],"yaw":-3.44909,"spawnMask":1},{"id":"creature-52998","entityId":"entry-10390","position":[-482.945,-24.1081,219.9864],"yaw":-2.21531,"spawnMask":1},{"id":"creature-52999","entityId":"entry-10390","position":[-494.085,-24.5791,218.9364],"yaw":-5.23948,"spawnMask":1},{"id":"creature-53000","entityId":"entry-10390","position":[-487.885,-24.3781,215.9764],"yaw":-1.38518,"spawnMask":1},{"id":"creature-53001","entityId":"entry-10390","position":[-621.335,-35.0881,243.9464],"yaw":-2.94869,"spawnMask":1},{"id":"creature-53002","entityId":"entry-10390","position":[-622.085,-35.8161,248.5864],"yaw":-1.12573,"spawnMask":1},{"id":"creature-53003","entityId":"entry-10390","position":[-744.725,-38.1421,291.9464],"yaw":-2.81471,"spawnMask":1},{"id":"creature-53004","entityId":"entry-10390","position":[-739.045,-38.1931,297.3564],"yaw":-1.36652,"spawnMask":1},{"id":"creature-53005","entityId":"entry-10390","position":[-608.225,-32.0531,209.6764],"yaw":-2.73201,"spawnMask":1},{"id":"creature-53006","entityId":"entry-10390","position":[-609.395,-33.3361,224.2564],"yaw":-1.29948,"spawnMask":1},{"id":"creature-53007","entityId":"entry-10390","position":[-794.405,-36.5361,332.3664],"yaw":-6.1695,"spawnMask":1},{"id":"creature-53008","entityId":"entry-10390","position":[-788.035,-37.4611,338.8264],"yaw":-5.52214,"spawnMask":1},{"id":"creature-53009","entityId":"entry-10390","position":[-755.685,-33.6201,198.9264],"yaw":-1.53061,"spawnMask":1},{"id":"creature-53010","entityId":"entry-10390","position":[-750.215,-34.1351,207.8064],"yaw":-0.550583,"spawnMask":1},{"id":"creature-53011","entityId":"entry-10390","position":[-680.095,-28.2101,107.8464],"yaw":-0.861748,"spawnMask":1},{"id":"creature-53090","entityId":"entry-10390","position":[-684.965,-28.6161,102.7564],"yaw":-5.1846,"spawnMask":1},{"id":"creature-53091","entityId":"entry-10390","position":[-751.855,-33.9691,113.1664],"yaw":-4.7017,"spawnMask":1},{"id":"creature-53092","entityId":"entry-10390","position":[-755.825,-34.5941,106.2764],"yaw":-3.00634,"spawnMask":1},{"id":"creature-53093","entityId":"entry-10390","position":[-724.325,-42.0371,272.9464],"yaw":-3.05136,"spawnMask":1},{"id":"creature-53094","entityId":"entry-10390","position":[-719.055,-42.0921,266.0964],"yaw":-1.62985,"spawnMask":1},{"id":"creature-53095","entityId":"entry-10390","position":[-677.695,-28.1571,75.6164],"yaw":-4.69301,"spawnMask":1},{"id":"creature-53096","entityId":"entry-10390","position":[-678.925,-28.5421,81.2664],"yaw":-1.23412,"spawnMask":1},{"id":"creature-53097","entityId":"entry-10390","position":[-692.865,-36.8881,420.8764],"yaw":-1.97532,"spawnMask":1},{"id":"creature-53098","entityId":"entry-10390","position":[-744.435,-38.4631,439.8264],"yaw":-2.71755,"spawnMask":1},{"id":"creature-53101","entityId":"entry-10391","position":[-708.695,-28.9701,101.3764],"yaw":-2.60556,"spawnMask":1},{"id":"creature-53102","entityId":"entry-10391","position":[-710.685,-29.1431,96.0464],"yaw":-4.35522,"spawnMask":1},{"id":"creature-53103","entityId":"entry-10391","position":[-695.985,-27.6041,-33.1336],"yaw":-5.72918,"spawnMask":1},{"id":"creature-53104","entityId":"entry-10391","position":[-699.815,-27.1171,-41.5436],"yaw":-2.55826,"spawnMask":1},{"id":"creature-53105","entityId":"entry-10391","position":[-751.925,-26.9271,-7.5236],"yaw":-6.22235,"spawnMask":1},{"id":"creature-53106","entityId":"entry-10391","position":[-745.685,-27.4521,9.4964],"yaw":-5.43384,"spawnMask":1},{"id":"creature-53120","entityId":"entry-10391","position":[-561.645,-34.4891,267.2564],"yaw":-0.131781,"spawnMask":1},{"id":"creature-53121","entityId":"entry-10391","position":[-571.175,-33.9041,269.7864],"yaw":-4.54294,"spawnMask":1},{"id":"creature-53122","entityId":"entry-10391","position":[-767.325,-24.6151,-9.9336],"yaw":-2.50183,"spawnMask":1},{"id":"creature-53123","entityId":"entry-10391","position":[-770.035,-23.9881,-18.1836],"yaw":-4.0373,"spawnMask":1},{"id":"creature-53124","entityId":"entry-10391","position":[-595.105,-34.3091,239.8364],"yaw":-2.96323,"spawnMask":1},{"id":"creature-53125","entityId":"entry-10391","position":[-600.825,-35.7371,245.7564],"yaw":-3.72522,"spawnMask":1},{"id":"creature-53126","entityId":"entry-10391","position":[-531.385,-30.0431,220.5164],"yaw":-1.93423,"spawnMask":1},{"id":"creature-53127","entityId":"entry-10391","position":[-545.205,-30.1961,227.9664],"yaw":-2.53882,"spawnMask":1},{"id":"creature-53128","entityId":"entry-10391","position":[-513.875,-25.8551,209.0564],"yaw":-3.53628,"spawnMask":1},{"id":"creature-53129","entityId":"entry-10391","position":[-506.995,-24.6901,206.9364],"yaw":-2.57412,"spawnMask":1},{"id":"creature-53130","entityId":"entry-10391","position":[-599.255,-31.1831,181.8364],"yaw":-0.854294,"spawnMask":1},{"id":"creature-53131","entityId":"entry-10391","position":[-594.165,-29.9721,171.7964],"yaw":-2.8578,"spawnMask":1},{"id":"creature-53132","entityId":"entry-10391","position":[-644.215,-30.5381,120.2964],"yaw":-3.26768,"spawnMask":1},{"id":"creature-53133","entityId":"entry-10391","position":[-651.675,-30.6701,124.7264],"yaw":-2.03961,"spawnMask":1},{"id":"creature-53140","entityId":"entry-10391","position":[-733.145,-39.5861,239.9964],"yaw":-2.73409,"spawnMask":1},{"id":"creature-53141","entityId":"entry-10391","position":[-737.335,-39.8601,247.2064],"yaw":-0.569313,"spawnMask":1},{"id":"creature-53142","entityId":"entry-10391","position":[-571.695,-31.9361,202.0764],"yaw":-1.98904,"spawnMask":1},{"id":"creature-53143","entityId":"entry-10391","position":[-554.905,-30.3971,216.5964],"yaw":-5.44695,"spawnMask":1},{"id":"creature-53144","entityId":"entry-10391","position":[-618.385,-35.4171,278.3864],"yaw":-5.46213,"spawnMask":1},{"id":"creature-53145","entityId":"entry-10391","position":[-622.465,-35.5571,275.4264],"yaw":-2.92852,"spawnMask":1},{"id":"creature-53146","entityId":"entry-10391","position":[-535.405,-34.1511,298.5264],"yaw":-2.01543,"spawnMask":1},{"id":"creature-53147","entityId":"entry-10391","position":[-544.865,-34.7661,302.2964],"yaw":-6.23791,"spawnMask":1},{"id":"creature-53148","entityId":"entry-10391","position":[-493.175,-24.5431,212.2964],"yaw":-2.83097,"spawnMask":1},{"id":"creature-53149","entityId":"entry-10391","position":[-484.345,-24.1971,213.0564],"yaw":-3.36123,"spawnMask":1},{"id":"creature-53150","entityId":"entry-10391","position":[-637.425,-37.2041,254.9064],"yaw":-2.13152,"spawnMask":1},{"id":"creature-53151","entityId":"entry-10391","position":[-642.715,-37.5991,251.8864],"yaw":-0.488365,"spawnMask":1},{"id":"creature-53152","entityId":"entry-10391","position":[-737.135,-37.7071,304.5464],"yaw":-5.03931,"spawnMask":1},{"id":"creature-53153","entityId":"entry-10391","position":[-733.735,-37.8931,300.6764],"yaw":-1.0917,"spawnMask":1},{"id":"creature-53161","entityId":"entry-10391","position":[-608.345,-32.8861,217.1264],"yaw":-1.63767,"spawnMask":1},{"id":"creature-53162","entityId":"entry-10391","position":[-603.445,-33.1641,219.3764],"yaw":-2.03614,"spawnMask":1},{"id":"creature-53163","entityId":"entry-10391","position":[-788.615,-37.3551,332.6964],"yaw":-0.845726,"spawnMask":1},{"id":"creature-53164","entityId":"entry-10391","position":[-785.225,-37.2061,328.8264],"yaw":-2.52093,"spawnMask":1},{"id":"creature-53165","entityId":"entry-10391","position":[-750.935,-33.7971,204.5864],"yaw":-3.44242,"spawnMask":1},{"id":"creature-53179","entityId":"entry-10391","position":[-750.095,-33.4571,197.9364],"yaw":-1.6202,"spawnMask":1},{"id":"creature-53180","entityId":"entry-10391","position":[-673.395,-28.8451,103.9364],"yaw":-3.51649,"spawnMask":1},{"id":"creature-53184","entityId":"entry-10391","position":[-685.315,-28.8151,97.0364],"yaw":-6.03546,"spawnMask":1},{"id":"creature-53185","entityId":"entry-10391","position":[-743.995,-31.8861,112.2664],"yaw":-3.55056,"spawnMask":1},{"id":"creature-53186","entityId":"entry-10391","position":[-737.185,-30.9891,109.9264],"yaw":-3.2347,"spawnMask":1},{"id":"creature-53187","entityId":"entry-10391","position":[-722.005,-42.1181,270.3364],"yaw":-1.2766,"spawnMask":1},{"id":"creature-53188","entityId":"entry-10391","position":[-713.895,-42.0431,267.4864],"yaw":-2.15457,"spawnMask":1},{"id":"creature-53189","entityId":"entry-10391","position":[-691.335,-29.1841,83.9564],"yaw":-1.35692,"spawnMask":1},{"id":"creature-53190","entityId":"entry-10391","position":[-688.225,-29.1521,81.7064],"yaw":-0.301834,"spawnMask":1},{"id":"creature-53191","entityId":"entry-10391","position":[-744.225,-38.2781,443.4664],"yaw":-1.88714,"spawnMask":1},{"id":"creature-53192","entityId":"entry-10391","position":[-698.365,-37.6051,418.6564],"yaw":-6.02752,"spawnMask":1},{"id":"creature-53238","entityId":"entry-10391","position":[-762.595,-37.9201,427.6864],"yaw":-5.48033,"spawnMask":1},{"id":"creature-53240","entityId":"entry-10391","position":[-755.895,-37.7581,398.3864],"yaw":-2.16421,"spawnMask":1},{"id":"creature-53241","entityId":"entry-10391","position":[-703.005,-36.5271,386.6764],"yaw":-1.27409,"spawnMask":1},{"id":"creature-53242","entityId":"entry-10391","position":[-670.455,-33.5441,418.9464],"yaw":-4.72984,"spawnMask":1},{"id":"creature-53243","entityId":"entry-10398","position":[-887.035,-22.2631,-102.5736],"yaw":-0.383972,"spawnMask":1},{"id":"creature-53244","entityId":"entry-10398","position":[-941.735,-26.9281,59.3664],"yaw":-4.13643,"spawnMask":1},{"id":"creature-53245","entityId":"entry-10398","position":[-938.935,-26.4591,65.9664],"yaw":-3.33358,"spawnMask":1},{"id":"creature-53246","entityId":"entry-10398","position":[-1058.195,-33.7371,-46.8236],"yaw":-0.523599,"spawnMask":1},{"id":"creature-53247","entityId":"entry-10398","position":[-1009.695,-34.7981,31.0264],"yaw":-5.74213,"spawnMask":1},{"id":"creature-53248","entityId":"entry-10398","position":[-1078.835,-34.6121,-22.8136],"yaw":-5.84685,"spawnMask":1},{"id":"creature-53249","entityId":"entry-10398","position":[-1057.345,-33.7411,-43.9336],"yaw":-5.98648,"spawnMask":1},{"id":"creature-53250","entityId":"entry-10398","position":[-946.365,-21.9681,-112.9036],"yaw":-4.41568,"spawnMask":1},{"id":"creature-53251","entityId":"entry-10398","position":[-910.605,-25.8781,41.8164],"yaw":-5.13127,"spawnMask":1},{"id":"creature-53252","entityId":"entry-10398","position":[-1082.865,-34.5291,-25.2536],"yaw":-2.56563,"spawnMask":1},{"id":"creature-53253","entityId":"entry-10398","position":[-912.945,-25.1131,35.3464],"yaw":-1.8675,"spawnMask":1},{"id":"creature-53254","entityId":"entry-10398","position":[-1086.985,-31.9121,-43.5636],"yaw":-5.23599,"spawnMask":1},{"id":"creature-53255","entityId":"entry-10398","position":[-1012.855,-35.7241,27.6164],"yaw":-2.11185,"spawnMask":1},{"id":"creature-53256","entityId":"entry-10398","position":[-911.725,-20.7891,-14.2836],"yaw":-4.34587,"spawnMask":1},{"id":"creature-53257","entityId":"entry-10399","position":[-1114.975,-29.9131,-70.8536],"yaw":-2.51327,"spawnMask":1},{"id":"creature-53258","entityId":"entry-10399","position":[-1109.785,-32.9121,-77.1136],"yaw":-0.977384,"spawnMask":1},{"id":"creature-53259","entityId":"entry-10399","position":[-1114.485,-32.9121,-79.1936],"yaw":-1.5708,"spawnMask":1},{"id":"creature-53260","entityId":"entry-10399","position":[-1123.145,-32.9121,-69.4636],"yaw":-3.24631,"spawnMask":1},{"id":"creature-53261","entityId":"entry-10399","position":[-1120.595,-32.9121,-65.1036],"yaw":-3.83972,"spawnMask":1},{"id":"creature-53262","entityId":"entry-10399","position":[-897.145,-21.3571,95.5664],"yaw":-5.23599,"spawnMask":1},{"id":"creature-53263","entityId":"entry-10399","position":[-904.355,-24.3571,99.4064],"yaw":-3.64774,"spawnMask":1},{"id":"creature-53264","entityId":"entry-10399","position":[-900.845,-24.3571,102.8964],"yaw":-4.2586,"spawnMask":1},{"id":"creature-53265","entityId":"entry-10399","position":[-889.185,-24.3571,97.0164],"yaw":-6.0912,"spawnMask":1},{"id":"creature-53266","entityId":"entry-10399","position":[-889.925,-24.3561,92.2664],"yaw":-0.401426,"spawnMask":1},{"id":"creature-53267","entityId":"entry-10399","position":[-987.215,-9.0951,-78.6336],"yaw":-5.18363,"spawnMask":1},{"id":"creature-53268","entityId":"entry-10399","position":[-905.605,-17.4761,-152.0336],"yaw":-1.39626,"spawnMask":1},{"id":"creature-53269","entityId":"entry-10399","position":[-897.195,-20.4751,-151.0836],"yaw":-6.23082,"spawnMask":1},{"id":"creature-53270","entityId":"entry-10399","position":[-897.775,-20.4751,-155.8936],"yaw":-0.506145,"spawnMask":1},{"id":"creature-53271","entityId":"entry-10399","position":[-910.295,-20.4751,-158.6636],"yaw":-2.14675,"spawnMask":1},{"id":"creature-53272","entityId":"entry-10399","position":[-913.025,-20.4751,-154.2336],"yaw":-2.79253,"spawnMask":1},{"id":"creature-53273","entityId":"entry-10400","position":[-951.815,-24.5531,-69.4636],"yaw":-0.087266,"spawnMask":1},{"id":"creature-53274","entityId":"entry-10400","position":[-1014.405,-36.3751,30.9164],"yaw":-3.45575,"spawnMask":1},{"id":"creature-53275","entityId":"entry-10400","position":[-931.735,-27.2191,65.0964],"yaw":-0.05236,"spawnMask":1},{"id":"creature-53276","entityId":"entry-10400","position":[-891.165,-22.3841,-98.4136],"yaw":-4.27606,"spawnMask":1},{"id":"creature-53277","entityId":"entry-10400","position":[-1083.655,-31.8131,-47.6836],"yaw":-5.91667,"spawnMask":1},{"id":"creature-53278","entityId":"entry-10400","position":[-1061.525,-33.9481,-44.1236],"yaw":-3.61283,"spawnMask":1},{"id":"creature-53279","entityId":"entry-10400","position":[-960.315,-25.7671,-68.4636],"yaw":-3.28122,"spawnMask":1},{"id":"creature-53280","entityId":"entry-10400","position":[-1077.385,-34.0441,-18.5636],"yaw":-5.48033,"spawnMask":1},{"id":"creature-53281","entityId":"entry-10400","position":[-892.685,-22.7741,-102.3336],"yaw":-2.84489,"spawnMask":1},{"id":"creature-53282","entityId":"entry-10400","position":[-910.245,-20.1831,-18.9036],"yaw":-1.32645,"spawnMask":1},{"id":"creature-53283","entityId":"entry-10400","position":[-1045.855,-40.9881,55.1364],"yaw":-6.00393,"spawnMask":1},{"id":"creature-53284","entityId":"entry-10400","position":[-1085.205,-32.0211,-45.3936],"yaw":-5.5676,"spawnMask":1},{"id":"creature-53285","entityId":"entry-10400","position":[-1049.735,-41.1411,54.0564],"yaw":-2.87979,"spawnMask":1},{"id":"creature-53286","entityId":"entry-10400","position":[-943.475,-22.0361,-112.4736],"yaw":-5.32325,"spawnMask":1},{"id":"creature-53287","entityId":"entry-10400","position":[-1081.015,-34.0181,-21.0836],"yaw":-2.49582,"spawnMask":1},{"id":"creature-53288","entityId":"entry-10400","position":[-945.785,-22.2961,-117.0136],"yaw":-1.69297,"spawnMask":1},{"id":"creature-53289","entityId":"entry-10400","position":[-937.515,-27.3661,54.8764],"yaw":-0.698132,"spawnMask":1},{"id":"creature-53291","entityId":"entry-10405","position":[-699.085,-26.8981,123.0764],"yaw":-5.75959,"spawnMask":1},{"id":"creature-53292","entityId":"entry-10405","position":[-786.255,-35.3931,141.9164],"yaw":-4.95674,"spawnMask":1},{"id":"creature-53293","entityId":"entry-10405","position":[-661.165,-29.8901,109.0064],"yaw":-4.17336,"spawnMask":1},{"id":"creature-53294","entityId":"entry-10405","position":[-1111.995,-43.5801,80.8764],"yaw":-5.84685,"spawnMask":1},{"id":"creature-53295","entityId":"entry-10405","position":[-1077.395,-39.0201,34.3664],"yaw":-0.698132,"spawnMask":1},{"id":"creature-53296","entityId":"entry-10405","position":[-912.965,-21.1381,-68.9036],"yaw":-2.33874,"spawnMask":1},{"id":"creature-53298","entityId":"entry-10405","position":[-728.815,-37.7781,329.2964],"yaw":-0.942478,"spawnMask":1},{"id":"creature-53300","entityId":"entry-10405","position":[-787.305,-35.2781,138.0364],"yaw":-1.85005,"spawnMask":1},{"id":"creature-53587","entityId":"entry-10405","position":[-745.645,-32.4511,182.6364],"yaw":-0.733038,"spawnMask":1},{"id":"creature-53588","entityId":"entry-10405","position":[-657.255,-27.8681,83.6364],"yaw":-6.23082,"spawnMask":1},{"id":"creature-53589","entityId":"entry-10405","position":[-663.235,-27.5781,80.7064],"yaw":-2.68781,"spawnMask":1},{"id":"creature-53590","entityId":"entry-10405","position":[-749.275,-32.5801,184.5764],"yaw":-3.4383,"spawnMask":1},{"id":"creature-53591","entityId":"entry-10405","position":[-1069.725,-43.5881,70.7164],"yaw":-0.767945,"spawnMask":1},{"id":"creature-53592","entityId":"entry-10405","position":[-1063.785,-35.4471,-0.4636],"yaw":-0.610865,"spawnMask":1},{"id":"creature-53593","entityId":"entry-10405","position":[-1030.015,-31.1281,-53.2936],"yaw":-5.8294,"spawnMask":1},{"id":"creature-53595","entityId":"entry-10405","position":[-730.155,-37.7671,332.8564],"yaw":-4.60767,"spawnMask":1},{"id":"creature-53596","entityId":"entry-10405","position":[-955.705,-25.6421,-71.2336],"yaw":-1.55334,"spawnMask":1},{"id":"creature-53597","entityId":"entry-10405","position":[-1028.815,-37.2861,12.1164],"yaw":-4.92183,"spawnMask":1},{"id":"creature-53598","entityId":"entry-10405","position":[-1080.335,-43.5431,78.3764],"yaw":-3.54302,"spawnMask":1},{"id":"creature-53599","entityId":"entry-10405","position":[-703.765,-27.3661,122.9064],"yaw":-3.68265,"spawnMask":1},{"id":"creature-53600","entityId":"entry-10405","position":[-740.455,-37.7831,303.0764],"yaw":-0.932354,"spawnMask":1},{"id":"creature-53654","entityId":"entry-10405","position":[-878.735,-20.7561,-89.3636],"yaw":-1.0472,"spawnMask":1},{"id":"creature-53669","entityId":"entry-10405","position":[-1030.375,-36.8741,4.1164],"yaw":-1.74533,"spawnMask":1},{"id":"creature-53672","entityId":"entry-10405","position":[-1074.025,-43.5201,79.4564],"yaw":-5.14872,"spawnMask":1},{"id":"creature-53673","entityId":"entry-10405","position":[-1030.495,-35.5411,-27.4036],"yaw":-0.418879,"spawnMask":1},{"id":"creature-53677","entityId":"entry-10405","position":[-701.825,-27.2151,118.5264],"yaw":-1.62316,"spawnMask":1},{"id":"creature-53678","entityId":"entry-10406","position":[-1032.575,-31.8181,-52.5936],"yaw":-5.19185,"spawnMask":1},{"id":"creature-53691","entityId":"entry-10406","position":[-1083.655,-39.4931,38.5264],"yaw":-3.45575,"spawnMask":1},{"id":"creature-53692","entityId":"entry-10406","position":[-909.835,-21.1001,-64.7536],"yaw":-5.21853,"spawnMask":1},{"id":"creature-53693","entityId":"entry-10406","position":[-1115.695,-43.2611,77.9464],"yaw":-2.30383,"spawnMask":1},{"id":"creature-53694","entityId":"entry-10406","position":[-880.885,-20.6221,-86.6836],"yaw":-3.92699,"spawnMask":1},{"id":"creature-53695","entityId":"entry-10406","position":[-892.445,-20.5921,3.9764],"yaw":-2.79253,"spawnMask":1},{"id":"creature-53697","entityId":"entry-10406","position":[-955.885,-23.3881,-88.1736],"yaw":-2.93215,"spawnMask":1},{"id":"creature-53698","entityId":"entry-10406","position":[-862.055,-18.2741,-57.8136],"yaw":-0.855211,"spawnMask":1},{"id":"creature-53702","entityId":"entry-10406","position":[-1078.275,-40.0531,39.1564],"yaw":-5.95157,"spawnMask":1},{"id":"creature-53706","entityId":"entry-10406","position":[-868.435,-18.4111,-55.8936],"yaw":-3.28122,"spawnMask":1},{"id":"creature-53707","entityId":"entry-10406","position":[-1065.345,-35.5211,5.9764],"yaw":-4.93928,"spawnMask":1},{"id":"creature-53708","entityId":"entry-10406","position":[-1009.105,-28.7361,-52.7836],"yaw":-1.95477,"spawnMask":1},{"id":"creature-53709","entityId":"entry-10406","position":[-897.455,-19.4021,-40.9736],"yaw":-1.01229,"spawnMask":1},{"id":"creature-53715","entityId":"entry-10406","position":[-1068.845,-34.7451,-0.6736],"yaw":-2.46091,"spawnMask":1},{"id":"creature-53716","entityId":"entry-10406","position":[-901.515,-19.0221,-36.8736],"yaw":-3.68265,"spawnMask":1},{"id":"creature-53726","entityId":"entry-10406","position":[-1029.035,-39.2821,52.1564],"yaw":-4.79965,"spawnMask":1},{"id":"creature-53727","entityId":"entry-10407","position":[-1036.495,-35.8931,-25.0436],"yaw":-3.47321,"spawnMask":1},{"id":"creature-53728","entityId":"entry-10407","position":[-1030.935,-39.7591,45.6864],"yaw":-2.26893,"spawnMask":1},{"id":"creature-53729","entityId":"entry-10407","position":[-864.835,-18.6511,-51.1236],"yaw":-4.39823,"spawnMask":1},{"id":"creature-53761","entityId":"entry-10407","position":[-887.845,-20.1391,2.9564],"yaw":-0.750492,"spawnMask":1},{"id":"creature-53777","entityId":"entry-10407","position":[-1000.365,-28.7301,-42.4436],"yaw":-0.331613,"spawnMask":1},{"id":"creature-53778","entityId":"entry-10407","position":[-1076.525,-43.5481,72.7164],"yaw":-1.85005,"spawnMask":1},{"id":"creature-53779","entityId":"entry-10407","position":[-1007.395,-31.0591,-40.2936],"yaw":-3.38594,"spawnMask":1},{"id":"creature-53780","entityId":"entry-10407","position":[-948.825,-22.2631,-93.2936],"yaw":-1.43117,"spawnMask":1},{"id":"creature-53781","entityId":"entry-10407","position":[-1023.955,-38.4251,49.5164],"yaw":-5.93412,"spawnMask":1},{"id":"creature-53782","entityId":"entry-10407","position":[-889.445,-20.4331,7.4364],"yaw":-4.90438,"spawnMask":1},{"id":"creature-53784","entityId":"entry-10408","position":[-915.675,-22.8751,-87.5236],"yaw":-3.83062,"spawnMask":1},{"id":"creature-53785","entityId":"entry-10408","position":[-890.655,-23.4691,-115.5036],"yaw":-4.14354,"spawnMask":1},{"id":"creature-53786","entityId":"entry-10408","position":[-1063.635,-42.2211,51.2164],"yaw":-0.052646,"spawnMask":1},{"id":"creature-53787","entityId":"entry-10408","position":[-918.465,-26.1701,33.9864],"yaw":-1.89164,"spawnMask":1},{"id":"creature-53792","entityId":"entry-10408","position":[-875.265,-19.3811,-43.3136],"yaw":-0.771651,"spawnMask":1},{"id":"creature-53852","entityId":"entry-10408","position":[-1029.865,-39.5441,32.8364],"yaw":-3.67678,"spawnMask":1},{"id":"creature-53853","entityId":"entry-10408","position":[-879.245,-19.3821,-39.3436],"yaw":-1.95872,"spawnMask":1},{"id":"creature-53854","entityId":"entry-10409","position":[-1058.565,-38.1171,20.8764],"yaw":-4.2764,"spawnMask":1},{"id":"creature-53894","entityId":"entry-10412","position":[-911.415,-23.1271,5.3664],"yaw":-0.88975,"spawnMask":1},{"id":"creature-53900","entityId":"entry-10412","position":[-944.585,-23.9861,-81.7936],"yaw":-0.902485,"spawnMask":1},{"id":"creature-53901","entityId":"entry-10412","position":[-912.965,-25.9501,38.6564],"yaw":-3.86782,"spawnMask":1},{"id":"creature-53902","entityId":"entry-10412","position":[-919.105,-23.1881,-90.6436],"yaw":-0.360177,"spawnMask":1},{"id":"creature-53903","entityId":"entry-10412","position":[-1046.585,-35.4981,-29.7536],"yaw":-4.95631,"spawnMask":1},{"id":"creature-53904","entityId":"entry-10412","position":[-1052.755,-40.9391,40.5264],"yaw":-2.90855,"spawnMask":1},{"id":"creature-53932","entityId":"entry-10413","position":[-897.445,-21.1421,-69.1236],"yaw":-4.3269,"spawnMask":1},{"id":"creature-53934","entityId":"entry-10413","position":[-880.945,-20.0891,-30.0136],"yaw":-5.53816,"spawnMask":1},{"id":"creature-53935","entityId":"entry-10413","position":[-927.215,-25.7561,22.0764],"yaw":-0.381868,"spawnMask":1},{"id":"creature-53936","entityId":"entry-10413","position":[-930.515,-27.7021,60.2364],"yaw":-2.4098,"spawnMask":1},{"id":"creature-53969","entityId":"entry-10416","position":[-1048.205,-46.9261,213.7764],"yaw":-3.3588,"spawnMask":1},{"id":"creature-54002","entityId":"entry-10416","position":[-1066.585,-44.6991,161.0264],"yaw":-2.33062,"spawnMask":1},{"id":"creature-54018","entityId":"entry-10416","position":[-1155.405,-49.6571,197.7464],"yaw":-0.935985,"spawnMask":1},{"id":"creature-54019","entityId":"entry-10416","position":[-1111.405,-49.5741,182.4064],"yaw":-3.38611,"spawnMask":1},{"id":"creature-54020","entityId":"entry-10417","position":[-1080.255,-48.1011,171.3164],"yaw":-3.00096,"spawnMask":1},{"id":"creature-54021","entityId":"entry-10417","position":[-1110.325,-47.1221,163.0064],"yaw":-1.09369,"spawnMask":1},{"id":"creature-54022","entityId":"entry-10417","position":[-1056.375,-48.1301,192.4164],"yaw":-3.13568,"spawnMask":1},{"id":"creature-54026","entityId":"entry-10417","position":[-1147.035,-48.7051,164.3864],"yaw":-1.1363,"spawnMask":1},{"id":"creature-54027","entityId":"entry-10417","position":[-1141.415,-49.3321,215.8664],"yaw":-5.4536,"spawnMask":1},{"id":"creature-54039","entityId":"entry-10417","position":[-1052.735,-44.6591,170.4764],"yaw":-5.27334,"spawnMask":1},{"id":"creature-54040","entityId":"entry-10417","position":[-1097.645,-45.8991,151.8964],"yaw":-5.7582,"spawnMask":1},{"id":"creature-54041","entityId":"entry-10417","position":[-1129.435,-49.9971,194.6964],"yaw":-3.69658,"spawnMask":1},{"id":"creature-54050","entityId":"entry-10417","position":[-1069.795,-49.5771,194.2264],"yaw":-0.155868,"spawnMask":1},{"id":"creature-54052","entityId":"entry-10418","position":[-691.005,-36.5941,425.2164],"yaw":-4.76475,"spawnMask":1},{"id":"creature-54054","entityId":"entry-10418","position":[-717.995,-31.4501,498.7264],"yaw":-3.49066,"spawnMask":1},{"id":"creature-54055","entityId":"entry-10418","position":[-715.565,-31.4501,502.8564],"yaw":-3.92699,"spawnMask":1},{"id":"creature-54056","entityId":"entry-10418","position":[-738.145,-38.2451,447.3264],"yaw":-3.85718,"spawnMask":1},{"id":"creature-54067","entityId":"entry-10418","position":[-651.005,-29.5751,524.0864],"yaw":-4.79965,"spawnMask":1},{"id":"creature-54068","entityId":"entry-10418","position":[-680.625,-31.4431,495.4064],"yaw":-1.65806,"spawnMask":1},{"id":"creature-54069","entityId":"entry-10418","position":[-714.335,-37.2911,433.7664],"yaw":-5.39307,"spawnMask":1},{"id":"creature-54070","entityId":"entry-10418","position":[-721.715,-37.2931,438.6464],"yaw":-5.18363,"spawnMask":1},{"id":"creature-54071","entityId":"entry-10418","position":[-673.865,-31.2781,498.2864],"yaw":-3.73462,"spawnMask":1},{"id":"creature-54072","entityId":"entry-10418","position":[-637.585,-29.5771,502.7664],"yaw":-0.20944,"spawnMask":1},{"id":"creature-54073","entityId":"entry-10418","position":[-715.855,-38.9541,417.6364],"yaw":-5.23599,"spawnMask":1},{"id":"creature-54074","entityId":"entry-10418","position":[-723.045,-39.0991,421.8264],"yaw":-5.02655,"spawnMask":1},{"id":"creature-54075","entityId":"entry-10418","position":[-723.285,-39.3261,404.9264],"yaw":-5.16617,"spawnMask":1},{"id":"creature-54076","entityId":"entry-10418","position":[-716.435,-38.7011,398.8564],"yaw":-5.61996,"spawnMask":1},{"id":"creature-54077","entityId":"entry-10418","position":[-696.405,-31.4451,520.6964],"yaw":-5.28835,"spawnMask":1},{"id":"creature-54079","entityId":"entry-10419","position":[-740.605,-39.0541,419.3864],"yaw":-4.60767,"spawnMask":1},{"id":"creature-54082","entityId":"entry-10419","position":[-738.085,-38.3811,387.7464],"yaw":-5.09636,"spawnMask":1},{"id":"creature-54084","entityId":"entry-10419","position":[-673.525,-31.4451,504.2064],"yaw":-6.00393,"spawnMask":1},{"id":"creature-54086","entityId":"entry-10419","position":[-638.855,-29.5751,508.9164],"yaw":-6.07375,"spawnMask":1},{"id":"creature-54087","entityId":"entry-10419","position":[-720.265,-39.0911,420.5564],"yaw":-5.11381,"spawnMask":1},{"id":"creature-54088","entityId":"entry-10419","position":[-703.885,-31.4451,518.9564],"yaw":-4.53786,"spawnMask":1},{"id":"creature-54089","entityId":"entry-10420","position":[-656.705,-31.4461,487.7964],"yaw":-0.523599,"spawnMask":1},{"id":"creature-54090","entityId":"entry-10420","position":[-720.835,-31.4501,502.0764],"yaw":-3.63029,"spawnMask":1},{"id":"creature-54091","entityId":"entry-10420","position":[-719.025,-31.4501,504.4764],"yaw":-3.83972,"spawnMask":1},{"id":"creature-54115","entityId":"entry-10420","position":[-653.225,-29.5841,528.1164],"yaw":-4.67748,"spawnMask":1},{"id":"creature-54116","entityId":"entry-10420","position":[-659.325,-31.5281,485.3664],"yaw":-0.597236,"spawnMask":1},{"id":"creature-54117","entityId":"entry-10420","position":[-718.995,-36.7051,437.9064],"yaw":-5.23599,"spawnMask":1},{"id":"creature-54137","entityId":"entry-10420","position":[-634.195,-29.5821,510.3764],"yaw":-6.03884,"spawnMask":1},{"id":"creature-54138","entityId":"entry-10420","position":[-719.315,-38.9591,402.8164],"yaw":-5.37561,"spawnMask":1},{"id":"creature-54139","entityId":"entry-10420","position":[-703.915,-31.4431,522.8664],"yaw":-4.59022,"spawnMask":1},{"id":"creature-54140","entityId":"entry-10421","position":[-587.675,-40.5651,625.8164],"yaw":-6.10865,"spawnMask":1},{"id":"creature-54141","entityId":"entry-10421","position":[-584.805,-40.5661,629.6564],"yaw":-5.86431,"spawnMask":1},{"id":"creature-54142","entityId":"entry-10421","position":[-622.555,-40.5651,627.4664],"yaw":-5.32325,"spawnMask":1},{"id":"creature-54144","entityId":"entry-10421","position":[-631.065,-40.5651,626.7664],"yaw":-4.4855,"spawnMask":1},{"id":"creature-54146","entityId":"entry-10421","position":[-635.365,-40.5651,595.9064],"yaw":-3.59538,"spawnMask":1},{"id":"creature-54147","entityId":"entry-10421","position":[-598.845,-40.5661,609.8564],"yaw":-0.244346,"spawnMask":1},{"id":"creature-54162","entityId":"entry-10421","position":[-600.525,-40.5651,606.0364],"yaw":-0.331613,"spawnMask":1},{"id":"creature-54166","entityId":"entry-10421","position":[-600.055,-40.5661,574.7964],"yaw":-5.61996,"spawnMask":1},{"id":"creature-54167","entityId":"entry-10421","position":[-603.205,-40.5671,578.2464],"yaw":-5.3058,"spawnMask":1},{"id":"creature-54168","entityId":"entry-10422","position":[-632.865,-40.5651,598.1564],"yaw":-3.82227,"spawnMask":1},{"id":"creature-54169","entityId":"entry-10422","position":[-593.145,-30.3181,537.7964],"yaw":-2.40187,"spawnMask":1},{"id":"creature-54170","entityId":"entry-10422","position":[-500.835,-30.6481,512.1464],"yaw":-4.13137,"spawnMask":1},{"id":"creature-54171","entityId":"entry-10423","position":[-587.055,-40.5671,635.3164],"yaw":-5.48033,"spawnMask":1},{"id":"creature-54172","entityId":"entry-10423","position":[-591.575,-40.5671,636.1564],"yaw":-5.06145,"spawnMask":1},{"id":"creature-54173","entityId":"entry-10423","position":[-626.205,-40.5661,629.2964],"yaw":-4.95674,"spawnMask":1},{"id":"creature-54174","entityId":"entry-10423","position":[-639.055,-40.5671,599.1664],"yaw":-3.64774,"spawnMask":1},{"id":"creature-54175","entityId":"entry-10423","position":[-604.925,-40.5661,602.5764],"yaw":-1.02974,"spawnMask":1},{"id":"creature-54179","entityId":"entry-10423","position":[-600.905,-40.5671,583.6264],"yaw":-5.25344,"spawnMask":1},{"id":"creature-54180","entityId":"entry-10424","position":[-731.355,-39.3321,413.1064],"yaw":-4.93928,"spawnMask":1},{"id":"creature-54201","entityId":"entry-10424","position":[-528.285,-30.5621,521.8464],"yaw":-0.907571,"spawnMask":1},{"id":"creature-54204","entityId":"entry-10424","position":[-523.035,-30.5661,529.9864],"yaw":-0.20944,"spawnMask":1},{"id":"creature-54206","entityId":"entry-10424","position":[-604.535,-40.6511,610.1564],"yaw":-5.36522,"spawnMask":1},{"id":"creature-54207","entityId":"entry-10424","position":[-731.775,-38.4871,384.2264],"yaw":-5.28835,"spawnMask":1},{"id":"creature-54208","entityId":"entry-10424","position":[-602.975,-30.5701,516.0764],"yaw":-0.855211,"spawnMask":1},{"id":"creature-54219","entityId":"entry-10424","position":[-600.175,-30.5701,520.6564],"yaw":-0.401426,"spawnMask":1},{"id":"creature-54220","entityId":"entry-10424","position":[-646.535,-13.8911,479.2364],"yaw":-5.18363,"spawnMask":1},{"id":"creature-54221","entityId":"entry-10424","position":[-558.205,-29.8991,501.3264],"yaw":-1.81514,"spawnMask":1},{"id":"creature-54222","entityId":"entry-10424","position":[-564.265,-29.8991,502.0964],"yaw":-2.46091,"spawnMask":1},{"id":"creature-54223","entityId":"entry-10424","position":[-544.555,-30.5701,515.5864],"yaw":-0.383972,"spawnMask":1},{"id":"creature-54224","entityId":"entry-10424","position":[-547.695,-30.5701,510.7264],"yaw":-0.890118,"spawnMask":1},{"id":"creature-54225","entityId":"entry-10424","position":[-573.725,-30.5701,527.9064],"yaw":-0.837758,"spawnMask":1},{"id":"creature-54227","entityId":"entry-10424","position":[-571.105,-30.5701,531.9664],"yaw":-0.401426,"spawnMask":1},{"id":"creature-54228","entityId":"entry-10424","position":[-495.715,-30.5651,509.3364],"yaw":-6.19592,"spawnMask":1},{"id":"creature-54229","entityId":"entry-10424","position":[-499.405,-30.5641,503.5364],"yaw":-1.309,"spawnMask":1},{"id":"creature-54230","entityId":"entry-10425","position":[-523.315,-30.5641,522.4964],"yaw":-0.645772,"spawnMask":1},{"id":"creature-54231","entityId":"entry-10425","position":[-543.405,-30.5701,508.6864],"yaw":-0.767945,"spawnMask":1},{"id":"creature-54232","entityId":"entry-10425","position":[-567.505,-30.5701,529.9364],"yaw":-0.436332,"spawnMask":1},{"id":"creature-54233","entityId":"entry-10425","position":[-494.165,-30.5651,505.5164],"yaw":-0.471239,"spawnMask":1},{"id":"creature-54234","entityId":"entry-10426","position":[-599.175,-30.5701,515.1364],"yaw":-0.715585,"spawnMask":1},{"id":"creature-54235","entityId":"entry-10426","position":[-597.105,-30.5701,517.3464],"yaw":-0.523599,"spawnMask":1},{"id":"creature-54236","entityId":"entry-10426","position":[-561.265,-29.8991,500.1264],"yaw":-2.04204,"spawnMask":1},{"id":"creature-54237","entityId":"entry-10435","position":[-720.655,-27.6661,-23.4336],"yaw":-5.34071,"spawnMask":1},{"id":"creature-54238","entityId":"entry-10436","position":[-912.765,-17.4751,-120.0436],"yaw":-1.27409,"spawnMask":1},{"id":"creature-54239","entityId":"entry-10437","position":[-912.405,-21.3571,66.8664],"yaw":-5.23599,"spawnMask":1},{"id":"creature-54240","entityId":"entry-10438","position":[-1093.235,-29.9121,-52.0736],"yaw":-2.42601,"spawnMask":1},{"id":"creature-54241","entityId":"entry-10440","position":[-1093.255,-50.5061,259.3964],"yaw":-4.67748,"spawnMask":1},{"id":"creature-54242","entityId":"entry-10463","position":[-1032.235,-33.4731,-44.7936],"yaw":-4.30977,"spawnMask":1},{"id":"creature-54243","entityId":"entry-10463","position":[-894.085,-20.5361,-23.8736],"yaw":-5.03545,"spawnMask":1},{"id":"creature-54244","entityId":"entry-10463","position":[-944.945,-23.4801,-127.0636],"yaw":-0.02584,"spawnMask":1},{"id":"creature-54245","entityId":"entry-10463","position":[-918.775,-23.6601,12.4064],"yaw":-0.741322,"spawnMask":1},{"id":"creature-54251","entityId":"entry-10463","position":[-895.615,-21.4121,-80.9536],"yaw":-3.30649,"spawnMask":1},{"id":"creature-54253","entityId":"entry-10463","position":[-883.865,-19.6991,-50.4036],"yaw":-2.62055,"spawnMask":1},{"id":"creature-54276","entityId":"entry-10463","position":[-896.805,-24.0461,-114.0936],"yaw":-6.17436,"spawnMask":1},{"id":"creature-54286","entityId":"entry-10464","position":[-931.375,-22.9051,-83.9536],"yaw":-4.24564,"spawnMask":1},{"id":"creature-54304","entityId":"entry-10464","position":[-932.365,-28.2831,37.4164],"yaw":-2.969,"spawnMask":1},{"id":"creature-54413","entityId":"entry-10464","position":[-863.845,-20.4481,-32.3736],"yaw":-4.58668,"spawnMask":1},{"id":"creature-54414","entityId":"entry-10464","position":[-1071.675,-42.7801,55.0664],"yaw":-4.1331,"spawnMask":1},{"id":"creature-54433","entityId":"entry-10997","position":[-630.995,-40.5651,658.3964],"yaw":-3.78736,"spawnMask":1},{"id":"creature-247225","entityId":"entry-10393","position":[-539.105,-34.8701,277.6464],"yaw":0,"spawnMask":1},{"id":"creature-247226","entityId":"entry-10516","position":[-764.205,-33.6001,182.7364],"yaw":-2.08,"spawnMask":1},{"id":"creature-247227","entityId":"entry-10808","position":[-709.045,-38.6901,405.6264],"yaw":0,"spawnMask":1},{"id":"creature-247229","entityId":"entry-16031","position":[-1101.475,-50.1101,261.1564],"yaw":-4.12,"spawnMask":1},{"id":"creature-248654","entityId":"entry-14684","position":[-790.695,-34.6101,115.5964],"yaw":-3.05433,"spawnMask":1},{"id":"encounter-478","entityId":"entry-10813","position":[-100.5006,-6.2831,-38.3734],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-52141","name":"Crimson Monk Patrol","speed":1.15,"pathId":521410,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-593.145,-30.3181,537.7964],[-594.725,-29.9831,534.8264],[-592.955,-30.0681,537.6864],[-586.665,-30.6531,546.7764],[-586.525,-30.4031,541.0164],[-582.325,-30.4031,538.6364],[-572.625,-30.6531,531.7364],[-570.055,-30.4031,530.0464],[-569.825,-30.4031,529.8464],[-558.715,-30.6531,521.9364],[-557.605,-30.4031,521.0564],[-555.505,-30.6531,519.5064],[-554.065,-30.4031,518.5064],[-557.875,-30.4031,521.1664],[-566.975,-30.6531,527.9364],[-569.815,-30.4031,529.7664],[-576.955,-30.6531,534.7864],[-581.975,-30.6531,538.2564],[-582.815,-30.4031,538.7964],[-585.345,-30.6531,540.3864],[-589.925,-30.6531,541.2264]],"members":[{"id":"member","entityId":"entry-11043","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-52144","name":"Crimson Monk Patrol","speed":1.15,"pathId":521440,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-500.835,-30.6481,512.1464],[-496.015,-30.6481,517.1064],[-501.995,-30.6481,511.0564],[-504.205,-30.4021,512.3364],[-507.235,-30.4041,513.2164],[-513.405,-30.6541,517.3364],[-517.815,-30.4021,520.4964],[-522.495,-30.3991,524.0464],[-529.935,-30.6471,529.1164],[-532.195,-30.3981,530.7264],[-539.905,-30.6481,536.0064],[-535.755,-30.6481,533.1264],[-532.535,-30.3981,530.9964],[-528.755,-30.6471,528.2764],[-523.705,-30.6471,524.7864],[-517.985,-30.3991,520.9464],[-517.655,-30.4021,520.4264],[-514.125,-30.6531,517.9864],[-509.125,-30.6591,514.4164],[-504.895,-30.4031,511.5464],[-502.715,-30.6481,512.0364]],"members":[{"id":"member","entityId":"entry-11043","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53290","name":"Plague Ghoul Patrol","speed":1.15,"pathId":532900,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-778.145,-35.8541,124.5064],[-777.115,-35.9191,136.5764],[-776.185,-36.2851,147.4564],[-772.515,-36.1821,156.6164],[-771.865,-34.7051,164.2864],[-769.055,-34.2521,171.3864],[-765.525,-33.9471,176.8564],[-761.725,-33.5341,186.7664],[-758.945,-33.6281,195.0664],[-755.375,-33.6321,200.5964],[-748.295,-34.7171,211.5964],[-753.475,-33.6281,202.0864],[-759.865,-33.4341,188.1364],[-769.205,-34.4411,169.1864],[-772.745,-35.9701,157.6764],[-775.645,-36.3481,148.2464],[-780.125,-35.8811,133.6564],[-782.695,-35.7801,127.5364]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53299","name":"Plague Ghoul Patrol","speed":1.15,"pathId":532990,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-755.455,-33.5251,195.4964],[-747.455,-34.1301,207.2364],[-741.305,-35.9761,216.2664],[-737.895,-37.0431,225.5264],[-731.325,-39.7951,240.5564],[-726.155,-41.0861,252.6564],[-721.575,-42.0951,268.2364],[-723.085,-41.7471,274.6364],[-726.035,-39.4741,284.0264],[-734.235,-38.8631,289.4064],[-744.135,-37.6091,300.5064],[-750.275,-37.0861,313.3164],[-755.015,-37.5081,323.2364],[-758.795,-37.9671,331.1264],[-753.165,-37.1921,318.2364],[-746.295,-37.2281,304.6864],[-739.365,-38.6211,291.1364],[-734.225,-39.1901,282.7064],[-730.255,-40.7171,276.1964],[-724.275,-41.9251,263.6764],[-721.395,-41.2841,253.2064],[-724.555,-40.5341,245.0464],[-729.875,-39.1381,231.9064],[-736.915,-36.8901,220.8664],[-742.825,-35.0451,211.5964],[-745.755,-34.1091,206.9864]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53594","name":"Plague Ghoul Patrol","speed":1.15,"pathId":535940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-531.205,-29.1431,228.7764],[-547.735,-30.4421,219.1564],[-560.835,-31.0851,214.2164],[-592.625,-33.2731,206.9164],[-595.115,-33.2731,200.9164],[-604.655,-30.2221,173.4764],[-599.595,-31.6721,186.5364],[-592.355,-33.2741,204.7164],[-572.025,-32.6961,209.8764],[-547.935,-30.3741,216.1164]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53601","name":"Plague Ghoul Patrol","speed":1.15,"pathId":536010,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-647.545,-30.6041,123.4664],[-663.255,-29.7121,108.2764],[-672.785,-28.5891,98.0264],[-684.985,-28.9571,80.9664],[-696.285,-28.6761,72.1964],[-711.625,-28.8081,78.2464],[-718.635,-28.9291,90.4564],[-713.415,-28.8521,103.8764],[-698.355,-28.1981,108.1864],[-688.445,-28.2551,106.3864],[-670.845,-28.7591,99.7664],[-658.835,-29.8101,106.5264]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53650","name":"Plague Ghoul Patrol","speed":1.15,"pathId":536500,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-597.825,-33.5291,227.6164],[-600.205,-34.3361,234.1964],[-607.345,-36.4261,253.9464],[-617.455,-36.3221,260.5164],[-631.445,-37.0131,260.2264],[-631.065,-36.9721,260.5464],[-612.855,-36.3161,262.1064],[-608.565,-36.4721,248.7764],[-601.365,-33.8951,229.0564],[-596.225,-33.2741,212.1764],[-598.635,-31.7261,186.7364],[-600.905,-30.9551,180.1264],[-601.845,-30.9451,180.3064],[-597.595,-32.5411,193.6464],[-597.095,-33.2741,218.6564]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53674","name":"Plague Ghoul Patrol","speed":1.15,"pathId":536740,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-579.925,-34.6011,272.7064],[-559.725,-35.4261,279.3264],[-584.305,-34.9131,273.3864],[-597.925,-36.2651,270.1364],[-618.415,-36.2541,265.5564],[-642.105,-37.8971,261.3964],[-628.425,-36.5791,264.2364],[-614.675,-36.2541,266.8664],[-589.555,-35.5631,272.1664]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53675","name":"Plague Ghoul Patrol","speed":1.15,"pathId":536750,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-769.385,-34.5671,167.6864],[-772.775,-36.1821,156.6464],[-776.975,-36.0461,143.2964],[-781.295,-35.8121,125.2364],[-769.025,-35.9481,109.9664],[-754.335,-34.4341,107.8464],[-733.375,-30.2711,106.6064],[-708.265,-28.7611,105.3064],[-722.165,-29.0171,106.8664],[-750.055,-33.6321,109.3064],[-770.965,-35.9491,113.6864],[-776.665,-35.9091,129.6964],[-775.365,-36.2901,151.1064],[-773.855,-36.2571,156.2364]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53676","name":"Plague Ghoul Patrol","speed":1.15,"pathId":536760,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-601.985,-30.5721,176.8064],[-600.595,-31.4061,184.3164],[-598.795,-32.6571,194.0164],[-596.995,-33.2731,203.7164],[-585.105,-33.2731,205.6264],[-574.595,-32.9791,208.6264],[-568.095,-31.9811,209.6664],[-558.345,-30.8201,211.2264],[-552.955,-30.4021,212.0964],[-542.105,-30.2961,213.8364],[-535.935,-30.1341,216.1164],[-530.505,-29.7341,216.6864],[-522.915,-27.9661,217.4964],[-516.375,-26.5171,218.1864],[-508.845,-25.2651,218.9864],[-508.845,-25.2651,218.9864],[-499.075,-24.7721,217.6164],[-492.555,-24.5551,216.6964],[-487.105,-24.3351,217.0064],[-479.485,-23.9161,217.4264],[-494.795,-24.6271,216.5764],[-506.745,-25.1201,215.9164],[-511.135,-25.6401,216.3064],[-523.125,-28.0221,217.3764],[-529.685,-29.7411,217.9664],[-546.085,-30.4391,218.2964],[-555.505,-30.3891,215.3464],[-564.925,-31.6161,212.3964],[-576.565,-33.1891,209.3364],[-589.205,-33.2731,202.7164],[-595.345,-32.8811,196.4864],[-599.975,-31.5471,185.4664]],"members":[{"id":"member","entityId":"entry-10405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53696","name":"Ghoul Ravener Patrol","speed":1.15,"pathId":536960,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-931.985,-22.9541,-84.5036],[-945.755,-24.0271,-81.9736],[-967.965,-26.9951,-74.2536],[-985.325,-26.2501,-65.1536],[-994.525,-25.5651,-57.8336],[-1008.755,-30.1611,-48.3836],[-1023.695,-33.2161,-41.3336],[-1038.915,-35.6401,-30.6136],[-1051.925,-36.2401,-20.4236],[-1041.675,-35.6291,-29.5436],[-1030.175,-34.4471,-39.7836],[-1014.315,-31.6091,-48.9536],[-999.015,-26.4321,-54.4136],[-987.575,-26.0811,-62.4736],[-976.125,-27.9401,-70.5436],[-960.165,-26.2651,-78.3836],[-953.685,-25.0601,-81.0136]],"members":[{"id":"member","entityId":"entry-10406","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53899","name":"Crypt Crawler Patrol","speed":1.15,"pathId":538990,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1042.575,-38.0431,7.4764],[-1038.775,-36.8531,-1.4536]],"members":[{"id":"member","entityId":"entry-10412","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53905","name":"Crypt Beast Patrol","speed":1.15,"pathId":539050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1054.465,-37.2241,7.1364],[-1059.445,-36.1661,0.2564]],"members":[{"id":"member","entityId":"entry-10413","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53943","name":"Patchwork Horror Patrol","speed":1.15,"pathId":539430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-716.255,-29.0131,100.9264],[-700.895,-28.3221,107.5464],[-684.855,-28.7011,101.7564],[-670.745,-28.8131,100.7464],[-652.935,-30.8001,116.4064],[-669.385,-28.4321,92.7164],[-685.945,-28.8471,73.7364],[-704.395,-28.9831,76.5364],[-714.965,-28.9021,83.0464]],"members":[{"id":"member","entityId":"entry-10414","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53953","name":"Patchwork Horror Patrol","speed":1.15,"pathId":539530,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-617.425,-36.3051,262.1464],[-644.085,-38.1181,262.0364],[-605.385,-35.9791,245.2264],[-592.685,-33.2741,209.2964],[-604.745,-30.0581,170.1764],[-592.685,-33.2741,209.2964],[-605.385,-35.9791,245.2264],[-644.085,-38.1181,262.0364],[-617.425,-36.3051,262.1464],[-591.435,-35.8521,271.2764],[-572.135,-34.2831,279.5064],[-591.435,-35.8521,271.2764]],"members":[{"id":"member","entityId":"entry-10414","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-53954","name":"Patchwork Horror Patrol","speed":1.15,"pathId":539540,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-717.015,-41.8371,259.5464],[-733.815,-38.7401,233.7064],[-741.905,-36.1161,219.0764],[-749.585,-33.8471,204.9364],[-762.245,-33.5141,185.7164],[-764.865,-33.7881,179.9564],[-770.545,-34.5981,166.6164],[-764.865,-33.7881,179.9564],[-762.245,-33.5141,185.7164],[-749.585,-33.8471,204.9364],[-741.905,-36.1161,219.0764],[-733.985,-38.6621,233.4464],[-717.015,-41.8371,259.5464],[-733.805,-39.0751,287.3164],[-742.135,-37.8621,318.3264],[-767.785,-38.2361,337.4764],[-742.135,-37.8621,318.3264],[-733.805,-39.0751,287.3164]],"members":[{"id":"member","entityId":"entry-10414","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54053","name":"Crimson Guardsman Patrol","speed":1.15,"pathId":540530,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-659.465,-31.5291,491.1364],[-699.855,-31.5291,519.4564]],"members":[{"id":"member","entityId":"entry-10418","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54066","name":"Crimson Guardsman Patrol","speed":1.15,"pathId":540660,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-647.855,-29.6551,531.8664],[-653.495,-29.6631,523.4164],[-654.645,-29.6631,521.6964],[-652.755,-29.7971,515.3064],[-651.195,-29.9851,510.0664],[-645.035,-29.7581,505.4664],[-640.665,-29.6571,502.5864],[-635.185,-29.6631,511.1464],[-631.075,-29.6611,516.8164],[-634.615,-29.6501,519.1264],[-638.915,-29.9861,521.9464],[-643.915,-29.9861,525.8664],[-648.505,-29.6591,529.3364],[-644.255,-29.7911,526.2564],[-640.525,-29.9871,523.5564],[-635.025,-29.6631,519.5664],[-630.955,-29.6601,516.6164],[-637.465,-29.6621,507.8864],[-644.135,-29.6521,506.4064],[-650.695,-29.9851,510.3764],[-654.755,-29.6601,520.6364],[-648.975,-29.6611,529.1364]],"members":[{"id":"member","entityId":"entry-10418","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54081","name":"Crimson Conjuror Patrol","speed":1.15,"pathId":540810,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-662.355,-31.5291,486.8464],[-702.735,-31.5291,515.2164]],"members":[{"id":"member","entityId":"entry-10419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54083","name":"Crimson Conjuror Patrol","speed":1.15,"pathId":540830,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-650.375,-29.6591,531.2164],[-640.365,-29.9851,523.8464],[-651.605,-29.6641,527.4364],[-658.145,-29.6611,516.2164],[-653.715,-29.8531,512.4264],[-644.555,-29.7971,506.6564],[-639.365,-29.6591,503.0264],[-645.275,-29.7881,507.1764],[-654.405,-29.7651,513.5864],[-657.665,-29.6631,518.6064],[-651.995,-29.6641,526.4164],[-638.655,-29.9861,521.8064],[-648.205,-29.6581,529.5464]],"members":[{"id":"member","entityId":"entry-10419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54085","name":"Crimson Conjuror Patrol","speed":1.15,"pathId":540850,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-673.865,-31.2781,498.2864],[-669.865,-31.2781,496.5364],[-664.155,-31.0091,494.2964],[-657.655,-31.0091,499.0464],[-655.655,-29.7591,501.5464],[-645.215,-29.7371,516.5964],[-645.585,-29.7391,516.1264],[-655.855,-29.7591,501.4164],[-657.355,-30.7591,499.1664],[-663.845,-31.4651,494.2264],[-671.595,-31.4651,497.4764],[-674.195,-31.2861,498.5964],[-680.945,-31.2861,503.5964],[-690.475,-31.2841,509.8064],[-693.975,-31.2841,512.0564],[-696.975,-31.2841,513.8064],[-695.455,-31.2841,512.8964]],"members":[{"id":"member","entityId":"entry-10419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54205","name":"Crimson Gallant Patrol","speed":1.15,"pathId":542050,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-638.725,-40.4001,601.4364],[-638.475,-40.4001,599.9364],[-630.475,-40.4001,594.4364],[-626.725,-40.4001,591.6864],[-620.125,-40.4001,587.1664],[-611.375,-40.4001,580.4164],[-604.395,-40.2701,575.0664],[-608.395,-40.2701,568.5664],[-610.145,-40.2701,565.8164],[-611.355,-39.5211,563.9764],[-609.605,-40.2711,566.7264],[-607.855,-40.2711,569.7264],[-609.285,-40.4011,579.0564],[-612.785,-40.4011,581.5564],[-622.555,-40.4011,589.0164],[-629.305,-40.4011,593.5164],[-632.805,-40.4011,595.7664]],"members":[{"id":"member","entityId":"entry-10424","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54252","name":"Shrieking Banshee Patrol","speed":1.15,"pathId":542520,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1058.885,-35.6041,-34.6236],[-1057.705,-36.6981,-26.0336],[-1057.095,-36.5491,-21.7436],[-1057.715,-36.3751,-28.2936]],"members":[{"id":"member","entityId":"entry-10463","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54268","name":"Shrieking Banshee Patrol","speed":1.15,"pathId":542680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1055.085,-39.3471,29.0764],[-1067.915,-39.6201,34.2264]],"members":[{"id":"member","entityId":"entry-10463","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54287","name":"Wailing Banshee Patrol","speed":1.15,"pathId":542870,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1050.625,-36.7771,-7.0136],[-1055.715,-36.2411,-9.3136],[-1058.205,-35.9121,-10.4436],[-1061.145,-35.6231,-11.6236],[-1053.825,-36.4641,-8.7236]],"members":[{"id":"member","entityId":"entry-10464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54415","name":"Wailing Banshee Patrol","speed":1.15,"pathId":544150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1029.425,-39.5191,28.1364],[-1022.875,-38.3411,32.0164]],"members":[{"id":"member","entityId":"entry-10464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-73922","name":"Eye of Naxxramas Patrol","speed":1.15,"pathId":739220,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-554.035,-35.4021,291.2164],[-558.445,-35.4511,274.7664],[-574.315,-34.3471,274.3964],[-590.935,-35.7551,269.9664],[-621.275,-36.2911,262.1264],[-644.745,-38.4331,260.2864],[-612.715,-36.4231,252.6264],[-599.375,-33.6201,227.3864],[-596.565,-33.2741,205.0964],[-603.455,-30.3841,174.5964],[-586.045,-33.2741,203.0564],[-576.565,-33.1941,208.5764],[-551.315,-30.4211,214.2364],[-513.665,-26.0791,217.0664],[-477.045,-23.7751,216.7764],[-513.665,-26.0791,217.0664],[-551.155,-30.4181,214.2864],[-576.565,-33.1941,208.5764],[-586.045,-33.2741,203.0564],[-603.455,-30.3841,174.5964],[-596.565,-33.2741,205.0964],[-599.375,-33.6201,227.3864],[-612.715,-36.4231,252.6264],[-644.745,-38.4331,260.2864],[-621.275,-36.2911,262.1264],[-590.935,-35.7551,269.9664],[-574.315,-34.3471,274.3964],[-558.445,-35.4511,274.7664],[-554.035,-35.4021,291.2164],[-537.815,-35.2371,288.5964]],"members":[{"id":"member","entityId":"entry-10411","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-73923","name":"Eye of Naxxramas Patrol","speed":1.15,"pathId":739230,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-660.345,-29.7711,107.6464],[-705.815,-28.9801,76.8464],[-686.815,-28.1351,108.4764],[-771.375,-35.9491,112.8564],[-762.715,-33.5041,184.4464],[-727.145,-40.4091,245.1564],[-730.915,-39.1651,286.1664],[-751.595,-37.8291,325.8064],[-787.385,-37.6911,336.3864],[-751.595,-37.8291,325.8064],[-730.915,-39.1651,286.1664],[-727.145,-40.4091,245.1564],[-762.715,-33.5041,184.4464],[-771.375,-35.9491,112.8564],[-686.815,-28.1351,108.4764],[-705.815,-28.9801,76.8464],[-660.345,-29.7711,107.6464]],"members":[{"id":"member","entityId":"entry-10411","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-73924","name":"Eye of Naxxramas Patrol","speed":1.15,"pathId":739240,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1102.265,-43.9511,74.9464],[-1055.105,-40.8531,39.5064],[-1037.245,-37.9871,8.7664],[-1066.035,-36.2631,-33.3636],[-1020.695,-32.4051,-46.6836],[-992.465,-25.6861,-56.9336],[-937.565,-23.4211,-86.8436],[-918.315,-22.1871,-81.3536],[-904.075,-21.4781,-76.1636],[-879.655,-19.5281,-37.8436],[-881.175,-20.1211,-29.3136],[-922.985,-24.7561,19.0164],[-945.255,-27.8861,50.2564],[-922.985,-24.7561,19.0164],[-881.175,-20.1211,-29.3136],[-922.985,-24.7561,19.0164],[-945.255,-27.8861,50.2564],[-922.985,-24.7561,19.0164],[-881.175,-20.1211,-29.3136],[-879.655,-19.5281,-37.8436],[-904.075,-21.4781,-76.1636],[-918.315,-22.1871,-81.3536],[-937.565,-23.4211,-86.8436],[-992.465,-25.6861,-56.9336],[-1020.695,-32.4051,-46.6836],[-1066.035,-36.2631,-33.3636],[-1037.245,-37.9871,8.7664],[-1055.105,-40.8531,39.5064],[-1102.265,-43.9511,74.9464]],"members":[{"id":"member","entityId":"entry-10411","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-247226","name":"The Unforgiven","position":[-764.205,-33.6001,182.7364]},{"id":"creature-54433","name":"Cannon Master Willey","position":[-630.995,-40.5651,658.3964]},{"id":"creature-52122","name":"Malor the Zealous","position":[-678.495,-29.9021,468.8864]},{"id":"creature-52148","name":"Archivist Galford","position":[-513.385,-29.1051,492.2964]},{"id":"encounter-478","name":"Balnazzar","position":[-100.5006,-6.2831,-38.3734]},{"id":"creature-54238","name":"Baroness Anastari","position":[-912.765,-17.4751,-120.0436]},{"id":"creature-54239","name":"Nerub'enkan","position":[-912.405,-21.3571,66.8664]},{"id":"creature-54240","name":"Maleki the Pallid","position":[-1093.235,-29.9121,-52.0736]},{"id":"creature-54237","name":"Magistrate Barthilas","position":[-720.655,-27.6661,-23.4336]}],"objectiveOrder":[{"id":"creature-247226","name":"The Unforgiven","position":[-764.205,-33.6001,182.7364]},{"id":"creature-54433","name":"Cannon Master Willey","position":[-630.995,-40.5651,658.3964]},{"id":"creature-52122","name":"Malor the Zealous","position":[-678.495,-29.9021,468.8864]},{"id":"creature-52148","name":"Archivist Galford","position":[-513.385,-29.1051,492.2964]},{"id":"encounter-478","name":"Balnazzar","position":[-100.5006,-6.2831,-38.3734]},{"id":"creature-54238","name":"Baroness Anastari","position":[-912.765,-17.4751,-120.0436]},{"id":"creature-54239","name":"Nerub'enkan","position":[-912.405,-21.3571,66.8664]},{"id":"creature-54240","name":"Maleki the Pallid","position":[-1093.235,-29.9121,-52.0736]},{"id":"creature-54237","name":"Magistrate Barthilas","position":[-720.655,-27.6661,-23.4336]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":6851,"id":175368,"map":329,"orientation":-2.68781,"phaseMask":1,"position_x":3624.91,"position_y":-3642.16,"position_z":138.445,"rotation0":0,"rotation1":0,"rotation2":-0.97437,"rotation3":0.22495,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":6852,"id":175372,"map":329,"orientation":-2.83616,"phaseMask":1,"position_x":3650.43,"position_y":-3535.92,"position_z":137.868,"rotation0":0,"rotation1":0,"rotation2":-0.988361,"rotation3":0.152123,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":6908,"id":175373,"map":329,"orientation":-3.05433,"phaseMask":1,"position_x":4037.15,"position_y":-3469.15,"position_z":121.804,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":6911,"id":175374,"map":329,"orientation":-3.05433,"phaseMask":1,"position_x":4039.97,"position_y":-3504.3,"position_z":121.711,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":9985,"id":175375,"map":329,"orientation":-2.70526,"phaseMask":1,"position_x":3677.37,"position_y":-3212.33,"position_z":127.081,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":10881,"id":175376,"map":329,"orientation":-2.70526,"phaseMask":1,"position_x":3692.86,"position_y":-3244.1,"position_z":127.346,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11165,"id":175377,"map":329,"orientation":-2.83616,"phaseMask":1,"position_x":3661.38,"position_y":-3569.44,"position_z":138.133,"rotation0":0,"rotation1":0,"rotation2":-0.988361,"rotation3":0.152123,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11414,"id":175379,"map":329,"orientation":-1.09083,"phaseMask":1,"position_x":3851.7,"position_y":-3522.96,"position_z":144.213,"rotation0":0,"rotation1":0,"rotation2":-0.518773,"rotation3":0.854912,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11415,"id":175380,"map":329,"orientation":1.35263,"phaseMask":1,"position_x":3853.47,"position_y":-3722.94,"position_z":148.094,"rotation0":0,"rotation1":0,"rotation2":0.625923,"rotation3":0.779885,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11416,"id":175381,"map":329,"orientation":2.44346,"phaseMask":1,"position_x":4038.13,"position_y":-3649.91,"position_z":135.658,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.342021,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11417,"id":176424,"map":329,"orientation":-1.46608,"phaseMask":1,"position_x":3929.59,"position_y":-3384.95,"position_z":119.008,"rotation0":0,"rotation1":0,"rotation2":-0.669132,"rotation3":0.743144,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":11808,"id":175405,"map":329,"orientation":-1.5708,"phaseMask":1,"position_x":4032.85,"position_y":-3388.84,"position_z":119.667,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12043,"id":182068,"map":329,"orientation":-2.80998,"phaseMask":1,"position_x":3688.13,"position_y":-3643.51,"position_z":141.964,"rotation0":0,"rotation1":0,"rotation2":-0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12044,"id":176194,"map":329,"orientation":-0.959931,"phaseMask":1,"position_x":3541.94,"position_y":-3068.55,"position_z":135.657,"rotation0":0,"rotation1":0,"rotation2":-0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12045,"id":175433,"map":329,"orientation":-2.9723,"phaseMask":1,"position_x":3707.61,"position_y":-3402.7,"position_z":132.405,"rotation0":0,"rotation1":-0.173648,"rotation2":0.98106,"rotation3":-0.085832,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12145,"id":175434,"map":329,"orientation":0.174533,"phaseMask":1,"position_x":3707.41,"position_y":-3402.1,"position_z":132.437,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12152,"id":175435,"map":329,"orientation":2.09439,"phaseMask":1,"position_x":3652.91,"position_y":-3325.34,"position_z":123.989,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12153,"id":175436,"map":329,"orientation":-2.61799,"phaseMask":1,"position_x":3654.43,"position_y":-3325.95,"position_z":123.541,"rotation0":-0.01129,"rotation1":0.042133,"rotation2":0.965006,"rotation3":-0.258573,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12155,"id":175437,"map":329,"orientation":-1.0472,"phaseMask":1,"position_x":3655.42,"position_y":-3323.93,"position_z":124.336,"rotation0":0.113039,"rotation1":-0.065263,"rotation2":-0.495723,"rotation3":0.858616,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":12158,"id":175438,"map":329,"orientation":-1.48353,"phaseMask":1,"position_x":3649.88,"position_y":-3496.59,"position_z":137.059,"rotation0":0.096234,"rotation1":-0.088182,"rotation2":-0.66981,"rotation3":0.73097,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14222,"id":181096,"map":329,"orientation":6.00568,"phaseMask":1,"position_x":3423.47,"position_y":-3055.73,"position_z":136.499,"rotation0":0,"rotation1":0,"rotation2":0.138308,"rotation3":-0.990389,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14223,"id":181048,"map":329,"orientation":6.00568,"phaseMask":1,"position_x":3423.47,"position_y":-3055.73,"position_z":136.499,"rotation0":0,"rotation1":0,"rotation2":0.138308,"rotation3":-0.990389,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":15560,"id":175439,"map":329,"orientation":1.65806,"phaseMask":1,"position_x":3647.01,"position_y":-3496.81,"position_z":136.712,"rotation0":0,"rotation1":0,"rotation2":0.737276,"rotation3":0.675591,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":15561,"id":175440,"map":329,"orientation":-3.05433,"phaseMask":1,"position_x":3648.13,"position_y":-3498,"position_z":136.264,"rotation0":-0.001903,"rotation1":0.043578,"rotation2":0.998097,"rotation3":-0.043578,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":18209,"id":175441,"map":329,"orientation":2.96706,"phaseMask":1,"position_x":3524.13,"position_y":-3377.81,"position_z":133.013,"rotation0":-0.003802,"rotation1":-0.043453,"rotation2":0.995247,"rotation3":0.087073,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20638,"id":175442,"map":329,"orientation":2.96706,"phaseMask":1,"position_x":3524.41,"position_y":-3376.47,"position_z":132.171,"rotation0":-0.018864,"rotation1":-0.215616,"rotation2":0.972581,"rotation3":0.08509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20733,"id":175443,"map":329,"orientation":-0.174533,"phaseMask":1,"position_x":3524.43,"position_y":-3376.18,"position_z":133.056,"rotation0":0,"rotation1":0,"rotation2":-0.0871558,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20746,"id":175444,"map":329,"orientation":1.39627,"phaseMask":1,"position_x":3523.58,"position_y":-3377.04,"position_z":132.509,"rotation0":-0.033414,"rotation1":-0.028038,"rotation2":0.642176,"rotation3":0.765315,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20747,"id":175445,"map":329,"orientation":-1.8326,"phaseMask":1,"position_x":3558.12,"position_y":-3320.44,"position_z":130.295,"rotation0":0.079459,"rotation1":-0.103553,"rotation2":-0.786566,"rotation3":0.603553,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20748,"id":175447,"map":329,"orientation":2.87979,"phaseMask":1,"position_x":3555.99,"position_y":-3321.16,"position_z":129.5,"rotation0":0.005693,"rotation1":0.043246,"rotation2":0.990501,"rotation3":0.130402,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20756,"id":176215,"map":329,"orientation":-2.53073,"phaseMask":1,"position_x":3577.97,"position_y":-2940.95,"position_z":125.002,"rotation0":0,"rotation1":0,"rotation2":-0.953717,"rotation3":0.300705,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20757,"id":176215,"map":329,"orientation":-2.51327,"phaseMask":1,"position_x":3575.46,"position_y":-2937.3,"position_z":125.002,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20758,"id":176215,"map":329,"orientation":-2.46091,"phaseMask":1,"position_x":3562.64,"position_y":-2936.15,"position_z":125.001,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333809,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20759,"id":176215,"map":329,"orientation":-2.53073,"phaseMask":1,"position_x":3572.97,"position_y":-2933.9,"position_z":125.002,"rotation0":0,"rotation1":0,"rotation2":-0.953717,"rotation3":0.300705,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20760,"id":176215,"map":329,"orientation":2.1293,"phaseMask":1,"position_x":3573.9,"position_y":-2947.05,"position_z":125,"rotation0":0,"rotation1":0,"rotation2":0.874619,"rotation3":0.48481,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20761,"id":176216,"map":329,"orientation":-2.58309,"phaseMask":1,"position_x":3567.81,"position_y":-2947.28,"position_z":124.962,"rotation0":0,"rotation1":0,"rotation2":-0.961262,"rotation3":0.275636,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20768,"id":176217,"map":329,"orientation":-2.43474,"phaseMask":1,"position_x":3562.45,"position_y":-2939.42,"position_z":124.962,"rotation0":0,"rotation1":0,"rotation2":-0.938192,"rotation3":0.346114,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20777,"id":175449,"map":329,"orientation":-0.837757,"phaseMask":1,"position_x":3812.27,"position_y":-3615.74,"position_z":145.239,"rotation0":0.039848,"rotation1":-0.017742,"rotation2":-0.406349,"rotation3":0.912676,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20850,"id":175450,"map":329,"orientation":0.733039,"phaseMask":1,"position_x":3810.09,"position_y":-3615.18,"position_z":146.034,"rotation0":0.121857,"rotation1":0.046776,"rotation2":0.355302,"rotation3":0.925593,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20851,"id":181085,"map":329,"orientation":1.23918,"phaseMask":1,"position_x":4074.52,"position_y":-3342.64,"position_z":117.693,"rotation0":0,"rotation1":0,"rotation2":0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20852,"id":181085,"map":329,"orientation":-1.309,"phaseMask":1,"position_x":3981.04,"position_y":-3363.18,"position_z":119.539,"rotation0":0,"rotation1":0,"rotation2":-0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20859,"id":181085,"map":329,"orientation":-1.88496,"phaseMask":1,"position_x":4012.71,"position_y":-3465.33,"position_z":122.372,"rotation0":0,"rotation1":0,"rotation2":-0.809018,"rotation3":0.587783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20871,"id":175454,"map":329,"orientation":1.94604,"phaseMask":1,"position_x":3993.23,"position_y":-3547.21,"position_z":124.481,"rotation0":0,"rotation1":0,"rotation2":0.826589,"rotation3":0.562806,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20872,"id":175966,"map":329,"orientation":-2.84489,"phaseMask":1,"position_x":3614.64,"position_y":-3124.92,"position_z":137.012,"rotation0":0,"rotation1":0,"rotation2":-0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20873,"id":175455,"map":329,"orientation":-1.19555,"phaseMask":1,"position_x":3994.78,"position_y":-3546.62,"position_z":124.439,"rotation0":-0.036055,"rotation1":0.024549,"rotation2":-0.562269,"rotation3":0.825803,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20916,"id":175967,"map":329,"orientation":-1.00356,"phaseMask":1,"position_x":3645.56,"position_y":-3136.76,"position_z":134.76,"rotation0":0,"rotation1":0,"rotation2":-0.480987,"rotation3":0.876728,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20917,"id":175968,"map":329,"orientation":-0.959931,"phaseMask":1,"position_x":3567.34,"position_y":-3050.77,"position_z":135.651,"rotation0":0,"rotation1":0,"rotation2":-0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20959,"id":176224,"map":329,"orientation":0.610865,"phaseMask":1,"position_x":3584.93,"position_y":-3482.1,"position_z":135.124,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":20960,"id":176224,"map":329,"orientation":-1.98968,"phaseMask":1,"position_x":3508.78,"position_y":-3372.3,"position_z":135.379,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":21114,"id":176224,"map":329,"orientation":-2.37365,"phaseMask":1,"position_x":3973.62,"position_y":-3619.9,"position_z":129.999,"rotation0":0,"rotation1":0,"rotation2":-0.927184,"rotation3":0.374606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":21115,"id":176224,"map":329,"orientation":1.46608,"phaseMask":1,"position_x":3486.79,"position_y":-3331.54,"position_z":131.38,"rotation0":0,"rotation1":0,"rotation2":0.669132,"rotation3":0.743144,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":21116,"id":176224,"map":329,"orientation":-0.244346,"phaseMask":1,"position_x":3961.73,"position_y":-3539.9,"position_z":127.744,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":21156,"id":176224,"map":329,"orientation":-0.855212,"phaseMask":1,"position_x":3666.63,"position_y":-3182.46,"position_z":126.252,"rotation0":0,"rotation1":0,"rotation2":-0.414694,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22022,"id":176224,"map":329,"orientation":-1.67552,"phaseMask":1,"position_x":3877.03,"position_y":-3663.46,"position_z":143.9,"rotation0":0,"rotation1":0,"rotation2":-0.743146,"rotation3":0.669129,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22023,"id":176224,"map":329,"orientation":0.715585,"phaseMask":1,"position_x":3636.53,"position_y":-3347.54,"position_z":125.592,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22030,"id":176224,"map":329,"orientation":-0.383972,"phaseMask":1,"position_x":3888.71,"position_y":-3699.08,"position_z":143.85,"rotation0":0,"rotation1":0,"rotation2":-0.190809,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22031,"id":176224,"map":329,"orientation":2.74017,"phaseMask":1,"position_x":4104.72,"position_y":-3435.93,"position_z":117.802,"rotation0":0,"rotation1":0,"rotation2":0.979925,"rotation3":0.199366,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22032,"id":176224,"map":329,"orientation":-2.28638,"phaseMask":1,"position_x":3892.38,"position_y":-3563.78,"position_z":138.099,"rotation0":0,"rotation1":0,"rotation2":-0.909961,"rotation3":0.414694,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22033,"id":176224,"map":329,"orientation":-2.86234,"phaseMask":1,"position_x":3738.43,"position_y":-3477.54,"position_z":131.393,"rotation0":0,"rotation1":0,"rotation2":-0.990268,"rotation3":0.139173,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":22034,"id":175457,"map":329,"orientation":0.698131,"phaseMask":1,"position_x":3704.02,"position_y":-3246.32,"position_z":127.442,"rotation0":0,"rotation1":0,"rotation2":0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":24059,"id":175969,"map":329,"orientation":0.610866,"phaseMask":1,"position_x":3575.01,"position_y":-2984,"position_z":125.33,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":25119,"id":175458,"map":329,"orientation":2.26893,"phaseMask":1,"position_x":3704.12,"position_y":-3247.53,"position_z":126.895,"rotation0":-0.018434,"rotation1":-0.039533,"rotation2":0.905445,"rotation3":0.422216,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":25329,"id":175459,"map":329,"orientation":1.65806,"phaseMask":1,"position_x":3446.54,"position_y":-3370.09,"position_z":140.956,"rotation0":0,"rotation1":0,"rotation2":0.737276,"rotation3":0.675591,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27141,"id":175460,"map":329,"orientation":-1.48877,"phaseMask":1,"position_x":3447.17,"position_y":-3369.94,"position_z":140.925,"rotation0":-0.117315,"rotation1":0.128027,"rotation2":-0.665327,"rotation3":0.726076,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27561,"id":175461,"map":329,"orientation":1.8326,"phaseMask":1,"position_x":3683.66,"position_y":-3612.59,"position_z":138.91,"rotation0":0.079459,"rotation1":0.103553,"rotation2":0.786567,"rotation3":0.603553,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27562,"id":175462,"map":329,"orientation":-1.309,"phaseMask":1,"position_x":3686.45,"position_y":-3611.89,"position_z":138.563,"rotation0":0,"rotation1":0,"rotation2":-0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27587,"id":175463,"map":329,"orientation":0.2618,"phaseMask":1,"position_x":3685.14,"position_y":-3610.9,"position_z":138.115,"rotation0":0.043246,"rotation1":0.005693,"rotation2":0.130402,"rotation3":0.990501,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27634,"id":175466,"map":329,"orientation":-3.05433,"phaseMask":1,"position_x":3670.92,"position_y":-3333.54,"position_z":138.502,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27825,"id":175467,"map":329,"orientation":2.30383,"phaseMask":1,"position_x":3730.97,"position_y":-3493.46,"position_z":144.672,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27826,"id":175469,"map":329,"orientation":-1.48353,"phaseMask":1,"position_x":3661.27,"position_y":-3479.86,"position_z":153.273,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737277,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27863,"id":175470,"map":329,"orientation":2.23402,"phaseMask":1,"position_x":3686.23,"position_y":-3499.92,"position_z":148.561,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27864,"id":175471,"map":329,"orientation":1.13446,"phaseMask":1,"position_x":3506.49,"position_y":-3395.26,"position_z":147.507,"rotation0":0,"rotation1":0,"rotation2":0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27865,"id":175472,"map":329,"orientation":2.96706,"phaseMask":1,"position_x":3550.09,"position_y":-3383.72,"position_z":144.137,"rotation0":0,"rotation1":0,"rotation2":0.996195,"rotation3":0.0871556,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27866,"id":175474,"map":329,"orientation":2.00713,"phaseMask":1,"position_x":4065.84,"position_y":-3449.08,"position_z":132.23,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27867,"id":175477,"map":329,"orientation":2.53073,"phaseMask":1,"position_x":3876.35,"position_y":-3588.01,"position_z":151.74,"rotation0":0,"rotation1":0,"rotation2":0.953717,"rotation3":0.300705,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27868,"id":176245,"map":329,"orientation":2.18166,"phaseMask":1,"position_x":3456.98,"position_y":-3106.54,"position_z":137.908,"rotation0":0,"rotation1":0,"rotation2":0.88701,"rotation3":0.461749,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27869,"id":175478,"map":329,"orientation":2.40856,"phaseMask":1,"position_x":3887.01,"position_y":-3571.79,"position_z":156.622,"rotation0":0,"rotation1":0,"rotation2":0.933581,"rotation3":0.358365,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27870,"id":175479,"map":329,"orientation":0.488692,"phaseMask":1,"position_x":3802.17,"position_y":-3648.13,"position_z":162.065,"rotation0":0,"rotation1":0,"rotation2":0.241922,"rotation3":0.970296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27871,"id":153464,"map":329,"orientation":2.3911,"phaseMask":1,"position_x":3555.39,"position_y":-3424.3,"position_z":136.745,"rotation0":0,"rotation1":0,"rotation2":0.930417,"rotation3":0.366502,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27872,"id":176248,"map":329,"orientation":-1.11701,"phaseMask":1,"position_x":3480.75,"position_y":-3290.46,"position_z":131.762,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27873,"id":175481,"map":329,"orientation":-0.261799,"phaseMask":1,"position_x":3830.23,"position_y":-3704.26,"position_z":153.273,"rotation0":0,"rotation1":0,"rotation2":-0.130526,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27880,"id":176249,"map":329,"orientation":-2.58309,"phaseMask":1,"position_x":3858.25,"position_y":-3757.06,"position_z":145.091,"rotation0":0,"rotation1":0,"rotation2":-0.961262,"rotation3":0.275636,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27881,"id":175737,"map":329,"orientation":2.35619,"phaseMask":1,"position_x":3614.39,"position_y":-3125.01,"position_z":137.009,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27883,"id":175483,"map":329,"orientation":-1.5708,"phaseMask":1,"position_x":3477.52,"position_y":-3359.29,"position_z":151.06,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27884,"id":175484,"map":329,"orientation":-1.13446,"phaseMask":1,"position_x":3473.01,"position_y":-3294.13,"position_z":147.507,"rotation0":0,"rotation1":0,"rotation2":-0.537298,"rotation3":0.843393,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27888,"id":153469,"map":329,"orientation":-3.00197,"phaseMask":1,"position_x":4080.21,"position_y":-3533.44,"position_z":124.622,"rotation0":0,"rotation1":0,"rotation2":-0.997564,"rotation3":0.0697546,"spawnMask":1,"spawntimesecs":36000,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27889,"id":175741,"map":329,"orientation":-0.523599,"phaseMask":1,"position_x":3615.47,"position_y":-3125.96,"position_z":137.01,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27890,"id":175748,"map":329,"orientation":2.98451,"phaseMask":1,"position_x":3479.83,"position_y":-3089.39,"position_z":137.671,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":27891,"id":175749,"map":329,"orientation":1.48353,"phaseMask":1,"position_x":3471.25,"position_y":-3095.42,"position_z":137.664,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737277,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":28477,"id":177287,"map":329,"orientation":0.610865,"phaseMask":1,"position_x":3450.79,"position_y":-3105.5,"position_z":138.456,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":2,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2017,"guid":28515,"id":175753,"map":329,"orientation":0.314159,"phaseMask":1,"position_x":3470.62,"position_y":-3094.68,"position_z":137.664,"rotation0":0,"rotation1":0,"rotation2":0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":2017},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29190,"id":175754,"map":329,"orientation":-2.28638,"phaseMask":1,"position_x":3480.58,"position_y":-3089.02,"position_z":137.671,"rotation0":0,"rotation1":0,"rotation2":-0.909961,"rotation3":0.414694,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29191,"id":175756,"map":329,"orientation":-0.645772,"phaseMask":1,"position_x":3458.6,"position_y":-3107.46,"position_z":137.9,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29192,"id":175761,"map":329,"orientation":2.96706,"phaseMask":1,"position_x":3476.46,"position_y":-3096.2,"position_z":136.546,"rotation0":0,"rotation1":0,"rotation2":0.996195,"rotation3":0.0871556,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29193,"id":175762,"map":329,"orientation":-2.58309,"phaseMask":1,"position_x":3479.95,"position_y":-3088.35,"position_z":137.664,"rotation0":0,"rotation1":0,"rotation2":-0.961262,"rotation3":0.275636,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29194,"id":176304,"map":329,"orientation":-2.21657,"phaseMask":1,"position_x":3599.32,"position_y":-3460.67,"position_z":136.472,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29204,"id":176304,"map":329,"orientation":-1.98968,"phaseMask":1,"position_x":3476.95,"position_y":-3363.85,"position_z":136.242,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29659,"id":176304,"map":329,"orientation":-2.51327,"phaseMask":1,"position_x":3952.68,"position_y":-3632.92,"position_z":133.41,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":29805,"id":176304,"map":329,"orientation":1.6057,"phaseMask":1,"position_x":3581.11,"position_y":-3351,"position_z":129.513,"rotation0":0,"rotation1":0,"rotation2":0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31986,"id":176304,"map":329,"orientation":-2.04204,"phaseMask":1,"position_x":4062.22,"position_y":-3515.15,"position_z":123.116,"rotation0":0,"rotation1":0,"rotation2":-0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":31987,"id":176304,"map":329,"orientation":1.44862,"phaseMask":1,"position_x":3656.34,"position_y":-3210.08,"position_z":128.257,"rotation0":0,"rotation1":0,"rotation2":0.662619,"rotation3":0.748957,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35461,"id":176304,"map":329,"orientation":0.610865,"phaseMask":1,"position_x":3682.68,"position_y":-3416.87,"position_z":133.312,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35475,"id":176304,"map":329,"orientation":0.034907,"phaseMask":1,"position_x":3668.9,"position_y":-3284.14,"position_z":128.53,"rotation0":0,"rotation1":0,"rotation2":0.0174526,"rotation3":0.999848,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35789,"id":176304,"map":329,"orientation":0.314159,"phaseMask":1,"position_x":3788.89,"position_y":-3624.55,"position_z":146.377,"rotation0":0,"rotation1":0,"rotation2":0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35791,"id":176304,"map":329,"orientation":0.628319,"phaseMask":1,"position_x":3998.96,"position_y":-3448.72,"position_z":122.307,"rotation0":0,"rotation1":0,"rotation2":0.309017,"rotation3":0.951056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35796,"id":176304,"map":329,"orientation":-2.58309,"phaseMask":1,"position_x":3880.02,"position_y":-3517.12,"position_z":139.189,"rotation0":0,"rotation1":0,"rotation2":-0.961262,"rotation3":0.275636,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35835,"id":176304,"map":329,"orientation":-0.855212,"phaseMask":1,"position_x":3630.3,"position_y":-3469.46,"position_z":138.793,"rotation0":0,"rotation1":0,"rotation2":-0.414694,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35836,"id":176307,"map":329,"orientation":0,"phaseMask":1,"position_x":3638.04,"position_y":-3534.9,"position_z":138.45,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35837,"id":176307,"map":329,"orientation":1.20428,"phaseMask":1,"position_x":3543.4,"position_y":-3432.62,"position_z":136.636,"rotation0":0,"rotation1":0,"rotation2":0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35838,"id":176307,"map":329,"orientation":0.069813,"phaseMask":1,"position_x":4011.06,"position_y":-3646.39,"position_z":131.552,"rotation0":0,"rotation1":0,"rotation2":0.0348994,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35839,"id":176307,"map":329,"orientation":-0.698132,"phaseMask":1,"position_x":3466.64,"position_y":-3298.56,"position_z":132.741,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35840,"id":176307,"map":329,"orientation":-0.698132,"phaseMask":1,"position_x":4011.67,"position_y":-3518.38,"position_z":122.346,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35841,"id":176307,"map":329,"orientation":2.51327,"phaseMask":1,"position_x":3696.27,"position_y":-3195.51,"position_z":127.796,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309019,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35842,"id":176307,"map":329,"orientation":2.02458,"phaseMask":1,"position_x":3665.47,"position_y":-3662.99,"position_z":138.414,"rotation0":0,"rotation1":0,"rotation2":0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35843,"id":176307,"map":329,"orientation":-0.10472,"phaseMask":1,"position_x":3669.82,"position_y":-3263.99,"position_z":127.804,"rotation0":0,"rotation1":0,"rotation2":-0.0523361,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35844,"id":176307,"map":329,"orientation":2.11185,"phaseMask":1,"position_x":3887.52,"position_y":-3745.81,"position_z":142.36,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35845,"id":176307,"map":329,"orientation":2.98451,"phaseMask":1,"position_x":4113.99,"position_y":-3383.44,"position_z":117.806,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35846,"id":176307,"map":329,"orientation":2.84489,"phaseMask":1,"position_x":3862.17,"position_y":-3610.11,"position_z":144.137,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35847,"id":176307,"map":329,"orientation":2.04204,"phaseMask":1,"position_x":3720.45,"position_y":-3502.32,"position_z":130.548,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35848,"id":175796,"map":329,"orientation":1.5708,"phaseMask":1,"position_x":4032.69,"position_y":-3364.54,"position_z":115.054,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35849,"id":176308,"map":329,"orientation":-0.663225,"phaseMask":1,"position_x":3592.94,"position_y":-3512.49,"position_z":137.395,"rotation0":0,"rotation1":0,"rotation2":-0.325568,"rotation3":0.945519,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35850,"id":176308,"map":329,"orientation":1.41372,"phaseMask":1,"position_x":3477.72,"position_y":-3397.27,"position_z":138.636,"rotation0":0,"rotation1":0,"rotation2":0.649449,"rotation3":0.760405,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35851,"id":176308,"map":329,"orientation":0.558505,"phaseMask":1,"position_x":3968.17,"position_y":-3592.17,"position_z":129.298,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35852,"id":176308,"map":329,"orientation":-1.98968,"phaseMask":1,"position_x":3546.42,"position_y":-3307.08,"position_z":130.52,"rotation0":0,"rotation1":0,"rotation2":-0.838672,"rotation3":0.544637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35853,"id":176308,"map":329,"orientation":0.767945,"phaseMask":1,"position_x":3956.05,"position_y":-3570.05,"position_z":129.894,"rotation0":0,"rotation1":0,"rotation2":0.374607,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35854,"id":176308,"map":329,"orientation":2.87979,"phaseMask":1,"position_x":3704.46,"position_y":-3168.81,"position_z":127.617,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35855,"id":176308,"map":329,"orientation":-2.30383,"phaseMask":1,"position_x":4095.95,"position_y":-3361.53,"position_z":117.661,"rotation0":0,"rotation1":0,"rotation2":-0.913544,"rotation3":0.406739,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35856,"id":176308,"map":329,"orientation":2.79253,"phaseMask":1,"position_x":3695.37,"position_y":-3301.16,"position_z":128.532,"rotation0":0,"rotation1":0,"rotation2":0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35857,"id":176308,"map":329,"orientation":-0.10472,"phaseMask":1,"position_x":3818.95,"position_y":-3687.04,"position_z":144.695,"rotation0":0,"rotation1":0,"rotation2":-0.0523361,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35858,"id":176308,"map":329,"orientation":1.29154,"phaseMask":1,"position_x":3973.82,"position_y":-3419.91,"position_z":120.918,"rotation0":0,"rotation1":0,"rotation2":0.601814,"rotation3":0.798637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35859,"id":176308,"map":329,"orientation":2.61799,"phaseMask":1,"position_x":3870.84,"position_y":-3598.91,"position_z":143.474,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35867,"id":176308,"map":329,"orientation":2.6529,"phaseMask":1,"position_x":3672.29,"position_y":-3523.02,"position_z":137.733,"rotation0":0,"rotation1":0,"rotation2":0.970296,"rotation3":0.241922,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42059,"id":176309,"map":329,"orientation":0.785398,"phaseMask":1,"position_x":3615.6,"position_y":-3535.18,"position_z":138.505,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42060,"id":176309,"map":329,"orientation":0.785398,"phaseMask":1,"position_x":3521.19,"position_y":-3409.08,"position_z":134.254,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42450,"id":176309,"map":329,"orientation":-1.91986,"phaseMask":1,"position_x":4009.57,"position_y":-3585.86,"position_z":130.177,"rotation0":0,"rotation1":0,"rotation2":-0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42453,"id":176309,"map":329,"orientation":-2.05949,"phaseMask":1,"position_x":3561.1,"position_y":-3307.54,"position_z":130.66,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42455,"id":176309,"map":329,"orientation":1.43117,"phaseMask":1,"position_x":4065.88,"position_y":-3548.68,"position_z":124.621,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42464,"id":176309,"map":329,"orientation":0.855211,"phaseMask":1,"position_x":3622.79,"position_y":-3196.69,"position_z":131.094,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42882,"id":176309,"map":329,"orientation":-2.94961,"phaseMask":1,"position_x":3711.94,"position_y":-3147.64,"position_z":128.189,"rotation0":0,"rotation1":0,"rotation2":-0.995396,"rotation3":0.095844,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42883,"id":176309,"map":329,"orientation":-0.244346,"phaseMask":1,"position_x":3658.95,"position_y":-3364.85,"position_z":126.05,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42884,"id":176309,"map":329,"orientation":3.10669,"phaseMask":1,"position_x":3862.64,"position_y":-3663.65,"position_z":144.775,"rotation0":0,"rotation1":0,"rotation2":0.999848,"rotation3":0.0174505,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42885,"id":176309,"map":329,"orientation":-1.25664,"phaseMask":1,"position_x":4066.38,"position_y":-3455.35,"position_z":120.555,"rotation0":0,"rotation1":0,"rotation2":-0.587786,"rotation3":0.809016,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42886,"id":176309,"map":329,"orientation":0.925024,"phaseMask":1,"position_x":3838.05,"position_y":-3553.55,"position_z":140.413,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42887,"id":176309,"map":329,"orientation":-2.1293,"phaseMask":1,"position_x":3729.11,"position_y":-3450.53,"position_z":130.433,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42888,"id":176325,"map":329,"orientation":2.19912,"phaseMask":1,"position_x":3585.5,"position_y":-3000.15,"position_z":125,"rotation0":0,"rotation1":0,"rotation2":0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42959,"id":176327,"map":329,"orientation":0.261799,"phaseMask":1,"position_x":3818.4,"position_y":-3693.32,"position_z":144.242,"rotation0":0,"rotation1":0,"rotation2":0.130526,"rotation3":0.991445,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42972,"id":175824,"map":329,"orientation":-0.174117,"phaseMask":1,"position_x":3524.5,"position_y":-3375.93,"position_z":132.258,"rotation0":0.034767,"rotation1":0.003042,"rotation2":-0.087103,"rotation3":0.995588,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":45054,"id":175825,"map":329,"orientation":-1.828,"phaseMask":1,"position_x":3557.53,"position_y":-3320.44,"position_z":129.254,"rotation0":0.003704,"rotation1":-0.045229,"rotation2":-0.790561,"rotation3":0.6107,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":45172,"id":181206,"map":329,"orientation":2.14675,"phaseMask":1,"position_x":3642.07,"position_y":-3486.78,"position_z":137.613,"rotation0":0,"rotation1":0,"rotation2":0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":45220,"id":176346,"map":329,"orientation":-1.74533,"phaseMask":1,"position_x":3690.03,"position_y":-3405.43,"position_z":132.838,"rotation0":0,"rotation1":0,"rotation2":-0.766045,"rotation3":0.642787,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47273,"id":176349,"map":329,"orientation":2.02458,"phaseMask":1,"position_x":3651.28,"position_y":-3165.66,"position_z":128.177,"rotation0":0,"rotation1":0,"rotation2":0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47274,"id":176350,"map":329,"orientation":1.02974,"phaseMask":1,"position_x":3659.79,"position_y":-3476.73,"position_z":138.381,"rotation0":0,"rotation1":0,"rotation2":0.492422,"rotation3":0.870357,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47275,"id":176351,"map":329,"orientation":-1.23918,"phaseMask":1,"position_x":3639.65,"position_y":-3641.33,"position_z":138.541,"rotation0":0,"rotation1":0,"rotation2":-0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47276,"id":176352,"map":329,"orientation":-0.855212,"phaseMask":1,"position_x":3564.92,"position_y":-3353.24,"position_z":130.67,"rotation0":0,"rotation1":0,"rotation2":-0.414694,"rotation3":0.909961,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47277,"id":176353,"map":329,"orientation":2.19912,"phaseMask":1,"position_x":3473.59,"position_y":-3294.16,"position_z":132.052,"rotation0":0,"rotation1":0,"rotation2":0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47278,"id":176112,"map":329,"orientation":2.14675,"phaseMask":1,"position_x":3617.53,"position_y":-3130.55,"position_z":135.665,"rotation0":0,"rotation1":0,"rotation2":0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":47279,"id":175857,"map":329,"orientation":2.40855,"phaseMask":1,"position_x":3616.72,"position_y":-3126.52,"position_z":135.779,"rotation0":0,"rotation1":0,"rotation2":0.933579,"rotation3":0.35837,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":47280,"id":175858,"map":329,"orientation":2.11185,"phaseMask":1,"position_x":3615.18,"position_y":-3127.7,"position_z":135.779,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492424,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47281,"id":175350,"map":329,"orientation":3.14159,"phaseMask":1,"position_x":3621.54,"position_y":-3335.55,"position_z":123.501,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47282,"id":175351,"map":329,"orientation":3.14159,"phaseMask":1,"position_x":3603.04,"position_y":-3335.24,"position_z":125.354,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47644,"id":176631,"map":329,"orientation":1.20428,"phaseMask":1,"position_x":4032.77,"position_y":-3350.6,"position_z":115.06,"rotation0":0,"rotation1":0,"rotation2":0.566407,"rotation3":0.824125,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47707,"id":175352,"map":329,"orientation":2.31256,"phaseMask":1,"position_x":3571.57,"position_y":-3451.68,"position_z":136.357,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402747,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":47985,"id":175353,"map":329,"orientation":2.31256,"phaseMask":1,"position_x":3555.83,"position_y":-3434.89,"position_z":136.357,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402747,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":48786,"id":175354,"map":329,"orientation":2.94961,"phaseMask":1,"position_x":3931.2,"position_y":-3549.38,"position_z":133.961,"rotation0":0,"rotation1":0,"rotation2":0.995396,"rotation3":0.095844,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":49006,"id":175355,"map":329,"orientation":2.94961,"phaseMask":1,"position_x":3908.55,"position_y":-3545.29,"position_z":135.908,"rotation0":0,"rotation1":0,"rotation2":0.995396,"rotation3":0.095844,"spawnMask":1,"spawntimesecs":86400,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":49413,"id":175356,"map":329,"orientation":1.94604,"phaseMask":1,"position_x":3782.58,"position_y":-3590.48,"position_z":143.987,"rotation0":0,"rotation1":0,"rotation2":0.826589,"rotation3":0.562806,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":49592,"id":175357,"map":329,"orientation":-2.76635,"phaseMask":1,"position_x":3727.29,"position_y":-3599.08,"position_z":142.22,"rotation0":0,"rotation1":0,"rotation2":-0.982451,"rotation3":0.186522,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":49594,"id":175358,"map":329,"orientation":-3.08923,"phaseMask":1,"position_x":3960.6,"position_y":-3392.89,"position_z":119.662,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0261783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":49649,"id":175359,"map":329,"orientation":-1.85878,"phaseMask":1,"position_x":3908.78,"position_y":-3320.21,"position_z":120.904,"rotation0":0,"rotation1":0,"rotation2":-0.801255,"rotation3":0.598323,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50455,"id":182071,"map":329,"orientation":0.00278044,"phaseMask":1,"position_x":3687.4,"position_y":-3644.84,"position_z":140.638,"rotation0":0,"rotation1":0,"rotation2":0.00139022,"rotation3":0.999999,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50456,"id":182071,"map":329,"orientation":5.38276,"phaseMask":1,"position_x":3683.72,"position_y":-3648.49,"position_z":140.638,"rotation0":0,"rotation1":0,"rotation2":0.435157,"rotation3":-0.900355,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50457,"id":182071,"map":329,"orientation":4.22822,"phaseMask":1,"position_x":3671.68,"position_y":-3643.77,"position_z":139.943,"rotation0":0,"rotation1":0,"rotation2":0.856,"rotation3":-0.516975,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50459,"id":182071,"map":329,"orientation":4.72695,"phaseMask":1,"position_x":3680.14,"position_y":-3652.72,"position_z":140.639,"rotation0":0,"rotation1":0,"rotation2":0.70194,"rotation3":-0.712236,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50460,"id":182071,"map":329,"orientation":0.987666,"phaseMask":1,"position_x":3664.39,"position_y":-3638.14,"position_z":140.384,"rotation0":0,"rotation1":0,"rotation2":0.474004,"rotation3":0.880522,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50461,"id":182071,"map":329,"orientation":0.394683,"phaseMask":1,"position_x":3673.38,"position_y":-3645.99,"position_z":150.796,"rotation0":0,"rotation1":0,"rotation2":0.196063,"rotation3":0.980591,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50462,"id":182071,"map":329,"orientation":2.17519,"phaseMask":1,"position_x":3674.34,"position_y":-3635.08,"position_z":154.887,"rotation0":0,"rotation1":0,"rotation2":0.885512,"rotation3":0.464616,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50463,"id":182071,"map":329,"orientation":5.26573,"phaseMask":1,"position_x":3667.09,"position_y":-3624.71,"position_z":148.081,"rotation0":0,"rotation1":0,"rotation2":0.487066,"rotation3":-0.873365,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50464,"id":182071,"map":329,"orientation":2.08485,"phaseMask":1,"position_x":3674.15,"position_y":-3635.58,"position_z":162.46,"rotation0":0,"rotation1":0,"rotation2":0.863629,"rotation3":0.504127,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50465,"id":182071,"map":329,"orientation":2.19481,"phaseMask":1,"position_x":3671.84,"position_y":-3631.23,"position_z":169.458,"rotation0":0,"rotation1":0,"rotation2":0.890027,"rotation3":0.455907,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50466,"id":182071,"map":329,"orientation":3.7774,"phaseMask":1,"position_x":3681.39,"position_y":-3623.82,"position_z":146.995,"rotation0":0,"rotation1":0,"rotation2":0.949893,"rotation3":-0.312576,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50467,"id":182071,"map":329,"orientation":4.28791,"phaseMask":1,"position_x":3690.96,"position_y":-3644.84,"position_z":150.472,"rotation0":0,"rotation1":0,"rotation2":0.840192,"rotation3":-0.542289,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50468,"id":182071,"map":329,"orientation":2.94089,"phaseMask":1,"position_x":3668.28,"position_y":-3628.68,"position_z":139.944,"rotation0":0,"rotation1":0,"rotation2":0.994969,"rotation3":0.100183,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50469,"id":182071,"map":329,"orientation":0.172363,"phaseMask":1,"position_x":3671.21,"position_y":-3628.02,"position_z":139.944,"rotation0":0,"rotation1":0,"rotation2":0.0860749,"rotation3":0.996289,"spawnMask":1,"spawntimesecs":-1200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50470,"id":182072,"map":329,"orientation":3.7813,"phaseMask":1,"position_x":3670.55,"position_y":-3629.58,"position_z":164.292,"rotation0":0,"rotation1":0,"rotation2":0.949281,"rotation3":-0.314428,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50471,"id":182072,"map":329,"orientation":0.65147,"phaseMask":1,"position_x":3680.86,"position_y":-3644.45,"position_z":150.394,"rotation0":0,"rotation1":0,"rotation2":0.320005,"rotation3":0.947416,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":50472,"id":182072,"map":329,"orientation":2.21834,"phaseMask":1,"position_x":3676.3,"position_y":-3637.77,"position_z":150.766,"rotation0":0,"rotation1":0,"rotation2":0.895329,"rotation3":0.445405,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268437,"id":181071,"map":329,"orientation":2.74016,"phaseMask":1,"position_x":4044.34,"position_y":-3334.22,"position_z":115.06,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.199371,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":268438,"id":181072,"map":329,"orientation":1.16937,"phaseMask":1,"position_x":4044.34,"position_y":-3334.23,"position_z":115.06,"rotation0":0,"rotation1":0,"rotation2":0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/Stratholme":"46bd6ecbb671598b26cf83c4f7ecc837f0679884495629e0ee91406e0a1cb05d","patch/World/maps/Stratholme":"891eca15a7f981c5939925a7d00d2fa0580b970e1c4c48585dc28a950d9265c5"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/stratholme/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["50/50 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"maraudon","title":"Maraudon","mapId":349,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[40,55]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Maraudon","theme":"Instanced dungeon","summary":"Fight through Maraudon, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Maraudon...","unchartedAreaName":"Uncharted Maraudon","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1000.8667},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/349-mauradon/visual.glb","checksum":"5a650c11912730e67d4e3bd75d0d1d89e1db8ad88ca3ecc4e3ae7fa6df4c98ba","size":6861940,"triangleCount":129277}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/349-mauradon/collision.glb","checksum":"471eb50b6a3c923363404555572768aee09e9005c5fe7e2230c33262808a912b","size":992804,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/349-mauradon/navigation.glb","checksum":"af2227f0940b81a01b9c9df004692598c2d41b1ce33d51a70bdde2e66d8115aa","size":435520,"triangleCount":34479}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-1241.9529,-257.782,-459.4803],"max":[148.1398,-35.128,459.8317]},"entrance":{"name":"Maraudon Entrance","footPosition":[-1086.2429,-72.528,-311.2733],"forward":[0.9576462295988111,0,0.28794738917931023],"yaw":1.2787135733552053},"areas":[{"id":"entrance","name":"Maraudon Entrance","center":[-1086.2429,-72.528,-311.2733],"radius":35},{"id":"area-noxxion","name":"Noxxion's Encounter","center":[-1196.9529,-109.0994,-44.3053],"radius":42},{"id":"area-razorlash","name":"Razorlash's Encounter","center":[-1045.4399,-91.6015,136.8847],"radius":42},{"id":"area-lord-vyletongue","name":"Lord Vyletongue's Encounter","center":[-815.4269,-76.7906,-72.6103],"radius":42},{"id":"area-celebras-the-cursed","name":"Celebras the Cursed's Encounter","center":[-792.6589,-115.6893,225.0131],"radius":42},{"id":"area-landslide","name":"Landslide's Encounter","center":[-423.2339,-88.9136,-38.4183],"radius":42},{"id":"area-tinkerer-gizlock","name":"Tinkerer Gizlock's Encounter","center":[-201.4549,-202.653,-166.6943],"radius":42},{"id":"area-princess-theradras","name":"Princess Theradras's Encounter","center":[-94.451,-153.581,230.2299],"radius":42},{"id":"area-meshlok-the-harvester","name":"Meshlok the Harvester's Encounter","center":[-836.1879,-85.3403,72.7604],"radius":42}],"entities":{"entry-12219":{"id":"entry-12219","kind":"mob","name":"Barbed Lasher","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6162,"damageMultiplier":1.12},{"id":"spell-21749","name":"Thorn Volley","spellId":21749,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6162,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12347-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.064,"labelHeight":5.2266,"markerRadius":3.477}}},"entry-12218":{"id":"entry-12218","kind":"mob","name":"Vile Larva","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12346-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0066,"labelHeight":1.0705,"markerRadius":0.9519}}},"entry-12220":{"id":"entry-12220","kind":"mob","name":"Constrictor Vine","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11922","name":"Entangling Roots","spellId":11922,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":4579,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4579,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12348-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0457,"labelHeight":3.7333,"markerRadius":2.4836}}},"entry-11793":{"id":"entry-11793","kind":"mob","name":"Celebrian Dryad","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16000","name":"Throw","spellId":16000,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4330,"damageMultiplier":1.12},{"id":"spell-7992","name":"Slowing Poison","spellId":7992,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4330,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-11714-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0049,"labelHeight":2.9558,"markerRadius":0.7741}}},"entry-12222":{"id":"entry-12222","kind":"mob","name":"Creeping Sludge","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-14350-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.8564,"labelHeight":2.8048,"markerRadius":1.2622}}},"entry-13533":{"id":"entry-13533","kind":"mob","name":"Spewed Larva","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-13609-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0166,"labelHeight":2.1512,"markerRadius":2.3797}}},"entry-12216":{"id":"entry-12216","kind":"mob","name":"Poison Sprite","combat":{"level":42,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-2452-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.4642,"markerRadius":0.7149}}},"entry-12217":{"id":"entry-12217","kind":"mob","name":"Corruptor","combat":{"level":42,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5413","name":"Noxious Catalyst","spellId":5413,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5851,"damageMultiplier":1.12},{"id":"spell-21068","name":"Corruption","spellId":21068,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5851,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12345-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.4642,"markerRadius":0.7149}}},"entry-11790":{"id":"entry-11790","kind":"mob","name":"Putridus Satyr","combat":{"level":43,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-15667","name":"Sinister Strike","spellId":15667,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6817,"damageMultiplier":1.12},{"id":"spell-12540","name":"Gouge","spellId":12540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6817,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/d46221744014c9f7e60e192eb6da90d29b6bb6547f467db7d4b65e3a3503dab7.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-11791":{"id":"entry-11791","kind":"mob","name":"Putridus Trickster","combat":{"level":43,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-15657","name":"Backstab","spellId":15657,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6704,"damageMultiplier":1.12},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6704,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-11338-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0072,"labelHeight":4.6121,"markerRadius":1.3367}}},"entry-11794":{"id":"entry-11794","kind":"mob","name":"Sister of Celebras","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15795","name":"Throw","spellId":15795,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5822,"damageMultiplier":1.12},{"id":"spell-14516","name":"Strike","spellId":14516,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5822,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12337-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0055,"labelHeight":3.2992,"markerRadius":0.8751}}},"entry-12221":{"id":"entry-12221","kind":"mob","name":"Noxious Slime","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"ooze","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-1145-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.8207,"labelHeight":3.1527,"markerRadius":1.5483}}},"entry-13141":{"id":"entry-13141","kind":"mob","name":"Deeprot Stomper","combat":{"level":43,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11876","name":"War Stomp","spellId":11876,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6541,"damageMultiplier":0.62,"radius":8},{"id":"spell-13446","name":"Strike","spellId":13446,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6541,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-2079-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0372,"labelHeight":5.5754,"markerRadius":1.3394}}},"entry-13282":{"id":"entry-13282","kind":"boss","name":"Noxxion","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21687","name":"Toxic Volley","spellId":21687,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6859,"damageMultiplier":0.82,"radius":11},{"id":"spell-21547","name":"Spore Cloud","spellId":21547,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6859,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-11172-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5891,"markerRadius":2.6624}}},"entry-12258":{"id":"entry-12258","kind":"boss","name":"Razorlash","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12787","name":"Thrash","spellId":12787,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6654,"damageMultiplier":1.35},{"id":"spell-40504","name":"Cleave","spellId":40504,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":6654,"damageMultiplier":0.82,"radius":11},{"id":"spell-15976","name":"Puncture","spellId":15976,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6654,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"plant","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12389-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0914,"labelHeight":7.4665,"markerRadius":4.5}}},"entry-12223":{"id":"entry-12223","kind":"mob","name":"Cavern Lurker","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-11428","name":"Stunning Strike","spellId":11428,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5924,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-3386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1511,"labelHeight":4.9521,"markerRadius":1.4299}}},"entry-12224":{"id":"entry-12224","kind":"mob","name":"Cavern Shambler","combat":{"level":45,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-7948","name":"Wild Regeneration","spellId":7948,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5166,"damageMultiplier":1.12},{"id":"spell-16790","name":"Stunning Strike","spellId":16790,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-9014-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1743,"labelHeight":5.714,"markerRadius":1.6499}}},"entry-12236":{"id":"entry-12236","kind":"boss","name":"Lord Vyletongue","title":"Dungeon Boss","hasLoot":true,"combat":{"level":44,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21080","name":"Putrid Breath","spellId":21080,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6653,"damageMultiplier":0.82,"radius":11},{"id":"spell-8817","name":"Smoke Bomb","spellId":8817,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6653,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/b0222314bf55f489e9328677ef322c3cbc243b8c297b2916088350f11848173b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0096,"labelHeight":6.1495,"markerRadius":1.7823}}},"entry-11792":{"id":"entry-11792","kind":"mob","name":"Putridus Shadowstalker","combat":{"level":43,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9080","name":"Hamstring","spellId":9080,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12},{"id":"spell-15087","name":"Evasion","spellId":15087,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6368,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c40245171481eb04ae88340d52e24044e16b3e0053584016264adcf3e83f9bbf.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-13142":{"id":"entry-13142","kind":"mob","name":"Deeprot Tangler","combat":{"level":43,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21331","name":"Entangling Roots","spellId":21331,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":4069,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-21337","name":"Thorns","spellId":21337,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4069,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-13098-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0372,"labelHeight":5.5754,"markerRadius":1.3394}}},"entry-12206":{"id":"entry-12206","kind":"mob","name":"Primordial Behemoth","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12309-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0128,"labelHeight":11.6171,"markerRadius":3.7088}}},"entry-12225":{"id":"entry-12225","kind":"boss","name":"Celebras the Cursed","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21793","name":"Twisted Tranquility","spellId":21793,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7092,"damageMultiplier":1.35},{"id":"spell-21807","name":"Wrath","spellId":21807,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7092,"damageMultiplier":1.35},{"id":"spell-12747","name":"Entangling Roots","spellId":12747,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":7092,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12350-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0239,"labelHeight":6.0275,"markerRadius":1.4532}}},"entry-13743":{"id":"entry-13743","kind":"mob","name":"Corrupt Force of Nature","combat":{"level":44,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-9593-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0372,"labelHeight":5.5754,"markerRadius":1.3394}}},"entry-13599":{"id":"entry-13599","kind":"mob","name":"Stolid Snapjaw","combat":{"level":46,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14104","name":"Spikes","spellId":14104,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6028,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-6368-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.008,"labelHeight":1.552,"markerRadius":0.8729}}},"entry-12201":{"id":"entry-12201","kind":"boss","name":"Princess Theradras","title":"Dungeon Boss","hasLoot":true,"combat":{"level":48,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5235,"damageMultiplier":1.35},{"id":"spell-21869","name":"Repulsive Gaze","spellId":21869,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5235,"damageMultiplier":1.35},{"id":"spell-21832","name":"Boulder","spellId":21832,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5235,"damageMultiplier":1.35},{"id":"spell-21909","name":"Dust Field","spellId":21909,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5235,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12292-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0027,"labelHeight":9.8467,"markerRadius":3.2057}}},"entry-12207":{"id":"entry-12207","kind":"mob","name":"Thessala Hydra","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6613,"damageMultiplier":1.12},{"id":"spell-21790","name":"Aqua Jet","spellId":21790,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6613,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-6737-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0153,"labelHeight":8.4414,"markerRadius":4.5}}},"entry-11789":{"id":"entry-11789","kind":"mob","name":"Deep Borer","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5054,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12333-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2828,"labelHeight":0.9928,"markerRadius":2.3087}}},"entry-11784":{"id":"entry-11784","kind":"mob","name":"Theradrim Guardian","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16790","name":"Stunning Strike","spellId":16790,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-11712-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1656,"labelHeight":3.6208,"markerRadius":1.7178}}},"entry-13323":{"id":"entry-13323","kind":"mob","name":"Subterranean Diemetradon","combat":{"level":47,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8281","name":"Sonic Burst","spellId":8281,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6130,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-13209-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.058,"markerRadius":3.4369}}},"entry-13601":{"id":"entry-13601","kind":"boss","name":"Tinkerer Gizlock","title":"Dungeon Boss","hasLoot":true,"combat":{"level":48,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9143","name":"Bomb","spellId":9143,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4474,"damageMultiplier":1.35},{"id":"spell-16100","name":"Shoot","spellId":16100,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4474,"damageMultiplier":1.35},{"id":"spell-21833","name":"Goblin Dragon Gun","spellId":21833,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4474,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-7125-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0032,"labelHeight":1.8279,"markerRadius":0.65}}},"entry-13596":{"id":"entry-13596","kind":"mob","name":"Rotgrip","combat":{"level":48,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16495","name":"Fatal Bite","spellId":16495,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6481,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-13589-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.8224,"markerRadius":4.5}}},"entry-12203":{"id":"entry-12203","kind":"boss","name":"Landslide","title":"Dungeon Boss","hasLoot":true,"combat":{"level":48,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6376,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-12293-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0157,"labelHeight":14.298,"markerRadius":4.5}}},"entry-12237":{"id":"entry-12237","kind":"boss","name":"Meshlok the Harvester","title":"Dungeon Boss","hasLoot":true,"combat":{"level":46,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15593","name":"War Stomp","spellId":15593,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4497,"damageMultiplier":0.82,"radius":11},{"id":"spell-13446","name":"Strike","spellId":13446,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4497,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.34,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/maraudon/creatures/display-9014-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1743,"labelHeight":5.714,"markerRadius":1.6499}}}},"staticSpawns":[{"id":"creature-53971","entityId":"entry-12219","position":[-1129.2629,-60.6707,-277.1113],"yaw":-0.977384,"spawnMask":1},{"id":"creature-53972","entityId":"entry-12218","position":[-1036.3689,-78.699,-225.6203],"yaw":-2.28638,"spawnMask":1},{"id":"creature-53973","entityId":"entry-12218","position":[-1021.6509,-79.1968,-244.3963],"yaw":-0.349066,"spawnMask":1},{"id":"creature-53983","entityId":"entry-12218","position":[-1024.6139,-79.0228,-238.3583],"yaw":-0.296706,"spawnMask":1},{"id":"creature-53984","entityId":"entry-12218","position":[-1038.1829,-78.8077,-234.9723],"yaw":-3.19395,"spawnMask":1},{"id":"creature-53985","entityId":"entry-12218","position":[-1031.1839,-78.7825,-230.6843],"yaw":-0.733038,"spawnMask":1},{"id":"creature-53986","entityId":"entry-12219","position":[-1115.8729,-65.2906,-232.4323],"yaw":-4.55531,"spawnMask":1},{"id":"creature-53987","entityId":"entry-12220","position":[-1057.5589,-79.126,-230.6753],"yaw":-3.56047,"spawnMask":1},{"id":"creature-53988","entityId":"entry-12220","position":[-1052.2439,-79.1395,-235.1113],"yaw":-3.14159,"spawnMask":1},{"id":"creature-53989","entityId":"entry-12220","position":[-1051.7939,-79.0276,-227.9143],"yaw":-3.14159,"spawnMask":1},{"id":"creature-53991","entityId":"entry-11793","position":[-1109.6029,-65.4241,-221.3983],"yaw":-1.83132,"spawnMask":1},{"id":"creature-53993","entityId":"entry-12220","position":[-1111.8029,-67.1153,-184.6493],"yaw":-2.74017,"spawnMask":1},{"id":"creature-53994","entityId":"entry-12219","position":[-1075.9429,-69.781,-206.7653],"yaw":-4.64258,"spawnMask":1},{"id":"creature-54005","entityId":"entry-12220","position":[-1111.3429,-67.2634,-179.7523],"yaw":-5.26045,"spawnMask":1},{"id":"creature-54006","entityId":"entry-12220","position":[-1116.4929,-67.4104,-179.0683],"yaw":-4.40843,"spawnMask":1},{"id":"creature-54007","entityId":"entry-12218","position":[-1019.6569,-79.1044,-230.3053],"yaw":-1.97049,"spawnMask":1},{"id":"creature-54008","entityId":"entry-12218","position":[-1026.0999,-78.9838,-222.4103],"yaw":-4.7595,"spawnMask":1},{"id":"creature-54009","entityId":"entry-12220","position":[-1139.7529,-101.5767,-167.4613],"yaw":-6.05629,"spawnMask":1},{"id":"creature-54010","entityId":"entry-12220","position":[-1135.0429,-101.5767,-166.6843],"yaw":0,"spawnMask":1},{"id":"creature-54011","entityId":"entry-12220","position":[-1140.3929,-101.5767,-161.8633],"yaw":0,"spawnMask":1},{"id":"creature-54012","entityId":"entry-12218","position":[-1019.0209,-79.1997,-215.6653],"yaw":-3.22074,"spawnMask":1},{"id":"creature-54013","entityId":"entry-12218","position":[-1131.5129,-102.3306,-127.3933],"yaw":-2.99423,"spawnMask":1},{"id":"creature-54014","entityId":"entry-12220","position":[-1096.1229,-100.8317,-155.1133],"yaw":-0.069813,"spawnMask":1},{"id":"creature-54057","entityId":"entry-12220","position":[-1091.9929,-100.9513,-150.9073],"yaw":0,"spawnMask":1},{"id":"creature-54058","entityId":"entry-12220","position":[-1097.1329,-101.0005,-150.4383],"yaw":0,"spawnMask":1},{"id":"creature-54059","entityId":"entry-12219","position":[-1047.7809,-74.7374,-157.7143],"yaw":-5.41052,"spawnMask":1},{"id":"creature-54061","entityId":"entry-12218","position":[-1138.3329,-101.8251,-128.5653],"yaw":-1.70784,"spawnMask":1},{"id":"creature-54062","entityId":"entry-12218","position":[-1145.5329,-101.1652,-132.2943],"yaw":-5.3058,"spawnMask":1},{"id":"creature-54063","entityId":"entry-12218","position":[-992.4849,-79.5744,-211.3573],"yaw":-2.56199,"spawnMask":1},{"id":"creature-54064","entityId":"entry-12218","position":[-998.2089,-79.5744,-216.4503],"yaw":-1.82313,"spawnMask":1},{"id":"creature-54065","entityId":"entry-12218","position":[-995.1919,-79.4382,-232.2273],"yaw":-1.11734,"spawnMask":1},{"id":"creature-54093","entityId":"entry-12218","position":[-998.2529,-79.5105,-227.0053],"yaw":-5.28588,"spawnMask":1},{"id":"creature-54094","entityId":"entry-12219","position":[-993.2419,-78.8087,-165.3893],"yaw":-4.86947,"spawnMask":1},{"id":"creature-54095","entityId":"entry-12218","position":[-1002.9179,-79.5744,-211.6193],"yaw":-1.72337,"spawnMask":1},{"id":"creature-54096","entityId":"entry-12218","position":[-1006.1159,-79.4608,-221.7273],"yaw":-1.91986,"spawnMask":1},{"id":"creature-54097","entityId":"entry-12222","position":[-1012.2879,-74.9631,-129.4813],"yaw":-4.11898,"spawnMask":1},{"id":"creature-54098","entityId":"entry-12222","position":[-1019.3759,-74.6607,-138.9823],"yaw":-4.93928,"spawnMask":1},{"id":"creature-54099","entityId":"entry-12218","position":[-1125.2329,-102.329,-120.8533],"yaw":-0.878976,"spawnMask":1},{"id":"creature-54100","entityId":"entry-12222","position":[-1019.6409,-74.6795,-133.7533],"yaw":-0.453786,"spawnMask":1},{"id":"creature-54101","entityId":"entry-12218","position":[-1137.0129,-102.2771,-122.0783],"yaw":-3.82749,"spawnMask":1},{"id":"creature-54102","entityId":"entry-12218","position":[-1145.4729,-101.6601,-121.6303],"yaw":-4.12956,"spawnMask":1},{"id":"creature-54103","entityId":"entry-12218","position":[-1098.5629,-101.3387,-105.8993],"yaw":-2.45657,"spawnMask":1},{"id":"creature-54104","entityId":"entry-12218","position":[-1106.8329,-101.4096,-108.6273],"yaw":-3.38751,"spawnMask":1},{"id":"creature-54105","entityId":"entry-12222","position":[-1057.2719,-74.7261,-101.5233],"yaw":-0.244346,"spawnMask":1},{"id":"creature-54106","entityId":"entry-12218","position":[-1131.8229,-102.3269,-116.3803],"yaw":-4.11447,"spawnMask":1},{"id":"creature-54118","entityId":"entry-12222","position":[-1058.5749,-74.7261,-105.1423],"yaw":-3.66519,"spawnMask":1},{"id":"creature-54121","entityId":"entry-12222","position":[-1040.4349,-77.8517,-107.6933],"yaw":-3.82227,"spawnMask":1},{"id":"creature-54122","entityId":"entry-12218","position":[-991.6679,-79.5475,-224.8683],"yaw":-0.151607,"spawnMask":1},{"id":"creature-54123","entityId":"entry-12218","position":[-988.1459,-79.5744,-216.3103],"yaw":-5.25939,"spawnMask":1},{"id":"creature-54127","entityId":"entry-12219","position":[-984.6679,-78.627,-194.7953],"yaw":-1.06465,"spawnMask":1},{"id":"creature-54129","entityId":"entry-11793","position":[-968.2569,-78.5656,-183.1363],"yaw":-4.89489,"spawnMask":1},{"id":"creature-54130","entityId":"entry-13533","position":[-991.8629,-78.3864,-180.4723],"yaw":-0.030144,"spawnMask":1},{"id":"creature-54131","entityId":"entry-12222","position":[-1009.1589,-74.8357,-124.6363],"yaw":-3.9968,"spawnMask":1},{"id":"creature-54132","entityId":"entry-12222","position":[-1041.0629,-77.8043,-100.3253],"yaw":-5.86431,"spawnMask":1},{"id":"creature-54133","entityId":"entry-12218","position":[-1102.2829,-101.3371,-91.1923],"yaw":-5.59064,"spawnMask":1},{"id":"creature-54134","entityId":"entry-12218","position":[-1096.8629,-101.3366,-91.2723],"yaw":-2.40222,"spawnMask":1},{"id":"creature-54135","entityId":"entry-12218","position":[-1102.7929,-101.3381,-99.9783],"yaw":-2.02142,"spawnMask":1},{"id":"creature-54136","entityId":"entry-12218","position":[-1092.3829,-101.3384,-98.4983],"yaw":-0.013524,"spawnMask":1},{"id":"creature-54148","entityId":"entry-12218","position":[-1108.3329,-101.3386,-100.0463],"yaw":-5.11537,"spawnMask":1},{"id":"creature-54149","entityId":"entry-12222","position":[-1031.0219,-77.999,-107.2383],"yaw":-5.41052,"spawnMask":1},{"id":"creature-54150","entityId":"entry-12222","position":[-1033.3179,-77.8911,-99.3623],"yaw":-6.14356,"spawnMask":1},{"id":"creature-54151","entityId":"entry-12222","position":[-1035.9719,-77.9124,-104.6773],"yaw":-3.19395,"spawnMask":1},{"id":"creature-54152","entityId":"entry-12216","position":[-942.8139,-79.303,-190.3203],"yaw":-3.97935,"spawnMask":1},{"id":"creature-54153","entityId":"entry-12217","position":[-938.7149,-79.2268,-189.9633],"yaw":-0.820305,"spawnMask":1},{"id":"creature-54154","entityId":"entry-11790","position":[-936.5869,-77.896,-182.3483],"yaw":-0.279253,"spawnMask":1},{"id":"creature-54155","entityId":"entry-11791","position":[-940.2099,-77.9093,-184.5993],"yaw":-1.39626,"spawnMask":1},{"id":"creature-54156","entityId":"entry-12220","position":[-953.8579,-74.9428,-131.6583],"yaw":-6.07375,"spawnMask":1},{"id":"creature-54157","entityId":"entry-12220","position":[-956.2809,-74.9428,-135.1473],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54158","entityId":"entry-12220","position":[-954.8219,-74.8122,-128.0213],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54159","entityId":"entry-12220","position":[-998.5999,-75.5538,-86.1443],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54160","entityId":"entry-12219","position":[-1068.4229,-96.4691,-69.3303],"yaw":-5.07891,"spawnMask":1},{"id":"creature-54161","entityId":"entry-12222","position":[-1033.1879,-76.0431,-68.9423],"yaw":-1.39626,"spawnMask":1},{"id":"creature-54200","entityId":"entry-12220","position":[-1002.9379,-75.575,-85.6193],"yaw":-3.68265,"spawnMask":1},{"id":"creature-54202","entityId":"entry-12220","position":[-1005.3999,-75.5713,-80.2223],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54226","entityId":"entry-12222","position":[-1022.4239,-75.5693,-71.0063],"yaw":-3.97935,"spawnMask":1},{"id":"creature-54278","entityId":"entry-12222","position":[-1026.1189,-75.5693,-67.9613],"yaw":-3.75246,"spawnMask":1},{"id":"creature-54279","entityId":"entry-12222","position":[-1028.7679,-75.8596,-72.6313],"yaw":-0.645772,"spawnMask":1},{"id":"creature-54280","entityId":"entry-12220","position":[-948.1659,-82.0093,-83.5223],"yaw":-1.95477,"spawnMask":1},{"id":"creature-54281","entityId":"entry-12220","position":[-941.2909,-82.5239,-84.3913],"yaw":0,"spawnMask":1},{"id":"creature-54282","entityId":"entry-12220","position":[-943.8419,-83.2804,-78.4073],"yaw":0,"spawnMask":1},{"id":"creature-54283","entityId":"entry-12219","position":[-966.4749,-81.4781,-53.0683],"yaw":-0.488692,"spawnMask":1},{"id":"creature-54284","entityId":"entry-12220","position":[-984.2339,-86.314,-40.9243],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54285","entityId":"entry-12218","position":[-1109.9229,-101.3379,-93.2093],"yaw":-4.51294,"spawnMask":1},{"id":"creature-54305","entityId":"entry-12220","position":[-1007.8199,-91.9338,-31.7463],"yaw":0,"spawnMask":1},{"id":"creature-54306","entityId":"entry-12219","position":[-1049.0599,-97.0742,-33.5673],"yaw":-1.309,"spawnMask":1},{"id":"creature-54307","entityId":"entry-12220","position":[-1069.4929,-96.6561,-47.6763],"yaw":-2.26893,"spawnMask":1},{"id":"creature-54308","entityId":"entry-12220","position":[-1073.1929,-96.7037,-52.0413],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54309","entityId":"entry-12220","position":[-1064.0809,-96.5428,-53.5893],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54310","entityId":"entry-12219","position":[-1052.8309,-96.9226,-37.9043],"yaw":-2.9147,"spawnMask":1},{"id":"creature-54311","entityId":"entry-12219","position":[-918.9449,-83.6536,-87.6113],"yaw":-0.855211,"spawnMask":1},{"id":"creature-54312","entityId":"entry-12219","position":[-921.7339,-83.1361,-94.3913],"yaw":-6.07375,"spawnMask":1},{"id":"creature-54313","entityId":"entry-12219","position":[-945.3179,-104.2222,-54.8493],"yaw":-2.37365,"spawnMask":1},{"id":"creature-54314","entityId":"entry-12220","position":[-927.3699,-82.1542,-98.6743],"yaw":-2.30383,"spawnMask":1},{"id":"creature-54315","entityId":"entry-12220","position":[-921.2659,-83.1429,-101.6013],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54316","entityId":"entry-12220","position":[-926.0589,-81.7642,-103.0993],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54317","entityId":"entry-12220","position":[-960.0239,-81.61,-44.9843],"yaw":-0.785398,"spawnMask":1},{"id":"creature-54318","entityId":"entry-12220","position":[-966.0609,-81.8723,-41.3193],"yaw":0,"spawnMask":1},{"id":"creature-54319","entityId":"entry-12220","position":[-963.7669,-81.4858,-47.9203],"yaw":0,"spawnMask":1},{"id":"creature-54320","entityId":"entry-12220","position":[-984.4169,-87.2862,-33.2453],"yaw":-1.76835,"spawnMask":1},{"id":"creature-54321","entityId":"entry-12220","position":[-980.7849,-86.5458,-37.9513],"yaw":-5.66455,"spawnMask":1},{"id":"creature-54322","entityId":"entry-12220","position":[-1003.4119,-91.4001,-26.1223],"yaw":-2.04047,"spawnMask":1},{"id":"creature-54323","entityId":"entry-12220","position":[-1009.0239,-91.7323,-25.9383],"yaw":-1.51313,"spawnMask":1},{"id":"creature-54324","entityId":"entry-12220","position":[-1023.7829,-88.2355,-9.9923],"yaw":-6.21337,"spawnMask":1},{"id":"creature-54325","entityId":"entry-12220","position":[-1027.7489,-87.8998,-15.7783],"yaw":0,"spawnMask":1},{"id":"creature-54327","entityId":"entry-11794","position":[-1009.3719,-89.4026,-8.9453],"yaw":-1.20594,"spawnMask":1},{"id":"creature-54328","entityId":"entry-12221","position":[-906.6059,-104.6725,-61.8773],"yaw":-2.96706,"spawnMask":1},{"id":"creature-54329","entityId":"entry-12220","position":[-1026.8129,-88.4272,-3.7153],"yaw":-6.2241,"spawnMask":1},{"id":"creature-54330","entityId":"entry-12216","position":[-934.6049,-79.3539,-188.0023],"yaw":-3.88721,"spawnMask":1},{"id":"creature-54331","entityId":"entry-12216","position":[-932.9379,-79.1864,-183.3163],"yaw":-1.42954,"spawnMask":1},{"id":"creature-54332","entityId":"entry-12221","position":[-879.2719,-89.7505,-101.6163],"yaw":-0.10472,"spawnMask":1},{"id":"creature-54333","entityId":"entry-12221","position":[-903.9649,-104.1948,-52.4753],"yaw":-2.98451,"spawnMask":1},{"id":"creature-54334","entityId":"entry-12221","position":[-883.2789,-89.4802,-109.2293],"yaw":-2.79253,"spawnMask":1},{"id":"creature-54335","entityId":"entry-12221","position":[-899.5749,-103.8704,-58.8183],"yaw":-6.10865,"spawnMask":1},{"id":"creature-54336","entityId":"entry-12221","position":[-888.6889,-103.6859,-87.3683],"yaw":-0.645772,"spawnMask":1},{"id":"creature-54341","entityId":"entry-12221","position":[-882.5119,-103.6519,-85.7973],"yaw":-1.85005,"spawnMask":1},{"id":"creature-54342","entityId":"entry-12221","position":[-876.0219,-89.4461,-110.0173],"yaw":-2.26893,"spawnMask":1},{"id":"creature-54343","entityId":"entry-12221","position":[-897.3299,-103.8562,-50.8283],"yaw":-6.10865,"spawnMask":1},{"id":"creature-54344","entityId":"entry-12221","position":[-870.7459,-89.8688,-103.7583],"yaw":-0.349066,"spawnMask":1},{"id":"creature-54345","entityId":"entry-11790","position":[-871.6979,-80.6508,-190.6903],"yaw":-3.83972,"spawnMask":1},{"id":"creature-54347","entityId":"entry-12217","position":[-907.8619,-81.0643,-207.7013],"yaw":-2.75762,"spawnMask":1},{"id":"creature-54348","entityId":"entry-12217","position":[-910.5279,-80.6239,-212.0153],"yaw":-5.32325,"spawnMask":1},{"id":"creature-54349","entityId":"entry-12217","position":[-896.6689,-81.0643,-207.7093],"yaw":-5.11381,"spawnMask":1},{"id":"creature-54350","entityId":"entry-12216","position":[-902.1099,-81.0643,-205.9103],"yaw":-4.08407,"spawnMask":1},{"id":"creature-54351","entityId":"entry-12216","position":[-873.2569,-80.7046,-194.7893],"yaw":-1.15192,"spawnMask":1},{"id":"creature-54352","entityId":"entry-13141","position":[-946.6659,-81.0643,-220.9133],"yaw":-4.2237,"spawnMask":1},{"id":"creature-54353","entityId":"entry-13141","position":[-921.8689,-93.1011,-235.3173],"yaw":-0.890118,"spawnMask":1},{"id":"creature-54354","entityId":"entry-11790","position":[-900.6889,-81.0643,-209.2213],"yaw":-0.890118,"spawnMask":1},{"id":"creature-54355","entityId":"entry-11791","position":[-903.7409,-80.614,-215.2933],"yaw":-1.6057,"spawnMask":1},{"id":"creature-54356","entityId":"entry-12216","position":[-961.5779,-81.5994,-265.6663],"yaw":-2.61799,"spawnMask":1},{"id":"creature-54357","entityId":"entry-12216","position":[-961.7809,-81.8742,-273.6363],"yaw":-3.21141,"spawnMask":1},{"id":"creature-54358","entityId":"entry-12216","position":[-957.6509,-81.5086,-269.3003],"yaw":-3.19395,"spawnMask":1},{"id":"creature-54359","entityId":"entry-12217","position":[-959.8149,-81.6765,-259.5553],"yaw":-3.92699,"spawnMask":1},{"id":"creature-54360","entityId":"entry-11790","position":[-966.3639,-82.0205,-270.6153],"yaw":-2.60054,"spawnMask":1},{"id":"creature-54361","entityId":"entry-11790","position":[-964.3489,-81.9587,-259.0343],"yaw":-3.36848,"spawnMask":1},{"id":"creature-54362","entityId":"entry-13141","position":[-947.0039,-81.03,-255.9483],"yaw":-1.50613,"spawnMask":1},{"id":"creature-54363","entityId":"entry-12218","position":[-1137.9629,-102.2057,-113.8033],"yaw":-5.81745,"spawnMask":1},{"id":"creature-54364","entityId":"entry-12218","position":[-1122.6629,-101.1815,-77.9943],"yaw":-1.15779,"spawnMask":1},{"id":"creature-54365","entityId":"entry-12218","position":[-1133.1229,-101.5784,-80.8933],"yaw":-6.06374,"spawnMask":1},{"id":"creature-54366","entityId":"entry-12218","position":[-1127.6429,-101.6241,-70.0213],"yaw":-3.66481,"spawnMask":1},{"id":"creature-54367","entityId":"entry-12218","position":[-1121.1729,-101.3057,-73.0473],"yaw":-3.32482,"spawnMask":1},{"id":"creature-54368","entityId":"entry-12218","position":[-1131.0029,-101.5984,-75.8693],"yaw":-5.66331,"spawnMask":1},{"id":"creature-54369","entityId":"entry-12218","position":[-1169.3629,-105.068,-96.4553],"yaw":-2.18068,"spawnMask":1},{"id":"creature-54370","entityId":"entry-12218","position":[-1150.9829,-102.1751,-106.5433],"yaw":-3.12597,"spawnMask":1},{"id":"creature-54371","entityId":"entry-12218","position":[-1164.6929,-104.3146,-92.0963],"yaw":-5.46898,"spawnMask":1},{"id":"creature-54372","entityId":"entry-12218","position":[-1171.5829,-105.1443,-106.8163],"yaw":-4.50295,"spawnMask":1},{"id":"creature-54373","entityId":"entry-12218","position":[-1171.0829,-104.9214,-114.8673],"yaw":-4.63901,"spawnMask":1},{"id":"creature-54374","entityId":"entry-12218","position":[-1158.2729,-103.2924,-97.5253],"yaw":-2.80998,"spawnMask":1},{"id":"creature-54375","entityId":"entry-12218","position":[-1161.7329,-103.3641,-117.8043],"yaw":-0.753238,"spawnMask":1},{"id":"creature-54376","entityId":"entry-12218","position":[-1162.7029,-103.8566,-99.7453],"yaw":-1.5184,"spawnMask":1},{"id":"creature-54377","entityId":"entry-12218","position":[-1136.7429,-101.7627,-82.4283],"yaw":-5.53495,"spawnMask":1},{"id":"creature-54378","entityId":"entry-12218","position":[-1138.1829,-101.9658,-75.4613],"yaw":-1.18682,"spawnMask":1},{"id":"creature-54379","entityId":"entry-12218","position":[-1136.2629,-102.0513,-69.7583],"yaw":-0.76709,"spawnMask":1},{"id":"creature-54380","entityId":"entry-12218","position":[-1170.4429,-103.6205,-62.7883],"yaw":-5.49286,"spawnMask":1},{"id":"creature-54391","entityId":"entry-12218","position":[-1158.2329,-103.7888,-61.8123],"yaw":-2.45877,"spawnMask":1},{"id":"creature-54418","entityId":"entry-12218","position":[-1160.0629,-103.8429,-68.4973],"yaw":-0.628319,"spawnMask":1},{"id":"creature-54443","entityId":"entry-12218","position":[-1151.7229,-103.6732,-57.9563],"yaw":-4.2371,"spawnMask":1},{"id":"creature-54444","entityId":"entry-12218","position":[-1163.6529,-103.6548,-65.1373],"yaw":-3.73809,"spawnMask":1},{"id":"creature-54445","entityId":"entry-13282","position":[-1196.9529,-109.0994,-44.3053],"yaw":-4.64258,"spawnMask":1},{"id":"creature-54446","entityId":"entry-12218","position":[-1161.2629,-103.892,-52.8473],"yaw":-1.77423,"spawnMask":1},{"id":"creature-54447","entityId":"entry-12218","position":[-1169.4129,-103.8548,-54.4683],"yaw":-5.99821,"spawnMask":1},{"id":"creature-54448","entityId":"entry-12218","position":[-1164.2529,-104.1643,-49.5933],"yaw":-0.98362,"spawnMask":1},{"id":"creature-54449","entityId":"entry-12219","position":[-1008.7199,-89.4723,1.6577],"yaw":-1.81514,"spawnMask":1},{"id":"creature-54450","entityId":"entry-12220","position":[-988.4099,-91.0704,28.3497],"yaw":-0.977384,"spawnMask":1},{"id":"creature-54451","entityId":"entry-12220","position":[-1029.6989,-92.8356,38.8217],"yaw":-3.08923,"spawnMask":1},{"id":"creature-54452","entityId":"entry-12220","position":[-1032.8419,-92.9344,38.8677],"yaw":0,"spawnMask":1},{"id":"creature-54453","entityId":"entry-12220","position":[-1031.9509,-92.8035,43.7837],"yaw":0,"spawnMask":1},{"id":"creature-54454","entityId":"entry-12219","position":[-983.0779,-91.016,27.8357],"yaw":-0.418879,"spawnMask":1},{"id":"creature-54455","entityId":"entry-12220","position":[-985.2619,-90.9413,34.4737],"yaw":-2.67135,"spawnMask":1},{"id":"creature-54456","entityId":"entry-12220","position":[-979.0629,-90.8368,32.7367],"yaw":0,"spawnMask":1},{"id":"creature-54457","entityId":"entry-12221","position":[-935.5009,-116.0785,13.1167],"yaw":-1.23918,"spawnMask":1},{"id":"creature-54458","entityId":"entry-12221","position":[-936.1979,-116.1086,18.1437],"yaw":-5.2709,"spawnMask":1},{"id":"creature-54459","entityId":"entry-12221","position":[-940.5709,-116.0511,15.2367],"yaw":-3.40339,"spawnMask":1},{"id":"creature-54460","entityId":"entry-12221","position":[-939.8279,-116.2172,23.1397],"yaw":-2.07694,"spawnMask":1},{"id":"creature-54461","entityId":"entry-12219","position":[-1025.2519,-90.9135,74.2178],"yaw":-1.16937,"spawnMask":1},{"id":"creature-54462","entityId":"entry-12220","position":[-1018.7089,-90.9953,77.4149],"yaw":-1.46608,"spawnMask":1},{"id":"creature-54463","entityId":"entry-12220","position":[-961.1589,-88.1779,83.3599],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54464","entityId":"entry-12220","position":[-957.4429,-88.3223,78.5625],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54465","entityId":"entry-11794","position":[-939.8889,-116.1629,52.6575],"yaw":-0.033702,"spawnMask":1},{"id":"creature-54466","entityId":"entry-12219","position":[-988.8779,-88.6477,88.6187],"yaw":-1.76278,"spawnMask":1},{"id":"creature-54467","entityId":"entry-12219","position":[-953.8459,-88.1858,83.9414],"yaw":-0.890118,"spawnMask":1},{"id":"creature-54468","entityId":"entry-12220","position":[-1049.2479,-90.9246,84.8741],"yaw":-3.22886,"spawnMask":1},{"id":"creature-54469","entityId":"entry-12220","position":[-1047.3449,-90.9272,92.5708],"yaw":0,"spawnMask":1},{"id":"creature-54470","entityId":"entry-12220","position":[-1042.6849,-90.926,88.4621],"yaw":0,"spawnMask":1},{"id":"creature-54471","entityId":"entry-12220","position":[-1025.1679,-91.1522,82.2887],"yaw":-1.80317,"spawnMask":1},{"id":"creature-54472","entityId":"entry-12220","position":[-1020.8879,-91.1541,85.367],"yaw":-4.48323,"spawnMask":1},{"id":"creature-54473","entityId":"entry-12220","position":[-946.8349,-88.2767,86.6441],"yaw":-5.60564,"spawnMask":1},{"id":"creature-54474","entityId":"entry-12258","position":[-1045.4399,-91.6015,136.8847],"yaw":-4.60767,"spawnMask":1},{"id":"creature-54475","entityId":"entry-11794","position":[-932.7489,-116.4188,54.3375],"yaw":-5.64039,"spawnMask":1},{"id":"creature-54476","entityId":"entry-11794","position":[-929.8969,-116.1538,65.0049],"yaw":-1.49697,"spawnMask":1},{"id":"creature-54477","entityId":"entry-11794","position":[-930.6499,-116.5031,58.6886],"yaw":-5.42058,"spawnMask":1},{"id":"creature-54478","entityId":"entry-12221","position":[-913.0189,-115.7557,132.8791],"yaw":-0.715585,"spawnMask":1},{"id":"creature-54479","entityId":"entry-12221","position":[-907.4419,-116.1359,128.0273],"yaw":-5.32325,"spawnMask":1},{"id":"creature-54480","entityId":"entry-12223","position":[-897.8199,-117.782,52.9053],"yaw":-5.0091,"spawnMask":1},{"id":"creature-54481","entityId":"entry-12223","position":[-915.5319,-117.6912,33.6617],"yaw":-1.5708,"spawnMask":1},{"id":"creature-54482","entityId":"entry-12221","position":[-901.1169,-116.101,134.0793],"yaw":-6.07375,"spawnMask":1},{"id":"creature-54483","entityId":"entry-12221","position":[-896.9409,-115.9928,127.2384],"yaw":-3.45575,"spawnMask":1},{"id":"creature-54484","entityId":"entry-12221","position":[-905.8189,-116.2302,138.8851],"yaw":-3.14159,"spawnMask":1},{"id":"creature-54485","entityId":"entry-12224","position":[-907.4279,-117.356,-1.7013],"yaw":-0.122173,"spawnMask":1},{"id":"creature-54566","entityId":"entry-11794","position":[-941.2949,-116.1884,-9.0943],"yaw":-1.72611,"spawnMask":1},{"id":"creature-54567","entityId":"entry-11794","position":[-939.0299,-116.3338,-9.5283],"yaw":-1.62768,"spawnMask":1},{"id":"creature-54568","entityId":"entry-12223","position":[-907.1449,-117.356,-27.8453],"yaw":-3.83972,"spawnMask":1},{"id":"creature-54569","entityId":"entry-12221","position":[-888.4639,-103.8516,-45.8833],"yaw":-3.07178,"spawnMask":1},{"id":"creature-54570","entityId":"entry-12221","position":[-853.4989,-94.0544,-69.7913],"yaw":-5.06145,"spawnMask":1},{"id":"creature-54571","entityId":"entry-12224","position":[-870.7519,-106.1636,-53.5623],"yaw":-0.226893,"spawnMask":1},{"id":"creature-54572","entityId":"entry-12221","position":[-841.7669,-93.6167,-69.4983],"yaw":-0.925025,"spawnMask":1},{"id":"creature-54573","entityId":"entry-12221","position":[-830.8859,-88.6799,-41.1273],"yaw":-5.75959,"spawnMask":1},{"id":"creature-54574","entityId":"entry-11794","position":[-859.7009,-103.4801,-13.8423],"yaw":-4.95674,"spawnMask":1},{"id":"creature-54575","entityId":"entry-11794","position":[-863.6889,-103.881,-16.2433],"yaw":-4.81711,"spawnMask":1},{"id":"creature-54576","entityId":"entry-12221","position":[-849.7229,-94.0375,-64.7993],"yaw":-1.98968,"spawnMask":1},{"id":"creature-54577","entityId":"entry-12221","position":[-847.7929,-93.8135,-69.5523],"yaw":-0.296706,"spawnMask":1},{"id":"creature-54578","entityId":"entry-12221","position":[-846.1019,-93.8221,-75.3563],"yaw":-6.05629,"spawnMask":1},{"id":"creature-54579","entityId":"entry-12236","position":[-815.4269,-76.7906,-72.6103],"yaw":-3.1765,"spawnMask":1},{"id":"creature-54580","entityId":"entry-12221","position":[-832.2369,-87.5362,-37.0923],"yaw":-0.994838,"spawnMask":1},{"id":"creature-54581","entityId":"entry-12216","position":[-862.5559,-79.9869,-185.9373],"yaw":-0.223871,"spawnMask":1},{"id":"creature-54582","entityId":"entry-12217","position":[-864.2549,-80.618,-194.5543],"yaw":-5.42127,"spawnMask":1},{"id":"creature-54583","entityId":"entry-11791","position":[-866.8149,-80.5572,-187.6383],"yaw":-4.57276,"spawnMask":1},{"id":"creature-54584","entityId":"entry-12216","position":[-867.6979,-80.7099,-190.6223],"yaw":-1.00031,"spawnMask":1},{"id":"creature-54585","entityId":"entry-11792","position":[-788.1259,-76.264,-64.0383],"yaw":-3.31613,"spawnMask":1},{"id":"creature-54586","entityId":"entry-11792","position":[-788.1949,-76.264,-80.4703],"yaw":-2.80998,"spawnMask":1},{"id":"creature-54587","entityId":"entry-12222","position":[-845.2849,-85.0974,1.5387],"yaw":-1.41372,"spawnMask":1},{"id":"creature-54588","entityId":"entry-12222","position":[-838.1779,-85.3779,6.2337],"yaw":-3.64774,"spawnMask":1},{"id":"creature-54589","entityId":"entry-13142","position":[-758.8649,-81.9036,-118.5863],"yaw":-4.55531,"spawnMask":1},{"id":"creature-54590","entityId":"entry-12222","position":[-851.8229,-84.9245,10.5327],"yaw":-6.07375,"spawnMask":1},{"id":"creature-54591","entityId":"entry-12216","position":[-770.6799,-76.264,-49.8923],"yaw":-3.07178,"spawnMask":1},{"id":"creature-54592","entityId":"entry-12216","position":[-774.6049,-76.264,-39.5033],"yaw":-3.83972,"spawnMask":1},{"id":"creature-54613","entityId":"entry-12216","position":[-775.3779,-76.264,-49.9943],"yaw":-0.226893,"spawnMask":1},{"id":"creature-54618","entityId":"entry-12217","position":[-772.7259,-76.264,-59.3873],"yaw":-2.04204,"spawnMask":1},{"id":"creature-54626","entityId":"entry-11791","position":[-776.3999,-76.264,-46.4103],"yaw":-4.76475,"spawnMask":1},{"id":"creature-54627","entityId":"entry-11791","position":[-776.5729,-76.264,-54.6013],"yaw":-1.5708,"spawnMask":1},{"id":"creature-54628","entityId":"entry-12222","position":[-843.8959,-85.1377,10.2457],"yaw":-1.309,"spawnMask":1},{"id":"creature-54629","entityId":"entry-11791","position":[-752.8749,-89.5301,-49.1633],"yaw":-2.37365,"spawnMask":1},{"id":"creature-54630","entityId":"entry-12217","position":[-750.5029,-89.5374,-55.7743],"yaw":-5.09636,"spawnMask":1},{"id":"creature-54631","entityId":"entry-11791","position":[-747.9219,-89.5083,-44.1703],"yaw":-5.48033,"spawnMask":1},{"id":"creature-54632","entityId":"entry-12217","position":[-746.4729,-89.6328,-50.1213],"yaw":-3.73611,"spawnMask":1},{"id":"creature-54633","entityId":"entry-12217","position":[-742.6859,-89.5766,-45.9723],"yaw":-5.31158,"spawnMask":1},{"id":"creature-54634","entityId":"entry-12216","position":[-743.9319,-89.6394,-55.2583],"yaw":-3.10762,"spawnMask":1},{"id":"creature-54635","entityId":"entry-13142","position":[-755.4389,-77.7641,-17.6693],"yaw":-1.3439,"spawnMask":1},{"id":"creature-54636","entityId":"entry-11791","position":[-809.4759,-85.3486,19.0757],"yaw":-3.29867,"spawnMask":1},{"id":"creature-54640","entityId":"entry-11791","position":[-806.4629,-85.6633,24.8427],"yaw":-3.97935,"spawnMask":1},{"id":"creature-54641","entityId":"entry-12223","position":[-831.6499,-86.5147,34.4987],"yaw":-2.14675,"spawnMask":1},{"id":"creature-54642","entityId":"entry-12217","position":[-816.7769,-85.4212,17.5037],"yaw":-3.68265,"spawnMask":1},{"id":"creature-54643","entityId":"entry-12216","position":[-814.3909,-85.5973,25.6967],"yaw":-3.01942,"spawnMask":1},{"id":"creature-54644","entityId":"entry-12216","position":[-803.3189,-85.5368,32.0407],"yaw":-0.645772,"spawnMask":1},{"id":"creature-54645","entityId":"entry-12223","position":[-806.8119,-86.5132,64.9597],"yaw":-0.628319,"spawnMask":1},{"id":"creature-54646","entityId":"entry-11791","position":[-824.6749,-85.0554,104.2012],"yaw":-2.1293,"spawnMask":1},{"id":"creature-54647","entityId":"entry-11791","position":[-816.6759,-85.2511,104.159],"yaw":-0.959931,"spawnMask":1},{"id":"creature-54648","entityId":"entry-12217","position":[-811.4719,-85.1111,95.9578],"yaw":-4.64258,"spawnMask":1},{"id":"creature-54649","entityId":"entry-12217","position":[-820.5519,-85.2347,100.4662],"yaw":-5.13127,"spawnMask":1},{"id":"creature-54650","entityId":"entry-12217","position":[-822.1779,-85.2066,93.2103],"yaw":-0.331613,"spawnMask":1},{"id":"creature-54651","entityId":"entry-12216","position":[-829.5259,-85.0274,105.1404],"yaw":-0.20944,"spawnMask":1},{"id":"creature-54653","entityId":"entry-12224","position":[-879.1879,-117.2956,109.763],"yaw":-5.23599,"spawnMask":1},{"id":"creature-54654","entityId":"entry-12222","position":[-742.7219,-85.0597,36.2907],"yaw":-4.69494,"spawnMask":1},{"id":"creature-54655","entityId":"entry-12223","position":[-765.7129,-86.598,57.951],"yaw":-0.525737,"spawnMask":1},{"id":"creature-54656","entityId":"entry-12222","position":[-730.6119,-85.3673,37.7127],"yaw":-0.20944,"spawnMask":1},{"id":"creature-54657","entityId":"entry-12222","position":[-736.3939,-85.1669,37.0117],"yaw":-0.523599,"spawnMask":1},{"id":"creature-54658","entityId":"entry-12206","position":[-368.7509,-88.9138,-40.8703],"yaw":-2.32129,"spawnMask":1},{"id":"creature-54659","entityId":"entry-13142","position":[-709.4149,-82.0483,-13.1453],"yaw":-5.68977,"spawnMask":1},{"id":"creature-54660","entityId":"entry-13141","position":[-735.9029,-79.2015,-5.9543],"yaw":-0.593412,"spawnMask":1},{"id":"creature-54661","entityId":"entry-12222","position":[-685.8329,-83.9598,15.3527],"yaw":-5.28835,"spawnMask":1},{"id":"creature-54662","entityId":"entry-12223","position":[-683.9269,-86.5147,47.0789],"yaw":-2.04204,"spawnMask":1},{"id":"creature-54663","entityId":"entry-12222","position":[-691.0239,-84.2435,20.2217],"yaw":-1.85005,"spawnMask":1},{"id":"creature-54664","entityId":"entry-12206","position":[-356.6389,-88.9138,-56.2243],"yaw":-1.55334,"spawnMask":1},{"id":"creature-54666","entityId":"entry-13141","position":[-700.2429,-82.6856,-20.6743],"yaw":-2.18166,"spawnMask":1},{"id":"creature-54667","entityId":"entry-11791","position":[-663.8389,-84.2037,-12.0933],"yaw":-3.87463,"spawnMask":1},{"id":"creature-54668","entityId":"entry-11791","position":[-663.7549,-84.1997,1.4447],"yaw":-2.1293,"spawnMask":1},{"id":"creature-54669","entityId":"entry-12206","position":[-309.0129,-116.2485,41.4907],"yaw":-4.67748,"spawnMask":1},{"id":"creature-54670","entityId":"entry-13142","position":[-681.2619,-93.3943,-59.4993],"yaw":-4.76475,"spawnMask":1},{"id":"creature-54671","entityId":"entry-13141","position":[-713.5979,-93.4059,-54.5683],"yaw":-3.08923,"spawnMask":1},{"id":"creature-54672","entityId":"entry-13142","position":[-723.4879,-93.4059,-80.1093],"yaw":-2.11185,"spawnMask":1},{"id":"creature-54673","entityId":"entry-13142","position":[-706.1669,-81.8767,-114.6123],"yaw":-5.46288,"spawnMask":1},{"id":"creature-54674","entityId":"entry-13141","position":[-694.1889,-82.3412,-113.3683],"yaw":-0.506145,"spawnMask":1},{"id":"creature-54675","entityId":"entry-11792","position":[-807.2349,-76.8334,-87.3993],"yaw":-2.79253,"spawnMask":1},{"id":"creature-54676","entityId":"entry-11792","position":[-807.4889,-76.7862,-57.9493],"yaw":-3.54302,"spawnMask":1},{"id":"creature-54677","entityId":"entry-12217","position":[-704.5559,-81.0344,-161.4743],"yaw":-2.53073,"spawnMask":1},{"id":"creature-54678","entityId":"entry-12217","position":[-707.2989,-81.0804,-168.8083],"yaw":-1.46608,"spawnMask":1},{"id":"creature-54679","entityId":"entry-12216","position":[-705.1849,-81.0855,-165.2113],"yaw":-5.60251,"spawnMask":1},{"id":"creature-54680","entityId":"entry-11791","position":[-701.1549,-80.06,-167.2713],"yaw":-4.46804,"spawnMask":1},{"id":"creature-54681","entityId":"entry-11791","position":[-703.9359,-80.0819,-171.3763],"yaw":-3.28122,"spawnMask":1},{"id":"creature-54682","entityId":"entry-13142","position":[-717.0739,-81.034,-202.2903],"yaw":-1.41372,"spawnMask":1},{"id":"creature-54683","entityId":"entry-13141","position":[-687.4299,-81.034,-202.1933],"yaw":-6.17846,"spawnMask":1},{"id":"creature-54691","entityId":"entry-11790","position":[-740.6579,-80.6478,-196.9823],"yaw":-5.89921,"spawnMask":1},{"id":"creature-54693","entityId":"entry-13142","position":[-684.0059,-81.1174,-207.9563],"yaw":-1.07088,"spawnMask":1},{"id":"creature-54694","entityId":"entry-12217","position":[-752.2169,-81.1994,-198.0293],"yaw":-5.95157,"spawnMask":1},{"id":"creature-54695","entityId":"entry-12216","position":[-744.8979,-81.3421,-202.2743],"yaw":-0.610865,"spawnMask":1},{"id":"creature-54696","entityId":"entry-12216","position":[-749.8229,-81.193,-204.3313],"yaw":-0.20944,"spawnMask":1},{"id":"creature-54697","entityId":"entry-12217","position":[-794.4589,-79.8867,-185.2593],"yaw":-2.72271,"spawnMask":1},{"id":"creature-54698","entityId":"entry-13142","position":[-763.6409,-81.034,-225.9183],"yaw":-1.06465,"spawnMask":1},{"id":"creature-54720","entityId":"entry-11791","position":[-757.8989,-80.2656,-202.2603],"yaw":-2.93215,"spawnMask":1},{"id":"creature-54721","entityId":"entry-11792","position":[-731.5879,-81.5836,-193.4613],"yaw":-0.919615,"spawnMask":1},{"id":"creature-54722","entityId":"entry-11790","position":[-667.6199,-81.034,-255.4853],"yaw":-2.6529,"spawnMask":1},{"id":"creature-54723","entityId":"entry-11791","position":[-681.5039,-81.034,-253.1053],"yaw":-2.23402,"spawnMask":1},{"id":"creature-54724","entityId":"entry-11791","position":[-648.3389,-81.034,-243.2123],"yaw":-0.820305,"spawnMask":1},{"id":"creature-54725","entityId":"entry-11791","position":[-647.3619,-81.034,-237.1353],"yaw":-0.383972,"spawnMask":1},{"id":"creature-54726","entityId":"entry-11791","position":[-661.2009,-81.034,-252.8463],"yaw":-5.8294,"spawnMask":1},{"id":"creature-54727","entityId":"entry-11791","position":[-683.0809,-81.034,-245.2383],"yaw":-2.9147,"spawnMask":1},{"id":"creature-54728","entityId":"entry-12216","position":[-810.6609,-79.8617,-196.3903],"yaw":-4.3986,"spawnMask":1},{"id":"creature-54729","entityId":"entry-12216","position":[-800.0459,-79.8942,-186.4443],"yaw":-1.49642,"spawnMask":1},{"id":"creature-54730","entityId":"entry-12217","position":[-805.9929,-79.8744,-190.9343],"yaw":-5.55699,"spawnMask":1},{"id":"creature-54731","entityId":"entry-11790","position":[-805.1369,-79.8217,-183.4013],"yaw":-4.50295,"spawnMask":1},{"id":"creature-54732","entityId":"entry-11791","position":[-801.7049,-79.8063,-195.5043],"yaw":-1.37881,"spawnMask":1},{"id":"creature-54734","entityId":"entry-13142","position":[-837.9359,-90.6693,-205.8313],"yaw":-5.74213,"spawnMask":1},{"id":"creature-54735","entityId":"entry-13141","position":[-862.9129,-88.1643,-226.8663],"yaw":-6.21337,"spawnMask":1},{"id":"creature-54736","entityId":"entry-11790","position":[-856.0789,-82.6329,-277.0193],"yaw":-5.3058,"spawnMask":1},{"id":"creature-54737","entityId":"entry-11790","position":[-857.0519,-82.4336,-266.3683],"yaw":-4.95674,"spawnMask":1},{"id":"creature-54738","entityId":"entry-12217","position":[-855.9419,-82.6473,-272.1423],"yaw":-1.91986,"spawnMask":1},{"id":"creature-54739","entityId":"entry-12216","position":[-860.1669,-82.5487,-266.3503],"yaw":-5.67232,"spawnMask":1},{"id":"creature-54741","entityId":"entry-13141","position":[-883.0549,-88.199,-229.7023],"yaw":-6.16101,"spawnMask":1},{"id":"creature-54743","entityId":"entry-12216","position":[-858.2049,-82.8008,-277.8423],"yaw":-2.4517,"spawnMask":1},{"id":"creature-54767","entityId":"entry-11792","position":[-940.2759,-80.4469,-205.3893],"yaw":-1.89681,"spawnMask":1},{"id":"creature-55070","entityId":"entry-13141","position":[-896.5689,-85.3487,-301.1183],"yaw":-3.33358,"spawnMask":1},{"id":"creature-55071","entityId":"entry-13533","position":[-994.8639,-79.5746,-222.7773],"yaw":-2.38871,"spawnMask":1},{"id":"creature-55072","entityId":"entry-12217","position":[-835.6259,-70.0957,-322.2153],"yaw":-2.6529,"spawnMask":1},{"id":"creature-55073","entityId":"entry-12217","position":[-843.6669,-70.2375,-321.1423],"yaw":-4.15388,"spawnMask":1},{"id":"creature-55074","entityId":"entry-11790","position":[-841.6339,-70.2856,-316.4813],"yaw":-3.78736,"spawnMask":1},{"id":"creature-55075","entityId":"entry-12216","position":[-878.1469,-69.7024,-354.3443],"yaw":-3.33358,"spawnMask":1},{"id":"creature-55076","entityId":"entry-12216","position":[-879.0299,-69.1191,-349.3413],"yaw":-2.26893,"spawnMask":1},{"id":"creature-55077","entityId":"entry-12216","position":[-868.4519,-68.7259,-345.6493],"yaw":-6.03884,"spawnMask":1},{"id":"creature-55078","entityId":"entry-12217","position":[-880.6329,-70.1825,-364.4623],"yaw":-5.74213,"spawnMask":1},{"id":"creature-55079","entityId":"entry-11790","position":[-881.2949,-69.9151,-357.8133],"yaw":-2.80998,"spawnMask":1},{"id":"creature-55080","entityId":"entry-12217","position":[-821.1589,-82.1497,-370.4923],"yaw":-0.506145,"spawnMask":1},{"id":"creature-55081","entityId":"entry-12216","position":[-828.7609,-82.1375,-375.2033],"yaw":-5.91667,"spawnMask":1},{"id":"creature-55082","entityId":"entry-12216","position":[-828.6179,-82.0443,-361.6483],"yaw":-4.60767,"spawnMask":1},{"id":"creature-55083","entityId":"entry-11790","position":[-822.4759,-82.1497,-374.5513],"yaw":-0.331613,"spawnMask":1},{"id":"creature-55084","entityId":"entry-11790","position":[-824.3369,-82.1497,-365.4943],"yaw":-5.65487,"spawnMask":1},{"id":"creature-55085","entityId":"entry-12217","position":[-825.1429,-69.9311,-314.8213],"yaw":-0.64812,"spawnMask":1},{"id":"creature-55086","entityId":"entry-12216","position":[-829.7929,-69.9986,-319.7323],"yaw":-5.68977,"spawnMask":1},{"id":"creature-55088","entityId":"entry-12216","position":[-829.1069,-62.6185,-406.9813],"yaw":-3.92462,"spawnMask":1},{"id":"creature-55090","entityId":"entry-13141","position":[-832.5519,-63.5207,-402.6603],"yaw":-4.26076,"spawnMask":1},{"id":"creature-55091","entityId":"entry-12216","position":[-824.5539,-62.1476,-411.5163],"yaw":-3.92961,"spawnMask":1},{"id":"creature-55092","entityId":"entry-12217","position":[-782.8919,-65.4697,-355.5483],"yaw":-5.74213,"spawnMask":1},{"id":"creature-55093","entityId":"entry-12216","position":[-782.8389,-65.6668,-349.8713],"yaw":-3.40339,"spawnMask":1},{"id":"creature-55094","entityId":"entry-12216","position":[-777.0239,-65.5168,-351.4463],"yaw":-5.81195,"spawnMask":1},{"id":"creature-55095","entityId":"entry-11790","position":[-811.8939,-70.4131,-358.8233],"yaw":-3.35103,"spawnMask":1},{"id":"creature-55096","entityId":"entry-11790","position":[-806.8969,-70.0552,-353.6733],"yaw":-4.2586,"spawnMask":1},{"id":"creature-55097","entityId":"entry-13533","position":[-982.6049,-79.5747,-208.2803],"yaw":-2.27274,"spawnMask":1},{"id":"creature-55099","entityId":"entry-11793","position":[-872.8809,-115.8938,219.7953],"yaw":-5.1642,"spawnMask":1},{"id":"creature-55100","entityId":"entry-11794","position":[-877.0859,-115.5607,222.4631],"yaw":-1.8326,"spawnMask":1},{"id":"creature-55101","entityId":"entry-11793","position":[-867.8679,-115.7433,228.0407],"yaw":-4.8359,"spawnMask":1},{"id":"creature-55103","entityId":"entry-11794","position":[-869.1279,-115.9338,222.7842],"yaw":-5.31355,"spawnMask":1},{"id":"creature-55104","entityId":"entry-12225","position":[-792.6589,-115.6893,225.0131],"yaw":-6.00393,"spawnMask":1},{"id":"creature-55107","entityId":"entry-13743","position":[-792.5009,-116.0248,232.3255],"yaw":-4.46804,"spawnMask":1},{"id":"creature-55108","entityId":"entry-13743","position":[-785.5589,-116.0707,226.0436],"yaw":-3.9968,"spawnMask":1},{"id":"creature-55109","entityId":"entry-13743","position":[-790.9359,-116.0095,217.7171],"yaw":-0.174533,"spawnMask":1},{"id":"creature-55111","entityId":"entry-13599","position":[-684.7309,-125.3275,175.0144],"yaw":-3.89208,"spawnMask":1},{"id":"creature-55112","entityId":"entry-13599","position":[-660.7399,-125.3275,146.3653],"yaw":-4.93928,"spawnMask":1},{"id":"creature-55114","entityId":"entry-13599","position":[-642.4479,-125.3275,187.637],"yaw":-4.59022,"spawnMask":1},{"id":"creature-55115","entityId":"entry-13599","position":[-632.2749,-125.4108,219.6523],"yaw":-2.197,"spawnMask":1},{"id":"creature-55116","entityId":"entry-13599","position":[-632.8729,-125.4108,223.2956],"yaw":-2.08147,"spawnMask":1},{"id":"creature-55117","entityId":"entry-13599","position":[-630.2089,-125.4108,217.0876],"yaw":-2.07909,"spawnMask":1},{"id":"creature-55120","entityId":"entry-13599","position":[-628.0959,-125.3275,253.6347],"yaw":-1.78024,"spawnMask":1},{"id":"creature-55122","entityId":"entry-13599","position":[-623.9329,-125.3275,161.8478],"yaw":-3.50811,"spawnMask":1},{"id":"creature-55123","entityId":"entry-13599","position":[-632.1289,-125.4108,258.1357],"yaw":-1.09958,"spawnMask":1},{"id":"creature-55125","entityId":"entry-13599","position":[-556.0669,-125.3275,217.8116],"yaw":-2.07694,"spawnMask":1},{"id":"creature-55126","entityId":"entry-13599","position":[-568.2489,-125.3275,163.0151],"yaw":-5.42797,"spawnMask":1},{"id":"creature-55128","entityId":"entry-13599","position":[-564.7869,-125.4109,113.7884],"yaw":-3.48156,"spawnMask":1},{"id":"creature-55129","entityId":"entry-13599","position":[-550.5909,-125.4108,106.0386],"yaw":-0.733645,"spawnMask":1},{"id":"creature-55130","entityId":"entry-13599","position":[-546.4139,-125.4108,99.9135],"yaw":-0.335294,"spawnMask":1},{"id":"creature-55131","entityId":"entry-13599","position":[-543.6749,-125.4108,99.4925],"yaw":-0.522017,"spawnMask":1},{"id":"creature-55132","entityId":"entry-13599","position":[-545.5149,-125.4108,103.2028],"yaw":-0.51851,"spawnMask":1},{"id":"creature-55166","entityId":"entry-13599","position":[-543.7419,-125.4108,104.3524],"yaw":-0.534915,"spawnMask":1},{"id":"creature-55167","entityId":"entry-12206","position":[-238.0199,-140.001,-42.9813],"yaw":-0.069813,"spawnMask":1},{"id":"creature-55338","entityId":"entry-12206","position":[-104.8726,-157.248,111.8152],"yaw":-4.46804,"spawnMask":1},{"id":"creature-55340","entityId":"entry-12206","position":[-143.2714,-198.965,-21.9333],"yaw":-5.74213,"spawnMask":1},{"id":"creature-55341","entityId":"entry-12206","position":[-87.8532,-156.906,112.849],"yaw":-4.60767,"spawnMask":1},{"id":"creature-55342","entityId":"entry-12201","position":[-94.451,-153.581,230.2299],"yaw":-0.240237,"spawnMask":1},{"id":"creature-55344","entityId":"entry-12206","position":[-139.5609,-138.955,-50.5983],"yaw":-4.45059,"spawnMask":1},{"id":"creature-55345","entityId":"entry-12206","position":[-83.9857,-152.97,32.3257],"yaw":-4.69494,"spawnMask":1},{"id":"creature-55347","entityId":"entry-12206","position":[-122.6408,-138.718,-61.3693],"yaw":-5.32325,"spawnMask":1},{"id":"creature-55348","entityId":"entry-12206","position":[-66.2566,-153.001,27.8207],"yaw":-5.23599,"spawnMask":1},{"id":"creature-55376","entityId":"entry-12207","position":[-343.6699,-160.108,189.0265],"yaw":-2.1298,"spawnMask":1},{"id":"creature-55377","entityId":"entry-12207","position":[-376.1829,-160.85,244.9336],"yaw":-4.24793,"spawnMask":1},{"id":"creature-55381","entityId":"entry-11789","position":[-425.4289,-132.688,345.0457],"yaw":-0.802851,"spawnMask":1},{"id":"creature-55382","entityId":"entry-11789","position":[-416.0019,-130.95,346.3417],"yaw":-1.23918,"spawnMask":1},{"id":"creature-55383","entityId":"entry-11789","position":[-410.0079,-131.017,356.3047],"yaw":-2.7843,"spawnMask":1},{"id":"creature-55384","entityId":"entry-11789","position":[-417.3199,-131.22,350.9987],"yaw":-5.78446,"spawnMask":1},{"id":"creature-55385","entityId":"entry-11789","position":[-421.8469,-131.311,352.2527],"yaw":-3.69712,"spawnMask":1},{"id":"creature-55386","entityId":"entry-11789","position":[-415.6729,-131.017,361.3407],"yaw":-2.48562,"spawnMask":1},{"id":"creature-55388","entityId":"entry-11789","position":[-492.9729,-141.907,333.6077],"yaw":-0.977384,"spawnMask":1},{"id":"creature-55389","entityId":"entry-11789","position":[-498.8439,-141.907,334.8107],"yaw":-5.70723,"spawnMask":1},{"id":"creature-55390","entityId":"entry-11789","position":[-501.1799,-142.347,323.4877],"yaw":-2.96706,"spawnMask":1},{"id":"creature-55424","entityId":"entry-11789","position":[-502.3879,-142.187,329.0977],"yaw":-0.296706,"spawnMask":1},{"id":"creature-55425","entityId":"entry-11789","position":[-493.0489,-142.321,321.4057],"yaw":-0.610865,"spawnMask":1},{"id":"creature-55427","entityId":"entry-11789","position":[-511.3789,-123.0615,369.8077],"yaw":-4.17134,"spawnMask":1},{"id":"creature-55428","entityId":"entry-11789","position":[-440.5259,-123.064,401.6537],"yaw":-0.680678,"spawnMask":1},{"id":"creature-55429","entityId":"entry-11789","position":[-489.5109,-141.907,399.0797],"yaw":-0.226893,"spawnMask":1},{"id":"creature-55430","entityId":"entry-11789","position":[-478.6509,-141.907,399.0337],"yaw":-0.017453,"spawnMask":1},{"id":"creature-55432","entityId":"entry-11789","position":[-480.2749,-142.176,409.7017],"yaw":-5.32325,"spawnMask":1},{"id":"creature-55433","entityId":"entry-11789","position":[-485.2059,-142.061,404.9207],"yaw":-5.07891,"spawnMask":1},{"id":"creature-55434","entityId":"entry-11789","position":[-512.4899,-123.1449,378.0107],"yaw":-1.77473,"spawnMask":1},{"id":"creature-55435","entityId":"entry-11789","position":[-509.9839,-123.1449,384.9657],"yaw":-0.284811,"spawnMask":1},{"id":"creature-55436","entityId":"entry-11789","position":[-518.8609,-123.1449,369.9257],"yaw":-5.21707,"spawnMask":1},{"id":"creature-55437","entityId":"entry-11789","position":[-513.9119,-123.1449,383.8567],"yaw":-6.2066,"spawnMask":1},{"id":"creature-55438","entityId":"entry-11789","position":[-487.6179,-141.975,414.8317],"yaw":-3.66519,"spawnMask":1},{"id":"creature-55441","entityId":"entry-11789","position":[-436.1249,-123.064,406.8437],"yaw":-5.8294,"spawnMask":1},{"id":"creature-55442","entityId":"entry-11789","position":[-430.7379,-123.1711,408.0627],"yaw":-6.1056,"spawnMask":1},{"id":"creature-55443","entityId":"entry-11789","position":[-424.4699,-123.1746,409.0187],"yaw":-3.98254,"spawnMask":1},{"id":"creature-55444","entityId":"entry-11789","position":[-430.4349,-123.1816,402.6047],"yaw":-3.50857,"spawnMask":1},{"id":"creature-55445","entityId":"entry-11789","position":[-430.3259,-123.1627,412.7657],"yaw":-3.1204,"spawnMask":1},{"id":"creature-55446","entityId":"entry-11789","position":[-564.3929,-123.064,403.7027],"yaw":-5.49779,"spawnMask":1},{"id":"creature-55447","entityId":"entry-11789","position":[-558.8199,-123.064,406.7077],"yaw":-3.50811,"spawnMask":1},{"id":"creature-55449","entityId":"entry-11789","position":[-567.2839,-123.064,407.7077],"yaw":-1.01229,"spawnMask":1},{"id":"creature-55450","entityId":"entry-11789","position":[-569.0559,-123.064,401.8767],"yaw":-3.52556,"spawnMask":1},{"id":"creature-55451","entityId":"entry-11789","position":[-556.8069,-123.064,412.2217],"yaw":-0.890118,"spawnMask":1},{"id":"creature-55452","entityId":"entry-11789","position":[-563.8059,-123.064,412.5267],"yaw":-2.3911,"spawnMask":1},{"id":"creature-55453","entityId":"entry-11789","position":[-579.7509,-123.064,355.4807],"yaw":-5.23599,"spawnMask":1},{"id":"creature-55454","entityId":"entry-11789","position":[-583.2149,-123.064,362.1477],"yaw":-2.77507,"spawnMask":1},{"id":"creature-55455","entityId":"entry-11789","position":[-585.2159,-123.064,350.9367],"yaw":-2.32129,"spawnMask":1},{"id":"creature-55456","entityId":"entry-11789","position":[-590.9019,-123.064,365.9787],"yaw":-4.20624,"spawnMask":1},{"id":"creature-55457","entityId":"entry-11789","position":[-594.4749,-123.064,358.7287],"yaw":-0.541052,"spawnMask":1},{"id":"creature-55459","entityId":"entry-12206","position":[-104.283,-198.778,-107.9193],"yaw":-2.11185,"spawnMask":1},{"id":"creature-55461","entityId":"entry-12207","position":[-399.2989,-160.108,56.8273],"yaw":-2.12854,"spawnMask":1},{"id":"creature-55463","entityId":"entry-12206","position":[-116.2697,-137.693,-133.8883],"yaw":-0.698132,"spawnMask":1},{"id":"creature-55464","entityId":"entry-12206","position":[-126.1237,-136.954,-146.1233],"yaw":-1.01229,"spawnMask":1},{"id":"creature-55467","entityId":"entry-12207","position":[-315.2959,-160.108,138.6177],"yaw":-3.50653,"spawnMask":1},{"id":"creature-55468","entityId":"entry-13323","position":[-283.2459,-158.609,48.3477],"yaw":-3.33358,"spawnMask":1},{"id":"creature-55469","entityId":"entry-13323","position":[-294.3359,-158.624,53.3313],"yaw":0,"spawnMask":1},{"id":"creature-55470","entityId":"entry-13323","position":[-285.2209,-158.627,61.2841],"yaw":0,"spawnMask":1},{"id":"creature-56345","entityId":"entry-13323","position":[-334.1859,-139.956,-12.2333],"yaw":-1.0472,"spawnMask":1},{"id":"creature-56347","entityId":"entry-13323","position":[-331.8519,-140.063,-22.4463],"yaw":-5.03973,"spawnMask":1},{"id":"creature-56399","entityId":"entry-13323","position":[-325.6669,-140.059,-26.1913],"yaw":-1.48512,"spawnMask":1},{"id":"creature-56400","entityId":"entry-13323","position":[-291.2809,-160.119,-37.4903],"yaw":-0.226893,"spawnMask":1},{"id":"creature-56401","entityId":"entry-13323","position":[-291.9259,-160.215,-26.6753],"yaw":-2.00713,"spawnMask":1},{"id":"creature-56402","entityId":"entry-13323","position":[-283.3119,-160.174,-30.4183],"yaw":0,"spawnMask":1},{"id":"creature-56468","entityId":"entry-11789","position":[-235.7539,-200.89,-37.7183],"yaw":-1.67552,"spawnMask":1},{"id":"creature-56469","entityId":"entry-13323","position":[-280.9229,-160.174,-65.2273],"yaw":-0.418879,"spawnMask":1},{"id":"creature-56470","entityId":"entry-13323","position":[-291.7669,-160.127,-76.8083],"yaw":-5.02655,"spawnMask":1},{"id":"creature-56471","entityId":"entry-13323","position":[-285.9639,-160.162,-70.1073],"yaw":0,"spawnMask":1},{"id":"creature-56472","entityId":"entry-11789","position":[-229.2719,-200.968,-43.3673],"yaw":-1.81697,"spawnMask":1},{"id":"creature-56473","entityId":"entry-11789","position":[-222.4999,-200.884,-49.2983],"yaw":-3.01942,"spawnMask":1},{"id":"creature-56474","entityId":"entry-11789","position":[-228.5139,-200.971,-32.8783],"yaw":-0.59168,"spawnMask":1},{"id":"creature-56476","entityId":"entry-13323","position":[-305.1779,-160.61,-125.9543],"yaw":-0.558505,"spawnMask":1},{"id":"creature-56477","entityId":"entry-13323","position":[-314.9329,-160.61,-123.4533],"yaw":-4.38078,"spawnMask":1},{"id":"creature-56478","entityId":"entry-11789","position":[-218.9089,-200.577,-43.8873],"yaw":-2.8304,"spawnMask":1},{"id":"creature-56479","entityId":"entry-11789","position":[-216.9079,-200.956,-52.4023],"yaw":-0.525435,"spawnMask":1},{"id":"creature-56481","entityId":"entry-13323","position":[-304.3399,-160.156,-116.5813],"yaw":0,"spawnMask":1},{"id":"creature-56482","entityId":"entry-13323","position":[-216.9389,-137.866,-93.0693],"yaw":-4.55531,"spawnMask":1},{"id":"creature-56483","entityId":"entry-13323","position":[-206.3829,-137.866,-74.4663],"yaw":-5.14872,"spawnMask":1},{"id":"creature-56484","entityId":"entry-13323","position":[-210.1239,-137.866,-82.3823],"yaw":0,"spawnMask":1},{"id":"creature-56489","entityId":"entry-11789","position":[-244.0149,-199.864,-133.4933],"yaw":-1.39626,"spawnMask":1},{"id":"creature-56490","entityId":"entry-13323","position":[-201.5089,-137.949,-85.3583],"yaw":-4.8904,"spawnMask":1},{"id":"creature-56491","entityId":"entry-11789","position":[-327.3309,-169.177,-177.7373],"yaw":-2.32129,"spawnMask":1},{"id":"creature-56492","entityId":"entry-11789","position":[-317.4269,-169.723,-175.6913],"yaw":-0.122173,"spawnMask":1},{"id":"creature-56493","entityId":"entry-11789","position":[-311.6059,-170.996,-181.6183],"yaw":-0.610865,"spawnMask":1},{"id":"creature-56494","entityId":"entry-11789","position":[-244.4579,-200.156,-145.3023],"yaw":-1.50897,"spawnMask":1},{"id":"creature-56495","entityId":"entry-11789","position":[-246.7179,-201.557,-158.1593],"yaw":-4.07627,"spawnMask":1},{"id":"creature-56496","entityId":"entry-11789","position":[-236.3569,-199.689,-140.6843],"yaw":-4.33353,"spawnMask":1},{"id":"creature-56500","entityId":"entry-11789","position":[-251.0909,-200.599,-149.7503],"yaw":-3.03901,"spawnMask":1},{"id":"creature-56506","entityId":"entry-11789","position":[-388.4619,-146.872,-123.4883],"yaw":-1.15192,"spawnMask":1},{"id":"creature-56507","entityId":"entry-11789","position":[-325.3409,-169.087,-197.1063],"yaw":-2.65193,"spawnMask":1},{"id":"creature-56508","entityId":"entry-11789","position":[-327.9629,-168.932,-187.9203],"yaw":-2.91676,"spawnMask":1},{"id":"creature-56509","entityId":"entry-11789","position":[-390.2559,-147.173,-135.5353],"yaw":-6.01,"spawnMask":1},{"id":"creature-56510","entityId":"entry-11789","position":[-399.3879,-147.163,-140.5313],"yaw":-5.66725,"spawnMask":1},{"id":"creature-56511","entityId":"entry-11789","position":[-407.7499,-147.079,-132.9343],"yaw":-4.13682,"spawnMask":1},{"id":"creature-56513","entityId":"entry-11789","position":[-395.2589,-147.15,-115.7693],"yaw":-4.2461,"spawnMask":1},{"id":"creature-56514","entityId":"entry-11789","position":[-408.0039,-147.148,-116.6083],"yaw":-3.52021,"spawnMask":1},{"id":"creature-56521","entityId":"entry-11789","position":[-388.2109,-153.882,-249.9343],"yaw":-1.88496,"spawnMask":1},{"id":"creature-56522","entityId":"entry-11789","position":[-391.4319,-153.882,-240.9313],"yaw":-4.76475,"spawnMask":1},{"id":"creature-56523","entityId":"entry-11789","position":[-399.4169,-153.882,-245.8403],"yaw":-1.53589,"spawnMask":1},{"id":"creature-56524","entityId":"entry-13323","position":[-320.2489,-168.57,-254.5363],"yaw":-0.767945,"spawnMask":1},{"id":"creature-56525","entityId":"entry-11789","position":[-391.9739,-153.965,-258.8213],"yaw":-5.46163,"spawnMask":1},{"id":"creature-56526","entityId":"entry-11789","position":[-401.7179,-153.965,-255.8313],"yaw":-5.57879,"spawnMask":1},{"id":"creature-56527","entityId":"entry-11789","position":[-386.9029,-153.965,-259.1003],"yaw":-6.11241,"spawnMask":1},{"id":"creature-56528","entityId":"entry-13323","position":[-318.4809,-168.57,-242.6443],"yaw":-2.6529,"spawnMask":1},{"id":"creature-56529","entityId":"entry-13323","position":[-309.7229,-168.57,-243.6013],"yaw":0,"spawnMask":1},{"id":"creature-56530","entityId":"entry-13323","position":[-311.0619,-168.653,-251.8293],"yaw":-2.45964,"spawnMask":1},{"id":"creature-56531","entityId":"entry-13323","position":[-286.5059,-189.864,-213.7873],"yaw":-0.087266,"spawnMask":1},{"id":"creature-56532","entityId":"entry-13323","position":[-282.9059,-189.328,-224.0083],"yaw":-5.09636,"spawnMask":1},{"id":"creature-56533","entityId":"entry-13323","position":[-272.7909,-189.328,-210.8063],"yaw":-5.48033,"spawnMask":1},{"id":"creature-56534","entityId":"entry-13323","position":[-283.8679,-189.864,-208.4193],"yaw":0,"spawnMask":1},{"id":"creature-56536","entityId":"entry-12206","position":[70.4591,-218.277,-265.6193],"yaw":-0.087266,"spawnMask":1},{"id":"creature-56538","entityId":"entry-13601","position":[-201.4549,-202.653,-166.6943],"yaw":-6.07375,"spawnMask":1},{"id":"creature-56539","entityId":"entry-13323","position":[-212.7879,-204.016,-234.3353],"yaw":-0.820305,"spawnMask":1},{"id":"creature-56540","entityId":"entry-13323","position":[-219.2169,-204.016,-225.9533],"yaw":-4.38078,"spawnMask":1},{"id":"creature-56541","entityId":"entry-13323","position":[-211.3879,-204.016,-216.0433],"yaw":-1.18682,"spawnMask":1},{"id":"creature-56542","entityId":"entry-13323","position":[-205.1729,-204.504,-223.5513],"yaw":0,"spawnMask":1},{"id":"creature-56543","entityId":"entry-11789","position":[-194.7429,-197.542,-120.2643],"yaw":-5.74213,"spawnMask":1},{"id":"creature-56544","entityId":"entry-11789","position":[-180.2299,-196.847,-109.8103],"yaw":-0.05236,"spawnMask":1},{"id":"creature-56545","entityId":"entry-11789","position":[-188.3469,-197.287,-114.0713],"yaw":-5.2709,"spawnMask":1},{"id":"creature-56546","entityId":"entry-11789","position":[-198.3329,-197.153,-111.1553],"yaw":-1.95477,"spawnMask":1},{"id":"creature-56547","entityId":"entry-11789","position":[-201.2169,-197.496,-99.8323],"yaw":-4.98258,"spawnMask":1},{"id":"creature-88994","entityId":"entry-11789","position":[-184.6329,-196.472,-17.5853],"yaw":-4.01426,"spawnMask":1},{"id":"creature-88995","entityId":"entry-11789","position":[-175.2269,-196.472,-40.7373],"yaw":-3.00197,"spawnMask":1},{"id":"creature-88996","entityId":"entry-11789","position":[-188.6609,-196.472,-30.3653],"yaw":-5.84685,"spawnMask":1},{"id":"creature-88997","entityId":"entry-11789","position":[-168.4339,-196.472,-31.8543],"yaw":-1.72788,"spawnMask":1},{"id":"creature-88998","entityId":"entry-11789","position":[-183.3589,-196.472,-38.2783],"yaw":-4.06662,"spawnMask":1},{"id":"creature-88999","entityId":"entry-11789","position":[-175.4099,-196.434,-15.7693],"yaw":-2.20701,"spawnMask":1},{"id":"creature-89000","entityId":"entry-12207","position":[-121.3354,-233.882,13.6697],"yaw":-3.80482,"spawnMask":1},{"id":"creature-89005","entityId":"entry-12207","position":[-61.7615,-237.782,-91.5363],"yaw":-2.51327,"spawnMask":1},{"id":"creature-89007","entityId":"entry-12207","position":[-81.9747,-236.027,-163.6683],"yaw":-3.4383,"spawnMask":1},{"id":"creature-89008","entityId":"entry-11789","position":[23.9178,-199.434,-119.7643],"yaw":-2.68781,"spawnMask":1},{"id":"creature-89009","entityId":"entry-11789","position":[26.7403,-199.434,-105.7633],"yaw":-2.89725,"spawnMask":1},{"id":"creature-89010","entityId":"entry-11789","position":[28.4099,-199.434,-113.2243],"yaw":-3.52556,"spawnMask":1},{"id":"creature-89011","entityId":"entry-11789","position":[33.7961,-199.434,-104.5363],"yaw":-0.506145,"spawnMask":1},{"id":"creature-89012","entityId":"entry-11789","position":[36.6711,-199.431,-171.9803],"yaw":-4.45059,"spawnMask":1},{"id":"creature-89013","entityId":"entry-11789","position":[38.5921,-199.433,-161.2683],"yaw":-1.8675,"spawnMask":1},{"id":"creature-89014","entityId":"entry-11789","position":[39.1801,-199.431,-167.6333],"yaw":-2.30383,"spawnMask":1},{"id":"creature-89015","entityId":"entry-11789","position":[33.1516,-199.432,-165.5303],"yaw":-3.35103,"spawnMask":1},{"id":"creature-89016","entityId":"entry-11789","position":[38.9461,-199.517,-113.5813],"yaw":-6.03759,"spawnMask":1},{"id":"creature-89017","entityId":"entry-11789","position":[42.9711,-199.516,-167.7553],"yaw":-5.50949,"spawnMask":1},{"id":"creature-89018","entityId":"entry-12203","position":[-423.2339,-88.9136,-38.4183],"yaw":-3.45575,"spawnMask":1},{"id":"creature-89020","entityId":"entry-12207","position":[-40.3619,-235.544,59.7971],"yaw":-3.28122,"spawnMask":1},{"id":"creature-89025","entityId":"entry-13599","position":[-37.3637,-160.222,156.929],"yaw":-0.942478,"spawnMask":1},{"id":"creature-89026","entityId":"entry-13599","position":[-151.5379,-160.171,154.1225],"yaw":-5.49779,"spawnMask":1},{"id":"creature-89029","entityId":"entry-13599","position":[-21.9246,-160.171,205.1216],"yaw":-1.74533,"spawnMask":1},{"id":"creature-89030","entityId":"entry-13599","position":[-167.8449,-160.171,194.0811],"yaw":-4.27606,"spawnMask":1},{"id":"creature-89033","entityId":"entry-13599","position":[-47.749,-160.171,243.279],"yaw":-0.855211,"spawnMask":1},{"id":"creature-89034","entityId":"entry-13599","position":[-157.1012,-160.171,231.8439],"yaw":-2.00713,"spawnMask":1},{"id":"creature-89035","entityId":"entry-13599","position":[-121.383,-160.171,260.9167],"yaw":-2.80998,"spawnMask":1},{"id":"creature-89037","entityId":"entry-13599","position":[-80.2734,-160.171,264.5837],"yaw":-2.32129,"spawnMask":1},{"id":"creature-89040","entityId":"entry-12207","position":[13.9411,-218.903,-248.2123],"yaw":-5.39307,"spawnMask":1},{"id":"creature-89041","entityId":"entry-11789","position":[57.9801,-199.434,-242.4053],"yaw":-4.93928,"spawnMask":1},{"id":"creature-89042","entityId":"entry-11789","position":[51.8511,-199.434,-229.0413],"yaw":-4.36332,"spawnMask":1},{"id":"creature-89043","entityId":"entry-11789","position":[49.9681,-199.434,-238.7883],"yaw":-3.735,"spawnMask":1},{"id":"creature-89044","entityId":"entry-11789","position":[41.6211,-199.434,-233.3473],"yaw":-2.28638,"spawnMask":1},{"id":"creature-89045","entityId":"entry-11789","position":[59.9021,-199.517,-234.5673],"yaw":-2.77572,"spawnMask":1},{"id":"creature-89047","entityId":"entry-11784","position":[66.4621,-199.517,-216.3833],"yaw":-4.37615,"spawnMask":1},{"id":"creature-89052","entityId":"entry-11789","position":[76.8151,-199.434,-187.4863],"yaw":-4.08407,"spawnMask":1},{"id":"creature-89053","entityId":"entry-11789","position":[77.6841,-199.434,-171.9103],"yaw":-1.79769,"spawnMask":1},{"id":"creature-89054","entityId":"entry-11789","position":[75.5151,-199.434,-180.5243],"yaw":-2.21657,"spawnMask":1},{"id":"creature-89055","entityId":"entry-11789","position":[79.1871,-199.434,-192.3743],"yaw":-1.97222,"spawnMask":1},{"id":"creature-89056","entityId":"entry-11789","position":[81.1401,-199.434,-183.5513],"yaw":-0.558505,"spawnMask":1},{"id":"creature-89057","entityId":"entry-11789","position":[44.8951,-199.516,-173.9133],"yaw":-1.83066,"spawnMask":1},{"id":"creature-160510","entityId":"entry-12224","position":[-880.0059,-88.3074,-223.4123],"yaw":-6.02488,"spawnMask":1},{"id":"creature-160511","entityId":"entry-12224","position":[-786.4519,-86.3135,63.1652],"yaw":-3.48941,"spawnMask":1},{"id":"creature-203506","entityId":"entry-12237","position":[-836.1879,-85.3403,72.7604],"yaw":-3.54447,"spawnMask":1}],"roamingPacks":[{"id":"patrol-53990","name":"Celebrian Dryad Patrol","speed":1.15,"pathId":539900,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1111.4029,-66.259,-216.5383],[-1108.5029,-67.7507,-204.0663],[-1091.0929,-70.1779,-198.5133],[-1072.9729,-70.3041,-202.7943],[-1069.4629,-71.8098,-186.8833],[-1062.2999,-74.3797,-164.9213],[-1041.4049,-74.5662,-144.6423],[-1016.2439,-75.0229,-123.8823],[-996.4919,-75.485,-97.0363],[-1014.9139,-75.6544,-79.1383],[-1026.0429,-75.8388,-75.3243],[-1047.2539,-77.827,-91.5423],[-1057.3519,-74.8094,-106.7023],[-1043.4969,-74.8094,-126.9573],[-1047.6939,-74.7269,-154.7483],[-1060.6269,-74.3724,-175.4993],[-1067.5229,-71.0081,-196.5653],[-1075.8229,-68.7914,-217.0743],[-1090.2429,-66.3802,-231.1573],[-1108.9729,-65.3628,-236.2643],[-1114.5729,-65.374,-222.5163]],"members":[{"id":"member","entityId":"entry-11793","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54128","name":"Celebrian Dryad Patrol","speed":1.15,"pathId":541280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-974.4419,-78.504,-184.3853],[-979.7469,-78.4072,-190.5323],[-989.4629,-79.2019,-200.6113],[-982.5199,-78.6574,-194.4083],[-974.6349,-78.5023,-187.4753],[-968.3429,-78.8141,-177.6233],[-963.2149,-77.4637,-167.1883],[-961.8349,-75.4731,-161.4723],[-959.2969,-75.1688,-152.5153],[-954.8489,-75.0261,-136.8233],[-954.1359,-74.8389,-126.3483],[-957.5469,-74.585,-118.9023],[-964.8439,-75.2144,-111.3523],[-974.3159,-75.4206,-104.6213],[-982.8179,-75.6215,-98.5803],[-975.1429,-75.4628,-103.8103],[-964.2549,-75.2134,-110.5603],[-953.9829,-74.6759,-121.6473],[-955.1079,-75.0249,-132.0873],[-958.7459,-75.1123,-144.3693],[-960.8999,-75.1235,-159.3703],[-963.7749,-77.7652,-168.2993],[-965.9199,-78.5242,-174.9623]],"members":[{"id":"member","entityId":"entry-11793","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54326","name":"Sister of Celebras Patrol","speed":1.15,"pathId":543260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-1007.1939,-89.4286,-10.4363],[-1002.9129,-91.2753,-23.4943],[-1016.9789,-92.8033,-34.3063],[-1036.6419,-95.1593,-36.7163],[-1052.5429,-96.7913,-45.7173],[-1071.8929,-96.6304,-59.4183],[-1090.1229,-98.9514,-66.7493],[-1100.7029,-101.4177,-82.0953],[-1113.8729,-101.3372,-94.3923],[-1126.1829,-101.3372,-92.6863],[-1134.6729,-101.6858,-80.5813],[-1122.1629,-101.7266,-68.1713],[-1107.5229,-101.1923,-72.2333],[-1095.7129,-98.6402,-62.9573],[-1071.3429,-96.7457,-49.1763],[-1039.7499,-96.3287,-33.7923],[-1008.9809,-91.631,-23.8803],[-1012.0969,-89.2037,-10.1793],[-1023.9159,-88.5416,-4.3493],[-1022.4839,-90.5651,11.0767],[-1009.8869,-90.0799,9.7397],[-1004.0329,-89.8576,-5.1133]],"members":[{"id":"member","entityId":"entry-11794","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54652","name":"Cavern Lurker Patrol","speed":1.15,"pathId":546520,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-797.6579,-86.5967,70.0504],[-741.9649,-86.598,51.8182],[-715.0489,-86.5979,59.4902],[-741.9649,-86.598,51.8182]],"members":[{"id":"member","entityId":"entry-12223","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-54733","name":"Putridus Shadowstalker Patrol","speed":1.15,"pathId":547330,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-673.5739,-81.1173,-233.3423],[-688.2349,-81.1173,-204.2413],[-709.6689,-81.1173,-203.2893],[-688.2349,-81.1173,-204.2413]],"members":[{"id":"member","entityId":"entry-11792","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55087","name":"Corruptor Patrol","speed":1.15,"pathId":550870,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-822.0379,-62.1717,-410.5493],[-811.5409,-61.9302,-405.4033],[-805.0669,-62.6637,-394.3503],[-808.7159,-62.2627,-398.8713],[-815.1669,-61.9539,-405.5843],[-822.0719,-62.1581,-409.8563],[-832.1189,-61.909,-412.9073],[-837.5939,-64.6189,-396.4333],[-837.4069,-62.0582,-408.1223],[-827.9219,-62.0557,-414.4803]],"members":[{"id":"member","entityId":"entry-12217","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55098","name":"Primordial Behemoth Patrol","speed":1.15,"pathId":550980,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-363.7509,-89.0936,-23.7733],[-361.8869,-99.32,-3.3443],[-346.4279,-111.9695,24.8437],[-291.3199,-118.8013,37.2987],[-256.4859,-137.502,-6.5413],[-244.2549,-140.1,-51.9263],[-256.4859,-137.502,-6.5413],[-291.3199,-118.8013,37.2987],[-346.4279,-111.9695,24.8437],[-361.8869,-99.32,-3.3443]],"members":[{"id":"member","entityId":"entry-12206","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55118","name":"Stolid Snapjaw Patrol","speed":1.15,"pathId":551180,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-626.9929,-125.4108,221.1783],[-622.5539,-125.4108,244.5965],[-629.3739,-125.4108,263.9747],[-625.2899,-125.4108,227.239],[-634.4469,-125.4108,194.8138],[-640.1759,-125.4108,171.2125],[-649.6599,-125.4108,153.9399],[-664.0619,-125.4108,152.1157],[-666.5659,-125.4108,168.655],[-641.7549,-125.4108,193.25]],"members":[{"id":"member","entityId":"entry-13599","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55458","name":"Thessala Hydra Patrol","speed":1.15,"pathId":554580,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-347.2659,-160.108,172.455],[-380.7539,-160.108,84.9049]],"members":[{"id":"member","entityId":"entry-12207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55462","name":"Thessala Hydra Patrol","speed":1.15,"pathId":554620,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-341.5809,-160.108,88.0846],[-344.8379,-160.107,168.0567]],"members":[{"id":"member","entityId":"entry-12207","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55465","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":554650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-315.0909,-158.718,54.0127],[-285.5739,-158.705,54.9196],[-324.6929,-158.717,49.8634],[-313.5199,-159.942,1.7327],[-280.4869,-160.257,-52.8363],[-315.1799,-160.103,6.2977],[-326.3529,-158.717,48.8122]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-55471","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":554710,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-266.9069,-130.156,13.5317],[-297.3939,-117.9667,37.3487],[-344.7259,-112.5787,26.0347],[-366.7399,-98.8482,-2.0383],[-365.3129,-88.9971,-31.2753],[-366.1299,-99.0413,-1.7573],[-342.9609,-112.7476,25.9887],[-293.5079,-118.8417,34.2257],[-266.2389,-130.639,12.3527],[-249.8819,-140.473,-38.5073]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-56485","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":564850,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-217.0429,-200.845,-46.8613],[-218.7859,-199.48,-84.8543],[-192.3939,-197.211,-110.6233],[-222.5399,-198.087,-136.9973],[-215.0079,-198.641,-91.7223],[-221.6149,-201.055,-52.4933],[-171.4899,-196.555,-38.6213],[-166.7509,-196.555,-29.0453],[-178.4459,-196.426,-13.5593],[-187.8569,-196.555,-29.9023],[-194.8369,-197.358,-44.0833]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-56501","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":565010,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-243.6319,-201.426,-156.9943],[-213.0719,-203.689,-169.3663],[-220.2859,-204.101,-229.5393],[-277.9339,-189.789,-234.6353],[-223.1679,-204.1,-229.0733],[-215.0139,-203.687,-170.0933]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-56515","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":565150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-379.2899,-146.446,-196.2043],[-395.4629,-147.167,-140.9763],[-387.1899,-147.01,-121.7133],[-404.2499,-147.147,-115.2723],[-412.1869,-147.039,-129.8963],[-398.2179,-147.159,-143.3583],[-384.4009,-145.875,-184.7903],[-391.6929,-153.965,-247.1863],[-316.8979,-168.653,-249.6313],[-323.5179,-169.549,-181.3903],[-318.3309,-168.653,-249.6833],[-385.6779,-153.964,-256.7143]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-88989","name":"Theradrim Guardian Patrol","speed":1.15,"pathId":889890,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-175.5899,-137.775,-121.5163],[-218.4369,-137.775,-128.6753],[-210.2189,-137.95,-84.1363],[-222.7229,-137.774,-128.2493],[-205.4289,-137.774,-131.5403],[-146.1133,-137.776,-112.9513],[-128.9689,-138.757,-60.1513],[-74.7399,-152.943,19.6887],[-95.2579,-157.859,109.0117],[-74.7399,-152.943,19.6887],[-128.9689,-138.757,-60.1513],[-145.5912,-137.775,-108.5183]],"members":[{"id":"member","entityId":"entry-11784","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-89002","name":"Rotgrip Patrol","speed":1.15,"pathId":890020,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-108.6355,-228.652,81.0856],[-104.6605,-232.282,5.1477],[-73.5018,-236.142,-85.7863],[-88.8722,-233.204,-140.0783],[-73.5018,-236.142,-85.7863],[-104.6605,-232.282,5.1477]],"members":[{"id":"member","entityId":"entry-13596","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-160507","name":"Cavern Shambler Patrol","speed":1.15,"pathId":1605070,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-814.3589,-86.5724,67.0679],[-817.4189,-86.5575,60.156],[-807.5689,-86.5958,52.1714],[-812.3559,-86.5813,62.9619],[-805.1599,-86.5957,76.4915],[-817.8059,-86.4892,76.3465],[-810.9199,-86.5867,68.2659],[-823.1409,-86.4707,66.5388],[-803.0139,-86.5976,57.6939],[-801.2529,-86.5976,66.7084],[-810.7619,-86.5895,67.4523],[-800.5969,-86.5957,75.3357]],"members":[{"id":"member","entityId":"entry-12224","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-160508","name":"Cavern Shambler Patrol","speed":1.15,"pathId":1605080,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-698.6539,-86.5979,54.6277],[-709.4479,-86.5979,57.8117],[-720.7459,-86.5979,58.503],[-733.2809,-86.5979,55.2649],[-742.1019,-86.5979,53.117],[-757.3169,-86.5979,57.2821],[-769.3829,-86.5611,62.2837],[-781.7119,-86.2173,63.2457],[-775.0559,-86.3534,63.0482],[-765.9059,-86.598,60.3897],[-748.3869,-86.598,53.555],[-741.4909,-86.598,54.033],[-732.0609,-86.598,56.4029],[-719.4879,-86.598,59.3425],[-700.7199,-86.598,55.0354]],"members":[{"id":"member","entityId":"entry-12224","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-160509","name":"Cavern Shambler Patrol","speed":1.15,"pathId":1605090,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-885.4259,-106.2469,-69.3063],[-880.0399,-106.2469,-63.2913],[-873.4279,-106.2469,-57.5973],[-871.3639,-106.2469,-46.4633],[-872.9089,-106.2469,-37.0873],[-879.8719,-106.3975,-26.5633],[-875.3999,-106.4054,-27.9693],[-872.0539,-106.2469,-35.2403],[-871.0909,-106.2469,-46.0143],[-874.4589,-106.2469,-56.4643]],"members":[{"id":"member","entityId":"entry-12224","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-54445","name":"Noxxion","position":[-1196.9529,-109.0994,-44.3053]},{"id":"creature-54474","name":"Razorlash","position":[-1045.4399,-91.6015,136.8847]},{"id":"creature-54579","name":"Lord Vyletongue","position":[-815.4269,-76.7906,-72.6103]},{"id":"creature-55104","name":"Celebras the Cursed","position":[-792.6589,-115.6893,225.0131]},{"id":"creature-89018","name":"Landslide","position":[-423.2339,-88.9136,-38.4183]},{"id":"creature-56538","name":"Tinkerer Gizlock","position":[-201.4549,-202.653,-166.6943]},{"id":"creature-55342","name":"Princess Theradras","position":[-94.451,-153.581,230.2299]},{"id":"creature-203506","name":"Meshlok the Harvester","position":[-836.1879,-85.3403,72.7604]}],"objectiveOrder":[{"id":"creature-54445","name":"Noxxion","position":[-1196.9529,-109.0994,-44.3053]},{"id":"creature-54474","name":"Razorlash","position":[-1045.4399,-91.6015,136.8847]},{"id":"creature-54579","name":"Lord Vyletongue","position":[-815.4269,-76.7906,-72.6103]},{"id":"creature-55104","name":"Celebras the Cursed","position":[-792.6589,-115.6893,225.0131]},{"id":"creature-89018","name":"Landslide","position":[-423.2339,-88.9136,-38.4183]},{"id":"creature-56538","name":"Tinkerer Gizlock","position":[-201.4549,-202.653,-166.6943]},{"id":"creature-55342","name":"Princess Theradras","position":[-94.451,-153.581,230.2299]},{"id":"creature-203506","name":"Meshlok the Harvester","position":[-836.1879,-85.3403,72.7604]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32886,"id":178908,"map":349,"orientation":-2.04204,"phaseMask":1,"position_x":989.642,"position_y":-392.402,"position_z":-50.3576,"rotation0":0,"rotation1":0,"rotation2":-0.852641,"rotation3":0.522496,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32887,"id":178908,"map":349,"orientation":0,"phaseMask":1,"position_x":1064.95,"position_y":-375.428,"position_z":-36.3821,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32888,"id":178908,"map":349,"orientation":1.50098,"phaseMask":1,"position_x":1041.07,"position_y":-330.69,"position_z":-38.209,"rotation0":0,"rotation1":0,"rotation2":0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32889,"id":178908,"map":349,"orientation":-0.593412,"phaseMask":1,"position_x":951.301,"position_y":-351.813,"position_z":-50.2403,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32890,"id":178908,"map":349,"orientation":-2.21657,"phaseMask":1,"position_x":1083.37,"position_y":-290.819,"position_z":-72.6456,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32891,"id":178561,"map":349,"orientation":-1.53589,"phaseMask":1,"position_x":1060.74,"position_y":-268.217,"position_z":-73.4903,"rotation0":-0.000001,"rotation1":0.000001,"rotation2":-0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32892,"id":178559,"map":349,"orientation":3.0456,"phaseMask":1,"position_x":937.838,"position_y":-378.811,"position_z":-50.3032,"rotation0":0,"rotation1":0,"rotation2":0.998848,"rotation3":0.0479779,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32893,"id":178908,"map":349,"orientation":2.49582,"phaseMask":1,"position_x":1037.18,"position_y":-256.586,"position_z":-72.4103,"rotation0":0,"rotation1":0,"rotation2":0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32894,"id":142144,"map":349,"orientation":0,"phaseMask":1,"position_x":926.314,"position_y":-292.831,"position_z":-49.8022,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32895,"id":178568,"map":349,"orientation":-0.218167,"phaseMask":1,"position_x":1032.63,"position_y":-243.233,"position_z":-72.6557,"rotation0":0,"rotation1":0.000001,"rotation2":-0.108867,"rotation3":0.994056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32896,"id":178569,"map":349,"orientation":-1.87623,"phaseMask":1,"position_x":1007.36,"position_y":-232.888,"position_z":-67.5961,"rotation0":-0.000001,"rotation1":0,"rotation2":-0.806444,"rotation3":0.59131,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32897,"id":178908,"map":349,"orientation":1.22173,"phaseMask":1,"position_x":960.01,"position_y":-259.707,"position_z":-49.0976,"rotation0":0,"rotation1":0,"rotation2":0.573576,"rotation3":0.819152,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32898,"id":178908,"map":349,"orientation":0.994838,"phaseMask":1,"position_x":924.664,"position_y":-231.712,"position_z":-46.6095,"rotation0":0,"rotation1":0,"rotation2":0.477159,"rotation3":0.878817,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32899,"id":178567,"map":349,"orientation":-0.218167,"phaseMask":1,"position_x":1013.67,"position_y":-227.789,"position_z":-67.5961,"rotation0":0,"rotation1":0.000001,"rotation2":-0.108867,"rotation3":0.994056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32900,"id":2040,"map":349,"orientation":-2.11185,"phaseMask":1,"position_x":943.325,"position_y":-215.377,"position_z":-46.5547,"rotation0":0,"rotation1":0,"rotation2":-0.870356,"rotation3":0.492423,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32901,"id":178564,"map":349,"orientation":2.25148,"phaseMask":1,"position_x":1091.48,"position_y":-239.483,"position_z":-75.062,"rotation0":0.000001,"rotation1":0,"rotation2":0.902585,"rotation3":0.430511,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32902,"id":178562,"map":349,"orientation":0.446882,"phaseMask":1,"position_x":1114.76,"position_y":-261.923,"position_z":-78.7819,"rotation0":0.023724,"rotation1":0.021276,"rotation2":0.221053,"rotation3":0.974741,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32903,"id":178566,"map":349,"orientation":-0.218167,"phaseMask":1,"position_x":1039.73,"position_y":-204.988,"position_z":-71.6528,"rotation0":0,"rotation1":0.000001,"rotation2":-0.108867,"rotation3":0.994056,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32904,"id":178565,"map":349,"orientation":-2.74889,"phaseMask":1,"position_x":1047.68,"position_y":-204.189,"position_z":-70.4171,"rotation0":0.000001,"rotation1":0,"rotation2":0.980785,"rotation3":-0.19509,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32905,"id":178563,"map":349,"orientation":0.445059,"phaseMask":1,"position_x":1077.81,"position_y":-208.096,"position_z":-74.1736,"rotation0":0,"rotation1":0.000001,"rotation2":0.220697,"rotation3":0.975342,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32906,"id":178570,"map":349,"orientation":0.959931,"phaseMask":1,"position_x":1141.01,"position_y":-191.389,"position_z":-79.012,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32907,"id":178908,"map":349,"orientation":0.942478,"phaseMask":1,"position_x":941.809,"position_y":-136.609,"position_z":-61.1079,"rotation0":0,"rotation1":0,"rotation2":0.453991,"rotation3":0.891006,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32908,"id":178908,"map":349,"orientation":1.53589,"phaseMask":1,"position_x":883.578,"position_y":-67.2601,"position_z":-59.2139,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32909,"id":178908,"map":349,"orientation":-2.18166,"phaseMask":1,"position_x":983.297,"position_y":-67.8987,"position_z":-62.0587,"rotation0":0,"rotation1":0,"rotation2":-0.88701,"rotation3":0.461749,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32910,"id":178908,"map":349,"orientation":0.820305,"phaseMask":1,"position_x":960.397,"position_y":-10.6216,"position_z":-62.9832,"rotation0":0,"rotation1":0,"rotation2":0.398749,"rotation3":0.91706,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32911,"id":142144,"map":349,"orientation":1.50098,"phaseMask":1,"position_x":879.252,"position_y":-60.7925,"position_z":-59.1787,"rotation0":0,"rotation1":0,"rotation2":0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32912,"id":142144,"map":349,"orientation":-0.558505,"phaseMask":1,"position_x":731.282,"position_y":-113.686,"position_z":-56.2199,"rotation0":0,"rotation1":0,"rotation2":-0.275637,"rotation3":0.961262,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32913,"id":142144,"map":349,"orientation":0.017453,"phaseMask":1,"position_x":618.634,"position_y":-375.951,"position_z":-52.0194,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32914,"id":1734,"map":349,"orientation":0,"phaseMask":1,"position_x":591.887,"position_y":-392.592,"position_z":-52.0194,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32915,"id":142144,"map":349,"orientation":-1.50098,"phaseMask":1,"position_x":716.474,"position_y":-509.132,"position_z":-36.4142,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32916,"id":142144,"map":349,"orientation":0.750492,"phaseMask":1,"position_x":802.402,"position_y":85.6517,"position_z":-86.3652,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930417,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32917,"id":178560,"map":349,"orientation":1.45735,"phaseMask":1,"position_x":650.99,"position_y":74.458,"position_z":-86.8651,"rotation0":0,"rotation1":0,"rotation2":0.665882,"rotation3":0.746057,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32918,"id":2040,"map":349,"orientation":2.30383,"phaseMask":1,"position_x":318.675,"position_y":13.3193,"position_z":-130.733,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32919,"id":142143,"map":349,"orientation":-1.91986,"phaseMask":1,"position_x":317.784,"position_y":163.933,"position_z":-131.715,"rotation0":0,"rotation1":0,"rotation2":-0.819151,"rotation3":0.573577,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32920,"id":142144,"map":349,"orientation":-3.08923,"phaseMask":1,"position_x":347.821,"position_y":249.205,"position_z":-94.2677,"rotation0":0,"rotation1":0,"rotation2":-0.999657,"rotation3":0.0261783,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32921,"id":2040,"map":349,"orientation":1.71042,"phaseMask":1,"position_x":349.508,"position_y":-405.274,"position_z":-124.867,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32922,"id":2047,"map":349,"orientation":-0.523599,"phaseMask":1,"position_x":225.88,"position_y":-381.777,"position_z":-160.314,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":2700,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32923,"id":142143,"map":349,"orientation":-2.14675,"phaseMask":1,"position_x":228.621,"position_y":-358.796,"position_z":-160.849,"rotation0":0,"rotation1":0,"rotation2":-0.878816,"rotation3":0.477161,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32924,"id":2045,"map":349,"orientation":1.95477,"phaseMask":1,"position_x":55.738,"position_y":-123.624,"position_z":-205.301,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32925,"id":2045,"map":349,"orientation":2.60054,"phaseMask":1,"position_x":-8.19321,"position_y":-211.133,"position_z":-207.641,"rotation0":0,"rotation1":0,"rotation2":0.96363,"rotation3":0.267239,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32926,"id":2045,"map":349,"orientation":-1.3439,"phaseMask":1,"position_x":-32.5801,"position_y":-134.583,"position_z":-208.084,"rotation0":0,"rotation1":0,"rotation2":-0.622513,"rotation3":0.782609,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32927,"id":142143,"map":349,"orientation":-2.37365,"phaseMask":1,"position_x":7.35923,"position_y":-12.3294,"position_z":-131.156,"rotation0":0,"rotation1":0,"rotation2":-0.927184,"rotation3":0.374606,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32928,"id":1734,"map":349,"orientation":2.35619,"phaseMask":1,"position_x":-157.535,"position_y":-284.373,"position_z":-170.383,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32929,"id":142144,"map":349,"orientation":-2.72271,"phaseMask":1,"position_x":-146.257,"position_y":-268.381,"position_z":-170.419,"rotation0":0,"rotation1":0,"rotation2":-0.978147,"rotation3":0.207914,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":62461,"id":142143,"map":349,"orientation":-1.16937,"phaseMask":1,"position_x":209.111,"position_y":-181.189,"position_z":-131.517,"rotation0":0,"rotation1":0,"rotation2":-0.551937,"rotation3":0.833886,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":62470,"id":142143,"map":349,"orientation":-1.85005,"phaseMask":1,"position_x":-89.0383,"position_y":-389.406,"position_z":-189.896,"rotation0":0,"rotation1":0,"rotation2":-0.798636,"rotation3":0.601815,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":62471,"id":142143,"map":349,"orientation":0.942477,"phaseMask":1,"position_x":308.052,"position_y":-88.2435,"position_z":-131.01,"rotation0":0,"rotation1":0,"rotation2":0.45399,"rotation3":0.891007,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63112,"id":142144,"map":349,"orientation":1.5708,"phaseMask":1,"position_x":937.457,"position_y":-394.879,"position_z":-50.2743,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63135,"id":142144,"map":349,"orientation":0.977383,"phaseMask":1,"position_x":640.385,"position_y":-101.812,"position_z":-56.1699,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63136,"id":142144,"map":349,"orientation":-0.349065,"phaseMask":1,"position_x":992.133,"position_y":-1.21648,"position_z":-62.5453,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63137,"id":142144,"map":349,"orientation":-1.32645,"phaseMask":1,"position_x":525.289,"position_y":230.219,"position_z":-94.0493,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63146,"id":142144,"map":349,"orientation":-1.58825,"phaseMask":1,"position_x":677.736,"position_y":-382.136,"position_z":-52.0194,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63147,"id":142144,"map":349,"orientation":2.74016,"phaseMask":1,"position_x":828.923,"position_y":-370.214,"position_z":-58.7417,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.199371,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63965,"id":2040,"map":349,"orientation":-0.523598,"phaseMask":1,"position_x":225.88,"position_y":-381.777,"position_z":-160.314,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63966,"id":2040,"map":349,"orientation":1.51844,"phaseMask":1,"position_x":814.429,"position_y":-238.968,"position_z":-74.3798,"rotation0":0,"rotation1":0,"rotation2":0.688356,"rotation3":0.725373,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63967,"id":2040,"map":349,"orientation":-2.47837,"phaseMask":1,"position_x":103.565,"position_y":-257.051,"position_z":-167.439,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63968,"id":2040,"map":349,"orientation":-0.191985,"phaseMask":1,"position_x":719.844,"position_y":-389.394,"position_z":-52.0194,"rotation0":0,"rotation1":0,"rotation2":-0.0958451,"rotation3":0.995396,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":63969,"id":2040,"map":349,"orientation":1.23918,"phaseMask":1,"position_x":-93.9523,"position_y":-311.759,"position_z":-170.417,"rotation0":0,"rotation1":0,"rotation2":0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64046,"id":2045,"map":349,"orientation":-0.383971,"phaseMask":1,"position_x":-15.7328,"position_y":-99.223,"position_z":-207.312,"rotation0":0,"rotation1":0,"rotation2":-0.190808,"rotation3":0.981627,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64047,"id":2045,"map":349,"orientation":3.07177,"phaseMask":1,"position_x":1.16174,"position_y":-258.687,"position_z":-208.415,"rotation0":0,"rotation1":0,"rotation2":0.999391,"rotation3":0.0349043,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/Mauradon":"42cee0ea3bdeeabaddeb2f118cae8be5ae2756ab4b0ec2978eabe6f977ef4b99","patch/World/maps/Mauradon":"5826acde9de47e6748aa7b8bd5425e931ac4b455cf8fe7517062c2bf3202d2b5"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/maraudon/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["33/33 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"ragefire-chasm","title":"Ragefire Chasm","mapId":389,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[13,25]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Ragefire Chasm","theme":"Instanced dungeon","summary":"Fight through Ragefire Chasm, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Ragefire Chasm...","unchartedAreaName":"Uncharted Ragefire Chasm","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":404.928},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/389-orgrimmarinstance/visual.glb","checksum":"81037802c292cddc9cfe3606e90bb27525945f474e2aee41baa0b3f60934db9f","size":3035420,"triangleCount":93703}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/389-orgrimmarinstance/collision.glb","checksum":"7e690b5792ddc9f0e096ea537fd46f5ba999d72497bbd9efb7fd463b2c9a5862","size":762756,"triangleCount":88071}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/389-orgrimmarinstance/navigation.glb","checksum":"479f5bf477d1a5bbbcc1a2de078fcd04dfc086c15069257a71c1ba1e07fb4ecc","size":245956,"triangleCount":18137}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-121.7279,-71.9525,-35.1396],"max":[440.6721,39.7981,416.9012]},"entrance":{"name":"Ragefire Chasm Entrance","footPosition":[-76.7279,-5.8637,91.9272],"forward":[0.9927077551855392,0,-0.12054589497153118],"yaw":1.6916360958719794},"areas":[{"id":"entrance","name":"Ragefire Chasm Entrance","center":[-76.7279,-5.8637,91.9272],"radius":35},{"id":"area-oggleflint","name":"Oggleflint's Encounter","center":[74.6301,-26.8276,145.4599],"radius":42},{"id":"area-taragaman-the-hungerer","name":"Taragaman the Hungerer's Encounter","center":[171.8251,-6.7731,256.8322],"radius":42},{"id":"area-jergosh-the-invoker","name":"Jergosh the Invoker's Encounter","center":[303.8931,-9.8247,315.9712],"radius":42},{"id":"area-bazzalan","name":"Bazzalan's Encounter","center":[311.9491,19.7981,252.7922],"radius":42}],"entities":{"entry-11320":{"id":"entry-11320","kind":"mob","name":"Earthborer","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18070","name":"Earthborer Acid","spellId":18070,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6671,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11010-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1885,"labelHeight":0.7785,"markerRadius":1.5392}}},"entry-11321":{"id":"entry-11321","kind":"mob","name":"Molten Elemental","combat":{"level":13,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-2075-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1656,"labelHeight":3.6208,"markerRadius":1.7178}}},"entry-11319":{"id":"entry-11319","kind":"mob","name":"Ragefire Shaman","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11610-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.7502,"markerRadius":0.65}}},"entry-11318":{"id":"entry-11318","kind":"mob","name":"Ragefire Trogg","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4014,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11609-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0503,"markerRadius":0.65}}},"entry-11517":{"id":"entry-11517","kind":"boss","name":"Oggleflint","title":"Dungeon Boss","hasLoot":true,"combat":{"level":16,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":7903,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11611-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3504,"markerRadius":0.65}}},"entry-11322":{"id":"entry-11322","kind":"mob","name":"Searing Blade Cultist","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-18266","name":"Curse of Agony","spellId":18266,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4908,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11434-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-11323":{"id":"entry-11323","kind":"mob","name":"Searing Blade Enforcer","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8242","name":"Shield Slam","spellId":8242,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6353,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8242","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11430-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-11324":{"id":"entry-11324","kind":"mob","name":"Searing Blade Warlock","combat":{"level":14,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-20791","name":"Shadow Bolt","spellId":20791,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5555,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11438-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-11520":{"id":"entry-11520","kind":"boss","name":"Taragaman the Hungerer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":16,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11970","name":"Fire Nova","spellId":11970,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4746,"damageMultiplier":0.82,"radius":11},{"id":"spell-18072","name":"Uppercut","spellId":18072,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4746,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-7970-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0115,"labelHeight":6.5047,"markerRadius":0.9622}}},"entry-11518":{"id":"entry-11518","kind":"boss","name":"Jergosh the Invoker","title":"Dungeon Boss","hasLoot":true,"combat":{"level":16,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5094,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-11429-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-11519":{"id":"entry-11519","kind":"boss","name":"Bazzalan","title":"Dungeon Boss","hasLoot":true,"combat":{"level":16,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":6713,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ragefire-chasm/creatures/display-2007-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0048,"labelHeight":3.0953,"markerRadius":0.8912}}}},"staticSpawns":[{"id":"creature-38041","entityId":"entry-11320","position":[-27.8881,-9.3154,78.9827],"yaw":-1.70311,"spawnMask":1},{"id":"creature-38042","entityId":"entry-11321","position":[-36.4575,-9.7967,64.6609],"yaw":-0.809754,"spawnMask":1},{"id":"creature-38043","entityId":"entry-11320","position":[-56.9314,-9.8041,56.5779],"yaw":-3.57792,"spawnMask":1},{"id":"creature-38044","entityId":"entry-11320","position":[-2.3057,-6.5109,73.918],"yaw":-2.57425,"spawnMask":1},{"id":"creature-38045","entityId":"entry-11320","position":[-49.1145,-9.3941,44.5916],"yaw":-4.06767,"spawnMask":1},{"id":"creature-38046","entityId":"entry-11320","position":[33.4021,-18.0685,69.0898],"yaw":-5.36449,"spawnMask":1},{"id":"creature-38047","entityId":"entry-11320","position":[56.2171,-21.2864,71.5894],"yaw":-3.7001,"spawnMask":1},{"id":"creature-38048","entityId":"entry-11320","position":[22.8883,-5.4329,152.0913],"yaw":-1.72232,"spawnMask":1},{"id":"creature-38049","entityId":"entry-11319","position":[63.8861,-41.0816,102.9001],"yaw":-5.37443,"spawnMask":1},{"id":"creature-38050","entityId":"entry-11318","position":[84.3501,-45.2945,85.0223],"yaw":-5.39606,"spawnMask":1},{"id":"creature-42629","entityId":"entry-11319","position":[72.8201,-46.4382,48.9671],"yaw":-2.6529,"spawnMask":1},{"id":"creature-43579","entityId":"entry-11318","position":[75.2651,-45.8089,54.2854],"yaw":-2.93215,"spawnMask":1},{"id":"creature-43580","entityId":"entry-11319","position":[68.9451,-42.7714,88.1326],"yaw":-0.715585,"spawnMask":1},{"id":"creature-43581","entityId":"entry-11318","position":[69.3791,-41.2131,100.5636],"yaw":-0.975298,"spawnMask":1},{"id":"creature-43582","entityId":"entry-11319","position":[74.7631,-27.174,107.1911],"yaw":-5.74279,"spawnMask":1},{"id":"creature-43583","entityId":"entry-11318","position":[79.5351,-28.6137,110.6566],"yaw":-2.53152,"spawnMask":1},{"id":"creature-44184","entityId":"entry-11321","position":[21.6861,-6.0066,160.9364],"yaw":-5.00078,"spawnMask":1},{"id":"creature-48637","entityId":"entry-11319","position":[89.6351,-45.8731,79.9047],"yaw":-4.35569,"spawnMask":1},{"id":"creature-48638","entityId":"entry-11318","position":[89.2101,-47.1477,63.2421],"yaw":-2.21657,"spawnMask":1},{"id":"creature-48639","entityId":"entry-11319","position":[101.4981,-45.857,41.3436],"yaw":-1.31717,"spawnMask":1},{"id":"creature-48640","entityId":"entry-11318","position":[87.8361,-47.4579,41.6962],"yaw":-0.041957,"spawnMask":1},{"id":"creature-48642","entityId":"entry-11320","position":[95.6241,-17.6395,120.0733],"yaw":-0.190191,"spawnMask":1},{"id":"creature-48643","entityId":"entry-11319","position":[75.1231,-26.8775,133.9415],"yaw":-3.74643,"spawnMask":1},{"id":"creature-48644","entityId":"entry-11517","position":[74.6301,-26.8276,145.4599],"yaw":-4.39823,"spawnMask":1},{"id":"creature-48645","entityId":"entry-11318","position":[81.1191,-26.5906,134.7148],"yaw":-2.3911,"spawnMask":1},{"id":"creature-48646","entityId":"entry-11321","position":[38.4261,-6.7143,158.7967],"yaw":-5.17827,"spawnMask":1},{"id":"creature-48647","entityId":"entry-11318","position":[127.4911,-51.247,36.9488],"yaw":-1.13289,"spawnMask":1},{"id":"creature-48649","entityId":"entry-11318","position":[131.8051,-49.7001,105.5046],"yaw":-3.33479,"spawnMask":1},{"id":"creature-48650","entityId":"entry-11318","position":[110.4751,-44.8329,109.5463],"yaw":-5.4162,"spawnMask":1},{"id":"creature-48651","entityId":"entry-11318","position":[156.3631,-49.3354,46.9638],"yaw":-4.95529,"spawnMask":1},{"id":"creature-48652","entityId":"entry-11319","position":[138.1521,-49.8281,99.4969],"yaw":-4.81248,"spawnMask":1},{"id":"creature-48653","entityId":"entry-11318","position":[165.0671,-44.2943,66.3996],"yaw":-1.3439,"spawnMask":1},{"id":"creature-48654","entityId":"entry-11318","position":[165.7381,-44.6451,75.1824],"yaw":-5.07891,"spawnMask":1},{"id":"creature-48656","entityId":"entry-11318","position":[144.7511,-49.8236,101.631],"yaw":-4.29193,"spawnMask":1},{"id":"creature-48657","entityId":"entry-11319","position":[193.8121,-48.6322,78.7191],"yaw":-5.02655,"spawnMask":1},{"id":"creature-48658","entityId":"entry-11318","position":[193.6921,-48.8725,62.3448],"yaw":-0.279253,"spawnMask":1},{"id":"creature-48659","entityId":"entry-11318","position":[188.8631,-51.9525,100.9829],"yaw":-0.762733,"spawnMask":1},{"id":"creature-48660","entityId":"entry-11318","position":[189.2981,-48.6322,76.8529],"yaw":-4.76475,"spawnMask":1},{"id":"creature-48661","entityId":"entry-11318","position":[167.7961,-49.5472,98.7157],"yaw":-0.060824,"spawnMask":1},{"id":"creature-48662","entityId":"entry-11319","position":[180.9681,-48.483,67.8631],"yaw":-2.17095,"spawnMask":1},{"id":"creature-48663","entityId":"entry-11318","position":[182.5131,-50.1309,40.2954],"yaw":-1.43574,"spawnMask":1},{"id":"creature-48664","entityId":"entry-11321","position":[179.1721,-38.051,113.9069],"yaw":-4.56215,"spawnMask":1},{"id":"creature-48665","entityId":"entry-11318","position":[204.0121,-48.3803,43.4177],"yaw":-1.58825,"spawnMask":1},{"id":"creature-48666","entityId":"entry-11318","position":[197.2091,-48.6322,74.8666],"yaw":-5.11381,"spawnMask":1},{"id":"creature-48667","entityId":"entry-11318","position":[196.3621,-48.3803,46.744],"yaw":-2.26893,"spawnMask":1},{"id":"creature-48668","entityId":"entry-11319","position":[197.1711,-49.925,9.8604],"yaw":-4.87834,"spawnMask":1},{"id":"creature-48670","entityId":"entry-11319","position":[207.9841,-48.9559,57.5682],"yaw":-3.31393,"spawnMask":1},{"id":"creature-48671","entityId":"entry-11319","position":[198.9091,-48.3803,42.3472],"yaw":-2.04204,"spawnMask":1},{"id":"creature-48672","entityId":"entry-11318","position":[212.6041,-48.4382,85.865],"yaw":-3.38594,"spawnMask":1},{"id":"creature-48673","entityId":"entry-11318","position":[217.8941,-48.9137,59.6643],"yaw":-0.231919,"spawnMask":1},{"id":"creature-48674","entityId":"entry-11318","position":[191.2781,-49.82,14.1759],"yaw":-2.57623,"spawnMask":1},{"id":"creature-48675","entityId":"entry-11320","position":[199.6001,-38.0209,115.4036],"yaw":-5.8991,"spawnMask":1},{"id":"creature-48676","entityId":"entry-11321","position":[135.6401,-1.9684,162.6046],"yaw":-5.91302,"spawnMask":1},{"id":"creature-48677","entityId":"entry-11318","position":[227.5941,-48.4811,78.3394],"yaw":-2.53073,"spawnMask":1},{"id":"creature-48678","entityId":"entry-11318","position":[233.3961,-48.1981,77.6196],"yaw":-1.22173,"spawnMask":1},{"id":"creature-48679","entityId":"entry-11320","position":[223.6451,-35.5506,114.3006],"yaw":-1.92697,"spawnMask":1},{"id":"creature-48680","entityId":"entry-11321","position":[51.2431,-9.238,170.7084],"yaw":-3.13162,"spawnMask":1},{"id":"creature-48681","entityId":"entry-11321","position":[103.7361,-9.9194,182.0414],"yaw":-0.992464,"spawnMask":1},{"id":"creature-48682","entityId":"entry-11321","position":[125.7031,-1.8848,166.9168],"yaw":-0.541052,"spawnMask":1},{"id":"creature-48683","entityId":"entry-11321","position":[72.0231,-9.002,185.8973],"yaw":-3.0239,"spawnMask":1},{"id":"creature-48684","entityId":"entry-11320","position":[52.1941,-9.3439,186.8433],"yaw":-5.45818,"spawnMask":1},{"id":"creature-48685","entityId":"entry-11321","position":[38.2861,-8.1662,183.1079],"yaw":-3.19314,"spawnMask":1},{"id":"creature-48686","entityId":"entry-11321","position":[54.9881,-9.907,182.2914],"yaw":-6.0452,"spawnMask":1},{"id":"creature-48687","entityId":"entry-11322","position":[137.0901,-12.8757,192.6873],"yaw":-3.58789,"spawnMask":1},{"id":"creature-48688","entityId":"entry-11323","position":[150.5361,-12.9588,194.0309],"yaw":-5.93412,"spawnMask":1},{"id":"creature-48689","entityId":"entry-11322","position":[120.9661,-12.6542,200.9663],"yaw":-5.48868,"spawnMask":1},{"id":"creature-48690","entityId":"entry-11323","position":[130.2671,-13.4949,206.1604],"yaw":-4.40747,"spawnMask":1},{"id":"creature-48691","entityId":"entry-11323","position":[122.4291,-12.3152,215.2542],"yaw":-4.36332,"spawnMask":1},{"id":"creature-48692","entityId":"entry-11322","position":[196.3361,-12.9528,198.7356],"yaw":-1.39626,"spawnMask":1},{"id":"creature-48693","entityId":"entry-11324","position":[188.5101,-12.9572,201.6381],"yaw":-3.9619,"spawnMask":1},{"id":"creature-48694","entityId":"entry-11323","position":[146.3821,-12.9588,201.2956],"yaw":-5.42797,"spawnMask":1},{"id":"creature-48695","entityId":"entry-11323","position":[130.3001,-13.0237,214.1362],"yaw":-5.32325,"spawnMask":1},{"id":"creature-48696","entityId":"entry-11323","position":[135.1401,-13.4188,202.1036],"yaw":-3.84374,"spawnMask":1},{"id":"creature-48697","entityId":"entry-11321","position":[12.8276,4.5794,204.1104],"yaw":-2.99045,"spawnMask":1},{"id":"creature-48698","entityId":"entry-11321","position":[1.7816,4.6479,196.7045],"yaw":-2.48512,"spawnMask":1},{"id":"creature-48699","entityId":"entry-11323","position":[126.0461,-13.1603,257.9732],"yaw":-0.907571,"spawnMask":1},{"id":"creature-48700","entityId":"entry-11323","position":[126.2761,-13.1603,265.7622],"yaw":-5.51524,"spawnMask":1},{"id":"creature-48701","entityId":"entry-11322","position":[114.6031,-13.1603,259.9712],"yaw":-2.9147,"spawnMask":1},{"id":"creature-48702","entityId":"entry-11324","position":[110.7301,-13.2436,266.8972],"yaw":-2.14356,"spawnMask":1},{"id":"creature-48703","entityId":"entry-11323","position":[184.5411,-12.9605,212.9312],"yaw":-3.85718,"spawnMask":1},{"id":"creature-48704","entityId":"entry-11323","position":[194.4481,-12.9598,217.5042],"yaw":-4.76475,"spawnMask":1},{"id":"creature-48705","entityId":"entry-11322","position":[192.2901,-12.968,207.3462],"yaw":-2.75762,"spawnMask":1},{"id":"creature-48706","entityId":"entry-11520","position":[171.8251,-6.7731,256.8322],"yaw":-4.28461,"spawnMask":1},{"id":"creature-48708","entityId":"entry-11323","position":[210.6681,-13.3225,250.6032],"yaw":-2.44346,"spawnMask":1},{"id":"creature-48709","entityId":"entry-11324","position":[224.1491,-13.1532,260.7722],"yaw":-3.14651,"spawnMask":1},{"id":"creature-48710","entityId":"entry-11322","position":[223.9891,-13.027,253.7032],"yaw":-2.2928,"spawnMask":1},{"id":"creature-48711","entityId":"entry-11323","position":[210.8441,-13.3486,259.2482],"yaw":-3.52556,"spawnMask":1},{"id":"creature-48712","entityId":"entry-11323","position":[164.4991,-12.3822,299.5982],"yaw":-0.645772,"spawnMask":1},{"id":"creature-48713","entityId":"entry-11323","position":[157.2151,-12.9428,297.8322],"yaw":-1.79769,"spawnMask":1},{"id":"creature-48714","entityId":"entry-11322","position":[227.2271,-13.1456,311.6792],"yaw":-2.83371,"spawnMask":1},{"id":"creature-48715","entityId":"entry-11324","position":[211.9951,-13.0421,322.8202],"yaw":-2.53073,"spawnMask":1},{"id":"creature-48716","entityId":"entry-11324","position":[226.2551,-12.8089,305.8512],"yaw":-3.08923,"spawnMask":1},{"id":"creature-48717","entityId":"entry-11322","position":[206.6591,-13.0421,317.0432],"yaw":-5.48262,"spawnMask":1},{"id":"creature-48718","entityId":"entry-11322","position":[221.7181,-13.4387,303.6102],"yaw":-1.26676,"spawnMask":1},{"id":"creature-48719","entityId":"entry-11322","position":[151.4771,-13.0055,319.9302],"yaw":-1.76312,"spawnMask":1},{"id":"creature-48720","entityId":"entry-11322","position":[156.4761,-12.8185,313.3442],"yaw":-5.65487,"spawnMask":1},{"id":"creature-48721","entityId":"entry-11324","position":[158.2491,-12.9472,318.8112],"yaw":-5.09528,"spawnMask":1},{"id":"creature-48722","entityId":"entry-11322","position":[202.9051,-13.0421,326.5682],"yaw":-0.090169,"spawnMask":1},{"id":"creature-48723","entityId":"entry-11322","position":[236.2281,-11.7704,330.9752],"yaw":-4.62512,"spawnMask":1},{"id":"creature-48724","entityId":"entry-11324","position":[243.6381,-10.1955,329.3802],"yaw":-4.07439,"spawnMask":1},{"id":"creature-48725","entityId":"entry-11323","position":[256.8641,-7.9398,317.3832],"yaw":-0.820305,"spawnMask":1},{"id":"creature-48726","entityId":"entry-11322","position":[228.3221,-1.0772,357.8392],"yaw":-1.22761,"spawnMask":1},{"id":"creature-48727","entityId":"entry-11322","position":[220.3741,-2.8261,363.3502],"yaw":-3.12128,"spawnMask":1},{"id":"creature-48728","entityId":"entry-11322","position":[267.2651,-9.5114,314.2182],"yaw":-0.777513,"spawnMask":1},{"id":"creature-48729","entityId":"entry-11323","position":[248.9571,0.4687,354.3072],"yaw":-0.226893,"spawnMask":1},{"id":"creature-48730","entityId":"entry-11323","position":[246.0331,0.4705,363.3892],"yaw":-5.21853,"spawnMask":1},{"id":"creature-48731","entityId":"entry-11323","position":[263.4431,-8.2915,331.0042],"yaw":-5.98648,"spawnMask":1},{"id":"creature-48732","entityId":"entry-11322","position":[273.7251,-9.4136,320.7412],"yaw":-4.62512,"spawnMask":1},{"id":"creature-48733","entityId":"entry-11322","position":[269.3971,3.9998,363.1702],"yaw":-3.64774,"spawnMask":1},{"id":"creature-48734","entityId":"entry-11322","position":[299.3521,7.1297,371.9012],"yaw":-3.80391,"spawnMask":1},{"id":"creature-48735","entityId":"entry-11322","position":[294.6711,6.9289,360.9932],"yaw":-1.40766,"spawnMask":1},{"id":"creature-48736","entityId":"entry-11324","position":[302.8781,7.1297,363.0262],"yaw":-5.98416,"spawnMask":1},{"id":"creature-48737","entityId":"entry-11322","position":[296.4381,-9.8247,317.9132],"yaw":-2.00713,"spawnMask":1},{"id":"creature-48738","entityId":"entry-11324","position":[312.2041,7.1297,346.3682],"yaw":-4.5914,"spawnMask":1},{"id":"creature-48739","entityId":"entry-11322","position":[288.0151,-10.2183,285.8082],"yaw":-0.722725,"spawnMask":1},{"id":"creature-48740","entityId":"entry-11518","position":[303.8931,-9.8247,315.9712],"yaw":-5.91667,"spawnMask":1},{"id":"creature-48741","entityId":"entry-11322","position":[301.2091,-9.8247,307.9872],"yaw":-4.50295,"spawnMask":1},{"id":"creature-48742","entityId":"entry-11322","position":[327.5181,10.9658,322.9272],"yaw":-0.794809,"spawnMask":1},{"id":"creature-48743","entityId":"entry-11322","position":[314.1201,7.1297,366.4762],"yaw":-3.08605,"spawnMask":1},{"id":"creature-48744","entityId":"entry-11324","position":[294.2721,-10.181,287.1822],"yaw":-1.02974,"spawnMask":1},{"id":"creature-48745","entityId":"entry-11322","position":[294.1421,-10.0313,280.4422],"yaw":-3.50908,"spawnMask":1},{"id":"creature-48746","entityId":"entry-11322","position":[319.1051,7.1297,351.0092],"yaw":-2.50107,"spawnMask":1},{"id":"creature-48747","entityId":"entry-11323","position":[332.0111,18.5544,288.1312],"yaw":-1.91986,"spawnMask":1},{"id":"creature-48748","entityId":"entry-11323","position":[339.4461,18.685,284.0892],"yaw":-1.36136,"spawnMask":1},{"id":"creature-48749","entityId":"entry-11322","position":[312.2391,19.7148,263.3502],"yaw":-0.844909,"spawnMask":1},{"id":"creature-48750","entityId":"entry-11519","position":[311.9491,19.7981,252.7922],"yaw":-2.51327,"spawnMask":1},{"id":"creature-48751","entityId":"entry-11322","position":[323.3911,19.7981,257.5752],"yaw":-4.67748,"spawnMask":1}],"roamingPacks":[{"id":"patrol-48648","name":"Ragefire Trogg Patrol","speed":1.15,"pathId":486480,"formationSource":"database-solo","spawnMask":1,"waypoints":[[108.5931,-32.4544,74.6801],[148.3011,-43.1818,72.0825],[161.4571,-43.6839,70.3805],[202.3911,-48.8302,64.7349],[212.3561,-48.83,52.6162],[165.7651,-44.7164,69.9732],[120.9411,-34.1207,71.4251],[76.5361,-23.3467,72.8719],[102.8611,-31.6524,77.0588]],"members":[{"id":"member","entityId":"entry-11318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48655","name":"Ragefire Trogg Patrol","speed":1.15,"pathId":486550,"formationSource":"database-solo","spawnMask":1,"waypoints":[[142.5281,-49.8269,90.8128],[144.7601,-49.8269,95.0261],[204.6321,-50.5721,97.8191],[214.4741,-47.9748,83.0585],[191.4401,-51.9046,100.4275],[143.8931,-49.828,95.5884]],"members":[{"id":"member","entityId":"entry-11318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48669","name":"Ragefire Shaman Patrol","speed":1.15,"pathId":486690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[214.8261,-48.5471,32.8148],[211.4791,-49.925,15.3884],[187.9501,-49.3123,14.3049],[181.2811,-50.026,44.518],[159.6391,-49.1553,45.6113],[121.5781,-50.0423,32.6995],[151.8051,-49.3101,41.8457],[167.4911,-49.8683,48.5126],[182.5251,-50.0708,42.4315],[187.8841,-49.3455,13.8625],[209.3381,-49.9249,13.5923]],"members":[{"id":"member","entityId":"entry-11319","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48707","name":"Searing Blade Enforcer Patrol","speed":1.15,"pathId":487070,"formationSource":"database-solo","spawnMask":1,"waypoints":[[190.6011,-7.0192,257.2132],[202.9611,-10.2546,255.7462],[210.1561,-13.4549,254.8932],[202.9611,-10.2546,255.7462],[190.6011,-7.0192,257.2132],[174.9681,-6.593,246.9492],[152.1261,-7.0682,259.8682],[139.8161,-9.4992,261.6042],[126.5821,-13.2683,262.1552],[139.8161,-9.4992,261.6042],[152.1261,-7.0682,259.8682],[167.9711,-6.5754,271.7742]],"members":[{"id":"member","entityId":"entry-11323","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-48644","name":"Oggleflint","position":[74.6301,-26.8276,145.4599]},{"id":"creature-48706","name":"Taragaman the Hungerer","position":[171.8251,-6.7731,256.8322]},{"id":"creature-48740","name":"Jergosh the Invoker","position":[303.8931,-9.8247,315.9712]},{"id":"creature-48750","name":"Bazzalan","position":[311.9491,19.7981,252.7922]}],"objectiveOrder":[{"id":"creature-48644","name":"Oggleflint","position":[74.6301,-26.8276,145.4599]},{"id":"creature-48706","name":"Taragaman the Hungerer","position":[171.8251,-6.7731,256.8322]},{"id":"creature-48740","name":"Jergosh the Invoker","position":[303.8931,-9.8247,315.9712]},{"id":"creature-48750","name":"Bazzalan","position":[311.9491,19.7981,252.7922]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":28517,"id":175290,"map":389,"orientation":2.87056,"phaseMask":1,"position_x":25.4365,"position_y":6.90505,"position_z":11.0928,"rotation0":0.0233526,"rotation1":0.0023613,"rotation2":0.990576,"rotation3":0.13494,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35577,"id":175294,"map":389,"orientation":2.36492,"phaseMask":1,"position_x":51.6565,"position_y":38.0719,"position_z":-8.68831,"rotation0":0,"rotation1":0,"rotation2":0.92554,"rotation3":0.378649,"spawnMask":1,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35578,"id":175288,"map":389,"orientation":2.7838,"phaseMask":1,"position_x":17.9346,"position_y":52.2161,"position_z":-11.1568,"rotation0":0,"rotation1":0,"rotation2":0.98404,"rotation3":0.177946,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35579,"id":175292,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":39.1689,"position_y":52.8595,"position_z":-3.46941,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35580,"id":175307,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":62.3991,"position_y":61.4202,"position_z":-9.25621,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35581,"id":175305,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":2.43144,"position_y":65.4367,"position_z":-9.98579,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35582,"id":175293,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":1.82074,"position_y":32.2247,"position_z":-11.459,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35583,"id":175308,"map":389,"orientation":-0.610865,"phaseMask":1,"position_x":5.65531,"position_y":68.3387,"position_z":-9.77679,"rotation0":0,"rotation1":0,"rotation2":-0.300706,"rotation3":0.953717,"spawnMask":1,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35584,"id":175291,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":59.6263,"position_y":56.4047,"position_z":-8.96765,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35585,"id":175287,"map":389,"orientation":2.7838,"phaseMask":1,"position_x":66.6137,"position_y":34.3891,"position_z":-8.68421,"rotation0":0,"rotation1":0,"rotation2":0.98404,"rotation3":0.177946,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":35586,"id":175289,"map":389,"orientation":3.14159,"phaseMask":1,"position_x":42.1618,"position_y":8.73129,"position_z":10.9549,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35587,"id":175298,"map":389,"orientation":2.02458,"phaseMask":1,"position_x":-4.42081,"position_y":120.719,"position_z":12.2467,"rotation0":0,"rotation1":0,"rotation2":0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35588,"id":175310,"map":389,"orientation":-2.54818,"phaseMask":1,"position_x":13.7698,"position_y":100.689,"position_z":-1.96314,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":1,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":35589,"id":182024,"map":389,"orientation":-1.29154,"phaseMask":1,"position_x":-370.133,"position_y":162.519,"position_z":-21.1299,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798637,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/OrgrimmarInstance":"d7902c57f230e172a480cbc3be415489a6718b793674904ca3b73c6e2815b2bd","patch/World/maps/OrgrimmarInstance":"a25d78ffa0b5ad573b9b46709375dae8df6e335f316e0f2ea11707428f22ccd1"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/ragefire-chasm/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["11/11 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"dire-maul","title":"Dire Maul","mapId":429,"lfgDungeonIds":[],"expansion":"classic","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[50,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Dire Maul","theme":"Instanced dungeon","summary":"Fight through Dire Maul, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Dire Maul...","unchartedAreaName":"Uncharted Dire Maul","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1410.2315},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/429-diremaul/visual.glb","checksum":"51910d8ccaadd84299620cdbed2934e770ea0f2c2858dea8a0625daaed3c64ae","size":7937728,"triangleCount":166505}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/429-diremaul/collision.glb","checksum":"90a73cfc0221c68f6416227414f38dbc80045548cfb316ca227921dbb5ce5866","size":1284572,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/429-diremaul/navigation.glb","checksum":"53cbf4381ae47fe2d69a2c08318df7d7fa6b08ace81d6e981a56280f83764405","size":583284,"triangleCount":48905}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-955.542,-161.7118,-1570.874],"max":[223.418,38.7323,387.7808]},"entrance":{"name":"Dire Maul Entrance","footPosition":[-44.5229,-24.4618,-915.037],"forward":[0.267368831799124,0,0.9635942651253024],"yaw":0.27066141600957744},"areas":[{"id":"entrance","name":"Dire Maul Entrance","center":[-44.5229,-24.4618,-915.037],"radius":35},{"id":"area-lord-hel-nurath","name":"Lord Hel'nurath's Encounter","center":[115.657,-4.6998,-133.6709],"radius":42},{"id":"area-zevrim-thornhoof","name":"Zevrim Thornhoof's Encounter","center":[34.91,-59.6283,-1208.215],"radius":42},{"id":"area-hydrospawn","name":"Hydrospawn's Encounter","center":[-4.6519,-81.7038,-1198.622],"radius":42},{"id":"area-lethtendris","name":"Lethtendris's Encounter","center":[5.3776,-5.3319,-1201.341],"radius":42},{"id":"area-illyanna-ravenoak","name":"Illyanna Ravenoak's Encounter","center":[84.2739,6.8653,-216.257],"radius":42},{"id":"area-magister-kalendris","name":"Magister Kalendris's Encounter","center":[-33.213,-26.0603,-184.663],"radius":42},{"id":"area-immol-thar","name":"Immol'thar's Encounter","center":[38.0077,-51.2023,52.225],"radius":42},{"id":"area-guard-mol-dar","name":"Guard Mol'dar's Encounter","center":[-410.784,-46.3078,-763.3654],"radius":42},{"id":"area-guard-fengus","name":"Guard Fengus's Encounter","center":[-356.868,-10.096,-501.909],"radius":42},{"id":"area-guard-slip-kik","name":"Guard Slip'kik's Encounter","center":[-550.453,-47.0683,-226.49],"radius":42},{"id":"area-captain-kromcrush","name":"Captain Kromcrush's Encounter","center":[-627.663,7.7129,-278.494],"radius":42},{"id":"area-king-gordok","name":"King Gordok's Encounter","center":[-828.147,15.5682,-279.464],"radius":42}],"entities":{"entry-11467":{"id":"entry-11467","kind":"mob","name":"Tsu'zee","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-12540","name":"Gouge","spellId":12540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4458,"damageMultiplier":1.12},{"id":"spell-14873","name":"Sinister Strike","spellId":14873,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4458,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11250-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":2.9858,"markerRadius":0.65}}},"entry-14358":{"id":"entry-14358","kind":"mob","name":"Shen'dralar Ancient","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14393-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":2.9858,"markerRadius":0.65}}},"entry-14366":{"id":"entry-14366","kind":"mob","name":"Warpwood Spores","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"plant","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11686-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-14368":{"id":"entry-14368","kind":"mob","name":"Lorekeeper Lydros","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14407-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-14369":{"id":"entry-14369","kind":"mob","name":"Shen'dralar Zealot","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14408-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-14371":{"id":"entry-14371","kind":"mob","name":"Shen'dralar Provisioner","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14412-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-14381":{"id":"entry-14381","kind":"mob","name":"Lorekeeper Javon","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14422-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-14382":{"id":"entry-14382","kind":"mob","name":"Lorekeeper Mykos","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14421-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.642,"markerRadius":0.65}}},"entry-14383":{"id":"entry-14383","kind":"mob","name":"Lorekeeper Kildrath","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14420-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-14398":{"id":"entry-14398","kind":"mob","name":"Eldreth Darter","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22947","name":"Mana Burn","spellId":22947,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4633,"damageMultiplier":1.12},{"id":"spell-17139","name":"Power Word: Shield","spellId":17139,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":4633,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-17139","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-8471-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1618,"labelHeight":1.9876,"markerRadius":2.2608}}},"entry-14399":{"id":"entry-14399","kind":"mob","name":"Arcane Torrent","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-10315-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":9.3077,"markerRadius":2.881}}},"entry-14400":{"id":"entry-14400","kind":"mob","name":"Arcane Feedback","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-5490-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.6538,"markerRadius":1.4405}}},"entry-13916":{"id":"entry-13916","kind":"mob","name":"Dire Maul Crystal Totem","combat":{"level":52,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11686-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-16032":{"id":"entry-16032","kind":"mob","name":"Falrin Treeshaper","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-15996-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-11441":{"id":"entry-11441","kind":"mob","name":"Gordok Brute","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-13737","name":"Mortal Strike","spellId":13737,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.12},{"id":"spell-20677","name":"Cleave","spellId":20677,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5017,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-12473-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-11444":{"id":"entry-11444","kind":"mob","name":"Gordok Mage-Lord","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-20832","name":"Fire Blast","spellId":20832,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5290,"damageMultiplier":1.12},{"id":"spell-16102","name":"Flamestrike","spellId":16102,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5290,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11537-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-11445":{"id":"entry-11445","kind":"mob","name":"Gordok Captain","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11564-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0264,"labelHeight":8.2346,"markerRadius":2.605}}},"entry-11446":{"id":"entry-11446","kind":"mob","name":"Gordok Spirit","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13093-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-11448":{"id":"entry-11448","kind":"mob","name":"Gordok Warlock","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14423-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0232,"labelHeight":7.2918,"markerRadius":2.0153}}},"entry-14386":{"id":"entry-14386","kind":"mob","name":"Wandering Eye of Kilrogg","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14430-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7083,"markerRadius":0.65}}},"entry-11458":{"id":"entry-11458","kind":"mob","name":"Petrified Treant","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22693","name":"Harden Skin","spellId":22693,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6627,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-2078-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0496,"labelHeight":7.4338,"markerRadius":1.7859}}},"entry-11459":{"id":"entry-11459","kind":"mob","name":"Ironbark Protector","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5568","name":"Trample","spellId":5568,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7234,"damageMultiplier":1.12},{"id":"spell-18670","name":"Knock Away","spellId":18670,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7234,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13489-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1253,"labelHeight":10.5668,"markerRadius":3.3218}}},"entry-11466":{"id":"entry-11466","kind":"mob","name":"Highborne Summoner","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11207-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-11469":{"id":"entry-11469","kind":"mob","name":"Eldreth Seether","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-16843","name":"Crimson Fury","spellId":16843,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5281,"damageMultiplier":1.12},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5281,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11213-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":3.3163,"markerRadius":0.65}}},"entry-11470":{"id":"entry-11470","kind":"mob","name":"Eldreth Sorcerer","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13323","name":"Polymorph","spellId":13323,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4556,"damageMultiplier":1.12},{"id":"spell-22823","name":"Starshards","spellId":22823,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4556,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11205-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-11471":{"id":"entry-11471","kind":"mob","name":"Eldreth Apparition","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16799","name":"Frostbolt","spellId":16799,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5689,"damageMultiplier":1.12},{"id":"spell-18100","name":"Frost Armor","spellId":18100,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14365-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4146,"labelHeight":4.2683,"markerRadius":1.5877}}},"entry-11472":{"id":"entry-11472","kind":"mob","name":"Eldreth Spirit","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16838","name":"Banshee Shriek","spellId":16838,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4954,"damageMultiplier":1.12},{"id":"spell-22743","name":"Ribbon of Souls","spellId":22743,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4954,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-10751-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4682,"labelHeight":4.9135,"markerRadius":1.0639}}},"entry-11473":{"id":"entry-11473","kind":"mob","name":"Eldreth Spectre","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17201","name":"Dispel Magic","spellId":17201,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7370,"damageMultiplier":1.12},{"id":"spell-7154","name":"Dark Offering","spellId":7154,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7370,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14366-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4146,"labelHeight":4.2683,"markerRadius":1.5877}}},"entry-11475":{"id":"entry-11475","kind":"mob","name":"Eldreth Phantasm","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15802","name":"Shrink","spellId":15802,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4212,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14368-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4975,"labelHeight":5.122,"markerRadius":1.9052}}},"entry-11476":{"id":"entry-11476","kind":"mob","name":"Skeletal Highborne","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21081","name":"Sunder Armor","spellId":21081,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7380,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11078-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.0302,"markerRadius":0.65}}},"entry-11477":{"id":"entry-11477","kind":"mob","name":"Rotting Highborne","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14391-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.7209,"markerRadius":0.65}}},"entry-11480":{"id":"entry-11480","kind":"mob","name":"Arcane Aberration","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/8187e4a71114ff6b55fb6d59315498e3bb5fb606ba216b886ab82438c8764515.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.7735,"markerRadius":1.8878}}},"entry-11483":{"id":"entry-11483","kind":"mob","name":"Mana Remnant","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14272-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.8113,"markerRadius":1.5732}}},"entry-11484":{"id":"entry-11484","kind":"mob","name":"Residual Monstrosity","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14254-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.7735,"markerRadius":1.8878}}},"entry-11486":{"id":"entry-11486","kind":"mob","name":"Prince Tortheldrin","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-20691","name":"Cleave","spellId":20691,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4432,"damageMultiplier":0.62,"radius":8},{"id":"spell-22920","name":"Arcane Blast","spellId":22920,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4432,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11256-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-14303":{"id":"entry-14303","kind":"mob","name":"Petrified Guardian","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22695","name":"Regrowth","spellId":22695,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5702,"damageMultiplier":1.12},{"id":"spell-22696","name":"Thorns","spellId":22696,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5702,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-5848-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0496,"labelHeight":7.4338,"markerRadius":1.7859}}},"entry-11487":{"id":"entry-11487","kind":"boss","name":"Magister Kalendris","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17146","name":"Shadow Word: Pain","spellId":17146,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4654,"damageMultiplier":1.35},{"id":"spell-22919","name":"Mind Flay","spellId":22919,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4654,"damageMultiplier":1.35},{"id":"spell-17287","name":"Mind Blast","spellId":17287,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4654,"damageMultiplier":1.35},{"id":"spell-7645","name":"Dominate Mind","spellId":7645,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4654,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14384-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0142,"labelHeight":3.4605,"markerRadius":0.65}}},"entry-11488":{"id":"entry-11488","kind":"boss","name":"Illyanna Ravenoak","title":"Dungeon Boss","hasLoot":true,"combat":{"level":60,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5116","name":"Concussive Shot","spellId":5116,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5041,"damageMultiplier":1.35},{"id":"spell-20904","name":"Aimed Shot","spellId":20904,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5041,"damageMultiplier":1.35},{"id":"spell-14290","name":"Multi-Shot","spellId":14290,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5041,"damageMultiplier":1.35},{"id":"spell-14295","name":"Volley","spellId":14295,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5041,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11270-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.1004,"markerRadius":0.65}}},"entry-11489":{"id":"entry-11489","kind":"mob","name":"Tendris Warpwood","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-5568","name":"Trample","spellId":5568,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5695,"damageMultiplier":1.12},{"id":"spell-22924","name":"Grasping Vines","spellId":22924,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5695,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14383-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0709,"labelHeight":21.4911,"markerRadius":4.5}}},"entry-14308":{"id":"entry-14308","kind":"mob","name":"Ferra","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22911","name":"Charge","spellId":22911,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6382,"damageMultiplier":1.12},{"id":"spell-17156","name":"Maul","spellId":17156,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6382,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-1083-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0037,"labelHeight":3.1607,"markerRadius":1.8545}}},"entry-11496":{"id":"entry-11496","kind":"boss","name":"Immol'thar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":61,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16128","name":"Infected Bite","spellId":16128,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5467,"damageMultiplier":1.35},{"id":"spell-15550","name":"Trample","spellId":15550,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5467,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14173-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0402,"labelHeight":16.7964,"markerRadius":4.5}}},"entry-11501":{"id":"entry-11501","kind":"boss","name":"King Gordok","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22886","name":"Berserker Charge","spellId":22886,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7009,"damageMultiplier":1.35},{"id":"spell-15708","name":"Mortal Strike","spellId":15708,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7009,"damageMultiplier":1.35},{"id":"spell-15572","name":"Sunder Armor","spellId":15572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7009,"damageMultiplier":1.35},{"id":"spell-16727","name":"War Stomp","spellId":16727,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":7009,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11583-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0296,"labelHeight":9.2227,"markerRadius":2.9176}}},"entry-14326":{"id":"entry-14326","kind":"boss","name":"Guard Mol'dar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7463,"damageMultiplier":1.35},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":7463,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":12000,"magnitude":0.25}},{"id":"spell-20691","name":"Cleave","spellId":20691,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":7463,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11561-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7405,"markerRadius":2.4487}}},"entry-14322":{"id":"entry-14322","kind":"mob","name":"Stomper Kreeg","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22833","name":"Booze Spit","spellId":22833,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5640,"damageMultiplier":1.12},{"id":"spell-16740","name":"War Stomp","spellId":16740,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5640,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11545-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0216,"labelHeight":6.7946,"markerRadius":1.8779}}},"entry-14321":{"id":"entry-14321","kind":"boss","name":"Guard Fengus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5376,"damageMultiplier":1.35},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5376,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":12000,"magnitude":0.25}},{"id":"spell-22572","name":"Bruising Blow","spellId":22572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5376,"damageMultiplier":1.35},{"id":"spell-20691","name":"Cleave","spellId":20691,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5376,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11561-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7405,"markerRadius":2.4487}}},"entry-14323":{"id":"entry-14323","kind":"boss","name":"Guard Slip'kik","title":"Dungeon Boss","hasLoot":true,"combat":{"level":59,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4152,"damageMultiplier":1.35},{"id":"spell-17307","name":"Knockout","spellId":17307,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4152,"damageMultiplier":1.35},{"id":"spell-20691","name":"Cleave","spellId":20691,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4152,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11561-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7405,"markerRadius":2.4487}}},"entry-14325":{"id":"entry-14325","kind":"boss","name":"Captain Kromcrush","title":"Dungeon Boss","hasLoot":true,"combat":{"level":61,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22857","name":"Retaliation","spellId":22857,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-22859","name":"Mortal Cleave","spellId":22859,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5699,"damageMultiplier":0.82,"radius":11},{"id":"spell-5246","name":"Intimidating Shout","spellId":5246,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11564-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0264,"labelHeight":8.2346,"markerRadius":2.605}}},"entry-14324":{"id":"entry-14324","kind":"mob","name":"Cho'Rush the Observer","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10947","name":"Mind Blast","spellId":10947,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5258,"damageMultiplier":1.12},{"id":"spell-10151","name":"Fireball","spellId":10151,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5258,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11537-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0248,"labelHeight":7.7889,"markerRadius":2.1527}}},"entry-13036":{"id":"entry-13036","kind":"mob","name":"Gordok Mastiff","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-12966-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0174,"markerRadius":1.6004}}},"entry-11450":{"id":"entry-11450","kind":"mob","name":"Gordok Reaver","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22572","name":"Bruising Blow","spellId":22572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7228,"damageMultiplier":1.12},{"id":"spell-22916","name":"Uppercut","spellId":22916,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7228,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-10709-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0264,"labelHeight":8.2861,"markerRadius":2.2901}}},"entry-13160":{"id":"entry-13160","kind":"mob","name":"Carrion Swarmer","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13096-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0018,"labelHeight":1.9188,"markerRadius":1.2032}}},"entry-11454":{"id":"entry-11454","kind":"mob","name":"Wildspawn Betrayer","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16100","name":"Shoot","spellId":16100,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7474,"damageMultiplier":1.12},{"id":"spell-18649","name":"Shadow Shot","spellId":18649,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7474,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-10032-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0072,"labelHeight":4.6121,"markerRadius":1.3367}}},"entry-11451":{"id":"entry-11451","kind":"mob","name":"Wildspawn Satyr","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15580","name":"Strike","spellId":15580,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6600,"damageMultiplier":1.12},{"id":"spell-9080","name":"Hamstring","spellId":9080,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/d46221744014c9f7e60e192eb6da90d29b6bb6547f467db7d4b65e3a3503dab7.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-11455":{"id":"entry-11455","kind":"mob","name":"Wildspawn Felsworn","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22418","name":"Chaotic Focus","spellId":22418,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.12},{"id":"spell-15654","name":"Shadow Word: Pain","spellId":15654,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5435,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-7649-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-13196":{"id":"entry-13196","kind":"mob","name":"Phase Lasher","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-17228","name":"Shadow Bolt Volley","spellId":17228,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5566,"damageMultiplier":0.62,"radius":8},{"id":"spell-15285","name":"Fireball Volley","spellId":15285,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5566,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"plant","model":{"url":"/assets/game/creatures/shared/d18a720702d5501d87412111e5848a230248ebf06f9f6afba8973a36b21ae84f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0732,"labelHeight":5.9732,"markerRadius":3.9737}}},"entry-13197":{"id":"entry-13197","kind":"mob","name":"Fel Lash","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22271","name":"Arcane Explosion","spellId":22271,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6136,"damageMultiplier":0.62,"radius":8},{"id":"spell-15230","name":"Arcane Bolt","spellId":15230,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6136,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"plant","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13110-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0732,"labelHeight":5.9732,"markerRadius":3.9737}}},"entry-11456":{"id":"entry-11456","kind":"mob","name":"Wildspawn Shadowstalker","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-14897","name":"Slowing Poison","spellId":14897,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4070,"damageMultiplier":1.12},{"id":"spell-22416","name":"Backstab","spellId":22416,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4070,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/a8b97785230064bd46404c9b8eaf50380f71ee24f3c78ccedb3746d7e59764a6.glb","rotationY":-1.5707963267948966,"groundOffset":0.0055,"labelHeight":3.536,"markerRadius":1.0248}}},"entry-14327":{"id":"entry-14327","kind":"boss","name":"Lethtendris","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11668","name":"Immolate","spellId":11668,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5237,"damageMultiplier":1.35},{"id":"spell-14887","name":"Shadow Bolt Volley","spellId":14887,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5237,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-21012-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.7911,"markerRadius":0.65}}},"entry-14349":{"id":"entry-14349","kind":"mob","name":"Pimgib","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15744","name":"Blast Wave","spellId":15744,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6151,"damageMultiplier":1.12},{"id":"spell-15228","name":"Fireball","spellId":15228,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6151,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14380-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3095,"markerRadius":0.8081}}},"entry-13021":{"id":"entry-13021","kind":"mob","name":"Warpwood Crusher","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-22426","name":"Crush Armor","spellId":22426,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5852,"damageMultiplier":1.12},{"id":"spell-15550","name":"Trample","spellId":15550,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5852,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-12929-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2506,"labelHeight":21.1336,"markerRadius":4.5}}},"entry-13022":{"id":"entry-13022","kind":"mob","name":"Whip Lasher","combat":{"level":54,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21987","name":"Lash of Pain","spellId":21987,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7261,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-12962-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0274,"labelHeight":2.35,"markerRadius":1.4901}}},"entry-11464":{"id":"entry-11464","kind":"mob","name":"Warpwood Tangler","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22415","name":"Entangling Roots","spellId":22415,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":4044,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-22414","name":"Lightning Bolt","spellId":22414,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4044,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-9592-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0434,"labelHeight":6.5046,"markerRadius":1.5627}}},"entry-11462":{"id":"entry-11462","kind":"mob","name":"Warpwood Treant","combat":{"level":55,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14331","name":"Vicious Rend","spellId":14331,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5809,"damageMultiplier":1.12},{"id":"spell-11428","name":"Stunning Strike","spellId":11428,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5809,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-10621-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0372,"labelHeight":5.5754,"markerRadius":1.3394}}},"entry-11453":{"id":"entry-11453","kind":"mob","name":"Wildspawn Trickster","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12493","name":"Curse of Weakness","spellId":12493,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7426,"damageMultiplier":1.12},{"id":"spell-22371","name":"Curse of Impotence","spellId":22371,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7426,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-2020-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0072,"labelHeight":4.6121,"markerRadius":1.3367}}},"entry-11452":{"id":"entry-11452","kind":"mob","name":"Wildspawn Rogue","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-15583","name":"Rupture","spellId":15583,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4712,"damageMultiplier":1.12},{"id":"spell-15667","name":"Sinister Strike","spellId":15667,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4712,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c40245171481eb04ae88340d52e24044e16b3e0053584016264adcf3e83f9bbf.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-11457":{"id":"entry-11457","kind":"mob","name":"Wildspawn Hellcaller","combat":{"level":57,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15228","name":"Fireball","spellId":15228,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6979,"damageMultiplier":1.12},{"id":"spell-20754","name":"Rain of Fire","spellId":20754,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6979,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11340-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0084,"labelHeight":5.3808,"markerRadius":1.5595}}},"entry-13276":{"id":"entry-13276","kind":"mob","name":"Wildspawn Imp","combat":{"level":56,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13340","name":"Fire Blast","spellId":13340,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4998,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-911-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.1885,"markerRadius":0.65}}},"entry-13280":{"id":"entry-13280","kind":"boss","name":"Hydrospawn","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.126976,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22419","name":"Riptide","spellId":22419,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4739,"damageMultiplier":1.35},{"id":"spell-22420","name":"Submersion","spellId":22420,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4739,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-5489-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.7654,"markerRadius":2.3296}}},"entry-11490":{"id":"entry-11490","kind":"boss","name":"Zevrim Thornhoof","title":"Dungeon Boss","hasLoot":true,"combat":{"level":57,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22478","name":"Intense Pain","spellId":22478,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4883,"damageMultiplier":1.35},{"id":"spell-22651","name":"Sacrifice","spellId":22651,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4883,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-11335-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0096,"labelHeight":6.1495,"markerRadius":1.7823}}},"entry-13285":{"id":"entry-13285","kind":"mob","name":"Death Lash","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22351","name":"Thorns","spellId":22351,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4325,"damageMultiplier":1.12},{"id":"spell-3417","name":"Thrash","spellId":3417,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4325,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"plant","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13172-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0732,"labelHeight":5.9732,"markerRadius":3.9737}}},"entry-11465":{"id":"entry-11465","kind":"mob","name":"Warpwood Stomper","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-16727","name":"War Stomp","spellId":16727,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5044,"damageMultiplier":0.62,"radius":8},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5044,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-6350-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.062,"labelHeight":9.2923,"markerRadius":2.2324}}},"entry-11461":{"id":"entry-11461","kind":"mob","name":"Warpwood Guardian","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7393,"damageMultiplier":1.12},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7393,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-13173-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0558,"labelHeight":8.363,"markerRadius":2.0092}}},"entry-11492":{"id":"entry-11492","kind":"mob","name":"Alzzin the Wildshaper","combat":{"level":58,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1300,"damageMultiplier":1},{"id":"spell-22689","name":"Mangle","spellId":22689,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4267,"damageMultiplier":1.12},{"id":"spell-22662","name":"Wither","spellId":22662,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4267,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/928658948713f14e42fc755dc19a6deaf554dccb1e1f85d7dbeac55454539957.glb","rotationY":-1.5707963267948966,"groundOffset":0.0121,"labelHeight":7.6869,"markerRadius":2.2279}}},"entry-14690":{"id":"entry-14690","kind":"mob","name":"Revanchion","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-29849","name":"Frost Nova","spellId":29849,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6469,"damageMultiplier":0.62,"radius":8},{"id":"spell-30267","name":"Shadow Bolt Volley","spellId":30267,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6469,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14695-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.6633,"labelHeight":6.8293,"markerRadius":2.5403}}},"entry-14506":{"id":"entry-14506","kind":"boss","name":"Lord Hel'nurath","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.5099999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6700,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.34,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/dire-maul/creatures/display-14556-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4447,"labelHeight":9.1346,"markerRadius":2.84}}}},"staticSpawns":[{"id":"creature-56961","entityId":"entry-11467","position":[-128.716,-26.062,-198.456],"yaw":-3.12414,"spawnMask":1},{"id":"creature-247502","entityId":"entry-14358","position":[-11.8214,3.3896,-364.11],"yaw":-2.9147,"spawnMask":1},{"id":"creature-247557","entityId":"entry-14366","position":[6.8163,-25.7985,-959.872],"yaw":0.453785,"spawnMask":1},{"id":"creature-247558","entityId":"entry-14366","position":[-133.957,-25.8111,-1022.205],"yaw":0.488691,"spawnMask":1},{"id":"creature-247559","entityId":"entry-14366","position":[-44.8652,-46.7694,-1387.684],"yaw":2.47837,"spawnMask":1},{"id":"creature-247560","entityId":"entry-14366","position":[-65.8681,-80.2622,-1160.507],"yaw":0.628317,"spawnMask":1},{"id":"creature-247561","entityId":"entry-14366","position":[93.4564,-80.2111,-1166.216],"yaw":0,"spawnMask":1},{"id":"creature-247562","entityId":"entry-14366","position":[-243.006,-141.6278,-1180.347],"yaw":0.069812,"spawnMask":1},{"id":"creature-247563","entityId":"entry-14366","position":[-468.279,-15.2183,-501.235],"yaw":-1.02974,"spawnMask":1},{"id":"creature-247564","entityId":"entry-14366","position":[156.68,-25.8135,-1080.424],"yaw":-1.25664,"spawnMask":1},{"id":"creature-247565","entityId":"entry-14366","position":[-22.0056,-80.2817,-1169.01],"yaw":0,"spawnMask":1},{"id":"creature-247566","entityId":"entry-14366","position":[26.4006,-80.2817,-1163.65],"yaw":-0.226892,"spawnMask":1},{"id":"creature-247567","entityId":"entry-14368","position":[-164.408,-70.1334,-237.718],"yaw":-3.07178,"spawnMask":1},{"id":"creature-247568","entityId":"entry-14369","position":[-121.245,-70.1297,-291.436],"yaw":-4.67748,"spawnMask":1},{"id":"creature-247569","entityId":"entry-14369","position":[-121.827,-70.1314,-283.632],"yaw":-1.58825,"spawnMask":1},{"id":"creature-247570","entityId":"entry-14369","position":[-186.748,-70.1092,-302.597],"yaw":-4.79965,"spawnMask":1},{"id":"creature-247571","entityId":"entry-14369","position":[-187.056,-70.1208,-280.963],"yaw":-1.5708,"spawnMask":1},{"id":"creature-247572","entityId":"entry-14369","position":[-114.513,-49.558,-158.037],"yaw":-3.10669,"spawnMask":1},{"id":"creature-247573","entityId":"entry-14369","position":[-153.498,-49.6397,-133.249],"yaw":-0.017453,"spawnMask":1},{"id":"creature-247574","entityId":"entry-14369","position":[-193.001,-70.1334,-172.83],"yaw":-6.17846,"spawnMask":1},{"id":"creature-247575","entityId":"entry-14369","position":[-163.806,-70.1334,-204.824],"yaw":-3.1765,"spawnMask":1},{"id":"creature-247578","entityId":"entry-14369","position":[-132.323,-70.2098,-244.235],"yaw":-1.5966,"spawnMask":1},{"id":"creature-247579","entityId":"entry-14371","position":[-120.734,-70.1283,-301.004],"yaw":-6.21337,"spawnMask":1},{"id":"creature-247580","entityId":"entry-14381","position":[-193.68,-70.1334,-245.369],"yaw":-0.122173,"spawnMask":1},{"id":"creature-247581","entityId":"entry-14382","position":[-193.24,-70.2182,-286.976],"yaw":-0.069813,"spawnMask":1},{"id":"creature-247582","entityId":"entry-14383","position":[-135.223,-70.2117,-318.763],"yaw":-4.849,"spawnMask":1},{"id":"creature-247583","entityId":"entry-14398","position":[-48.1972,-25.2342,-251.614],"yaw":-6.21337,"spawnMask":1},{"id":"creature-247584","entityId":"entry-14398","position":[-90.8405,6.9346,-274.437],"yaw":-0.314159,"spawnMask":1},{"id":"creature-247585","entityId":"entry-14398","position":[-4.4826,-25.233,-254.982],"yaw":-0.942478,"spawnMask":1},{"id":"creature-247587","entityId":"entry-14398","position":[-56.348,6.9359,-233.405],"yaw":-6.00393,"spawnMask":1},{"id":"creature-247588","entityId":"entry-14398","position":[54.8492,6.9479,-191.733],"yaw":-3.61283,"spawnMask":1},{"id":"creature-247589","entityId":"entry-14398","position":[-5.7196,6.9388,-193.068],"yaw":-5.65487,"spawnMask":1},{"id":"creature-247591","entityId":"entry-14398","position":[17.0245,6.9357,-228.842],"yaw":-0.087266,"spawnMask":1},{"id":"creature-247604","entityId":"entry-14400","position":[157.584,-46.3279,21.13],"yaw":-0.699599,"spawnMask":1},{"id":"creature-247605","entityId":"entry-14400","position":[163.22,-46.3273,21.615],"yaw":-0.699554,"spawnMask":1},{"id":"creature-247606","entityId":"entry-14400","position":[163.705,-46.3297,15.979],"yaw":-0.699584,"spawnMask":1},{"id":"creature-247607","entityId":"entry-14400","position":[158.069,-46.3296,15.494],"yaw":-0.699584,"spawnMask":1},{"id":"creature-247612","entityId":"entry-14400","position":[-2.3516,-46.3443,-80.725],"yaw":-0.367713,"spawnMask":1},{"id":"creature-247613","entityId":"entry-14400","position":[2.819,-46.3492,-78.431],"yaw":-0.367712,"spawnMask":1},{"id":"creature-247614","entityId":"entry-14400","position":[5.1137,-46.3519,-83.601],"yaw":-0.367712,"spawnMask":1},{"id":"creature-247615","entityId":"entry-14400","position":[-0.0569,-46.3471,-85.896],"yaw":-0.367701,"spawnMask":1},{"id":"creature-247626","entityId":"entry-14400","position":[-80.2173,-46.3302,73.641],"yaw":-4.63658,"spawnMask":1},{"id":"creature-247627","entityId":"entry-14400","position":[-84.5087,-46.3308,77.327],"yaw":-4.63659,"spawnMask":1},{"id":"creature-247628","entityId":"entry-14400","position":[-80.8232,-46.3302,81.618],"yaw":-4.63658,"spawnMask":1},{"id":"creature-247629","entityId":"entry-14400","position":[-76.5317,-46.3302,77.933],"yaw":-4.63658,"spawnMask":1},{"id":"creature-247636","entityId":"entry-14400","position":[4.2142,-46.3257,193.765],"yaw":-0.35092,"spawnMask":1},{"id":"creature-247637","entityId":"entry-14400","position":[9.3454,-46.326,196.147],"yaw":-0.35092,"spawnMask":1},{"id":"creature-247638","entityId":"entry-14400","position":[11.7266,-46.326,191.015],"yaw":-0.35092,"spawnMask":1},{"id":"creature-247639","entityId":"entry-14400","position":[6.5954,-46.3257,188.634],"yaw":-0.35092,"spawnMask":1},{"id":"creature-247640","entityId":"entry-13916","position":[-13.5244,-20.2355,-482.587],"yaw":-2.28638,"spawnMask":1},{"id":"creature-247694","entityId":"entry-16032","position":[-122.742,-70.1266,-315.637],"yaw":-5.42797,"spawnMask":1},{"id":"creature-247695","entityId":"entry-11441","position":[-402.523,-18.8186,-426.978],"yaw":-0.191986,"spawnMask":1},{"id":"creature-247696","entityId":"entry-11441","position":[-439.715,-24.2485,-625.653],"yaw":-6.19592,"spawnMask":1},{"id":"creature-247697","entityId":"entry-11441","position":[-450.144,-24.2488,-626.171],"yaw":-3.14159,"spawnMask":1},{"id":"creature-247698","entityId":"entry-11441","position":[-445.111,-18.8135,-409.527],"yaw":-1.62316,"spawnMask":1},{"id":"creature-247699","entityId":"entry-11441","position":[-289.361,-25.5535,-835.5543],"yaw":-0.855211,"spawnMask":1},{"id":"creature-247700","entityId":"entry-11441","position":[-297.441,-25.5536,-826.9531],"yaw":-3.92699,"spawnMask":1},{"id":"creature-247701","entityId":"entry-11441","position":[-404.515,-18.8146,-579.932],"yaw":-5.39307,"spawnMask":1},{"id":"creature-247702","entityId":"entry-11441","position":[-367.156,-46.4616,-723.504],"yaw":-4.64258,"spawnMask":1},{"id":"creature-247703","entityId":"entry-11441","position":[-375.538,-47.6378,-733.704],"yaw":-3.05433,"spawnMask":1},{"id":"creature-247704","entityId":"entry-11441","position":[-417.988,-10.5516,-467.963],"yaw":-3.60941,"spawnMask":1},{"id":"creature-247705","entityId":"entry-11441","position":[-312.159,-18.8135,-577.298],"yaw":-4.36332,"spawnMask":1},{"id":"creature-247706","entityId":"entry-11441","position":[-326.985,-18.8135,-399.247],"yaw":-4.74729,"spawnMask":1},{"id":"creature-247709","entityId":"entry-11441","position":[-310.761,-25.5511,-772.9344],"yaw":-6.19592,"spawnMask":1},{"id":"creature-247710","entityId":"entry-11441","position":[-387.619,-24.2499,-624.653],"yaw":-2.00713,"spawnMask":1},{"id":"creature-247711","entityId":"entry-11441","position":[-301.691,-25.6352,-711.2712],"yaw":-0.541052,"spawnMask":1},{"id":"creature-247712","entityId":"entry-11441","position":[-391.785,-25.5534,-657.629],"yaw":-0.541052,"spawnMask":1},{"id":"creature-247713","entityId":"entry-11441","position":[-262.475,-24.2261,-665.3878],"yaw":-3.21141,"spawnMask":1},{"id":"creature-247714","entityId":"entry-11441","position":[-431.344,-45.3053,-684.2633],"yaw":-3.76991,"spawnMask":1},{"id":"creature-247715","entityId":"entry-11441","position":[-321.986,-24.2492,-627.338],"yaw":-5.37561,"spawnMask":1},{"id":"creature-247716","entityId":"entry-11441","position":[-317.018,-10.5405,-520.327],"yaw":-3.14159,"spawnMask":1},{"id":"creature-247717","entityId":"entry-11441","position":[-293.005,-18.7999,-495.483],"yaw":-3.7001,"spawnMask":1},{"id":"creature-247718","entityId":"entry-11441","position":[-281.957,-18.8134,-502.227],"yaw":-0.541052,"spawnMask":1},{"id":"creature-247719","entityId":"entry-11441","position":[-469.834,-25.5527,-693.8654],"yaw":-4.27606,"spawnMask":1},{"id":"creature-247720","entityId":"entry-11441","position":[-352.365,-10.4627,-541.009],"yaw":-4.60767,"spawnMask":1},{"id":"creature-247721","entityId":"entry-11441","position":[-484.863,-18.8135,-567.679],"yaw":-3.22886,"spawnMask":1},{"id":"creature-247722","entityId":"entry-11441","position":[-480.565,-18.8135,-588.643],"yaw":-0.855211,"spawnMask":1},{"id":"creature-247723","entityId":"entry-11441","position":[-357.174,-25.5529,-865.448],"yaw":-3.735,"spawnMask":1},{"id":"creature-247724","entityId":"entry-11441","position":[-420.781,-10.535,-547.281],"yaw":-4.02882,"spawnMask":1},{"id":"creature-247725","entityId":"entry-11441","position":[-253.992,-24.2261,-658.731],"yaw":-4.79965,"spawnMask":1},{"id":"creature-247726","entityId":"entry-11441","position":[-293.503,-25.583,-737.5379],"yaw":-1.71042,"spawnMask":1},{"id":"creature-247727","entityId":"entry-11441","position":[-290.073,-25.5962,-716.2784],"yaw":-4.88692,"spawnMask":1},{"id":"creature-247729","entityId":"entry-11441","position":[-414.97,-10.5437,-499.946],"yaw":-4.6183,"spawnMask":1},{"id":"creature-247730","entityId":"entry-11441","position":[-378.512,-24.2505,-624.082],"yaw":-0.925025,"spawnMask":1},{"id":"creature-247731","entityId":"entry-11441","position":[-326.013,-25.5534,-635.704],"yaw":-1.88496,"spawnMask":1},{"id":"creature-247732","entityId":"entry-11441","position":[-350.789,-10.543,-453.747],"yaw":-1.12018,"spawnMask":1},{"id":"creature-247733","entityId":"entry-11441","position":[-338.881,-10.4623,-551.878],"yaw":-1.37881,"spawnMask":1},{"id":"creature-247734","entityId":"entry-11444","position":[-278.363,-24.2133,-727.284],"yaw":-0.05236,"spawnMask":1},{"id":"creature-247735","entityId":"entry-11444","position":[-356.381,-46.6537,-732.3712],"yaw":-6.23082,"spawnMask":1},{"id":"creature-247736","entityId":"entry-11444","position":[-364.418,-47.2536,-742.8524],"yaw":-1.36136,"spawnMask":1},{"id":"creature-247737","entityId":"entry-11444","position":[-413.381,-10.4515,-559.748],"yaw":-0.261799,"spawnMask":1},{"id":"creature-247738","entityId":"entry-11444","position":[-425.776,-10.4594,-556.76],"yaw":-3.35103,"spawnMask":1},{"id":"creature-247739","entityId":"entry-11444","position":[-324.085,-10.46,-463.814],"yaw":-1.36136,"spawnMask":1},{"id":"creature-247740","entityId":"entry-11444","position":[-325.772,-10.4636,-454.861],"yaw":-4.53786,"spawnMask":1},{"id":"creature-247741","entityId":"entry-11444","position":[-288.73,-18.8134,-442.366],"yaw":-2.42601,"spawnMask":1},{"id":"creature-247742","entityId":"entry-11444","position":[-279.38,-18.8134,-434.944],"yaw":-5.65487,"spawnMask":1},{"id":"creature-247744","entityId":"entry-11444","position":[-253.135,-24.226,-667.416],"yaw":-0.802851,"spawnMask":1},{"id":"creature-247745","entityId":"entry-11444","position":[-273.079,-18.8135,-565.094],"yaw":-0.855211,"spawnMask":1},{"id":"creature-247746","entityId":"entry-11444","position":[-280.601,-18.8135,-555.86],"yaw":-4.06662,"spawnMask":1},{"id":"creature-247747","entityId":"entry-11444","position":[-334.005,-24.2494,-627.57],"yaw":-3.40339,"spawnMask":1},{"id":"creature-247748","entityId":"entry-11444","position":[-463.052,-25.5531,-704.2774],"yaw":-0.541052,"spawnMask":1},{"id":"creature-247749","entityId":"entry-11444","position":[-349.285,-25.5525,-870.515],"yaw":-0.733038,"spawnMask":1},{"id":"creature-247750","entityId":"entry-11444","position":[-341.457,-10.4628,-540.519],"yaw":-4.27606,"spawnMask":1},{"id":"creature-247751","entityId":"entry-11444","position":[-487.262,-18.8135,-580.395],"yaw":-4.06662,"spawnMask":1},{"id":"creature-247752","entityId":"entry-11444","position":[-735.4,6.5135,-336.385],"yaw":-0.750492,"spawnMask":1},{"id":"creature-247753","entityId":"entry-11444","position":[-299.989,-25.6226,-720.1502],"yaw":-3.80482,"spawnMask":1},{"id":"creature-247754","entityId":"entry-11444","position":[-384.149,-21.0948,-615.562],"yaw":-4.57276,"spawnMask":1},{"id":"creature-247755","entityId":"entry-11444","position":[-314.34,-25.5534,-635.138],"yaw":-0.453786,"spawnMask":1},{"id":"creature-247756","entityId":"entry-11444","position":[-471.842,-18.8135,-567.353],"yaw":-6.12611,"spawnMask":1},{"id":"creature-247757","entityId":"entry-11444","position":[-479.555,-25.5527,-701.0365],"yaw":-3.24631,"spawnMask":1},{"id":"creature-247759","entityId":"entry-11444","position":[-350.524,-10.457,-557.14],"yaw":-1.44862,"spawnMask":1},{"id":"creature-247760","entityId":"entry-11445","position":[-692.268,6.5096,-248.798],"yaw":-2.87979,"spawnMask":1},{"id":"creature-247761","entityId":"entry-11445","position":[-743.252,6.5159,-323.836],"yaw":-4.17134,"spawnMask":1},{"id":"creature-247762","entityId":"entry-11445","position":[-667.557,7.7893,-292.91],"yaw":-4.20624,"spawnMask":1},{"id":"creature-247763","entityId":"entry-11445","position":[-676.702,7.791,-299.868],"yaw":-3.19395,"spawnMask":1},{"id":"creature-247764","entityId":"entry-11445","position":[-681.103,7.7939,-255.94],"yaw":-1.48353,"spawnMask":1},{"id":"creature-247765","entityId":"entry-11446","position":[-910.542,18.7296,-299.973],"yaw":-2.93215,"spawnMask":1},{"id":"creature-247766","entityId":"entry-11446","position":[-794.864,18.73,-194.528],"yaw":-5.07891,"spawnMask":1},{"id":"creature-247767","entityId":"entry-11446","position":[-879.342,18.7302,-346.78],"yaw":-2.23402,"spawnMask":1},{"id":"creature-247768","entityId":"entry-11446","position":[-759.779,18.7296,-344.737],"yaw":-0.750492,"spawnMask":1},{"id":"creature-247769","entityId":"entry-11446","position":[-819.989,18.7299,-368.849],"yaw":-1.48353,"spawnMask":1},{"id":"creature-247770","entityId":"entry-11446","position":[-764.614,18.7323,-211.297],"yaw":-5.44543,"spawnMask":1},{"id":"creature-247771","entityId":"entry-11446","position":[-814.549,18.7292,-189.692],"yaw":-4.86947,"spawnMask":1},{"id":"creature-247772","entityId":"entry-11446","position":[-879.54,18.7302,-210.433],"yaw":-4.08407,"spawnMask":1},{"id":"creature-247773","entityId":"entry-11446","position":[-909.989,18.7292,-254.511],"yaw":-3.47321,"spawnMask":1},{"id":"creature-247774","entityId":"entry-11446","position":[-852.65,18.7304,-195.577],"yaw":-4.43314,"spawnMask":1},{"id":"creature-247775","entityId":"entry-11446","position":[-851.812,18.7303,-362.12],"yaw":-1.85005,"spawnMask":1},{"id":"creature-247776","entityId":"entry-11446","position":[-903.063,18.7295,-318.075],"yaw":-2.68781,"spawnMask":1},{"id":"creature-247777","entityId":"entry-11446","position":[-794.762,18.73,-365.295],"yaw":-1.20428,"spawnMask":1},{"id":"creature-247778","entityId":"entry-11448","position":[-379.698,-28.8987,-293.382],"yaw":-5.77704,"spawnMask":1},{"id":"creature-247779","entityId":"entry-11448","position":[-581.576,-26.4212,-163.937],"yaw":-0.05236,"spawnMask":1},{"id":"creature-247780","entityId":"entry-11448","position":[-593.083,-26.4212,-163.484],"yaw":-3.15905,"spawnMask":1},{"id":"creature-247781","entityId":"entry-11448","position":[-568.277,7.7977,-280.69],"yaw":-3.22886,"spawnMask":1},{"id":"creature-247782","entityId":"entry-11448","position":[-518.113,6.2496,-198.003],"yaw":-5.21853,"spawnMask":1},{"id":"creature-247783","entityId":"entry-11448","position":[-477.071,6.2481,-194.667],"yaw":-5.44543,"spawnMask":1},{"id":"creature-247784","entityId":"entry-11448","position":[-580.438,-26.4212,-194.75],"yaw":-0.034907,"spawnMask":1},{"id":"creature-247785","entityId":"entry-11448","position":[-480.885,-47.0701,-160.095],"yaw":-1.13446,"spawnMask":1},{"id":"creature-247786","entityId":"entry-11448","position":[-484.064,-47.0712,-152.459],"yaw":-4.38078,"spawnMask":1},{"id":"creature-247787","entityId":"entry-11448","position":[-579.446,-47.0692,-169.484],"yaw":-1.88496,"spawnMask":1},{"id":"creature-247788","entityId":"entry-11448","position":[-572.474,-47.0692,-160.705],"yaw":-5.49779,"spawnMask":1},{"id":"creature-247789","entityId":"entry-11448","position":[-549.006,-26.4212,-184.288],"yaw":-2.28638,"spawnMask":1},{"id":"creature-247790","entityId":"entry-11448","position":[-425.487,-40.0098,-217.189],"yaw":-3.61283,"spawnMask":1},{"id":"creature-247791","entityId":"entry-11448","position":[-584.906,-47.0657,-215.643],"yaw":-2.28638,"spawnMask":1},{"id":"creature-247792","entityId":"entry-11448","position":[-577.516,-47.065,-211.067],"yaw":-5.37561,"spawnMask":1},{"id":"creature-247795","entityId":"entry-11458","position":[-66.0648,-30.0873,-499.753],"yaw":-1.65806,"spawnMask":1},{"id":"creature-247796","entityId":"entry-11458","position":[91.9472,-26.6523,-556.927],"yaw":-3.19395,"spawnMask":1},{"id":"creature-247797","entityId":"entry-11458","position":[98.7807,-25.1418,-562.104],"yaw":-1.8675,"spawnMask":1},{"id":"creature-247798","entityId":"entry-11458","position":[107.449,-25.1419,-562.049],"yaw":-0.453786,"spawnMask":1},{"id":"creature-247799","entityId":"entry-11458","position":[-49.6826,-30.0876,-459.997],"yaw":-1.72788,"spawnMask":1},{"id":"creature-247800","entityId":"entry-11458","position":[83.9674,-25.1434,-398.736],"yaw":-5.53269,"spawnMask":1},{"id":"creature-247801","entityId":"entry-11458","position":[-120.786,-26.6523,-553.842],"yaw":-5.5676,"spawnMask":1},{"id":"creature-247802","entityId":"entry-11458","position":[-135.652,-25.1408,-568.167],"yaw":-2.32129,"spawnMask":1},{"id":"creature-247803","entityId":"entry-11458","position":[-121.831,-26.6523,-407.284],"yaw":-2.84489,"spawnMask":1},{"id":"creature-247804","entityId":"entry-11458","position":[-138.411,-25.1465,-399.65],"yaw":-2.00713,"spawnMask":1},{"id":"creature-247805","entityId":"entry-11458","position":[-114.875,-25.1446,-399.178],"yaw":-3.87463,"spawnMask":1},{"id":"creature-247806","entityId":"entry-11458","position":[52.3268,-29.0709,-471.426],"yaw":-1.62316,"spawnMask":1},{"id":"creature-247807","entityId":"entry-11458","position":[32.2882,-28.8157,-470.041],"yaw":-2.46091,"spawnMask":1},{"id":"creature-247808","entityId":"entry-11458","position":[12.7528,-30.1922,-509.915],"yaw":-0.780131,"spawnMask":1},{"id":"creature-247809","entityId":"entry-11458","position":[27.6619,-30.5658,-493.714],"yaw":-3.61916,"spawnMask":1},{"id":"creature-247810","entityId":"entry-11458","position":[-73.3596,-29.2926,-484.665],"yaw":-6.14356,"spawnMask":1},{"id":"creature-247811","entityId":"entry-11458","position":[-80.749,-29.3109,-501.513],"yaw":-2.21657,"spawnMask":1},{"id":"creature-247812","entityId":"entry-11458","position":[22.6595,-25.2254,-573.516],"yaw":-3.16307,"spawnMask":1},{"id":"creature-247813","entityId":"entry-11458","position":[3.304,-25.2254,-575.426],"yaw":-0.214215,"spawnMask":1},{"id":"creature-247814","entityId":"entry-11458","position":[13.4773,-25.2254,-566.019],"yaw":-0.255774,"spawnMask":1},{"id":"creature-247815","entityId":"entry-11458","position":[94.5002,-25.2294,-402.447],"yaw":-0.014872,"spawnMask":1},{"id":"creature-247831","entityId":"entry-11466","position":[66.6413,-45.7127,130.273],"yaw":-5.06145,"spawnMask":1},{"id":"creature-247832","entityId":"entry-11466","position":[38.7367,-45.6102,135.34],"yaw":-4.72984,"spawnMask":1},{"id":"creature-247833","entityId":"entry-11466","position":[10.0816,-45.611,130.325],"yaw":-4.34587,"spawnMask":1},{"id":"creature-247834","entityId":"entry-11466","position":[-14.4145,-45.6505,116.176],"yaw":-4.01426,"spawnMask":1},{"id":"creature-247835","entityId":"entry-11466","position":[-33.1627,-45.6157,94.067],"yaw":-3.64774,"spawnMask":1},{"id":"creature-247836","entityId":"entry-11466","position":[-43.0142,-45.5353,68.11],"yaw":-3.31613,"spawnMask":1},{"id":"creature-247837","entityId":"entry-11466","position":[-43.0768,-45.6038,37.907],"yaw":-2.94961,"spawnMask":1},{"id":"creature-247838","entityId":"entry-11466","position":[-32.8084,-45.6467,10.417],"yaw":-2.60054,"spawnMask":1},{"id":"creature-247839","entityId":"entry-11466","position":[-14.7129,-45.5858,-11.056],"yaw":-2.25148,"spawnMask":1},{"id":"creature-247840","entityId":"entry-11466","position":[10.5708,-45.4197,-25.83],"yaw":-1.90241,"spawnMask":1},{"id":"creature-247841","entityId":"entry-11466","position":[38.9825,-45.3755,-30.61],"yaw":-1.5708,"spawnMask":1},{"id":"creature-247842","entityId":"entry-11466","position":[67.8321,-45.2851,-25.577],"yaw":-1.22173,"spawnMask":1},{"id":"creature-247843","entityId":"entry-11466","position":[92.6286,-45.336,-10.89],"yaw":-0.872665,"spawnMask":1},{"id":"creature-247844","entityId":"entry-11466","position":[111.131,-45.2327,11.198],"yaw":-0.523599,"spawnMask":1},{"id":"creature-247845","entityId":"entry-11466","position":[121.285,-45.0692,39.183],"yaw":-0.174533,"spawnMask":1},{"id":"creature-247846","entityId":"entry-11466","position":[120.801,-45.2117,67.199],"yaw":-6.10865,"spawnMask":1},{"id":"creature-247847","entityId":"entry-11466","position":[110.342,-45.2295,95.197],"yaw":-5.75959,"spawnMask":1},{"id":"creature-247848","entityId":"entry-11466","position":[91.978,-45.4217,116.26],"yaw":-5.42797,"spawnMask":1},{"id":"creature-247849","entityId":"entry-11469","position":[-55.0951,-25.2342,-251.58],"yaw":-3.15905,"spawnMask":1},{"id":"creature-247850","entityId":"entry-11469","position":[-121.132,6.9346,-271.713],"yaw":-4.5204,"spawnMask":1},{"id":"creature-247851","entityId":"entry-11469","position":[-100.227,6.9456,-192.882],"yaw":-1.39626,"spawnMask":1},{"id":"creature-247852","entityId":"entry-11469","position":[-62.6761,6.9356,-234.474],"yaw":-2.93215,"spawnMask":1},{"id":"creature-247853","entityId":"entry-11469","position":[60.8003,6.9474,-194.393],"yaw":-0.174533,"spawnMask":1},{"id":"creature-247855","entityId":"entry-11469","position":[-78.0923,6.9473,-188.147],"yaw":-5.60251,"spawnMask":1},{"id":"creature-247856","entityId":"entry-11469","position":[28.5108,-25.2351,-249.076],"yaw":-5.02655,"spawnMask":1},{"id":"creature-247857","entityId":"entry-11469","position":[106.021,6.9471,-228.065],"yaw":-4.34587,"spawnMask":1},{"id":"creature-247858","entityId":"entry-11469","position":[-8.0568,6.9381,-196.056],"yaw":-2.02458,"spawnMask":1},{"id":"creature-247860","entityId":"entry-11469","position":[67.1718,6.9363,-235.562],"yaw":-6.23082,"spawnMask":1},{"id":"creature-247861","entityId":"entry-11470","position":[-55.1596,-25.2331,-254.489],"yaw":-2.67035,"spawnMask":1},{"id":"creature-247862","entityId":"entry-11470","position":[-97.1784,6.9346,-271.872],"yaw":-3.10669,"spawnMask":1},{"id":"creature-247863","entityId":"entry-11470","position":[-5.9908,-25.2346,-250.378],"yaw":-4.59022,"spawnMask":1},{"id":"creature-247864","entityId":"entry-11470","position":[-122.604,6.9346,-278.827],"yaw":-1.58825,"spawnMask":1},{"id":"creature-247865","entityId":"entry-11470","position":[-118.794,6.9346,-278.572],"yaw":-1.01229,"spawnMask":1},{"id":"creature-247866","entityId":"entry-11470","position":[-99.0758,6.9466,-189.217],"yaw":-5.2709,"spawnMask":1},{"id":"creature-247868","entityId":"entry-11470","position":[-56.6874,6.9352,-235.9],"yaw":-0.523599,"spawnMask":1},{"id":"creature-247869","entityId":"entry-11470","position":[54.1072,6.9474,-193.991],"yaw":-3.1765,"spawnMask":1},{"id":"creature-247870","entityId":"entry-11470","position":[12.0229,6.9352,-230.129],"yaw":-3.1765,"spawnMask":1},{"id":"creature-247871","entityId":"entry-11470","position":[16.8954,6.935,-232.888],"yaw":-0.610865,"spawnMask":1},{"id":"creature-247872","entityId":"entry-11470","position":[-82.6988,6.9479,-189.848],"yaw":-3.08923,"spawnMask":1},{"id":"creature-247873","entityId":"entry-11470","position":[-80.0483,6.9466,-195.219],"yaw":-1.5708,"spawnMask":1},{"id":"creature-247874","entityId":"entry-11470","position":[27.355,-25.2336,-253.198],"yaw":-1.85005,"spawnMask":1},{"id":"creature-247875","entityId":"entry-11470","position":[108.24,6.9468,-234.012],"yaw":-1.25664,"spawnMask":1},{"id":"creature-247876","entityId":"entry-11470","position":[24.8472,-25.2344,-250.987],"yaw":-2.44346,"spawnMask":1},{"id":"creature-247877","entityId":"entry-11470","position":[-9.7378,6.9384,-192.154],"yaw":-3.75246,"spawnMask":1},{"id":"creature-247878","entityId":"entry-11470","position":[-7.3699,-25.2343,-251.206],"yaw":-3.80482,"spawnMask":1},{"id":"creature-247880","entityId":"entry-11470","position":[61.564,6.9355,-233.438],"yaw":-3.28122,"spawnMask":1},{"id":"creature-247881","entityId":"entry-11471","position":[12.1084,-26.1457,-201.511],"yaw":-5.99616,"spawnMask":1},{"id":"creature-247882","entityId":"entry-11471","position":[-109.238,-26.0624,-280.378],"yaw":-5.37561,"spawnMask":1},{"id":"creature-247883","entityId":"entry-11471","position":[-107.975,-26.0625,-286.72],"yaw":-0.663225,"spawnMask":1},{"id":"creature-247884","entityId":"entry-11471","position":[-98.8727,-26.062,-213.776],"yaw":-6.12611,"spawnMask":1},{"id":"creature-247885","entityId":"entry-11471","position":[-128.716,-26.062,-198.456],"yaw":-3.12414,"spawnMask":1},{"id":"creature-247886","entityId":"entry-11471","position":[96.0722,-26.065,-294.247],"yaw":-6.00393,"spawnMask":1},{"id":"creature-247887","entityId":"entry-11471","position":[90.6332,-26.0635,-242.6],"yaw":-3.15905,"spawnMask":1},{"id":"creature-247888","entityId":"entry-11471","position":[-103.954,-26.062,-258.236],"yaw":-2.16421,"spawnMask":1},{"id":"creature-247889","entityId":"entry-11471","position":[-54.149,-26.1454,-217.518],"yaw":-4.00858,"spawnMask":1},{"id":"creature-247890","entityId":"entry-11471","position":[-68.7576,-26.1474,-213.962],"yaw":-4.57106,"spawnMask":1},{"id":"creature-247891","entityId":"entry-11471","position":[54.4574,-26.062,-221.381],"yaw":-5.63741,"spawnMask":1},{"id":"creature-247892","entityId":"entry-11471","position":[53.1943,-26.1526,-204.974],"yaw":-0.570829,"spawnMask":1},{"id":"creature-247893","entityId":"entry-11471","position":[-32.2099,-26.062,-193.237],"yaw":-2.87979,"spawnMask":1},{"id":"creature-247894","entityId":"entry-11471","position":[-128.728,-26.0529,-320.87],"yaw":-0.750492,"spawnMask":1},{"id":"creature-247895","entityId":"entry-11472","position":[20.2976,-26.062,-220.718],"yaw":-5.96903,"spawnMask":1},{"id":"creature-247896","entityId":"entry-11472","position":[-115.567,-26.0661,-297.62],"yaw":0,"spawnMask":1},{"id":"creature-247897","entityId":"entry-11472","position":[-90.2455,-26.062,-202.049],"yaw":-0.506145,"spawnMask":1},{"id":"creature-247898","entityId":"entry-11472","position":[-135.275,-26.062,-195.393],"yaw":-3.14159,"spawnMask":1},{"id":"creature-247899","entityId":"entry-11472","position":[85.6847,-26.0667,-286.145],"yaw":-0.174533,"spawnMask":1},{"id":"creature-247900","entityId":"entry-11472","position":[78.7921,-26.0646,-245.696],"yaw":-2.40855,"spawnMask":1},{"id":"creature-247901","entityId":"entry-11472","position":[96.0543,-26.065,-250.745],"yaw":-2.18166,"spawnMask":1},{"id":"creature-247902","entityId":"entry-11472","position":[-99.224,-26.062,-250.183],"yaw":-1.06465,"spawnMask":1},{"id":"creature-247903","entityId":"entry-11472","position":[-102.699,-26.1452,-241.869],"yaw":-2.62741,"spawnMask":1},{"id":"creature-247904","entityId":"entry-11472","position":[-60.0116,-26.062,-224.323],"yaw":-2.18166,"spawnMask":1},{"id":"creature-247905","entityId":"entry-11472","position":[60.3952,-26.1539,-211.12],"yaw":-3.71401,"spawnMask":1},{"id":"creature-247906","entityId":"entry-11472","position":[58.612,-26.062,-193.888],"yaw":0,"spawnMask":1},{"id":"creature-247907","entityId":"entry-11472","position":[-33.9702,-26.062,-202.41],"yaw":-4.2586,"spawnMask":1},{"id":"creature-247908","entityId":"entry-11472","position":[-120.659,-26.0609,-321.694],"yaw":-1.65806,"spawnMask":1},{"id":"creature-247909","entityId":"entry-11472","position":[-62.5089,-26.0572,-203.296],"yaw":0,"spawnMask":1},{"id":"creature-247926","entityId":"entry-11475","position":[20.7918,-26.1472,-208.619],"yaw":-4.71914,"spawnMask":1},{"id":"creature-247927","entityId":"entry-11475","position":[-101.366,-26.0628,-280.364],"yaw":-4.50295,"spawnMask":1},{"id":"creature-247928","entityId":"entry-11475","position":[-88.1823,-26.062,-211.273],"yaw":-3.80482,"spawnMask":1},{"id":"creature-247929","entityId":"entry-11475","position":[-135.886,-26.062,-200.651],"yaw":-3.12414,"spawnMask":1},{"id":"creature-247930","entityId":"entry-11475","position":[98.1319,-26.0647,-283.441],"yaw":-1.85005,"spawnMask":1},{"id":"creature-247931","entityId":"entry-11475","position":[55.1259,-26.153,-196.766],"yaw":-5.51304,"spawnMask":1},{"id":"creature-247932","entityId":"entry-11475","position":[-29.0108,-44.9717,-205.704],"yaw":-3.83972,"spawnMask":1},{"id":"creature-247933","entityId":"entry-11475","position":[17.458,-44.9717,-202.199],"yaw":-4.43314,"spawnMask":1},{"id":"creature-247934","entityId":"entry-11475","position":[-21.8989,-26.1492,-208.463],"yaw":-2.73993,"spawnMask":1},{"id":"creature-247935","entityId":"entry-11475","position":[-119.873,-26.0592,-332.654],"yaw":-1.43117,"spawnMask":1},{"id":"creature-247936","entityId":"entry-11475","position":[-57.6312,-26.062,-213.967],"yaw":-0.122173,"spawnMask":1},{"id":"creature-247937","entityId":"entry-11476","position":[-125.788,6.9386,-375.986],"yaw":-4.85202,"spawnMask":1},{"id":"creature-247938","entityId":"entry-11476","position":[-117.226,6.9346,-369.333],"yaw":-3.92699,"spawnMask":1},{"id":"creature-247939","entityId":"entry-11476","position":[92.719,6.9357,-372.749],"yaw":-3.33358,"spawnMask":1},{"id":"creature-247940","entityId":"entry-11476","position":[63.9565,6.947,-195.716],"yaw":-4.83456,"spawnMask":1},{"id":"creature-247941","entityId":"entry-11476","position":[56.2881,6.9457,-200.137],"yaw":-4.59022,"spawnMask":1},{"id":"creature-247942","entityId":"entry-11476","position":[104.11,6.9464,-233.523],"yaw":-1.0472,"spawnMask":1},{"id":"creature-247943","entityId":"entry-11476","position":[-106.26,6.9346,-364.836],"yaw":-2.87979,"spawnMask":1},{"id":"creature-247944","entityId":"entry-11476","position":[-107.88,6.9347,-377.853],"yaw":-3.28122,"spawnMask":1},{"id":"creature-247945","entityId":"entry-11476","position":[21.3899,6.936,-230.801],"yaw":-1.25664,"spawnMask":1},{"id":"creature-247946","entityId":"entry-11476","position":[81.6231,6.9346,-357.067],"yaw":-2.86234,"spawnMask":1},{"id":"creature-247947","entityId":"entry-11476","position":[80.6243,6.9394,-379.93],"yaw":-4.50295,"spawnMask":1},{"id":"creature-247948","entityId":"entry-11476","position":[81.7763,6.9346,-368.252],"yaw":-5.58505,"spawnMask":1},{"id":"creature-247949","entityId":"entry-11476","position":[1.216,-25.2333,-253.923],"yaw":-0.750492,"spawnMask":1},{"id":"creature-247950","entityId":"entry-11476","position":[-10.4231,-25.2327,-255.612],"yaw":-4.60767,"spawnMask":1},{"id":"creature-247951","entityId":"entry-11476","position":[-118.927,6.9346,-363.703],"yaw":-4.76475,"spawnMask":1},{"id":"creature-247952","entityId":"entry-11476","position":[-120.101,6.9384,-377.054],"yaw":-5.81195,"spawnMask":1},{"id":"creature-247953","entityId":"entry-11476","position":[90.2962,6.9346,-364.29],"yaw":-0.733038,"spawnMask":1},{"id":"creature-247954","entityId":"entry-11476","position":[-95.6505,6.9346,-279.971],"yaw":-3.01942,"spawnMask":1},{"id":"creature-247955","entityId":"entry-11476","position":[-97.1362,6.9462,-195.781],"yaw":-0.523599,"spawnMask":1},{"id":"creature-247956","entityId":"entry-11477","position":[-93.1863,6.9346,-267.881],"yaw":-3.68265,"spawnMask":1},{"id":"creature-247957","entityId":"entry-11477","position":[-49.3932,-25.2325,-256.313],"yaw":-1.65806,"spawnMask":1},{"id":"creature-247958","entityId":"entry-11477","position":[-61.3733,-25.2339,-252.266],"yaw":-0.418879,"spawnMask":1},{"id":"creature-247959","entityId":"entry-11477","position":[-105.192,6.9447,-189.839],"yaw":-4.81711,"spawnMask":1},{"id":"creature-247960","entityId":"entry-11477","position":[81.0784,6.9346,-363.916],"yaw":-0.907571,"spawnMask":1},{"id":"creature-247961","entityId":"entry-11477","position":[105.646,6.946,-224.581],"yaw":-1.72788,"spawnMask":1},{"id":"creature-247962","entityId":"entry-11477","position":[-109.826,6.9346,-368.785],"yaw":-0.191986,"spawnMask":1},{"id":"creature-247963","entityId":"entry-11477","position":[-104.1,6.9412,-382.858],"yaw":-2.61799,"spawnMask":1},{"id":"creature-247964","entityId":"entry-11477","position":[87.1143,6.9346,-368.853],"yaw":-4.93928,"spawnMask":1},{"id":"creature-247965","entityId":"entry-11477","position":[-113.025,6.9346,-363.912],"yaw":-3.735,"spawnMask":1},{"id":"creature-247966","entityId":"entry-11477","position":[-113.56,6.9364,-378.296],"yaw":-3.22886,"spawnMask":1},{"id":"creature-247967","entityId":"entry-11477","position":[33.3651,-25.2329,-255.019],"yaw":-1.06465,"spawnMask":1},{"id":"creature-247968","entityId":"entry-11477","position":[22.3325,-25.2328,-255.325],"yaw":-4.45059,"spawnMask":1},{"id":"creature-247969","entityId":"entry-11477","position":[92.134,6.9394,-379.928],"yaw":-4.76475,"spawnMask":1},{"id":"creature-247970","entityId":"entry-11477","position":[86.1041,6.9346,-360.945],"yaw":-5.35816,"spawnMask":1},{"id":"creature-247971","entityId":"entry-11477","position":[8.4794,6.935,-233.315],"yaw":-5.41052,"spawnMask":1},{"id":"creature-247972","entityId":"entry-11477","position":[90.6788,6.9346,-355.749],"yaw":-0.558505,"spawnMask":1},{"id":"creature-247973","entityId":"entry-11480","position":[-0.2574,-30.1057,-482.631],"yaw":-3.03687,"spawnMask":1},{"id":"creature-247974","entityId":"entry-11480","position":[-22.3633,-29.5062,-491.285],"yaw":-5.61996,"spawnMask":1},{"id":"creature-247975","entityId":"entry-11480","position":[-13.8123,-30.564,-470.191],"yaw":-1.43117,"spawnMask":1},{"id":"creature-247976","entityId":"entry-11480","position":[-109.26,6.9346,-327.484],"yaw":-2.93215,"spawnMask":1},{"id":"creature-247977","entityId":"entry-11480","position":[-116.312,6.9346,-342.747],"yaw":-4.41568,"spawnMask":1},{"id":"creature-247978","entityId":"entry-11480","position":[-126.685,6.9346,-319.39],"yaw":-1.18682,"spawnMask":1},{"id":"creature-247979","entityId":"entry-11480","position":[79.3352,6.9361,-322.698],"yaw":-5.61996,"spawnMask":1},{"id":"creature-247980","entityId":"entry-11480","position":[86.3381,6.9366,-305.603],"yaw":-1.18682,"spawnMask":1},{"id":"creature-247981","entityId":"entry-11480","position":[98.4269,6.9356,-330.85],"yaw":-4.20624,"spawnMask":1},{"id":"creature-247982","entityId":"entry-11480","position":[-78.1799,-46.2454,-35.892],"yaw":-4.67748,"spawnMask":1},{"id":"creature-247983","entityId":"entry-11480","position":[-89.9192,-46.2468,-15.021],"yaw":-0.715585,"spawnMask":1},{"id":"creature-247984","entityId":"entry-11480","position":[-64.7134,-46.2468,-23.391],"yaw":-3.33358,"spawnMask":1},{"id":"creature-247985","entityId":"entry-11480","position":[154.568,-46.245,-39.097],"yaw":-4.64258,"spawnMask":1},{"id":"creature-247986","entityId":"entry-11480","position":[142.883,-46.2468,-16.329],"yaw":-0.715585,"spawnMask":1},{"id":"creature-247987","entityId":"entry-11480","position":[170.766,-46.2468,-24.891],"yaw":-3.14159,"spawnMask":1},{"id":"creature-247988","entityId":"entry-11480","position":[-133.61,6.9346,-325.81],"yaw":-0.471239,"spawnMask":1},{"id":"creature-247989","entityId":"entry-11483","position":[-4.5858,-29.7836,-491.296],"yaw":-3.83972,"spawnMask":1},{"id":"creature-247990","entityId":"entry-11483","position":[-13.4083,-29.2285,-494.711],"yaw":-4.85202,"spawnMask":1},{"id":"creature-247991","entityId":"entry-11483","position":[-24.4817,-30.1582,-482.228],"yaw":-6.0912,"spawnMask":1},{"id":"creature-247992","entityId":"entry-11483","position":[-22.3362,-30.4271,-474.183],"yaw":-0.855211,"spawnMask":1},{"id":"creature-247993","entityId":"entry-11483","position":[-4.9408,-30.2462,-474.045],"yaw":-2.51327,"spawnMask":1},{"id":"creature-247994","entityId":"entry-11483","position":[-116.645,6.9346,-319.189],"yaw":-1.90241,"spawnMask":1},{"id":"creature-247995","entityId":"entry-11483","position":[-109.572,6.9346,-337.115],"yaw":-3.31613,"spawnMask":1},{"id":"creature-247996","entityId":"entry-11483","position":[-126.165,6.9346,-343.27],"yaw":-4.99164,"spawnMask":1},{"id":"creature-247997","entityId":"entry-11483","position":[-133.141,6.9346,-336.804],"yaw":-5.93412,"spawnMask":1},{"id":"creature-247998","entityId":"entry-11483","position":[86.7138,6.9357,-329.986],"yaw":-4.83456,"spawnMask":1},{"id":"creature-247999","entityId":"entry-11483","position":[79.6065,6.9361,-312.865],"yaw":-0.401426,"spawnMask":1},{"id":"creature-248000","entityId":"entry-11483","position":[97.5416,6.9375,-305.913],"yaw":-2.21657,"spawnMask":1},{"id":"creature-248001","entityId":"entry-11483","position":[104.176,6.938,-312.963],"yaw":-2.75762,"spawnMask":1},{"id":"creature-248002","entityId":"entry-11483","position":[104.347,6.9367,-323.332],"yaw":-3.36848,"spawnMask":1},{"id":"creature-248003","entityId":"entry-11483","position":[-87.3231,-46.2468,-32.572],"yaw":-5.16617,"spawnMask":1},{"id":"creature-248004","entityId":"entry-11483","position":[-91.858,-46.2468,-22.429],"yaw":0,"spawnMask":1},{"id":"creature-248005","entityId":"entry-11483","position":[-78.17,-46.2468,-10.373],"yaw":-1.41372,"spawnMask":1},{"id":"creature-248006","entityId":"entry-11483","position":[-68.8065,-46.2468,-12.449],"yaw":-2.33874,"spawnMask":1},{"id":"creature-248007","entityId":"entry-11483","position":[-68.5476,-46.2454,-31.744],"yaw":-3.9619,"spawnMask":1},{"id":"creature-248008","entityId":"entry-11483","position":[146.036,-46.2449,-35.694],"yaw":-5.48033,"spawnMask":1},{"id":"creature-248009","entityId":"entry-11483","position":[140.204,-46.2464,-25.848],"yaw":-6.07375,"spawnMask":1},{"id":"creature-248010","entityId":"entry-11483","position":[153.991,-46.2468,-12.046],"yaw":-1.50098,"spawnMask":1},{"id":"creature-248011","entityId":"entry-11483","position":[165.257,-46.2468,-13.957],"yaw":-2.19912,"spawnMask":1},{"id":"creature-248012","entityId":"entry-11483","position":[164.893,-46.2466,-35.913],"yaw":-3.78736,"spawnMask":1},{"id":"creature-248022","entityId":"entry-11486","position":[-132.699,-70.1334,-134.302],"yaw":-4.62512,"spawnMask":1},{"id":"creature-248023","entityId":"entry-14303","position":[-58.3478,-29.1911,-468.639],"yaw":0,"spawnMask":1},{"id":"creature-248024","entityId":"entry-14303","position":[25.9002,-25.1634,-561.581],"yaw":-1.22173,"spawnMask":1},{"id":"creature-248025","entityId":"entry-11487","position":[-33.213,-26.0603,-184.663],"yaw":-4.53786,"spawnMask":1},{"id":"creature-248026","entityId":"entry-14303","position":[-134.792,-26.6523,-557.262],"yaw":-3.7001,"spawnMask":1},{"id":"creature-248027","entityId":"entry-14303","position":[-131.396,-26.6523,-408.44],"yaw":-5.18363,"spawnMask":1},{"id":"creature-248028","entityId":"entry-14303","position":[39.8198,-29.1396,-474.064],"yaw":-0.174533,"spawnMask":1},{"id":"creature-248029","entityId":"entry-14303","position":[-50.0505,-29.7574,-476.763],"yaw":-3.46971,"spawnMask":1},{"id":"creature-248030","entityId":"entry-14303","position":[30.4994,-30.4889,-508.75],"yaw":-5.77788,"spawnMask":1},{"id":"creature-248031","entityId":"entry-14303","position":[-74.2063,-29.8855,-494.784],"yaw":-3.33358,"spawnMask":1},{"id":"creature-248032","entityId":"entry-14303","position":[-118.824,-25.1413,-563.395],"yaw":-0.244346,"spawnMask":1},{"id":"creature-248033","entityId":"entry-14303","position":[101.695,-26.7411,-408.019],"yaw":-4.50226,"spawnMask":1},{"id":"creature-248034","entityId":"entry-11488","position":[84.2739,6.8653,-216.257],"yaw":-0.838618,"spawnMask":1},{"id":"creature-248035","entityId":"entry-11489","position":[-14.4655,-45.0526,-284.367],"yaw":-4.71239,"spawnMask":1},{"id":"creature-248036","entityId":"entry-14308","position":[87.2697,6.8653,-216.417],"yaw":-0.838618,"spawnMask":1},{"id":"creature-248037","entityId":"entry-11496","position":[38.0077,-51.2023,52.225],"yaw":-4.69494,"spawnMask":1},{"id":"creature-248076","entityId":"entry-11501","position":[-828.147,15.5682,-279.464],"yaw":-3.184,"spawnMask":1},{"id":"creature-248077","entityId":"entry-14326","position":[-410.784,-46.3078,-763.3654],"yaw":-5.28835,"spawnMask":1},{"id":"creature-248078","entityId":"entry-14322","position":[-491.304,-24.2502,-662.8271],"yaw":-4.03171,"spawnMask":1},{"id":"creature-248079","entityId":"entry-14321","position":[-356.868,-10.096,-501.909],"yaw":-3.14258,"spawnMask":1},{"id":"creature-248080","entityId":"entry-14323","position":[-550.453,-47.0683,-226.49],"yaw":-3.92699,"spawnMask":1},{"id":"creature-248081","entityId":"entry-14325","position":[-627.663,7.7129,-278.494],"yaw":-3.13558,"spawnMask":1},{"id":"creature-248082","entityId":"entry-14324","position":[-834.068,15.6517,-270.672],"yaw":-3.21141,"spawnMask":1},{"id":"creature-248083","entityId":"entry-13036","position":[-725.159,6.5144,-273.845],"yaw":-4.36332,"spawnMask":1},{"id":"creature-248084","entityId":"entry-13036","position":[-719.476,6.5132,-282.987],"yaw":-5.86431,"spawnMask":1},{"id":"creature-248085","entityId":"entry-13036","position":[-712.876,6.5118,-291.538],"yaw":-5.06145,"spawnMask":1},{"id":"creature-248086","entityId":"entry-13036","position":[-724.283,6.5136,-295.701],"yaw":-0.925025,"spawnMask":1},{"id":"creature-248087","entityId":"entry-13036","position":[-715.429,6.513,-267.641],"yaw":-4.74729,"spawnMask":1},{"id":"creature-248088","entityId":"entry-13036","position":[-729.855,6.4311,-262.238],"yaw":-1.0012,"spawnMask":1},{"id":"creature-248089","entityId":"entry-13036","position":[-731.429,6.4311,-319.31],"yaw":-3.69297,"spawnMask":1},{"id":"creature-248090","entityId":"entry-13036","position":[-730.93,6.432,-306.013],"yaw":-4.64055,"spawnMask":1},{"id":"creature-248091","entityId":"entry-13036","position":[-735.39,6.4325,-315.798],"yaw":-0.813315,"spawnMask":1},{"id":"creature-248093","entityId":"entry-13036","position":[-340.957,-46.7954,-782.3859],"yaw":-5.84685,"spawnMask":1},{"id":"creature-248094","entityId":"entry-13036","position":[-357.679,-47.0585,-791.2769],"yaw":-1.57987,"spawnMask":1},{"id":"creature-248095","entityId":"entry-13036","position":[-349.211,-47.1273,-796.4607],"yaw":-0.750492,"spawnMask":1},{"id":"creature-248096","entityId":"entry-13036","position":[-341.819,-46.9436,-790.332],"yaw":-3.12414,"spawnMask":1},{"id":"creature-248097","entityId":"entry-13036","position":[-382.379,-45.3073,-829.2519],"yaw":-1.91986,"spawnMask":1},{"id":"creature-248098","entityId":"entry-13036","position":[-377.556,-45.8563,-811.9771],"yaw":-2.63545,"spawnMask":1},{"id":"creature-248099","entityId":"entry-13036","position":[-382.851,-45.6558,-807.2155],"yaw":-4.95674,"spawnMask":1},{"id":"creature-248100","entityId":"entry-13036","position":[-374.904,-45.9017,-819.345],"yaw":-0.418879,"spawnMask":1},{"id":"creature-248101","entityId":"entry-13036","position":[-399.253,-47.3049,-743.965],"yaw":-4.4731,"spawnMask":1},{"id":"creature-248106","entityId":"entry-13036","position":[-407.862,-44.8471,-810.9351],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248107","entityId":"entry-13036","position":[-428.723,-46.4599,-795.2484],"yaw":-0.884373,"spawnMask":1},{"id":"creature-248108","entityId":"entry-13036","position":[-415.393,-45.6856,-797.2681],"yaw":-4.29386,"spawnMask":1},{"id":"creature-248109","entityId":"entry-13036","position":[-428.198,-45.4771,-680.6923],"yaw":-3.03687,"spawnMask":1},{"id":"creature-248110","entityId":"entry-13036","position":[-426.124,-45.2024,-686.9319],"yaw":-0.296706,"spawnMask":1},{"id":"creature-248111","entityId":"entry-13036","position":[-434.445,-44.9754,-691.34],"yaw":-5.39307,"spawnMask":1},{"id":"creature-248117","entityId":"entry-13036","position":[-448.432,-10.5465,-456.035],"yaw":-3.98352,"spawnMask":1},{"id":"creature-248118","entityId":"entry-13036","position":[-441.946,-10.4621,-467.919],"yaw":-1.20428,"spawnMask":1},{"id":"creature-248119","entityId":"entry-13036","position":[-399.819,-25.5535,-657.389],"yaw":-1.8326,"spawnMask":1},{"id":"creature-248120","entityId":"entry-13036","position":[-402.482,-18.8146,-588.686],"yaw":-3.28122,"spawnMask":1},{"id":"creature-248121","entityId":"entry-13036","position":[-410.954,-18.8146,-585.697],"yaw":-1.67552,"spawnMask":1},{"id":"creature-248122","entityId":"entry-13036","position":[-412.873,-18.8142,-576.769],"yaw":-0.645772,"spawnMask":1},{"id":"creature-248125","entityId":"entry-13036","position":[-433.999,-18.8976,-591.772],"yaw":-3.27681,"spawnMask":1},{"id":"creature-248126","entityId":"entry-13036","position":[-436.594,-18.8975,-588.415],"yaw":-3.38357,"spawnMask":1},{"id":"creature-248130","entityId":"entry-13036","position":[-409.212,-18.8157,-433.105],"yaw":-6.0912,"spawnMask":1},{"id":"creature-248131","entityId":"entry-13036","position":[-408.15,-47.1058,-736.8112],"yaw":-5.84685,"spawnMask":1},{"id":"creature-248132","entityId":"entry-13036","position":[-414.047,-46.8377,-744.466],"yaw":-2.54818,"spawnMask":1},{"id":"creature-248135","entityId":"entry-13036","position":[-341.296,-47.2195,-822.0018],"yaw":-2.46091,"spawnMask":1},{"id":"creature-248136","entityId":"entry-13036","position":[-352.359,-47.5739,-817.9906],"yaw":-0.804581,"spawnMask":1},{"id":"creature-248137","entityId":"entry-13036","position":[-335.383,-47.5676,-815.0791],"yaw":-1.0472,"spawnMask":1},{"id":"creature-248138","entityId":"entry-13036","position":[-356.917,-47.9341,-827.7847],"yaw":-4.65561,"spawnMask":1},{"id":"creature-248139","entityId":"entry-13036","position":[-439.199,-17.887,-401.044],"yaw":-0.384838,"spawnMask":1},{"id":"creature-248140","entityId":"entry-13036","position":[-444.405,-18.8135,-417.944],"yaw":-1.16937,"spawnMask":1},{"id":"creature-248141","entityId":"entry-13036","position":[-451.304,-17.887,-402.114],"yaw":-3.69278,"spawnMask":1},{"id":"creature-248142","entityId":"entry-13036","position":[-312.051,-18.8135,-586.881],"yaw":-2.00713,"spawnMask":1},{"id":"creature-248143","entityId":"entry-13036","position":[-318.451,-18.8969,-399.783],"yaw":-5.02763,"spawnMask":1},{"id":"creature-248144","entityId":"entry-13036","position":[-325.148,-18.8135,-408.341],"yaw":-1.3439,"spawnMask":1},{"id":"creature-248145","entityId":"entry-13036","position":[-780.945,14.2995,-276.419],"yaw":-4.05614,"spawnMask":1},{"id":"creature-248146","entityId":"entry-13036","position":[-792.791,15.5684,-264.687],"yaw":-3.61377,"spawnMask":1},{"id":"creature-248147","entityId":"entry-13036","position":[-778.921,13.4,-270.153],"yaw":-3.45469,"spawnMask":1},{"id":"creature-248153","entityId":"entry-13036","position":[-399.909,-10.5385,-539.342],"yaw":-4.08073,"spawnMask":1},{"id":"creature-248154","entityId":"entry-13036","position":[-387.211,-10.5337,-556.757],"yaw":-4.61475,"spawnMask":1},{"id":"creature-248155","entityId":"entry-13036","position":[-355.311,-46.8947,-778.6595],"yaw":-2.0674,"spawnMask":1},{"id":"creature-248156","entityId":"entry-13036","position":[-410.008,-18.9028,-424.25],"yaw":-3.19855,"spawnMask":1},{"id":"creature-248157","entityId":"entry-13036","position":[-404.331,-18.903,-417.952],"yaw":-0.80796,"spawnMask":1},{"id":"creature-248163","entityId":"entry-13036","position":[-412.768,-47.1382,-821.7431],"yaw":-6.03884,"spawnMask":1},{"id":"creature-248164","entityId":"entry-13036","position":[-420.721,-45.5598,-809.4483],"yaw":-0.958851,"spawnMask":1},{"id":"creature-248165","entityId":"entry-13036","position":[-334.308,-18.8135,-403.186],"yaw":-3.4383,"spawnMask":1},{"id":"creature-248166","entityId":"entry-13036","position":[-464.297,-25.6752,-733.9552],"yaw":-1.44948,"spawnMask":1},{"id":"creature-248167","entityId":"entry-13036","position":[-466.899,-25.6765,-737.3059],"yaw":-1.52329,"spawnMask":1},{"id":"creature-248170","entityId":"entry-13036","position":[-434.573,-10.4636,-455.581],"yaw":-1.8326,"spawnMask":1},{"id":"creature-248171","entityId":"entry-13036","position":[-386.253,-44.8355,-819.8434],"yaw":-3.68265,"spawnMask":1},{"id":"creature-248176","entityId":"entry-13036","position":[-404.829,-46.7304,-751.0477],"yaw":-5.37936,"spawnMask":1},{"id":"creature-248177","entityId":"entry-13036","position":[-304.165,-18.8135,-576.9],"yaw":-0.314159,"spawnMask":1},{"id":"creature-248178","entityId":"entry-13036","position":[-319.134,-18.8135,-578.809],"yaw":-3.36848,"spawnMask":1},{"id":"creature-248179","entityId":"entry-13036","position":[-415.365,-46.8229,-728.1907],"yaw":-2.00533,"spawnMask":1},{"id":"creature-248180","entityId":"entry-13036","position":[-404.71,-47.0972,-726.8922],"yaw":-1.09309,"spawnMask":1},{"id":"creature-248182","entityId":"entry-13036","position":[-397.124,-25.5534,-651.323],"yaw":-3.85718,"spawnMask":1},{"id":"creature-248183","entityId":"entry-13036","position":[-391.789,-25.5534,-649.73],"yaw":-5.81195,"spawnMask":1},{"id":"creature-248186","entityId":"entry-13036","position":[-347.256,-47.6297,-828.1696],"yaw":-0.77538,"spawnMask":1},{"id":"creature-248187","entityId":"entry-11450","position":[-387.482,-28.8987,-297.443],"yaw":-2.68781,"spawnMask":1},{"id":"creature-248188","entityId":"entry-11450","position":[-419.088,-40.0098,-221.946],"yaw":-0.488692,"spawnMask":1},{"id":"creature-248189","entityId":"entry-11450","position":[-530.242,-47.0692,-179.776],"yaw":-1.41372,"spawnMask":1},{"id":"creature-248190","entityId":"entry-11450","position":[-530.279,-47.0692,-159.34],"yaw":-4.86947,"spawnMask":1},{"id":"creature-248191","entityId":"entry-11450","position":[-593.301,-26.4212,-195.095],"yaw":-3.10669,"spawnMask":1},{"id":"creature-248192","entityId":"entry-11450","position":[-484.174,6.2479,-236.407],"yaw":-1.44862,"spawnMask":1},{"id":"creature-248193","entityId":"entry-11450","position":[-497.806,6.2484,-236.408],"yaw":-1.64061,"spawnMask":1},{"id":"creature-248194","entityId":"entry-11450","position":[-480.337,6.2455,-202.047],"yaw":-1.85005,"spawnMask":1},{"id":"creature-248195","entityId":"entry-11450","position":[-485.214,6.2453,-195.269],"yaw":-3.21141,"spawnMask":1},{"id":"creature-248196","entityId":"entry-11450","position":[-566.009,7.7976,-273.49],"yaw":-4.2586,"spawnMask":1},{"id":"creature-248197","entityId":"entry-11450","position":[-559.293,7.7976,-282.901],"yaw":-0.855211,"spawnMask":1},{"id":"creature-248198","entityId":"entry-11450","position":[-688.532,7.8031,-254.299],"yaw":-2.30383,"spawnMask":1},{"id":"creature-248199","entityId":"entry-11450","position":[-541.768,-26.4212,-177.474],"yaw":-5.67232,"spawnMask":1},{"id":"creature-248200","entityId":"entry-11450","position":[-523.031,6.2508,-205.711],"yaw":-2.19911,"spawnMask":1},{"id":"creature-248201","entityId":"entry-11450","position":[-748.556,6.5167,-327.054],"yaw":-3.56047,"spawnMask":1},{"id":"creature-248202","entityId":"entry-13160","position":[-532.802,-47.0692,-224.757],"yaw":-4.4855,"spawnMask":1},{"id":"creature-248203","entityId":"entry-13160","position":[-478.845,-47.0365,-217.578],"yaw":-4.62512,"spawnMask":1},{"id":"creature-248204","entityId":"entry-13160","position":[-506.509,-47.055,-218.57],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248205","entityId":"entry-13160","position":[-494.143,-47.0588,-228.489],"yaw":-4.59022,"spawnMask":1},{"id":"creature-248206","entityId":"entry-13160","position":[-512.413,-47.0651,-203.461],"yaw":-4.53786,"spawnMask":1},{"id":"creature-248207","entityId":"entry-13160","position":[-479.504,-47.0501,-226.032],"yaw":-4.62512,"spawnMask":1},{"id":"creature-248208","entityId":"entry-13160","position":[-520.507,-47.0644,-228.74],"yaw":-4.5204,"spawnMask":1},{"id":"creature-248209","entityId":"entry-13160","position":[-480.451,-47.0487,-208.247],"yaw":-4.62512,"spawnMask":1},{"id":"creature-248210","entityId":"entry-13160","position":[-522.128,-47.0655,-216.567],"yaw":-4.5204,"spawnMask":1},{"id":"creature-248211","entityId":"entry-13160","position":[-533.865,-47.0692,-207.808],"yaw":-4.50295,"spawnMask":1},{"id":"creature-248212","entityId":"entry-13160","position":[-462.891,-12.9324,-508.68],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248213","entityId":"entry-13160","position":[-449.841,-10.4521,-516.736],"yaw":-4.66003,"spawnMask":1},{"id":"creature-248214","entityId":"entry-13160","position":[-462.675,-12.8402,-499.37],"yaw":-4.57276,"spawnMask":1},{"id":"creature-248215","entityId":"entry-13160","position":[-477.259,-18.7986,-509.216],"yaw":-4.43314,"spawnMask":1},{"id":"creature-248216","entityId":"entry-13160","position":[-471.968,-16.7841,-507.278],"yaw":-4.4855,"spawnMask":1},{"id":"creature-248217","entityId":"entry-13160","position":[-452.545,-10.4466,-499.725],"yaw":-4.64258,"spawnMask":1},{"id":"creature-248218","entityId":"entry-13160","position":[-448.175,-10.4534,-508.589],"yaw":-4.67748,"spawnMask":1},{"id":"creature-248219","entityId":"entry-13160","position":[-452.794,-10.4497,-512.82],"yaw":-4.64258,"spawnMask":1},{"id":"creature-248220","entityId":"entry-13160","position":[-455.446,-10.4459,-506.3],"yaw":-4.62512,"spawnMask":1},{"id":"creature-248221","entityId":"entry-13160","position":[-448.543,-10.4509,-501.498],"yaw":-4.67748,"spawnMask":1},{"id":"creature-248222","entityId":"entry-13160","position":[-474.662,-18.8136,-443.512],"yaw":-4.53786,"spawnMask":1},{"id":"creature-248223","entityId":"entry-13160","position":[-467.544,-18.8136,-443.629],"yaw":-4.59022,"spawnMask":1},{"id":"creature-248224","entityId":"entry-13160","position":[-483.989,-18.8136,-431.216],"yaw":-4.50295,"spawnMask":1},{"id":"creature-248225","entityId":"entry-13160","position":[-494.286,-18.8136,-440.855],"yaw":-4.45059,"spawnMask":1},{"id":"creature-248226","entityId":"entry-13160","position":[-490.953,-18.8136,-430.454],"yaw":-4.46804,"spawnMask":1},{"id":"creature-248227","entityId":"entry-13160","position":[-472.02,-18.8135,-435.582],"yaw":-4.57276,"spawnMask":1},{"id":"creature-248228","entityId":"entry-13160","position":[-485.26,-18.8136,-439.504],"yaw":-4.4855,"spawnMask":1},{"id":"creature-248229","entityId":"entry-13160","position":[-478.354,-18.8136,-436.177],"yaw":-4.53786,"spawnMask":1},{"id":"creature-248230","entityId":"entry-13160","position":[-486.561,-18.8136,-446.615],"yaw":-4.4855,"spawnMask":1},{"id":"creature-248231","entityId":"entry-13160","position":[-493.252,-18.8136,-450.363],"yaw":-4.43314,"spawnMask":1},{"id":"creature-248232","entityId":"entry-13160","position":[-396.903,-25.5534,-858.5371],"yaw":-1.37881,"spawnMask":1},{"id":"creature-248233","entityId":"entry-13160","position":[-400.121,-25.5529,-865.246],"yaw":-1.39626,"spawnMask":1},{"id":"creature-248234","entityId":"entry-13160","position":[-403.722,-25.5526,-870.447],"yaw":-1.41372,"spawnMask":1},{"id":"creature-248235","entityId":"entry-13160","position":[-415.05,-25.5535,-858.9606],"yaw":-1.44862,"spawnMask":1},{"id":"creature-248236","entityId":"entry-13160","position":[-414.559,-25.5527,-868.839],"yaw":-1.44862,"spawnMask":1},{"id":"creature-248237","entityId":"entry-13160","position":[-427.725,-25.5534,-861.04],"yaw":-1.50098,"spawnMask":1},{"id":"creature-248238","entityId":"entry-13160","position":[-424.948,-25.5526,-870.573],"yaw":-1.50098,"spawnMask":1},{"id":"creature-248239","entityId":"entry-13160","position":[-437.603,-25.5528,-868.65],"yaw":-1.55334,"spawnMask":1},{"id":"creature-248240","entityId":"entry-13160","position":[-445.818,-25.5524,-874.154],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248241","entityId":"entry-13160","position":[-444.743,-25.5535,-859.9704],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248242","entityId":"entry-13160","position":[-460.309,-25.5534,-829.1881],"yaw":-1.50098,"spawnMask":1},{"id":"creature-248243","entityId":"entry-13160","position":[-456.756,-26.0032,-817.5039],"yaw":-1.50098,"spawnMask":1},{"id":"creature-248244","entityId":"entry-13160","position":[-464.723,-25.553,-814.196],"yaw":-1.55334,"spawnMask":1},{"id":"creature-248245","entityId":"entry-13160","position":[-470.572,-25.5527,-820.5903],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248246","entityId":"entry-13160","position":[-470.72,-25.5528,-830.2159],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248247","entityId":"entry-13160","position":[-471.313,-25.5526,-807.0155],"yaw":-1.71042,"spawnMask":1},{"id":"creature-248248","entityId":"entry-13160","position":[-461.941,-25.5532,-801.0515],"yaw":-1.65806,"spawnMask":1},{"id":"creature-248249","entityId":"entry-13160","position":[-472.73,-25.5522,-793.9278],"yaw":-1.72788,"spawnMask":1},{"id":"creature-248250","entityId":"entry-13160","position":[-460.436,-25.5532,-784.7519],"yaw":-1.65806,"spawnMask":1},{"id":"creature-248251","entityId":"entry-13160","position":[-473.549,-25.5516,-783.0755],"yaw":-1.74533,"spawnMask":1},{"id":"creature-248252","entityId":"entry-11454","position":[-55.4497,-46.8273,-1473.976],"yaw":-3.61283,"spawnMask":1},{"id":"creature-248253","entityId":"entry-11451","position":[-56.0148,-46.8273,-1480.956],"yaw":-6.24828,"spawnMask":1},{"id":"creature-248254","entityId":"entry-11451","position":[-56.7951,-46.8273,-1467.156],"yaw":-4.5204,"spawnMask":1},{"id":"creature-248255","entityId":"entry-11454","position":[-22.8691,-46.8281,-1440.261],"yaw":-3.89208,"spawnMask":1},{"id":"creature-248256","entityId":"entry-11451","position":[-24.2954,-46.9114,-1435.166],"yaw":-4.14954,"spawnMask":1},{"id":"creature-248257","entityId":"entry-11451","position":[-15.5803,-46.8281,-1440.522],"yaw":-5.81195,"spawnMask":1},{"id":"creature-248258","entityId":"entry-11454","position":[-59.7454,-46.88,-1364.166],"yaw":-5.07981,"spawnMask":1},{"id":"creature-248259","entityId":"entry-11451","position":[-55.0855,-46.8144,-1362.255],"yaw":-3.37677,"spawnMask":1},{"id":"creature-248260","entityId":"entry-11451","position":[-65.1024,-46.8217,-1368.236],"yaw":-6.16101,"spawnMask":1},{"id":"creature-248270","entityId":"entry-11456","position":[-12.2893,-46.8281,-1467.765],"yaw":-1.93732,"spawnMask":1},{"id":"creature-248271","entityId":"entry-11456","position":[-64.4801,-46.827,-1438.687],"yaw":-4.13643,"spawnMask":1},{"id":"creature-248272","entityId":"entry-11456","position":[-30.1741,-46.822,-1378.725],"yaw":-2.37365,"spawnMask":1},{"id":"creature-248274","entityId":"entry-11454","position":[-57.6606,-25.886,-1161.025],"yaw":-2.07694,"spawnMask":1},{"id":"creature-248275","entityId":"entry-11451","position":[-52.3725,-25.887,-1158.125],"yaw":-0.523599,"spawnMask":1},{"id":"creature-248276","entityId":"entry-11451","position":[-62.014,-25.8867,-1159.365],"yaw":-2.51327,"spawnMask":1},{"id":"creature-248277","entityId":"entry-11454","position":[21.4071,-25.8878,-1161.48],"yaw":-1.27409,"spawnMask":1},{"id":"creature-248278","entityId":"entry-11451","position":[27.3692,-25.9703,-1159.08],"yaw":-4.90128,"spawnMask":1},{"id":"creature-248279","entityId":"entry-11451","position":[14.4255,-25.8877,-1159.355],"yaw":-2.23402,"spawnMask":1},{"id":"creature-248280","entityId":"entry-11454","position":[80.3707,-25.8853,-1161.817],"yaw":-1.8326,"spawnMask":1},{"id":"creature-248281","entityId":"entry-11451","position":[75.4673,-25.8872,-1156.065],"yaw":-2.54818,"spawnMask":1},{"id":"creature-248282","entityId":"entry-11451","position":[86.5274,-25.9688,-1161.197],"yaw":-1.08976,"spawnMask":1},{"id":"creature-248283","entityId":"entry-11454","position":[17.6555,-25.8974,-1219.691],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248284","entityId":"entry-11451","position":[12.4248,-25.9031,-1222.92],"yaw":-3.61283,"spawnMask":1},{"id":"creature-248285","entityId":"entry-11451","position":[25.704,-25.8959,-1222.285],"yaw":-5.79449,"spawnMask":1},{"id":"creature-248286","entityId":"entry-11455","position":[-53.2855,-25.8815,-1219.13],"yaw":-6.26573,"spawnMask":1},{"id":"creature-248291","entityId":"entry-13196","position":[-21.0776,-25.9095,-1217.407],"yaw":-0.715585,"spawnMask":1},{"id":"creature-248292","entityId":"entry-13197","position":[-21.0776,-25.9095,-1217.407],"yaw":-0.715585,"spawnMask":1},{"id":"creature-248293","entityId":"entry-13196","position":[-15.2494,-25.8878,-1162.941],"yaw":-4.92183,"spawnMask":1},{"id":"creature-248294","entityId":"entry-13197","position":[-15.2494,-25.8878,-1162.941],"yaw":-4.92183,"spawnMask":1},{"id":"creature-248295","entityId":"entry-13196","position":[48.3799,-25.8878,-1161.837],"yaw":-5.13127,"spawnMask":1},{"id":"creature-248296","entityId":"entry-13197","position":[48.3799,-25.8878,-1161.837],"yaw":-5.13127,"spawnMask":1},{"id":"creature-248297","entityId":"entry-13196","position":[104.703,-25.884,-1165.839],"yaw":-5.55015,"spawnMask":1},{"id":"creature-248298","entityId":"entry-13197","position":[104.703,-25.884,-1165.839],"yaw":-5.55015,"spawnMask":1},{"id":"creature-248299","entityId":"entry-14327","position":[5.3776,-5.3319,-1201.341],"yaw":-0.531164,"spawnMask":1},{"id":"creature-248300","entityId":"entry-14349","position":[6.8374,-5.332,-1200.951],"yaw":-6.0218,"spawnMask":1},{"id":"creature-248301","entityId":"entry-13196","position":[25.7945,-25.7203,-968.647],"yaw":-0.820305,"spawnMask":1},{"id":"creature-248302","entityId":"entry-13196","position":[85.8617,-25.7187,-968.397],"yaw":-0.541052,"spawnMask":1},{"id":"creature-248303","entityId":"entry-13196","position":[166.653,-25.8129,-1031.702],"yaw":-5.68977,"spawnMask":1},{"id":"creature-248304","entityId":"entry-13196","position":[146.354,-25.8181,-1126.854],"yaw":-1.90241,"spawnMask":1},{"id":"creature-248305","entityId":"entry-13196","position":[51.357,-25.8043,-1118.334],"yaw":-2.16421,"spawnMask":1},{"id":"creature-248306","entityId":"entry-13196","position":[-70.9732,-25.7979,-1117.438],"yaw":-0.977384,"spawnMask":1},{"id":"creature-248307","entityId":"entry-13021","position":[16.8075,-24.3809,-937.305],"yaw":-4.81711,"spawnMask":1},{"id":"creature-248308","entityId":"entry-13021","position":[87.1125,-24.3809,-933.508],"yaw":-4.86947,"spawnMask":1},{"id":"creature-248309","entityId":"entry-13021","position":[135.847,-25.7229,-1038.835],"yaw":-3.47321,"spawnMask":1},{"id":"creature-248310","entityId":"entry-13021","position":[110.614,-25.8018,-1117.835],"yaw":-1.65806,"spawnMask":1},{"id":"creature-248311","entityId":"entry-13021","position":[19.9482,-25.7899,-1126.605],"yaw":-1.81514,"spawnMask":1},{"id":"creature-248312","entityId":"entry-13021","position":[-131.656,-25.8187,-1113.053],"yaw":-3.36849,"spawnMask":1},{"id":"creature-248313","entityId":"entry-13021","position":[-134.979,-25.8129,-1049.131],"yaw":-3.54302,"spawnMask":1},{"id":"creature-248314","entityId":"entry-13022","position":[148.77,-25.9606,-960.964],"yaw":-4.27233,"spawnMask":1},{"id":"creature-248315","entityId":"entry-13022","position":[149.629,-25.9601,-958.108],"yaw":-5.77921,"spawnMask":1},{"id":"creature-248316","entityId":"entry-13022","position":[156.872,-25.8192,-961.693],"yaw":-5.21853,"spawnMask":1},{"id":"creature-248317","entityId":"entry-13022","position":[152.593,-25.819,-963.017],"yaw":-3.33358,"spawnMask":1},{"id":"creature-248318","entityId":"entry-13022","position":[157.806,-25.9396,-959.08],"yaw":-0.402479,"spawnMask":1},{"id":"creature-248319","entityId":"entry-13022","position":[153.985,-25.949,-958.909],"yaw":-2.28912,"spawnMask":1},{"id":"creature-248320","entityId":"entry-13022","position":[154.026,-25.9504,-956.172],"yaw":-4.23252,"spawnMask":1},{"id":"creature-248321","entityId":"entry-13022","position":[147.343,-25.8981,-1085.537],"yaw":-1.5089,"spawnMask":1},{"id":"creature-248322","entityId":"entry-13022","position":[143.016,-25.7792,-1090.43],"yaw":-0.959931,"spawnMask":1},{"id":"creature-248323","entityId":"entry-13022","position":[140.058,-25.842,-1086.148],"yaw":-5.21016,"spawnMask":1},{"id":"creature-248324","entityId":"entry-13022","position":[139.647,-25.8386,-1080.781],"yaw":-4.80789,"spawnMask":1},{"id":"creature-248325","entityId":"entry-13022","position":[142.43,-25.8599,-1075.44],"yaw":-1.66281,"spawnMask":1},{"id":"creature-248326","entityId":"entry-13022","position":[138.544,-25.7436,-1088.232],"yaw":-2.25147,"spawnMask":1},{"id":"creature-248327","entityId":"entry-13022","position":[135.927,-25.8101,-1083.856],"yaw":-4.8053,"spawnMask":1},{"id":"creature-248328","entityId":"entry-13022","position":[80.1725,-25.7448,-1110.975],"yaw":-1.93732,"spawnMask":1},{"id":"creature-248329","entityId":"entry-13022","position":[83.9586,-25.8065,-1109.227],"yaw":-3.99263,"spawnMask":1},{"id":"creature-248330","entityId":"entry-13022","position":[77.9534,-25.7952,-1106.957],"yaw":-5.75634,"spawnMask":1},{"id":"creature-248331","entityId":"entry-13022","position":[83.1917,-25.8281,-1112.846],"yaw":-5.93665,"spawnMask":1},{"id":"creature-248332","entityId":"entry-13022","position":[88.5384,-25.8335,-1113.733],"yaw":-5.33838,"spawnMask":1},{"id":"creature-248333","entityId":"entry-13022","position":[85.9511,-25.8007,-1117.785],"yaw":-5.48033,"spawnMask":1},{"id":"creature-248334","entityId":"entry-13022","position":[75.395,-25.7384,-1110.205],"yaw":-1.71042,"spawnMask":1},{"id":"creature-248335","entityId":"entry-13022","position":[-53.7073,-25.767,-1113.501],"yaw":-3.92699,"spawnMask":1},{"id":"creature-248336","entityId":"entry-13022","position":[-49.1937,-25.7707,-1113.92],"yaw":-3.01942,"spawnMask":1},{"id":"creature-248337","entityId":"entry-13022","position":[-44.548,-25.7783,-1114.825],"yaw":-1.5708,"spawnMask":1},{"id":"creature-248338","entityId":"entry-13022","position":[-39.6607,-25.7864,-1115.785],"yaw":-0.10472,"spawnMask":1},{"id":"creature-248339","entityId":"entry-13022","position":[-51.6478,-25.7366,-1109.746],"yaw":-0.122173,"spawnMask":1},{"id":"creature-248340","entityId":"entry-13022","position":[-45.8668,-25.7329,-1109.24],"yaw":-3.21141,"spawnMask":1},{"id":"creature-248341","entityId":"entry-13022","position":[-40.7854,-25.7528,-1111.657],"yaw":-2.47837,"spawnMask":1},{"id":"creature-248342","entityId":"entry-13022","position":[-111.138,-25.7626,-1084.88],"yaw":-2.42601,"spawnMask":1},{"id":"creature-248343","entityId":"entry-13022","position":[-116.912,-25.8987,-1090.099],"yaw":-2.53066,"spawnMask":1},{"id":"creature-248344","entityId":"entry-13022","position":[-121.197,-25.9116,-1086.197],"yaw":-5.76204,"spawnMask":1},{"id":"creature-248345","entityId":"entry-13022","position":[-115.821,-25.895,-1087.754],"yaw":-0.318494,"spawnMask":1},{"id":"creature-248346","entityId":"entry-13022","position":[-109.975,-25.7533,-1089.992],"yaw":-2.84489,"spawnMask":1},{"id":"creature-248347","entityId":"entry-13022","position":[-112.893,-25.8867,-1094.259],"yaw":-1.36265,"spawnMask":1},{"id":"creature-248348","entityId":"entry-13022","position":[-115.013,-25.7954,-1080.942],"yaw":-1.32645,"spawnMask":1},{"id":"creature-248349","entityId":"entry-13022","position":[-110.917,-25.8438,-1015.275],"yaw":-3.22507,"spawnMask":1},{"id":"creature-248350","entityId":"entry-13022","position":[-115.802,-25.8803,-1019.472],"yaw":-1.7137,"spawnMask":1},{"id":"creature-248351","entityId":"entry-13022","position":[-111.474,-25.8485,-1020.252],"yaw":-4.40331,"spawnMask":1},{"id":"creature-248352","entityId":"entry-13022","position":[-115.505,-25.8801,-1023.609],"yaw":-1.33576,"spawnMask":1},{"id":"creature-248353","entityId":"entry-13022","position":[-110.326,-25.8389,-1029.244],"yaw":-4.45622,"spawnMask":1},{"id":"creature-248354","entityId":"entry-13022","position":[-106.371,-25.7225,-1026.858],"yaw":-0.314159,"spawnMask":1},{"id":"creature-248355","entityId":"entry-13022","position":[-111.966,-25.8526,-1032.772],"yaw":-1.21066,"spawnMask":1},{"id":"creature-248357","entityId":"entry-11462","position":[36.12,-25.8569,-965.255],"yaw":0,"spawnMask":1},{"id":"creature-248358","entityId":"entry-11462","position":[36.12,-25.8569,-965.255],"yaw":0,"spawnMask":1},{"id":"creature-248360","entityId":"entry-11462","position":[115.459,-25.8418,-961.198],"yaw":0,"spawnMask":1},{"id":"creature-248361","entityId":"entry-11462","position":[115.459,-25.8418,-961.198],"yaw":0,"spawnMask":1},{"id":"creature-248363","entityId":"entry-11462","position":[158.992,-25.925,-1046.05],"yaw":0,"spawnMask":1},{"id":"creature-248364","entityId":"entry-11462","position":[158.992,-25.925,-1046.05],"yaw":0,"spawnMask":1},{"id":"creature-248366","entityId":"entry-11462","position":[33.9481,-25.8505,-1128.365],"yaw":0,"spawnMask":1},{"id":"creature-248367","entityId":"entry-11462","position":[33.9481,-25.8505,-1128.365],"yaw":0,"spawnMask":1},{"id":"creature-248369","entityId":"entry-11462","position":[96.4453,-25.7979,-1107.774],"yaw":0,"spawnMask":1},{"id":"creature-248370","entityId":"entry-11462","position":[96.4453,-25.7979,-1107.774],"yaw":0,"spawnMask":1},{"id":"creature-248372","entityId":"entry-11462","position":[-72.0594,-25.7879,-1105.98],"yaw":0,"spawnMask":1},{"id":"creature-248373","entityId":"entry-11462","position":[-72.0594,-25.7879,-1105.98],"yaw":0,"spawnMask":1},{"id":"creature-248379","entityId":"entry-13197","position":[35.108,-80.2825,-1219.095],"yaw":-2.26893,"spawnMask":1},{"id":"creature-248380","entityId":"entry-13197","position":[-47.4594,-80.2723,-1207.979],"yaw":-3.75246,"spawnMask":1},{"id":"creature-248381","entityId":"entry-13197","position":[-55.6676,-80.2709,-1165.491],"yaw":-3.9968,"spawnMask":1},{"id":"creature-248382","entityId":"entry-11453","position":[92.9904,-80.3719,-1221.391],"yaw":-5.70493,"spawnMask":1},{"id":"creature-248383","entityId":"entry-11452","position":[94.5103,-80.3744,-1226.42],"yaw":-2.23612,"spawnMask":1},{"id":"creature-248384","entityId":"entry-11452","position":[84.6648,-80.2792,-1220.888],"yaw":-2.68781,"spawnMask":1},{"id":"creature-248385","entityId":"entry-11457","position":[68.9817,-80.364,-1202.751],"yaw":-1.13804,"spawnMask":1},{"id":"creature-248386","entityId":"entry-13276","position":[70.8323,-80.3625,-1200.172],"yaw":-0.913746,"spawnMask":1},{"id":"creature-248387","entityId":"entry-13276","position":[64.3315,-80.3643,-1202.658],"yaw":-1.04908,"spawnMask":1},{"id":"creature-248388","entityId":"entry-13276","position":[72.4447,-80.3608,-1197.091],"yaw":-4.10582,"spawnMask":1},{"id":"creature-248389","entityId":"entry-13276","position":[61.361,-80.2805,-1205.017],"yaw":-6.16101,"spawnMask":1},{"id":"creature-248390","entityId":"entry-13276","position":[71.5639,-80.3626,-1200.534],"yaw":-0.256474,"spawnMask":1},{"id":"creature-248391","entityId":"entry-11457","position":[6.8108,-80.2959,-1219.59],"yaw":-0.872665,"spawnMask":1},{"id":"creature-248392","entityId":"entry-13276","position":[3.148,-80.2988,-1220.753],"yaw":-1.3439,"spawnMask":1},{"id":"creature-248393","entityId":"entry-13276","position":[14.0835,-80.3735,-1221.103],"yaw":-4.10695,"spawnMask":1},{"id":"creature-248394","entityId":"entry-13276","position":[6.7593,-80.2931,-1215.698],"yaw":-0.366519,"spawnMask":1},{"id":"creature-248395","entityId":"entry-13276","position":[2.985,-80.2962,-1217.032],"yaw":-0.366519,"spawnMask":1},{"id":"creature-248396","entityId":"entry-13276","position":[10.8449,-80.3747,-1216.457],"yaw":-0.31074,"spawnMask":1},{"id":"creature-248397","entityId":"entry-11453","position":[-74.9023,-80.265,-1195.216],"yaw":-1.06465,"spawnMask":1},{"id":"creature-248398","entityId":"entry-11453","position":[-68.8015,-80.3513,-1182.645],"yaw":-5.77543,"spawnMask":1},{"id":"creature-248399","entityId":"entry-11452","position":[-70.5014,-80.351,-1190.04],"yaw":-0.320256,"spawnMask":1},{"id":"creature-248400","entityId":"entry-11452","position":[-75.0276,-80.3493,-1178.128],"yaw":-0.030332,"spawnMask":1},{"id":"creature-248401","entityId":"entry-11457","position":[-37.4282,-80.277,-1152.483],"yaw":-2.37365,"spawnMask":1},{"id":"creature-248402","entityId":"entry-13276","position":[-32.2647,-80.3616,-1153.866],"yaw":-0.535442,"spawnMask":1},{"id":"creature-248403","entityId":"entry-13276","position":[-42.3646,-80.2779,-1148.387],"yaw":-5.48033,"spawnMask":1},{"id":"creature-248404","entityId":"entry-13276","position":[-40.5119,-80.2756,-1157.568],"yaw":-1.71042,"spawnMask":1},{"id":"creature-248405","entityId":"entry-13276","position":[-34.5624,-80.2775,-1156.374],"yaw":-1.20428,"spawnMask":1},{"id":"creature-248406","entityId":"entry-13276","position":[-43.4759,-80.2764,-1152.384],"yaw":-4.11898,"spawnMask":1},{"id":"creature-248407","entityId":"entry-11453","position":[23.5974,-80.3662,-1158.907],"yaw":-0.80207,"spawnMask":1},{"id":"creature-248408","entityId":"entry-11453","position":[10.2751,-80.2802,-1153.347],"yaw":-1.90241,"spawnMask":1},{"id":"creature-248409","entityId":"entry-11452","position":[15.9289,-80.2802,-1155.669],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248410","entityId":"entry-11452","position":[28.2773,-80.3678,-1152.155],"yaw":-2.83299,"spawnMask":1},{"id":"creature-248411","entityId":"entry-11453","position":[90.2106,-80.232,-1152.149],"yaw":-3.01942,"spawnMask":1},{"id":"creature-248412","entityId":"entry-11453","position":[79.6683,-80.2607,-1149.539],"yaw":-1.25664,"spawnMask":1},{"id":"creature-248413","entityId":"entry-11452","position":[83.9883,-80.2297,-1152.345],"yaw":-0.959931,"spawnMask":1},{"id":"creature-248414","entityId":"entry-11452","position":[96.5746,-80.2698,-1148.733],"yaw":-4.5204,"spawnMask":1},{"id":"creature-248418","entityId":"entry-13280","position":[-4.6519,-81.7038,-1198.622],"yaw":0,"spawnMask":1},{"id":"creature-248422","entityId":"entry-11456","position":[-4.5828,-80.2814,-1146.262],"yaw":-1.16937,"spawnMask":1},{"id":"creature-248423","entityId":"entry-11457","position":[-4.6736,-59.628,-1197.395],"yaw":-4.27606,"spawnMask":1},{"id":"creature-248424","entityId":"entry-13276","position":[-7.6391,-59.6277,-1200.905],"yaw":-3.89208,"spawnMask":1},{"id":"creature-248425","entityId":"entry-13276","position":[-1.7306,-59.7106,-1195.047],"yaw":-0.775787,"spawnMask":1},{"id":"creature-248426","entityId":"entry-13276","position":[-1.6103,-59.7104,-1198.956],"yaw":-1.07755,"spawnMask":1},{"id":"creature-248427","entityId":"entry-13276","position":[-7.8071,-59.6274,-1203.888],"yaw":-3.12414,"spawnMask":1},{"id":"creature-248428","entityId":"entry-13276","position":[0.9661,-59.7107,-1195.474],"yaw":-5.92277,"spawnMask":1},{"id":"creature-248429","entityId":"entry-11490","position":[34.91,-59.6283,-1208.215],"yaw":-0.191986,"spawnMask":1},{"id":"creature-248430","entityId":"entry-13022","position":[-122.581,-77.0032,-953.807],"yaw":-3.11933,"spawnMask":1},{"id":"creature-248431","entityId":"entry-13022","position":[-119.028,-76.3771,-950.011],"yaw":-3.18426,"spawnMask":1},{"id":"creature-248432","entityId":"entry-13022","position":[-115.301,-76.7924,-953.034],"yaw":-2.91091,"spawnMask":1},{"id":"creature-248433","entityId":"entry-13022","position":[-115.301,-77.3613,-956.182],"yaw":-3.54147,"spawnMask":1},{"id":"creature-248434","entityId":"entry-13022","position":[-118.678,-77.6329,-959.21],"yaw":-4.91481,"spawnMask":1},{"id":"creature-248435","entityId":"entry-13022","position":[-126.555,-78.0373,-964.688],"yaw":-4.26236,"spawnMask":1},{"id":"creature-248436","entityId":"entry-13022","position":[-110.834,-77.4166,-957.819],"yaw":-4.2586,"spawnMask":1},{"id":"creature-248437","entityId":"entry-13022","position":[-109.928,-76.2498,-951.538],"yaw":-5.53269,"spawnMask":1},{"id":"creature-248438","entityId":"entry-13022","position":[-106.991,-75.7991,-949.394],"yaw":-1.81514,"spawnMask":1},{"id":"creature-248439","entityId":"entry-13022","position":[-103.974,-76.7076,-954.715],"yaw":-4.32842,"spawnMask":1},{"id":"creature-248440","entityId":"entry-13022","position":[-71.3281,-77.2864,-1006.359],"yaw":-4.09156,"spawnMask":1},{"id":"creature-248441","entityId":"entry-13022","position":[-63.9679,-76.805,-1009.4],"yaw":-4.85084,"spawnMask":1},{"id":"creature-248442","entityId":"entry-13022","position":[-59.8636,-75.8031,-1009.207],"yaw":-4.72984,"spawnMask":1},{"id":"creature-248443","entityId":"entry-13022","position":[-55.8265,-75.3505,-1002.531],"yaw":-5.58505,"spawnMask":1},{"id":"creature-248444","entityId":"entry-13022","position":[-56.7937,-76.1085,-998.299],"yaw":-1.3439,"spawnMask":1},{"id":"creature-248445","entityId":"entry-13022","position":[-56.8216,-75.185,-1006.664],"yaw":-0.837758,"spawnMask":1},{"id":"creature-248446","entityId":"entry-13022","position":[-57.528,-75.1672,-1012.188],"yaw":-0.366519,"spawnMask":1},{"id":"creature-248447","entityId":"entry-13022","position":[-63.6199,-76.4579,-1012.784],"yaw":-0.366519,"spawnMask":1},{"id":"creature-248448","entityId":"entry-13022","position":[-67.8511,-77.0462,-1007.968],"yaw":-1.98623,"spawnMask":1},{"id":"creature-248449","entityId":"entry-13022","position":[-53.5848,-74.7079,-1009.837],"yaw":-0.802851,"spawnMask":1},{"id":"creature-248450","entityId":"entry-13022","position":[-5.0816,-73.9553,-980.427],"yaw":-3.47481,"spawnMask":1},{"id":"creature-248451","entityId":"entry-13022","position":[-9.5101,-73.679,-984.793],"yaw":-0.964966,"spawnMask":1},{"id":"creature-248452","entityId":"entry-13022","position":[-12.203,-73.5719,-986.105],"yaw":-1.91029,"spawnMask":1},{"id":"creature-248453","entityId":"entry-13022","position":[-22.4503,-74.8638,-981.416],"yaw":-1.01456,"spawnMask":1},{"id":"creature-248454","entityId":"entry-13022","position":[-1.0855,-74.7193,-976.986],"yaw":-3.64775,"spawnMask":1},{"id":"creature-248455","entityId":"entry-13022","position":[1.8894,-74.6537,-971.587],"yaw":-4.5204,"spawnMask":1},{"id":"creature-248456","entityId":"entry-13022","position":[-1.7408,-74.4443,-979.964],"yaw":-2.32129,"spawnMask":1},{"id":"creature-248457","entityId":"entry-13022","position":[-3.9761,-73.924,-984.36],"yaw":-1.67569,"spawnMask":1},{"id":"creature-248458","entityId":"entry-13022","position":[-10.2644,-73.5222,-987.956],"yaw":-1.31605,"spawnMask":1},{"id":"creature-248459","entityId":"entry-13022","position":[-19.7514,-74.0278,-987.357],"yaw":-3.83149,"spawnMask":1},{"id":"creature-248460","entityId":"entry-13022","position":[-7.438,-72.861,-1069.9],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248461","entityId":"entry-13022","position":[-11.1698,-72.8617,-1070.957],"yaw":-5.48033,"spawnMask":1},{"id":"creature-248462","entityId":"entry-13022","position":[-2.4566,-72.8683,-1071.747],"yaw":-1.71042,"spawnMask":1},{"id":"creature-248463","entityId":"entry-13022","position":[0.8953,-72.3836,-1076.361],"yaw":-1.20428,"spawnMask":1},{"id":"creature-248464","entityId":"entry-13022","position":[-16.4061,-72.8489,-1075.367],"yaw":-4.11898,"spawnMask":1},{"id":"creature-248465","entityId":"entry-13022","position":[-14.7313,-73.0754,-1070.552],"yaw":-2.1293,"spawnMask":1},{"id":"creature-248466","entityId":"entry-13022","position":[-9.3199,-73.0921,-1068.581],"yaw":-4.19783,"spawnMask":1},{"id":"creature-248467","entityId":"entry-13022","position":[-3.2655,-73.4982,-1066.37],"yaw":-2.2254,"spawnMask":1},{"id":"creature-248468","entityId":"entry-13022","position":[0.4568,-73.2425,-1070.251],"yaw":-5.50781,"spawnMask":1},{"id":"creature-248469","entityId":"entry-13022","position":[-13.8405,-73.3933,-1066.932],"yaw":-3.9968,"spawnMask":1},{"id":"creature-248470","entityId":"entry-13022","position":[54.067,-78.9268,-981.051],"yaw":-4.77728,"spawnMask":1},{"id":"creature-248471","entityId":"entry-13022","position":[54.1852,-78.9843,-983.474],"yaw":-3.52189,"spawnMask":1},{"id":"creature-248472","entityId":"entry-13022","position":[59.0482,-78.9715,-982.94],"yaw":-5.44105,"spawnMask":1},{"id":"creature-248473","entityId":"entry-13022","position":[62.8988,-78.9153,-980.581],"yaw":-5.67601,"spawnMask":1},{"id":"creature-248474","entityId":"entry-13022","position":[62.4086,-78.9515,-985.615],"yaw":-0.767945,"spawnMask":1},{"id":"creature-248475","entityId":"entry-13022","position":[59.5582,-79.0548,-989.962],"yaw":-5.07891,"spawnMask":1},{"id":"creature-248476","entityId":"entry-13022","position":[54.8,-79.1504,-990.47],"yaw":-5.35956,"spawnMask":1},{"id":"creature-248477","entityId":"entry-13022","position":[55.8757,-79.0405,-985.845],"yaw":-0.44899,"spawnMask":1},{"id":"creature-248478","entityId":"entry-13022","position":[49.6663,-79.1524,-987.762],"yaw":-2.81523,"spawnMask":1},{"id":"creature-248479","entityId":"entry-13022","position":[50.0778,-78.9924,-983.808],"yaw":-0.113913,"spawnMask":1},{"id":"creature-248480","entityId":"entry-13022","position":[54.0793,-75.9017,-1106.527],"yaw":-2.58309,"spawnMask":1},{"id":"creature-248481","entityId":"entry-13022","position":[56.8544,-76.0878,-1105.145],"yaw":-1.06465,"spawnMask":1},{"id":"creature-248482","entityId":"entry-13022","position":[57.6583,-75.7818,-1101.622],"yaw":-4.97419,"spawnMask":1},{"id":"creature-248483","entityId":"entry-13022","position":[60.1348,-75.6712,-1099.27],"yaw":-1.6057,"spawnMask":1},{"id":"creature-248484","entityId":"entry-13022","position":[62.9327,-75.4488,-1095.969],"yaw":-4.55531,"spawnMask":1},{"id":"creature-248485","entityId":"entry-13022","position":[61.8179,-74.9305,-1093.276],"yaw":-4.17134,"spawnMask":1},{"id":"creature-248486","entityId":"entry-13022","position":[57.2691,-74.289,-1091.822],"yaw":-1.90241,"spawnMask":1},{"id":"creature-248487","entityId":"entry-13022","position":[61.0638,-74.4675,-1090.641],"yaw":-5.98648,"spawnMask":1},{"id":"creature-248488","entityId":"entry-13022","position":[65.555,-75.4835,-1094.48],"yaw":-5.86431,"spawnMask":1},{"id":"creature-248489","entityId":"entry-13022","position":[54.3955,-76.0925,-1110.038],"yaw":-2.94961,"spawnMask":1},{"id":"creature-248490","entityId":"entry-13022","position":[114.457,-78.9256,-1058.246],"yaw":-2.37651,"spawnMask":1},{"id":"creature-248491","entityId":"entry-13022","position":[119.395,-78.6469,-1055.68],"yaw":-3.50826,"spawnMask":1},{"id":"creature-248492","entityId":"entry-13022","position":[115.247,-78.9186,-1055.268],"yaw":-3.51589,"spawnMask":1},{"id":"creature-248493","entityId":"entry-13022","position":[113.57,-79.1456,-1047.111],"yaw":-0.44145,"spawnMask":1},{"id":"creature-248494","entityId":"entry-13022","position":[112.417,-79.1439,-1052.262],"yaw":-3.20386,"spawnMask":1},{"id":"creature-248495","entityId":"entry-13022","position":[113.059,-79.0295,-1057.264],"yaw":-2.96803,"spawnMask":1},{"id":"creature-248496","entityId":"entry-13022","position":[114.498,-78.8064,-1063.319],"yaw":-0.488692,"spawnMask":1},{"id":"creature-248497","entityId":"entry-13022","position":[118.76,-78.7897,-1062.282],"yaw":-4.88111,"spawnMask":1},{"id":"creature-248498","entityId":"entry-13022","position":[110.994,-79.0017,-1062.503],"yaw":-0.994838,"spawnMask":1},{"id":"creature-248499","entityId":"entry-13022","position":[107.435,-79.4072,-1056.072],"yaw":-3.88216,"spawnMask":1},{"id":"creature-248500","entityId":"entry-13022","position":[149.515,-71.9891,-951.765],"yaw":-4.06322,"spawnMask":1},{"id":"creature-248501","entityId":"entry-13022","position":[148.091,-72.9219,-955.066],"yaw":-5.45461,"spawnMask":1},{"id":"creature-248502","entityId":"entry-13022","position":[149.737,-73.8525,-960.051],"yaw":-2.33874,"spawnMask":1},{"id":"creature-248503","entityId":"entry-13022","position":[148.017,-74.828,-964.638],"yaw":-1.0472,"spawnMask":1},{"id":"creature-248504","entityId":"entry-13022","position":[139.963,-74.9859,-960.541],"yaw":-0.174533,"spawnMask":1},{"id":"creature-248505","entityId":"entry-13022","position":[141.876,-73.3454,-954.128],"yaw":-2.64255,"spawnMask":1},{"id":"creature-248506","entityId":"entry-13022","position":[134.333,-72.0722,-950.009],"yaw":-6.12191,"spawnMask":1},{"id":"creature-248507","entityId":"entry-13022","position":[141.72,-72.286,-949.867],"yaw":-5.3421,"spawnMask":1},{"id":"creature-248508","entityId":"entry-13022","position":[135.174,-72.6208,-951.599],"yaw":-0.344104,"spawnMask":1},{"id":"creature-248509","entityId":"entry-13022","position":[143.951,-73.9956,-958.121],"yaw":-0.750492,"spawnMask":1},{"id":"creature-248510","entityId":"entry-13285","position":[-83.441,-78.4644,-964.822],"yaw":-4.13643,"spawnMask":1},{"id":"creature-248511","entityId":"entry-13285","position":[-42.3261,-74.8478,-956.309],"yaw":-2.32129,"spawnMask":1},{"id":"creature-248512","entityId":"entry-13285","position":[38.4242,-77.5335,-954.612],"yaw":-5.37561,"spawnMask":1},{"id":"creature-248513","entityId":"entry-13285","position":[114.759,-74.3957,-955.991],"yaw":-0.331613,"spawnMask":1},{"id":"creature-248514","entityId":"entry-13285","position":[-115.939,-76.7488,-1116.339],"yaw":-4.36332,"spawnMask":1},{"id":"creature-248515","entityId":"entry-13285","position":[-80.2562,-75.5587,-1094.366],"yaw":-2.1293,"spawnMask":1},{"id":"creature-248516","entityId":"entry-13285","position":[-40.6877,-75.7933,-1121.397],"yaw":-1.58825,"spawnMask":1},{"id":"creature-248517","entityId":"entry-13285","position":[129.794,-78.549,-1094.456],"yaw":-5.16617,"spawnMask":1},{"id":"creature-248518","entityId":"entry-13285","position":[-14.4051,-73.8495,-1022.048],"yaw":-4.43314,"spawnMask":1},{"id":"creature-248519","entityId":"entry-13285","position":[99.0692,-78.4271,-1009.825],"yaw":-5.14872,"spawnMask":1},{"id":"creature-248520","entityId":"entry-13285","position":[129.815,-75.7993,-1006.843],"yaw":-5.41052,"spawnMask":1},{"id":"creature-248522","entityId":"entry-11461","position":[64.2495,-77.6646,-1120.005],"yaw":0,"spawnMask":1},{"id":"creature-248523","entityId":"entry-11461","position":[64.2495,-77.6646,-1120.005],"yaw":0,"spawnMask":1},{"id":"creature-248525","entityId":"entry-11461","position":[30.6208,-75.8475,-1060.789],"yaw":0,"spawnMask":1},{"id":"creature-248526","entityId":"entry-11461","position":[30.6208,-75.8475,-1060.789],"yaw":0,"spawnMask":1},{"id":"creature-248528","entityId":"entry-11461","position":[17.6276,-75.8849,-1054.012],"yaw":0,"spawnMask":1},{"id":"creature-248529","entityId":"entry-11461","position":[17.6276,-75.8849,-1054.012],"yaw":0,"spawnMask":1},{"id":"creature-248531","entityId":"entry-11461","position":[-81.9692,-76.9107,-1043.463],"yaw":0,"spawnMask":1},{"id":"creature-248532","entityId":"entry-11461","position":[-81.9692,-76.9107,-1043.463],"yaw":0,"spawnMask":1},{"id":"creature-248534","entityId":"entry-11461","position":[-38.371,-74.2029,-1074.404],"yaw":0,"spawnMask":1},{"id":"creature-248535","entityId":"entry-11461","position":[-38.371,-74.2029,-1074.404],"yaw":0,"spawnMask":1},{"id":"creature-248537","entityId":"entry-13021","position":[-330.724,-92.8014,-1135.598],"yaw":-3.9968,"spawnMask":1},{"id":"creature-248538","entityId":"entry-13021","position":[-360.464,-109.0468,-1197.064],"yaw":-3.31613,"spawnMask":1},{"id":"creature-248539","entityId":"entry-13021","position":[-360.429,-123.7368,-1250.639],"yaw":-3.15905,"spawnMask":1},{"id":"creature-248540","entityId":"entry-13021","position":[-217.051,-89.1924,-1116.505],"yaw":-5.11381,"spawnMask":1},{"id":"creature-248541","entityId":"entry-13021","position":[-187.173,-133.6418,-1303.38],"yaw":-0.680678,"spawnMask":1},{"id":"creature-248543","entityId":"entry-13285","position":[-290.428,-141.6278,-1230.257],"yaw":-3.31613,"spawnMask":1},{"id":"creature-248544","entityId":"entry-13197","position":[-290.428,-141.6278,-1230.257],"yaw":-3.31613,"spawnMask":1},{"id":"creature-248545","entityId":"entry-13022","position":[-292.77,-140.7858,-1236.793],"yaw":-5.58505,"spawnMask":1},{"id":"creature-248546","entityId":"entry-13022","position":[-287.617,-140.7858,-1240.11],"yaw":-5.74213,"spawnMask":1},{"id":"creature-248547","entityId":"entry-13022","position":[-299.253,-140.7858,-1235.128],"yaw":-2.80998,"spawnMask":1},{"id":"creature-248548","entityId":"entry-13022","position":[-292.897,-140.7858,-1242.334],"yaw":-3.89208,"spawnMask":1},{"id":"creature-248549","entityId":"entry-13285","position":[-285.715,-140.7858,-1262.164],"yaw":-2.14675,"spawnMask":1},{"id":"creature-248550","entityId":"entry-13197","position":[-285.715,-140.7858,-1262.164],"yaw":-2.14675,"spawnMask":1},{"id":"creature-248551","entityId":"entry-13022","position":[-281.26,-140.7858,-1259.473],"yaw":0,"spawnMask":1},{"id":"creature-248552","entityId":"entry-13022","position":[-289.232,-140.7858,-1264.938],"yaw":0,"spawnMask":1},{"id":"creature-248553","entityId":"entry-13022","position":[-282.816,-140.7858,-1264.528],"yaw":0,"spawnMask":1},{"id":"creature-248554","entityId":"entry-13022","position":[-288.718,-140.7858,-1259.597],"yaw":0,"spawnMask":1},{"id":"creature-248555","entityId":"entry-13285","position":[-246.986,-140.7858,-1245.99],"yaw":0,"spawnMask":1},{"id":"creature-248556","entityId":"entry-13197","position":[-246.986,-140.7858,-1245.99],"yaw":0,"spawnMask":1},{"id":"creature-248557","entityId":"entry-13022","position":[-245.409,-140.7858,-1252.777],"yaw":0,"spawnMask":1},{"id":"creature-248558","entityId":"entry-13022","position":[-243.729,-140.7858,-1248.147],"yaw":-5.20108,"spawnMask":1},{"id":"creature-248559","entityId":"entry-13022","position":[-240.068,-140.7858,-1251.682],"yaw":0,"spawnMask":1},{"id":"creature-248560","entityId":"entry-13022","position":[-241.412,-140.7858,-1244.882],"yaw":0,"spawnMask":1},{"id":"creature-248651","entityId":"entry-14690","position":[112.703,-25.2287,-176.392],"yaw":-5.60251,"spawnMask":1},{"id":"encounter-156","entityId":"entry-14506","position":[115.657,-4.6998,-133.6709],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-247577","name":"Shen'dralar Zealot Patrol","speed":1.15,"pathId":2475770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-126.837,-70.2175,-250.534],[-136.116,-70.2156,-285.908],[-167.599,-70.2156,-292.332],[-181.557,-70.2156,-257.117],[-187.741,-70.2156,-225.019],[-184.506,-70.2156,-182.095],[-165.617,-70.2147,-151.988],[-134.393,-70.2164,-160.88],[-121.138,-70.2164,-189.443],[-124.264,-70.2164,-207.413],[-141.034,-70.2164,-203.17],[-142.008,-70.2164,-176.875],[-162.914,-70.2161,-163.123],[-171.1,-70.2161,-187.118],[-165.931,-70.2161,-215.847],[-169.747,-70.2161,-239.371],[-169.487,-70.2161,-273.062],[-147.491,-70.2161,-278.073],[-136.719,-70.2161,-252.935],[-133.328,-66.6842,-228.872],[-133.364,-54.3355,-200.872],[-135.953,-49.7229,-183.965],[-147.458,-49.7229,-159.843],[-140.248,-49.6934,-138.42],[-120.891,-49.6252,-148.922],[-125.792,-49.7227,-178.743],[-126.59,-51.4094,-194.238],[-126.544,-66.8454,-229.238]],"members":[{"id":"member","entityId":"entry-14369","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247592","name":"Arcane Torrent Patrol","speed":1.15,"pathId":2475920,"formationSource":"database-solo","spawnMask":1,"waypoints":[[154.362,-46.3291,12.455],[144.633,-46.3291,7.495],[148.022,-46.3291,-0.572],[157.751,-46.3291,-1.752],[167.681,-46.3291,2.791],[172.856,-46.3291,12.407],[173.622,-46.3278,26.596],[174.635,-46.3278,39.647],[177.062,-46.3293,49.142],[178.418,-46.3293,61.105],[176.52,-46.3293,70.791],[174.503,-46.3293,80.452],[164.654,-46.3293,85.169],[155.998,-46.3293,80.574],[156.181,-46.3293,69.656],[156.45,-46.3293,58.739],[156.798,-46.3293,44.603],[157.067,-46.3293,33.686]],"members":[{"id":"member","entityId":"entry-14399","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247594","name":"Arcane Torrent Patrol","speed":1.15,"pathId":2475940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[5.2367,-46.3301,-86.527],[17.8393,-46.3607,-95.132],[30.6737,-46.3982,-103.387],[44.45,-46.4091,-112.248],[57.3433,-46.4192,-120.541],[68.3526,-46.3301,-127.622],[71.6922,-46.3301,-118.408],[76.5346,-46.3301,-105.049],[80.9954,-46.3301,-92.742],[85.8378,-46.3301,-79.383],[90.2985,-46.3301,-67.076],[95.8804,-46.3301,-51.677],[86.3202,-46.3301,-53.832],[70.341,-46.3301,-57.433],[52.1766,-46.3459,-61.527],[52.1766,-46.3459,-61.527],[38.0615,-46.3488,-63.166],[22.9034,-46.3505,-64.927],[4.3871,-46.3301,-66.878],[-10.8834,-46.3301,-68.228],[-24.9676,-46.3301,-76.591],[-16.1763,-46.3301,-80.922]],"members":[{"id":"member","entityId":"entry-14399","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247598","name":"Arcane Torrent Patrol","speed":1.15,"pathId":2475980,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-83.1815,-46.3301,71.309],[-87.7748,-46.3301,61.402],[-91.1589,-46.3294,49.848],[-92.2838,-46.3284,37.86],[-94.815,-46.3281,25.017],[-97.5627,-46.3295,11.076],[-98.9737,-46.3295,-6.367],[-90.5851,-46.3295,-3.879],[-82.6166,-46.3295,-0.264],[-74.1318,-46.3295,4.64],[-66.4225,-46.3295,10.69],[-66.7418,-46.3295,21.606],[-71.6773,-46.3295,33.73],[-77.035,-46.3295,46.891],[-82.8453,-46.3295,58.699],[-89.6138,-46.3295,72.454],[-97.1547,-46.3295,88.245],[-98.096,-46.3295,96.945],[-87.6901,-46.3295,100.256],[-73.6864,-46.3295,102.668],[-63.9872,-46.3295,101.266],[-64.1249,-46.3295,91.397],[-74.7333,-46.3295,85.703]],"members":[{"id":"member","entityId":"entry-14399","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247601","name":"Arcane Torrent Patrol","speed":1.15,"pathId":2476010,"formationSource":"database-solo","spawnMask":1,"waypoints":[[5.4047,-46.3277,184.624],[0.9638,-46.3277,177.084],[-5.6797,-46.3296,165.805],[-11.7904,-46.3296,155.431],[-21.5895,-46.3296,155.299],[-32.5085,-46.3296,155.151],[-42.3776,-46.3296,155.017],[-54.3465,-46.3296,154.855],[-64.2156,-46.3296,154.722],[-58.0393,-46.3296,160.92],[-50.3313,-46.3296,168.655],[-40.5468,-46.3296,167.358],[-29.7215,-46.3296,165.923],[-17.7858,-46.3296,164.342],[-6.9605,-46.3296,162.907],[12.539,-46.3296,160.323],[23.209,-46.3296,160.068],[34.0515,-46.3296,167.402],[39.4817,-46.3296,175.56],[41.3011,-46.3296,185.189],[36.8634,-46.3296,192.731],[22.3148,-46.3296,197.495]],"members":[{"id":"member","entityId":"entry-14399","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247708","name":"Gordok Brute Patrol","speed":1.15,"pathId":2477080,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-472.27,-25.6361,-707.0005],[-473.045,-25.6361,-684.1581],[-468.01,-25.6361,-656.498],[-446.123,-25.6361,-645.516],[-419.978,-25.6361,-644.152],[-390.532,-25.6361,-641.802],[-358.992,-25.6361,-639.286],[-331.001,-25.6367,-644.201],[-298.745,-25.6367,-649.925],[-291.001,-25.642,-663.405],[-304.583,-25.7069,-672.4185],[-309.526,-25.6367,-654.539],[-331.682,-25.6367,-645.288],[-366.126,-25.6367,-640.226],[-403.23,-25.6367,-641.371],[-437.013,-25.6367,-643.933],[-462.164,-25.6367,-659.76],[-475.235,-25.6363,-686.2414],[-472.709,-25.6363,-714.5487],[-468.381,-25.6571,-741.3957],[-460.486,-25.6475,-750.361],[-464.737,-25.657,-764.7604],[-474.142,-25.6753,-759.8515],[-472.39,-25.6705,-745.7754],[-469.615,-25.6474,-728.5679]],"members":[{"id":"member","entityId":"entry-11441","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247728","name":"Gordok Brute Patrol","speed":1.15,"pathId":2477280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-376.55,-10.5456,-543.308],[-363.805,-10.5454,-537.426],[-355.769,-10.5454,-531.696],[-345.318,-10.5454,-517.746],[-339.605,-10.5454,-502.395],[-337.318,-10.5454,-489.506],[-337.501,-10.5454,-475.297],[-338.472,-10.5454,-462.175],[-352.635,-10.5443,-461.02],[-366.798,-10.5431,-459.865],[-387.573,-10.5427,-459.217],[-401.78,-10.5427,-458.954],[-415.918,-10.5427,-458.692],[-429.93,-10.5444,-460.589],[-437.855,-10.5458,-466.354],[-438.999,-10.5445,-477.214],[-439.494,-10.544,-491.415],[-439.981,-10.5437,-505.617],[-439.192,-10.5437,-518.753],[-438.038,-10.5437,-533.97],[-428.13,-10.5457,-540.687],[-416.85,-10.5457,-544.895],[-404.106,-10.5437,-547.887]],"members":[{"id":"member","entityId":"entry-11441","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247743","name":"Gordok Mage-Lord Patrol","speed":1.15,"pathId":2477430,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-442.208,-18.8964,-591.48],[-460.643,-18.8964,-597.921],[-472.672,-18.8964,-591.623],[-472.148,-18.8964,-577.82],[-452.984,-18.8968,-578.732],[-421.551,-18.8968,-587.961],[-392.574,-18.8968,-591.881],[-358.71,-18.8996,-592.908],[-329.253,-18.8983,-593.802],[-309.32,-18.8983,-585.619],[-303.777,-18.8983,-565.581],[-292.142,-18.8983,-557.756],[-276.791,-18.8983,-561.743],[-275.353,-18.8983,-575.633],[-291.469,-18.8983,-586.305],[-320.276,-18.8983,-592.468],[-356.081,-18.8998,-592.544],[-392.094,-18.8963,-593.053],[-417.752,-18.8977,-589.063]],"members":[{"id":"member","entityId":"entry-11444","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247793","name":"Wandering Eye of Kilrogg Patrol","speed":1.15,"pathId":2477930,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-577.177,-47.1527,-189.291],[-572.149,-47.1525,-177.227],[-544.725,-47.1525,-167.034],[-500.904,-47.1508,-181.191],[-484.11,-47.1516,-184.374],[-476.61,-47.1534,-175.476],[-494.458,-42.1487,-168.523],[-534.386,-26.5046,-169.799],[-550.764,-26.5046,-168.814],[-568.924,-26.5046,-176.003],[-581.94,-26.5055,-185.53],[-587.23,-23.4685,-204.172],[-587.095,-14.9796,-224.33],[-569.001,-8.659,-224.864],[-545.566,3.9159,-225.837],[-569.001,-8.659,-224.864],[-587.095,-14.9796,-224.33],[-587.23,-23.4685,-204.172],[-581.94,-26.5055,-185.53],[-568.924,-26.5046,-176.003],[-550.764,-26.5046,-168.814],[-534.386,-26.5046,-169.799],[-494.458,-42.1487,-168.523],[-481.834,-47.1573,-169.601],[-484.11,-47.1516,-184.374],[-500.904,-47.1508,-181.191],[-544.725,-47.1525,-167.034],[-572.149,-47.1525,-177.227],[-577.177,-47.1527,-189.291],[-563.615,-47.1488,-212.532]],"members":[{"id":"member","entityId":"entry-14386","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247794","name":"Wandering Eye of Kilrogg Patrol","speed":1.15,"pathId":2477940,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-428.66,-40.0804,-209.861],[-413.321,-40.0804,-211.011],[-410.878,-39.7547,-222.234],[-399.913,-34.5249,-234.644],[-389.76,-33.7651,-259.517],[-385.46,-28.9693,-285.029],[-395.88,-28.9693,-291.343],[-396.255,-28.9693,-304.798],[-388.601,-28.9693,-311.408],[-384.28,-27.3029,-325.374],[-384.595,-24.8778,-336.853],[-385.369,-23.4219,-346.306],[-384.28,-27.3029,-325.374],[-388.601,-28.9693,-311.408],[-396.255,-28.9693,-304.798],[-395.88,-28.9693,-291.343],[-385.46,-28.9693,-285.029],[-389.76,-33.7651,-259.517],[-399.73,-34.5248,-234.851],[-410.878,-39.7547,-222.234],[-413.321,-40.0804,-211.011],[-428.66,-40.0804,-209.861],[-446.044,-43.315,-217.676],[-494.754,-47.1371,-217.338],[-446.044,-43.315,-217.676]],"members":[{"id":"member","entityId":"entry-14386","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247820","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[73.8234,-26.7368,-547.824],[83.4836,-26.7368,-537.498],[88.6469,-26.7368,-518.518],[90.1927,-26.7367,-501.086],[87.1905,-26.7367,-482.806],[86.9075,-26.7367,-462.088],[86.6533,-26.7367,-443.469],[83.9245,-26.7367,-430.667],[70.1188,-26.7367,-424.003],[51.7698,-26.7415,-421.279],[27.9931,-26.736,-417.941],[6.1625,-26.736,-418.582],[-3.7057,-26.736,-418.73],[-38.7056,-26.736,-418.658],[-88.7869,-26.736,-420.437],[-108.682,-26.736,-429.05],[-119.721,-26.736,-441.148],[-120.402,-26.736,-467.312],[-112.048,-26.736,-533.232],[-100.656,-26.736,-543.7],[-82.2912,-26.736,-546.268],[-47.3319,-26.736,-547.783],[-12.332,-26.736,-547.856],[22.665,-26.736,-548.307]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247821","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478210,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-26.9262,-26.7365,-425.051],[-38.894,-26.7365,-425.266],[-73.8765,-26.7365,-424.185],[-110.801,-26.7365,-426],[-110.801,-26.7365,-426],[-121.453,-26.7365,-451.484],[-119.242,-26.7365,-486.37],[-118.943,-26.7365,-501.617],[-107.051,-26.7365,-543.931],[-107.051,-26.7365,-543.931],[-85.286,-26.7365,-542.236],[-50.4055,-26.7365,-544.983],[-15.4062,-26.7365,-545.198],[-15.4062,-26.7365,-545.198],[19.5932,-26.7365,-545.408],[54.5544,-26.7365,-543.901],[82.5799,-26.7365,-535.829],[82.5799,-26.7365,-535.829],[89.6864,-26.7365,-492.844],[88.94,-26.7365,-465.568],[85.437,-26.7365,-441.755],[81.1099,-26.7365,-422.64],[46.1747,-26.741,-420.511],[11.2382,-26.737,-418.449]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247823","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478230,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-114.744,-26.7364,-533.135],[-89.614,-26.7364,-543.528],[-79.8756,-26.7364,-545.104],[-45.0281,-26.7364,-548.339],[-10.0639,-26.7364,-549.893],[24.9291,-26.7364,-549.871],[59.8428,-26.7364,-547.629],[84.4291,-26.7364,-544.056],[84.4291,-26.7364,-544.056],[91.4129,-26.7364,-522.279],[92.1625,-26.7364,-494.997],[90.0016,-26.7364,-460.079],[81.0839,-26.7364,-422.164],[81.0839,-26.7364,-422.164],[47.8274,-26.7394,-416.226],[35.8661,-26.7371,-415.799],[0.9335,-26.7364,-417.871],[-34.0512,-26.7364,-418.627],[-69.0506,-26.7364,-418.828],[-113.872,-26.7364,-425.837],[-113.872,-26.7364,-425.837],[-118.258,-26.7364,-456.029],[-118.755,-26.7364,-491.019],[-120.484,-26.7364,-519.316]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247826","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478260,"formationSource":"database-solo","spawnMask":1,"waypoints":[[89.1753,-26.736,-462.152],[86.5994,-26.736,-443.782],[76.912,-26.736,-426.663],[63.2453,-26.7411,-422.923],[28.3704,-26.7369,-420.021],[-6.5748,-26.7369,-418.066],[-47.9313,-26.7369,-417.067],[-87.1222,-26.7369,-419.847],[-117.847,-26.7369,-436.882],[-123.898,-26.7368,-462.097],[-119.332,-26.7368,-496.79],[-108.57,-26.7368,-534.083],[-82.8724,-26.7368,-545.644],[-82.8724,-26.7368,-545.644],[-12.8754,-26.7368,-545.029],[-12.8754,-26.7368,-545.029],[22.1231,-26.7368,-544.984],[76.5457,-26.7368,-544.173],[87.4034,-26.7368,-531.908],[89.0668,-26.7368,-516.739],[91.189,-26.7368,-497.184]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247827","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478270,"formationSource":"database-solo","spawnMask":1,"waypoints":[[16.3346,-26.7367,-411.619],[16.3346,-26.7367,-411.619],[-18.5928,-26.7367,-413.733],[-53.5911,-26.7367,-413.941],[-88.591,-26.7367,-414.006],[-114.538,-26.7367,-419.947],[-117.491,-26.7367,-436.05],[-118.767,-26.7367,-471.022],[-119.044,-26.7367,-498.312],[-107.102,-26.7367,-544.408],[-107.102,-26.7367,-544.408],[-89.8184,-26.7367,-542.181],[-54.8491,-26.7367,-543.386],[-19.8985,-26.7367,-545.245],[15.0737,-26.7367,-546.272],[50.007,-26.7367,-544.631],[82.3319,-26.7367,-540.868],[82.3319,-26.7367,-540.868],[88.1345,-26.7367,-517.605],[88.8059,-26.7367,-482.624],[86.452,-26.7367,-447.738],[79.1523,-26.7367,-416.098],[79.1523,-26.7367,-416.098],[54.0304,-26.7383,-416.736]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247828","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478280,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-115.828,-26.737,-446.042],[-117.635,-26.7367,-462.312],[-118.394,-26.7367,-497.292],[-115.335,-26.7367,-527.652],[-110.46,-26.7367,-547.819],[-110.46,-26.7367,-547.819],[-75.4889,-26.7367,-549.018],[-40.4895,-26.7367,-548.816],[-40.4895,-26.7367,-548.816],[-5.4901,-26.7367,-548.614],[29.4904,-26.7367,-547.885],[71.1983,-26.7367,-541.301],[88.1871,-26.7367,-531.972],[88.1871,-26.7367,-531.972],[89.3383,-26.7367,-499.249],[86.9525,-26.7367,-464.331],[86.9525,-26.7367,-464.331],[79.998,-26.7367,-420.141],[74.538,-26.7367,-420.151],[39.5609,-26.7399,-418.908],[39.5609,-26.7399,-418.908],[-21.4469,-26.7364,-417.06],[-21.4469,-26.7364,-417.06],[-56.4425,-26.7364,-417.583],[-103.335,-26.7364,-418.406]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247829","name":"Ironbark Protector Patrol","speed":1.15,"pathId":2478290,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-34.6208,-26.7356,-542.637],[0.291,-26.7356,-543.574],[38.5809,-26.7356,-543.502],[77.9208,-26.7356,-543.428],[85.0333,-26.7356,-517.85],[88.0751,-26.7356,-484.253],[88.316,-26.7356,-443.933],[70.4913,-26.7356,-427.93],[39.2857,-26.7424,-422.952],[4.4922,-26.7368,-419.867],[-34.7562,-26.7368,-417.352],[-69.6858,-26.7368,-417.487],[-104.108,-26.7368,-421.468],[-115.631,-26.7368,-450.997],[-118.829,-26.7368,-484.52],[-118.671,-26.7368,-511.819],[-107.552,-26.7368,-539.111],[-76.414,-26.7368,-545.034]],"members":[{"id":"member","entityId":"entry-11459","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247913","name":"Eldreth Spectre Patrol","speed":1.15,"pathId":2479130,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-106.22,6.8513,-247.413],[-105.981,6.8513,-264.912],[-105.682,6.8513,-286.75],[-105.473,6.8513,-302.008],[-105.294,6.8513,-315.097],[-104.363,6.8513,-331.45],[-101.848,6.8513,-318.545],[-101.317,6.8513,-304.345],[-102.737,6.8513,-290.206],[-103.21,6.8513,-276.004],[-103.755,6.8513,-259.633],[-104.264,6.8513,-244.382],[-104.772,6.8514,-229.13]],"members":[{"id":"member","entityId":"entry-11473","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247915","name":"Eldreth Spectre Patrol","speed":1.15,"pathId":2479150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[38.9851,-45.055,-162.567],[37.764,-45.055,-173.419],[36.0576,-45.055,-188.583],[26.8486,-45.055,-196.23],[13.8879,-45.055,-204.417],[-8.9198,-45.055,-203.361],[-27.2799,-45.055,-206.009],[-16.4147,-45.055,-207.102],[-1.3664,-45.055,-204.569],[15.8908,-45.055,-201.664],[25.5296,-45.055,-199.906],[33.9343,-45.055,-187.169],[37.8095,-45.055,-174.665],[38.8041,-45.055,-159.368],[39.0614,-46.3595,-140.825]],"members":[{"id":"member","entityId":"entry-11473","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247917","name":"Eldreth Spectre Patrol","speed":1.15,"pathId":2479170,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-65.0282,-25.3371,-349.698],[-73.7074,-25.3352,-349.578],[-74.3028,-25.3303,-339.797],[-74.4906,-25.3263,-328.878],[-74.5112,-25.3229,-317.958],[-74.2032,-25.3222,-303.751],[-73.9666,-25.3222,-292.834],[-73.9872,-25.3222,-281.914],[-74.01,-25.3194,-269.874],[-74.0306,-25.3181,-258.954],[-74.0141,-25.3181,-267.704],[-73.9873,-25.321,-281.914],[-73.9564,-25.321,-298.294],[-73.9275,-25.321,-313.624],[-73.8988,-25.3258,-328.884],[-73.8762,-25.3306,-340.854],[-73.8638,-25.3338,-347.434],[-66.7319,-25.3373,-350.146],[-56.8628,-25.3373,-350.011],[-45.9489,-25.3373,-350.376]],"members":[{"id":"member","entityId":"entry-11473","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247923","name":"Eldreth Spectre Patrol","speed":1.15,"pathId":2479230,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-25.1077,6.8542,-214.959],[-8.7756,6.8542,-213.707],[15.1642,6.8551,-211.872],[35.0267,6.8556,-217.771],[55.3166,6.8556,-225.852],[72.2948,6.8539,-233.286],[84.9657,6.8524,-246.834],[88.1149,6.8524,-258.455],[81.8178,6.8524,-267.376],[71.2357,6.8524,-264.681],[73.487,6.8524,-250.65],[73.7276,6.8542,-233.222],[63.0325,6.8562,-218.066],[42.2369,6.8576,-211.393],[23.0493,6.8576,-207.064],[4.5002,6.8546,-206.88],[-10.4798,6.8546,-203.623],[-25.6928,6.8546,-205.514],[-43.0703,6.8563,-204.933],[-59.3684,6.8582,-206.569],[-70.6931,6.8582,-215.036],[-77.7037,6.8568,-223.409],[-71.2958,6.8539,-230.824],[-62.6355,6.8539,-229.574],[-51.4148,6.8539,-225.209]],"members":[{"id":"member","entityId":"entry-11473","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-247925","name":"Eldreth Spectre Patrol","speed":1.15,"pathId":2479250,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-17.5297,-45.055,-208.933],[-35.9193,-45.055,-207.409],[-47.1418,-45.055,-217.851],[-50.6163,-45.055,-231.605],[-51.387,-45.055,-250.208],[-51.797,-45.055,-236.075],[-47.316,-45.055,-221.414],[-38.5657,-45.055,-211.687],[-20.2054,-45.055,-205.786],[1.5823,-45.055,-204.441],[21.1237,-45.055,-202.2],[32.3267,-45.055,-190.25],[36.9851,-45.055,-180.374],[39.1221,-45.055,-167.389],[37.1798,-45.055,-178.134],[33.1108,-45.055,-190.61],[18.7963,-45.055,-202.265],[7.9445,-45.055,-203.483]],"members":[{"id":"member","entityId":"entry-11473","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248013","name":"Residual Monstrosity Patrol","speed":1.15,"pathId":2480130,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-55.5517,-46.3296,116.33],[-69.4422,-46.3296,80.773],[-73.5942,-46.3296,33.328],[-66.0047,-46.3296,3.79],[-31.4612,-46.3296,-49.002],[-7.2539,-46.3296,-61.55],[50.5164,-46.3583,-71.192],[93.3138,-46.33,-59.54],[131.344,-46.33,-27.198],[153.114,-46.3297,16.522],[159.282,-46.3296,59.348],[144.676,-46.3296,104.726],[120.19,-46.3296,135.272],[82.9945,-46.3296,159.941],[52.7543,-46.3296,168.689],[0.2563,-46.3296,163.111],[-34.1834,-46.3296,139.891]],"members":[{"id":"member","entityId":"entry-11484","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248015","name":"Residual Monstrosity Patrol","speed":1.15,"pathId":2480150,"formationSource":"database-solo","spawnMask":1,"waypoints":[[50.8216,-46.3298,164.711],[37.8035,-46.3298,166.049],[18.2667,-46.3298,164.476],[-4.1126,-46.3298,159.832],[-34.6879,-46.3298,140.872],[-53.8041,-46.3298,120.27],[-68.1718,-46.3298,94.51],[-68.1718,-46.3298,94.51],[-77.8137,-46.3298,52.082],[-76.5842,-46.3298,33.607],[-71.2101,-46.3298,13.604],[-50.6682,-46.3298,-29.693],[-45.659,-46.3298,-35.441],[-15.87,-46.3298,-59.167],[1.4449,-46.3298,-65.727],[37.0315,-46.3583,-70.524],[65.9266,-46.3301,-65.139],[80.2705,-46.3301,-59.949],[111.331,-46.3301,-41.718],[131.527,-46.3301,-21.801],[146.353,-46.3301,5.887],[149.937,-46.3301,20.785],[154.837,-46.3301,60.851],[152.174,-46.3301,79.137],[140.509,-46.3301,106.173],[122.294,-46.3301,129.359],[96.5688,-46.3301,149.438],[96.5688,-46.3301,149.438],[62.4965,-46.3301,166.753]],"members":[{"id":"member","entityId":"entry-11484","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248016","name":"Residual Monstrosity Patrol","speed":1.15,"pathId":2480160,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-29.6181,-46.3293,-45.392],[10.8301,-46.3293,-64.324],[53.1035,-46.3548,-68.483],[92.7889,-46.3301,-57.4],[126.745,-46.3301,-30.401],[147.482,-46.3301,6.616],[155.474,-46.3297,44.855],[147.309,-46.3297,99.556],[128.92,-46.3294,129.055],[90.6617,-46.3294,159.374],[41.4035,-46.3294,172.953],[13.4042,-46.3294,169.147],[-30.3313,-46.3294,149.468],[-59.4475,-46.3294,121.707],[-77.6464,-46.3294,79.848],[-81.3007,-46.3293,32.619],[-65.9321,-46.3293,-6.987],[-50.9413,-46.3293,-27.106]],"members":[{"id":"member","entityId":"entry-11484","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248261","name":"Wildspawn Felsworn Patrol","speed":1.15,"pathId":2482610,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-51.4255,-46.8936,-1482.13],[-26.3447,-46.9114,-1444.101]],"members":[{"id":"member","entityId":"entry-11455","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248262","name":"Phase Lasher Patrol","speed":1.15,"pathId":2482620,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-51.2003,-46.8501,-1509.05],[-45.865,-46.868,-1498.055],[-41.425,-46.8806,-1490.324],[-45.865,-46.868,-1498.055],[-51.2003,-46.8501,-1509.05],[-45.3612,-46.8382,-1516.509],[-33.1369,-46.8996,-1518.62],[-45.3612,-46.8382,-1516.509]],"members":[{"id":"member","entityId":"entry-13196","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248263","name":"Fel Lash Patrol","speed":1.15,"pathId":2482630,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-51.2003,-46.8501,-1509.05],[-45.865,-46.868,-1498.055],[-41.425,-46.8806,-1490.324],[-45.865,-46.868,-1498.055],[-51.2003,-46.8501,-1509.05],[-45.3612,-46.8382,-1516.509],[-33.1369,-46.8996,-1518.62],[-45.3612,-46.8382,-1516.509]],"members":[{"id":"member","entityId":"entry-13197","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248264","name":"Phase Lasher Patrol","speed":1.15,"pathId":2482640,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-51.2144,-46.8389,-1515.965],[-55.7477,-46.8625,-1501.301],[-38.2425,-46.8894,-1484.941],[-55.7477,-46.8625,-1501.301],[-51.2144,-46.8389,-1515.965],[-32.7135,-46.8988,-1525.874]],"members":[{"id":"member","entityId":"entry-13196","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248265","name":"Fel Lash Patrol","speed":1.15,"pathId":2482650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-51.2144,-46.8389,-1515.965],[-55.7477,-46.8625,-1501.301],[-38.2425,-46.8894,-1484.941],[-55.7477,-46.8625,-1501.301],[-51.2144,-46.8389,-1515.965],[-32.7135,-46.8988,-1525.874]],"members":[{"id":"member","entityId":"entry-13197","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248266","name":"Phase Lasher Patrol","speed":1.15,"pathId":2482660,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-61.9988,-46.8833,-1408.365],[-37.2938,-46.8654,-1395.987]],"members":[{"id":"member","entityId":"entry-13196","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248267","name":"Fel Lash Patrol","speed":1.15,"pathId":2482670,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-61.9988,-46.8833,-1408.365],[-37.2938,-46.8654,-1395.987]],"members":[{"id":"member","entityId":"entry-13197","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248268","name":"Phase Lasher Patrol","speed":1.15,"pathId":2482680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-64.7574,-46.909,-1380.998],[-36.3319,-46.8837,-1384.62]],"members":[{"id":"member","entityId":"entry-13196","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248269","name":"Fel Lash Patrol","speed":1.15,"pathId":2482690,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-64.7574,-46.909,-1380.998],[-36.3319,-46.8837,-1384.62]],"members":[{"id":"member","entityId":"entry-13197","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248273","name":"Wildspawn Shadowstalker Patrol","speed":1.15,"pathId":2482730,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-111.633,-25.8531,-1127.873],[-83.6267,-24.4735,-1210.418],[-110.988,-25.0234,-1209.746],[-111.119,-31.5059,-1285.923],[-93.5836,-32.829,-1304.149],[-56.613,-40.4337,-1314.954],[-50.9381,-46.8146,-1368.57],[-57.3353,-40.4546,-1316.12],[-93.2648,-32.8293,-1305.795],[-112.375,-31.4985,-1285.897],[-112.905,-25.0234,-1211.421],[-114.056,-25.0234,-1165.055],[-112.905,-25.0234,-1211.421],[-112.375,-31.4985,-1285.897],[-93.2648,-32.8293,-1305.795],[-57.3353,-40.4546,-1316.12],[-50.9381,-46.8146,-1368.57],[-56.613,-40.4337,-1314.954],[-93.5836,-32.829,-1304.149],[-111.119,-31.5059,-1285.923],[-110.988,-25.0234,-1209.746],[-83.5047,-24.5055,-1210.428]],"members":[{"id":"member","entityId":"entry-11456","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248287","name":"Wildspawn Felsworn Patrol","speed":1.15,"pathId":2482870,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-2.8519,-25.9719,-1186.298],[-4.5672,-25.9763,-1197.943],[-18.6113,-25.9716,-1201.582],[-31.7986,-25.9686,-1196.994],[-35.185,-25.9696,-1185.823],[-29.805,-25.9703,-1176.089],[-15.0338,-25.9679,-1175.742]],"members":[{"id":"member","entityId":"entry-11455","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248288","name":"Wildspawn Felsworn Patrol","speed":1.15,"pathId":2482880,"formationSource":"database-solo","spawnMask":1,"waypoints":[[66.2728,-25.976,-1185.362],[66.3418,-25.9717,-1202.498],[50.3662,-25.9643,-1204.228],[38.7651,-25.9671,-1203.669],[33.5795,-25.9719,-1193.495],[38.6206,-25.9673,-1179.921],[53.8846,-25.9716,-1175.794]],"members":[{"id":"member","entityId":"entry-11455","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248289","name":"Wildspawn Felsworn Patrol","speed":1.15,"pathId":2482890,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-53.5103,-25.9665,-1162.995],[-39.2423,-25.9687,-1175.992],[-24.1216,-25.9712,-1175.804],[10.6204,-25.9709,-1154.91],[-13.5036,-25.9678,-1175.885],[-40.6289,-25.9685,-1176.174]],"members":[{"id":"member","entityId":"entry-11455","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248290","name":"Wildspawn Felsworn Patrol","speed":1.15,"pathId":2482900,"formationSource":"database-solo","spawnMask":1,"waypoints":[[23.0963,-25.9753,-1217.24],[30.7687,-25.9674,-1179.37],[47.4617,-25.9699,-1170.684],[65.7924,-25.9677,-1180.205],[83.4489,-25.9675,-1165.106],[66.8399,-25.9676,-1181.567],[38.9558,-25.9686,-1170.509]],"members":[{"id":"member","entityId":"entry-11455","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248356","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483560,"formationSource":"database-solo","spawnMask":1,"waypoints":[[36.12,-25.8569,-965.255],[-0.0031,-25.8151,-946.36],[-16.9132,-25.8143,-967.737],[-0.1286,-25.8428,-946.519]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248359","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483590,"formationSource":"database-solo","spawnMask":1,"waypoints":[[115.459,-25.8418,-961.198],[133.466,-25.9196,-953.015],[115.459,-25.8418,-961.198],[98.201,-25.8435,-960.908],[88.1574,-25.8843,-951.423],[60.7305,-25.8128,-967.133],[88.1574,-25.8843,-951.423],[98.201,-25.8435,-960.908]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248362","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483620,"formationSource":"database-solo","spawnMask":1,"waypoints":[[158.992,-25.925,-1046.05],[138.745,-25.8313,-1072.366],[158.992,-25.925,-1046.05],[150.443,-25.9033,-1014.4],[164.238,-25.9134,-978.262],[150.443,-25.9033,-1014.4]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248365","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483650,"formationSource":"database-solo","spawnMask":1,"waypoints":[[33.9481,-25.8505,-1128.365],[42.4242,-25.8407,-1110.567],[51.9439,-25.8252,-1110.677],[69.9382,-25.8955,-1124.13],[51.9439,-25.8252,-1110.677],[42.4242,-25.8407,-1110.567]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248368","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483680,"formationSource":"database-solo","spawnMask":1,"waypoints":[[96.4453,-25.7979,-1107.774],[88.6513,-25.843,-1128.515],[96.4453,-25.7979,-1107.774],[122.695,-25.787,-1105.905],[141.618,-25.9008,-1119.223],[122.695,-25.787,-1105.905]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248371","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483710,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-72.0594,-25.7879,-1105.98],[-91.8319,-25.8125,-1110.329],[-72.0594,-25.7879,-1105.98],[-38.8059,-25.8037,-1107.685],[-16.1,-25.8901,-1117.964],[5.3919,-25.8417,-1110.472],[-16.1,-25.8901,-1117.964],[-38.8059,-25.8037,-1107.685]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248374","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483740,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-102.332,-25.8938,-949.256],[-68.6149,-25.8525,-958.508],[-10.1469,-25.9281,-953.954],[69.151,-25.7681,-970.776],[114.867,-25.836,-960.894],[161.777,-25.924,-969.805],[159.288,-25.9257,-1045.839],[158.719,-25.9257,-1106.91],[103.512,-25.7791,-1105.617],[24.6148,-25.8437,-1115.826],[-56.2494,-25.826,-1107.128],[-107.258,-25.8004,-1104.999],[-136.703,-25.8902,-1058.105],[-107.258,-25.8004,-1104.999],[-56.2494,-25.826,-1107.128],[24.6148,-25.8437,-1115.826],[103.512,-25.7791,-1105.617],[158.719,-25.9257,-1106.91],[159.288,-25.9257,-1045.839],[161.777,-25.924,-969.805],[114.867,-25.836,-960.894],[69.151,-25.7681,-970.776],[-10.1469,-25.9281,-953.954],[-68.6149,-25.8525,-958.508]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248375","name":"Warpwood Treant Patrol","speed":1.15,"pathId":2483750,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-102.332,-25.8938,-949.256],[-68.6149,-25.8525,-958.508],[-10.1469,-25.9281,-953.954],[69.151,-25.7681,-970.776],[114.867,-25.836,-960.894],[161.777,-25.924,-969.805],[159.288,-25.9257,-1045.839],[158.719,-25.9257,-1106.91],[103.512,-25.7791,-1105.617],[24.6148,-25.8437,-1115.826],[-56.2494,-25.826,-1107.128],[-107.258,-25.8004,-1104.999],[-136.703,-25.8902,-1058.105],[-107.258,-25.8004,-1104.999],[-56.2494,-25.826,-1107.128],[24.6148,-25.8437,-1115.826],[103.512,-25.7791,-1105.617],[158.719,-25.9257,-1106.91],[159.288,-25.9257,-1045.839],[161.777,-25.924,-969.805],[114.867,-25.836,-960.894],[69.151,-25.7681,-970.776],[-10.1469,-25.9281,-953.954],[-68.6149,-25.8525,-958.508]],"members":[{"id":"member","entityId":"entry-11462","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248376","name":"Warpwood Tangler Patrol","speed":1.15,"pathId":2483760,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-136.703,-25.8902,-1058.105],[-107.258,-25.8004,-1104.999],[-56.2494,-25.826,-1107.128],[24.6148,-25.8437,-1115.826],[103.512,-25.7791,-1105.617],[158.719,-25.9257,-1106.91],[159.288,-25.9257,-1045.839],[161.777,-25.924,-969.805],[114.867,-25.836,-960.894],[69.151,-25.7681,-970.776],[-10.1469,-25.9281,-953.954],[-68.6149,-25.8525,-958.508],[-102.332,-25.8938,-949.256],[-68.6149,-25.8525,-958.508],[-10.1469,-25.9281,-953.954],[69.151,-25.7681,-970.776],[114.867,-25.836,-960.894],[161.777,-25.924,-969.805],[159.288,-25.9257,-1045.839],[158.719,-25.9257,-1106.91],[103.512,-25.7791,-1105.617],[24.6148,-25.8437,-1115.826],[-56.2494,-25.826,-1107.128],[-107.258,-25.8004,-1104.999]],"members":[{"id":"member","entityId":"entry-11464","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248377","name":"Warpwood Treant Patrol","speed":1.15,"pathId":2483770,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-136.703,-25.8902,-1058.105],[-107.258,-25.8004,-1104.999],[-56.2494,-25.826,-1107.128],[24.6148,-25.8437,-1115.826],[103.512,-25.7791,-1105.617],[158.719,-25.9257,-1106.91],[159.288,-25.9257,-1045.839],[161.777,-25.924,-969.805],[114.867,-25.836,-960.894],[69.151,-25.7681,-970.776],[-10.1469,-25.9281,-953.954],[-68.6149,-25.8525,-958.508],[-102.332,-25.8938,-949.256],[-68.6149,-25.8525,-958.508],[-10.1469,-25.9281,-953.954],[69.151,-25.7681,-970.776],[114.867,-25.836,-960.894],[161.777,-25.924,-969.805],[159.288,-25.9257,-1045.839],[158.719,-25.9257,-1106.91],[103.512,-25.7791,-1105.617],[24.6148,-25.8437,-1115.826],[-56.2494,-25.826,-1107.128],[-107.258,-25.8004,-1104.999]],"members":[{"id":"member","entityId":"entry-11462","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248419","name":"Wildspawn Shadowstalker Patrol","speed":1.15,"pathId":2484190,"formationSource":"database-solo","spawnMask":1,"waypoints":[[148.678,-58.6208,-1247.715],[149.453,-66.672,-1226.005],[143.054,-71.8827,-1215.728],[132.636,-76.8491,-1209.518],[105.812,-80.3663,-1207.952],[132.636,-76.8491,-1209.518],[143.054,-71.8827,-1215.728],[149.453,-66.672,-1226.005],[148.679,-58.6243,-1247.702],[135.019,-50.5672,-1264.653],[113.159,-42.3605,-1268.801],[95.7595,-35.1211,-1258.604],[89.0082,-29.1033,-1244.026],[82.9159,-25.9829,-1226.07],[77.0894,-25.9713,-1218.998],[61.3299,-25.9717,-1212.445],[77.0894,-25.9713,-1218.998],[82.9159,-25.9829,-1226.07],[89.0082,-29.1033,-1244.026],[95.7595,-35.1211,-1258.604],[113.059,-42.3072,-1268.743],[134.805,-50.4657,-1264.693]],"members":[{"id":"member","entityId":"entry-11456","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248420","name":"Wildspawn Shadowstalker Patrol","speed":1.15,"pathId":2484200,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-47.0014,-80.3808,-1225.755],[-61.1315,-80.3455,-1215.07],[-85.7535,-78.8891,-1210.515],[-97.0741,-77.681,-1211.91],[-108.241,-75.5146,-1218.237],[-112.736,-72.3733,-1234.147],[-104.849,-69.3258,-1248.125],[-88.6275,-66.3039,-1253.368],[-69.7661,-63.5809,-1253.337],[-32.4235,-58.851,-1253.331],[0.6312,-58.1608,-1252.164],[2.0146,-58.9506,-1229.422],[-15.8908,-59.7116,-1209.406],[2.0146,-58.9506,-1229.422],[0.9096,-58.1608,-1252.154],[-32.4235,-58.851,-1253.331],[-69.7661,-63.5809,-1253.337],[-88.6275,-66.3039,-1253.368],[-104.849,-69.3258,-1248.125],[-112.736,-72.3733,-1234.147],[-108.241,-75.5146,-1218.237],[-97.0741,-77.681,-1211.91],[-85.8696,-78.8587,-1210.53],[-61.1315,-80.3455,-1215.07]],"members":[{"id":"member","entityId":"entry-11456","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248421","name":"Wildspawn Shadowstalker Patrol","speed":1.15,"pathId":2484210,"formationSource":"database-solo","spawnMask":1,"waypoints":[[56.9323,-80.3352,-1161.398],[78.0908,-80.3296,-1171.318],[112.731,-80.2428,-1163.24],[141.143,-79.3253,-1163.274],[142.422,-78.7661,-1129.765],[144.11,-78.5101,-1075.738],[149.434,-78.5573,-1091.166],[144.11,-78.5101,-1075.738],[142.422,-78.1017,-1129.764],[141.143,-79.3253,-1163.274],[112.731,-80.2428,-1163.24],[78.0908,-80.3296,-1171.318]],"members":[{"id":"member","entityId":"entry-11456","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248521","name":"Warpwood Stomper Patrol","speed":1.15,"pathId":2485210,"formationSource":"database-solo","spawnMask":1,"waypoints":[[64.2495,-77.6646,-1120.005],[70.0856,-76.0027,-1094.391],[89.8259,-78.6099,-1078.246],[110.177,-79.378,-1046.085],[121.262,-76.8897,-1026.819],[116.503,-77.0447,-1013.688],[121.262,-76.8897,-1026.819],[110.177,-79.378,-1046.085],[89.8259,-78.6099,-1078.246],[70.0856,-76.0027,-1094.391]],"members":[{"id":"member","entityId":"entry-11465","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248524","name":"Warpwood Stomper Patrol","speed":1.15,"pathId":2485240,"formationSource":"database-solo","spawnMask":1,"waypoints":[[30.6208,-75.8475,-1060.789],[36.7869,-78.3557,-1031.625],[53.9076,-79.8347,-1005.403],[89.3598,-77.9935,-992.956],[53.9076,-79.8347,-1005.403],[36.7869,-78.3557,-1031.625],[30.6208,-75.8475,-1060.789],[32.4111,-72.229,-1087.478]],"members":[{"id":"member","entityId":"entry-11465","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248527","name":"Warpwood Stomper Patrol","speed":1.15,"pathId":2485270,"formationSource":"database-solo","spawnMask":1,"waypoints":[[17.6276,-75.8849,-1054.012],[32.6999,-79.7272,-1010.293],[17.6276,-75.8849,-1054.012],[16.1016,-73.6875,-1096.35]],"members":[{"id":"member","entityId":"entry-11465","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248530","name":"Warpwood Stomper Patrol","speed":1.15,"pathId":2485300,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-81.9692,-76.9107,-1043.463],[-109.515,-77.6217,-1034.093],[-117.909,-78.3585,-1014.923],[-109.515,-77.6217,-1034.093],[-81.9692,-76.9107,-1043.463],[-65.1329,-76.0733,-1073.329],[-76.7669,-77.2113,-1117.053],[-65.1329,-76.0733,-1073.329]],"members":[{"id":"member","entityId":"entry-11465","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248533","name":"Warpwood Stomper Patrol","speed":1.15,"pathId":2485330,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-38.371,-74.2029,-1074.404],[-20.1207,-74.7423,-1034.006],[5.1882,-76.1629,-1005.554],[12.2739,-75.1666,-965.4],[5.1882,-76.1629,-1005.554],[-20.1207,-74.7423,-1034.006]],"members":[{"id":"member","entityId":"entry-11465","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248542","name":"Warpwood Crusher Patrol","speed":1.15,"pathId":2485420,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-197.904,-122.6568,-1243.414],[-188.686,-118.6583,-1231.364],[-187.728,-98.7381,-1173.469],[-246.584,-89.2757,-1129.498],[-289.586,-89.2757,-1131.984],[-333.693,-97.6053,-1168.924],[-341.621,-120.2416,-1238.288],[-341.621,-120.2416,-1238.288],[-333.693,-97.6053,-1168.924],[-289.586,-89.2757,-1131.984],[-246.584,-89.2757,-1129.498],[-187.728,-98.7381,-1173.469],[-188.686,-118.6583,-1231.364],[-197.904,-122.6568,-1243.414],[-183.26,-128.9058,-1271.909],[-241.626,-133.7258,-1317.932],[-241.626,-133.7258,-1317.932],[-183.26,-128.9058,-1271.909]],"members":[{"id":"member","entityId":"entry-13021","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-248561","name":"Alzzin the Wildshaper Patrol","speed":1.15,"pathId":2485610,"formationSource":"database-solo","spawnMask":1,"waypoints":[[-274.917,-141.7118,-1187.466],[-262.371,-141.7118,-1205.785]],"members":[{"id":"member","entityId":"entry-11492","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"encounter-156","name":"Lord Hel'nurath","position":[115.657,-4.6998,-133.6709]},{"id":"creature-248429","name":"Zevrim Thornhoof","position":[34.91,-59.6283,-1208.215]},{"id":"creature-248418","name":"Hydrospawn","position":[-4.6519,-81.7038,-1198.622]},{"id":"creature-248299","name":"Lethtendris","position":[5.3776,-5.3319,-1201.341]},{"id":"creature-248034","name":"Illyanna Ravenoak","position":[84.2739,6.8653,-216.257]},{"id":"creature-248025","name":"Magister Kalendris","position":[-33.213,-26.0603,-184.663]},{"id":"creature-248037","name":"Immol'thar","position":[38.0077,-51.2023,52.225]},{"id":"creature-248077","name":"Guard Mol'dar","position":[-410.784,-46.3078,-763.3654]},{"id":"creature-248079","name":"Guard Fengus","position":[-356.868,-10.096,-501.909]},{"id":"creature-248080","name":"Guard Slip'kik","position":[-550.453,-47.0683,-226.49]},{"id":"creature-248081","name":"Captain Kromcrush","position":[-627.663,7.7129,-278.494]},{"id":"creature-248076","name":"King Gordok","position":[-828.147,15.5682,-279.464]}],"objectiveOrder":[{"id":"encounter-156","name":"Lord Hel'nurath","position":[115.657,-4.6998,-133.6709]},{"id":"creature-248429","name":"Zevrim Thornhoof","position":[34.91,-59.6283,-1208.215]},{"id":"creature-248418","name":"Hydrospawn","position":[-4.6519,-81.7038,-1198.622]},{"id":"creature-248299","name":"Lethtendris","position":[5.3776,-5.3319,-1201.341]},{"id":"creature-248034","name":"Illyanna Ravenoak","position":[84.2739,6.8653,-216.257]},{"id":"creature-248025","name":"Magister Kalendris","position":[-33.213,-26.0603,-184.663]},{"id":"creature-248037","name":"Immol'thar","position":[38.0077,-51.2023,52.225]},{"id":"creature-248077","name":"Guard Mol'dar","position":[-410.784,-46.3078,-763.3654]},{"id":"creature-248079","name":"Guard Fengus","position":[-356.868,-10.096,-501.909]},{"id":"creature-248080","name":"Guard Slip'kik","position":[-550.453,-47.0683,-226.49]},{"id":"creature-248081","name":"Captain Kromcrush","position":[-627.663,7.7129,-278.494]},{"id":"creature-248076","name":"King Gordok","position":[-828.147,15.5682,-279.464]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":6,"id":179545,"map":429,"orientation":-0.785397,"phaseMask":1,"position_x":116.135,"position_y":638.836,"position_z":-48.467,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":20,"id":179548,"map":429,"orientation":4.13643,"phaseMask":1,"position_x":4.49781,"position_y":-437.567,"position_z":16.4125,"rotation0":0,"rotation1":0,"rotation2":-0.878817,"rotation3":0.47716,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":159,"id":179485,"map":429,"orientation":3.14159,"phaseMask":1,"position_x":558.806,"position_y":550.065,"position_z":-25.4008,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":508,"id":177213,"map":429,"orientation":3.14159,"phaseMask":1,"position_x":10.5911,"position_y":-154.998,"position_z":-2.69379,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":509,"id":179550,"map":429,"orientation":5.64614,"phaseMask":1,"position_x":83.2552,"position_y":630.546,"position_z":-24.6315,"rotation0":0,"rotation1":0,"rotation2":-0.313164,"rotation3":0.949699,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":2557,"guid":11921,"id":179517,"map":429,"orientation":1.62316,"phaseMask":1,"position_x":129.481,"position_y":544.967,"position_z":-48.4663,"rotation0":0,"rotation1":0,"rotation2":0.725374,"rotation3":0.688355,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":14218,"id":181096,"map":429,"orientation":0,"phaseMask":1,"position_x":263.38,"position_y":-452.69,"position_z":-119.96,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29742,"id":177258,"map":429,"orientation":0.418879,"phaseMask":1,"position_x":121.222,"position_y":429.092,"position_z":28.4548,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29743,"id":177259,"map":429,"orientation":0,"phaseMask":1,"position_x":12.9413,"position_y":277.931,"position_z":-8.9329,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29744,"id":177257,"map":429,"orientation":0.418879,"phaseMask":1,"position_x":-92.3456,"position_y":442.67,"position_z":28.547,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29745,"id":179504,"map":429,"orientation":0,"phaseMask":1,"position_x":78.1387,"position_y":737.402,"position_z":-24.6216,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29746,"id":179505,"map":429,"orientation":0,"phaseMask":1,"position_x":-155.433,"position_y":734.166,"position_z":-24.6216,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29747,"id":179503,"map":429,"orientation":0,"phaseMask":1,"position_x":-38.9651,"position_y":813.709,"position_z":-27.3178,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29748,"id":179506,"map":429,"orientation":0,"phaseMask":1,"position_x":-38.7563,"position_y":812.587,"position_z":-3.8761,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29749,"id":179563,"map":429,"orientation":4.52041,"phaseMask":1,"position_x":116.105,"position_y":638.89,"position_z":-48.467,"rotation0":0,"rotation1":0,"rotation2":0.771622,"rotation3":-0.636081,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29750,"id":177219,"map":429,"orientation":1.5708,"phaseMask":1,"position_x":385.327,"position_y":374.232,"position_z":-1.34314,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":29751,"id":177221,"map":429,"orientation":4.71239,"phaseMask":1,"position_x":50.5863,"position_y":501.94,"position_z":-23.1499,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":29752,"id":177211,"map":429,"orientation":0,"phaseMask":1,"position_x":-41.8254,"position_y":159.874,"position_z":-3.44834,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":29753,"id":177212,"map":429,"orientation":3.14159,"phaseMask":1,"position_x":10.7216,"position_y":159.459,"position_z":-3.44834,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":29754,"id":177215,"map":429,"orientation":1.5708,"phaseMask":1,"position_x":255.408,"position_y":10.3791,"position_z":-2.69381,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":29755,"id":179549,"map":429,"orientation":1.5708,"phaseMask":1,"position_x":351.568,"position_y":88.6734,"position_z":-36.393,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":29756,"id":177217,"map":429,"orientation":1.5708,"phaseMask":1,"position_x":491.204,"position_y":515.133,"position_z":29.4675,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":35832,"id":179516,"map":429,"orientation":1.6352,"phaseMask":1,"position_x":385.031,"position_y":260.257,"position_z":11.4396,"rotation0":0,"rotation1":0,"rotation2":0.729506,"rotation3":0.683974,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":35833,"id":179547,"map":429,"orientation":3.21621,"phaseMask":1,"position_x":157.708,"position_y":602.89,"position_z":-26.7316,"rotation0":0,"rotation1":0,"rotation2":0.999304,"rotation3":-0.0373,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":2557,"guid":44739,"id":179544,"map":429,"orientation":5.02655,"phaseMask":1,"position_x":163.038,"position_y":530.182,"position_z":-48.467,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":44740,"id":179499,"map":429,"orientation":3.74834,"phaseMask":1,"position_x":599.501,"position_y":606.489,"position_z":-4.75246,"rotation0":0,"rotation1":0,"rotation2":0.954334,"rotation3":-0.298741,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73440,"id":179526,"map":429,"orientation":-0.453785,"phaseMask":1,"position_x":-7.83484,"position_y":-199.983,"position_z":-4.12879,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73441,"id":179526,"map":429,"orientation":0.785397,"phaseMask":1,"position_x":102.549,"position_y":-246.011,"position_z":-56.3647,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73442,"id":179526,"map":429,"orientation":-0.488691,"phaseMask":1,"position_x":134.767,"position_y":-262.46,"position_z":-4.14639,"rotation0":0,"rotation1":0,"rotation2":-0.241921,"rotation3":0.970296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73443,"id":179526,"map":429,"orientation":0,"phaseMask":1,"position_x":-114.736,"position_y":-199.653,"position_z":-4.1244,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73444,"id":179526,"map":429,"orientation":0,"phaseMask":1,"position_x":-112.021,"position_y":-258.887,"position_z":-56.2501,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73445,"id":179526,"map":429,"orientation":2.33874,"phaseMask":1,"position_x":-61.5861,"position_y":-306.311,"position_z":-55.7067,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73446,"id":179526,"map":429,"orientation":-0.209439,"phaseMask":1,"position_x":-5.54965,"position_y":-393.198,"position_z":-58.6137,"rotation0":0,"rotation1":0,"rotation2":-0.104528,"rotation3":0.994522,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73447,"id":179526,"map":429,"orientation":0,"phaseMask":1,"position_x":21.9326,"position_y":-409.795,"position_z":-58.6142,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73448,"id":179526,"map":429,"orientation":2.32129,"phaseMask":1,"position_x":117.148,"position_y":-408.461,"position_z":-3.27357,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73449,"id":179526,"map":429,"orientation":1.58825,"phaseMask":1,"position_x":36.7152,"position_y":-467.008,"position_z":-4.24876,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73450,"id":179526,"map":429,"orientation":0,"phaseMask":1,"position_x":353.105,"position_y":-447.005,"position_z":-90.0577,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73451,"id":179526,"map":429,"orientation":3.05433,"phaseMask":1,"position_x":66.2358,"position_y":-633.758,"position_z":-25.163,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":73452,"id":179528,"map":429,"orientation":-2.02458,"phaseMask":1,"position_x":-22.3061,"position_y":-349.882,"position_z":-4.07224,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":73453,"id":179528,"map":429,"orientation":-0.453785,"phaseMask":1,"position_x":423.649,"position_y":-94.0369,"position_z":-3.88739,"rotation0":0,"rotation1":0,"rotation2":-0.224951,"rotation3":0.97437,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":73454,"id":179528,"map":429,"orientation":-2.80998,"phaseMask":1,"position_x":509.725,"position_y":523.927,"position_z":-25.4027,"rotation0":0,"rotation1":0,"rotation2":-0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73455,"id":179528,"map":429,"orientation":2.84488,"phaseMask":1,"position_x":101.961,"position_y":-247.727,"position_z":-4.01977,"rotation0":0,"rotation1":0,"rotation2":0.989015,"rotation3":0.147813,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73456,"id":179528,"map":429,"orientation":-1.93732,"phaseMask":1,"position_x":127.199,"position_y":-272.801,"position_z":-4.14639,"rotation0":0,"rotation1":0,"rotation2":-0.824127,"rotation3":0.566404,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73457,"id":179528,"map":429,"orientation":-0.750491,"phaseMask":1,"position_x":-168.656,"position_y":-271.912,"position_z":-4.12082,"rotation0":0,"rotation1":0,"rotation2":-0.366501,"rotation3":0.930418,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73458,"id":179528,"map":429,"orientation":1.25664,"phaseMask":1,"position_x":-156.299,"position_y":-321.1,"position_z":-4.14717,"rotation0":0,"rotation1":0,"rotation2":0.587786,"rotation3":0.809016,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73459,"id":179528,"map":429,"orientation":-2.86233,"phaseMask":1,"position_x":-99.5965,"position_y":-395.866,"position_z":-4.2207,"rotation0":0,"rotation1":0,"rotation2":-0.990267,"rotation3":0.139178,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73460,"id":179528,"map":429,"orientation":-2.07694,"phaseMask":1,"position_x":-109.888,"position_y":-404.549,"position_z":-4.21786,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73461,"id":179528,"map":429,"orientation":0.244346,"phaseMask":1,"position_x":-42.6484,"position_y":-341.5,"position_z":-52.6547,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73462,"id":179528,"map":429,"orientation":0.226893,"phaseMask":1,"position_x":-27.0036,"position_y":-404.283,"position_z":-58.614,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73463,"id":179528,"map":429,"orientation":2.05949,"phaseMask":1,"position_x":-10.2151,"position_y":-349.267,"position_z":-53.8632,"rotation0":0,"rotation1":0,"rotation2":0.857168,"rotation3":0.515037,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73464,"id":179528,"map":429,"orientation":0.314158,"phaseMask":1,"position_x":34.9096,"position_y":-365.079,"position_z":-4.14052,"rotation0":0,"rotation1":0,"rotation2":0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73465,"id":179528,"map":429,"orientation":-2.16421,"phaseMask":1,"position_x":34.5069,"position_y":-391.211,"position_z":-58.6113,"rotation0":0,"rotation1":0,"rotation2":-0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73466,"id":179528,"map":429,"orientation":-0.506145,"phaseMask":1,"position_x":47.8125,"position_y":-334.275,"position_z":-52.0553,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73467,"id":179528,"map":429,"orientation":3.12412,"phaseMask":1,"position_x":71.7209,"position_y":-409.745,"position_z":-4.21656,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73468,"id":179528,"map":429,"orientation":-0.628317,"phaseMask":1,"position_x":64.8074,"position_y":-400.448,"position_z":-58.6044,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73469,"id":179528,"map":429,"orientation":0.872664,"phaseMask":1,"position_x":71.7946,"position_y":-437.261,"position_z":-58.5956,"rotation0":0,"rotation1":0,"rotation2":0.422618,"rotation3":0.906308,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73470,"id":179528,"map":429,"orientation":-2.67035,"phaseMask":1,"position_x":263.393,"position_y":-568.436,"position_z":-111.976,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233447,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73471,"id":179528,"map":429,"orientation":-1.23918,"phaseMask":1,"position_x":59.0392,"position_y":-760.028,"position_z":-25.0955,"rotation0":0,"rotation1":0,"rotation2":-0.580701,"rotation3":0.814117,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73472,"id":179528,"map":429,"orientation":-1.309,"phaseMask":1,"position_x":32.7576,"position_y":-775.236,"position_z":-25.1416,"rotation0":0,"rotation1":0,"rotation2":-0.608763,"rotation3":0.793352,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73473,"id":179532,"map":429,"orientation":-0.95993,"phaseMask":1,"position_x":2.64945,"position_y":-210.379,"position_z":-52.3845,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73474,"id":179532,"map":429,"orientation":1.8675,"phaseMask":1,"position_x":50.4484,"position_y":-241.885,"position_z":-53.2931,"rotation0":0,"rotation1":0,"rotation2":0.803856,"rotation3":0.594824,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73475,"id":179532,"map":429,"orientation":0.418879,"phaseMask":1,"position_x":-148.661,"position_y":-210.009,"position_z":-4.1514,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73476,"id":179532,"map":429,"orientation":0.244346,"phaseMask":1,"position_x":-131.851,"position_y":-319.414,"position_z":-56.7906,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73477,"id":179532,"map":429,"orientation":-2.02458,"phaseMask":1,"position_x":-22.3061,"position_y":-349.883,"position_z":-4.07224,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73478,"id":179532,"map":429,"orientation":0,"phaseMask":1,"position_x":-6.16094,"position_y":-433.403,"position_z":-4.22212,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73479,"id":179532,"map":429,"orientation":-0.85521,"phaseMask":1,"position_x":55.8777,"position_y":-438.434,"position_z":-58.5981,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909962,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73480,"id":179532,"map":429,"orientation":-1.95477,"phaseMask":1,"position_x":126.758,"position_y":-296.279,"position_z":-4.14639,"rotation0":0,"rotation1":0,"rotation2":-0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73481,"id":179532,"map":429,"orientation":0,"phaseMask":1,"position_x":4.90084,"position_y":-450.306,"position_z":-58.6295,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73482,"id":179532,"map":429,"orientation":1.93731,"phaseMask":1,"position_x":189.484,"position_y":-482.115,"position_z":-100.601,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566409,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73483,"id":179532,"map":429,"orientation":-2.47837,"phaseMask":1,"position_x":44.9141,"position_y":-626.477,"position_z":-25.1061,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73484,"id":179532,"map":429,"orientation":0,"phaseMask":1,"position_x":31.0736,"position_y":-681.584,"position_z":-25.1616,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73485,"id":179533,"map":429,"orientation":-0.314158,"phaseMask":1,"position_x":-124.622,"position_y":-234.072,"position_z":-55.1133,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73486,"id":179533,"map":429,"orientation":2.87979,"phaseMask":1,"position_x":-75.923,"position_y":-358.893,"position_z":-4.14481,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73487,"id":179533,"map":429,"orientation":1.81514,"phaseMask":1,"position_x":-51.4662,"position_y":-358.168,"position_z":-4.13823,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73488,"id":179533,"map":429,"orientation":0,"phaseMask":1,"position_x":-94.2365,"position_y":-406.708,"position_z":-58.6073,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73489,"id":179533,"map":429,"orientation":0,"phaseMask":1,"position_x":-14.44,"position_y":-309.911,"position_z":-52.1458,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73490,"id":179533,"map":429,"orientation":-2.49582,"phaseMask":1,"position_x":36.7851,"position_y":-402.629,"position_z":-4.21849,"rotation0":0,"rotation1":0,"rotation2":-0.948324,"rotation3":0.317305,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73491,"id":179533,"map":429,"orientation":-1.44862,"phaseMask":1,"position_x":119.36,"position_y":-336.64,"position_z":-4.14986,"rotation0":0,"rotation1":0,"rotation2":-0.662619,"rotation3":0.748957,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73492,"id":179533,"map":429,"orientation":0,"phaseMask":1,"position_x":66.1826,"position_y":-315.416,"position_z":-54.2518,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73493,"id":179533,"map":429,"orientation":0.488691,"phaseMask":1,"position_x":-32.8264,"position_y":-463.171,"position_z":-58.6176,"rotation0":0,"rotation1":0,"rotation2":0.241921,"rotation3":0.970296,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73494,"id":179533,"map":429,"orientation":-0.0698117,"phaseMask":1,"position_x":242.178,"position_y":-420.788,"position_z":-119.962,"rotation0":0,"rotation1":0,"rotation2":-0.0348988,"rotation3":0.999391,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73495,"id":179533,"map":429,"orientation":-2.19912,"phaseMask":1,"position_x":17.3334,"position_y":-704.192,"position_z":-12.6426,"rotation0":0,"rotation1":0,"rotation2":-0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":73496,"id":179533,"map":429,"orientation":0.104719,"phaseMask":1,"position_x":41.8712,"position_y":-744.931,"position_z":-25.1339,"rotation0":0,"rotation1":0,"rotation2":0.0523356,"rotation3":0.99863,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":81680,"id":176905,"map":429,"orientation":5.12254,"phaseMask":1,"position_x":-21.1058,"position_y":-392.466,"position_z":-58.1027,"rotation0":0,"rotation1":0,"rotation2":-0.548293,"rotation3":0.836286,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":81681,"id":176906,"map":429,"orientation":3.5692,"phaseMask":1,"position_x":4.30648,"position_y":-441.621,"position_z":-37.9976,"rotation0":0,"rotation1":0,"rotation2":-0.977231,"rotation3":0.212178,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99774,"id":179671,"map":429,"orientation":2.00921,"phaseMask":1,"position_x":-31.5518,"position_y":794.877,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.84395,"rotation3":0.536422,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99775,"id":179670,"map":429,"orientation":2.52128,"phaseMask":1,"position_x":-24.1474,"position_y":801.253,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.952286,"rotation3":0.305207,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99776,"id":179669,"map":429,"orientation":3.15588,"phaseMask":1,"position_x":-19.4947,"position_y":813.068,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.999974,"rotation3":-0.0071436,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99777,"id":179671,"map":429,"orientation":3.83134,"phaseMask":1,"position_x":-25.0153,"position_y":825.11,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.941118,"rotation3":-0.338078,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99778,"id":179670,"map":429,"orientation":4.48085,"phaseMask":1,"position_x":-35.8296,"position_y":831.663,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.784052,"rotation3":-0.620695,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99779,"id":179669,"map":429,"orientation":5.33299,"phaseMask":1,"position_x":-48.6689,"position_y":828.936,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.457425,"rotation3":-0.889248,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99780,"id":179671,"map":429,"orientation":6.0006,"phaseMask":1,"position_x":-56.2721,"position_y":816.969,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.140823,"rotation3":-0.990035,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99781,"id":179670,"map":429,"orientation":0.549925,"phaseMask":1,"position_x":-54.7371,"position_y":803.251,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.271511,"rotation3":0.962435,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99782,"id":179669,"map":429,"orientation":1.35102,"phaseMask":1,"position_x":-42.1705,"position_y":794.235,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.625295,"rotation3":0.780388,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99783,"id":179681,"map":429,"orientation":4.90495,"phaseMask":1,"position_x":-35.712,"position_y":796.486,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.635856,"rotation3":-0.771807,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99784,"id":179668,"map":429,"orientation":4.90495,"phaseMask":1,"position_x":-38.8094,"position_y":812.696,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.635856,"rotation3":-0.771807,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99785,"id":179673,"map":429,"orientation":0.213769,"phaseMask":1,"position_x":-59.7294,"position_y":808.98,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.106681,"rotation3":0.994293,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99786,"id":179672,"map":429,"orientation":3.30353,"phaseMask":1,"position_x":-17.6217,"position_y":816.557,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.996724,"rotation3":-0.0808802,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99787,"id":179674,"map":429,"orientation":4.77773,"phaseMask":1,"position_x":-42.5304,"position_y":835.045,"position_z":-29.5359,"rotation0":0,"rotation1":0,"rotation2":0.683632,"rotation3":-0.729827,"spawnMask":1,"spawntimesecs":-900,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99895,"id":179701,"map":429,"orientation":0,"phaseMask":1,"position_x":-38.94,"position_y":812.86,"position_z":-29.53,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99896,"id":179675,"map":429,"orientation":0,"phaseMask":1,"position_x":-38.94,"position_y":812.85,"position_z":-29.53,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99902,"id":181047,"map":429,"orientation":0,"phaseMask":1,"position_x":263.38,"position_y":-452.69,"position_z":-119.96,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268262,"id":142144,"map":429,"orientation":-1.95477,"phaseMask":1,"position_x":67.4486,"position_y":-467.225,"position_z":-58.6226,"rotation0":0,"rotation1":0,"rotation2":-0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268263,"id":142144,"map":429,"orientation":-2.02458,"phaseMask":1,"position_x":24.717,"position_y":-468.53,"position_z":-4.25922,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268264,"id":142144,"map":429,"orientation":-2.19912,"phaseMask":1,"position_x":68.1034,"position_y":-669.629,"position_z":-25.1653,"rotation0":0,"rotation1":0,"rotation2":-0.891008,"rotation3":0.453988,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268265,"id":142144,"map":429,"orientation":0.174532,"phaseMask":1,"position_x":-46.1853,"position_y":-432.413,"position_z":16.4136,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268266,"id":142144,"map":429,"orientation":-2.47837,"phaseMask":1,"position_x":-110.419,"position_y":-419.615,"position_z":-58.6047,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268267,"id":142145,"map":429,"orientation":-0.506145,"phaseMask":1,"position_x":73.1442,"position_y":-234.595,"position_z":-56.461,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268268,"id":142145,"map":429,"orientation":0.767944,"phaseMask":1,"position_x":-29.2692,"position_y":-335.209,"position_z":-51.8413,"rotation0":0,"rotation1":0,"rotation2":0.374606,"rotation3":0.927184,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268269,"id":142145,"map":429,"orientation":1.39626,"phaseMask":1,"position_x":-27.8809,"position_y":-392.48,"position_z":-58.6137,"rotation0":0,"rotation1":0,"rotation2":0.642786,"rotation3":0.766046,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268270,"id":142145,"map":429,"orientation":1.95477,"phaseMask":1,"position_x":107.133,"position_y":-465.386,"position_z":-3.27357,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559192,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268271,"id":142145,"map":429,"orientation":2.79252,"phaseMask":1,"position_x":-77.444,"position_y":-438.764,"position_z":-58.612,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268272,"id":142145,"map":429,"orientation":1.25664,"phaseMask":1,"position_x":39.6528,"position_y":-322.045,"position_z":-52.2932,"rotation0":0,"rotation1":0,"rotation2":0.587786,"rotation3":0.809016,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268273,"id":142145,"map":429,"orientation":1.32645,"phaseMask":1,"position_x":38.4777,"position_y":-391.213,"position_z":-58.6108,"rotation0":0,"rotation1":0,"rotation2":0.615661,"rotation3":0.788011,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268275,"id":176907,"map":429,"orientation":3.14159,"phaseMask":1,"position_x":131.286,"position_y":-278.89,"position_z":-56.5211,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268276,"id":177220,"map":429,"orientation":-1.5708,"phaseMask":1,"position_x":252.327,"position_y":-404.921,"position_z":-120.62,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268277,"id":179502,"map":429,"orientation":-2.92342,"phaseMask":1,"position_x":277.695,"position_y":-423.25,"position_z":-120.04,"rotation0":0,"rotation1":0,"rotation2":-0.994056,"rotation3":0.10887,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268278,"id":185579,"map":429,"orientation":0,"phaseMask":1,"position_x":33.14,"position_y":575.552,"position_z":-4.31,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268279,"id":179511,"map":429,"orientation":-2.79252,"phaseMask":1,"position_x":581.241,"position_y":524.321,"position_z":-25.4027,"rotation0":0,"rotation1":0,"rotation2":-0.984807,"rotation3":0.173652,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":268280,"id":179501,"map":429,"orientation":2.77244,"phaseMask":1,"position_x":585.21,"position_y":523.77,"position_z":-25.4,"rotation0":0,"rotation1":0,"rotation2":0.983014,"rotation3":0.18353,"spawnMask":1,"spawntimesecs":-86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268877,"id":181094,"map":429,"orientation":0,"phaseMask":1,"position_x":263.38,"position_y":-452.69,"position_z":-119.96,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2557,"guid":2135399,"id":175404,"map":429,"orientation":3.03684,"phaseMask":1,"position_x":270.596,"position_y":-286.689,"position_z":-70.5572,"rotation0":0,"rotation1":0,"rotation2":0.998629,"rotation3":0.0523524,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2557,"guid":2135400,"id":175404,"map":429,"orientation":5.89921,"phaseMask":1,"position_x":246.195,"position_y":-268.761,"position_z":-52.933,"rotation0":0,"rotation1":0,"rotation2":0.19081,"rotation3":-0.981627,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2557,"guid":2135401,"id":175404,"map":429,"orientation":5.42798,"phaseMask":1,"position_x":276.913,"position_y":-323.602,"position_z":-90.5699,"rotation0":0,"rotation1":0,"rotation2":0.414691,"rotation3":-0.909963,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2557,"guid":2135402,"id":175404,"map":429,"orientation":4.83456,"phaseMask":1,"position_x":288.452,"position_y":-309.522,"position_z":-84.566,"rotation0":0,"rotation1":0,"rotation2":0.662621,"rotation3":-0.748955,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":2557},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":2557,"guid":2135403,"id":175404,"map":429,"orientation":2.94959,"phaseMask":1,"position_x":263.743,"position_y":-266.911,"position_z":-59.9769,"rotation0":0,"rotation1":0,"rotation2":0.995395,"rotation3":0.0958539,"spawnMask":1,"spawntimesecs":604800,"state":1,"zoneId":2557}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"common-2.mpq/World/Maps/DireMaul":"9dbba84e7d0350efb7196c7ce9fa2d34e94d348220f18cba53a9ab831ac55856","patch/World/maps/DireMaul":"66a31e4d48a2dfe8b940acf8c04c5466214914aae4e97185aca79b72c2c3efc7"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/dire-maul/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["75/75 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"shattered-halls","title":"Hellfire Citadel: The Shattered Halls","mapId":540,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[60,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Hellfire Citadel: The Shattered Halls","theme":"Instanced dungeon","summary":"Fight through Hellfire Citadel: The Shattered Halls, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Hellfire Citadel: The Shattered Halls...","unchartedAreaName":"Uncharted Hellfire Citadel: The Shattered Halls","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":920.411},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/540-hellfiremilitary/visual.glb","checksum":"35c761a37b2a332b1f1697f84f7d5c9b917f0d9448c1802ea57f2e8e4f40444f","size":5546796,"triangleCount":123467}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/540-hellfiremilitary/collision.glb","checksum":"4ddfc2741199bf4c4915315f8690412319476a3e5e4033ba403f4a5c70a44f5b","size":1488152,"triangleCount":99999}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/540-hellfiremilitary/navigation.glb","checksum":"2f7b6b0e32d292eabdf0593ea352a37abb1a4c2143a113ee484bb33bc04417c9","size":197280,"triangleCount":15319}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-1175.5379,-50.7607,-92.6571],"max":[102.8107,43.2496,610.4687]},"entrance":{"name":"Hellfire Citadel: The Shattered Halls Entrance","footPosition":[-530.9893,4.4197,205.3429],"forward":[0.8917600537080059,0,-0.45250857075937745],"yaw":2.0403727204346236},"areas":[{"id":"entrance","name":"Hellfire Citadel: The Shattered Halls Entrance","center":[-530.9893,4.4197,205.3429],"radius":35},{"id":"area-grand-warlock-nethekurse","name":"Grand Warlock Nethekurse's Encounter","center":[-744.5239,10.1108,514.7067],"radius":42},{"id":"area-warbringer-o-mrogg","name":"Warbringer O'mrogg's Encounter","center":[-946.9809,11.0103,282.6748],"radius":42},{"id":"area-warchief-kargath-bladefist","name":"Warchief Kargath Bladefist's Encounter","center":[-803.1109,23.2496,141.4518],"radius":42}],"entities":{"entry-17420":{"id":"entry-17420","kind":"mob","name":"Shattered Hand Heathen","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-30474","name":"Bloodthirst","spellId":30474,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4818,"damageMultiplier":1.12},{"id":"spell-30485","name":"Enrage","spellId":30485,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4818,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-30485","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17013-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-16700":{"id":"entry-16700","kind":"mob","name":"Shattered Hand Legionnaire","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5906,"damageMultiplier":1.12},{"id":"spell-30472","name":"Aura of Discipline","spellId":30472,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5906,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-19275-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.8096,"markerRadius":0.8975}}},"entry-16507":{"id":"entry-16507","kind":"mob","name":"Shattered Hand Sentry","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22911","name":"Charge","spellId":22911,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6219,"damageMultiplier":1.12},{"id":"spell-31553","name":"Hamstring","spellId":31553,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6219,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-19277-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.9176,"markerRadius":0.7578}}},"entry-16594":{"id":"entry-16594","kind":"mob","name":"Shadowmoon Acolyte","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15585","name":"Prayer of Healing","spellId":15585,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5149,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-36052","name":"Power Word: Shield","spellId":36052,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":5149,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-36052","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16581-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-16523":{"id":"entry-16523","kind":"mob","name":"Shattered Hand Savage","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30470","name":"Slice and Dice","spellId":30470,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4775,"damageMultiplier":1.12},{"id":"spell-30485","name":"Enrage","spellId":30485,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4775,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-30485","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16584-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17694":{"id":"entry-17694","kind":"mob","name":"Shadowmoon Darkcaster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12542","name":"Fear","spellId":12542,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7260,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7260,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17189-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-16699":{"id":"entry-16699","kind":"mob","name":"Shattered Hand Reaver","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5983,"damageMultiplier":0.62,"radius":8},{"id":"spell-30485","name":"Enrage","spellId":30485,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5983,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-30485","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16580-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-16704":{"id":"entry-16704","kind":"mob","name":"Shattered Hand Sharpshooter","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-19503","name":"Scatter Shot","spellId":19503,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12},{"id":"spell-30481","name":"Incendiary Shot","spellId":30481,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5631,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16578-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17083":{"id":"entry-17083","kind":"mob","name":"Fel Orc Convert","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30478","name":"Hemorrhage","spellId":30478,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7111,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16839-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.142,"markerRadius":0.7505}}},"entry-16593":{"id":"entry-16593","kind":"mob","name":"Shattered Hand Brawler","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6840,"damageMultiplier":1.12},{"id":"spell-36033","name":"Kick","spellId":36033,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6840,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16577-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17670":{"id":"entry-17670","kind":"mob","name":"Shattered Hand Houndmaster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34100","name":"Volley","spellId":34100,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6802,"damageMultiplier":0.62,"radius":8},{"id":"spell-15620","name":"Shoot","spellId":15620,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6802,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17184-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17669":{"id":"entry-17669","kind":"mob","name":"Rabid Warhound","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.434272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-30636","name":"Furious Howl","spellId":30636,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6397,"damageMultiplier":1.12},{"id":"spell-30639","name":"Carnivorous Bite","spellId":30639,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6397,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/acebaa605ea524a1df51d8ae425890737c096a76fffc27f17d3790073d1a3b7f.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.776,"markerRadius":1.7182}}},"entry-17356":{"id":"entry-17356","kind":"mob","name":"Creeping Ooze","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"ooze","model":{"url":"/assets/game/creatures/shared/2da48b305af87e5b7fe3a62db57cec0b5328ee4b5e390214600ddb6f9428db8b.glb","rotationY":-1.5707963267948966,"groundOffset":0.7137,"labelHeight":2.7872,"markerRadius":1.3463}}},"entry-17357":{"id":"entry-17357","kind":"mob","name":"Creeping Oozeling","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"ooze","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-10029-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3568,"labelHeight":1.3729,"markerRadius":0.65}}},"entry-16807":{"id":"entry-16807","kind":"boss","name":"Grand Warlock Nethekurse","title":"Dungeon Boss","hasLoot":true,"combat":{"level":71,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":7838,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16628-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0094,"labelHeight":4.0675,"markerRadius":0.9443}}},"entry-17693":{"id":"entry-17693","kind":"mob","name":"Shattered Hand Scout","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17727-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17462":{"id":"entry-17462","kind":"mob","name":"Shattered Hand Zealot","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30989","name":"Hamstring","spellId":30989,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4764,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17726-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17461":{"id":"entry-17461","kind":"mob","name":"Shattered Hand Blood Guard","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17725-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.3974,"markerRadius":0.8769}}},"entry-17427":{"id":"entry-17427","kind":"mob","name":"Shattered Hand Archer","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16100","name":"Shoot","spellId":16100,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5551,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16578-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17465":{"id":"entry-17465","kind":"mob","name":"Shattered Hand Centurion","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30931","name":"Battle Shout","spellId":30931,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6123,"damageMultiplier":1.12},{"id":"spell-15572","name":"Sunder Armor","spellId":15572,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6123,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17185-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.3974,"markerRadius":0.8769}}},"entry-17464":{"id":"entry-17464","kind":"mob","name":"Shattered Hand Gladiator","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16856","name":"Mortal Strike","spellId":16856,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4074,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17183-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17671":{"id":"entry-17671","kind":"mob","name":"Shattered Hand Champion","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32588","name":"Concussion Blow","spellId":32588,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5626,"damageMultiplier":1.12},{"id":"spell-32587","name":"Shield Block","spellId":32587,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5626,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-32587","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17186-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0094,"labelHeight":4.0675,"markerRadius":0.9443}}},"entry-16809":{"id":"entry-16809","kind":"boss","name":"Warbringer O'mrogg","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30633","name":"Thunderclap","spellId":30633,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5091,"damageMultiplier":1.35},{"id":"spell-30584","name":"Fear","spellId":30584,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5091,"damageMultiplier":0,"radius":11,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}},{"id":"spell-30600","name":"Blast Wave","spellId":30600,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5091,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-18031-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":11.6005,"markerRadius":3.5134}}},"entry-17695":{"id":"entry-17695","kind":"mob","name":"Shattered Hand Assassin","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30991","name":"Stealth","spellId":30991,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5950,"damageMultiplier":1.12},{"id":"spell-30992","name":"Backstab","spellId":30992,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5950,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17190-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-16808":{"id":"entry-16808","kind":"boss","name":"Warchief Kargath Bladefist","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-12328","name":"Sweeping Strikes","spellId":12328,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-25821","name":"Charge","spellId":25821,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-30739","name":"Blade Dance","spellId":30739,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7418,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-19799-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.4989,"markerRadius":1.4563}}},"entry-20709":{"id":"entry-20709","kind":"mob","name":"Blade Dance Target","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-19725-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0236,"labelHeight":2.6514,"markerRadius":0.8681}}},"entry-20923":{"id":"entry-20923","kind":"mob","name":"Blood Guard Porung","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5598,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-17725-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.3974,"markerRadius":0.8769}}},"entry-17288":{"id":"entry-17288","kind":"mob","name":"Randy Whizzlesprocket","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16960-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-17289":{"id":"entry-17289","kind":"mob","name":"Rifleman Brownbeard","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16961-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0047,"labelHeight":2.0266,"markerRadius":0.65}}},"entry-17290":{"id":"entry-17290","kind":"mob","name":"Captain Alina","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16963-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-17292":{"id":"entry-17292","kind":"mob","name":"Private Jacint","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16964-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-17301":{"id":"entry-17301","kind":"mob","name":"Shattered Hand Executioner","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11876","name":"War Stomp","spellId":11876,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":7406,"damageMultiplier":0.62,"radius":8},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":7406,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shattered-halls/creatures/display-16969-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}}},"staticSpawns":[{"id":"creature-151000","entityId":"entry-17420","position":[-631.3278,5.0259,280.824],"yaw":-5.65015,"spawnMask":3},{"id":"creature-151001","entityId":"entry-17420","position":[-628.2349,5.0669,282.3728],"yaw":-6.02974,"spawnMask":3},{"id":"creature-151002","entityId":"entry-17420","position":[-652.6096,5.0802,280.973],"yaw":-3.58081,"spawnMask":3},{"id":"creature-151003","entityId":"entry-17420","position":[-656.8165,5.0964,281.5567],"yaw":-3.48471,"spawnMask":3},{"id":"creature-151004","entityId":"entry-17420","position":[-658.6746,5.1021,282.001],"yaw":-3.32437,"spawnMask":3},{"id":"creature-151005","entityId":"entry-16700","position":[-627.5046,5.0177,227.7292],"yaw":-3.1915,"spawnMask":3},{"id":"creature-151006","entityId":"entry-16507","position":[-638.337,5.0877,266.4644],"yaw":-4.69494,"spawnMask":3},{"id":"creature-151007","entityId":"entry-16507","position":[-644.9845,5.0877,266.3046],"yaw":-4.62512,"spawnMask":3},{"id":"creature-151008","entityId":"entry-16507","position":[-637.1136,5.0877,322.6092],"yaw":-4.69494,"spawnMask":3},{"id":"creature-151009","entityId":"entry-16507","position":[-645.8578,5.0877,321.8686],"yaw":-4.53786,"spawnMask":3},{"id":"creature-151010","entityId":"entry-16700","position":[-629.649,5.0818,298.8187],"yaw":-0.753955,"spawnMask":3},{"id":"creature-151011","entityId":"entry-16594","position":[-626.2614,5.117,302.8155],"yaw":-5.55015,"spawnMask":3},{"id":"creature-151012","entityId":"entry-17420","position":[-628.3219,5.1267,304.3448],"yaw":-5.46288,"spawnMask":3},{"id":"creature-151013","entityId":"entry-16523","position":[-635.1744,5.1106,309.1912],"yaw":-4.66003,"spawnMask":3},{"id":"creature-151014","entityId":"entry-16594","position":[-637.2843,5.1078,309.7068],"yaw":-4.60767,"spawnMask":3},{"id":"creature-151015","entityId":"entry-16594","position":[-647.1955,5.1093,308.8951],"yaw":-4.13643,"spawnMask":3},{"id":"creature-151016","entityId":"entry-17420","position":[-649.2597,5.1161,307.9871],"yaw":-3.9619,"spawnMask":3},{"id":"creature-151017","entityId":"entry-17694","position":[-654.296,5.1141,301.2674],"yaw":-3.735,"spawnMask":3},{"id":"creature-151018","entityId":"entry-17420","position":[-655.9122,5.1059,299.466],"yaw":-3.71755,"spawnMask":3},{"id":"creature-151019","entityId":"entry-16700","position":[-657.2771,5.005,375.4127],"yaw":-3.08167,"spawnMask":3},{"id":"creature-151020","entityId":"entry-16699","position":[-659.878,5.0794,374.4907],"yaw":-3.17592,"spawnMask":3},{"id":"creature-151021","entityId":"entry-16704","position":[-622.0855,5.0829,377.3487],"yaw":-6.16142,"spawnMask":3},{"id":"creature-151022","entityId":"entry-17420","position":[-660.8454,5.0802,375.4857],"yaw":-3.22771,"spawnMask":3},{"id":"creature-151023","entityId":"entry-17694","position":[-622.5003,5.0798,376.4077],"yaw":-6.03849,"spawnMask":3},{"id":"creature-151024","entityId":"entry-16700","position":[-657.86,5.074,412.0827],"yaw":-3.42933,"spawnMask":3},{"id":"creature-151025","entityId":"entry-16699","position":[-625.8155,5.0847,417.5277],"yaw":-6.05308,"spawnMask":3},{"id":"creature-151026","entityId":"entry-16704","position":[-657.2732,5.0838,406.5747],"yaw":-3.67352,"spawnMask":3},{"id":"creature-151027","entityId":"entry-16704","position":[-626.1054,5.0838,406.3387],"yaw":-5.75305,"spawnMask":3},{"id":"creature-151028","entityId":"entry-17694","position":[-657.7093,5.0862,418.1657],"yaw":-3.45011,"spawnMask":3},{"id":"creature-151029","entityId":"entry-16700","position":[-631.1294,5.0895,449.5137],"yaw":-5.21006,"spawnMask":3},{"id":"creature-151030","entityId":"entry-16699","position":[-632.8298,5.0321,444.5297],"yaw":-5.60132,"spawnMask":3},{"id":"creature-151031","entityId":"entry-16699","position":[-635.075,5.0709,447.2907],"yaw":-5.8546,"spawnMask":3},{"id":"creature-151032","entityId":"entry-16704","position":[-648.6504,5.0213,446.9307],"yaw":-3.88154,"spawnMask":3},{"id":"creature-151033","entityId":"entry-16704","position":[-649.1324,5.0209,446.7277],"yaw":-3.70026,"spawnMask":3},{"id":"creature-151034","entityId":"entry-16704","position":[-655.743,5.1083,448.7627],"yaw":-3.9635,"spawnMask":3},{"id":"creature-151035","entityId":"entry-16700","position":[-641.6211,5.0251,488.4977],"yaw":-3.94444,"spawnMask":3},{"id":"creature-151036","entityId":"entry-17083","position":[-639.5458,5.1248,495.9617],"yaw":-4.17134,"spawnMask":3},{"id":"creature-151037","entityId":"entry-16523","position":[-644.5471,5.1239,492.5307],"yaw":-3.94444,"spawnMask":3},{"id":"creature-151038","entityId":"entry-17083","position":[-650.0542,5.1133,489.2187],"yaw":-3.71755,"spawnMask":3},{"id":"creature-151039","entityId":"entry-17694","position":[-644.7319,5.1226,499.1437],"yaw":-4.08407,"spawnMask":3},{"id":"creature-151040","entityId":"entry-16699","position":[-649.7228,5.1117,495.7277],"yaw":-3.89208,"spawnMask":3},{"id":"creature-151041","entityId":"entry-16594","position":[-655.2006,5.1023,490.1007],"yaw":-3.66519,"spawnMask":3},{"id":"creature-151042","entityId":"entry-16593","position":[-615.4523,7.2274,478.8217],"yaw":-1.58825,"spawnMask":3},{"id":"creature-151043","entityId":"entry-16593","position":[-615.4197,7.4479,490.3777],"yaw":-1.65806,"spawnMask":3},{"id":"creature-151044","entityId":"entry-16593","position":[-641.5306,7.3871,511.1307],"yaw":-0.122173,"spawnMask":3},{"id":"creature-151045","entityId":"entry-16594","position":[-655.406,7.3473,511.8467],"yaw":-3.03687,"spawnMask":3},{"id":"creature-151046","entityId":"entry-17670","position":[-674.8979,5.0865,491.4367],"yaw":-2.9147,"spawnMask":3},{"id":"creature-151047","entityId":"entry-17669","position":[-674.8579,5.0865,495.0587],"yaw":-3.19395,"spawnMask":3},{"id":"creature-151048","entityId":"entry-17669","position":[-674.7509,5.0865,487.4377],"yaw":-3.00197,"spawnMask":3},{"id":"creature-151049","entityId":"entry-17356","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151050","entityId":"entry-17357","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151051","entityId":"entry-17357","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151052","entityId":"entry-17357","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151053","entityId":"entry-17357","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151054","entityId":"entry-17357","position":[-696.5309,-30.5658,433.2557],"yaw":-5.11107,"spawnMask":3},{"id":"creature-151055","entityId":"entry-17356","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151056","entityId":"entry-17357","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151057","entityId":"entry-17357","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151058","entityId":"entry-17357","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151059","entityId":"entry-17357","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151060","entityId":"entry-17357","position":[-710.5479,-28.4064,413.4887],"yaw":-5.45529,"spawnMask":3},{"id":"creature-151061","entityId":"entry-17356","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151062","entityId":"entry-17357","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151063","entityId":"entry-17357","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151064","entityId":"entry-17357","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151065","entityId":"entry-17357","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151066","entityId":"entry-17357","position":[-720.1129,-26.096,404.3737],"yaw":-2.41444,"spawnMask":3},{"id":"creature-151067","entityId":"entry-17356","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151068","entityId":"entry-17357","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151069","entityId":"entry-17357","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151070","entityId":"entry-17357","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151071","entityId":"entry-17357","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151072","entityId":"entry-17357","position":[-734.5199,-24.0231,393.4057],"yaw":-2.0156,"spawnMask":3},{"id":"creature-151073","entityId":"entry-17356","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151074","entityId":"entry-17357","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151075","entityId":"entry-17357","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151076","entityId":"entry-17357","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151077","entityId":"entry-17357","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151078","entityId":"entry-17357","position":[-748.2569,-23.9538,389.6497],"yaw":-2.80574,"spawnMask":3},{"id":"creature-151079","entityId":"entry-17356","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151080","entityId":"entry-17357","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151081","entityId":"entry-17357","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151082","entityId":"entry-17357","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151083","entityId":"entry-17357","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151084","entityId":"entry-17357","position":[-764.9929,-24.053,385.7047],"yaw":-2.05846,"spawnMask":3},{"id":"creature-151089","entityId":"entry-16807","position":[-744.5239,10.1108,514.7067],"yaw":-6.01108,"spawnMask":3},{"id":"creature-151090","entityId":"entry-17083","position":[-736.5769,5.114,491.3597],"yaw":-1.0472,"spawnMask":3},{"id":"creature-151091","entityId":"entry-17083","position":[-745.9099,5.1713,494.2287],"yaw":-1.44862,"spawnMask":3},{"id":"creature-151092","entityId":"entry-17083","position":[-756.2869,5.1706,494.3907],"yaw":-1.72788,"spawnMask":3},{"id":"creature-151093","entityId":"entry-17083","position":[-766.3449,5.1222,492.1687],"yaw":-2.18166,"spawnMask":3},{"id":"creature-151094","entityId":"entry-17693","position":[-913.1499,20.2389,539.9997],"yaw":-3.14159,"spawnMask":3},{"id":"creature-151095","entityId":"entry-17462","position":[-907.5249,20.251,542.6557],"yaw":-5.28835,"spawnMask":3},{"id":"creature-151096","entityId":"entry-17462","position":[-904.1229,20.2569,539.1817],"yaw":-0.15708,"spawnMask":3},{"id":"creature-151097","entityId":"entry-17462","position":[-907.1919,20.25,536.8057],"yaw":-0.994838,"spawnMask":3},{"id":"creature-151118","entityId":"entry-17461","position":[-1084.5479,20.2667,540.7487],"yaw":-2.98451,"spawnMask":1},{"id":"creature-151119","entityId":"entry-17427","position":[-1086.3619,20.2688,544.7537],"yaw":-3.36849,"spawnMask":3},{"id":"creature-151120","entityId":"entry-17427","position":[-1086.6659,20.2626,537.1377],"yaw":-3.00197,"spawnMask":3},{"id":"creature-151121","entityId":"entry-17462","position":[-1070.9409,20.2576,547.3487],"yaw":-3.28122,"spawnMask":3},{"id":"creature-151122","entityId":"entry-17462","position":[-1071.7149,20.2584,543.9047],"yaw":-3.15905,"spawnMask":3},{"id":"creature-151123","entityId":"entry-17462","position":[-1071.6009,20.2583,538.3767],"yaw":-3.03687,"spawnMask":3},{"id":"creature-151124","entityId":"entry-17462","position":[-1070.7959,20.2569,534.2167],"yaw":-3.00197,"spawnMask":3},{"id":"creature-151126","entityId":"entry-17669","position":[-1093.1659,20.1562,462.1777],"yaw":-1.0861,"spawnMask":3},{"id":"creature-151127","entityId":"entry-17669","position":[-1093.1659,20.1562,462.1777],"yaw":-1.0861,"spawnMask":3},{"id":"creature-151129","entityId":"entry-17669","position":[-1002.5669,20.2311,283.3671],"yaw":-2.91832,"spawnMask":3},{"id":"creature-151130","entityId":"entry-17669","position":[-1002.5669,20.2311,283.3671],"yaw":-2.91832,"spawnMask":3},{"id":"creature-151131","entityId":"entry-16700","position":[-1100.0169,20.1597,453.1697],"yaw":-3.436,"spawnMask":3},{"id":"creature-151132","entityId":"entry-16594","position":[-1097.8149,20.2457,449.1617],"yaw":-2.00713,"spawnMask":3},{"id":"creature-151133","entityId":"entry-17694","position":[-1095.3399,20.2398,447.2347],"yaw":-1.76278,"spawnMask":3},{"id":"creature-151134","entityId":"entry-17420","position":[-1100.5409,20.2493,448.5017],"yaw":-2.1293,"spawnMask":3},{"id":"creature-151135","entityId":"entry-16699","position":[-1097.6229,20.2431,445.8877],"yaw":-1.91986,"spawnMask":3},{"id":"creature-151136","entityId":"entry-17420","position":[-1094.5579,20.2362,444.0527],"yaw":-1.71042,"spawnMask":3},{"id":"creature-151137","entityId":"entry-16700","position":[-1083.2139,20.1574,387.1637],"yaw":-6.00745,"spawnMask":3},{"id":"creature-151138","entityId":"entry-17694","position":[-1094.6809,20.2387,379.5527],"yaw":-2.18166,"spawnMask":3},{"id":"creature-151139","entityId":"entry-16699","position":[-1091.3509,20.2396,377.1007],"yaw":-1.69297,"spawnMask":3},{"id":"creature-151140","entityId":"entry-17420","position":[-1087.4009,20.2378,377.5337],"yaw":-1.23918,"spawnMask":3},{"id":"creature-151141","entityId":"entry-16594","position":[-1084.6089,20.2337,379.7177],"yaw":-0.820305,"spawnMask":3},{"id":"creature-151142","entityId":"entry-16699","position":[-1082.7189,20.2339,382.6697],"yaw":-0.401426,"spawnMask":3},{"id":"creature-151143","entityId":"entry-17465","position":[-1055.0649,18.5628,458.3157],"yaw":-0.261799,"spawnMask":3},{"id":"creature-151144","entityId":"entry-17464","position":[-1060.1819,18.5144,454.3437],"yaw":-2.47837,"spawnMask":3},{"id":"creature-151145","entityId":"entry-17464","position":[-1054.4119,18.5721,453.3427],"yaw":-0.890118,"spawnMask":3},{"id":"creature-151146","entityId":"entry-17464","position":[-1058.1139,18.563,464.7297],"yaw":-3.59538,"spawnMask":3},{"id":"creature-151147","entityId":"entry-17464","position":[-1053.5959,18.5608,461.5417],"yaw":-5.55015,"spawnMask":3},{"id":"creature-151148","entityId":"entry-17465","position":[-1123.6679,18.5629,458.5707],"yaw":-5.25344,"spawnMask":3},{"id":"creature-151149","entityId":"entry-17464","position":[-1126.9599,18.5556,463.8717],"yaw":-3.83972,"spawnMask":3},{"id":"creature-151150","entityId":"entry-17464","position":[-1130.5379,18.5733,459.5527],"yaw":-3.33358,"spawnMask":3},{"id":"creature-151151","entityId":"entry-17464","position":[-1120.4529,18.6307,453.7817],"yaw":-1.27409,"spawnMask":3},{"id":"creature-151152","entityId":"entry-17464","position":[-1127.3039,18.5758,451.6367],"yaw":-1.81514,"spawnMask":3},{"id":"creature-151153","entityId":"entry-17465","position":[-1119.9429,18.5706,372.8417],"yaw":-5.09636,"spawnMask":3},{"id":"creature-151154","entityId":"entry-17464","position":[-1125.8949,18.5657,366.2407],"yaw":-2.33874,"spawnMask":3},{"id":"creature-151155","entityId":"entry-17464","position":[-1123.9929,18.5594,374.6977],"yaw":-3.40339,"spawnMask":3},{"id":"creature-151156","entityId":"entry-17464","position":[-1121.0549,18.5811,366.9317],"yaw":-1.88496,"spawnMask":3},{"id":"creature-151157","entityId":"entry-17464","position":[-1128.2699,18.565,370.2327],"yaw":-2.84489,"spawnMask":3},{"id":"creature-151158","entityId":"entry-17465","position":[-1059.5109,18.5593,370.3907],"yaw":-2.9147,"spawnMask":3},{"id":"creature-151159","entityId":"entry-17464","position":[-1061.4419,18.6932,365.6687],"yaw":-1.88496,"spawnMask":3},{"id":"creature-151160","entityId":"entry-17464","position":[-1055.4089,18.5665,364.5867],"yaw":-1.01229,"spawnMask":3},{"id":"creature-151161","entityId":"entry-17464","position":[-1052.0519,18.567,369.2507],"yaw":-6.16101,"spawnMask":3},{"id":"creature-151162","entityId":"entry-17464","position":[-1056.4819,18.5569,374.2327],"yaw":-5.28835,"spawnMask":3},{"id":"creature-151163","entityId":"entry-16523","position":[-1085.9429,20.2272,432.4247],"yaw":-3.82227,"spawnMask":3},{"id":"creature-151165","entityId":"entry-16593","position":[-1087.1499,20.2292,413.1097],"yaw":-3.735,"spawnMask":3},{"id":"creature-151167","entityId":"entry-17420","position":[-1095.9719,20.2485,404.2797],"yaw":-5.27089,"spawnMask":3},{"id":"creature-151169","entityId":"entry-16699","position":[-1081.6039,20.2437,358.5177],"yaw":-4.10152,"spawnMask":3},{"id":"creature-151171","entityId":"entry-16523","position":[-1086.4619,20.2188,345.5567],"yaw":-3.40339,"spawnMask":3},{"id":"creature-151173","entityId":"entry-16523","position":[-1096.5969,20.2205,345.9667],"yaw":-4.10152,"spawnMask":3},{"id":"creature-151175","entityId":"entry-17671","position":[-1095.2709,20.2428,310.829],"yaw":-1.81514,"spawnMask":3},{"id":"creature-151176","entityId":"entry-17671","position":[-1086.1779,20.2427,311.4296],"yaw":-1.20428,"spawnMask":3},{"id":"creature-151177","entityId":"entry-17671","position":[-1020.2269,20.2491,278.3946],"yaw":-0.488692,"spawnMask":3},{"id":"creature-151178","entityId":"entry-17671","position":[-1020.4949,20.2427,287.4722],"yaw":-5.65487,"spawnMask":3},{"id":"creature-151179","entityId":"entry-16809","position":[-946.9809,11.0103,282.6748],"yaw":-6.17847,"spawnMask":3},{"id":"creature-151181","entityId":"entry-17669","position":[-859.6829,20.1881,140.8532],"yaw":-3.07991,"spawnMask":3},{"id":"creature-151182","entityId":"entry-17669","position":[-859.6829,20.1881,140.8532],"yaw":-3.07991,"spawnMask":3},{"id":"creature-151183","entityId":"entry-17671","position":[-941.8399,20.2314,217.2724],"yaw":-1.32645,"spawnMask":3},{"id":"creature-151184","entityId":"entry-17671","position":[-950.2329,20.2196,217.3627],"yaw":-1.8326,"spawnMask":3},{"id":"creature-151185","entityId":"entry-17695","position":[-1053.8559,20.1613,280.1898],"yaw":-4.88017,"spawnMask":3},{"id":"creature-151192","entityId":"entry-17671","position":[-854.8189,20.3987,144.8091],"yaw":-6.02139,"spawnMask":3},{"id":"creature-151193","entityId":"entry-17671","position":[-855.4129,20.3843,135.6686],"yaw":-0.436332,"spawnMask":3},{"id":"creature-151195","entityId":"entry-16808","position":[-803.1109,23.2496,141.4518],"yaw":-6.26573,"spawnMask":3},{"id":"creature-151197","entityId":"entry-20709","position":[-839.8579,21.4008,140.9604],"yaw":-5.86431,"spawnMask":3},{"id":"creature-151198","entityId":"entry-20709","position":[-832.0089,22.4104,141.298],"yaw":-2.6529,"spawnMask":3},{"id":"creature-151199","entityId":"entry-20709","position":[-823.4839,23.2479,140.9749],"yaw":-5.25344,"spawnMask":3},{"id":"creature-151200","entityId":"entry-20709","position":[-821.8229,23.2489,126.8278],"yaw":-3.61283,"spawnMask":3},{"id":"creature-151201","entityId":"entry-20709","position":[-814.5679,23.2496,134.5067],"yaw":-5.11381,"spawnMask":3},{"id":"creature-151202","entityId":"entry-20709","position":[-815.3109,23.2496,147.8004],"yaw":-4.55531,"spawnMask":3},{"id":"creature-151203","entityId":"entry-20709","position":[-821.4629,23.2484,155.7044],"yaw":-1.39626,"spawnMask":3},{"id":"creature-151204","entityId":"entry-20709","position":[-814.2359,23.2491,161.3182],"yaw":-3.05433,"spawnMask":3},{"id":"creature-151205","entityId":"entry-20709","position":[-808.1419,23.2496,156.236],"yaw":-5.14872,"spawnMask":3},{"id":"creature-151206","entityId":"entry-20709","position":[-801.4349,23.2496,148.653],"yaw":-2.14675,"spawnMask":3},{"id":"creature-151207","entityId":"entry-20709","position":[-807.7789,23.2496,141.1719],"yaw":-1.81514,"spawnMask":3},{"id":"creature-151208","entityId":"entry-20709","position":[-801.0739,23.2496,133.8171],"yaw":-0.244346,"spawnMask":3},{"id":"creature-151209","entityId":"entry-20709","position":[-807.4979,23.2496,125.3505],"yaw":-5.34071,"spawnMask":3},{"id":"creature-151210","entityId":"entry-20709","position":[-801.2179,23.2496,120.3037],"yaw":-3.4383,"spawnMask":3},{"id":"creature-151211","entityId":"entry-20709","position":[-794.7899,23.2496,125.7795],"yaw":-0.366519,"spawnMask":3},{"id":"creature-151212","entityId":"entry-20709","position":[-795.0189,23.2496,141.2243],"yaw":-6.10865,"spawnMask":3},{"id":"creature-151213","entityId":"entry-20709","position":[-795.3469,23.2496,156.7082],"yaw":-0.942478,"spawnMask":3},{"id":"creature-151214","entityId":"entry-20709","position":[-801.2309,23.2496,161.7589],"yaw":-2.75762,"spawnMask":3},{"id":"creature-151215","entityId":"entry-20709","position":[-788.1429,23.249,160.4042],"yaw":-3.75246,"spawnMask":3},{"id":"creature-151216","entityId":"entry-20709","position":[-782.1169,23.249,154.6296],"yaw":-0.925025,"spawnMask":3},{"id":"creature-151217","entityId":"entry-20709","position":[-787.9609,23.2496,146.8384],"yaw":-5.09636,"spawnMask":3},{"id":"creature-151218","entityId":"entry-20709","position":[-787.2819,23.2496,136.0395],"yaw":-5.21853,"spawnMask":3},{"id":"creature-151219","entityId":"entry-20709","position":[-781.2319,23.2488,127.1008],"yaw":-5.25344,"spawnMask":3},{"id":"creature-151220","entityId":"entry-20709","position":[-787.9529,23.249,120.9087],"yaw":-1.48353,"spawnMask":3},{"id":"creature-151221","entityId":"entry-20709","position":[-815.0569,23.2491,120.3947],"yaw":-5.14872,"spawnMask":3},{"id":"creature-151222","entityId":"entry-20709","position":[-779.4089,23.248,140.8781],"yaw":-0.122173,"spawnMask":3},{"id":"creature-151223","entityId":"entry-20709","position":[-770.4249,22.1448,140.8347],"yaw":-4.01426,"spawnMask":3},{"id":"creature-151224","entityId":"entry-20709","position":[-762.7729,20.9105,140.5089],"yaw":-5.75959,"spawnMask":3},{"id":"creature-151283","entityId":"entry-20923","position":[-1084.5479,20.2667,540.7487],"yaw":-2.98451,"spawnMask":2},{"id":"creature-151284","entityId":"entry-17462","position":[-1072.5219,20.4064,560.1797],"yaw":-4.79004,"spawnMask":3},{"id":"creature-151285","entityId":"entry-17462","position":[-1074.1879,20.4186,565.0297],"yaw":-4.68225,"spawnMask":3},{"id":"creature-151286","entityId":"entry-17462","position":[-1079.2909,20.4069,565.4687],"yaw":-4.49735,"spawnMask":3},{"id":"creature-151287","entityId":"entry-17462","position":[-1086.9759,20.4181,564.9187],"yaw":-4.1892,"spawnMask":3},{"id":"creature-151288","entityId":"entry-17462","position":[-1072.2979,20.2615,524.8057],"yaw":-1.83741,"spawnMask":3},{"id":"creature-151289","entityId":"entry-17462","position":[-1072.3159,20.251,520.5407],"yaw":-1.76546,"spawnMask":3},{"id":"creature-151290","entityId":"entry-17462","position":[-1076.8779,20.2476,519.1137],"yaw":-1.93119,"spawnMask":3},{"id":"creature-151291","entityId":"entry-17462","position":[-1082.5299,20.2342,517.5337],"yaw":-2.11297,"spawnMask":3},{"id":"creature-151300","entityId":"entry-17288","position":[-692.7409,3.6562,477.8767],"yaw":-0.82,"spawnMask":2},{"id":"creature-1971577","entityId":"entry-17289","position":[-720.4259,20.1463,147.383],"yaw":-4.71631,"spawnMask":2},{"id":"creature-1971578","entityId":"entry-17290","position":[-713.4189,20.1338,142.3971],"yaw":-6.22428,"spawnMask":2},{"id":"creature-1971579","entityId":"entry-17292","position":[-719.3829,20.1421,136.4056],"yaw":-1.4348,"spawnMask":2},{"id":"creature-1971580","entityId":"entry-17301","position":[-724.7239,20.1633,141.8694],"yaw":-6.25962,"spawnMask":2}],"roamingPacks":[{"id":"patrol-151085","name":"Creeping Oozeling Patrol","speed":1.15,"pathId":1510850,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-777.7799,-24.1991,387.4517],[-764.7249,-24.1362,389.4187],[-749.8889,-23.8711,391.2987],[-738.1789,-23.8775,394.8377],[-726.8909,-25.3856,402.8687],[-714.1269,-28.3645,414.7737],[-703.0009,-30.6132,428.7047],[-699.0529,-30.2177,441.3237],[-698.9159,-28.6521,455.8597],[-699.1299,-26.9276,469.2867],[-696.7809,-27.0214,480.5877],[-692.3129,-26.972,474.5697],[-692.5159,-28.6369,455.9007],[-693.1559,-30.0453,442.4187],[-695.1439,-30.4813,428.6377],[-700.0119,-30.0707,418.3437],[-704.8229,-29.0894,412.8837],[-713.2169,-27.3019,405.7227],[-720.4299,-25.8126,399.8167],[-731.6649,-24.2959,391.6697],[-742.9399,-24.1193,386.6687],[-757.6009,-24.1333,382.8987],[-771.4989,-24.1631,383.1197]],"members":[{"id":"member","entityId":"entry-17357","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151086","name":"Creeping Oozeling Patrol","speed":1.15,"pathId":1510860,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-702.2629,-27.0424,483.2137],[-688.3299,-27.2389,467.1617],[-700.4559,-30.7607,438.2827],[-697.7609,-29.8097,414.0907],[-720.4099,-26.9036,411.5237],[-726.5259,-24.7659,391.5077],[-759.7599,-24.1187,391.9777],[-773.6399,-24.1782,379.4287],[-759.7599,-24.1187,391.9777],[-726.5259,-24.7659,391.5077],[-720.4099,-26.9036,411.5237],[-697.7609,-29.8097,414.0907],[-700.4559,-30.7607,438.2827],[-688.3299,-27.2389,467.1617]],"members":[{"id":"member","entityId":"entry-17357","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151087","name":"Creeping Oozeling Patrol","speed":1.15,"pathId":1510870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-776.2119,-24.1938,382.3157],[-760.6949,-24.1364,381.4137],[-745.6169,-24.1222,383.4397],[-736.7699,-24.1134,387.8877],[-726.9389,-24.8868,394.2787],[-710.0469,-27.9146,407.3057],[-701.3439,-30.0985,420.0007],[-693.0269,-30.4563,438.0297],[-692.4779,-28.2658,458.7827],[-695.2229,-26.9275,470.1967],[-700.3149,-27.5051,464.7857],[-699.1379,-29.4651,448.1857],[-697.8109,-30.1808,440.7627],[-702.1719,-30.2861,423.9377],[-712.9259,-28.0052,411.8417],[-725.3769,-25.3806,400.3277],[-732.6659,-24.394,394.9977],[-745.1289,-24.121,388.3497],[-761.7979,-24.1286,388.3657]],"members":[{"id":"member","entityId":"entry-17357","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151088","name":"Creeping Oozeling Patrol","speed":1.15,"pathId":1510880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-775.7029,-24.1786,391.3287],[-756.2269,-24.1326,379.9287],[-740.6809,-23.6698,396.7577],[-725.2809,-24.8858,391.5727],[-721.2789,-26.8621,412.6337],[-695.3439,-30.2136,419.9477],[-701.9929,-29.211,450.9297],[-690.0099,-27.2459,467.0107],[-701.9929,-29.211,450.9297],[-695.3439,-30.2136,419.9477],[-721.2789,-26.8621,412.6337],[-725.2809,-24.8858,391.5727],[-740.6809,-23.6698,396.7577],[-756.2269,-24.1326,379.9287]],"members":[{"id":"member","entityId":"entry-17357","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151125","name":"Shattered Hand Houndmaster Patrol","speed":1.15,"pathId":1511250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1093.1659,20.1562,462.1777],[-1089.0039,20.1601,474.9147],[-1078.5869,20.1589,465.3307],[-1082.3749,20.1556,454.2837],[-1091.6429,20.0932,433.6937],[-1090.8149,20.1635,422.0087],[-1090.3379,20.1687,401.0347],[-1078.4559,20.1581,388.5377],[-1073.2989,20.1558,377.4907],[-1080.5689,20.1524,366.3217],[-1094.1529,20.1602,366.4077],[-1104.0889,20.1557,374.0727],[-1096.8649,20.1583,395.2677],[-1091.3049,20.169,400.3527],[-1091.5259,20.1627,421.4627],[-1092.8529,20.0894,433.4517],[-1085.0189,20.1604,446.7087]],"members":[{"id":"member","entityId":"entry-17670","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151128","name":"Shattered Hand Houndmaster Patrol","speed":1.15,"pathId":1511280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1002.5669,20.2311,283.3671],[-1008.6199,20.1516,278.9221],[-1021.9649,20.153,282.2664],[-1031.7379,20.1646,282.5834],[-1056.5219,20.1609,282.5882],[-1071.7059,20.1671,282.5288],[-1084.0249,20.1634,284.9162],[-1090.3469,20.1311,299.1988],[-1090.6249,20.1594,309.6425],[-1094.0429,20.1435,318.5986],[-1094.1889,20.1529,329.0917],[-1090.4509,20.1612,334.3797],[-1086.1759,20.1557,330.8147],[-1090.7469,20.1613,311.2389],[-1089.6699,20.1312,299.4394],[-1083.6579,20.1632,285.4927],[-1071.9179,20.1665,283.5725],[-1057.0309,20.1609,283.2511],[-1031.2319,20.1645,283.7982],[-1022.6809,20.1528,283.8801],[-1008.8989,20.1499,287.0093]],"members":[{"id":"member","entityId":"entry-17670","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151180","name":"Shattered Hand Houndmaster Patrol","speed":1.15,"pathId":1511800,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-859.6829,20.1881,140.8532],[-863.0749,20.1392,135.8342],[-878.7019,20.1634,137.9172],[-915.0209,20.1619,138.8237],[-932.6019,20.1445,141.5821],[-945.2969,20.1463,153.166],[-947.6629,20.1622,174.1045],[-950.4649,20.1336,193.282],[-946.8059,20.1373,205.0017],[-941.0619,20.1381,204.5273],[-941.3409,20.1385,189.8139],[-945.3019,20.1623,174.0413],[-943.3689,20.1466,154.3824],[-931.3499,20.1448,142.5643],[-915.0009,20.1612,140.2737],[-882.0459,20.1631,142.3091],[-869.8829,20.1629,145.4481]],"members":[{"id":"member","entityId":"entry-17670","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151186","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511860,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-953.9069,20.134,192.7],[-937.6159,20.1363,200.4467],[-953.1869,20.1364,206.1872],[-937.6159,20.1363,200.4467]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151187","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-954.9419,20.1658,172.1643],[-938.9499,20.1507,181.2142],[-953.5289,20.1403,186.4555],[-938.9499,20.1507,181.2142]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151188","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-953.2529,20.1449,150.5575],[-937.2389,20.1476,156.8808],[-952.9639,20.1555,164.5951],[-937.2389,20.1476,156.8808]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151189","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511890,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-940.4029,20.1381,137.4684],[-928.5029,20.1393,149.6588],[-926.7239,20.1614,134.6871],[-928.5029,20.1393,149.6588]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151190","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511900,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-897.0129,20.1637,133.047],[-904.6869,20.1655,148.2025],[-918.0589,20.1613,136.4035],[-904.6869,20.1655,148.2025]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-151191","name":"Shattered Hand Assassin Patrol","speed":1.15,"pathId":1511910,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-862.9169,20.1391,134.1776],[-871.3309,20.1627,148.4641],[-886.3149,20.1637,133.9296],[-871.3309,20.1627,148.4641]],"members":[{"id":"member","entityId":"entry-17695","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-151089","name":"Grand Warlock Nethekurse","position":[-744.5239,10.1108,514.7067]},{"id":"creature-151179","name":"Warbringer O'mrogg","position":[-946.9809,11.0103,282.6748]},{"id":"creature-151195","name":"Warchief Kargath Bladefist","position":[-803.1109,23.2496,141.4518]}],"objectiveOrder":[{"id":"creature-151089","name":"Grand Warlock Nethekurse","position":[-744.5239,10.1108,514.7067]},{"id":"creature-151179","name":"Warbringer O'mrogg","position":[-946.9809,11.0103,282.6748]},{"id":"creature-151195","name":"Warchief Kargath Bladefist","position":[-803.1109,23.2496,141.4518]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4700,"id":182539,"map":540,"orientation":3.14159,"phaseMask":1,"position_x":141.516,"position_y":266.366,"position_z":-11.5682,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4712,"id":182540,"map":540,"orientation":0,"phaseMask":1,"position_x":214.488,"position_y":266.167,"position_z":-11.5181,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4756,"id":181671,"map":540,"orientation":3.15906,"phaseMask":1,"position_x":330.751,"position_y":74.2059,"position_z":1.07924,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":-0.00873356,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4779,"id":181671,"map":540,"orientation":0.0174525,"phaseMask":1,"position_x":330.795,"position_y":41.0261,"position_z":1.0704,"rotation0":0,"rotation1":0,"rotation2":0.00872614,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4796,"id":181439,"map":540,"orientation":5.84685,"phaseMask":1,"position_x":260.319,"position_y":-79.3166,"position_z":-6.41893,"rotation0":0,"rotation1":0,"rotation2":0.216441,"rotation3":-0.976296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4806,"id":181438,"map":540,"orientation":4.45059,"phaseMask":1,"position_x":257.006,"position_y":-102.191,"position_z":-5.66889,"rotation0":0,"rotation1":0,"rotation2":0.793353,"rotation3":-0.608762,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4842,"id":181435,"map":540,"orientation":4.88692,"phaseMask":1,"position_x":242.159,"position_y":-75.0628,"position_z":-9.3041,"rotation0":0,"rotation1":0,"rotation2":0.642788,"rotation3":-0.766044,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4853,"id":181436,"map":540,"orientation":0.698129,"phaseMask":1,"position_x":232.833,"position_y":-98.3243,"position_z":-11.7617,"rotation0":0,"rotation1":0,"rotation2":0.342019,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4857,"id":181441,"map":540,"orientation":2.00712,"phaseMask":1,"position_x":220.309,"position_y":-54.908,"position_z":-6.4563,"rotation0":0,"rotation1":0,"rotation2":0.843389,"rotation3":0.537303,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4932,"id":181437,"map":540,"orientation":3.75246,"phaseMask":1,"position_x":222.686,"position_y":-78.6362,"position_z":-11.1251,"rotation0":0,"rotation1":0,"rotation2":0.953717,"rotation3":-0.300707,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4940,"id":181440,"map":540,"orientation":2.00712,"phaseMask":1,"position_x":215.421,"position_y":-112.643,"position_z":-6.4563,"rotation0":0,"rotation1":0,"rotation2":0.843389,"rotation3":0.537303,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":4944,"id":181442,"map":540,"orientation":2.00712,"phaseMask":1,"position_x":197.259,"position_y":-84.1902,"position_z":-7.34571,"rotation0":0,"rotation1":0,"rotation2":0.843389,"rotation3":0.537303,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":99793,"id":181679,"map":540,"orientation":2.44346,"phaseMask":1,"position_x":167.585,"position_y":293.96,"position_z":-8.16966,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.34202,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":53622,"animprogress":255,"areaId":0,"guid":99794,"id":181679,"map":540,"orientation":0.506145,"phaseMask":1,"position_x":189.495,"position_y":294.043,"position_z":-8.17125,"rotation0":0,"rotation1":0,"rotation2":0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150008,"id":184177,"map":540,"orientation":1.48438,"phaseMask":1,"position_x":-41.968,"position_y":-26.2,"position_z":-13.5379,"rotation0":0,"rotation1":0,"rotation2":0.675904,"rotation3":0.73699,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150009,"id":184178,"map":540,"orientation":1.48438,"phaseMask":1,"position_x":-41.968,"position_y":-26.2,"position_z":-13.5379,"rotation0":0,"rotation1":0,"rotation2":0.675904,"rotation3":0.73699,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/HellfireMilitary":"6c51b172d05d6bde9e9c8ec3d5d31f6527dfb9fedf7781f4402a353c204705da","patch/World/maps/HellfireMilitary":"d2657f2bc029d2cea7705c6ba9cc800205b85c61161fec3d7c91a1c832c6dcf5"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/shattered-halls/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["32/32 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"blood-furnace","title":"Hellfire Citadel: The Blood Furnace","mapId":542,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[58,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Hellfire Citadel: The Blood Furnace","theme":"Instanced dungeon","summary":"Fight through Hellfire Citadel: The Blood Furnace, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Hellfire Citadel: The Blood Furnace...","unchartedAreaName":"Uncharted Hellfire Citadel: The Blood Furnace","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":780.5079},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/542-hellfiredemon/visual.glb","checksum":"b0a96bfe9fbccd433209de3391729d51c15e75ddbaeebf351ce3768120f7a209","size":5418012,"triangleCount":139088}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/542-hellfiredemon/collision.glb","checksum":"552ec34a2ddc7f2621bc0496a2fa27c105283c36b5f1626cac609c70adbb8a2d","size":1399160,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/542-hellfiredemon/navigation.glb","checksum":"800a067caba512c2e36177b682b548d45d7efecb4944dbafd202e1e651de78ee","size":382552,"triangleCount":28809}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-1034.7467,-102.9463,-188.3626],"max":[49.292,86.1043,296.1984]},"entrance":{"name":"Hellfire Citadel: The Blood Furnace Entrance","footPosition":[-482.708,9.6208,63.5257],"forward":[0.9225408690211957,0,-0.3858993974932029],"yaw":1.9669788642368982},"areas":[{"id":"entrance","name":"Hellfire Citadel: The Blood Furnace Entrance","center":[-482.708,9.6208,63.5257],"radius":35},{"id":"area-the-maker","name":"The Maker's Encounter","center":[-813.8747,64.0372,186.7054],"radius":42},{"id":"area-broggok","name":"Broggok's Encounter","center":[-942.0407,64.0516,47.0602],"radius":42},{"id":"area-keli-dan-the-breaker","name":"Keli'dan the Breaker's Encounter","center":[-813.2077,29.8447,-37.1134],"radius":42}],"entities":{"entry-17491":{"id":"entry-17491","kind":"mob","name":"Laughing Skull Rogue","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17151-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17256":{"id":"entry-17256","kind":"mob","name":"Hellfire Channeler","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30510","name":"Shadow Bolt Volley","spellId":30510,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5644,"damageMultiplier":0.62,"radius":8},{"id":"spell-30530","name":"Fear","spellId":30530,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5644,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-9865-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-17370":{"id":"entry-17370","kind":"mob","name":"Laughing Skull Enforcer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17149-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17380":{"id":"entry-17380","kind":"boss","name":"Broggok","title":"Dungeon Boss","hasLoot":true,"combat":{"level":63,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30917","name":"Poison Bolt","spellId":30917,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5452,"damageMultiplier":1.35},{"id":"spell-30916","name":"Poison Cloud","spellId":30916,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5452,"damageMultiplier":1.35},{"id":"spell-30913","name":"Slime Spray","spellId":30913,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5452,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-19372-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.05,"labelHeight":17.0335,"markerRadius":4.1136}}},"entry-17414":{"id":"entry-17414","kind":"mob","name":"Shadowmoon Technician","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30846","name":"Throw Proximity Bomb","spellId":30846,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6996,"damageMultiplier":1.12},{"id":"spell-40062","name":"Throw Dynamite","spellId":40062,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6996,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17147-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17381":{"id":"entry-17381","kind":"boss","name":"The Maker","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6568,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-18369-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0803,"labelHeight":6.8142,"markerRadius":3.579}}},"entry-17398":{"id":"entry-17398","kind":"mob","name":"Nascent Fel Orc","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-22427","name":"Concussion Blow","spellId":22427,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4085,"damageMultiplier":1.12},{"id":"spell-31900","name":"Stomp","spellId":31900,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4085,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-16332-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0101,"labelHeight":3.9201,"markerRadius":1.0118}}},"entry-18894":{"id":"entry-18894","kind":"mob","name":"Felguard Brute","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7270,"damageMultiplier":1.12},{"id":"spell-18072","name":"Uppercut","spellId":18072,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7270,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-9129-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0115,"labelHeight":6.5047,"markerRadius":0.9622}}},"entry-17397":{"id":"entry-17397","kind":"mob","name":"Shadowmoon Adept","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11978","name":"Kick","spellId":11978,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6366,"damageMultiplier":1.12},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6366,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17148-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17477":{"id":"entry-17477","kind":"mob","name":"Hellfire Imp","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15242","name":"Fireball","spellId":15242,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4727,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-16888-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7054,"markerRadius":0.65}}},"entry-17371":{"id":"entry-17371","kind":"mob","name":"Shadowmoon Warlock","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6663,"damageMultiplier":1.12},{"id":"spell-32197","name":"Corruption","spellId":32197,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6663,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17137-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17626":{"id":"entry-17626","kind":"mob","name":"Laughing Skull Legionnaire","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17150-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17395":{"id":"entry-17395","kind":"mob","name":"Shadowmoon Summoner","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15242","name":"Fireball","spellId":15242,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6208,"damageMultiplier":1.12},{"id":"spell-18399","name":"Flamestrike","spellId":18399,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6208,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17145-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17624":{"id":"entry-17624","kind":"mob","name":"Laughing Skull Warden","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17152-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17400":{"id":"entry-17400","kind":"mob","name":"Felguard Annihilator","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-15615","name":"Pummel","spellId":15615,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5191,"damageMultiplier":1.12},{"id":"spell-18072","name":"Uppercut","spellId":18072,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5191,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-18287-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0137,"labelHeight":7.8057,"markerRadius":1.1546}}},"entry-17653":{"id":"entry-17653","kind":"mob","name":"Shadowmoon Channeler","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12739","name":"Shadow Bolt","spellId":12739,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4879,"damageMultiplier":1.12},{"id":"spell-30937","name":"Mark of Shadow","spellId":30937,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4879,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17137-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17377":{"id":"entry-17377","kind":"boss","name":"Keli'dan the Breaker","title":"Dungeon Boss","hasLoot":true,"combat":{"level":63,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-40070","name":"Shadow Bolt Volley","spellId":40070,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6837,"damageMultiplier":0.82,"radius":11},{"id":"spell-30938","name":"Corruption","spellId":30938,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6837,"damageMultiplier":1.35},{"id":"spell-30940","name":"Burning Nova","spellId":30940,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6837,"damageMultiplier":0.82,"radius":11},{"id":"spell-33775","name":"Fire Nova","spellId":33775,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6837,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/blood-furnace/creatures/display-17153-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}}},"staticSpawns":[{"id":"creature-138089","entityId":"entry-17491","position":[-654.8187,64.0198,-45.9854],"yaw":0,"spawnMask":3},{"id":"creature-138106","entityId":"entry-17256","position":[-794.9077,-82.9463,-92.8796],"yaw":-1.36136,"spawnMask":3},{"id":"creature-138107","entityId":"entry-17256","position":[-760.8377,-82.9463,-38.2753],"yaw":-0.017453,"spawnMask":3},{"id":"creature-138108","entityId":"entry-17256","position":[-794.4887,-82.9463,17.0392],"yaw":-4.95674,"spawnMask":3},{"id":"creature-138109","entityId":"entry-17256","position":[-855.8547,-82.9463,-6.6764],"yaw":-3.71755,"spawnMask":3},{"id":"creature-138110","entityId":"entry-17256","position":[-856.1657,-82.9463,-69.8676],"yaw":-2.54818,"spawnMask":3},{"id":"creature-138111","entityId":"entry-17370","position":[-535.9279,14.2361,-26.7348],"yaw":-2.98451,"spawnMask":3},{"id":"creature-138112","entityId":"entry-17370","position":[-536.0256,14.2362,-44.4584],"yaw":-2.86234,"spawnMask":3},{"id":"creature-138113","entityId":"entry-17370","position":[-482.6351,13.1637,-7.8722],"yaw":-1.41372,"spawnMask":3},{"id":"creature-138114","entityId":"entry-17370","position":[-494.5423,13.1637,-5.733],"yaw":-1.62316,"spawnMask":3},{"id":"creature-138115","entityId":"entry-17380","position":[-942.0407,64.0516,47.0602],"yaw":-1.43117,"spawnMask":3},{"id":"creature-138116","entityId":"entry-17370","position":[-681.0387,64.1198,-29.7727],"yaw":-3.01942,"spawnMask":3},{"id":"creature-138117","entityId":"entry-17370","position":[-681.7617,64.1223,-42.5194],"yaw":-3.05433,"spawnMask":3},{"id":"creature-138122","entityId":"entry-17414","position":[-789.1297,64.0381,110.0633],"yaw":-3.14962,"spawnMask":3},{"id":"creature-138123","entityId":"entry-17381","position":[-813.8747,64.0372,186.7054],"yaw":-4.72121,"spawnMask":3},{"id":"creature-138124","entityId":"entry-17398","position":[-801.1827,66.1032,244.5314],"yaw":-5.01966,"spawnMask":3},{"id":"creature-138125","entityId":"entry-17398","position":[-831.7827,66.1043,251.1984],"yaw":-4.90708,"spawnMask":3},{"id":"creature-138126","entityId":"entry-17398","position":[-923.8627,66.1032,250.8734],"yaw":-4.639,"spawnMask":3},{"id":"creature-138127","entityId":"entry-17398","position":[-985.0977,64.0739,135.5304],"yaw":-3.19309,"spawnMask":3},{"id":"creature-138128","entityId":"entry-17398","position":[-985.6667,64.0741,131.9589],"yaw":-3.08941,"spawnMask":3},{"id":"creature-138129","entityId":"entry-17398","position":[-989.4287,64.081,131.7625],"yaw":-3.08941,"spawnMask":3},{"id":"creature-138130","entityId":"entry-17398","position":[-986.7807,64.0764,133.6672],"yaw":-3.08941,"spawnMask":3},{"id":"creature-138131","entityId":"entry-17398","position":[-899.9897,64.0721,130.7132],"yaw":-0.154642,"spawnMask":3},{"id":"creature-138132","entityId":"entry-17398","position":[-899.4327,64.0731,134.6217],"yaw":-0.141552,"spawnMask":3},{"id":"creature-138133","entityId":"entry-17398","position":[-895.9307,64.0796,132.1877],"yaw":-0.141552,"spawnMask":3},{"id":"creature-138134","entityId":"entry-17398","position":[-898.7857,64.0778,161.5154],"yaw":-6.1865,"spawnMask":3},{"id":"creature-138135","entityId":"entry-17398","position":[-899.1667,64.0749,165.4444],"yaw":-6.1865,"spawnMask":3},{"id":"creature-138136","entityId":"entry-17398","position":[-898.4397,64.0774,163.3354],"yaw":-0.00803471,"spawnMask":3},{"id":"creature-138137","entityId":"entry-17398","position":[-896.4037,64.079,161.9374],"yaw":-0.0185067,"spawnMask":3},{"id":"creature-138138","entityId":"entry-17398","position":[-893.8747,64.0823,164.0614],"yaw":-0.0185067,"spawnMask":3},{"id":"creature-138139","entityId":"entry-17398","position":[-982.3817,64.0656,165.1744],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138140","entityId":"entry-17398","position":[-982.4007,64.0659,162.7664],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138141","entityId":"entry-17398","position":[-986.4787,64.075,161.1724],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138142","entityId":"entry-17398","position":[-989.7467,64.0796,163.2104],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138143","entityId":"entry-17398","position":[-989.7287,64.0796,165.4784],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138144","entityId":"entry-17398","position":[-986.2037,64.0752,166.9744],"yaw":-3.14963,"spawnMask":3},{"id":"creature-138145","entityId":"entry-18894","position":[-942.4977,64.0291,-41.1105],"yaw":-0.09548,"spawnMask":3},{"id":"creature-138146","entityId":"entry-18894","position":[-942.2707,64.0333,-30.2186],"yaw":-0.09548,"spawnMask":3},{"id":"creature-138148","entityId":"entry-17491","position":[-593.7877,40.1928,-47.7277],"yaw":-0.930522,"spawnMask":3},{"id":"creature-138149","entityId":"entry-17491","position":[-664.1247,64.0227,-23.3264],"yaw":-3.98337,"spawnMask":3},{"id":"creature-138150","entityId":"entry-17397","position":[-473.8029,13.0859,-32.4694],"yaw":-5.36252,"spawnMask":3},{"id":"creature-138151","entityId":"entry-17397","position":[-477.6642,13.0876,-39.7037],"yaw":-1.99081,"spawnMask":3},{"id":"creature-138152","entityId":"entry-17477","position":[-475.8225,13.0876,-36.3139],"yaw":-2.09342,"spawnMask":3},{"id":"creature-138153","entityId":"entry-17397","position":[-493.7004,13.0912,-40.4143],"yaw":-1.28394,"spawnMask":3},{"id":"creature-138154","entityId":"entry-17397","position":[-497.0903,13.0923,-32.4526],"yaw":-4.24882,"spawnMask":3},{"id":"creature-138155","entityId":"entry-17477","position":[-495.6134,13.0923,-36.1691],"yaw":-1.02944,"spawnMask":3},{"id":"creature-138156","entityId":"entry-17397","position":[-516.3767,13.6347,-31.6241],"yaw":-4.36738,"spawnMask":3},{"id":"creature-138157","entityId":"entry-17397","position":[-514.3826,13.7129,-41.6891],"yaw":-1.48496,"spawnMask":3},{"id":"creature-138158","entityId":"entry-17477","position":[-514.9619,13.3675,-36.5637],"yaw":-4.63284,"spawnMask":3},{"id":"creature-138159","entityId":"entry-17491","position":[-720.7267,64.0321,-57.5166],"yaw":-1.88867,"spawnMask":3},{"id":"creature-138160","entityId":"entry-17397","position":[-718.2167,64.046,-42.6822],"yaw":-3.65189,"spawnMask":3},{"id":"creature-138161","entityId":"entry-17397","position":[-711.2917,64.0405,-47.1143],"yaw":-0.647748,"spawnMask":3},{"id":"creature-138162","entityId":"entry-17477","position":[-714.6447,64.0405,-45.0058],"yaw":-0.561355,"spawnMask":3},{"id":"creature-138163","entityId":"entry-17397","position":[-727.3787,64.0465,-15.601],"yaw":-5.05383,"spawnMask":3},{"id":"creature-138164","entityId":"entry-17397","position":[-729.5877,64.0368,-23.5395],"yaw":-1.81799,"spawnMask":3},{"id":"creature-138165","entityId":"entry-17477","position":[-728.5317,64.0416,-19.4889],"yaw":-1.82585,"spawnMask":3},{"id":"creature-138166","entityId":"entry-17397","position":[-711.2017,64.0428,-19.2002],"yaw":-5.19786,"spawnMask":3},{"id":"creature-138167","entityId":"entry-17397","position":[-714.6837,64.0408,-25.8],"yaw":-1.96987,"spawnMask":3},{"id":"creature-138168","entityId":"entry-17477","position":[-713.0757,64.0394,-22.4114],"yaw":-2.01394,"spawnMask":3},{"id":"creature-138170","entityId":"entry-17626","position":[-737.1727,61.3771,24.1077],"yaw":-4.23202,"spawnMask":3},{"id":"creature-138171","entityId":"entry-17370","position":[-745.2157,61.3743,18.4885],"yaw":-4.07258,"spawnMask":3},{"id":"creature-138172","entityId":"entry-17626","position":[-766.3787,62.5325,50.3317],"yaw":-3.8723,"spawnMask":3},{"id":"creature-138173","entityId":"entry-17370","position":[-773.4547,63.7533,41.7658],"yaw":-3.50552,"spawnMask":3},{"id":"creature-138175","entityId":"entry-17395","position":[-797.9657,64.0437,56.8157],"yaw":-0.656179,"spawnMask":3},{"id":"creature-138176","entityId":"entry-17397","position":[-800.6537,64.0382,62.6295],"yaw":-4.38997,"spawnMask":3},{"id":"creature-138177","entityId":"entry-17397","position":[-803.8887,64.0409,57.6102],"yaw":-2.67896,"spawnMask":3},{"id":"creature-138178","entityId":"entry-17395","position":[-824.9467,64.0383,49.9892],"yaw":-1.01391,"spawnMask":3},{"id":"creature-138179","entityId":"entry-17395","position":[-825.5447,64.0385,56.996],"yaw":-5.05086,"spawnMask":3},{"id":"creature-138180","entityId":"entry-17397","position":[-830.9237,64.0447,53.8934],"yaw":-3.2955,"spawnMask":3},{"id":"creature-138181","entityId":"entry-17491","position":[-801.2687,64.0386,41.2134],"yaw":-2.30511,"spawnMask":3},{"id":"creature-138182","entityId":"entry-17370","position":[-809.9207,64.0438,77.5346],"yaw":-4.92205,"spawnMask":3},{"id":"creature-138183","entityId":"entry-17370","position":[-817.7807,64.0429,77.7833],"yaw":-4.2576,"spawnMask":3},{"id":"creature-138184","entityId":"entry-17371","position":[-817.9727,64.0357,118.6493],"yaw":-1.77024,"spawnMask":3},{"id":"creature-138185","entityId":"entry-17414","position":[-814.7797,64.0357,125.8736],"yaw":-5.19851,"spawnMask":3},{"id":"creature-138186","entityId":"entry-17626","position":[-829.7797,64.0373,106.7349],"yaw":0,"spawnMask":3},{"id":"creature-138188","entityId":"entry-17414","position":[-790.9537,64.0425,152.2454],"yaw":-5.61477,"spawnMask":3},{"id":"creature-138189","entityId":"entry-17371","position":[-795.6237,64.0431,149.4084],"yaw":-2.61455,"spawnMask":3},{"id":"creature-138190","entityId":"entry-17414","position":[-833.2447,64.0418,145.3384],"yaw":-2.21792,"spawnMask":3},{"id":"creature-138191","entityId":"entry-17371","position":[-830.1237,64.0418,151.5404],"yaw":-5.16709,"spawnMask":3},{"id":"creature-138192","entityId":"entry-17626","position":[-842.8587,64.045,157.0644],"yaw":-4.06125,"spawnMask":3},{"id":"creature-138194","entityId":"entry-17414","position":[-803.8547,64.4726,237.8984],"yaw":-1.88412,"spawnMask":3},{"id":"creature-138197","entityId":"entry-17414","position":[-832.4107,65.5607,247.4084],"yaw":-1.6879,"spawnMask":3},{"id":"creature-138198","entityId":"entry-17414","position":[-923.0157,65.8606,247.4114],"yaw":-1.34468,"spawnMask":3},{"id":"creature-138199","entityId":"entry-17414","position":[-833.6167,64.0259,242.7644],"yaw":-1.74602,"spawnMask":3},{"id":"creature-138200","entityId":"entry-17491","position":[-967.2067,64.037,228.9064],"yaw":-3.42991,"spawnMask":3},{"id":"creature-138201","entityId":"entry-17371","position":[-858.6847,64.0213,243.1324],"yaw":-5.36434,"spawnMask":3},{"id":"creature-138202","entityId":"entry-17398","position":[-866.4457,64.0196,241.1224],"yaw":-3.36158,"spawnMask":3},{"id":"creature-138203","entityId":"entry-17395","position":[-860.3407,64.0202,233.6664],"yaw":-1.15697,"spawnMask":3},{"id":"creature-138204","entityId":"entry-17371","position":[-899.5187,64.0231,244.3824],"yaw":-3.55951,"spawnMask":3},{"id":"creature-138205","entityId":"entry-17398","position":[-898.0237,64.0232,234.2774],"yaw":-2.28952,"spawnMask":3},{"id":"creature-138206","entityId":"entry-17395","position":[-890.1517,64.0191,239.5694],"yaw":-0.0770466,"spawnMask":3},{"id":"creature-138209","entityId":"entry-17414","position":[-935.1327,64.0271,239.6534],"yaw":-1.01795,"spawnMask":3},{"id":"creature-138210","entityId":"entry-17414","position":[-813.8767,64.0405,237.2824],"yaw":-1.09492,"spawnMask":3},{"id":"creature-138211","entityId":"entry-17624","position":[-943.1337,64.0367,167.7924],"yaw":-3.16198,"spawnMask":3},{"id":"creature-138212","entityId":"entry-17626","position":[-945.3187,64.0362,165.8784],"yaw":-3.07559,"spawnMask":3},{"id":"creature-138214","entityId":"entry-17395","position":[-943.8257,64.0367,148.1722],"yaw":-4.44777,"spawnMask":3},{"id":"creature-138215","entityId":"entry-17414","position":[-939.0217,64.0369,143.4701],"yaw":-0.545102,"spawnMask":3},{"id":"creature-138216","entityId":"entry-17414","position":[-944.7727,64.0369,141.5909],"yaw":-1.89206,"spawnMask":3},{"id":"creature-138217","entityId":"entry-17414","position":[-969.1587,64.0333,152.2244],"yaw":-5.27398,"spawnMask":3},{"id":"creature-138218","entityId":"entry-17414","position":[-966.6027,64.0435,147.1855],"yaw":-6.09707,"spawnMask":3},{"id":"creature-138219","entityId":"entry-17414","position":[-970.1847,64.0447,140.7842],"yaw":-1.14828,"spawnMask":3},{"id":"creature-138220","entityId":"entry-17414","position":[-956.1137,64.0344,114.8879],"yaw":-5.036,"spawnMask":3},{"id":"creature-138221","entityId":"entry-17414","position":[-962.9957,64.0315,114.7912],"yaw":-3.98357,"spawnMask":3},{"id":"creature-138222","entityId":"entry-17371","position":[-959.3647,64.0314,108.3186],"yaw":-1.58025,"spawnMask":3},{"id":"creature-138223","entityId":"entry-17371","position":[-923.9367,64.031,113.6538],"yaw":-5.1656,"spawnMask":3},{"id":"creature-138224","entityId":"entry-17371","position":[-928.9417,64.0327,105.8544],"yaw":-1.84965,"spawnMask":3},{"id":"creature-138225","entityId":"entry-17414","position":[-932.1267,64.0338,112.5471],"yaw":-3.54218,"spawnMask":3},{"id":"creature-138226","entityId":"entry-17491","position":[-920.3047,63.9739,30.6593],"yaw":-0.450845,"spawnMask":3},{"id":"creature-138227","entityId":"entry-17371","position":[-974.6377,63.9752,66.1742],"yaw":-4.54905,"spawnMask":3},{"id":"creature-138228","entityId":"entry-17371","position":[-981.1647,63.9642,56.4786],"yaw":-2.87616,"spawnMask":3},{"id":"creature-138229","entityId":"entry-17477","position":[-976.2227,63.9652,54.4031],"yaw":-1.96038,"spawnMask":3},{"id":"creature-138230","entityId":"entry-17477","position":[-976.8727,63.9707,60.5858],"yaw":-1.13336,"spawnMask":3},{"id":"creature-138231","entityId":"entry-17477","position":[-972.4647,63.9707,57.5235],"yaw":-1.43024,"spawnMask":3},{"id":"creature-138232","entityId":"entry-17477","position":[-970.9067,63.9722,62.8626],"yaw":-6.25258,"spawnMask":3},{"id":"creature-138233","entityId":"entry-18894","position":[-949.6097,63.9738,28.9768],"yaw":-5.18053,"spawnMask":3},{"id":"creature-138236","entityId":"entry-18894","position":[-962.1217,63.967,-17.4395],"yaw":0,"spawnMask":3},{"id":"creature-138238","entityId":"entry-17371","position":[-911.3797,64.0383,-35.0163],"yaw":-0.059993,"spawnMask":3},{"id":"creature-138239","entityId":"entry-17477","position":[-920.5017,64.0462,-42.071],"yaw":-1.93317,"spawnMask":3},{"id":"creature-138240","entityId":"entry-17477","position":[-919.3607,64.0447,-29.8773],"yaw":-1.5821,"spawnMask":3},{"id":"creature-138241","entityId":"entry-17477","position":[-914.6157,64.0384,-21.0117],"yaw":-4.99622,"spawnMask":3},{"id":"creature-138242","entityId":"entry-17477","position":[-899.6487,64.0386,-35.0816],"yaw":-5.1156,"spawnMask":3},{"id":"creature-138243","entityId":"entry-17477","position":[-906.7857,64.0423,-39.6351],"yaw":-0.206074,"spawnMask":3},{"id":"creature-138244","entityId":"entry-17477","position":[-909.9597,64.0404,-47.506],"yaw":-1.21688,"spawnMask":3},{"id":"creature-138245","entityId":"entry-17491","position":[-890.8977,64.04,-13.6177],"yaw":-5.54913,"spawnMask":3},{"id":"creature-138246","entityId":"entry-17477","position":[-906.6657,64.0449,-28.0944],"yaw":-5.67087,"spawnMask":3},{"id":"creature-138247","entityId":"entry-17400","position":[-842.0037,28.8879,-114.5616],"yaw":-6.16881,"spawnMask":3},{"id":"creature-138248","entityId":"entry-17400","position":[-841.8987,28.872,-126.6816],"yaw":-0.0701911,"spawnMask":3},{"id":"creature-138249","entityId":"entry-17400","position":[-820.3357,28.919,-143.3626],"yaw":-1.51768,"spawnMask":3},{"id":"creature-138250","entityId":"entry-17400","position":[-811.9827,28.9139,-142.6456],"yaw":-1.49412,"spawnMask":3},{"id":"creature-138251","entityId":"entry-17371","position":[-799.1007,28.9135,-126.0356],"yaw":-6.21829,"spawnMask":3},{"id":"creature-138252","entityId":"entry-17400","position":[-798.8207,28.9146,-130.4926],"yaw":-6.20258,"spawnMask":3},{"id":"creature-138253","entityId":"entry-17400","position":[-800.0967,28.9131,-121.7286],"yaw":-6.20651,"spawnMask":3},{"id":"creature-138254","entityId":"entry-17371","position":[-816.2887,28.915,-140.2216],"yaw":-1.50511,"spawnMask":3},{"id":"creature-138519","entityId":"entry-17653","position":[-802.9787,29.819,-59.9876],"yaw":-1.25664,"spawnMask":3},{"id":"creature-138520","entityId":"entry-17653","position":[-832.5527,29.7815,-25.5665],"yaw":-3.59538,"spawnMask":3},{"id":"creature-138521","entityId":"entry-17653","position":[-830.2887,29.8529,-54.7416],"yaw":-2.35619,"spawnMask":3},{"id":"creature-138522","entityId":"entry-17653","position":[-788.6927,29.97,-37.8571],"yaw":-0.15708,"spawnMask":3},{"id":"creature-138523","entityId":"entry-17653","position":[-807.4547,29.7856,-14.7227],"yaw":-4.88692,"spawnMask":3},{"id":"creature-138524","entityId":"entry-17377","position":[-813.2077,29.8447,-37.1134],"yaw":-3.59538,"spawnMask":3}],"roamingPacks":[{"id":"patrol-138121","name":"Shadowmoon Technician Patrol","speed":1.15,"pathId":856820,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-834.6607,64.0421,134.6303],[-834.6207,64.0395,159.2404],[-839.5417,64.0395,160.2634],[-839.5417,64.0395,160.2634],[-833.9887,64.042,156.0964],[-836.6747,64.0426,134.7111],[-839.7267,64.0433,134.698],[-839.7267,64.0433,134.698],[-839.7267,64.0433,134.698]],"members":[{"id":"member","entityId":"entry-17414","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138169","name":"Shadowmoon Warlock Patrol","speed":1.15,"pathId":1381690,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-733.9337,64.0443,-17.7006],[-732.9497,64.0372,-36.3015],[-706.4697,64.0078,-35.6876],[-733.0817,64.0383,-36.4216]],"members":[{"id":"member","entityId":"entry-17371","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138174","name":"Shadowmoon Warlock Patrol","speed":1.15,"pathId":1381740,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-815.1217,64.0377,44.3035],[-813.9847,64.0377,72.9459]],"members":[{"id":"member","entityId":"entry-17371","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138187","name":"Laughing Skull Warden Patrol","speed":1.15,"pathId":1381870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-813.9597,64.0352,103.7349],[-827.6637,64.036,108.8214],[-829.7737,64.0378,113.2107],[-831.5867,64.0404,123.7601],[-832.3157,64.0412,134.7215],[-829.5167,64.0412,143.1723],[-825.9077,64.0412,147.95],[-820.8687,64.0398,151.0514],[-815.5047,64.037,151.8804],[-808.9847,64.0374,150.0294],[-804.2927,64.038,147.4529],[-800.6637,64.0393,142.7426],[-799.2237,64.0396,138.4236],[-798.4597,64.0396,132.1006],[-799.2177,64.0396,121.4953],[-801.7467,64.0368,111.485],[-804.0327,64.0354,107.6021],[-809.4247,64.0354,104.2855]],"members":[{"id":"member","entityId":"entry-17624","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138193","name":"Laughing Skull Rogue Patrol","speed":1.15,"pathId":1381930,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-786.9707,64.0292,231.0614],[-793.4147,64.0383,214.8794]],"members":[{"id":"member","entityId":"entry-17491","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138195","name":"Laughing Skull Enforcer Patrol","speed":1.15,"pathId":1381950,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-859.1477,64.0199,240.1414],[-815.7257,64.0369,234.1624]],"members":[{"id":"member","entityId":"entry-17370","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138196","name":"Laughing Skull Enforcer Patrol","speed":1.15,"pathId":1381960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-859.1477,64.0199,236.1414],[-815.7257,64.0369,230.1624]],"members":[{"id":"member","entityId":"entry-17370","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138207","name":"Laughing Skull Enforcer Patrol","speed":1.15,"pathId":1382070,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-902.7307,64.02,240.6034],[-953.3617,64.0408,228.5634]],"members":[{"id":"member","entityId":"entry-17370","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138208","name":"Laughing Skull Enforcer Patrol","speed":1.15,"pathId":1382080,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-902.0187,64.02,236.5574],[-952.8757,64.0418,225.5524]],"members":[{"id":"member","entityId":"entry-17370","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138213","name":"Laughing Skull Legionnaire Patrol","speed":1.15,"pathId":1382130,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-942.9657,64.0417,168.2984],[-934.7577,64.0417,166.8514],[-927.5387,64.0417,162.6834],[-922.1817,64.0417,156.2984],[-919.3307,64.0417,148.4662],[-919.3307,64.0417,140.1311],[-922.1817,64.0417,132.2987],[-927.5387,64.0417,125.9136],[-934.7577,64.0417,121.7461],[-942.9657,64.0417,120.2987],[-951.1747,64.0417,121.7461],[-958.3927,64.0417,125.9136],[-963.7507,64.0417,132.2987],[-966.6017,64.0417,140.1311],[-966.6017,64.0417,148.4662],[-963.7507,64.0417,156.2984],[-958.3927,64.0417,162.6834],[-951.1747,64.0417,166.8514]],"members":[{"id":"member","entityId":"entry-17626","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138234","name":"Shadowmoon Warlock Patrol","speed":1.15,"pathId":1382340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-962.5347,63.9636,-9.6459],[-961.5347,63.9636,-5.7829],[-952.6047,63.9749,28.9768],[-953.5947,63.9749,25.1138]],"members":[{"id":"member","entityId":"entry-17371","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138235","name":"Shadowmoon Warlock Patrol","speed":1.15,"pathId":1382350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-969.1347,63.9817,-18.2572],[-973.6467,63.9817,-20.8619],[-976.9947,63.9817,-24.8526],[-978.7767,63.9817,-29.7479],[-978.7767,63.9817,-34.9573],[-976.9947,63.9817,-39.8526],[-973.6467,63.9817,-43.8433],[-969.1347,63.9817,-46.448],[-964.0047,63.9817,-47.3526],[-958.8747,63.9817,-46.448],[-954.3627,63.9817,-43.8433],[-951.0147,63.9817,-39.8526],[-949.2327,63.9817,-34.9573],[-949.2327,63.9817,-29.7479],[-951.0147,63.9817,-24.8526],[-954.3627,63.9817,-20.8619],[-958.8747,63.9817,-18.2572],[-964.0047,63.9817,-17.3526]],"members":[{"id":"member","entityId":"entry-17371","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138237","name":"Laughing Skull Rogue Patrol","speed":1.15,"pathId":1382370,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-982.7087,63.972,20.821],[-975.6367,63.9702,14.6243],[-965.9007,63.9712,9.6985],[-955.0437,63.9862,6.0876],[-948.5507,63.9532,-3.2536],[-951.0107,63.9734,-21.8439],[-950.9867,64.0034,-30.6799],[-952.4697,63.9713,-39.3548],[-960.4317,63.9761,-43.7853],[-969.3967,63.9726,-43.8879],[-960.4317,63.9761,-43.7853],[-952.4697,63.9713,-39.3548],[-950.9867,64.0034,-30.6799],[-951.0107,63.9734,-21.8439],[-948.5507,63.9532,-3.2536],[-955.0437,63.9862,6.0876],[-965.9007,63.9712,9.6985],[-975.6367,63.9702,14.6243]],"members":[{"id":"member","entityId":"entry-17491","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-138123","name":"The Maker","position":[-813.8747,64.0372,186.7054]},{"id":"creature-138115","name":"Broggok","position":[-942.0407,64.0516,47.0602]},{"id":"creature-138524","name":"Keli'dan the Breaker","position":[-813.2077,29.8447,-37.1134]}],"objectiveOrder":[{"id":"creature-138123","name":"The Maker","position":[-813.8747,64.0372,186.7054]},{"id":"creature-138115","name":"Broggok","position":[-942.0407,64.0516,47.0602]},{"id":"creature-138524","name":"Keli'dan the Breaker","position":[-813.2077,29.8447,-37.1134]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22220,"id":181713,"map":542,"orientation":-2.49582,"phaseMask":1,"position_x":275.211,"position_y":-87.2234,"position_z":-137.451,"rotation0":0,"rotation1":0,"rotation2":-0.948324,"rotation3":0.317305,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22221,"id":181713,"map":542,"orientation":0.017453,"phaseMask":1,"position_x":367.855,"position_y":-56.3836,"position_z":-137.359,"rotation0":0,"rotation1":0,"rotation2":0.00872639,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22222,"id":181713,"map":542,"orientation":2.44346,"phaseMask":1,"position_x":308.466,"position_y":-140.398,"position_z":-137.302,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.342021,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22223,"id":181713,"map":542,"orientation":-1.20428,"phaseMask":1,"position_x":308.112,"position_y":-33.208,"position_z":-137.451,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22224,"id":181713,"map":542,"orientation":1.22173,"phaseMask":1,"position_x":368.347,"position_y":-118.024,"position_z":-137.451,"rotation0":0,"rotation1":0,"rotation2":0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22252,"id":181766,"map":542,"orientation":3.08943,"phaseMask":1,"position_x":-2.96045,"position_y":-115.525,"position_z":-29.8004,"rotation0":-0.001138,"rotation1":-0.043605,"rotation2":0.998708,"rotation3":0.026054,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22289,"id":181811,"map":542,"orientation":3.14159,"phaseMask":1,"position_x":327.221,"position_y":34.7391,"position_z":25.2633,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":181,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22290,"id":181812,"map":542,"orientation":3.14159,"phaseMask":1,"position_x":327.221,"position_y":149.84,"position_z":23.8318,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22291,"id":181813,"map":542,"orientation":3.14159,"phaseMask":1,"position_x":365.545,"position_y":69.3179,"position_z":11.1708,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22292,"id":181814,"map":542,"orientation":3.14159,"phaseMask":1,"position_x":366.847,"position_y":100.435,"position_z":11.1708,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22293,"id":181815,"map":542,"orientation":-0.022321,"phaseMask":1,"position_x":287.979,"position_y":99.5641,"position_z":11.1708,"rotation0":0.003783,"rotation1":-0.000667,"rotation2":-0.011158,"rotation3":0.99993,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22294,"id":181816,"map":542,"orientation":-0.022321,"phaseMask":1,"position_x":288.815,"position_y":68.8318,"position_z":11.5749,"rotation0":0.003783,"rotation1":-0.000667,"rotation2":-0.011158,"rotation3":0.99993,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22295,"id":181817,"map":542,"orientation":3.11927,"phaseMask":1,"position_x":495.532,"position_y":84.4274,"position_z":11.1708,"rotation0":0.000667,"rotation1":0.003783,"rotation2":0.99993,"rotation3":0.011158,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22296,"id":181818,"map":542,"orientation":0,"phaseMask":1,"position_x":416.665,"position_y":83.5567,"position_z":11.1708,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22297,"id":181819,"map":542,"orientation":0,"phaseMask":1,"position_x":456.291,"position_y":34.1513,"position_z":23.8317,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22298,"id":181820,"map":542,"orientation":3.11927,"phaseMask":1,"position_x":494.697,"position_y":115.16,"position_z":11.5749,"rotation0":0.000667,"rotation1":0.003783,"rotation2":0.99993,"rotation3":0.011158,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22299,"id":181821,"map":542,"orientation":0,"phaseMask":1,"position_x":417.967,"position_y":114.674,"position_z":11.1708,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22300,"id":181822,"map":542,"orientation":0,"phaseMask":1,"position_x":455.753,"position_y":149.726,"position_z":24.3749,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":181,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22301,"id":181823,"map":542,"orientation":3.14159,"phaseMask":1,"position_x":260.408,"position_y":-125.812,"position_z":-10.3249,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":53,"areaId":0,"guid":22377,"id":181921,"map":542,"orientation":-2.53073,"phaseMask":1,"position_x":371.722,"position_y":-47.6372,"position_z":-25.8508,"rotation0":0,"rotation1":0,"rotation2":-0.953717,"rotation3":0.300705,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":53,"areaId":0,"guid":22378,"id":181922,"map":542,"orientation":2.70526,"phaseMask":1,"position_x":260.167,"position_y":-46.2649,"position_z":-25.8508,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":53,"areaId":0,"guid":22379,"id":181923,"map":542,"orientation":-0.872664,"phaseMask":1,"position_x":386.239,"position_y":-138.305,"position_z":-25.7111,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22380,"id":181924,"map":542,"orientation":-1.65806,"phaseMask":1,"position_x":292.173,"position_y":-143.163,"position_z":-25.4868,"rotation0":0,"rotation1":0,"rotation2":-0.737276,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22381,"id":181925,"map":542,"orientation":-2.53073,"phaseMask":1,"position_x":266.452,"position_y":-104.919,"position_z":-25.3138,"rotation0":0,"rotation1":0,"rotation2":-0.953717,"rotation3":0.300705,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22382,"id":181926,"map":542,"orientation":-2.53073,"phaseMask":1,"position_x":324.071,"position_y":-23.2872,"position_z":-25.5655,"rotation0":0,"rotation1":0,"rotation2":-0.953717,"rotation3":0.300705,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22383,"id":181927,"map":542,"orientation":2.53073,"phaseMask":1,"position_x":386.689,"position_y":-101.665,"position_z":-25.2719,"rotation0":0,"rotation1":0,"rotation2":0.953717,"rotation3":0.300705,"spawnMask":3,"spawntimesecs":181,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150012,"id":184175,"map":542,"orientation":4.3789,"phaseMask":1,"position_x":-1.196,"position_y":24.25,"position_z":-44.7943,"rotation0":0,"rotation1":0,"rotation2":0.81466,"rotation3":-0.579939,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150013,"id":184176,"map":542,"orientation":4.3789,"phaseMask":1,"position_x":-1.196,"position_y":24.25,"position_z":-44.7943,"rotation0":0,"rotation1":0,"rotation2":0.81466,"rotation3":-0.579939,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150441,"id":181982,"map":542,"orientation":4.70899,"phaseMask":1,"position_x":456.555,"position_y":54.3522,"position_z":9.61573,"rotation0":0,"rotation1":0,"rotation2":0.708307,"rotation3":-0.705904,"spawnMask":3,"spawntimesecs":600,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/HellfireDemon":"c0188b1dd4af5646be054284fd9fd7604bd35172e5beede3f1e75c584474404e","patch/World/maps/HellfireDemon":"aad89805d175327d07ce6358da7bbf32051b4d860a16ed80a919b8cd7fbb32ea"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/blood-furnace/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["17/17 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"hellfire-ramparts","title":"Hellfire Citadel: Ramparts","mapId":543,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[58,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Hellfire Citadel: Ramparts","theme":"Instanced dungeon","summary":"Fight through Hellfire Citadel: Ramparts, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Hellfire Citadel: Ramparts...","unchartedAreaName":"Uncharted Hellfire Citadel: Ramparts","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":478.2291},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/543-hellfirerampart/visual.glb","checksum":"72b36dedf424971bbd3db1ed1c3ce8306e5d79e68304a1eb6aeb611dc3592fc3","size":1861480,"triangleCount":29586}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/543-hellfirerampart/collision.glb","checksum":"2e0a776a82e3d43e9dfbc29329bbeb1f864aa2deaa5c88977a180ac2e6abbf67","size":349400,"triangleCount":20564}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/543-hellfirerampart/navigation.glb","checksum":"f3c70d131401f432288971bb1abbd7458d3dd22ab419f8308e1e58126f914c27","size":144020,"triangleCount":10840}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-204.6063,109.3777,-450.8058],"max":[150.4266,185.509,213.4013]},"entrance":{"name":"Hellfire Citadel: Ramparts Entrance","footPosition":[73.2937,140.4777,-198.0358],"forward":[-0.24566890559041665,0,0.9693537996139526],"yaw":-0.2482096853553132},"areas":[{"id":"entrance","name":"Hellfire Citadel: Ramparts Entrance","center":[73.2937,140.4777,-198.0358],"radius":35},{"id":"area-watchkeeper-gargolmar","name":"Watchkeeper Gargolmar's Encounter","center":[-94.7563,140.7283,-308.6958],"radius":42},{"id":"area-omor-the-unscarred","name":"Omor the Unscarred's Encounter","center":[-159.6063,161.6601,-120.7458],"radius":42}],"entities":{"entry-17259":{"id":"entry-17259","kind":"mob","name":"Bonechewer Hungerer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-16244","name":"Demoralizing Shout","spellId":16244,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6162,"damageMultiplier":1.12},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6162,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17052-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17264":{"id":"entry-17264","kind":"mob","name":"Bonechewer Ravener","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-30621","name":"Kidney Shot","spellId":30621,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5615,"damageMultiplier":1.12},{"id":"spell-30798","name":"Empowered Stormstrike","spellId":30798,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5615,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17049-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17269":{"id":"entry-17269","kind":"mob","name":"Bleeding Hollow Darkcaster","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36808","name":"Rain of Fire","spellId":36808,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5120,"damageMultiplier":0.62,"radius":8},{"id":"spell-15241","name":"Scorch","spellId":15241,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5120,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17044-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17270":{"id":"entry-17270","kind":"mob","name":"Bleeding Hollow Archer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-30614","name":"Aimed Shot","spellId":30614,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6273,"damageMultiplier":1.12},{"id":"spell-18651","name":"Multi-Shot","spellId":18651,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6273,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17050-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17271":{"id":"entry-17271","kind":"mob","name":"Bonechewer Destroyer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10101","name":"Knock Away","spellId":10101,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7137,"damageMultiplier":1.12},{"id":"spell-16856","name":"Mortal Strike","spellId":16856,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7137,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17043-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0087,"labelHeight":3.777,"markerRadius":0.8769}}},"entry-17280":{"id":"entry-17280","kind":"mob","name":"Shattered Hand Warhound","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.434272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-30639","name":"Carnivorous Bite","spellId":30639,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5697,"damageMultiplier":1.12},{"id":"spell-30636","name":"Furious Howl","spellId":30636,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5697,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/acebaa605ea524a1df51d8ae425890737c096a76fffc27f17d3790073d1a3b7f.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.776,"markerRadius":1.7182}}},"entry-17281":{"id":"entry-17281","kind":"mob","name":"Bonechewer Ripper","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-18501","name":"Enrage","spellId":18501,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":7465,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-18501","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17732-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.6834,"markerRadius":0.6745}}},"entry-17306":{"id":"entry-17306","kind":"boss","name":"Watchkeeper Gargolmar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.1745920000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-32154","name":"Overpower","spellId":32154,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7030,"damageMultiplier":1.35},{"id":"spell-30641","name":"Mortal Wound","spellId":30641,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7030,"damageMultiplier":1.35},{"id":"spell-34645","name":"Surge","spellId":34645,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7030,"damageMultiplier":1.35},{"id":"spell-22857","name":"Retaliation","spellId":22857,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-18236-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.4989,"markerRadius":1.4563}}},"entry-17308":{"id":"entry-17308","kind":"boss","name":"Omor the Unscarred","title":"Dungeon Boss","hasLoot":true,"combat":{"level":62,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7211,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-18237-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":13.2513,"markerRadius":3.6015}}},"entry-17309":{"id":"entry-17309","kind":"mob","name":"Hellfire Watcher","combat":{"level":59,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-8362","name":"Renew","spellId":8362,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5757,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-14032","name":"Shadow Word: Pain","spellId":14032,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5757,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17051-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.1501,"markerRadius":0.8094}}},"entry-17455":{"id":"entry-17455","kind":"mob","name":"Bonechewer Beastmaster","combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-30635","name":"Battle Shout","spellId":30635,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6217,"damageMultiplier":1.12},{"id":"spell-10966","name":"Uppercut","spellId":10966,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6217,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-16583-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-17478":{"id":"entry-17478","kind":"mob","name":"Bleeding Hollow Scryer","combat":{"level":61,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-30615","name":"Fear","spellId":30615,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6244,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}},{"id":"spell-30659","name":"Fel Infusion","spellId":30659,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6244,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/hellfire-ramparts/creatures/display-17048-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}}},"staticSpawns":[{"id":"creature-202607","entityId":"entry-17259","position":[-75.8663,140.8568,-398.2358],"yaw":-2.16421,"spawnMask":3},{"id":"creature-202608","entityId":"entry-17259","position":[-74.2463,140.8692,-305.2558],"yaw":-0.680678,"spawnMask":3},{"id":"creature-202609","entityId":"entry-17259","position":[-65.0563,140.8701,-294.1058],"yaw":-0.488692,"spawnMask":3},{"id":"creature-202610","entityId":"entry-17259","position":[-64.1163,140.804,-375.5958],"yaw":-1.84457,"spawnMask":3},{"id":"creature-202611","entityId":"entry-17259","position":[-48.5163,140.8695,-361.5858],"yaw":-3.80482,"spawnMask":3},{"id":"creature-202612","entityId":"entry-17259","position":[-29.7563,140.8764,-242.4558],"yaw":-0.855211,"spawnMask":3},{"id":"creature-202613","entityId":"entry-17259","position":[-23.9263,140.8127,-258.8058],"yaw":-5.18818,"spawnMask":3},{"id":"creature-202617","entityId":"entry-17259","position":[3.5237,140.8489,-160.9458],"yaw":-6.14356,"spawnMask":3},{"id":"creature-202618","entityId":"entry-17259","position":[4.7837,141.173,-169.2458],"yaw":-6.10865,"spawnMask":3},{"id":"creature-202619","entityId":"entry-17259","position":[11.2537,140.9118,-345.3558],"yaw":-3.50811,"spawnMask":3},{"id":"creature-202620","entityId":"entry-17259","position":[13.7837,164.0347,-254.0558],"yaw":-1.69297,"spawnMask":3},{"id":"creature-202621","entityId":"entry-17259","position":[44.7937,141.3271,-179.8958],"yaw":-3.49066,"spawnMask":3},{"id":"creature-202622","entityId":"entry-17259","position":[47.6237,140.9471,-172.0758],"yaw":-3.63028,"spawnMask":3},{"id":"creature-202626","entityId":"entry-17264","position":[-109.0663,140.7272,-396.6458],"yaw":-2.1293,"spawnMask":3},{"id":"creature-202632","entityId":"entry-17269","position":[-119.5063,164.0097,-150.2858],"yaw":-3.54302,"spawnMask":3},{"id":"creature-202633","entityId":"entry-17269","position":[-113.9863,163.7913,-139.0758],"yaw":-3.68264,"spawnMask":3},{"id":"creature-202634","entityId":"entry-17269","position":[-102.8763,140.7724,-350.8958],"yaw":-3.52557,"spawnMask":3},{"id":"creature-202635","entityId":"entry-17269","position":[-102.0863,140.7687,-357.0858],"yaw":-1.41372,"spawnMask":3},{"id":"creature-202636","entityId":"entry-17269","position":[-84.2163,140.8297,-405.8058],"yaw":-0.994838,"spawnMask":3},{"id":"creature-202637","entityId":"entry-17269","position":[-40.8763,140.8036,-215.7758],"yaw":-2.40855,"spawnMask":3},{"id":"creature-202638","entityId":"entry-17269","position":[-13.1563,141.2587,-188.9058],"yaw":-0.488692,"spawnMask":3},{"id":"creature-202639","entityId":"entry-17269","position":[-8.7563,141.4342,-184.4458],"yaw":-1.0472,"spawnMask":3},{"id":"creature-202640","entityId":"entry-17269","position":[1.7937,140.9046,-352.9758],"yaw":-0.0698132,"spawnMask":3},{"id":"creature-202641","entityId":"entry-17269","position":[6.0637,140.9091,-352.5058],"yaw":-1.27409,"spawnMask":3},{"id":"creature-202642","entityId":"entry-17269","position":[6.1637,164.0446,-201.9058],"yaw":-4.95674,"spawnMask":3},{"id":"creature-202643","entityId":"entry-17269","position":[16.6937,164.0325,-254.3858],"yaw":-1.18682,"spawnMask":3},{"id":"creature-202644","entityId":"entry-17269","position":[16.7037,164.0578,-200.1758],"yaw":-3.9968,"spawnMask":3},{"id":"creature-202645","entityId":"entry-17270","position":[-133.6663,140.7091,-327.3458],"yaw":-0.0349066,"spawnMask":3},{"id":"creature-202646","entityId":"entry-17270","position":[-133.3963,140.714,-341.6758],"yaw":-3.08923,"spawnMask":3},{"id":"creature-202647","entityId":"entry-17270","position":[-43.5863,140.7855,-226.1858],"yaw":-4.10152,"spawnMask":3},{"id":"creature-202648","entityId":"entry-17270","position":[-39.7263,139.7303,-189.7958],"yaw":-2.02458,"spawnMask":3},{"id":"creature-202649","entityId":"entry-17270","position":[-35.9663,140.2809,-196.0358],"yaw":-3.52557,"spawnMask":3},{"id":"creature-202650","entityId":"entry-17270","position":[-11.8963,163.9847,-216.8858],"yaw":-3.29867,"spawnMask":3},{"id":"creature-202651","entityId":"entry-17270","position":[-11.0263,163.9821,-211.3458],"yaw":-3.1765,"spawnMask":3},{"id":"creature-202652","entityId":"entry-17270","position":[32.3037,164.0603,-216.4858],"yaw":-6.23083,"spawnMask":3},{"id":"creature-202653","entityId":"entry-17270","position":[35.6937,164.0599,-224.5558],"yaw":-5.34071,"spawnMask":3},{"id":"creature-202654","entityId":"entry-17271","position":[-132.1563,140.7128,-335.3658],"yaw":-2.82743,"spawnMask":3},{"id":"creature-202655","entityId":"entry-17271","position":[-126.3363,140.7192,-374.7058],"yaw":-2.98451,"spawnMask":3},{"id":"creature-202656","entityId":"entry-17271","position":[-122.5463,140.7198,-380.8258],"yaw":-2.42601,"spawnMask":3},{"id":"creature-202657","entityId":"entry-17271","position":[-97.8263,140.7774,-353.9958],"yaw":-6.02139,"spawnMask":3},{"id":"creature-202658","entityId":"entry-17271","position":[-82.0963,140.8284,-398.6258],"yaw":-0.715585,"spawnMask":3},{"id":"creature-202659","entityId":"entry-17271","position":[-39.2163,140.8193,-222.6958],"yaw":-3.35103,"spawnMask":3},{"id":"creature-202660","entityId":"entry-17271","position":[-36.9763,139.9949,-192.7358],"yaw":-2.51327,"spawnMask":3},{"id":"creature-202661","entityId":"entry-17271","position":[-22.6263,164.3352,-241.3258],"yaw":-5.49779,"spawnMask":3},{"id":"creature-202662","entityId":"entry-17271","position":[-16.9763,164.6954,-250.1558],"yaw":-5.68977,"spawnMask":3},{"id":"creature-202663","entityId":"entry-17271","position":[-12.3363,141.3108,-185.2058],"yaw":-0.785398,"spawnMask":3},{"id":"creature-202664","entityId":"entry-17271","position":[-11.1863,140.8686,-300.9058],"yaw":-0.802851,"spawnMask":3},{"id":"creature-202665","entityId":"entry-17271","position":[-5.1663,140.8781,-302.0658],"yaw":-1.67552,"spawnMask":3},{"id":"creature-202666","entityId":"entry-17271","position":[-3.7363,163.9489,-210.9758],"yaw":-1.4698,"spawnMask":3},{"id":"creature-202667","entityId":"entry-17271","position":[-1.4263,140.9093,-359.5758],"yaw":-6.07375,"spawnMask":3},{"id":"creature-202668","entityId":"entry-17271","position":[15.7937,164.0592,-250.5858],"yaw":-4.7473,"spawnMask":3},{"id":"creature-202669","entityId":"entry-17271","position":[32.6637,163.978,-223.1358],"yaw":-4.24507,"spawnMask":3},{"id":"creature-202670","entityId":"entry-17280","position":[-127.5963,140.7344,-352.9058],"yaw":-3.4383,"spawnMask":3},{"id":"creature-202671","entityId":"entry-17280","position":[-126.8563,140.7328,-346.9858],"yaw":-2.96706,"spawnMask":3},{"id":"creature-202672","entityId":"entry-17280","position":[-108.1463,140.7329,-390.7058],"yaw":-2.1293,"spawnMask":3},{"id":"creature-202673","entityId":"entry-17280","position":[-103.9863,140.7357,-395.0258],"yaw":-3.00197,"spawnMask":3},{"id":"creature-202674","entityId":"entry-17280","position":[-87.1563,140.8095,-401.6558],"yaw":-2.02458,"spawnMask":3},{"id":"creature-202675","entityId":"entry-17280","position":[-79.2563,140.8478,-402.6258],"yaw":-1.36136,"spawnMask":3},{"id":"creature-202676","entityId":"entry-17280","position":[-58.4663,140.8771,-370.8658],"yaw":-4.08407,"spawnMask":3},{"id":"creature-202677","entityId":"entry-17280","position":[-53.2063,140.8731,-366.9258],"yaw":-3.7001,"spawnMask":3},{"id":"creature-202678","entityId":"entry-17280","position":[-27.0963,140.8752,-248.3658],"yaw":-0.244346,"spawnMask":3},{"id":"creature-202679","entityId":"entry-17280","position":[-25.6163,140.8685,-253.6358],"yaw":-5.75959,"spawnMask":3},{"id":"creature-202680","entityId":"entry-17280","position":[-11.0663,140.8348,-168.6758],"yaw":-2.34274,"spawnMask":3},{"id":"creature-202681","entityId":"entry-17280","position":[-8.4463,140.7975,-345.1658],"yaw":-1.94929,"spawnMask":3},{"id":"creature-202682","entityId":"entry-17280","position":[-6.0563,141.0652,-173.5558],"yaw":-2.34275,"spawnMask":3},{"id":"creature-202683","entityId":"entry-17280","position":[-3.3063,163.9074,-211.8258],"yaw":-2.24578,"spawnMask":3},{"id":"creature-202684","entityId":"entry-17280","position":[-2.2463,140.8093,-348.4058],"yaw":-2.11044,"spawnMask":3},{"id":"creature-202685","entityId":"entry-17280","position":[1.4037,163.9573,-215.2158],"yaw":-2.35763,"spawnMask":3},{"id":"creature-202686","entityId":"entry-17280","position":[10.1137,164.0573,-202.0658],"yaw":-4.79966,"spawnMask":3},{"id":"creature-202687","entityId":"entry-17280","position":[12.5037,164.0576,-249.7158],"yaw":-2.25147,"spawnMask":3},{"id":"creature-202688","entityId":"entry-17280","position":[14.5737,164.0593,-202.9958],"yaw":-0.506145,"spawnMask":3},{"id":"creature-202689","entityId":"entry-17280","position":[19.9137,164.0938,-251.7058],"yaw":-1.37881,"spawnMask":3},{"id":"creature-202690","entityId":"entry-17281","position":[-41.6963,163.4087,-274.1758],"yaw":-5.044,"spawnMask":3},{"id":"creature-202691","entityId":"entry-17281","position":[-16.1663,140.8931,-276.8958],"yaw":-0.628319,"spawnMask":3},{"id":"creature-202692","entityId":"entry-17306","position":[-94.7563,140.7283,-308.6958],"yaw":-2.40991,"spawnMask":3},{"id":"creature-202694","entityId":"entry-17308","position":[-159.6063,161.6601,-120.7458],"yaw":-3.75246,"spawnMask":3},{"id":"creature-202695","entityId":"entry-17309","position":[-101.8363,140.7052,-308.3258],"yaw":-2.40996,"spawnMask":3},{"id":"creature-202696","entityId":"entry-17309","position":[-95.1563,140.704,-315.7758],"yaw":-2.4099,"spawnMask":3},{"id":"creature-202698","entityId":"entry-17478","position":[-45.6563,163.4368,-273.4958],"yaw":-3.22886,"spawnMask":3},{"id":"creature-202699","entityId":"entry-17478","position":[-42.6063,163.3458,-277.9858],"yaw":-1.72788,"spawnMask":3},{"id":"creature-202700","entityId":"entry-17478","position":[-40.2163,163.6031,-269.5958],"yaw":-4.99164,"spawnMask":3},{"id":"creature-202701","entityId":"entry-17478","position":[-37.7763,163.3547,-276.1458],"yaw":-0.261799,"spawnMask":3},{"id":"creature-202702","entityId":"entry-17478","position":[-19.4263,140.9599,-274.2558],"yaw":-3.735,"spawnMask":3},{"id":"creature-202703","entityId":"entry-17478","position":[-18.5963,140.8958,-279.7558],"yaw":-2.40855,"spawnMask":3},{"id":"creature-202704","entityId":"entry-17478","position":[-13.9363,140.8962,-273.7458],"yaw":-5.34071,"spawnMask":3}],"roamingPacks":[{"id":"patrol-202614","name":"Bonechewer Hungerer Patrol","speed":1.15,"pathId":2026140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-23.6363,165.4439,-193.7158],[-41.0463,164.815,-182.5458],[-51.4363,164.7222,-178.2458],[-62.4063,165.1547,-173.3958],[-51.4363,164.7222,-178.2458],[-41.0463,164.815,-182.5458],[-23.6363,165.4439,-193.7158],[-13.5663,163.8465,-199.7958]],"members":[{"id":"member","entityId":"entry-17259","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202615","name":"Bonechewer Hungerer Patrol","speed":1.15,"pathId":2026150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-22.6063,165.4991,-190.1658],[-40.8863,164.6248,-178.8758],[-51.4063,164.6793,-174.7558],[-60.9563,165.1231,-170.2158],[-51.4063,164.6793,-174.7558],[-40.8863,164.6248,-178.8758],[-22.6063,165.4991,-190.1658],[-12.0463,163.837,-196.6458]],"members":[{"id":"member","entityId":"entry-17259","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202616","name":"Bonechewer Hungerer Patrol","speed":1.15,"pathId":2026160,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-7.3663,163.9001,-199.6458],[-4.7363,163.9248,-203.9758],[0.1037,163.9439,-202.3558],[1.1437,163.9414,-199.5858],[0.3237,163.9347,-198.6058],[0.5137,163.9443,-201.7658],[-3.0963,163.9322,-203.7658],[-6.5763,163.9097,-201.7258],[-7.4963,163.8933,-197.4258],[-4.7763,163.8957,-193.4458],[-4.4063,163.8966,-193.1458],[-6.8163,163.8928,-196.0158]],"members":[{"id":"member","entityId":"entry-17259","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202623","name":"Bonechewer Hungerer Patrol","speed":1.15,"pathId":2026230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[55.3137,165.1134,-170.4058],[69.2437,161.8251,-155.0258],[55.3137,165.1134,-170.4058],[49.4237,165.509,-178.4758]],"members":[{"id":"member","entityId":"entry-17259","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202624","name":"Bonechewer Hungerer Patrol","speed":1.15,"pathId":2026240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[55.1637,164.0008,-162.1758],[64.8337,161.0302,-148.7158],[55.1637,164.0008,-162.1758],[45.6237,165.3491,-174.8958]],"members":[{"id":"member","entityId":"entry-17259","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202625","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-117.0163,140.6472,-375.7958],[-106.5063,140.658,-382.5058],[-98.1763,140.6732,-378.1158],[-98.4263,140.6803,-367.9758],[-96.5963,140.6851,-365.1658],[-91.1763,140.6936,-364.2858],[-97.3663,140.6829,-366.5458],[-101.7563,140.6715,-373.4258],[-108.4263,140.6593,-376.8958],[-114.9063,140.6506,-375.2658],[-120.3263,140.6499,-366.7858],[-124.1863,140.6468,-363.8258]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202627","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026270,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-45.1663,140.8095,-383.2658],[-41.0763,140.8152,-386.8958],[-40.3263,140.3152,-389.3958],[-41.5663,140.8209,-391.9958],[-40.5063,140.8189,-389.8858],[-55.8963,140.8163,-392.4158],[-60.6463,140.3163,-395.9158],[-73.1263,140.2888,-387.8858],[-93.7363,140.7181,-394.3358],[-100.3263,140.7039,-400.4258],[-99.5463,140.7066,-400.0758],[-96.6163,140.6689,-391.9158],[-74.6563,140.5016,-382.2658],[-58.9963,140.8085,-386.6758]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202628","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-19.0463,139.9156,-182.2558],[-23.7963,140.1656,-186.7558],[-35.0163,140.7674,-222.4558],[-41.5163,140.5174,-241.7058],[-35.0163,140.7674,-222.4558],[-23.7963,140.1656,-186.7558],[-19.0463,139.9156,-182.2558],[-8.5663,140.95,-171.1158]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202629","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026290,"formationSource":"database-solo","spawnMask":3,"waypoints":[[11.9737,140.8277,-304.0758],[-4.0963,140.8231,-277.3058],[11.9737,140.8277,-304.0758],[5.5737,140.8214,-326.1558],[-7.2063,140.8058,-350.3058],[-25.8363,140.802,-365.2958],[-44.5363,140.8036,-378.0458],[-25.8363,140.802,-365.2958],[-7.2063,140.8058,-350.3058],[5.5737,140.8214,-326.1558]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202630","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[3.2037,163.9768,-208.8158],[19.8537,163.9752,-204.9958],[27.4737,163.9765,-215.5458],[32.9537,163.9786,-230.8358],[28.8137,163.9879,-243.4458],[9.9837,164.0019,-243.2158],[-3.3063,163.9917,-233.9558],[-4.2663,163.9398,-217.2458]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202631","name":"Bonechewer Ravener Patrol","speed":1.15,"pathId":2026310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[42.0337,140.6117,-174.4758],[51.4337,141.0385,-179.7358],[42.0337,140.6117,-174.4758],[33.8837,139.1454,-173.4258],[24.5237,137.7782,-171.5458],[17.0237,138.9333,-169.7958],[4.1937,140.9759,-166.3758],[-1.8963,140.9695,-168.5558],[4.1937,140.9759,-166.3758],[17.0237,138.9333,-169.7958],[24.5237,137.7782,-171.5458],[33.8837,139.1454,-173.4258]],"members":[{"id":"member","entityId":"entry-17264","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202697","name":"Bonechewer Beastmaster Patrol","speed":1.15,"pathId":2026970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-2.4663,140.8074,-297.5058],[-5.1363,140.3064,-287.9658],[6.8937,140.3233,-295.4658],[9.9637,140.8329,-291.7258],[5.2637,140.8218,-295.9258],[-4.4563,140.8031,-298.6658],[-1.5863,140.8102,-295.5858],[0.4837,140.8153,-293.3758],[2.8637,140.8139,-301.3458],[7.3637,140.8324,-285.9658],[0.2337,140.8174,-289.9158],[2.7437,140.8196,-292.8958],[4.3637,140.8205,-295.5658],[4.9237,140.8281,-286.0758],[9.6137,140.8298,-295.2558],[2.3537,140.8188,-293.1158],[3.3437,140.8181,-296.5058],[1.7937,140.8172,-293.9258]],"members":[{"id":"member","entityId":"entry-17455","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-202692","name":"Watchkeeper Gargolmar","position":[-94.7563,140.7283,-308.6958]},{"id":"creature-202694","name":"Omor the Unscarred","position":[-159.6063,161.6601,-120.7458]}],"objectiveOrder":[{"id":"creature-202692","name":"Watchkeeper Gargolmar","position":[-94.7563,140.7283,-308.6958]},{"id":"creature-202694","name":"Omor the Unscarred","position":[-159.6063,161.6601,-120.7458]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3562,"guid":20496,"id":185168,"map":543,"orientation":1.94103,"phaseMask":1,"position_x":-1429.56,"position_y":1773.13,"position_z":82.0906,"rotation0":0,"rotation1":0,"rotation2":0.825177,"rotation3":0.564875,"spawnMask":1,"spawntimesecs":86400,"state":1,"zoneId":3562},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3562,"guid":20499,"id":185169,"map":543,"orientation":1.94103,"phaseMask":1,"position_x":-1429.56,"position_y":1773.13,"position_z":82.0906,"rotation0":0,"rotation1":0,"rotation2":0.825177,"rotation3":0.564875,"spawnMask":2,"spawntimesecs":86400,"state":1,"zoneId":3562},{"Comment":null,"ScriptName":"","VerifiedBuild":45942,"animprogress":255,"areaId":0,"guid":21975,"id":181734,"map":543,"orientation":1.05222,"phaseMask":1,"position_x":-1166.27,"position_y":1453.71,"position_z":68.5183,"rotation0":0,"rotation1":0,"rotation2":0.502175,"rotation3":0.864766,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":45942,"animprogress":255,"areaId":0,"guid":21976,"id":181736,"map":543,"orientation":2.49796,"phaseMask":1,"position_x":-1218.09,"position_y":1441.2,"position_z":68.6415,"rotation0":0,"rotation1":0,"rotation2":0.948662,"rotation3":0.316292,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":45942,"animprogress":255,"areaId":0,"guid":21977,"id":181737,"map":543,"orientation":1.41679,"phaseMask":1,"position_x":-1143.07,"position_y":1508.32,"position_z":68.5893,"rotation0":0,"rotation1":0,"rotation2":0.650617,"rotation3":0.759406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":45942,"animprogress":255,"areaId":0,"guid":81628,"id":181735,"map":543,"orientation":1.05222,"phaseMask":1,"position_x":-1189.48,"position_y":1437.63,"position_z":68.4641,"rotation0":0,"rotation1":0,"rotation2":0.502175,"rotation3":0.864766,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150004,"id":184179,"map":543,"orientation":0.9965,"phaseMask":1,"position_x":-1358.11,"position_y":1635.75,"position_z":68.513,"rotation0":0,"rotation1":0,"rotation2":0.477889,"rotation3":0.87842,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150005,"id":184180,"map":543,"orientation":0.9965,"phaseMask":1,"position_x":-1358.11,"position_y":1635.75,"position_z":68.513,"rotation0":0,"rotation1":0,"rotation2":0.477889,"rotation3":0.87842,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/HellfireRampart":"1fe80499e212825bf9628e2ebb57ef47c794d7edae11a977650a743b779a711a","patch/World/maps/HellfireRampart":"40cfc72b7cf488f2ae95c9ef75d06fe37bf46092a2d119bd6f73da6191b05067"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/hellfire-ramparts/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["12/12 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"steamvault","title":"Coilfang: The Steamvault","mapId":545,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[60,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Coilfang: The Steamvault","theme":"Instanced dungeon","summary":"Fight through Coilfang: The Steamvault, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Coilfang: The Steamvault...","unchartedAreaName":"Uncharted Coilfang: The Steamvault","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":486.9613},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/545-coilfangpumping/visual.glb","checksum":"f96badc43c3d6ed4b612a3396ede4d9f848fa7061e9b2bc9bfbac5e3cc84a182","size":2368364,"triangleCount":58979}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/545-coilfangpumping/collision.glb","checksum":"fd6aaedc17b593f9de1b31bbe6c18c75760c4fd7d525a206f1705f3df4a13a0c","size":491032,"triangleCount":49192}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/545-coilfangpumping/navigation.glb","checksum":"9e9f8a632d6421e36a9d0f0c7505c9b1d272e7081c4d44de47e431a31eb2aa66","size":272688,"triangleCount":20491}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-230.8038,-60.1059,-771.8194],"max":[419.2611,12.33,-95.4842]},"entrance":{"name":"Coilfang: The Steamvault Entrance","footPosition":[-80.6389,-20.47,-168.0342],"forward":[0.9471339798799844,0,-0.3208383146644138],"yaw":1.8974107882902917},"areas":[{"id":"entrance","name":"Coilfang: The Steamvault Entrance","center":[-80.6389,-20.47,-168.0342],"radius":35},{"id":"area-hydromancer-thespia","name":"Hydromancer Thespia's Encounter","center":[-182.8785,-23.9988,-490.8994],"radius":42},{"id":"area-mekgineer-steamrigger","name":"Mekgineer Steamrigger's Encounter","center":[235.6016,-24.1965,-296.2944],"radius":42},{"id":"area-warlord-kalithresh","name":"Warlord Kalithresh's Encounter","center":[0.9374,-7.9411,-726.8194],"radius":42}],"entities":{"entry-17721":{"id":"entry-17721","kind":"mob","name":"Coilfang Engineer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6533","name":"Net","spellId":6533,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6766,"damageMultiplier":1.12},{"id":"spell-40331","name":"Bomb","spellId":40331,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6766,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18388-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.7543,"labelHeight":9.929,"markerRadius":1.4693}}},"entry-17722":{"id":"entry-17722","kind":"mob","name":"Coilfang Sorceress","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31581","name":"Blizzard","spellId":31581,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4117,"damageMultiplier":0.62,"radius":8},{"id":"spell-15063","name":"Frost Nova","spellId":15063,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4117,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18396-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-17796":{"id":"entry-17796","kind":"boss","name":"Mekgineer Steamrigger","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35107","name":"Electrified Net","spellId":35107,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4831,"damageMultiplier":1.35},{"id":"spell-31485","name":"Super Shrink Ray","spellId":31485,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4831,"damageMultiplier":1.35},{"id":"spell-31486","name":"Saw Blade","spellId":31486,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4831,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18638-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3354,"labelHeight":10.8494,"markerRadius":4.2484}}},"entry-17797":{"id":"entry-17797","kind":"boss","name":"Hydromancer Thespia","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-25189","name":"Enveloping Winds","spellId":25189,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5519,"damageMultiplier":1.35},{"id":"spell-25033","name":"Lightning Cloud","spellId":25033,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5519,"damageMultiplier":1.35},{"id":"spell-31481","name":"Lung Burst","spellId":31481,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5519,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-11268-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":11.4164,"markerRadius":2.2045}}},"entry-17798":{"id":"entry-17798","kind":"boss","name":"Warlord Kalithresh","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31534","name":"Spell Reflection","spellId":31534,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-31534","durationMs":12000,"magnitude":0.25}},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6094,"damageMultiplier":1.35},{"id":"spell-39061","name":"Impale","spellId":39061,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6094,"damageMultiplier":1.35},{"id":"spell-36453","name":"Warlord's Rage","spellId":36453,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6094,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-20235-animated.glb","rotationY":-1.5707963267948966,"groundOffset":5.3633,"labelHeight":14.1842,"markerRadius":2.0989}}},"entry-17799":{"id":"entry-17799","kind":"mob","name":"Dreghood Slave","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-8269","name":"Frenzy","spellId":8269,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4310,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8269","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-17691-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0044,"labelHeight":3.4695,"markerRadius":0.8615}}},"entry-17800":{"id":"entry-17800","kind":"mob","name":"Coilfang Myrmidon","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15496","name":"Cleave","spellId":15496,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5564,"damageMultiplier":0.62,"radius":8},{"id":"spell-7160","name":"Execute","spellId":7160,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5564,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18389-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":11.3474,"markerRadius":1.6791}}},"entry-17801":{"id":"entry-17801","kind":"mob","name":"Coilfang Siren","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-38660","name":"Fear","spellId":38660,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6377,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}},{"id":"spell-37664","name":"Lightning Bolt","spellId":37664,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6377,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18392-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-17802":{"id":"entry-17802","kind":"mob","name":"Coilfang Warrior","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-7164","name":"Defensive Stance","spellId":7164,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4717,"damageMultiplier":1.12},{"id":"spell-35105","name":"Mortal Blow","spellId":35105,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4717,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18398-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.218,"labelHeight":8.5105,"markerRadius":1.2594}}},"entry-17803":{"id":"entry-17803","kind":"mob","name":"Coilfang Oracle","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8281","name":"Sonic Burst","spellId":8281,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5532,"damageMultiplier":1.12},{"id":"spell-31730","name":"Heal","spellId":31730,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5532,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18391-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.218,"labelHeight":8.5623,"markerRadius":1.6533}}},"entry-17805":{"id":"entry-17805","kind":"mob","name":"Coilfang Slavemaster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-10987","name":"Geyser","spellId":10987,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4493,"damageMultiplier":1.12},{"id":"spell-6713","name":"Disarm","spellId":6713,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4493,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-18394-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.7543,"labelHeight":9.929,"markerRadius":1.4693}}},"entry-17917":{"id":"entry-17917","kind":"mob","name":"Coilfang Water Elemental","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34449","name":"Water Bolt Volley","spellId":34449,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5018,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-5564-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5891,"markerRadius":2.6624}}},"entry-17951":{"id":"entry-17951","kind":"mob","name":"Steamrigger Mechanic","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/24c2a0dfe0450f20fff15e59b309083239d9eb9af6d0eb0d698be3aaaf7eb382.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-21338":{"id":"entry-21338","kind":"mob","name":"Coilfang Leper","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-40505","name":"Cleave","spellId":40505,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5328,"damageMultiplier":0.62,"radius":8},{"id":"spell-13339","name":"Fire Blast","spellId":13339,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5328,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/24c2a0dfe0450f20fff15e59b309083239d9eb9af6d0eb0d698be3aaaf7eb382.glb","rotationY":-1.5707963267948966,"groundOffset":0.0036,"labelHeight":1.6786,"markerRadius":0.65}}},"entry-21694":{"id":"entry-21694","kind":"mob","name":"Bog Overlord","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4621,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}},{"id":"spell-32065","name":"Fungal Decay","spellId":32065,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4621,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"plant","model":{"url":"/assets/game/creatures/shared/52c8b3aea63f21f8e98ad84eaf601f2918d1df17a05525d41f5b3e17da53c8ff.glb","rotationY":-1.5707963267948966,"groundOffset":0.0102,"labelHeight":14.3365,"markerRadius":4.5}}},"entry-21695":{"id":"entry-21695","kind":"mob","name":"Tidal Surger","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15531","name":"Frost Nova","spellId":15531,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7065,"damageMultiplier":0.62,"radius":8},{"id":"spell-37250","name":"Water Spout","spellId":37250,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7065,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-5564-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5891,"markerRadius":2.6624}}},"entry-21696":{"id":"entry-21696","kind":"mob","name":"Steam Surger","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-37252","name":"Water Bolt","spellId":37252,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5434,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/steamvault/creatures/display-5561-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3404,"markerRadius":1.3312}}}},"staticSpawns":[{"id":"creature-142021","entityId":"entry-17721","position":[-89.1824,-37.3848,-306.1794],"yaw":-4.93928,"spawnMask":3},{"id":"creature-142022","entityId":"entry-17721","position":[-154.3645,-38.8713,-306.3694],"yaw":-5.8294,"spawnMask":3},{"id":"creature-142023","entityId":"entry-17721","position":[-140.0847,-38.7413,-411.0144],"yaw":-4.90438,"spawnMask":3},{"id":"creature-142024","entityId":"entry-17721","position":[-123.5078,-38.827,-414.3514],"yaw":-5.27089,"spawnMask":3},{"id":"creature-142025","entityId":"entry-17721","position":[-72.5478,-37.9271,-301.5184],"yaw":-4.81711,"spawnMask":3},{"id":"creature-142026","entityId":"entry-17721","position":[-80.5896,-38.7795,-354.5344],"yaw":-3.19395,"spawnMask":3},{"id":"creature-142027","entityId":"entry-17721","position":[-69.8611,-37.0664,-361.4324],"yaw":-1.6057,"spawnMask":3},{"id":"creature-142028","entityId":"entry-17721","position":[-102.8592,-38.5772,-379.6114],"yaw":-4.27606,"spawnMask":3},{"id":"creature-142029","entityId":"entry-17721","position":[-108.7625,-38.5681,-388.1224],"yaw":-3.4383,"spawnMask":3},{"id":"creature-142030","entityId":"entry-17721","position":[-102.8871,-38.094,-321.8384],"yaw":-3.87463,"spawnMask":3},{"id":"creature-142031","entityId":"entry-17721","position":[-52.4322,-23.6226,-546.8904],"yaw":-6.07375,"spawnMask":3},{"id":"creature-142032","entityId":"entry-17721","position":[-44.3135,-23.6152,-557.3444],"yaw":-4.41568,"spawnMask":3},{"id":"creature-142033","entityId":"entry-17722","position":[-8.6493,-23.8836,-451.2684],"yaw":-1.5708,"spawnMask":3},{"id":"creature-142034","entityId":"entry-17722","position":[0.1103,-23.8836,-452.4574],"yaw":-1.39626,"spawnMask":3},{"id":"creature-142036","entityId":"entry-17722","position":[-33.7582,-23.8836,-493.6394],"yaw":-2.80998,"spawnMask":3},{"id":"creature-142037","entityId":"entry-17722","position":[16.4176,-23.8713,-505.3004],"yaw":-6.16101,"spawnMask":3},{"id":"creature-142038","entityId":"entry-17722","position":[-49.4123,-23.5982,-536.0374],"yaw":-2.40855,"spawnMask":3},{"id":"creature-142040","entityId":"entry-17722","position":[-1.5808,-10.2199,-620.0984],"yaw":-1.55334,"spawnMask":3},{"id":"creature-142041","entityId":"entry-17722","position":[-11.5909,-7.8549,-684.8584],"yaw":-1.88496,"spawnMask":3},{"id":"creature-142042","entityId":"entry-17722","position":[12.3046,-7.9004,-680.5584],"yaw":-1.3439,"spawnMask":3},{"id":"creature-142043","entityId":"entry-17796","position":[235.6016,-24.1965,-296.2944],"yaw":-5.06145,"spawnMask":3},{"id":"creature-142044","entityId":"entry-17797","position":[-182.8785,-23.9988,-490.8994],"yaw":-3.03687,"spawnMask":3},{"id":"creature-142045","entityId":"entry-17798","position":[0.9374,-7.9411,-726.8194],"yaw":-1.44862,"spawnMask":3},{"id":"creature-142046","entityId":"entry-17799","position":[141.2946,-22.5438,-364.3834],"yaw":-3.01942,"spawnMask":3},{"id":"creature-142047","entityId":"entry-17799","position":[124.1946,-24.128,-414.1824],"yaw":-0.523599,"spawnMask":3},{"id":"creature-142048","entityId":"entry-17799","position":[128.7886,-24.1546,-407.1104],"yaw":-0.191986,"spawnMask":3},{"id":"creature-142049","entityId":"entry-17799","position":[119.4286,-24.1555,-416.0784],"yaw":-1.98968,"spawnMask":3},{"id":"creature-142050","entityId":"entry-17799","position":[125.1736,-24.152,-409.5504],"yaw":-1.97222,"spawnMask":3},{"id":"creature-142051","entityId":"entry-17799","position":[114.9726,-24.2161,-441.0164],"yaw":-5.63741,"spawnMask":3},{"id":"creature-142052","entityId":"entry-17799","position":[111.6796,-24.2097,-443.7184],"yaw":-2.60054,"spawnMask":3},{"id":"creature-142053","entityId":"entry-17799","position":[156.6566,-24.1581,-405.4294],"yaw":-2.86234,"spawnMask":3},{"id":"creature-142054","entityId":"entry-17799","position":[139.0016,-23.9469,-439.7024],"yaw":-2.82743,"spawnMask":3},{"id":"creature-142055","entityId":"entry-17799","position":[161.4156,-24.0663,-409.9324],"yaw":-2.6529,"spawnMask":3},{"id":"creature-142056","entityId":"entry-17799","position":[161.8286,-23.9886,-413.3234],"yaw":-2.1293,"spawnMask":3},{"id":"creature-142057","entityId":"entry-17799","position":[142.4976,-23.9312,-437.8844],"yaw":-5.67232,"spawnMask":3},{"id":"creature-142058","entityId":"entry-17799","position":[159.1996,-24.0983,-408.3004],"yaw":-1.71042,"spawnMask":3},{"id":"creature-142059","entityId":"entry-17799","position":[141.0506,-23.9121,-443.4234],"yaw":-3.59538,"spawnMask":3},{"id":"creature-142060","entityId":"entry-17799","position":[145.7556,-23.9006,-442.6764],"yaw":-5.00909,"spawnMask":3},{"id":"creature-142061","entityId":"entry-17800","position":[-57.8658,-34.4353,-391.7074],"yaw":-0.907571,"spawnMask":3},{"id":"creature-142062","entityId":"entry-17800","position":[-53.6018,-34.497,-382.6504],"yaw":-0.15708,"spawnMask":3},{"id":"creature-142063","entityId":"entry-17800","position":[65.1416,-24.2563,-458.1594],"yaw":-4.43314,"spawnMask":3},{"id":"creature-142064","entityId":"entry-17800","position":[-41.8741,-23.8836,-499.5474],"yaw":-5.72468,"spawnMask":3},{"id":"creature-142065","entityId":"entry-17800","position":[75.4336,-24.2888,-460.1564],"yaw":-5.16617,"spawnMask":3},{"id":"creature-142066","entityId":"entry-17800","position":[9.7126,-23.843,-499.9154],"yaw":-6.17847,"spawnMask":3},{"id":"creature-142067","entityId":"entry-17800","position":[8.1926,-23.5059,-517.0294],"yaw":-0.0174533,"spawnMask":3},{"id":"creature-142068","entityId":"entry-17800","position":[-8.4177,-23.9787,-535.8224],"yaw":-2.62466,"spawnMask":3},{"id":"creature-142069","entityId":"entry-17800","position":[-8.8089,-23.9787,-528.5544],"yaw":-3.11757,"spawnMask":3},{"id":"creature-142070","entityId":"entry-17800","position":[-36.9699,-23.4926,-551.3764],"yaw":-2.46091,"spawnMask":3},{"id":"creature-142071","entityId":"entry-17800","position":[2.546,-11.321,-617.4784],"yaw":-1.62316,"spawnMask":3},{"id":"creature-142072","entityId":"entry-17800","position":[-1.7978,-11.2902,-617.5334],"yaw":-1.5708,"spawnMask":3},{"id":"creature-142073","entityId":"entry-17800","position":[3.7835,-8.2666,-640.2814],"yaw":-1.48353,"spawnMask":3},{"id":"creature-142074","entityId":"entry-17800","position":[-1.7537,-8.2649,-640.3474],"yaw":-1.53589,"spawnMask":3},{"id":"creature-142075","entityId":"entry-17800","position":[-11.696,-7.8647,-674.7574],"yaw":-2.07694,"spawnMask":3},{"id":"creature-142076","entityId":"entry-17800","position":[12.3056,-7.9323,-672.7164],"yaw":-1.09956,"spawnMask":3},{"id":"creature-142077","entityId":"entry-17801","position":[-130.3569,-38.7755,-332.1024],"yaw":-3.50811,"spawnMask":3},{"id":"creature-142078","entityId":"entry-17801","position":[-132.4391,-38.8076,-411.7034],"yaw":-2.94961,"spawnMask":3},{"id":"creature-142079","entityId":"entry-17801","position":[-124.3552,-38.5759,-339.9784],"yaw":-1.32645,"spawnMask":3},{"id":"creature-142080","entityId":"entry-17801","position":[-123.541,-39.4608,-431.4204],"yaw":-3.38594,"spawnMask":3},{"id":"creature-142082","entityId":"entry-17801","position":[-121.497,-39.0163,-435.2614],"yaw":-2.44346,"spawnMask":3},{"id":"creature-142083","entityId":"entry-17801","position":[-104.002,-38.2561,-325.3854],"yaw":-0.191986,"spawnMask":3},{"id":"creature-142084","entityId":"entry-17801","position":[-155.4256,-38.9206,-301.1844],"yaw":-0.870719,"spawnMask":3},{"id":"creature-142085","entityId":"entry-17801","position":[-123.0831,-37.5837,-454.0474],"yaw":-4.5204,"spawnMask":3},{"id":"creature-142086","entityId":"entry-17801","position":[-95.9943,-37.7525,-425.2334],"yaw":-6.14356,"spawnMask":3},{"id":"creature-142087","entityId":"entry-17801","position":[-101.2478,-38.1129,-431.7884],"yaw":-1.50098,"spawnMask":3},{"id":"creature-142088","entityId":"entry-17801","position":[-116.4789,-37.6178,-451.0594],"yaw":-4.39823,"spawnMask":3},{"id":"creature-142089","entityId":"entry-17801","position":[-40.6617,-22.482,-509.1564],"yaw":-3.22886,"spawnMask":3},{"id":"creature-142090","entityId":"entry-17801","position":[-33.983,-23.8836,-501.3964],"yaw":-3.08923,"spawnMask":3},{"id":"creature-142091","entityId":"entry-17801","position":[15.0116,-23.7609,-511.1414],"yaw":-5.91667,"spawnMask":3},{"id":"creature-142092","entityId":"entry-17801","position":[-7.4599,-8.1202,-645.9114],"yaw":-1.72788,"spawnMask":3},{"id":"creature-142093","entityId":"entry-17801","position":[-17.3965,-7.8157,-678.5924],"yaw":-2.04204,"spawnMask":3},{"id":"creature-142094","entityId":"entry-17801","position":[18.8396,-7.9235,-668.9214],"yaw":-0.715585,"spawnMask":3},{"id":"creature-142097","entityId":"entry-17802","position":[-72.7015,-38.7005,-277.6374],"yaw":-1.4331,"spawnMask":3},{"id":"creature-142102","entityId":"entry-17802","position":[-4.6297,-23.8836,-454.2284],"yaw":-1.62316,"spawnMask":3},{"id":"creature-142104","entityId":"entry-17802","position":[-96.5485,-36.0511,-238.9246],"yaw":-2.05949,"spawnMask":3},{"id":"creature-142105","entityId":"entry-17802","position":[-87.9994,-36.0511,-238.4978],"yaw":-1.29154,"spawnMask":3},{"id":"creature-142107","entityId":"entry-17802","position":[-45.6343,-34.8016,-391.8174],"yaw":-2.1076,"spawnMask":3},{"id":"creature-142109","entityId":"entry-17802","position":[-44.0956,-34.8081,-390.0404],"yaw":-5.85866,"spawnMask":3},{"id":"creature-142110","entityId":"entry-17803","position":[-127.9241,-38.6892,-335.9834],"yaw":-2.33874,"spawnMask":3},{"id":"creature-142111","entityId":"entry-17803","position":[-107.6824,-38.5596,-382.8404],"yaw":-6.0542,"spawnMask":3},{"id":"creature-142112","entityId":"entry-17803","position":[-77.3883,-38.3795,-360.9194],"yaw":-5.23599,"spawnMask":3},{"id":"creature-142113","entityId":"entry-17803","position":[-119.2457,-38.4386,-438.4064],"yaw":-1.69297,"spawnMask":3},{"id":"creature-142114","entityId":"entry-17803","position":[-105.212,-38.4539,-329.7214],"yaw":-6.10865,"spawnMask":3},{"id":"creature-142115","entityId":"entry-17803","position":[-97.0593,-37.8972,-430.2924],"yaw":-0.785398,"spawnMask":3},{"id":"creature-142116","entityId":"entry-17803","position":[3.6085,-10.1304,-620.3224],"yaw":-1.22173,"spawnMask":3},{"id":"creature-142117","entityId":"entry-17803","position":[8.1246,-8.0963,-646.8274],"yaw":-1.5708,"spawnMask":3},{"id":"creature-142118","entityId":"entry-17803","position":[-19.2755,-7.8599,-671.7114],"yaw":-2.32129,"spawnMask":3},{"id":"creature-142119","entityId":"entry-17803","position":[19.8206,-7.9066,-678.4814],"yaw":-0.855211,"spawnMask":3},{"id":"creature-142120","entityId":"entry-17805","position":[143.5256,-23.1121,-367.9234],"yaw":-1.09956,"spawnMask":3},{"id":"creature-142122","entityId":"entry-17805","position":[138.3796,-22.761,-367.0344],"yaw":-2.46091,"spawnMask":3},{"id":"creature-142124","entityId":"entry-17917","position":[-185.8038,-23.9987,-481.2964],"yaw":-3.21141,"spawnMask":3},{"id":"creature-142125","entityId":"entry-17917","position":[-184.5233,-23.9989,-500.9034],"yaw":-3.00197,"spawnMask":3},{"id":"creature-142126","entityId":"entry-17951","position":[234.0796,-24.225,-300.8574],"yaw":-1.8675,"spawnMask":3},{"id":"creature-142127","entityId":"entry-17951","position":[230.9036,-24.1843,-294.9874],"yaw":-3.83972,"spawnMask":3},{"id":"creature-142128","entityId":"entry-17951","position":[241.0636,-24.1466,-297.3844],"yaw":-0.506145,"spawnMask":3},{"id":"creature-142139","entityId":"entry-21338","position":[209.2206,-24.2677,-327.8264],"yaw":-5.77011,"spawnMask":3},{"id":"creature-142140","entityId":"entry-21338","position":[201.1356,-23.956,-297.1924],"yaw":-0.738108,"spawnMask":3},{"id":"creature-142141","entityId":"entry-21338","position":[202.6046,-23.9695,-289.6124],"yaw":-2.93215,"spawnMask":3},{"id":"creature-142142","entityId":"entry-21338","position":[211.7726,-24.37,-301.3084],"yaw":-1.09522,"spawnMask":3},{"id":"creature-142143","entityId":"entry-21338","position":[205.1316,-24.303,-319.3474],"yaw":-0.334969,"spawnMask":3},{"id":"creature-142144","entityId":"entry-21338","position":[204.7316,-23.8836,-331.8424],"yaw":-6.25279,"spawnMask":3},{"id":"creature-142145","entityId":"entry-21338","position":[193.4706,-23.8861,-324.9464],"yaw":-1.33847,"spawnMask":3},{"id":"creature-142146","entityId":"entry-21338","position":[197.8116,-24.0597,-320.3224],"yaw":-3.03753,"spawnMask":3},{"id":"creature-142147","entityId":"entry-21338","position":[201.9976,-24.1812,-324.9864],"yaw":-0.977384,"spawnMask":3},{"id":"creature-142148","entityId":"entry-21338","position":[196.0016,-23.8836,-290.7724],"yaw":-4.30182,"spawnMask":3},{"id":"creature-142149","entityId":"entry-21338","position":[198.0476,-23.8836,-329.6554],"yaw":-5.37133,"spawnMask":3},{"id":"creature-142150","entityId":"entry-21338","position":[208.6396,-23.999,-289.9574],"yaw":-6.0342,"spawnMask":3},{"id":"creature-142151","entityId":"entry-21338","position":[212.1366,-23.8836,-280.7214],"yaw":-0.727516,"spawnMask":3},{"id":"creature-142152","entityId":"entry-21338","position":[205.2976,-24.2175,-302.5664],"yaw":-5.6863,"spawnMask":3},{"id":"creature-142153","entityId":"entry-21338","position":[214.6996,-24.2227,-296.0564],"yaw":-0.730187,"spawnMask":3},{"id":"creature-142154","entityId":"entry-21338","position":[192.2396,-23.5063,-331.1184],"yaw":-0.0862546,"spawnMask":3},{"id":"creature-142155","entityId":"entry-21694","position":[-165.5936,-35.399,-323.8104],"yaw":-3.56505,"spawnMask":3},{"id":"creature-142156","entityId":"entry-21694","position":[-32.699,-36.0511,-322.1564],"yaw":-4.3544,"spawnMask":3},{"id":"creature-142157","entityId":"entry-21694","position":[-149.9758,-38.7424,-272.5752],"yaw":-6.14571,"spawnMask":3},{"id":"creature-142158","entityId":"entry-21694","position":[-49.8289,-38.2419,-284.2074],"yaw":-0.541052,"spawnMask":3},{"id":"creature-142159","entityId":"entry-21694","position":[-150.241,-38.7413,-372.9764],"yaw":-3.31613,"spawnMask":3},{"id":"creature-142163","entityId":"entry-21696","position":[-167.8908,-38.843,-289.1974],"yaw":-2.14001,"spawnMask":3},{"id":"creature-142164","entityId":"entry-21696","position":[-168.9503,-38.8388,-283.7244],"yaw":-3.9642,"spawnMask":3},{"id":"creature-142165","entityId":"entry-21696","position":[-99.6305,-39.0314,-421.0114],"yaw":-3.7001,"spawnMask":3},{"id":"creature-142166","entityId":"entry-21696","position":[-163.6923,-38.8384,-283.0354],"yaw":-3.99889,"spawnMask":3},{"id":"creature-142167","entityId":"entry-21696","position":[-77.4518,-38.6198,-335.2674],"yaw":-5.35455,"spawnMask":3},{"id":"creature-142168","entityId":"entry-21696","position":[-81.9226,-38.6836,-330.2954],"yaw":-4.68552,"spawnMask":3},{"id":"creature-142169","entityId":"entry-21696","position":[-164.0726,-38.8404,-285.6324],"yaw":-2.39144,"spawnMask":3},{"id":"creature-142170","entityId":"entry-21696","position":[-99.8208,-39.2101,-423.0734],"yaw":-3.89208,"spawnMask":3},{"id":"creature-142171","entityId":"entry-21696","position":[-101.1117,-39.1394,-425.4704],"yaw":-5.00909,"spawnMask":3},{"id":"creature-142172","entityId":"entry-21696","position":[-102.2402,-38.8644,-427.0174],"yaw":-0.0523599,"spawnMask":3},{"id":"creature-142173","entityId":"entry-21696","position":[-80.1909,-38.7671,-330.2834],"yaw":-5.43264,"spawnMask":3},{"id":"creature-142174","entityId":"entry-21696","position":[-82.4239,-38.9002,-335.8524],"yaw":-5.07313,"spawnMask":3}],"roamingPacks":[{"id":"patrol-142035","name":"Coilfang Sorceress Patrol","speed":1.15,"pathId":1420350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-53.7214,-34.7102,-388.0124],[-31.7054,-34.7273,-396.1864],[-19.5524,-35.1211,-404.3664],[-7.8024,-31.6781,-421.4324],[-3.4922,-25.762,-440.4974],[-8.7485,-31.63,-421.8444],[-20.1075,-35.1333,-404.9304],[-32.005,-34.6699,-396.7754]],"members":[{"id":"member","entityId":"entry-17722","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142039","name":"Coilfang Sorceress Patrol","speed":1.15,"pathId":1420390,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-3.0893,-23.9787,-532.6644],[-0.374,-23.9787,-519.9504],[-0.8957,-23.9787,-501.0374],[-1.2761,-23.9787,-485.8394],[-0.8816,-23.9787,-471.1114],[-11.0883,-23.9787,-468.6214],[-20.7414,-23.9787,-485.6904],[-23.7294,-23.9787,-502.7574],[-28.6308,-23.9787,-518.9674],[-24.0151,-23.9787,-536.4154],[-12.7121,-23.9787,-544.1114]],"members":[{"id":"member","entityId":"entry-17722","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142081","name":"Coilfang Siren Patrol","speed":1.15,"pathId":1420810,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-73.329,-38.8346,-277.2954],[-83.3637,-37.5499,-270.1267],[-100.2907,-38.7663,-272.0878],[-108.1073,-38.2796,-282.1634],[-105.0971,-37.8856,-294.4714],[-89.7386,-36.949,-291.6484],[-76.3702,-38.704,-286.3394]],"members":[{"id":"member","entityId":"entry-17801","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142095","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1420950,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-107.2957,-38.6783,-330.3104],[-109.7102,-38.706,-325.5994],[-107.2278,-38.4622,-320.0694],[-109.7102,-38.706,-325.5994]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142096","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1420960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-83.406,-39.9046,-356.0774],[-79.9391,-39.1657,-364.3324],[-67.9026,-36.7012,-366.3354],[-79.9391,-39.1657,-364.3324]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142098","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1420980,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-114.2225,-38.2433,-439.1374],[-115.629,-38.5005,-433.5494],[-121.9999,-39.6247,-429.9174],[-115.629,-38.5005,-433.5494]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142099","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1420990,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-155.3261,-38.8443,-296.2534],[-150.9065,-38.9283,-300.7794],[-150.5618,-39.0084,-308.5844],[-150.9065,-38.9283,-300.7794]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142100","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1421000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-113.4498,-38.6867,-387.1674],[-110.5835,-38.6338,-376.3884],[-101.3896,-38.6569,-374.2694],[-110.5835,-38.6338,-376.3884]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142101","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1421010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-117.4804,-38.6218,-412.5374],[-129.7409,-38.861,-406.1994],[-140.9832,-38.8596,-406.4734],[-129.7409,-38.861,-406.1994]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142103","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1421030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-89.8409,-37.0154,-301.9944],[-80.9373,-38.3983,-298.9234],[-72.3452,-38.1643,-297.6624],[-80.9373,-38.3983,-298.9234]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142106","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1421060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-104.6104,-38.5773,-427.9094],[-99.4527,-39.0636,-421.1124],[-100.7507,-39.0589,-426.5844]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142108","name":"Coilfang Warrior Patrol","speed":1.15,"pathId":1421080,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-118.0466,-38.8595,-448.8644],[-116.4012,-35.274,-457.1084],[-119.6867,-31.201,-465.4704],[-126.4214,-27.2872,-473.8604],[-136.9892,-24.7926,-484.1364],[-145.166,-24.0872,-487.9964],[-153.3571,-24.0497,-487.6614],[-148.8242,-24.2284,-480.5634],[-141,-25.5427,-475.4964],[-133.4909,-27.5065,-470.9214],[-126.743,-31.2106,-464.5224],[-124.6229,-36.6648,-455.2344],[-122.6245,-38.9257,-448.2654]],"members":[{"id":"member","entityId":"entry-17802","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142121","name":"Coilfang Slavemaster Patrol","speed":1.15,"pathId":1421210,"formationSource":"database-solo","spawnMask":3,"waypoints":[[137.9096,-24.1048,-417.5854],[140.6656,-24.3326,-403.3544],[140.4606,-24.3081,-385.4064],[140.4096,-24.1167,-372.7384],[140.4606,-24.3081,-385.4064],[140.6656,-24.3326,-403.3544]],"members":[{"id":"member","entityId":"entry-17805","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142123","name":"Coilfang Slavemaster Patrol","speed":1.15,"pathId":1421230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[107.8176,-24.182,-436.4764],[114.3106,-24.2906,-436.4614],[124.7536,-24.1994,-435.3074],[130.6596,-24.1388,-431.6604],[136.0086,-24.0751,-423.9624],[130.6596,-24.1388,-431.6604],[124.7536,-24.1994,-435.3074],[114.3106,-24.2906,-436.4614]],"members":[{"id":"member","entityId":"entry-17805","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142160","name":"Tidal Surger Patrol","speed":1.15,"pathId":1421600,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-81.3884,-38.9697,-333.6974],[-87.4018,-40.1059,-347.8694],[-97.4314,-38.7227,-356.0034],[-112.0755,-38.6332,-355.9214],[-112.975,-38.6133,-378.3824],[-112.0755,-38.6332,-355.9214],[-97.4314,-38.7227,-356.0034],[-87.4018,-40.1059,-347.8694]],"members":[{"id":"member","entityId":"entry-21695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142161","name":"Tidal Surger Patrol","speed":1.15,"pathId":1421610,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-168.5036,-38.8391,-284.0124],[-152.4304,-38.8235,-289.5114],[-141.9388,-38.8284,-292.6054],[-143.6055,-38.9952,-305.4994],[-126.8326,-38.6556,-304.0154],[-125.8544,-38.7528,-322.0044],[-113.1412,-38.6251,-344.2294],[-122.9332,-38.6889,-358.0944],[-113.1412,-38.6251,-344.2294],[-125.8544,-38.7528,-322.0044],[-126.8326,-38.6556,-304.0154],[-143.6055,-38.9952,-305.4994],[-141.9388,-38.8284,-292.6054],[-152.4304,-38.8235,-289.5114]],"members":[{"id":"member","entityId":"entry-21695","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-142162","name":"Tidal Surger Patrol","speed":1.15,"pathId":1421620,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-102.9355,-39.5626,-422.6604],[-112.7706,-38.7264,-408.1314],[-126.7212,-38.8528,-393.3974],[-134.1452,-38.8432,-380.9984],[-126.7212,-38.8528,-393.3974],[-112.7706,-38.7264,-408.1314]],"members":[{"id":"member","entityId":"entry-21695","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-142044","name":"Hydromancer Thespia","position":[-182.8785,-23.9988,-490.8994]},{"id":"creature-142043","name":"Mekgineer Steamrigger","position":[235.6016,-24.1965,-296.2944]},{"id":"creature-142045","name":"Warlord Kalithresh","position":[0.9374,-7.9411,-726.8194]}],"objectiveOrder":[{"id":"creature-142044","name":"Hydromancer Thespia","position":[-182.8785,-23.9988,-490.8994]},{"id":"creature-142043","name":"Mekgineer Steamrigger","position":[235.6016,-24.1965,-296.2944]},{"id":"creature-142045","name":"Warlord Kalithresh","position":[0.9374,-7.9411,-726.8194]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3715,"guid":830,"id":183049,"map":545,"orientation":3.14159,"phaseMask":1,"position_x":-95.5584,"position_y":-437.625,"position_z":4.94624,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3715,"guid":831,"id":184125,"map":545,"orientation":4.79966,"phaseMask":1,"position_x":98.8157,"position_y":-316.336,"position_z":-6.68396,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3715,"guid":832,"id":184126,"map":545,"orientation":0.261798,"phaseMask":1,"position_x":-332.35,"position_y":-117.159,"position_z":-6.70766,"rotation0":0,"rotation1":0,"rotation2":0.130526,"rotation3":0.991445,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3715,"guid":833,"id":182197,"map":545,"orientation":6.10865,"phaseMask":1,"position_x":19.6039,"position_y":-304.914,"position_z":-66.1715,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":32626,"id":182953,"map":545,"orientation":0.802851,"phaseMask":1,"position_x":809.187,"position_y":6962.97,"position_z":18.2676,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64680,"id":182952,"map":545,"orientation":0.802851,"phaseMask":1,"position_x":809.187,"position_y":6962.97,"position_z":18.2676,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":64681,"id":182954,"map":545,"orientation":0.802851,"phaseMask":1,"position_x":809.187,"position_y":6962.97,"position_z":18.2676,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105242,"id":181270,"map":545,"orientation":3.49067,"phaseMask":1,"position_x":-205.817,"position_y":-103.243,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105243,"id":181270,"map":545,"orientation":5.65487,"phaseMask":1,"position_x":-64.5367,"position_y":-152.412,"position_z":-19.9231,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105244,"id":181275,"map":545,"orientation":3.3685,"phaseMask":1,"position_x":58.5667,"position_y":-204.123,"position_z":-22.6133,"rotation0":0,"rotation1":0,"rotation2":-0.993571,"rotation3":0.113208,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105245,"id":181275,"map":545,"orientation":3.3685,"phaseMask":1,"position_x":58.5667,"position_y":-204.123,"position_z":-22.6133,"rotation0":0,"rotation1":0,"rotation2":-0.993571,"rotation3":0.113208,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105246,"id":181275,"map":545,"orientation":4.90438,"phaseMask":1,"position_x":-310.216,"position_y":-206.72,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105247,"id":181275,"map":545,"orientation":4.90438,"phaseMask":1,"position_x":-310.216,"position_y":-206.72,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105248,"id":181278,"map":545,"orientation":1.72787,"phaseMask":1,"position_x":6.92143,"position_y":-271.444,"position_z":-18.8318,"rotation0":0,"rotation1":0,"rotation2":0.760406,"rotation3":0.649449,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105249,"id":181278,"map":545,"orientation":1.93731,"phaseMask":1,"position_x":-49.1663,"position_y":-143.161,"position_z":-20.2431,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566408,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105250,"id":181278,"map":545,"orientation":0.95993,"phaseMask":1,"position_x":68.2781,"position_y":-149.73,"position_z":-19.6815,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105251,"id":181278,"map":545,"orientation":5.55015,"phaseMask":1,"position_x":-245.752,"position_y":-163.171,"position_z":-2.66641,"rotation0":0,"rotation1":0,"rotation2":-0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105252,"id":181278,"map":545,"orientation":4.92183,"phaseMask":1,"position_x":-220.607,"position_y":-186.447,"position_z":-5.3461,"rotation0":0,"rotation1":0,"rotation2":-0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105253,"id":181278,"map":545,"orientation":4.53786,"phaseMask":1,"position_x":-237.348,"position_y":-182.727,"position_z":-5.58116,"rotation0":0,"rotation1":0,"rotation2":-0.766044,"rotation3":0.642789,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105254,"id":181278,"map":545,"orientation":2.84488,"phaseMask":1,"position_x":-354.513,"position_y":-136.025,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105255,"id":181278,"map":545,"orientation":5.60251,"phaseMask":1,"position_x":-313.275,"position_y":-107.529,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.333807,"rotation3":0.942641,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105256,"id":181278,"map":545,"orientation":4.60767,"phaseMask":1,"position_x":-328.184,"position_y":-180.729,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105257,"id":181278,"map":545,"orientation":0.174532,"phaseMask":1,"position_x":-238.252,"position_y":-133.886,"position_z":-65.1628,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105258,"id":181278,"map":545,"orientation":4.20625,"phaseMask":1,"position_x":-131.431,"position_y":-328.561,"position_z":-67.6411,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105259,"id":181278,"map":545,"orientation":0.942477,"phaseMask":1,"position_x":-271.318,"position_y":-206.749,"position_z":-67.6411,"rotation0":0,"rotation1":0,"rotation2":0.45399,"rotation3":0.891007,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105260,"id":181555,"map":545,"orientation":0.575957,"phaseMask":1,"position_x":44.922,"position_y":-270.041,"position_z":-21.8391,"rotation0":0,"rotation1":0,"rotation2":0.284015,"rotation3":0.95882,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105261,"id":181555,"map":545,"orientation":0.575957,"phaseMask":1,"position_x":44.922,"position_y":-270.041,"position_z":-21.8391,"rotation0":0,"rotation1":0,"rotation2":0.284015,"rotation3":0.95882,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105262,"id":181555,"map":545,"orientation":5.34071,"phaseMask":1,"position_x":6.10486,"position_y":-229.526,"position_z":-22.172,"rotation0":0,"rotation1":0,"rotation2":-0.45399,"rotation3":0.891007,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105263,"id":181555,"map":545,"orientation":5.34071,"phaseMask":1,"position_x":6.10486,"position_y":-229.526,"position_z":-22.172,"rotation0":0,"rotation1":0,"rotation2":-0.45399,"rotation3":0.891007,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105264,"id":181555,"map":545,"orientation":0.95993,"phaseMask":1,"position_x":86.1048,"position_y":-183.557,"position_z":-22.0548,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105265,"id":181555,"map":545,"orientation":0.95993,"phaseMask":1,"position_x":86.1048,"position_y":-183.557,"position_z":-22.0548,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105266,"id":181555,"map":545,"orientation":3.68265,"phaseMask":1,"position_x":-363.759,"position_y":-135.723,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105267,"id":181555,"map":545,"orientation":3.68265,"phaseMask":1,"position_x":-363.759,"position_y":-135.723,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105268,"id":181555,"map":545,"orientation":2.54818,"phaseMask":1,"position_x":-339.412,"position_y":-196.926,"position_z":-5.72056,"rotation0":0,"rotation1":0,"rotation2":0.956305,"rotation3":0.292372,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105269,"id":181555,"map":545,"orientation":2.54818,"phaseMask":1,"position_x":-339.412,"position_y":-196.926,"position_z":-5.72056,"rotation0":0,"rotation1":0,"rotation2":0.956305,"rotation3":0.292372,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105270,"id":181555,"map":545,"orientation":0.750491,"phaseMask":1,"position_x":-200.885,"position_y":-121.075,"position_z":-6.02453,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105271,"id":181555,"map":545,"orientation":0.750491,"phaseMask":1,"position_x":-200.885,"position_y":-121.075,"position_z":-6.02453,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105272,"id":181556,"map":545,"orientation":2.61799,"phaseMask":1,"position_x":-53.296,"position_y":-175.588,"position_z":-20.0281,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105273,"id":181556,"map":545,"orientation":2.61799,"phaseMask":1,"position_x":-53.296,"position_y":-175.588,"position_z":-20.0281,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105274,"id":181556,"map":545,"orientation":2.61799,"phaseMask":1,"position_x":-53.296,"position_y":-175.588,"position_z":-20.0281,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105275,"id":181556,"map":545,"orientation":5.88176,"phaseMask":1,"position_x":4.75688,"position_y":-278.016,"position_z":-8.36647,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105276,"id":181556,"map":545,"orientation":5.88176,"phaseMask":1,"position_x":4.75688,"position_y":-278.016,"position_z":-8.36647,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105277,"id":181556,"map":545,"orientation":5.88176,"phaseMask":1,"position_x":4.75688,"position_y":-278.016,"position_z":-8.36647,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105278,"id":181556,"map":545,"orientation":4.59022,"phaseMask":1,"position_x":84.6738,"position_y":-148.302,"position_z":-21.0814,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105279,"id":181556,"map":545,"orientation":4.59022,"phaseMask":1,"position_x":84.6738,"position_y":-148.302,"position_z":-21.0814,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105280,"id":181556,"map":545,"orientation":4.59022,"phaseMask":1,"position_x":84.6738,"position_y":-148.302,"position_z":-21.0814,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105281,"id":181556,"map":545,"orientation":5.32326,"phaseMask":1,"position_x":-388.828,"position_y":-157.54,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105282,"id":181556,"map":545,"orientation":5.32326,"phaseMask":1,"position_x":-388.828,"position_y":-157.54,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105283,"id":181556,"map":545,"orientation":5.32326,"phaseMask":1,"position_x":-388.828,"position_y":-157.54,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105284,"id":181556,"map":545,"orientation":0.925024,"phaseMask":1,"position_x":-364.504,"position_y":-85.856,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105285,"id":181556,"map":545,"orientation":0.925024,"phaseMask":1,"position_x":-364.504,"position_y":-85.856,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105286,"id":181556,"map":545,"orientation":0.925024,"phaseMask":1,"position_x":-364.504,"position_y":-85.856,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105287,"id":181556,"map":545,"orientation":6.14356,"phaseMask":1,"position_x":-287.925,"position_y":-192.021,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.0697556,"rotation3":0.997564,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105288,"id":181556,"map":545,"orientation":6.14356,"phaseMask":1,"position_x":-287.925,"position_y":-192.021,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.0697556,"rotation3":0.997564,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105289,"id":181556,"map":545,"orientation":6.14356,"phaseMask":1,"position_x":-287.925,"position_y":-192.021,"position_z":-7.75556,"rotation0":0,"rotation1":0,"rotation2":-0.0697556,"rotation3":0.997564,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105290,"id":181556,"map":545,"orientation":3.927,"phaseMask":1,"position_x":-262.357,"position_y":-186.123,"position_z":-7.60742,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105291,"id":181556,"map":545,"orientation":3.927,"phaseMask":1,"position_x":-262.357,"position_y":-186.123,"position_z":-7.60742,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":47871,"animprogress":255,"areaId":3715,"guid":105292,"id":181556,"map":545,"orientation":3.927,"phaseMask":1,"position_x":-262.357,"position_y":-186.123,"position_z":-7.60742,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3715},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150020,"id":184201,"map":545,"orientation":0,"phaseMask":1,"position_x":-23.7936,"position_y":4.42258,"position_z":-2.84397,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150021,"id":184202,"map":545,"orientation":0,"phaseMask":1,"position_x":-23.7936,"position_y":4.42258,"position_z":-2.84397,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/CoilfangPumping":"d44349ea195016461f78cf7026efcf45f87e1cb4c2c8b008f5241cc469b3b10c","patch/World/maps/CoilfangPumping":"f1f70a08f686f3e2099c8c1607491340d83b44898e2c84b57c7e3c85d248391e"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/steamvault/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["17/17 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"underbog","title":"Coilfang: The Underbog","mapId":546,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[60,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Coilfang: The Underbog","theme":"Instanced dungeon","summary":"Fight through Coilfang: The Underbog, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Coilfang: The Underbog...","unchartedAreaName":"Uncharted Coilfang: The Underbog","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":754.815},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/546-coilfangmarsh/visual.glb","checksum":"eff2db311832bab03b470ac4a761aadb9dea946ddc6b8255dff9ae7e493f3046","size":2308872,"triangleCount":28275}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/546-coilfangmarsh/collision.glb","checksum":"878c191c326b8c650c521e295fa052961f10c679fc9bc1aabef9089fc79bf145","size":187548,"triangleCount":16352}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/546-coilfangmarsh/navigation.glb","checksum":"7f238832da85f4ceebdad8590f9d74cf334dd45657b0b763c485935db1748a20","size":414420,"triangleCount":30573}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-557.4189,-22.7177,-1013.6612],"max":[46.8932,170.7496,34.693]},"entrance":{"name":"Coilfang: The Underbog Entrance","footPosition":[-179.5068,75.3823,-469.307],"forward":[0.6706257475679878,0,0.7417958659219378],"yaw":0.7350520237768353},"areas":[{"id":"entrance","name":"Coilfang: The Underbog Entrance","center":[-179.5068,75.3823,-469.307],"radius":35},{"id":"area-hungarfen","name":"Hungarfen's Encounter","center":[-48.4489,115.0015,-841.7322],"radius":42},{"id":"area-ghaz-an","name":"Ghaz'an's Encounter","center":[-363.4729,121.6716,-878.1072],"radius":42},{"id":"area-swamplord-musel-ek","name":"Swamplord Musel'ek's Encounter","center":[-458.3749,107.8389,-574.9372],"radius":42},{"id":"area-the-black-stalker","name":"The Black Stalker's Encounter","center":[-313.2249,105.7814,-443.9804],"radius":42}],"entities":{"entry-17725":{"id":"entry-17725","kind":"mob","name":"Underbog Lurker","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-34161","name":"Wild Growth","spellId":34161,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7393,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"plant","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17754-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.785,"markerRadius":1.4682}}},"entry-17871":{"id":"entry-17871","kind":"mob","name":"Underbog Shambler","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-32329","name":"Itchy Spores","spellId":32329,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6630,"damageMultiplier":1.12},{"id":"spell-34163","name":"Fungal Regrowth","spellId":34163,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6630,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"plant","model":{"url":"/assets/game/dungeons/underbog/creatures/display-16273-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.785,"markerRadius":1.4682}}},"entry-17724":{"id":"entry-17724","kind":"mob","name":"Underbat","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34171","name":"Tentacle Lash","spellId":34171,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5224,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17752-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.4894,"markerRadius":2.6729}}},"entry-17731":{"id":"entry-17731","kind":"mob","name":"Fen Ray","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-19403-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3089,"markerRadius":2.9805}}},"entry-17882":{"id":"entry-17882","kind":"boss","name":"The Black Stalker","title":"Dungeon Boss","hasLoot":true,"combat":{"level":65,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31717","name":"Chain Lightning","spellId":31717,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6590,"damageMultiplier":1.35},{"id":"spell-31704","name":"Levitate","spellId":31704,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6590,"damageMultiplier":1.35},{"id":"spell-31715","name":"Static Charge","spellId":31715,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6590,"damageMultiplier":1.35},{"id":"spell-20279","name":"Summon Player","spellId":20279,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6590,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18194-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0233,"labelHeight":25.8384,"markerRadius":4.5}}},"entry-17734":{"id":"entry-17734","kind":"mob","name":"Underbog Lord","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5999,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}},{"id":"spell-32065","name":"Fungal Decay","spellId":32065,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5999,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"plant","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17758-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0128,"labelHeight":17.9206,"markerRadius":4.5}}},"entry-17723":{"id":"entry-17723","kind":"mob","name":"Bog Giant","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5835,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}},{"id":"spell-32065","name":"Fungal Decay","spellId":32065,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5835,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/creatures/shared/52c8b3aea63f21f8e98ad84eaf601f2918d1df17a05525d41f5b3e17da53c8ff.glb","rotationY":-1.5707963267948966,"groundOffset":0.0102,"labelHeight":14.3365,"markerRadius":4.5}}},"entry-20465":{"id":"entry-20465","kind":"mob","name":"Underbog Frenzy","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-12097","name":"Pierce Armor","spellId":12097,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4147,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"plant","model":{"url":"/assets/game/dungeons/underbog/creatures/display-14528-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.2475,"markerRadius":2.0673}}},"entry-17770":{"id":"entry-17770","kind":"boss","name":"Hungarfen","title":"Dungeon Boss","hasLoot":true,"combat":{"level":65,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.028576000000001,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31673","name":"Foul Spores","spellId":31673,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6618,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17228-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0179,"labelHeight":25.0888,"markerRadius":4.5}}},"entry-17726":{"id":"entry-17726","kind":"mob","name":"Wrathfin Myrmidon","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31410","name":"Coral Cut","spellId":31410,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6445,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18399-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":11.3474,"markerRadius":1.6791}}},"entry-18105":{"id":"entry-18105","kind":"boss","name":"Ghaz'an","title":"Dungeon Boss","hasLoot":true,"combat":{"level":65,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6013,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17528-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0306,"labelHeight":18.2585,"markerRadius":4.5}}},"entry-17728":{"id":"entry-17728","kind":"mob","name":"Murkblood Tribesman","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6559,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}},{"id":"spell-12057","name":"Strike","spellId":12057,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6559,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17756-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0062,"labelHeight":4.8573,"markerRadius":1.2061}}},"entry-17727":{"id":"entry-17727","kind":"mob","name":"Wrathfin Sentry","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":7398,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7398,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18400-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.7197,"labelHeight":12.4821,"markerRadius":1.8471}}},"entry-17771":{"id":"entry-17771","kind":"mob","name":"Murkblood Oracle","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12248","name":"Amplify Damage","spellId":12248,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7020,"damageMultiplier":1.12},{"id":"spell-31405","name":"Corruption","spellId":31405,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7020,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17648-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0046,"labelHeight":3.6083,"markerRadius":0.8959}}},"entry-17729":{"id":"entry-17729","kind":"mob","name":"Murkblood Spearman","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4878,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}},{"id":"spell-22887","name":"Throw","spellId":22887,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4878,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17757-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0051,"labelHeight":4.0246,"markerRadius":0.9993}}},"entry-17735":{"id":"entry-17735","kind":"mob","name":"Wrathfin Warrior","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":6948,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}},{"id":"spell-11976","name":"Strike","spellId":11976,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6948,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18401-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.0034,"labelHeight":7.9432,"markerRadius":1.1754}}},"entry-17730":{"id":"entry-17730","kind":"mob","name":"Murkblood Healer","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-29427","name":"Holy Light","spellId":29427,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5450,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-15585","name":"Prayer of Healing","spellId":15585,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5450,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"murloc","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17755-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0046,"labelHeight":3.6083,"markerRadius":0.8959}}},"entry-17732":{"id":"entry-17732","kind":"mob","name":"Lykul Wasp","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32330","name":"Poison Spit","spellId":32330,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5160,"damageMultiplier":1.12},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5160,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18722-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.6453,"markerRadius":2.7814}}},"entry-19632":{"id":"entry-19632","kind":"mob","name":"Lykul Stinger","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34392","name":"Stinger Rage","spellId":34392,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4878,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-19367-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.968,"markerRadius":4.1721}}},"entry-17885":{"id":"entry-17885","kind":"mob","name":"Earthbinder Rayge","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-17295-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-17827":{"id":"entry-17827","kind":"mob","name":"Claw","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3200,"damageMultiplier":1},{"id":"spell-31429","name":"Echoing Roar","spellId":31429,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":7202,"damageMultiplier":0.62,"radius":8},{"id":"spell-34298","name":"Maul","spellId":34298,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7202,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-2289-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0362,"labelHeight":2.7013,"markerRadius":1.4722}}},"entry-17826":{"id":"entry-17826","kind":"boss","name":"Swamplord Musel'ek","title":"Dungeon Boss","hasLoot":true,"combat":{"level":65,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-31566","name":"Raptor Strike","spellId":31566,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4462,"damageMultiplier":1.35},{"id":"spell-34974","name":"Multi-Shot","spellId":34974,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4462,"damageMultiplier":1.35},{"id":"spell-31567","name":"Deterrence","spellId":31567,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4462,"damageMultiplier":1.35},{"id":"spell-18813","name":"Knock Away","spellId":18813,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4462,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/underbog/creatures/display-18570-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0053,"labelHeight":4.1634,"markerRadius":1.0338}}}},"staticSpawns":[{"id":"creature-138300","entityId":"entry-17725","position":[-223.0981,75.4779,-568.8272],"yaw":-3.63028,"spawnMask":3},{"id":"creature-138301","entityId":"entry-17871","position":[-229.6491,75.4673,-550.8414],"yaw":-2.42601,"spawnMask":3},{"id":"creature-138302","entityId":"entry-17725","position":[-219.1751,75.3708,-617.1182],"yaw":-1.36136,"spawnMask":3},{"id":"creature-138303","entityId":"entry-17871","position":[-231.5129,75.0963,-621.2482],"yaw":-2.51327,"spawnMask":3},{"id":"creature-138304","entityId":"entry-17725","position":[-213.9606,74.9471,-559.9762],"yaw":-2.53073,"spawnMask":3},{"id":"creature-138305","entityId":"entry-17725","position":[-151.7703,73.684,-658.6552],"yaw":-1.69053,"spawnMask":3},{"id":"creature-138306","entityId":"entry-17725","position":[-174.1874,73.6852,-557.7102],"yaw":-0.453786,"spawnMask":3},{"id":"creature-138307","entityId":"entry-17725","position":[-162.572,73.6851,-555.8562],"yaw":-4.7822,"spawnMask":3},{"id":"creature-138308","entityId":"entry-17871","position":[-164.8408,73.6853,-568.9852],"yaw":-1.37881,"spawnMask":3},{"id":"creature-138313","entityId":"entry-17725","position":[-164.9733,73.6849,-636.6072],"yaw":-4.37936,"spawnMask":3},{"id":"creature-138317","entityId":"entry-17725","position":[-175.8723,73.6852,-629.6732],"yaw":-4.36572,"spawnMask":3},{"id":"creature-138319","entityId":"entry-17731","position":[-293.5889,104.3648,-438.5112],"yaw":-2.58309,"spawnMask":3},{"id":"creature-138320","entityId":"entry-17731","position":[-299.9549,104.5452,-451.3908],"yaw":-0.383972,"spawnMask":3},{"id":"creature-138322","entityId":"entry-17731","position":[-316.2739,104.2952,-457.2361],"yaw":-4.67748,"spawnMask":3},{"id":"creature-138323","entityId":"entry-17882","position":[-313.2249,105.7814,-443.9804],"yaw":-4.2237,"spawnMask":3},{"id":"creature-138324","entityId":"entry-17725","position":[-243.4366,73.7343,-698.3522],"yaw":-1.22173,"spawnMask":3},{"id":"creature-138325","entityId":"entry-17725","position":[-153.7976,73.6007,-690.4182],"yaw":-1.55806,"spawnMask":3},{"id":"creature-138326","entityId":"entry-17724","position":[-226.1649,75.402,-608.6692],"yaw":-4.94275,"spawnMask":3},{"id":"creature-138330","entityId":"entry-17724","position":[-149.101,73.6017,-565.1402],"yaw":-4.94091,"spawnMask":3},{"id":"creature-138331","entityId":"entry-17724","position":[-151.1844,73.6017,-570.3472],"yaw":-4.91554,"spawnMask":3},{"id":"creature-138332","entityId":"entry-17725","position":[-117.9162,73.6822,-699.7002],"yaw":-0.471239,"spawnMask":3},{"id":"creature-138333","entityId":"entry-17871","position":[-108.587,73.682,-693.0262],"yaw":-0.977384,"spawnMask":3},{"id":"creature-138334","entityId":"entry-17724","position":[-170.0175,73.6015,-626.1852],"yaw":-0.6916,"spawnMask":3},{"id":"creature-138335","entityId":"entry-17725","position":[-113.8431,73.6822,-710.6252],"yaw":-5.91667,"spawnMask":3},{"id":"creature-138337","entityId":"entry-17723","position":[-180.2848,73.6024,-661.1692],"yaw":-4.59363,"spawnMask":3},{"id":"creature-138339","entityId":"entry-17871","position":[-35.3489,74.2947,-674.7982],"yaw":-3.74792,"spawnMask":3},{"id":"creature-138340","entityId":"entry-17871","position":[-31.2329,74.3319,-676.8542],"yaw":-3.85887,"spawnMask":3},{"id":"creature-138342","entityId":"entry-17724","position":[-196.3513,73.6024,-668.5312],"yaw":-5.49126,"spawnMask":3},{"id":"creature-138343","entityId":"entry-17724","position":[-146.9826,73.6005,-657.3242],"yaw":-2.78146,"spawnMask":3},{"id":"creature-138346","entityId":"entry-17724","position":[-151.6913,73.6005,-680.0182],"yaw":-4.55969,"spawnMask":3},{"id":"creature-138349","entityId":"entry-17724","position":[-230.774,73.6791,-693.6752],"yaw":-4.21724,"spawnMask":3},{"id":"creature-138351","entityId":"entry-17724","position":[-227.4641,73.6587,-703.9092],"yaw":-6.08951,"spawnMask":3},{"id":"creature-138353","entityId":"entry-20465","position":[-201.7775,56.4738,-723.9612],"yaw":-6.00643,"spawnMask":3},{"id":"creature-138354","entityId":"entry-20465","position":[-207.1744,56.4738,-734.7622],"yaw":-0.610912,"spawnMask":3},{"id":"creature-138355","entityId":"entry-20465","position":[-170.7167,56.4738,-738.1622],"yaw":-0.467365,"spawnMask":3},{"id":"creature-138356","entityId":"entry-20465","position":[-279.3339,59.1613,-732.2102],"yaw":-3.66222,"spawnMask":3},{"id":"creature-138357","entityId":"entry-20465","position":[-292.3839,59.9563,-725.1812],"yaw":-3.31704,"spawnMask":3},{"id":"creature-138359","entityId":"entry-20465","position":[-178.6532,56.4738,-757.3032],"yaw":-5.34437,"spawnMask":3},{"id":"creature-138360","entityId":"entry-20465","position":[-153.876,56.9261,-768.9692],"yaw":-0.592655,"spawnMask":3},{"id":"creature-138363","entityId":"entry-20465","position":[-134.5214,56.7724,-773.9402],"yaw":-0.806268,"spawnMask":3},{"id":"creature-138365","entityId":"entry-20465","position":[-121.0747,56.7724,-763.9502],"yaw":-2.00346,"spawnMask":3},{"id":"creature-138367","entityId":"entry-17770","position":[-48.4489,115.0015,-841.7322],"yaw":-1.39626,"spawnMask":3},{"id":"creature-138369","entityId":"entry-20465","position":[-105.5328,56.7724,-784.9702],"yaw":-4.49099,"spawnMask":3},{"id":"creature-138370","entityId":"entry-17724","position":[-78.3106,79.4727,-735.3832],"yaw":-0.329814,"spawnMask":3},{"id":"creature-138371","entityId":"entry-20465","position":[-124.1824,56.7951,-801.8102],"yaw":-2.51131,"spawnMask":3},{"id":"creature-138372","entityId":"entry-17724","position":[-78.3106,79.4727,-735.3832],"yaw":-0.329814,"spawnMask":3},{"id":"creature-138374","entityId":"entry-17724","position":[-175.8674,107.0869,-799.9542],"yaw":-0.968653,"spawnMask":3},{"id":"creature-138375","entityId":"entry-17724","position":[-175.8674,107.0869,-799.9542],"yaw":-0.968653,"spawnMask":3},{"id":"creature-138376","entityId":"entry-17724","position":[-175.8674,107.0869,-799.9542],"yaw":-0.968653,"spawnMask":3},{"id":"creature-138378","entityId":"entry-17723","position":[-71.9041,111.0866,-801.8822],"yaw":-1.65806,"spawnMask":3},{"id":"creature-138380","entityId":"entry-17723","position":[-39.8719,111.4819,-795.2202],"yaw":-0.994838,"spawnMask":3},{"id":"creature-138382","entityId":"entry-20465","position":[-107.9681,57.9495,-848.4802],"yaw":-2.97801,"spawnMask":3},{"id":"creature-138383","entityId":"entry-20465","position":[-94.5712,48.3862,-866.7412],"yaw":-1.16741,"spawnMask":3},{"id":"creature-138384","entityId":"entry-17723","position":[-175.5588,105.1997,-835.8902],"yaw":-0.927696,"spawnMask":3},{"id":"creature-138385","entityId":"entry-20465","position":[-150.1192,50.3835,-854.0612],"yaw":-4.10152,"spawnMask":3},{"id":"creature-138386","entityId":"entry-20465","position":[-186.3529,57.8696,-839.1742],"yaw":-4.10736,"spawnMask":3},{"id":"creature-138387","entityId":"entry-20465","position":[-178.7632,55.7377,-879.1902],"yaw":-3.52745,"spawnMask":3},{"id":"creature-138389","entityId":"entry-20465","position":[-214.425,56.1335,-848.8802],"yaw":-1.05968,"spawnMask":3},{"id":"creature-138390","entityId":"entry-17723","position":[-247.4373,111.4475,-837.6752],"yaw":-6.08462,"spawnMask":3},{"id":"creature-138392","entityId":"entry-18105","position":[-363.4729,121.6716,-878.1072],"yaw":-4.91,"spawnMask":3},{"id":"creature-138393","entityId":"entry-17726","position":[-268.0052,114.6473,-851.9472],"yaw":-5.78121,"spawnMask":3},{"id":"creature-138394","entityId":"entry-20465","position":[-253.0494,57.0085,-854.0542],"yaw":-4.01895,"spawnMask":3},{"id":"creature-138395","entityId":"entry-20465","position":[-284.0349,59.953,-793.9362],"yaw":-1.86689,"spawnMask":3},{"id":"creature-138396","entityId":"entry-20465","position":[-280.8359,59.1613,-757.9142],"yaw":-4.81397,"spawnMask":3},{"id":"creature-138397","entityId":"entry-20465","position":[-310.2539,59.953,-752.1912],"yaw":-4.40045,"spawnMask":3},{"id":"creature-138398","entityId":"entry-20465","position":[-308.3419,59.953,-805.6792],"yaw":-5.04516,"spawnMask":3},{"id":"creature-138399","entityId":"entry-20465","position":[-300.0089,59.953,-842.5372],"yaw":-3.02631,"spawnMask":3},{"id":"creature-138400","entityId":"entry-17728","position":[-348.8269,126.2923,-844.4442],"yaw":-5.18363,"spawnMask":3},{"id":"creature-138401","entityId":"entry-17727","position":[-320.7539,126.7496,-870.8172],"yaw":-2.93215,"spawnMask":3},{"id":"creature-138402","entityId":"entry-17771","position":[-353.6019,126.2913,-840.6892],"yaw":-5.68977,"spawnMask":3},{"id":"creature-138403","entityId":"entry-17728","position":[-352.0929,126.3071,-843.6962],"yaw":-5.39307,"spawnMask":3},{"id":"creature-138404","entityId":"entry-17727","position":[-317.9169,126.7596,-877.9212],"yaw":-2.79253,"spawnMask":3},{"id":"creature-138405","entityId":"entry-20465","position":[-280.1869,51.8002,-886.8502],"yaw":-2.14659,"spawnMask":3},{"id":"creature-138406","entityId":"entry-17729","position":[-341.0749,150.4508,-855.5882],"yaw":-5.91667,"spawnMask":3},{"id":"creature-138407","entityId":"entry-17728","position":[-342.4569,150.5248,-860.4852],"yaw":-5.70723,"spawnMask":3},{"id":"creature-138408","entityId":"entry-17728","position":[-346.9079,126.3953,-865.6092],"yaw":-2.67035,"spawnMask":3},{"id":"creature-138409","entityId":"entry-17726","position":[-356.8839,126.2408,-842.2602],"yaw":-3.80585,"spawnMask":3},{"id":"creature-138410","entityId":"entry-17735","position":[-333.6929,150.5793,-882.3082],"yaw":-0.0698132,"spawnMask":3},{"id":"creature-138412","entityId":"entry-17730","position":[-351.3539,126.4206,-864.0812],"yaw":-2.89725,"spawnMask":3},{"id":"creature-138413","entityId":"entry-17728","position":[-346.0589,150.4942,-852.9472],"yaw":-0.122173,"spawnMask":3},{"id":"creature-138414","entityId":"entry-17771","position":[-328.5649,150.4837,-882.6822],"yaw":0,"spawnMask":3},{"id":"creature-138415","entityId":"entry-17735","position":[-347.2269,150.56,-857.2802],"yaw":-6.16101,"spawnMask":3},{"id":"creature-138416","entityId":"entry-17771","position":[-332.4119,150.5402,-877.9482],"yaw":-0.890118,"spawnMask":3},{"id":"creature-138417","entityId":"entry-17729","position":[-331.2709,126.3453,-892.6442],"yaw":-2.04204,"spawnMask":3},{"id":"creature-138418","entityId":"entry-17728","position":[-336.3479,126.4182,-891.6332],"yaw":-2.04204,"spawnMask":3},{"id":"creature-138419","entityId":"entry-17730","position":[-327.9829,126.3255,-897.2332],"yaw":-1.64061,"spawnMask":3},{"id":"creature-138420","entityId":"entry-17771","position":[-345.5989,126.405,-869.6932],"yaw":-2.9147,"spawnMask":3},{"id":"creature-138421","entityId":"entry-17728","position":[-333.3699,150.594,-888.4062],"yaw":-5.98648,"spawnMask":3},{"id":"creature-138422","entityId":"entry-17735","position":[-332.4899,126.4037,-897.9902],"yaw":-2.35619,"spawnMask":3},{"id":"creature-138424","entityId":"entry-17726","position":[-343.3269,150.663,-881.8152],"yaw":-4.59502,"spawnMask":3},{"id":"creature-138425","entityId":"entry-17730","position":[-366.9549,150.6005,-842.4282],"yaw":-5.09636,"spawnMask":3},{"id":"creature-138426","entityId":"entry-20465","position":[-357.8279,103.3516,-902.4132],"yaw":-1.46744,"spawnMask":3},{"id":"creature-138427","entityId":"entry-20465","position":[-375.2939,114.8447,-869.0882],"yaw":-6.27617,"spawnMask":3},{"id":"creature-138428","entityId":"entry-17771","position":[-371.1389,150.5621,-837.1422],"yaw":-5.96903,"spawnMask":3},{"id":"creature-138429","entityId":"entry-17728","position":[-372.0479,150.6516,-842.3372],"yaw":-5.88176,"spawnMask":3},{"id":"creature-138430","entityId":"entry-20465","position":[-370.1269,81.6198,-868.4962],"yaw":-2.2491,"spawnMask":3},{"id":"creature-138431","entityId":"entry-20465","position":[-380.3409,114.8447,-857.0812],"yaw":-2.46451,"spawnMask":3},{"id":"creature-138432","entityId":"entry-20465","position":[-376.0679,114.8447,-859.4542],"yaw":-2.55844,"spawnMask":3},{"id":"creature-138433","entityId":"entry-20465","position":[-376.4469,81.6198,-869.2722],"yaw":-3.07389,"spawnMask":3},{"id":"creature-138434","entityId":"entry-20465","position":[-391.7929,114.8447,-904.2892],"yaw":-5.60281,"spawnMask":3},{"id":"creature-138435","entityId":"entry-20465","position":[-388.9319,117.4262,-924.9722],"yaw":-3.29408,"spawnMask":3},{"id":"creature-138436","entityId":"entry-20465","position":[-394.3559,81.6198,-898.7472],"yaw":-4.67302,"spawnMask":3},{"id":"creature-138437","entityId":"entry-20465","position":[-402.0149,105.5882,-900.0242],"yaw":-2.29491,"spawnMask":3},{"id":"creature-138438","entityId":"entry-17728","position":[-404.0479,126.3152,-828.1902],"yaw":-0.382828,"spawnMask":3},{"id":"creature-138439","entityId":"entry-20465","position":[-413.0059,104.0551,-903.5942],"yaw":-2.01293,"spawnMask":3},{"id":"creature-138440","entityId":"entry-17728","position":[-404.9139,126.319,-828.1842],"yaw":-0.52073,"spawnMask":3},{"id":"creature-138442","entityId":"entry-17729","position":[-406.4969,126.3153,-827.2902],"yaw":-0.54421,"spawnMask":3},{"id":"creature-138443","entityId":"entry-20465","position":[-384.9979,91.1063,-925.6622],"yaw":-3.3699,"spawnMask":3},{"id":"creature-138444","entityId":"entry-20465","position":[-362.7519,85.4295,-946.9382],"yaw":-2.0469,"spawnMask":3},{"id":"creature-138446","entityId":"entry-20465","position":[-418.6119,111.0645,-904.5242],"yaw":-2.07523,"spawnMask":3},{"id":"creature-138447","entityId":"entry-20465","position":[-415.0329,104.15,-908.9802],"yaw":-2.08277,"spawnMask":3},{"id":"creature-138448","entityId":"entry-20465","position":[-426.5039,84.908,-871.4862],"yaw":-0.72567,"spawnMask":3},{"id":"creature-138449","entityId":"entry-20465","position":[-429.6689,125.1015,-835.5022],"yaw":-2.62365,"spawnMask":3},{"id":"creature-138450","entityId":"entry-20465","position":[-417.9669,70.3578,-836.3892],"yaw":-0.516416,"spawnMask":3},{"id":"creature-138452","entityId":"entry-17728","position":[-430.1399,150.7496,-835.6912],"yaw":-4.04916,"spawnMask":3},{"id":"creature-138453","entityId":"entry-20465","position":[-414.1029,70.3578,-829.7852],"yaw":-5.90524,"spawnMask":3},{"id":"creature-138454","entityId":"entry-17730","position":[-429.2179,150.5175,-820.7812],"yaw":-1.22173,"spawnMask":3},{"id":"creature-138455","entityId":"entry-17728","position":[-440.8679,150.5356,-825.6692],"yaw":-0.296706,"spawnMask":3},{"id":"creature-138456","entityId":"entry-20465","position":[-439.3549,81.6198,-886.5012],"yaw":-0.909695,"spawnMask":3},{"id":"creature-138457","entityId":"entry-20465","position":[-433.2329,104.9835,-914.5032],"yaw":-3.89402,"spawnMask":3},{"id":"creature-138458","entityId":"entry-20465","position":[-455.9809,96.9072,-888.9952],"yaw":-1.80491,"spawnMask":3},{"id":"creature-138459","entityId":"entry-20465","position":[-459.1739,70.3578,-845.3362],"yaw":-2.20384,"spawnMask":3},{"id":"creature-138460","entityId":"entry-20465","position":[-456.1749,104.9835,-890.5282],"yaw":-6.09494,"spawnMask":3},{"id":"creature-138461","entityId":"entry-20465","position":[-379.2559,50.2194,-769.4542],"yaw":-2.76951,"spawnMask":3},{"id":"creature-138462","entityId":"entry-17731","position":[-473.2609,98.6831,-775.7262],"yaw":-2.45959,"spawnMask":3},{"id":"creature-138463","entityId":"entry-17731","position":[-473.2609,98.6831,-775.7262],"yaw":-2.45959,"spawnMask":3},{"id":"creature-138464","entityId":"entry-17731","position":[-470.1439,98.0786,-768.2882],"yaw":-5.53377,"spawnMask":3},{"id":"creature-138465","entityId":"entry-17731","position":[-478.0909,96.992,-767.2172],"yaw":-0.166781,"spawnMask":3},{"id":"creature-138466","entityId":"entry-20465","position":[-417.8169,113.0738,-939.7772],"yaw":-3.27228,"spawnMask":3},{"id":"creature-138467","entityId":"entry-20465","position":[-403.9359,113.0738,-957.9762],"yaw":-3.6116,"spawnMask":3},{"id":"creature-138468","entityId":"entry-20465","position":[-394.4429,81.6198,-943.0712],"yaw":-2.74419,"spawnMask":3},{"id":"creature-138469","entityId":"entry-20465","position":[-394.3659,83.8819,-968.6612],"yaw":-3.11224,"spawnMask":3},{"id":"creature-138470","entityId":"entry-20465","position":[-418.1029,113.0738,-951.0862],"yaw":-3.52672,"spawnMask":3},{"id":"creature-138471","entityId":"entry-20465","position":[-462.5829,81.6198,-919.7472],"yaw":-4.81871,"spawnMask":3},{"id":"creature-138475","entityId":"entry-17731","position":[-466.8579,98.8573,-750.6792],"yaw":-2.99704,"spawnMask":3},{"id":"creature-138476","entityId":"entry-17732","position":[-444.7959,99.3013,-745.3032],"yaw":-2.48241,"spawnMask":3},{"id":"creature-138477","entityId":"entry-19632","position":[-448.4709,100.7857,-740.5602],"yaw":-2.48241,"spawnMask":3},{"id":"creature-138478","entityId":"entry-17885","position":[-466.4899,128.2862,-815.4792],"yaw":-5.5676,"spawnMask":3},{"id":"creature-138480","entityId":"entry-17731","position":[-439.2269,103.9632,-724.6012],"yaw":-2.01385,"spawnMask":3},{"id":"creature-138482","entityId":"entry-17731","position":[-431.0619,102.6685,-720.1022],"yaw":-1.78291,"spawnMask":3},{"id":"creature-138483","entityId":"entry-17731","position":[-437.1399,104.3761,-712.1412],"yaw":-4.32236,"spawnMask":3},{"id":"creature-138484","entityId":"entry-17731","position":[-443.1419,107.5659,-675.8472],"yaw":-2.01795,"spawnMask":3},{"id":"creature-138486","entityId":"entry-17732","position":[-436.7599,106.9973,-671.3342],"yaw":-5.8948,"spawnMask":3},{"id":"creature-138487","entityId":"entry-17731","position":[-441.0289,107.1663,-663.7662],"yaw":-0.156309,"spawnMask":3},{"id":"creature-138490","entityId":"entry-17732","position":[-432.5429,106.623,-663.3242],"yaw":-4.80471,"spawnMask":3},{"id":"creature-138491","entityId":"entry-19632","position":[-440.4949,107.13,-662.4402],"yaw":-4.80471,"spawnMask":3},{"id":"creature-138492","entityId":"entry-17731","position":[-446.4449,106.8879,-641.9562],"yaw":-3.9968,"spawnMask":3},{"id":"creature-138493","entityId":"entry-17731","position":[-442.7699,107.1063,-637.8412],"yaw":-3.64774,"spawnMask":3},{"id":"creature-138494","entityId":"entry-17732","position":[-423.7499,106.3216,-636.8122],"yaw":-4.08117,"spawnMask":3},{"id":"creature-138495","entityId":"entry-17731","position":[-415.0089,104.9723,-636.0552],"yaw":-1.82454,"spawnMask":3},{"id":"creature-138497","entityId":"entry-17731","position":[-418.8759,106.1109,-624.5862],"yaw":-1.22529,"spawnMask":3},{"id":"creature-138499","entityId":"entry-17827","position":[-459.0479,107.9566,-582.8062],"yaw":-2.49582,"spawnMask":3},{"id":"creature-138500","entityId":"entry-17826","position":[-458.3749,107.8389,-574.9372],"yaw":-6.07879,"spawnMask":3},{"id":"creature-138501","entityId":"entry-17731","position":[-390.2169,105.7814,-486.3766],"yaw":-5.8294,"spawnMask":3},{"id":"creature-138507","entityId":"entry-17731","position":[-348.7709,105.0105,-452.6765],"yaw":-4.90438,"spawnMask":3},{"id":"creature-138508","entityId":"entry-17731","position":[-373.0759,105.7814,-460.3279],"yaw":-4.46804,"spawnMask":3},{"id":"creature-138513","entityId":"entry-17731","position":[-329.1899,105.2031,-425.0886],"yaw":-1.90241,"spawnMask":3},{"id":"creature-138514","entityId":"entry-17731","position":[-370.1149,105.7814,-421.2653],"yaw":-0.925025,"spawnMask":3},{"id":"creature-138515","entityId":"entry-17731","position":[-378.8329,105.7814,-424.9876],"yaw":-2.37365,"spawnMask":3},{"id":"creature-138516","entityId":"entry-17731","position":[-370.0219,105.7814,-415.7231],"yaw":-4.50295,"spawnMask":3},{"id":"creature-138518","entityId":"entry-17731","position":[-307.7959,103.387,-413.2376],"yaw":-3.87463,"spawnMask":3}],"roamingPacks":[{"id":"patrol-138309","name":"Underbat Patrol","speed":1.15,"pathId":1383090,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-240.6208,75.3847,-518.2917],[-230.2626,75.3828,-501.6093],[-236.1843,75.3804,-541.6658],[-223.7927,75.3909,-556.9682]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138310","name":"Underbat Patrol","speed":1.15,"pathId":1383100,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-221.2353,75.391,-497.8471],[-234.7316,75.3866,-510.173]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138328","name":"Underbog Lord Patrol","speed":1.15,"pathId":1383280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-330.9179,105.1982,-523.4667],[-322.8189,104.4882,-547.001],[-346.3849,104.6514,-514.4061],[-359.9759,104.7689,-505.6128],[-346.3849,104.6514,-514.4061]],"members":[{"id":"member","entityId":"entry-17734","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138336","name":"Underbat Patrol","speed":1.15,"pathId":1383360,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-223.1287,74.8312,-624.3042],[-205.4026,74.0597,-639.1002],[-187.2771,73.709,-645.5522],[-172.677,73.6016,-638.2032],[-157.9432,73.6017,-603.1582],[-151.7936,73.6017,-570.9182],[-157.9432,73.6017,-603.1582],[-172.677,73.6016,-638.2032],[-187.2771,73.709,-645.5522],[-205.4026,74.0597,-639.1002]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138338","name":"Underbat Patrol","speed":1.15,"pathId":1383380,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-144.5689,73.6003,-663.5902],[-161.0988,73.601,-661.2782],[-160.2019,73.6011,-651.8732],[-145.9277,73.6008,-649.6062],[-144.5689,73.6003,-663.5902],[-161.0988,73.601,-661.2782],[-160.2019,73.6011,-651.8732],[-145.9277,73.6008,-649.6062],[-144.5689,73.6003,-663.5902],[-161.0988,73.601,-661.2782],[-160.2019,73.6011,-651.8732],[-145.9277,73.6008,-649.6062],[-144.5689,73.6003,-663.5902],[-152.8578,73.6004,-667.5202],[-160.2019,73.6011,-651.8732],[-152.9842,73.6011,-647.4282],[-142.1481,73.6005,-655.6232],[-152.8578,73.6004,-667.5202],[-160.2019,73.6011,-651.8732],[-152.9842,73.6011,-647.4282],[-142.1481,73.6005,-655.6232],[-152.8578,73.6004,-667.5202],[-161.0988,73.601,-661.2782],[-152.9842,73.6011,-647.4282],[-142.1481,73.6005,-655.6232]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138345","name":"Underbat Patrol","speed":1.15,"pathId":1383450,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-197.4849,73.8325,-649.2892],[-204.5202,73.6524,-684.5482],[-221.7998,73.6644,-694.3142],[-197.4413,73.6024,-668.3022]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138347","name":"Underbat Patrol","speed":1.15,"pathId":1383470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-151.8038,73.6005,-682.7522],[-148.8069,73.6005,-698.7602],[-163.8052,73.6013,-693.4372],[-148.8069,73.6005,-698.7602],[-157.5632,73.6011,-700.3432],[-160.3597,73.6012,-684.6262],[-145.7256,73.6001,-689.4902],[-148.8069,73.6005,-698.7602],[-163.8052,73.6013,-693.4372],[-160.3597,73.6012,-684.6262],[-145.7256,73.6001,-689.4902],[-148.8069,73.6005,-698.7602],[-163.8052,73.6013,-693.4372],[-151.8038,73.6005,-682.7522],[-145.7256,73.6001,-689.4902],[-157.5632,73.6011,-700.3432],[-163.8052,73.6013,-693.4372],[-151.8038,73.6005,-682.7522],[-145.7256,73.6001,-689.4902],[-157.5632,73.6011,-700.3432],[-160.3597,73.6012,-684.6262]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138361","name":"Bog Giant Patrol","speed":1.15,"pathId":1383610,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-100.1126,73.5986,-681.9722],[-72.8413,73.7589,-680.8122],[-100.1126,73.5986,-681.9722],[-118.9755,73.599,-679.5872]],"members":[{"id":"member","entityId":"entry-17723","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138362","name":"Bog Giant Patrol","speed":1.15,"pathId":1383620,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-148.6823,108.9569,-795.9902],[-171.0044,109.0618,-776.2582],[-197.3911,110.2756,-757.4702],[-171.0044,109.0618,-776.2582]],"members":[{"id":"member","entityId":"entry-17723","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138364","name":"Bog Giant Patrol","speed":1.15,"pathId":1383640,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-77.4907,73.5999,-755.3042],[-110.5987,73.6007,-742.7832],[-127.1717,73.6001,-722.6062],[-110.5987,73.6007,-742.7832]],"members":[{"id":"member","entityId":"entry-17723","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138368","name":"Underbat Patrol","speed":1.15,"pathId":1383680,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-101.5386,74.6079,-724.0642],[-80.0936,78.4703,-739.4362],[-67.5199,80.0902,-740.4272],[-47.1199,84.2575,-735.9042],[-52.8709,90.3468,-721.0562],[-67.5199,80.0902,-740.4272],[-80.0936,78.4703,-739.4362]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138373","name":"Underbat Patrol","speed":1.15,"pathId":1383730,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-158.7765,106.011,-845.7982],[-150.4339,107.9963,-812.9172],[-176.6328,108.0548,-794.7342],[-175.3666,108.8499,-779.5442],[-165.1002,108.8171,-770.6512],[-149.5902,108.6235,-769.3582],[-138.0203,108.9097,-773.2992],[-130.1,109.461,-784.0222],[-129.0939,109.9351,-798.9632],[-134.4808,109.5662,-813.5082],[-142.4724,110.1401,-833.6552],[-160.1443,106.2677,-830.6082],[-163.9834,106.2619,-812.8952],[-182.6768,105.5625,-806.0882],[-196.3427,105.3857,-819.0822],[-195.089,105.7042,-840.7992],[-182.8652,105.5047,-856.5692]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138379","name":"Underbat Patrol","speed":1.15,"pathId":1383790,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-18.3339,73.1104,-739.1072],[-22.3399,73.6749,-719.0432],[-26.7659,74.2596,-680.7502],[-40.6399,74.2416,-668.7702],[-26.7659,74.2596,-680.7502],[-22.3399,73.6749,-719.0432]],"members":[{"id":"member","entityId":"entry-17724","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138388","name":"Bog Giant Patrol","speed":1.15,"pathId":1383880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-189.237,110.0284,-761.7422],[-212.2698,110.8264,-746.8772],[-238.0541,110.2179,-737.2532],[-258.6365,110.2643,-739.1222],[-266.7574,110.6647,-764.4702],[-271.2179,111.1135,-797.7722],[-262.8604,111.3512,-813.4392],[-271.2179,111.1135,-797.7722],[-266.7574,110.6647,-764.4702],[-258.6365,110.2643,-739.1222],[-238.0541,110.2179,-737.2532],[-212.2698,110.8264,-746.8772]],"members":[{"id":"member","entityId":"entry-17723","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138391","name":"Wrathfin Myrmidon Patrol","speed":1.15,"pathId":1383910,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-260.3139,112.3736,-844.8732],[-269.2082,114.6925,-849.7552],[-285.7539,120.658,-857.3752],[-311.3719,126.7367,-869.7352],[-285.7539,120.658,-857.3752],[-269.2082,114.6925,-849.7552]],"members":[{"id":"member","entityId":"entry-17726","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138411","name":"Wrathfin Myrmidon Patrol","speed":1.15,"pathId":1384110,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-372.4349,126.2589,-833.8952],[-358.7339,126.2689,-844.6232],[-335.3839,126.2428,-870.8142],[-330.8549,126.2239,-885.6242],[-335.3839,126.2428,-870.8142],[-358.7339,126.2689,-844.6232]],"members":[{"id":"member","entityId":"entry-17726","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138423","name":"Wrathfin Myrmidon Patrol","speed":1.15,"pathId":1384230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-358.2729,150.6404,-857.2712],[-341.3339,150.6093,-877.3382],[-334.4719,150.6233,-905.3742],[-341.3339,150.6093,-877.3382]],"members":[{"id":"member","entityId":"entry-17726","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138445","name":"Wrathfin Warrior Patrol","speed":1.15,"pathId":1384450,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-406.9209,126.3141,-827.0332],[-397.0299,126.3256,-831.6522],[-383.8899,126.2836,-833.1082],[-374.2079,126.2537,-831.9962],[-383.8899,126.2836,-833.1082],[-397.0299,126.3256,-831.6522]],"members":[{"id":"member","entityId":"entry-17735","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138451","name":"Wrathfin Warrior Patrol","speed":1.15,"pathId":1384510,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-441.8739,150.2836,-834.1512],[-434.7699,150.2948,-830.2282],[-426.4039,150.4053,-827.6512],[-419.8519,150.3085,-820.2742],[-426.4039,150.4053,-827.6512],[-434.7699,150.2948,-830.2282]],"members":[{"id":"member","entityId":"entry-17735","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138473","name":"Fen Ray Patrol","speed":1.15,"pathId":1384730,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-496.6189,100.4579,-785.6272],[-510.5179,106.7874,-799.0152],[-512.4189,110.5256,-809.9322],[-496.5609,104.4128,-794.3812],[-473.1019,98.8262,-776.6772],[-470.2479,97.8528,-767.3562],[-480.1389,98.0435,-773.7692],[-496.6189,100.4579,-785.6272],[-510.5179,106.7874,-799.0152],[-512.4189,110.5256,-809.9322],[-504.7569,108.0162,-803.9122],[-496.5609,104.4128,-794.3812],[-473.1019,98.8262,-776.6772],[-469.5479,98.6429,-772.5632],[-480.1389,98.0435,-773.7692]],"members":[{"id":"member","entityId":"entry-17731","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138479","name":"Lykul Wasp Patrol","speed":1.15,"pathId":1384790,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-436.1219,106.9132,-673.3842],[-439.4249,105.6234,-694.0382],[-435.7619,102.6759,-724.1102],[-446.6339,99.981,-742.9312],[-473.0719,97.0087,-763.4162],[-446.6339,99.981,-742.9312],[-435.7619,102.6759,-724.1102],[-439.4249,105.6234,-694.0382]],"members":[{"id":"member","entityId":"entry-17732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138488","name":"Lykul Wasp Patrol","speed":1.15,"pathId":1384880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-438.4549,106.3725,-683.7882],[-435.2089,106.6236,-648.7332],[-421.4439,106.7525,-615.0092],[-435.2089,106.6236,-648.7332]],"members":[{"id":"member","entityId":"entry-17732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138498","name":"Underbog Lord Patrol","speed":1.15,"pathId":1384980,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-386.8479,104.8887,-584.6212],[-363.4079,106.6609,-586.6712],[-339.3389,106.4716,-588.8962],[-328.3229,110.4183,-620.5252],[-339.3389,106.4716,-588.8962],[-363.4079,106.6609,-586.6712]],"members":[{"id":"member","entityId":"entry-17734","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-138367","name":"Hungarfen","position":[-48.4489,115.0015,-841.7322]},{"id":"creature-138392","name":"Ghaz'an","position":[-363.4729,121.6716,-878.1072]},{"id":"creature-138500","name":"Swamplord Musel'ek","position":[-458.3749,107.8389,-574.9372]},{"id":"creature-138323","name":"The Black Stalker","position":[-313.2249,105.7814,-443.9804]}],"objectiveOrder":[{"id":"creature-138367","name":"Hungarfen","position":[-48.4489,115.0015,-841.7322]},{"id":"creature-138392","name":"Ghaz'an","position":[-363.4729,121.6716,-878.1072]},{"id":"creature-138500","name":"Swamplord Musel'ek","position":[-458.3749,107.8389,-574.9372]},{"id":"creature-138323","name":"The Black Stalker","position":[-313.2249,105.7814,-443.9804]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":21509,"id":182054,"map":546,"orientation":5.13311,"phaseMask":1,"position_x":-90.528,"position_y":-401.925,"position_z":36.1527,"rotation0":0,"rotation1":0,"rotation2":0.543866,"rotation3":-0.839172,"spawnMask":3,"spawntimesecs":360,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104330,"id":181270,"map":546,"orientation":4.03171,"phaseMask":1,"position_x":93.5056,"position_y":-248.733,"position_z":-4.49002,"rotation0":0,"rotation1":0,"rotation2":-0.902585,"rotation3":0.430512,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104331,"id":181270,"map":546,"orientation":1.65806,"phaseMask":1,"position_x":137.237,"position_y":-105.671,"position_z":25.2929,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104332,"id":181270,"map":546,"orientation":1.95477,"phaseMask":1,"position_x":203.842,"position_y":27.0237,"position_z":27.5625,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559193,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104333,"id":181270,"map":546,"orientation":0.488691,"phaseMask":1,"position_x":-90.7205,"position_y":-420.499,"position_z":36.0739,"rotation0":0,"rotation1":0,"rotation2":0.241921,"rotation3":0.970296,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104334,"id":181270,"map":546,"orientation":1.78023,"phaseMask":1,"position_x":182.117,"position_y":-143.183,"position_z":29.97,"rotation0":0,"rotation1":0,"rotation2":0.777145,"rotation3":0.629321,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104335,"id":181270,"map":546,"orientation":3.24635,"phaseMask":1,"position_x":272.366,"position_y":-119.92,"position_z":29.8515,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523532,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104336,"id":181270,"map":546,"orientation":4.53786,"phaseMask":1,"position_x":61.0071,"position_y":-373.113,"position_z":33.0967,"rotation0":0,"rotation1":0,"rotation2":-0.766044,"rotation3":0.642789,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104337,"id":181278,"map":546,"orientation":5.02655,"phaseMask":1,"position_x":-2.68117,"position_y":-315.83,"position_z":30.7248,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104338,"id":181278,"map":546,"orientation":4.20625,"phaseMask":1,"position_x":-116.675,"position_y":-210.801,"position_z":-3.94286,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104339,"id":181278,"map":546,"orientation":3.15906,"phaseMask":1,"position_x":62.9603,"position_y":-139.88,"position_z":-2.75016,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104340,"id":181278,"map":546,"orientation":6.23083,"phaseMask":1,"position_x":348.62,"position_y":-457.65,"position_z":27.2505,"rotation0":0,"rotation1":0,"rotation2":-0.0261765,"rotation3":0.999657,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104341,"id":181278,"map":546,"orientation":2.63544,"phaseMask":1,"position_x":-91.5404,"position_y":-300.066,"position_z":-4.53596,"rotation0":0,"rotation1":0,"rotation2":0.968147,"rotation3":0.250381,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104342,"id":181278,"map":546,"orientation":5.58505,"phaseMask":1,"position_x":72.7041,"position_y":-270.414,"position_z":32.2554,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104343,"id":181278,"map":546,"orientation":1.46608,"phaseMask":1,"position_x":-9.05861,"position_y":-93.5046,"position_z":-4.53404,"rotation0":0,"rotation1":0,"rotation2":0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104344,"id":181278,"map":546,"orientation":5.60251,"phaseMask":1,"position_x":15.0907,"position_y":-397.518,"position_z":27.3274,"rotation0":0,"rotation1":0,"rotation2":-0.333807,"rotation3":0.942641,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104345,"id":181278,"map":546,"orientation":0.296705,"phaseMask":1,"position_x":346.822,"position_y":-359.794,"position_z":34.2163,"rotation0":0,"rotation1":0,"rotation2":0.147809,"rotation3":0.989016,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104346,"id":181278,"map":546,"orientation":5.16618,"phaseMask":1,"position_x":-57.5731,"position_y":-223.815,"position_z":-4.5367,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104347,"id":181278,"map":546,"orientation":1.37881,"phaseMask":1,"position_x":24.3616,"position_y":-368.393,"position_z":27.2573,"rotation0":0,"rotation1":0,"rotation2":0.636078,"rotation3":0.771625,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104348,"id":181278,"map":546,"orientation":1.43117,"phaseMask":1,"position_x":-160.595,"position_y":-274.614,"position_z":-4.72734,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104349,"id":181278,"map":546,"orientation":3.56047,"phaseMask":1,"position_x":356.161,"position_y":-519.471,"position_z":31.7733,"rotation0":0,"rotation1":0,"rotation2":-0.978148,"rotation3":0.207912,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104350,"id":181278,"map":546,"orientation":2.87979,"phaseMask":1,"position_x":33.0805,"position_y":-170.199,"position_z":-3.80013,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104351,"id":181278,"map":546,"orientation":2.89725,"phaseMask":1,"position_x":77.4358,"position_y":-75.2255,"position_z":-2.75669,"rotation0":0,"rotation1":0,"rotation2":0.992546,"rotation3":0.12187,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104352,"id":183385,"map":546,"orientation":0.558504,"phaseMask":1,"position_x":-145.452,"position_y":-217.687,"position_z":-3.40478,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104353,"id":183385,"map":546,"orientation":4.76475,"phaseMask":1,"position_x":80.5045,"position_y":-70.984,"position_z":-2.75813,"rotation0":0,"rotation1":0,"rotation2":-0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104354,"id":183385,"map":546,"orientation":3.80482,"phaseMask":1,"position_x":52.3858,"position_y":-188.325,"position_z":-4.27433,"rotation0":0,"rotation1":0,"rotation2":-0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104355,"id":183385,"map":546,"orientation":3.64774,"phaseMask":1,"position_x":-92.5955,"position_y":-254.416,"position_z":23.0712,"rotation0":0,"rotation1":0,"rotation2":-0.968147,"rotation3":0.250381,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104356,"id":183385,"map":546,"orientation":0.174532,"phaseMask":1,"position_x":295.075,"position_y":-124.002,"position_z":29.7138,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104357,"id":183385,"map":546,"orientation":4.27606,"phaseMask":1,"position_x":257.251,"position_y":-263.907,"position_z":24.6426,"rotation0":0,"rotation1":0,"rotation2":-0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104358,"id":183385,"map":546,"orientation":1.23918,"phaseMask":1,"position_x":22.0234,"position_y":-339.981,"position_z":29.1816,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104359,"id":183385,"map":546,"orientation":1.46608,"phaseMask":1,"position_x":246.218,"position_y":-232.518,"position_z":25.9543,"rotation0":0,"rotation1":0,"rotation2":0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104360,"id":183385,"map":546,"orientation":5.07891,"phaseMask":1,"position_x":-98.4295,"position_y":-312.399,"position_z":-3.89505,"rotation0":0,"rotation1":0,"rotation2":-0.566406,"rotation3":0.824126,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104361,"id":183385,"map":546,"orientation":1.74533,"phaseMask":1,"position_x":74.1957,"position_y":-402.898,"position_z":33.6921,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104362,"id":183385,"map":546,"orientation":3.00195,"phaseMask":1,"position_x":-66.7795,"position_y":-240.119,"position_z":-4.53713,"rotation0":0,"rotation1":0,"rotation2":0.997563,"rotation3":0.0697661,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104363,"id":183385,"map":546,"orientation":0.994837,"phaseMask":1,"position_x":144.881,"position_y":-69.8086,"position_z":27.4349,"rotation0":0,"rotation1":0,"rotation2":0.477159,"rotation3":0.878817,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104364,"id":183385,"map":546,"orientation":1.20428,"phaseMask":1,"position_x":97.2424,"position_y":-216.338,"position_z":30.534,"rotation0":0,"rotation1":0,"rotation2":0.566406,"rotation3":0.824126,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104365,"id":183385,"map":546,"orientation":4.08407,"phaseMask":1,"position_x":-23.6591,"position_y":-109.071,"position_z":-4.53406,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104366,"id":183385,"map":546,"orientation":5.18363,"phaseMask":1,"position_x":1.73994,"position_y":-246.563,"position_z":-4.53322,"rotation0":0,"rotation1":0,"rotation2":-0.522498,"rotation3":0.85264,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104367,"id":183385,"map":546,"orientation":1.22173,"phaseMask":1,"position_x":116.041,"position_y":4.26817,"position_z":27.5625,"rotation0":0,"rotation1":0,"rotation2":0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104368,"id":183385,"map":546,"orientation":4.18879,"phaseMask":1,"position_x":105.351,"position_y":-295.466,"position_z":32.2288,"rotation0":0,"rotation1":0,"rotation2":-0.866025,"rotation3":0.500001,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104369,"id":183385,"map":546,"orientation":4.36332,"phaseMask":1,"position_x":57.5122,"position_y":-228.652,"position_z":-4.47403,"rotation0":0,"rotation1":0,"rotation2":-0.819152,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104370,"id":183385,"map":546,"orientation":1.65806,"phaseMask":1,"position_x":-151.674,"position_y":-308.373,"position_z":-4.80901,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104371,"id":183385,"map":546,"orientation":1.72787,"phaseMask":1,"position_x":329.194,"position_y":-478.867,"position_z":50.5704,"rotation0":0,"rotation1":0,"rotation2":0.760406,"rotation3":0.649449,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104372,"id":181275,"map":546,"orientation":3.89209,"phaseMask":1,"position_x":146.34,"position_y":-150.24,"position_z":30.7501,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104373,"id":181276,"map":546,"orientation":3.89209,"phaseMask":1,"position_x":146.34,"position_y":-150.24,"position_z":30.7501,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104374,"id":181275,"map":546,"orientation":1.43117,"phaseMask":1,"position_x":346.318,"position_y":-336.01,"position_z":28.1087,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104375,"id":181276,"map":546,"orientation":1.43117,"phaseMask":1,"position_x":346.318,"position_y":-336.01,"position_z":28.1087,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104376,"id":181275,"map":546,"orientation":2.70526,"phaseMask":1,"position_x":278.916,"position_y":-236.037,"position_z":29.1704,"rotation0":0,"rotation1":0,"rotation2":0.976295,"rotation3":0.216442,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104377,"id":181276,"map":546,"orientation":2.70526,"phaseMask":1,"position_x":278.916,"position_y":-236.037,"position_z":29.1704,"rotation0":0,"rotation1":0,"rotation2":0.976295,"rotation3":0.216442,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104378,"id":181275,"map":546,"orientation":3.45576,"phaseMask":1,"position_x":309.742,"position_y":-299.783,"position_z":21.0056,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104379,"id":181276,"map":546,"orientation":3.45576,"phaseMask":1,"position_x":309.742,"position_y":-299.783,"position_z":21.0056,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104380,"id":181275,"map":546,"orientation":4.03171,"phaseMask":1,"position_x":376.429,"position_y":-453.141,"position_z":33.1995,"rotation0":0,"rotation1":0,"rotation2":-0.902585,"rotation3":0.430512,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104381,"id":181276,"map":546,"orientation":4.03171,"phaseMask":1,"position_x":376.429,"position_y":-453.141,"position_z":33.1995,"rotation0":0,"rotation1":0,"rotation2":-0.902585,"rotation3":0.430512,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104382,"id":181275,"map":546,"orientation":3.00195,"phaseMask":1,"position_x":58.3593,"position_y":-28.0166,"position_z":20.8195,"rotation0":0,"rotation1":0,"rotation2":0.997563,"rotation3":0.0697661,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104383,"id":181276,"map":546,"orientation":3.00195,"phaseMask":1,"position_x":58.3593,"position_y":-28.0166,"position_z":20.8195,"rotation0":0,"rotation1":0,"rotation2":0.997563,"rotation3":0.0697661,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104384,"id":181275,"map":546,"orientation":3.50812,"phaseMask":1,"position_x":136.348,"position_y":53.4126,"position_z":27.5625,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104385,"id":181276,"map":546,"orientation":3.50812,"phaseMask":1,"position_x":136.348,"position_y":53.4126,"position_z":27.5625,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104386,"id":181556,"map":546,"orientation":3.97935,"phaseMask":1,"position_x":-36.6434,"position_y":-199.135,"position_z":-4.53535,"rotation0":0,"rotation1":0,"rotation2":-0.913545,"rotation3":0.406738,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104387,"id":181569,"map":546,"orientation":3.97935,"phaseMask":1,"position_x":-36.6434,"position_y":-199.135,"position_z":-4.53535,"rotation0":0,"rotation1":0,"rotation2":-0.913545,"rotation3":0.406738,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104388,"id":181557,"map":546,"orientation":3.97935,"phaseMask":1,"position_x":-36.6434,"position_y":-199.135,"position_z":-4.53535,"rotation0":0,"rotation1":0,"rotation2":-0.913545,"rotation3":0.406738,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104389,"id":181556,"map":546,"orientation":3.85718,"phaseMask":1,"position_x":288.463,"position_y":-222.083,"position_z":34.2095,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.35021,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104390,"id":181569,"map":546,"orientation":3.85718,"phaseMask":1,"position_x":288.463,"position_y":-222.083,"position_z":34.2095,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.35021,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104391,"id":181557,"map":546,"orientation":3.85718,"phaseMask":1,"position_x":288.463,"position_y":-222.083,"position_z":34.2095,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.35021,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104392,"id":181556,"map":546,"orientation":4.08407,"phaseMask":1,"position_x":272.727,"position_y":-307.432,"position_z":22.2222,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104393,"id":181569,"map":546,"orientation":4.08407,"phaseMask":1,"position_x":272.727,"position_y":-307.432,"position_z":22.2222,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104394,"id":181557,"map":546,"orientation":4.08407,"phaseMask":1,"position_x":272.727,"position_y":-307.432,"position_z":22.2222,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104395,"id":181556,"map":546,"orientation":5.25344,"phaseMask":1,"position_x":-157.746,"position_y":-233.748,"position_z":-3.59433,"rotation0":0,"rotation1":0,"rotation2":-0.492423,"rotation3":0.870356,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104396,"id":181569,"map":546,"orientation":5.25344,"phaseMask":1,"position_x":-157.746,"position_y":-233.748,"position_z":-3.59433,"rotation0":0,"rotation1":0,"rotation2":-0.492423,"rotation3":0.870356,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104397,"id":181557,"map":546,"orientation":5.25344,"phaseMask":1,"position_x":-157.746,"position_y":-233.748,"position_z":-3.59433,"rotation0":0,"rotation1":0,"rotation2":-0.492423,"rotation3":0.870356,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104398,"id":181556,"map":546,"orientation":0.174532,"phaseMask":1,"position_x":15.6076,"position_y":-257.257,"position_z":-30.4535,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104399,"id":181569,"map":546,"orientation":0.174532,"phaseMask":1,"position_x":15.6076,"position_y":-257.257,"position_z":-30.4535,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104400,"id":181557,"map":546,"orientation":0.174532,"phaseMask":1,"position_x":15.6076,"position_y":-257.257,"position_z":-30.4535,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104401,"id":181556,"map":546,"orientation":5.3058,"phaseMask":1,"position_x":-121.527,"position_y":-204.633,"position_z":-3.71037,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104402,"id":181569,"map":546,"orientation":5.3058,"phaseMask":1,"position_x":-121.527,"position_y":-204.633,"position_z":-3.71037,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104403,"id":181557,"map":546,"orientation":5.3058,"phaseMask":1,"position_x":-121.527,"position_y":-204.633,"position_z":-3.71037,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104404,"id":181556,"map":546,"orientation":2.16421,"phaseMask":1,"position_x":69.0821,"position_y":-220.409,"position_z":-4.42387,"rotation0":0,"rotation1":0,"rotation2":0.882947,"rotation3":0.469473,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104405,"id":181569,"map":546,"orientation":2.16421,"phaseMask":1,"position_x":69.0821,"position_y":-220.409,"position_z":-4.42387,"rotation0":0,"rotation1":0,"rotation2":0.882947,"rotation3":0.469473,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104406,"id":181557,"map":546,"orientation":2.16421,"phaseMask":1,"position_x":69.0821,"position_y":-220.409,"position_z":-4.42387,"rotation0":0,"rotation1":0,"rotation2":0.882947,"rotation3":0.469473,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104407,"id":181556,"map":546,"orientation":6.21337,"phaseMask":1,"position_x":269.613,"position_y":-160.235,"position_z":31.2132,"rotation0":0,"rotation1":0,"rotation2":-0.0348988,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104408,"id":181569,"map":546,"orientation":6.21337,"phaseMask":1,"position_x":269.613,"position_y":-160.235,"position_z":31.2132,"rotation0":0,"rotation1":0,"rotation2":-0.0348988,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104409,"id":181557,"map":546,"orientation":6.21337,"phaseMask":1,"position_x":269.613,"position_y":-160.235,"position_z":31.2132,"rotation0":0,"rotation1":0,"rotation2":-0.0348988,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104410,"id":181556,"map":546,"orientation":5.02655,"phaseMask":1,"position_x":-72.0217,"position_y":-249.287,"position_z":-0.160408,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104411,"id":181569,"map":546,"orientation":5.02655,"phaseMask":1,"position_x":-72.0217,"position_y":-249.287,"position_z":-0.160408,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3716,"guid":104412,"id":181557,"map":546,"orientation":5.02655,"phaseMask":1,"position_x":-72.0217,"position_y":-249.287,"position_z":-0.160408,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3716},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150016,"id":184200,"map":546,"orientation":5.3513,"phaseMask":1,"position_x":6.033,"position_y":-12.38,"position_z":-2.7533,"rotation0":0,"rotation1":0,"rotation2":0.449265,"rotation3":-0.893398,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150017,"id":184199,"map":546,"orientation":5.3513,"phaseMask":1,"position_x":6.033,"position_y":-12.38,"position_z":-2.7533,"rotation0":0,"rotation1":0,"rotation2":0.449265,"rotation3":-0.893398,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/CoilfangMarsh":"4c34ee4eee76a1043c55f07b04c7ecc0cf0a98cc330823c89c8de23166e99b79","patch/World/maps/CoilfangMarsh":"93902e79ef0b50cec0fb1345017e3650b6357daeeafacddd2aafb48c14d16922"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/underbog/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["22/22 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"slave-pens","title":"Coilfang: The Slave Pens","mapId":547,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[60,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Coilfang: The Slave Pens","theme":"Instanced dungeon","summary":"Fight through Coilfang: The Slave Pens, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Coilfang: The Slave Pens...","unchartedAreaName":"Uncharted Coilfang: The Slave Pens","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":872.356},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/547-coilfangdraenei/visual.glb","checksum":"8c9b4f788a322082e6abdfc4d1cd4dd75984deb02140ea1fa0c4cc4efc245509","size":2234364,"triangleCount":47254}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/547-coilfangdraenei/collision.glb","checksum":"7afe7f72ebcd5a8d9402f63cd1d36adedadb374bf10dfa798f5c6320abddd6a6","size":387756,"triangleCount":36710}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/547-coilfangdraenei/navigation.glb","checksum":"86f3888f0599202273821f7ee75a29d65efff22c1bbb9d3ff00b280b485a667f","size":300600,"triangleCount":22696}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-152.9088,-23.1081,-1154.9185],"max":[367.3512,116.7903,56.687]},"entrance":{"name":"Coilfang: The Slave Pens Entrance","footPosition":[-92.2538,14.6919,-442.2965],"forward":[0.5115124086912863,0,0.8592758903605049],"yaw":0.5369439668088408},"areas":[{"id":"entrance","name":"Coilfang: The Slave Pens Entrance","center":[-92.2538,14.6919,-442.2965],"radius":35},{"id":"area-mennu-the-betrayer","name":"Mennu the Betrayer's Encounter","center":[-21.6291,18.529,-690.5585],"radius":42},{"id":"area-rokmar-the-crackler","name":"Rokmar the Crackler's Encounter","center":[9.526,18.5493,-758.7875],"radius":42},{"id":"area-quagmirran","name":"Quagmirran's Encounter","center":[308.9432,24.8955,-977.4775],"radius":42}],"entities":{"entry-40446":{"id":"entry-40446","kind":"mob","name":"Skar'this the Summoner","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-20990-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":11.3474,"markerRadius":1.6791}}},"entry-17938":{"id":"entry-17938","kind":"mob","name":"Coilfang Observer","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-37668","name":"Immolate","spellId":37668,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5409,"damageMultiplier":1.12},{"id":"spell-37666","name":"Heavy Dynamite","spellId":37666,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5409,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18390-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.218,"labelHeight":8.5105,"markerRadius":1.2594}}},"entry-17962":{"id":"entry-17962","kind":"mob","name":"Coilfang Collaborator","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-33787","name":"Cripple","spellId":33787,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7284,"damageMultiplier":1.12},{"id":"spell-19130","name":"Revenge","spellId":19130,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7284,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18302-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0048,"labelHeight":3.747,"markerRadius":0.9304}}},"entry-17963":{"id":"entry-17963","kind":"mob","name":"Wastewalker Slave","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17956-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0044,"labelHeight":3.4695,"markerRadius":0.8615}}},"entry-17964":{"id":"entry-17964","kind":"mob","name":"Wastewalker Worker","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18301-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0044,"labelHeight":3.4695,"markerRadius":0.8615}}},"entry-17959":{"id":"entry-17959","kind":"mob","name":"Coilfang Slavehandler","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-9080","name":"Hamstring","spellId":9080,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12},{"id":"spell-16172","name":"Head Crack","spellId":16172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6343,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18393-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.7543,"labelHeight":9.929,"markerRadius":1.4693}}},"entry-17960":{"id":"entry-17960","kind":"mob","name":"Coilfang Soothsayer","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30923","name":"Domination","spellId":30923,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6979,"damageMultiplier":1.12},{"id":"spell-31555","name":"Decayed Intellect","spellId":31555,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6979,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18395-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-17957":{"id":"entry-17957","kind":"mob","name":"Coilfang Champion","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4919,"damageMultiplier":0.62,"radius":8},{"id":"spell-16145","name":"Sunder Armor","spellId":16145,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4919,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18384-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.218,"labelHeight":8.5105,"markerRadius":1.2594}}},"entry-17961":{"id":"entry-17961","kind":"mob","name":"Coilfang Enchantress","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32173","name":"Entangling Roots","spellId":32173,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":7453,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-15234","name":"Lightning Bolt","spellId":15234,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7453,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-17940":{"id":"entry-17940","kind":"mob","name":"Coilfang Technician","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31581","name":"Blizzard","spellId":31581,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":4286,"damageMultiplier":0.62,"radius":8},{"id":"spell-16005","name":"Rain of Fire","spellId":16005,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4286,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18397-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.7543,"labelHeight":9.929,"markerRadius":1.4693}}},"entry-17991":{"id":"entry-17991","kind":"boss","name":"Rokmar the Crackler","title":"Dungeon Boss","hasLoot":true,"combat":{"level":64,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31956","name":"Grievous Wound","spellId":31956,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5289,"damageMultiplier":1.35},{"id":"spell-31948","name":"Ensnaring Moss","spellId":31948,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5289,"damageMultiplier":1.35},{"id":"spell-35008","name":"Water Spit","spellId":35008,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":5289,"damageMultiplier":1.35},{"id":"spell-34970","name":"Frenzy","spellId":34970,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5289,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-34970","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.6731,"labelHeight":20.1432,"markerRadius":4.5}}},"entry-17941":{"id":"entry-17941","kind":"boss","name":"Mennu the Betrayer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":63,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-35010","name":"Lightning Bolt","spellId":35010,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5100,"damageMultiplier":1.35},{"id":"spell-31981","name":"Tainted Earthgrab Totem","spellId":31981,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5100,"damageMultiplier":1.35},{"id":"spell-31985","name":"Tainted Stoneskin Totem","spellId":31985,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5100,"damageMultiplier":1.35},{"id":"spell-34980","name":"Mennu's Healing Ward","spellId":34980,"delivery":"projectile","target":"lowest-health-friendly","school":"physical","animation":"cast","range":28,"cooldownMs":5100,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17728-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":5.5512,"markerRadius":1.3784}}},"entry-21127":{"id":"entry-21127","kind":"mob","name":"Coilfang Tempest","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-20100-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.5398,"labelHeight":9.3616,"markerRadius":1.3853}}},"entry-21126":{"id":"entry-21126","kind":"mob","name":"Coilfang Scale-Healer","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34945","name":"Heal","spellId":34945,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5319,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-34944","name":"Holy Nova","spellId":34944,"delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5319,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-20099-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7889,"labelHeight":7.4207,"markerRadius":1.4329}}},"entry-17958":{"id":"entry-17958","kind":"mob","name":"Coilfang Defender","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15655","name":"Shield Slam","spellId":15655,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5702,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-15655","durationMs":8000,"magnitude":0.15}},{"id":"spell-31554","name":"Spell Reflection","spellId":31554,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5702,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-31554","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18387-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":11.3474,"markerRadius":1.6791}}},"entry-21128":{"id":"entry-21128","kind":"mob","name":"Coilfang Ray","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-20098-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.8294,"markerRadius":1.4903}}},"entry-17817":{"id":"entry-17817","kind":"mob","name":"Greater Bogstrok","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31552","name":"Decayed Strength","spellId":31552,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7019,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17101-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1346,"labelHeight":4.0286,"markerRadius":1.6169}}},"entry-17890":{"id":"entry-17890","kind":"mob","name":"Weeder Greenthumb","combat":{"level":63,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17300-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0534,"labelHeight":2.7321,"markerRadius":0.6724}}},"entry-17893":{"id":"entry-17893","kind":"mob","name":"Naturalist Bite","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17301-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-17816":{"id":"entry-17816","kind":"mob","name":"Bogstrok","combat":{"level":62,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31551","name":"Piercing Jab","spellId":31551,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6248,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"plant","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-17106-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1346,"labelHeight":4.0286,"markerRadius":1.6169}}},"entry-17942":{"id":"entry-17942","kind":"boss","name":"Quagmirran","title":"Dungeon Boss","hasLoot":true,"combat":{"level":64,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3000,"damageMultiplier":1},{"id":"spell-38163","name":"Acid Spray","spellId":38163,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4504,"damageMultiplier":1.35},{"id":"spell-40504","name":"Cleave","spellId":40504,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":4504,"damageMultiplier":0.82,"radius":11},{"id":"spell-34780","name":"Poison Bolt Volley","spellId":34780,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":4504,"damageMultiplier":0.82,"radius":11},{"id":"spell-32055","name":"Uppercut","spellId":32055,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4504,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/slave-pens/creatures/display-18224-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0179,"labelHeight":25.0888,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-12549","entityId":"entry-40446","position":[104.8389,13.387,-467.4205],"yaw":-5.63741,"spawnMask":3},{"id":"creature-52351","entityId":"entry-17938","position":[94.853,14.3652,-864.5625],"yaw":-2.07651,"spawnMask":3},{"id":"creature-52352","entityId":"entry-17938","position":[147.2752,23.9499,-906.1445],"yaw":-5.32325,"spawnMask":3},{"id":"creature-52353","entityId":"entry-17938","position":[154.9892,13.6903,-454.7675],"yaw":-0.855211,"spawnMask":3},{"id":"creature-52354","entityId":"entry-17962","position":[-104.1058,18.5298,-613.0275],"yaw":-2.12777,"spawnMask":3},{"id":"creature-52358","entityId":"entry-17962","position":[-19.8479,18.529,-681.9985],"yaw":-3.24992,"spawnMask":3},{"id":"creature-52359","entityId":"entry-17962","position":[-6.0544,18.6123,-689.7115],"yaw":-1.6057,"spawnMask":3},{"id":"creature-52361","entityId":"entry-17962","position":[-11.3041,18.6123,-705.8415],"yaw":-4.79965,"spawnMask":3},{"id":"creature-52362","entityId":"entry-17962","position":[-15.3862,18.529,-673.1265],"yaw":-0.253619,"spawnMask":3},{"id":"creature-52363","entityId":"entry-17962","position":[-107.8448,18.5273,-774.8975],"yaw":-2.38563,"spawnMask":3},{"id":"creature-52364","entityId":"entry-17962","position":[-99.5508,18.5298,-610.2835],"yaw":-1.17352,"spawnMask":3},{"id":"creature-52365","entityId":"entry-17963","position":[82.4872,14.21,-590.5725],"yaw":-3.9968,"spawnMask":3},{"id":"creature-52366","entityId":"entry-17964","position":[82.1391,11.8019,-558.4245],"yaw":-1.97222,"spawnMask":3},{"id":"creature-52367","entityId":"entry-17963","position":[117.0227,13.27,-401.8736],"yaw":-6.07375,"spawnMask":3},{"id":"creature-52368","entityId":"entry-17963","position":[148.5572,13.2703,-376.1701],"yaw":-3.15905,"spawnMask":3},{"id":"creature-52370","entityId":"entry-17964","position":[84.9359,13.721,-338.2733],"yaw":-3.1765,"spawnMask":3},{"id":"creature-52371","entityId":"entry-17963","position":[105.8644,12.0696,-501.4945],"yaw":-5.93412,"spawnMask":3},{"id":"creature-52372","entityId":"entry-17964","position":[141.0022,6.8243,-318.3571],"yaw":-1.76278,"spawnMask":3},{"id":"creature-52373","entityId":"entry-17963","position":[97.4705,11.9566,-556.2785],"yaw":-0.767945,"spawnMask":3},{"id":"creature-52374","entityId":"entry-17963","position":[73.3663,14.1439,-604.0825],"yaw":-3.40339,"spawnMask":3},{"id":"creature-52375","entityId":"entry-17964","position":[75.6014,14.183,-596.2495],"yaw":-3.75246,"spawnMask":3},{"id":"creature-52376","entityId":"entry-17964","position":[136.2312,53.478,-1065.7465],"yaw":-5.07891,"spawnMask":3},{"id":"creature-52377","entityId":"entry-17964","position":[142.8152,53.478,-1057.4955],"yaw":-0.890118,"spawnMask":3},{"id":"creature-52378","entityId":"entry-17964","position":[100.8766,54.4792,-1029.0715],"yaw":-5.48033,"spawnMask":3},{"id":"creature-52379","entityId":"entry-17964","position":[121.9892,53.6898,-1031.6865],"yaw":-2.82743,"spawnMask":3},{"id":"creature-52380","entityId":"entry-17964","position":[129.6012,7.6245,-324.4793],"yaw":-4.67748,"spawnMask":3},{"id":"creature-52381","entityId":"entry-17964","position":[105.0367,14.2517,-594.7685],"yaw":-5.65487,"spawnMask":3},{"id":"creature-52382","entityId":"entry-17963","position":[111.3573,14.1123,-600.9225],"yaw":-5.39307,"spawnMask":3},{"id":"creature-52384","entityId":"entry-17964","position":[66.5903,14.2888,-307.2503],"yaw":-1.85005,"spawnMask":3},{"id":"creature-52385","entityId":"entry-17964","position":[75.32,13.9862,-306.7338],"yaw":-1.69297,"spawnMask":3},{"id":"creature-52387","entityId":"entry-17964","position":[124.2962,13.7014,-372.4936],"yaw":-0.139626,"spawnMask":3},{"id":"creature-52389","entityId":"entry-17964","position":[89.3595,12.8294,-330.5156],"yaw":-4.18879,"spawnMask":3},{"id":"creature-52393","entityId":"entry-17964","position":[101.4649,10.3814,-492.4975],"yaw":-5.14872,"spawnMask":3},{"id":"creature-52394","entityId":"entry-17963","position":[88.0147,11.4143,-487.2775],"yaw":-4.66003,"spawnMask":3},{"id":"creature-52395","entityId":"entry-17963","position":[140.0612,10.7926,-415.5895],"yaw":-2.75762,"spawnMask":3},{"id":"creature-52396","entityId":"entry-17963","position":[99.7297,11.0461,-329.5272],"yaw":-4.15388,"spawnMask":3},{"id":"creature-52397","entityId":"entry-17964","position":[89.3631,11.5532,-558.7035],"yaw":-0.994838,"spawnMask":3},{"id":"creature-52398","entityId":"entry-17964","position":[55.0201,14.7281,-308.6806],"yaw":-1.81514,"spawnMask":3},{"id":"creature-57878","entityId":"entry-17960","position":[73.44,14.7173,-574.7825],"yaw":-3.09535,"spawnMask":3},{"id":"creature-76520","entityId":"entry-17961","position":[73.1718,14.6554,-569.4415],"yaw":-3.09142,"spawnMask":3},{"id":"creature-79246","entityId":"entry-17940","position":[63.9052,94.3085,-715.4965],"yaw":-5.89218,"spawnMask":3},{"id":"creature-79274","entityId":"entry-17940","position":[61.4291,93.4472,-672.8835],"yaw":-0.328465,"spawnMask":3},{"id":"creature-79339","entityId":"entry-17991","position":[9.526,18.5493,-758.7875],"yaw":-3.3803,"spawnMask":3},{"id":"creature-79357","entityId":"entry-17962","position":[180.0702,87.524,-656.9255],"yaw":-5.92306,"spawnMask":3},{"id":"creature-79362","entityId":"entry-17941","position":[-21.6291,18.529,-690.5585],"yaw":-3.17405,"spawnMask":3},{"id":"creature-79364","entityId":"entry-17957","position":[140.8832,11.4859,-353.1933],"yaw":-1.90093,"spawnMask":3},{"id":"creature-79365","entityId":"entry-17940","position":[-92.2218,18.5298,-631.6095],"yaw":-3.97267,"spawnMask":3},{"id":"creature-79366","entityId":"entry-17962","position":[-47.7131,52.0443,-714.2385],"yaw":-0.27358,"spawnMask":3},{"id":"creature-79371","entityId":"entry-17962","position":[180.1082,87.5106,-663.7845],"yaw":-6.01338,"spawnMask":3},{"id":"creature-79386","entityId":"entry-17962","position":[320.7832,45.9838,-688.4935],"yaw":-6.27707,"spawnMask":3},{"id":"creature-79411","entityId":"entry-17962","position":[320.8102,45.9895,-692.9155],"yaw":-6.27707,"spawnMask":3},{"id":"creature-79412","entityId":"entry-21127","position":[107.7856,52.7302,-1033.7375],"yaw":-1.7726,"spawnMask":3},{"id":"creature-79414","entityId":"entry-21126","position":[110.3056,52.304,-1034.2225],"yaw":-1.76082,"spawnMask":3},{"id":"creature-79416","entityId":"entry-17960","position":[120.1261,14.265,-534.4685],"yaw":-1.73087,"spawnMask":3},{"id":"creature-79419","entityId":"entry-17957","position":[114.4073,52.5879,-1035.0115],"yaw":-1.76082,"spawnMask":3},{"id":"creature-79421","entityId":"entry-17958","position":[91.0618,14.4266,-879.5555],"yaw":-0.96025,"spawnMask":3},{"id":"creature-79423","entityId":"entry-21128","position":[151.2592,24.5909,-906.4495],"yaw":-6.15645,"spawnMask":3},{"id":"creature-79424","entityId":"entry-21128","position":[159.2832,13.5647,-449.2145],"yaw":-5.59713,"spawnMask":3},{"id":"creature-79425","entityId":"entry-21128","position":[100.5909,14.6902,-863.9265],"yaw":-1.35787,"spawnMask":3},{"id":"creature-79426","entityId":"entry-17961","position":[114.5175,14.3323,-533.8855],"yaw":-1.65547,"spawnMask":3},{"id":"creature-79428","entityId":"entry-17962","position":[-100.7878,18.5273,-777.6275],"yaw":-1.63872,"spawnMask":3},{"id":"creature-79429","entityId":"entry-17957","position":[190.6392,18.6985,-773.7565],"yaw":-1.91986,"spawnMask":3},{"id":"creature-79431","entityId":"entry-17817","position":[114.2461,13.9151,-769.5545],"yaw":-3.12945,"spawnMask":3},{"id":"creature-79435","entityId":"entry-17957","position":[186.3702,18.5342,-758.1985],"yaw":-3.66519,"spawnMask":3},{"id":"creature-79438","entityId":"entry-17940","position":[-94.4268,18.5279,-774.2015],"yaw":-4.57128,"spawnMask":3},{"id":"creature-79440","entityId":"entry-17890","position":[322.3512,46.0753,-691.2105],"yaw":-1.32645,"spawnMask":3},{"id":"creature-79441","entityId":"entry-17893","position":[220.0032,59.385,-1109.9185],"yaw":-1.23918,"spawnMask":3},{"id":"creature-79449","entityId":"entry-17960","position":[106.9276,17.0055,-895.0315],"yaw":-1.0821,"spawnMask":3},{"id":"creature-79460","entityId":"entry-21126","position":[103.0415,14.5312,-861.1035],"yaw":-0.283242,"spawnMask":3},{"id":"creature-79495","entityId":"entry-17817","position":[144.1152,14.0402,-511.6415],"yaw":-2.77264,"spawnMask":3},{"id":"creature-79498","entityId":"entry-17940","position":[256.7342,18.529,-677.7075],"yaw":-2.49875,"spawnMask":3},{"id":"creature-79509","entityId":"entry-17940","position":[256.1532,18.5289,-703.4085],"yaw":-3.75013,"spawnMask":3},{"id":"creature-79516","entityId":"entry-17940","position":[254.0942,18.529,-674.1825],"yaw":-2.49875,"spawnMask":3},{"id":"creature-79518","entityId":"entry-17940","position":[253.7742,18.5289,-707.8515],"yaw":-3.62446,"spawnMask":3},{"id":"creature-79528","entityId":"entry-17816","position":[142.4592,14.0384,-519.1445],"yaw":-5.14061,"spawnMask":3},{"id":"creature-79530","entityId":"entry-21128","position":[115.5898,13.9008,-817.7595],"yaw":-1.01829,"spawnMask":3},{"id":"creature-79538","entityId":"entry-17816","position":[115.7827,13.9316,-756.9635],"yaw":-4.88088,"spawnMask":3},{"id":"creature-79540","entityId":"entry-17816","position":[146.4082,13.9781,-520.5505],"yaw":-4.20206,"spawnMask":3},{"id":"creature-79543","entityId":"entry-17816","position":[51.7828,13.6847,-506.7905],"yaw":-3.82664,"spawnMask":3},{"id":"creature-79544","entityId":"entry-17816","position":[26.3465,13.9333,-520.0645],"yaw":-2.21265,"spawnMask":3},{"id":"creature-79545","entityId":"entry-17816","position":[39.2672,13.9029,-529.3905],"yaw":-1.5969,"spawnMask":3},{"id":"creature-79546","entityId":"entry-17817","position":[42.1694,13.9053,-492.8835],"yaw":-2.58571,"spawnMask":3},{"id":"creature-79547","entityId":"entry-17957","position":[146.8052,13.5361,-463.1895],"yaw":-0.488692,"spawnMask":3},{"id":"creature-79571","entityId":"entry-17817","position":[141.7952,14.0362,-522.8895],"yaw":-3.68763,"spawnMask":3},{"id":"creature-79655","entityId":"entry-17817","position":[41.1562,13.9065,-510.7435],"yaw":-4.47067,"spawnMask":3},{"id":"creature-79657","entityId":"entry-17817","position":[48.8139,13.6369,-494.8415],"yaw":-1.3762,"spawnMask":3},{"id":"creature-79691","entityId":"entry-17940","position":[-107.1738,18.5276,-767.2045],"yaw":-0.0447664,"spawnMask":3},{"id":"creature-79692","entityId":"entry-17817","position":[119.5105,14.0446,-776.9235],"yaw":-1.90737,"spawnMask":3},{"id":"creature-79699","entityId":"entry-21126","position":[116.0728,13.9856,-807.7825],"yaw":-2.72271,"spawnMask":3},{"id":"creature-79701","entityId":"entry-17938","position":[112.7251,13.9842,-813.6825],"yaw":-3.28122,"spawnMask":3},{"id":"creature-79703","entityId":"entry-17940","position":[-94.8498,18.6124,-608.1975],"yaw":-3.7001,"spawnMask":3},{"id":"creature-79708","entityId":"entry-17940","position":[-107.9088,18.5298,-610.5325],"yaw":-4.23892,"spawnMask":3},{"id":"creature-79709","entityId":"entry-17957","position":[111.6459,16.8704,-895.6595],"yaw":-1.37881,"spawnMask":3},{"id":"creature-79710","entityId":"entry-17957","position":[105.7324,17.8037,-902.8685],"yaw":-5.95157,"spawnMask":3},{"id":"creature-79711","entityId":"entry-21126","position":[203.2922,57.7109,-1082.1055],"yaw":-4.7964,"spawnMask":3},{"id":"creature-79712","entityId":"entry-17960","position":[140.5272,20.599,-897.8015],"yaw":-0.116737,"spawnMask":3},{"id":"creature-79713","entityId":"entry-17938","position":[214.8592,57.2904,-1073.2805],"yaw":-5.73458,"spawnMask":3},{"id":"creature-79718","entityId":"entry-17958","position":[34.3457,18.6528,-607.1835],"yaw":-2.93215,"spawnMask":3},{"id":"creature-79719","entityId":"entry-17958","position":[39.1268,18.453,-623.2625],"yaw":-2.86234,"spawnMask":3},{"id":"creature-79722","entityId":"entry-21126","position":[149.6962,13.5121,-457.7895],"yaw":-1.0821,"spawnMask":3},{"id":"creature-79745","entityId":"entry-17961","position":[104.3819,17.439,-898.7135],"yaw":-0.436332,"spawnMask":3},{"id":"creature-79790","entityId":"entry-21127","position":[110.0201,13.9839,-804.3455],"yaw":-2.3911,"spawnMask":3},{"id":"creature-79791","entityId":"entry-21127","position":[99.3548,14.2665,-857.3575],"yaw":-5.1912,"spawnMask":3},{"id":"creature-79795","entityId":"entry-21127","position":[-14.3307,18.5291,-688.7895],"yaw":-3.7706,"spawnMask":3},{"id":"creature-79830","entityId":"entry-21127","position":[93.8088,14.0929,-858.8165],"yaw":-2.29386,"spawnMask":3},{"id":"creature-79842","entityId":"entry-21127","position":[144.7632,20.9766,-896.2755],"yaw":-0.383972,"spawnMask":3},{"id":"creature-79843","entityId":"entry-21127","position":[142.3312,22.0753,-902.4125],"yaw":-6.16101,"spawnMask":3},{"id":"creature-79844","entityId":"entry-21127","position":[225.6652,58.4846,-1075.8735],"yaw":-4.60784,"spawnMask":3},{"id":"creature-79845","entityId":"entry-21127","position":[196.8432,57.8595,-1088.5115],"yaw":-0.575959,"spawnMask":3},{"id":"creature-79846","entityId":"entry-17816","position":[128.8572,14.3152,-775.4375],"yaw":-0.443382,"spawnMask":3},{"id":"creature-79847","entityId":"entry-17962","position":[-49.9354,51.5481,-722.1575],"yaw":-0.27358,"spawnMask":3},{"id":"creature-80260","entityId":"entry-17942","position":[308.9432,24.8955,-977.4775],"yaw":-5.84685,"spawnMask":3},{"id":"creature-135059","entityId":"entry-17963","position":[123.3789,14.0671,-603.6745],"yaw":-5.46288,"spawnMask":3},{"id":"creature-135094","entityId":"entry-17817","position":[20.5949,15.833,-561.6285],"yaw":-3.36848,"spawnMask":3},{"id":"creature-135095","entityId":"entry-17817","position":[12.1688,14.9326,-544.0475],"yaw":-0.308483,"spawnMask":3},{"id":"creature-135096","entityId":"entry-17816","position":[7.4247,17.5309,-556.3065],"yaw":-0.205488,"spawnMask":3},{"id":"creature-135097","entityId":"entry-17816","position":[0.3322,18.3836,-554.6915],"yaw":-4.87686,"spawnMask":3},{"id":"creature-135098","entityId":"entry-17817","position":[-8.0139,21.242,-565.0875],"yaw":-5.54163,"spawnMask":3},{"id":"creature-135099","entityId":"entry-17816","position":[-12.1805,15.2017,-543.2685],"yaw":-5.83153,"spawnMask":3},{"id":"creature-135100","entityId":"entry-17817","position":[231.5522,51.1746,-1044.7985],"yaw":-4.97052,"spawnMask":3},{"id":"creature-135101","entityId":"entry-17817","position":[235.2042,51.9414,-1035.0365],"yaw":-5.07027,"spawnMask":3},{"id":"creature-135104","entityId":"entry-17958","position":[101.8916,94.215,-688.8795],"yaw":-6.27036,"spawnMask":3}],"roamingPacks":[{"id":"patrol-57017","name":"Coilfang Slavehandler Patrol","speed":1.15,"pathId":570170,"formationSource":"database-solo","spawnMask":3,"waypoints":[[92.7562,12.0626,-562.4905],[101.743,12.2263,-557.3105],[93.9174,11.9141,-559.9935],[82.2144,12.056,-561.1535]],"members":[{"id":"member","entityId":"entry-17959","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-57018","name":"Coilfang Slavehandler Patrol","speed":1.15,"pathId":570180,"formationSource":"database-solo","spawnMask":3,"waypoints":[[111.3925,14.0233,-601.9095],[105.6951,14.1672,-594.9755],[91.8947,14.052,-588.6685],[82.9573,14.3016,-586.6425],[73.1275,14.0801,-598.3885],[84.9695,14.2599,-585.3245],[105.4378,14.2182,-593.6445]],"members":[{"id":"member","entityId":"entry-17959","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-61959","name":"Coilfang Slavehandler Patrol","speed":1.15,"pathId":619590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[105.0215,10.7107,-492.1185],[104.3252,10.6075,-491.0675],[88.0985,11.5725,-485.9045],[104.598,10.7049,-489.6845],[106.2041,12.0686,-504.5945],[106.8686,12.1745,-505.5835]],"members":[{"id":"member","entityId":"entry-17959","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-72370","name":"Coilfang Champion Patrol","speed":1.15,"pathId":723700,"formationSource":"database-solo","spawnMask":3,"waypoints":[[126.4753,13.3074,-493.2715],[128.7302,12.7888,-467.8795],[110.7052,13.3003,-465.1085],[91.2918,13.4594,-471.0135],[91.2081,13.475,-470.9985],[111.1901,13.2373,-465.5535],[128.5992,12.7974,-468.3015],[126.3844,13.4674,-494.2395],[120.8804,14.2693,-531.4865]],"members":[{"id":"member","entityId":"entry-17957","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79147","name":"Coilfang Technician Patrol","speed":1.15,"pathId":791470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-97.2408,46.1364,-701.2865],[-97.9358,46.0864,-680.3825],[-51.6105,51.1757,-664.1865],[-97.4738,46.1177,-680.0785],[-97.0148,46.1385,-701.9615],[-49.6264,51.6178,-717.5255]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79150","name":"Coilfang Technician Patrol","speed":1.15,"pathId":791500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-25.4566,57.8685,-723.7275],[-10.9654,62.9484,-725.3705],[16.5802,74.4631,-725.2425],[39.0947,85.5959,-722.3505],[66.5762,95.0127,-711.5015],[77.6782,96.5139,-704.7715],[66.5762,95.0127,-711.5015],[39.0947,85.5959,-722.3505],[16.5802,74.4631,-725.2425],[-10.9654,62.9484,-725.3705]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79275","name":"Coilfang Technician Patrol","speed":1.15,"pathId":792750,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-22.7463,58.8187,-657.5245],[17.0345,74.675,-655.8365],[39.4562,85.775,-658.8955],[79.0256,96.5151,-675.7935],[39.4562,85.775,-658.8955],[17.0345,74.675,-655.8365]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79359","name":"Coilfang Slavehandler Patrol","speed":1.15,"pathId":793590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[69.2797,14.0923,-311.1993],[69.2797,14.0923,-311.1993],[61.9281,14.3866,-305.2969],[61.9281,14.3866,-305.2969],[65.8161,14.2298,-308.7701],[59.006,14.0808,-316.7935],[48.5413,14.6201,-306.2077],[50.64,14.2991,-311.6368],[67.2024,14.1693,-311.5221],[68.2292,14.1399,-308.5569]],"members":[{"id":"member","entityId":"entry-17959","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79363","name":"Coilfang Technician Patrol","speed":1.15,"pathId":793630,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-68.8864,18.5298,-655.1185],[-35.8567,18.5298,-671.2075],[-69.6242,18.5298,-653.5445],[-89.4628,18.5298,-628.5835]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79367","name":"Coilfang Technician Patrol","speed":1.15,"pathId":793670,"formationSource":"database-solo","spawnMask":3,"waypoints":[[319.0362,45.6186,-690.7335],[295.6682,35.8274,-690.9085],[276.2292,25.9193,-690.9265],[256.9112,18.5289,-690.9895],[276.2292,25.9193,-690.9265],[295.6682,35.8274,-690.9085]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79372","name":"Coilfang Enchantress Patrol","speed":1.15,"pathId":793720,"formationSource":"database-solo","spawnMask":3,"waypoints":[[255.5352,18.529,-673.3965],[291.8062,18.5291,-644.2465],[281.9392,18.529,-665.4855],[291.8062,18.5291,-644.2465]],"members":[{"id":"member","entityId":"entry-17961","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79375","name":"Coilfang Enchantress Patrol","speed":1.15,"pathId":793750,"formationSource":"database-solo","spawnMask":3,"waypoints":[[296.9962,18.5265,-731.5295],[283.1812,18.5291,-718.1975],[252.1722,18.5289,-706.9605],[283.1812,18.5291,-718.1975]],"members":[{"id":"member","entityId":"entry-17961","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79382","name":"Coilfang Slavehandler Patrol","speed":1.15,"pathId":793820,"formationSource":"database-solo","spawnMask":3,"waypoints":[[99.4146,10.8274,-326.6651],[89.9387,12.3531,-326.3148],[81.9751,13.4277,-334.1649],[88.3852,12.3954,-325.9163],[98.5113,11.074,-327.8583]],"members":[{"id":"member","entityId":"entry-17959","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79418","name":"Coilfang Enchantress Patrol","speed":1.15,"pathId":794180,"formationSource":"database-solo","spawnMask":3,"waypoints":[[126.9044,32.4181,-935.5235],[125.4602,45.5698,-983.0055],[117.3773,52.0461,-1011.3665],[111.3446,52.0352,-1046.2045],[140.0662,52.5847,-1062.1345],[111.3446,52.0352,-1046.2045],[117.3773,52.0461,-1011.3665],[125.4602,45.5698,-983.0055]],"members":[{"id":"member","entityId":"entry-17961","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79420","name":"Coilfang Defender Patrol","speed":1.15,"pathId":794200,"formationSource":"database-solo","spawnMask":3,"waypoints":[[111.7827,13.902,-834.1135],[102.223,13.8991,-836.9325],[89.8945,13.8992,-839.1015],[81.8962,13.8998,-853.0185],[82.725,13.9004,-866.9355],[95.4504,14.7967,-877.2655],[103.6058,17.2173,-895.4125],[132.0412,20.7012,-903.2125],[131.5202,26.4238,-922.2015],[132.0412,20.7012,-903.2125],[103.6058,17.2173,-895.4125],[95.4504,14.7967,-877.2655],[82.725,13.9004,-866.9355],[81.8962,13.8998,-853.0185],[89.8945,13.8992,-839.1015],[102.223,13.8991,-836.9325]],"members":[{"id":"member","entityId":"entry-17958","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79507","name":"Coilfang Technician Patrol","speed":1.15,"pathId":795070,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-11.3495,18.529,-691.3145],[-3.8406,18.529,-705.4335],[18.6943,18.529,-703.6975]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79524","name":"Bogstrok Patrol","speed":1.15,"pathId":795240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[223.0102,51.355,-1043.6955],[204.5012,51.3703,-1060.1825],[178.9342,51.4816,-1078.5885],[157.0612,53.3858,-1067.4775],[178.9342,51.4816,-1078.5885],[204.5012,51.3703,-1060.1825],[223.0102,51.355,-1043.6955],[228.0812,53.0494,-1013.3785]],"members":[{"id":"member","entityId":"entry-17816","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79526","name":"Coilfang Technician Patrol","speed":1.15,"pathId":795260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-21.1775,18.529,-671.8155],[1.9748,18.529,-665.9825],[4.0302,18.529,-675.9925],[-12.5832,18.529,-683.4075]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79849","name":"Coilfang Technician Patrol","speed":1.15,"pathId":798490,"formationSource":"database-solo","spawnMask":3,"waypoints":[[152.1262,95.7679,-673.1975],[146.9692,96.4964,-676.6155],[147.0362,96.4678,-704.8265],[152.0552,95.7771,-708.8635],[147.0362,96.4678,-704.8265],[146.9692,96.4964,-676.6155]],"members":[{"id":"member","entityId":"entry-17940","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79850","name":"Bogstrok Patrol","speed":1.15,"pathId":798500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[26.1196,13.9029,-372.988],[25.4215,11.5597,-352.898],[7.9766,14.3451,-337.5011],[-14.1425,14.2604,-350.5032],[-28.9363,13.9672,-358.8381],[-13.2402,14.2874,-350.0377],[9.1791,14.306,-336.8111],[25.6719,11.672,-353.226],[26.6397,13.9028,-374.2406],[6.3803,13.9028,-386.6532]],"members":[{"id":"member","entityId":"entry-17816","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79851","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":798510,"formationSource":"database-solo","spawnMask":3,"waypoints":[[221.2002,51.8575,-1042.7235],[203.6782,50.7545,-1057.5165],[179.7302,51.7196,-1074.5065],[159.4062,53.3857,-1065.2235],[179.7302,51.7196,-1074.5065],[203.6782,50.7545,-1057.5165],[221.2002,51.8575,-1042.7235],[224.6652,53.3321,-1013.1305]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79852","name":"Bogstrok Patrol","speed":1.15,"pathId":798520,"formationSource":"database-solo","spawnMask":3,"waypoints":[[221.1002,51.8575,-1042.6235],[203.5782,50.7545,-1057.4165],[179.6302,51.7196,-1074.4065],[159.3062,53.3857,-1065.1235],[179.6302,51.7196,-1074.4065],[203.5782,50.7545,-1057.4165],[221.1002,51.8575,-1042.6235],[224.6652,53.3321,-1013.1305]],"members":[{"id":"member","entityId":"entry-17816","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79855","name":"Bogstrok Patrol","speed":1.15,"pathId":798550,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-16.7865,13.8246,-404.3401],[-40.8102,13.4294,-416.3725],[-61.6438,13.2769,-413.2265],[-72.9768,13.5159,-395.7234],[-61.2569,13.2476,-413.1855],[-61.2948,13.2753,-413.3475],[-40.957,13.4311,-416.4775],[-16.2459,13.8094,-404.0271],[-0.7783,13.9029,-389.276]],"members":[{"id":"member","entityId":"entry-17816","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79856","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":798560,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-13.4748,13.9029,-409.4125],[-40.332,13.9029,-423.1115],[-64.1677,13.9029,-418.1825],[-78.5288,13.9029,-397.2544],[-61.436,13.9029,-419.4755],[-37.5097,13.9029,-421.6025],[-12.7755,13.9029,-408.5517],[4.2589,13.9029,-394.015]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-79858","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":798580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[27.1196,13.9029,-374.188],[26.5216,11.5597,-353.998],[9.0766,14.3451,-338.5011],[-13.0425,14.2604,-351.7032],[-27.9363,13.9672,-360.0381],[-12.2402,14.2874,-351.2377],[10.1791,14.306,-338.1111],[26.7719,11.672,-354.426],[27.8397,13.9028,-375.3406],[7.4803,13.9028,-387.8532]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-80044","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":800440,"formationSource":"database-solo","spawnMask":3,"waypoints":[[219.1602,52.5678,-1040.7045],[201.7052,51.08,-1055.9535],[179.5732,52.6802,-1071.9625],[159.6512,53.3858,-1063.4315],[179.5732,52.6802,-1071.9625],[201.7052,51.08,-1055.9535],[219.1602,52.5678,-1040.7045],[222.2522,53.3858,-1011.8475]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-80219","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":802190,"formationSource":"database-solo","spawnMask":3,"waypoints":[[26.7196,13.9029,-373.588],[26.0216,11.5597,-353.498],[8.5766,14.3451,-338.0011],[-13.5425,14.2604,-351.1032],[-28.3363,13.9672,-359.4381],[-12.6402,14.2874,-350.6377],[9.7791,14.306,-337.5111],[26.2719,11.672,-353.826],[27.2397,13.9028,-374.8406],[6.9803,13.9028,-387.2532]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-80235","name":"Greater Bogstrok Patrol","speed":1.15,"pathId":802350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-13.8705,13.9029,-405.939],[-39.0623,13.8964,-418.8025],[-60.3755,13.7513,-416.5925],[-75.7738,13.8246,-397.4896],[-59.732,13.7062,-416.5595],[-38.8102,13.8994,-418.6675],[-13.4819,13.9029,-405.8318],[2.3204,13.9029,-391.5378]],"members":[{"id":"member","entityId":"entry-17817","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-86371","name":"Coilfang Champion Patrol","speed":1.15,"pathId":863710,"formationSource":"database-solo","spawnMask":3,"waypoints":[[108.5955,14.5419,-564.7125],[119.2116,14.3808,-558.4035],[153.3202,13.9021,-576.7745],[152.5602,13.9021,-576.6895],[119.2989,14.381,-559.5925],[106.0479,14.2655,-565.2325],[86.3227,13.6498,-573.3325],[74.2437,14.6915,-572.2055]],"members":[{"id":"member","entityId":"entry-17957","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-88902","name":"Coilfang Champion Patrol","speed":1.15,"pathId":889020,"formationSource":"database-solo","spawnMask":3,"waypoints":[[145.5482,8.6405,-335.6791],[138.3962,5.9499,-322.9231],[113.2741,8.1859,-313.7282],[139.0652,5.8083,-322.7837],[144.3882,8.35,-334.8714],[134.1692,12.1903,-372.8102],[130.4112,11.8939,-386.2965],[125.7148,11.7268,-403.1544],[131.3192,12.0912,-380.9979],[135.3552,11.8847,-363.9697]],"members":[{"id":"member","entityId":"entry-17957","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-135102","name":"Bogstrok Patrol","speed":1.15,"pathId":1351020,"formationSource":"database-solo","spawnMask":3,"waypoints":[[149.2752,52.8396,-1063.2805],[172.1212,53.3857,-1041.7565],[200.3502,53.3857,-1031.3015],[222.6212,53.3857,-1017.4375],[232.0292,52.8468,-994.8345],[222.6212,53.3857,-1017.4375],[200.3502,53.3857,-1031.3015],[172.1212,53.3857,-1041.7565]],"members":[{"id":"member","entityId":"entry-17816","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-135103","name":"Coilfang Defender Patrol","speed":1.15,"pathId":1351030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[84.862,96.7903,-691.0975],[112.0697,94.215,-690.7485],[142.5662,96.7406,-690.7765],[112.0697,94.215,-690.7485]],"members":[{"id":"member","entityId":"entry-17958","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-79362","name":"Mennu the Betrayer","position":[-21.6291,18.529,-690.5585]},{"id":"creature-79339","name":"Rokmar the Crackler","position":[9.526,18.5493,-758.7875]},{"id":"creature-80260","name":"Quagmirran","position":[308.9432,24.8955,-977.4775]}],"objectiveOrder":[{"id":"creature-79362","name":"Mennu the Betrayer","position":[-21.6291,18.529,-690.5585]},{"id":"creature-79339","name":"Rokmar the Crackler","position":[9.526,18.5493,-758.7875]},{"id":"creature-80260","name":"Quagmirran","position":[308.9432,24.8955,-977.4775]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1267,"id":187882,"map":547,"orientation":2.42601,"phaseMask":1,"position_x":-69.9045,"position_y":-162.245,"position_z":-2.36656,"rotation0":0,"rotation1":0,"rotation2":0.936672,"rotation3":0.350207,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1268,"id":188067,"map":547,"orientation":5.72468,"phaseMask":1,"position_x":-115.599,"position_y":-162.772,"position_z":-1.92403,"rotation0":0,"rotation1":0,"rotation2":-0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1269,"id":188067,"map":547,"orientation":0.0174525,"phaseMask":1,"position_x":-83.5253,"position_y":-172.181,"position_z":-3.81652,"rotation0":0,"rotation1":0,"rotation2":0.00872612,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1270,"id":188067,"map":547,"orientation":4.08407,"phaseMask":1,"position_x":-79.397,"position_y":-219.702,"position_z":-4.04289,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1271,"id":188067,"map":547,"orientation":5.79449,"phaseMask":1,"position_x":-75.2318,"position_y":-217.329,"position_z":-3.0728,"rotation0":0,"rotation1":0,"rotation2":-0.241921,"rotation3":0.970296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1272,"id":188067,"map":547,"orientation":5.13127,"phaseMask":1,"position_x":-75.9514,"position_y":-182.771,"position_z":-4.88202,"rotation0":0,"rotation1":0,"rotation2":-0.544639,"rotation3":0.838671,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1273,"id":188067,"map":547,"orientation":4.32842,"phaseMask":1,"position_x":-71.8962,"position_y":-145.497,"position_z":-1.55181,"rotation0":0,"rotation1":0,"rotation2":-0.829037,"rotation3":0.559194,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1274,"id":188067,"map":547,"orientation":2.00713,"phaseMask":1,"position_x":-49.2725,"position_y":-168.986,"position_z":-1.89881,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1275,"id":188072,"map":547,"orientation":5.35816,"phaseMask":1,"position_x":-71.8249,"position_y":-164.475,"position_z":-3.96298,"rotation0":0,"rotation1":0,"rotation2":-0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1276,"id":188072,"map":547,"orientation":5.86431,"phaseMask":1,"position_x":-71.4892,"position_y":-160.732,"position_z":-4.18569,"rotation0":0,"rotation1":0,"rotation2":-0.207911,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1277,"id":188072,"map":547,"orientation":1.85005,"phaseMask":1,"position_x":-69.2084,"position_y":-160.345,"position_z":-4.25643,"rotation0":0,"rotation1":0,"rotation2":0.798635,"rotation3":0.601815,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1278,"id":188072,"map":547,"orientation":2.96704,"phaseMask":1,"position_x":-69.2177,"position_y":-163.491,"position_z":-2.04477,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.087165,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1279,"id":188073,"map":547,"orientation":2.00713,"phaseMask":1,"position_x":-114.957,"position_y":-117.302,"position_z":-2.71,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1280,"id":188073,"map":547,"orientation":0.453785,"phaseMask":1,"position_x":-89.7521,"position_y":-113.5,"position_z":-2.70944,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1281,"id":188142,"map":547,"orientation":1.91986,"phaseMask":1,"position_x":-118.92,"position_y":-204.802,"position_z":-1.50416,"rotation0":0,"rotation1":0,"rotation2":0.819152,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1282,"id":188142,"map":547,"orientation":0.558504,"phaseMask":1,"position_x":-117.386,"position_y":-165.965,"position_z":-2.01865,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1283,"id":188142,"map":547,"orientation":4.99164,"phaseMask":1,"position_x":-103.713,"position_y":-245.504,"position_z":-1.37788,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798636,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1284,"id":188142,"map":547,"orientation":0.488691,"phaseMask":1,"position_x":-75.4278,"position_y":-221.16,"position_z":-2.88294,"rotation0":0,"rotation1":0,"rotation2":0.241921,"rotation3":0.970296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1285,"id":188142,"map":547,"orientation":2.21657,"phaseMask":1,"position_x":-74.6596,"position_y":-243.812,"position_z":-2.736,"rotation0":0,"rotation1":0,"rotation2":0.894934,"rotation3":0.446199,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1286,"id":188142,"map":547,"orientation":0.157079,"phaseMask":1,"position_x":-72.7531,"position_y":-185.155,"position_z":-4.93059,"rotation0":0,"rotation1":0,"rotation2":0.0784588,"rotation3":0.996917,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50172,"animprogress":255,"areaId":0,"guid":1287,"id":195000,"map":547,"orientation":0,"phaseMask":1,"position_x":-98.026,"position_y":-230.429,"position_z":-7.61181,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":5494,"id":185292,"map":547,"orientation":0.104719,"phaseMask":1,"position_x":-297.066,"position_y":-459.985,"position_z":3.03566,"rotation0":0,"rotation1":0,"rotation2":0.0523356,"rotation3":0.99863,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":50458,"id":182094,"map":547,"orientation":5.98648,"phaseMask":1,"position_x":-192.297,"position_y":-799.308,"position_z":43.8083,"rotation0":0,"rotation1":0,"rotation2":0.147809,"rotation3":-0.989016,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3717,"guid":104413,"id":181278,"map":547,"orientation":0.244346,"phaseMask":1,"position_x":-15.1088,"position_y":-328.102,"position_z":-1.58162,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104414,"id":181278,"map":547,"orientation":0.925024,"phaseMask":1,"position_x":-55.6236,"position_y":13.8905,"position_z":-1.58162,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104415,"id":181278,"map":547,"orientation":1.48353,"phaseMask":1,"position_x":-6.49786,"position_y":-268.131,"position_z":-0.405657,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104416,"id":181278,"map":547,"orientation":3.82227,"phaseMask":1,"position_x":-110.174,"position_y":-316.995,"position_z":-1.5811,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333808,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104417,"id":181278,"map":547,"orientation":0.994837,"phaseMask":1,"position_x":-108.203,"position_y":-6.1077,"position_z":-8.88713,"rotation0":0,"rotation1":0,"rotation2":0.477159,"rotation3":0.878817,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104418,"id":181278,"map":547,"orientation":3.68265,"phaseMask":1,"position_x":-71.7667,"position_y":-314.165,"position_z":-1.4775,"rotation0":0,"rotation1":0,"rotation2":-0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104419,"id":181278,"map":547,"orientation":5.55015,"phaseMask":1,"position_x":-118.49,"position_y":-195.385,"position_z":-1.52758,"rotation0":0,"rotation1":0,"rotation2":-0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104420,"id":181278,"map":547,"orientation":6.05629,"phaseMask":1,"position_x":-9.24667,"position_y":-186.432,"position_z":-1.56752,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104421,"id":181278,"map":547,"orientation":2.84488,"phaseMask":1,"position_x":-9.61051,"position_y":-69.0904,"position_z":-1.58162,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104422,"id":181278,"map":547,"orientation":5.044,"phaseMask":1,"position_x":-67.6224,"position_y":-275.954,"position_z":-1.35519,"rotation0":0,"rotation1":0,"rotation2":-0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104423,"id":181278,"map":547,"orientation":0.104719,"phaseMask":1,"position_x":-85.9097,"position_y":-548.388,"position_z":-1.58175,"rotation0":0,"rotation1":0,"rotation2":0.0523357,"rotation3":0.99863,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104424,"id":181278,"map":547,"orientation":2.80998,"phaseMask":1,"position_x":-146.844,"position_y":-479.709,"position_z":-0.817709,"rotation0":0,"rotation1":0,"rotation2":0.986285,"rotation3":0.16505,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104425,"id":181278,"map":547,"orientation":3.78737,"phaseMask":1,"position_x":-41.414,"position_y":-512.581,"position_z":-1.58581,"rotation0":0,"rotation1":0,"rotation2":-0.948323,"rotation3":0.317306,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104426,"id":181278,"map":547,"orientation":1.0821,"phaseMask":1,"position_x":-117.839,"position_y":-585.493,"position_z":5.45307,"rotation0":0,"rotation1":0,"rotation2":0.515038,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104427,"id":181270,"map":547,"orientation":2.60054,"phaseMask":1,"position_x":-130.503,"position_y":-273.61,"position_z":-1.58329,"rotation0":0,"rotation1":0,"rotation2":0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104428,"id":181270,"map":547,"orientation":4.20625,"phaseMask":1,"position_x":-168.039,"position_y":-701.512,"position_z":37.9013,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104429,"id":181270,"map":547,"orientation":2.42601,"phaseMask":1,"position_x":-43.2663,"position_y":-451.806,"position_z":-1.9612,"rotation0":0,"rotation1":0,"rotation2":0.936672,"rotation3":0.350207,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104430,"id":181270,"map":547,"orientation":0.453785,"phaseMask":1,"position_x":-19.0182,"position_y":-556.112,"position_z":-1.58351,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104431,"id":181270,"map":547,"orientation":2.18166,"phaseMask":1,"position_x":-94.6669,"position_y":-705.023,"position_z":37.3486,"rotation0":0,"rotation1":0,"rotation2":0.887011,"rotation3":0.461749,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104432,"id":181270,"map":547,"orientation":3.97935,"phaseMask":1,"position_x":-86.5097,"position_y":-632.706,"position_z":20.4527,"rotation0":0,"rotation1":0,"rotation2":-0.913545,"rotation3":0.406738,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104433,"id":181270,"map":547,"orientation":6.03884,"phaseMask":1,"position_x":-196.949,"position_y":-756.071,"position_z":40.2413,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104434,"id":181270,"map":547,"orientation":3.10665,"phaseMask":1,"position_x":-110.273,"position_y":-755.954,"position_z":37.3613,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174693,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104435,"id":181275,"map":547,"orientation":1.88495,"phaseMask":1,"position_x":-131.525,"position_y":-133.744,"position_z":-1.97161,"rotation0":0,"rotation1":0,"rotation2":0.809016,"rotation3":0.587786,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104436,"id":181276,"map":547,"orientation":1.88495,"phaseMask":1,"position_x":-131.525,"position_y":-133.744,"position_z":-1.97161,"rotation0":0,"rotation1":0,"rotation2":0.809016,"rotation3":0.587786,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104437,"id":181275,"map":547,"orientation":3.01941,"phaseMask":1,"position_x":-61.4976,"position_y":-616.144,"position_z":-0.567495,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104438,"id":181276,"map":547,"orientation":3.01941,"phaseMask":1,"position_x":-61.4976,"position_y":-616.144,"position_z":-0.567495,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104439,"id":181275,"map":547,"orientation":5.3058,"phaseMask":1,"position_x":-58.8091,"position_y":-152.355,"position_z":-1.42225,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104440,"id":181276,"map":547,"orientation":5.3058,"phaseMask":1,"position_x":-58.8091,"position_y":-152.355,"position_z":-1.42225,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104441,"id":181275,"map":547,"orientation":4.95674,"phaseMask":1,"position_x":-55.9415,"position_y":-29.0174,"position_z":-1.69497,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104442,"id":181276,"map":547,"orientation":4.95674,"phaseMask":1,"position_x":-55.9415,"position_y":-29.0174,"position_z":-1.69497,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104443,"id":181275,"map":547,"orientation":3.52557,"phaseMask":1,"position_x":-76.0176,"position_y":-482.555,"position_z":-1.58448,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190812,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104444,"id":181276,"map":547,"orientation":3.52557,"phaseMask":1,"position_x":-76.0176,"position_y":-482.555,"position_z":-1.58448,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190812,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104445,"id":181275,"map":547,"orientation":5.65487,"phaseMask":1,"position_x":-146.687,"position_y":-255.88,"position_z":-1.58513,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104446,"id":181276,"map":547,"orientation":5.65487,"phaseMask":1,"position_x":-146.687,"position_y":-255.88,"position_z":-1.58513,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104447,"id":181275,"map":547,"orientation":2.25147,"phaseMask":1,"position_x":-8.01602,"position_y":-3.30066,"position_z":-1.2195,"rotation0":0,"rotation1":0,"rotation2":0.902585,"rotation3":0.430512,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104448,"id":181276,"map":547,"orientation":2.25147,"phaseMask":1,"position_x":-8.01602,"position_y":-3.30066,"position_z":-1.2195,"rotation0":0,"rotation1":0,"rotation2":0.902585,"rotation3":0.430512,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104449,"id":181275,"map":547,"orientation":3.24635,"phaseMask":1,"position_x":-170.84,"position_y":-779.574,"position_z":42.7871,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523532,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104450,"id":181276,"map":547,"orientation":3.24635,"phaseMask":1,"position_x":-170.84,"position_y":-779.574,"position_z":42.7871,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523532,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104451,"id":181556,"map":547,"orientation":1.91986,"phaseMask":1,"position_x":-136.808,"position_y":-128.963,"position_z":-1.69219,"rotation0":0,"rotation1":0,"rotation2":0.819152,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104452,"id":181557,"map":547,"orientation":1.91986,"phaseMask":1,"position_x":-136.808,"position_y":-128.963,"position_z":-1.69219,"rotation0":0,"rotation1":0,"rotation2":0.819152,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104453,"id":181569,"map":547,"orientation":1.91986,"phaseMask":1,"position_x":-136.808,"position_y":-128.963,"position_z":-1.69219,"rotation0":0,"rotation1":0,"rotation2":0.819152,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104454,"id":181556,"map":547,"orientation":3.94445,"phaseMask":1,"position_x":0.00864,"position_y":-186.667,"position_z":-1.55533,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104455,"id":181557,"map":547,"orientation":3.94445,"phaseMask":1,"position_x":0.00864,"position_y":-186.667,"position_z":-1.55533,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104456,"id":181569,"map":547,"orientation":3.94445,"phaseMask":1,"position_x":0.00864,"position_y":-186.667,"position_z":-1.55533,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104457,"id":181556,"map":547,"orientation":0.733038,"phaseMask":1,"position_x":-71.3426,"position_y":-282.686,"position_z":-1.4015,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104458,"id":181557,"map":547,"orientation":0.733038,"phaseMask":1,"position_x":-71.3426,"position_y":-282.686,"position_z":-1.4015,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104459,"id":181569,"map":547,"orientation":0.733038,"phaseMask":1,"position_x":-71.3426,"position_y":-282.686,"position_z":-1.4015,"rotation0":0,"rotation1":0,"rotation2":0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104460,"id":181556,"map":547,"orientation":2.28638,"phaseMask":1,"position_x":-78.1511,"position_y":-601.834,"position_z":3.77027,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104461,"id":181557,"map":547,"orientation":2.28638,"phaseMask":1,"position_x":-78.1511,"position_y":-601.834,"position_z":3.77027,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104462,"id":181569,"map":547,"orientation":2.28638,"phaseMask":1,"position_x":-78.1511,"position_y":-601.834,"position_z":3.77027,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104463,"id":181556,"map":547,"orientation":2.35619,"phaseMask":1,"position_x":-70.0015,"position_y":-481.986,"position_z":-1.59485,"rotation0":0,"rotation1":0,"rotation2":0.92388,"rotation3":0.382683,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104464,"id":181557,"map":547,"orientation":2.35619,"phaseMask":1,"position_x":-70.0015,"position_y":-481.986,"position_z":-1.59485,"rotation0":0,"rotation1":0,"rotation2":0.92388,"rotation3":0.382683,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3717,"guid":104465,"id":181569,"map":547,"orientation":2.35619,"phaseMask":1,"position_x":-70.0015,"position_y":-481.986,"position_z":-1.59485,"rotation0":0,"rotation1":0,"rotation2":0.92388,"rotation3":0.382683,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3717},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150024,"id":184211,"map":547,"orientation":1.4757,"phaseMask":1,"position_x":119.609,"position_y":-137.113,"position_z":-0.704,"rotation0":0,"rotation1":0,"rotation2":0.672699,"rotation3":0.739917,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150025,"id":184210,"map":547,"orientation":1.4757,"phaseMask":1,"position_x":119.609,"position_y":-137.113,"position_z":-0.704,"rotation0":0,"rotation1":0,"rotation2":0.672699,"rotation3":0.739917,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/CoilfangDraenei":"dbd551944e1bbea76c631bf93780e91f7b68e458987a9bd81b8bb4f853bc7c8e","patch/World/maps/CoilfangDraenei":"6cbe625451e76051bdff946a5ccf8c22488934100976b43910d7515772d49c40"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/slave-pens/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["21/21 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"arcatraz","title":"Tempest Keep: The Arcatraz","mapId":552,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Tempest Keep: The Arcatraz","theme":"Instanced dungeon","summary":"Fight through Tempest Keep: The Arcatraz, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Tempest Keep: The Arcatraz...","unchartedAreaName":"Uncharted Tempest Keep: The Arcatraz","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":804.1584},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/552-tempestkeeparcane/visual.glb","checksum":"abb5b8afcee7730ede4e611659e08a2ff6f3f36b441eb0d30c1f22c7e9e88ad0","size":5888348,"triangleCount":170294}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/552-tempestkeeparcane/collision.glb","checksum":"dbcbf99863d27f9e70fd476154093b4b4862ed7a4bbe57d1d51816e02b272d3a","size":1307684,"triangleCount":99999}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/552-tempestkeeparcane/navigation.glb","checksum":"72710decaeda6a422d7a717b5e203be5ed645e48061dcd78a8e82832bee78d1c","size":66316,"triangleCount":5937}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-1039.488,-145.0971,-400.3077],"max":[77.3987,-44.065,64.7832]},"entrance":{"name":"Tempest Keep: The Arcatraz Entrance","footPosition":[-524.6044,-115.1158,-160.2644],"forward":[0.8417885158677744,0,0.5398074606312233],"yaw":1.0005879607065484},"areas":[{"id":"entrance","name":"Tempest Keep: The Arcatraz Entrance","center":[-524.6044,-115.1158,-160.2644],"radius":35},{"id":"area-zereketh-the-unbound","name":"Zereketh the Unbound's Encounter","center":[-799.443,-124.9514,-283.2587],"radius":42},{"id":"area-dalliah-the-doomsayer","name":"Dalliah the Doomsayer's Encounter","center":[-663.07,-92.387,-31.7727],"radius":42},{"id":"area-wrath-scryer-soccothrates","name":"Wrath-Scryer Soccothrates's Encounter","center":[-662.036,-92.387,8.0313],"radius":42},{"id":"area-harbinger-skyriss","name":"Harbinger Skyriss's Encounter","center":[32.3987,-115.1158,19.7832],"radius":42}],"entities":{"entry-20859":{"id":"entry-20859","kind":"mob","name":"Arcatraz Warder","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15620","name":"Shoot","spellId":15620,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7259,"damageMultiplier":1.12},{"id":"spell-36609","name":"Arcane Shot","spellId":36609,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":7259,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19993-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-20857":{"id":"entry-20857","kind":"mob","name":"Arcatraz Defender","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19990-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-20864":{"id":"entry-20864","kind":"mob","name":"Protean Nightmare","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36617","name":"Gaping Maw","spellId":36617,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5690,"damageMultiplier":1.12},{"id":"spell-36619","name":"Infectious Poison","spellId":36619,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5690,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-18887-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4366,"labelHeight":6.5653,"markerRadius":3.6592}}},"entry-20865":{"id":"entry-20865","kind":"mob","name":"Protean Horror","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36612","name":"Toothy Bite","spellId":36612,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4820,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/10559416bf03ff8490d8f88e0219a54103626c0f2459baa5b766fe988ae0c2c7.glb","rotationY":-1.5707963267948966,"groundOffset":0.194,"labelHeight":2.9553,"markerRadius":1.6263}}},"entry-20866":{"id":"entry-20866","kind":"mob","name":"Soul Devourer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-33958","name":"Enrage","spellId":33958,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4987,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-33958","durationMs":8000,"magnitude":0.15}},{"id":"spell-36654","name":"Fel Breath","spellId":36654,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4987,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19976-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0181,"labelHeight":7.5584,"markerRadius":4.0317}}},"entry-20867":{"id":"entry-20867","kind":"mob","name":"Death Watcher","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36657","name":"Death Count","spellId":36657,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7319,"damageMultiplier":1.12},{"id":"spell-36655","name":"Drain Life","spellId":36655,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":7319,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19878-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.025,"labelHeight":8.5167,"markerRadius":2.0568}}},"entry-20868":{"id":"entry-20868","kind":"mob","name":"Entropic Eye","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36712","name":"Arcane Bolt","spellId":36712,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":7195,"damageMultiplier":1.12},{"id":"spell-36677","name":"Chaos Breath","spellId":36677,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7195,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19877-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.025,"labelHeight":8.5167,"markerRadius":2.0568}}},"entry-20869":{"id":"entry-20869","kind":"mob","name":"Arcatraz Sentinel","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19971-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":7.3061,"markerRadius":2.5665}}},"entry-20870":{"id":"entry-20870","kind":"boss","name":"Zereketh the Unbound","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36119","name":"Void Zone","spellId":36119,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6053,"damageMultiplier":1.35},{"id":"spell-32863","name":"Seed of Corruption","spellId":32863,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6053,"damageMultiplier":1.35},{"id":"spell-36127","name":"Shadow Nova","spellId":36127,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6053,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19882-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":11.4745,"markerRadius":2.8237}}},"entry-20873":{"id":"entry-20873","kind":"mob","name":"Negaton Warp-Master","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-36813","name":"Summon Negaton Field","spellId":36813,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4089,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19952-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":9.6062,"markerRadius":3.1464}}},"entry-20875":{"id":"entry-20875","kind":"mob","name":"Negaton Screamer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13704","name":"Psychic Scream","spellId":13704,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7082,"damageMultiplier":1.12},{"id":"spell-38836","name":"Fireball Volley","spellId":38836,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":3000,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19951-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":11.0643,"markerRadius":3.1464}}},"entry-20879":{"id":"entry-20879","kind":"mob","name":"Eredar Soul-Eater","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36778","name":"Soul Steal","spellId":36778,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5974,"damageMultiplier":1.12},{"id":"spell-36784","name":"Entropic Aura","spellId":36784,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5974,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19950-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":8.6003,"markerRadius":2.168}}},"entry-20881":{"id":"entry-20881","kind":"mob","name":"Unbound Devastator","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36887","name":"Deafening Roar","spellId":36887,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5437,"damageMultiplier":0.62,"radius":8},{"id":"spell-36891","name":"Devastate","spellId":36891,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5437,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-18345-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0191,"labelHeight":10.8412,"markerRadius":1.6036}}},"entry-20882":{"id":"entry-20882","kind":"mob","name":"Skulking Witch","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16380","name":"Greater Invisibility","spellId":16380,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6191,"damageMultiplier":1.12},{"id":"spell-36863","name":"Chastise","spellId":36863,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6191,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19947-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0038,"labelHeight":6.7493,"markerRadius":4.5}}},"entry-20883":{"id":"entry-20883","kind":"mob","name":"Spiteful Temptress","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36868","name":"Shadow Bolt","spellId":36868,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5512,"damageMultiplier":1.12},{"id":"spell-36886","name":"Spiteful Fury","spellId":36886,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5512,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19948-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0038,"labelHeight":6.7493,"markerRadius":4.5}}},"entry-20885":{"id":"entry-20885","kind":"boss","name":"Dalliah the Doomsayer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-36142","name":"Whirlwind","spellId":36142,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4114,"damageMultiplier":0.82,"radius":11},{"id":"spell-36173","name":"Gift of the Doomsayer","spellId":36173,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4114,"damageMultiplier":1.35},{"id":"spell-36144","name":"Heal","spellId":36144,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4114,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19888-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0105,"labelHeight":15.2549,"markerRadius":3.3296}}},"entry-20886":{"id":"entry-20886","kind":"boss","name":"Wrath-Scryer Soccothrates","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36512","name":"Knock Away","spellId":36512,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5077,"damageMultiplier":1.35},{"id":"spell-36051","name":"Fel Immolation","spellId":36051,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5077,"damageMultiplier":1.35},{"id":"spell-35759","name":"Felfire Shock","spellId":35759,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5077,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19977-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":16.5736,"markerRadius":4.5}}},"entry-20896":{"id":"entry-20896","kind":"mob","name":"Ethereum Slayer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36838","name":"Slaying Strike","spellId":36838,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5168,"damageMultiplier":1.12},{"id":"spell-36839","name":"Impairing Poison","spellId":36839,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5168,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19889-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0747,"labelHeight":5.8067,"markerRadius":2.8975}}},"entry-20897":{"id":"entry-20897","kind":"mob","name":"Ethereum Wave-Caster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36480","name":"Mental Protection Field","spellId":36480,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4799,"damageMultiplier":1.12},{"id":"spell-38897","name":"Sonic Boom","spellId":38897,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-21021-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.129,"labelHeight":4.9137,"markerRadius":1.5783}}},"entry-20898":{"id":"entry-20898","kind":"mob","name":"Gargantuan Abyssal","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-20282-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1813,"labelHeight":12.4487,"markerRadius":4.3755}}},"entry-20900":{"id":"entry-20900","kind":"mob","name":"Unchained Doombringer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36833","name":"Berserker Charge","spellId":36833,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5856,"damageMultiplier":1.12},{"id":"spell-36835","name":"War Stomp","spellId":36835,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5856,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19945-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":11.8215,"markerRadius":2.7515}}},"entry-20901":{"id":"entry-20901","kind":"mob","name":"Sargeron Archer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-38940","name":"Shoot","spellId":38940,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6934,"damageMultiplier":1.12},{"id":"spell-36827","name":"Hooked Net","spellId":36827,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6934,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/b0222314bf55f489e9328677ef322c3cbc243b8c297b2916088350f11848173b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0096,"labelHeight":6.1495,"markerRadius":1.7823}}},"entry-20902":{"id":"entry-20902","kind":"mob","name":"Sargeron Hellcaller","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36829","name":"Hell Rain","spellId":36829,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":4044,"damageMultiplier":0.62,"radius":8},{"id":"spell-36831","name":"Curse of the Elements","spellId":36831,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4044,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-11343-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0108,"labelHeight":6.9182,"markerRadius":2.0051}}},"entry-20904":{"id":"entry-20904","kind":"mob","name":"Warden Mellichar","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19965-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7605,"markerRadius":0.65}}},"entry-21303":{"id":"entry-21303","kind":"mob","name":"Defender Corpse","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19990-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-21304":{"id":"entry-21304","kind":"mob","name":"Warder Corpse","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19993-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-21702":{"id":"entry-21702","kind":"mob","name":"Ethereum Life-Binder","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-37479","name":"Shadow Mend","spellId":37479,"delivery":"projectile","target":"lowest-health-friendly","school":"shadow","animation":"cast","range":28,"cooldownMs":7004,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-34941","name":"Shadow Word: Pain","spellId":34941,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7004,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-21046-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1394,"labelHeight":5.3068,"markerRadius":1.7046}}},"entry-21962":{"id":"entry-21962","kind":"mob","name":"Udalo","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-20644-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":3.3307,"markerRadius":0.827}}},"entry-20912":{"id":"entry-20912","kind":"boss","name":"Harbinger Skyriss","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":7484,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/arcatraz/creatures/display-19943-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1442,"labelHeight":22.0954,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-79392","entityId":"entry-20859","position":[-595.4851,-124.9447,-175.1526],"yaw":-0.541052,"spawnMask":3},{"id":"creature-79393","entityId":"entry-20859","position":[-599.2266,-124.9727,-177.0446],"yaw":-0.541052,"spawnMask":3},{"id":"creature-79395","entityId":"entry-20857","position":[-627.813,-125.0806,-163.2663],"yaw":-0.20944,"spawnMask":3},{"id":"creature-79396","entityId":"entry-20859","position":[-602.7802,-125.017,-141.4564],"yaw":-5.68977,"spawnMask":3},{"id":"creature-79397","entityId":"entry-20859","position":[-599.6802,-124.9816,-142.728],"yaw":-5.89921,"spawnMask":3},{"id":"creature-79399","entityId":"entry-20857","position":[-629.333,-125.0816,-159.0482],"yaw":-6.21804,"spawnMask":3},{"id":"creature-79400","entityId":"entry-20857","position":[-627.46,-125.0971,-153.7013],"yaw":-5.8294,"spawnMask":3},{"id":"creature-138901","entityId":"entry-20864","position":[-734.829,-122.2966,-153.2983],"yaw":-4.14757,"spawnMask":3},{"id":"creature-138902","entityId":"entry-20864","position":[-728.616,-124.9302,-201.6864],"yaw":-5.84685,"spawnMask":3},{"id":"creature-138905","entityId":"entry-20865","position":[-726.552,-124.926,-221.0416],"yaw":-0.159309,"spawnMask":3},{"id":"creature-138906","entityId":"entry-20865","position":[-726.334,-124.9492,-278.7057],"yaw":-3.10863,"spawnMask":3},{"id":"creature-138907","entityId":"entry-20865","position":[-750.26,-124.9705,-321.1177],"yaw":-6.26747,"spawnMask":3},{"id":"creature-138909","entityId":"entry-20865","position":[-727.387,-124.9302,-196.637],"yaw":-4.85512,"spawnMask":3},{"id":"creature-138910","entityId":"entry-20865","position":[-810.261,-92.387,-120.75],"yaw":-1.56625,"spawnMask":3},{"id":"creature-138911","entityId":"entry-20865","position":[-726.402,-124.9293,-215.7614],"yaw":-6.0259,"spawnMask":3},{"id":"creature-138912","entityId":"entry-20865","position":[-729.818,-124.9491,-274.9417],"yaw":-3.58174,"spawnMask":3},{"id":"creature-138913","entityId":"entry-20865","position":[-729.486,-124.927,-220.7734],"yaw":-0.499034,"spawnMask":3},{"id":"creature-138914","entityId":"entry-20865","position":[-725.85,-124.9514,-276.0747],"yaw":-3.40614,"spawnMask":3},{"id":"creature-138916","entityId":"entry-20865","position":[-734.598,-122.2966,-149.1934],"yaw":-5.43281,"spawnMask":3},{"id":"creature-138917","entityId":"entry-20865","position":[-724.64,-124.9221,-218.5266],"yaw":-6.16678,"spawnMask":3},{"id":"creature-138918","entityId":"entry-20865","position":[-731.577,-124.9244,-205.1285],"yaw":-3.5465,"spawnMask":3},{"id":"creature-138919","entityId":"entry-20865","position":[-727.528,-124.9514,-273.9407],"yaw":-3.59385,"spawnMask":3},{"id":"creature-138920","entityId":"entry-20865","position":[-738.755,-122.2966,-153.9893],"yaw":-4.73786,"spawnMask":3},{"id":"creature-138921","entityId":"entry-20865","position":[-729.392,-124.9486,-278.1527],"yaw":-3.46516,"spawnMask":3},{"id":"creature-138922","entityId":"entry-20865","position":[-810.301,-92.387,-165.6295],"yaw":-2.31213,"spawnMask":3},{"id":"creature-138923","entityId":"entry-20865","position":[-729.75,-124.9259,-216.6582],"yaw":-0.123065,"spawnMask":3},{"id":"creature-138924","entityId":"entry-20865","position":[-783.96,-125.0219,-311.4037],"yaw":-2.60235,"spawnMask":3},{"id":"creature-138927","entityId":"entry-20867","position":[-758.321,-124.9407,-299.0047],"yaw":-2.01374,"spawnMask":3},{"id":"creature-138928","entityId":"entry-20867","position":[-791.294,-125.0164,-344.2057],"yaw":-1.04301,"spawnMask":3},{"id":"creature-138929","entityId":"entry-20868","position":[-770.3,-124.9326,-317.1817],"yaw":-0.102379,"spawnMask":3},{"id":"creature-138930","entityId":"entry-20868","position":[-783.666,-124.9514,-286.1157],"yaw":-0.301955,"spawnMask":3},{"id":"creature-138931","entityId":"entry-20869","position":[-781.334,-92.5496,-1.3647],"yaw":-5.41052,"spawnMask":3},{"id":"creature-138932","entityId":"entry-20869","position":[-779.778,-92.5165,-28.3977],"yaw":-0.767945,"spawnMask":3},{"id":"creature-138933","entityId":"entry-20869","position":[-790.123,-92.4581,-221.5998],"yaw":-5.28835,"spawnMask":3},{"id":"creature-138934","entityId":"entry-20869","position":[-862.35,-66.4855,-132.852],"yaw":-3.83972,"spawnMask":3},{"id":"creature-138935","entityId":"entry-20869","position":[-921.249,-66.6155,-142.0839],"yaw":-2.49582,"spawnMask":3},{"id":"creature-138936","entityId":"entry-20870","position":[-799.443,-124.9514,-283.2587],"yaw":-2.98738,"spawnMask":3},{"id":"creature-138937","entityId":"entry-20873","position":[-801.161,-92.387,-123.1356],"yaw":-5.29934,"spawnMask":3},{"id":"creature-138938","entityId":"entry-20873","position":[-817.099,-92.387,-153.5177],"yaw":-1.59431,"spawnMask":3},{"id":"creature-138939","entityId":"entry-20875","position":[-810.84,-94.0133,-137.2457],"yaw":-3.93757,"spawnMask":3},{"id":"creature-138940","entityId":"entry-20875","position":[-792.586,-92.3814,-178.1022],"yaw":-1.74047,"spawnMask":3},{"id":"creature-138941","entityId":"entry-20875","position":[-824.448,-92.3864,-103.2155],"yaw":-1.65806,"spawnMask":3},{"id":"creature-138942","entityId":"entry-20879","position":[-831.572,-90.0482,-12.2197],"yaw":-3.97935,"spawnMask":3},{"id":"creature-138943","entityId":"entry-20879","position":[-811.355,-92.5997,-14.1237],"yaw":-5.79449,"spawnMask":3},{"id":"creature-138944","entityId":"entry-20879","position":[-827.633,-92.6007,-32.8347],"yaw":-1.309,"spawnMask":3},{"id":"creature-138945","entityId":"entry-20881","position":[-725.534,-92.4108,-17.2607],"yaw":-4.03355,"spawnMask":3},{"id":"creature-138946","entityId":"entry-20881","position":[-673.886,-94.0133,-13.2847],"yaw":-6.26573,"spawnMask":3},{"id":"creature-138947","entityId":"entry-20882","position":[-689.051,-92.387,5.3813],"yaw":-5.37561,"spawnMask":3},{"id":"creature-138949","entityId":"entry-20883","position":[-705.201,-92.387,-7.7417],"yaw":-3.60076,"spawnMask":3},{"id":"creature-138950","entityId":"entry-20885","position":[-663.07,-92.387,-31.7727],"yaw":-1.01229,"spawnMask":3},{"id":"creature-138951","entityId":"entry-20886","position":[-662.036,-92.387,8.0313],"yaw":-5.23599,"spawnMask":3},{"id":"creature-138952","entityId":"entry-20896","position":[-955.648,-66.6166,-148.1901],"yaw":-5.20108,"spawnMask":3},{"id":"creature-138954","entityId":"entry-20896","position":[-958.863,-66.6161,-154.1697],"yaw":-2.87979,"spawnMask":3},{"id":"creature-138955","entityId":"entry-20896","position":[-969.801,-66.6987,-166.4626],"yaw":-4.97249,"spawnMask":3},{"id":"creature-138956","entityId":"entry-20897","position":[-960.064,-66.6171,-150.505],"yaw":-3.57792,"spawnMask":3},{"id":"creature-138957","entityId":"entry-20897","position":[-966.609,-66.6987,-162.318],"yaw":-4.83059,"spawnMask":3},{"id":"creature-138959","entityId":"entry-20898","position":[-982.954,-71.8065,-297.8477],"yaw":-5.92215,"spawnMask":3},{"id":"creature-138960","entityId":"entry-20900","position":[-958.093,-71.7281,-274.5217],"yaw":-1.13446,"spawnMask":3},{"id":"creature-138961","entityId":"entry-20900","position":[-955.428,-71.8345,-317.6417],"yaw":-1.95317,"spawnMask":3},{"id":"creature-138962","entityId":"entry-20901","position":[-957.073,-66.4328,-233.1541],"yaw":-0.174533,"spawnMask":3},{"id":"creature-138963","entityId":"entry-20901","position":[-986.7,-66.4328,-234.458],"yaw":-2.94961,"spawnMask":3},{"id":"creature-138964","entityId":"entry-20902","position":[-962.081,-66.4328,-236.5799],"yaw":-1.74533,"spawnMask":3},{"id":"creature-138965","entityId":"entry-20902","position":[-983.447,-66.4328,-237.0937],"yaw":-1.09956,"spawnMask":3},{"id":"creature-138966","entityId":"entry-20904","position":[-971.639,-71.2673,-329.2857],"yaw":-4.7473,"spawnMask":3},{"id":"creature-138973","entityId":"entry-21303","position":[-797.939,-92.4582,-219.3128],"yaw":-0.506145,"spawnMask":3},{"id":"creature-138974","entityId":"entry-21303","position":[-732.178,-124.9377,-258.5571],"yaw":-2.6529,"spawnMask":3},{"id":"creature-138975","entityId":"entry-21303","position":[-779.525,-92.4994,-20.4107],"yaw":-2.30383,"spawnMask":3},{"id":"creature-138976","entityId":"entry-21303","position":[-798.337,-92.4025,-200.4714],"yaw":-2.9147,"spawnMask":3},{"id":"creature-138977","entityId":"entry-21303","position":[-824.684,-92.601,-8.5307],"yaw":-5.70723,"spawnMask":3},{"id":"creature-138978","entityId":"entry-21303","position":[-838.765,-92.387,-167.4693],"yaw":-4.03171,"spawnMask":3},{"id":"creature-138979","entityId":"entry-21303","position":[-802.009,-124.9338,-340.0967],"yaw":-1.43117,"spawnMask":3},{"id":"creature-138980","entityId":"entry-21303","position":[-836.955,-92.387,-165.7824],"yaw":-1.5708,"spawnMask":3},{"id":"creature-138981","entityId":"entry-21303","position":[-809.564,-92.605,-30.0337],"yaw":-0.575959,"spawnMask":3},{"id":"creature-138982","entityId":"entry-21303","position":[-917.899,-66.6155,-135.393],"yaw":-6.16101,"spawnMask":3},{"id":"creature-138983","entityId":"entry-21303","position":[-920.912,-66.6155,-132.6952],"yaw":-4.41568,"spawnMask":3},{"id":"creature-138984","entityId":"entry-21304","position":[-819.721,-92.3853,-89.3419],"yaw":-1.55334,"spawnMask":3},{"id":"creature-138985","entityId":"entry-21304","position":[-783.18,-92.5794,-4.7107],"yaw":-4.71239,"spawnMask":3},{"id":"creature-138986","entityId":"entry-21304","position":[-752.02,-124.9467,-322.3747],"yaw":-0.349066,"spawnMask":3},{"id":"creature-138987","entityId":"entry-21304","position":[-817.468,-92.3846,-89.6978],"yaw":-2.00713,"spawnMask":3},{"id":"creature-138988","entityId":"entry-21304","position":[-723.791,-124.9289,-247.092],"yaw":-5.8294,"spawnMask":3},{"id":"creature-138989","entityId":"entry-21304","position":[-779.787,-92.5308,-5.2777],"yaw":-4.93928,"spawnMask":3},{"id":"creature-138995","entityId":"entry-21702","position":[-955.245,-66.6219,-153.1882],"yaw":-1.23918,"spawnMask":3},{"id":"creature-138996","entityId":"entry-21702","position":[-970.672,-66.6987,-162.3241],"yaw":-4.61222,"spawnMask":3},{"id":"creature-138997","entityId":"entry-21962","position":[-994.488,-65.5262,-148.0685],"yaw":-1.29154,"spawnMask":3},{"id":"encounter-500","entityId":"entry-20912","position":[32.3987,-115.1158,19.7832],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-138903","name":"Protean Horror Patrol","speed":1.15,"pathId":1389030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-728.36,-125.0348,-274.5957],[-720.975,-125.0348,-279.0717],[-720.871,-125.0277,-305.7797],[-738.032,-125.0246,-318.2267],[-757.663,-125.0243,-318.1477],[-761.744,-125.0179,-324.4077],[-760.894,-125.0204,-341.3087],[-749.826,-125.0182,-346.3087],[-756.233,-125.0186,-354.4447],[-785.62,-125.0166,-355.3077],[-798.672,-125.0163,-335.7737],[-804.29,-125.0202,-313.4257],[-806.419,-125.0332,-297.1547],[-787.404,-125.0347,-279.9957],[-771.662,-125.0347,-282.5717],[-746.142,-125.0292,-282.0037]],"members":[{"id":"member","entityId":"entry-20865","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138904","name":"Protean Horror Patrol","speed":1.15,"pathId":1389040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-734.21,-66.7181,-137.9477],[-758.942,-66.5724,-138.0074],[-805.979,-66.5611,-137.9266],[-852.858,-66.5611,-137.8636],[-891.175,-66.6988,-138.0814],[-940.355,-66.697,-137.8202],[-984.82,-66.6898,-158.4112],[-993.872,-65.4273,-145.4963],[-985.663,-64.065,-122.8674],[-960.665,-65.5593,-115.5518],[-940.352,-66.6957,-137.498],[-891.087,-66.6988,-137.6994],[-852.825,-66.5611,-137.5614],[-805.982,-66.5611,-137.5285],[-758.943,-66.5717,-137.745]],"members":[{"id":"member","entityId":"entry-20865","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138908","name":"Protean Horror Patrol","speed":1.15,"pathId":1389080,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-728.186,-125.02,-221.813],[-734.065,-124.9756,-218.2648],[-733.907,-125.003,-189.4593],[-735.876,-125.0013,-181.9139],[-749.45,-124.5532,-174.2102],[-749.074,-122.814,-157.2515],[-726.988,-123.009,-138.3344],[-709.684,-125.0182,-143.1198],[-712.575,-125.0142,-157.7143],[-723.771,-125.009,-178.1035],[-723.261,-125.0182,-216.319]],"members":[{"id":"member","entityId":"entry-20865","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138915","name":"Protean Horror Patrol","speed":1.15,"pathId":1389150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-826.964,-92.4733,-92.6659],[-827.961,-92.6868,-53.2207],[-826.008,-92.6831,-27.9357],[-810.42,-92.6903,-15.3647],[-770.399,-92.6305,-13.0817],[-754.635,-92.6035,-12.9897],[-731.968,-92.3709,-12.7517],[-702.561,-92.4704,3.2373],[-691.979,-92.4704,-13.4987],[-702.079,-92.4704,-29.5757],[-731.972,-92.3709,-13.2207],[-770.445,-92.6307,-13.4557],[-810.387,-92.6903,-15.7497],[-827.347,-92.6868,-53.2357]],"members":[{"id":"member","entityId":"entry-20865","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138925","name":"Soul Devourer Patrol","speed":1.15,"pathId":1389250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-734.371,-125.024,-312.5577],[-747.707,-125.0238,-312.8557],[-763.021,-125.0167,-312.8967],[-779.789,-125.0181,-313.0907],[-779.114,-125.0151,-335.7817],[-779.789,-125.0181,-313.0907],[-763.021,-125.0167,-312.8967],[-747.707,-125.0238,-312.8557]],"members":[{"id":"member","entityId":"entry-20866","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138926","name":"Soul Devourer Patrol","speed":1.15,"pathId":1389260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-802.63,-125.028,-305.5697],[-782.007,-125.0224,-304.1057],[-770.945,-125.0218,-303.3047],[-771.267,-125.0292,-288.9477],[-733.544,-125.021,-289.3527],[-733.544,-125.021,-289.3527],[-771.267,-125.0292,-288.9477],[-770.945,-125.0218,-303.3047],[-782.007,-125.0224,-304.1057]],"members":[{"id":"member","entityId":"entry-20866","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138948","name":"Skulking Witch Patrol","speed":1.15,"pathId":1389480,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-650.831,-92.4704,-12.8567],[-681.597,-94.0966,-23.1867],[-698.731,-92.4704,-22.8197],[-716.103,-92.4704,-22.2927],[-716.029,-92.4704,-13.5307],[-716.178,-92.4703,-5.0887],[-698.693,-92.4704,-3.7947],[-682.011,-94.0966,-1.4777]],"members":[{"id":"member","entityId":"entry-20882","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138953","name":"Ethereum Slayer Patrol","speed":1.15,"pathId":1389530,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-968.236,-66.6987,-180.7371],[-975.139,-66.6731,-180.7085],[-975.241,-66.6918,-158.7402],[-989.134,-66.6064,-154.8265],[-992.632,-64.9192,-140.7684],[-986.053,-64.065,-123.4763],[-965.492,-65.1887,-115.6458],[-953.38,-66.4999,-118.9432],[-952.479,-66.7047,-127.7253],[-962.599,-66.6975,-140.8984],[-968.722,-66.6812,-148.2898]],"members":[{"id":"member","entityId":"entry-20896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138958","name":"Gargantuan Abyssal Patrol","speed":1.15,"pathId":1389580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-982.031,-71.8135,-322.3017],[-970.222,-71.874,-312.0577],[-963.608,-71.8114,-296.5927],[-967.531,-71.8114,-283.3207],[-970.9,-71.8114,-265.9357],[-972.301,-71.8114,-249.595],[-972.249,-66.5161,-225.664],[-972.301,-71.8114,-249.595],[-970.9,-71.8114,-265.9357],[-967.531,-71.8114,-283.3207],[-963.608,-71.8114,-296.5927],[-970.222,-71.874,-312.0577]],"members":[{"id":"member","entityId":"entry-20898","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-138936","name":"Zereketh the Unbound","position":[-799.443,-124.9514,-283.2587]},{"id":"creature-138950","name":"Dalliah the Doomsayer","position":[-663.07,-92.387,-31.7727]},{"id":"creature-138951","name":"Wrath-Scryer Soccothrates","position":[-662.036,-92.387,8.0313]},{"id":"encounter-500","name":"Harbinger Skyriss","position":[32.3987,-115.1158,19.7832]}],"objectiveOrder":[{"id":"creature-138936","name":"Zereketh the Unbound","position":[-799.443,-124.9514,-283.2587]},{"id":"creature-138950","name":"Dalliah the Doomsayer","position":[-663.07,-92.387,-31.7727]},{"id":"creature-138951","name":"Wrath-Scryer Soccothrates","position":[-662.036,-92.387,8.0313]},{"id":"encounter-500","name":"Harbinger Skyriss","position":[32.3987,-115.1158,19.7832]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26213,"id":183965,"map":552,"orientation":3.14159,"phaseMask":1,"position_x":445.835,"position_y":-208.129,"position_z":73.9555,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26214,"id":184802,"map":552,"orientation":-0.558505,"phaseMask":1,"position_x":445.786,"position_y":-169.263,"position_z":43.0466,"rotation0":0,"rotation1":0,"rotation2":-0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":43200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26215,"id":184319,"map":552,"orientation":3.14159,"phaseMask":1,"position_x":199.911,"position_y":102.009,"position_z":23.6937,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26216,"id":184318,"map":552,"orientation":3.14159,"phaseMask":1,"position_x":199.827,"position_y":117.488,"position_z":23.8766,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26220,"id":183962,"map":552,"orientation":-0.087266,"phaseMask":1,"position_x":477.488,"position_y":-174.455,"position_z":61.5633,"rotation0":0,"rotation1":0,"rotation2":-0.0436192,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":26221,"id":182198,"map":552,"orientation":1.8675,"phaseMask":1,"position_x":320.304,"position_y":-21.8057,"position_z":22.4412,"rotation0":0,"rotation1":0,"rotation2":0.803856,"rotation3":0.594824,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30817,"id":183964,"map":552,"orientation":-3.05433,"phaseMask":1,"position_x":414.255,"position_y":-175.364,"position_z":61.5589,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436174,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30818,"id":183963,"map":552,"orientation":-2.70526,"phaseMask":1,"position_x":407.962,"position_y":-151.243,"position_z":61.5632,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":30819,"id":183363,"map":552,"orientation":3.17987,"phaseMask":1,"position_x":455.298,"position_y":16.4321,"position_z":48.2747,"rotation0":0,"rotation1":0,"rotation2":-0.999817,"rotation3":0.0191351,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":30820,"id":183362,"map":552,"orientation":3.17987,"phaseMask":1,"position_x":439.832,"position_y":32.7644,"position_z":48.2747,"rotation0":0,"rotation1":0,"rotation2":-0.999817,"rotation3":0.0191351,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30821,"id":183961,"map":552,"orientation":-0.436333,"phaseMask":1,"position_x":484.1,"position_y":-150.403,"position_z":61.5632,"rotation0":0,"rotation1":0,"rotation2":-0.21644,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150048,"id":184213,"map":552,"orientation":3.14159,"phaseMask":1,"position_x":-3.77762,"position_y":0.178076,"position_z":-1.55146,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150049,"id":184214,"map":552,"orientation":3.14159,"phaseMask":1,"position_x":-3.77762,"position_y":0.178076,"position_z":-1.55146,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/TempestKeepArcane":"b9737a04111782e74f3eb0d9d2f24e8671ed1bd14d4f8ec25d375208a1746017","patch/World/maps/TempestKeepArcane":"a40f21f71339f62ca7bcec072d9ed6c2465c71f5fba3f79ec67cceebf94002ef"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/arcatraz/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["29/29 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"botanica","title":"Tempest Keep: The Botanica","mapId":553,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Tempest Keep: The Botanica","theme":"Instanced dungeon","summary":"Fight through Tempest Keep: The Botanica, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Tempest Keep: The Botanica...","unchartedAreaName":"Uncharted Tempest Keep: The Botanica","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":514.9375},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/553-tempestkeepatrium/visual.glb","checksum":"b8746ea9d2f212713aa0fbd79f40100ac1416ad2a3ee0ee5c99ba4057b38a4d1","size":4843164,"triangleCount":89802}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/553-tempestkeepatrium/collision.glb","checksum":"ff352b43d8bca1d99cdb5ca3839b00367db27fb3fc9fb9f96512c5f3940cd576","size":890492,"triangleCount":65782}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/553-tempestkeepatrium/navigation.glb","checksum":"867dd48c578babc40ce5108c7be1a5e13f08685e30d85b0a4600e244b58db36c","size":309724,"triangleCount":23024}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-403.9404,-53.2084,335.8441],"max":[237.4031,16.8842,1051.0351]},"entrance":{"name":"Tempest Keep: The Botanica Entrance","footPosition":[-199.3969,-5.2754,380.8441],"forward":[0.9068524609475049,0,0.4214482341562889],"yaw":1.1357546084068106},"areas":[{"id":"entrance","name":"Tempest Keep: The Botanica Entrance","center":[-199.3969,-5.2754,380.8441],"radius":35},{"id":"area-commander-sarannis","name":"Commander Sarannis's Encounter","center":[-310.3214,-8.7242,705.4911],"radius":42},{"id":"area-high-botanist-freywinn","name":"High Botanist Freywinn's Encounter","center":[-275.6834,-9.0979,865.0271],"radius":42},{"id":"area-thorngrin-the-tender","name":"Thorngrin the Tender's Encounter","center":[-164.306,-19.2348,1006.0351],"radius":42},{"id":"area-laj","name":"Laj's Encounter","center":[44.7676,-15.3508,800.7061],"radius":42},{"id":"area-warp-splinter","name":"Warp Splinter's Encounter","center":[-223.1981,-32.0503,801.3391],"radius":42}],"entities":{"entry-17975":{"id":"entry-17975","kind":"boss","name":"High Botanist Freywinn","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34557","name":"Summon Frayer Protector","spellId":34557,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4777,"damageMultiplier":1.35},{"id":"spell-34551","name":"Tree Form","spellId":34551,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4777,"damageMultiplier":1.35},{"id":"spell-34550","name":"Tranquility","spellId":34550,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4777,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19045-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.26,"markerRadius":0.65}}},"entry-17976":{"id":"entry-17976","kind":"boss","name":"Commander Sarannis","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34799","name":"Arcane Devastation","spellId":34799,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5797,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-18929-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":4.5567,"markerRadius":0.65}}},"entry-17977":{"id":"entry-17977","kind":"boss","name":"Warp Splinter","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6927,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19438-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0709,"labelHeight":24.1563,"markerRadius":4.5}}},"entry-17978":{"id":"entry-17978","kind":"boss","name":"Thorngrin the Tender","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34661","name":"Sacrifice","spellId":34661,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4414,"damageMultiplier":1.35},{"id":"spell-39132","name":"Hellfire","spellId":39132,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4414,"damageMultiplier":1.35},{"id":"spell-34670","name":"Enrage","spellId":34670,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4414,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-34670","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/928658948713f14e42fc755dc19a6deaf554dccb1e1f85d7dbeac55454539957.glb","rotationY":-1.5707963267948966,"groundOffset":0.0121,"labelHeight":7.6869,"markerRadius":2.2279}}},"entry-17980":{"id":"entry-17980","kind":"boss","name":"Laj","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5433,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/d18a720702d5501d87412111e5848a230248ebf06f9f6afba8973a36b21ae84f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0732,"labelHeight":5.9732,"markerRadius":3.9737}}},"entry-17993":{"id":"entry-17993","kind":"mob","name":"Bloodwarder Protector","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-29765","name":"Crystal Strike","spellId":29765,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6612,"damageMultiplier":1.12},{"id":"spell-34784","name":"Intervene","spellId":34784,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/cb1b6b74237a0c0edf9d974746514164f3d19e80ff887379f88aada24a898978.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-17994":{"id":"entry-17994","kind":"mob","name":"Bloodwarder Falconer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35401","name":"Arcane Shot","spellId":35401,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4007,"damageMultiplier":1.12},{"id":"spell-34852","name":"Call of the Falcon","spellId":34852,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4007,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17779-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-18155":{"id":"entry-18155","kind":"mob","name":"Bloodfalcon","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-34856","name":"Bloodburn","spellId":34856,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7115,"damageMultiplier":1.12},{"id":"spell-32323","name":"Charge","spellId":32323,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7115,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19685-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.785,"markerRadius":1.7166}}},"entry-18404":{"id":"entry-18404","kind":"mob","name":"Bloodwarder Steward","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34821","name":"Arcane Flurry","spellId":34821,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4850,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17813-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-18405":{"id":"entry-18405","kind":"mob","name":"Tempest-Forge Peacekeeper","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-18930-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.4677,"markerRadius":1.8343}}},"entry-18419":{"id":"entry-18419","kind":"mob","name":"Bloodwarder Greenkeeper","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34798","name":"Greenkeeper's Fury","spellId":34798,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6009,"damageMultiplier":1.12},{"id":"spell-34800","name":"Impending Coma","spellId":34800,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6009,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17883-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-18420":{"id":"entry-18420","kind":"mob","name":"Sunseeker Geomancer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34356","name":"Blizzard","spellId":34356,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5387,"damageMultiplier":0.62,"radius":8},{"id":"spell-34360","name":"Rain of Fire","spellId":34360,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5387,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/a4eebcf9534bcfb16c8420c0262664911893f2ad0a58b476df4071776c170fc2.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-18421":{"id":"entry-18421","kind":"mob","name":"Sunseeker Researcher","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34352","name":"Mind Shock","spellId":34352,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4247,"damageMultiplier":1.12},{"id":"spell-34354","name":"Flame Shock","spellId":34354,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4247,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17842-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-18422":{"id":"entry-18422","kind":"mob","name":"Sunseeker Botanist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34254","name":"Rejuvenate Plant","spellId":34254,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":5560,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-34350","name":"Nature's Rage","spellId":34350,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5560,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17819-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-18587":{"id":"entry-18587","kind":"mob","name":"Frayer","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34201","name":"Shift Form","spellId":34201,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4758,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19030-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0256,"labelHeight":2.2166,"markerRadius":1.3908}}},"entry-19486":{"id":"entry-19486","kind":"mob","name":"Sunseeker Chemist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34359","name":"Fire Breath Potion","spellId":34359,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6046,"damageMultiplier":0.62,"radius":8},{"id":"spell-34358","name":"Vial of Poison","spellId":34358,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6046,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-18925-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19505":{"id":"entry-19505","kind":"mob","name":"Sunseeker Channeler","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34637","name":"Soul Channel","spellId":34637,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4755,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-21341-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19507":{"id":"entry-19507","kind":"mob","name":"Sunseeker Gene-Splicer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34642","name":"Death & Decay","spellId":34642,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6097,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-21337-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19508":{"id":"entry-19508","kind":"mob","name":"Sunseeker Herbalist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22127","name":"Entangling Roots","spellId":22127,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":4274,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-34641","name":"Spade Toss","spellId":34641,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4274,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-21338-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-19509":{"id":"entry-19509","kind":"mob","name":"Sunseeker Harvester","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34639","name":"Polymorph","spellId":34639,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6765,"damageMultiplier":1.12},{"id":"spell-34640","name":"Wilting Touch","spellId":34640,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6765,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-21333-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19511":{"id":"entry-19511","kind":"mob","name":"Nethervine Inciter","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-11331-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-19512":{"id":"entry-19512","kind":"mob","name":"Nethervine Reaper","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-2878-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-19513":{"id":"entry-19513","kind":"mob","name":"Mutate Fear-Shrieker","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/10559416bf03ff8490d8f88e0219a54103626c0f2459baa5b766fe988ae0c2c7.glb","rotationY":-1.5707963267948966,"groundOffset":0.194,"labelHeight":2.9553,"markerRadius":1.6263}}},"entry-19557":{"id":"entry-19557","kind":"mob","name":"Greater Frayer","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34644","name":"Lash","spellId":34644,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4868,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19029-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0217,"labelHeight":2.7226,"markerRadius":1.5895}}},"entry-19598":{"id":"entry-19598","kind":"mob","name":"Mutate Fleshlasher","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34351","name":"Vicious Bite","spellId":34351,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6507,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"plant","model":{"url":"/assets/game/dungeons/botanica/creatures/display-19021-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1455,"labelHeight":2.304,"markerRadius":1.2197}}},"entry-19608":{"id":"entry-19608","kind":"mob","name":"Frayer Wildling","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34644","name":"Lash","spellId":34644,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4531,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-17714-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0271,"labelHeight":3.3217,"markerRadius":1.9868}}},"entry-19633":{"id":"entry-19633","kind":"mob","name":"Bloodwarder Mender","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35096","name":"Greater Heal","spellId":35096,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4414,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-34809","name":"Holy Fury","spellId":34809,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4414,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-21331-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19843":{"id":"entry-19843","kind":"mob","name":"Nethervine Trickster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-2019-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":3.9972,"markerRadius":1.1585}}},"entry-19865":{"id":"entry-19865","kind":"mob","name":"Mutate Horror","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/botanica/creatures/display-18083-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.194,"labelHeight":2.9553,"markerRadius":1.6263}}}},"staticSpawns":[{"id":"creature-147000","entityId":"entry-17975","position":[-275.6834,-9.0979,865.0271],"yaw":-3.38594,"spawnMask":3},{"id":"creature-147001","entityId":"entry-17976","position":[-310.3214,-8.7242,705.4911],"yaw":-2.35736,"spawnMask":3},{"id":"creature-147002","entityId":"entry-17977","position":[-223.1981,-32.0503,801.3391],"yaw":-3.21141,"spawnMask":3},{"id":"creature-147003","entityId":"entry-17978","position":[-164.306,-19.2348,1006.0351],"yaw":-4.69494,"spawnMask":3},{"id":"creature-147004","entityId":"entry-17980","position":[44.7676,-15.3508,800.7061],"yaw":-0.0174533,"spawnMask":3},{"id":"creature-147005","entityId":"entry-17993","position":[-234.3698,-9.5485,693.3391],"yaw":-1.76278,"spawnMask":3},{"id":"creature-147006","entityId":"entry-17993","position":[-192.105,-9.7187,702.2891],"yaw":-5.32325,"spawnMask":3},{"id":"creature-147007","entityId":"entry-17993","position":[-234.6594,-9.5377,701.7931],"yaw":-4.95674,"spawnMask":3},{"id":"creature-147008","entityId":"entry-17993","position":[-311.0184,-8.4912,691.2461],"yaw":-1.8326,"spawnMask":3},{"id":"creature-147009","entityId":"entry-17993","position":[-313.1144,-8.1651,691.2011],"yaw":-1.8326,"spawnMask":3},{"id":"creature-147010","entityId":"entry-17993","position":[-320.7604,-7.2547,695.0561],"yaw":-2.68781,"spawnMask":3},{"id":"creature-147011","entityId":"entry-17993","position":[-322.4654,-7.4697,697.3561],"yaw":-2.23402,"spawnMask":3},{"id":"creature-147012","entityId":"entry-17993","position":[-324.3264,-8.1645,702.4091],"yaw":-2.84489,"spawnMask":3},{"id":"creature-147013","entityId":"entry-17993","position":[-324.5224,-8.5282,704.9921],"yaw":-3.15905,"spawnMask":3},{"id":"creature-147014","entityId":"entry-17993","position":[1.8486,-21.8014,801.3371],"yaw":-1.95477,"spawnMask":3},{"id":"creature-147015","entityId":"entry-17993","position":[7.3066,-21.7704,801.2201],"yaw":-1.32645,"spawnMask":3},{"id":"creature-147016","entityId":"entry-17993","position":[-1.6884,-21.8981,881.1761],"yaw":-1.76278,"spawnMask":3},{"id":"creature-147017","entityId":"entry-17993","position":[5.6316,-21.8981,882.4911],"yaw":-1.5708,"spawnMask":3},{"id":"creature-147018","entityId":"entry-17993","position":[-191.704,-9.717,692.6671],"yaw":-1.8326,"spawnMask":3},{"id":"creature-147019","entityId":"entry-17993","position":[-162.0506,-9.7601,468.6119],"yaw":-3.14169,"spawnMask":3},{"id":"creature-147020","entityId":"entry-17993","position":[-166.1455,-9.6135,560.8891],"yaw":-5.51524,"spawnMask":3},{"id":"creature-147021","entityId":"entry-17993","position":[-153.0232,-9.7153,468.8641],"yaw":-0.030197,"spawnMask":3},{"id":"creature-147022","entityId":"entry-17993","position":[-167.8326,-9.7105,509.0699],"yaw":-2.61651,"spawnMask":3},{"id":"creature-147023","entityId":"entry-17993","position":[-151.1889,-9.6949,510.7561],"yaw":-0.524085,"spawnMask":3},{"id":"creature-147024","entityId":"entry-17993","position":[-150.9839,-9.6135,560.2841],"yaw":-0.191986,"spawnMask":3},{"id":"creature-147025","entityId":"entry-17993","position":[-166.2645,-9.6135,640.2701],"yaw":-3.45575,"spawnMask":3},{"id":"creature-147026","entityId":"entry-17993","position":[-151.0478,-9.6135,641.3911],"yaw":-0.349066,"spawnMask":3},{"id":"creature-147027","entityId":"entry-17994","position":[-123.7757,-5.9205,697.1311],"yaw":-5.65487,"spawnMask":3},{"id":"creature-147028","entityId":"entry-17994","position":[-261.5714,-10.8673,696.6391],"yaw":-5.04669,"spawnMask":3},{"id":"creature-147029","entityId":"entry-18155","position":[-131.6653,-6.0038,698.5041],"yaw":-3.65739,"spawnMask":3},{"id":"creature-147030","entityId":"entry-18155","position":[-259.9004,-10.9474,689.6581],"yaw":-2.39325,"spawnMask":3},{"id":"creature-147031","entityId":"entry-18155","position":[-122.7942,-5.9205,702.8781],"yaw":-4.00287,"spawnMask":3},{"id":"creature-147032","entityId":"entry-18155","position":[-268.9104,-10.9905,688.9631],"yaw":-4.41568,"spawnMask":3},{"id":"creature-147033","entityId":"entry-18155","position":[-259.0927,-10.7785,703.6991],"yaw":-4.53898,"spawnMask":3},{"id":"creature-147034","entityId":"entry-18155","position":[-122.1713,-6.0038,692.2181],"yaw":-2.96967,"spawnMask":3},{"id":"creature-147035","entityId":"entry-18404","position":[-236.1308,-9.4867,692.0941],"yaw":-1.81514,"spawnMask":3},{"id":"creature-147036","entityId":"entry-18404","position":[-308.9224,-8.8104,691.2441],"yaw":-1.48353,"spawnMask":3},{"id":"creature-147037","entityId":"entry-18404","position":[-318.4934,-7.4286,693.2701],"yaw":-2.3911,"spawnMask":3},{"id":"creature-147038","entityId":"entry-18404","position":[-324.5514,-8.9309,707.6651],"yaw":-2.96706,"spawnMask":3},{"id":"creature-147045","entityId":"entry-18419","position":[-175.2386,-9.6136,604.8201],"yaw":-0.244346,"spawnMask":3},{"id":"creature-147048","entityId":"entry-18419","position":[-145.1091,-9.6135,607.1031],"yaw":-2.49582,"spawnMask":3},{"id":"creature-147050","entityId":"entry-18419","position":[-155.9205,-9.6135,572.9881],"yaw":-1.15192,"spawnMask":3},{"id":"creature-147051","entityId":"entry-18420","position":[-319.0954,-9.57,860.2991],"yaw":-4.69494,"spawnMask":3},{"id":"creature-147052","entityId":"entry-18420","position":[-248.8043,-9.5848,901.5671],"yaw":-6.24828,"spawnMask":3},{"id":"creature-147053","entityId":"entry-18421","position":[-311.7534,-9.4596,784.7191],"yaw":-5.42797,"spawnMask":3},{"id":"creature-147054","entityId":"entry-18421","position":[-329.5594,-9.4596,796.9051],"yaw":-0.541052,"spawnMask":3},{"id":"creature-147055","entityId":"entry-18421","position":[-312.2404,-9.4596,821.2041],"yaw":-5.37561,"spawnMask":3},{"id":"creature-147056","entityId":"entry-18421","position":[-317.9724,-9.4596,820.8641],"yaw":-3.78736,"spawnMask":3},{"id":"creature-147057","entityId":"entry-18421","position":[-356.9024,-9.5572,787.4171],"yaw":-5.63741,"spawnMask":3},{"id":"creature-147058","entityId":"entry-18421","position":[-323.4954,-6.3261,911.1101],"yaw":-0.418879,"spawnMask":3},{"id":"creature-147059","entityId":"entry-18421","position":[-329.4594,-6.3575,908.7451],"yaw":-1.29154,"spawnMask":3},{"id":"creature-147060","entityId":"entry-18422","position":[-318.3064,-9.4596,779.3481],"yaw":-0.471239,"spawnMask":3},{"id":"creature-147063","entityId":"entry-18422","position":[-353.3784,-9.5277,791.4181],"yaw":-5.16617,"spawnMask":3},{"id":"creature-147064","entityId":"entry-18422","position":[-320.5444,-9.4596,818.4081],"yaw":-6.26573,"spawnMask":3},{"id":"creature-147065","entityId":"entry-18422","position":[-333.6184,-6.6333,905.7041],"yaw":-2.21657,"spawnMask":3},{"id":"creature-147066","entityId":"entry-18422","position":[-321.1824,-6.6653,917.8981],"yaw":-5.48033,"spawnMask":3},{"id":"creature-147067","entityId":"entry-18587","position":[-314.9914,-10.8221,840.8271],"yaw":-0.341256,"spawnMask":3},{"id":"creature-147068","entityId":"entry-18587","position":[-305.8214,-10.7161,839.7931],"yaw":-5.46936,"spawnMask":3},{"id":"creature-147069","entityId":"entry-18587","position":[-307.6504,-10.7665,846.8441],"yaw":-0.541052,"spawnMask":3},{"id":"creature-147070","entityId":"entry-18587","position":[-327.6904,-11.0386,842.7831],"yaw":-1.1565,"spawnMask":3},{"id":"creature-147071","entityId":"entry-18587","position":[-323.8514,-11.009,846.0661],"yaw":-0.482658,"spawnMask":3},{"id":"creature-147072","entityId":"entry-18587","position":[-314.3614,-10.9239,850.8631],"yaw":-1.48074,"spawnMask":3},{"id":"creature-147073","entityId":"entry-18587","position":[-329.4324,-11.0754,847.8411],"yaw":-4.1424,"spawnMask":3},{"id":"creature-147074","entityId":"entry-18587","position":[-261.8394,-10.7853,887.8781],"yaw":-4.53808,"spawnMask":3},{"id":"creature-147075","entityId":"entry-18587","position":[-325.6194,-11.0524,852.9071],"yaw":-3.69224,"spawnMask":3},{"id":"creature-147076","entityId":"entry-18587","position":[-257.7629,-10.9043,896.9331],"yaw":-1.36306,"spawnMask":3},{"id":"creature-147077","entityId":"entry-18587","position":[-256.9325,-10.9838,904.2301],"yaw":-4.39194,"spawnMask":3},{"id":"creature-147078","entityId":"entry-18587","position":[-266.1104,-11.0428,906.4661],"yaw":-1.85695,"spawnMask":3},{"id":"creature-147079","entityId":"entry-18587","position":[-261.5994,-11.0281,906.6321],"yaw":-4.53179,"spawnMask":3},{"id":"creature-147080","entityId":"entry-18587","position":[-267.0124,-10.9369,898.6861],"yaw":-6.10342,"spawnMask":3},{"id":"creature-147081","entityId":"entry-18587","position":[-257.4536,-11.0756,912.1721],"yaw":-4.16586,"spawnMask":3},{"id":"creature-147082","entityId":"entry-18587","position":[-271.8284,-11.169,915.7621],"yaw":-0.637195,"spawnMask":3},{"id":"creature-147083","entityId":"entry-19486","position":[-311.4184,-9.4596,779.1741],"yaw":-0.785398,"spawnMask":3},{"id":"creature-147084","entityId":"entry-19486","position":[-335.2004,-9.4596,796.6231],"yaw":-2.23402,"spawnMask":3},{"id":"creature-147085","entityId":"entry-19486","position":[-311.7524,-9.4596,815.5011],"yaw":-0.855211,"spawnMask":3},{"id":"creature-147086","entityId":"entry-19486","position":[-358.9404,-9.592,781.5691],"yaw":-0.663225,"spawnMask":3},{"id":"creature-147087","entityId":"entry-19486","position":[-335.7374,-9.4596,802.1371],"yaw":-3.76991,"spawnMask":3},{"id":"creature-147088","entityId":"entry-19486","position":[-357.4884,-9.5802,783.1191],"yaw":-0.471239,"spawnMask":3},{"id":"creature-147089","entityId":"entry-19486","position":[-324.7624,-6.3651,913.8751],"yaw":-0.10472,"spawnMask":3},{"id":"creature-147090","entityId":"entry-19505","position":[-149.6401,-21.8084,998.1591],"yaw":-1.55334,"spawnMask":3},{"id":"creature-147091","entityId":"entry-19505","position":[-155.0689,-9.3823,914.6711],"yaw":-0.820305,"spawnMask":3},{"id":"creature-147092","entityId":"entry-19505","position":[-139.2038,-9.3861,914.4871],"yaw":-1.27409,"spawnMask":3},{"id":"creature-147093","entityId":"entry-19505","position":[-160.9057,-9.3884,914.9691],"yaw":-2.28638,"spawnMask":3},{"id":"creature-147094","entityId":"entry-19505","position":[-143.7226,-9.3793,915.0901],"yaw":-2.47837,"spawnMask":3},{"id":"creature-147095","entityId":"entry-19505","position":[-179.3574,-21.8287,997.8401],"yaw":-1.58825,"spawnMask":3},{"id":"creature-147096","entityId":"entry-19507","position":[-6.9574,-21.762,782.1211],"yaw":-0.331613,"spawnMask":3},{"id":"creature-147097","entityId":"entry-19507","position":[4.9176,-21.7734,785.1401],"yaw":-2.75762,"spawnMask":3},{"id":"creature-147098","entityId":"entry-19507","position":[-5.0014,-21.8781,795.8331],"yaw":-4.43314,"spawnMask":3},{"id":"creature-147099","entityId":"entry-19507","position":[12.9626,-21.7672,789.7731],"yaw":-0.890118,"spawnMask":3},{"id":"creature-147100","entityId":"entry-19507","position":[17.7376,-21.7646,787.7051],"yaw":-5.18363,"spawnMask":3},{"id":"creature-147101","entityId":"entry-19507","position":[13.9166,-21.7638,799.5861],"yaw":-3.50811,"spawnMask":3},{"id":"creature-147102","entityId":"entry-19507","position":[-8.8174,-21.9144,809.7591],"yaw":-2.75762,"spawnMask":3},{"id":"creature-147103","entityId":"entry-19507","position":[7.4996,-21.7707,807.9281],"yaw":-4.2237,"spawnMask":3},{"id":"creature-147104","entityId":"entry-19507","position":[20.5646,-21.7607,810.5641],"yaw":-0.488692,"spawnMask":3},{"id":"creature-147105","entityId":"entry-19507","position":[-1.7234,-21.7689,821.1581],"yaw":-1.27409,"spawnMask":3},{"id":"creature-147106","entityId":"entry-19507","position":[13.2476,-21.7676,813.3821],"yaw":-4.7473,"spawnMask":3},{"id":"creature-147107","entityId":"entry-19507","position":[17.8596,-21.7634,818.4211],"yaw":-2.07694,"spawnMask":3},{"id":"creature-147108","entityId":"entry-19507","position":[1.1326,-21.8981,908.6091],"yaw":-3.19395,"spawnMask":3},{"id":"creature-147109","entityId":"entry-19507","position":[-27.8304,-21.8981,917.0611],"yaw":-4.15388,"spawnMask":3},{"id":"creature-147110","entityId":"entry-19507","position":[-8.9584,-21.8981,935.9941],"yaw":-3.63028,"spawnMask":3},{"id":"creature-147111","entityId":"entry-19508","position":[-143.0966,-9.5423,892.1631],"yaw":-3.94444,"spawnMask":3},{"id":"creature-147112","entityId":"entry-19508","position":[-142.0361,-9.5253,894.5561],"yaw":-2.96706,"spawnMask":3},{"id":"creature-147113","entityId":"entry-19508","position":[-30.1834,-21.8981,913.4201],"yaw":-3.38594,"spawnMask":3},{"id":"creature-147114","entityId":"entry-19508","position":[4.1696,-21.8981,913.7471],"yaw":-3.90954,"spawnMask":3},{"id":"creature-147115","entityId":"entry-19509","position":[-144.3187,-9.5616,889.4381],"yaw":-1.39626,"spawnMask":3},{"id":"creature-147116","entityId":"entry-19509","position":[2.4136,-21.8981,904.4871],"yaw":-2.93215,"spawnMask":3},{"id":"creature-147117","entityId":"entry-19509","position":[-23.6704,-21.8981,917.4621],"yaw":-4.7822,"spawnMask":3},{"id":"creature-147118","entityId":"entry-19509","position":[-9.7714,-21.8981,931.6741],"yaw":-2.82743,"spawnMask":3},{"id":"creature-147119","entityId":"entry-19509","position":[-4.8794,-21.8981,939.3641],"yaw":-3.75246,"spawnMask":3},{"id":"creature-147120","entityId":"entry-19511","position":[-173.076,-21.9432,988.5791],"yaw":-1.98968,"spawnMask":3},{"id":"creature-147125","entityId":"entry-19511","position":[-172.4901,-22.075,979.2811],"yaw":-1.79769,"spawnMask":3},{"id":"creature-147126","entityId":"entry-19511","position":[-158.49,-22.0312,979.4121],"yaw":-1.44862,"spawnMask":3},{"id":"creature-147127","entityId":"entry-19511","position":[-149.3679,-21.9548,986.8261],"yaw":-1.13446,"spawnMask":3},{"id":"creature-147128","entityId":"entry-19512","position":[-117.5723,-21.3177,946.4961],"yaw":-4.67166,"spawnMask":3},{"id":"creature-147129","entityId":"entry-19512","position":[-151.0644,-22.06,978.3751],"yaw":-1.25664,"spawnMask":3},{"id":"creature-147130","entityId":"entry-19512","position":[-180.0153,-22.0893,979.7241],"yaw":-2.04204,"spawnMask":3},{"id":"creature-147131","entityId":"entry-19512","position":[-181.6601,-21.9648,988.7081],"yaw":-2.25147,"spawnMask":3},{"id":"creature-147132","entityId":"entry-19512","position":[-159.4832,-21.9386,986.4461],"yaw":-1.41372,"spawnMask":3},{"id":"creature-147133","entityId":"entry-19513","position":[-1.6004,-21.7667,786.0011],"yaw":-2.07694,"spawnMask":3},{"id":"creature-147134","entityId":"entry-19513","position":[13.7436,-21.7684,781.4291],"yaw":-0.698132,"spawnMask":3},{"id":"creature-147135","entityId":"entry-19513","position":[-3.4444,-21.7662,814.1461],"yaw":-1.11701,"spawnMask":3},{"id":"creature-147136","entityId":"entry-19513","position":[11.3696,-21.7682,817.5771],"yaw":-0.680678,"spawnMask":3},{"id":"creature-147137","entityId":"entry-19513","position":[-1.0244,-21.767,818.6511],"yaw":-5.95157,"spawnMask":3},{"id":"creature-147138","entityId":"entry-19513","position":[18.7406,-21.7634,823.7501],"yaw":-5.61996,"spawnMask":3},{"id":"creature-147143","entityId":"entry-19557","position":[-319.9764,-9.4596,780.4861],"yaw":-3.24631,"spawnMask":3},{"id":"creature-147144","entityId":"entry-19557","position":[-313.3664,-9.5429,808.4691],"yaw":-2.90003,"spawnMask":3},{"id":"creature-147145","entityId":"entry-19557","position":[-326.1934,-9.5429,813.0011],"yaw":-3.86121,"spawnMask":3},{"id":"creature-147146","entityId":"entry-19557","position":[-354.2064,-9.5396,789.6361],"yaw":-1.67552,"spawnMask":3},{"id":"creature-147147","entityId":"entry-19557","position":[-322.4464,-9.4596,818.4961],"yaw":-2.60054,"spawnMask":3},{"id":"creature-147148","entityId":"entry-19557","position":[-331.9724,-6.4688,907.8151],"yaw":-4.43314,"spawnMask":3},{"id":"creature-147149","entityId":"entry-19557","position":[-323.1184,-6.5175,916.5631],"yaw":-3.50811,"spawnMask":3},{"id":"creature-147150","entityId":"entry-19598","position":[-32.1694,-21.8981,917.5541],"yaw":-0.680678,"spawnMask":3},{"id":"creature-147151","entityId":"entry-19598","position":[-30.3354,-21.9814,924.8041],"yaw":-2.95071,"spawnMask":3},{"id":"creature-147152","entityId":"entry-19598","position":[-7.2524,-21.9814,909.4321],"yaw":-4.08054,"spawnMask":3},{"id":"creature-147153","entityId":"entry-19598","position":[-2.3254,-21.9814,915.9201],"yaw":-0.767585,"spawnMask":3},{"id":"creature-147154","entityId":"entry-19598","position":[-15.7074,-21.9814,931.5031],"yaw":-4.94884,"spawnMask":3},{"id":"creature-147155","entityId":"entry-19598","position":[-9.3244,-21.9814,940.3351],"yaw":-2.32775,"spawnMask":3},{"id":"creature-147156","entityId":"entry-19608","position":[-170.7979,-32.0654,769.1961],"yaw":-4.32122,"spawnMask":3},{"id":"creature-147157","entityId":"entry-19608","position":[-176.4028,-31.5744,768.4571],"yaw":-3.72482,"spawnMask":3},{"id":"creature-147158","entityId":"entry-19608","position":[-163.7572,-31.9089,774.9211],"yaw":-2.28376,"spawnMask":3},{"id":"creature-147159","entityId":"entry-19608","position":[-187.6112,-29.8866,776.7551],"yaw":-1.70034,"spawnMask":3},{"id":"creature-147160","entityId":"entry-19608","position":[-171.6526,-30.8932,780.2271],"yaw":-5.844,"spawnMask":3},{"id":"creature-147161","entityId":"entry-19608","position":[-159.7775,-31.7229,784.0291],"yaw":-5.34399,"spawnMask":3},{"id":"creature-147162","entityId":"entry-19608","position":[-177.745,-30.716,782.5681],"yaw":-5.03616,"spawnMask":3},{"id":"creature-147163","entityId":"entry-19608","position":[-185.3364,-30.8451,786.1791],"yaw":-2.39683,"spawnMask":3},{"id":"creature-147164","entityId":"entry-19608","position":[-172.2458,-31.8044,789.2421],"yaw":-3.36757,"spawnMask":3},{"id":"creature-147165","entityId":"entry-19608","position":[-180.3096,-31.5093,789.7391],"yaw":-5.57957,"spawnMask":3},{"id":"creature-147166","entityId":"entry-19608","position":[-147.8919,-33.1294,813.1411],"yaw":-6.07067,"spawnMask":3},{"id":"creature-147167","entityId":"entry-19608","position":[-174.9875,-31.7474,812.9561],"yaw":-3.98517,"spawnMask":3},{"id":"creature-147168","entityId":"entry-19608","position":[-144.5588,-33.2084,819.1851],"yaw":-4.28779,"spawnMask":3},{"id":"creature-147169","entityId":"entry-19608","position":[-163.3743,-31.8678,816.9031],"yaw":-4.80471,"spawnMask":3},{"id":"creature-147170","entityId":"entry-19608","position":[-152.8155,-33.009,816.1661],"yaw":-3.19496,"spawnMask":3},{"id":"creature-147171","entityId":"entry-19608","position":[-156.5449,-33.0536,813.9481],"yaw":-0.289019,"spawnMask":3},{"id":"creature-147172","entityId":"entry-19608","position":[-160.5965,-32.4271,822.9851],"yaw":-0.105794,"spawnMask":3},{"id":"creature-147173","entityId":"entry-19608","position":[-162.829,-32.0228,821.7171],"yaw":-3.88872,"spawnMask":3},{"id":"creature-147174","entityId":"entry-19608","position":[-162.9308,-32.6553,829.7941],"yaw":-0.043863,"spawnMask":3},{"id":"creature-147175","entityId":"entry-19608","position":[-161.5483,-32.9138,831.2401],"yaw":-0.307776,"spawnMask":3},{"id":"creature-147176","entityId":"entry-19633","position":[-165.0199,-9.6135,576.2561],"yaw":-3.48662,"spawnMask":3},{"id":"creature-147177","entityId":"entry-19633","position":[-169.977,-9.6135,611.8481],"yaw":-4.13643,"spawnMask":3},{"id":"creature-147178","entityId":"entry-19633","position":[-158.6017,-9.5641,664.5771],"yaw":-1.67552,"spawnMask":3},{"id":"creature-147179","entityId":"entry-19633","position":[-148.0911,-9.6135,610.5801],"yaw":-5.51524,"spawnMask":3},{"id":"creature-147180","entityId":"entry-19843","position":[-92.3146,-21.9421,969.7601],"yaw":-3.31579,"spawnMask":3},{"id":"creature-147181","entityId":"entry-19843","position":[-77.3976,-21.948,956.7571],"yaw":-4.42682,"spawnMask":3},{"id":"creature-147182","entityId":"entry-19865","position":[4.9566,-21.7753,780.7241],"yaw":-5.89921,"spawnMask":3},{"id":"creature-147183","entityId":"entry-19865","position":[9.6366,-21.7689,792.9041],"yaw":-4.7822,"spawnMask":3},{"id":"creature-147184","entityId":"entry-19865","position":[-1.7124,-21.8458,806.1611],"yaw":-5.75959,"spawnMask":3},{"id":"creature-147185","entityId":"entry-19865","position":[-7.8324,-21.7613,823.3181],"yaw":-3.735,"spawnMask":3},{"id":"creature-147186","entityId":"entry-19865","position":[14.9096,-21.7643,810.7371],"yaw":-5.37561,"spawnMask":3},{"id":"creature-147187","entityId":"entry-19865","position":[13.6256,-21.7875,828.0061],"yaw":-2.54818,"spawnMask":3}],"roamingPacks":[{"id":"patrol-147039","name":"Tempest-Forge Peacekeeper Patrol","speed":1.15,"pathId":1470390,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-143.9963,-5.1499,697.7471],[-157.1162,-3.1158,697.7741],[-168.3619,-4.1596,697.6461],[-207.5445,-9.8319,697.0521],[-168.3619,-4.1596,697.6461],[-157.1162,-3.1158,697.7741]],"members":[{"id":"member","entityId":"entry-18405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147040","name":"Tempest-Forge Peacekeeper Patrol","speed":1.15,"pathId":1470400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-142.7346,-9.6969,591.4581],[-143.4009,-9.6968,577.3901],[-158.6759,-9.6969,566.2491],[-158.6241,-9.6969,532.3791],[-158.6759,-9.6969,566.2491],[-143.4009,-9.6968,577.3901]],"members":[{"id":"member","entityId":"entry-18405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147041","name":"Tempest-Forge Peacekeeper Patrol","speed":1.15,"pathId":1470410,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-158.6023,-9.7355,521.4331],[-158.066,-9.8288,486.4039],[-158.154,-9.8541,450.2749],[-158.066,-9.8288,486.4039]],"members":[{"id":"member","entityId":"entry-18405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147042","name":"Tempest-Forge Peacekeeper Patrol","speed":1.15,"pathId":1470420,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-173.5423,-9.6969,586.8031],[-173.752,-9.6969,601.0801],[-169.1023,-9.6969,607.3081],[-158.6491,-9.6969,612.1451],[-158.4937,-9.7328,651.8591],[-158.4937,-9.7328,651.8591],[-158.5858,-9.6969,612.1741],[-169.1023,-9.6969,607.3081],[-173.752,-9.6969,601.0801]],"members":[{"id":"member","entityId":"entry-18405","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147043","name":"Bloodwarder Greenkeeper Patrol","speed":1.15,"pathId":1470430,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-139.7399,-9.6969,606.4031],[-145.1078,-9.6969,604.7711],[-148.525,-9.6969,607.9341],[-152.2717,-9.6969,611.5031],[-151.1377,-9.6969,613.7881],[-151.1377,-9.6969,613.7881],[-148.6159,-9.6969,609.2801],[-146.8667,-9.6969,605.0681],[-142.9331,-9.6969,603.7531],[-139.7399,-9.6969,606.4031]],"members":[{"id":"member","entityId":"entry-18419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147044","name":"Bloodwarder Greenkeeper Patrol","speed":1.15,"pathId":1470440,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-153.115,-9.6969,576.1491],[-155.8931,-9.6969,570.4791],[-160.3498,-9.6969,570.0611],[-161.5711,-9.6969,572.4901],[-161.5711,-9.6969,572.4901],[-155.0631,-9.6969,570.7181],[-153.152,-9.6969,572.9711],[-153.115,-9.6969,576.1491]],"members":[{"id":"member","entityId":"entry-18419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147046","name":"Bloodwarder Greenkeeper Patrol","speed":1.15,"pathId":1470460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-154.9041,-9.5531,662.3281],[-154.9041,-9.5531,662.3281]],"members":[{"id":"member","entityId":"entry-18419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147047","name":"Bloodwarder Greenkeeper Patrol","speed":1.15,"pathId":1470470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-172.4755,-9.6969,607.9301],[-176.6996,-9.6969,602.5021],[-176.6996,-9.6969,602.5021],[-172.3955,-9.6969,605.4921],[-172.4755,-9.6969,607.9301]],"members":[{"id":"member","entityId":"entry-18419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147049","name":"Bloodwarder Greenkeeper Patrol","speed":1.15,"pathId":1470490,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-162.4967,-9.5489,662.9331],[-162.4967,-9.5489,662.9331]],"members":[{"id":"member","entityId":"entry-18419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147061","name":"Sunseeker Botanist Patrol","speed":1.15,"pathId":1470610,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-320.6844,-9.5429,787.0891],[-324.0924,-9.5429,793.1501],[-323.4454,-9.5429,797.6181],[-321.1994,-9.5429,801.9821],[-318.4014,-9.5429,804.3831],[-314.0424,-9.5429,807.5351],[-313.2984,-9.5429,811.3481],[-313.2984,-9.5429,811.3481],[-314.7824,-9.5429,806.9951],[-317.1784,-9.5429,804.8581],[-320.0974,-9.5429,801.9691],[-323.0774,-9.5429,797.4741],[-323.2024,-9.5429,794.5251],[-322.4714,-9.5429,790.2771],[-320.6844,-9.5429,787.0891]],"members":[{"id":"member","entityId":"entry-18422","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147062","name":"Sunseeker Botanist Patrol","speed":1.15,"pathId":1470620,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-320.9434,-9.5429,812.3881],[-324.4944,-9.5429,809.3601],[-328.1194,-9.5429,809.2961],[-332.1724,-9.5429,810.0321],[-337.2674,-9.5429,809.4651],[-341.1124,-9.5429,806.9261],[-341.8324,-9.5429,802.5561],[-342.3904,-9.5429,797.7771],[-344.7504,-9.6567,793.8771],[-347.4364,-9.6622,792.8281],[-350.7354,-9.6688,793.9421],[-350.7354,-9.6688,793.9421],[-346.1754,-9.6595,794.9351],[-343.2464,-9.6534,797.9571],[-342.1304,-9.5429,801.8841],[-341.1834,-9.5429,807.3051],[-336.8174,-9.5429,811.8951],[-328.3594,-9.5429,814.2101],[-320.9434,-9.5429,812.3881]],"members":[{"id":"member","entityId":"entry-18422","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147121","name":"Nethervine Inciter Patrol","speed":1.15,"pathId":1471210,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-160.9968,-9.6911,891.9571],[-152.832,-9.6513,892.3891],[-145.538,-9.5819,898.3131],[-141.722,-9.5272,906.0071],[-143.0631,-9.4808,912.5351],[-152.832,-9.6513,892.3891]],"members":[{"id":"member","entityId":"entry-19511","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147122","name":"Nethervine Inciter Patrol","speed":1.15,"pathId":1471220,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-148.8511,-9.432,919.3951],[-148.5455,-9.5119,908.1521],[-161.8577,-9.598,902.8751],[-174.4506,-9.6265,906.3531],[-161.8577,-9.598,902.8751],[-148.5455,-9.5119,908.1521]],"members":[{"id":"member","entityId":"entry-19511","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147123","name":"Nethervine Inciter Patrol","speed":1.15,"pathId":1471230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-137.7752,-10.6317,927.1631],[-150.0136,-9.793,925.9651],[-164.348,-11.2949,927.6171],[-178.803,-15.4144,935.7771],[-183.2688,-22.5336,949.8841],[-177.4614,-22.4545,958.0001],[-157.5243,-22.2924,963.0211],[-141.3992,-22.3481,962.7491],[-128.9292,-22.4612,959.7941],[-116.0358,-22.5165,954.1431],[-112.5918,-20.0498,943.0041],[-122.1757,-14.3208,933.4861]],"members":[{"id":"member","entityId":"entry-19511","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-147124","name":"Nethervine Inciter Patrol","speed":1.15,"pathId":1471240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-130.1849,-22.147,977.6711],[-147.8518,-22.2527,969.2821],[-173.0687,-22.2941,966.2621],[-193.8949,-22.4389,963.6451],[-173.0687,-22.2941,966.2621],[-147.8518,-22.2527,969.2821]],"members":[{"id":"member","entityId":"entry-19511","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-147001","name":"Commander Sarannis","position":[-310.3214,-8.7242,705.4911]},{"id":"creature-147000","name":"High Botanist Freywinn","position":[-275.6834,-9.0979,865.0271]},{"id":"creature-147003","name":"Thorngrin the Tender","position":[-164.306,-19.2348,1006.0351]},{"id":"creature-147004","name":"Laj","position":[44.7676,-15.3508,800.7061]},{"id":"creature-147002","name":"Warp Splinter","position":[-223.1981,-32.0503,801.3391]}],"objectiveOrder":[{"id":"creature-147001","name":"Commander Sarannis","position":[-310.3214,-8.7242,705.4911]},{"id":"creature-147000","name":"High Botanist Freywinn","position":[-275.6834,-9.0979,865.0271]},{"id":"creature-147003","name":"Thorngrin the Tender","position":[-164.306,-19.2348,1006.0351]},{"id":"creature-147004","name":"Laj","position":[44.7676,-15.3508,800.7061]},{"id":"creature-147002","name":"Warp Splinter","position":[-223.1981,-32.0503,801.3391]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":233,"id":184222,"map":553,"orientation":0.0494656,"phaseMask":1,"position_x":158.952,"position_y":391.653,"position_z":-35.5291,"rotation0":0,"rotation1":0,"rotation2":0.0247303,"rotation3":0.999694,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":237,"id":184221,"map":553,"orientation":0.0494656,"phaseMask":1,"position_x":158.952,"position_y":391.653,"position_z":-35.5291,"rotation0":0,"rotation1":0,"rotation2":0.0247303,"rotation3":0.999694,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105183,"id":181270,"map":553,"orientation":1.8675,"phaseMask":1,"position_x":41.4327,"position_y":356.078,"position_z":-26.0174,"rotation0":0,"rotation1":0,"rotation2":0.803857,"rotation3":0.594823,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105184,"id":181270,"map":553,"orientation":5.20108,"phaseMask":1,"position_x":9.8574,"position_y":418.206,"position_z":-27.5923,"rotation0":0,"rotation1":0,"rotation2":-0.515038,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105185,"id":181270,"map":553,"orientation":0.541051,"phaseMask":1,"position_x":63.4501,"position_y":427.082,"position_z":-25.5068,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105186,"id":181279,"map":553,"orientation":3.82227,"phaseMask":1,"position_x":-0.459927,"position_y":256.711,"position_z":-4.35613,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333808,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105187,"id":181271,"map":553,"orientation":3.76991,"phaseMask":1,"position_x":0.634392,"position_y":165.962,"position_z":-3.67233,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105188,"id":181270,"map":553,"orientation":4.92183,"phaseMask":1,"position_x":93.4825,"position_y":371.747,"position_z":-27.3115,"rotation0":0,"rotation1":0,"rotation2":-0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105189,"id":181270,"map":553,"orientation":4.79966,"phaseMask":1,"position_x":173.042,"position_y":388.688,"position_z":-3.90029,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105190,"id":181271,"map":553,"orientation":6.19592,"phaseMask":1,"position_x":155.018,"position_y":409.847,"position_z":-3.52534,"rotation0":0,"rotation1":0,"rotation2":-0.0436192,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105191,"id":181279,"map":553,"orientation":0.279252,"phaseMask":1,"position_x":115.816,"position_y":450.617,"position_z":-3.82386,"rotation0":0,"rotation1":0,"rotation2":0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105192,"id":181271,"map":553,"orientation":0.314158,"phaseMask":1,"position_x":-22.2003,"position_y":502.644,"position_z":-4.84003,"rotation0":0,"rotation1":0,"rotation2":0.156434,"rotation3":0.987688,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105193,"id":181277,"map":553,"orientation":4.39823,"phaseMask":1,"position_x":-165.293,"position_y":495.911,"position_z":-15.0749,"rotation0":0,"rotation1":0,"rotation2":-0.809016,"rotation3":0.587786,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105194,"id":181270,"map":553,"orientation":3.35105,"phaseMask":1,"position_x":-154.192,"position_y":523.518,"position_z":-16.0193,"rotation0":0,"rotation1":0,"rotation2":-0.994521,"rotation3":0.104536,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":48001,"animprogress":255,"areaId":3847,"guid":105195,"id":181279,"map":553,"orientation":2.32129,"phaseMask":1,"position_x":169.234,"position_y":504.449,"position_z":0.050639,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.39875,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3847},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150044,"id":184215,"map":553,"orientation":2.35619,"phaseMask":1,"position_x":47.5461,"position_y":-35.5614,"position_z":1.41111,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150045,"id":184216,"map":553,"orientation":2.35619,"phaseMask":1,"position_x":47.5461,"position_y":-35.5614,"position_z":1.41111,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/TempestKeepAtrium":"912b7158aaf9d6c4e375881dee4f8367ea4249f7e54541664625e74d4d5b4289","patch/World/maps/TempestKeepAtrium":"52b1dfd1718d84ba928b30d402060f06a47aebd78f7e81222038650d330a2e44"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/botanica/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["29/29 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"mechanar","title":"Tempest Keep: The Mechanar","mapId":554,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Tempest Keep: The Mechanar","theme":"Instanced dungeon","summary":"Fight through Tempest Keep: The Mechanar, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Tempest Keep: The Mechanar...","unchartedAreaName":"Uncharted Tempest Keep: The Mechanar","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":490.9126},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/554-tempestkeepfactory/visual.glb","checksum":"5bf8facf148005c0040092308ac36d2943d92ca9aa02c7c73d98c0559a5be6f7","size":2578388,"triangleCount":57964}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/554-tempestkeepfactory/collision.glb","checksum":"5442ee065fa0a137c1f1728cf30f907aae02537050aa056589d23c551858278a","size":575312,"triangleCount":51006}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/554-tempestkeepfactory/navigation.glb","checksum":"042f0d2003f53bf20dc2be1b74c5d583f46c6282636159fa6341c20ea03e10f5","size":140680,"triangleCount":10194}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-656.5814,-20.2352,-217.1997],"max":[25.2416,49.8012,127.1413]},"entrance":{"name":"Tempest Keep: The Mechanar Entrance","footPosition":[-256.1584,0.0685,-66.4974],"forward":[0.8812360036624922,0,0.47267653405786925],"yaw":1.0784707641175544},"areas":[{"id":"entrance","name":"Tempest Keep: The Mechanar Entrance","center":[-256.1584,0.0685,-66.4974],"radius":35},{"id":"area-mechano-lord-capacitus","name":"Mechano-Lord Capacitus's Encounter","center":[-493.2904,-0.2352,-80.2271],"radius":42},{"id":"area-nethermancer-sepethrea","name":"Nethermancer Sepethrea's Encounter","center":[-611.5814,29.8012,-53.9818],"radius":42},{"id":"area-pathaleon-the-calculator","name":"Pathaleon the Calculator's Encounter","center":[-424.6064,27.5403,82.1413],"radius":42}],"entities":{"entry-19166":{"id":"entry-19166","kind":"mob","name":"Tempest-Forge Patroller","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-18662-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.3789,"markerRadius":2.14}}},"entry-19167":{"id":"entry-19167","kind":"mob","name":"Bloodwarder Slayer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15708","name":"Mortal Strike","spellId":15708,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4807,"damageMultiplier":1.12},{"id":"spell-35189","name":"Solar Strike","spellId":35189,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4807,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/cb1b6b74237a0c0edf9d974746514164f3d19e80ff887379f88aada24a898978.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19168":{"id":"entry-19168","kind":"mob","name":"Sunseeker Astromage","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35265","name":"Fire Shield","spellId":35265,"delivery":"area","target":"self","school":"fire","animation":"cast","range":0,"cooldownMs":4215,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-35265","durationMs":8000,"magnitude":0.15}},{"id":"spell-35267","name":"Solarburn","spellId":35267,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4215,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/a4eebcf9534bcfb16c8420c0262664911893f2ad0a58b476df4071776c170fc2.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-19218":{"id":"entry-19218","kind":"mob","name":"Gatewatcher Gyro-Kill","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-18816-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1204,"labelHeight":10.9301,"markerRadius":4.5}}},"entry-19219":{"id":"entry-19219","kind":"boss","name":"Mechano-Lord Capacitus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35161","name":"Head Crack","spellId":35161,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6514,"damageMultiplier":1.35},{"id":"spell-35159","name":"Reflective Damage Shield","spellId":35159,"delivery":"area","target":"self","school":"arcane","animation":"cast","range":0,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-35159","durationMs":12000,"magnitude":0.25}},{"id":"spell-35158","name":"Reflective Magic Shield","spellId":35158,"delivery":"area","target":"self","school":"arcane","animation":"cast","range":0,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-35158","durationMs":12000,"magnitude":0.25}},{"id":"spell-35057","name":"Netherbomb","spellId":35057,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6514,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-19162-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0145,"labelHeight":15.7269,"markerRadius":4.5}}},"entry-19220":{"id":"entry-19220","kind":"boss","name":"Pathaleon the Calculator","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-35280","name":"Domination","spellId":35280,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5803,"damageMultiplier":1.35},{"id":"spell-35289","name":"Disgruntled Anger","spellId":35289,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5803,"damageMultiplier":1.35},{"id":"spell-36021","name":"Mana Tap","spellId":36021,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5803,"damageMultiplier":1.35},{"id":"spell-36022","name":"Arcane Torrent","spellId":36022,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5803,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-20033-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.0141,"markerRadius":0.7986}}},"entry-19221":{"id":"entry-19221","kind":"boss","name":"Nethermancer Sepethrea","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5599,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-19166-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":4.5567,"markerRadius":0.65}}},"entry-19231":{"id":"entry-19231","kind":"mob","name":"Mechanar Crusher","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.047616,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-35055","name":"The Claw","spellId":35055,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6073,"damageMultiplier":1.12},{"id":"spell-35056","name":"Glob of Machine Fluid","spellId":35056,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6073,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-17977-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0602,"labelHeight":5.4823,"markerRadius":3.1557}}},"entry-19510":{"id":"entry-19510","kind":"mob","name":"Bloodwarder Centurion","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35178","name":"Shield Bash","spellId":35178,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":6052,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-35178","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/cb1b6b74237a0c0edf9d974746514164f3d19e80ff887379f88aada24a898978.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-19710":{"id":"entry-19710","kind":"mob","name":"Gatewatcher Iron-Hand","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-21191-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1204,"labelHeight":10.2213,"markerRadius":4.5}}},"entry-19712":{"id":"entry-19712","kind":"mob","name":"Mechanar Driller","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.047616,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-35047","name":"Drill Armor","spellId":35047,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5203,"damageMultiplier":1.12},{"id":"spell-35056","name":"Glob of Machine Fluid","spellId":35056,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5203,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-18646-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0602,"labelHeight":5.4823,"markerRadius":3.1194}}},"entry-19713":{"id":"entry-19713","kind":"mob","name":"Mechanar Wrecker","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.047616,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-35049","name":"Pound","spellId":35049,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4973,"damageMultiplier":1.12},{"id":"spell-35056","name":"Glob of Machine Fluid","spellId":35056,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4973,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-18647-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0602,"labelHeight":5.1107,"markerRadius":2.6842}}},"entry-19716":{"id":"entry-19716","kind":"mob","name":"Mechanar Tinkerer","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-35057","name":"Netherbomb","spellId":35057,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5923,"damageMultiplier":1.12},{"id":"spell-35062","name":"Maniacal Charge","spellId":35062,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5923,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-18288-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":2.8833,"markerRadius":1.3804}}},"entry-19735":{"id":"entry-19735","kind":"mob","name":"Tempest-Forge Destroyer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-19165-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":7.2902,"markerRadius":2.4457}}},"entry-20059":{"id":"entry-20059","kind":"mob","name":"Sunseeker Netherbinder","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-21668","name":"Starfire","spellId":21668,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4269,"damageMultiplier":1.12},{"id":"spell-35261","name":"Arcane Nova","spellId":35261,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":4269,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/a4eebcf9534bcfb16c8420c0262664911893f2ad0a58b476df4071776c170fc2.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8928,"markerRadius":0.65}}},"entry-20988":{"id":"entry-20988","kind":"mob","name":"Sunseeker Engineer","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36341","name":"Super Shrink Ray","spellId":36341,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5481,"damageMultiplier":1.12},{"id":"spell-36345","name":"Death Ray","spellId":36345,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5481,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-19966-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}},"entry-20990":{"id":"entry-20990","kind":"mob","name":"Bloodwarder Physician","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36333","name":"Anesthetic","spellId":36333,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6665,"damageMultiplier":1.12},{"id":"spell-36348","name":"Bandage","spellId":36348,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6665,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mechanar/creatures/display-19970-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.148,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-138801","entityId":"entry-19166","position":[-361.9158,16.806,-7.5558],"yaw":-3.13951,"spawnMask":3},{"id":"creature-138803","entityId":"entry-19166","position":[-358.9825,16.806,-123.8901],"yaw":-3.1402,"spawnMask":3},{"id":"creature-138804","entityId":"entry-19166","position":[-315.2841,1.9637,-64.2623],"yaw":-3.29867,"spawnMask":3},{"id":"creature-138806","entityId":"entry-19167","position":[-362.9677,16.8893,-119.158],"yaw":-3.31613,"spawnMask":3},{"id":"creature-138807","entityId":"entry-19167","position":[-322.4624,2.1277,-2.5317],"yaw":-4.13643,"spawnMask":3},{"id":"creature-138808","entityId":"entry-19167","position":[-322.2394,2.1277,-119.0467],"yaw":-4.11898,"spawnMask":3},{"id":"creature-138809","entityId":"entry-19167","position":[-315.7888,2.1271,-115.5319],"yaw":-2.20191,"spawnMask":3},{"id":"creature-138810","entityId":"entry-19167","position":[-362.8818,16.8893,-3.0541],"yaw":-3.26377,"spawnMask":3},{"id":"creature-138811","entityId":"entry-19167","position":[-404.4094,16.8976,18.7341],"yaw":-3.45575,"spawnMask":3},{"id":"creature-138812","entityId":"entry-19167","position":[-405.6624,16.8893,-132.7514],"yaw":-3.24631,"spawnMask":3},{"id":"creature-138813","entityId":"entry-19168","position":[-511.6354,1.9605,-6.898],"yaw":-3.08923,"spawnMask":3},{"id":"creature-138814","entityId":"entry-19168","position":[-511.6594,1.9581,-22.0882],"yaw":-3.1765,"spawnMask":3},{"id":"creature-138815","entityId":"entry-19168","position":[-594.4524,27.3967,-61.885],"yaw":-3.29867,"spawnMask":3},{"id":"creature-138816","entityId":"entry-19168","position":[-594.3954,27.3508,-52.0438],"yaw":-3.07178,"spawnMask":3},{"id":"creature-138817","entityId":"entry-19168","position":[-525.8634,28.293,-92.3938],"yaw":-0.244346,"spawnMask":3},{"id":"creature-138818","entityId":"entry-19168","position":[-522.4444,28.293,-88.2926],"yaw":0,"spawnMask":3},{"id":"creature-138819","entityId":"entry-19168","position":[-423.0544,26.8391,-29.9072],"yaw":-5.53269,"spawnMask":3},{"id":"creature-138820","entityId":"entry-19168","position":[-420.3954,28.3379,32.7867],"yaw":-4.78385,"spawnMask":3},{"id":"creature-138821","entityId":"entry-19218","position":[-370.592,16.8857,-46.9772],"yaw":-0.663225,"spawnMask":3},{"id":"creature-138822","entityId":"entry-19219","position":[-493.2904,-0.2352,-80.2271],"yaw":-3.36498,"spawnMask":3},{"id":"creature-138823","entityId":"entry-19220","position":[-424.6064,27.5403,82.1413],"yaw":-4.59022,"spawnMask":3},{"id":"creature-138824","entityId":"entry-19221","position":[-611.5814,29.8012,-53.9818],"yaw":-3.22886,"spawnMask":3},{"id":"creature-138826","entityId":"entry-19510","position":[-450.9084,3.6078,-140.8344],"yaw":-3.24631,"spawnMask":3},{"id":"creature-138827","entityId":"entry-19510","position":[-315.7613,2.1257,-17.5956],"yaw":-3.7001,"spawnMask":3},{"id":"creature-138828","entityId":"entry-19510","position":[-450.7644,3.6501,18.3804],"yaw":-3.21141,"spawnMask":3},{"id":"creature-138829","entityId":"entry-19510","position":[-594.3074,27.3508,-56.9228],"yaw":-3.1765,"spawnMask":3},{"id":"creature-138830","entityId":"entry-19510","position":[-594.5824,27.3548,-46.898],"yaw":-2.70526,"spawnMask":3},{"id":"creature-138831","entityId":"entry-19510","position":[-519.0034,28.293,-85.8523],"yaw":-5.96903,"spawnMask":3},{"id":"creature-138833","entityId":"entry-19712","position":[-508.7974,1.967,-130.1626],"yaw":-5.044,"spawnMask":3},{"id":"creature-138834","entityId":"entry-19712","position":[-499.8564,1.9704,-150.3314],"yaw":-5.51524,"spawnMask":3},{"id":"creature-138835","entityId":"entry-19712","position":[-394.6854,16.8884,-122.4491],"yaw":-0.680678,"spawnMask":3},{"id":"creature-138836","entityId":"entry-19712","position":[-393.4884,16.8893,-109.9573],"yaw":-5.16617,"spawnMask":3},{"id":"creature-138838","entityId":"entry-19712","position":[-501.2434,1.9705,-162.3819],"yaw":-0.20944,"spawnMask":3},{"id":"creature-138839","entityId":"entry-19713","position":[-450.7034,1.9646,-87.0366],"yaw":-5.88176,"spawnMask":3},{"id":"creature-138840","entityId":"entry-19713","position":[-394.5244,16.8893,-8.6024],"yaw":-5.28835,"spawnMask":3},{"id":"creature-138841","entityId":"entry-19713","position":[-459.1894,1.9646,-84.6663],"yaw":-3.9619,"spawnMask":3},{"id":"creature-138842","entityId":"entry-19713","position":[-512.9984,1.9651,-119.2627],"yaw":-0.0523599,"spawnMask":3},{"id":"creature-138843","entityId":"entry-19713","position":[-397.7564,16.8893,-21.2019],"yaw":-1.01229,"spawnMask":3},{"id":"creature-138844","entityId":"entry-19716","position":[-477.9024,1.9589,-31.4827],"yaw":-4.85202,"spawnMask":3},{"id":"creature-138845","entityId":"entry-19716","position":[-377.4192,16.8893,-146.4763],"yaw":-5.18363,"spawnMask":3},{"id":"creature-138846","entityId":"entry-19716","position":[-470.8834,1.9588,-31.3537],"yaw":-4.76475,"spawnMask":3},{"id":"creature-138847","entityId":"entry-19716","position":[-437.6974,1.9607,-13.8216],"yaw":-2.68781,"spawnMask":3},{"id":"creature-138848","entityId":"entry-19716","position":[-445.7544,1.9646,-83.8403],"yaw":-2.0944,"spawnMask":3},{"id":"creature-138849","entityId":"entry-19716","position":[-424.9904,1.9646,-106.1232],"yaw":-0.401426,"spawnMask":3},{"id":"creature-138850","entityId":"entry-19716","position":[-425.2414,1.9625,-16.8124],"yaw":-0.907571,"spawnMask":3},{"id":"creature-138851","entityId":"entry-19716","position":[-492.6564,1.9711,-158.3178],"yaw":-1.25222,"spawnMask":3},{"id":"creature-138852","entityId":"entry-19716","position":[-465.2294,1.9582,-32.6443],"yaw":-4.45059,"spawnMask":3},{"id":"creature-138853","entityId":"entry-19716","position":[-384.9952,16.8921,-145.1293],"yaw":-3.92699,"spawnMask":3},{"id":"creature-138854","entityId":"entry-19716","position":[-453.5924,1.9646,-79.0639],"yaw":-0.488692,"spawnMask":3},{"id":"creature-138856","entityId":"entry-19716","position":[-419.6204,1.9646,-22.0635],"yaw":-1.32645,"spawnMask":3},{"id":"creature-138857","entityId":"entry-19716","position":[-418.4834,1.9646,-107.9219],"yaw":-5.67232,"spawnMask":3},{"id":"creature-138859","entityId":"entry-19716","position":[-391.4804,16.8193,-15.494],"yaw":-2.98083,"spawnMask":3},{"id":"creature-138861","entityId":"entry-19735","position":[-575.6834,27.3508,-38.0571],"yaw":-1.69297,"spawnMask":3},{"id":"creature-138862","entityId":"entry-19735","position":[-578.9824,27.264,-82.0284],"yaw":-5.15386,"spawnMask":3},{"id":"creature-138863","entityId":"entry-19735","position":[-485.0094,26.8391,-90.0366],"yaw":-0.122173,"spawnMask":3},{"id":"creature-138864","entityId":"entry-19735","position":[-422.8914,26.8391,-13.9964],"yaw":-4.76475,"spawnMask":3},{"id":"creature-138865","entityId":"entry-20059","position":[-454.3224,2.5466,-135.2717],"yaw":-3.26377,"spawnMask":3},{"id":"creature-138868","entityId":"entry-20059","position":[-454.4374,2.5408,24.9385],"yaw":-3.35103,"spawnMask":3},{"id":"creature-138869","entityId":"entry-20059","position":[-426.4624,28.3379,35.6083],"yaw":-4.69415,"spawnMask":3},{"id":"creature-138871","entityId":"entry-20988","position":[-416.7454,1.9646,-26.699],"yaw":-1.95375,"spawnMask":3},{"id":"creature-138872","entityId":"entry-20988","position":[-423.9974,1.9646,-99.4809],"yaw":-4.71239,"spawnMask":3},{"id":"creature-138874","entityId":"entry-20988","position":[-416.2844,1.9646,-104.2861],"yaw":-3.9968,"spawnMask":3},{"id":"creature-138876","entityId":"entry-20988","position":[-463.8854,26.8391,-84.5474],"yaw":-6.18119,"spawnMask":3},{"id":"creature-138877","entityId":"entry-20988","position":[-461.7494,26.8391,-93.1879],"yaw":-0.0526762,"spawnMask":3},{"id":"creature-138878","entityId":"entry-20988","position":[-427.5974,26.8391,-26.4844],"yaw":-5.23599,"spawnMask":3},{"id":"creature-138879","entityId":"entry-20988","position":[-425.8924,28.3379,44.8583],"yaw":-4.70349,"spawnMask":3},{"id":"creature-138880","entityId":"entry-20990","position":[-362.6467,16.8893,-11.7745],"yaw":-3.19395,"spawnMask":3},{"id":"creature-138881","entityId":"entry-20990","position":[-363.0094,16.8893,-128.0165],"yaw":-3.47321,"spawnMask":3},{"id":"creature-138882","entityId":"entry-20990","position":[-454.0244,2.6711,-154.4544],"yaw":-3.19395,"spawnMask":3},{"id":"creature-138883","entityId":"entry-20990","position":[-322.4751,2.1277,-12.3562],"yaw":-2.3911,"spawnMask":3},{"id":"creature-138884","entityId":"entry-20990","position":[-322.5252,2.1277,-127.9686],"yaw":-2.6529,"spawnMask":3},{"id":"creature-138885","entityId":"entry-20990","position":[-315.925,2.1176,-113.9844],"yaw":-0.676204,"spawnMask":3},{"id":"creature-138886","entityId":"entry-20990","position":[-318.8225,2.1237,-17.2816],"yaw":-5.72468,"spawnMask":3},{"id":"creature-138887","entityId":"entry-20990","position":[-405.4424,16.8911,-149.4811],"yaw":-3.21141,"spawnMask":3},{"id":"creature-138888","entityId":"entry-20990","position":[-450.4874,3.7238,10.7914],"yaw":-3.29867,"spawnMask":3},{"id":"creature-138889","entityId":"entry-20990","position":[-404.5044,16.8893,1.9963],"yaw":-3.29867,"spawnMask":3},{"id":"creature-138890","entityId":"entry-20990","position":[-520.3554,28.293,-93.8209],"yaw":0,"spawnMask":3},{"id":"creature-138891","entityId":"entry-20990","position":[-465.2894,26.8391,-89.6663],"yaw":-6.27367,"spawnMask":3},{"id":"creature-138892","entityId":"entry-20990","position":[-419.7704,26.8391,-26.009],"yaw":-5.58505,"spawnMask":3},{"id":"creature-138893","entityId":"entry-20990","position":[-419.3704,28.3379,41.9733],"yaw":-4.78864,"spawnMask":3},{"id":"creature-138894","entityId":"entry-19510","position":[-559.3664,28.293,-84.9841],"yaw":-0.15708,"spawnMask":3},{"id":"creature-138895","entityId":"entry-19168","position":[-557.2194,28.293,-91.836],"yaw":-6.16101,"spawnMask":3},{"id":"creature-138896","entityId":"entry-19510","position":[-559.1984,28.293,-95.8839],"yaw":0,"spawnMask":3},{"id":"creature-138897","entityId":"entry-19168","position":[-557.1424,28.293,-88.144],"yaw":-6.19592,"spawnMask":3}],"roamingPacks":[{"id":"patrol-138800","name":"Tempest-Forge Patroller Patrol","speed":1.15,"pathId":1388000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-317.285,1.8884,-40.662],[-312.3081,1.8808,-48.3463],[-309.3622,1.881,-59.2543],[-313.1507,1.8808,-45.2385],[-326.3915,1.8874,-37.729]],"members":[{"id":"member","entityId":"entry-19166","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138802","name":"Tempest-Forge Patroller Patrol","speed":1.15,"pathId":1388020,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-320.645,1.8805,-90.9241],[-313.9877,1.8807,-85.3208],[-311.4211,1.8809,-73.1645],[-314.7578,1.8807,-82.6261],[-320.9092,1.8808,-91.0851],[-328.6755,1.8873,-93.9296]],"members":[{"id":"member","entityId":"entry-19166","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138805","name":"Tempest-Forge Patroller Patrol","speed":1.15,"pathId":1388050,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-402.6864,16.8058,11.1832],[-434.6944,8.3503,14.0675],[-455.0014,2.2507,14.09],[-473.2504,1.8755,-3.0552],[-471.6774,1.8751,-19.831],[-449.7064,1.8795,-17.2232],[-471.6774,1.8751,-19.831],[-473.2504,1.8755,-3.0552],[-455.0014,2.2507,14.09],[-434.6944,8.3503,14.0675]],"members":[{"id":"member","entityId":"entry-19166","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138825","name":"Mechanar Crusher Patrol","speed":1.15,"pathId":1388250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-392.7324,16.8124,-148.4866],[-390.1534,16.8111,-142.1568],[-381.9583,16.8078,-138.2543],[-375.9156,16.8078,-141.4941],[-381.9583,16.8078,-138.2543],[-390.1534,16.8111,-142.1568]],"members":[{"id":"member","entityId":"entry-19231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138832","name":"Gatewatcher Iron-Hand Patrol","speed":1.15,"pathId":1388320,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-466.9164,1.889,-144.2946],[-452.9374,2.8889,-145.9444],[-405.2124,16.8091,-141.2302],[-452.9374,2.8889,-145.9444]],"members":[{"id":"member","entityId":"entry-19710","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138837","name":"Mechanar Driller Patrol","speed":1.15,"pathId":1388370,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-417.1674,1.8844,-30.1687],[-427.3004,1.887,-26.881],[-429.9394,1.8893,-21.2469],[-443.6124,1.8852,-19.1869],[-446.0694,1.8844,-13.3421],[-443.6124,1.8852,-19.1869],[-429.9394,1.8893,-21.2469],[-427.3004,1.887,-26.881]],"members":[{"id":"member","entityId":"entry-19712","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138855","name":"Mechanar Tinkerer Patrol","speed":1.15,"pathId":1388550,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-498.2914,1.8861,-142.317],[-485.6474,1.8871,-154.349],[-486.1214,1.8869,-161.6512],[-496.4114,1.8814,-168.8947],[-506.8334,1.8814,-172.1997],[-486.1214,1.8869,-161.6512],[-485.6474,1.8871,-154.349],[-493.3124,1.8864,-150.5742]],"members":[{"id":"member","entityId":"entry-19716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138858","name":"Mechanar Tinkerer Patrol","speed":1.15,"pathId":1388580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-482.7714,1.8754,-29.7625],[-478.6234,1.8753,-25.9171],[-470.7554,1.8752,-25.3517],[-464.0864,1.8752,-26.6483],[-459.1834,2.8918,-29.3764],[-464.0864,1.8752,-26.6483],[-470.7554,1.8752,-25.3517],[-478.6234,1.8753,-25.9171]],"members":[{"id":"member","entityId":"entry-19716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138860","name":"Tempest-Forge Destroyer Patrol","speed":1.15,"pathId":1388600,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-518.3774,1.9027,-14.8593],[-488.7604,1.877,-14.136]],"members":[{"id":"member","entityId":"entry-19735","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138866","name":"Sunseeker Netherbinder Patrol","speed":1.15,"pathId":1388660,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-313.0708,1.8843,-36.3113],[-307.2046,1.8811,-46.732],[-307.2046,1.8811,-46.732]],"members":[{"id":"member","entityId":"entry-20059","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138867","name":"Sunseeker Netherbinder Patrol","speed":1.15,"pathId":1388670,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-314.0804,1.8817,-96.47],[-308.2732,1.8812,-85.4611],[-308.2732,1.8812,-85.4611]],"members":[{"id":"member","entityId":"entry-20059","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138870","name":"Sunseeker Engineer Patrol","speed":1.15,"pathId":1388700,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-514.3364,1.8908,-124.824],[-507.0024,1.89,-122.632],[-500.7014,1.8889,-125.0286],[-497.3604,1.8888,-130.5103],[-500.7014,1.8889,-125.0286],[-507.0024,1.89,-122.632]],"members":[{"id":"member","entityId":"entry-20988","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138873","name":"Sunseeker Engineer Patrol","speed":1.15,"pathId":1388730,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-386.5754,16.8115,-142.0765],[-389.0804,16.806,-127.7328],[-385.0854,16.806,-115.9246],[-388.1814,16.8059,-105.5734],[-400.3734,16.8007,-99.3191],[-388.1814,16.8059,-105.5734],[-385.0854,16.806,-115.9246],[-389.0804,16.806,-127.7328]],"members":[{"id":"member","entityId":"entry-20988","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138875","name":"Sunseeker Engineer Patrol","speed":1.15,"pathId":1388750,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-397.1344,16.8056,-26.8215],[-386.2954,16.8057,-20.8422],[-387.2954,16.8156,-8.6874],[-395.6444,16.7996,1.8541],[-387.2954,16.8156,-8.6874],[-386.2954,16.8057,-20.8422]],"members":[{"id":"member","entityId":"entry-20988","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-138822","name":"Mechano-Lord Capacitus","position":[-493.2904,-0.2352,-80.2271]},{"id":"creature-138824","name":"Nethermancer Sepethrea","position":[-611.5814,29.8012,-53.9818]},{"id":"creature-138823","name":"Pathaleon the Calculator","position":[-424.6064,27.5403,82.1413]}],"objectiveOrder":[{"id":"creature-138822","name":"Mechano-Lord Capacitus","position":[-493.2904,-0.2352,-80.2271]},{"id":"creature-138824","name":"Nethermancer Sepethrea","position":[-611.5814,29.8012,-53.9818]},{"id":"creature-138823","name":"Pathaleon the Calculator","position":[-424.6064,27.5403,82.1413]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":236,"id":184222,"map":554,"orientation":3.17222,"phaseMask":1,"position_x":71.1997,"position_y":149.657,"position_z":25.5811,"rotation0":0,"rotation1":0,"rotation2":0.999883,"rotation3":-0.0153131,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":242,"id":184221,"map":554,"orientation":3.17222,"phaseMask":1,"position_x":71.1997,"position_y":149.657,"position_z":25.5811,"rotation0":0,"rotation1":0,"rotation2":0.999883,"rotation3":-0.0153131,"spawnMask":1,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9879,"id":185015,"map":554,"orientation":2.74016,"phaseMask":1,"position_x":145.198,"position_y":-44.5185,"position_z":1.00919,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9880,"id":185015,"map":554,"orientation":2.47837,"phaseMask":1,"position_x":148.266,"position_y":-35.25,"position_z":1.00923,"rotation0":0,"rotation1":0,"rotation2":0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9881,"id":185015,"map":554,"orientation":4.72984,"phaseMask":1,"position_x":163.7,"position_y":-27.3792,"position_z":1.00893,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9882,"id":185015,"map":554,"orientation":2.00713,"phaseMask":1,"position_x":155.423,"position_y":-29.7322,"position_z":1.00882,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9883,"id":185018,"map":554,"orientation":2.47837,"phaseMask":1,"position_x":148.266,"position_y":-35.25,"position_z":1.00923,"rotation0":0,"rotation1":0,"rotation2":0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9884,"id":185018,"map":554,"orientation":2.74016,"phaseMask":1,"position_x":145.198,"position_y":-44.5185,"position_z":1.00919,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9885,"id":185018,"map":554,"orientation":4.72984,"phaseMask":1,"position_x":163.7,"position_y":-27.3792,"position_z":1.00893,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9886,"id":185018,"map":554,"orientation":2.00713,"phaseMask":1,"position_x":155.423,"position_y":-29.7322,"position_z":1.00882,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9887,"id":184632,"map":554,"orientation":3.14159,"phaseMask":1,"position_x":236.46,"position_y":52.3636,"position_z":1.65354,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9888,"id":184322,"map":554,"orientation":3.14159,"phaseMask":1,"position_x":242.874,"position_y":52.3148,"position_z":1.59633,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9889,"id":184449,"map":554,"orientation":3.14159,"phaseMask":1,"position_x":267.928,"position_y":52.3148,"position_z":27.0425,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9890,"id":184465,"map":554,"orientation":4.67748,"phaseMask":1,"position_x":222.543,"position_y":70.6106,"position_z":-0.00479339,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":1,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":46924,"animprogress":255,"areaId":3849,"guid":9891,"id":184849,"map":554,"orientation":4.67748,"phaseMask":1,"position_x":222.543,"position_y":70.6106,"position_z":-0.00479339,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":2,"spawntimesecs":7200,"state":1,"zoneId":3849},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":34902,"id":183788,"map":554,"orientation":3.14729,"phaseMask":1,"position_x":0.543812,"position_y":-1.39348,"position_z":0.21172,"rotation0":0,"rotation1":0,"rotation2":0.999996,"rotation3":-0.00284866,"spawnMask":3,"spawntimesecs":25,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150052,"id":184227,"map":554,"orientation":6.2643,"phaseMask":1,"position_x":-38.3715,"position_y":0.2876,"position_z":-1.8128,"rotation0":0,"rotation1":0,"rotation2":0.00944258,"rotation3":-0.999955,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150053,"id":184228,"map":554,"orientation":6.2643,"phaseMask":1,"position_x":-38.3715,"position_y":0.2876,"position_z":-1.8128,"rotation0":0,"rotation1":0,"rotation2":0.00944258,"rotation3":-0.999955,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/TempestKeepFactory":"3e680f7292be544b581cd5ad55706e735099198e19e97bc769229715092b1315","patch/World/maps/TempestKeepFactory":"a003083bc883360bb7d3d2a4b69bb5d289198f634adda95ccdd4422e9394daef"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/mechanar/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["17/17 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"shadow-labyrinth","title":"Auchindoun: Shadow Labyrinth","mapId":555,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Auchindoun: Shadow Labyrinth","theme":"Instanced dungeon","summary":"Fight through Auchindoun: Shadow Labyrinth, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Auchindoun: Shadow Labyrinth...","unchartedAreaName":"Uncharted Auchindoun: Shadow Labyrinth","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":834.8473},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/555-auchindounshadow/visual.glb","checksum":"e38013d92d08a5e56b067aaaff2a85dc98482f96c3b9f92717c62001d44c6589","size":4143336,"triangleCount":106770}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/555-auchindounshadow/collision.glb","checksum":"879baca1993fd08f5f8305f711af7ac4011dbf1bb124c72743f7a6a2f6fea7d7","size":913248,"triangleCount":96471}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/555-auchindounshadow/navigation.glb","checksum":"0c6b3b53163f67c1ef13502abfe5d289548190a37df91a445d1c6a38b5651111","size":123396,"triangleCount":9231}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[66.6641,-16.5409,-1063.9417],"max":[655.9276,79.006,95.5684]},"entrance":{"name":"Auchindoun: Shadow Labyrinth Entrance","footPosition":[155.4616,18.3591,-521.8356],"forward":[0.27269290690874276,0,0.9621011269724508],"yaw":0.2761909110335776},"areas":[{"id":"entrance","name":"Auchindoun: Shadow Labyrinth Entrance","center":[155.4616,18.3591,-521.8356],"radius":35},{"id":"area-ambassador-hellmaw","name":"Ambassador Hellmaw's Encounter","center":[312.6246,27.6434,-516.637],"radius":42},{"id":"area-blackheart-the-inciter","name":"Blackheart the Inciter's Encounter","center":[484.1586,32.1758,-560.6751],"radius":42},{"id":"area-grandmaster-vorpil","name":"Grandmaster Vorpil's Encounter","center":[409.4976,36.6567,-785.2657],"radius":42},{"id":"area-murmur","name":"Murmur's Encounter","center":[313.8446,35.3521,-1018.9417],"radius":42}],"entities":{"entry-18631":{"id":"entry-18631","kind":"mob","name":"Cabal Cultist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3391","name":"Thrash","spellId":3391,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6410,"damageMultiplier":1.12},{"id":"spell-15614","name":"Kick","spellId":15614,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6410,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18586-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-18633":{"id":"entry-18633","kind":"mob","name":"Cabal Acolyte","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12039","name":"Heal","spellId":12039,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5569,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-25058","name":"Renew","spellId":25058,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":5569,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18579-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-18635":{"id":"entry-18635","kind":"mob","name":"Cabal Deathsworn","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18589-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0044,"labelHeight":3.4695,"markerRadius":0.8615}}},"entry-18636":{"id":"entry-18636","kind":"mob","name":"Cabal Assassin","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18583-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-18637":{"id":"entry-18637","kind":"mob","name":"Cabal Shadow Priest","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15473","name":"Shadowform","spellId":15473,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4451,"damageMultiplier":1.12},{"id":"spell-17165","name":"Mind Flay","spellId":17165,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4451,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18599-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":3.3307,"markerRadius":0.827}}},"entry-18638":{"id":"entry-18638","kind":"mob","name":"Cabal Zealot","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4988,"damageMultiplier":1.12},{"id":"spell-33499","name":"Shape of the Beast","spellId":33499,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4988,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18612-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-18640":{"id":"entry-18640","kind":"mob","name":"Cabal Warlock","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32863","name":"Seed of Corruption","spellId":32863,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5335,"damageMultiplier":1.12},{"id":"spell-12471","name":"Shadow Bolt","spellId":12471,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5335,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18609-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0077,"labelHeight":3.3412,"markerRadius":0.7757}}},"entry-18641":{"id":"entry-18641","kind":"mob","name":"Cabal Familiar","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-38239","name":"Firebolt","spellId":38239,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4936,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18038-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.1166,"markerRadius":0.65}}},"entry-18642":{"id":"entry-18642","kind":"mob","name":"Fel Guardhound","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30849","name":"Spell Lock","spellId":30849,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5661,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-7949-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.7241,"markerRadius":1.9999}}},"entry-18667":{"id":"entry-18667","kind":"boss","name":"Blackheart the Inciter","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2700,"damageMultiplier":1},{"id":"spell-33709","name":"Charge","spellId":33709,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4098,"damageMultiplier":1.35},{"id":"spell-33676","name":"Incite Chaos","spellId":33676,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4098,"damageMultiplier":1.35},{"id":"spell-33707","name":"War Stomp","spellId":33707,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4098,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18058-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":11.6005,"markerRadius":3.5134}}},"entry-18708":{"id":"entry-18708","kind":"boss","name":"Murmur","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2800,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":7180,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18839-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.3017,"labelHeight":51.9279,"markerRadius":4.5}}},"entry-18731":{"id":"entry-18731","kind":"boss","name":"Ambassador Hellmaw","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6068,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18821-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":12.1912,"markerRadius":3.3133}}},"entry-18732":{"id":"entry-18732","kind":"boss","name":"Grandmaster Vorpil","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7925,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18535-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0094,"labelHeight":4.0675,"markerRadius":0.9443}}},"entry-18794":{"id":"entry-18794","kind":"mob","name":"Cabal Ritualist","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18191-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0069,"labelHeight":2.5678,"markerRadius":0.65}}},"entry-18796":{"id":"entry-18796","kind":"mob","name":"Fel Overseer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18193-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0153,"labelHeight":8.673,"markerRadius":1.2829}}},"entry-18797":{"id":"entry-18797","kind":"mob","name":"Tortured Skeleton","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/c507c6b298bda6969a80215b8be3a3eb943fdacf22ee5ffc13becfd9fd7f686e.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-18830":{"id":"entry-18830","kind":"mob","name":"Cabal Fanatic","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12021","name":"Fixate","spellId":12021,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6947,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18596-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-18848":{"id":"entry-18848","kind":"mob","name":"Malicious Instructor","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-17543-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":6.102,"markerRadius":1.3318}}},"entry-18891":{"id":"entry-18891","kind":"mob","name":"Spy To'gun","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18280-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-18639":{"id":"entry-18639","kind":"mob","name":"Cabal Spellbinder","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32691","name":"Spell Shock","spellId":32691,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5560,"damageMultiplier":1.12},{"id":"spell-33502","name":"Brain Wash","spellId":33502,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5560,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18602-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":3.3307,"markerRadius":0.827}}},"entry-18634":{"id":"entry-18634","kind":"mob","name":"Cabal Summoner","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-14034","name":"Fireball","spellId":14034,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6407,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18605-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0083,"labelHeight":3.0113,"markerRadius":0.65}}},"entry-18632":{"id":"entry-18632","kind":"mob","name":"Cabal Executioner","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-15578","name":"Whirlwind","spellId":15578,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6786,"damageMultiplier":0.62,"radius":8},{"id":"spell-30485","name":"Enrage","spellId":30485,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6786,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-30485","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/shadow-labyrinth/creatures/display-18593-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0084,"labelHeight":3.6317,"markerRadius":0.8431}}}},"staticSpawns":[{"id":"creature-146026","entityId":"entry-18631","position":[427.3116,32.2507,-787.3847],"yaw":-0.11843,"spawnMask":3},{"id":"creature-146028","entityId":"entry-18631","position":[598.9896,32.2595,-715.4547],"yaw":-3.4383,"spawnMask":3},{"id":"creature-146029","entityId":"entry-18631","position":[443.7536,27.6433,-618.0093],"yaw":-5.48033,"spawnMask":3},{"id":"creature-146030","entityId":"entry-18631","position":[429.6236,27.6433,-601.9581],"yaw":-2.74017,"spawnMask":3},{"id":"creature-146031","entityId":"entry-18631","position":[410.3146,27.6432,-568.0444],"yaw":-3.08923,"spawnMask":3},{"id":"creature-146032","entityId":"entry-18631","position":[427.7336,27.6432,-567.1641],"yaw":-3.1765,"spawnMask":3},{"id":"creature-146033","entityId":"entry-18631","position":[419.7436,27.6819,-548.4253],"yaw":-3.49066,"spawnMask":3},{"id":"creature-146034","entityId":"entry-18631","position":[431.0386,27.6433,-526.0417],"yaw":-3.66519,"spawnMask":3},{"id":"creature-146035","entityId":"entry-18631","position":[432.6536,27.6433,-499.1021],"yaw":-0.0174533,"spawnMask":3},{"id":"creature-146036","entityId":"entry-18633","position":[610.2646,32.2595,-704.7117],"yaw":-5.06145,"spawnMask":3},{"id":"creature-146037","entityId":"entry-18633","position":[242.0321,18.442,-614.3027],"yaw":-1.95477,"spawnMask":3},{"id":"creature-146038","entityId":"entry-18633","position":[247.8686,18.442,-609.8027],"yaw":-6.00393,"spawnMask":3},{"id":"creature-146039","entityId":"entry-18633","position":[187.8325,18.4421,-603.0791],"yaw":-4.04916,"spawnMask":3},{"id":"creature-146040","entityId":"entry-18633","position":[428.7946,27.6433,-598.0476],"yaw":-2.6529,"spawnMask":3},{"id":"creature-146041","entityId":"entry-18633","position":[419.7546,27.6432,-570.6054],"yaw":-3.10669,"spawnMask":3},{"id":"creature-146042","entityId":"entry-18633","position":[427.9276,27.6432,-569.616],"yaw":-3.14159,"spawnMask":3},{"id":"creature-146043","entityId":"entry-18633","position":[234.6663,18.4421,-568.0466],"yaw":-4.50295,"spawnMask":3},{"id":"creature-146044","entityId":"entry-18633","position":[402.8196,27.6432,-567.5934],"yaw":-3.10669,"spawnMask":3},{"id":"creature-146045","entityId":"entry-18633","position":[236.3212,18.4421,-561.3857],"yaw":-2.00713,"spawnMask":3},{"id":"creature-146046","entityId":"entry-18633","position":[203.3146,18.4422,-555.4241],"yaw":-0.331613,"spawnMask":3},{"id":"creature-146047","entityId":"entry-18633","position":[197.8067,18.4422,-555.0703],"yaw":-2.87979,"spawnMask":3},{"id":"creature-146048","entityId":"entry-18633","position":[419.7106,27.67,-550.814],"yaw":-3.12414,"spawnMask":3},{"id":"creature-146049","entityId":"entry-18633","position":[411.7196,27.6754,-549.1875],"yaw":-3.24631,"spawnMask":3},{"id":"creature-146050","entityId":"entry-18633","position":[230.3338,18.4421,-521.7716],"yaw":-0.0349066,"spawnMask":3},{"id":"creature-146051","entityId":"entry-18633","position":[421.7786,27.6433,-521.5635],"yaw":-3.68264,"spawnMask":3},{"id":"creature-146052","entityId":"entry-18633","position":[242.6748,18.4421,-512.8811],"yaw":-2.37365,"spawnMask":3},{"id":"creature-146053","entityId":"entry-18633","position":[437.8886,27.6434,-501.5776],"yaw":-5.68977,"spawnMask":3},{"id":"creature-146054","entityId":"entry-18635","position":[602.4426,32.2595,-713.7397],"yaw":-4.72984,"spawnMask":3},{"id":"creature-146055","entityId":"entry-18635","position":[609.6346,32.2595,-708.4237],"yaw":-1.53589,"spawnMask":3},{"id":"creature-146056","entityId":"entry-18635","position":[610.9276,32.2595,-706.8697],"yaw":-0.0523599,"spawnMask":3},{"id":"creature-146057","entityId":"entry-18635","position":[442.6566,27.6433,-621.1197],"yaw":-1.32645,"spawnMask":3},{"id":"creature-146058","entityId":"entry-18635","position":[246.6473,18.442,-613.9762],"yaw":-0.715585,"spawnMask":3},{"id":"creature-146059","entityId":"entry-18635","position":[187.417,18.3482,-597.9778],"yaw":-0.237499,"spawnMask":3},{"id":"creature-146060","entityId":"entry-18635","position":[192.0811,18.4421,-605.6821],"yaw":-0.0872665,"spawnMask":3},{"id":"creature-146061","entityId":"entry-18635","position":[421.2546,27.6433,-603.9128],"yaw":-2.84489,"spawnMask":3},{"id":"creature-146062","entityId":"entry-18635","position":[427.7946,27.6432,-571.8032],"yaw":-3.1765,"spawnMask":3},{"id":"creature-146063","entityId":"entry-18635","position":[410.3946,27.6432,-571.2153],"yaw":-3.01942,"spawnMask":3},{"id":"creature-146064","entityId":"entry-18635","position":[231.032,18.442,-569.2687],"yaw":-3.75246,"spawnMask":3},{"id":"creature-146065","entityId":"entry-18635","position":[233.9031,18.4421,-558.0266],"yaw":-3.21141,"spawnMask":3},{"id":"creature-146066","entityId":"entry-18635","position":[200.5906,18.4422,-556.2258],"yaw":-1.44862,"spawnMask":3},{"id":"creature-146067","entityId":"entry-18635","position":[419.6366,27.6574,-553.3282],"yaw":-3.33358,"spawnMask":3},{"id":"creature-146068","entityId":"entry-18635","position":[214.0561,18.4422,-548.291],"yaw":-2.96706,"spawnMask":3},{"id":"creature-146069","entityId":"entry-18635","position":[216.7565,18.4422,-546.3607],"yaw":-5.44543,"spawnMask":3},{"id":"creature-146070","entityId":"entry-18635","position":[229.4774,18.4421,-523.5888],"yaw":-1.22173,"spawnMask":3},{"id":"creature-146071","entityId":"entry-18635","position":[229.8374,18.4421,-519.8636],"yaw":-5.23599,"spawnMask":3},{"id":"creature-146072","entityId":"entry-18635","position":[423.7506,27.6433,-518.5077],"yaw":-3.76991,"spawnMask":3},{"id":"creature-146073","entityId":"entry-18635","position":[241.9432,18.4421,-510.3863],"yaw":-3.56047,"spawnMask":3},{"id":"creature-146074","entityId":"entry-18635","position":[207.978,18.3507,-513.63],"yaw":-1.50098,"spawnMask":3},{"id":"creature-146075","entityId":"entry-18635","position":[246.2163,18.4153,-584.7993],"yaw":-0.3125,"spawnMask":3},{"id":"creature-146078","entityId":"entry-18637","position":[420.1016,27.6432,-600.9163],"yaw":-2.87979,"spawnMask":3},{"id":"creature-146079","entityId":"entry-18637","position":[403.2226,27.6432,-571.2909],"yaw":-3.03687,"spawnMask":3},{"id":"creature-146080","entityId":"entry-18637","position":[419.1756,27.6432,-567.147],"yaw":-3.12414,"spawnMask":3},{"id":"creature-146081","entityId":"entry-18637","position":[411.3846,27.6575,-552.8373],"yaw":-3.28122,"spawnMask":3},{"id":"creature-146082","entityId":"entry-18637","position":[431.3766,27.6433,-522.1796],"yaw":-3.56047,"spawnMask":3},{"id":"creature-146083","entityId":"entry-18638","position":[510.8156,32.1737,-785.1747],"yaw":-6.28229,"spawnMask":3},{"id":"creature-146084","entityId":"entry-18638","position":[479.2626,32.1716,-781.2957],"yaw":-6.26573,"spawnMask":3},{"id":"creature-146085","entityId":"entry-18638","position":[426.1296,32.2507,-780.1987],"yaw":-5.98751,"spawnMask":3},{"id":"creature-146086","entityId":"entry-18638","position":[400.7296,36.5733,-773.4527],"yaw":-2.9348,"spawnMask":3},{"id":"creature-146087","entityId":"entry-18638","position":[399.3236,36.5733,-767.8207],"yaw":-2.8752,"spawnMask":3},{"id":"creature-146088","entityId":"entry-18640","position":[191.0276,18.4421,-602.6534],"yaw":-5.18363,"spawnMask":3},{"id":"creature-146089","entityId":"entry-18640","position":[207.2184,18.4421,-600.1355],"yaw":-2.49582,"spawnMask":3},{"id":"creature-146090","entityId":"entry-18640","position":[230.4483,18.442,-598.8434],"yaw":-1.55334,"spawnMask":3},{"id":"creature-146091","entityId":"entry-18640","position":[438.0716,27.6433,-598.3784],"yaw":-2.72271,"spawnMask":3},{"id":"creature-146092","entityId":"entry-18640","position":[415.2736,27.6433,-516.4323],"yaw":-3.64774,"spawnMask":3},{"id":"creature-146093","entityId":"entry-18641","position":[212.3925,18.3588,-602.2173],"yaw":-0.436332,"spawnMask":3},{"id":"creature-146094","entityId":"entry-18641","position":[189.4511,18.4421,-602.1472],"yaw":-4.92183,"spawnMask":3},{"id":"creature-146095","entityId":"entry-18641","position":[212.3653,18.3597,-598.7363],"yaw":-6.10865,"spawnMask":3},{"id":"creature-146096","entityId":"entry-18641","position":[210.382,18.3591,-595.5709],"yaw":-5.41052,"spawnMask":3},{"id":"creature-146097","entityId":"entry-18641","position":[206.768,18.3581,-595.0363],"yaw":-0.950379,"spawnMask":3},{"id":"creature-146099","entityId":"entry-18641","position":[207.9876,18.3584,-593.1764],"yaw":-0.881865,"spawnMask":3},{"id":"creature-146100","entityId":"entry-18642","position":[222.5894,18.3587,-601.8162],"yaw":-5.30191,"spawnMask":3},{"id":"creature-146101","entityId":"entry-18642","position":[437.1166,27.6432,-595.6857],"yaw":-3.12414,"spawnMask":3},{"id":"creature-146102","entityId":"entry-18642","position":[413.8476,27.6433,-518.8835],"yaw":-3.85718,"spawnMask":3},{"id":"creature-146103","entityId":"entry-18667","position":[484.1586,32.1758,-560.6751],"yaw":-0.0174533,"spawnMask":3},{"id":"creature-146104","entityId":"entry-18708","position":[313.8446,35.3521,-1018.9417],"yaw":-1.5625,"spawnMask":3},{"id":"creature-146105","entityId":"entry-18731","position":[312.6246,27.6434,-516.637],"yaw":-4.67748,"spawnMask":3},{"id":"creature-146106","entityId":"entry-18732","position":[409.4976,36.6567,-785.2657],"yaw":-3.05433,"spawnMask":3},{"id":"creature-146113","entityId":"entry-18794","position":[294.8046,27.6434,-605.7241],"yaw":-1.23918,"spawnMask":3},{"id":"creature-146114","entityId":"entry-18794","position":[330.6076,27.6435,-605.6239],"yaw":-1.32645,"spawnMask":3},{"id":"creature-146115","entityId":"entry-18794","position":[300.7456,27.6434,-599.5181],"yaw":-6.21337,"spawnMask":3},{"id":"creature-146116","entityId":"entry-18794","position":[336.4616,27.6435,-599.4212],"yaw":-5.98648,"spawnMask":3},{"id":"creature-146117","entityId":"entry-18794","position":[324.1156,27.6435,-599.3881],"yaw":-3.1765,"spawnMask":3},{"id":"creature-146118","entityId":"entry-18794","position":[288.3786,27.6434,-599.3866],"yaw":-3.31613,"spawnMask":3},{"id":"creature-146119","entityId":"entry-18794","position":[313.1386,27.6435,-585.9742],"yaw":-1.69297,"spawnMask":3},{"id":"creature-146120","entityId":"entry-18794","position":[306.7946,27.6435,-580.0585],"yaw":-3.50811,"spawnMask":3},{"id":"creature-146121","entityId":"entry-18794","position":[319.4476,27.6435,-579.8741],"yaw":-5.84685,"spawnMask":3},{"id":"creature-146122","entityId":"entry-18794","position":[313.3156,27.6434,-547.0865],"yaw":-1.58825,"spawnMask":3},{"id":"creature-146123","entityId":"entry-18794","position":[307.0226,27.6434,-541.107],"yaw":-3.45575,"spawnMask":3},{"id":"creature-146124","entityId":"entry-18794","position":[319.4936,27.6435,-541.1],"yaw":-5.95157,"spawnMask":3},{"id":"creature-146125","entityId":"entry-18794","position":[294.4416,27.6434,-527.8201],"yaw":-1.62316,"spawnMask":3},{"id":"creature-146126","entityId":"entry-18794","position":[330.6096,27.6434,-527.2982],"yaw":-1.46608,"spawnMask":3},{"id":"creature-146127","entityId":"entry-18794","position":[300.8426,27.6433,-521.3983],"yaw":-5.95157,"spawnMask":3},{"id":"creature-146128","entityId":"entry-18794","position":[288.1906,27.6433,-521.3137],"yaw":-3.45575,"spawnMask":3},{"id":"creature-146129","entityId":"entry-18794","position":[336.7146,27.6434,-521.2584],"yaw":-6.02139,"spawnMask":3},{"id":"creature-146130","entityId":"entry-18794","position":[324.3346,27.6434,-521.2559],"yaw":-3.4383,"spawnMask":3},{"id":"creature-146134","entityId":"entry-18797","position":[449.0166,45.9971,-828.5167],"yaw":-2.07694,"spawnMask":3},{"id":"creature-146135","entityId":"entry-18797","position":[489.0296,44.6254,-824.2237],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146136","entityId":"entry-18797","position":[449.7146,42.2745,-815.5047],"yaw":-4.95544,"spawnMask":3},{"id":"creature-146137","entityId":"entry-18797","position":[440.9846,39.6732,-814.0867],"yaw":-0.0785682,"spawnMask":3},{"id":"creature-146138","entityId":"entry-18797","position":[486.7456,41.679,-813.2927],"yaw":-2.42061,"spawnMask":3},{"id":"creature-146139","entityId":"entry-18797","position":[492.1176,40.861,-812.3867],"yaw":-4.16952,"spawnMask":3},{"id":"creature-146140","entityId":"entry-18797","position":[444.8476,38.7004,-808.5237],"yaw":-5.66419,"spawnMask":3},{"id":"creature-146141","entityId":"entry-18797","position":[480.0316,37.2849,-808.4177],"yaw":-5.3481,"spawnMask":3},{"id":"creature-146142","entityId":"entry-18797","position":[493.0886,38.4005,-808.0997],"yaw":-1.06092,"spawnMask":3},{"id":"creature-146143","entityId":"entry-18797","position":[485.0726,39.0262,-807.6687],"yaw":-3.04423,"spawnMask":3},{"id":"creature-146144","entityId":"entry-18797","position":[443.5776,37.0103,-805.9667],"yaw":-0.282892,"spawnMask":3},{"id":"creature-146145","entityId":"entry-18797","position":[452.0426,37.6321,-805.4387],"yaw":-0.0941466,"spawnMask":3},{"id":"creature-146146","entityId":"entry-18797","position":[499.0566,35.3262,-804.7787],"yaw":-4.46923,"spawnMask":3},{"id":"creature-146147","entityId":"entry-18797","position":[439.4916,35.8179,-804.3067],"yaw":-1.6615,"spawnMask":3},{"id":"creature-146148","entityId":"entry-18797","position":[488.5066,37.7436,-804.0267],"yaw":-3.37721,"spawnMask":3},{"id":"creature-146149","entityId":"entry-18797","position":[449.1286,37.1977,-803.3037],"yaw":-4.44481,"spawnMask":3},{"id":"creature-146150","entityId":"entry-18797","position":[484.0426,36.87,-801.8887],"yaw":-3.02556,"spawnMask":3},{"id":"creature-146151","entityId":"entry-18797","position":[493.1766,35.6925,-801.8577],"yaw":-3.05433,"spawnMask":3},{"id":"creature-146152","entityId":"entry-18797","position":[454.2276,35.4463,-801.1567],"yaw":-3.16738,"spawnMask":3},{"id":"creature-146153","entityId":"entry-18797","position":[445.8056,34.6454,-798.9827],"yaw":-1.88732,"spawnMask":3},{"id":"creature-146154","entityId":"entry-18797","position":[486.8136,34.8999,-798.6977],"yaw":-4.72018,"spawnMask":3},{"id":"creature-146155","entityId":"entry-18797","position":[452.0916,33.8331,-797.3737],"yaw":-3.35616,"spawnMask":3},{"id":"creature-146156","entityId":"entry-18797","position":[308.6386,36.6557,-780.9427],"yaw":-3.68264,"spawnMask":3},{"id":"creature-146157","entityId":"entry-18797","position":[554.1056,32.2568,-779.7687],"yaw":-5.044,"spawnMask":3},{"id":"creature-146158","entityId":"entry-18797","position":[491.6926,33.693,-777.3037],"yaw":-0.418879,"spawnMask":3},{"id":"creature-146159","entityId":"entry-18797","position":[495.5106,33.4487,-774.7877],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146160","entityId":"entry-18797","position":[487.8956,33.6769,-774.6277],"yaw":-5.044,"spawnMask":3},{"id":"creature-146161","entityId":"entry-18797","position":[492.0256,34.4044,-774.4957],"yaw":-5.65487,"spawnMask":3},{"id":"creature-146162","entityId":"entry-18797","position":[451.9556,34.1627,-773.6797],"yaw":-4.53786,"spawnMask":3},{"id":"creature-146163","entityId":"entry-18797","position":[448.1826,34.7047,-773.1937],"yaw":-3.40339,"spawnMask":3},{"id":"creature-146164","entityId":"entry-18797","position":[443.7296,34.3096,-772.9927],"yaw":-4.32842,"spawnMask":3},{"id":"creature-146165","entityId":"entry-18797","position":[492.8196,34.8789,-771.0907],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146166","entityId":"entry-18797","position":[496.1656,34.4124,-771.0227],"yaw":-3.78736,"spawnMask":3},{"id":"creature-146167","entityId":"entry-18797","position":[454.5956,33.9793,-770.7087],"yaw":-4.76475,"spawnMask":3},{"id":"creature-146168","entityId":"entry-18797","position":[488.8336,34.4935,-770.5097],"yaw":-0.610865,"spawnMask":3},{"id":"creature-146169","entityId":"entry-18797","position":[450.5826,34.9457,-770.1787],"yaw":-3.78736,"spawnMask":3},{"id":"creature-146170","entityId":"entry-18797","position":[448.7456,35.1461,-769.9757],"yaw":-5.75959,"spawnMask":3},{"id":"creature-146171","entityId":"entry-18797","position":[446.8276,35.141,-769.9277],"yaw":-0.628319,"spawnMask":3},{"id":"creature-146172","entityId":"entry-18797","position":[493.2706,34.9454,-767.4107],"yaw":-2.30383,"spawnMask":3},{"id":"creature-146173","entityId":"entry-18797","position":[448.2036,34.5979,-767.3647],"yaw":-6.19592,"spawnMask":3},{"id":"creature-146174","entityId":"entry-18797","position":[444.0816,34.2529,-766.5947],"yaw":-4.17134,"spawnMask":3},{"id":"creature-146175","entityId":"entry-18797","position":[451.7396,33.8432,-766.4557],"yaw":-4.29351,"spawnMask":3},{"id":"creature-146176","entityId":"entry-18797","position":[488.8226,34.1664,-766.4127],"yaw":-0.942478,"spawnMask":3},{"id":"creature-146177","entityId":"entry-18797","position":[496.7476,34.0401,-765.6687],"yaw":-4.18879,"spawnMask":3},{"id":"creature-146178","entityId":"entry-18797","position":[478.2366,32.2543,-762.8067],"yaw":-3.05433,"spawnMask":3},{"id":"creature-146179","entityId":"entry-18797","position":[409.3456,59.006,-747.0307],"yaw":-4.50295,"spawnMask":3},{"id":"creature-146180","entityId":"entry-18797","position":[570.5236,35.1737,-715.2537],"yaw":-0.942478,"spawnMask":3},{"id":"creature-146181","entityId":"entry-18797","position":[572.5976,34.6346,-713.0327],"yaw":-4.18879,"spawnMask":3},{"id":"creature-146182","entityId":"entry-18797","position":[575.6346,33.8895,-712.9257],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146183","entityId":"entry-18797","position":[572.8386,33.8323,-710.3917],"yaw":-2.18166,"spawnMask":3},{"id":"creature-146184","entityId":"entry-18797","position":[571.4346,32.2101,-694.6037],"yaw":-2.30383,"spawnMask":3},{"id":"creature-146185","entityId":"entry-18797","position":[596.4546,34.6518,-639.9827],"yaw":-2.30383,"spawnMask":3},{"id":"creature-146186","entityId":"entry-18797","position":[591.5956,34.3072,-639.4927],"yaw":-5.65487,"spawnMask":3},{"id":"creature-146187","entityId":"entry-18797","position":[595.0266,35.2816,-636.6437],"yaw":-3.78736,"spawnMask":3},{"id":"creature-146188","entityId":"entry-18797","position":[592.5886,34.5917,-634.1167],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146189","entityId":"entry-18797","position":[593.7426,32.2592,-601.7977],"yaw":-2.93215,"spawnMask":3},{"id":"creature-146190","entityId":"entry-18830","position":[510.7676,32.1733,-791.1747],"yaw":-0.058285,"spawnMask":3},{"id":"creature-146191","entityId":"entry-18830","position":[426.8226,32.2508,-790.3857],"yaw":-0.287388,"spawnMask":3},{"id":"creature-146192","entityId":"entry-18830","position":[479.8546,32.1717,-789.3517],"yaw":-0.0523599,"spawnMask":3},{"id":"creature-146193","entityId":"entry-18830","position":[510.7996,32.1736,-787.1747],"yaw":-0.018846,"spawnMask":3},{"id":"creature-146194","entityId":"entry-18830","position":[479.2606,32.1716,-783.5327],"yaw":0,"spawnMask":3},{"id":"creature-146195","entityId":"entry-18830","position":[427.2866,32.2507,-783.0857],"yaw":-6.16129,"spawnMask":3},{"id":"creature-146196","entityId":"entry-18830","position":[400.5256,36.5733,-771.5737],"yaw":-2.89414,"spawnMask":3},{"id":"creature-146202","entityId":"entry-18891","position":[217.2986,20.1664,-480.9134],"yaw":-2.3911,"spawnMask":3},{"id":"creature-146206","entityId":"entry-18639","position":[316.9056,36.6476,-983.4777],"yaw":-4.90438,"spawnMask":3},{"id":"creature-146207","entityId":"entry-18639","position":[312.2336,36.6476,-983.4907],"yaw":-4.69494,"spawnMask":3},{"id":"creature-146208","entityId":"entry-18639","position":[307.6316,36.6476,-982.7827],"yaw":-4.57276,"spawnMask":3},{"id":"creature-146209","entityId":"entry-18634","position":[312.4476,36.6566,-849.6267],"yaw":-1.5,"spawnMask":3},{"id":"creature-146210","entityId":"entry-18634","position":[331.8436,36.653,-871.4027],"yaw":-5.68544,"spawnMask":3},{"id":"creature-146211","entityId":"entry-18632","position":[291.7206,36.6557,-850.7477],"yaw":-3.50811,"spawnMask":3},{"id":"creature-146212","entityId":"entry-18632","position":[328.1226,36.6567,-847.3737],"yaw":-5.53269,"spawnMask":3},{"id":"creature-146213","entityId":"entry-18632","position":[330.0316,36.6537,-876.1727],"yaw":-5.35816,"spawnMask":3},{"id":"creature-146214","entityId":"entry-18639","position":[295.8616,36.6535,-875.5367],"yaw":-5.75959,"spawnMask":3},{"id":"creature-146215","entityId":"entry-18634","position":[291.1506,36.6522,-881.8907],"yaw":-3.49066,"spawnMask":3},{"id":"creature-146216","entityId":"entry-18632","position":[324.4816,36.6532,-873.9217],"yaw":-4.83456,"spawnMask":3},{"id":"creature-146217","entityId":"entry-18632","position":[327.5916,36.6521,-892.4107],"yaw":-0.523599,"spawnMask":3},{"id":"creature-146218","entityId":"entry-18639","position":[296.3696,36.6518,-891.5757],"yaw":-3.03687,"spawnMask":3},{"id":"creature-146219","entityId":"entry-18634","position":[297.5616,36.653,-884.8317],"yaw":-4.2586,"spawnMask":3},{"id":"creature-146220","entityId":"entry-18632","position":[329.0826,36.653,-888.5897],"yaw":-5.91667,"spawnMask":3},{"id":"creature-146221","entityId":"entry-18632","position":[298.1526,36.6509,-911.6487],"yaw":-4.4855,"spawnMask":3},{"id":"creature-146222","entityId":"entry-18639","position":[299.2796,36.6504,-918.9627],"yaw":-2.37365,"spawnMask":3},{"id":"creature-146223","entityId":"entry-18634","position":[327.7756,36.6502,-923.0297],"yaw":-0.890118,"spawnMask":3},{"id":"creature-146224","entityId":"entry-18632","position":[296.4896,36.6493,-932.1397],"yaw":-1.44862,"spawnMask":3},{"id":"creature-146225","entityId":"entry-18639","position":[291.9866,36.6518,-865.0297],"yaw":-2.88884,"spawnMask":3},{"id":"creature-146226","entityId":"entry-18634","position":[335.2306,36.6535,-871.8907],"yaw":-5.98648,"spawnMask":3},{"id":"creature-146227","entityId":"entry-18639","position":[290.2236,36.6527,-910.4147],"yaw":-3.14159,"spawnMask":3},{"id":"creature-146228","entityId":"entry-18634","position":[332.7256,36.6492,-955.8847],"yaw":-0.279253,"spawnMask":3},{"id":"creature-146229","entityId":"entry-18639","position":[286.5006,36.651,-965.3157],"yaw":-3.15221,"spawnMask":3},{"id":"creature-146230","entityId":"entry-18794","position":[294.3706,27.6367,-592.823],"yaw":-4.67748,"spawnMask":2},{"id":"creature-146231","entityId":"entry-18794","position":[330.3066,27.6363,-592.8884],"yaw":-4.50295,"spawnMask":2},{"id":"creature-146232","entityId":"entry-18794","position":[330.3306,27.6434,-514.9013],"yaw":-4.66003,"spawnMask":2},{"id":"creature-146233","entityId":"entry-18794","position":[313.2286,27.6434,-573.4835],"yaw":-4.66003,"spawnMask":2},{"id":"creature-146234","entityId":"entry-18794","position":[313.1316,27.6434,-534.5729],"yaw":-4.69494,"spawnMask":2},{"id":"creature-146235","entityId":"entry-18794","position":[294.4206,27.6433,-515.2114],"yaw":-4.67748,"spawnMask":2}],"roamingPacks":[{"id":"patrol-146025","name":"Cabal Cultist Patrol","speed":1.15,"pathId":1460250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[510.7836,32.1744,-789.1747],[523.7086,32.1759,-789.2777],[523.5456,32.176,-789.2757]],"members":[{"id":"member","entityId":"entry-18631","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146027","name":"Cabal Cultist Patrol","speed":1.15,"pathId":1460270,"formationSource":"database-solo","spawnMask":3,"waypoints":[[479.4746,32.1716,-786.4047],[446.0776,32.1693,-785.3847]],"members":[{"id":"member","entityId":"entry-18631","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146076","name":"Cabal Assassin Patrol","speed":1.15,"pathId":1460760,"formationSource":"database-solo","spawnMask":3,"waypoints":[[415.4516,27.5599,-660.7537],[418.7096,27.5599,-640.7477],[409.8436,27.56,-621.6357],[403.3466,27.5599,-603.6701],[397.6926,27.5599,-579.683],[382.5336,27.5599,-561.6358],[341.4946,27.5601,-561.671],[318.3536,27.5601,-527.551],[299.6636,27.56,-540.1371],[331.7746,27.5601,-557.2376],[379.9476,27.5598,-558.3217],[397.3816,27.5583,-543.1905],[407.7296,27.56,-508.4134],[407.7296,27.56,-508.4134],[397.3816,27.5583,-543.1905],[379.9476,27.5598,-558.3217],[331.7746,27.5601,-557.2376],[299.6636,27.56,-540.1371],[318.3536,27.5601,-527.551],[341.4946,27.5601,-561.671],[382.5336,27.5599,-561.6358],[397.6926,27.5599,-579.683],[403.3466,27.5599,-603.6701],[409.8436,27.56,-621.6357],[418.7096,27.5599,-640.7477],[415.4516,27.5599,-660.7537]],"members":[{"id":"member","entityId":"entry-18636","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146077","name":"Cabal Assassin Patrol","speed":1.15,"pathId":1460770,"formationSource":"database-solo","spawnMask":3,"waypoints":[[419.8586,27.5599,-460.8634],[417.0416,27.56,-482.9451],[408.0716,27.56,-512.0805],[396.0416,27.5642,-544.8809],[371.8016,27.5591,-560.3982],[329.0136,27.5601,-568.9017],[313.8876,27.5597,-610.2627],[289.5826,24.208,-653.9347],[269.9426,22.9326,-670.0737],[312.8706,27.0436,-632.8237],[321.8976,27.5603,-590.7975],[343.6226,27.5601,-561.6799],[389.5676,27.5598,-563.1911],[396.3366,27.5619,-585.2258],[403.7856,27.5599,-603.1284],[417.3976,27.5599,-629.3897],[413.1646,27.5599,-650.5337],[418.7306,27.5599,-662.0027],[440.2616,27.56,-653.3297],[423.0216,27.5599,-640.0917],[408.4166,27.5599,-619.4247],[399.0526,27.5599,-594.334],[396.4806,27.568,-574.1289],[397.5436,27.5599,-527.406],[419.3536,27.56,-492.409],[437.2886,27.56,-466.3724]],"members":[{"id":"member","entityId":"entry-18636","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146098","name":"Cabal Familiar Patrol","speed":1.15,"pathId":1460980,"formationSource":"database-solo","spawnMask":3,"waypoints":[[229.634,18.6087,-594.2552],[233.384,18.6087,-592.0052],[233.884,18.6087,-588.2552],[230.134,18.6087,-587.2552],[224.134,18.6087,-591.7552],[224.134,18.6087,-595.5052],[227.384,18.6087,-596.0052],[229.134,18.3587,-594.2552]],"members":[{"id":"member","entityId":"entry-18641","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146131","name":"Fel Overseer Patrol","speed":1.15,"pathId":1461310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[312.7296,27.5653,-594.5242],[300.1116,27.5518,-587.3072],[299.0566,27.5601,-560.0322],[299.4536,27.56,-538.7755],[312.0756,27.5601,-524.9578],[327.3676,27.5601,-539.3701],[326.1206,27.5601,-561.2142],[323.8596,27.5602,-588.5421]],"members":[{"id":"member","entityId":"entry-18796","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146132","name":"Fel Overseer Patrol","speed":1.15,"pathId":1461320,"formationSource":"database-solo","spawnMask":3,"waypoints":[[340.2756,27.5601,-560.2059],[357.0216,27.5596,-558.0406],[385.1746,27.56,-560.4841],[340.6056,27.5601,-561.9958],[385.1746,27.56,-560.4841],[357.0216,27.5596,-558.0406]],"members":[{"id":"member","entityId":"entry-18796","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146133","name":"Fel Overseer Patrol","speed":1.15,"pathId":1461330,"formationSource":"database-solo","spawnMask":3,"waypoints":[[289.3856,27.56,-548.1898],[288.7886,27.56,-536.8251],[293.3356,27.56,-531.9536],[296.5626,27.56,-536.524],[294.7336,27.56,-548.6235],[294.8806,27.5601,-566.6971],[297.6076,27.5524,-586.2656],[293.6146,27.5504,-589.948],[290.5826,27.552,-586.9334],[289.9516,27.56,-566.8181]],"members":[{"id":"member","entityId":"entry-18796","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146197","name":"Cabal Fanatic Patrol","speed":1.15,"pathId":1461970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[402.4456,36.5733,-804.1877],[394.8436,36.5733,-798.8157],[388.9326,36.5733,-791.9097],[387.7736,36.5734,-777.9397],[396.6146,36.5733,-770.2207],[403.8586,36.5734,-768.7107],[414.1526,32.1669,-768.4607],[424.1626,31.5512,-770.5337],[431.5506,32.1687,-773.8327],[435.2516,32.1687,-780.3097],[435.3416,32.1684,-791.2757],[427.7456,32.1683,-796.8517],[420.2236,32.1674,-800.8767],[413.3856,32.1661,-803.3397]],"members":[{"id":"member","entityId":"entry-18830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146198","name":"Malicious Instructor Patrol","speed":1.15,"pathId":1461980,"formationSource":"database-solo","spawnMask":3,"waypoints":[[579.3426,32.1467,-701.5117],[585.4236,32.3229,-687.9737],[585.2186,32.3326,-685.8277],[585.3556,32.2157,-674.1507],[577.2326,33.1006,-662.5747],[574.6816,32.2433,-650.8227],[577.1296,32.1854,-642.7027],[584.2946,32.0977,-641.1057],[587.8936,32.2515,-649.4747],[586.3036,32.2986,-662.5037],[586.8376,31.8647,-684.1837],[586.5726,32.1411,-694.3457],[594.0526,32.6484,-700.7607],[596.9996,32.1761,-707.3727],[591.2176,32.1761,-713.0517],[584.8176,32.1761,-710.8527]],"members":[{"id":"member","entityId":"entry-18848","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146199","name":"Malicious Instructor Patrol","speed":1.15,"pathId":1461990,"formationSource":"database-solo","spawnMask":3,"waypoints":[[448.3246,27.56,-519.4214],[436.3176,27.56,-523.0394],[433.2456,27.5599,-531.1144],[418.4656,27.5599,-524.3624],[405.8896,27.5599,-519.632],[409.4816,27.56,-509.9637],[421.9146,27.56,-512.0998],[424.9676,27.56,-491.7815],[423.9956,27.56,-512.3245],[431.8396,27.56,-518.3657],[423.9956,27.56,-512.3245],[424.9676,27.56,-491.7815],[421.9146,27.56,-512.0998],[409.4816,27.56,-509.9637],[405.8896,27.5599,-519.632],[418.4656,27.5599,-524.3624],[433.2456,27.5599,-531.1144],[436.3176,27.56,-523.0394]],"members":[{"id":"member","entityId":"entry-18848","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146200","name":"Malicious Instructor Patrol","speed":1.15,"pathId":1462000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[431.6686,27.5599,-574.7937],[411.8076,27.5599,-575.6838],[396.8916,27.5599,-575.8973],[397.2976,27.5655,-566.0069],[398.1076,27.5598,-555.8036],[397.4246,27.5618,-544.1304],[404.7386,27.5602,-543.0625],[418.7516,27.5723,-545.1182],[428.2666,27.6233,-546.1935],[431.0396,27.586,-550.6403],[432.4456,27.5598,-567.9623]],"members":[{"id":"member","entityId":"entry-18848","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-146201","name":"Malicious Instructor Patrol","speed":1.15,"pathId":1462010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[439.8156,27.5599,-587.828],[433.8016,27.5599,-590.7431],[426.0306,27.5599,-593.477],[415.8936,27.5599,-597.5563],[405.8346,27.5599,-600.8696],[405.8356,27.5599,-611.8814],[412.9636,27.5599,-610.1614],[423.5906,27.5527,-608.3372],[432.1756,27.56,-604.5171],[438.9586,27.56,-600.5086],[445.5376,27.56,-598.5266]],"members":[{"id":"member","entityId":"entry-18848","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-146105","name":"Ambassador Hellmaw","position":[312.6246,27.6434,-516.637]},{"id":"creature-146103","name":"Blackheart the Inciter","position":[484.1586,32.1758,-560.6751]},{"id":"creature-146106","name":"Grandmaster Vorpil","position":[409.4976,36.6567,-785.2657]},{"id":"creature-146104","name":"Murmur","position":[313.8446,35.3521,-1018.9417]}],"objectiveOrder":[{"id":"creature-146105","name":"Ambassador Hellmaw","position":[312.6246,27.6434,-516.637]},{"id":"creature-146103","name":"Blackheart the Inciter","position":[484.1586,32.1758,-560.6751]},{"id":"creature-146106","name":"Grandmaster Vorpil","position":[409.4976,36.6567,-785.2657]},{"id":"creature-146104","name":"Murmur","position":[313.8446,35.3521,-1018.9417]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":22674,"id":182196,"map":555,"orientation":2.44346,"phaseMask":1,"position_x":-108.252,"position_y":-510.302,"position_z":21.4761,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.342021,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23803,"id":182940,"map":555,"orientation":-2.18166,"phaseMask":1,"position_x":-293.138,"position_y":-103.613,"position_z":8.07297,"rotation0":0,"rotation1":0,"rotation2":-0.88701,"rotation3":0.461749,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23804,"id":182940,"map":555,"orientation":1.74533,"phaseMask":1,"position_x":-287.754,"position_y":-103.78,"position_z":8.07297,"rotation0":0,"rotation1":0,"rotation2":0.766045,"rotation3":0.642787,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23805,"id":182940,"map":555,"orientation":-0.349066,"phaseMask":1,"position_x":-294.316,"position_y":24.135,"position_z":8.07302,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23806,"id":182940,"map":555,"orientation":-1.11701,"phaseMask":1,"position_x":-292.121,"position_y":26.8454,"position_z":8.073,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23807,"id":182940,"map":555,"orientation":-2.75762,"phaseMask":1,"position_x":-455.799,"position_y":-132.044,"position_z":12.8673,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190809,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23808,"id":182940,"map":555,"orientation":-1.64061,"phaseMask":1,"position_x":-334.225,"position_y":-229.809,"position_z":17.0929,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23809,"id":182940,"map":555,"orientation":1.29154,"phaseMask":1,"position_x":-457.049,"position_y":-200.928,"position_z":12.6891,"rotation0":0,"rotation1":0,"rotation2":0.601814,"rotation3":0.798637,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23810,"id":182940,"map":555,"orientation":1.72788,"phaseMask":1,"position_x":-415.633,"position_y":-185.431,"position_z":12.7878,"rotation0":0,"rotation1":0,"rotation2":0.760407,"rotation3":0.649446,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23811,"id":182940,"map":555,"orientation":-0.139626,"phaseMask":1,"position_x":-459.847,"position_y":-195.626,"position_z":12.6891,"rotation0":0,"rotation1":0,"rotation2":-0.0697563,"rotation3":0.997564,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23812,"id":182940,"map":555,"orientation":-1.6057,"phaseMask":1,"position_x":-293.961,"position_y":-229.878,"position_z":17.0907,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23813,"id":182940,"map":555,"orientation":-0.994838,"phaseMask":1,"position_x":-262.225,"position_y":-268.372,"position_z":12.6791,"rotation0":0,"rotation1":0,"rotation2":-0.477159,"rotation3":0.878817,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23814,"id":182940,"map":555,"orientation":-2.21657,"phaseMask":1,"position_x":-262.291,"position_y":-258.957,"position_z":12.6791,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23815,"id":182940,"map":555,"orientation":1.58825,"phaseMask":1,"position_x":-176.746,"position_y":-347.066,"position_z":17.0819,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23816,"id":182940,"map":555,"orientation":-0.366519,"phaseMask":1,"position_x":-181.608,"position_y":-349.376,"position_z":17.0827,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23817,"id":182940,"map":555,"orientation":3.01942,"phaseMask":1,"position_x":-135.64,"position_y":-425.098,"position_z":17.0779,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610484,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23818,"id":182940,"map":555,"orientation":-1.74533,"phaseMask":1,"position_x":-135.182,"position_y":-414.988,"position_z":17.0775,"rotation0":0,"rotation1":0,"rotation2":-0.766045,"rotation3":0.642787,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23819,"id":182940,"map":555,"orientation":0.802851,"phaseMask":1,"position_x":-177.72,"position_y":-405.339,"position_z":17.0805,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23820,"id":182940,"map":555,"orientation":-0.279253,"phaseMask":1,"position_x":-130.946,"position_y":-412.611,"position_z":17.0766,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23821,"id":182940,"map":555,"orientation":-0.279253,"phaseMask":1,"position_x":-172.104,"position_y":-396.989,"position_z":17.0807,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23822,"id":182940,"map":555,"orientation":0.331613,"phaseMask":1,"position_x":-177.772,"position_y":-435.924,"position_z":17.0777,"rotation0":0,"rotation1":0,"rotation2":0.165048,"rotation3":0.986286,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23823,"id":182940,"map":555,"orientation":-0.471239,"phaseMask":1,"position_x":-180.076,"position_y":-430.772,"position_z":17.0799,"rotation0":0,"rotation1":0,"rotation2":-0.233445,"rotation3":0.97237,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23824,"id":182940,"map":555,"orientation":-2.77507,"phaseMask":1,"position_x":-131.677,"position_y":-358.933,"position_z":17.0809,"rotation0":0,"rotation1":0,"rotation2":-0.983255,"rotation3":0.182237,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23825,"id":182940,"map":555,"orientation":0.05236,"phaseMask":1,"position_x":-176.454,"position_y":-387.174,"position_z":17.0811,"rotation0":0,"rotation1":0,"rotation2":0.026177,"rotation3":0.999657,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23826,"id":182940,"map":555,"orientation":-2.1293,"phaseMask":1,"position_x":-133.939,"position_y":-386.422,"position_z":17.0818,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23827,"id":182940,"map":555,"orientation":2.75762,"phaseMask":1,"position_x":-140.082,"position_y":-378.638,"position_z":17.0813,"rotation0":0,"rotation1":0,"rotation2":0.981627,"rotation3":0.190809,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23828,"id":182940,"map":555,"orientation":3.10669,"phaseMask":1,"position_x":-132.905,"position_y":-392.071,"position_z":17.0837,"rotation0":0,"rotation1":0,"rotation2":0.999848,"rotation3":0.0174505,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23829,"id":182940,"map":555,"orientation":-1.90241,"phaseMask":1,"position_x":-175.799,"position_y":-373.941,"position_z":17.0812,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23830,"id":182940,"map":555,"orientation":-0.628319,"phaseMask":1,"position_x":-135.84,"position_y":-367.102,"position_z":17.081,"rotation0":0,"rotation1":0,"rotation2":-0.309017,"rotation3":0.951056,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23831,"id":182940,"map":555,"orientation":-0.366519,"phaseMask":1,"position_x":-178.952,"position_y":-369.672,"position_z":17.0811,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23832,"id":182940,"map":555,"orientation":0.20944,"phaseMask":1,"position_x":-179.3,"position_y":-358.532,"position_z":17.0835,"rotation0":0,"rotation1":0,"rotation2":0.104529,"rotation3":0.994522,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23857,"id":182942,"map":555,"orientation":0.785398,"phaseMask":1,"position_x":-61.242,"position_y":40.5248,"position_z":0.276768,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23858,"id":182943,"map":555,"orientation":2.37365,"phaseMask":1,"position_x":-61.2422,"position_y":40.5618,"position_z":0.244354,"rotation0":0,"rotation1":0,"rotation2":0.927184,"rotation3":0.374606,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":23860,"id":182947,"map":555,"orientation":-2.93215,"phaseMask":1,"position_x":-267.122,"position_y":-263.761,"position_z":14.1797,"rotation0":0,"rotation1":0,"rotation2":-0.994522,"rotation3":0.10453,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":23952,"id":183036,"map":555,"orientation":-3.12414,"phaseMask":1,"position_x":-267.143,"position_y":-263.502,"position_z":12.6797,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.0087262,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":24142,"id":183295,"map":555,"orientation":-1.5708,"phaseMask":1,"position_x":-156.503,"position_y":-313.76,"position_z":17.0189,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":24143,"id":183296,"map":555,"orientation":0,"phaseMask":1,"position_x":-381.266,"position_y":-38.9899,"position_z":12.6214,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":3789,"guid":24396,"id":183516,"map":555,"orientation":-1.51844,"phaseMask":1,"position_x":-267.174,"position_y":-263.543,"position_z":12.6797,"rotation0":0,"rotation1":0,"rotation2":-0.688356,"rotation3":0.725373,"spawnMask":3,"spawntimesecs":43200,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105126,"id":181556,"map":555,"orientation":2.87979,"phaseMask":1,"position_x":-444.706,"position_y":-134.04,"position_z":9.70979,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105127,"id":181569,"map":555,"orientation":2.87979,"phaseMask":1,"position_x":-444.706,"position_y":-134.04,"position_z":9.70979,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105128,"id":181557,"map":555,"orientation":2.87979,"phaseMask":1,"position_x":-444.706,"position_y":-134.04,"position_z":9.70979,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105129,"id":181556,"map":555,"orientation":1.51844,"phaseMask":1,"position_x":-280.173,"position_y":-288.205,"position_z":15.7102,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105130,"id":181569,"map":555,"orientation":1.51844,"phaseMask":1,"position_x":-280.173,"position_y":-288.205,"position_z":15.7102,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105131,"id":181557,"map":555,"orientation":1.51844,"phaseMask":1,"position_x":-280.173,"position_y":-288.205,"position_z":15.7102,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105132,"id":181556,"map":555,"orientation":1.71042,"phaseMask":1,"position_x":-413.967,"position_y":-148.752,"position_z":12.0902,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105133,"id":181569,"map":555,"orientation":1.71042,"phaseMask":1,"position_x":-413.967,"position_y":-148.752,"position_z":12.0902,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105134,"id":181557,"map":555,"orientation":1.71042,"phaseMask":1,"position_x":-413.967,"position_y":-148.752,"position_z":12.0902,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105135,"id":181556,"map":555,"orientation":3.61284,"phaseMask":1,"position_x":-461.452,"position_y":-168.93,"position_z":21.1669,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233448,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105136,"id":181569,"map":555,"orientation":3.61284,"phaseMask":1,"position_x":-461.452,"position_y":-168.93,"position_z":21.1669,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233448,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105137,"id":181557,"map":555,"orientation":3.61284,"phaseMask":1,"position_x":-461.452,"position_y":-168.93,"position_z":21.1669,"rotation0":0,"rotation1":0,"rotation2":-0.972369,"rotation3":0.233448,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105138,"id":181556,"map":555,"orientation":3.927,"phaseMask":1,"position_x":-343.013,"position_y":-289.625,"position_z":18.6538,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105139,"id":181569,"map":555,"orientation":3.927,"phaseMask":1,"position_x":-343.013,"position_y":-289.625,"position_z":18.6538,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105140,"id":181557,"map":555,"orientation":3.927,"phaseMask":1,"position_x":-343.013,"position_y":-289.625,"position_z":18.6538,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3789,"guid":105141,"id":181556,"map":555,"orientation":-1.22173,"phaseMask":1,"position_x":-67.3891,"position_y":37.0473,"position_z":1.74518,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3789,"guid":105142,"id":181569,"map":555,"orientation":-1.22173,"phaseMask":1,"position_x":-67.3891,"position_y":37.0473,"position_z":1.74518,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3789,"guid":105143,"id":181557,"map":555,"orientation":-1.22173,"phaseMask":1,"position_x":-67.3891,"position_y":37.0473,"position_z":1.74518,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105144,"id":181556,"map":555,"orientation":5.75959,"phaseMask":1,"position_x":-352.19,"position_y":-60.7045,"position_z":17.7109,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105145,"id":181569,"map":555,"orientation":5.75959,"phaseMask":1,"position_x":-352.19,"position_y":-60.7045,"position_z":17.7109,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105146,"id":181557,"map":555,"orientation":5.75959,"phaseMask":1,"position_x":-352.19,"position_y":-60.7045,"position_z":17.7109,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105147,"id":181556,"map":555,"orientation":3.01941,"phaseMask":1,"position_x":-235.529,"position_y":17.4544,"position_z":14.6202,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105148,"id":181569,"map":555,"orientation":3.01941,"phaseMask":1,"position_x":-235.529,"position_y":17.4544,"position_z":14.6202,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105149,"id":181557,"map":555,"orientation":3.01941,"phaseMask":1,"position_x":-235.529,"position_y":17.4544,"position_z":14.6202,"rotation0":0,"rotation1":0,"rotation2":0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105150,"id":181556,"map":555,"orientation":1.83259,"phaseMask":1,"position_x":-362.041,"position_y":-24.6519,"position_z":16.788,"rotation0":0,"rotation1":0,"rotation2":0.793353,"rotation3":0.608762,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105151,"id":181569,"map":555,"orientation":1.83259,"phaseMask":1,"position_x":-362.041,"position_y":-24.6519,"position_z":16.788,"rotation0":0,"rotation1":0,"rotation2":0.793353,"rotation3":0.608762,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105152,"id":181557,"map":555,"orientation":1.83259,"phaseMask":1,"position_x":-362.041,"position_y":-24.6519,"position_z":16.788,"rotation0":0,"rotation1":0,"rotation2":0.793353,"rotation3":0.608762,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105153,"id":181556,"map":555,"orientation":0.750491,"phaseMask":1,"position_x":-234.062,"position_y":-97.6057,"position_z":15.5083,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105154,"id":181569,"map":555,"orientation":0.750491,"phaseMask":1,"position_x":-234.062,"position_y":-97.6057,"position_z":15.5083,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105155,"id":181557,"map":555,"orientation":0.750491,"phaseMask":1,"position_x":-234.062,"position_y":-97.6057,"position_z":15.5083,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105156,"id":181278,"map":555,"orientation":2.28638,"phaseMask":1,"position_x":-94.8835,"position_y":11.1668,"position_z":-1.12819,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105157,"id":181278,"map":555,"orientation":1.71042,"phaseMask":1,"position_x":-77.7761,"position_y":-44.3547,"position_z":-1.12827,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105158,"id":181278,"map":555,"orientation":3.17653,"phaseMask":1,"position_x":-34.7484,"position_y":-90.9532,"position_z":-1.1283,"rotation0":0,"rotation1":0,"rotation2":-0.999847,"rotation3":0.0174693,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105159,"id":181278,"map":555,"orientation":5.58505,"phaseMask":1,"position_x":-89.5791,"position_y":-84.7791,"position_z":-1.1283,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3789,"guid":105160,"id":181278,"map":555,"orientation":2.60054,"phaseMask":1,"position_x":-169.086,"position_y":5.50827,"position_z":8.07305,"rotation0":0,"rotation1":0,"rotation2":0.96363,"rotation3":0.267239,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105161,"id":181278,"map":555,"orientation":5.23599,"phaseMask":1,"position_x":-142.808,"position_y":4.1791,"position_z":8.07297,"rotation0":0,"rotation1":0,"rotation2":-0.5,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105162,"id":181278,"map":555,"orientation":0.506145,"phaseMask":1,"position_x":-145.144,"position_y":-71.5597,"position_z":8.06785,"rotation0":0,"rotation1":0,"rotation2":0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105163,"id":181278,"map":555,"orientation":4.57276,"phaseMask":1,"position_x":-161.71,"position_y":-14.5394,"position_z":8.0731,"rotation0":0,"rotation1":0,"rotation2":-0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105164,"id":181278,"map":555,"orientation":3.38594,"phaseMask":1,"position_x":-170.012,"position_y":-70.4493,"position_z":8.06785,"rotation0":0,"rotation1":0,"rotation2":-0.992546,"rotation3":0.12187,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105165,"id":181278,"map":555,"orientation":3.4034,"phaseMask":1,"position_x":-153.173,"position_y":-52.8355,"position_z":8.07305,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105166,"id":181278,"map":555,"orientation":5.88176,"phaseMask":1,"position_x":-267.485,"position_y":-79.3793,"position_z":8.07292,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105167,"id":181278,"map":555,"orientation":2.35619,"phaseMask":1,"position_x":-269.214,"position_y":-0.495546,"position_z":8.07293,"rotation0":0,"rotation1":0,"rotation2":0.92388,"rotation3":0.382683,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105168,"id":181278,"map":555,"orientation":0.0174525,"phaseMask":1,"position_x":-292.68,"position_y":19.5516,"position_z":8.07305,"rotation0":0,"rotation1":0,"rotation2":0.00872612,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105169,"id":181278,"map":555,"orientation":5.46288,"phaseMask":1,"position_x":-284.108,"position_y":-102.021,"position_z":8.07298,"rotation0":0,"rotation1":0,"rotation2":-0.398748,"rotation3":0.91706,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105170,"id":181278,"map":555,"orientation":2.26893,"phaseMask":1,"position_x":-411.712,"position_y":-203.084,"position_z":12.7605,"rotation0":0,"rotation1":0,"rotation2":0.906307,"rotation3":0.422619,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105171,"id":181278,"map":555,"orientation":4.45059,"phaseMask":1,"position_x":-442.793,"position_y":-123.579,"position_z":13.2556,"rotation0":0,"rotation1":0,"rotation2":-0.793353,"rotation3":0.608762,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105172,"id":181278,"map":555,"orientation":4.95674,"phaseMask":1,"position_x":-457.128,"position_y":-195.439,"position_z":12.6891,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3789,"guid":105173,"id":181278,"map":555,"orientation":2.28638,"phaseMask":1,"position_x":-286.216,"position_y":-240.003,"position_z":12.6827,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105174,"id":181278,"map":555,"orientation":4.4855,"phaseMask":1,"position_x":-329.27,"position_y":-303.466,"position_z":25.1034,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105175,"id":181278,"map":555,"orientation":5.11382,"phaseMask":1,"position_x":-298.782,"position_y":-304.974,"position_z":25.183,"rotation0":0,"rotation1":0,"rotation2":-0.551936,"rotation3":0.833886,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105176,"id":181278,"map":555,"orientation":4.59022,"phaseMask":1,"position_x":-326.735,"position_y":-244.62,"position_z":12.6846,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105177,"id":181278,"map":555,"orientation":2.82743,"phaseMask":1,"position_x":-139.013,"position_y":-396.985,"position_z":17.08,"rotation0":0,"rotation1":0,"rotation2":0.987688,"rotation3":0.156436,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105178,"id":181278,"map":555,"orientation":5.14872,"phaseMask":1,"position_x":-170.229,"position_y":-386.925,"position_z":17.0808,"rotation0":0,"rotation1":0,"rotation2":-0.537299,"rotation3":0.843392,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105179,"id":181278,"map":555,"orientation":4.64258,"phaseMask":1,"position_x":-170.759,"position_y":-350.168,"position_z":17.0826,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105180,"id":181278,"map":555,"orientation":3.68265,"phaseMask":1,"position_x":-137.353,"position_y":-406.701,"position_z":17.08,"rotation0":0,"rotation1":0,"rotation2":-0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105181,"id":181278,"map":555,"orientation":0.087266,"phaseMask":1,"position_x":-139.072,"position_y":-443.655,"position_z":17.0795,"rotation0":0,"rotation1":0,"rotation2":0.0436192,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3789,"guid":105182,"id":181278,"map":555,"orientation":2.28638,"phaseMask":1,"position_x":-174.217,"position_y":-435.155,"position_z":17.0785,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3789},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150028,"id":184196,"map":555,"orientation":3.1588,"phaseMask":1,"position_x":7.309,"position_y":-0.098,"position_z":-1.128,"rotation0":0,"rotation1":0,"rotation2":0.999963,"rotation3":-0.00860351,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150029,"id":184195,"map":555,"orientation":3.1588,"phaseMask":1,"position_x":7.309,"position_y":-0.098,"position_z":-1.128,"rotation0":0,"rotation1":0,"rotation2":0.999963,"rotation3":-0.00860351,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/AuchindounShadow":"e1d87dc8d502bd510944411b84e83ad2bcd44959a78e038a6ce5570ce27901f0","patch/World/maps/AuchindounShadow":"919c3ed7332c72df31ddfa1b67ec85c1b9c188cf44c2c5ddfae6144acca40beb"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/shadow-labyrinth/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["22/22 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"sethekk-halls","title":"Auchindoun: Sethekk Halls","mapId":556,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Auchindoun: Sethekk Halls","theme":"Instanced dungeon","summary":"Fight through Auchindoun: Sethekk Halls, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Auchindoun: Sethekk Halls...","unchartedAreaName":"Uncharted Auchindoun: Sethekk Halls","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":371.3998},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/556-auchindoundemon/visual.glb","checksum":"b6e0650c9bbc25981708d5bcdff741332a8459371053edc52476bf400c0e07a0","size":3493032,"triangleCount":98724}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/556-auchindoundemon/collision.glb","checksum":"c32469a3f686597f16e8e4b6105162fe3ab57f923a4858d2977e297df744db3f","size":776864,"triangleCount":85131}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/556-auchindoundemon/navigation.glb","checksum":"2cb2e0ac415ecdd78a602b1686af5d3d25d3803145aff71e60a3a6ef06454f29","size":125684,"triangleCount":9052}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-213.1456,6.1807,240.0937],"max":[302.6875,81.4304,679.0255]},"entrance":{"name":"Auchindoun: Sethekk Halls Entrance","footPosition":[-72.7111,26.8022,290.0244],"forward":[0.9999062865207841,0,-0.013690075829435894],"yaw":1.584486830288576},"areas":[{"id":"entrance","name":"Auchindoun: Sethekk Halls Entrance","center":[-72.7111,26.8022,290.0244],"radius":35},{"id":"area-darkweaver-syth","name":"Darkweaver Syth's Encounter","center":[67.4348,28.5647,463.6745],"radius":42},{"id":"area-talon-king-ikiss","name":"Talon King Ikiss's Encounter","center":[-122.1149,51.9481,577.0775],"radius":42}],"entities":{"entry-18318":{"id":"entry-18318","kind":"mob","name":"Sethekk Initiate","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-33961","name":"Spell Reflection","spellId":33961,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4141,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-33961","durationMs":8000,"magnitude":0.15}},{"id":"spell-16145","name":"Sunder Armor","spellId":16145,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4141,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20572-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5904,"markerRadius":1.9467}}},"entry-18319":{"id":"entry-18319","kind":"mob","name":"Time-Lost Scryer","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-17138","name":"Flash Heal","spellId":17138,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4166,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-12160","name":"Rejuvenation","spellId":12160,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":4166,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20682-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5417,"markerRadius":1.9467}}},"entry-18320":{"id":"entry-18320","kind":"mob","name":"Time-Lost Shadowmage","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-32682","name":"Curse of the Dark Talon","spellId":32682,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5384,"damageMultiplier":1.12},{"id":"spell-32675","name":"Shadow Missiles","spellId":32675,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5384,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20683-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0991,"labelHeight":4.6983,"markerRadius":2.0138}}},"entry-18321":{"id":"entry-18321","kind":"mob","name":"Sethekk Talon Lord","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-32674","name":"Avenger's Shield","spellId":32674,"delivery":"area","target":"self","school":"holy","animation":"cast","range":0,"cooldownMs":6713,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-32674","durationMs":8000,"magnitude":0.15}},{"id":"spell-32654","name":"Talon of Justice","spellId":32654,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6713,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"raptor","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20598-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1156,"labelHeight":5.5401,"markerRadius":2.3494}}},"entry-18322":{"id":"entry-18322","kind":"mob","name":"Sethekk Ravenguard","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-40423","name":"Bloodthirst","spellId":40423,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7354,"damageMultiplier":1.12},{"id":"spell-32651","name":"Howling Screech","spellId":32651,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7354,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20573-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1024,"labelHeight":4.907,"markerRadius":2.0809}}},"entry-18323":{"id":"entry-18323","kind":"mob","name":"Sethekk Guard","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-33967","name":"Thunderclap","spellId":33967,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6581,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/bcc14a8b2e12bb78aab11fcecfd6a0469d4df1fcf8167e779a7fc9ccf4d1ae4f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0991,"labelHeight":4.7487,"markerRadius":2.0138}}},"entry-18325":{"id":"entry-18325","kind":"mob","name":"Sethekk Prophet","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-27641","name":"Fear","spellId":27641,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5340,"damageMultiplier":0,"radius":8,"effect":{"kind":"control","mechanic":"fear","durationMs":3000}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20572-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5904,"markerRadius":1.9467}}},"entry-18326":{"id":"entry-18326","kind":"mob","name":"Sethekk Shaman","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-15501","name":"Earth Shock","spellId":15501,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6691,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-17865-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5417,"markerRadius":1.9467}}},"entry-18327":{"id":"entry-18327","kind":"mob","name":"Time-Lost Controller","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-35013","name":"Shrink","spellId":35013,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4621,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20682-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5417,"markerRadius":1.9467}}},"entry-18328":{"id":"entry-18328","kind":"mob","name":"Sethekk Oracle","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-32129","name":"Faerie Fire","spellId":32129,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7093,"damageMultiplier":1.12},{"id":"spell-32690","name":"Arcane Lightning","spellId":32690,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":7093,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-17865-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0958,"labelHeight":4.5417,"markerRadius":1.9467}}},"entry-18472":{"id":"entry-18472","kind":"boss","name":"Darkweaver Syth","title":"Dungeon Boss","hasLoot":true,"combat":{"level":68,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15659","name":"Chain Lightning","spellId":15659,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4530,"damageMultiplier":1.35},{"id":"spell-33534","name":"Arcane Shock","spellId":33534,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4530,"damageMultiplier":1.35},{"id":"spell-15039","name":"Flame Shock","spellId":15039,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4530,"damageMultiplier":1.35},{"id":"spell-33620","name":"Shadow Shock","spellId":33620,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4530,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20599-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1255,"labelHeight":5.9512,"markerRadius":2.5508}}},"entry-18473":{"id":"entry-18473","kind":"boss","name":"Talon King Ikiss","title":"Dungeon Boss","hasLoot":true,"combat":{"level":68,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":6255,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"raptor","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-18636-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1321,"labelHeight":6.2644,"markerRadius":2.685}}},"entry-19428":{"id":"entry-19428","kind":"mob","name":"Cobalt Serpent","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-38133","name":"Lightning Breath","spellId":38133,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":4504,"damageMultiplier":0.62,"radius":8},{"id":"spell-38110","name":"Wing Buffet","spellId":38110,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4504,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"serpent","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-19788-animated.glb","rotationY":-1.5707963267948966,"groundOffset":7.3093,"labelHeight":12.346,"markerRadius":3.0603}}},"entry-19429":{"id":"entry-19429","kind":"mob","name":"Avian Darkhawk","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20725-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1711,"labelHeight":1.7135,"markerRadius":2.7082}}},"entry-21891":{"id":"entry-21891","kind":"mob","name":"Avian Ripper","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20730-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1027,"labelHeight":1.1681,"markerRadius":1.6249}}},"entry-21904":{"id":"entry-21904","kind":"mob","name":"Avian Warhawk","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/sethekk-halls/creatures/display-20729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2139,"labelHeight":2.0543,"markerRadius":3.3852}}}},"staticSpawns":[{"id":"creature-138633","entityId":"entry-18318","position":[-11.6296,26.8892,457.8965],"yaw":-3.40339,"spawnMask":3},{"id":"creature-138634","entityId":"entry-18318","position":[3.2736,26.8865,395.2535],"yaw":-2.32129,"spawnMask":3},{"id":"creature-138635","entityId":"entry-18318","position":[-8.2597,26.8865,373.8602],"yaw":-2.82743,"spawnMask":3},{"id":"creature-138636","entityId":"entry-18318","position":[-153.2485,27.146,406.1645],"yaw":-5.5676,"spawnMask":3},{"id":"creature-138637","entityId":"entry-18318","position":[-128.3166,27.0301,389.1097],"yaw":-3.10669,"spawnMask":3},{"id":"creature-138638","entityId":"entry-18318","position":[-89.3197,27.3027,392.5925],"yaw":-0.959931,"spawnMask":3},{"id":"creature-138639","entityId":"entry-18318","position":[-113.9181,27.0301,389.4478],"yaw":-6.26573,"spawnMask":3},{"id":"creature-138640","entityId":"entry-18318","position":[-135.8843,27.0234,373.5225],"yaw":-4.32842,"spawnMask":3},{"id":"creature-138642","entityId":"entry-18318","position":[-97.8648,26.8445,371.8131],"yaw":-5.51524,"spawnMask":3},{"id":"creature-138643","entityId":"entry-18318","position":[-105.053,27.0825,366.8817],"yaw":-2.77507,"spawnMask":3},{"id":"creature-138644","entityId":"entry-18319","position":[-17.248,53.9989,601.7835],"yaw":-3.87463,"spawnMask":3},{"id":"creature-138645","entityId":"entry-18319","position":[23.9378,53.4046,599.9995],"yaw":-5.81195,"spawnMask":3},{"id":"creature-138646","entityId":"entry-18319","position":[133.5528,53.5155,634.0255],"yaw":-5.00909,"spawnMask":3},{"id":"creature-138647","entityId":"entry-18319","position":[163.5728,54.0372,626.2815],"yaw":-5.21853,"spawnMask":3},{"id":"creature-138648","entityId":"entry-18319","position":[93.6888,53.501,572.4035],"yaw":-3.07178,"spawnMask":3},{"id":"creature-138649","entityId":"entry-18319","position":[191.0958,26.9132,474.4035],"yaw":-0.610865,"spawnMask":3},{"id":"creature-138650","entityId":"entry-18319","position":[188.7728,26.9132,480.1875],"yaw":-5.68977,"spawnMask":3},{"id":"creature-138651","entityId":"entry-18319","position":[164.5228,26.9416,446.1095],"yaw":-1.78024,"spawnMask":3},{"id":"creature-138652","entityId":"entry-18320","position":[4.6658,53.6873,563.1755],"yaw":-3.82227,"spawnMask":3},{"id":"creature-138653","entityId":"entry-18320","position":[-10.879,53.912,604.7405],"yaw":-4.57276,"spawnMask":3},{"id":"creature-138654","entityId":"entry-18320","position":[-18.4563,53.7954,570.1715],"yaw":-1.72788,"spawnMask":3},{"id":"creature-138655","entityId":"entry-18320","position":[-67.2589,53.6099,571.5965],"yaw":-2.79253,"spawnMask":3},{"id":"creature-138656","entityId":"entry-18320","position":[16.3508,53.3537,605.6585],"yaw":-4.45059,"spawnMask":3},{"id":"creature-138657","entityId":"entry-18320","position":[36.6088,53.6722,558.6055],"yaw":-2.47837,"spawnMask":3},{"id":"creature-138661","entityId":"entry-18321","position":[-67.2617,53.61,582.5205],"yaw":-3.38594,"spawnMask":3},{"id":"creature-138665","entityId":"entry-18322","position":[63.7448,53.6101,581.4015],"yaw":-3.78736,"spawnMask":3},{"id":"creature-138666","entityId":"entry-18322","position":[64.2738,53.6102,573.1635],"yaw":-2.77507,"spawnMask":3},{"id":"creature-138667","entityId":"entry-18322","position":[168.7698,53.6185,502.3025],"yaw":-4.76475,"spawnMask":3},{"id":"creature-138668","entityId":"entry-18322","position":[162.0008,53.6974,501.9355],"yaw":-4.53786,"spawnMask":3},{"id":"creature-138669","entityId":"entry-18322","position":[128.0258,26.8904,466.5545],"yaw":-6.07375,"spawnMask":3},{"id":"creature-138670","entityId":"entry-18322","position":[128.1488,26.8903,459.6295],"yaw":-0.15708,"spawnMask":3},{"id":"creature-138671","entityId":"entry-18323","position":[25.0368,26.8892,467.7035],"yaw":-6.16101,"spawnMask":3},{"id":"creature-138672","entityId":"entry-18323","position":[25.0888,26.8892,460.1785],"yaw":-0.488692,"spawnMask":3},{"id":"creature-138673","entityId":"entry-18323","position":[-2.1745,26.8865,420.9365],"yaw":-4.92183,"spawnMask":3},{"id":"creature-138674","entityId":"entry-18323","position":[-10.9398,26.8865,421.2535],"yaw":-4.85202,"spawnMask":3},{"id":"creature-138675","entityId":"entry-18323","position":[-125.1602,26.9698,420.6035],"yaw":-4.83456,"spawnMask":3},{"id":"creature-138676","entityId":"entry-18323","position":[-119.3792,26.9822,420.2645],"yaw":-5.11381,"spawnMask":3},{"id":"creature-138677","entityId":"entry-18323","position":[-168.1115,26.982,394.4385],"yaw":-3.56047,"spawnMask":3},{"id":"creature-138678","entityId":"entry-18323","position":[-168.1456,26.8865,387.0514],"yaw":-2.94961,"spawnMask":3},{"id":"creature-138679","entityId":"entry-18323","position":[-73.6935,26.8865,393.5955],"yaw":-6.17847,"spawnMask":3},{"id":"creature-138682","entityId":"entry-18323","position":[-73.8385,26.8865,387.439],"yaw":-0.418879,"spawnMask":3},{"id":"creature-138683","entityId":"entry-18323","position":[-117.4978,26.8868,343.065],"yaw":-4.93928,"spawnMask":3},{"id":"creature-138684","entityId":"entry-18323","position":[-124.3753,26.8868,342.47],"yaw":-4.34587,"spawnMask":3},{"id":"creature-138685","entityId":"entry-18325","position":[-17.8045,53.42,595.0275],"yaw":-3.1765,"spawnMask":3},{"id":"creature-138686","entityId":"entry-18325","position":[-27.869,53.7425,570.2925],"yaw":-2.63545,"spawnMask":3},{"id":"creature-138687","entityId":"entry-18325","position":[-25.6181,53.7751,576.0315],"yaw":-4.31096,"spawnMask":3},{"id":"creature-138688","entityId":"entry-18325","position":[-76.2273,53.5713,580.0235],"yaw":-3.21141,"spawnMask":3},{"id":"creature-138689","entityId":"entry-18325","position":[24.0718,53.3638,592.0305],"yaw":-2.0944,"spawnMask":3},{"id":"creature-138690","entityId":"entry-18325","position":[126.4498,53.5155,626.1715],"yaw":-2.37365,"spawnMask":3},{"id":"creature-138691","entityId":"entry-18325","position":[153.2248,54.2342,620.6355],"yaw":-3.1765,"spawnMask":3},{"id":"creature-138692","entityId":"entry-18325","position":[101.4118,53.5394,567.0835],"yaw":-1.81514,"spawnMask":3},{"id":"creature-138693","entityId":"entry-18325","position":[108.0438,53.4616,571.3655],"yaw":-0.994838,"spawnMask":3},{"id":"creature-138694","entityId":"entry-18325","position":[46.3788,54.1272,560.1605],"yaw":-1.02974,"spawnMask":3},{"id":"creature-138695","entityId":"entry-18325","position":[12.5755,53.7144,552.8275],"yaw":-2.11185,"spawnMask":3},{"id":"creature-138696","entityId":"entry-18326","position":[-75.5247,53.5757,574.7225],"yaw":-3.00197,"spawnMask":3},{"id":"creature-138697","entityId":"entry-18326","position":[125.0168,53.5155,633.8425],"yaw":-3.71755,"spawnMask":3},{"id":"creature-138698","entityId":"entry-18326","position":[157.2038,54.1741,626.0345],"yaw":-4.18879,"spawnMask":3},{"id":"creature-138699","entityId":"entry-18326","position":[41.1708,53.9673,556.2595],"yaw":-2.35619,"spawnMask":3},{"id":"creature-138700","entityId":"entry-18326","position":[6.912,53.6873,556.7585],"yaw":-3.00197,"spawnMask":3},{"id":"creature-138701","entityId":"entry-18327","position":[168.8258,26.9473,449.9915],"yaw":-0.383972,"spawnMask":3},{"id":"creature-138702","entityId":"entry-18327","position":[-8.7968,26.8888,463.1295],"yaw":-4.17134,"spawnMask":3},{"id":"creature-138703","entityId":"entry-18327","position":[6.468,26.8865,403.6895],"yaw":-5.8294,"spawnMask":3},{"id":"creature-138704","entityId":"entry-18327","position":[-0.8232,26.8865,373.8514],"yaw":-0.785398,"spawnMask":3},{"id":"creature-138705","entityId":"entry-18327","position":[-19.3756,26.8865,398.0925],"yaw":-1.55334,"spawnMask":3},{"id":"creature-138706","entityId":"entry-18327","position":[-159.2989,27.2082,402.4545],"yaw":-3.21141,"spawnMask":3},{"id":"creature-138707","entityId":"entry-18327","position":[-121.0282,27.0301,397.0335],"yaw":-4.76475,"spawnMask":3},{"id":"creature-138708","entityId":"entry-18327","position":[-94.3013,27.3027,396.2615],"yaw":-4.45059,"spawnMask":3},{"id":"creature-138709","entityId":"entry-18327","position":[-99.1281,27.3942,363.8096],"yaw":-1.0821,"spawnMask":3},{"id":"creature-138710","entityId":"entry-18327","position":[-132.9273,26.7876,368.9063],"yaw":-1.29154,"spawnMask":3},{"id":"creature-138711","entityId":"entry-18328","position":[181.8008,26.9159,481.9445],"yaw":-5.41052,"spawnMask":3},{"id":"creature-138712","entityId":"entry-18328","position":[168.0088,26.9488,454.9245],"yaw":-0.0349066,"spawnMask":3},{"id":"creature-138713","entityId":"entry-18328","position":[-1.9571,26.889,463.7675],"yaw":-5.81195,"spawnMask":3},{"id":"creature-138714","entityId":"entry-18328","position":[8.8254,26.886,397.4745],"yaw":-0.785398,"spawnMask":3},{"id":"creature-138715","entityId":"entry-18328","position":[-1.2047,26.8865,379.7459],"yaw":-5.68977,"spawnMask":3},{"id":"creature-138716","entityId":"entry-18328","position":[-17.0089,26.8865,404.7815],"yaw":-5.68977,"spawnMask":3},{"id":"creature-138717","entityId":"entry-18328","position":[-25.5267,26.8865,400.7995],"yaw":-3.78736,"spawnMask":3},{"id":"creature-138718","entityId":"entry-18472","position":[67.4348,28.5647,463.6745],"yaw":-0.0698132,"spawnMask":3},{"id":"creature-138719","entityId":"entry-18473","position":[-122.1149,51.9481,577.0775],"yaw":-3.97935,"spawnMask":3},{"id":"creature-138731","entityId":"entry-19429","position":[-112.0228,26.8675,299.5201],"yaw":-1.7514,"spawnMask":3},{"id":"creature-138732","entityId":"entry-21891","position":[111.1618,54.1705,632.9435],"yaw":-5.36097,"spawnMask":3},{"id":"creature-138733","entityId":"entry-21891","position":[102.0578,54.377,629.3415],"yaw":-2.28289,"spawnMask":3},{"id":"creature-138734","entityId":"entry-21891","position":[106.9758,52.6251,624.3095],"yaw":-0.565755,"spawnMask":3},{"id":"creature-138735","entityId":"entry-21891","position":[112.1778,52.8357,617.7225],"yaw":-2.98859,"spawnMask":3},{"id":"creature-138736","entityId":"entry-21891","position":[115.2108,52.115,623.0785],"yaw":-4.30592,"spawnMask":3},{"id":"creature-138737","entityId":"entry-21891","position":[131.7348,56.9592,609.5345],"yaw":-4.28157,"spawnMask":3},{"id":"creature-138738","entityId":"entry-21891","position":[137.5588,58.8853,605.6645],"yaw":-2.14424,"spawnMask":3},{"id":"creature-138739","entityId":"entry-21891","position":[132.1268,59.7633,601.9135],"yaw":-3.7415,"spawnMask":3},{"id":"creature-138740","entityId":"entry-21891","position":[126.1318,57.1348,601.2425],"yaw":-4.02625,"spawnMask":3},{"id":"creature-138741","entityId":"entry-21891","position":[136.5208,61.4304,603.5495],"yaw":-4.24644,"spawnMask":3},{"id":"creature-138742","entityId":"entry-21891","position":[179.7138,53.7186,578.9855],"yaw":-2.98709,"spawnMask":3},{"id":"creature-138743","entityId":"entry-21891","position":[162.8378,53.8789,584.6265],"yaw":-0.721867,"spawnMask":3},{"id":"creature-138744","entityId":"entry-21891","position":[171.2008,53.6704,586.1745],"yaw":-0.0665515,"spawnMask":3},{"id":"creature-138745","entityId":"entry-21891","position":[168.4748,54.6637,575.0095],"yaw":-0.729114,"spawnMask":3},{"id":"creature-138746","entityId":"entry-21891","position":[158.3078,53.7322,577.5965],"yaw":-3.10773,"spawnMask":3},{"id":"creature-138747","entityId":"entry-21891","position":[164.0188,54.1625,572.0205],"yaw":-4.25565,"spawnMask":3},{"id":"creature-138748","entityId":"entry-21891","position":[172.8268,54.2462,572.5365],"yaw":-4.25292,"spawnMask":3},{"id":"creature-138749","entityId":"entry-21891","position":[177.1288,53.8988,566.7415],"yaw":-4.26671,"spawnMask":3},{"id":"creature-138750","entityId":"entry-21891","position":[167.8428,54.1802,567.8385],"yaw":-0.0874787,"spawnMask":3},{"id":"creature-138751","entityId":"entry-21891","position":[160.7648,53.6704,566.3475],"yaw":-2.17905,"spawnMask":3},{"id":"creature-138752","entityId":"entry-21891","position":[157.5408,28.0328,473.9205],"yaw":-6.23851,"spawnMask":3},{"id":"creature-138753","entityId":"entry-21891","position":[154.0278,30.1588,479.5395],"yaw":-1.33875,"spawnMask":3},{"id":"creature-138754","entityId":"entry-21891","position":[148.2788,33.4772,484.6135],"yaw":-0.87798,"spawnMask":3},{"id":"creature-138755","entityId":"entry-21891","position":[149.2358,29.8737,473.5995],"yaw":-2.55115,"spawnMask":3},{"id":"creature-138756","entityId":"entry-21891","position":[145.4718,31.4095,477.4835],"yaw":-3.52858,"spawnMask":3}],"roamingPacks":[{"id":"patrol-138631","name":"Sethekk Initiate Patrol","speed":1.15,"pathId":1386310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[187.5538,26.8299,469.8805],[180.8688,26.8353,473.0305],[178.5618,26.8388,478.8325],[180.8688,26.8353,473.0305]],"members":[{"id":"member","entityId":"entry-18318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138632","name":"Sethekk Initiate Patrol","speed":1.15,"pathId":1386320,"formationSource":"database-solo","spawnMask":3,"waypoints":[[167.9418,26.841,460.4815],[161.8378,26.7077,458.3735],[161.1478,26.6719,450.7185],[161.8378,26.7077,458.3735]],"members":[{"id":"member","entityId":"entry-18318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138641","name":"Sethekk Initiate Patrol","speed":1.15,"pathId":1386410,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-114.1306,26.8043,300.7946],[-118.0595,26.804,311.0115],[-116.3549,26.8035,321.0027],[-117.0408,26.8035,330.3104],[-122.7066,26.8035,327.2187],[-124.408,26.8035,315.1791],[-124.6102,26.801,299.1478],[-116.6958,26.8031,290.7808]],"members":[{"id":"member","entityId":"entry-18318","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138658","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[4.6451,53.5036,568.0415],[9.6876,53.4754,565.8665],[10.84,53.6039,559.8585],[9.6876,53.4754,565.8665]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138659","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-14.7534,53.0162,591.2445],[-11.1381,53.2216,598.9865],[-7.0346,53.3726,602.3665],[-11.1271,53.2236,599.0105]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138660","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386600,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-32.6855,53.5449,572.3105],[-28.0407,53.6722,579.9425],[-21.0281,53.6855,579.3205],[-14.4611,53.7121,573.7865],[-21.0281,53.6855,579.3205],[-28.0407,53.6722,579.9425]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138662","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386620,"formationSource":"database-solo","spawnMask":3,"waypoints":[[26.4768,53.3127,587.6385],[18.1897,53.2792,589.4955],[18.4029,52.698,599.6245],[18.1897,53.2792,589.4955]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138663","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386630,"formationSource":"database-solo","spawnMask":3,"waypoints":[[138.2668,53.5546,631.5015],[135.2298,53.4992,624.4575],[127.6678,53.4603,619.0145],[135.2298,53.4992,624.4575]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138664","name":"Sethekk Talon Lord Patrol","speed":1.15,"pathId":1386640,"formationSource":"database-solo","spawnMask":3,"waypoints":[[109.2768,53.3002,576.7895],[101.5538,53.267,580.0905],[90.0708,53.5153,577.3225],[101.5538,53.267,580.0905]],"members":[{"id":"member","entityId":"entry-18321","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138680","name":"Sethekk Guard Patrol","speed":1.15,"pathId":1386800,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-117.5794,26.9708,311.2271],[-117.4517,26.8874,309.6469],[-117.324,26.8039,308.0668],[-116.7972,26.804,301.5474],[-116.25,26.8034,294.7768],[-115.8747,26.8027,290.133],[-115.4689,26.8026,285.1118],[-115.4689,26.8026,285.1118],[-107.7585,26.8015,285.0937]],"members":[{"id":"member","entityId":"entry-18323","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138681","name":"Sethekk Guard Patrol","speed":1.15,"pathId":1386810,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-114.5338,26.9702,319.2982],[-114.5337,26.8872,310.4228],[-114.5336,26.8042,301.5474],[-114.5335,26.804,296.6467],[-114.5335,26.804,296.6467],[-107.0785,26.8023,295.4644]],"members":[{"id":"member","entityId":"entry-18323","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138721","name":"Cobalt Serpent Patrol","speed":1.15,"pathId":1387210,"formationSource":"database-solo","spawnMask":3,"waypoints":[[200.1258,53.518,495.7665],[177.3918,53.6114,494.5745],[148.7598,54.1421,495.8235],[136.9688,53.5187,490.5915],[135.1348,53.5545,458.5805],[137.5038,53.6722,440.4445],[144.4938,53.5603,431.8685],[164.6548,53.5631,431.8175],[182.4618,40.3587,431.4505],[191.6238,40.3752,434.2995],[194.4088,40.319,443.0495],[195.2678,26.853,460.9105],[194.4138,40.3151,443.1435],[191.6238,40.3752,434.2995],[182.4618,40.3587,431.4505],[164.6548,53.5631,431.8175],[144.4938,53.5603,431.8685],[137.5038,53.6722,440.4445],[135.1348,53.5545,458.5805],[136.9688,53.5187,490.5915],[148.7598,54.1421,495.8235],[177.3918,53.6114,494.5745]],"members":[{"id":"member","entityId":"entry-19428","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138722","name":"Cobalt Serpent Patrol","speed":1.15,"pathId":1387220,"formationSource":"database-solo","spawnMask":3,"waypoints":[[63.7318,53.5284,577.0065],[85.1888,53.5274,580.7045],[99.7398,53.4038,585.6095],[112.9858,53.5265,600.4905],[129.6388,53.4452,621.2655],[140.5878,53.7603,623.2305],[154.7188,53.5694,607.9445],[165.1818,53.5266,590.9625],[154.7188,53.5694,607.9445],[140.5878,53.7603,623.2305],[129.6388,53.4452,621.2655],[112.9858,53.5265,600.4905],[99.7398,53.4038,585.6095],[85.1888,53.5274,580.7045]],"members":[{"id":"member","entityId":"entry-19428","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138723","name":"Cobalt Serpent Patrol","speed":1.15,"pathId":1387230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[195.2678,26.853,460.9105],[194.4138,40.3151,443.1435],[191.6238,40.3752,434.2995],[182.4618,40.3587,431.4505],[164.6548,53.5631,431.8175],[144.4938,53.5603,431.8685],[137.5038,53.6722,440.4445],[135.1348,53.5545,458.5805],[136.9688,53.5187,490.5915],[148.7598,54.1421,495.8235],[177.3918,53.6114,494.5745],[200.1258,53.518,495.7665],[177.3918,53.6114,494.5745],[148.7598,54.1421,495.8235],[136.9688,53.5187,490.5915],[135.1348,53.5545,458.5805],[137.5038,53.6722,440.4445],[144.4938,53.5603,431.8685],[164.6548,53.5631,431.8175],[182.4618,40.3587,431.4505],[191.6238,40.3752,434.2995],[194.4088,40.319,443.0495]],"members":[{"id":"member","entityId":"entry-19428","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138724","name":"Cobalt Serpent Patrol","speed":1.15,"pathId":1387240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[151.0628,26.8442,442.0925],[149.2388,26.597,457.9805],[162.3418,26.7691,461.9395],[176.3788,26.8343,470.5535],[172.6398,26.8398,479.6565],[166.8128,26.8604,489.0045],[172.6398,26.8398,479.6565],[176.3788,26.8343,470.5535],[162.3418,26.7691,461.9395],[149.2388,26.597,457.9805]],"members":[{"id":"member","entityId":"entry-19428","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138725","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-6.7251,26.8026,444.3645],[-11.4416,26.8025,435.9065],[-6.7401,26.8029,430.5005],[-3.3469,26.8025,436.0925],[-6.1277,26.8026,444.2165],[-2.7847,26.8034,455.4255],[7.3723,26.8064,461.7675],[32.5128,26.8068,463.9835],[40.6508,26.7601,458.1445],[38.9108,26.8068,468.1385],[32.5618,26.7948,464.7495],[22.9658,26.8058,464.5375],[8.5053,26.8059,466.9375],[-3.6711,26.8035,456.4375]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138726","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-2.5416,27.2627,396.0725],[-2.2354,26.8032,400.6195],[-0.9524,26.8039,405.9365],[2.8201,26.8029,409.3605],[7.9295,26.8022,408.8865],[11.7632,26.8032,402.9005],[11.6002,26.8031,395.4085],[6.9513,26.8032,390.7545],[1.1099,26.8032,391.1425]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138727","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387270,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-8.001,26.8032,401.8715],[-1.8208,26.8032,397.9845],[1.6501,26.8032,390.0691],[-0.2743,26.8032,384.9905],[-5.1524,26.8032,380.8968],[-12.3803,26.8032,382.674],[-17.8114,26.8178,387.0845],[-16.263,26.8032,394.7455]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138728","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-161.3304,27.1578,408.3185],[-163.3839,27.0658,401.9575],[-157.6666,27.0343,398.9495],[-152.6035,27.0954,401.8135],[-150.249,26.7945,405.2115],[-151.1848,26.8976,409.8415],[-157.0911,27.1578,410.3805]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138729","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387290,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-96.6004,27.2193,392.4185],[-98.3728,27.1869,396.0555],[-96.6873,27.2107,400.9525],[-90.6943,27.1722,404.2575],[-85.1459,27.0739,398.1945],[-86.7018,27.1353,389.5645],[-93.655,27.1925,389.3909]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138730","name":"Avian Darkhawk Patrol","speed":1.15,"pathId":1387300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-138.9336,26.9123,376.5833],[-138.9964,26.9156,373.0111],[-137.187,26.9057,368.2648],[-130.7981,26.455,364.9485],[-127.6908,26.1807,368.1261],[-131.4111,26.9468,374.6876],[-136.1341,26.9312,377.7555]],"members":[{"id":"member","entityId":"entry-19429","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138757","name":"Avian Warhawk Patrol","speed":1.15,"pathId":1387570,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-62.4777,53.5271,583.2135],[-61.782,53.5276,570.0575]],"members":[{"id":"member","entityId":"entry-21904","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138758","name":"Avian Warhawk Patrol","speed":1.15,"pathId":1387580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[165.7288,53.8656,619.4795],[158.0308,53.7836,614.2985],[148.9188,53.9532,614.3085],[158.0308,53.7836,614.2985]],"members":[{"id":"member","entityId":"entry-21904","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-138759","name":"Avian Warhawk Patrol","speed":1.15,"pathId":1387590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[46.5388,54.2397,564.2465],[39.5958,53.9544,565.2205],[33.2498,52.9534,561.2615],[39.5958,53.9544,565.2205]],"members":[{"id":"member","entityId":"entry-21904","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-138718","name":"Darkweaver Syth","position":[67.4348,28.5647,463.6745]},{"id":"creature-138719","name":"Talon King Ikiss","position":[-122.1149,51.9481,577.0775]}],"objectiveOrder":[{"id":"creature-138718","name":"Darkweaver Syth","position":[67.4348,28.5647,463.6745]},{"id":"creature-138719","name":"Talon King Ikiss","position":[-122.1149,51.9481,577.0775]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3791,"guid":7280,"id":183398,"map":556,"orientation":1.5708,"phaseMask":1,"position_x":44.7716,"position_y":150.721,"position_z":-0.034146,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":84600,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":43400,"animprogress":255,"areaId":3791,"guid":7282,"id":185554,"map":556,"orientation":1.55334,"phaseMask":1,"position_x":-87.1621,"position_y":287.823,"position_z":26.4832,"rotation0":0,"rotation1":0,"rotation2":0.700909,"rotation3":0.713251,"spawnMask":2,"spawntimesecs":84600,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":42095,"id":183050,"map":556,"orientation":5.24018,"phaseMask":1,"position_x":-85.9132,"position_y":288.405,"position_z":26.4832,"rotation0":0,"rotation1":0,"rotation2":0.498184,"rotation3":-0.867072,"spawnMask":3,"spawntimesecs":0,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":12340,"animprogress":255,"areaId":0,"guid":44719,"id":187372,"map":556,"orientation":0,"phaseMask":1,"position_x":65.8832,"position_y":286.698,"position_z":25.0402,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67620,"id":183051,"map":556,"orientation":-0.785397,"phaseMask":1,"position_x":-161.007,"position_y":157.316,"position_z":0.010762,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105068,"id":181556,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-59.9727,"position_y":84.91,"position_z":1.11623,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105069,"id":181569,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-59.9727,"position_y":84.91,"position_z":1.11623,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105070,"id":181557,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-59.9727,"position_y":84.91,"position_z":1.11623,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105071,"id":181556,"map":556,"orientation":2.33874,"phaseMask":1,"position_x":-84.1449,"position_y":83.7513,"position_z":1.94966,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105072,"id":181569,"map":556,"orientation":2.33874,"phaseMask":1,"position_x":-84.1449,"position_y":83.7513,"position_z":1.94966,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105073,"id":181557,"map":556,"orientation":2.33874,"phaseMask":1,"position_x":-84.1449,"position_y":83.7513,"position_z":1.94966,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105074,"id":181556,"map":556,"orientation":2.87979,"phaseMask":1,"position_x":57.1795,"position_y":115.444,"position_z":-3.00431,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105075,"id":181569,"map":556,"orientation":2.87979,"phaseMask":1,"position_x":57.1795,"position_y":115.444,"position_z":-3.00431,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105076,"id":181557,"map":556,"orientation":2.87979,"phaseMask":1,"position_x":57.1795,"position_y":115.444,"position_z":-3.00431,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105077,"id":181556,"map":556,"orientation":5.77704,"phaseMask":1,"position_x":-114.993,"position_y":103.73,"position_z":2.62569,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105078,"id":181569,"map":556,"orientation":5.77704,"phaseMask":1,"position_x":-114.993,"position_y":103.73,"position_z":2.62569,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105079,"id":181557,"map":556,"orientation":5.77704,"phaseMask":1,"position_x":-114.993,"position_y":103.73,"position_z":2.62569,"rotation0":0,"rotation1":0,"rotation2":-0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105080,"id":181556,"map":556,"orientation":4.69494,"phaseMask":1,"position_x":24.3,"position_y":114.706,"position_z":0.058363,"rotation0":0,"rotation1":0,"rotation2":-0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105081,"id":181569,"map":556,"orientation":4.69494,"phaseMask":1,"position_x":24.3,"position_y":114.706,"position_z":0.058363,"rotation0":0,"rotation1":0,"rotation2":-0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105082,"id":181557,"map":556,"orientation":4.69494,"phaseMask":1,"position_x":24.3,"position_y":114.706,"position_z":0.058363,"rotation0":0,"rotation1":0,"rotation2":-0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105083,"id":181556,"map":556,"orientation":4.15388,"phaseMask":1,"position_x":103.381,"position_y":105.561,"position_z":2.53604,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105084,"id":181569,"map":556,"orientation":4.15388,"phaseMask":1,"position_x":103.381,"position_y":105.561,"position_z":2.53604,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105085,"id":181557,"map":556,"orientation":4.15388,"phaseMask":1,"position_x":103.381,"position_y":105.561,"position_z":2.53604,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105086,"id":181556,"map":556,"orientation":1.95477,"phaseMask":1,"position_x":-194.833,"position_y":339.823,"position_z":25.4777,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559193,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105087,"id":181569,"map":556,"orientation":1.95477,"phaseMask":1,"position_x":-194.833,"position_y":339.823,"position_z":25.4777,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559193,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105088,"id":181557,"map":556,"orientation":1.95477,"phaseMask":1,"position_x":-194.833,"position_y":339.823,"position_z":25.4777,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559193,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105089,"id":181556,"map":556,"orientation":0.558504,"phaseMask":1,"position_x":-233.406,"position_y":200.359,"position_z":1.84191,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105090,"id":181569,"map":556,"orientation":0.558504,"phaseMask":1,"position_x":-233.406,"position_y":200.359,"position_z":1.84191,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105091,"id":181557,"map":556,"orientation":0.558504,"phaseMask":1,"position_x":-233.406,"position_y":200.359,"position_z":1.84191,"rotation0":0,"rotation1":0,"rotation2":0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105092,"id":181556,"map":556,"orientation":4.60767,"phaseMask":1,"position_x":-228.518,"position_y":199.721,"position_z":24.8284,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105093,"id":181569,"map":556,"orientation":4.60767,"phaseMask":1,"position_x":-228.518,"position_y":199.721,"position_z":24.8284,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105094,"id":181557,"map":556,"orientation":4.60767,"phaseMask":1,"position_x":-228.518,"position_y":199.721,"position_z":24.8284,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105095,"id":181556,"map":556,"orientation":1.65806,"phaseMask":1,"position_x":-230.139,"position_y":291.997,"position_z":32.156,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105096,"id":181569,"map":556,"orientation":1.65806,"phaseMask":1,"position_x":-230.139,"position_y":291.997,"position_z":32.156,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105097,"id":181557,"map":556,"orientation":1.65806,"phaseMask":1,"position_x":-230.139,"position_y":291.997,"position_z":32.156,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105098,"id":181556,"map":556,"orientation":1.5708,"phaseMask":1,"position_x":-221.732,"position_y":151.383,"position_z":1.69546,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105099,"id":181569,"map":556,"orientation":1.5708,"phaseMask":1,"position_x":-221.732,"position_y":151.383,"position_z":1.69546,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105100,"id":181557,"map":556,"orientation":1.5708,"phaseMask":1,"position_x":-221.732,"position_y":151.383,"position_z":1.69546,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105101,"id":181556,"map":556,"orientation":4.85202,"phaseMask":1,"position_x":-196.522,"position_y":294.837,"position_z":30.829,"rotation0":0,"rotation1":0,"rotation2":-0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105102,"id":181569,"map":556,"orientation":4.85202,"phaseMask":1,"position_x":-196.522,"position_y":294.837,"position_z":30.829,"rotation0":0,"rotation1":0,"rotation2":-0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105103,"id":181557,"map":556,"orientation":4.85202,"phaseMask":1,"position_x":-196.522,"position_y":294.837,"position_z":30.829,"rotation0":0,"rotation1":0,"rotation2":-0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105104,"id":181556,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-80.9439,"position_y":307.453,"position_z":24.743,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105105,"id":181569,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-80.9439,"position_y":307.453,"position_z":24.743,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105106,"id":181557,"map":556,"orientation":2.84488,"phaseMask":1,"position_x":-80.9439,"position_y":307.453,"position_z":24.743,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105107,"id":181556,"map":556,"orientation":3.56047,"phaseMask":1,"position_x":-100.66,"position_y":273.158,"position_z":23.1322,"rotation0":0,"rotation1":0,"rotation2":-0.978148,"rotation3":0.207912,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105108,"id":181569,"map":556,"orientation":3.56047,"phaseMask":1,"position_x":-100.66,"position_y":273.158,"position_z":23.1322,"rotation0":0,"rotation1":0,"rotation2":-0.978148,"rotation3":0.207912,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105109,"id":181557,"map":556,"orientation":3.56047,"phaseMask":1,"position_x":-100.66,"position_y":273.158,"position_z":23.1322,"rotation0":0,"rotation1":0,"rotation2":-0.978148,"rotation3":0.207912,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105110,"id":181278,"map":556,"orientation":4.4855,"phaseMask":1,"position_x":7.98955,"position_y":112.229,"position_z":0.348708,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105111,"id":181278,"map":556,"orientation":0.59341,"phaseMask":1,"position_x":87.8129,"position_y":116.028,"position_z":0.353684,"rotation0":0,"rotation1":0,"rotation2":0.292371,"rotation3":0.956305,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105112,"id":181278,"map":556,"orientation":1.25664,"phaseMask":1,"position_x":-63.2795,"position_y":178.564,"position_z":0.01084,"rotation0":0,"rotation1":0,"rotation2":0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105113,"id":181278,"map":556,"orientation":2.63544,"phaseMask":1,"position_x":-91.2256,"position_y":110.526,"position_z":0.005229,"rotation0":0,"rotation1":0,"rotation2":0.968147,"rotation3":0.250381,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105114,"id":181278,"map":556,"orientation":4.83456,"phaseMask":1,"position_x":-75.1794,"position_y":75.9373,"position_z":0.006448,"rotation0":0,"rotation1":0,"rotation2":-0.66262,"rotation3":0.748956,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105115,"id":181278,"map":556,"orientation":1.88495,"phaseMask":1,"position_x":-279.839,"position_y":193.427,"position_z":0.057562,"rotation0":0,"rotation1":0,"rotation2":0.809016,"rotation3":0.587786,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105116,"id":181278,"map":556,"orientation":1.76278,"phaseMask":1,"position_x":-246.083,"position_y":147.564,"position_z":0.062782,"rotation0":0,"rotation1":0,"rotation2":0.771625,"rotation3":0.636078,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105117,"id":181278,"map":556,"orientation":1.85005,"phaseMask":1,"position_x":-237.488,"position_y":203.8,"position_z":-0.051845,"rotation0":0,"rotation1":0,"rotation2":0.798635,"rotation3":0.601815,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105118,"id":181278,"map":556,"orientation":5.61996,"phaseMask":1,"position_x":-200.026,"position_y":351.062,"position_z":26.6361,"rotation0":0,"rotation1":0,"rotation2":-0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105119,"id":181278,"map":556,"orientation":6.16101,"phaseMask":1,"position_x":-175.854,"position_y":340.07,"position_z":27.4297,"rotation0":0,"rotation1":0,"rotation2":-0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105120,"id":181278,"map":556,"orientation":5.5676,"phaseMask":1,"position_x":-190.816,"position_y":273.533,"position_z":26.7324,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105121,"id":181278,"map":556,"orientation":5.74214,"phaseMask":1,"position_x":-242.4,"position_y":351.192,"position_z":26.7369,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105122,"id":181278,"map":556,"orientation":2.42601,"phaseMask":1,"position_x":-99.0857,"position_y":314.553,"position_z":26.552,"rotation0":0,"rotation1":0,"rotation2":0.936672,"rotation3":0.350207,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105123,"id":181278,"map":556,"orientation":2.91469,"phaseMask":1,"position_x":-74.5162,"position_y":270.936,"position_z":26.7079,"rotation0":0,"rotation1":0,"rotation2":0.993571,"rotation3":0.113208,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105124,"id":181278,"map":556,"orientation":3.24635,"phaseMask":1,"position_x":-117.02,"position_y":260.386,"position_z":26.8177,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523532,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":3791,"guid":105125,"id":181278,"map":556,"orientation":5.34071,"phaseMask":1,"position_x":-58.4746,"position_y":314.138,"position_z":27.3705,"rotation0":0,"rotation1":0,"rotation2":-0.45399,"rotation3":0.891007,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3791},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150036,"id":184190,"map":556,"orientation":0.03534,"phaseMask":1,"position_x":-7.825,"position_y":-0.204,"position_z":0.0062,"rotation0":0,"rotation1":0,"rotation2":0.0176691,"rotation3":0.999844,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150037,"id":184189,"map":556,"orientation":0.03534,"phaseMask":1,"position_x":-7.825,"position_y":-0.204,"position_z":0.0062,"rotation0":0,"rotation1":0,"rotation2":0.0176691,"rotation3":0.999844,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/AuchindounDemon":"bd7f7caf71174f96abc192225969121c394a0cfd710e8c949b2f75b0cbd3b033","patch/World/maps/AuchindounDemon":"eda85851f2475cdadc61a301007225b17789a11b3dd73b6701fca65807608ebb"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/sethekk-halls/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["16/16 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"mana-tombs","title":"Auchindoun: Mana-Tombs","mapId":557,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Auchindoun: Mana-Tombs","theme":"Instanced dungeon","summary":"Fight through Auchindoun: Mana-Tombs, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Auchindoun: Mana-Tombs...","unchartedAreaName":"Uncharted Auchindoun: Mana-Tombs","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":382.752},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/557-auchindounethereal/visual.glb","checksum":"69aa9d1f025542ef0da01d1cf8d30600aa40cab99a2b60f06450038081901d58","size":3570848,"triangleCount":90614}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/557-auchindounethereal/collision.glb","checksum":"833cbf07454221f35db493f84ad2508c95395ef1154bcd88073f093c74532b65","size":792804,"triangleCount":76540}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/557-auchindounethereal/navigation.glb","checksum":"5c905d93955353a9b8aea1a0e67b7c362a2b3d8095b5a10826e130b17214a1ec","size":176400,"triangleCount":12947}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-104.0431,-22.2451,-278.2222],"max":[427.5569,42.3104,93.2576]},"entrance":{"name":"Auchindoun: Mana-Tombs Entrance","footPosition":[-59.0431,-0.7849,19.0056],"forward":[0.7867888659591058,0,-0.61722222934919],"yaw":2.2360036039568065},"areas":[{"id":"entrance","name":"Auchindoun: Mana-Tombs Entrance","center":[-59.0431,-0.7849,19.0056],"radius":35},{"id":"area-pandemonius","name":"Pandemonius's Encounter","center":[8.9673,-1.0284,-100.8762],"radius":42},{"id":"area-tavarok","name":"Tavarok's Encounter","center":[262.693,-0.6082,-204.1252],"radius":42},{"id":"area-nexus-prince-shaffar","name":"Nexus-Prince Shaffar's Encounter","center":[125.342,16.9868,27.3913],"radius":42}],"entities":{"entry-18309":{"id":"entry-18309","kind":"mob","name":"Ethereal Scavenger","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-33865","name":"Singe","spellId":33865,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7225,"damageMultiplier":1.12},{"id":"spell-33871","name":"Shield Bash","spellId":33871,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":7225,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-33871","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-19778-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0498,"labelHeight":3.8711,"markerRadius":1.9316}}},"entry-18311":{"id":"entry-18311","kind":"mob","name":"Ethereal Crypt Raider","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22911","name":"Charge","spellId":22911,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5033,"damageMultiplier":1.12},{"id":"spell-32315","name":"Soul Strike","spellId":32315,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5033,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-20466-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0623,"labelHeight":4.8389,"markerRadius":2.4145}}},"entry-18313":{"id":"entry-18313","kind":"mob","name":"Ethereal Sorcerer","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-25603","name":"Slow","spellId":25603,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4453,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-21004-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1394,"labelHeight":5.3068,"markerRadius":1.7046}}},"entry-18317":{"id":"entry-18317","kind":"mob","name":"Ethereal Priest","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-34944","name":"Holy Nova","spellId":34944,"delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":5491,"damageMultiplier":0.62,"radius":8},{"id":"spell-34495","name":"Increase Healing 299","spellId":34495,"delivery":"projectile","target":"lowest-health-friendly","school":"physical","animation":"cast","range":28,"cooldownMs":5491,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-21005-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.129,"labelHeight":4.9137,"markerRadius":1.5783}}},"entry-18314":{"id":"entry-18314","kind":"mob","name":"Nexus Stalker","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1400,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-20468-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0573,"labelHeight":4.4518,"markerRadius":2.2214}}},"entry-18331":{"id":"entry-18331","kind":"mob","name":"Ethereal Darkcaster","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-16592","name":"Shadowform","spellId":16592,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5696,"damageMultiplier":1.12},{"id":"spell-34942","name":"Shadow Word: Pain","spellId":34942,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5696,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-20987-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1032,"labelHeight":3.931,"markerRadius":1.2627}}},"entry-19307":{"id":"entry-19307","kind":"mob","name":"Nexus Terror","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-18050-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5569,"markerRadius":1.6135}}},"entry-18431":{"id":"entry-18431","kind":"mob","name":"Ethereal Beacon","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15254","name":"Arcane Bolt","spellId":15254,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4449,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-25866-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-19306":{"id":"entry-19306","kind":"mob","name":"Mana Leech","combat":{"level":64,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7428480000000004,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-25602","name":"Faerie Fire","spellId":25602,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4261,"damageMultiplier":1.12},{"id":"spell-15785","name":"Mana Burn","spellId":15785,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4261,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/8ec04da49e89f06bd85e7e8ecbb8c2e53ef77758bb032a1945b3d5fccecd8a6e.glb","rotationY":-1.5707963267948966,"groundOffset":0.2253,"labelHeight":5.9213,"markerRadius":0.9578}}},"entry-18343":{"id":"entry-18343","kind":"boss","name":"Tavarok","title":"Dungeon Boss","hasLoot":true,"combat":{"level":66,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5925,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-19332-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0245,"labelHeight":32.8625,"markerRadius":4.5}}},"entry-18344":{"id":"entry-18344","kind":"boss","name":"Nexus-Prince Shaffar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":66,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6592,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-19780-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1121,"labelHeight":8.71,"markerRadius":4.3462}}},"entry-18341":{"id":"entry-18341","kind":"boss","name":"Pandemonius","title":"Dungeon Boss","hasLoot":true,"combat":{"level":66,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-32358","name":"Dark Shell","spellId":32358,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4272,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-19338-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":15.3699,"markerRadius":4.5}}},"entry-18315":{"id":"entry-18315","kind":"mob","name":"Ethereal Theurgist","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-38064","name":"Blast Wave","spellId":38064,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6957,"damageMultiplier":1.12},{"id":"spell-34920","name":"Strike","spellId":34920,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6957,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-21004-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1394,"labelHeight":5.3068,"markerRadius":1.7046}}},"entry-18312":{"id":"entry-18312","kind":"mob","name":"Ethereal Spellbinder","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-34470","name":"Serpent's Swiftness","spellId":34470,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5071,"damageMultiplier":1.12},{"id":"spell-37668","name":"Immolate","spellId":37668,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5071,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/mana-tombs/creatures/display-20986-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1032,"labelHeight":3.931,"markerRadius":1.2627}}}},"staticSpawns":[{"id":"creature-83302","entityId":"entry-18311","position":[11.0634,-0.7779,-1.6256],"yaw":-1.26261,"spawnMask":3},{"id":"creature-83304","entityId":"entry-18309","position":[-10.7147,-0.6926,12.0674],"yaw":-0.366519,"spawnMask":3},{"id":"creature-83305","entityId":"entry-18311","position":[-4.8043,-0.6937,21.5402],"yaw":-0.10472,"spawnMask":3},{"id":"creature-83306","entityId":"entry-18311","position":[12.1343,-0.7016,-22.9597],"yaw":-1.309,"spawnMask":3},{"id":"creature-83307","entityId":"entry-18311","position":[4.3944,-0.7016,-23.4968],"yaw":-1.8326,"spawnMask":3},{"id":"creature-83309","entityId":"entry-18309","position":[49.323,-0.3565,-74.9052],"yaw":-2.61019,"spawnMask":3},{"id":"creature-83310","entityId":"entry-18313","position":[34.9741,-0.5713,-86.5782],"yaw":-1.11713,"spawnMask":3},{"id":"creature-83311","entityId":"entry-18311","position":[4.6321,0.0857,-42.9203],"yaw":-1.78024,"spawnMask":3},{"id":"creature-83312","entityId":"entry-18311","position":[13.6202,-0.7974,-42.9135],"yaw":-1.6057,"spawnMask":3},{"id":"creature-83313","entityId":"entry-18313","position":[8.6987,-0.5943,-49.2097],"yaw":-1.37881,"spawnMask":3},{"id":"creature-83314","entityId":"entry-18311","position":[-15.7234,-1.48,-79.5525],"yaw":-1.83806,"spawnMask":3},{"id":"creature-83315","entityId":"entry-18313","position":[-12.2802,-0.7603,-79.7237],"yaw":-2.09157,"spawnMask":3},{"id":"creature-83316","entityId":"entry-18311","position":[33.9842,-0.7376,-38.4758],"yaw":-6.24652,"spawnMask":3},{"id":"creature-83317","entityId":"entry-18309","position":[38.8673,-0.6351,-41.82],"yaw":-3.32374,"spawnMask":3},{"id":"creature-83318","entityId":"entry-18313","position":[33.2687,-1.4893,-48.6688],"yaw":-0.693752,"spawnMask":3},{"id":"creature-83319","entityId":"entry-18311","position":[-26.7523,-0.0445,-74.1628],"yaw":-4.29137,"spawnMask":3},{"id":"creature-83321","entityId":"entry-18313","position":[-19.9109,-1.3219,-76.6407],"yaw":-0.564044,"spawnMask":3},{"id":"creature-83330","entityId":"entry-18314","position":[311.78,-0.7899,-179.4322],"yaw":-4.77872,"spawnMask":3},{"id":"creature-83331","entityId":"entry-18314","position":[311.688,-0.8306,-173.1422],"yaw":-1.57663,"spawnMask":3},{"id":"creature-83332","entityId":"entry-18331","position":[332.729,-0.706,-153.8592],"yaw":-0.122173,"spawnMask":3},{"id":"creature-83333","entityId":"entry-18313","position":[336.733,-0.706,-150.3042],"yaw":-0.523599,"spawnMask":3},{"id":"creature-83334","entityId":"entry-19307","position":[311.515,-0.7894,-73.8243],"yaw":-5.80378,"spawnMask":3},{"id":"creature-83335","entityId":"entry-18331","position":[292.787,-0.706,-150.7112],"yaw":-3.64774,"spawnMask":3},{"id":"creature-83336","entityId":"entry-18313","position":[294.859,-0.706,-156.8082],"yaw":-2.79253,"spawnMask":3},{"id":"creature-83338","entityId":"entry-18331","position":[240.171,-1.2669,-187.5382],"yaw":-0.471239,"spawnMask":3},{"id":"creature-83339","entityId":"entry-18331","position":[235.182,-1.7309,-185.2492],"yaw":-0.767945,"spawnMask":3},{"id":"creature-83340","entityId":"entry-18317","position":[122.444,-0.7024,-211.1822],"yaw":-0.453786,"spawnMask":3},{"id":"creature-83341","entityId":"entry-18331","position":[122.564,-0.7025,-199.6162],"yaw":-5.96903,"spawnMask":3},{"id":"creature-83342","entityId":"entry-18313","position":[130.241,-0.7027,-200.8882],"yaw":-0.05236,"spawnMask":3},{"id":"creature-83343","entityId":"entry-18309","position":[129.754,-0.703,-208.0742],"yaw":-6.16101,"spawnMask":3},{"id":"creature-83345","entityId":"entry-18331","position":[150.451,1.2614,-185.9572],"yaw":-5.53188,"spawnMask":3},{"id":"creature-83347","entityId":"entry-18317","position":[199.374,-0.9458,-145.2822],"yaw":-4.25308,"spawnMask":3},{"id":"creature-83348","entityId":"entry-18331","position":[188.844,-0.784,-137.6872],"yaw":-5.41272,"spawnMask":3},{"id":"creature-86396","entityId":"entry-18331","position":[193.215,-0.7004,-160.2622],"yaw":-5.67232,"spawnMask":3},{"id":"creature-91121","entityId":"entry-18317","position":[193.473,-0.6984,-170.0482],"yaw":-6.26573,"spawnMask":3},{"id":"creature-91122","entityId":"entry-18313","position":[196.689,-0.699,-166.3302],"yaw":-6.10865,"spawnMask":3},{"id":"creature-91124","entityId":"entry-18331","position":[161.596,-0.4093,-199.3352],"yaw":-0.017453,"spawnMask":3},{"id":"creature-91125","entityId":"entry-18317","position":[162.087,-0.701,-211.1332],"yaw":-0.05236,"spawnMask":3},{"id":"creature-91126","entityId":"entry-18313","position":[156.412,-0.7028,-205.3252],"yaw":-0.069813,"spawnMask":3},{"id":"creature-91131","entityId":"entry-18431","position":[120.409,16.8802,27.1276],"yaw":-5.13499,"spawnMask":3},{"id":"creature-91132","entityId":"entry-18431","position":[128.247,16.8921,33.4543],"yaw":-1.21272,"spawnMask":3},{"id":"creature-91133","entityId":"entry-18431","position":[129.595,16.9404,23.1818],"yaw":-3.24971,"spawnMask":3},{"id":"creature-91134","entityId":"entry-19306","position":[168.698,17.1948,10.2096],"yaw":-1.4391,"spawnMask":3},{"id":"creature-91135","entityId":"entry-19306","position":[164.504,16.9037,10.8907],"yaw":-5.29432,"spawnMask":3},{"id":"creature-91136","entityId":"entry-19306","position":[163.349,16.8892,8.4504],"yaw":-1.84962,"spawnMask":3},{"id":"creature-91137","entityId":"entry-19306","position":[163.02,17.2964,15.4007],"yaw":-2.81858,"spawnMask":3},{"id":"creature-91138","entityId":"entry-19306","position":[159.404,16.9045,10.9672],"yaw":-4.11056,"spawnMask":3},{"id":"creature-91139","entityId":"entry-19306","position":[169.242,17.6506,45.7515],"yaw":-1.76408,"spawnMask":3},{"id":"creature-91140","entityId":"entry-19306","position":[166.263,16.979,47.5928],"yaw":-3.85384,"spawnMask":3},{"id":"creature-91141","entityId":"entry-19306","position":[163.802,16.9713,45.6715],"yaw":-2.15511,"spawnMask":3},{"id":"creature-91142","entityId":"entry-19306","position":[160.372,16.9696,48.2576],"yaw":-5.08662,"spawnMask":3},{"id":"creature-91143","entityId":"entry-19306","position":[163.638,17.1968,37.1167],"yaw":-4.67522,"spawnMask":3},{"id":"creature-91151","entityId":"entry-18317","position":[52.231,-0.9185,-178.5352],"yaw":-4.41568,"spawnMask":3},{"id":"creature-91152","entityId":"entry-18317","position":[61.651,-0.6461,-179.8202],"yaw":-5.42797,"spawnMask":3},{"id":"creature-91153","entityId":"entry-18313","position":[56.231,-1.0928,-181.4692],"yaw":-4.92183,"spawnMask":3},{"id":"creature-91154","entityId":"entry-18313","position":[-21.3445,-0.037,-212.0472],"yaw":-3.51569,"spawnMask":3},{"id":"creature-91155","entityId":"entry-18313","position":[-29.9264,0.2347,-201.5442],"yaw":-5.39465,"spawnMask":3},{"id":"creature-91156","entityId":"entry-18317","position":[-31.0764,0.2972,-201.8132],"yaw":-2.02268,"spawnMask":3},{"id":"creature-91161","entityId":"entry-18343","position":[262.693,-0.6082,-204.1252],"yaw":-0.366519,"spawnMask":3},{"id":"creature-91162","entityId":"entry-18344","position":[125.342,16.9868,27.3913],"yaw":-2.94961,"spawnMask":3},{"id":"creature-91163","entityId":"entry-18341","position":[8.9673,-1.0284,-100.8762],"yaw":-3.91872,"spawnMask":3},{"id":"creature-91164","entityId":"entry-18314","position":[311.198,-0.706,-114.8922],"yaw":-3.92699,"spawnMask":3},{"id":"creature-91165","entityId":"entry-18314","position":[317.158,-0.706,-115.1772],"yaw":-4.57276,"spawnMask":3},{"id":"creature-91166","entityId":"entry-18315","position":[313.936,-0.706,-110.3972],"yaw":-4.60767,"spawnMask":3},{"id":"creature-91167","entityId":"entry-18311","position":[317.51,-0.706,-24.3766],"yaw":-5.18363,"spawnMask":3},{"id":"creature-91168","entityId":"entry-18311","position":[309.971,-0.706,-25.5509],"yaw":-4.13643,"spawnMask":3},{"id":"creature-91169","entityId":"entry-18317","position":[311.401,-0.7061,-19.1098],"yaw":-4.45059,"spawnMask":3},{"id":"creature-91170","entityId":"entry-18312","position":[316.552,-0.7062,-19.675],"yaw":-4.85202,"spawnMask":3},{"id":"creature-91173","entityId":"entry-18331","position":[305.978,-0.7894,-153.7362],"yaw":-0.555512,"spawnMask":3},{"id":"creature-91174","entityId":"entry-18312","position":[293.989,-0.8019,-52.2425],"yaw":-2.16339,"spawnMask":3},{"id":"creature-91175","entityId":"entry-18312","position":[291.13,-0.806,-52.4038],"yaw":-0.499545,"spawnMask":3},{"id":"creature-91176","entityId":"entry-18314","position":[296.865,-0.8037,-46.5082],"yaw":-1.59343,"spawnMask":3},{"id":"creature-91179","entityId":"entry-18312","position":[311.606,-0.7061,-93.6172],"yaw":-4.5204,"spawnMask":3},{"id":"creature-91180","entityId":"entry-18312","position":[317.553,-0.7061,-93.9952],"yaw":-4.99164,"spawnMask":3},{"id":"creature-91182","entityId":"entry-18312","position":[329.66,-0.706,-44.066],"yaw":-5.81195,"spawnMask":3},{"id":"creature-91183","entityId":"entry-18312","position":[337.157,-0.706,-50.5343],"yaw":-6.19592,"spawnMask":3},{"id":"creature-91184","entityId":"entry-18314","position":[330.172,-0.706,-55.1688],"yaw":-5.96903,"spawnMask":3},{"id":"creature-91186","entityId":"entry-18331","position":[161.046,-0.8116,-159.6042],"yaw":-0.867449,"spawnMask":3},{"id":"creature-91187","entityId":"entry-18331","position":[154.796,-0.5568,-164.6322],"yaw":-2.51996,"spawnMask":3},{"id":"creature-91188","entityId":"entry-19306","position":[176.077,-0.7843,-157.8362],"yaw":-2.07142,"spawnMask":3},{"id":"creature-91189","entityId":"entry-19306","position":[178.885,-0.7843,-155.8712],"yaw":-2.57018,"spawnMask":3},{"id":"creature-91190","entityId":"entry-19306","position":[167.864,-0.9171,-157.6232],"yaw":-5.70626,"spawnMask":3},{"id":"creature-91197","entityId":"entry-18315","position":[199.063,17.3275,31.0833],"yaw":-3.63029,"spawnMask":3},{"id":"creature-91198","entityId":"entry-18315","position":[200.204,17.0389,20.1626],"yaw":-2.60054,"spawnMask":3},{"id":"creature-91199","entityId":"entry-18312","position":[192.128,17.2044,30.4173],"yaw":-3.63029,"spawnMask":3},{"id":"creature-91200","entityId":"entry-18312","position":[194.201,17.0375,23.3399],"yaw":-2.61799,"spawnMask":3},{"id":"creature-91203","entityId":"entry-18312","position":[247.627,16.9604,26.0597],"yaw":-5.97163,"spawnMask":3},{"id":"creature-91204","entityId":"entry-18312","position":[224.387,16.8548,9.8664],"yaw":-5.96874,"spawnMask":3},{"id":"creature-91205","entityId":"entry-18312","position":[223.098,16.8544,4.5019],"yaw":-3.09364,"spawnMask":3},{"id":"creature-91206","entityId":"entry-18315","position":[218.094,16.854,13.2274],"yaw":-5.82539,"spawnMask":3},{"id":"creature-91208","entityId":"entry-18313","position":[90.191,-0.5681,-210.5362],"yaw":-6.24828,"spawnMask":3},{"id":"creature-91209","entityId":"entry-18313","position":[90.399,-0.5275,-198.6442],"yaw":-6.0912,"spawnMask":3},{"id":"creature-91210","entityId":"entry-18317","position":[97.458,-0.7024,-204.8662],"yaw":0,"spawnMask":3},{"id":"creature-91212","entityId":"entry-18309","position":[45.196,1.4194,-214.5922],"yaw":-1.16937,"spawnMask":3},{"id":"creature-91213","entityId":"entry-18317","position":[44.34,0.7168,-222.0772],"yaw":-1.0821,"spawnMask":3},{"id":"creature-91214","entityId":"entry-18313","position":[36.4364,0.3057,-221.5512],"yaw":-1.25664,"spawnMask":3},{"id":"creature-91216","entityId":"entry-18317","position":[81.417,-0.4146,-191.6062],"yaw":-0.777947,"spawnMask":3},{"id":"creature-91218","entityId":"entry-19306","position":[-44.2991,2.2318,-210.1672],"yaw":-3.07177,"spawnMask":3},{"id":"creature-91219","entityId":"entry-19306","position":[-50.2449,2.072,-209.1862],"yaw":-3.63575,"spawnMask":3},{"id":"creature-91220","entityId":"entry-19306","position":[-45.2399,0.7312,-201.4622],"yaw":-2.60924,"spawnMask":3},{"id":"creature-91221","entityId":"entry-19306","position":[-50.7414,1.2331,-198.2812],"yaw":-3.07125,"spawnMask":3},{"id":"creature-91222","entityId":"entry-19306","position":[-55.6432,1.9895,-203.1982],"yaw":-4.50011,"spawnMask":3},{"id":"creature-91223","entityId":"entry-19306","position":[-6.8973,-0.4745,-225.7682],"yaw":-2.82645,"spawnMask":3},{"id":"creature-91224","entityId":"entry-19306","position":[1.3396,-0.1105,-219.0792],"yaw":-0.925377,"spawnMask":3},{"id":"creature-91225","entityId":"entry-19306","position":[0.1209,-0.3097,-228.5032],"yaw":-4.95654,"spawnMask":3},{"id":"creature-91226","entityId":"entry-18311","position":[10.102,-1.7633,-174.3292],"yaw":-1.5708,"spawnMask":3},{"id":"creature-91227","entityId":"entry-18309","position":[2.4761,-1.2996,-170.7142],"yaw":-1.76278,"spawnMask":3},{"id":"creature-91228","entityId":"entry-18313","position":[12.1986,-1.5615,-170.3482],"yaw":-1.53589,"spawnMask":3},{"id":"creature-91229","entityId":"entry-18317","position":[5.7267,-1.5901,-175.1252],"yaw":-1.69297,"spawnMask":3},{"id":"creature-91230","entityId":"entry-19307","position":[313.169,8.0875,24.1843],"yaw":-5.22501,"spawnMask":3},{"id":"creature-91231","entityId":"entry-19306","position":[317.255,-0.7886,-198.5522],"yaw":-1.53744,"spawnMask":3},{"id":"creature-91232","entityId":"entry-19306","position":[321.224,-0.7893,-193.0152],"yaw":-1.91085,"spawnMask":3},{"id":"creature-91233","entityId":"entry-19306","position":[320.769,-0.7888,-197.3082],"yaw":-3.11079,"spawnMask":3},{"id":"creature-91238","entityId":"entry-18311","position":[3.6064,-0.7026,-152.9982],"yaw":-1.69297,"spawnMask":3},{"id":"creature-91239","entityId":"entry-18313","position":[13.1905,-0.7031,-153.0842],"yaw":-1.27409,"spawnMask":3},{"id":"creature-91241","entityId":"entry-18317","position":[-27.4526,0.1032,-200.6232],"yaw":-6.13744,"spawnMask":3},{"id":"creature-91242","entityId":"entry-18317","position":[-19.975,0.0209,-181.4742],"yaw":-5.71687,"spawnMask":3},{"id":"creature-91243","entityId":"entry-18317","position":[-29.9825,-0.0685,-180.1532],"yaw":-5.72736,"spawnMask":3},{"id":"creature-91244","entityId":"entry-18313","position":[-26.0493,-0.1133,-179.7112],"yaw":-5.79297,"spawnMask":3}],"roamingPacks":[{"id":"patrol-83301","name":"Ethereal Scavenger Patrol","speed":1.15,"pathId":833010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[8.974,-0.7822,-13.6329],[8.6989,-0.7832,-5.2244],[6.6539,-0.7779,3.1386],[1.1568,-0.7804,9.5218],[-5.1125,-0.7795,15.507],[-12.3418,-0.7849,18.9188],[-22.495,-0.7849,19.5604],[-12.3418,-0.7849,18.9188],[-5.1125,-0.7795,15.507],[1.1568,-0.7804,9.5218],[6.6539,-0.7779,3.1386],[8.6989,-0.7832,-5.2244]],"members":[{"id":"member","entityId":"entry-18309","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83320","name":"Ethereal Crypt Raider Patrol","speed":1.15,"pathId":833200,"formationSource":"database-solo","spawnMask":3,"waypoints":[[33.1538,-0.5772,-85.5832],[22.317,-0.3241,-91.2992],[8.7246,-0.6028,-95.5942],[-5.1053,-0.1474,-91.3752],[-17.738,-2.2451,-85.2932],[-11.2131,-1.9279,-71.4],[-1.4179,-1.9459,-64.0377],[9.2356,-1.9436,-61.0075],[21.8792,-1.817,-66.1981],[28.3968,-1.7898,-73.5267]],"members":[{"id":"member","entityId":"entry-18311","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83329","name":"Ethereal Priest Patrol","speed":1.15,"pathId":833290,"formationSource":"database-solo","spawnMask":3,"waypoints":[[314.527,-0.8309,-171.3522],[314.375,-0.7885,-197.4862],[314.307,-0.7872,-217.8412],[314.375,-0.7885,-197.4862]],"members":[{"id":"member","entityId":"entry-18317","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83344","name":"Ethereal Darkcaster Patrol","speed":1.15,"pathId":833440,"formationSource":"database-solo","spawnMask":3,"waypoints":[[150.578,-0.7869,-227.1832],[146.822,-0.786,-208.5512],[149.275,1.111,-192.4632],[157.346,0.5481,-185.2912],[173.995,-0.7828,-178.2392],[157.346,0.5481,-185.2912],[149.275,1.111,-192.4632],[146.822,-0.786,-208.5512]],"members":[{"id":"member","entityId":"entry-18331","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83346","name":"Nexus Terror Patrol","speed":1.15,"pathId":833460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[148.676,-0.7865,-231.8572],[146.764,-0.7865,-218.1952],[145.54,1.7199,-188.7332],[158.183,0.5248,-182.2782],[175.222,-0.7837,-174.6562],[176.54,-0.7837,-151.6072],[163.69,-0.7844,-150.5642],[154.003,-0.715,-160.8892],[146.064,1.3511,-170.6072],[145.856,1.751,-185.7342],[146.283,-0.5396,-203.6192],[151.726,-0.7861,-225.2662]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91160","name":"Nexus Terror Patrol","speed":1.15,"pathId":911600,"formationSource":"database-solo","spawnMask":3,"waypoints":[[52.792,-0.7845,-193.5862],[40.0058,-0.4464,-206.1752],[23.0108,-0.1284,-204.3832],[11.2961,-0.1418,-191.4722],[-1.3039,-0.2177,-179.4072],[-20.3959,-0.3711,-176.0802],[-41.7824,-0.1547,-178.4522],[-41.8791,0.3971,-193.3752],[-35.2969,0.5615,-211.2922],[-27.8754,-0.0912,-222.0622],[-27.71,3.9497,-233.2222],[-16.6099,0.1228,-231.7302],[0.9269,-0.5989,-226.8692],[11.3065,0.031,-219.0752],[26.1317,0.4725,-215.3422],[36.6292,-0.8179,-203.8942],[52.992,-0.6599,-194.6092]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91172","name":"Nexus Stalker Patrol","speed":1.15,"pathId":911720,"formationSource":"database-solo","spawnMask":3,"waypoints":[[324.919,-0.7894,-153.8962],[315.729,-0.7845,-158.8942],[306.649,-0.7894,-156.9482],[301.116,-0.8301,-147.6692],[304.353,-0.7894,-140.4612],[311.444,-0.7894,-134.5662],[319.254,-0.7894,-137.2922],[325.84,-0.7805,-144.9952]],"members":[{"id":"member","entityId":"entry-18314","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91185","name":"Nexus Terror Patrol","speed":1.15,"pathId":911850,"formationSource":"database-solo","spawnMask":3,"waypoints":[[210.386,-0.7079,-163.6282],[223.563,-0.4418,-167.5062],[235.732,-0.6427,-173.0972],[245.916,-0.5867,-187.1252],[250.683,-0.7838,-205.9572],[244.546,-0.8542,-232.0932],[242.839,-0.7831,-220.6782],[250.235,-0.7654,-195.7832],[240.819,-0.8955,-181.9192],[234.671,-0.6462,-171.6662],[216.007,-0.4926,-168.1692]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91194","name":"Nexus Terror Patrol","speed":1.15,"pathId":911940,"formationSource":"database-solo","spawnMask":3,"waypoints":[[187.674,16.9637,27.2831],[172.289,16.978,27.5008],[155.36,17.0296,27.7417],[172.289,16.978,27.5008]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91201","name":"Nexus Terror Patrol","speed":1.15,"pathId":912010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[224.217,16.8547,14.0558],[227.556,16.9572,20.7501],[227.766,18.5797,33.5435],[216.924,22.3104,43.7917],[227.706,18.6205,33.6008],[227.556,16.9572,20.7501]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91202","name":"Ethereal Spellbinder Patrol","speed":1.15,"pathId":912020,"formationSource":"database-solo","spawnMask":3,"waypoints":[[201.935,16.9552,25.918],[217.78,16.9564,23.1807],[240.962,16.9589,23.5962],[261.086,16.9624,26.0303],[240.962,16.9589,23.5962],[217.78,16.9564,23.1807]],"members":[{"id":"member","entityId":"entry-18312","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91215","name":"Ethereal Priest Patrol","speed":1.15,"pathId":912150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[52.152,0.0143,-201.2152],[59.217,-0.5051,-191.9192],[77.336,-0.2791,-196.0092],[84.346,-0.3635,-202.9152],[77.336,-0.2791,-196.0092],[59.217,-0.5051,-191.9192]],"members":[{"id":"member","entityId":"entry-18317","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91234","name":"Nexus Terror Patrol","speed":1.15,"pathId":912340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[321.693,-0.7906,-40.7824],[304.806,-0.7904,-42.3976],[302.803,-0.7752,-59.6985],[321.149,-0.7893,-64.5804]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91235","name":"Nexus Terror Patrol","speed":1.15,"pathId":912350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[320.061,-0.7893,-136.8832],[327.001,-0.7882,-145.6702],[317.842,-0.7984,-161.7482],[301.729,-0.7898,-152.5782],[306.599,-0.7898,-136.8362]],"members":[{"id":"member","entityId":"entry-19307","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-91240","name":"Ethereal Priest Patrol","speed":1.15,"pathId":912400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-26.2616,-0.0058,-205.5022],[-9.0716,0.105,-202.9802],[14.8463,-0.0077,-200.6672],[-9.0716,0.105,-202.9802]],"members":[{"id":"member","entityId":"entry-18317","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-91163","name":"Pandemonius","position":[8.9673,-1.0284,-100.8762]},{"id":"creature-91161","name":"Tavarok","position":[262.693,-0.6082,-204.1252]},{"id":"creature-91162","name":"Nexus-Prince Shaffar","position":[125.342,16.9868,27.3913]}],"objectiveOrder":[{"id":"creature-91163","name":"Pandemonius","position":[8.9673,-1.0284,-100.8762]},{"id":"creature-91161","name":"Tavarok","position":[262.693,-0.6082,-204.1252]},{"id":"creature-91162","name":"Nexus-Prince Shaffar","position":[125.342,16.9868,27.3913]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":43146,"id":183877,"map":557,"orientation":-2.42601,"phaseMask":1,"position_x":-355.297,"position_y":-64.4767,"position_z":0.437066,"rotation0":0,"rotation1":0,"rotation2":-0.936673,"rotation3":0.350206,"spawnMask":3,"spawntimesecs":3,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104466,"id":181278,"map":557,"orientation":5.46288,"phaseMask":1,"position_x":-105.552,"position_y":-58.9405,"position_z":-0.821702,"rotation0":0,"rotation1":0,"rotation2":-0.398748,"rotation3":0.91706,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104467,"id":181278,"map":557,"orientation":1.62316,"phaseMask":1,"position_x":-95.3467,"position_y":-108.357,"position_z":-0.842384,"rotation0":0,"rotation1":0,"rotation2":0.725374,"rotation3":0.688355,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104468,"id":181278,"map":557,"orientation":0,"phaseMask":1,"position_x":-110.722,"position_y":-193.438,"position_z":-1.06178,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104469,"id":181278,"map":557,"orientation":4.95674,"phaseMask":1,"position_x":-107.263,"position_y":-249.694,"position_z":-0.657617,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104470,"id":181278,"map":557,"orientation":5.20108,"phaseMask":1,"position_x":-228.783,"position_y":-221.596,"position_z":-1.10903,"rotation0":0,"rotation1":0,"rotation2":-0.515038,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104471,"id":181278,"map":557,"orientation":3.29869,"phaseMask":1,"position_x":-254.457,"position_y":-177.219,"position_z":-0.953286,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784664,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104472,"id":181278,"map":557,"orientation":0.645772,"phaseMask":1,"position_x":-256.032,"position_y":-152.779,"position_z":-0.953339,"rotation0":0,"rotation1":0,"rotation2":0.317305,"rotation3":0.948324,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104473,"id":181278,"map":557,"orientation":4.5204,"phaseMask":1,"position_x":-284.843,"position_y":-166.549,"position_z":-2.71548,"rotation0":0,"rotation1":0,"rotation2":-0.771625,"rotation3":0.636078,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3792,"guid":104474,"id":181278,"map":557,"orientation":-2.07694,"phaseMask":1,"position_x":-291.378,"position_y":-206.457,"position_z":-2.54264,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104475,"id":181278,"map":557,"orientation":4.11898,"phaseMask":1,"position_x":-378.636,"position_y":-241.698,"position_z":-0.956422,"rotation0":0,"rotation1":0,"rotation2":-0.882947,"rotation3":0.469473,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104476,"id":181278,"map":557,"orientation":4.76475,"phaseMask":1,"position_x":-379.233,"position_y":-219.094,"position_z":-0.957844,"rotation0":0,"rotation1":0,"rotation2":-0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104477,"id":181278,"map":557,"orientation":1.11701,"phaseMask":1,"position_x":-353.598,"position_y":-179.432,"position_z":-0.966642,"rotation0":0,"rotation1":0,"rotation2":0.529919,"rotation3":0.848048,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104478,"id":181278,"map":557,"orientation":3.50812,"phaseMask":1,"position_x":-400.56,"position_y":-172.333,"position_z":-0.98123,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104479,"id":181278,"map":557,"orientation":1.58825,"phaseMask":1,"position_x":-367.253,"position_y":-132.678,"position_z":-0.966903,"rotation0":0,"rotation1":0,"rotation2":0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104480,"id":181278,"map":557,"orientation":6.03884,"phaseMask":1,"position_x":-393.554,"position_y":-60.8607,"position_z":-0.982428,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104481,"id":181278,"map":557,"orientation":0.925024,"phaseMask":1,"position_x":-350.483,"position_y":-60.3347,"position_z":-0.974565,"rotation0":0,"rotation1":0,"rotation2":0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104482,"id":181278,"map":557,"orientation":4.08407,"phaseMask":1,"position_x":-379.956,"position_y":-41.4283,"position_z":-0.967236,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3792,"guid":104483,"id":181278,"map":557,"orientation":1.78024,"phaseMask":1,"position_x":-283.552,"position_y":-10.902,"position_z":16.685,"rotation0":0,"rotation1":0,"rotation2":0.777147,"rotation3":0.629319,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104484,"id":181278,"map":557,"orientation":4.4855,"phaseMask":1,"position_x":-255.582,"position_y":3.04984,"position_z":16.7849,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104485,"id":181278,"map":557,"orientation":5.91667,"phaseMask":1,"position_x":-217.485,"position_y":-6.14751,"position_z":16.7275,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104486,"id":181278,"map":557,"orientation":4.15388,"phaseMask":1,"position_x":-220.683,"position_y":29.1267,"position_z":16.7317,"rotation0":0,"rotation1":0,"rotation2":-0.874619,"rotation3":0.48481,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104487,"id":181556,"map":557,"orientation":2.84488,"phaseMask":1,"position_x":-369.378,"position_y":-242.433,"position_z":1.87701,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104488,"id":181557,"map":557,"orientation":2.84488,"phaseMask":1,"position_x":-369.378,"position_y":-242.433,"position_z":1.87701,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104489,"id":181569,"map":557,"orientation":2.84488,"phaseMask":1,"position_x":-369.378,"position_y":-242.433,"position_z":1.87701,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104490,"id":181556,"map":557,"orientation":5.3058,"phaseMask":1,"position_x":-354.641,"position_y":-150.547,"position_z":3.43339,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104491,"id":181557,"map":557,"orientation":5.3058,"phaseMask":1,"position_x":-354.641,"position_y":-150.547,"position_z":3.43339,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104492,"id":181569,"map":557,"orientation":5.3058,"phaseMask":1,"position_x":-354.641,"position_y":-150.547,"position_z":3.43339,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3792,"guid":104493,"id":181556,"map":557,"orientation":0.122173,"phaseMask":1,"position_x":-417.15,"position_y":-166.794,"position_z":0.833513,"rotation0":0,"rotation1":0,"rotation2":0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3792,"guid":104494,"id":181557,"map":557,"orientation":0.122173,"phaseMask":1,"position_x":-417.15,"position_y":-166.794,"position_z":0.833513,"rotation0":0,"rotation1":0,"rotation2":0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3792,"guid":104495,"id":181569,"map":557,"orientation":0.122173,"phaseMask":1,"position_x":-417.15,"position_y":-166.794,"position_z":0.833513,"rotation0":0,"rotation1":0,"rotation2":0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104496,"id":181556,"map":557,"orientation":3.87463,"phaseMask":1,"position_x":-358.643,"position_y":-85.6369,"position_z":2.8462,"rotation0":0,"rotation1":0,"rotation2":-0.93358,"rotation3":0.358368,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104497,"id":181557,"map":557,"orientation":3.87463,"phaseMask":1,"position_x":-358.643,"position_y":-85.6369,"position_z":2.8462,"rotation0":0,"rotation1":0,"rotation2":-0.93358,"rotation3":0.358368,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104498,"id":181569,"map":557,"orientation":3.87463,"phaseMask":1,"position_x":-358.643,"position_y":-85.6369,"position_z":2.8462,"rotation0":0,"rotation1":0,"rotation2":-0.93358,"rotation3":0.358368,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104499,"id":181556,"map":557,"orientation":4.66003,"phaseMask":1,"position_x":-390.365,"position_y":-85.0705,"position_z":2.39504,"rotation0":0,"rotation1":0,"rotation2":-0.725374,"rotation3":0.688355,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104500,"id":181557,"map":557,"orientation":4.66003,"phaseMask":1,"position_x":-390.365,"position_y":-85.0705,"position_z":2.39504,"rotation0":0,"rotation1":0,"rotation2":-0.725374,"rotation3":0.688355,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104501,"id":181569,"map":557,"orientation":4.66003,"phaseMask":1,"position_x":-390.365,"position_y":-85.0705,"position_z":2.39504,"rotation0":0,"rotation1":0,"rotation2":-0.725374,"rotation3":0.688355,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104502,"id":181556,"map":557,"orientation":3.31614,"phaseMask":1,"position_x":-329.146,"position_y":-69.739,"position_z":0.956257,"rotation0":0,"rotation1":0,"rotation2":-0.996194,"rotation3":0.087165,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104503,"id":181557,"map":557,"orientation":3.31614,"phaseMask":1,"position_x":-329.146,"position_y":-69.739,"position_z":0.956257,"rotation0":0,"rotation1":0,"rotation2":-0.996194,"rotation3":0.087165,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104504,"id":181569,"map":557,"orientation":3.31614,"phaseMask":1,"position_x":-329.146,"position_y":-69.739,"position_z":0.956257,"rotation0":0,"rotation1":0,"rotation2":-0.996194,"rotation3":0.087165,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104505,"id":181556,"map":557,"orientation":5.49779,"phaseMask":1,"position_x":-306.768,"position_y":18.0337,"position_z":15.934,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104506,"id":181557,"map":557,"orientation":5.49779,"phaseMask":1,"position_x":-306.768,"position_y":18.0337,"position_z":15.934,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104507,"id":181569,"map":557,"orientation":5.49779,"phaseMask":1,"position_x":-306.768,"position_y":18.0337,"position_z":15.934,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104508,"id":181556,"map":557,"orientation":5.96903,"phaseMask":1,"position_x":-245.643,"position_y":-3.16959,"position_z":15.0684,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104509,"id":181557,"map":557,"orientation":5.96903,"phaseMask":1,"position_x":-245.643,"position_y":-3.16959,"position_z":15.0684,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104510,"id":181569,"map":557,"orientation":5.96903,"phaseMask":1,"position_x":-245.643,"position_y":-3.16959,"position_z":15.0684,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104511,"id":181556,"map":557,"orientation":5.84685,"phaseMask":1,"position_x":-269.036,"position_y":42.9415,"position_z":30.2597,"rotation0":0,"rotation1":0,"rotation2":-0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104512,"id":181557,"map":557,"orientation":5.84685,"phaseMask":1,"position_x":-269.036,"position_y":42.9415,"position_z":30.2597,"rotation0":0,"rotation1":0,"rotation2":-0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":46597,"animprogress":255,"areaId":3792,"guid":104513,"id":181569,"map":557,"orientation":5.84685,"phaseMask":1,"position_x":-269.036,"position_y":42.9415,"position_z":30.2597,"rotation0":0,"rotation1":0,"rotation2":-0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3792},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150032,"id":184194,"map":557,"orientation":0,"phaseMask":1,"position_x":6.657,"position_y":1.041,"position_z":-2.005,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150033,"id":184193,"map":557,"orientation":0,"phaseMask":1,"position_x":6.657,"position_y":1.041,"position_z":-2.005,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":2134514,"id":185522,"map":557,"orientation":1.43332,"phaseMask":1,"position_x":-235.563,"position_y":-13.4403,"position_z":17.066,"rotation0":0,"rotation1":0,"rotation2":0.65687,"rotation3":0.754004,"spawnMask":2,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":2134515,"id":185460,"map":557,"orientation":1.43332,"phaseMask":1,"position_x":-235.563,"position_y":-13.4403,"position_z":17.066,"rotation0":0,"rotation1":0,"rotation2":0.65687,"rotation3":0.754004,"spawnMask":2,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":2134516,"id":185460,"map":557,"orientation":0.284522,"phaseMask":1,"position_x":8.73419,"position_y":-223.864,"position_z":-0.954936,"rotation0":0,"rotation1":0,"rotation2":0.141782,"rotation3":0.989898,"spawnMask":2,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":2134517,"id":185519,"map":557,"orientation":0.284522,"phaseMask":1,"position_x":8.73419,"position_y":-223.864,"position_z":-0.954936,"rotation0":0,"rotation1":0,"rotation2":0.141782,"rotation3":0.989898,"spawnMask":2,"spawntimesecs":300,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/AuchindounEthereal":"c4b25cc99205efa59edd72c03c9d5db3c6c8aa71da804120f23089203ffbd2ee","patch/World/maps/AuchindounEthereal":"448564e79dde874a2d40adde24b41b0efc8d0071a66b35cf88aa6c711ff85d86"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/mana-tombs/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["14/14 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"auchenai-crypts","title":"Auchindoun: Auchenai Crypts","mapId":558,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[65,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Auchindoun: Auchenai Crypts","theme":"Instanced dungeon","summary":"Fight through Auchindoun: Auchenai Crypts, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Auchindoun: Auchenai Crypts...","unchartedAreaName":"Uncharted Auchindoun: Auchenai Crypts","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":524.7134},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/558-auchindoundraenei/visual.glb","checksum":"7349adf03fda39bad8a7dc5fd392ab544488d7bc2b31868762765d42f27f9821","size":2995532,"triangleCount":63745}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/558-auchindoundraenei/collision.glb","checksum":"e88f28de460fd3373ffec258840ebe62deedaf3df84b7d66cb98fa83b4fe0baa","size":611904,"triangleCount":56229}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/558-auchindoundraenei/navigation.glb","checksum":"783770eef6c686c74ddb736af3ae9450796f824f2ed66b3d7e95f83c1dc70978","size":161076,"triangleCount":11974}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-602.0914,-22.7856,-476.2105],"max":[126.6772,51.9687,73.4989]},"entrance":{"name":"Auchindoun: Auchenai Crypts Entrance","footPosition":[-260.5229,0.1597,-12.1125],"forward":[0.9980827116769375,0,0.06189426994166059],"yaw":1.50886247010488},"areas":[{"id":"entrance","name":"Auchindoun: Auchenai Crypts Entrance","center":[-260.5229,0.1597,-12.1125],"radius":35},{"id":"area-shirrak-the-dead-watcher","name":"Shirrak the Dead Watcher's Encounter","center":[-231.5071,26.649,-175.4055],"radius":42},{"id":"area-exarch-maladaar","name":"Exarch Maladaar's Encounter","center":[-350.5515,26.8694,-400.0935],"radius":42}],"entities":{"entry-18506":{"id":"entry-18506","kind":"mob","name":"Raging Soul","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-25873-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-18493":{"id":"entry-18493","kind":"mob","name":"Auchenai Soulpriest","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17924-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18495":{"id":"entry-18495","kind":"mob","name":"Auchenai Vindicator","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17942-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18371":{"id":"entry-18371","kind":"boss","name":"Shirrak the Dead Watcher","title":"Dungeon Boss","hasLoot":true,"combat":{"level":66,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-36383","name":"Carnivorous Bite","spellId":36383,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6379,"damageMultiplier":1.35},{"id":"spell-32265","name":"Attract Magic","spellId":32265,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6379,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-18916-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.05,"labelHeight":17.0335,"markerRadius":4.1136}}},"entry-18497":{"id":"entry-18497","kind":"mob","name":"Auchenai Monk","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17910-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18524":{"id":"entry-18524","kind":"mob","name":"Angered Skeleton","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32885","name":"Infuriate","spellId":32885,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6431,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17970-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0038,"labelHeight":4.643,"markerRadius":0.7206}}},"entry-18521":{"id":"entry-18521","kind":"mob","name":"Raging Skeleton","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17991-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0038,"labelHeight":4.643,"markerRadius":0.7206}}},"entry-18702":{"id":"entry-18702","kind":"mob","name":"Auchenai Necromancer","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-18077-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18700":{"id":"entry-18700","kind":"mob","name":"Reanimated Bones","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-13444","name":"Sunder Armor","spellId":13444,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4413,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-18138-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":2.824,"markerRadius":0.65}}},"entry-18373":{"id":"entry-18373","kind":"boss","name":"Exarch Maladaar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":67,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32346","name":"Stolen Soul","spellId":32346,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4858,"damageMultiplier":1.35},{"id":"spell-32421","name":"Soul Scream","spellId":32421,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4858,"damageMultiplier":1.35},{"id":"spell-32422","name":"Ribbon of Souls","spellId":32422,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4858,"damageMultiplier":1.35},{"id":"spell-32424","name":"Summon Avatar","spellId":32424,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4858,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17715-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.0631,"markerRadius":1.2032}}},"entry-18558":{"id":"entry-18558","kind":"mob","name":"Phasing Sorcerer","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-12466","name":"Fireball","spellId":12466,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6482,"damageMultiplier":1.12},{"id":"spell-15043","name":"Frostbolt","spellId":15043,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":6482,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17932-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18559":{"id":"entry-18559","kind":"mob","name":"Phasing Stalker","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15547","name":"Shoot","spellId":15547,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4946,"damageMultiplier":1.12},{"id":"spell-31975","name":"Serpent Sting","spellId":31975,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4946,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17938-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18557":{"id":"entry-18557","kind":"mob","name":"Phasing Cleric","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-33324","name":"Major Heal","spellId":33324,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":6856,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":0.9},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-25028","name":"Fire Blast","spellId":25028,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":6856,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17928-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}},"entry-18556":{"id":"entry-18556","kind":"mob","name":"Phasing Soldier","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32828","name":"Protection Aura","spellId":32828,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5725,"damageMultiplier":1.12},{"id":"spell-11972","name":"Shield Bash","spellId":11972,"delivery":"area","target":"self","school":"physical","animation":"attack","range":0,"cooldownMs":5725,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-11972","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/auchenai-crypts/creatures/display-17920-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.941,"markerRadius":0.7821}}}},"staticSpawns":[{"id":"creature-12707","entityId":"entry-18506","position":[-330.8679,15.391,-183.2255],"yaw":-6.0161,"spawnMask":3},{"id":"creature-12708","entityId":"entry-18506","position":[-342.6495,15.6103,-177.4255],"yaw":-3.32672,"spawnMask":3},{"id":"creature-12709","entityId":"entry-18506","position":[-349.5557,15.6578,-172.7195],"yaw":-0.466603,"spawnMask":3},{"id":"creature-12710","entityId":"entry-18506","position":[-351.8465,15.6725,-170.0025],"yaw":-3.0258,"spawnMask":3},{"id":"creature-83352","entityId":"entry-18493","position":[-372.7712,0.2137,-3.7433],"yaw":-1.49625,"spawnMask":3},{"id":"creature-83353","entityId":"entry-18493","position":[-369.5259,0.2143,-4.0377],"yaw":-1.61406,"spawnMask":3},{"id":"creature-83356","entityId":"entry-18493","position":[-374.8684,4.5415,-51.5173],"yaw":-4.61977,"spawnMask":3},{"id":"creature-83357","entityId":"entry-18493","position":[-369.885,4.5415,-51.5925],"yaw":-4.63549,"spawnMask":3},{"id":"creature-83358","entityId":"entry-18493","position":[-366.0834,4.5419,28.4989],"yaw":-1.48604,"spawnMask":3},{"id":"creature-83360","entityId":"entry-18493","position":[-367.6656,0.2216,-20.7499],"yaw":-4.71638,"spawnMask":3},{"id":"creature-83361","entityId":"entry-18493","position":[-363.8247,0.2186,-20.8447],"yaw":-4.65747,"spawnMask":3},{"id":"creature-83363","entityId":"entry-18493","position":[-360.4961,4.542,28.2792],"yaw":-1.62331,"spawnMask":3},{"id":"creature-83368","entityId":"entry-18493","position":[-422.7654,4.542,27.3554],"yaw":-1.50566,"spawnMask":3},{"id":"creature-83369","entityId":"entry-18495","position":[-401.1894,0.2835,-16.4971],"yaw":-0.661361,"spawnMask":3},{"id":"creature-83371","entityId":"entry-18493","position":[-429.9804,4.542,26.9984],"yaw":-1.52137,"spawnMask":3},{"id":"creature-83373","entityId":"entry-18495","position":[-531.1564,0.2232,-23.2217],"yaw":-3.60657,"spawnMask":3},{"id":"creature-83375","entityId":"entry-18493","position":[-413.9834,6.6036,-31.6169],"yaw":-5.95491,"spawnMask":3},{"id":"creature-83376","entityId":"entry-18493","position":[-406.2064,0.1512,-9.2324],"yaw":-4.13282,"spawnMask":3},{"id":"creature-83377","entityId":"entry-18493","position":[-417.7044,10.1965,-39.6498],"yaw":-0.999043,"spawnMask":3},{"id":"creature-83380","entityId":"entry-18493","position":[-512.7884,0.2167,8.3199],"yaw":-1.48207,"spawnMask":3},{"id":"creature-83381","entityId":"entry-18493","position":[-525.8444,0.2203,-27.8795],"yaw":-0.700594,"spawnMask":3},{"id":"creature-83382","entityId":"entry-18493","position":[-473.1954,0.1802,-15.2665],"yaw":-1.93759,"spawnMask":3},{"id":"creature-83384","entityId":"entry-18493","position":[-509.8224,26.8716,-166.4635],"yaw":-5.4012,"spawnMask":3},{"id":"creature-83387","entityId":"entry-18493","position":[-506.7214,26.8716,-175.4755],"yaw":-6.26512,"spawnMask":3},{"id":"creature-83388","entityId":"entry-18371","position":[-231.5071,26.649,-175.4055],"yaw":-0.0185413,"spawnMask":3},{"id":"creature-83389","entityId":"entry-18497","position":[-470.5904,0.1587,-7.3589],"yaw":-5.00851,"spawnMask":3},{"id":"creature-83393","entityId":"entry-18524","position":[-146.9924,26.6844,-258.3605],"yaw":-5.15143,"spawnMask":3},{"id":"creature-83394","entityId":"entry-18497","position":[-155.3964,26.8694,-173.2165],"yaw":-0.0691125,"spawnMask":3},{"id":"creature-83395","entityId":"entry-18497","position":[-303.202,13.7388,-178.9485],"yaw":-3.19814,"spawnMask":3},{"id":"creature-83396","entityId":"entry-18521","position":[-124.0644,26.4186,-305.1545],"yaw":-0.483808,"spawnMask":3},{"id":"creature-83397","entityId":"entry-18521","position":[-134.0154,25.8044,-300.7815],"yaw":-3.51466,"spawnMask":3},{"id":"creature-83398","entityId":"entry-18524","position":[-125.6434,26.7831,-293.2745],"yaw":-3.51702,"spawnMask":3},{"id":"creature-83399","entityId":"entry-18524","position":[-110.1444,31.9687,-288.8995],"yaw":-6.18108,"spawnMask":3},{"id":"creature-83400","entityId":"entry-18524","position":[-142.4734,27.6237,-307.4665],"yaw":-0.650304,"spawnMask":3},{"id":"creature-83401","entityId":"entry-18521","position":[-160.6444,26.7425,-267.5755],"yaw":-1.07756,"spawnMask":3},{"id":"creature-83402","entityId":"entry-18521","position":[-127.5004,26.0401,-279.3415],"yaw":-3.96312,"spawnMask":3},{"id":"creature-83403","entityId":"entry-18521","position":[-145.6784,27.6735,-275.4225],"yaw":-0.401329,"spawnMask":3},{"id":"creature-83407","entityId":"entry-18497","position":[-300.2911,13.4662,-172.4385],"yaw":-3.20992,"spawnMask":3},{"id":"creature-83408","entityId":"entry-18497","position":[-509.9004,26.8716,-183.7575],"yaw":-0.649528,"spawnMask":3},{"id":"creature-83409","entityId":"entry-18497","position":[-158.6374,26.8694,-179.0195],"yaw":-0.0251305,"spawnMask":3},{"id":"creature-83410","entityId":"entry-18521","position":[-141.1864,26.9818,-263.6885],"yaw":-1.70588,"spawnMask":3},{"id":"creature-83411","entityId":"entry-18521","position":[-142.0624,26.8713,-328.5695],"yaw":-3.27667,"spawnMask":3},{"id":"creature-83412","entityId":"entry-18521","position":[-151.4264,29.0617,-327.2965],"yaw":-2.84627,"spawnMask":3},{"id":"creature-83413","entityId":"entry-18524","position":[-156.1694,27.5694,-306.2645],"yaw":-4.85533,"spawnMask":3},{"id":"creature-83414","entityId":"entry-18524","position":[-152.4864,26.8402,-318.6955],"yaw":-1.47811,"spawnMask":3},{"id":"creature-83417","entityId":"entry-18700","position":[-220.0074,26.8672,-393.5495],"yaw":-1.59355,"spawnMask":3},{"id":"creature-83418","entityId":"entry-18700","position":[-230.5529,26.8658,-387.7795],"yaw":-4.23249,"spawnMask":3},{"id":"creature-83419","entityId":"entry-18700","position":[-230.7401,26.8656,-381.3275],"yaw":-4.85924,"spawnMask":3},{"id":"creature-83420","entityId":"entry-18700","position":[-249.8589,26.8834,-369.0495],"yaw":-1.29667,"spawnMask":3},{"id":"creature-83421","entityId":"entry-18700","position":[-244.6859,26.8684,-377.9595],"yaw":-0.688768,"spawnMask":3},{"id":"creature-83422","entityId":"entry-18700","position":[-224.4854,26.8672,-385.9765],"yaw":-4.28982,"spawnMask":3},{"id":"creature-83424","entityId":"entry-18700","position":[-221.6848,26.8696,-378.8045],"yaw":-1.94305,"spawnMask":3},{"id":"creature-83425","entityId":"entry-18700","position":[-229.7159,26.8787,-374.4025],"yaw":-4.85924,"spawnMask":3},{"id":"creature-83428","entityId":"entry-18700","position":[-273.4978,26.8639,-375.8825],"yaw":-5.58023,"spawnMask":3},{"id":"creature-83429","entityId":"entry-18700","position":[-223.0881,30.0126,-414.8725],"yaw":-4.98489,"spawnMask":3},{"id":"creature-83430","entityId":"entry-18700","position":[-225.6118,28.3569,-423.6405],"yaw":-5.15375,"spawnMask":3},{"id":"creature-83431","entityId":"entry-18700","position":[-242.6692,26.8651,-409.3995],"yaw":-0.0997068,"spawnMask":3},{"id":"creature-83432","entityId":"entry-18700","position":[-259.5261,26.8752,-372.7725],"yaw":-3.4408,"spawnMask":3},{"id":"creature-83433","entityId":"entry-18700","position":[-246.5746,27.9265,-370.3645],"yaw":-2.95621,"spawnMask":3},{"id":"creature-83434","entityId":"entry-18700","position":[-229.469,31.2524,-416.9275],"yaw":-0.940083,"spawnMask":3},{"id":"creature-83435","entityId":"entry-18700","position":[-226.7714,29.4134,-422.0095],"yaw":-1.03826,"spawnMask":3},{"id":"creature-83436","entityId":"entry-18700","position":[-242.2113,26.8851,-427.0685],"yaw":-4.62753,"spawnMask":3},{"id":"creature-83437","entityId":"entry-18700","position":[-244.4577,26.8651,-413.9325],"yaw":-4.39584,"spawnMask":3},{"id":"creature-83438","entityId":"entry-18700","position":[-269.7558,26.8639,-373.3435],"yaw":-2.54545,"spawnMask":3},{"id":"creature-83439","entityId":"entry-18700","position":[-217.5756,26.8677,-411.8115],"yaw":-4.78854,"spawnMask":3},{"id":"creature-83440","entityId":"entry-18700","position":[-261.4297,21.9176,-412.9405],"yaw":-4.51757,"spawnMask":3},{"id":"creature-83441","entityId":"entry-18700","position":[-259.7775,19.6817,-404.1505],"yaw":-6.18811,"spawnMask":3},{"id":"creature-83442","entityId":"entry-18700","position":[-248.9691,24.4983,-403.9015],"yaw":-1.54876,"spawnMask":3},{"id":"creature-83443","entityId":"entry-18700","position":[-256.0613,26.8988,-430.6525],"yaw":-4.0801,"spawnMask":3},{"id":"creature-83444","entityId":"entry-18700","position":[-257.6425,26.2,-418.3755],"yaw":-5.4192,"spawnMask":3},{"id":"creature-83445","entityId":"entry-18700","position":[-254.4513,23.2226,-414.6385],"yaw":-3.38031,"spawnMask":3},{"id":"creature-83446","entityId":"entry-18700","position":[-306.7885,25.8359,-417.8585],"yaw":-6.06009,"spawnMask":3},{"id":"creature-83447","entityId":"entry-18700","position":[-296.5642,24.6177,-416.4635],"yaw":-0.65105,"spawnMask":3},{"id":"creature-83448","entityId":"entry-18700","position":[-269.2278,19.6897,-409.4285],"yaw":-6.04909,"spawnMask":3},{"id":"creature-83449","entityId":"entry-18700","position":[-289.526,26.8622,-421.8255],"yaw":-0.65105,"spawnMask":3},{"id":"creature-83450","entityId":"entry-18700","position":[-298.0091,24.1617,-415.8665],"yaw":-6.06009,"spawnMask":3},{"id":"creature-83451","entityId":"entry-18700","position":[-302.8743,26.8822,-431.2105],"yaw":-3.53425,"spawnMask":3},{"id":"creature-83452","entityId":"entry-18700","position":[-217.6707,26.8652,-420.2505],"yaw":-3.11956,"spawnMask":3},{"id":"creature-83453","entityId":"entry-18373","position":[-350.5515,26.8694,-400.0935],"yaw":-3.18791,"spawnMask":3},{"id":"creature-88277","entityId":"entry-18700","position":[-293.0082,26.8688,-429.0265],"yaw":-2.75199,"spawnMask":3},{"id":"creature-88278","entityId":"entry-18700","position":[-266.9746,23.2849,-385.0495],"yaw":-1.13328,"spawnMask":3},{"id":"creature-88279","entityId":"entry-18700","position":[-283.4083,26.8623,-379.4895],"yaw":-0.444485,"spawnMask":3},{"id":"creature-88280","entityId":"entry-18700","position":[-291.0431,26.8732,-375.6865],"yaw":-0.670679,"spawnMask":3},{"id":"creature-88281","entityId":"entry-18700","position":[-313.2063,27.863,-378.0775],"yaw":-5.56842,"spawnMask":3},{"id":"creature-88283","entityId":"entry-18700","position":[-318.4779,26.8649,-389.2345],"yaw":-4.16177,"spawnMask":3},{"id":"creature-88284","entityId":"entry-18700","position":[-304.5187,24.0183,-384.4295],"yaw":-2.7567,"spawnMask":3},{"id":"creature-88285","entityId":"entry-18700","position":[-301.0102,24.5049,-383.4635],"yaw":-3.13604,"spawnMask":3},{"id":"creature-88286","entityId":"entry-18700","position":[-288.4804,24.5476,-383.3945],"yaw":-3.13604,"spawnMask":3},{"id":"creature-88287","entityId":"entry-18700","position":[-303.0664,22.9005,-393.6795],"yaw":-4.95424,"spawnMask":3},{"id":"creature-88288","entityId":"entry-18700","position":[-301.6226,21.7996,-391.6555],"yaw":-5.70587,"spawnMask":3},{"id":"creature-88289","entityId":"entry-18700","position":[-313.2088,26.8889,-369.6495],"yaw":-3.00331,"spawnMask":3},{"id":"creature-88290","entityId":"entry-18700","position":[-301.1179,26.9016,-368.8945],"yaw":-3.27191,"spawnMask":3},{"id":"creature-88291","entityId":"entry-18700","position":[-275.1063,23.9191,-415.5715],"yaw":-2.49044,"spawnMask":3}],"roamingPacks":[{"id":"patrol-83372","name":"Auchenai Vindicator Patrol","speed":1.15,"pathId":833720,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-522.0024,26.8716,-67.069],[-521.6474,26.8717,-128.0725]],"members":[{"id":"member","entityId":"entry-18495","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83374","name":"Auchenai Vindicator Patrol","speed":1.15,"pathId":833740,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-138.9864,26.8707,-397.7835],[-139.1254,26.8707,-347.0215],[-139.3354,26.8696,-397.7965],[-186.9869,26.8698,-398.6215]],"members":[{"id":"member","entityId":"entry-18495","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83378","name":"Auchenai Vindicator Patrol","speed":1.15,"pathId":833780,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-443.7564,25.9718,-171.5815],[-426.9394,12.9369,-171.3965],[-390.2544,14.9955,-171.9135],[-349.4527,15.6568,-170.6285],[-328.9751,15.3509,-171.6065],[-390.2494,14.9953,-172.6905],[-425.5394,12.8439,-171.5905],[-443.9224,26.1169,-172.1195],[-446.1404,26.4019,-172.2405]],"members":[{"id":"member","entityId":"entry-18495","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83379","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833790,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-382.5304,0.2988,-18.42],[-350.9717,0.1747,-18.6709],[-350.1863,0.1947,-41.2207],[-382.402,0.6633,-41.6067]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83383","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833830,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-383.3374,0.4304,-6.8388],[-350.9228,0.1705,-7.5584],[-350.0986,0.157,16.8597],[-383.4954,0.1566,17.3539]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83385","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833850,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-443.9584,26.152,-179.3405],[-427.1064,13.0697,-179.4845],[-389.5794,15.0202,-177.5615],[-347.4678,15.6662,-178.2455],[-329.0984,15.3601,-178.2585],[-387.8654,15.0804,-178.5355],[-424.6804,12.8511,-178.7055],[-443.6494,25.8801,-179.0545],[-446.1674,26.4673,-179.1455]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83386","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833860,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-550.7474,0.2124,-15.5783],[-551.7834,13.6935,9.6057],[-551.3284,13.7195,17.4085],[-548.7854,13.7169,20.6125],[-540.3194,13.6752,21.3992],[-520.3694,26.9123,20.2415],[-500.3074,26.9021,21.5478],[-493.4874,26.9119,19.851],[-491.4924,26.9079,13.8743],[-497.7734,28.9061,-8.719],[-493.7354,27.3603,-21.4457],[-492.8484,26.8715,-37.4449],[-495.3024,26.8715,-42.4104],[-498.9764,26.8716,-44.7264],[-509.2094,27.3807,-44.5943],[-521.4774,26.879,-44.7816],[-509.2094,27.3807,-44.5943],[-498.9764,26.8716,-44.7264],[-495.3024,26.8715,-42.4104],[-492.8484,26.8715,-37.4449],[-493.7354,27.3603,-21.4457],[-497.7734,28.9061,-8.719],[-491.4924,26.9079,13.8743],[-493.4874,26.9119,19.851],[-500.3074,26.9021,21.5478],[-520.3694,26.9123,20.2415],[-540.3194,13.6752,21.3992],[-548.7854,13.7169,20.6125],[-551.3284,13.7195,17.4085],[-551.7834,13.6936,9.613]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83390","name":"Auchenai Monk Patrol","speed":1.15,"pathId":833900,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-421.9154,0.1525,-9.9037],[-431.2694,0.1534,-9.0036],[-441.0064,0.1544,-10.0508],[-447.1364,0.1542,-3.2391],[-447.1154,0.323,4.8242],[-446.8144,0.2492,14.7451],[-440.5414,0.1701,17.8798],[-436.9604,0.18,18.9359],[-435.9284,4.5114,26.3879],[-433.0184,0.18,18.5662],[-415.4184,0.1886,18.1909],[-412.6624,0.1834,17.2782],[-411.6514,0.1511,8.2658],[-413.1914,0.3757,-1.5069],[-412.9064,0.1516,-9.3704],[-412.0204,0.3456,-14.7409],[-408.0734,0.4005,-15.4962]],"members":[{"id":"member","entityId":"entry-18497","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83391","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833910,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-521.2754,26.8716,-97.2035],[-521.5374,26.8716,-63.6022],[-521.2754,26.8716,-97.2035],[-521.5364,26.8716,-131.0815],[-521.5374,26.8716,-63.6022]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83392","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":833920,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-449.1244,26.5969,-175.9385],[-425.9964,12.8439,-175.5445],[-405.0724,13.637,-175.3145],[-387.4144,15.0547,-175.2645],[-363.6622,15.6491,-175.4805],[-346.9559,15.6671,-175.0265],[-330.6933,15.4161,-174.8525],[-346.9559,15.6671,-175.0265],[-363.6622,15.6491,-175.4805],[-387.4144,15.0547,-175.2645],[-405.0724,13.637,-175.3145],[-425.9964,12.8439,-175.5445]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83404","name":"Auchenai Monk Patrol","speed":1.15,"pathId":834040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-505.1624,0.2097,1.6528],[-520.5684,0.2124,1.3376]],"members":[{"id":"member","entityId":"entry-18497","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83405","name":"Auchenai Soulpriest Patrol","speed":1.15,"pathId":834050,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-177.1764,26.8695,-400.3785],[-161.2174,26.8689,-400.4025],[-142.9394,26.8701,-400.1085],[-138.9724,26.8706,-396.9945],[-137.4394,26.8731,-387.3465],[-137.5354,26.8713,-354.9515],[-137.4394,26.8731,-387.3465],[-138.9724,26.8706,-396.9945],[-142.9394,26.8701,-400.1085],[-161.2174,26.8689,-400.4025]],"members":[{"id":"member","entityId":"entry-18493","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83406","name":"Auchenai Monk Patrol","speed":1.15,"pathId":834060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-551.3204,0.4924,-8.5597],[-551.4384,7.2755,0.2935],[-551.5244,12.2432,6.7279],[-551.2754,13.6802,8.9252],[-551.0214,13.7079,20.7597],[-538.9454,13.7615,20.6311],[-533.8594,17.5738,20.6677],[-522.3264,26.3776,20.5204],[-520.9544,26.9107,20.5438],[-498.2634,26.9124,20.2342],[-492.8914,27.0229,10.9675],[-493.8324,27.1096,-35.6361],[-498.2084,26.8716,-44.8249],[-519.8714,27.108,-44.5594],[-491.4134,26.8715,-44.4135],[-492.0944,26.9104,20.6559],[-521.2764,26.9192,18.7596],[-527.6584,22.309,18.9305],[-538.5204,14.064,19.1257],[-545.7944,13.728,16.9494],[-548.0664,13.672,8.5066],[-550.1884,7.8548,1.0527],[-550.9584,0.911,-8.0146],[-550.9014,-2.7856,-13.1428]],"members":[{"id":"member","entityId":"entry-18497","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83415","name":"Auchenai Necromancer Patrol","speed":1.15,"pathId":834150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-240.7465,26.865,-390.0175],[-235.7562,26.8678,-379.4925]],"members":[{"id":"member","entityId":"entry-18702","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83416","name":"Auchenai Necromancer Patrol","speed":1.15,"pathId":834160,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-293.7003,26.8697,-378.2925],[-305.7179,26.8953,-370.4775]],"members":[{"id":"member","entityId":"entry-18702","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83423","name":"Auchenai Necromancer Patrol","speed":1.15,"pathId":834230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-241.8959,26.8933,-429.4275],[-250.7578,26.8834,-425.0625]],"members":[{"id":"member","entityId":"entry-18702","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83426","name":"Auchenai Necromancer Patrol","speed":1.15,"pathId":834260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-271.133,26.8628,-378.6875],[-255.4358,26.8732,-373.9105]],"members":[{"id":"member","entityId":"entry-18702","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83427","name":"Auchenai Necromancer Patrol","speed":1.15,"pathId":834270,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-289.5637,26.8644,-426.2515],[-307.2191,26.8712,-423.5305]],"members":[{"id":"member","entityId":"entry-18702","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132404","name":"Phasing Sorcerer Patrol","speed":1.15,"pathId":1324040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-343.1813,3.2108,2.4418],[-344.8943,0.0984,-12.4583],[-343.3575,3.0776,-32.0121]],"members":[{"id":"member","entityId":"entry-18558","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132406","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-385.9304,2.4849,-43.9337],[-387.0134,0.2087,-35.8562],[-385.3194,0.2367,-31.3699],[-384.6244,0.4607,-25.7346],[-386.9704,0.4926,-19.9541],[-387.5754,0.8155,-6.7321],[-385.6604,0.1819,0.5511],[-387.1034,0.451,5.4981],[-390.5214,0.45,9.6646],[-393.9004,0.2902,10.0182]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132408","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324080,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-408.5974,0.1748,15.6756],[-413.0134,0.1512,4.2828],[-413.0434,0.1512,-3.7053],[-415.1874,0.1519,-10.1628],[-418.2994,1.4348,-16.84],[-423.8044,2.1474,-18.6089],[-432.5714,2.1378,-18.6816],[-440.6824,1.58,-18.6842],[-445.2544,1.5778,-22.3477],[-449.1064,2.7613,-27.4472]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132409","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324090,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-410.0954,1.1896,-22.0926],[-411.9854,5.3397,-29.8561],[-411.9734,7.1651,-34.2168],[-415.5384,11.0342,-41.7631],[-418.9474,12.5451,-43.9591],[-425.5894,13.895,-46.3786],[-432.5244,13.8259,-48.6034],[-437.2604,13.4593,-49.5311],[-444.2424,12.4933,-51.5838]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132411","name":"Phasing Soldier Patrol","speed":1.15,"pathId":1324110,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-445.8404,4.1862,-34.417],[-438.6724,7.5818,-39.2342],[-431.2674,9.374,-38.3841],[-425.9854,10.601,-38.8798],[-419.7794,11.4136,-41.6151],[-415.1384,12.6427,-44.9338],[-409.4734,12.2342,-48.6404]],"members":[{"id":"member","entityId":"entry-18556","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132413","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324130,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-452.6334,2.0909,-30.9513],[-458.6394,0.1527,-32.6385],[-465.9294,0.1556,-32.3027],[-470.2604,0.3745,-27.8654],[-474.3604,0.1595,-18.9875],[-475.0894,0.1634,-9.7543],[-473.8044,0.162,-3.1472],[-473.3754,2.0657,2.9056]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132414","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-501.7994,28.6076,-11.9419],[-496.2554,27.4114,-16.7461],[-494.7274,27.4875,-21.9751],[-494.5064,27.5762,-29.1259],[-495.2464,27.1755,-35.2443],[-498.8414,26.8717,-39.563],[-504.8704,27.6851,-41.9379],[-510.1064,27.5604,-41.9328],[-519.7154,27.1208,-41.6247],[-527.9814,26.8905,-41.3907],[-538.4864,26.8787,-41.6651],[-547.1074,26.8715,-43.2208],[-556.0924,26.8715,-44.0469]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132416","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324160,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-518.3084,26.887,24.7988],[-529.6434,20.7596,25.5745],[-539.9644,13.7245,26.0714],[-552.0494,13.6945,25.3286],[-555.3104,13.689,24.2307],[-556.7244,13.6905,22.4092],[-557.0914,13.6987,19.2443],[-556.7324,13.7294,9.0571],[-556.5374,6.6949,-0.4668],[-557.0314,0.1998,-10.668]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132417","name":"Phasing Sorcerer Patrol","speed":1.15,"pathId":1324170,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-516.5064,26.8716,-104.4064],[-516.5154,26.8716,-103.7449],[-516.5254,26.8716,-103.0834],[-516.8834,26.8716,-101.3437],[-517.5874,26.8716,-97.9253],[-517.4114,26.8716,-97.3621],[-516.0814,26.8716,-93.106],[-516.0814,26.8716,-93.106]],"members":[{"id":"member","entityId":"entry-18558","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132420","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324200,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-536.5064,1.3493,4.0086],[-531.5154,0.2223,-0.5209],[-530.7134,0.2298,-6.6993],[-531.7304,0.2333,-11.98],[-530.6134,0.2302,-16.6596],[-527.9654,0.2222,-20.2471],[-524.3194,0.2111,-24.5009],[-522.0904,0.2044,-28.4181],[-521.9444,0.2161,-32.8045],[-523.2534,0.2143,-38.2501],[-526.7004,1.6639,-41.1299]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132421","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324210,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-527.2904,26.8716,-112.3285],[-526.8724,26.8716,-105.5293],[-526.4544,26.8716,-98.7303],[-526.2964,26.8716,-96.1735],[-526.2964,26.8716,-96.1735]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132422","name":"Phasing Soldier Patrol","speed":1.15,"pathId":1324220,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-468.8184,26.8671,-199.9065],[-468.4374,26.8554,-183.1395],[-468.2664,26.714,-164.4135],[-469.2464,26.7957,-151.4645]],"members":[{"id":"member","entityId":"entry-18556","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132425","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-548.1434,26.8716,-179.6725],[-542.6794,26.8716,-185.7215],[-536.6354,28.8216,-186.5135],[-532.2274,30.2735,-191.1035],[-525.7624,29.3536,-194.3805],[-518.9334,26.8716,-195.0775],[-513.0144,26.8716,-192.6325],[-508.8994,26.8716,-195.0175],[-505.5494,26.8716,-197.6295]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132428","name":"Phasing Stalker Patrol","speed":1.15,"pathId":1324280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-465.0784,26.6693,-152.8275],[-464.0624,26.6069,-159.5235],[-461.7704,26.541,-162.7035],[-457.2444,26.6063,-164.3575],[-451.6904,26.725,-165.1355],[-444.8304,26.3405,-165.3725],[-435.1604,19.2953,-165.1205],[-429.0564,14.5479,-164.7695]],"members":[{"id":"member","entityId":"entry-18559","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132429","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324290,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-535.1824,31.6251,-155.8525],[-529.6214,28.7373,-153.6795],[-521.8944,26.885,-152.8375],[-515.4104,26.8785,-154.3675],[-509.2734,26.8727,-157.8795],[-505.4254,26.8716,-161.6835],[-501.8324,26.8716,-168.3775],[-500.7354,26.8716,-175.3325],[-501.8054,26.8716,-183.1135],[-505.0764,26.8716,-189.4195],[-512.1454,26.8716,-194.9425],[-516.3554,26.8716,-199.0285],[-517.3854,26.8716,-202.6755]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132430","name":"Phasing Cleric Patrol","speed":1.15,"pathId":1324300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-345.8278,15.6205,-187.5365],[-346.3424,15.6435,-177.1755],[-347.3182,15.6052,-169.9885],[-346.1997,15.5512,-166.4725],[-343.5964,15.601,-164.5635],[-340.3187,15.5856,-164.4245],[-337.2762,15.4904,-167.1805],[-325.0165,15.1974,-169.7735],[-320.4585,15.0615,-170.1105],[-316.7985,14.8203,-168.6185]],"members":[{"id":"member","entityId":"entry-18557","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132431","name":"Phasing Sorcerer Patrol","speed":1.15,"pathId":1324310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-390.7884,14.9437,-180.3735],[-376.5093,15.502,-179.2585],[-370.0563,15.6338,-179.8925],[-365.6096,15.6676,-181.5525],[-363.3481,15.7089,-185.1935]],"members":[{"id":"member","entityId":"entry-18558","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132436","name":"Phasing Soldier Patrol","speed":1.15,"pathId":1324360,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-142.0844,26.872,-195.1235],[-142.9804,26.8714,-189.5395],[-144.7294,26.873,-184.6975],[-152.0104,26.8678,-181.7115]],"members":[{"id":"member","entityId":"entry-18556","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132437","name":"Phasing Sorcerer Patrol","speed":1.15,"pathId":1324370,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-138.3664,26.8717,-189.0485],[-138.2104,26.8711,-182.3465],[-138.0534,26.8705,-175.6445],[-138.0444,26.8691,-175.2335],[-137.8794,26.8708,-168.1475],[-137.8794,26.8708,-168.1475]],"members":[{"id":"member","entityId":"entry-18558","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-83388","name":"Shirrak the Dead Watcher","position":[-231.5071,26.649,-175.4055]},{"id":"creature-83453","name":"Exarch Maladaar","position":[-350.5515,26.8694,-400.0935]}],"objectiveOrder":[{"id":"creature-83388","name":"Shirrak the Dead Watcher","position":[-231.5071,26.649,-175.4055]},{"id":"creature-83453","name":"Exarch Maladaar","position":[-350.5515,26.8694,-400.0935]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":50349,"id":183441,"map":558,"orientation":1.45926,"phaseMask":1,"position_x":-19.8789,"position_y":-413.978,"position_z":26.5954,"rotation0":0,"rotation1":0,"rotation2":0.666594,"rotation3":0.745421,"spawnMask":3,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":50350,"id":183441,"map":558,"orientation":4.82627,"phaseMask":1,"position_x":-18.4475,"position_y":-356.556,"position_z":26.5944,"rotation0":0,"rotation1":0,"rotation2":0.66572,"rotation3":-0.746202,"spawnMask":3,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":50351,"id":183441,"map":558,"orientation":4.75558,"phaseMask":1,"position_x":6.70069,"position_y":-358.095,"position_z":26.6085,"rotation0":0,"rotation1":0,"rotation2":0.691673,"rotation3":-0.722211,"spawnMask":3,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":50352,"id":183441,"map":558,"orientation":2.84235,"phaseMask":1,"position_x":6.89282,"position_y":-416.851,"position_z":26.5852,"rotation0":0,"rotation1":0,"rotation2":0.988828,"rotation3":0.149064,"spawnMask":3,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":50353,"id":183441,"map":558,"orientation":4.00553,"phaseMask":1,"position_x":90.9187,"position_y":41.555,"position_z":4.26167,"rotation0":0,"rotation1":0,"rotation2":0.908143,"rotation3":-0.418659,"spawnMask":3,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":100297,"id":183441,"map":558,"orientation":-0.95993,"phaseMask":1,"position_x":62.6931,"position_y":-398.407,"position_z":29.6639,"rotation0":0,"rotation1":0,"rotation2":-0.461748,"rotation3":0.887011,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":100355,"id":183441,"map":558,"orientation":-1.55334,"phaseMask":1,"position_x":-110.03,"position_y":-269.693,"position_z":34.9605,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":100356,"id":183441,"map":558,"orientation":2.80998,"phaseMask":1,"position_x":40.8714,"position_y":12.5752,"position_z":4.04008,"rotation0":0,"rotation1":0,"rotation2":0.986286,"rotation3":0.165048,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105022,"id":181556,"map":558,"orientation":6.00393,"phaseMask":1,"position_x":173.916,"position_y":17.9607,"position_z":-1.26987,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105023,"id":181569,"map":558,"orientation":6.00393,"phaseMask":1,"position_x":173.916,"position_y":17.9607,"position_z":-1.26987,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105024,"id":181557,"map":558,"orientation":6.00393,"phaseMask":1,"position_x":173.916,"position_y":17.9607,"position_z":-1.26987,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105025,"id":181556,"map":558,"orientation":0.523598,"phaseMask":1,"position_x":119.337,"position_y":12.9238,"position_z":-1.99939,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105026,"id":181569,"map":558,"orientation":0.523598,"phaseMask":1,"position_x":119.337,"position_y":12.9238,"position_z":-1.99939,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105027,"id":181557,"map":558,"orientation":0.523598,"phaseMask":1,"position_x":119.337,"position_y":12.9238,"position_z":-1.99939,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105028,"id":181556,"map":558,"orientation":3.63029,"phaseMask":1,"position_x":231.433,"position_y":-16.9698,"position_z":2.86235,"rotation0":0,"rotation1":0,"rotation2":-0.970295,"rotation3":0.241925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105029,"id":181569,"map":558,"orientation":3.63029,"phaseMask":1,"position_x":231.433,"position_y":-16.9698,"position_z":2.86235,"rotation0":0,"rotation1":0,"rotation2":-0.970295,"rotation3":0.241925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105030,"id":181557,"map":558,"orientation":3.63029,"phaseMask":1,"position_x":231.433,"position_y":-16.9698,"position_z":2.86235,"rotation0":0,"rotation1":0,"rotation2":-0.970295,"rotation3":0.241925,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105031,"id":181556,"map":558,"orientation":0.663223,"phaseMask":1,"position_x":213.983,"position_y":-2.98043,"position_z":27.1587,"rotation0":0,"rotation1":0,"rotation2":0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105032,"id":181569,"map":558,"orientation":0.663223,"phaseMask":1,"position_x":213.983,"position_y":-2.98043,"position_z":27.1587,"rotation0":0,"rotation1":0,"rotation2":0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105033,"id":181557,"map":558,"orientation":0.663223,"phaseMask":1,"position_x":213.983,"position_y":-2.98043,"position_z":27.1587,"rotation0":0,"rotation1":0,"rotation2":0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105034,"id":181556,"map":558,"orientation":6.10865,"phaseMask":1,"position_x":177.472,"position_y":-9.88348,"position_z":-0.765356,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105035,"id":181569,"map":558,"orientation":6.10865,"phaseMask":1,"position_x":177.472,"position_y":-9.88348,"position_z":-0.765356,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105036,"id":181557,"map":558,"orientation":6.10865,"phaseMask":1,"position_x":177.472,"position_y":-9.88348,"position_z":-0.765356,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105037,"id":181556,"map":558,"orientation":4.13643,"phaseMask":1,"position_x":245.748,"position_y":-182.614,"position_z":30.4494,"rotation0":0,"rotation1":0,"rotation2":-0.878817,"rotation3":0.47716,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105038,"id":181569,"map":558,"orientation":4.13643,"phaseMask":1,"position_x":245.748,"position_y":-182.614,"position_z":30.4494,"rotation0":0,"rotation1":0,"rotation2":-0.878817,"rotation3":0.47716,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105039,"id":181557,"map":558,"orientation":4.13643,"phaseMask":1,"position_x":245.748,"position_y":-182.614,"position_z":30.4494,"rotation0":0,"rotation1":0,"rotation2":-0.878817,"rotation3":0.47716,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105040,"id":181556,"map":558,"orientation":5.42797,"phaseMask":1,"position_x":-153.854,"position_y":-290.526,"position_z":24.5789,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105041,"id":181569,"map":558,"orientation":5.42797,"phaseMask":1,"position_x":-153.854,"position_y":-290.526,"position_z":24.5789,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105042,"id":181557,"map":558,"orientation":5.42797,"phaseMask":1,"position_x":-153.854,"position_y":-290.526,"position_z":24.5789,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105043,"id":181556,"map":558,"orientation":5.2709,"phaseMask":1,"position_x":93.3528,"position_y":-393.116,"position_z":27.1238,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105044,"id":181569,"map":558,"orientation":5.2709,"phaseMask":1,"position_x":93.3528,"position_y":-393.116,"position_z":27.1238,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105045,"id":181557,"map":558,"orientation":5.2709,"phaseMask":1,"position_x":93.3528,"position_y":-393.116,"position_z":27.1238,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105046,"id":181556,"map":558,"orientation":5.14872,"phaseMask":1,"position_x":-154.215,"position_y":-256.825,"position_z":24.384,"rotation0":0,"rotation1":0,"rotation2":-0.537299,"rotation3":0.843392,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105047,"id":181569,"map":558,"orientation":5.14872,"phaseMask":1,"position_x":-154.215,"position_y":-256.825,"position_z":24.384,"rotation0":0,"rotation1":0,"rotation2":-0.537299,"rotation3":0.843392,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105048,"id":181557,"map":558,"orientation":5.14872,"phaseMask":1,"position_x":-154.215,"position_y":-256.825,"position_z":24.384,"rotation0":0,"rotation1":0,"rotation2":-0.537299,"rotation3":0.843392,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105049,"id":181556,"map":558,"orientation":1.23918,"phaseMask":1,"position_x":-133.902,"position_y":-287.211,"position_z":25.8914,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105050,"id":181569,"map":558,"orientation":1.23918,"phaseMask":1,"position_x":-133.902,"position_y":-287.211,"position_z":25.8914,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105051,"id":181557,"map":558,"orientation":1.23918,"phaseMask":1,"position_x":-133.902,"position_y":-287.211,"position_z":25.8914,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105052,"id":181278,"map":558,"orientation":2.53072,"phaseMask":1,"position_x":94.1284,"position_y":-41.6325,"position_z":4.26136,"rotation0":0,"rotation1":0,"rotation2":0.953716,"rotation3":0.300708,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105053,"id":181278,"map":558,"orientation":3.94445,"phaseMask":1,"position_x":142.376,"position_y":42.363,"position_z":4.26119,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105054,"id":181278,"map":558,"orientation":2.46091,"phaseMask":1,"position_x":81.3718,"position_y":39.9704,"position_z":4.26169,"rotation0":0,"rotation1":0,"rotation2":0.942641,"rotation3":0.333808,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105055,"id":181278,"map":558,"orientation":5.14872,"phaseMask":1,"position_x":147.044,"position_y":-17.3046,"position_z":7.97811,"rotation0":0,"rotation1":0,"rotation2":-0.537299,"rotation3":0.843392,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105056,"id":181278,"map":558,"orientation":5.09636,"phaseMask":1,"position_x":228.891,"position_y":-161.939,"position_z":26.5913,"rotation0":0,"rotation1":0,"rotation2":-0.559193,"rotation3":0.829038,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105057,"id":181278,"map":558,"orientation":2.37364,"phaseMask":1,"position_x":227.291,"position_y":19.9092,"position_z":-0.064963,"rotation0":0,"rotation1":0,"rotation2":0.927183,"rotation3":0.374608,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105058,"id":181278,"map":558,"orientation":1.97222,"phaseMask":1,"position_x":238.11,"position_y":-21.5713,"position_z":-0.103546,"rotation0":0,"rotation1":0,"rotation2":0.833885,"rotation3":0.551938,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105059,"id":181278,"map":558,"orientation":4.88692,"phaseMask":1,"position_x":-125.759,"position_y":-306.731,"position_z":26.8307,"rotation0":0,"rotation1":0,"rotation2":-0.642787,"rotation3":0.766045,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105060,"id":181278,"map":558,"orientation":1.71042,"phaseMask":1,"position_x":-131.895,"position_y":-251.102,"position_z":26.4101,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.656059,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105061,"id":181278,"map":558,"orientation":4.60767,"phaseMask":1,"position_x":-170.729,"position_y":-270.22,"position_z":31.6304,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":3790,"guid":105062,"id":181278,"map":558,"orientation":-2.60053,"phaseMask":1,"position_x":11.4308,"position_y":-382.646,"position_z":19.4112,"rotation0":0,"rotation1":0,"rotation2":-0.963629,"rotation3":0.267244,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105063,"id":181278,"map":558,"orientation":5.58505,"phaseMask":1,"position_x":-57.6584,"position_y":-360.292,"position_z":26.6024,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105064,"id":181278,"map":558,"orientation":3.85718,"phaseMask":1,"position_x":-18.5816,"position_y":-360.279,"position_z":26.5888,"rotation0":0,"rotation1":0,"rotation2":-0.936671,"rotation3":0.35021,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105065,"id":181278,"map":558,"orientation":5.61996,"phaseMask":1,"position_x":31.0407,"position_y":-359.303,"position_z":26.5985,"rotation0":0,"rotation1":0,"rotation2":-0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105066,"id":181278,"map":558,"orientation":3.75246,"phaseMask":1,"position_x":-51.5901,"position_y":-414.033,"position_z":26.5885,"rotation0":0,"rotation1":0,"rotation2":-0.953716,"rotation3":0.300708,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":46741,"animprogress":255,"areaId":3790,"guid":105067,"id":181278,"map":558,"orientation":5.42797,"phaseMask":1,"position_x":29.3026,"position_y":-409.006,"position_z":26.5865,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":3790},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150040,"id":184183,"map":558,"orientation":0.03534,"phaseMask":1,"position_x":-28.117,"position_y":-0.0599,"position_z":-0.1206,"rotation0":0,"rotation1":0,"rotation2":0.0176691,"rotation3":0.999844,"spawnMask":1,"spawntimesecs":1,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150041,"id":184184,"map":558,"orientation":0.03534,"phaseMask":1,"position_x":-28.117,"position_y":-0.0599,"position_z":-0.1206,"rotation0":0,"rotation1":0,"rotation2":0.0176691,"rotation3":0.999844,"spawnMask":2,"spawntimesecs":1,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/AuchindounDraenei":"2da215781dc7b7443a18619b0b0fefcbc9efe4ac54022daa9f460146a1d55503","patch/World/maps/AuchindounDraenei":"2e5fe324722ebe7a94f02b42d68049e8f7968845ab2d41ebed2daa6317a5440d"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/auchenai-crypts/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["14/14 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"magisters-terrace","title":"Magister's Terrace","mapId":585,"lfgDungeonIds":[],"expansion":"burning-crusade","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[70,70]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Magister's Terrace","theme":"Instanced dungeon","summary":"Fight through Magister's Terrace, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Magister's Terrace...","unchartedAreaName":"Uncharted Magister's Terrace","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":429.4714},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/585-sunwell5manfix/visual.glb","checksum":"715288f9e81fd70742ab4544e15e3531f3442e2347a3fc88fe5e1a67b2ec55e9","size":6378908,"triangleCount":140292}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/585-sunwell5manfix/collision.glb","checksum":"99a02b2b82db8f1526b5a62d6e886e099b036d670bb7ce3ed423ec7397daa3e3","size":1135004,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/585-sunwell5manfix/navigation.glb","checksum":"a3f44f11f336fdd894fc1909bd23718ecfce8fd5eb2e54246999f5a0bcdd02d1","size":195372,"triangleCount":14702}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-527.4146,-45.8705,-534.8598],"max":[-121.7323,21.7853,61.6282]},"entrance":{"name":"Magister's Terrace Entrance","footPosition":[-230.5436,-6.9147,-275.3638],"forward":[0.41232431017295823,0,0.9110371360380399],"yaw":0.42500387297762243},"areas":[{"id":"entrance","name":"Magister's Terrace Entrance","center":[-230.5436,-6.9147,-275.3638],"radius":35},{"id":"area-selin-fireheart","name":"Selin Fireheart's Encounter","center":[-465.5286,-2.2748,-274.613],"radius":42},{"id":"area-vexallus","name":"Vexallus's Encounter","center":[-454.8206,-10.438,-489.2598],"radius":42},{"id":"area-kael-thas-sunstrider","name":"Kael'thas Sunstrider's Encounter","center":[-372.0026,-20.7588,-87.9328],"radius":42}],"entities":{"entry-24664":{"id":"entry-24664","kind":"boss","name":"Kael'thas Sunstrider","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5715200000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6332,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22906-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.8927,"markerRadius":0.7407}}},"entry-24683":{"id":"entry-24683","kind":"mob","name":"Sunblade Mage Guard","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44478","name":"Glaive Throw","spellId":44478,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6426,"damageMultiplier":1.12},{"id":"spell-44475","name":"Magic Dampening Field","spellId":44475,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6426,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22580-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0361,"markerRadius":0.65}}},"entry-24684":{"id":"entry-24684","kind":"mob","name":"Sunblade Blood Knight","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22583-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0361,"markerRadius":0.65}}},"entry-24685":{"id":"entry-24685","kind":"mob","name":"Sunblade Magister","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22584-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0361,"markerRadius":0.65}}},"entry-24686":{"id":"entry-24686","kind":"mob","name":"Sunblade Warlock","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44519","name":"Incinerate","spellId":44519,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4519,"damageMultiplier":1.12},{"id":"spell-44518","name":"Immolate","spellId":44518,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":4519,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22585-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0361,"markerRadius":0.65}}},"entry-24687":{"id":"entry-24687","kind":"mob","name":"Sunblade Physician","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44599","name":"Inject Poison","spellId":44599,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5267,"damageMultiplier":1.12},{"id":"spell-44583","name":"Prayer of Mending","spellId":44583,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":5267,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22586-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.0361,"markerRadius":0.65}}},"entry-24688":{"id":"entry-24688","kind":"mob","name":"Wretched Skulker","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44533","name":"Wretched Stab","spellId":44533,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6925,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22845-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0003,"labelHeight":2.769,"markerRadius":0.65}}},"entry-24689":{"id":"entry-24689","kind":"mob","name":"Wretched Bruiser","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44534","name":"Wretched Strike","spellId":44534,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5019,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22843-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0003,"labelHeight":2.769,"markerRadius":0.65}}},"entry-24690":{"id":"entry-24690","kind":"mob","name":"Wretched Husk","combat":{"level":69,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44503","name":"Wretched Fireball","spellId":44503,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":7402,"damageMultiplier":1.12},{"id":"spell-44504","name":"Wretched Frostbolt","spellId":44504,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7402,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22844-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0003,"labelHeight":2.769,"markerRadius":0.65}}},"entry-24696":{"id":"entry-24696","kind":"mob","name":"Coilskar Witch","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22590-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.5744,"labelHeight":6.8499,"markerRadius":1.3227}}},"entry-24697":{"id":"entry-24697","kind":"mob","name":"Sister of Torment","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-44547","name":"Deadly Embrace","spellId":44547,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6048,"damageMultiplier":1.12},{"id":"spell-44640","name":"Lash of Pain","spellId":44640,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6048,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-10927-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":2.9614,"markerRadius":2.2079}}},"entry-24698":{"id":"entry-24698","kind":"mob","name":"Ethereum Smuggler","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-20419-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0623,"labelHeight":4.8389,"markerRadius":2.4145}}},"entry-24723":{"id":"entry-24723","kind":"boss","name":"Selin Fireheart","title":"Dungeon Boss","hasLoot":true,"combat":{"level":71,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5715200000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6742,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22642-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7201,"markerRadius":0.6859}}},"entry-24744":{"id":"entry-24744","kind":"boss","name":"Vexallus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":71,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.65728,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6265,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22731-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.667,"labelHeight":23.8336,"markerRadius":4.5}}},"entry-24761":{"id":"entry-24761","kind":"mob","name":"Brightscale Wyrm","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7427200000000003,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"serpent","model":{"url":"/assets/game/creatures/shared/8ec04da49e89f06bd85e7e8ecbb8c2e53ef77758bb032a1945b3d5fccecd8a6e.glb","rotationY":-1.5707963267948966,"groundOffset":0.2253,"labelHeight":5.9213,"markerRadius":0.9578}}},"entry-24777":{"id":"entry-24777","kind":"mob","name":"Sunblade Sentinel","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5715200000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22733-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":11.4091,"markerRadius":4.5}}},"entry-24560":{"id":"entry-24560","kind":"mob","name":"Priestess Delrissa","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.65728,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-22596-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0038,"labelHeight":5.4918,"markerRadius":1.1986}}},"entry-24861":{"id":"entry-24861","kind":"mob","name":"Crystal Beam","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/magisters-terrace/creatures/display-20570-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.6231,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-96762","entityId":"entry-24664","position":[-372.0026,-20.7588,-87.9328],"yaw":-4.74729,"spawnMask":3},{"id":"creature-96763","entityId":"entry-24683","position":[-347.0676,-6.8367,-259.3626],"yaw":-1.78024,"spawnMask":3},{"id":"creature-96764","entityId":"entry-24683","position":[-299.7429,-6.7312,-266.9385],"yaw":-4.76475,"spawnMask":3},{"id":"creature-96765","entityId":"entry-24683","position":[-299.1348,-6.7447,-282.3461],"yaw":-1.6057,"spawnMask":3},{"id":"creature-96766","entityId":"entry-24683","position":[-346.5076,-24.5763,-408.1558],"yaw":-1.01229,"spawnMask":3},{"id":"creature-96767","entityId":"entry-24683","position":[-338.6586,-25.2324,-387.4518],"yaw":-2.32129,"spawnMask":3},{"id":"creature-96768","entityId":"entry-24683","position":[-337.7346,-25.2421,-432.6018],"yaw":-0.925025,"spawnMask":3},{"id":"creature-96769","entityId":"entry-24683","position":[-330.9536,-25.5847,-297.7625],"yaw":-4.7822,"spawnMask":3},{"id":"creature-96770","entityId":"entry-24683","position":[-377.2196,-18.4129,-130.9488],"yaw":-3.64774,"spawnMask":3},{"id":"creature-96771","entityId":"entry-24683","position":[-324.1416,-25.4381,-247.5229],"yaw":-4.45059,"spawnMask":3},{"id":"creature-96772","entityId":"entry-24683","position":[-383.5986,-24.0362,-234.7634],"yaw":-1.48353,"spawnMask":3},{"id":"creature-96773","entityId":"entry-24683","position":[-369.6016,-25.306,-300.3559],"yaw":-0.558505,"spawnMask":3},{"id":"creature-96774","entityId":"entry-24683","position":[-370.2456,-25.2266,-400.0528],"yaw":-5.70723,"spawnMask":3},{"id":"creature-96775","entityId":"entry-24684","position":[-402.8596,-6.7488,-267.0865],"yaw":-3.21141,"spawnMask":3},{"id":"creature-96776","entityId":"entry-24684","position":[-353.4296,-6.8296,-292.2654],"yaw":-5.84685,"spawnMask":3},{"id":"creature-96777","entityId":"entry-24684","position":[-354.1506,-24.555,-399.1148],"yaw":-3.94444,"spawnMask":3},{"id":"creature-96778","entityId":"entry-24684","position":[-341.8796,-25.1967,-426.4108],"yaw":-4.08407,"spawnMask":3},{"id":"creature-96779","entityId":"entry-24684","position":[-387.1716,-25.5718,-258.1349],"yaw":-2.05949,"spawnMask":3},{"id":"creature-96780","entityId":"entry-24684","position":[-359.8366,-25.2352,-383.0578],"yaw":-0.226893,"spawnMask":3},{"id":"creature-96781","entityId":"entry-24684","position":[-370.1276,-18.4129,-133.5608],"yaw":-0.226893,"spawnMask":3},{"id":"creature-96782","entityId":"entry-24684","position":[-298.5543,-24.0362,-242.745],"yaw":-3.9619,"spawnMask":3},{"id":"creature-96783","entityId":"entry-24684","position":[-393.8036,-24.0362,-310.4882],"yaw":-5.28835,"spawnMask":3},{"id":"creature-96784","entityId":"entry-24684","position":[-374.9876,-25.4658,-303.6195],"yaw":-1.27409,"spawnMask":3},{"id":"creature-96785","entityId":"entry-24685","position":[-402.4736,-6.7467,-282.8893],"yaw":-3.07178,"spawnMask":3},{"id":"creature-96787","entityId":"entry-24685","position":[-357.5946,-6.7346,-289.2762],"yaw":-3.63029,"spawnMask":3},{"id":"creature-96788","entityId":"entry-24685","position":[-345.3136,-6.766,-254.0062],"yaw":-5.06145,"spawnMask":3},{"id":"creature-96789","entityId":"entry-24685","position":[-344.5196,-25.3626,-430.6268],"yaw":-2.94961,"spawnMask":3},{"id":"creature-96790","entityId":"entry-24685","position":[-382.3916,-25.4321,-251.8817],"yaw":-5.74213,"spawnMask":3},{"id":"creature-96791","entityId":"entry-24685","position":[-367.5376,-24.4864,-381.9288],"yaw":-4.24115,"spawnMask":3},{"id":"creature-96793","entityId":"entry-24685","position":[-313.0642,-25.3622,-254.9404],"yaw":-6.21337,"spawnMask":3},{"id":"creature-96794","entityId":"entry-24685","position":[-388.3666,-24.0336,-234.3472],"yaw":-2.82743,"spawnMask":3},{"id":"creature-96795","entityId":"entry-24685","position":[-383.2376,-25.5016,-294.0275],"yaw":-3.19395,"spawnMask":3},{"id":"creature-96796","entityId":"entry-24685","position":[-369.6446,-25.0449,-409.2678],"yaw":-0.767945,"spawnMask":3},{"id":"creature-96797","entityId":"entry-24686","position":[-405.3986,-6.8008,-280.5677],"yaw":-3.08923,"spawnMask":3},{"id":"creature-96799","entityId":"entry-24686","position":[-357.9236,-6.7525,-293.8216],"yaw":-2.77507,"spawnMask":3},{"id":"creature-96801","entityId":"entry-24686","position":[-342.6846,-6.7199,-258.1829],"yaw":-0.837758,"spawnMask":3},{"id":"creature-96802","entityId":"entry-24686","position":[-344.8896,-24.559,-400.9318],"yaw":-5.61996,"spawnMask":3},{"id":"creature-96803","entityId":"entry-24686","position":[-334.2726,-24.6092,-381.2578],"yaw":-5.02655,"spawnMask":3},{"id":"creature-96804","entityId":"entry-24686","position":[-305.9028,-24.0304,-318.0577],"yaw":-3.24631,"spawnMask":3},{"id":"creature-96805","entityId":"entry-24686","position":[-337.0276,-25.1707,-427.5268],"yaw":-5.5676,"spawnMask":3},{"id":"creature-96806","entityId":"entry-24686","position":[-326.7736,-25.4626,-302.5609],"yaw":-6.12611,"spawnMask":3},{"id":"creature-96807","entityId":"entry-24686","position":[-385.8886,-25.3697,-250.0148],"yaw":-4.62512,"spawnMask":3},{"id":"creature-96808","entityId":"entry-24686","position":[-362.8496,-25.1795,-389.0188],"yaw":-1.50098,"spawnMask":3},{"id":"creature-96809","entityId":"entry-24686","position":[-374.9286,-18.4129,-128.7878],"yaw":-4.50295,"spawnMask":3},{"id":"creature-96810","entityId":"entry-24686","position":[-316.5338,-25.3684,-250.2985],"yaw":-5.37561,"spawnMask":3},{"id":"creature-96811","entityId":"entry-24686","position":[-379.8166,-25.4175,-300.342],"yaw":-2.49582,"spawnMask":3},{"id":"creature-96812","entityId":"entry-24686","position":[-381.1726,-25.1086,-407.1268],"yaw":-2.89725,"spawnMask":3},{"id":"creature-96813","entityId":"entry-24687","position":[-405.7976,-6.7733,-270.059],"yaw":-3.1765,"spawnMask":3},{"id":"creature-96815","entityId":"entry-24687","position":[-352.7606,-6.8515,-297.1718],"yaw":-1.64061,"spawnMask":3},{"id":"creature-96816","entityId":"entry-24687","position":[-350.6056,-6.8505,-255.2931],"yaw":-2.84489,"spawnMask":3},{"id":"creature-96817","entityId":"entry-24687","position":[-354.4196,-24.5352,-407.0428],"yaw":-2.63545,"spawnMask":3},{"id":"creature-96818","entityId":"entry-24687","position":[-331.6896,-24.3003,-386.0358],"yaw":-6.12611,"spawnMask":3},{"id":"creature-96819","entityId":"entry-24687","position":[-303.8058,-24.0353,-312.2473],"yaw":-2.89725,"spawnMask":3},{"id":"creature-96820","entityId":"entry-24687","position":[-328.6916,-25.4145,-308.1143],"yaw":-1.41372,"spawnMask":3},{"id":"creature-96821","entityId":"entry-24687","position":[-315.859,-25.6304,-260.2612],"yaw":-0.872665,"spawnMask":3},{"id":"creature-96822","entityId":"entry-24687","position":[-309.3638,-24.0362,-235.5358],"yaw":-5.55015,"spawnMask":3},{"id":"creature-96823","entityId":"entry-24687","position":[-401.2856,-24.0362,-305.0483],"yaw":-1.50098,"spawnMask":3},{"id":"creature-96824","entityId":"entry-24687","position":[-376.1706,-24.7224,-413.0378],"yaw":-2.02458,"spawnMask":3},{"id":"creature-96826","entityId":"entry-24688","position":[-446.1086,-7.0888,-295.7248],"yaw":-0.331613,"spawnMask":3},{"id":"creature-96827","entityId":"entry-24688","position":[-453.9866,-7.084,-295.852],"yaw":-2.84489,"spawnMask":3},{"id":"creature-96828","entityId":"entry-24688","position":[-448.9726,-7.0261,-257.9338],"yaw":-1.55334,"spawnMask":3},{"id":"creature-96829","entityId":"entry-24688","position":[-453.6416,-7.0988,-255.2052],"yaw":-2.68781,"spawnMask":3},{"id":"creature-96831","entityId":"entry-24689","position":[-447.8666,-7.0852,-291.1859],"yaw":-5.3058,"spawnMask":3},{"id":"creature-96832","entityId":"entry-24689","position":[-445.7756,-7.0893,-292.9242],"yaw":-5.8294,"spawnMask":3},{"id":"creature-96833","entityId":"entry-24689","position":[-451.4886,-7.1129,-251.1638],"yaw":-3.66519,"spawnMask":3},{"id":"creature-96834","entityId":"entry-24689","position":[-451.9716,-7.0685,-256.9976],"yaw":-2.32129,"spawnMask":3},{"id":"creature-96835","entityId":"entry-24690","position":[-452.0136,-7.0813,-291.5685],"yaw":-3.59538,"spawnMask":3},{"id":"creature-96836","entityId":"entry-24690","position":[-450.7646,-7.0874,-297.883],"yaw":-1.91986,"spawnMask":3},{"id":"creature-96837","entityId":"entry-24690","position":[-447.5876,-7.1326,-251.6217],"yaw":-5.3058,"spawnMask":3},{"id":"creature-96838","entityId":"entry-24690","position":[-445.9546,-7.0703,-254.45],"yaw":-6.05629,"spawnMask":3},{"id":"creature-96839","entityId":"entry-24696","position":[-339.5706,-25.0583,-382.1508],"yaw":-3.75246,"spawnMask":3},{"id":"creature-96840","entityId":"entry-24696","position":[-334.2486,-25.2924,-307.8628],"yaw":-2.42601,"spawnMask":3},{"id":"creature-96841","entityId":"entry-24696","position":[-371.6546,-18.4129,-129.3338],"yaw":-5.34071,"spawnMask":3},{"id":"creature-96842","entityId":"entry-24697","position":[-333.9426,-24.8117,-389.2858],"yaw":-1.13446,"spawnMask":3},{"id":"creature-96843","entityId":"entry-24697","position":[-342.3226,-25.3379,-434.2578],"yaw":-1.8326,"spawnMask":3},{"id":"creature-96844","entityId":"entry-24697","position":[-336.5246,-25.6021,-302.2957],"yaw":-3.47321,"spawnMask":3},{"id":"creature-96845","entityId":"entry-24697","position":[-382.8836,-25.5153,-257.0744],"yaw":-0.575959,"spawnMask":3},{"id":"creature-96846","entityId":"entry-24697","position":[-362.5546,-25.0392,-379.5578],"yaw":-5.60251,"spawnMask":3},{"id":"creature-96847","entityId":"entry-24697","position":[-376.8496,-18.4129,-134.8558],"yaw":-2.47837,"spawnMask":3},{"id":"creature-96848","entityId":"entry-24698","position":[-390.3756,-25.3661,-253.3696],"yaw":-3.33358,"spawnMask":3},{"id":"creature-96849","entityId":"entry-24698","position":[-368.1596,-24.5788,-388.2528],"yaw":-2.67035,"spawnMask":3},{"id":"creature-96850","entityId":"entry-24698","position":[-372.3656,-18.4129,-136.3428],"yaw":-1.13446,"spawnMask":3},{"id":"creature-96875","entityId":"entry-24723","position":[-465.5286,-2.2748,-274.613],"yaw":-3.19395,"spawnMask":3},{"id":"creature-96876","entityId":"entry-24744","position":[-454.8206,-10.438,-489.2598],"yaw":-1.51844,"spawnMask":3},{"id":"creature-96877","entityId":"entry-24761","position":[-442.0416,-4.6455,-433.9958],"yaw":-2.61809,"spawnMask":3},{"id":"creature-96878","entityId":"entry-24761","position":[-444.4696,-7.6319,-437.2948],"yaw":-4.83488,"spawnMask":3},{"id":"creature-96879","entityId":"entry-24761","position":[-444.1806,-13.5891,-438.7128],"yaw":-1.21739,"spawnMask":3},{"id":"creature-96880","entityId":"entry-24761","position":[-440.7566,-6.9887,-435.9528],"yaw":-2.2913,"spawnMask":3},{"id":"creature-96881","entityId":"entry-24761","position":[-444.4696,-5.2837,-438.1168],"yaw":-3.09909,"spawnMask":3},{"id":"creature-96882","entityId":"entry-24761","position":[-442.3956,-8.4044,-435.5688],"yaw":-1.63534,"spawnMask":3},{"id":"creature-96883","entityId":"entry-24761","position":[-446.3726,-7.0993,-438.7378],"yaw":-5.61676,"spawnMask":3},{"id":"creature-96884","entityId":"entry-24761","position":[-444.2886,-5.5937,-440.7368],"yaw":-5.1039,"spawnMask":3},{"id":"creature-96885","entityId":"entry-24761","position":[-443.2176,-6.5611,-434.0138],"yaw":-2.23043,"spawnMask":3},{"id":"creature-96887","entityId":"entry-24761","position":[-453.2826,-5.4825,-407.9358],"yaw":-5.36926,"spawnMask":3},{"id":"creature-96888","entityId":"entry-24761","position":[-450.5816,-5.3558,-397.6738],"yaw":-6.2025,"spawnMask":3},{"id":"creature-96889","entityId":"entry-24761","position":[-447.1476,-5.074,-398.7048],"yaw":-3.49779,"spawnMask":3},{"id":"creature-96890","entityId":"entry-24761","position":[-448.5376,-4.598,-400.4408],"yaw":-5.167,"spawnMask":3},{"id":"creature-96891","entityId":"entry-24761","position":[-447.7526,-7.512,-401.6058],"yaw":-3.57202,"spawnMask":3},{"id":"creature-96892","entityId":"entry-24761","position":[-449.0036,-6.7706,-402.9048],"yaw":-0.326793,"spawnMask":3},{"id":"creature-96893","entityId":"entry-24761","position":[-450.6856,-6.6466,-399.0868],"yaw":-5.81502,"spawnMask":3},{"id":"creature-96894","entityId":"entry-24761","position":[-454.9586,-5.0159,-406.6718],"yaw":1.48987,"spawnMask":3},{"id":"creature-96895","entityId":"entry-24761","position":[-456.3726,-5.2257,-406.7838],"yaw":1.89616,"spawnMask":3},{"id":"creature-96896","entityId":"entry-24761","position":[-450.6486,-6.2615,-403.3738],"yaw":-5.09555,"spawnMask":3},{"id":"creature-96897","entityId":"entry-24761","position":[-457.1546,-10.1467,-350.0223],"yaw":-1.23444,"spawnMask":3},{"id":"creature-96898","entityId":"entry-24761","position":[-465.8996,-10.1529,-351.5219],"yaw":-3.18161,"spawnMask":3},{"id":"creature-96899","entityId":"entry-24761","position":[-482.4146,-8.9453,-352.8346],"yaw":-4.89869,"spawnMask":3},{"id":"creature-96900","entityId":"entry-24761","position":[-478.2586,-7.5087,-332.9218],"yaw":-4.82406,"spawnMask":3},{"id":"creature-96901","entityId":"entry-24761","position":[-454.3196,-10.1319,-361.1556],"yaw":-2.22432,"spawnMask":3},{"id":"creature-96902","entityId":"entry-24761","position":[-458.2016,-5.3091,-408.1568],"yaw":2.55138,"spawnMask":3},{"id":"creature-96903","entityId":"entry-24761","position":[-454.7886,-5.2405,-408.7838],"yaw":-4.15631,"spawnMask":3},{"id":"creature-96904","entityId":"entry-24761","position":[-453.2246,-5.9377,-406.6488],"yaw":-4.10846,"spawnMask":3},{"id":"creature-96905","entityId":"entry-24761","position":[-458.1956,-7.0968,-405.1068],"yaw":-0.222408,"spawnMask":3},{"id":"creature-96906","entityId":"entry-24761","position":[-453.3346,-5.3359,-404.7748],"yaw":-2.17735,"spawnMask":3},{"id":"creature-96907","entityId":"entry-24761","position":[-453.5466,-4.2338,-407.5268],"yaw":0.996196,"spawnMask":3},{"id":"creature-96908","entityId":"entry-24761","position":[-455.2916,-3.6524,-407.8758],"yaw":-4.15935,"spawnMask":3},{"id":"creature-96910","entityId":"entry-24761","position":[-455.5756,-6.7767,-407.4448],"yaw":-4.02086,"spawnMask":3},{"id":"creature-96911","entityId":"entry-24761","position":[-456.3856,-4.8786,-408.1568],"yaw":-4.08292,"spawnMask":3},{"id":"creature-96912","entityId":"entry-24761","position":[-443.8116,-6.8913,-397.4048],"yaw":-2.45328,"spawnMask":3},{"id":"creature-96914","entityId":"entry-24761","position":[-447.2116,-7.3383,-400.4058],"yaw":-2.40412,"spawnMask":3},{"id":"creature-96915","entityId":"entry-24761","position":[-445.1386,-4.5353,-399.9288],"yaw":-2.41882,"spawnMask":3},{"id":"creature-96916","entityId":"entry-24761","position":[-444.9876,-6.1227,-401.2578],"yaw":-2.53447,"spawnMask":3},{"id":"creature-96917","entityId":"entry-24761","position":[-443.3696,-5.9223,-400.5668],"yaw":-2.36683,"spawnMask":3},{"id":"creature-96918","entityId":"entry-24761","position":[-458.6516,-4.826,-410.1818],"yaw":-3.12964,"spawnMask":3},{"id":"creature-96919","entityId":"entry-24761","position":[-447.1766,-5.5632,-402.8988],"yaw":-3.77507,"spawnMask":3},{"id":"creature-96921","entityId":"entry-24761","position":[-444.7166,-6.2606,-398.9618],"yaw":-2.45763,"spawnMask":3},{"id":"creature-96922","entityId":"entry-24761","position":[-451.2606,-8.1302,-444.1398],"yaw":-2.23541,"spawnMask":3},{"id":"creature-96923","entityId":"entry-24761","position":[-454.8616,-5.8492,-443.0788],"yaw":-5.8749,"spawnMask":3},{"id":"creature-96924","entityId":"entry-24761","position":[-456.2426,-8.2151,-445.0228],"yaw":-1.05414,"spawnMask":3},{"id":"creature-96925","entityId":"entry-24761","position":[-454.0776,-4.6844,-446.3668],"yaw":-0.527839,"spawnMask":3},{"id":"creature-96926","entityId":"entry-24761","position":[-457.6516,-6.4519,-450.9458],"yaw":-5.1463,"spawnMask":3},{"id":"creature-96927","entityId":"entry-24761","position":[-455.1086,-5.2989,-445.3548],"yaw":-1.13049,"spawnMask":3},{"id":"creature-96928","entityId":"entry-24761","position":[-458.0206,-7.4386,-446.7338],"yaw":-4.67481,"spawnMask":3},{"id":"creature-96929","entityId":"entry-24761","position":[-451.5406,-6.837,-443.9258],"yaw":-2.60035,"spawnMask":3},{"id":"creature-96930","entityId":"entry-24761","position":[-460.2656,-6.5747,-443.8068],"yaw":-1.36278,"spawnMask":3},{"id":"creature-96932","entityId":"entry-24761","position":[-443.7046,-4.2896,-430.9488],"yaw":-1.86283,"spawnMask":3},{"id":"creature-96933","entityId":"entry-24761","position":[-447.8036,-7.2346,-430.2928],"yaw":-0.889851,"spawnMask":3},{"id":"creature-96934","entityId":"entry-24761","position":[-450.1866,-5.3342,-427.2578],"yaw":-0.716494,"spawnMask":3},{"id":"creature-96935","entityId":"entry-24761","position":[-447.0376,-3.389,-430.1898],"yaw":-0.4699,"spawnMask":3},{"id":"creature-96936","entityId":"entry-24761","position":[-450.7006,-4.7302,-432.6178],"yaw":-2.32793,"spawnMask":3},{"id":"creature-96937","entityId":"entry-24761","position":[-448.5436,-5.8334,-433.9508],"yaw":-2.32616,"spawnMask":3},{"id":"creature-96938","entityId":"entry-24761","position":[-448.9356,-5.6718,-430.5078],"yaw":-5.95175,"spawnMask":3},{"id":"creature-96940","entityId":"entry-24761","position":[-450.8836,-3.4413,-435.4038],"yaw":-6.06578,"spawnMask":3},{"id":"creature-96941","entityId":"entry-24761","position":[-450.7956,-5.5658,-430.8618],"yaw":-3.36994,"spawnMask":3},{"id":"creature-96966","entityId":"entry-24560","position":[-350.3546,-24.0362,-255.7591],"yaw":-4.74729,"spawnMask":3},{"id":"creature-1971387","entityId":"entry-24861","position":[-457.4096,-7.0907,-274.8668],"yaw":0,"spawnMask":3}],"roamingPacks":[{"id":"patrol-96786","name":"Sunblade Magister Patrol","speed":1.15,"pathId":967860,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-316.7655,-6.7927,-272.7833],[-345.8066,-6.8992,-288.1235],[-365.6466,-6.7308,-279.9953],[-380.0566,-6.7781,-279.1178],[-352.7186,-6.9295,-263.2116],[-334.3306,-6.7335,-272.5142]],"members":[{"id":"member","entityId":"entry-24685","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96792","name":"Sunblade Magister Patrol","speed":1.15,"pathId":967920,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-350.3126,-25.8705,-387.8198],[-339.5606,-25.8705,-393.2688],[-336.5506,-25.8705,-408.3018],[-347.2016,-25.8705,-417.2808],[-350.4016,-25.8705,-442.1168],[-350.5666,-25.8705,-419.6558],[-362.2956,-25.8705,-411.8548],[-364.4046,-25.8705,-399.8338],[-352.0936,-25.8705,-388.1418],[-350.3566,-25.8705,-371.4199]],"members":[{"id":"member","entityId":"entry-24685","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96814","name":"Sunblade Physician Patrol","speed":1.15,"pathId":968140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-316.8947,-6.792,-270.5567],[-347.4386,-6.9286,-286.2821],[-365.6656,-6.7209,-277.1624],[-380.4756,-6.78,-277.0665],[-353.6496,-6.9315,-260.8234],[-333.9916,-6.7215,-270.3327]],"members":[{"id":"member","entityId":"entry-24687","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96825","name":"Wretched Skulker Patrol","speed":1.15,"pathId":968250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-454.7886,-7.0768,-272.1425],[-454.7886,-7.0768,-272.1425]],"members":[{"id":"member","entityId":"entry-24688","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96830","name":"Wretched Bruiser Patrol","speed":1.15,"pathId":968300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-455.6036,-7.0685,-276.9415],[-455.6036,-7.0685,-276.9415]],"members":[{"id":"member","entityId":"entry-24689","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96944","name":"Sunblade Sentinel Patrol","speed":1.15,"pathId":969440,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-427.4266,-13.5875,-489.0978],[-390.7166,-13.5803,-489.2098]],"members":[{"id":"member","entityId":"entry-24777","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96945","name":"Sunblade Sentinel Patrol","speed":1.15,"pathId":969450,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-328.9936,-25.5518,-489.8598],[-360.4566,-25.4921,-489.7448]],"members":[{"id":"member","entityId":"entry-24777","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-96946","name":"Sunblade Sentinel Patrol","speed":1.15,"pathId":969460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-350.2796,-25.5243,-355.738],[-350.5356,-25.783,-323.355]],"members":[{"id":"member","entityId":"entry-24777","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-96875","name":"Selin Fireheart","position":[-465.5286,-2.2748,-274.613]},{"id":"creature-96876","name":"Vexallus","position":[-454.8206,-10.438,-489.2598]},{"id":"creature-96762","name":"Kael'thas Sunstrider","position":[-372.0026,-20.7588,-87.9328]}],"objectiveOrder":[{"id":"creature-96875","name":"Selin Fireheart","position":[-465.5286,-2.2748,-274.613]},{"id":"creature-96876","name":"Vexallus","position":[-454.8206,-10.438,-489.2598]},{"id":"creature-96762","name":"Kael'thas Sunstrider","position":[-372.0026,-20.7588,-87.9328]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":257,"id":188415,"map":585,"orientation":4.60767,"phaseMask":1,"position_x":-19.2307,"position_y":-551.108,"position_z":-63.7667,"rotation0":0,"rotation1":0,"rotation2":-0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":258,"id":188415,"map":585,"orientation":1.48353,"phaseMask":1,"position_x":-32.2288,"position_y":-646.162,"position_z":-63.6902,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":259,"id":188415,"map":585,"orientation":0.0698117,"phaseMask":1,"position_x":-73.1546,"position_y":-601.769,"position_z":-63.7667,"rotation0":0,"rotation1":0,"rotation2":0.0348988,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":260,"id":188415,"map":585,"orientation":3.21142,"phaseMask":1,"position_x":20.0252,"position_y":-593.697,"position_z":-63.6475,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349061,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":468,"id":188075,"map":585,"orientation":5.66359,"phaseMask":1,"position_x":45.9157,"position_y":-797.592,"position_z":-52.4865,"rotation0":0,"rotation1":0,"rotation2":-0.304864,"rotation3":0.952396,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":469,"id":188119,"map":585,"orientation":3.13286,"phaseMask":1,"position_x":-384.951,"position_y":-659.807,"position_z":-51.2358,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":470,"id":188421,"map":585,"orientation":3.13286,"phaseMask":1,"position_x":-324.043,"position_y":-595.184,"position_z":-59.2553,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":471,"id":188523,"map":585,"orientation":3.13286,"phaseMask":1,"position_x":-325.218,"position_y":-595.859,"position_z":-51.2358,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":472,"id":188524,"map":585,"orientation":3.13286,"phaseMask":1,"position_x":-326.934,"position_y":-595.61,"position_z":-51.2358,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52548,"id":187206,"map":585,"orientation":3.20548,"phaseMask":1,"position_x":150.23,"position_y":-396.227,"position_z":-59.7847,"rotation0":0,"rotation1":0,"rotation2":-0.99949,"rotation3":0.0319405,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52549,"id":187207,"map":585,"orientation":3.20548,"phaseMask":1,"position_x":151.325,"position_y":-414.052,"position_z":-59.7847,"rotation0":0,"rotation1":0,"rotation2":-0.99949,"rotation3":0.0319405,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52550,"id":187214,"map":585,"orientation":2.90005,"phaseMask":1,"position_x":114.269,"position_y":-498.795,"position_z":-17.7347,"rotation0":0,"rotation1":0,"rotation2":0.992716,"rotation3":0.120479,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52551,"id":187215,"map":585,"orientation":4.47085,"phaseMask":1,"position_x":122.191,"position_y":-511.452,"position_z":-17.7347,"rotation0":0,"rotation1":0,"rotation2":-0.787146,"rotation3":0.616767,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52552,"id":187216,"map":585,"orientation":4.97988,"phaseMask":1,"position_x":11.9892,"position_y":-534.594,"position_z":-6.72062,"rotation0":0,"rotation1":0,"rotation2":-0.606502,"rotation3":0.795082,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52553,"id":187217,"map":585,"orientation":0.26749,"phaseMask":1,"position_x":19.1809,"position_y":-521.508,"position_z":-6.72062,"rotation0":0,"rotation1":0,"rotation2":0.133347,"rotation3":0.991069,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52554,"id":187218,"map":585,"orientation":6.27859,"phaseMask":1,"position_x":-320.379,"position_y":-652.916,"position_z":-76.3125,"rotation0":0,"rotation1":0,"rotation2":-0.0022974,"rotation3":0.999997,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52555,"id":187219,"map":585,"orientation":6.27859,"phaseMask":1,"position_x":-320.442,"position_y":-660.155,"position_z":-76.3125,"rotation0":0,"rotation1":0,"rotation2":-0.0022974,"rotation3":0.999997,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52556,"id":187220,"map":585,"orientation":6.27859,"phaseMask":1,"position_x":-332.146,"position_y":-532.021,"position_z":-76.2693,"rotation0":0,"rotation1":0,"rotation2":-0.0022974,"rotation3":0.999997,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52557,"id":187221,"map":585,"orientation":6.27859,"phaseMask":1,"position_x":-332.21,"position_y":-539.26,"position_z":-76.2693,"rotation0":0,"rotation1":0,"rotation2":-0.0022974,"rotation3":0.999997,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52558,"id":187222,"map":585,"orientation":1.5662,"phaseMask":1,"position_x":-290.523,"position_y":-684.896,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.70548,"rotation3":0.70873,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52559,"id":187223,"map":585,"orientation":1.5662,"phaseMask":1,"position_x":-283.285,"position_y":-684.959,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.70548,"rotation3":0.70873,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52560,"id":187224,"map":585,"orientation":4.7078,"phaseMask":1,"position_x":-281.758,"position_y":-506.564,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":-0.708729,"rotation3":0.705481,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52561,"id":187225,"map":585,"orientation":4.7078,"phaseMask":1,"position_x":-288.996,"position_y":-506.501,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":-0.708729,"rotation3":0.705481,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52562,"id":187226,"map":585,"orientation":3.13681,"phaseMask":1,"position_x":-242.513,"position_y":-559.739,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.999997,"rotation3":0.00239208,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52563,"id":187227,"map":585,"orientation":3.13681,"phaseMask":1,"position_x":-242.45,"position_y":-552.5,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.999997,"rotation3":0.00239208,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52564,"id":187228,"map":585,"orientation":3.13681,"phaseMask":1,"position_x":-243.238,"position_y":-642.784,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.999997,"rotation3":0.00239208,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":52565,"id":187229,"map":585,"orientation":3.13681,"phaseMask":1,"position_x":-243.175,"position_y":-635.545,"position_z":-76.2121,"rotation0":0,"rotation1":0,"rotation2":0.999997,"rotation3":0.00239208,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99798,"id":188165,"map":585,"orientation":4.27606,"phaseMask":1,"position_x":138.353,"position_y":190.139,"position_z":-16.8306,"rotation0":0,"rotation1":0,"rotation2":-0.84339,"rotation3":0.537301,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99799,"id":188166,"map":585,"orientation":4.97419,"phaseMask":1,"position_x":158.751,"position_y":190.51,"position_z":-16.8794,"rotation0":0,"rotation1":0,"rotation2":-0.608761,"rotation3":0.793354,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99800,"id":188173,"map":585,"orientation":1.01229,"phaseMask":1,"position_x":148.401,"position_y":203.443,"position_z":-11.9579,"rotation0":0,"rotation1":0,"rotation2":0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":99801,"id":188177,"map":585,"orientation":3.14159,"phaseMask":1,"position_x":-5.48751,"position_y":0,"position_z":-0.678789,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":99802,"id":187979,"map":585,"orientation":4.71239,"phaseMask":1,"position_x":254.45,"position_y":-29.3623,"position_z":5.57768,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99803,"id":187990,"map":585,"orientation":4.00553,"phaseMask":1,"position_x":3.43622,"position_y":-448.192,"position_z":-5.71188,"rotation0":0,"rotation1":0,"rotation2":-0.908143,"rotation3":0.41866,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99804,"id":187764,"map":585,"orientation":3.04558,"phaseMask":1,"position_x":-15.9063,"position_y":-421.996,"position_z":-47.1748,"rotation0":0,"rotation1":0,"rotation2":0.998848,"rotation3":0.0479871,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99805,"id":187765,"map":585,"orientation":1.38754,"phaseMask":1,"position_x":-108.729,"position_y":-598.276,"position_z":-6.37283,"rotation0":0,"rotation1":0,"rotation2":0.639439,"rotation3":0.768842,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99806,"id":187766,"map":585,"orientation":2.69653,"phaseMask":1,"position_x":72.4223,"position_y":-587.323,"position_z":1.59501,"rotation0":0,"rotation1":0,"rotation2":0.975342,"rotation3":0.2207,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99807,"id":187770,"map":585,"orientation":4.71239,"phaseMask":1,"position_x":127.101,"position_y":61.3613,"position_z":-15.1793,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99808,"id":188064,"map":585,"orientation":1.5708,"phaseMask":1,"position_x":149.927,"position_y":125.694,"position_z":-7.26305,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99809,"id":188065,"map":585,"orientation":0,"phaseMask":1,"position_x":215.131,"position_y":0.396177,"position_z":9.41158,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":99810,"id":188081,"map":585,"orientation":2.63544,"phaseMask":1,"position_x":-214.195,"position_y":-251.216,"position_z":-72.2626,"rotation0":0,"rotation1":0,"rotation2":0.968147,"rotation3":0.250381,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99811,"id":187578,"map":585,"orientation":1.65806,"phaseMask":1,"position_x":231.214,"position_y":-274.873,"position_z":-7.39517,"rotation0":0,"rotation1":0,"rotation2":0.737277,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":50664,"animprogress":255,"areaId":0,"guid":99812,"id":188118,"map":585,"orientation":3.13286,"phaseMask":1,"position_x":-71.2024,"position_y":-523.018,"position_z":0.144581,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49345,"animprogress":255,"areaId":0,"guid":99813,"id":187896,"map":585,"orientation":4.71239,"phaseMask":1,"position_x":231.232,"position_y":-236.83,"position_z":0.579835,"rotation0":0,"rotation1":0,"rotation2":-0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"expansion/World/Maps/Sunwell5ManFix":"e6733adf1c7a22d046b7a12ff4f4ee136a02915b21ede5c64b4d9ca0c388024b","patch/World/maps/Sunwell5ManFix":"74cbf0b707bf74fd80ad4e07983345b1618b64e647ea3805e0539850b47e4dfd","patch-2/World/maps/Sunwell5ManFix":"6a6471f4cde0af983fed534fc5f4ede260e377b29e9b8117d809241c26906f55"},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/magisters-terrace/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["18/18 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"black-morass","title":"The Black Morass","mapId":269,"lfgDungeonIds":[171,182],"expansion":"burning-crusade","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[68,75],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[70,75],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Black Morass","theme":"Open-world expedition","summary":"Fight through The Black Morass, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Black Morass...","unchartedAreaName":"Uncharted The Black Morass","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":1800},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/269-cavernsoftime/visual.glb","checksum":"b5e16b91aad3f31362cbb99796db8d9e1810f761a96e4e05c55924e537bb5939","size":19687412,"triangleCount":2715546}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-000.glb","checksum":"801e14701ff19bde501b0022b1270c85394ddb52eb6b6b87ab97cf90f5e5c2e0","size":140536,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-001.glb","checksum":"2a22407412d36c90bfcf7ade663990cd19aa1f7caf2126a835862c2cea32174e","size":154528,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-002.glb","checksum":"46ef0199698499c6ac8e5600efc85089294382b7c89113ababebe5e5538a0f34","size":139512,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-003.glb","checksum":"4bf462ae69ae523a326227ed6a160d28813b2613c0096620120724435ba4d22c","size":160112,"triangleCount":65312},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-004.glb","checksum":"c679a9d87eb09ca0b27195876ef4b8518b5f046886436255dc6dfcef8063908f","size":224396,"triangleCount":19144},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-005.glb","checksum":"ed5da5f5289bd287303c35613a239c38b197463c45dfaa4d6cedc5c356d74c08","size":181632,"triangleCount":65328},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-006.glb","checksum":"6e2bb234a7c5a318e23d2bc7afa08f5014f098e522077b4e32c2067dde6169a2","size":30640,"triangleCount":502},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-007.glb","checksum":"8f330d4323bcbfa6cb9f64e63862e38b66fb86603d1b5c47bd5a27597c771864","size":160304,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-008.glb","checksum":"e0e2e71934bbc85b81ee447b648c3396e4bb2dd7a07d8418885687605b7493ef","size":147804,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-009.glb","checksum":"cf2d7b30f374aea8aaa2fe05fcc0a046cde3792ebb183ef5b1e08a7b5cfb536f","size":169808,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-010.glb","checksum":"2b6cce9e09ffc3f3985618bc9050edc978df62c2a6b1d40a2265e9aceaaeea59","size":147528,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-011.glb","checksum":"c337e69d296d6b2a7553b11b7fc60d6f610bc8355bb59b61d92c55ae024810d8","size":135932,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-012.glb","checksum":"75e11dc46d1474ecd2d0cd98f6b71d9d836608628a097dfb60ce8e14907dbf38","size":135856,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-013.glb","checksum":"c7416c09d9fdbaaf2e957e1412a2ba3f1bbaa1163cf6a33cd2e46a711d88a80d","size":136028,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-014.glb","checksum":"40d9029b10dd598720476413ce3e8e916830560ed83e08d954c2f36b3dabcbc3","size":135676,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-015.glb","checksum":"268ec708dcc35462e05020ccb5299aced279559df232700e844bf615ead7ce17","size":135496,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-016.glb","checksum":"943d1142ae1c628490121f2e186b656b16d265b208266229fbb57f09138ae9aa","size":136020,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-017.glb","checksum":"14e9233e16cd7f17f4b8a342a5757d970d82829b2748ea652a874383a0856016","size":135840,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-018.glb","checksum":"144b3fbe63c0916fcaf7299f243bbd4b0ec971fd7cfdfb85a4d704fef1f37de9","size":136016,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-019.glb","checksum":"fa2394a906ec3616bd649b4abddff8e12f659d633c159df2c37a7bfb69b9e994","size":135660,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-020.glb","checksum":"e28a442730d8409fc5f7963c522f899be3033b21c648e0a55ab56872cbff7014","size":135480,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-021.glb","checksum":"50bc20dc3314250d55804acce46a723ae4a77d67d9b4bfa11f004e16f814651e","size":135844,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-022.glb","checksum":"7bd1a647af6e7e5debe4f22ce64248a6fd562f7558e9a6da56f43a257a2a9f15","size":135664,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-023.glb","checksum":"edafce3ace2f98d578e10f81b8bc02f101dc9937dc1d1587a0499ae329afae41","size":135840,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-024.glb","checksum":"d7aa63f0bf75da4f8f954b70ab2a7bdecd83db1cc5ffd437a83e39f4831fca4a","size":135484,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-025.glb","checksum":"1b50f20eaeee6ba603b9ac357f2090b754960a9c78bda5b199a94173047fd222","size":135304,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-026.glb","checksum":"90f676c2d460ac82afb204be8ce282a5d76a383a4da50bce7d3cf7978e52a016","size":135640,"triangleCount":65536},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-027.glb","checksum":"aff560fcd0be7f5204b2fd7a877038410603fee01c224ecc4aed541ac63eed6b","size":135428,"triangleCount":65536},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-028.glb","checksum":"0b813454f8e7445332835f8bb68f59446e78358f9328e04b72dd430233d7c66d","size":135636,"triangleCount":65536},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-029.glb","checksum":"50fd31624485b5d23520b0f9d56b7cdb897783ab50372520affeda57bf6a34ba","size":135640,"triangleCount":65536},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-030.glb","checksum":"61a61c8f8a02537fafe05071646db824ee918225f74f071351b4098cce460780","size":135428,"triangleCount":65536},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-031.glb","checksum":"8937203d422c27f21fc0728fe0e75ffb4112ae81e85647fa925ff72982f7ee1d","size":135892,"triangleCount":65536},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-032.glb","checksum":"90265a543674dd0189ebcf8d5521fe627226960c21b346fdee5533f367803d14","size":135712,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-033.glb","checksum":"e4e547d02b6b2596956a0424c99b4a288a99354a6aee416da83918113a91363b","size":135888,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-034.glb","checksum":"0b78819783d2d11c1101d12d17c02bb7dfd05a46b0e8132a86893615b4326162","size":135484,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-035.glb","checksum":"e18c47e53b3ef2901489e2f51f89fd9bfbb56a5f9dd1bb2786d994c5fcfe42ab","size":135304,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-036.glb","checksum":"36b76c9f48c63eefb5b41a80ea6b3edcc6f2dd2f23b69c296d4c625e9eb9ce8e","size":136212,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-037.glb","checksum":"a8803c5330fdc3231c92277c55c369073477e2346eeb5631a788fa043bdf5865","size":136032,"triangleCount":65536},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-038.glb","checksum":"ae40683692853db8ac3a841fdeed942b1a7432ab46a04424e5ea6188d57d6fb4","size":136208,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-039.glb","checksum":"a7bb1a3ce22dee55fcdf56ff1dc97e406d3507634dceea3c630bf3ffe9c58af7","size":135708,"triangleCount":65536},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/269-cavernsoftime/collision-040.glb","checksum":"4ae9455d9412d6ad65e079e64e649c1b6b8ab9dd70734ceda8e66e45333b2833","size":135528,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/269-cavernsoftime/navigation.glb","checksum":"0f84858ce2becdd3640c625a4a8686b67f37935f6773498399b797ca7734dc8b","size":1341420,"triangleCount":122696}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-1131.3432,178.2422,-6333.6072],"max":[7664.3268,703.3468,-1085.6671]},"entrance":{"name":"The Black Morass Entrance","footPosition":[7223.4668,213.8147,-2589.8672],"forward":[-0.10842740874401802,0,0.9941043692857695],"yaw":-0.10864099517343388},"areas":[{"id":"entrance","name":"The Black Morass Entrance","center":[7223.4668,213.8147,-2589.8672],"radius":35},{"id":"area-chrono-lord-deja","name":"Chrono Lord Deja's Encounter","center":[7125.5593,244.0726,-1429.5572],"radius":42},{"id":"area-temporus","name":"Temporus's Encounter","center":[7173.1857,228.9436,-1278.8963],"radius":42},{"id":"area-aeonus","name":"Aeonus's Encounter","center":[7223.6661,213.8147,-1132.9384],"radius":42}],"entities":{"entry-20201":{"id":"entry-20201","kind":"mob","name":"Sa'at","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-19411-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3845,"markerRadius":0.65}}},"entry-17952":{"id":"entry-17952","kind":"mob","name":"Darkwater Crocolisk","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"crocolisk","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-18417-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3439,"markerRadius":4.4659}}},"entry-18982":{"id":"entry-18982","kind":"mob","name":"Sable Jaguar","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-18416-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":1.9862,"markerRadius":1.5695}}},"entry-18983":{"id":"entry-18983","kind":"mob","name":"Blackfang Tarantula","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34365","name":"Ebon Poison","spellId":34365,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7060,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-1104-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.7238,"labelHeight":2.2023,"markerRadius":3.8008}}},"entry-17879":{"id":"entry-17879","kind":"boss","name":"Chrono Lord Deja","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31457","name":"Arcane Blast","spellId":31457,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4036,"damageMultiplier":1.35},{"id":"spell-31467","name":"Time Lapse","spellId":31467,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4036,"damageMultiplier":1.35},{"id":"spell-31472","name":"Arcane Discharge","spellId":31472,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4036,"damageMultiplier":1.35},{"id":"spell-38540","name":"Attraction","spellId":38540,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4036,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-20513-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.4038,"labelHeight":11.7179,"markerRadius":2.0782}}},"entry-17880":{"id":"entry-17880","kind":"boss","name":"Temporus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31458","name":"Hasten","spellId":31458,"delivery":"area","target":"self","school":"arcane","animation":"cast","range":0,"cooldownMs":7279,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-31458","durationMs":12000,"magnitude":0.25}},{"id":"spell-31464","name":"Mortal Wound","spellId":31464,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7279,"damageMultiplier":1.35},{"id":"spell-31475","name":"Wing Buffet","spellId":31475,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7279,"damageMultiplier":1.35},{"id":"spell-38592","name":"Spell Reflection","spellId":38592,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":7279,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-38592","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-19066-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.8598,"labelHeight":16.101,"markerRadius":4.5}}},"entry-17881":{"id":"entry-17881","kind":"boss","name":"Aeonus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-37853","name":"Corrupt Medivh","spellId":37853,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5126,"damageMultiplier":1.35},{"id":"spell-40504","name":"Cleave","spellId":40504,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5126,"damageMultiplier":0.82,"radius":11},{"id":"spell-31473","name":"Sand Breath","spellId":31473,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5126,"damageMultiplier":0.82,"radius":11},{"id":"spell-31422","name":"Time Stop","spellId":31422,"delivery":"projectile","target":"random-party","school":"arcane","animation":"cast","range":28,"cooldownMs":5126,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":2500}}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/black-morass/creatures/display-20510-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.7842,"labelHeight":24.2655,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-31754","entityId":"entry-20201","position":[7302.3968,214.0717,-2640.6872],"yaw":-6.23083,"spawnMask":3},{"id":"creature-34091","entityId":"entry-17952","position":[7296.4768,198.8358,-2855.7072],"yaw":-2.19672,"spawnMask":3},{"id":"creature-34092","entityId":"entry-17952","position":[7422.9968,198.5993,-2804.8972],"yaw":-1.06958,"spawnMask":3},{"id":"creature-34093","entityId":"entry-17952","position":[7334.8968,198.9775,-2863.6672],"yaw":-3.90766,"spawnMask":3},{"id":"creature-34094","entityId":"entry-17952","position":[7255.2068,199.1902,-2856.3472],"yaw":-0.000674081,"spawnMask":3},{"id":"creature-34095","entityId":"entry-17952","position":[7314.9668,199.0318,-2820.6372],"yaw":-5.20659,"spawnMask":3},{"id":"creature-34126","entityId":"entry-17952","position":[7174.2368,198.5653,-2817.7672],"yaw":-1.81758,"spawnMask":3},{"id":"creature-34127","entityId":"entry-17952","position":[7209.4768,198.4832,-2789.3272],"yaw":-0.947027,"spawnMask":3},{"id":"creature-35224","entityId":"entry-17952","position":[7174.2768,199.1334,-2872.0072],"yaw":-1.06765,"spawnMask":3},{"id":"creature-35229","entityId":"entry-17952","position":[7385.1768,198.6233,-2774.0672],"yaw":-0.377931,"spawnMask":3},{"id":"creature-35239","entityId":"entry-17952","position":[7340.8568,199.049,-2780.2572],"yaw":-1.90489,"spawnMask":3},{"id":"creature-35240","entityId":"entry-17952","position":[7216.8668,199.1091,-2876.7072],"yaw":-1.95094,"spawnMask":3},{"id":"creature-35243","entityId":"entry-17952","position":[7144.7568,198.2422,-2847.8572],"yaw":-3.98153,"spawnMask":3},{"id":"creature-35246","entityId":"entry-17952","position":[7281.1468,198.9835,-2890.4972],"yaw":-0.418224,"spawnMask":3},{"id":"creature-35868","entityId":"entry-17952","position":[7375.0868,199.3099,-2865.5772],"yaw":-4.55405,"spawnMask":3},{"id":"creature-35870","entityId":"entry-17952","position":[7447.6568,198.7603,-2849.9872],"yaw":-2.4516,"spawnMask":3},{"id":"creature-35871","entityId":"entry-17952","position":[7488.9568,199.2223,-2843.0772],"yaw":-2.73567,"spawnMask":3},{"id":"creature-36693","entityId":"entry-17952","position":[7302.2768,198.9233,-2923.6472],"yaw":-5.66564,"spawnMask":3},{"id":"creature-36898","entityId":"entry-17952","position":[7188.9768,198.7932,-2902.1572],"yaw":-0.099366,"spawnMask":3},{"id":"creature-36904","entityId":"entry-17952","position":[7428.5068,198.7863,-2893.1772],"yaw":-2.17465,"spawnMask":3},{"id":"creature-36907","entityId":"entry-17952","position":[7068.3668,198.8866,-2851.1572],"yaw":-3.56329,"spawnMask":3},{"id":"creature-36924","entityId":"entry-17952","position":[7427.8468,202.0348,-2930.2172],"yaw":-3.67782,"spawnMask":3},{"id":"creature-36938","entityId":"entry-17952","position":[7526.6368,198.5832,-2840.7672],"yaw":-0.831668,"spawnMask":3},{"id":"creature-36942","entityId":"entry-17952","position":[7320.0068,198.821,-2958.5272],"yaw":-5.4093,"spawnMask":3},{"id":"creature-36943","entityId":"entry-17952","position":[7185.4068,198.5136,-2948.5472],"yaw":-3.95117,"spawnMask":3},{"id":"creature-36944","entityId":"entry-17952","position":[7457.9968,198.7855,-2922.1572],"yaw":-0.403142,"spawnMask":3},{"id":"creature-36956","entityId":"entry-17952","position":[7396.1968,198.8836,-2969.2172],"yaw":-0.143967,"spawnMask":3},{"id":"creature-36957","entityId":"entry-17952","position":[7424.2268,198.9717,-2966.4472],"yaw":-5.84313,"spawnMask":3},{"id":"creature-36958","entityId":"entry-17952","position":[7359.2168,198.8548,-2981.9972],"yaw":-0.918972,"spawnMask":3},{"id":"creature-37101","entityId":"entry-17952","position":[7557.1668,198.5778,-2859.9472],"yaw":-4.90902,"spawnMask":3},{"id":"creature-37540","entityId":"entry-17952","position":[7508.9068,198.8983,-2932.4372],"yaw":-3.56071,"spawnMask":3},{"id":"creature-37541","entityId":"entry-17952","position":[7422.6468,199.1434,-3002.6372],"yaw":-5.60558,"spawnMask":3},{"id":"creature-37554","entityId":"entry-17952","position":[7160.4668,198.5726,-2979.4672],"yaw":-5.71279,"spawnMask":3},{"id":"creature-37555","entityId":"entry-17952","position":[7235.6368,198.7856,-3004.1772],"yaw":-4.04679,"spawnMask":3},{"id":"creature-37587","entityId":"entry-17952","position":[7578.1368,198.6978,-2896.3972],"yaw":-2.65698,"spawnMask":3},{"id":"creature-37588","entityId":"entry-17952","position":[7424.5268,198.92,-3037.6272],"yaw":-0.893311,"spawnMask":3},{"id":"creature-37593","entityId":"entry-17952","position":[7529.4368,198.7908,-2966.4672],"yaw":-2.34422,"spawnMask":3},{"id":"creature-37594","entityId":"entry-17952","position":[7193.3668,198.916,-3014.8072],"yaw":-0.258715,"spawnMask":3},{"id":"creature-37597","entityId":"entry-17952","position":[7584.6168,198.9606,-2938.6272],"yaw":-2.1149,"spawnMask":3},{"id":"creature-37617","entityId":"entry-17952","position":[7571.1968,198.8682,-2978.8972],"yaw":-2.3182,"spawnMask":3},{"id":"creature-37618","entityId":"entry-17952","position":[7417.4868,200.5963,-3079.3672],"yaw":-3.84333,"spawnMask":3},{"id":"creature-37619","entityId":"entry-17952","position":[7383.9668,199.1063,-3086.8072],"yaw":-5.53164,"spawnMask":3},{"id":"creature-37621","entityId":"entry-17952","position":[7567.9468,198.9217,-3021.9072],"yaw":-4.4757,"spawnMask":3},{"id":"creature-37622","entityId":"entry-17952","position":[7436.3168,199.9309,-3096.2372],"yaw":-3.96222,"spawnMask":3},{"id":"creature-37623","entityId":"entry-17952","position":[7465.0568,199.2089,-3116.3472],"yaw":-3.88138,"spawnMask":3},{"id":"creature-37628","entityId":"entry-17952","position":[7578.2868,198.705,-3064.0972],"yaw":-0.318042,"spawnMask":3},{"id":"creature-37629","entityId":"entry-17952","position":[7429.4968,198.7333,-3147.8072],"yaw":-2.7129,"spawnMask":3},{"id":"creature-37630","entityId":"entry-17952","position":[7547.9568,198.7684,-3101.7872],"yaw":-4.34059,"spawnMask":3},{"id":"creature-37631","entityId":"entry-17952","position":[7513.3168,198.9345,-3117.7072],"yaw":-2.37483,"spawnMask":3},{"id":"creature-37632","entityId":"entry-17952","position":[7201.7568,198.7515,-3071.8772],"yaw":-0.938997,"spawnMask":3},{"id":"creature-37633","entityId":"entry-17952","position":[7402.4068,198.8719,-3164.7472],"yaw":-1.81564,"spawnMask":3},{"id":"creature-37634","entityId":"entry-17952","position":[7207.0968,198.5852,-3167.5972],"yaw":-5.18931,"spawnMask":3},{"id":"creature-37635","entityId":"entry-17952","position":[7177.0768,199.6654,-3146.8272],"yaw":-3.99677,"spawnMask":3},{"id":"creature-37636","entityId":"entry-17952","position":[7165.2068,198.4694,-3103.0172],"yaw":-5.58494,"spawnMask":3},{"id":"creature-37637","entityId":"entry-17952","position":[7127.7468,199.0786,-3117.6072],"yaw":-2.31268,"spawnMask":3},{"id":"creature-37638","entityId":"entry-17952","position":[7085.2668,198.8313,-3110.3872],"yaw":-5.5877,"spawnMask":3},{"id":"creature-37639","entityId":"entry-17952","position":[7117.5368,199.0261,-3026.0872],"yaw":-4.35944,"spawnMask":3},{"id":"creature-37640","entityId":"entry-17952","position":[7054.0668,198.4838,-3100.1972],"yaw":-3.25168,"spawnMask":3},{"id":"creature-37641","entityId":"entry-17952","position":[7034.2968,198.7098,-3068.1972],"yaw":-3.91042,"spawnMask":3},{"id":"creature-37642","entityId":"entry-17952","position":[7031.1568,198.6085,-2929.7572],"yaw":-3.47528,"spawnMask":3},{"id":"creature-37643","entityId":"entry-17952","position":[7039.5868,198.8162,-2878.1172],"yaw":-5.66144,"spawnMask":3},{"id":"creature-37644","entityId":"entry-18982","position":[7055.8168,203.7367,-2761.2772],"yaw":-1.42863,"spawnMask":3},{"id":"creature-37645","entityId":"entry-18982","position":[7242.3668,203.7362,-2743.4072],"yaw":-1.59626,"spawnMask":3},{"id":"creature-37646","entityId":"entry-18982","position":[7202.4168,203.5985,-2843.3772],"yaw":-2.43076,"spawnMask":3},{"id":"creature-37648","entityId":"entry-18982","position":[7276.6468,203.9641,-2782.9572],"yaw":-2.65784,"spawnMask":3},{"id":"creature-37649","entityId":"entry-18982","position":[7125.7668,203.6284,-2796.4272],"yaw":-1.82951,"spawnMask":3},{"id":"creature-37650","entityId":"entry-18982","position":[7296.2868,204.1968,-2802.4772],"yaw":-2.56145,"spawnMask":3},{"id":"creature-37651","entityId":"entry-18982","position":[7266.8768,203.8253,-2831.2572],"yaw":-5.52243,"spawnMask":3},{"id":"creature-37652","entityId":"entry-18982","position":[7159.2868,203.5254,-2791.7372],"yaw":-0.612646,"spawnMask":3},{"id":"creature-37653","entityId":"entry-18982","position":[7257.5068,203.9201,-2902.0072],"yaw":-0.632959,"spawnMask":3},{"id":"creature-37654","entityId":"entry-18982","position":[7362.4768,204.6849,-2886.1372],"yaw":-0.751588,"spawnMask":3},{"id":"creature-37655","entityId":"entry-18982","position":[7534.8868,203.8404,-2744.8572],"yaw":-4.63022,"spawnMask":3},{"id":"creature-37656","entityId":"entry-18982","position":[7512.1168,204.0331,-2774.4972],"yaw":-0.616164,"spawnMask":3},{"id":"creature-37657","entityId":"entry-18982","position":[7349.9668,202.7495,-2917.3772],"yaw":-0.0686878,"spawnMask":3},{"id":"creature-37658","entityId":"entry-18982","position":[7108.1368,204.1336,-2872.7372],"yaw":-0.592334,"spawnMask":3},{"id":"creature-37659","entityId":"entry-18982","position":[7377.8568,204.1484,-2945.2672],"yaw":-5.29552,"spawnMask":3},{"id":"creature-37660","entityId":"entry-18982","position":[7542.1268,203.3512,-2815.1372],"yaw":-1.95094,"spawnMask":3},{"id":"creature-37661","entityId":"entry-18982","position":[7132.8868,209.1108,-2964.8172],"yaw":-1.22186,"spawnMask":3},{"id":"creature-37662","entityId":"entry-18982","position":[7532.9968,205.9731,-2889.3572],"yaw":-2.20744,"spawnMask":3},{"id":"creature-37663","entityId":"entry-18982","position":[7379.9268,204.0565,-3020.2472],"yaw":-3.99618,"spawnMask":3},{"id":"creature-37664","entityId":"entry-18982","position":[7492.5768,203.9395,-2956.9572],"yaw":-0.759834,"spawnMask":3},{"id":"creature-37665","entityId":"entry-18982","position":[7585.0568,203.958,-2830.1872],"yaw":-5.05082,"spawnMask":3},{"id":"creature-37666","entityId":"entry-18982","position":[7617.4668,204.1599,-2914.1672],"yaw":-2.15663,"spawnMask":3},{"id":"creature-37667","entityId":"entry-18982","position":[7413.0368,203.8841,-3117.0972],"yaw":-2.4156,"spawnMask":3},{"id":"creature-37668","entityId":"entry-18982","position":[7449.5668,201.9554,-2960.0072],"yaw":-1.07176,"spawnMask":3},{"id":"creature-37669","entityId":"entry-18982","position":[7507.4568,206.2633,-3007.1572],"yaw":-1.48473,"spawnMask":3},{"id":"creature-37670","entityId":"entry-18982","position":[7540.5268,203.0353,-2945.0672],"yaw":-5.81954,"spawnMask":3},{"id":"creature-37671","entityId":"entry-18982","position":[7121.3868,206.4996,-2922.9272],"yaw":-4.37212,"spawnMask":3},{"id":"creature-37672","entityId":"entry-18982","position":[7184.4968,202.5313,-3039.8872],"yaw":-5.34075,"spawnMask":3},{"id":"creature-37673","entityId":"entry-18982","position":[7575.8968,205.8497,-3146.8872],"yaw":-3.6,"spawnMask":3},{"id":"creature-37674","entityId":"entry-18982","position":[7437.4568,204.689,-3183.1272],"yaw":-3.32214,"spawnMask":3},{"id":"creature-37675","entityId":"entry-18982","position":[7545.6268,205.1015,-3218.7772],"yaw":-2.27179,"spawnMask":3},{"id":"creature-37676","entityId":"entry-18982","position":[7494.0068,205.8021,-3207.9372],"yaw":-0.601749,"spawnMask":3},{"id":"creature-37677","entityId":"entry-18982","position":[7401.2968,205.0792,-3209.8172],"yaw":-2.76885,"spawnMask":3},{"id":"creature-37678","entityId":"entry-18982","position":[7226.5868,203.8388,-3216.2072],"yaw":-2.58309,"spawnMask":3},{"id":"creature-37679","entityId":"entry-18982","position":[7091.7968,203.6569,-3179.9472],"yaw":-0.342761,"spawnMask":3},{"id":"creature-37680","entityId":"entry-18982","position":[7095.1768,204.5815,-3079.0072],"yaw":-0.682109,"spawnMask":3},{"id":"creature-37681","entityId":"entry-18982","position":[7042.7968,206.1673,-3145.9372],"yaw":-2.17776,"spawnMask":3},{"id":"creature-37682","entityId":"entry-18982","position":[7002.0568,207.9847,-3164.1772],"yaw":-4.02941,"spawnMask":3},{"id":"creature-37683","entityId":"entry-18982","position":[7055.0068,205.7471,-3027.8972],"yaw":-3.03007,"spawnMask":3},{"id":"creature-37684","entityId":"entry-18983","position":[7401.1568,203.9634,-2830.3772],"yaw":-0.973587,"spawnMask":3},{"id":"creature-37685","entityId":"entry-18983","position":[7377.6768,203.1994,-2741.1372],"yaw":-5.74528,"spawnMask":3},{"id":"creature-37686","entityId":"entry-18983","position":[7317.9568,204.9188,-2755.6072],"yaw":-5.46808,"spawnMask":3},{"id":"creature-37687","entityId":"entry-18983","position":[7373.1868,203.5533,-2792.3672],"yaw":-0.896535,"spawnMask":3},{"id":"creature-37688","entityId":"entry-18983","position":[7353.3268,204.1313,-2825.4472],"yaw":-2.62644,"spawnMask":3},{"id":"creature-37689","entityId":"entry-18983","position":[7094.2368,203.5585,-2772.1172],"yaw":-0.917722,"spawnMask":3},{"id":"creature-37690","entityId":"entry-18983","position":[7012.4368,206.1407,-2764.4972],"yaw":-2.11222,"spawnMask":3},{"id":"creature-37691","entityId":"entry-18983","position":[7232.4168,204.6359,-2807.3272],"yaw":-5.32623,"spawnMask":3},{"id":"creature-37692","entityId":"entry-18983","position":[7072.5568,203.4213,-2810.3872],"yaw":-2.35965,"spawnMask":3},{"id":"creature-37694","entityId":"entry-18983","position":[7324.5368,203.3277,-2888.0072],"yaw":-0.885685,"spawnMask":3},{"id":"creature-37695","entityId":"entry-18983","position":[7390.1568,204.0701,-2896.6372],"yaw":-5.5109,"spawnMask":3},{"id":"creature-37698","entityId":"entry-18983","position":[7141.8068,203.5781,-2907.6072],"yaw":-0.890564,"spawnMask":3},{"id":"creature-37699","entityId":"entry-18983","position":[7203.8768,205.1563,-2974.0572],"yaw":-2.43011,"spawnMask":3},{"id":"creature-37700","entityId":"entry-18983","position":[7538.4468,203.7632,-2913.9772],"yaw":-0.173823,"spawnMask":3},{"id":"creature-37708","entityId":"entry-18983","position":[7071.8868,204.79,-2907.1772],"yaw":-6.19349,"spawnMask":3},{"id":"creature-37715","entityId":"entry-18983","position":[7343.0268,203.2194,-3023.1172],"yaw":-2.3432,"spawnMask":3},{"id":"creature-37929","entityId":"entry-18983","position":[7251.1168,204.2271,-3030.3572],"yaw":-5.33343,"spawnMask":3},{"id":"creature-38087","entityId":"entry-18983","position":[7600.8668,206.4046,-2764.5772],"yaw":-0.524805,"spawnMask":3},{"id":"creature-38182","entityId":"entry-18983","position":[7619.3268,203.9942,-2848.8072],"yaw":-5.55371,"spawnMask":3},{"id":"creature-38238","entityId":"entry-18983","position":[7469.7668,204.1017,-3047.4272],"yaw":-0.551143,"spawnMask":3},{"id":"creature-38257","entityId":"entry-18983","position":[7596.9068,203.4726,-2982.8072],"yaw":-3.87383,"spawnMask":3},{"id":"creature-38312","entityId":"entry-18983","position":[7540.6068,204.8123,-3040.5572],"yaw":-5.65336,"spawnMask":3},{"id":"creature-38313","entityId":"entry-18983","position":[7509.1668,205.121,-3072.9072],"yaw":-0.325149,"spawnMask":3},{"id":"creature-38326","entityId":"entry-18983","position":[7608.5668,205.6287,-3057.3072],"yaw":-3.93183,"spawnMask":3},{"id":"creature-38347","entityId":"entry-18983","position":[7485.7568,204.3757,-3156.5872],"yaw":-5.46532,"spawnMask":3},{"id":"creature-38381","entityId":"entry-18983","position":[7537.4968,204.0807,-3173.5972],"yaw":-0.350751,"spawnMask":3},{"id":"creature-38403","entityId":"entry-18983","position":[7500.0368,205.1578,-3196.5872],"yaw":-3.74448,"spawnMask":3},{"id":"creature-38404","entityId":"entry-18983","position":[7593.2468,205.1229,-3188.5172],"yaw":-3.78978,"spawnMask":3},{"id":"creature-38419","entityId":"entry-18983","position":[7244.8768,203.082,-3172.5672],"yaw":-0.512366,"spawnMask":3},{"id":"creature-38420","entityId":"entry-18983","position":[7134.3168,204.847,-3062.3472],"yaw":-3.94364,"spawnMask":3},{"id":"creature-38450","entityId":"entry-18983","position":[7040.5868,204.2767,-3194.0272],"yaw":-2.32129,"spawnMask":3},{"id":"creature-38451","entityId":"entry-18983","position":[7084.9068,206.0528,-3010.6772],"yaw":-4.79575,"spawnMask":3},{"id":"creature-38452","entityId":"entry-18983","position":[7084.8768,210.2581,-2973.5072],"yaw":-3.81908,"spawnMask":3},{"id":"creature-38453","entityId":"entry-18983","position":[7009.6768,204.4177,-2856.5872],"yaw":-5.67838,"spawnMask":3},{"id":"encounter-287","entityId":"entry-17879","position":[7125.5593,244.0726,-1429.5572],"yaw":0,"spawnMask":1},{"id":"encounter-289","entityId":"entry-17880","position":[7173.1857,228.9436,-1278.8963],"yaw":0,"spawnMask":1},{"id":"encounter-291","entityId":"entry-17881","position":[7223.6661,213.8147,-1132.9384],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-37647","name":"Sable Jaguar Patrol","speed":1.15,"pathId":376470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-998.8132,682.7498,-6038.2972],[-938.2232,682.9498,-6012.4572],[-926.9532,683.3468,-5982.9672],[-938.0932,682.9488,-6012.6672]],"members":[{"id":"member","entityId":"entry-18982","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-37693","name":"Blackfang Tarantula Patrol","speed":1.15,"pathId":376930,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-578.5162,670.7718,-6146.8472],[-632.0722,676.3798,-6123.1272],[-613.5652,676.3798,-6148.8972],[-589.4252,674.9998,-6143.9572],[-558.0282,657.5278,-6166.8072],[-555.2302,652.0178,-6183.3672],[-557.9482,657.1348,-6167.8972]],"members":[{"id":"member","entityId":"entry-18983","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-37696","name":"Blackfang Tarantula Patrol","speed":1.15,"pathId":376960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-548.3382,629.0398,-6273.8672],[-552.6242,648.1538,-6197.5572],[-546.9862,629.0688,-6273.3672],[-532.1832,625.1388,-6288.6072],[-534.8742,625.9998,-6286.2472]],"members":[{"id":"member","entityId":"entry-18983","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-37697","name":"Blackfang Tarantula Patrol","speed":1.15,"pathId":376970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1072.1532,682.9108,-5800.0872],[-1043.5532,682.9108,-5793.0072],[-1030.4032,682.9108,-5810.6172],[-1052.3432,682.9088,-5838.9072],[-1078.3632,682.9098,-5837.0072],[-1086.3432,682.9098,-5819.5672]],"members":[{"id":"member","entityId":"entry-18983","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"encounter-287","name":"Chrono Lord Deja","position":[7125.5593,244.0726,-1429.5572]},{"id":"encounter-289","name":"Temporus","position":[7173.1857,228.9436,-1278.8963]},{"id":"encounter-291","name":"Aeonus","position":[7223.6661,213.8147,-1132.9384]}],"objectiveOrder":[{"id":"encounter-287","name":"Chrono Lord Deja","position":[7125.5593,244.0726,-1429.5572]},{"id":"encounter-289","name":"Temporus","position":[7173.1857,228.9436,-1278.8963]},{"id":"encounter-291","name":"Aeonus","position":[7223.6661,213.8147,-1132.9384]}],"navigationLinks":[],"serverGameObjects":[],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/black-morass/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["7/7 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"escape-from-durnholde","title":"The Escape From Durnholde","mapId":560,"lfgDungeonIds":[170,183],"expansion":"burning-crusade","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[64,73],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[70,75],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Escape From Durnholde","theme":"Open-world expedition","summary":"Fight through The Escape From Durnholde, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Escape From Durnholde...","unchartedAreaName":"Uncharted The Escape From Durnholde","background":"#090b12","fog":{"color":"#0b0e18","near":36,"far":1800},"ambientLight":{"color":"#a9a1c1","intensity":0.22},"hemisphereLight":{"skyColor":"#8588a7","groundColor":"#090910","intensity":0.64},"directionalLight":{"color":"#c8b7df","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/560-hillsbradpast/visual.glb","checksum":"7acb0e48dc7bd53b7b12c60ade81500d4bf63efb2ba6fde5526f2bd6a2188070","size":58635348,"triangleCount":3443261}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-000.glb","checksum":"1126701e5a65a41983831e1a1561c75282e77fe60cf9484706f08776a9964ef4","size":1311976,"triangleCount":95659},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-001.glb","checksum":"29c67a9c1fc0d3995b6712b24758b99311c0dc93bdceb90450c575d0e665f1c2","size":1060316,"triangleCount":94209},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-002.glb","checksum":"bd834c286000959a23fd3d5fe81683a10a5c1de9985e2e56af8d4ba409ac9816","size":1313744,"triangleCount":96171},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-003.glb","checksum":"e03c45f7057dd273445b44fe56db2a6d884d949e42d1f3a0c5cd8a345338e4cb","size":1471908,"triangleCount":98608},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-004.glb","checksum":"8c79e9adde36f3dd8eee687fb52c0f8c1fd2a5e200afa0d3a832ce6ad105311c","size":1064172,"triangleCount":96072},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-005.glb","checksum":"54286b188bbb328feaad9700d37928b04edfded7b349a07c93f2b06949070007","size":1346316,"triangleCount":98184},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-006.glb","checksum":"44bcf1f4d09a7cb89c8661cf17e54cee58eb2e3b0985fca9fcc9ff40bf2a885f","size":1025712,"triangleCount":93344},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-007.glb","checksum":"c341dd602d1eba7b0bd0e1b52b4093cb898791e22e785ee3b5f4c4e3ac593e71","size":1437012,"triangleCount":99589},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-008.glb","checksum":"cafadbe8cefcd6aba2358cd084c7a9a63d7ec8b0bc85b2577ca4548f8b892789","size":1381444,"triangleCount":98845},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-009.glb","checksum":"388ab690649b35e2a54cbd970e58af4202304e0651574fafdef811994ab3297e","size":1361276,"triangleCount":94066},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/560-hillsbradpast/collision-010.glb","checksum":"73c91175d1578989b67445fe898613aaf7045ad93b2edb1a73272aa0cb5a191e","size":558268,"triangleCount":22335}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/560-hillsbradpast/navigation.glb","checksum":"9ed694e1702f3902ad27dccf60641a2ab8636d570d9baaca6b467bd6db218432","size":11508184,"triangleCount":967781}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-228.4322,3.832,2544.5636],"max":[2646.3758,175.2878,3768.2836]},"entrance":{"name":"The Escape From Durnholde Entrance","footPosition":[1247.5798,60.8821,3683.4536],"forward":[0.9954661193868847,0,-0.09511679742725064],"yaw":1.6660571348280568},"areas":[{"id":"entrance","name":"The Escape From Durnholde Entrance","center":[1247.5798,60.8821,3683.4536],"radius":35},{"id":"area-lieutenant-drake","name":"Lieutenant Drake's Encounter","center":[2173.6114,24.858,3599.6707],"radius":42},{"id":"area-captain-skarloc","name":"Captain Skarloc's Encounter","center":[2386.0666,27.195,3591.1638],"radius":42},{"id":"area-epoch-hunter","name":"Epoch Hunter's Encounter","center":[2601.3758,29.532,3577.9538],"radius":42}],"entities":{"entry-28132":{"id":"entry-28132","kind":"mob","name":"Don Carlos","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.434272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-25124-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-17819":{"id":"entry-17819","kind":"mob","name":"Durnholde Sentry","combat":{"level":66,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17999-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-2267":{"id":"entry-2267","kind":"mob","name":"Hillsbrad Peasant","combat":{"level":25,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-6016","name":"Pierce Armor","spellId":6016,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4878,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-11035-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-17815":{"id":"entry-17815","kind":"mob","name":"Lordaeron Sentry","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17947-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-17814":{"id":"entry-17814","kind":"mob","name":"Lordaeron Watchman","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17959-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-17820":{"id":"entry-17820","kind":"mob","name":"Durnholde Rifleman","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17979-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-17833":{"id":"entry-17833","kind":"mob","name":"Durnholde Warden","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18008-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-18657":{"id":"entry-18657","kind":"mob","name":"Tarren Mill Fisherman","combat":{"level":24,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18053-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-18598":{"id":"entry-18598","kind":"mob","name":"Orc Prisoner","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18023-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-2350":{"id":"entry-2350","kind":"mob","name":"Forest Moss Creeper","combat":{"level":21,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-3396","name":"Corrosive Poison","spellId":3396,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6105,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-1989-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.535,"labelHeight":1.7191,"markerRadius":2.8093}}},"entry-18644":{"id":"entry-18644","kind":"mob","name":"Tarren Mill Peasant","combat":{"level":15,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-11354-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2724,"markerRadius":0.65}}},"entry-2354":{"id":"entry-2354","kind":"mob","name":"Vicious Gray Bear","combat":{"level":23,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-1007-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":2.5048,"markerRadius":1.4217}}},"entry-2385":{"id":"entry-2385","kind":"mob","name":"Feral Mountain Lion","combat":{"level":28,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-1056-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0062,"labelHeight":1.7728,"markerRadius":1.3648}}},"entry-20420":{"id":"entry-20420","kind":"mob","name":"Overwatch Mark 0","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-5299-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.8182,"markerRadius":1.1796}}},"entry-20419":{"id":"entry-20419","kind":"mob","name":"Zixil","combat":{"level":32,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-7133-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0029,"labelHeight":1.6801,"markerRadius":0.65}}},"entry-2408":{"id":"entry-2408","kind":"mob","name":"Snapjaw","combat":{"level":31,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/7fd512b6d0b4caacdaa0d47f61101dffccbe0c7f14b6c6cd3022c55c73d2fe72.glb","rotationY":-1.5707963267948966,"groundOffset":0.0159,"labelHeight":2.7541,"markerRadius":1.7458}}},"entry-17840":{"id":"entry-17840","kind":"mob","name":"Durnholde Tracking Hound","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-780-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.2212,"markerRadius":1.5058}}},"entry-17860":{"id":"entry-17860","kind":"mob","name":"Durnholde Veteran","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18004-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-18764":{"id":"entry-18764","kind":"mob","name":"Durnholde Armorer","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18160-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-18765":{"id":"entry-18765","kind":"mob","name":"Durnholde Cook","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18161-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-17846":{"id":"entry-17846","kind":"mob","name":"Pit Spectator","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-11898-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-18673":{"id":"entry-18673","kind":"mob","name":"Pit Announcer","combat":{"level":65,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-11898-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-17876":{"id":"entry-17876","kind":"mob","name":"Thrall","combat":{"level":67,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-32890","name":"Knockout","spellId":32890,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7466,"damageMultiplier":1.12},{"id":"spell-33790","name":"Salvation","spellId":33790,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7466,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17292-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-18094":{"id":"entry-18094","kind":"mob","name":"Tarren Mill Lookout","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18252-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-18093":{"id":"entry-18093","kind":"mob","name":"Tarren Mill Protector","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18265-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-18092":{"id":"entry-18092","kind":"mob","name":"Tarren Mill Guardsman","combat":{"level":68,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-18247-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0022,"labelHeight":2.4814,"markerRadius":0.65}}},"entry-17848":{"id":"entry-17848","kind":"boss","name":"Lieutenant Drake","title":"Dungeon Boss","hasLoot":true,"combat":{"level":68,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-31909","name":"Whirlwind","spellId":31909,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5412,"damageMultiplier":0.82,"radius":11},{"id":"spell-33789","name":"Frightening Shout","spellId":33789,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5412,"damageMultiplier":1.35},{"id":"spell-31911","name":"Mortal Strike","spellId":31911,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5412,"damageMultiplier":1.35},{"id":"spell-9080","name":"Hamstring","spellId":9080,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5412,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"winged","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0009,"labelHeight":3.1165,"markerRadius":0.65}}},"entry-17862":{"id":"entry-17862","kind":"boss","name":"Captain Skarloc","title":"Dungeon Boss","hasLoot":true,"combat":{"level":68,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-8258","name":"Devotion Aura","spellId":8258,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4109,"damageMultiplier":1.35},{"id":"spell-29427","name":"Holy Light","spellId":29427,"delivery":"projectile","target":"lowest-health-friendly","school":"holy","animation":"cast","range":28,"cooldownMs":4109,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}},{"id":"spell-29380","name":"Cleanse","spellId":29380,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4109,"damageMultiplier":1.35},{"id":"spell-13005","name":"Hammer of Justice","spellId":13005,"delivery":"projectile","target":"random-party","school":"holy","animation":"cast","range":28,"cooldownMs":4109,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":2500}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-17387-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.001,"labelHeight":3.3368,"markerRadius":0.6975}}},"entry-18096":{"id":"entry-18096","kind":"boss","name":"Epoch Hunter","title":"Dungeon Boss","hasLoot":true,"combat":{"level":68,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-31914","name":"Sand Breath","spellId":31914,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":6185,"damageMultiplier":0.82,"radius":11},{"id":"spell-31916","name":"Impending Death","spellId":31916,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6185,"damageMultiplier":1.35},{"id":"spell-33834","name":"Magic Disruption Aura","spellId":33834,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6185,"damageMultiplier":1.35},{"id":"spell-31475","name":"Wing Buffet","spellId":31475,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6185,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/escape-from-durnholde/creatures/display-19135-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.3816,"labelHeight":11.9608,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-6998","entityId":"entry-17819","position":[191.7788,111.9373,3199.0436],"yaw":-1.53443,"spawnMask":3},{"id":"creature-11562","entityId":"entry-2267","position":[534.3478,77.3109,2706.5036],"yaw":-3.17157,"spawnMask":3},{"id":"creature-31908","entityId":"entry-17815","position":[809.8918,139.5987,3273.0536],"yaw":-5.40667,"spawnMask":3},{"id":"creature-40162","entityId":"entry-17815","position":[1096.8898,78.472,2908.9736],"yaw":-3.0901,"spawnMask":3},{"id":"creature-41813","entityId":"entry-17815","position":[468.9778,112.2847,3006.9336],"yaw":-2.63777,"spawnMask":3},{"id":"creature-42939","entityId":"entry-17815","position":[465.3398,147.3708,3011.1436],"yaw":-5.98592,"spawnMask":3},{"id":"creature-44653","entityId":"entry-17814","position":[841.6358,104.5041,3271.1636],"yaw":-1.24327,"spawnMask":3},{"id":"creature-44656","entityId":"entry-17814","position":[837.7728,104.5041,3282.8036],"yaw":-1.23542,"spawnMask":3},{"id":"creature-46842","entityId":"entry-17814","position":[812.6328,104.5116,3269.5136],"yaw":-1.21893,"spawnMask":3},{"id":"creature-46850","entityId":"entry-17814","position":[815.7058,104.5122,3264.5836],"yaw":-1.13254,"spawnMask":3},{"id":"creature-47583","entityId":"entry-17814","position":[811.8728,139.5987,3260.1536],"yaw":-3.75341,"spawnMask":3},{"id":"creature-47894","entityId":"entry-17814","position":[825.0188,139.5987,3262.7736],"yaw":-2.26508,"spawnMask":3},{"id":"creature-47895","entityId":"entry-17814","position":[1266.2698,94.1857,3044.9736],"yaw":-0.473587,"spawnMask":3},{"id":"creature-47896","entityId":"entry-17814","position":[1266.2698,94.1857,3044.9736],"yaw":-0.516784,"spawnMask":3},{"id":"creature-48006","entityId":"entry-17814","position":[99.2198,113.2601,2856.8636],"yaw":-3.42276,"spawnMask":3},{"id":"creature-48007","entityId":"entry-17814","position":[99.2198,113.2601,2856.8636],"yaw":-3.46203,"spawnMask":3},{"id":"creature-48008","entityId":"entry-17814","position":[992.0798,54.3396,2726.7336],"yaw":-3.25782,"spawnMask":3},{"id":"creature-48009","entityId":"entry-17814","position":[992.0798,54.3396,2726.7336],"yaw":-3.2539,"spawnMask":3},{"id":"creature-48012","entityId":"entry-17814","position":[1109.7698,78.472,2907.7536],"yaw":-3.0901,"spawnMask":3},{"id":"creature-48013","entityId":"entry-17814","position":[1100.9398,113.5662,2940.5936],"yaw":-5.78328,"spawnMask":3},{"id":"creature-48014","entityId":"entry-17814","position":[1113.1398,113.5662,2937.5936],"yaw":-1.01199,"spawnMask":3},{"id":"creature-48015","entityId":"entry-17814","position":[484.4398,112.2758,2982.5836],"yaw":-2.46811,"spawnMask":3},{"id":"creature-48016","entityId":"entry-17814","position":[473.7468,112.2759,2977.6336],"yaw":-2.52702,"spawnMask":3},{"id":"creature-48017","entityId":"entry-17814","position":[463.8168,112.2852,3001.4136],"yaw":-2.39036,"spawnMask":3},{"id":"creature-48019","entityId":"entry-17814","position":[459.3068,147.3708,2999.8436],"yaw":-4.40884,"spawnMask":3},{"id":"creature-48020","entityId":"entry-17814","position":[477.1758,147.3708,3004.2136],"yaw":-1.40784,"spawnMask":3},{"id":"creature-48021","entityId":"entry-17814","position":[638.6218,102.9729,3580.8636],"yaw":-1.14394,"spawnMask":3},{"id":"creature-48022","entityId":"entry-17814","position":[638.6218,102.9729,3580.8636],"yaw":-1.03005,"spawnMask":3},{"id":"creature-77806","entityId":"entry-17819","position":[196.4648,111.7343,3198.3736],"yaw":-4.74278,"spawnMask":3},{"id":"creature-77816","entityId":"entry-17819","position":[-22.9499,99.2819,3031.9336],"yaw":-4.33673,"spawnMask":3},{"id":"creature-77817","entityId":"entry-17819","position":[16.197,99.3259,2996.8036],"yaw":-3.67686,"spawnMask":3},{"id":"creature-77820","entityId":"entry-17820","position":[188.7198,99.2809,3133.4136],"yaw":-4.17236,"spawnMask":3},{"id":"creature-77854","entityId":"entry-17833","position":[186.0658,99.2808,3137.3636],"yaw":-4.13466,"spawnMask":3},{"id":"creature-81626","entityId":"entry-18657","position":[672.5578,101.2588,3345.7836],"yaw":-4.2586,"spawnMask":3},{"id":"creature-81627","entityId":"entry-18657","position":[679.8418,101.1092,3338.5836],"yaw":-4.18879,"spawnMask":3},{"id":"creature-81628","entityId":"entry-18657","position":[676.7588,101.2178,3341.5636],"yaw":-3.92699,"spawnMask":3},{"id":"creature-83456","entityId":"entry-18598","position":[23.1632,100.5492,3046.5836],"yaw":-2.03389,"spawnMask":3},{"id":"creature-83457","entityId":"entry-17819","position":[28.6648,138.5592,3172.0836],"yaw":-1.13016,"spawnMask":3},{"id":"creature-83460","entityId":"entry-2350","position":[678.3648,72.2574,2894.1936],"yaw":-5.68814,"spawnMask":3},{"id":"creature-83461","entityId":"entry-2350","position":[650.4508,70.9766,2857.3936],"yaw":-2.02028,"spawnMask":3},{"id":"creature-83462","entityId":"entry-2350","position":[647.5618,69.1644,2724.3536],"yaw":-4.31955,"spawnMask":3},{"id":"creature-83463","entityId":"entry-2350","position":[711.8548,59.8344,2596.0536],"yaw":-0.977917,"spawnMask":3},{"id":"creature-83464","entityId":"entry-2350","position":[711.3748,65.8221,2791.4836],"yaw":-4.60475,"spawnMask":3},{"id":"creature-83465","entityId":"entry-2350","position":[751.5118,65.6687,2689.1836],"yaw":-2.36586,"spawnMask":3},{"id":"creature-83466","entityId":"entry-2350","position":[883.8378,86.2929,3023.6836],"yaw":-2.37553,"spawnMask":3},{"id":"creature-83467","entityId":"entry-2350","position":[-53.4322,117.9519,3226.2436],"yaw":-5.36487,"spawnMask":3},{"id":"creature-83468","entityId":"entry-2350","position":[178.3528,110.0999,2787.3336],"yaw":-4.00715,"spawnMask":3},{"id":"creature-83469","entityId":"entry-2350","position":[347.2628,99.1064,2760.2236],"yaw":-6.09652,"spawnMask":3},{"id":"creature-83470","entityId":"entry-2350","position":[482.3688,90.9587,2825.1736],"yaw":-1.04596,"spawnMask":3},{"id":"creature-83471","entityId":"entry-2350","position":[380.5448,98.6251,2788.3136],"yaw":-3.59038,"spawnMask":3},{"id":"creature-83472","entityId":"entry-2350","position":[84.6918,111.4492,2893.0836],"yaw":-0.805437,"spawnMask":3},{"id":"creature-83473","entityId":"entry-2350","position":[512.7908,89.8262,2853.6136],"yaw":-2.96296,"spawnMask":3},{"id":"creature-83478","entityId":"entry-2350","position":[250.1498,108.2756,2789.9736],"yaw":-1.04427,"spawnMask":3},{"id":"creature-83479","entityId":"entry-2350","position":[213.9578,111.1486,2892.0736],"yaw":-5.69789,"spawnMask":3},{"id":"creature-83480","entityId":"entry-2350","position":[283.3428,106.6545,2892.8936],"yaw":-0.804733,"spawnMask":3},{"id":"creature-83481","entityId":"entry-2350","position":[351.2318,105.6637,2895.2336],"yaw":-0.635564,"spawnMask":3},{"id":"creature-83482","entityId":"entry-2350","position":[350.5258,109.1268,2955.9536],"yaw":-2.33134,"spawnMask":3},{"id":"creature-83483","entityId":"entry-2350","position":[246.6638,101.4586,3060.1836],"yaw":-5.47293,"spawnMask":3},{"id":"creature-83484","entityId":"entry-2350","position":[-14.7039,138.1293,3323.7836],"yaw":-0.942144,"spawnMask":3},{"id":"creature-83485","entityId":"entry-2350","position":[11.56,129.5929,3294.9436],"yaw":-5.52197,"spawnMask":3},{"id":"creature-83486","entityId":"entry-2350","position":[143.6698,139.8664,3351.4036],"yaw":-4.32481,"spawnMask":3},{"id":"creature-83487","entityId":"entry-2350","position":[179.7188,155.2878,3452.9636],"yaw":-4.00789,"spawnMask":3},{"id":"creature-83488","entityId":"entry-2350","position":[213.5648,131.6588,3358.8136],"yaw":-1.18231,"spawnMask":3},{"id":"creature-83489","entityId":"entry-2350","position":[212.9838,118.845,3289.8236],"yaw":-3.78919,"spawnMask":3},{"id":"creature-83490","entityId":"entry-2350","position":[311.8398,111.3009,3493.5636],"yaw":-3.31613,"spawnMask":3},{"id":"creature-83491","entityId":"entry-2350","position":[311.5438,109.5718,3059.9336],"yaw":-5.20051,"spawnMask":3},{"id":"creature-83492","entityId":"entry-2350","position":[285.0018,112.5679,3289.5536],"yaw":-2.09479,"spawnMask":3},{"id":"creature-83493","entityId":"entry-2350","position":[284.7118,102.1282,3156.1536],"yaw":-2.36349,"spawnMask":3},{"id":"creature-83494","entityId":"entry-2350","position":[350.3508,102.7745,3157.5336],"yaw":-2.50375,"spawnMask":3},{"id":"creature-83495","entityId":"entry-2350","position":[410.4668,109.4586,3094.3436],"yaw":-5.55995,"spawnMask":3},{"id":"creature-83496","entityId":"entry-2350","position":[416.4198,103.6092,3151.4636],"yaw":-3.13964,"spawnMask":3},{"id":"creature-83503","entityId":"entry-18644","position":[639.9108,102.2278,3481.7836],"yaw":-5.10901,"spawnMask":3},{"id":"creature-83504","entityId":"entry-18644","position":[630.7538,102.1667,3474.9736],"yaw":-2.46143,"spawnMask":3},{"id":"creature-83505","entityId":"entry-18644","position":[667.3558,102.1028,3501.6636],"yaw":-1.04771,"spawnMask":3},{"id":"creature-83512","entityId":"entry-18644","position":[673.8248,102.1028,3520.7536],"yaw":-3.94112,"spawnMask":3},{"id":"creature-83513","entityId":"entry-18644","position":[651.4068,102.1028,3522.6036],"yaw":-1.69096,"spawnMask":3},{"id":"creature-83517","entityId":"entry-2350","position":[509.3918,93.829,3455.3336],"yaw":-3.12402,"spawnMask":3},{"id":"creature-83518","entityId":"entry-18644","position":[599.9648,102.703,3490.6236],"yaw":-1.65806,"spawnMask":3},{"id":"creature-83526","entityId":"entry-2350","position":[480.4608,93.6728,3551.4636],"yaw":-3.57073,"spawnMask":3},{"id":"creature-83527","entityId":"entry-2350","position":[515.6108,106.2551,3661.4536],"yaw":-5.92807,"spawnMask":3},{"id":"creature-83528","entityId":"entry-2350","position":[679.4618,118.4612,3688.1236],"yaw":-3.58559,"spawnMask":3},{"id":"creature-83529","entityId":"entry-2350","position":[778.9558,117.0811,3658.7136],"yaw":-5.55636,"spawnMask":3},{"id":"creature-83530","entityId":"entry-2350","position":[749.1198,104.096,3486.1336],"yaw":-3.25706,"spawnMask":3},{"id":"creature-83531","entityId":"entry-2350","position":[777.4528,103.4362,3456.3136],"yaw":-2.23304,"spawnMask":3},{"id":"creature-83532","entityId":"entry-2350","position":[718.1478,102.757,3391.7036],"yaw":-1.45776,"spawnMask":3},{"id":"creature-83533","entityId":"entry-2350","position":[577.4028,101.7301,3323.2636],"yaw":-3.39036,"spawnMask":3},{"id":"creature-83534","entityId":"entry-2350","position":[516.3398,97.7034,3257.2336],"yaw":-3.99889,"spawnMask":3},{"id":"creature-83535","entityId":"entry-2350","position":[583.4248,102.5247,3259.7236],"yaw":-0.766741,"spawnMask":3},{"id":"creature-83536","entityId":"entry-2350","position":[780.0188,99.1437,3122.8036],"yaw":-4.33952,"spawnMask":3},{"id":"creature-83537","entityId":"entry-2350","position":[615.4098,79.8205,2959.7436],"yaw":-0.00781234,"spawnMask":3},{"id":"creature-83538","entityId":"entry-2350","position":[648.4458,79.6973,2992.4136],"yaw":-0.683737,"spawnMask":3},{"id":"creature-83539","entityId":"entry-2350","position":[585.0388,74.5672,2788.1836],"yaw":-2.34308,"spawnMask":3},{"id":"creature-83540","entityId":"entry-2350","position":[617.6998,74.7637,2827.0336],"yaw":-0.788161,"spawnMask":3},{"id":"creature-83541","entityId":"entry-2350","position":[1050.6898,114.2759,3391.9136],"yaw":-2.44748,"spawnMask":3},{"id":"creature-83542","entityId":"entry-2350","position":[949.9298,107.8602,3358.6536],"yaw":-0.767444,"spawnMask":3},{"id":"creature-83543","entityId":"entry-2350","position":[1215.0898,104.5844,3226.5836],"yaw":-0.83515,"spawnMask":3},{"id":"creature-83544","entityId":"entry-2350","position":[1083.1898,100.1964,3227.0636],"yaw":-0.770206,"spawnMask":3},{"id":"creature-83545","entityId":"entry-2350","position":[1244.8398,103.7447,3193.2036],"yaw":-4.58113,"spawnMask":3},{"id":"creature-83546","entityId":"entry-2350","position":[982.1998,100.1643,3259.9436],"yaw":-0.839288,"spawnMask":3},{"id":"creature-83547","entityId":"entry-2350","position":[1150.3798,96.6588,3156.2536],"yaw":-2.54871,"spawnMask":3},{"id":"creature-83548","entityId":"entry-2350","position":[1020.5098,88.9373,3090.8336],"yaw":-2.49751,"spawnMask":3},{"id":"creature-83549","entityId":"entry-2350","position":[1150.5398,87.9483,3023.0436],"yaw":-2.48637,"spawnMask":3},{"id":"creature-83550","entityId":"entry-2350","position":[877.7818,91.0649,3088.6236],"yaw":-4.53568,"spawnMask":3},{"id":"creature-83551","entityId":"entry-2350","position":[1212.9398,93.8603,3028.4736],"yaw":-5.376,"spawnMask":3},{"id":"creature-83552","entityId":"entry-2350","position":[1220.4998,65.1686,2894.1536],"yaw":-1.12243,"spawnMask":3},{"id":"creature-83553","entityId":"entry-2350","position":[1152.6798,66.3543,2756.0336],"yaw":-2.37691,"spawnMask":3},{"id":"creature-83554","entityId":"entry-2350","position":[1245.4598,107.862,2660.3636],"yaw":-4.42215,"spawnMask":3},{"id":"creature-83555","entityId":"entry-2350","position":[-149.1929,132.2349,3190.3636],"yaw":-2.37001,"spawnMask":3},{"id":"creature-83556","entityId":"entry-2350","position":[116.9428,112.6413,2790.5436],"yaw":-2.36517,"spawnMask":3},{"id":"creature-83557","entityId":"entry-2350","position":[249.4758,105.5012,2661.0536],"yaw":-0.475011,"spawnMask":3},{"id":"creature-83558","entityId":"entry-2350","position":[316.2188,100.1925,2659.4136],"yaw":-1.14037,"spawnMask":3},{"id":"creature-83559","entityId":"entry-2350","position":[412.6698,93.3322,2760.9236],"yaw":-5.53368,"spawnMask":3},{"id":"creature-83560","entityId":"entry-2354","position":[685.0008,64.046,2623.8336],"yaw":-0.942144,"spawnMask":3},{"id":"creature-83561","entityId":"entry-2354","position":[650.5408,73.1256,2788.5636],"yaw":-2.75093,"spawnMask":3},{"id":"creature-83562","entityId":"entry-2354","position":[850.8578,90.7425,3056.3136],"yaw":-2.27439,"spawnMask":3},{"id":"creature-83563","entityId":"entry-2354","position":[744.8848,57.753,2622.1236],"yaw":-3.88348,"spawnMask":3},{"id":"creature-83564","entityId":"entry-2354","position":[-53.4481,132.6711,3288.4136],"yaw":-4.04741,"spawnMask":3},{"id":"creature-83565","entityId":"entry-2354","position":[147.4178,116.4011,2823.1136],"yaw":-3.09861,"spawnMask":3},{"id":"creature-83566","entityId":"entry-2354","position":[308.6408,101.3549,2785.2936],"yaw":-4.18937,"spawnMask":3},{"id":"creature-83567","entityId":"entry-2354","position":[179.7168,113.2948,2855.8336],"yaw":-3.96013,"spawnMask":3},{"id":"creature-83568","entityId":"entry-2354","position":[217.7008,109.3157,2828.0736],"yaw":-0.285005,"spawnMask":3},{"id":"creature-83569","entityId":"entry-2354","position":[445.1178,93.0321,2858.3636],"yaw":-4.61058,"spawnMask":3},{"id":"creature-83570","entityId":"entry-2354","position":[416.3338,102.2515,2887.8536],"yaw":-2.50648,"spawnMask":3},{"id":"creature-83571","entityId":"entry-2354","position":[313.8938,108.6852,2927.8736],"yaw":-5.36683,"spawnMask":3},{"id":"creature-83572","entityId":"entry-2354","position":[379.0938,109.4647,2988.3536],"yaw":-4.10839,"spawnMask":3},{"id":"creature-83573","entityId":"entry-2354","position":[278.6758,108.2828,3023.4536],"yaw":-4.21432,"spawnMask":3},{"id":"creature-83574","entityId":"entry-2354","position":[179.1218,126.3551,3326.9036],"yaw":-5.90087,"spawnMask":3},{"id":"creature-83575","entityId":"entry-2354","position":[186.7838,140.5078,3389.3436],"yaw":-2.13416,"spawnMask":3},{"id":"creature-83576","entityId":"entry-2354","position":[216.0648,148.6788,3487.9136],"yaw":-2.62456,"spawnMask":3},{"id":"creature-83577","entityId":"entry-2354","position":[283.1648,104.6136,3226.6836],"yaw":-0.588003,"spawnMask":3},{"id":"creature-83578","entityId":"entry-2354","position":[308.8968,101.3006,3119.8636],"yaw":-3.83921,"spawnMask":3},{"id":"creature-83579","entityId":"entry-2354","position":[350.5248,104.9491,3292.4136],"yaw":-0.913611,"spawnMask":3},{"id":"creature-83580","entityId":"entry-2354","position":[316.5358,109.5224,3258.2336],"yaw":-0.747407,"spawnMask":3},{"id":"creature-83581","entityId":"entry-2354","position":[317.3378,103.099,3188.9236],"yaw":-2.32511,"spawnMask":3},{"id":"creature-83582","entityId":"entry-2354","position":[445.7118,102.1797,3121.3936],"yaw":-3.7296,"spawnMask":3},{"id":"creature-83583","entityId":"entry-2354","position":[480.6968,95.2973,3426.5636],"yaw":-5.46283,"spawnMask":3},{"id":"creature-83584","entityId":"entry-2354","position":[482.0338,99.7426,3625.4036],"yaw":-0.889805,"spawnMask":3},{"id":"creature-83585","entityId":"entry-2354","position":[618.0118,114.1578,3692.6436],"yaw":-0.80059,"spawnMask":3},{"id":"creature-83586","entityId":"entry-2354","position":[584.6818,115.051,3723.2836],"yaw":-0.85454,"spawnMask":3},{"id":"creature-83587","entityId":"entry-2354","position":[777.3898,117.3829,3720.7736],"yaw":-3.65914,"spawnMask":3},{"id":"creature-83588","entityId":"entry-2354","position":[772.0108,102.5119,3520.7936],"yaw":-4.18437,"spawnMask":3},{"id":"creature-83589","entityId":"entry-2354","position":[551.1198,104.2857,3354.4336],"yaw":-2.76145,"spawnMask":3},{"id":"creature-83590","entityId":"entry-2354","position":[750.1718,104.1156,3359.7336],"yaw":-0.793685,"spawnMask":3},{"id":"creature-83591","entityId":"entry-2354","position":[615.7928,102.7155,3230.1336],"yaw":-0.0224572,"spawnMask":3},{"id":"creature-83592","entityId":"entry-2354","position":[710.6938,95.5478,3129.5736],"yaw":-5.3348,"spawnMask":3},{"id":"creature-83593","entityId":"entry-2354","position":[580.1688,81.5946,2926.1436],"yaw":-5.5413,"spawnMask":3},{"id":"creature-83594","entityId":"entry-2354","position":[612.8248,75.5562,2893.6536],"yaw":-5.38088,"spawnMask":3},{"id":"creature-83595","entityId":"entry-2354","position":[644.7768,81.0638,2592.9436],"yaw":-5.03472,"spawnMask":3},{"id":"creature-83596","entityId":"entry-2354","position":[614.9748,69.9587,2757.0136],"yaw":-3.12206,"spawnMask":3},{"id":"creature-83597","entityId":"entry-2354","position":[1011.1398,111.7245,3357.5136],"yaw":-4.95595,"spawnMask":3},{"id":"creature-83598","entityId":"entry-2354","position":[1082.0698,106.0909,3291.6136],"yaw":-0.934714,"spawnMask":3},{"id":"creature-83599","entityId":"entry-2354","position":[983.2098,106.151,3325.8536],"yaw":-0.799209,"spawnMask":3},{"id":"creature-83600","entityId":"entry-2354","position":[1150.0398,104.1778,3222.8336],"yaw":-2.36862,"spawnMask":3},{"id":"creature-83601","entityId":"entry-2354","position":[913.3088,106.4975,3327.6336],"yaw":-5.47222,"spawnMask":3},{"id":"creature-83602","entityId":"entry-2354","position":[1218.0098,99.414,3157.3436],"yaw":-2.00866,"spawnMask":3},{"id":"creature-83603","entityId":"entry-2354","position":[1249.0098,98.9216,3127.2036],"yaw":-0.7514,"spawnMask":3},{"id":"creature-83604","entityId":"entry-2354","position":[1051.4098,87.8938,3119.3836],"yaw":-2.57554,"spawnMask":3},{"id":"creature-83605","entityId":"entry-2354","position":[1115.9598,89.807,3058.3636],"yaw":-2.00713,"spawnMask":3},{"id":"creature-83606","entityId":"entry-2354","position":[1015.1498,83.7182,3023.0336],"yaw":-3.11793,"spawnMask":3},{"id":"creature-83607","entityId":"entry-2354","position":[816.8208,100.2289,3160.3936],"yaw":-0.457097,"spawnMask":3},{"id":"creature-83608","entityId":"entry-2354","position":[1186.5298,93.1533,2985.3236],"yaw":-4.93774,"spawnMask":3},{"id":"creature-83609","entityId":"entry-2354","position":[1218.5098,84.4783,2963.8836],"yaw":-0.860051,"spawnMask":3},{"id":"creature-83610","entityId":"entry-2354","position":[1247.1398,64.8279,2921.5336],"yaw":-2.99555,"spawnMask":3},{"id":"creature-83611","entityId":"entry-2354","position":[1183.8498,66.6037,2790.3636],"yaw":-2.88596,"spawnMask":3},{"id":"creature-83612","entityId":"entry-2354","position":[1251.0498,71.5567,2788.6736],"yaw":-2.67576,"spawnMask":3},{"id":"creature-83613","entityId":"entry-2354","position":[1253.6598,95.5105,2720.1536],"yaw":-2.4057,"spawnMask":3},{"id":"creature-83614","entityId":"entry-2354","position":[919.0208,83.413,2987.9136],"yaw":-2.27466,"spawnMask":3},{"id":"creature-83615","entityId":"entry-2354","position":[850.0828,80.7176,2990.6536],"yaw":-3.96636,"spawnMask":3},{"id":"creature-83616","entityId":"entry-2354","position":[753.2078,60.8466,2757.9436],"yaw":-1.4582,"spawnMask":3},{"id":"creature-83617","entityId":"entry-2354","position":[-154.1346,127.2185,3125.8936],"yaw":-5.55168,"spawnMask":3},{"id":"creature-83618","entityId":"entry-2354","position":[-183.4322,133.2483,3159.0136],"yaw":-0.0156237,"spawnMask":3},{"id":"creature-83619","entityId":"entry-2354","position":[13.586,104.6087,2891.0036],"yaw":-5.17254,"spawnMask":3},{"id":"creature-83620","entityId":"entry-2354","position":[179.7808,104.3238,2728.5336],"yaw":-5.46189,"spawnMask":3},{"id":"creature-83621","entityId":"entry-2354","position":[215.0898,107.9723,2692.8036],"yaw":-0.564707,"spawnMask":3},{"id":"creature-83622","entityId":"entry-2354","position":[244.7708,97.8333,2725.6336],"yaw":-5.20924,"spawnMask":3},{"id":"creature-83623","entityId":"entry-2354","position":[280.8428,100.4683,2688.9436],"yaw":-3.4713,"spawnMask":3},{"id":"creature-83624","entityId":"entry-2354","position":[344.8498,98.713,2687.7036],"yaw":-4.28019,"spawnMask":3},{"id":"creature-83625","entityId":"entry-2354","position":[452.1158,95.3019,2795.2736],"yaw":-0.878059,"spawnMask":3},{"id":"creature-83626","entityId":"entry-2354","position":[448.9298,91.3484,2594.2236],"yaw":-0.420405,"spawnMask":3},{"id":"creature-83654","entityId":"entry-2354","position":[516.1798,89.4909,2589.5636],"yaw":-2.37069,"spawnMask":3},{"id":"creature-83655","entityId":"entry-2385","position":[681.1418,72.4362,2689.1136],"yaw":-3.59563,"spawnMask":3},{"id":"creature-83656","entityId":"entry-2385","position":[683.8418,65.6659,2825.3836],"yaw":-1.6635,"spawnMask":3},{"id":"creature-83657","entityId":"entry-2385","position":[682.0038,70.0102,2755.4436],"yaw":-5.67279,"spawnMask":3},{"id":"creature-83658","entityId":"entry-2385","position":[713.8498,72.8837,2654.9936],"yaw":-3.05748,"spawnMask":3},{"id":"creature-83659","entityId":"entry-2385","position":[711.5208,68.7861,2721.6136],"yaw":-3.95737,"spawnMask":3},{"id":"creature-83660","entityId":"entry-2385","position":[278.3398,100.2596,2755.3136],"yaw":-1.12726,"spawnMask":3},{"id":"creature-83661","entityId":"entry-2385","position":[210.7988,107.8171,2755.8736],"yaw":-3.99613,"spawnMask":3},{"id":"creature-83662","entityId":"entry-2385","position":[111.0108,109.7607,2922.5136],"yaw":-4.32045,"spawnMask":3},{"id":"creature-83663","entityId":"entry-2385","position":[416.8158,95.246,2823.1436],"yaw":-2.21273,"spawnMask":3},{"id":"creature-83664","entityId":"entry-2385","position":[282.2858,97.9828,2821.6636],"yaw":-3.59489,"spawnMask":3},{"id":"creature-83665","entityId":"entry-2385","position":[246.1638,110.5578,2853.9936],"yaw":-3.86759,"spawnMask":3},{"id":"creature-83666","entityId":"entry-2385","position":[315.3748,106.0316,2855.4936],"yaw":-2.21703,"spawnMask":3},{"id":"creature-83667","entityId":"entry-2385","position":[384.1858,100.4495,2857.9636],"yaw":-2.28705,"spawnMask":3},{"id":"creature-83676","entityId":"entry-20420","position":[985.7898,53.8028,2698.7936],"yaw":-1.55334,"spawnMask":3},{"id":"creature-83677","entityId":"entry-20419","position":[984.4598,53.8028,2700.7036],"yaw":-3.7001,"spawnMask":3},{"id":"creature-83732","entityId":"entry-2385","position":[383.7158,105.1797,2922.9136],"yaw":-2.06555,"spawnMask":3},{"id":"creature-83733","entityId":"entry-2385","position":[277.5938,99.0649,3093.9636],"yaw":-5.32071,"spawnMask":3},{"id":"creature-83734","entityId":"entry-2385","position":[-17.0159,122.5722,3259.1536],"yaw":-6.05629,"spawnMask":3},{"id":"creature-83735","entityId":"entry-2385","position":[49.5478,139.0826,3325.9136],"yaw":-0.48766,"spawnMask":3},{"id":"creature-83736","entityId":"entry-2385","position":[117.4218,135.3513,3328.0236],"yaw":-6.22454,"spawnMask":3},{"id":"creature-83737","entityId":"entry-2385","position":[83.1398,146.58,3358.0736],"yaw":-0.657362,"spawnMask":3},{"id":"creature-83738","entityId":"entry-2385","position":[312.6348,108.7686,3559.3136],"yaw":-5.18692,"spawnMask":3},{"id":"creature-83739","entityId":"entry-2385","position":[250.5828,153.8518,3425.5136],"yaw":-0.856558,"spawnMask":3},{"id":"creature-83740","entityId":"entry-2385","position":[244.1958,110.4847,3261.2336],"yaw":-5.55654,"spawnMask":3},{"id":"creature-83741","entityId":"entry-2385","position":[247.2488,123.3703,3319.5136],"yaw":-3.6319,"spawnMask":3},{"id":"creature-83742","entityId":"entry-2385","position":[348.8398,103.1965,3227.5036],"yaw":-0.630807,"spawnMask":3},{"id":"creature-83743","entityId":"entry-2385","position":[346.6918,118.3743,3093.9436],"yaw":-0.407713,"spawnMask":3},{"id":"creature-83744","entityId":"entry-2385","position":[383.0478,108.7846,3123.2036],"yaw":-2.48044,"spawnMask":3},{"id":"creature-83745","entityId":"entry-2385","position":[477.9808,93.2606,3491.8336],"yaw":-5.11754,"spawnMask":3},{"id":"creature-83746","entityId":"entry-2385","position":[554.0728,107.5929,3691.2636],"yaw":-1.30215,"spawnMask":3},{"id":"creature-83747","entityId":"entry-2385","position":[718.2938,128.092,3718.8336],"yaw":-2.20024,"spawnMask":3},{"id":"creature-83748","entityId":"entry-2385","position":[744.0998,120.6504,3692.0636],"yaw":-5.01591,"spawnMask":3},{"id":"creature-83749","entityId":"entry-2385","position":[848.1948,136.5223,3721.3836],"yaw":-3.18848,"spawnMask":3},{"id":"creature-83750","entityId":"entry-2385","position":[846.7738,127.7768,3658.9536],"yaw":-5.32991,"spawnMask":3},{"id":"creature-83751","entityId":"entry-2385","position":[747.3938,103.1346,3425.8736],"yaw":-2.37282,"spawnMask":3},{"id":"creature-83752","entityId":"entry-2385","position":[548.3828,101.2156,3292.6036],"yaw":-5.4895,"spawnMask":3},{"id":"creature-83753","entityId":"entry-2385","position":[714.5488,102.789,3327.2736],"yaw":-5.31935,"spawnMask":3},{"id":"creature-83754","entityId":"entry-2385","position":[711.9768,105.2529,3261.7936],"yaw":-5.69166,"spawnMask":3},{"id":"creature-83755","entityId":"entry-2385","position":[579.8218,86.113,2990.6536],"yaw":-4.12606,"spawnMask":3},{"id":"creature-83756","entityId":"entry-2385","position":[611.0098,86.9017,3018.3336],"yaw":-4.23128,"spawnMask":3},{"id":"creature-83757","entityId":"entry-2385","position":[815.2588,96.1972,3086.4836],"yaw":-2.51507,"spawnMask":3},{"id":"creature-83758","entityId":"entry-2385","position":[585.9528,80.1967,2853.9636],"yaw":-3.66728,"spawnMask":3},{"id":"creature-83759","entityId":"entry-2385","position":[648.9408,73.1349,2925.1536],"yaw":-0.827452,"spawnMask":3},{"id":"creature-83760","entityId":"entry-2385","position":[647.2328,74.2585,2657.8536],"yaw":-5.36058,"spawnMask":3},{"id":"creature-83761","entityId":"entry-2385","position":[1048.8198,108.4577,3323.0836],"yaw":-3.14843,"spawnMask":3},{"id":"creature-83762","entityId":"entry-2385","position":[1015.4098,103.1286,3293.8536],"yaw":-0.856558,"spawnMask":3},{"id":"creature-83763","entityId":"entry-2385","position":[1244.0698,109.4982,3261.2036],"yaw":-5.58357,"spawnMask":3},{"id":"creature-83764","entityId":"entry-2385","position":[1115.7398,104.6026,3260.8936],"yaw":-6.25292,"spawnMask":3},{"id":"creature-83765","entityId":"entry-2385","position":[1048.1098,101.3867,3257.5036],"yaw":-2.28779,"spawnMask":3},{"id":"creature-83766","entityId":"entry-2385","position":[946.7498,102.6954,3295.7536],"yaw":-5.66918,"spawnMask":3},{"id":"creature-83767","entityId":"entry-2385","position":[1182.3998,100.5681,3190.5636],"yaw":-2.68974,"spawnMask":3},{"id":"creature-83768","entityId":"entry-2385","position":[1011.9698,100.176,3226.8936],"yaw":-5.62797,"spawnMask":3},{"id":"creature-83769","entityId":"entry-2385","position":[1115.7098,98.2392,3189.6836],"yaw":-2.48286,"spawnMask":3},{"id":"creature-83770","entityId":"entry-2385","position":[885.8638,103.4853,3357.4836],"yaw":-1.98813,"spawnMask":3},{"id":"creature-83771","entityId":"entry-2385","position":[950.4698,99.4474,3222.9036],"yaw":-2.53111,"spawnMask":3},{"id":"creature-83772","entityId":"entry-2385","position":[1080.0798,89.0991,3095.6736],"yaw":-5.66078,"spawnMask":3},{"id":"creature-83773","entityId":"entry-2385","position":[848.0398,109.229,3388.6936],"yaw":-4.13156,"spawnMask":3},{"id":"creature-83774","entityId":"entry-2385","position":[1046.8798,84.7353,3057.0136],"yaw":-3.93666,"spawnMask":3},{"id":"creature-83775","entityId":"entry-2385","position":[915.5688,91.6723,3121.6836],"yaw":-3.67431,"spawnMask":3},{"id":"creature-83776","entityId":"entry-2385","position":[852.1258,96.5441,3125.0936],"yaw":-0.692738,"spawnMask":3},{"id":"creature-83777","entityId":"entry-2385","position":[1076.8798,84.5446,3021.8636],"yaw":-3.83083,"spawnMask":3},{"id":"creature-83778","entityId":"entry-2385","position":[921.2568,87.3234,3062.4436],"yaw":-0.65385,"spawnMask":3},{"id":"creature-83779","entityId":"entry-2385","position":[1247.5698,92.2259,2993.5736],"yaw":-5.8357,"spawnMask":3},{"id":"creature-83780","entityId":"entry-2385","position":[1255.1498,65.2999,2861.9536],"yaw":-0.792304,"spawnMask":3},{"id":"creature-83781","entityId":"entry-2385","position":[1215.0598,78.9766,2761.0036],"yaw":-5.22015,"spawnMask":3},{"id":"creature-83782","entityId":"entry-2385","position":[1181.4198,80.6225,2723.3936],"yaw":-4.29416,"spawnMask":3},{"id":"creature-83783","entityId":"entry-2385","position":[1211.0498,95.0898,2690.4136],"yaw":-3.47785,"spawnMask":3},{"id":"creature-83784","entityId":"entry-2385","position":[1115.6898,57.4341,2726.2236],"yaw":-5.38499,"spawnMask":3},{"id":"creature-83785","entityId":"entry-2385","position":[885.7178,78.4784,2960.4936],"yaw":-1.14821,"spawnMask":3},{"id":"creature-83786","entityId":"entry-2385","position":[-82.2742,126.5785,3257.6636],"yaw":-2.57419,"spawnMask":3},{"id":"creature-83787","entityId":"entry-2385","position":[-120.2925,131.7854,3227.2736],"yaw":-5.29335,"spawnMask":3},{"id":"creature-83788","entityId":"entry-2385","position":[150.7018,108.4804,2758.2536],"yaw":-1.646,"spawnMask":3},{"id":"creature-83789","entityId":"entry-2385","position":[316.2858,98.3645,2726.0236],"yaw":-0.802674,"spawnMask":3},{"id":"creature-83790","entityId":"entry-2385","position":[379.8268,95.7865,2727.5936],"yaw":-5.70223,"spawnMask":3},{"id":"creature-83791","entityId":"entry-2385","position":[283.4508,104.0028,2624.2936],"yaw":-2.39419,"spawnMask":3},{"id":"creature-83792","entityId":"entry-2385","position":[583.4108,89.1692,2594.2936],"yaw":-0.677486,"spawnMask":3},{"id":"creature-83793","entityId":"entry-2385","position":[549.6058,81.1731,2828.6736],"yaw":-5.23807,"spawnMask":3},{"id":"creature-83794","entityId":"entry-2408","position":[751.4748,50.8693,2993.9336],"yaw":-3.95875,"spawnMask":3},{"id":"creature-83795","entityId":"entry-2408","position":[782.0578,51.6095,2960.3036],"yaw":-0.864164,"spawnMask":3},{"id":"creature-83796","entityId":"entry-2408","position":[793.6648,51.9554,2925.0636],"yaw":-4.89906,"spawnMask":3},{"id":"creature-83797","entityId":"entry-2408","position":[409.3858,81.3233,3456.9736],"yaw":-0.890118,"spawnMask":3},{"id":"creature-83798","entityId":"entry-2408","position":[408.6408,83.2144,3420.8536],"yaw":-4.39064,"spawnMask":3},{"id":"creature-83799","entityId":"entry-2408","position":[454.3468,81.0341,3226.9336],"yaw":-4.89765,"spawnMask":3},{"id":"creature-83800","entityId":"entry-2408","position":[437.6208,80.9743,3254.8536],"yaw":-1.96183,"spawnMask":3},{"id":"creature-83801","entityId":"entry-2408","position":[435.4318,80.8281,3290.0936],"yaw":-0.726362,"spawnMask":3},{"id":"creature-83802","entityId":"entry-2408","position":[429.8258,81.455,3323.0236],"yaw":-4.03765,"spawnMask":3},{"id":"creature-83803","entityId":"entry-2408","position":[428.7358,82.6894,3357.4636],"yaw":-4.85539,"spawnMask":3},{"id":"creature-83804","entityId":"entry-2408","position":[427.1708,82.3657,3388.4536],"yaw":-1.46802,"spawnMask":3},{"id":"creature-83805","entityId":"entry-2408","position":[408.1628,82.3511,3492.1036],"yaw":-5.87111,"spawnMask":3},{"id":"creature-83806","entityId":"entry-2408","position":[417.8398,81.9982,3524.8236],"yaw":-0.762967,"spawnMask":3},{"id":"creature-83807","entityId":"entry-2408","position":[415.7298,82.2606,3559.0836],"yaw":-0.46627,"spawnMask":3},{"id":"creature-83808","entityId":"entry-2408","position":[416.1138,82.2058,3588.2236],"yaw":-2.99049,"spawnMask":3},{"id":"creature-83809","entityId":"entry-2408","position":[418.1528,82.4179,3621.2036],"yaw":-2.44335,"spawnMask":3},{"id":"creature-83810","entityId":"entry-2408","position":[483.7948,79.93,3188.7436],"yaw":-1.14035,"spawnMask":3},{"id":"creature-83811","entityId":"entry-2408","position":[518.3508,78.5836,3169.6436],"yaw":-0.802674,"spawnMask":3},{"id":"creature-83812","entityId":"entry-2408","position":[548.2328,75.7271,3159.3236],"yaw":-0.715585,"spawnMask":3},{"id":"creature-83813","entityId":"entry-2408","position":[581.5998,73.8888,3133.9836],"yaw":-5.50055,"spawnMask":3},{"id":"creature-83814","entityId":"entry-2408","position":[611.5728,74.8861,3091.2236],"yaw":-1.45244,"spawnMask":3},{"id":"creature-83815","entityId":"entry-2408","position":[640.7418,74.9062,3074.8136],"yaw":-2.12204,"spawnMask":3},{"id":"creature-83816","entityId":"entry-2408","position":[693.2218,51.3543,3052.4536],"yaw":-3.35623,"spawnMask":3},{"id":"creature-83817","entityId":"entry-2408","position":[720.7928,49.9207,3027.5236],"yaw":-2.69819,"spawnMask":3},{"id":"creature-83818","entityId":"entry-2408","position":[826.6228,52.8643,2762.7636],"yaw":-1.13334,"spawnMask":3},{"id":"creature-83819","entityId":"entry-2408","position":[814.3638,52.567,2789.8536],"yaw":-3.38231,"spawnMask":3},{"id":"creature-83820","entityId":"entry-2408","position":[818.6048,52.7199,2859.4436],"yaw":-6.11486,"spawnMask":3},{"id":"creature-83821","entityId":"entry-2408","position":[813.8568,52.9067,2826.4636],"yaw":-4.72704,"spawnMask":3},{"id":"creature-83822","entityId":"entry-2408","position":[811.1628,52.3551,2888.0436],"yaw":-3.44914,"spawnMask":3},{"id":"creature-83901","entityId":"entry-17819","position":[128.1018,113.0616,3054.7036],"yaw":-2.46529,"spawnMask":3},{"id":"creature-83902","entityId":"entry-17820","position":[121.4748,113.0619,3050.5936],"yaw":-2.57525,"spawnMask":3},{"id":"creature-83903","entityId":"entry-17819","position":[155.9938,111.715,3060.9036],"yaw":-4.99208,"spawnMask":3},{"id":"creature-83904","entityId":"entry-17819","position":[151.0508,111.7833,3061.9236],"yaw":-1.66828,"spawnMask":3},{"id":"creature-83905","entityId":"entry-17819","position":[101.0068,111.9902,3018.1336],"yaw":-3.72429,"spawnMask":3},{"id":"creature-83906","entityId":"entry-17840","position":[116.1728,116.0928,3064.1236],"yaw":-5.73098,"spawnMask":3},{"id":"creature-83908","entityId":"entry-17819","position":[98.4278,111.882,3014.7636],"yaw":-0.634532,"spawnMask":3},{"id":"creature-83909","entityId":"entry-17819","position":[153.3928,111.7138,3018.3936],"yaw":-2.52515,"spawnMask":3},{"id":"creature-83911","entityId":"entry-17840","position":[164.1518,111.7135,3060.8536],"yaw":-1.00681,"spawnMask":3},{"id":"creature-83912","entityId":"entry-17820","position":[107.0738,113.0615,3083.1136],"yaw":-2.54227,"spawnMask":3},{"id":"creature-83913","entityId":"entry-17820","position":[100.8898,113.0615,3079.0736],"yaw":-2.4598,"spawnMask":3},{"id":"creature-83914","entityId":"entry-18598","position":[28.632,100.0062,3038.9936],"yaw":-6.25306,"spawnMask":3},{"id":"creature-83915","entityId":"entry-18598","position":[31.9476,99.8447,3048.1136],"yaw":-3.87722,"spawnMask":3},{"id":"creature-83916","entityId":"entry-18598","position":[-11.0495,101.0827,3046.1236],"yaw":-4.91709,"spawnMask":3},{"id":"creature-83917","entityId":"entry-18598","position":[11.4382,99.7315,3044.8936],"yaw":-2.78709,"spawnMask":3},{"id":"creature-83918","entityId":"entry-18598","position":[-24.9028,101.3977,3057.5836],"yaw":-3.66759,"spawnMask":3},{"id":"creature-83919","entityId":"entry-18598","position":[44.3978,102.2297,3004.2336],"yaw":-1.96871,"spawnMask":3},{"id":"creature-83920","entityId":"entry-18598","position":[49.8428,102.2436,2999.7336],"yaw":-5.78024,"spawnMask":3},{"id":"creature-83921","entityId":"entry-18598","position":[60.8238,101.1088,3012.1836],"yaw":-1.75747,"spawnMask":3},{"id":"creature-83922","entityId":"entry-17820","position":[38.2518,100.1346,3013.8536],"yaw":-5.89137,"spawnMask":3},{"id":"creature-83923","entityId":"entry-17833","position":[43.1498,100.1622,3016.1636],"yaw":-5.9597,"spawnMask":3},{"id":"creature-83924","entityId":"entry-17819","position":[75.2288,100.0988,3008.2236],"yaw":-2.79768,"spawnMask":3},{"id":"creature-83925","entityId":"entry-18598","position":[-0.0739,101.1833,3008.5636],"yaw":-6.10775,"spawnMask":3},{"id":"creature-83926","entityId":"entry-17833","position":[6.2586,99.2818,3024.3036],"yaw":-0.525837,"spawnMask":3},{"id":"creature-83927","entityId":"entry-17819","position":[1.805,99.3162,3026.5436],"yaw":-0.480697,"spawnMask":3},{"id":"creature-83928","entityId":"entry-17820","position":[-12.9542,99.4314,3059.0136],"yaw":-1.17158,"spawnMask":3},{"id":"creature-83929","entityId":"entry-17833","position":[-15.3199,99.2808,3064.3336],"yaw":-1.11189,"spawnMask":3},{"id":"creature-83931","entityId":"entry-17840","position":[-0.1282,99.3654,3054.5536],"yaw":-2.52167,"spawnMask":3},{"id":"creature-83932","entityId":"entry-18598","position":[27.4213,99.7912,3028.1036],"yaw":-5.15978,"spawnMask":3},{"id":"creature-83933","entityId":"entry-17860","position":[56.2518,136.2947,3158.6236],"yaw":-0.339619,"spawnMask":3},{"id":"creature-83935","entityId":"entry-17833","position":[71.9428,135.0562,3122.8636],"yaw":-2.67875,"spawnMask":3},{"id":"creature-83936","entityId":"entry-17819","position":[70.0648,135.0562,3128.5436],"yaw":-2.71802,"spawnMask":3},{"id":"creature-83937","entityId":"entry-17860","position":[75.0888,135.0562,3131.4236],"yaw":-2.71409,"spawnMask":3},{"id":"creature-83938","entityId":"entry-17820","position":[78.7498,135.0562,3126.6536],"yaw":-2.60806,"spawnMask":3},{"id":"creature-83941","entityId":"entry-17840","position":[39.6598,136.2947,3152.1936],"yaw":-3.8058,"spawnMask":3},{"id":"creature-83942","entityId":"entry-17833","position":[111.8328,100.0216,3063.2336],"yaw":-0.586199,"spawnMask":3},{"id":"creature-83943","entityId":"entry-17833","position":[115.6618,99.6197,3065.6436],"yaw":-4.01682,"spawnMask":3},{"id":"creature-83944","entityId":"entry-17819","position":[109.9248,100.9241,3070.7836],"yaw":-3.19294,"spawnMask":3},{"id":"creature-83945","entityId":"entry-17819","position":[107.6218,100.3558,3068.0236],"yaw":-1.56167,"spawnMask":3},{"id":"creature-83946","entityId":"entry-18598","position":[20.6821,101.6851,3014.3836],"yaw":-3.29917,"spawnMask":3},{"id":"creature-83948","entityId":"entry-17820","position":[165.2738,99.2808,3102.8336],"yaw":-5.44257,"spawnMask":3},{"id":"creature-83949","entityId":"entry-17820","position":[167.8808,99.2808,3106.3636],"yaw":-5.23774,"spawnMask":3},{"id":"creature-83951","entityId":"entry-17840","position":[148.3898,99.5107,3105.9836],"yaw":-0.424021,"spawnMask":3},{"id":"creature-83952","entityId":"entry-18598","position":[167.8438,99.324,3119.7636],"yaw":-5.30747,"spawnMask":3},{"id":"creature-83953","entityId":"entry-18598","position":[174.2088,99.9037,3143.1636],"yaw":-2.85876,"spawnMask":3},{"id":"creature-83954","entityId":"entry-18598","position":[168.0198,99.3078,3132.8736],"yaw":-1.157,"spawnMask":3},{"id":"creature-83955","entityId":"entry-17819","position":[190.6008,99.9846,3169.9836],"yaw":-1.23575,"spawnMask":3},{"id":"creature-83956","entityId":"entry-17819","position":[193.3568,99.7107,3165.8236],"yaw":-1.08338,"spawnMask":3},{"id":"creature-83957","entityId":"entry-18598","position":[170.7738,99.2808,3134.1636],"yaw":-4.23008,"spawnMask":3},{"id":"creature-83959","entityId":"entry-17819","position":[200.8008,99.7561,3112.3736],"yaw":-2.42404,"spawnMask":3},{"id":"creature-83960","entityId":"entry-18598","position":[169.2298,100.6876,3097.0536],"yaw":-0.7,"spawnMask":3},{"id":"creature-83961","entityId":"entry-18598","position":[184.5498,100.9638,3118.3536],"yaw":-1.55,"spawnMask":3},{"id":"creature-83963","entityId":"entry-17840","position":[204.5918,99.5665,3129.3136],"yaw":-3.14534,"spawnMask":3},{"id":"creature-83964","entityId":"entry-18598","position":[199.9038,101.6181,3149.6036],"yaw":-4.66973,"spawnMask":3},{"id":"creature-83965","entityId":"entry-18598","position":[179.7988,100.6736,3166.2336],"yaw":-2.45256,"spawnMask":3},{"id":"creature-83966","entityId":"entry-17833","position":[116.3228,145.1511,3162.5036],"yaw":-3.23645,"spawnMask":3},{"id":"creature-83967","entityId":"entry-17833","position":[108.8228,144.8753,3163.4536],"yaw":-3.26786,"spawnMask":3},{"id":"creature-83968","entityId":"entry-17819","position":[116.5278,149.4038,3173.5336],"yaw":-3.22859,"spawnMask":3},{"id":"creature-83969","entityId":"entry-17820","position":[111.5958,149.4008,3174.0236],"yaw":-3.24037,"spawnMask":3},{"id":"creature-83971","entityId":"entry-17820","position":[52.6818,136.2947,3164.4436],"yaw":-1.39547,"spawnMask":3},{"id":"creature-83973","entityId":"entry-17833","position":[64.0708,150.2188,3156.8736],"yaw":-1.76776,"spawnMask":3},{"id":"creature-83974","entityId":"entry-17820","position":[66.5628,150.2188,3156.3736],"yaw":-4.88579,"spawnMask":3},{"id":"creature-83975","entityId":"entry-17833","position":[58.6958,150.2178,3151.0036],"yaw":-4.00668,"spawnMask":3},{"id":"creature-83976","entityId":"entry-17819","position":[57.5418,150.2178,3149.4436],"yaw":-1.09756,"spawnMask":3},{"id":"creature-83977","entityId":"entry-17820","position":[21.2182,138.4313,3164.1536],"yaw":-2.62988,"spawnMask":3},{"id":"creature-83978","entityId":"entry-17846","position":[-15.6684,113.0256,3121.0536],"yaw":-4.24249,"spawnMask":3},{"id":"creature-83979","entityId":"entry-17846","position":[-14.1624,112.9817,3116.6636],"yaw":-4.36501,"spawnMask":3},{"id":"creature-83980","entityId":"entry-17846","position":[-34.5099,112.9485,3143.4036],"yaw":-2.70239,"spawnMask":3},{"id":"creature-83981","entityId":"entry-17846","position":[-17.4885,113.0821,3126.4636],"yaw":-4.20165,"spawnMask":3},{"id":"creature-83982","entityId":"entry-18673","position":[-46.7388,111.6288,3134.8636],"yaw":-2.71024,"spawnMask":3},{"id":"creature-83983","entityId":"entry-17846","position":[-54.8012,112.9568,3134.4036],"yaw":-2.70232,"spawnMask":3},{"id":"creature-83984","entityId":"entry-17846","position":[-66.5395,112.9625,3116.6636],"yaw":-1.26269,"spawnMask":3},{"id":"creature-83985","entityId":"entry-17846","position":[-62.4953,111.6833,3112.9836],"yaw":-1.23598,"spawnMask":3},{"id":"creature-83986","entityId":"entry-17820","position":[-20.9263,99.3623,3027.0636],"yaw":-4.3745,"spawnMask":3},{"id":"creature-83987","entityId":"entry-17820","position":[20.2101,99.3867,2994.8036],"yaw":-3.53099,"spawnMask":3},{"id":"creature-83989","entityId":"entry-17876","position":[52.2858,129.1377,3173.4736],"yaw":-4.21682,"spawnMask":3},{"id":"creature-83996","entityId":"entry-17833","position":[55.8408,136.2947,3166.2036],"yaw":-4.14173,"spawnMask":3},{"id":"creature-83997","entityId":"entry-17860","position":[58.2668,136.2947,3159.6336],"yaw":-5.21223,"spawnMask":3},{"id":"creature-84300","entityId":"entry-18094","position":[690.3828,103.3648,3530.5036],"yaw":-3.24039,"spawnMask":3},{"id":"creature-84301","entityId":"entry-18093","position":[690.3828,103.3648,3530.5036],"yaw":-3.29647,"spawnMask":3},{"id":"creature-84306","entityId":"entry-18094","position":[646.1808,103.889,3554.9336],"yaw":-6.02139,"spawnMask":3},{"id":"creature-84307","entityId":"entry-18093","position":[643.3288,103.5803,3557.3736],"yaw":-1.48353,"spawnMask":3},{"id":"creature-84308","entityId":"entry-18092","position":[646.8728,103.4358,3558.0636],"yaw":-3.87463,"spawnMask":3},{"id":"creature-84310","entityId":"entry-18094","position":[660.4818,104.8034,3610.3336],"yaw":-0.488692,"spawnMask":3},{"id":"creature-84311","entityId":"entry-18094","position":[647.7048,104.7324,3622.9736],"yaw":-1.72571,"spawnMask":3},{"id":"creature-84312","entityId":"entry-18093","position":[647.7048,104.7324,3622.9736],"yaw":-4.86829,"spawnMask":3},{"id":"creature-84314","entityId":"entry-18093","position":[659.8038,104.5619,3614.6336],"yaw":-1.72788,"spawnMask":3},{"id":"creature-84315","entityId":"entry-18092","position":[662.8638,104.5183,3616.1636],"yaw":-4.34587,"spawnMask":3},{"id":"creature-84316","entityId":"entry-18093","position":[558.2318,103.2356,3529.0936],"yaw":-3.90481,"spawnMask":3},{"id":"creature-84318","entityId":"entry-18094","position":[558.2318,103.2356,3529.0936],"yaw":-3.93707,"spawnMask":3},{"id":"encounter-285","entityId":"entry-17848","position":[2173.6114,24.858,3599.6707],"yaw":0,"spawnMask":1},{"id":"encounter-283","entityId":"entry-17862","position":[2386.0666,27.195,3591.1638],"yaw":0,"spawnMask":1},{"id":"encounter-281","entityId":"entry-18096","position":[2601.3758,29.532,3577.9538],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-1885","name":"Don Carlos Patrol","speed":1.15,"pathId":18850,"formationSource":"database-solo","spawnMask":3,"waypoints":[[942.0598,100.6283,3169.2036],[942.0598,100.6283,3169.2036],[899.0158,101.5505,3181.0836],[865.7058,101.3859,3191.9236],[832.6978,101.191,3204.3036],[798.9408,101.0383,3217.2836],[765.6808,101.8195,3222.9136],[732.7738,101.5149,3207.9536],[699.1468,99.6486,3185.2536],[665.5188,91.3081,3158.5136],[645.6938,85.8488,3141.6236],[632.6468,83.2986,3132.3536],[615.2568,81.0982,3124.0636],[665.8118,91.5336,3157.7336],[688.0318,97.3697,3174.6636],[698.9968,99.5843,3185.0136],[732.4048,101.5149,3207.5636],[749.8558,101.6467,3218.3236],[799.1968,100.8233,3216.4236],[832.3458,101.1942,3203.9436],[865.8718,101.3859,3191.7236],[899.0008,101.5522,3180.2736],[932.4398,101.0794,3171.8536]],"members":[{"id":"member","entityId":"entry-28132","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11559","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[506.4608,77.3127,2701.8436],[513.4528,77.3127,2691.0736],[524.4978,77.3127,2683.4536],[535.8858,77.3109,2676.0936],[524.4978,77.3127,2683.4536],[513.4528,77.3127,2691.0736]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11560","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115600,"formationSource":"database-solo","spawnMask":3,"waypoints":[[544.0128,77.3109,2712.4636],[530.3378,77.3127,2725.3136],[520.3638,77.3127,2722.1636],[529.9208,77.3127,2711.5136],[520.5218,77.3127,2722.2136],[529.9208,77.3127,2711.5136],[541.7328,77.3109,2701.0636],[550.5388,77.3109,2687.3936],[549.3218,77.3127,2672.3236],[534.3228,77.3127,2674.0136],[514.9748,77.3127,2693.2336],[534.3228,77.3127,2674.0136],[549.3218,77.3127,2672.3236],[550.5388,77.3109,2687.3936],[541.7328,77.3109,2701.0636],[529.9208,77.3127,2711.5136],[520.3638,77.3127,2722.1636],[530.3378,77.3127,2725.3136],[520.4568,77.3127,2722.0636],[530.3378,77.3127,2725.3136],[542.2248,77.3109,2716.3136]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11561","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115610,"formationSource":"database-solo","spawnMask":3,"waypoints":[[531.2128,77.3127,2715.9436],[538.4408,77.3109,2711.6036],[546.0778,77.3109,2708.5636],[554.5938,77.3109,2701.0736],[554.1608,77.3109,2693.9936],[556.9858,77.3109,2688.4636],[563.6868,77.3109,2684.0436],[565.3838,77.3109,2680.0536],[556.9858,77.3109,2688.4636],[554.1608,77.3109,2693.9936],[554.5938,77.3109,2701.0736],[546.0778,77.3109,2708.5636],[538.4408,77.3109,2711.6036]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11563","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115630,"formationSource":"database-solo","spawnMask":3,"waypoints":[[540.8168,77.3127,2667.8736],[531.3188,77.3127,2668.3336],[517.9098,77.3127,2679.2436],[507.4218,77.3127,2689.6836],[517.9098,77.3127,2679.2436],[531.3188,77.3127,2668.3336]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11564","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115640,"formationSource":"database-solo","spawnMask":3,"waypoints":[[568.2188,77.2093,2704.2136],[557.4698,77.3109,2711.8836],[546.7978,77.3109,2720.6236],[543.9858,77.3109,2728.4536],[537.1918,77.3109,2736.5136],[543.9858,77.3109,2728.4536],[546.7978,77.3109,2720.6236],[557.4698,77.3109,2711.8836]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11565","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115650,"formationSource":"database-solo","spawnMask":3,"waypoints":[[511.6988,77.3127,2715.1236],[516.1208,77.3127,2707.8236],[522.6878,77.3127,2698.6936],[530.5798,77.3127,2694.0736],[534.0848,77.3109,2697.7136],[534.3788,77.3109,2707.5136],[534.0848,77.3109,2697.7136],[530.5798,77.3127,2694.0736],[522.6878,77.3127,2698.6936],[516.1208,77.3127,2707.8236]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11568","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115680,"formationSource":"database-solo","spawnMask":3,"waypoints":[[550.8478,77.3127,2674.0036],[563.2778,77.3109,2683.6136],[569.8748,77.2093,2704.2536],[566.2078,77.1966,2716.9436],[550.7258,77.3109,2734.0236],[541.4098,77.3109,2739.2336],[550.7258,77.3109,2734.0236],[566.2078,77.1966,2716.9436],[569.8748,77.2093,2704.2536],[563.2778,77.3109,2683.6136]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11569","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115690,"formationSource":"database-solo","spawnMask":3,"waypoints":[[558.7368,77.3109,2675.1336],[548.6438,77.3127,2668.2736],[539.7638,77.3109,2675.4136],[536.3598,77.3109,2686.8136],[531.8878,77.3127,2692.6936],[536.3828,77.3109,2686.7336],[539.7638,77.3109,2675.4136],[548.6438,77.3127,2668.2736]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-11599","name":"Hillsbrad Peasant Patrol","speed":1.15,"pathId":115990,"formationSource":"database-solo","spawnMask":3,"waypoints":[[542.7818,77.3109,2723.1736],[550.0818,77.3109,2717.7836],[555.4758,77.3109,2714.0336],[558.2758,77.3109,2705.3036],[562.0888,77.3109,2699.2136],[565.7408,77.2093,2694.6536],[562.0888,77.3109,2699.2136],[558.2758,77.3109,2705.3036],[555.4758,77.3109,2714.0336],[550.0818,77.3109,2717.7836]],"members":[{"id":"member","entityId":"entry-2267","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-31799","name":"Lordaeron Sentry Patrol","speed":1.15,"pathId":317990,"formationSource":"database-solo","spawnMask":3,"waypoints":[[638.6218,102.9729,3580.8636],[732.7758,105.9774,3592.2736],[814.2658,114.8153,3541.6736],[816.0628,110.6332,3441.5036],[795.0738,103.7903,3341.5036],[759.5258,101.0822,3241.6836],[798.9118,101.3921,3221.6536],[898.8008,101.3859,3184.5936],[955.4798,95.9688,3141.4536],[964.7898,79.8934,3041.5836],[971.3798,72.2086,2941.7136],[985.9298,64.5029,2841.6336],[994.3298,55.3331,2741.6236],[985.9298,64.5029,2841.6336],[971.3798,72.2086,2941.7136],[964.7898,79.8934,3041.5836],[955.4798,95.9688,3141.4536],[898.8008,101.3859,3184.5936],[798.9118,101.3921,3221.6536],[759.5258,101.0822,3241.6836],[795.0738,103.7903,3341.5036],[816.0628,110.6332,3441.5036],[814.2658,114.8153,3541.6736],[732.7758,105.9774,3592.2736]],"members":[{"id":"member","entityId":"entry-17815","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-31931","name":"Lordaeron Sentry Patrol","speed":1.15,"pathId":319310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[1266.2698,94.1857,3044.9736],[1165.8598,94.0874,3095.5936],[1065.6598,94.2811,3160.6036],[965.7698,99.9139,3171.0736],[865.5768,101.4593,3196.4936],[765.7958,101.523,3227.4736],[665.8058,92.373,3164.2736],[565.4438,81.5859,3114.7936],[465.7668,102.1105,3075.5636],[375.3348,113.0693,3020.7336],[265.7058,113.0437,2972.1136],[165.7768,114.6478,2904.0036],[86.4718,112.5472,2851.2936],[165.7768,114.6478,2904.0036],[265.7058,113.0437,2972.1136],[375.3348,113.0693,3020.7336],[465.7668,102.1105,3075.5636],[565.4438,81.5859,3114.7936],[665.8058,92.373,3164.2736],[765.7958,101.523,3227.4736],[865.5768,101.4593,3196.4936],[965.7698,99.9139,3171.0736],[1065.6598,94.2811,3160.6036],[1165.8598,94.0874,3095.5936]],"members":[{"id":"member","entityId":"entry-17815","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-38051","name":"Lordaeron Sentry Patrol","speed":1.15,"pathId":380510,"formationSource":"database-solo","spawnMask":3,"waypoints":[[99.2198,113.2601,2856.8636],[165.7798,115.0934,2900.2936],[232.2788,113.4319,2949.9936],[299.1428,112.9192,2988.1136],[365.7688,113.1943,3016.8436],[432.2218,108.6335,3041.8736],[499.1278,93.7837,3101.9536],[565.7648,81.4519,3114.7436],[632.3578,83.9372,3137.4736],[699.0098,99.7846,3190.5836],[765.5878,101.5696,3227.1236],[832.2878,101.4437,3209.0836],[899.1888,101.3653,3184.5436],[965.7198,100.1326,3170.1936],[1032.3498,94.3412,3166.6936],[1098.8998,94.2811,3145.0236],[1159.5098,94.1623,3099.9236],[1098.8998,94.2811,3145.0236],[1032.3498,94.3412,3166.6936],[965.7198,100.1326,3170.1936],[899.1888,101.3653,3184.5436],[832.2878,101.4437,3209.0836],[765.5878,101.5696,3227.1236],[699.0098,99.7846,3190.5836],[632.3578,83.9372,3137.4736],[565.7648,81.4519,3114.7436],[499.1278,93.7837,3101.9536],[432.2218,108.6335,3041.8736],[365.7688,113.1943,3016.8436],[299.1428,112.9192,2988.1136],[232.2788,113.4319,2949.9936],[165.7798,115.0934,2900.2936]],"members":[{"id":"member","entityId":"entry-17815","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-38497","name":"Lordaeron Sentry Patrol","speed":1.15,"pathId":384970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[992.0798,54.3396,2726.7336],[999.2698,63.0121,2808.0136],[961.6998,71.2543,2912.5336],[956.0498,78.5093,3008.0236],[965.9798,90.3364,3108.1536],[899.1638,101.3653,3184.9336],[799.0718,101.4437,3221.8636],[759.4898,101.0822,3241.7636],[794.7738,103.8235,3341.5636],[815.9088,110.6018,3441.7936],[814.1058,114.8052,3541.5836],[799.0398,113.9568,3589.7636],[713.4488,104.4859,3574.9836],[639.4738,102.9729,3579.8936],[713.4488,104.4859,3574.9836],[799.0398,113.9568,3589.7636],[814.1058,114.8052,3541.5836],[815.9088,110.6018,3441.7936],[794.7738,103.8235,3341.5636],[759.4898,101.0822,3241.7636],[799.0718,101.4437,3221.8636],[899.1638,101.3653,3184.9336],[965.9798,90.3364,3108.1536],[956.0498,78.5093,3008.0236],[961.6998,71.2543,2912.5336],[999.2698,63.0121,2808.0136]],"members":[{"id":"member","entityId":"entry-17815","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-48018","name":"Lordaeron Watchman Patrol","speed":1.15,"pathId":480180,"formationSource":"database-solo","spawnMask":3,"waypoints":[[481.8518,109.4996,2972.1436],[461.2348,112.198,2982.5336],[449.0348,112.2058,3008.0836],[469.9918,112.2644,3021.6536],[487.8968,112.1811,3000.5636],[476.6518,112.2753,2984.8436],[472.4158,112.2766,3008.4536],[458.5168,117.0518,3005.0236],[462.9938,120.1612,2993.9136],[477.7428,125.9784,3000.5436],[463.7498,131.5831,3010.4536],[463.4058,136.2706,2994.8536],[474.2848,141.7753,3003.7636],[474.2848,141.7753,3003.7636],[463.4058,136.2706,2994.8536],[463.7498,131.5831,3010.4536],[477.7428,125.9784,3000.5436],[462.9938,120.1612,2993.9136],[458.5168,117.0518,3005.0236],[472.4158,112.2766,3008.4536],[476.6518,112.2753,2984.8436],[487.8968,112.1811,3000.5636],[469.9918,112.2644,3021.6536],[449.0348,112.2058,3008.0836],[461.2348,112.198,2982.5336]],"members":[{"id":"member","entityId":"entry-17814","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-77818","name":"Durnholde Rifleman Patrol","speed":1.15,"pathId":778180,"formationSource":"database-solo","spawnMask":3,"waypoints":[[52.9688,101.4466,3009.1636],[56.9088,101.2846,3010.2336],[68.5158,101.1829,3014.7536],[72.5248,101.1449,3008.7736],[68.6048,101.1947,3015.6236],[61.5438,101.103,3010.9536],[51.4178,101.5315,3007.5036],[42.9348,101.5051,3009.1236],[41.2238,101.5226,3013.3436],[42.8448,101.5115,3010.6536]],"members":[{"id":"member","entityId":"entry-17820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-77819","name":"Durnholde Warden Patrol","speed":1.15,"pathId":778190,"formationSource":"database-solo","spawnMask":3,"waypoints":[[172.6948,100.7159,3099.0636],[177.7088,100.74,3098.7336],[188.9278,100.4041,3104.8836],[195.9438,100.4042,3113.8536],[198.9798,100.3493,3111.0036],[189.8638,100.4123,3117.8236],[181.1028,100.5112,3108.0736],[173.1198,100.7198,3099.1136],[168.0648,100.7367,3103.0736]],"members":[{"id":"member","entityId":"entry-17833","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83514","name":"Tarren Mill Peasant Patrol","speed":1.15,"pathId":835140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[626.2238,102.1667,3484.7036],[633.3758,102.3528,3495.5136],[630.6658,102.4508,3503.2836],[627.1838,102.2706,3509.6336],[630.6658,102.4508,3503.2836],[633.3758,102.3528,3495.5136]],"members":[{"id":"member","entityId":"entry-18644","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83515","name":"Tarren Mill Peasant Patrol","speed":1.15,"pathId":835150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[619.3608,102.2917,3496.5636],[623.0018,102.4167,3502.8036],[623.0218,102.2828,3510.2936],[619.7248,102.0206,3518.5936],[626.1038,102.0206,3522.2936],[633.8608,102.1028,3513.4336],[636.5368,102.2278,3503.0936],[627.3898,102.5417,3503.0636],[636.5368,102.2278,3503.0936],[633.8608,102.1028,3513.4336],[626.1038,102.0206,3522.2936],[619.7248,102.0206,3518.5936],[623.0218,102.2828,3510.2936],[623.0018,102.4167,3502.8036]],"members":[{"id":"member","entityId":"entry-18644","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83907","name":"Durnholde Rifleman Patrol","speed":1.15,"pathId":839070,"formationSource":"database-solo","spawnMask":3,"waypoints":[[108.2268,115.0916,3074.8336],[94.8218,112.1228,3085.5336],[75.7248,117.5756,3079.8136],[59.0498,122.4623,3084.1736],[61.1778,126.0294,3095.3936],[76.4978,133.9084,3110.9036],[98.3528,134.9323,3123.8336],[107.3998,136.8497,3139.7636],[112.1858,143.7222,3160.3436],[107.3868,136.8671,3139.9936],[98.0618,134.9137,3123.9436],[76.5728,134.0393,3111.4236],[60.6688,125.9484,3095.4336],[59.1938,122.4524,3084.2236],[75.5118,117.6256,3080.0936],[94.7638,112.1119,3086.1136],[107.7778,114.856,3075.2336],[123.8548,113.0614,3053.1036],[129.2748,112.0536,3038.6636],[150.9058,111.7142,3014.6836],[128.8598,112.0594,3038.9236],[123.5508,113.0613,3053.5436]],"members":[{"id":"member","entityId":"entry-17820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83910","name":"Durnholde Sentry Patrol","speed":1.15,"pathId":839100,"formationSource":"database-solo","spawnMask":3,"waypoints":[[177.2988,111.665,3067.2736],[184.3758,111.4413,3072.7236],[188.5698,111.5849,3080.9136],[199.5648,111.5089,3092.4336],[206.8478,111.3912,3097.4136],[211.8168,111.0088,3104.8936],[214.3318,111.5235,3116.7336],[211.8588,110.9129,3105.1136],[206.3298,111.3373,3097.3436],[198.6908,111.5502,3092.2636],[188.2328,111.6041,3080.8536],[184.3648,111.3496,3073.0636],[176.8228,111.6677,3066.8336],[166.2088,111.7123,3061.5536],[162.7538,111.9011,3054.5636],[159.0518,112.7251,3047.9536],[165.8368,111.7135,3061.5936]],"members":[{"id":"member","entityId":"entry-17819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83930","name":"Durnholde Rifleman Patrol","speed":1.15,"pathId":839300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[11.0094,99.8513,3038.7336],[29.3356,99.9211,3025.5836],[46.6248,99.2808,3026.8336],[66.2118,99.8113,3036.6036],[75.8718,99.2854,3034.9536],[77.8968,99.4018,3028.3736],[78.4928,99.7092,3020.4736],[81.3808,101.9206,3011.7436],[76.8538,101.6914,3005.1136],[61.7468,101.7258,2997.8836],[49.7598,101.8644,2992.7836],[38.4118,100.6425,2990.3236],[22.3717,100.0249,2990.0336],[9.3554,99.745,2991.6036],[-0.7496,99.488,2996.4336],[-8.1447,99.9645,3002.8336],[-14.1149,100.7642,3010.7136],[-21.4551,100.8808,3022.3536],[-27.185,99.6644,3033.6136],[-33.2531,99.5187,3046.7336],[-37.9775,100.6083,3056.1836],[-35.9772,99.7008,3065.2536],[-24.7995,99.474,3074.0036],[-14.4896,99.2808,3073.2336],[-7.4756,99.3212,3061.8536],[0.035,99.3672,3054.3536]],"members":[{"id":"member","entityId":"entry-17820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83934","name":"Durnholde Sentry Patrol","speed":1.15,"pathId":839340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[7.3156,100.5836,3009.5936],[13.9143,100.8842,3006.1136],[19.1456,100.9634,3003.3136],[20.5164,100.9444,3000.8936],[18.9438,100.9575,2996.8636],[22.9365,100.9388,3007.1836],[16.7676,100.9343,3009.2136],[11.1167,100.7664,3007.0436],[5.0051,100.4858,3010.6636],[0.1827,100.6008,3013.2636],[0.3837,100.629,3017.2036],[2.7787,100.5989,3022.7036],[0.3475,100.6331,3017.5936],[0.1083,100.6068,3013.6536]],"members":[{"id":"member","entityId":"entry-17819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83939","name":"Durnholde Armorer Patrol","speed":1.15,"pathId":839390,"formationSource":"database-solo","spawnMask":3,"waypoints":[[50.4498,136.295,3128.0436],[53.1288,136.295,3130.3936],[50.3718,136.295,3121.6336],[48.1458,136.295,3125.4636],[43.9728,136.295,3124.3036]],"members":[{"id":"member","entityId":"entry-18764","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83940","name":"Durnholde Rifleman Patrol","speed":1.15,"pathId":839400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[37.8778,136.2947,3146.7836],[41.7288,136.2947,3139.7436],[52.0798,136.2947,3145.5036],[60.9318,134.7957,3150.2136],[67.8878,135.0561,3138.8736],[79.5078,135.0561,3118.9636],[67.6548,135.0562,3139.0436],[60.7948,134.795,3150.7736],[70.5518,136.2952,3155.6136],[80.7088,136.2952,3161.1136],[74.6248,136.2952,3172.1236],[64.6798,136.2952,3165.9036],[61.0508,136.2952,3163.5536],[56.3438,136.2952,3171.4136],[49.9028,136.2952,3176.4336],[42.0418,140.2233,3171.9136],[49.2598,145.1166,3158.7936],[39.1738,145.1166,3153.2736],[48.4568,150.2178,3137.1636],[64.3078,150.2178,3146.1836],[79.8278,150.2178,3154.8936],[70.3508,145.1165,3171.0136],[49.2848,145.1165,3159.2336],[42.0068,140.2234,3172.1136],[49.8188,136.2948,3176.4536],[56.4548,136.2948,3171.5736],[60.6358,136.2948,3163.9036],[38.5848,136.2948,3151.1936]],"members":[{"id":"member","entityId":"entry-17820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83947","name":"Orc Prisoner Patrol","speed":1.15,"pathId":839470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[166.2518,99.2819,3122.4036],[174.4388,99.7226,3125.4936],[150.3908,99.3758,3100.2736],[127.5268,99.2809,3079.2736],[104.2628,99.5761,3063.1936],[71.9108,99.6455,3047.1836],[28.3318,99.3161,3034.3036],[1.4836,100.6279,3020.0836],[6.4995,100.5446,3010.1336],[6.9791,100.5804,3009.0936],[1.9829,100.6122,3021.8936],[-1.0088,99.4202,3046.6836],[15.4755,100.1757,3048.9736],[39.9108,99.5947,3037.6936],[78.5868,99.2816,3050.0836],[99.3558,99.4906,3062.1136],[120.7938,99.4312,3073.2736],[141.6168,99.9682,3094.6836],[165.4128,99.2809,3105.4536],[180.1368,100.7584,3100.3336],[171.1918,100.7195,3099.8936],[161.4968,99.2809,3121.8436]],"members":[{"id":"member","entityId":"entry-18598","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83950","name":"Durnholde Sentry Patrol","speed":1.15,"pathId":839500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[160.4228,100.0614,3136.3436],[155.2378,99.4015,3118.9336],[143.4548,99.7889,3097.3936],[122.7268,99.4433,3077.7236],[109.7788,99.4149,3065.4436],[97.1568,99.3128,3060.3236],[82.9068,99.2808,3052.8436],[65.9938,99.2808,3051.1036],[46.1528,99.3467,3053.6936],[20.7072,99.3964,3057.6836],[-2.8912,99.5078,3061.5236],[-11.9405,99.282,3067.6536],[-22.974,99.4124,3083.8436],[-11.7748,99.2808,3067.7336],[-2.8292,99.5091,3061.4736],[9.5129,99.4713,3060.7736],[33.5588,99.2809,3056.0336],[61.9818,99.281,3051.7136],[74.9258,99.2813,3051.3836],[83.3298,99.282,3053.2936],[96.2638,99.3356,3060.2036],[109.4008,99.4777,3065.6036],[116.3748,99.7227,3070.0536],[126.0878,99.3186,3082.6936],[143.1858,99.8028,3097.2936],[149.2008,99.6238,3107.7036]],"members":[{"id":"member","entityId":"entry-17819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83958","name":"Durnholde Rifleman Patrol","speed":1.15,"pathId":839580,"formationSource":"database-solo","spawnMask":3,"waypoints":[[193.6338,100.9225,3144.1836],[193.8358,100.7334,3151.7136],[185.9228,100.5742,3164.2136],[190.9788,100.5223,3167.9336],[185.2228,100.5821,3164.1236],[185.8528,100.4456,3156.7136],[192.3658,100.9255,3145.2736],[193.1748,100.8845,3138.4136],[188.3888,100.8659,3135.7636],[191.9228,100.892,3138.1836]],"members":[{"id":"member","entityId":"entry-17820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83962","name":"Durnholde Sentry Patrol","speed":1.15,"pathId":839620,"formationSource":"database-solo","spawnMask":3,"waypoints":[[204.8828,100.6305,3121.1636],[206.0798,101.6202,3116.0936],[202.4458,100.6923,3109.3136],[194.7968,101.0874,3099.6536],[186.3398,100.4842,3090.1636],[180.5198,101.3679,3083.6436],[174.3008,100.8479,3082.6336],[160.3398,99.406,3092.8236],[157.7518,99.4194,3099.1736],[161.3168,99.2809,3105.4436],[170.9098,99.3201,3112.6936],[183.0378,99.5118,3128.1436],[182.4858,99.2808,3137.5536],[177.4878,100.1755,3145.8136],[168.1848,99.3846,3161.9036],[169.6328,100.0499,3166.6936],[179.4748,100.5989,3172.6836],[186.0178,101.7259,3175.1736],[188.4748,102.4149,3175.1636],[192.7188,100.9429,3170.2436],[192.2508,100.2671,3168.0936],[185.6698,100.572,3163.9236],[195.3658,100.8913,3148.0236],[193.2768,100.8825,3137.8836],[189.1878,100.9042,3136.2736],[184.0848,99.292,3133.2136],[188.2798,99.2869,3130.8536],[195.1668,99.281,3126.0436],[205.0108,99.7211,3128.8336]],"members":[{"id":"member","entityId":"entry-17819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83970","name":"Durnholde Cook Patrol","speed":1.15,"pathId":839700,"formationSource":"database-solo","spawnMask":3,"waypoints":[[86.6338,136.2947,3142.3836],[86.3198,136.2948,3142.8936],[88.3848,136.2948,3143.1836],[88.4198,136.2948,3142.6036],[88.9638,136.2948,3143.6436],[93.1368,136.2948,3146.0636],[92.7998,136.2947,3146.4036]],"members":[{"id":"member","entityId":"entry-18765","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-83972","name":"Lordaeron Sentry Patrol","speed":1.15,"pathId":839720,"formationSource":"database-solo","spawnMask":3,"waypoints":[[847.7678,101.9946,3279.2836],[832.8118,104.4996,3281.7436],[801.8938,104.4088,3280.3136],[813.0548,104.3893,3247.7436],[836.0408,104.4984,3275.0736],[807.7888,104.5053,3271.9436],[817.9778,110.3862,3257.3236],[827.0198,115.5298,3271.3436],[810.1658,121.9555,3273.1936],[816.6568,127.376,3259.8436],[824.5608,130.4796,3268.6436],[816.0718,134.0141,3274.0636],[816.0718,134.0141,3274.0636],[824.5608,130.4796,3268.6436],[816.6568,127.376,3259.8436],[810.0718,122.053,3273.1436],[827.0198,115.5298,3271.3436],[817.9778,110.3862,3257.3236],[807.7888,104.5053,3271.9436],[836.0408,104.4984,3275.0736],[813.0548,104.3893,3247.7436],[801.8938,104.4088,3280.3136],[832.8118,104.4996,3281.7436]],"members":[{"id":"member","entityId":"entry-17815","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84302","name":"Tarren Mill Guardsman Patrol","speed":1.15,"pathId":843020,"formationSource":"database-solo","spawnMask":3,"waypoints":[[690.3828,103.3648,3530.5036],[694.2768,103.2203,3523.2436],[696.7898,103.5733,3513.8836],[697.6328,103.8766,3501.8236],[697.1498,103.5683,3488.4036],[690.9918,103.5505,3474.9036],[684.0148,104.4025,3463.5036],[673.4838,104.9159,3460.9636],[684.0148,104.4025,3463.5036],[690.9918,103.5505,3474.9036],[697.1498,103.5683,3488.4036],[697.6328,103.8766,3501.8236],[696.7898,103.5733,3513.8836],[694.2768,103.2203,3523.2436]],"members":[{"id":"member","entityId":"entry-18092","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84303","name":"Tarren Mill Lookout Patrol","speed":1.15,"pathId":843030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[686.4988,104.0652,3481.2036],[686.4988,104.0652,3481.2036],[686.4988,104.0652,3481.2036]],"members":[{"id":"member","entityId":"entry-18094","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84304","name":"Tarren Mill Lookout Patrol","speed":1.15,"pathId":843040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[689.1278,104.0163,3486.1636],[689.1278,104.0163,3486.1636],[689.1278,104.0163,3486.1636]],"members":[{"id":"member","entityId":"entry-18094","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84305","name":"Tarren Mill Lookout Patrol","speed":1.15,"pathId":843050,"formationSource":"database-solo","spawnMask":3,"waypoints":[[685.7758,109.9783,3587.0536],[685.7758,109.9783,3587.0536],[685.7758,109.9783,3587.0536]],"members":[{"id":"member","entityId":"entry-18094","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84309","name":"Tarren Mill Lookout Patrol","speed":1.15,"pathId":843090,"formationSource":"database-solo","spawnMask":3,"waypoints":[[682.3298,110.1586,3584.0336],[682.3298,110.1586,3584.0336],[682.3298,110.1586,3584.0336]],"members":[{"id":"member","entityId":"entry-18094","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84313","name":"Tarren Mill Guardsman Patrol","speed":1.15,"pathId":843130,"formationSource":"database-solo","spawnMask":3,"waypoints":[[647.7048,104.7324,3622.9736],[636.7118,105.5125,3624.6936],[626.8388,105.1982,3626.3036],[616.9158,104.9505,3626.5036],[606.5648,104.5732,3625.7636],[598.9418,104.3098,3625.0136],[606.5648,104.5732,3625.7636],[616.9158,104.9505,3626.5036],[626.7988,105.1572,3626.3036],[636.7118,105.5125,3624.6936]],"members":[{"id":"member","entityId":"entry-18092","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-84317","name":"Tarren Mill Guardsman Patrol","speed":1.15,"pathId":843170,"formationSource":"database-solo","spawnMask":3,"waypoints":[[558.2318,103.2356,3529.0936],[535.5318,102.8612,3539.2136],[524.8538,103.3022,3562.3536],[544.7148,102.7075,3578.8036],[559.3558,103.0241,3589.9936],[575.5268,102.8635,3601.7536],[559.3558,103.0241,3589.9936],[544.7148,102.7075,3578.8036],[524.8538,103.3022,3562.3536],[535.5318,102.8612,3539.2136]],"members":[{"id":"member","entityId":"entry-18092","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"encounter-285","name":"Lieutenant Drake","position":[2173.6114,24.858,3599.6707]},{"id":"encounter-283","name":"Captain Skarloc","position":[2386.0666,27.195,3591.1638]},{"id":"encounter-281","name":"Epoch Hunter","position":[2601.3758,29.532,3577.9538]}],"objectiveOrder":[{"id":"encounter-285","name":"Lieutenant Drake","position":[2173.6114,24.858,3599.6707]},{"id":"encounter-283","name":"Captain Skarloc","position":[2386.0666,27.195,3591.1638]},{"id":"encounter-281","name":"Epoch Hunter","position":[2601.3758,29.532,3577.9538]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":2744,"id":180523,"map":560,"orientation":5.06146,"phaseMask":1,"position_x":1814.98,"position_y":1023.67,"position_z":12.1299,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3258,"id":180425,"map":560,"orientation":5.28835,"phaseMask":1,"position_x":1809.47,"position_y":1034.96,"position_z":12.4796,"rotation0":0,"rotation1":0,"rotation2":-0.477159,"rotation3":0.878817,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3259,"id":180425,"map":560,"orientation":1.18682,"phaseMask":1,"position_x":1809.52,"position_y":1036.72,"position_z":12.9088,"rotation0":0,"rotation1":0,"rotation2":0.559193,"rotation3":0.829038,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3260,"id":180425,"map":560,"orientation":1.0821,"phaseMask":1,"position_x":1809.53,"position_y":1027.33,"position_z":12.479,"rotation0":0,"rotation1":0,"rotation2":0.515038,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3261,"id":180425,"map":560,"orientation":5.86431,"phaseMask":1,"position_x":1809.6,"position_y":1025.36,"position_z":12.9128,"rotation0":0,"rotation1":0,"rotation2":-0.207911,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3262,"id":180425,"map":560,"orientation":3.45576,"phaseMask":1,"position_x":1813.1,"position_y":1025.38,"position_z":12.9276,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3263,"id":180425,"map":560,"orientation":2.23402,"phaseMask":1,"position_x":1813.12,"position_y":1027.28,"position_z":12.5191,"rotation0":0,"rotation1":0,"rotation2":0.898793,"rotation3":0.438373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3264,"id":180425,"map":560,"orientation":4.17134,"phaseMask":1,"position_x":1813.17,"position_y":1035.05,"position_z":12.4873,"rotation0":0,"rotation1":0,"rotation2":-0.870356,"rotation3":0.492424,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":3265,"id":180425,"map":560,"orientation":2.19911,"phaseMask":1,"position_x":1813.22,"position_y":1036.75,"position_z":12.8827,"rotation0":0,"rotation1":0,"rotation2":0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":8253,"id":180472,"map":560,"orientation":1.5708,"phaseMask":1,"position_x":1817.63,"position_y":1052.49,"position_z":18.5191,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":8254,"id":180472,"map":560,"orientation":2.84488,"phaseMask":1,"position_x":2643.55,"position_y":660.977,"position_z":60.4459,"rotation0":0,"rotation1":0,"rotation2":0.989016,"rotation3":0.147811,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":8255,"id":180472,"map":560,"orientation":2.53072,"phaseMask":1,"position_x":2648.07,"position_y":670.109,"position_z":60.6153,"rotation0":0,"rotation1":0,"rotation2":0.953716,"rotation3":0.300708,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47213,"animprogress":255,"areaId":2367,"guid":15064,"id":184332,"map":560,"orientation":4.72984,"phaseMask":1,"position_x":1819.04,"position_y":1023.37,"position_z":19.7126,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47213,"animprogress":255,"areaId":2367,"guid":15065,"id":180570,"map":560,"orientation":1.51844,"phaseMask":1,"position_x":1808.45,"position_y":1022.87,"position_z":13.7121,"rotation0":0,"rotation1":0,"rotation2":0.688354,"rotation3":0.725374,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47213,"animprogress":255,"areaId":2367,"guid":15066,"id":184304,"map":560,"orientation":5.88176,"phaseMask":1,"position_x":1720.56,"position_y":1017.82,"position_z":0.40558,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16926,"id":22882,"map":560,"orientation":1.4399,"phaseMask":1,"position_x":1823.36,"position_y":1029.28,"position_z":11.6412,"rotation0":0,"rotation1":0,"rotation2":0.659347,"rotation3":0.751839,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16927,"id":22883,"map":560,"orientation":0.506145,"phaseMask":1,"position_x":1824.24,"position_y":1031.34,"position_z":11.6412,"rotation0":0,"rotation1":0,"rotation2":0.25038,"rotation3":0.968148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16928,"id":22884,"map":560,"orientation":3.14159,"phaseMask":1,"position_x":1822.9,"position_y":1032.18,"position_z":11.6412,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16929,"id":22885,"map":560,"orientation":0.104719,"phaseMask":1,"position_x":1813.83,"position_y":999.684,"position_z":12.1316,"rotation0":0,"rotation1":0,"rotation2":0.0523356,"rotation3":0.99863,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16930,"id":22886,"map":560,"orientation":4.23242,"phaseMask":1,"position_x":1822.89,"position_y":1030.72,"position_z":11.6412,"rotation0":0,"rotation1":0,"rotation2":0.854913,"rotation3":-0.518772,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":16931,"id":22887,"map":560,"orientation":1.50971,"phaseMask":1,"position_x":1812.62,"position_y":999.104,"position_z":12.1316,"rotation0":0,"rotation1":0,"rotation2":0.685183,"rotation3":0.728371,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21780,"id":182589,"map":560,"orientation":-1.93731,"phaseMask":1,"position_x":2151.68,"position_y":248.571,"position_z":53.8705,"rotation0":0,"rotation1":0,"rotation2":-0.824125,"rotation3":0.566409,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21781,"id":182589,"map":560,"orientation":-1.93731,"phaseMask":1,"position_x":2067.49,"position_y":106.071,"position_z":54.6145,"rotation0":0,"rotation1":0,"rotation2":-0.824125,"rotation3":0.566409,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21782,"id":182589,"map":560,"orientation":0.680678,"phaseMask":1,"position_x":2100.11,"position_y":43.5364,"position_z":53.5583,"rotation0":0,"rotation1":0,"rotation2":0.333807,"rotation3":0.942642,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21783,"id":182589,"map":560,"orientation":-0.087267,"phaseMask":1,"position_x":2213.61,"position_y":247.538,"position_z":53.646,"rotation0":0,"rotation1":0,"rotation2":-0.0436197,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21784,"id":182589,"map":560,"orientation":2.25148,"phaseMask":1,"position_x":2080.19,"position_y":64.7402,"position_z":53.8836,"rotation0":0,"rotation1":0,"rotation2":0.902586,"rotation3":0.430509,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21785,"id":182589,"map":560,"orientation":3.05433,"phaseMask":1,"position_x":2080.12,"position_y":73.7365,"position_z":53.7249,"rotation0":0,"rotation1":0,"rotation2":0.999048,"rotation3":0.0436174,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21786,"id":182589,"map":560,"orientation":-2.26893,"phaseMask":1,"position_x":2226.61,"position_y":251.616,"position_z":53.8043,"rotation0":0,"rotation1":0,"rotation2":-0.906308,"rotation3":0.422617,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21787,"id":182589,"map":560,"orientation":0.366519,"phaseMask":1,"position_x":2056.08,"position_y":112.369,"position_z":54.6098,"rotation0":0,"rotation1":0,"rotation2":0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21788,"id":182589,"map":560,"orientation":1.5441,"phaseMask":1,"position_x":2199.23,"position_y":272.604,"position_z":53.9846,"rotation0":0,"rotation1":0,"rotation2":0.697605,"rotation3":0.716482,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21789,"id":182589,"map":560,"orientation":0.669957,"phaseMask":1,"position_x":2176.01,"position_y":265.24,"position_z":53.6466,"rotation0":0,"rotation1":0,"rotation2":0.328749,"rotation3":0.944417,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21790,"id":182589,"map":560,"orientation":5.79311,"phaseMask":1,"position_x":2168.72,"position_y":244.449,"position_z":53.7167,"rotation0":0,"rotation1":0,"rotation2":0.242593,"rotation3":-0.970128,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21791,"id":182589,"map":560,"orientation":5.95176,"phaseMask":1,"position_x":2078.53,"position_y":129.964,"position_z":54.2812,"rotation0":0,"rotation1":0,"rotation2":0.164955,"rotation3":-0.986301,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21792,"id":182589,"map":560,"orientation":3.64426,"phaseMask":1,"position_x":2062.71,"position_y":77.1961,"position_z":53.9166,"rotation0":0,"rotation1":0,"rotation2":0.968582,"rotation3":-0.248696,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21793,"id":182589,"map":560,"orientation":1.23779,"phaseMask":1,"position_x":2108.03,"position_y":54.9457,"position_z":53.6505,"rotation0":0,"rotation1":0,"rotation2":0.580135,"rotation3":0.81452,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":null,"animprogress":100,"areaId":2370,"guid":21794,"id":182589,"map":560,"orientation":5.79153,"phaseMask":1,"position_x":2119.21,"position_y":42.4893,"position_z":53.7846,"rotation0":0,"rotation1":0,"rotation2":0.243359,"rotation3":-0.969936,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30236,"id":184173,"map":560,"orientation":2.83853,"phaseMask":1,"position_x":2761.42,"position_y":1296.29,"position_z":13.5566,"rotation0":0,"rotation1":0,"rotation2":0.988541,"rotation3":0.150952,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30237,"id":184174,"map":560,"orientation":2.83853,"phaseMask":1,"position_x":2761.42,"position_y":1296.29,"position_z":13.5566,"rotation0":0,"rotation1":0,"rotation2":0.988541,"rotation3":0.150952,"spawnMask":2,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30238,"id":23015,"map":560,"orientation":3.34231,"phaseMask":1,"position_x":2336.88,"position_y":889.649,"position_z":57.6454,"rotation0":0,"rotation1":0,"rotation2":-0.994968,"rotation3":0.100189,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30239,"id":184393,"map":560,"orientation":2.63545,"phaseMask":1,"position_x":2230.56,"position_y":118.124,"position_z":83.053,"rotation0":0,"rotation1":0,"rotation2":0.968148,"rotation3":0.250379,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30240,"id":3803,"map":560,"orientation":2.63545,"phaseMask":1,"position_x":1712.6,"position_y":661.398,"position_z":31.1709,"rotation0":0,"rotation1":0,"rotation2":0.968148,"rotation3":0.250379,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30241,"id":3804,"map":560,"orientation":-2.35619,"phaseMask":1,"position_x":1711.93,"position_y":660.806,"position_z":31.1709,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30245,"id":185394,"map":560,"orientation":0.226892,"phaseMask":1,"position_x":2249.99,"position_y":183.907,"position_z":113.039,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30246,"id":185432,"map":560,"orientation":0.34034,"phaseMask":1,"position_x":2250.83,"position_y":180.618,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":0.16935,"rotation3":0.985556,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30247,"id":185417,"map":560,"orientation":0.549779,"phaseMask":1,"position_x":2249.34,"position_y":176.342,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30248,"id":185430,"map":560,"orientation":0.36652,"phaseMask":1,"position_x":2247.17,"position_y":181.031,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.182236,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30249,"id":185431,"map":560,"orientation":6.02139,"phaseMask":1,"position_x":2249.9,"position_y":188.024,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":-0.130526,"rotation3":0.991445,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30250,"id":185399,"map":560,"orientation":0.90757,"phaseMask":1,"position_x":2249.14,"position_y":168.914,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":0.438371,"rotation3":0.898794,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30251,"id":185400,"map":560,"orientation":0.90757,"phaseMask":1,"position_x":2250.57,"position_y":167.731,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":0.438371,"rotation3":0.898794,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30252,"id":185416,"map":560,"orientation":6.04757,"phaseMask":1,"position_x":2246.65,"position_y":188.885,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.117537,"rotation3":0.993069,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30253,"id":185418,"map":560,"orientation":1.15192,"phaseMask":1,"position_x":2255.26,"position_y":171.154,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.544639,"rotation3":0.838671,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30254,"id":185423,"map":560,"orientation":5.31453,"phaseMask":1,"position_x":2258.94,"position_y":192.315,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":-0.465613,"rotation3":0.884988,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30255,"id":185398,"map":560,"orientation":5.61996,"phaseMask":1,"position_x":2245.01,"position_y":198.427,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":-0.325568,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30256,"id":185419,"map":560,"orientation":1.33518,"phaseMask":1,"position_x":2260.11,"position_y":169.374,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.619094,"rotation3":0.785317,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30257,"id":185424,"map":560,"orientation":2.10312,"phaseMask":1,"position_x":2264.77,"position_y":182.158,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":0.868198,"rotation3":0.496217,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30258,"id":185415,"map":560,"orientation":5.86431,"phaseMask":1,"position_x":2248.43,"position_y":193.736,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.207911,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30259,"id":185397,"map":560,"orientation":5.61996,"phaseMask":1,"position_x":2246.19,"position_y":199.851,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":-0.325568,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30260,"id":185414,"map":560,"orientation":5.26217,"phaseMask":1,"position_x":2253.62,"position_y":199.655,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.488621,"rotation3":0.872496,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30261,"id":185426,"map":560,"orientation":1.22173,"phaseMask":1,"position_x":2255.22,"position_y":188.807,"position_z":137.092,"rotation0":0,"rotation1":0,"rotation2":0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30262,"id":185422,"map":560,"orientation":4.2237,"phaseMask":1,"position_x":2266.05,"position_y":192.884,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":-0.857167,"rotation3":0.515038,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30264,"id":185420,"map":560,"orientation":3.93572,"phaseMask":1,"position_x":2267.62,"position_y":191.912,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":-0.9222,"rotation3":0.386713,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30265,"id":185421,"map":560,"orientation":3.15906,"phaseMask":1,"position_x":2270.59,"position_y":185.15,"position_z":102.666,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30266,"id":185413,"map":560,"orientation":5.07891,"phaseMask":1,"position_x":2258.31,"position_y":201.827,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.566406,"rotation3":0.824126,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30267,"id":185409,"map":560,"orientation":1.93731,"phaseMask":1,"position_x":2267.96,"position_y":169.891,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566408,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30268,"id":185407,"map":560,"orientation":2.05949,"phaseMask":1,"position_x":2259.35,"position_y":191.998,"position_z":137.06,"rotation0":0,"rotation1":0,"rotation2":0.857167,"rotation3":0.515038,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30269,"id":185408,"map":560,"orientation":1.43117,"phaseMask":1,"position_x":2264.67,"position_y":191.16,"position_z":137.047,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30270,"id":185396,"map":560,"orientation":2.47837,"phaseMask":1,"position_x":2280.08,"position_y":171.867,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30271,"id":185403,"map":560,"orientation":2.47837,"phaseMask":1,"position_x":2267.51,"position_y":168.074,"position_z":137.159,"rotation0":0,"rotation1":0,"rotation2":0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30272,"id":185410,"map":560,"orientation":2.12057,"phaseMask":1,"position_x":2272.65,"position_y":172.063,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.872496,"rotation3":0.488622,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30273,"id":185395,"map":560,"orientation":2.47837,"phaseMask":1,"position_x":2281.26,"position_y":173.292,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":0.945518,"rotation3":0.325568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30274,"id":185411,"map":560,"orientation":2.72271,"phaseMask":1,"position_x":2277.84,"position_y":177.982,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.978148,"rotation3":0.207912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30275,"id":185428,"map":560,"orientation":2.90596,"phaseMask":1,"position_x":2279.62,"position_y":182.834,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":0.993068,"rotation3":0.117544,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30277,"id":185412,"map":560,"orientation":3.50812,"phaseMask":1,"position_x":2279.1,"position_y":190.688,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.983254,"rotation3":0.182238,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30278,"id":185427,"map":560,"orientation":2.05949,"phaseMask":1,"position_x":2271.25,"position_y":190.082,"position_z":137.092,"rotation0":0,"rotation1":0,"rotation2":0.857167,"rotation3":0.515038,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30279,"id":185404,"map":560,"orientation":4.81711,"phaseMask":1,"position_x":2261.71,"position_y":204.25,"position_z":137.165,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30280,"id":185405,"map":560,"orientation":4.81711,"phaseMask":1,"position_x":2259.86,"position_y":204.111,"position_z":137.165,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30281,"id":185406,"map":560,"orientation":3.10665,"phaseMask":1,"position_x":2281.71,"position_y":186.622,"position_z":137.194,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174693,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30282,"id":185425,"map":560,"orientation":3.35977,"phaseMask":1,"position_x":2281.15,"position_y":190.29,"position_z":137.194,"rotation0":0,"rotation1":0,"rotation2":-0.994056,"rotation3":0.108872,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30283,"id":185429,"map":560,"orientation":3.69137,"phaseMask":1,"position_x":2276.93,"position_y":195.377,"position_z":128.337,"rotation0":0,"rotation1":0,"rotation2":-0.962455,"rotation3":0.271442,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30284,"id":185402,"map":560,"orientation":4.04917,"phaseMask":1,"position_x":2275.7,"position_y":203.987,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":-0.898793,"rotation3":0.438373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30285,"id":185401,"map":560,"orientation":4.04917,"phaseMask":1,"position_x":2277.13,"position_y":202.804,"position_z":137.213,"rotation0":0,"rotation1":0,"rotation2":-0.898793,"rotation3":0.438373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30287,"id":182592,"map":560,"orientation":1.72788,"phaseMask":1,"position_x":2157.28,"position_y":234.934,"position_z":53.8488,"rotation0":0,"rotation1":0,"rotation2":0.760407,"rotation3":0.649446,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30288,"id":182592,"map":560,"orientation":-1.90241,"phaseMask":3,"position_x":2178.79,"position_y":254.287,"position_z":53.5769,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30289,"id":182592,"map":560,"orientation":-0.767945,"phaseMask":3,"position_x":2150.41,"position_y":249.103,"position_z":53.8624,"rotation0":0,"rotation1":0,"rotation2":-0.374607,"rotation3":0.927184,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30290,"id":182592,"map":560,"orientation":-2.21657,"phaseMask":1,"position_x":2211.3,"position_y":246.804,"position_z":55.4124,"rotation0":0,"rotation1":0,"rotation2":-0.894935,"rotation3":0.446197,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30291,"id":182592,"map":560,"orientation":2.67035,"phaseMask":1,"position_x":2119.77,"position_y":42.0842,"position_z":53.7686,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233447,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30292,"id":182592,"map":560,"orientation":2.04204,"phaseMask":3,"position_x":2081,"position_y":64.6541,"position_z":53.9115,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30293,"id":182592,"map":560,"orientation":1.53589,"phaseMask":3,"position_x":2064.9,"position_y":69.6156,"position_z":53.6659,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30294,"id":182592,"map":560,"orientation":-1.55334,"phaseMask":1,"position_x":2070.08,"position_y":93.2598,"position_z":54.0862,"rotation0":0,"rotation1":0,"rotation2":-0.700908,"rotation3":0.713252,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30295,"id":182592,"map":560,"orientation":-2.98451,"phaseMask":1,"position_x":2073.39,"position_y":142.325,"position_z":54.4632,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784606,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30296,"id":182592,"map":560,"orientation":2.42601,"phaseMask":3,"position_x":2055.37,"position_y":111.925,"position_z":54.602,"rotation0":0,"rotation1":0,"rotation2":0.936673,"rotation3":0.350206,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30297,"id":182592,"map":560,"orientation":0.959931,"phaseMask":1,"position_x":2069.83,"position_y":106.7,"position_z":54.6518,"rotation0":0,"rotation1":0,"rotation2":0.461749,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30298,"id":182592,"map":560,"orientation":-1.58825,"phaseMask":1,"position_x":2086.59,"position_y":52.8431,"position_z":53.5683,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30299,"id":182592,"map":560,"orientation":0.174533,"phaseMask":3,"position_x":2100.1,"position_y":42.5693,"position_z":53.575,"rotation0":0,"rotation1":0,"rotation2":0.0871558,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30300,"id":182592,"map":560,"orientation":-0.541052,"phaseMask":3,"position_x":2228.1,"position_y":251.4,"position_z":55.5517,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.96363,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30301,"id":182592,"map":560,"orientation":1.309,"phaseMask":1,"position_x":2199.6,"position_y":271.738,"position_z":53.9931,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30302,"id":182592,"map":560,"orientation":-0.872665,"phaseMask":1,"position_x":2171.96,"position_y":262.641,"position_z":63.3226,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30303,"id":182592,"map":560,"orientation":0.593412,"phaseMask":3,"position_x":2176.22,"position_y":247.951,"position_z":53.9294,"rotation0":0,"rotation1":0,"rotation2":0.292372,"rotation3":0.956305,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30304,"id":182592,"map":560,"orientation":1.09956,"phaseMask":1,"position_x":2070.19,"position_y":80.9965,"position_z":64.3421,"rotation0":0,"rotation1":0,"rotation2":0.5225,"rotation3":0.852639,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30305,"id":182592,"map":560,"orientation":-0.15708,"phaseMask":3,"position_x":2079.69,"position_y":74.5419,"position_z":53.7058,"rotation0":0,"rotation1":0,"rotation2":-0.0784593,"rotation3":0.996917,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30306,"id":182592,"map":560,"orientation":-0.069813,"phaseMask":1,"position_x":2069.07,"position_y":124.392,"position_z":54.444,"rotation0":0,"rotation1":0,"rotation2":-0.0348994,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30307,"id":182592,"map":560,"orientation":1.43117,"phaseMask":1,"position_x":2118.76,"position_y":51.5617,"position_z":53.8408,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30308,"id":182592,"map":560,"orientation":-0.20944,"phaseMask":3,"position_x":2100.35,"position_y":59.5064,"position_z":53.4081,"rotation0":0,"rotation1":0,"rotation2":-0.104529,"rotation3":0.994522,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30309,"id":182592,"map":560,"orientation":-1.88496,"phaseMask":1,"position_x":2202.69,"position_y":256.725,"position_z":62.7723,"rotation0":0,"rotation1":0,"rotation2":-0.809018,"rotation3":0.587783,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30310,"id":182592,"map":560,"orientation":-2.25148,"phaseMask":1,"position_x":2195.58,"position_y":257.778,"position_z":54.0599,"rotation0":0,"rotation1":0,"rotation2":-0.902586,"rotation3":0.430509,"spawnMask":3,"spawntimesecs":-180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30311,"id":184064,"map":560,"orientation":-0.584685,"phaseMask":1,"position_x":1998.01,"position_y":291.612,"position_z":66.2953,"rotation0":0,"rotation1":0,"rotation2":-0.288196,"rotation3":0.957571,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30312,"id":184065,"map":560,"orientation":-2.16421,"phaseMask":1,"position_x":1998.08,"position_y":291.503,"position_z":66.2969,"rotation0":0,"rotation1":0,"rotation2":-0.882948,"rotation3":0.469471,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30313,"id":184066,"map":560,"orientation":-0.584685,"phaseMask":1,"position_x":1998.06,"position_y":291.653,"position_z":65.5727,"rotation0":0,"rotation1":0,"rotation2":-0.288196,"rotation3":0.957571,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30314,"id":23013,"map":560,"orientation":2.00713,"phaseMask":1,"position_x":2054.42,"position_y":528.338,"position_z":65.4477,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30315,"id":23014,"map":560,"orientation":2.64417,"phaseMask":1,"position_x":2057.57,"position_y":529.638,"position_z":65.4477,"rotation0":0,"rotation1":0,"rotation2":0.969231,"rotation3":0.246154,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30316,"id":23015,"map":560,"orientation":4.82584,"phaseMask":1,"position_x":2056.9,"position_y":546.385,"position_z":65.4171,"rotation0":0,"rotation1":0,"rotation2":-0.665881,"rotation3":0.746058,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30317,"id":174873,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2616.96,"position_y":637.732,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30318,"id":174874,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2616.02,"position_y":634.981,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30319,"id":160850,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2618.8,"position_y":643.08,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30320,"id":160851,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2617.86,"position_y":640.329,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30321,"id":3801,"map":560,"orientation":-2.79253,"phaseMask":1,"position_x":2613.54,"position_y":698.199,"position_z":57.198,"rotation0":0,"rotation1":0,"rotation2":-0.984808,"rotation3":0.173647,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30322,"id":3802,"map":560,"orientation":-1.50098,"phaseMask":1,"position_x":2613.54,"position_y":697.304,"position_z":57.198,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30323,"id":3816,"map":560,"orientation":6.08247,"phaseMask":1,"position_x":2663.18,"position_y":665.014,"position_z":62.1436,"rotation0":0,"rotation1":0,"rotation2":-0.100187,"rotation3":0.994969,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30324,"id":3817,"map":560,"orientation":1.09083,"phaseMask":1,"position_x":2663.13,"position_y":666.337,"position_z":57.2267,"rotation0":0,"rotation1":0,"rotation2":0.518772,"rotation3":0.854913,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30325,"id":3819,"map":560,"orientation":6.08247,"phaseMask":1,"position_x":2662.99,"position_y":665.11,"position_z":57.2267,"rotation0":0,"rotation1":0,"rotation2":-0.100187,"rotation3":0.994969,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30326,"id":22657,"map":560,"orientation":2.36492,"phaseMask":1,"position_x":2663.04,"position_y":662.154,"position_z":61.9345,"rotation0":0,"rotation1":0,"rotation2":0.92554,"rotation3":0.37865,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30327,"id":149423,"map":560,"orientation":0.549779,"phaseMask":1,"position_x":2661.1,"position_y":662.625,"position_z":61.9345,"rotation0":0,"rotation1":0,"rotation2":0.271441,"rotation3":0.962455,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30328,"id":3818,"map":560,"orientation":3.89209,"phaseMask":1,"position_x":2662.53,"position_y":665.941,"position_z":57.2267,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30329,"id":3815,"map":560,"orientation":3.89209,"phaseMask":1,"position_x":2662.72,"position_y":665.845,"position_z":62.1436,"rotation0":0,"rotation1":0,"rotation2":-0.930417,"rotation3":0.366502,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30330,"id":160847,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2626.68,"position_y":634.385,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30331,"id":160849,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2627.58,"position_y":636.982,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30332,"id":160846,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2625.74,"position_y":631.635,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":49936,"animprogress":255,"areaId":0,"guid":30333,"id":160848,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":2628.52,"position_y":639.733,"position_z":56.1107,"rotation0":0,"rotation1":0,"rotation2":-0.814115,"rotation3":0.580704,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30334,"id":174881,"map":560,"orientation":4.86947,"phaseMask":1,"position_x":2657.95,"position_y":702.307,"position_z":57.5617,"rotation0":0,"rotation1":0,"rotation2":-0.649447,"rotation3":0.760406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30335,"id":3801,"map":560,"orientation":0.418878,"phaseMask":1,"position_x":2665.36,"position_y":697.494,"position_z":57.482,"rotation0":0,"rotation1":0,"rotation2":0.207911,"rotation3":0.978148,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":30336,"id":3802,"map":560,"orientation":1.71042,"phaseMask":1,"position_x":2665.29,"position_y":698.386,"position_z":57.482,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.65606,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30337,"id":22642,"map":560,"orientation":2.67908,"phaseMask":1,"position_x":2664.22,"position_y":674.112,"position_z":57.1576,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30338,"id":22644,"map":560,"orientation":2.67908,"phaseMask":1,"position_x":2663.25,"position_y":672.172,"position_z":57.1576,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30339,"id":22646,"map":560,"orientation":2.67908,"phaseMask":1,"position_x":2662.33,"position_y":670.324,"position_z":57.1576,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30340,"id":22640,"map":560,"orientation":4.24988,"phaseMask":1,"position_x":2661.43,"position_y":676.9,"position_z":57.1576,"rotation0":0,"rotation1":0,"rotation2":-0.850351,"rotation3":0.526215,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":30341,"id":22641,"map":560,"orientation":4.24988,"phaseMask":1,"position_x":2663.56,"position_y":675.838,"position_z":57.1576,"rotation0":0,"rotation1":0,"rotation2":-0.850351,"rotation3":0.526215,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":33597,"id":23013,"map":560,"orientation":0.523598,"phaseMask":1,"position_x":2318.69,"position_y":890.539,"position_z":57.6761,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":33598,"id":23014,"map":560,"orientation":1.16064,"phaseMask":1,"position_x":2320.26,"position_y":887.519,"position_z":57.6761,"rotation0":0,"rotation1":0,"rotation2":0.548293,"rotation3":0.836286,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33599,"id":184063,"map":560,"orientation":1.5708,"phaseMask":1,"position_x":2236.85,"position_y":1017.21,"position_z":53.7309,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33600,"id":184062,"map":560,"orientation":-3.13287,"phaseMask":1,"position_x":2236.95,"position_y":1017.11,"position_z":53.7307,"rotation0":0,"rotation1":0,"rotation2":-0.99999,"rotation3":0.00436133,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":33601,"id":184068,"map":560,"orientation":-3.13287,"phaseMask":1,"position_x":2236.98,"position_y":1017.08,"position_z":52.8975,"rotation0":0,"rotation1":0,"rotation2":-0.99999,"rotation3":0.00436133,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55735,"id":187235,"map":560,"orientation":1.50098,"phaseMask":1,"position_x":2327.7,"position_y":923.297,"position_z":55.0792,"rotation0":0,"rotation1":0,"rotation2":0.681998,"rotation3":0.731354,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55736,"id":187235,"map":560,"orientation":0.820303,"phaseMask":1,"position_x":2350.5,"position_y":913.715,"position_z":55.2528,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55737,"id":187235,"map":560,"orientation":4.17134,"phaseMask":1,"position_x":1957.94,"position_y":1090.89,"position_z":26.6288,"rotation0":0,"rotation1":0,"rotation2":-0.870356,"rotation3":0.492424,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55738,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":2634.74,"position_y":705.168,"position_z":56.1564,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55739,"id":187235,"map":560,"orientation":6.05629,"phaseMask":1,"position_x":2628.34,"position_y":698.823,"position_z":56.2869,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55740,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":2644.95,"position_y":704.002,"position_z":56.1751,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55741,"id":187235,"map":560,"orientation":3.7001,"phaseMask":1,"position_x":2649.52,"position_y":700.67,"position_z":56.3216,"rotation0":0,"rotation1":0,"rotation2":-0.961261,"rotation3":0.27564,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55742,"id":187567,"map":560,"orientation":1.25664,"phaseMask":1,"position_x":2628.55,"position_y":655.727,"position_z":61.1613,"rotation0":0,"rotation1":0,"rotation2":0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55743,"id":187235,"map":560,"orientation":0.820303,"phaseMask":1,"position_x":2614.34,"position_y":627.073,"position_z":56.7241,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55744,"id":187235,"map":560,"orientation":1.09956,"phaseMask":1,"position_x":2632.78,"position_y":654.738,"position_z":54.2741,"rotation0":0,"rotation1":0,"rotation2":0.522498,"rotation3":0.85264,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55745,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":2624.57,"position_y":657.569,"position_z":54.2737,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55746,"id":187235,"map":560,"orientation":2.93214,"phaseMask":1,"position_x":2647.02,"position_y":670.236,"position_z":55.7051,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104536,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55747,"id":187235,"map":560,"orientation":1.81514,"phaseMask":1,"position_x":2622.35,"position_y":624.398,"position_z":56.7241,"rotation0":0,"rotation1":0,"rotation2":0.788011,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55748,"id":187235,"map":560,"orientation":1.83259,"phaseMask":1,"position_x":2654.3,"position_y":656.427,"position_z":61.9301,"rotation0":0,"rotation1":0,"rotation2":0.793353,"rotation3":0.608762,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55749,"id":187235,"map":560,"orientation":3.87463,"phaseMask":1,"position_x":2188.3,"position_y":147.514,"position_z":90.1394,"rotation0":0,"rotation1":0,"rotation2":-0.93358,"rotation3":0.358368,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55750,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":2182.14,"position_y":136.87,"position_z":90.1394,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55751,"id":187235,"map":560,"orientation":4.20625,"phaseMask":1,"position_x":2228.18,"position_y":128.799,"position_z":104.672,"rotation0":0,"rotation1":0,"rotation2":-0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55752,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":2218.77,"position_y":112.094,"position_z":104.672,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55753,"id":187235,"map":560,"orientation":3.22886,"phaseMask":1,"position_x":2251.85,"position_y":137.491,"position_z":89.4548,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436193,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55754,"id":187235,"map":560,"orientation":1.90241,"phaseMask":1,"position_x":2246.24,"position_y":127.997,"position_z":89.4548,"rotation0":0,"rotation1":0,"rotation2":0.814116,"rotation3":0.580703,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55755,"id":187235,"map":560,"orientation":0.157079,"phaseMask":1,"position_x":1899.79,"position_y":1048.55,"position_z":18.0428,"rotation0":0,"rotation1":0,"rotation2":0.0784588,"rotation3":0.996917,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55756,"id":187235,"map":560,"orientation":5.75959,"phaseMask":1,"position_x":1901.2,"position_y":1058.45,"position_z":18.1829,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55757,"id":187235,"map":560,"orientation":3.17653,"phaseMask":1,"position_x":1884.31,"position_y":1083.16,"position_z":17.6409,"rotation0":0,"rotation1":0,"rotation2":-0.999847,"rotation3":0.0174693,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55758,"id":187235,"map":560,"orientation":4.43314,"phaseMask":1,"position_x":1871.39,"position_y":1070.32,"position_z":17.1592,"rotation0":0,"rotation1":0,"rotation2":-0.798635,"rotation3":0.601815,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55759,"id":187235,"map":560,"orientation":0.750491,"phaseMask":1,"position_x":1863.76,"position_y":1061.21,"position_z":15.7083,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55760,"id":187235,"map":560,"orientation":5.02655,"phaseMask":1,"position_x":1840.65,"position_y":1097.35,"position_z":15.2979,"rotation0":0,"rotation1":0,"rotation2":-0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55761,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":1823.27,"position_y":1050.91,"position_z":11.0783,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55762,"id":187235,"map":560,"orientation":3.76991,"phaseMask":1,"position_x":1821.2,"position_y":1040.31,"position_z":11.6916,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55763,"id":187567,"map":560,"orientation":1.58825,"phaseMask":1,"position_x":1817.56,"position_y":1052.36,"position_z":16.8424,"rotation0":0,"rotation1":0,"rotation2":0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55764,"id":187235,"map":560,"orientation":3.63029,"phaseMask":1,"position_x":1810.83,"position_y":1124.28,"position_z":13.3553,"rotation0":0,"rotation1":0,"rotation2":-0.970295,"rotation3":0.241925,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55765,"id":187235,"map":560,"orientation":4.38078,"phaseMask":1,"position_x":1800.69,"position_y":1084.27,"position_z":11.0713,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580703,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55766,"id":187235,"map":560,"orientation":4.92183,"phaseMask":1,"position_x":1809.76,"position_y":1083.95,"position_z":11.3059,"rotation0":0,"rotation1":0,"rotation2":-0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55767,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":1808.54,"position_y":1024.53,"position_z":11.6881,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55768,"id":187567,"map":560,"orientation":4.69494,"phaseMask":1,"position_x":1805.48,"position_y":1097.36,"position_z":19.5861,"rotation0":0,"rotation1":0,"rotation2":-0.71325,"rotation3":0.70091,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55769,"id":187235,"map":560,"orientation":2.68781,"phaseMask":1,"position_x":1810.94,"position_y":1130.16,"position_z":13.3551,"rotation0":0,"rotation1":0,"rotation2":0.97437,"rotation3":0.224951,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55770,"id":187235,"map":560,"orientation":1.36136,"phaseMask":1,"position_x":1776.37,"position_y":1054.55,"position_z":6.90413,"rotation0":0,"rotation1":0,"rotation2":0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55771,"id":187235,"map":560,"orientation":5.07891,"phaseMask":1,"position_x":1776.81,"position_y":1067.18,"position_z":7.54524,"rotation0":0,"rotation1":0,"rotation2":-0.566406,"rotation3":0.824126,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55772,"id":187235,"map":560,"orientation":0.820303,"phaseMask":1,"position_x":1755.99,"position_y":1020.43,"position_z":6.87962,"rotation0":0,"rotation1":0,"rotation2":0.398748,"rotation3":0.91706,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55773,"id":187235,"map":560,"orientation":0.628317,"phaseMask":1,"position_x":1745.99,"position_y":1058.14,"position_z":6.87962,"rotation0":0,"rotation1":0,"rotation2":0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":47187,"animprogress":255,"areaId":2367,"guid":55774,"id":187235,"map":560,"orientation":5.65487,"phaseMask":1,"position_x":1736.87,"position_y":1084.24,"position_z":6.87962,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":2367},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68101,"id":180405,"map":560,"orientation":2.67035,"phaseMask":1,"position_x":1743.43,"position_y":1065.83,"position_z":8.60103,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233448,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68102,"id":180405,"map":560,"orientation":0.488691,"phaseMask":1,"position_x":1743.98,"position_y":1087.61,"position_z":8.61215,"rotation0":0,"rotation1":0,"rotation2":0.241921,"rotation3":0.970296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68103,"id":180405,"map":560,"orientation":0.349065,"phaseMask":1,"position_x":1763.02,"position_y":1087.88,"position_z":8.58322,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68104,"id":180405,"map":560,"orientation":3.24635,"phaseMask":1,"position_x":1774.13,"position_y":1054.08,"position_z":8.5993,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523532,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68105,"id":180405,"map":560,"orientation":5.07891,"phaseMask":1,"position_x":1774.69,"position_y":1028.48,"position_z":8.6089,"rotation0":0,"rotation1":0,"rotation2":-0.566406,"rotation3":0.824126,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68106,"id":180405,"map":560,"orientation":0.453785,"phaseMask":1,"position_x":1801.29,"position_y":1085.82,"position_z":13.7071,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68107,"id":180405,"map":560,"orientation":0.349065,"phaseMask":1,"position_x":1809.77,"position_y":1092.2,"position_z":18.0274,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68108,"id":180405,"map":560,"orientation":3.927,"phaseMask":1,"position_x":1812.14,"position_y":1053.94,"position_z":11.0891,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68109,"id":180405,"map":560,"orientation":4.34587,"phaseMask":1,"position_x":1822.68,"position_y":1018.62,"position_z":12.8462,"rotation0":0,"rotation1":0,"rotation2":-0.824126,"rotation3":0.566406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68110,"id":180405,"map":560,"orientation":0.0349062,"phaseMask":1,"position_x":1871.84,"position_y":1070.01,"position_z":17.1888,"rotation0":0,"rotation1":0,"rotation2":0.0174522,"rotation3":0.999848,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68111,"id":180405,"map":560,"orientation":4.4855,"phaseMask":1,"position_x":2189.11,"position_y":132.872,"position_z":91.4066,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68112,"id":180405,"map":560,"orientation":2.93214,"phaseMask":1,"position_x":2633.21,"position_y":655.743,"position_z":54.2938,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104536,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68404,"id":180406,"map":560,"orientation":2.67035,"phaseMask":1,"position_x":1733.62,"position_y":1068.25,"position_z":8.59315,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233448,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68405,"id":180406,"map":560,"orientation":1.48353,"phaseMask":1,"position_x":1734.55,"position_y":1087.2,"position_z":8.60055,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68406,"id":180406,"map":560,"orientation":1.85005,"phaseMask":1,"position_x":1745.36,"position_y":1056.3,"position_z":8.6145,"rotation0":0,"rotation1":0,"rotation2":0.798635,"rotation3":0.601815,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68407,"id":180406,"map":560,"orientation":1.64061,"phaseMask":1,"position_x":1753.29,"position_y":1037.22,"position_z":8.61253,"rotation0":0,"rotation1":0,"rotation2":0.731353,"rotation3":0.681999,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68408,"id":180406,"map":560,"orientation":0.244346,"phaseMask":1,"position_x":1773.57,"position_y":1085.79,"position_z":8.59356,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68409,"id":180406,"map":560,"orientation":0.244346,"phaseMask":1,"position_x":1773.88,"position_y":1067.87,"position_z":8.59006,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68410,"id":180406,"map":560,"orientation":5.13127,"phaseMask":1,"position_x":1774.57,"position_y":1039.39,"position_z":8.60128,"rotation0":0,"rotation1":0,"rotation2":-0.544639,"rotation3":0.838671,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68411,"id":180406,"map":560,"orientation":0.244346,"phaseMask":1,"position_x":1809.83,"position_y":1085.9,"position_z":13.7278,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68412,"id":180406,"map":560,"orientation":3.26377,"phaseMask":1,"position_x":1823.18,"position_y":1053.46,"position_z":11.1871,"rotation0":0,"rotation1":0,"rotation2":-0.998135,"rotation3":0.0610518,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68413,"id":180406,"map":560,"orientation":0.802851,"phaseMask":1,"position_x":1901.92,"position_y":1058.15,"position_z":18.1655,"rotation0":0,"rotation1":0,"rotation2":0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68414,"id":180406,"map":560,"orientation":4.4855,"phaseMask":1,"position_x":2195.23,"position_y":143.929,"position_z":91.4066,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622515,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68715,"id":180407,"map":560,"orientation":1.0821,"phaseMask":1,"position_x":1732.93,"position_y":1085.41,"position_z":8.59513,"rotation0":0,"rotation1":0,"rotation2":0.515038,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68716,"id":180407,"map":560,"orientation":1.67551,"phaseMask":1,"position_x":1735.23,"position_y":1065.78,"position_z":8.61816,"rotation0":0,"rotation1":0,"rotation2":0.743144,"rotation3":0.669131,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68717,"id":180407,"map":560,"orientation":3.28124,"phaseMask":1,"position_x":1743.21,"position_y":1058.1,"position_z":8.6161,"rotation0":0,"rotation1":0,"rotation2":-0.997563,"rotation3":0.0697661,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68718,"id":180407,"map":560,"orientation":2.40855,"phaseMask":1,"position_x":1753.23,"position_y":1056.46,"position_z":8.60648,"rotation0":0,"rotation1":0,"rotation2":0.93358,"rotation3":0.358368,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68719,"id":180407,"map":560,"orientation":2.09439,"phaseMask":1,"position_x":1753.49,"position_y":1027.79,"position_z":8.60837,"rotation0":0,"rotation1":0,"rotation2":0.866025,"rotation3":0.500001,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68720,"id":180407,"map":560,"orientation":0.977383,"phaseMask":1,"position_x":1753.59,"position_y":1087.51,"position_z":8.61018,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68721,"id":180407,"map":560,"orientation":5.42797,"phaseMask":1,"position_x":1772.29,"position_y":1087.61,"position_z":8.57141,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68722,"id":180407,"map":560,"orientation":5.25344,"phaseMask":1,"position_x":1773.64,"position_y":1078.01,"position_z":8.5445,"rotation0":0,"rotation1":0,"rotation2":-0.492423,"rotation3":0.870356,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68723,"id":180407,"map":560,"orientation":0.418879,"phaseMask":1,"position_x":1801.13,"position_y":1092.22,"position_z":18.1226,"rotation0":0,"rotation1":0,"rotation2":0.207911,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68724,"id":180407,"map":560,"orientation":3.14159,"phaseMask":1,"position_x":1855.52,"position_y":1049.69,"position_z":15.5065,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68725,"id":180407,"map":560,"orientation":1.0472,"phaseMask":1,"position_x":1946.57,"position_y":1054.01,"position_z":20.5002,"rotation0":0,"rotation1":0,"rotation2":0.5,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":68726,"id":180407,"map":560,"orientation":3.21142,"phaseMask":1,"position_x":2625.09,"position_y":658.634,"position_z":54.2737,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349061,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81501,"id":112301,"map":560,"orientation":4.72112,"phaseMask":1,"position_x":1805.23,"position_y":1130.09,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.704014,"rotation3":0.710186,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81502,"id":112302,"map":560,"orientation":4.81711,"phaseMask":1,"position_x":1807.4,"position_y":1130.11,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81503,"id":112303,"map":560,"orientation":4.72112,"phaseMask":1,"position_x":1809.44,"position_y":1130.13,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.704014,"rotation3":0.710186,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81504,"id":112305,"map":560,"orientation":4.79966,"phaseMask":1,"position_x":1792.48,"position_y":1129.98,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737278,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81505,"id":112308,"map":560,"orientation":4.67748,"phaseMask":1,"position_x":1790.44,"position_y":1129.96,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81506,"id":112309,"map":560,"orientation":4.75602,"phaseMask":1,"position_x":1788.27,"position_y":1129.94,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.691513,"rotation3":0.722364,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81507,"id":112310,"map":560,"orientation":1.64061,"phaseMask":1,"position_x":1805.39,"position_y":1117.26,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":0.731354,"rotation3":0.681998,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81508,"id":112311,"map":560,"orientation":1.50098,"phaseMask":1,"position_x":1807.42,"position_y":1117.27,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":0.681997,"rotation3":0.731355,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81509,"id":112312,"map":560,"orientation":1.57952,"phaseMask":1,"position_x":1809.59,"position_y":1117.29,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":0.710185,"rotation3":0.704015,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81510,"id":112316,"map":560,"orientation":1.57952,"phaseMask":1,"position_x":1795.41,"position_y":1111.98,"position_z":12.4601,"rotation0":0,"rotation1":0,"rotation2":0.710185,"rotation3":0.704015,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81511,"id":112317,"map":560,"orientation":6.20465,"phaseMask":1,"position_x":1794.44,"position_y":1112.93,"position_z":12.4601,"rotation0":0,"rotation1":0,"rotation2":-0.039259,"rotation3":0.999229,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81512,"id":112318,"map":560,"orientation":3.15033,"phaseMask":1,"position_x":1817.13,"position_y":1118.91,"position_z":14.8869,"rotation0":0,"rotation1":0,"rotation2":-0.99999,"rotation3":0.00436732,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81513,"id":112319,"map":560,"orientation":4.78221,"phaseMask":1,"position_x":1808.01,"position_y":1112.33,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81514,"id":112321,"map":560,"orientation":4.72112,"phaseMask":1,"position_x":1802.57,"position_y":1112.28,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":-0.704014,"rotation3":0.710186,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81515,"id":112322,"map":560,"orientation":0.0436322,"phaseMask":1,"position_x":1781.2,"position_y":1123.76,"position_z":13.4756,"rotation0":0,"rotation1":0,"rotation2":0.0218143,"rotation3":0.999762,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81556,"id":174994,"map":560,"orientation":5.65487,"phaseMask":1,"position_x":1874.84,"position_y":1103.79,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81557,"id":174995,"map":560,"orientation":5.65487,"phaseMask":1,"position_x":1876.24,"position_y":1105.72,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81558,"id":174996,"map":560,"orientation":4.08407,"phaseMask":1,"position_x":1878.05,"position_y":1106.08,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81559,"id":174997,"map":560,"orientation":4.08407,"phaseMask":1,"position_x":1879.81,"position_y":1104.81,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81560,"id":174998,"map":560,"orientation":4.08407,"phaseMask":1,"position_x":1881.48,"position_y":1103.59,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.891006,"rotation3":0.453991,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81575,"id":22684,"map":560,"orientation":2.51327,"phaseMask":1,"position_x":1890.81,"position_y":1087.85,"position_z":23.6316,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81576,"id":22685,"map":560,"orientation":2.51327,"phaseMask":1,"position_x":1892.8,"position_y":1090.6,"position_z":23.6316,"rotation0":0,"rotation1":0,"rotation2":0.951056,"rotation3":0.309017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81577,"id":22904,"map":560,"orientation":4.37205,"phaseMask":1,"position_x":1822.65,"position_y":1035.22,"position_z":18.5431,"rotation0":0,"rotation1":0,"rotation2":-0.816642,"rotation3":0.577145,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81578,"id":22908,"map":560,"orientation":3.90081,"phaseMask":1,"position_x":1821.75,"position_y":1023.72,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":-0.928809,"rotation3":0.370558,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81579,"id":22915,"map":560,"orientation":4.72984,"phaseMask":1,"position_x":1820.18,"position_y":1023.96,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81580,"id":22916,"map":560,"orientation":5.29708,"phaseMask":1,"position_x":1818.5,"position_y":1023.7,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":-0.473319,"rotation3":0.880891,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81581,"id":22917,"map":560,"orientation":2.34746,"phaseMask":1,"position_x":1821.7,"position_y":1020.94,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":0.9222,"rotation3":0.386713,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81582,"id":22918,"map":560,"orientation":1.54462,"phaseMask":1,"position_x":1820.17,"position_y":1020.63,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":0.69779,"rotation3":0.716302,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81583,"id":22919,"map":560,"orientation":1.92859,"phaseMask":1,"position_x":1822.45,"position_y":1032.6,"position_z":18.5431,"rotation0":0,"rotation1":0,"rotation2":0.821647,"rotation3":0.569997,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81584,"id":22920,"map":560,"orientation":1.1781,"phaseMask":1,"position_x":1818.61,"position_y":1020.99,"position_z":11.7004,"rotation0":0,"rotation1":0,"rotation2":0.555571,"rotation3":0.831469,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81585,"id":22921,"map":560,"orientation":5.55888,"phaseMask":1,"position_x":1801.73,"position_y":1034.98,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":-0.35429,"rotation3":0.935136,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81586,"id":22922,"map":560,"orientation":4.72984,"phaseMask":1,"position_x":1803.1,"position_y":1035.27,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81587,"id":22923,"map":560,"orientation":4.05789,"phaseMask":1,"position_x":1808.02,"position_y":1035.03,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":-0.896873,"rotation3":0.442289,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81588,"id":22924,"map":560,"orientation":4.59894,"phaseMask":1,"position_x":1806.32,"position_y":1035.3,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":-0.746058,"rotation3":0.665882,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81589,"id":22925,"map":560,"orientation":4.72984,"phaseMask":1,"position_x":1804.7,"position_y":1035.28,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81590,"id":22926,"map":560,"orientation":0.0261791,"phaseMask":1,"position_x":1801.52,"position_y":1033.65,"position_z":11.069,"rotation0":0,"rotation1":0,"rotation2":0.0130892,"rotation3":0.999914,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81591,"id":23013,"map":560,"orientation":2.53945,"phaseMask":1,"position_x":1989.88,"position_y":1163.66,"position_z":31.6436,"rotation0":0,"rotation1":0,"rotation2":0.95502,"rotation3":0.296542,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81592,"id":23014,"map":560,"orientation":3.17653,"phaseMask":1,"position_x":1991.93,"position_y":1166.38,"position_z":31.6436,"rotation0":0,"rotation1":0,"rotation2":-0.999847,"rotation3":0.0174693,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81593,"id":23015,"map":560,"orientation":5.35816,"phaseMask":1,"position_x":1982.85,"position_y":1180.46,"position_z":31.6129,"rotation0":0,"rotation1":0,"rotation2":-0.446198,"rotation3":0.894935,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81607,"id":36977,"map":560,"orientation":5.65487,"phaseMask":1,"position_x":1883.64,"position_y":1096.76,"position_z":18.8454,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":81608,"id":38147,"map":560,"orientation":1.23046,"phaseMask":1,"position_x":1815.94,"position_y":1012.81,"position_z":18.5431,"rotation0":0,"rotation1":0,"rotation2":0.577145,"rotation3":0.816642,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/escape-from-durnholde/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["29/29 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"utgarde-keep","title":"Utgarde Keep","mapId":574,"lfgDungeonIds":[202,242],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[68,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Utgarde Keep","theme":"Open-world expedition","summary":"Fight through Utgarde Keep, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Utgarde Keep...","unchartedAreaName":"Uncharted Utgarde Keep","background":"#081016","fog":{"color":"#0a141c","near":36,"far":523.908},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/574-valgarde70/visual.glb","checksum":"055149f48ac4fb3907b8c4e7a2b702743b3e0aca0421e2886cf9669aacccc325","size":52892124,"triangleCount":5534544}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/574-valgarde70/collision-000.glb","checksum":"9cc8d92f03bfe55c125741c66f61e0681b7890b481e7bbffc0376e30a0f7b2b0","size":403068,"triangleCount":78850},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/574-valgarde70/collision-001.glb","checksum":"207f0cfdad105a5e0f59636e217fb7154bdee9e831a6636f80217bc0792b3b74","size":1437596,"triangleCount":99999},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/574-valgarde70/collision-002.glb","checksum":"1c1b1cb36e509d8c7ae03ff8b587d07c46caacf53fc7dcdec9b8c86947ea627d","size":588156,"triangleCount":92533},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/574-valgarde70/collision-003.glb","checksum":"ce4d3f839a67412c6f8230718482c40cfa8af0adbde5fb568aa4f94d379daf3b","size":574804,"triangleCount":93410},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/574-valgarde70/collision-004.glb","checksum":"fe70a10b0ba2f5f703bbe01b332bce0034eaadfc23f51c85e20df225a4eaa1e8","size":172620,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/574-valgarde70/collision-005.glb","checksum":"a3f40c09f7d56398c81328b03cf985faae8fa28993e5f925c84da5b1391cdcdc","size":172972,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/574-valgarde70/collision-006.glb","checksum":"d8d945ad209a4357637d98f4e9005f434413d130458640f3e6a4636f897383e7","size":172820,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/574-valgarde70/collision-007.glb","checksum":"98cd26ec8b2062c3682f5faff0f064efcbcac0fab314c715c365cadfaaae6acb","size":172624,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/574-valgarde70/collision-008.glb","checksum":"8a345f470817e81822aa87a8ad53ec780c315132975cb6160ccd54ae940bed0d","size":172972,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/574-valgarde70/collision-009.glb","checksum":"482d8241e58dac3e7a02d40adac6a1ffd68c6e9e622ca88790d19ddb26a51810","size":386504,"triangleCount":75659},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/574-valgarde70/collision-010.glb","checksum":"9c6a68d5535211684ed18fce022715320dcf348c38bd6479547303bd183d0cd9","size":348748,"triangleCount":73070},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/574-valgarde70/collision-011.glb","checksum":"0bef57917a2bfa0dcef034110b2500f45c991df64372166c627061f0df5fd82e","size":172784,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/574-valgarde70/collision-012.glb","checksum":"632b90e5e1e78c3cbc0f3920bc19d7551d5a5e155e62ab5ae646f9101e68c05d","size":172444,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/574-valgarde70/collision-013.glb","checksum":"049edba3281c6422fa5e9acf6a52c7183931bfca79aa845f2dd0de703786b129","size":172796,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/574-valgarde70/collision-014.glb","checksum":"e63aabff9b1180f82966bc83fd23389b0ce08a90995d139d93f9ac5541675b45","size":172644,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/574-valgarde70/collision-015.glb","checksum":"7d08930480a264a200869a3f433f358346b6bdf10312b5fdf3844e929f241d10","size":172448,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/574-valgarde70/collision-016.glb","checksum":"64f49b4f9095074f4fd097108ce39ee441831514cc587ec7733a5794db87ff6c","size":172796,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/574-valgarde70/collision-017.glb","checksum":"1414291e418efbf553711c52fef9cc17a96fc4281d6efa8de01323ff266f43a3","size":172604,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/574-valgarde70/collision-018.glb","checksum":"e0394910059f029474797ea1da0ee10f34d8a8a8ea62902a7574856bbb2d78cb","size":172408,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/574-valgarde70/collision-019.glb","checksum":"faef3bd55e854c73283ae17872b2e09053e537ce6d7d76a7ffdf32f408d27b42","size":173576,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/574-valgarde70/collision-020.glb","checksum":"5067c9895075a4ca7efb12d5b0f5db173070ce7099269cf605dc7c9dfaf23b0c","size":173264,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/574-valgarde70/collision-021.glb","checksum":"954c479b1fe7008bb4a5cf5f7efb05834fb2f594f9f4b5dc8a81ce701023add2","size":173476,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/574-valgarde70/collision-022.glb","checksum":"576cb42449b0a03e8fe0e4f390d3b0da3c579e92e26a186ab0642e77daac425b","size":173252,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/574-valgarde70/collision-023.glb","checksum":"e00dfb494a82633a47a167400aa29ea5978c2efa0e1814855cf7a5bd69d91b14","size":173264,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/574-valgarde70/collision-024.glb","checksum":"172376a1ad604a10006ab550128d072c0379a19eeab933db9c6f3b4335ecc2e1","size":173476,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/574-valgarde70/collision-025.glb","checksum":"c891b194ed61cad9e451af8bbbf78d6fca7d8a639e6c21896f376754df481523","size":172448,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/574-valgarde70/collision-026.glb","checksum":"de7110d091fca22bded6afdb20bd72a77f37af97c2c8f92fd965e592d5181229","size":173416,"triangleCount":65536},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/574-valgarde70/collision-027.glb","checksum":"85e720ccdf6ccb03f78f66273ebff357ccc37d976dcd1f19f645f3735aa08826","size":220228,"triangleCount":65536},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/574-valgarde70/collision-028.glb","checksum":"ae718a831f1375c3a36b47f822bcea4ddc19615c1b9f0a261350026fdd88e8b4","size":1512336,"triangleCount":100000},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/574-valgarde70/collision-029.glb","checksum":"4f262d3bc181b0ad9b4923828a1e33b4be0f8a4a300211f68209d4069749ca7e","size":203004,"triangleCount":58096},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/574-valgarde70/collision-030.glb","checksum":"7cb4e4112d88e6dbed663fc60f127f03ee79e0979f05976bbe21decbf76fd39d","size":475428,"triangleCount":81786},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/574-valgarde70/collision-031.glb","checksum":"e2a009d212351d176c98780537c36093c83b88b0b8cbc0f04bb115603f19109a","size":176024,"triangleCount":65536},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/574-valgarde70/collision-032.glb","checksum":"f6c7ff4aa741f2a1e55e6e810d13e37f9a7cf2d8fd28e99e269b186f61a0f9a4","size":172936,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/574-valgarde70/collision-033.glb","checksum":"3b6cda1718f195345bf8863d3efec82a240a05d62db843ffd47dfd91b73ceee7","size":173372,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/574-valgarde70/collision-034.glb","checksum":"88a6669b09ffbc32e282d7ebf53c8105198a67eb97e59c4a00ecb0f1a4cd23c3","size":172672,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/574-valgarde70/collision-035.glb","checksum":"c7c96b111ea6bae10715b21d040fd5c3a50aa78819ef2f6952377b59ea291221","size":173640,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/574-valgarde70/collision-036.glb","checksum":"1ecbe6765ac61ed97eb17be3a5d95ccb28afda76469623340eeae6e005f7514b","size":548860,"triangleCount":85186},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/574-valgarde70/collision-037.glb","checksum":"a1c802c8f7a07bd1b0f32f1ffda5eb5cb4234e50ec55aefd3febe8116aa3ad61","size":627732,"triangleCount":87605},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/574-valgarde70/collision-038.glb","checksum":"05a0a1c4f7ae6029c37375858885481c0e1d1242a0e6f237eb5d5258731d3619","size":595204,"triangleCount":96769},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/574-valgarde70/collision-039.glb","checksum":"f0255ce1aab088dbd3fb5fb37b15ac4b6bdef95e789a9531c807ae130d003e59","size":1199848,"triangleCount":83540},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/574-valgarde70/collision-040.glb","checksum":"634e8f2d0793dc260ba94fdacdfa47558372582a5d0c10e5bba5a607fe0d2b11","size":178732,"triangleCount":65536},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/574-valgarde70/collision-041.glb","checksum":"3b9d05240f226717686692a0cf16ae323742993c83ebadcfd67650a3f48aca06","size":173104,"triangleCount":65536},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/574-valgarde70/collision-042.glb","checksum":"47e11e2ef7c13f3be7f1f88bcacbd9ebd21ce945eab5e607e8b6730832b878af","size":173708,"triangleCount":65536},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/574-valgarde70/collision-043.glb","checksum":"9a3ddcd66a53f97d94848f8e46ebbf33fa39aac479ef2f559d198d28adaf5b7a","size":172736,"triangleCount":65536},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/574-valgarde70/collision-044.glb","checksum":"1dd767c8dfd32696abf7aad13f551676adc52e76718acf9125ae08871ab8566f","size":173704,"triangleCount":65536},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/574-valgarde70/collision-045.glb","checksum":"7860590d3f9c51ac92f437f7af24a0469cb25c8c2a26374b8955824f38390c93","size":220900,"triangleCount":65536},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/574-valgarde70/collision-046.glb","checksum":"8591b7f6f1fcac7240c06673ffc74c111a4e5901fd1a360db42cd7a42613829e","size":499728,"triangleCount":81133},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/574-valgarde70/collision-047.glb","checksum":"1224c88dbb93271edad140fc4a1d336d0f5595b4dd325d24f87993bbe4f7b9e8","size":570836,"triangleCount":91579},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/574-valgarde70/collision-048.glb","checksum":"f097c8069d6abebf16f8f1152285331da5292b7770b394f2f24b5ca6dfd5b0e0","size":442812,"triangleCount":90584},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/574-valgarde70/collision-049.glb","checksum":"779028836e5f50a540b422f4d06fcb2563eff2a494ab07bfd650ca916fd00ee3","size":173232,"triangleCount":65536},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/574-valgarde70/collision-050.glb","checksum":"c15877275204f059aec8aac2f37c6a5eac2e05fb0c2f3a929060914aacd26401","size":173640,"triangleCount":65536},{"id":"collision-051","fileName":"collision-051.glb","url":"/assets/game/manastorm/574-valgarde70/collision-051.glb","checksum":"593afbacac1319477327a4838203b9428818ce3d4a939cedb062c23296667191","size":173328,"triangleCount":65536},{"id":"collision-052","fileName":"collision-052.glb","url":"/assets/game/manastorm/574-valgarde70/collision-052.glb","checksum":"c57299f3a28009ab2e3ff1d13d68a1636eceeec8dc4602df9d9ca425672d9d08","size":173164,"triangleCount":65536},{"id":"collision-053","fileName":"collision-053.glb","url":"/assets/game/manastorm/574-valgarde70/collision-053.glb","checksum":"c4657f3f3ef184d0fb561c3343a7745d58f4f8dcfe944724e67570bc68f1a438","size":174520,"triangleCount":65536},{"id":"collision-054","fileName":"collision-054.glb","url":"/assets/game/manastorm/574-valgarde70/collision-054.glb","checksum":"ed5709f068a259245feb6f07394e4c391a7c4bd51a94a533d1ed57ac6377fcc1","size":174148,"triangleCount":65536},{"id":"collision-055","fileName":"collision-055.glb","url":"/assets/game/manastorm/574-valgarde70/collision-055.glb","checksum":"f36c2b8015cca9efad3ccfeebbdba9b41db3a508dc4d5b76b399c3ffa26705ee","size":174472,"triangleCount":65536},{"id":"collision-056","fileName":"collision-056.glb","url":"/assets/game/manastorm/574-valgarde70/collision-056.glb","checksum":"e6ca0a3cd44b7252f32fc063ecf244c89f7d0aadd30eba08e978651cbb6d46e5","size":174036,"triangleCount":65536},{"id":"collision-057","fileName":"collision-057.glb","url":"/assets/game/manastorm/574-valgarde70/collision-057.glb","checksum":"07fa1ffea8ed8cbc97d3449b27975a31433ec7e9d37aa2a0bfff99a8a5809675","size":172932,"triangleCount":65536},{"id":"collision-058","fileName":"collision-058.glb","url":"/assets/game/manastorm/574-valgarde70/collision-058.glb","checksum":"50c1d297fa2bf6b779222d14723ddbb269c768ca513561f20348b01a9dc8aa29","size":173316,"triangleCount":65536},{"id":"collision-059","fileName":"collision-059.glb","url":"/assets/game/manastorm/574-valgarde70/collision-059.glb","checksum":"a6167c7a94695427cbc19fe49a7f18b5ec31ba52e42557dcdd3009114de24213","size":173212,"triangleCount":65536},{"id":"collision-060","fileName":"collision-060.glb","url":"/assets/game/manastorm/574-valgarde70/collision-060.glb","checksum":"70bf98c545fbdbb8cb02f299ef4238d7d45dc22d226548f01e0fad4d7bdbd843","size":172972,"triangleCount":65536},{"id":"collision-061","fileName":"collision-061.glb","url":"/assets/game/manastorm/574-valgarde70/collision-061.glb","checksum":"052436d06a8ce58dc7ef3853cb499ea5ad5fbe5b28d4731b0913c77d7799bc50","size":173452,"triangleCount":65536},{"id":"collision-062","fileName":"collision-062.glb","url":"/assets/game/manastorm/574-valgarde70/collision-062.glb","checksum":"6b05c3aa7ea80e5f7ca89aaf4e81999532b044d1681a2db016da2697ba358f58","size":173316,"triangleCount":65536},{"id":"collision-063","fileName":"collision-063.glb","url":"/assets/game/manastorm/574-valgarde70/collision-063.glb","checksum":"a33dc7fcadfc82dcb471a8022dba4c0d377dec0c15c351220b4e6ee91c52e350","size":173556,"triangleCount":65536},{"id":"collision-064","fileName":"collision-064.glb","url":"/assets/game/manastorm/574-valgarde70/collision-064.glb","checksum":"3a6cde6fba385b0de938b41b9a0de15dd86385cab8a9f77c79457df508fd0251","size":173404,"triangleCount":65536},{"id":"collision-065","fileName":"collision-065.glb","url":"/assets/game/manastorm/574-valgarde70/collision-065.glb","checksum":"c1b3dcd9917887c7da183dc71ebeec7c6d755b1690ae21e87b87f9df2e2298ea","size":173036,"triangleCount":65536},{"id":"collision-066","fileName":"collision-066.glb","url":"/assets/game/manastorm/574-valgarde70/collision-066.glb","checksum":"2dca6d74a097b7835fc90f0c87df92588d45832a325610298b813c02f419fda7","size":173500,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/574-valgarde70/navigation.glb","checksum":"0d0a8c1f5b17f2ed95049bdcf0dfc425cd90135c023919fa42bdc3cf1e001662","size":5011536,"triangleCount":434783}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-520.3712,96.2427,-89.5139],"max":[207.2788,415.4607,449.2018]},"entrance":{"name":"Utgarde Keep Entrance","footPosition":[-208.8332,116.2427,152.3668],"forward":[-0.03224160569903854,0,0.9994801042851967],"yaw":-0.03224719428546243},"areas":[{"id":"entrance","name":"Utgarde Keep Entrance","center":[-208.8332,116.2427,152.3668],"radius":35},{"id":"area-prince-keleseth","name":"Prince Keleseth's Encounter","center":[75.2068,144.5067,191.6988],"radius":42},{"id":"area-skarvold-dalronn","name":"Skarvold & Dalronn's Encounter","center":[-162.5717,222.5527,110.6008],"radius":42},{"id":"area-ingvar-the-plunderer","name":"Ingvar the Plunderer's Encounter","center":[-455.8802,284.2517,241.2548],"radius":42}],"entities":{"entry-28419":{"id":"entry-28419","kind":"mob","name":"Frenzied Geist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-25402-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":3.2357,"markerRadius":0.65}}},"entry-24069":{"id":"entry-24069","kind":"mob","name":"Dragonflayer Bonecrusher","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22297-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0407,"labelHeight":6.1162,"markerRadius":1.0864}}},"entry-24071":{"id":"entry-24071","kind":"mob","name":"Dragonflayer Heartsplitter","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22299-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24078":{"id":"entry-24078","kind":"mob","name":"Dragonflayer Metalworker","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22285-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24079":{"id":"entry-24079","kind":"mob","name":"Dragonflayer Forge Master","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22283-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24080":{"id":"entry-24080","kind":"mob","name":"Dragonflayer Weaponsmith","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22279-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24849":{"id":"entry-24849","kind":"mob","name":"Proto-Drake Rider","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22287-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24083":{"id":"entry-24083","kind":"mob","name":"Enslaved Proto-Drake","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-43931","name":"Rend","spellId":43931,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":2500,"damageMultiplier":1.12},{"id":"spell-50653","name":"Flame Breath","spellId":50653,"delivery":"area","target":"nearby-party","school":"fire","animation":"cast","range":22,"cooldownMs":5500,"damageMultiplier":0.62,"radius":8}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-24874-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.101,"labelHeight":8.1267,"markerRadius":4.5}}},"entry-24084":{"id":"entry-24084","kind":"mob","name":"Tunneling Ghoul","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-25399-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":5.3992,"markerRadius":1.2091}}},"entry-24085":{"id":"entry-24085","kind":"mob","name":"Dragonflayer Overseer","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22291-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24864":{"id":"entry-24864","kind":"mob","name":"Dragonflayer Worker","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22677-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-29735":{"id":"entry-29735","kind":"mob","name":"Savage Worg","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22088-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.0731,"markerRadius":2.4676}}},"entry-24200":{"id":"entry-24200","kind":"mob","name":"Skarvald the Constructor","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-43651","name":"Charge","spellId":43651,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5155,"damageMultiplier":1.12},{"id":"spell-48583","name":"Stone Strike","spellId":48583,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":3000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22194-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0462,"labelHeight":6.9502,"markerRadius":1.2346}}},"entry-24201":{"id":"entry-24201","kind":"boss","name":"Dalronn the Controller","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-43649","name":"Shadow Bolt","spellId":43649,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-43650","name":"Debilitate","spellId":43650,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-26349-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":5.2627,"markerRadius":1.0788}}},"entry-23953":{"id":"entry-23953","kind":"boss","name":"Prince Keleseth","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-43667","name":"Shadow Bolt","spellId":43667,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7414,"damageMultiplier":1.35},{"id":"spell-48400","name":"Frost Tomb","spellId":48400,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7414,"damageMultiplier":1.35},{"id":"spell-42672","name":"Frost Tomb","spellId":42672,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7414,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-25338-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0153,"labelHeight":3.9016,"markerRadius":0.6811}}},"entry-23954":{"id":"entry-23954","kind":"boss","name":"Ingvar the Plunderer","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-42857","name":"Scourge Resurrection","spellId":42857,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4554,"damageMultiplier":1.35},{"id":"spell-42862","name":"Scourge Resurrection","spellId":42862,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.35},{"id":"spell-42704","name":"Scourge Resurrection","spellId":42704,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-42708","name":"Staggering Roar","spellId":42708,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4554,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-21953-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0462,"labelHeight":6.9502,"markerRadius":1.2346}}},"entry-23956":{"id":"entry-23956","kind":"mob","name":"Dragonflayer Strategist","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/9f19ece9932a25f5b90447af6bbe32a2296b424adfdd152bd3c803d9ff73da9f.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-23960":{"id":"entry-23960","kind":"mob","name":"Dragonflayer Runecaster","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22289-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-23961":{"id":"entry-23961","kind":"mob","name":"Dragonflayer Ironhelm","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22281-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-28410":{"id":"entry-28410","kind":"mob","name":"Dragonflayer Spiritualist","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-25393-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0161,"labelHeight":4.9409,"markerRadius":0.7327}}},"entry-24082":{"id":"entry-24082","kind":"mob","name":"Proto-Drake Handler","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-22287-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-24137":{"id":"entry-24137","kind":"mob","name":"Dark Ranger Marrah","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-keep/creatures/display-21746-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.7911,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-125875","entityId":"entry-28419","position":[-68.79,169.3805,123.3478],"yaw":-5.96712,"spawnMask":3},{"id":"creature-125876","entityId":"entry-28419","position":[-66.8223,169.391,117.6798],"yaw":-1.5177,"spawnMask":3},{"id":"creature-125877","entityId":"entry-28419","position":[-98.6923,218.7207,33.9693],"yaw":-4.03541,"spawnMask":3},{"id":"creature-125878","entityId":"entry-28419","position":[-93.9605,218.7457,62.9877],"yaw":-4.96695,"spawnMask":3},{"id":"creature-125880","entityId":"entry-28419","position":[-123.8575,220.9057,42.3499],"yaw":-2.12739,"spawnMask":3},{"id":"creature-125881","entityId":"entry-28419","position":[-123.5928,218.8857,33.1524],"yaw":-3.80694,"spawnMask":3},{"id":"creature-125884","entityId":"entry-28419","position":[86.5258,153.2951,82.9233],"yaw":-5.55015,"spawnMask":3},{"id":"creature-125885","entityId":"entry-28419","position":[82.3368,153.2624,77.271],"yaw":-5.79892,"spawnMask":3},{"id":"creature-125886","entityId":"entry-24069","position":[-297.5092,284.2817,160.8048],"yaw":-3.52556,"spawnMask":3},{"id":"creature-125887","entityId":"entry-24069","position":[-118.2123,282.3097,244.4498],"yaw":-1.13446,"spawnMask":3},{"id":"creature-125888","entityId":"entry-24069","position":[-128.03,282.2597,226.6408],"yaw":-2.67035,"spawnMask":3},{"id":"creature-125889","entityId":"entry-24069","position":[-222.2526,294.1597,262.3338],"yaw":-0.802851,"spawnMask":3},{"id":"creature-125890","entityId":"entry-24069","position":[-108.8932,238.9697,236.5548],"yaw":-1.11701,"spawnMask":3},{"id":"creature-125891","entityId":"entry-24071","position":[-133.4588,282.4397,247.7498],"yaw":-5.63741,"spawnMask":3},{"id":"creature-125892","entityId":"entry-24071","position":[-226.1232,294.1627,265.1368],"yaw":-0.471239,"spawnMask":3},{"id":"creature-125893","entityId":"entry-24071","position":[-101.0118,238.9567,238.3668],"yaw":-4.86947,"spawnMask":3},{"id":"creature-125894","entityId":"entry-24078","position":[-163.1023,128.4563,254.6908],"yaw":-1.98968,"spawnMask":3},{"id":"creature-125895","entityId":"entry-24078","position":[-149.9371,128.4563,252.6008],"yaw":-5.2709,"spawnMask":3},{"id":"creature-125896","entityId":"entry-24078","position":[-103.6906,126.5321,332.8808],"yaw":-4.10152,"spawnMask":3},{"id":"creature-125897","entityId":"entry-24078","position":[-121.5085,126.5321,330.1408],"yaw":-3.01942,"spawnMask":3},{"id":"creature-125898","entityId":"entry-24078","position":[-174.8493,126.5326,360.8978],"yaw":-5.23599,"spawnMask":3},{"id":"creature-125899","entityId":"entry-24078","position":[-195.7487,128.4558,267.5048],"yaw":-1.37881,"spawnMask":3},{"id":"creature-125900","entityId":"entry-24078","position":[-181.9466,128.4558,263.0188],"yaw":-4.81711,"spawnMask":3},{"id":"creature-125901","entityId":"entry-24078","position":[-128.3416,126.5321,395.1998],"yaw":-3.66519,"spawnMask":3},{"id":"creature-125902","entityId":"entry-24078","position":[-119.8358,126.5326,388.1358],"yaw":-1.15192,"spawnMask":3},{"id":"creature-125903","entityId":"entry-24079","position":[-117.6516,128.4266,346.2008],"yaw":-3.35103,"spawnMask":3},{"id":"creature-125904","entityId":"entry-24079","position":[-161.618,128.4558,348.1338],"yaw":-4.38078,"spawnMask":3},{"id":"creature-125905","entityId":"entry-24079","position":[-138.5197,128.4558,384.3528],"yaw":-0.575959,"spawnMask":3},{"id":"creature-125910","entityId":"entry-24080","position":[-186.0597,126.5321,352.0758],"yaw":-2.05949,"spawnMask":3},{"id":"creature-125911","entityId":"entry-24849","position":[-175.1437,339.0697,24.9223],"yaw":-0.230395,"spawnMask":3},{"id":"creature-125916","entityId":"entry-24849","position":[-303.0612,290.9237,39.3637],"yaw":-6.13716,"spawnMask":3},{"id":"creature-125919","entityId":"entry-24849","position":[-295.4402,293.0417,-12.4037],"yaw":-6.1368,"spawnMask":3},{"id":"creature-125923","entityId":"entry-24849","position":[-236.8742,341.7227,-30.6431],"yaw":-4.74998,"spawnMask":3},{"id":"creature-125924","entityId":"entry-24849","position":[-234.7172,344.4827,-44.5139],"yaw":-1.5473,"spawnMask":3},{"id":"creature-125925","entityId":"entry-24849","position":[-156.3095,395.4607,190.0358],"yaw":-2.15581,"spawnMask":3},{"id":"creature-125926","entityId":"entry-24849","position":[-307.8432,289.5947,71.8885],"yaw":-6.13719,"spawnMask":3},{"id":"creature-125928","entityId":"entry-24849","position":[-312.4402,293.6917,108.1368],"yaw":-2.83804,"spawnMask":3},{"id":"creature-125929","entityId":"entry-24849","position":[-90.4805,372.3657,272.0858],"yaw":-4.53437,"spawnMask":3},{"id":"creature-125933","entityId":"entry-24849","position":[-84.7937,370.1247,273.1298],"yaw":-4.52746,"spawnMask":3},{"id":"creature-125935","entityId":"entry-24849","position":[-474.8912,288.6427,242.4548],"yaw":-1.56545,"spawnMask":3},{"id":"creature-125938","entityId":"entry-24849","position":[-106.9693,376.5507,269.2868],"yaw":-4.55318,"spawnMask":3},{"id":"creature-125939","entityId":"entry-24849","position":[-340.5402,266.8777,404.2018],"yaw":-3.06533,"spawnMask":3},{"id":"creature-125948","entityId":"entry-24083","position":[89.0478,134.5889,335.8208],"yaw":-4.34587,"spawnMask":3},{"id":"creature-125949","entityId":"entry-24083","position":[48.0328,134.5734,314.9398],"yaw":-0.331613,"spawnMask":3},{"id":"creature-125950","entityId":"entry-24083","position":[35.3868,134.5529,396.5598],"yaw":-4.29351,"spawnMask":3},{"id":"creature-125951","entityId":"entry-24083","position":[-21.8632,134.5388,335.3778],"yaw":-0.261799,"spawnMask":3},{"id":"creature-125953","entityId":"entry-24083","position":[29.6918,134.5404,351.1958],"yaw":-2.49582,"spawnMask":3},{"id":"creature-125954","entityId":"entry-24084","position":[137.3398,146.6459,78.384],"yaw":-2.33874,"spawnMask":3},{"id":"creature-125955","entityId":"entry-24084","position":[63.3278,153.1656,63.4285],"yaw":-3.50811,"spawnMask":3},{"id":"creature-125956","entityId":"entry-24084","position":[-156.8747,222.5527,41.7236],"yaw":-4.13643,"spawnMask":3},{"id":"creature-125957","entityId":"entry-24084","position":[94.1258,153.1656,65.4025],"yaw":-3.68265,"spawnMask":3},{"id":"creature-125958","entityId":"entry-24084","position":[91.8448,153.1656,99.9948],"yaw":-0.436332,"spawnMask":3},{"id":"creature-125959","entityId":"entry-24084","position":[156.0538,146.6461,151.2408],"yaw":-0.890118,"spawnMask":3},{"id":"creature-125960","entityId":"entry-24084","position":[125.2228,146.6455,122.7278],"yaw":-5.39307,"spawnMask":3},{"id":"creature-125961","entityId":"entry-24084","position":[140.2818,146.6459,86.959],"yaw":-1.90241,"spawnMask":3},{"id":"creature-125962","entityId":"entry-24084","position":[-99.8246,218.8067,22.8365],"yaw":-2.98451,"spawnMask":3},{"id":"creature-125963","entityId":"entry-24084","position":[162.2788,146.6455,132.7608],"yaw":-2.61799,"spawnMask":3},{"id":"creature-125964","entityId":"entry-24084","position":[161.8108,146.6461,145.1508],"yaw":-1.50098,"spawnMask":3},{"id":"creature-125965","entityId":"entry-24084","position":[115.8568,146.6441,111.1938],"yaw":-5.74213,"spawnMask":3},{"id":"creature-125966","entityId":"entry-24084","position":[83.9968,153.1635,101.7318],"yaw":-0.366519,"spawnMask":3},{"id":"creature-125967","entityId":"entry-24084","position":[-128.2582,222.5527,51.6931],"yaw":-0.645772,"spawnMask":3},{"id":"creature-125968","entityId":"entry-24084","position":[142.8968,146.646,94.9007],"yaw":-2.02458,"spawnMask":3},{"id":"creature-125969","entityId":"entry-24084","position":[71.6298,153.1625,101.8988],"yaw":-0.034907,"spawnMask":3},{"id":"creature-125970","entityId":"entry-24084","position":[64.5298,153.1507,101.0038],"yaw":-6.23082,"spawnMask":3},{"id":"creature-125971","entityId":"entry-24084","position":[-121.1147,218.8027,22.4526],"yaw":-3.1765,"spawnMask":3},{"id":"creature-125972","entityId":"entry-24084","position":[129.0448,146.6437,70.4462],"yaw":-2.49582,"spawnMask":3},{"id":"creature-125973","entityId":"entry-24084","position":[156.5238,146.6461,125.2468],"yaw":-2.35619,"spawnMask":3},{"id":"creature-125978","entityId":"entry-24864","position":[-325.8712,278.1657,101.8858],"yaw":-2.00335,"spawnMask":3},{"id":"creature-125979","entityId":"entry-24864","position":[-312.3462,277.8697,90.5139],"yaw":-4.50295,"spawnMask":3},{"id":"creature-125980","entityId":"entry-24864","position":[-296.4172,277.8737,96.2465],"yaw":-5.75959,"spawnMask":3},{"id":"creature-125981","entityId":"entry-24864","position":[-300.6602,278.0127,98.0089],"yaw":-1.62316,"spawnMask":3},{"id":"creature-125982","entityId":"entry-24864","position":[-336.0292,278.6257,117.9498],"yaw":-3.15905,"spawnMask":3},{"id":"creature-125983","entityId":"entry-24864","position":[-296.4902,277.9147,100.9398],"yaw":-3.35103,"spawnMask":3},{"id":"creature-125993","entityId":"entry-29735","position":[-293.5842,284.2817,152.1978],"yaw":-5.86431,"spawnMask":3},{"id":"creature-125994","entityId":"entry-29735","position":[-306.7822,284.2787,156.1338],"yaw":-1.0821,"spawnMask":3},{"id":"creature-125995","entityId":"entry-29735","position":[-79.016,169.4741,114.0938],"yaw":-2.72271,"spawnMask":3},{"id":"creature-125996","entityId":"entry-29735","position":[-227.3332,294.1777,268.5528],"yaw":-2.40855,"spawnMask":3},{"id":"creature-125997","entityId":"entry-29735","position":[-219.7078,294.1857,269.1488],"yaw":-3.89208,"spawnMask":3},{"id":"creature-125998","entityId":"entry-29735","position":[-26.83,190.1451,85.7876],"yaw":-1.88689,"spawnMask":3},{"id":"creature-126023","entityId":"entry-24200","position":[-155.9432,222.5527,108.0938],"yaw":-4.86947,"spawnMask":3},{"id":"creature-126024","entityId":"entry-24201","position":[-162.5717,222.5527,110.6008],"yaw":-2.18166,"spawnMask":3},{"id":"creature-126025","entityId":"entry-23953","position":[75.2068,144.5067,191.6988],"yaw":-0.174533,"spawnMask":3},{"id":"creature-126026","entityId":"entry-23954","position":[-455.8802,284.2517,241.2548],"yaw":-5.22671,"spawnMask":3},{"id":"creature-126027","entityId":"entry-23956","position":[-46.3504,169.4851,130.0958],"yaw":-1.25664,"spawnMask":3},{"id":"creature-126028","entityId":"entry-23956","position":[-83.8158,169.4673,105.7918],"yaw":-1.39626,"spawnMask":3},{"id":"creature-126029","entityId":"entry-23956","position":[-76.7349,212.7817,108.1178],"yaw":-1.71042,"spawnMask":3},{"id":"creature-126030","entityId":"entry-23956","position":[131.3468,134.5229,321.8468],"yaw":-0.610865,"spawnMask":3},{"id":"creature-126031","entityId":"entry-23956","position":[128.5838,134.5221,330.2468],"yaw":-2.6529,"spawnMask":3},{"id":"creature-126032","entityId":"entry-23956","position":[78.3418,144.5932,219.7808],"yaw":-2.54818,"spawnMask":3},{"id":"creature-126034","entityId":"entry-23960","position":[-39.4046,169.4913,128.4818],"yaw":-5.63741,"spawnMask":3},{"id":"creature-126035","entityId":"entry-23960","position":[-72.1753,169.4794,99.7628],"yaw":-5.96903,"spawnMask":3},{"id":"creature-126036","entityId":"entry-23960","position":[-75.6637,212.7867,101.7028],"yaw":-0.907571,"spawnMask":3},{"id":"creature-126037","entityId":"entry-23960","position":[-60.8894,212.7867,110.1718],"yaw":-4.32842,"spawnMask":3},{"id":"creature-126038","entityId":"entry-23960","position":[-136.0786,282.3127,229.0258],"yaw":-3.28122,"spawnMask":3},{"id":"creature-126039","entityId":"entry-23960","position":[-106.5625,238.9637,244.0088],"yaw":-2.70526,"spawnMask":3},{"id":"creature-126040","entityId":"entry-23960","position":[135.9598,134.5204,327.7978],"yaw":-4.31096,"spawnMask":3},{"id":"creature-126041","entityId":"entry-23960","position":[72.5978,144.5932,209.9448],"yaw":-1.81514,"spawnMask":3},{"id":"creature-126042","entityId":"entry-23960","position":[109.2278,144.5931,207.0898],"yaw":-4.83456,"spawnMask":3},{"id":"creature-126043","entityId":"entry-23961","position":[-42.0987,169.4753,134.6848],"yaw":-3.38594,"spawnMask":3},{"id":"creature-126044","entityId":"entry-23961","position":[-68.9235,169.4778,110.8368],"yaw":-3.9619,"spawnMask":3},{"id":"creature-126045","entityId":"entry-23961","position":[-63.1324,212.7887,102.1928],"yaw":-5.39307,"spawnMask":3},{"id":"creature-126046","entityId":"entry-23961","position":[103.6878,144.5933,195.8448],"yaw":-5.42797,"spawnMask":3},{"id":"creature-126047","entityId":"entry-23961","position":[-185.7544,128.4558,209.9908],"yaw":-3.49066,"spawnMask":3},{"id":"creature-126048","entityId":"entry-23961","position":[-192.4708,128.4558,212.0148],"yaw":-3.38594,"spawnMask":3},{"id":"creature-126051","entityId":"entry-28410","position":[-300.0752,284.2807,153.9578],"yaw":-0.436332,"spawnMask":3},{"id":"creature-1971380","entityId":"entry-24083","position":[-310.1512,303.6947,207.6988],"yaw":-0.677681,"spawnMask":3},{"id":"creature-1971381","entityId":"entry-24082","position":[34.9928,134.534,343.5608],"yaw":-5.65487,"spawnMask":3},{"id":"creature-1971382","entityId":"entry-24082","position":[27.1988,134.5529,391.8208],"yaw":-1.0821,"spawnMask":3},{"id":"creature-1971383","entityId":"entry-24082","position":[60.8868,134.5529,376.2598],"yaw":-2.68781,"spawnMask":3},{"id":"creature-1971384","entityId":"entry-24082","position":[80.2118,134.5914,340.6928],"yaw":-1.95477,"spawnMask":3},{"id":"creature-1971385","entityId":"entry-24082","position":[83.3738,134.5953,326.4648],"yaw":-0.680678,"spawnMask":3},{"id":"creature-1971386","entityId":"entry-24137","position":[-199.9431,117.8656,178.7338],"yaw":-3.46037,"spawnMask":3}],"roamingPacks":[{"id":"patrol-125874","name":"Frenzied Geist Patrol","speed":1.15,"pathId":1258740,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-45.4025,212.9177,120.5408],[-66.6847,212.9557,103.3078],[-64.9995,212.9477,110.0078],[-37.302,207.9977,118.3108],[-12.5182,191.6202,111.4478],[-19.8902,191.2818,90.1066],[-48.504,173.8113,97.2166],[-61.5022,169.639,115.2208],[-36.0575,169.3288,109.1188],[-3.8502,169.4105,93.4685],[27.2718,162.7693,83.1827],[62.5218,153.353,77.4479],[90.3958,153.3017,81.5148],[127.6418,146.8901,97.5757],[137.5608,146.8102,115.9208],[128.9388,146.8094,96.1293],[134.2638,146.8095,110.8848],[129.5448,146.8095,97.4016],[137.7268,146.8094,115.6488],[115.1598,149.0473,86.2263],[79.2138,153.1237,79.7459],[43.3178,155.3421,77.7761],[13.0278,169.4224,87.7197],[-21.5662,169.2356,99.6928],[-50.6861,169.6509,120.6018],[-55.9715,169.9082,102.7058],[-36.6266,182.2348,95.396],[-10.5132,191.2418,101.3328],[-22.5129,197.3173,113.7688],[-52.2396,212.9467,121.3468],[-69.3756,212.9487,95.7122],[-53.2393,212.8697,119.2078]],"members":[{"id":"member","entityId":"entry-28419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125879","name":"Frenzied Geist Patrol","speed":1.15,"pathId":1258790,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-82.5413,218.7207,51.7626],[-81.02,218.7207,42.1628],[-89.4189,218.7207,44.4558],[-91.8982,218.7207,52.8779]],"members":[{"id":"member","entityId":"entry-28419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125882","name":"Frenzied Geist Patrol","speed":1.15,"pathId":1258820,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-129.8823,222.2337,39.2732],[-138.3513,222.4667,40.1103],[-140.0545,222.4667,45.6796],[-126.1707,222.4667,45.2433]],"members":[{"id":"member","entityId":"entry-28419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125883","name":"Frenzied Geist Patrol","speed":1.15,"pathId":1258830,"formationSource":"database-solo","spawnMask":3,"waypoints":[[83.6048,153.0317,75.9297],[77.0808,153.0458,85.1527],[80.0648,153.0548,91.3314],[86.5638,153.0617,93.1705],[94.4068,153.0772,84.6312],[91.8298,153.0527,74.5236]],"members":[{"id":"member","entityId":"entry-28419","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125906","name":"Dragonflayer Weaponsmith Patrol","speed":1.15,"pathId":1259060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-189.1781,128.3703,256.5338],[-165.048,128.6203,248.6998],[-157.6381,128.6203,248.1758],[-159.4652,128.6203,247.8728],[-186.1686,128.6203,255.9278],[-188.3611,128.6203,256.8128]],"members":[{"id":"member","entityId":"entry-24080","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125907","name":"Dragonflayer Weaponsmith Patrol","speed":1.15,"pathId":1259070,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-183.4452,128.3703,265.8428],[-177.1794,128.3703,264.4768],[-171.8636,128.3703,279.4348],[-172.8374,128.3703,279.8278],[-177.518,128.3703,265.4898]],"members":[{"id":"member","entityId":"entry-24080","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125908","name":"Dragonflayer Weaponsmith Patrol","speed":1.15,"pathId":1259080,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-158.209,128.3703,257.4988],[-165.7059,128.3703,259.2548],[-161.213,128.3703,277.3588],[-160.5551,128.3703,277.1198],[-166.1038,128.3703,262.8708]],"members":[{"id":"member","entityId":"entry-24080","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125909","name":"Dragonflayer Weaponsmith Patrol","speed":1.15,"pathId":1259090,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-177.5836,126.6966,343.0978],[-177.9893,126.6966,343.4718],[-159.1482,126.6966,319.3838],[-158.1206,128.6584,301.3248],[-158.8235,128.6209,297.6388],[-159.5288,128.3703,299.6458],[-158.7595,126.9084,313.3328],[-174.539,126.6982,335.6338]],"members":[{"id":"member","entityId":"entry-24080","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125934","name":"Proto-Drake Rider Patrol","speed":1.15,"pathId":1259340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-440.7912,288.7407,270.4888],[-472.8172,289.5047,250.8248]],"members":[{"id":"member","entityId":"entry-24849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125936","name":"Proto-Drake Rider Patrol","speed":1.15,"pathId":1259360,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-317.1962,323.9397,270.2578],[-317.1182,330.8177,242.5418]],"members":[{"id":"member","entityId":"entry-24849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125937","name":"Proto-Drake Rider Patrol","speed":1.15,"pathId":1259370,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-377.9892,295.3307,237.5248],[-362.0942,300.1507,220.1118]],"members":[{"id":"member","entityId":"entry-24849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125940","name":"Proto-Drake Rider Patrol","speed":1.15,"pathId":1259400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-474.9142,299.8357,210.4418],[-475.3712,292.4767,236.9598]],"members":[{"id":"member","entityId":"entry-24849","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125974","name":"Dragonflayer Overseer Patrol","speed":1.15,"pathId":1259740,"formationSource":"database-solo","spawnMask":3,"waypoints":[[158.4628,146.5583,137.8898],[151.1588,146.5583,148.8728],[159.4728,146.5583,137.3088],[150.5968,146.5583,127.8788]],"members":[{"id":"member","entityId":"entry-24085","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125975","name":"Dragonflayer Overseer Patrol","speed":1.15,"pathId":1259750,"formationSource":"database-solo","spawnMask":3,"waypoints":[[71.0898,153.0638,95.7596],[83.0708,153.0667,96.2356],[71.1048,153.0637,95.0353],[63.2858,153.0576,95.5015]],"members":[{"id":"member","entityId":"entry-24085","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125976","name":"Dragonflayer Overseer Patrol","speed":1.15,"pathId":1259760,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-20.8082,169.1242,102.9018],[-7.7542,169.1659,98.2214],[9.7728,169.2134,91.937],[15.7378,169.1991,89.8322],[22.2288,165.3432,87.6143],[38.1268,157.7327,82.1829],[47.0478,153.3284,79.2843],[58.4388,153.0688,76.99],[47.4358,153.1741,79.384],[36.2978,158.599,82.824],[22.6298,165.1825,87.731],[15.6538,169.1999,90.0758],[0.0768,169.1867,95.1443],[-15.3662,169.1448,100.1698],[-35.0214,169.2913,107.5628],[-47.7925,169.3954,117.5938],[-61.114,169.3902,128.0588],[-59.215,169.3902,134.9408],[-56.4019,169.3782,143.7428],[-53.3715,169.3705,153.0618],[-60.2733,169.3894,133.2288],[-51.182,169.3938,119.6038],[-40.9227,169.3951,113.8548]],"members":[{"id":"member","entityId":"entry-24085","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-125977","name":"Dragonflayer Overseer Patrol","speed":1.15,"pathId":1259770,"formationSource":"database-solo","spawnMask":3,"waypoints":[[127.4938,146.5574,73.8334],[134.0788,146.5577,82.4626],[138.8428,146.5578,97.888],[134.0028,146.5578,82.7687]],"members":[{"id":"member","entityId":"entry-24085","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126033","name":"Dragonflayer Strategist Patrol","speed":1.15,"pathId":1260330,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-30.4076,186.805,90.5852],[-38.2174,181.1178,93.0046],[-47.0354,174.8129,96.0742],[-54.7017,169.4321,98.8338],[-66.1629,169.393,102.8308],[-53.8252,169.8032,98.5011],[-44.5419,176.5571,95.3191],[-34.3333,183.9101,91.9984],[-24.6778,190.7511,88.5257],[-10.9762,190.9857,83.8982],[-1.2192,190.9997,107.6638],[-13.7222,191.1567,112.8278],[-22.0132,197.0245,115.9558],[-29.528,202.3987,118.5538],[-36.3974,207.4357,120.8338],[-43.9312,212.3277,123.3348],[-58.056,212.7147,128.2378],[-62.0147,212.7187,129.6408],[-69.1396,212.6797,106.6638],[-60.8024,212.7187,130.2078],[-43.4527,212.3417,123.9278],[-33.7827,205.6217,120.4508],[-22.3605,197.3333,116.3438],[-14.0212,191.2098,113.3458],[-1.9532,190.9996,109.0068],[-9.5042,190.9811,83.9823],[-19.8302,191.01,86.9019]],"members":[{"id":"member","entityId":"entry-23956","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-126025","name":"Prince Keleseth","position":[75.2068,144.5067,191.6988]},{"id":"creature-126024","name":"Skarvold & Dalronn","position":[-162.5717,222.5527,110.6008]},{"id":"creature-126026","name":"Ingvar the Plunderer","position":[-455.8802,284.2517,241.2548]}],"objectiveOrder":[{"id":"creature-126025","name":"Prince Keleseth","position":[75.2068,144.5067,191.6988]},{"id":"creature-126024","name":"Skarvold & Dalronn","position":[-162.5717,222.5527,110.6008]},{"id":"creature-126026","name":"Ingvar the Plunderer","position":[-455.8802,284.2517,241.2548]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65376,"id":192513,"map":574,"orientation":0.322884,"phaseMask":1,"position_x":148.268,"position_y":-88.9097,"position_z":15.3079,"rotation0":0,"rotation1":0,"rotation2":0.160742,"rotation3":0.986997,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65377,"id":192514,"map":574,"orientation":0.322884,"phaseMask":1,"position_x":148.268,"position_y":-88.9097,"position_z":15.3079,"rotation0":0,"rotation1":0,"rotation2":0.160742,"rotation3":0.986997,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65378,"id":189978,"map":574,"orientation":-1.97222,"phaseMask":1,"position_x":84.0093,"position_y":263.103,"position_z":42.871,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65379,"id":189978,"map":574,"orientation":-1.90241,"phaseMask":1,"position_x":57.5496,"position_y":-10.3431,"position_z":118.778,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":2,"areaId":0,"guid":65380,"id":193059,"map":574,"orientation":-3.07177,"phaseMask":1,"position_x":251.981,"position_y":22.9282,"position_z":178.51,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349043,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65381,"id":193059,"map":574,"orientation":-0.401425,"phaseMask":1,"position_x":297.328,"position_y":10.5934,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":-0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":182,"areaId":0,"guid":65382,"id":193059,"map":574,"orientation":-1.67551,"phaseMask":1,"position_x":355.616,"position_y":53.2416,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":-0.743143,"rotation3":0.669133,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65383,"id":193059,"map":574,"orientation":-0.645772,"phaseMask":1,"position_x":161.278,"position_y":4.76378,"position_z":135.103,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65384,"id":193059,"map":574,"orientation":-2.58308,"phaseMask":1,"position_x":120.773,"position_y":129.292,"position_z":65.602,"rotation0":0,"rotation1":0,"rotation2":-0.961261,"rotation3":0.275641,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65385,"id":193059,"map":574,"orientation":0.174532,"phaseMask":1,"position_x":152.85,"position_y":236.486,"position_z":42.8711,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65386,"id":193059,"map":574,"orientation":1.93731,"phaseMask":1,"position_x":408.319,"position_y":107.505,"position_z":30.7784,"rotation0":0,"rotation1":0,"rotation2":0.824125,"rotation3":0.566409,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65387,"id":193059,"map":574,"orientation":-0.750491,"phaseMask":1,"position_x":162.835,"position_y":3.14898,"position_z":156.821,"rotation0":0,"rotation1":0,"rotation2":-0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65388,"id":193059,"map":574,"orientation":2.11185,"phaseMask":1,"position_x":398.074,"position_y":-77.7195,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65389,"id":193059,"map":574,"orientation":2.47837,"phaseMask":1,"position_x":257.017,"position_y":-17.061,"position_z":135.161,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65390,"id":193059,"map":574,"orientation":-2.05949,"phaseMask":1,"position_x":128.662,"position_y":108.222,"position_z":65.6601,"rotation0":0,"rotation1":0,"rotation2":-0.857168,"rotation3":0.515037,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65391,"id":193059,"map":574,"orientation":3.00195,"phaseMask":1,"position_x":342.707,"position_y":242.213,"position_z":30.7546,"rotation0":0,"rotation1":0,"rotation2":0.997563,"rotation3":0.0697646,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65392,"id":193059,"map":574,"orientation":-2.75761,"phaseMask":1,"position_x":418.997,"position_y":22.9239,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":-0.981626,"rotation3":0.190814,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":72,"areaId":0,"guid":65393,"id":193059,"map":574,"orientation":0.191985,"phaseMask":1,"position_x":323.699,"position_y":-67.1424,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":0.0958451,"rotation3":0.995396,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":182,"areaId":0,"guid":65394,"id":193059,"map":574,"orientation":-1.41372,"phaseMask":1,"position_x":177.789,"position_y":265.575,"position_z":42.8711,"rotation0":0,"rotation1":0,"rotation2":-0.649449,"rotation3":0.760405,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65395,"id":193059,"map":574,"orientation":-1.15192,"phaseMask":1,"position_x":250.247,"position_y":-147.993,"position_z":190.333,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":53,"areaId":0,"guid":65396,"id":193059,"map":574,"orientation":0.680677,"phaseMask":1,"position_x":74.6152,"position_y":105.078,"position_z":65.6353,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65397,"id":193059,"map":574,"orientation":-1.76278,"phaseMask":1,"position_x":238.479,"position_y":31.4055,"position_z":178.51,"rotation0":0,"rotation1":0,"rotation2":-0.771624,"rotation3":0.636079,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65398,"id":193059,"map":574,"orientation":-0.645772,"phaseMask":1,"position_x":183.161,"position_y":12.3054,"position_z":135.163,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65399,"id":193059,"map":574,"orientation":-2.94959,"phaseMask":1,"position_x":258.759,"position_y":-3.25087,"position_z":178.51,"rotation0":0,"rotation1":0,"rotation2":-0.995395,"rotation3":0.0958539,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65400,"id":193059,"map":574,"orientation":-1.36136,"phaseMask":1,"position_x":285.361,"position_y":-31.8697,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":-0.629322,"rotation3":0.777145,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65401,"id":193059,"map":574,"orientation":0.296705,"phaseMask":1,"position_x":75.1364,"position_y":108.548,"position_z":87.3027,"rotation0":0,"rotation1":0,"rotation2":0.147809,"rotation3":0.989016,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65402,"id":193059,"map":574,"orientation":2.56563,"phaseMask":1,"position_x":268.211,"position_y":213.955,"position_z":42.8711,"rotation0":0,"rotation1":0,"rotation2":0.958819,"rotation3":0.284017,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65403,"id":193059,"map":574,"orientation":2.19912,"phaseMask":1,"position_x":183.357,"position_y":-40.6957,"position_z":135.128,"rotation0":0,"rotation1":0,"rotation2":0.891008,"rotation3":0.453988,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65404,"id":193059,"map":574,"orientation":1.62316,"phaseMask":1,"position_x":267.901,"position_y":-167.29,"position_z":190.41,"rotation0":0,"rotation1":0,"rotation2":0.725376,"rotation3":0.688353,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65405,"id":193059,"map":574,"orientation":3.12412,"phaseMask":1,"position_x":283.902,"position_y":-114.278,"position_z":190.446,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65406,"id":193059,"map":574,"orientation":1.83259,"phaseMask":1,"position_x":291.715,"position_y":-51.2298,"position_z":24.6813,"rotation0":0,"rotation1":0,"rotation2":0.793352,"rotation3":0.608764,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65407,"id":193059,"map":574,"orientation":-1.97222,"phaseMask":1,"position_x":240.241,"position_y":32.2897,"position_z":135.157,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65408,"id":186688,"map":574,"orientation":-0.724311,"phaseMask":1,"position_x":346.709,"position_y":-32.8554,"position_z":42.0184,"rotation0":0,"rotation1":0,"rotation2":-0.354291,"rotation3":0.935135,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65409,"id":186689,"map":574,"orientation":1.37008,"phaseMask":1,"position_x":381.406,"position_y":-21.5514,"position_z":42.0184,"rotation0":0,"rotation1":0,"rotation2":0.632704,"rotation3":0.774394,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65410,"id":186690,"map":574,"orientation":-2.8187,"phaseMask":1,"position_x":354.268,"position_y":2.84586,"position_z":42.0185,"rotation0":0,"rotation1":0,"rotation2":-0.986996,"rotation3":0.160746,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65411,"id":186691,"map":574,"orientation":1.37008,"phaseMask":1,"position_x":362.374,"position_y":-16.842,"position_z":24.6786,"rotation0":0,"rotation1":0,"rotation2":0.632704,"rotation3":0.774394,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65412,"id":186692,"map":574,"orientation":-2.8187,"phaseMask":1,"position_x":359.877,"position_y":-14.4443,"position_z":24.6786,"rotation0":0,"rotation1":0,"rotation2":-0.986996,"rotation3":0.160746,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65413,"id":186693,"map":574,"orientation":-0.724311,"phaseMask":1,"position_x":359.866,"position_y":-18.2358,"position_z":24.6835,"rotation0":0,"rotation1":0,"rotation2":-0.354291,"rotation3":0.935135,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":19,"areaId":0,"guid":65414,"id":186694,"map":574,"orientation":-1.24791,"phaseMask":1,"position_x":152.178,"position_y":-156.131,"position_z":179.377,"rotation0":0,"rotation1":0,"rotation2":-0.584249,"rotation3":0.811574,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65415,"id":186695,"map":574,"orientation":5.00074,"phaseMask":1,"position_x":203.387,"position_y":231.586,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":-0.598175,"rotation3":0.801365,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65416,"id":186696,"map":574,"orientation":4.73115,"phaseMask":1,"position_x":208.402,"position_y":233.407,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":-0.700443,"rotation3":0.713708,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65417,"id":186697,"map":574,"orientation":4.45251,"phaseMask":1,"position_x":214.24,"position_y":231.696,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":-0.792769,"rotation3":0.609522,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65418,"id":186698,"map":574,"orientation":2.61567,"phaseMask":1,"position_x":236.169,"position_y":191.332,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.965624,"rotation3":0.259943,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65419,"id":186699,"map":574,"orientation":2.43141,"phaseMask":1,"position_x":222.684,"position_y":199.349,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.937615,"rotation3":0.347674,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65420,"id":186700,"map":574,"orientation":2.13979,"phaseMask":1,"position_x":217.654,"position_y":196.576,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.877151,"rotation3":0.480215,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65421,"id":186701,"map":574,"orientation":1.76278,"phaseMask":1,"position_x":211.63,"position_y":193.25,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.771625,"rotation3":0.636078,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65422,"id":186702,"map":574,"orientation":1.23918,"phaseMask":1,"position_x":201.521,"position_y":194.23,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.580703,"rotation3":0.814116,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65423,"id":186703,"map":574,"orientation":5.42798,"phaseMask":1,"position_x":196.264,"position_y":227.372,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":-0.414692,"rotation3":0.909962,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65424,"id":186704,"map":574,"orientation":2.34227,"phaseMask":1,"position_x":233.705,"position_y":188.139,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.921192,"rotation3":0.389108,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65425,"id":186705,"map":574,"orientation":4.46731,"phaseMask":1,"position_x":214.445,"position_y":248.611,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":-0.788237,"rotation3":0.615372,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65426,"id":186706,"map":574,"orientation":1.46868,"phaseMask":1,"position_x":202.516,"position_y":177.458,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.670097,"rotation3":0.742273,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":65427,"id":186707,"map":574,"orientation":1.19528,"phaseMask":1,"position_x":198.593,"position_y":178.391,"position_z":40.783,"rotation0":0,"rotation1":0,"rotation2":0.562693,"rotation3":0.826666,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65428,"id":186756,"map":574,"orientation":2.07577,"phaseMask":1,"position_x":205.41,"position_y":-129.293,"position_z":6.95065,"rotation0":0,"rotation1":0,"rotation2":0.861332,"rotation3":0.508043,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65429,"id":186608,"map":574,"orientation":-2.2951,"phaseMask":1,"position_x":40.0663,"position_y":28.4071,"position_z":113.253,"rotation0":0,"rotation1":0,"rotation2":-0.91176,"rotation3":0.410722,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48120,"animprogress":255,"areaId":0,"guid":65430,"id":186609,"map":574,"orientation":2.02458,"phaseMask":1,"position_x":363.719,"position_y":-57.0912,"position_z":21.3098,"rotation0":0,"rotation1":0,"rotation2":0.848048,"rotation3":0.529919,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":48120,"animprogress":255,"areaId":0,"guid":65431,"id":186610,"map":574,"orientation":4.24988,"phaseMask":1,"position_x":392.59,"position_y":5.97504,"position_z":21.3376,"rotation0":0,"rotation1":0,"rotation2":-0.850352,"rotation3":0.526214,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":65432,"id":186611,"map":574,"orientation":5.42798,"phaseMask":1,"position_x":325.84,"position_y":0.720627,"position_z":21.3376,"rotation0":0,"rotation1":0,"rotation2":-0.414692,"rotation3":0.909962,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65433,"id":186612,"map":574,"orientation":2.10502,"phaseMask":1,"position_x":168.765,"position_y":-201.194,"position_z":179.377,"rotation0":0,"rotation1":0,"rotation2":0.868669,"rotation3":0.495392,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/utgarde-keep/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["22/22 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"utgarde-pinnacle","title":"Utgarde Pinnacle","mapId":575,"lfgDungeonIds":[203,205],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[77,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Utgarde Pinnacle","theme":"Open-world expedition","summary":"Fight through Utgarde Pinnacle, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Utgarde Pinnacle...","unchartedAreaName":"Uncharted Utgarde Pinnacle","background":"#081016","fog":{"color":"#0a141c","near":36,"far":323.7394},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/575-utgardepinnacle/visual.glb","checksum":"26ecf5398de8b836e829b9fa39a4e78f7d8aaf60e0daf37c94dfdf3a4944c722","size":59344144,"triangleCount":5185049}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-000.glb","checksum":"66aef2779188c849dec4d473109684a155f3a6f69e722ae042f63b7c21af61d0","size":375664,"triangleCount":92588},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-001.glb","checksum":"e69d8a363a52740867d11569e60f8b6dfa3aa3cf6e4e871cd48ca348b9479b6c","size":374848,"triangleCount":92590},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-002.glb","checksum":"934146c8e49d6f639579481c284f7b5dc54ed7995af18bf26b0432b1cf225112","size":1041780,"triangleCount":86544},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-003.glb","checksum":"71891e04a463c38ff7d2318c8a2d554b07a45456a37ef5fd2897c4a966760585","size":669940,"triangleCount":98770},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-004.glb","checksum":"bf61579e1ededdc3905484fee669b2d90fc417afb8cf5b13eef3fcaa3ee0883f","size":787624,"triangleCount":91618},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-005.glb","checksum":"53d04607b06ef4a78730d2bbe34ba26e0a8980447579c165e8e6cae8b4ef326c","size":1058852,"triangleCount":81860},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-006.glb","checksum":"f591b81dfbce86c62c4086cdb5e59b24f953549d45ec73df70976a228c0886d0","size":522628,"triangleCount":92586},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-007.glb","checksum":"5eb8549139c333c17ae9ae9a8c9eec4ba393818fd985b4f5077f03abd9b1e96b","size":1026348,"triangleCount":99314},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-008.glb","checksum":"9f6f68b736d5e62f67e30aaa1cca4d1f1d147642f8319c70b2aefe1cb7644634","size":992764,"triangleCount":87575},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-009.glb","checksum":"e523831ee8176ac4de97d24e0f8ca3b14d3503a924a4d8c1917dd4a82b27d58e","size":507204,"triangleCount":92587},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-010.glb","checksum":"3fc90ba89ac6d34eee31b286a013f6cf4e36f18f997594fa51fb124e6233a3f2","size":1303404,"triangleCount":96468},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-011.glb","checksum":"ff702e024223d933f7a1dce1d15904e41eebb52d626d9c9665fe7a79811f2756","size":1384488,"triangleCount":97500},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-012.glb","checksum":"6423565ab9f34575e0dbddf21f99ccd326c8e56cacaccb1d987824f132b58b6e","size":809024,"triangleCount":99934},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-013.glb","checksum":"912d1ca69dde885558d466450fdc9757a3b1197e02b3dfe4286e1e6151342c88","size":1190896,"triangleCount":95739},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-014.glb","checksum":"5e68995b5e0cbfc7d9b52d3ea48f38b52cb199c81587d6eac657ac15af7ae674","size":1319544,"triangleCount":97230},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-015.glb","checksum":"89bc9b5c55d626ba506f22e9d35bcda5ece5efc82007c8ea7335dbfccf41507b","size":742216,"triangleCount":99986},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-016.glb","checksum":"9a92770e899247935fe7ff97984b349d937572bcc382ff4352dc9d3b3495e0b2","size":785376,"triangleCount":90941},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-017.glb","checksum":"ba297d1e6ed440a56fd0c28860ee3191e668e10ae47422f68eb6eb5349aa4d3c","size":929328,"triangleCount":83170},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-018.glb","checksum":"feac4edb76820d9527a41ad0baa861d513edc8592177361a50de5d7c5de0db93","size":375976,"triangleCount":92589},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/575-utgardepinnacle/collision-019.glb","checksum":"1ff2a53865168480ae042e37f670b81bbe596e4b92019dd5d88af6ecead95d95","size":366980,"triangleCount":92587}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/575-utgardepinnacle/navigation.glb","checksum":"5cfd9cf7030972f813d362a9d7375df13f07ee9762002a9db3592f5caf17f050","size":9771420,"triangleCount":842326}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[342.9158,-165.0605,962.7288],"max":[704.6208,-80.3442,1412.3668]},"entrance":{"name":"Utgarde Pinnacle Entrance","footPosition":[567.2668,-109.9832,1367.3668],"forward":[0,0,1],"yaw":0},"areas":[{"id":"entrance","name":"Utgarde Pinnacle Entrance","center":[567.2668,-109.9832,1367.3668],"radius":35},{"id":"area-svala-sorrowgrave","name":"Svala Sorrowgrave's Encounter","center":[567.2668,-109.9832,1367.3668],"radius":42},{"id":"area-gortok-palehoof","name":"Gortok Palehoof's Encounter","center":[442.0958,-115.3152,1104.0408],"radius":42},{"id":"area-skadi-the-ruthless","name":"Skadi the Ruthless's Encounter","center":[387.9158,-115.5542,1126.2698],"radius":42},{"id":"area-king-ymiron","name":"King Ymiron's Encounter","center":[608.4318,-110.8372,1176.0848],"radius":42}],"entities":{"entry-26667":{"id":"entry-26667","kind":"mob","name":"Dragonflayer Spectator","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/9f19ece9932a25f5b90447af6bbe32a2296b424adfdd152bd3c803d9ff73da9f.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-26669":{"id":"entry-26669","kind":"mob","name":"Ymirjar Savage","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.4285760000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25241-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0543,"labelHeight":5.1115,"markerRadius":1.8587}}},"entry-26670":{"id":"entry-26670","kind":"mob","name":"Ymirjar Flesh Hunter","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.4285760000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25240-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0543,"labelHeight":5.1115,"markerRadius":1.8587}}},"entry-26672":{"id":"entry-26672","kind":"mob","name":"Bloodthirsty Tundra Wolf","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-22089-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.0731,"markerRadius":2.4676}}},"entry-26687":{"id":"entry-26687","kind":"boss","name":"Gortok Palehoof","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.047616,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-16245","name":"Freeze Anim","spellId":16245,"delivery":"projectile","target":"random-party","school":"physical","animation":"cast","range":28,"cooldownMs":5709,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}},{"id":"spell-47669","name":"Awaken Subboss","spellId":47669,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5709,"damageMultiplier":1.35},{"id":"spell-48256","name":"Withering Roar","spellId":48256,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5709,"damageMultiplier":0.82,"radius":11},{"id":"spell-48261","name":"Impale","spellId":48261,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5709,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-27419-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0045,"labelHeight":12.7121,"markerRadius":4.3327}}},"entry-26693":{"id":"entry-26693","kind":"boss","name":"Skadi the Ruthless","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-49308","name":"Utgarde Pinnacle Guantlet Reset Check","spellId":49308,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6717,"damageMultiplier":1.35},{"id":"spell-50234","name":"Crush","spellId":50234,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6717,"damageMultiplier":1.35},{"id":"spell-50255","name":"Poisoned Spear","spellId":50255,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6717,"damageMultiplier":1.35},{"id":"spell-50228","name":"Whirlwind","spellId":50228,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":6717,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-27418-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0555,"labelHeight":7.9067,"markerRadius":1.4657}}},"entry-26694":{"id":"entry-26694","kind":"mob","name":"Ymirjar Dusk Shaman","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.4285760000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25244-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.1567,"markerRadius":1.8587}}},"entry-26696":{"id":"entry-26696","kind":"mob","name":"Ymirjar Berserker","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.4285760000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25242-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0543,"labelHeight":5.1115,"markerRadius":1.8587}}},"entry-29281":{"id":"entry-29281","kind":"mob","name":"Svala","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-15667","name":"Sinister Strike","spellId":15667,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":4357,"damageMultiplier":1.12},{"id":"spell-48258","name":"Call Flames","spellId":48258,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4357,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25944-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0161,"labelHeight":4.961,"markerRadius":0.834}}},"entry-26536":{"id":"entry-26536","kind":"mob","name":"Mindless Servant","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-7869-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0019,"labelHeight":3.4636,"markerRadius":0.65}}},"entry-26550":{"id":"entry-26550","kind":"mob","name":"Dragonflayer Deathseeker","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-28054-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-26553":{"id":"entry-26553","kind":"mob","name":"Dragonflayer Fanatic","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-28056-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0407,"labelHeight":6.1162,"markerRadius":1.0864}}},"entry-26554":{"id":"entry-26554","kind":"mob","name":"Dragonflayer Seer","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-25657-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0161,"labelHeight":4.9409,"markerRadius":0.7327}}},"entry-26555":{"id":"entry-26555","kind":"mob","name":"Scourge Hulk","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-12818-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0084,"labelHeight":7.8573,"markerRadius":3.4633}}},"entry-28368":{"id":"entry-28368","kind":"mob","name":"Ymirjar Necromancer","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-27255-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.5602,"markerRadius":0.9877}}},"entry-26861":{"id":"entry-26861","kind":"boss","name":"King Ymiron","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.4285760000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-48307","name":"Channel Ymiron -> Spirit","spellId":48307,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5652,"damageMultiplier":1.35},{"id":"spell-51750","name":"Screams of the Dead","spellId":51750,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5652,"damageMultiplier":1.35},{"id":"spell-39199","name":"Flames","spellId":39199,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5652,"damageMultiplier":1.35},{"id":"spell-48294","name":"Bane","spellId":48294,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5652,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-28019-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0557,"labelHeight":9.0443,"markerRadius":1.7724}}},"entry-26668":{"id":"entry-26668","kind":"boss","name":"Svala Sorrowgrave","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":6970,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/utgarde-pinnacle/creatures/display-26096-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.431,"labelHeight":8.5971,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-126065","entityId":"entry-26667","position":[578.3918,-133.1445,1101.6418],"yaw":-4.31096,"spawnMask":3},{"id":"creature-126066","entityId":"entry-26667","position":[584.3358,-133.1358,1103.2248],"yaw":-4.31096,"spawnMask":3},{"id":"creature-126067","entityId":"entry-26667","position":[580.3758,-133.1629,1089.7998],"yaw":-4.50295,"spawnMask":3},{"id":"creature-126068","entityId":"entry-26667","position":[580.6948,-133.1629,1092.8378],"yaw":-4.46804,"spawnMask":3},{"id":"creature-126069","entityId":"entry-26667","position":[573.8298,-133.1629,1096.9508],"yaw":-4.31096,"spawnMask":3},{"id":"creature-126070","entityId":"entry-26667","position":[579.2528,-133.1622,1098.5498],"yaw":-4.31096,"spawnMask":3},{"id":"creature-126071","entityId":"entry-26667","position":[572.7318,-133.1562,1099.5898],"yaw":-4.24115,"spawnMask":3},{"id":"creature-126072","entityId":"entry-26667","position":[587.2458,-133.1524,1090.0358],"yaw":-4.5204,"spawnMask":3},{"id":"creature-126073","entityId":"entry-26667","position":[574.2978,-133.1629,1091.1938],"yaw":-4.43314,"spawnMask":3},{"id":"creature-126074","entityId":"entry-26667","position":[586.5628,-133.1547,1092.2208],"yaw":-4.50295,"spawnMask":3},{"id":"creature-126075","entityId":"entry-26669","position":[518.8958,-144.9496,1047.4748],"yaw":-5.21853,"spawnMask":3},{"id":"creature-126076","entityId":"entry-26669","position":[493.5878,-144.9503,1013.2198],"yaw":-2.61799,"spawnMask":3},{"id":"creature-126077","entityId":"entry-26669","position":[513.9948,-145.0605,1049.1878],"yaw":-2.32129,"spawnMask":3},{"id":"creature-126078","entityId":"entry-26669","position":[448.8518,-114.6282,1082.1308],"yaw":-6.24154,"spawnMask":3},{"id":"creature-126079","entityId":"entry-26669","position":[501.2118,-115.2922,1015.8128],"yaw":-3.82227,"spawnMask":3},{"id":"creature-126080","entityId":"entry-26670","position":[498.0818,-144.9554,1012.4058],"yaw":-4.85202,"spawnMask":3},{"id":"creature-126081","entityId":"entry-26670","position":[443.2318,-115.3852,1071.3878],"yaw":-6.24152,"spawnMask":3},{"id":"creature-126082","entityId":"entry-26670","position":[436.7378,-115.3822,1081.6258],"yaw":-6.24153,"spawnMask":3},{"id":"creature-126084","entityId":"entry-26670","position":[493.8278,-115.3032,1007.7288],"yaw":-0.925025,"spawnMask":3},{"id":"creature-126085","entityId":"entry-26672","position":[494.6818,-144.9461,1008.3848],"yaw":-0.244346,"spawnMask":3},{"id":"creature-126087","entityId":"entry-26672","position":[514.6348,-130.042,1064.8038],"yaw":-6.20072,"spawnMask":3},{"id":"creature-126088","entityId":"entry-26672","position":[511.8918,-130.0305,1061.5668],"yaw":-6.20069,"spawnMask":3},{"id":"creature-126089","entityId":"entry-26672","position":[501.0238,-115.3002,1009.8548],"yaw":-5.07891,"spawnMask":3},{"id":"creature-126090","entityId":"entry-26672","position":[494.5688,-115.2962,1013.1638],"yaw":-2.1293,"spawnMask":3},{"id":"creature-126102","entityId":"entry-26687","position":[442.0958,-115.3152,1104.0408],"yaw":-3.14159,"spawnMask":3},{"id":"creature-126103","entityId":"entry-26693","position":[387.9158,-115.5542,1126.2698],"yaw":-2.96706,"spawnMask":3},{"id":"creature-126104","entityId":"entry-26694","position":[585.2228,-116.0622,1175.6488],"yaw":-1.5708,"spawnMask":3},{"id":"creature-126105","entityId":"entry-26694","position":[459.6878,-144.9202,1179.5688],"yaw":-3.71755,"spawnMask":3},{"id":"creature-126106","entityId":"entry-26694","position":[452.2658,-144.9233,1166.8838],"yaw":-0.890118,"spawnMask":3},{"id":"creature-126107","entityId":"entry-26694","position":[436.3178,-144.9882,1265.1008],"yaw":-5.3058,"spawnMask":3},{"id":"creature-126108","entityId":"entry-26696","position":[436.6888,-115.3232,1266.4328],"yaw":-3.00197,"spawnMask":3},{"id":"creature-126109","entityId":"entry-26696","position":[442.7098,-144.8487,1207.8568],"yaw":-3.90954,"spawnMask":3},{"id":"creature-126110","entityId":"entry-26696","position":[462.9518,-144.9989,1154.0438],"yaw":-3.53522,"spawnMask":3},{"id":"creature-126112","entityId":"entry-26696","position":[580.4918,-116.0622,1172.2858],"yaw":-1.46608,"spawnMask":3},{"id":"creature-126113","entityId":"entry-26696","position":[579.7288,-116.0622,1178.5468],"yaw":-1.65806,"spawnMask":3},{"id":"creature-126114","entityId":"entry-26696","position":[431.9778,-144.9888,1267.7828],"yaw":-2.16421,"spawnMask":3},{"id":"creature-126115","entityId":"entry-29281","position":[549.1658,-129.4905,1079.8818],"yaw":-4.60767,"spawnMask":3},{"id":"creature-126129","entityId":"entry-26536","position":[592.6938,-111.8732,1237.4918],"yaw":-5.09636,"spawnMask":3},{"id":"creature-126130","entityId":"entry-26536","position":[550.5268,-109.9752,1314.2838],"yaw":-3.86766,"spawnMask":3},{"id":"creature-126131","entityId":"entry-26536","position":[598.5058,-107.4502,1306.6998],"yaw":-2.07694,"spawnMask":3},{"id":"creature-126132","entityId":"entry-26536","position":[546.4808,-102.3872,1332.4868],"yaw":-3.78736,"spawnMask":3},{"id":"creature-126133","entityId":"entry-26536","position":[585.5578,-109.9272,1293.4248],"yaw":-4.64645,"spawnMask":3},{"id":"creature-126134","entityId":"entry-26536","position":[544.3738,-106.4612,1311.0168],"yaw":-3.39735,"spawnMask":3},{"id":"creature-126135","entityId":"entry-26536","position":[586.3278,-109.9592,1315.5308],"yaw":-5.87388,"spawnMask":3},{"id":"creature-126136","entityId":"entry-26536","position":[604.8368,-100.3442,1324.8338],"yaw":-1.47198,"spawnMask":3},{"id":"creature-126137","entityId":"entry-26536","position":[596.5888,-105.5112,1285.7528],"yaw":-3.4269,"spawnMask":3},{"id":"creature-126138","entityId":"entry-26536","position":[585.6518,-106.9782,1288.1558],"yaw":-1.473,"spawnMask":3},{"id":"creature-126139","entityId":"entry-26536","position":[533.4688,-113.8642,1263.0278],"yaw":-4.79965,"spawnMask":3},{"id":"creature-126140","entityId":"entry-26536","position":[545.3488,-112.4852,1235.3308],"yaw":-2.31871,"spawnMask":3},{"id":"creature-126141","entityId":"entry-26536","position":[549.7418,-109.9182,1292.4728],"yaw":-3.51815,"spawnMask":3},{"id":"creature-126142","entityId":"entry-26536","position":[541.3448,-105.7702,1291.1108],"yaw":-5.84663,"spawnMask":3},{"id":"creature-126143","entityId":"entry-26536","position":[532.6188,-101.4182,1308.1298],"yaw":-5.38741,"spawnMask":3},{"id":"creature-126144","entityId":"entry-26536","position":[591.5138,-106.6892,1328.9878],"yaw":-1.17985,"spawnMask":3},{"id":"creature-126145","entityId":"entry-26536","position":[551.0118,-114.9332,1261.9188],"yaw":-2.75084,"spawnMask":3},{"id":"creature-126146","entityId":"entry-26536","position":[548.5628,-106.9742,1325.1288],"yaw":-0.523599,"spawnMask":3},{"id":"creature-126151","entityId":"entry-26550","position":[652.3408,-115.2232,1229.7258],"yaw":-3.78736,"spawnMask":3},{"id":"creature-126152","entityId":"entry-26550","position":[651.6298,-115.8102,1097.7898],"yaw":-4.72984,"spawnMask":3},{"id":"creature-126153","entityId":"entry-26550","position":[642.6958,-115.7032,1101.0568],"yaw":-2.07694,"spawnMask":3},{"id":"creature-126154","entityId":"entry-26550","position":[645.0268,-115.3592,1183.0948],"yaw":-0.401426,"spawnMask":3},{"id":"creature-126155","entityId":"entry-26550","position":[566.8618,-115.9922,1268.2188],"yaw":-0.994838,"spawnMask":3},{"id":"creature-126156","entityId":"entry-26553","position":[653.3278,-115.1792,1225.0548],"yaw":-5.55015,"spawnMask":3},{"id":"creature-126157","entityId":"entry-26553","position":[650.5398,-115.6272,1103.6698],"yaw":-4.04916,"spawnMask":3},{"id":"creature-126158","entityId":"entry-26553","position":[648.5718,-115.2512,1186.0968],"yaw":-4.67748,"spawnMask":3},{"id":"creature-126160","entityId":"entry-26553","position":[570.1948,-116.0742,1266.4288],"yaw":-0.054009,"spawnMask":3},{"id":"creature-126161","entityId":"entry-26554","position":[648.4968,-115.4052,1230.3938],"yaw":-2.32129,"spawnMask":3},{"id":"creature-126162","entityId":"entry-26554","position":[645.7668,-115.5902,1105.1888],"yaw":-2.93215,"spawnMask":3},{"id":"creature-126163","entityId":"entry-26554","position":[644.1738,-115.4492,1188.9558],"yaw":-2.51327,"spawnMask":3},{"id":"creature-126164","entityId":"entry-26554","position":[570.8538,-115.9952,1271.2288],"yaw":-4.06662,"spawnMask":3},{"id":"creature-126165","entityId":"entry-26555","position":[449.7078,-144.8762,1139.1908],"yaw":-0.191986,"spawnMask":3},{"id":"creature-126166","entityId":"entry-26555","position":[483.1728,-130.1388,1261.9038],"yaw":-4.64258,"spawnMask":3},{"id":"creature-126167","entityId":"entry-26555","position":[615.5008,-133.1998,1081.1648],"yaw":-4.69494,"spawnMask":3},{"id":"creature-126168","entityId":"entry-26555","position":[550.0758,-138.8209,1019.4078],"yaw":0,"spawnMask":3},{"id":"creature-126169","entityId":"entry-26555","position":[659.6208,-115.2142,1146.0068],"yaw":-4.92183,"spawnMask":3},{"id":"creature-126170","entityId":"entry-26555","position":[658.5908,-115.2862,1211.7668],"yaw":-4.76475,"spawnMask":3},{"id":"creature-126171","entityId":"entry-26555","position":[569.3398,-115.9972,1241.9768],"yaw":-6.24828,"spawnMask":3},{"id":"creature-126248","entityId":"entry-28368","position":[436.7178,-115.3222,1261.2238],"yaw":-0.139626,"spawnMask":3},{"id":"creature-126249","entityId":"entry-28368","position":[440.7948,-115.3272,1263.8328],"yaw":-4.7822,"spawnMask":3},{"id":"creature-126250","entityId":"entry-28368","position":[436.4458,-144.8946,1206.9318],"yaw":-1.74533,"spawnMask":3},{"id":"creature-126251","entityId":"entry-28368","position":[441.0208,-144.8666,1202.7088],"yaw":-6.26573,"spawnMask":3},{"id":"creature-126252","entityId":"entry-28368","position":[459.8948,-144.9233,1167.0918],"yaw":-5.67232,"spawnMask":3},{"id":"creature-126253","entityId":"entry-28368","position":[452.2558,-144.9237,1179.6708],"yaw":-2.40855,"spawnMask":3},{"id":"creature-126254","entityId":"entry-28368","position":[434.2348,-144.9882,1261.9348],"yaw":-5.93412,"spawnMask":3},{"id":"creature-126255","entityId":"entry-26861","position":[608.4318,-110.8372,1176.0848],"yaw":-4.7822,"spawnMask":3},{"id":"encounter-577","entityId":"entry-26668","position":[567.2668,-109.9832,1367.3668],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-126083","name":"Ymirjar Flesh Hunter Patrol","speed":1.15,"pathId":1260830,"formationSource":"database-solo","spawnMask":3,"waypoints":[[513.4738,-123.4036,1046.3938],[511.2538,-115.3682,1032.0388],[513.4738,-123.4036,1046.3938],[510.7238,-130.0735,1064.3158],[498.3068,-130.1651,1064.7598],[497.1818,-130.0143,1057.1588],[494.5398,-136.5766,1045.4268],[496.2838,-145.0135,1031.8998],[494.5398,-136.5766,1045.4268],[497.1818,-130.0143,1057.1588]],"members":[{"id":"member","entityId":"entry-26670","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126086","name":"Bloodthirsty Tundra Wolf Patrol","speed":1.15,"pathId":1260860,"formationSource":"database-solo","spawnMask":3,"waypoints":[[443.6518,-115.4032,1094.0398],[427.8078,-115.4032,1093.9318],[443.6518,-115.4032,1094.0398],[443.6518,-115.4032,1092.2558],[444.5808,-115.3852,1021.3778],[445.5488,-115.3852,1019.6938],[459.6058,-115.3852,1019.8328],[444.5808,-115.3852,1021.3778]],"members":[{"id":"member","entityId":"entry-26672","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126111","name":"Ymirjar Berserker Patrol","speed":1.15,"pathId":1261110,"formationSource":"database-solo","spawnMask":3,"waypoints":[[444.6718,-144.9904,1155.2698],[440.0068,-145.008,1184.2068],[427.9058,-145.0059,1211.7558],[447.8208,-145.0046,1212.5608],[453.7198,-145.0224,1190.7398],[466.9218,-144.9949,1186.1248],[462.2818,-145.0003,1151.3028]],"members":[{"id":"member","entityId":"entry-26696","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126159","name":"Dragonflayer Fanatic Patrol","speed":1.15,"pathId":1261590,"formationSource":"database-solo","spawnMask":3,"waypoints":[[647.3758,-114.9622,1191.8978],[647.8758,-114.7122,1196.3978],[648.1258,-114.7122,1200.6478],[648.3758,-114.9622,1204.6478],[648.3758,-114.7122,1207.8978],[648.8758,-114.9622,1214.8978],[649.3758,-114.9622,1220.6478],[649.6258,-114.9622,1223.1478],[649.6258,-114.9622,1223.1478],[649.3758,-114.9622,1220.6478],[648.8758,-114.9622,1214.8978],[648.3758,-114.7122,1207.8978],[648.3758,-114.9622,1204.6478],[648.1258,-114.7122,1200.6478],[647.8758,-114.7122,1196.3978],[647.3758,-114.9622,1191.8978]],"members":[{"id":"member","entityId":"entry-26553","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"encounter-577","name":"Svala Sorrowgrave","position":[567.2668,-109.9832,1367.3668]},{"id":"creature-126102","name":"Gortok Palehoof","position":[442.0958,-115.3152,1104.0408]},{"id":"creature-126103","name":"Skadi the Ruthless","position":[387.9158,-115.5542,1126.2698]},{"id":"creature-126255","name":"King Ymiron","position":[608.4318,-110.8372,1176.0848]}],"objectiveOrder":[{"id":"encounter-577","name":"Svala Sorrowgrave","position":[567.2668,-109.9832,1367.3668]},{"id":"creature-126102","name":"Gortok Palehoof","position":[442.0958,-115.3152,1104.0408]},{"id":"creature-126103","name":"Skadi the Ruthless","position":[387.9158,-115.5542,1126.2698]},{"id":"creature-126255","name":"King Ymiron","position":[608.4318,-110.8372,1176.0848]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65434,"id":191745,"map":575,"orientation":-1.58825,"phaseMask":1,"position_x":296.355,"position_y":-356.967,"position_z":91.4652,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65435,"id":186452,"map":575,"orientation":2.31256,"phaseMask":1,"position_x":-771.83,"position_y":484.016,"position_z":-163.957,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402747,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65436,"id":190587,"map":575,"orientation":-3.10342,"phaseMask":1,"position_x":-465.901,"position_y":609.835,"position_z":-78.9554,"rotation0":0,"rotation1":0,"rotation2":-0.999818,"rotation3":0.0190852,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65437,"id":192918,"map":575,"orientation":-0.785397,"phaseMask":1,"position_x":571.511,"position_y":-321.979,"position_z":110.142,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65438,"id":190118,"map":575,"orientation":2.31256,"phaseMask":1,"position_x":-771.83,"position_y":484.016,"position_z":-174.731,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402747,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65439,"id":190119,"map":575,"orientation":2.31256,"phaseMask":1,"position_x":-771.83,"position_y":484.016,"position_z":-174.731,"rotation0":0,"rotation1":0,"rotation2":0.915311,"rotation3":0.402747,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65440,"id":192173,"map":575,"orientation":-1.58825,"phaseMask":1,"position_x":477.496,"position_y":-477.183,"position_z":103.064,"rotation0":0,"rotation1":0,"rotation2":-0.713251,"rotation3":0.700909,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65441,"id":192941,"map":575,"orientation":0.174532,"phaseMask":1,"position_x":270.477,"position_y":-402.989,"position_z":75.0277,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65442,"id":192941,"map":575,"orientation":-0.802851,"phaseMask":1,"position_x":433.547,"position_y":-505.49,"position_z":104.736,"rotation0":0,"rotation1":0,"rotation2":-0.390731,"rotation3":0.920505,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65443,"id":192941,"map":575,"orientation":-0.541051,"phaseMask":1,"position_x":221.793,"position_y":-383.481,"position_z":104.734,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65444,"id":192941,"map":575,"orientation":-2.60053,"phaseMask":1,"position_x":349.04,"position_y":-501.73,"position_z":104.723,"rotation0":0,"rotation1":0,"rotation2":-0.963629,"rotation3":0.267244,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65445,"id":192941,"map":575,"orientation":2.70526,"phaseMask":1,"position_x":398.637,"position_y":-290.056,"position_z":108.688,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65446,"id":192941,"map":575,"orientation":0.453785,"phaseMask":1,"position_x":470.033,"position_y":-472.522,"position_z":75.2782,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65447,"id":192941,"map":575,"orientation":2.79252,"phaseMask":1,"position_x":375.769,"position_y":-503.642,"position_z":104.891,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65448,"id":192941,"map":575,"orientation":0.523598,"phaseMask":1,"position_x":513.578,"position_y":-457.118,"position_z":104.696,"rotation0":0,"rotation1":0,"rotation2":0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65449,"id":192941,"map":575,"orientation":-3.10665,"phaseMask":1,"position_x":329.979,"position_y":-257.417,"position_z":104.713,"rotation0":0,"rotation1":0,"rotation2":-0.999847,"rotation3":0.0174704,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65450,"id":192941,"map":575,"orientation":-0.593412,"phaseMask":1,"position_x":375.242,"position_y":-288.411,"position_z":104.76,"rotation0":0,"rotation1":0,"rotation2":-0.292372,"rotation3":0.956305,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65451,"id":192941,"map":575,"orientation":1.06465,"phaseMask":1,"position_x":351.437,"position_y":-301.561,"position_z":104.762,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65452,"id":192941,"map":575,"orientation":-1.88495,"phaseMask":1,"position_x":267.046,"position_y":-319.712,"position_z":86.4433,"rotation0":0,"rotation1":0,"rotation2":-0.809015,"rotation3":0.587788,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65453,"id":192941,"map":575,"orientation":3.07177,"phaseMask":1,"position_x":461.666,"position_y":-410.144,"position_z":89.8489,"rotation0":0,"rotation1":0,"rotation2":0.999391,"rotation3":0.0349043,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65454,"id":192941,"map":575,"orientation":2.05949,"phaseMask":1,"position_x":266.417,"position_y":-352.146,"position_z":86.446,"rotation0":0,"rotation1":0,"rotation2":0.857168,"rotation3":0.515037,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65455,"id":192941,"map":575,"orientation":-1.78023,"phaseMask":1,"position_x":376.762,"position_y":-523.845,"position_z":104.726,"rotation0":0,"rotation1":0,"rotation2":-0.777144,"rotation3":0.629323,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65456,"id":192941,"map":575,"orientation":2.61799,"phaseMask":1,"position_x":453.919,"position_y":-462.2,"position_z":104.707,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65457,"id":192941,"map":575,"orientation":1.25664,"phaseMask":1,"position_x":365.258,"position_y":-360.944,"position_z":104.758,"rotation0":0,"rotation1":0,"rotation2":0.587786,"rotation3":0.809016,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65458,"id":192941,"map":575,"orientation":2.56563,"phaseMask":1,"position_x":459.376,"position_y":-469.364,"position_z":75.2123,"rotation0":0,"rotation1":0,"rotation2":0.958819,"rotation3":0.284017,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65459,"id":192941,"map":575,"orientation":-1.72787,"phaseMask":1,"position_x":432.282,"position_y":-472.973,"position_z":75.1332,"rotation0":0,"rotation1":0,"rotation2":-0.760404,"rotation3":0.64945,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65460,"id":192941,"map":575,"orientation":-0.558504,"phaseMask":1,"position_x":372.384,"position_y":-235.9,"position_z":104.876,"rotation0":0,"rotation1":0,"rotation2":-0.275637,"rotation3":0.961262,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65461,"id":192941,"map":575,"orientation":-3.12412,"phaseMask":1,"position_x":277.093,"position_y":-407.508,"position_z":75.0536,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65462,"id":192941,"map":575,"orientation":-1.32645,"phaseMask":1,"position_x":488.829,"position_y":-238.179,"position_z":104.726,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65463,"id":192941,"map":575,"orientation":1.06465,"phaseMask":1,"position_x":308.047,"position_y":-288.572,"position_z":86.3606,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65464,"id":192941,"map":575,"orientation":1.74533,"phaseMask":1,"position_x":309.131,"position_y":-234.77,"position_z":104.718,"rotation0":0,"rotation1":0,"rotation2":0.766045,"rotation3":0.642787,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65465,"id":192941,"map":575,"orientation":-0.715585,"phaseMask":1,"position_x":454.916,"position_y":-505.397,"position_z":104.588,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65466,"id":192941,"map":575,"orientation":1.41372,"phaseMask":1,"position_x":278.427,"position_y":-471.172,"position_z":104.708,"rotation0":0,"rotation1":0,"rotation2":0.649449,"rotation3":0.760405,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65467,"id":192941,"map":575,"orientation":1.44862,"phaseMask":1,"position_x":371.812,"position_y":-501.915,"position_z":104.724,"rotation0":0,"rotation1":0,"rotation2":0.662619,"rotation3":0.748957,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65468,"id":192941,"map":575,"orientation":2.16421,"phaseMask":1,"position_x":495.588,"position_y":-418.121,"position_z":89.8407,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65469,"id":192941,"map":575,"orientation":2.63544,"phaseMask":1,"position_x":217.308,"position_y":-465.109,"position_z":104.707,"rotation0":0,"rotation1":0,"rotation2":0.968147,"rotation3":0.250383,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65470,"id":192941,"map":575,"orientation":2.05949,"phaseMask":1,"position_x":243.173,"position_y":-406.577,"position_z":75.0761,"rotation0":0,"rotation1":0,"rotation2":0.857168,"rotation3":0.515037,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65471,"id":192941,"map":575,"orientation":-2.26892,"phaseMask":1,"position_x":265.73,"position_y":-308.432,"position_z":86.446,"rotation0":0,"rotation1":0,"rotation2":-0.906306,"rotation3":0.422622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65472,"id":192174,"map":575,"orientation":3.12412,"phaseMask":1,"position_x":445.062,"position_y":-325.52,"position_z":100.953,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65473,"id":192942,"map":575,"orientation":-0.977383,"phaseMask":1,"position_x":227.675,"position_y":-406.645,"position_z":75.0751,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65474,"id":192942,"map":575,"orientation":-3.03684,"phaseMask":1,"position_x":277.447,"position_y":-374.539,"position_z":89.9158,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523524,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65475,"id":192942,"map":575,"orientation":2.11185,"phaseMask":1,"position_x":435.401,"position_y":-503.018,"position_z":104.719,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492423,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65476,"id":192942,"map":575,"orientation":2.74016,"phaseMask":1,"position_x":389.795,"position_y":-242.879,"position_z":105.25,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.199371,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65477,"id":192942,"map":575,"orientation":0.977383,"phaseMask":1,"position_x":489.807,"position_y":-474.474,"position_z":105.478,"rotation0":0,"rotation1":0,"rotation2":0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65478,"id":192942,"map":575,"orientation":-2.87979,"phaseMask":1,"position_x":220.66,"position_y":-377.249,"position_z":75.0773,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65479,"id":192942,"map":575,"orientation":-1.20428,"phaseMask":1,"position_x":411.38,"position_y":-523.068,"position_z":104.723,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65480,"id":192942,"map":575,"orientation":-2.51327,"phaseMask":1,"position_x":261.46,"position_y":-372.991,"position_z":75.1092,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309019,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65481,"id":192942,"map":575,"orientation":-2.14675,"phaseMask":1,"position_x":352.731,"position_y":-246.789,"position_z":104.457,"rotation0":0,"rotation1":0,"rotation2":-0.878816,"rotation3":0.477161,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65482,"id":192942,"map":575,"orientation":2.84488,"phaseMask":1,"position_x":283.456,"position_y":-374.642,"position_z":75.0351,"rotation0":0,"rotation1":0,"rotation2":0.989015,"rotation3":0.147813,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65483,"id":192175,"map":575,"orientation":-0.628317,"phaseMask":1,"position_x":491.494,"position_y":-508.188,"position_z":105.877,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65484,"id":192943,"map":575,"orientation":-3.03684,"phaseMask":1,"position_x":327.536,"position_y":-309.362,"position_z":86.446,"rotation0":0,"rotation1":0,"rotation2":-0.998629,"rotation3":0.0523524,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65485,"id":192943,"map":575,"orientation":-2.00713,"phaseMask":1,"position_x":301.306,"position_y":-493.661,"position_z":104.725,"rotation0":0,"rotation1":0,"rotation2":-0.843392,"rotation3":0.537299,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65486,"id":192943,"map":575,"orientation":-2.33874,"phaseMask":1,"position_x":299.462,"position_y":-247.232,"position_z":104.718,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65487,"id":192943,"map":575,"orientation":0.349065,"phaseMask":1,"position_x":366.075,"position_y":-505.422,"position_z":104.712,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65488,"id":192943,"map":575,"orientation":0.418879,"phaseMask":1,"position_x":375.189,"position_y":-503.974,"position_z":104.814,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65489,"id":192943,"map":575,"orientation":-2.51327,"phaseMask":1,"position_x":243.298,"position_y":-374.222,"position_z":75.0875,"rotation0":0,"rotation1":0,"rotation2":-0.951056,"rotation3":0.309019,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65490,"id":192943,"map":575,"orientation":0.017452,"phaseMask":1,"position_x":393.109,"position_y":-502.786,"position_z":104.89,"rotation0":0,"rotation1":0,"rotation2":0.00872589,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65491,"id":192943,"map":575,"orientation":-1.50098,"phaseMask":1,"position_x":323.792,"position_y":-284.743,"position_z":104.688,"rotation0":0,"rotation1":0,"rotation2":-0.681997,"rotation3":0.731355,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65492,"id":192943,"map":575,"orientation":1.02974,"phaseMask":1,"position_x":219.253,"position_y":-398.354,"position_z":75.0898,"rotation0":0,"rotation1":0,"rotation2":0.492422,"rotation3":0.870357,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65493,"id":192943,"map":575,"orientation":2.23402,"phaseMask":1,"position_x":253.678,"position_y":-397.312,"position_z":75.1029,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65494,"id":192943,"map":575,"orientation":-0.296705,"phaseMask":1,"position_x":287.095,"position_y":-404.365,"position_z":89.8925,"rotation0":0,"rotation1":0,"rotation2":-0.147809,"rotation3":0.989016,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65495,"id":192943,"map":575,"orientation":1.62316,"phaseMask":1,"position_x":465.601,"position_y":-475.678,"position_z":104.699,"rotation0":0,"rotation1":0,"rotation2":0.725376,"rotation3":0.688353,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65496,"id":192943,"map":575,"orientation":-1.32645,"phaseMask":1,"position_x":345.372,"position_y":-523.26,"position_z":104.72,"rotation0":0,"rotation1":0,"rotation2":-0.615661,"rotation3":0.788011,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65497,"id":192176,"map":575,"orientation":-0.628317,"phaseMask":1,"position_x":488.826,"position_y":-517.705,"position_z":105.877,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65498,"id":192944,"map":575,"orientation":1.79769,"phaseMask":1,"position_x":304.497,"position_y":-237.788,"position_z":106.788,"rotation0":0,"rotation1":0,"rotation2":0.782608,"rotation3":0.622514,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65499,"id":192944,"map":575,"orientation":-2.47837,"phaseMask":1,"position_x":413.587,"position_y":-504.084,"position_z":106.801,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65500,"id":192944,"map":575,"orientation":0.017452,"phaseMask":1,"position_x":441.11,"position_y":-452.859,"position_z":104.705,"rotation0":0,"rotation1":0,"rotation2":0.00872589,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65501,"id":192944,"map":575,"orientation":-1.88495,"phaseMask":1,"position_x":383.835,"position_y":-292.572,"position_z":108.862,"rotation0":0,"rotation1":0,"rotation2":-0.809015,"rotation3":0.587788,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65502,"id":192944,"map":575,"orientation":1.01229,"phaseMask":1,"position_x":470.864,"position_y":-480.477,"position_z":107.628,"rotation0":0,"rotation1":0,"rotation2":0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65503,"id":192944,"map":575,"orientation":-2.14675,"phaseMask":1,"position_x":484.133,"position_y":-480.892,"position_z":107.59,"rotation0":0,"rotation1":0,"rotation2":-0.878816,"rotation3":0.477161,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65504,"id":192944,"map":575,"orientation":-0.541051,"phaseMask":1,"position_x":281.868,"position_y":-282.568,"position_z":88.2098,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65505,"id":192944,"map":575,"orientation":2.93214,"phaseMask":1,"position_x":276.879,"position_y":-403.912,"position_z":93.2086,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104535,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65506,"id":192944,"map":575,"orientation":-3.12412,"phaseMask":1,"position_x":396.118,"position_y":-279.992,"position_z":112.973,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65507,"id":192944,"map":575,"orientation":0.034906,"phaseMask":1,"position_x":461.496,"position_y":-503.484,"position_z":106.822,"rotation0":0,"rotation1":0,"rotation2":0.0174521,"rotation3":0.999848,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65508,"id":192944,"map":575,"orientation":1.13446,"phaseMask":1,"position_x":306.023,"position_y":-291.303,"position_z":87.6204,"rotation0":0,"rotation1":0,"rotation2":0.537298,"rotation3":0.843393,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65509,"id":192944,"map":575,"orientation":-1.29154,"phaseMask":1,"position_x":280.826,"position_y":-294.577,"position_z":108.748,"rotation0":0,"rotation1":0,"rotation2":-0.601814,"rotation3":0.798637,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65510,"id":192944,"map":575,"orientation":-0.034906,"phaseMask":1,"position_x":432.131,"position_y":-348.514,"position_z":104.762,"rotation0":0,"rotation1":0,"rotation2":-0.0174521,"rotation3":0.999848,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65511,"id":192944,"map":575,"orientation":0.087266,"phaseMask":1,"position_x":401.366,"position_y":-296.155,"position_z":109.271,"rotation0":0,"rotation1":0,"rotation2":0.0436192,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65512,"id":192177,"map":575,"orientation":-0.628317,"phaseMask":1,"position_x":480.35,"position_y":-524.039,"position_z":105.877,"rotation0":0,"rotation1":0,"rotation2":-0.309016,"rotation3":0.951057,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65513,"id":188593,"map":575,"orientation":1.55334,"phaseMask":1,"position_x":238.518,"position_y":-460.827,"position_z":105.476,"rotation0":0,"rotation1":0,"rotation2":0.700908,"rotation3":0.713252,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65514,"id":192945,"map":575,"orientation":-1.83259,"phaseMask":1,"position_x":244.764,"position_y":-404.965,"position_z":78.5313,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608764,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65515,"id":192945,"map":575,"orientation":-0.837757,"phaseMask":1,"position_x":248.021,"position_y":-374.207,"position_z":107.292,"rotation0":0,"rotation1":0,"rotation2":-0.406736,"rotation3":0.913546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65516,"id":192945,"map":575,"orientation":-0.715585,"phaseMask":1,"position_x":266.855,"position_y":-289.744,"position_z":104.679,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65517,"id":192945,"map":575,"orientation":-2.09439,"phaseMask":1,"position_x":298.489,"position_y":-471.828,"position_z":104.751,"rotation0":0,"rotation1":0,"rotation2":-0.866024,"rotation3":0.500002,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65518,"id":192945,"map":575,"orientation":2.86233,"phaseMask":1,"position_x":270.274,"position_y":-355.778,"position_z":86.4824,"rotation0":0,"rotation1":0,"rotation2":0.990267,"rotation3":0.139178,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65519,"id":192945,"map":575,"orientation":-0.244346,"phaseMask":1,"position_x":304.406,"position_y":-276.844,"position_z":86.3668,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65520,"id":188360,"map":575,"orientation":3.13286,"phaseMask":1,"position_x":-570.401,"position_y":1540.28,"position_z":-291.281,"rotation0":0,"rotation1":0,"rotation2":0.99999,"rotation3":0.00436634,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65521,"id":192467,"map":575,"orientation":3.12412,"phaseMask":1,"position_x":590.12,"position_y":-328.004,"position_z":112.508,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65522,"id":192468,"map":575,"orientation":3.12412,"phaseMask":1,"position_x":590.12,"position_y":-328.004,"position_z":112.508,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65523,"id":190172,"map":575,"orientation":-2.02458,"phaseMask":1,"position_x":356.841,"position_y":-524.035,"position_z":105.747,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65524,"id":190172,"map":575,"orientation":3.10665,"phaseMask":1,"position_x":446.762,"position_y":-234.646,"position_z":106.994,"rotation0":0,"rotation1":0,"rotation2":0.999847,"rotation3":0.0174704,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/utgarde-pinnacle/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["17/17 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"the-nexus","title":"The Nexus","mapId":576,"lfgDungeonIds":[225,226],"expansion":"wrath","environmentMode":"global-wmo","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[69,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Nexus","theme":"Instanced dungeon","summary":"Fight through The Nexus, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Nexus...","unchartedAreaName":"Uncharted The Nexus","background":"#081016","fog":{"color":"#0a141c","near":36,"far":947.2219},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/576-nexus70/visual.glb","checksum":"912d7b85cc835faba37e050b380051ddbd8154dfaf14e27ea0b4bc8af7f92655","size":7386496,"triangleCount":266555}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/576-nexus70/collision.glb","checksum":"317f75ab6ec32b435597bb48889f06293617e7decf92c3f53074de9630012e2c","size":1443876,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/576-nexus70/navigation.glb","checksum":"330c19793cb0e66de51fc127e0a7054287e6cff2d7814c0b8e09fcd4a32d0644","size":206484,"triangleCount":15741}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-1368.6214,-67.1653,-566.0028],"max":[-53.0354,38.6865,84.1782]},"entrance":{"name":"The Nexus Entrance","footPosition":[-732.5354,-28.8635,-160.8828],"forward":[0.958477856666115,0,0.2851669656196706],"yaw":1.2816157044103822},"areas":[{"id":"entrance","name":"The Nexus Entrance","center":[-732.5354,-28.8635,-160.8828],"radius":35},{"id":"area-frozen-commander","name":"Frozen Commander's Encounter","center":[-1011.2124,-47.1642,35.6332],"radius":42},{"id":"area-grand-magus-telestra","name":"Grand Magus Telestra's Encounter","center":[-1081.3924,-28.2688,-61.2],"radius":42},{"id":"area-anomalus","name":"Anomalus's Encounter","center":[-1224.3354,-21.36,-439.4498],"radius":42},{"id":"area-ormorok-the-tree-shaper","name":"Ormorok the Tree-Shaper's Encounter","center":[-851.6244,-21.2451,-375.7438],"radius":42},{"id":"area-ormrok-the-tree-shaper","name":"Ormrok the Tree-Shaper's Encounter","center":[-851.6244,-21.2451,-375.7438],"radius":42},{"id":"area-keristrasza","name":"Keristrasza's Encounter","center":[-888.1194,-27.7083,-155.7871],"radius":42}],"entities":{"entry-26796":{"id":"entry-26796","kind":"boss","name":"Commander Stoutbeard","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-31403","name":"Battle Shout","spellId":31403,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4065,"damageMultiplier":1.35},{"id":"spell-19134","name":"Frightening Shout","spellId":19134,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4065,"damageMultiplier":1.35},{"id":"spell-38618","name":"Whirlwind","spellId":38618,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4065,"damageMultiplier":0.82,"radius":11},{"id":"spell-60067","name":"Charge","spellId":60067,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4065,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24366-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0061,"labelHeight":2.446,"markerRadius":0.65}}},"entry-26800":{"id":"entry-26800","kind":"mob","name":"Alliance Berserker","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24353-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.638,"markerRadius":0.7219}}},"entry-26802":{"id":"entry-26802","kind":"mob","name":"Alliance Ranger","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24355-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.642,"markerRadius":0.65}}},"entry-26805":{"id":"entry-26805","kind":"mob","name":"Alliance Cleric","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24356-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-32261":{"id":"entry-32261","kind":"mob","name":"Crystal Spider","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7428480000000004,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/73cd1ddbf518085e70fe7dd3e36a1f1ce98d970e808602a7231d647a6625d533.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":0.5461,"markerRadius":0.65}}},"entry-26918":{"id":"entry-26918","kind":"mob","name":"Chaotic Rift","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-25206-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-28231":{"id":"entry-28231","kind":"mob","name":"Crystalline Tender","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-27609-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.5582,"labelHeight":5.3466,"markerRadius":1.1492}}},"entry-26716":{"id":"entry-26716","kind":"mob","name":"Azure Warder","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-25251-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0114,"labelHeight":5.9762,"markerRadius":4.2192}}},"entry-26722":{"id":"entry-26722","kind":"mob","name":"Azure Magus","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-25249-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0114,"labelHeight":5.5971,"markerRadius":3.8903}}},"entry-26723":{"id":"entry-26723","kind":"boss","name":"Keristrasza","title":"Dungeon Boss","hasLoot":true,"combat":{"level":73,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.1745920000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-48094","name":"Intense Cold","spellId":48094,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4807,"damageMultiplier":1.35},{"id":"spell-47854","name":"Frozen Prison","spellId":47854,"delivery":"projectile","target":"random-party","school":"physical","animation":"cast","range":28,"cooldownMs":4807,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}},{"id":"spell-8599","name":"Enrage","spellId":8599,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4807,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-8599","durationMs":12000,"magnitude":0.25}},{"id":"spell-48096","name":"Crystalfire Breath","spellId":48096,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":12000,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24307-animated.glb","rotationY":-1.5707963267948966,"groundOffset":2.0882,"labelHeight":18.1991,"markerRadius":4.5}}},"entry-26727":{"id":"entry-26727","kind":"mob","name":"Mage Hunter Ascendant","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24312-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.6909,"markerRadius":0.65}}},"entry-26728":{"id":"entry-26728","kind":"mob","name":"Mage Hunter Initiate","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24316-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.6909,"markerRadius":0.65}}},"entry-26729":{"id":"entry-26729","kind":"mob","name":"Steward","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24320-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.6909,"markerRadius":0.65}}},"entry-26730":{"id":"entry-26730","kind":"mob","name":"Mage Slayer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.809536,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24906-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0361,"markerRadius":0.9595}}},"entry-26731":{"id":"entry-26731","kind":"boss","name":"Grand Magus Telestra","title":"Dungeon Boss","hasLoot":true,"combat":{"level":71,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-61400","name":"Wear Christmas Hat, Red, Self (DND)","spellId":61400,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5294,"damageMultiplier":1.35},{"id":"spell-47711","name":"Telestra Clone Dies (Fire)","spellId":47711,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5294,"damageMultiplier":1.35},{"id":"spell-47713","name":"Telestra Clone Dies (Arcane)","spellId":47713,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5294,"damageMultiplier":1.35},{"id":"spell-47712","name":"Telestra Clone Dies (Frost)","spellId":47712,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":5294,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24066-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0016,"labelHeight":3.0962,"markerRadius":0.65}}},"entry-26734":{"id":"entry-26734","kind":"mob","name":"Azure Enforcer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-15284","name":"Cleave","spellId":15284,"delivery":"area","target":"nearby-party","school":"physical","animation":"attack","range":5.5,"cooldownMs":5923,"damageMultiplier":0.62,"radius":8},{"id":"spell-39171","name":"Mortal Strike","spellId":39171,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5923,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-14886-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.7019,"labelHeight":5.859,"markerRadius":1.0391}}},"entry-26735":{"id":"entry-26735","kind":"mob","name":"Azure Scale-Binder","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/7f809d34e8476ea8db6d31ae49248520c5a392e9f9ef4fa0440bc32340780160.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":3.4982,"markerRadius":2.4314}}},"entry-26737":{"id":"entry-26737","kind":"mob","name":"Crazed Mana-Surge","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/8187e4a71114ff6b55fb6d59315498e3bb5fb606ba216b886ab82438c8764515.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.7735,"markerRadius":1.8878}}},"entry-26746":{"id":"entry-26746","kind":"mob","name":"Crazed Mana-Wraith","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-27810-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.0243,"markerRadius":0.8032}}},"entry-26761":{"id":"entry-26761","kind":"mob","name":"Crazed Mana-Wyrm","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"serpent","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-23329-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.5986,"markerRadius":4.5}}},"entry-26763":{"id":"entry-26763","kind":"boss","name":"Anomalus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-47745","name":"Close Rifts","spellId":47745,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6044,"damageMultiplier":1.35},{"id":"spell-47748","name":"Rift Shield","spellId":47748,"delivery":"area","target":"self","school":"arcane","animation":"cast","range":0,"cooldownMs":6044,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-47748","durationMs":12000,"magnitude":0.25}},{"id":"spell-47751","name":"Spark","spellId":47751,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6044,"damageMultiplier":1.35},{"id":"spell-57063","name":"Arcane Attraction","spellId":57063,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6044,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-26259-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.667,"labelHeight":23.8336,"markerRadius":4.5}}},"entry-26782":{"id":"entry-26782","kind":"mob","name":"Crystalline Keeper","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-27469-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0446,"labelHeight":6.6904,"markerRadius":1.6073}}},"entry-26792":{"id":"entry-26792","kind":"mob","name":"Crystalline Protector","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-27472-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1671,"labelHeight":14.0891,"markerRadius":4.4291}}},"entry-26793":{"id":"entry-26793","kind":"mob","name":"Crystalline Frayer","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-48053","name":"Ensnare","spellId":48053,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6862,"damageMultiplier":1.12},{"id":"spell-48058","name":"Crystal Bloom","spellId":48058,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6862,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-25570-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0136,"labelHeight":1.8329,"markerRadius":0.9934}}},"entry-26794":{"id":"entry-26794","kind":"boss","name":"Ormorok the Tree-Shaper","title":"Dungeon Boss","hasLoot":true,"combat":{"level":72,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-48017","name":"Frenzy","spellId":48017,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4398,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-48017","durationMs":12000,"magnitude":0.25}},{"id":"spell-48016","name":"Trample","spellId":48016,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4398,"damageMultiplier":1.35},{"id":"spell-47981","name":"Spell Reflection","spellId":47981,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4398,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-47981","durationMs":12000,"magnitude":0.25}},{"id":"spell-47958","name":"Crystal Spikes","spellId":47958,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4398,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"plant","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-26298-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0172,"labelHeight":19.5837,"markerRadius":4.5}}},"entry-27949":{"id":"entry-27949","kind":"mob","name":"Alliance Commander","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-nexus/creatures/display-24366-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0061,"labelHeight":2.446,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-4764","entityId":"entry-26796","position":[-1011.2124,-47.1642,35.6332],"yaw":-4.72984,"spawnMask":2},{"id":"creature-115899","entityId":"entry-26800","position":[-1030.0314,-47.1649,33.1332],"yaw":-4.31096,"spawnMask":3},{"id":"creature-115900","entityId":"entry-26800","position":[-1036.9234,-47.165,25.1332],"yaw":-4.11898,"spawnMask":3},{"id":"creature-115933","entityId":"entry-26802","position":[-1029.4774,-47.1649,26.0692],"yaw":-4.27606,"spawnMask":3},{"id":"creature-115952","entityId":"entry-26802","position":[-1047.6264,-47.1653,-2.7268],"yaw":-3.45575,"spawnMask":3},{"id":"creature-115965","entityId":"entry-26802","position":[-1047.4914,-47.1652,12.3322],"yaw":-3.76991,"spawnMask":3},{"id":"creature-116016","entityId":"entry-26805","position":[-1015.2654,-47.1644,39.0032],"yaw":-4.60767,"spawnMask":3},{"id":"creature-116017","entityId":"entry-26805","position":[-1007.3684,-47.1641,39.1782],"yaw":-4.7822,"spawnMask":3},{"id":"creature-126422","entityId":"entry-32261","position":[-1129.3824,-27.1677,-176.5149],"yaw":-2.51327,"spawnMask":3},{"id":"creature-126423","entityId":"entry-32261","position":[-834.9584,-28.8642,-167.0276],"yaw":-3.55701,"spawnMask":3},{"id":"creature-126424","entityId":"entry-32261","position":[-898.7164,-28.7809,-105.2351],"yaw":-1.39626,"spawnMask":3},{"id":"creature-126425","entityId":"entry-32261","position":[-971.9624,-26.5994,-382.8558],"yaw":-0.628319,"spawnMask":3},{"id":"creature-126426","entityId":"entry-32261","position":[-1041.7274,-47.1645,-4.4888],"yaw":-6.10865,"spawnMask":3},{"id":"creature-126427","entityId":"entry-32261","position":[-900.4704,-26.6748,-443.4108],"yaw":-5.79449,"spawnMask":3},{"id":"creature-126428","entityId":"entry-32261","position":[-978.9294,-47.1638,-3.7388],"yaw":-0.872665,"spawnMask":3},{"id":"creature-126429","entityId":"entry-32261","position":[-872.1234,-28.7809,-30.8178],"yaw":-3.36848,"spawnMask":3},{"id":"creature-126430","entityId":"entry-32261","position":[-882.4274,-26.6748,-433.7888],"yaw":-0.977384,"spawnMask":3},{"id":"creature-126431","entityId":"entry-32261","position":[-1253.0504,-41.1237,-276.2008],"yaw":-2.63545,"spawnMask":3},{"id":"creature-126432","entityId":"entry-32261","position":[-1132.6234,-37.1642,-276.2618],"yaw":-1.69297,"spawnMask":3},{"id":"creature-126433","entityId":"entry-32261","position":[-947.8934,-26.5994,-365.8928],"yaw":-6.05629,"spawnMask":3},{"id":"creature-126434","entityId":"entry-26918","position":[-1275.4394,-41.1237,-292.1328],"yaw":-4.85202,"spawnMask":3},{"id":"creature-126435","entityId":"entry-26918","position":[-1221.5824,-27.3806,-358.1438],"yaw":-3.76991,"spawnMask":3},{"id":"creature-126436","entityId":"entry-26918","position":[-1143.4004,-35.6293,-349.7748],"yaw":-0.331613,"spawnMask":3},{"id":"creature-126437","entityId":"entry-26918","position":[-1158.1854,-38.7692,-271.3118],"yaw":-4.85202,"spawnMask":3},{"id":"creature-126438","entityId":"entry-26918","position":[-1212.0504,-27.3806,-260.1928],"yaw":-0.575959,"spawnMask":3},{"id":"creature-126439","entityId":"entry-26918","position":[-1307.7634,-41.1237,-298.3508],"yaw":-3.03687,"spawnMask":3},{"id":"creature-126441","entityId":"entry-28231","position":[-970.0724,-26.3163,-335.3238],"yaw":-2.74376,"spawnMask":3},{"id":"creature-126444","entityId":"entry-28231","position":[-838.8524,-20.4816,-389.8088],"yaw":-2.34172,"spawnMask":3},{"id":"creature-126453","entityId":"entry-26723","position":[-888.1194,-27.7083,-155.7871],"yaw":-3.12414,"spawnMask":3},{"id":"creature-126454","entityId":"entry-26727","position":[-1166.7744,-28.7826,-87.3081],"yaw":-4.41568,"spawnMask":3},{"id":"creature-126456","entityId":"entry-26727","position":[-1107.4874,-28.2688,-65.4508],"yaw":-2.80998,"spawnMask":3},{"id":"creature-126458","entityId":"entry-26727","position":[-1139.9614,-28.7826,-86.5692],"yaw":-5.21853,"spawnMask":3},{"id":"creature-126459","entityId":"entry-26727","position":[-1140.7704,-28.7826,-33.6408],"yaw":-0.20944,"spawnMask":3},{"id":"creature-126460","entityId":"entry-26727","position":[-1189.7974,-29.822,-35.4228],"yaw":-1.15192,"spawnMask":3},{"id":"creature-126462","entityId":"entry-26728","position":[-1169.1894,-28.7826,-82.5503],"yaw":-6.14356,"spawnMask":3},{"id":"creature-126463","entityId":"entry-26728","position":[-1170.5774,-28.7826,-77.3892],"yaw":-5.95157,"spawnMask":3},{"id":"creature-126464","entityId":"entry-26728","position":[-1107.5314,-28.2688,-57.1978],"yaw":-3.87463,"spawnMask":3},{"id":"creature-126465","entityId":"entry-26728","position":[-1103.6814,-28.2688,-60.0148],"yaw":-0.593412,"spawnMask":3},{"id":"creature-126466","entityId":"entry-26728","position":[-1134.8874,-28.9593,-90.0026],"yaw":-4.55531,"spawnMask":3},{"id":"creature-126467","entityId":"entry-26728","position":[-1141.6874,-28.7826,-38.1188],"yaw":-0.122173,"spawnMask":3},{"id":"creature-126468","entityId":"entry-26728","position":[-1195.8384,-29.9982,-38.1698],"yaw":-1.22173,"spawnMask":3},{"id":"creature-126469","entityId":"entry-26729","position":[-1163.6844,-28.7826,-82.9309],"yaw":-3.26377,"spawnMask":3},{"id":"creature-126470","entityId":"entry-26729","position":[-1103.4164,-28.2688,-63.5582],"yaw":-5.81195,"spawnMask":3},{"id":"creature-126471","entityId":"entry-26729","position":[-1141.8014,-28.7826,-81.8461],"yaw":-5.89921,"spawnMask":3},{"id":"creature-126472","entityId":"entry-26729","position":[-1139.4814,-28.7826,-28.6748],"yaw":-0.15708,"spawnMask":3},{"id":"creature-126473","entityId":"entry-26729","position":[-1202.4554,-30.1915,-41.1908],"yaw":-1.11701,"spawnMask":3},{"id":"creature-126474","entityId":"entry-26730","position":[-950.0354,-46.8497,3.6102],"yaw":-5.91342,"spawnMask":3},{"id":"creature-126475","entityId":"entry-26730","position":[-910.1074,-35.5448,6.3352],"yaw":-0.461356,"spawnMask":3},{"id":"creature-126476","entityId":"entry-26730","position":[-1212.8334,-32.4225,-72.128],"yaw":-5.41911,"spawnMask":3},{"id":"creature-126477","entityId":"entry-26730","position":[-1217.1354,-32.4058,-68.4548],"yaw":-5.4191,"spawnMask":3},{"id":"creature-126478","entityId":"entry-26730","position":[-1074.2434,-45.4176,-0.3898],"yaw":-3.51157,"spawnMask":3},{"id":"creature-126479","entityId":"entry-26730","position":[-1072.1924,-46.3133,4.8832],"yaw":-3.51249,"spawnMask":3},{"id":"creature-126480","entityId":"entry-26731","position":[-1081.3924,-28.2688,-61.2],"yaw":-6.02139,"spawnMask":3},{"id":"creature-126481","entityId":"entry-26734","position":[-1219.5394,-18.1075,-174.5911],"yaw":-4.01426,"spawnMask":3},{"id":"creature-126482","entityId":"entry-26734","position":[-1227.3844,-18.1075,-178.1928],"yaw":-5.79449,"spawnMask":3},{"id":"creature-126483","entityId":"entry-26734","position":[-1222.5544,-27.3806,-345.1988],"yaw":-1.01229,"spawnMask":3},{"id":"creature-126484","entityId":"entry-26734","position":[-1237.6664,-27.3806,-349.9218],"yaw":-5.21853,"spawnMask":3},{"id":"creature-126485","entityId":"entry-26734","position":[-1207.7734,-27.3806,-336.1808],"yaw":-2.18166,"spawnMask":3},{"id":"creature-126486","entityId":"entry-26734","position":[-1313.0814,-41.1237,-288.3108],"yaw":-3.80482,"spawnMask":3},{"id":"creature-126487","entityId":"entry-26734","position":[-1319.7134,-41.1237,-297.6948],"yaw":-4.60767,"spawnMask":3},{"id":"creature-126488","entityId":"entry-26734","position":[-1139.7464,-34.7031,-357.1918],"yaw":-6.12611,"spawnMask":3},{"id":"creature-126489","entityId":"entry-26734","position":[-1137.2124,-33.5395,-344.3598],"yaw":-0.767945,"spawnMask":3},{"id":"creature-126490","entityId":"entry-26734","position":[-1222.4294,-27.3806,-264.3708],"yaw":-4.04916,"spawnMask":3},{"id":"creature-126491","entityId":"entry-26734","position":[-1221.1914,-27.3806,-253.0368],"yaw":-2.98451,"spawnMask":3},{"id":"creature-126492","entityId":"entry-26734","position":[-1313.8804,-41.1237,-294.1618],"yaw":-3.80482,"spawnMask":3},{"id":"creature-126493","entityId":"entry-26734","position":[-1130.8994,-27.1677,-153.6036],"yaw":-1.65806,"spawnMask":3},{"id":"creature-126494","entityId":"entry-26734","position":[-1133.3554,-27.1677,-164.6417],"yaw":-5.63741,"spawnMask":3},{"id":"creature-126495","entityId":"entry-26735","position":[-1220.1884,-18.1075,-166.5076],"yaw":-5.07891,"spawnMask":3},{"id":"creature-126496","entityId":"entry-26735","position":[-1232.3184,-18.1075,-169.9518],"yaw":-3.24631,"spawnMask":3},{"id":"creature-126497","entityId":"entry-26735","position":[-1323.6214,-41.1237,-289.9008],"yaw":-3.63029,"spawnMask":3},{"id":"creature-126498","entityId":"entry-26735","position":[-1131.1884,-32.1757,-352.0228],"yaw":-0.296706,"spawnMask":3},{"id":"creature-126499","entityId":"entry-26735","position":[-1231.8314,-27.3806,-256.1018],"yaw":-3.52556,"spawnMask":3},{"id":"creature-126500","entityId":"entry-26735","position":[-1122.5934,-27.1677,-160.3799],"yaw":-3.26377,"spawnMask":3},{"id":"creature-126507","entityId":"entry-26737","position":[-1179.7934,-39.6771,-329.2798],"yaw":-1.18044,"spawnMask":3},{"id":"creature-126508","entityId":"entry-26737","position":[-1229.2834,-27.3806,-363.6238],"yaw":-1.64181,"spawnMask":3},{"id":"creature-126509","entityId":"entry-26737","position":[-1213.9714,-27.3806,-352.8868],"yaw":-1.40721,"spawnMask":3},{"id":"creature-126510","entityId":"entry-26737","position":[-1226.2204,-27.3806,-351.4418],"yaw":-4.85667,"spawnMask":3},{"id":"creature-126511","entityId":"entry-26737","position":[-1224.8824,-18.1075,-169.9887],"yaw":-0.506145,"spawnMask":3},{"id":"creature-126512","entityId":"entry-26737","position":[-1213.6804,-18.1075,-176.7887],"yaw":-2.18166,"spawnMask":3},{"id":"creature-126513","entityId":"entry-26737","position":[-1217.4544,-18.1075,-178.2653],"yaw":-5.75959,"spawnMask":3},{"id":"creature-126514","entityId":"entry-26737","position":[-1218.0454,-27.3806,-248.0722],"yaw":-1.8326,"spawnMask":3},{"id":"creature-126515","entityId":"entry-26737","position":[-1224.6404,-27.3806,-268.6878],"yaw":-3.78736,"spawnMask":3},{"id":"creature-126516","entityId":"entry-26737","position":[-1213.7844,-27.3806,-268.2078],"yaw":-2.23402,"spawnMask":3},{"id":"creature-126517","entityId":"entry-26737","position":[-1280.7804,-41.2293,-333.5188],"yaw":-6.15899,"spawnMask":3},{"id":"creature-126518","entityId":"entry-26737","position":[-1274.6914,-41.2262,-326.1278],"yaw":-3.06287,"spawnMask":3},{"id":"creature-126519","entityId":"entry-26737","position":[-1225.6754,-42.5197,-309.4078],"yaw":-4.66645,"spawnMask":3},{"id":"creature-126520","entityId":"entry-26737","position":[-1137.2464,-27.1677,-154.6892],"yaw":-3.59538,"spawnMask":3},{"id":"creature-126521","entityId":"entry-26737","position":[-1126.2324,-27.1677,-166.9318],"yaw":-5.84685,"spawnMask":3},{"id":"creature-126522","entityId":"entry-26746","position":[-1182.0624,-39.835,-328.6648],"yaw":-4.01015,"spawnMask":3},{"id":"creature-126523","entityId":"entry-26746","position":[-1188.6194,-40.6415,-334.2638],"yaw":-0.697214,"spawnMask":3},{"id":"creature-126524","entityId":"entry-26746","position":[-1173.9124,-39.78,-321.8728],"yaw":-5.26858,"spawnMask":3},{"id":"creature-126525","entityId":"entry-26746","position":[-1176.5324,-39.328,-350.2678],"yaw":-6.1825,"spawnMask":3},{"id":"creature-126526","entityId":"entry-26746","position":[-1174.6684,-39.6099,-334.2218],"yaw":-4.31364,"spawnMask":3},{"id":"creature-126527","entityId":"entry-26746","position":[-1283.9204,-41.2177,-325.9558],"yaw":-2.38792,"spawnMask":3},{"id":"creature-126528","entityId":"entry-26746","position":[-1277.2024,-41.2071,-312.6358],"yaw":-2.14748,"spawnMask":3},{"id":"creature-126529","entityId":"entry-26746","position":[-1264.2094,-37.4405,-340.3868],"yaw":-1.45003,"spawnMask":3},{"id":"creature-126530","entityId":"entry-26746","position":[-1147.4804,-41.2071,-246.0328],"yaw":-4.0124,"spawnMask":3},{"id":"creature-126531","entityId":"entry-26746","position":[-1183.2164,-40.8157,-283.2908],"yaw":-6.20321,"spawnMask":3},{"id":"creature-126532","entityId":"entry-26746","position":[-1233.4354,-41.9515,-303.5818],"yaw":-2.13809,"spawnMask":3},{"id":"creature-126533","entityId":"entry-26746","position":[-1214.0584,-41.2071,-302.2698],"yaw":-3.17306,"spawnMask":3},{"id":"creature-126534","entityId":"entry-26746","position":[-1215.8014,-42.5197,-317.4138],"yaw":-2.11216,"spawnMask":3},{"id":"creature-126535","entityId":"entry-26746","position":[-1217.0444,-42.5197,-313.3748],"yaw":-4.54592,"spawnMask":3},{"id":"creature-126536","entityId":"entry-26746","position":[-1227.8574,-42.5197,-316.4618],"yaw":-4.23657,"spawnMask":3},{"id":"creature-126537","entityId":"entry-26746","position":[-1145.7594,-37.1214,-311.4008],"yaw":-4.70379,"spawnMask":3},{"id":"creature-126538","entityId":"entry-26746","position":[-1206.5314,-27.4639,-257.5208],"yaw":-5.79857,"spawnMask":3},{"id":"creature-126539","entityId":"entry-26746","position":[-1220.5514,-27.4639,-259.7498],"yaw":-0.301053,"spawnMask":3},{"id":"creature-126540","entityId":"entry-26746","position":[-1269.9494,-41.2071,-288.5128],"yaw":-2.60799,"spawnMask":3},{"id":"creature-126541","entityId":"entry-26746","position":[-1160.6584,-38.963,-274.0368],"yaw":-1.51051,"spawnMask":3},{"id":"creature-126542","entityId":"entry-26746","position":[-1217.5744,-27.4639,-247.084],"yaw":-3.48712,"spawnMask":3},{"id":"creature-126543","entityId":"entry-26746","position":[-1267.0684,-40.5589,-288.7848],"yaw":-2.06212,"spawnMask":3},{"id":"creature-126544","entityId":"entry-26746","position":[-1168.7774,-40.094,-268.6138],"yaw":-1.51198,"spawnMask":3},{"id":"creature-126545","entityId":"entry-26746","position":[-1212.1084,-27.4639,-262.1378],"yaw":-5.21144,"spawnMask":3},{"id":"creature-126546","entityId":"entry-26746","position":[-1271.7264,-41.2071,-297.2328],"yaw":-2.81257,"spawnMask":3},{"id":"creature-126547","entityId":"entry-26746","position":[-1162.5824,-39.6586,-265.7848],"yaw":-4.03884,"spawnMask":3},{"id":"creature-126548","entityId":"entry-26746","position":[-1213.5334,-27.4639,-261.0418],"yaw":-3.04725,"spawnMask":3},{"id":"creature-126549","entityId":"entry-26746","position":[-1305.9204,-41.2071,-294.1118],"yaw":-6.15639,"spawnMask":3},{"id":"creature-126550","entityId":"entry-26746","position":[-1278.2084,-41.2071,-291.9568],"yaw":-1.09544,"spawnMask":3},{"id":"creature-126551","entityId":"entry-26746","position":[-1163.8974,-39.2409,-275.3768],"yaw":-3.47331,"spawnMask":3},{"id":"creature-126552","entityId":"entry-26746","position":[-1212.9924,-27.4639,-258.7848],"yaw":-1.10571,"spawnMask":3},{"id":"creature-126553","entityId":"entry-26746","position":[-1301.7734,-41.2071,-296.3508],"yaw":-3.72483,"spawnMask":3},{"id":"creature-126554","entityId":"entry-26746","position":[-1277.8474,-41.2071,-299.1768],"yaw":-5.80994,"spawnMask":3},{"id":"creature-126555","entityId":"entry-26746","position":[-1214.7524,-27.4639,-367.3398],"yaw":-4.85063,"spawnMask":3},{"id":"creature-126556","entityId":"entry-26746","position":[-1144.9654,-35.93,-351.7518],"yaw":-3.80745,"spawnMask":3},{"id":"creature-126557","entityId":"entry-26746","position":[-1161.6064,-38.7814,-278.9298],"yaw":-3.76439,"spawnMask":3},{"id":"creature-126558","entityId":"entry-26746","position":[-1199.1814,-28.1729,-263.1308],"yaw":-4.2997,"spawnMask":3},{"id":"creature-126559","entityId":"entry-26746","position":[-1315.1834,-41.2071,-298.0678],"yaw":-5.71663,"spawnMask":3},{"id":"creature-126560","entityId":"entry-26746","position":[-1275.0144,-41.2071,-298.4708],"yaw":-6.0253,"spawnMask":3},{"id":"creature-126561","entityId":"entry-26746","position":[-1223.6024,-27.4639,-367.0328],"yaw":-0.056719,"spawnMask":3},{"id":"creature-126562","entityId":"entry-26746","position":[-1145.6154,-35.9272,-358.3248],"yaw":-4.74948,"spawnMask":3},{"id":"creature-126563","entityId":"entry-26746","position":[-1168.3504,-39.8138,-272.4218],"yaw":-2.9073,"spawnMask":3},{"id":"creature-126564","entityId":"entry-26746","position":[-1210.9934,-27.4639,-261.8498],"yaw":-5.73971,"spawnMask":3},{"id":"creature-126565","entityId":"entry-26746","position":[-1313.8614,-41.2071,-300.3958],"yaw":-6.20428,"spawnMask":3},{"id":"creature-126566","entityId":"entry-26746","position":[-1221.1134,-27.4639,-361.1068],"yaw":-1.46423,"spawnMask":3},{"id":"creature-126567","entityId":"entry-26746","position":[-1134.4094,-32.8824,-348.3088],"yaw":-0.235288,"spawnMask":3},{"id":"creature-126568","entityId":"entry-26746","position":[-1211.6594,-27.4639,-256.7818],"yaw":-3.00959,"spawnMask":3},{"id":"creature-126569","entityId":"entry-26746","position":[-1313.2194,-41.2071,-301.2348],"yaw":-5.63863,"spawnMask":3},{"id":"creature-126570","entityId":"entry-26746","position":[-1273.2614,-41.2071,-296.0418],"yaw":-3.63982,"spawnMask":3},{"id":"creature-126571","entityId":"entry-26746","position":[-1220.9754,-27.4639,-362.2228],"yaw":-1.714,"spawnMask":3},{"id":"creature-126572","entityId":"entry-26746","position":[-1138.6314,-34.0951,-344.8248],"yaw":-6.26889,"spawnMask":3},{"id":"creature-126573","entityId":"entry-26746","position":[-1162.9044,-39.1465,-275.1258],"yaw":-3.10624,"spawnMask":3},{"id":"creature-126574","entityId":"entry-26746","position":[-1214.2774,-27.4639,-262.2588],"yaw":-6.06641,"spawnMask":3},{"id":"creature-126575","entityId":"entry-26746","position":[-1314.7054,-41.2071,-302.7918],"yaw":-0.27262,"spawnMask":3},{"id":"creature-126576","entityId":"entry-26746","position":[-1277.4344,-41.2071,-293.3128],"yaw":-2.14072,"spawnMask":3},{"id":"creature-126577","entityId":"entry-26746","position":[-1224.0084,-27.4639,-359.4508],"yaw":-4.14214,"spawnMask":3},{"id":"creature-126578","entityId":"entry-26746","position":[-1143.6914,-35.8807,-344.0698],"yaw":-1.89913,"spawnMask":3},{"id":"creature-126579","entityId":"entry-26746","position":[-1304.4764,-41.2071,-299.9688],"yaw":-2.86631,"spawnMask":3},{"id":"creature-126580","entityId":"entry-26746","position":[-1277.7824,-41.2071,-291.0468],"yaw":-1.58886,"spawnMask":3},{"id":"creature-126581","entityId":"entry-26746","position":[-1221.0404,-27.4639,-366.1258],"yaw":-4.69788,"spawnMask":3},{"id":"creature-126582","entityId":"entry-26746","position":[-1151.6884,-36.5256,-350.3848],"yaw":-2.20734,"spawnMask":3},{"id":"creature-126583","entityId":"entry-26746","position":[-1305.2844,-41.2071,-295.2208],"yaw":-1.60012,"spawnMask":3},{"id":"creature-126584","entityId":"entry-26761","position":[-1278.3334,-0.3625,-453.1488],"yaw":-2.37365,"spawnMask":3},{"id":"creature-126585","entityId":"entry-26761","position":[-1181.2604,17.0164,-461.5158],"yaw":-0.558505,"spawnMask":3},{"id":"creature-126586","entityId":"entry-26761","position":[-1217.1474,-20.8929,-521.0028],"yaw":-1.27409,"spawnMask":3},{"id":"creature-126587","entityId":"entry-26761","position":[-1234.1134,-18.1075,-182.7112],"yaw":-0.645772,"spawnMask":3},{"id":"creature-126588","entityId":"entry-26761","position":[-1249.7374,-41.1237,-279.9268],"yaw":-2.72271,"spawnMask":3},{"id":"creature-126589","entityId":"entry-26761","position":[-1243.6714,-4.0473,-339.8048],"yaw":-0.396343,"spawnMask":3},{"id":"creature-126590","entityId":"entry-26761","position":[-1249.9734,-12.5189,-283.4598],"yaw":-0.597949,"spawnMask":3},{"id":"creature-126591","entityId":"entry-26761","position":[-1169.5124,-1.0492,-394.2218],"yaw":-2.48474,"spawnMask":3},{"id":"creature-126592","entityId":"entry-26761","position":[-1176.6414,-26.8081,-399.7358],"yaw":-2.48295,"spawnMask":3},{"id":"creature-126593","entityId":"entry-26761","position":[-1188.3174,0.6084,-408.7648],"yaw":-2.48331,"spawnMask":3},{"id":"creature-126594","entityId":"entry-26761","position":[-1244.4504,-13.9095,-290.1258],"yaw":-1.08627,"spawnMask":3},{"id":"creature-126595","entityId":"entry-26761","position":[-1205.0624,0.8439,-421.1908],"yaw":-2.59897,"spawnMask":3},{"id":"creature-126596","entityId":"entry-26761","position":[-1213.7844,-2.0073,-352.3078],"yaw":-0.396935,"spawnMask":3},{"id":"creature-126597","entityId":"entry-26761","position":[-1248.9804,-12.4615,-284.1398],"yaw":-0.603995,"spawnMask":3},{"id":"creature-126598","entityId":"entry-26761","position":[-1197.4034,1.3412,-415.7638],"yaw":-2.48741,"spawnMask":3},{"id":"creature-126599","entityId":"entry-26763","position":[-1224.3354,-21.36,-439.4498],"yaw":-4.74729,"spawnMask":3},{"id":"creature-126600","entityId":"entry-26782","position":[-942.7934,-26.5034,-329.4958],"yaw":-3.80705,"spawnMask":3},{"id":"creature-126601","entityId":"entry-26782","position":[-970.0134,-26.3163,-335.2988],"yaw":-2.91584,"spawnMask":3},{"id":"creature-126602","entityId":"entry-26782","position":[-974.1084,-26.3163,-334.8088],"yaw":-2.63267,"spawnMask":3},{"id":"creature-126603","entityId":"entry-26782","position":[-1044.7214,-26.3163,-327.6208],"yaw":-5.79238,"spawnMask":3},{"id":"creature-126604","entityId":"entry-26782","position":[-1039.9374,-26.3163,-329.0728],"yaw":-5.79238,"spawnMask":3},{"id":"creature-126605","entityId":"entry-26782","position":[-834.5844,-20.7167,-385.4148],"yaw":-2.34172,"spawnMask":3},{"id":"creature-126606","entityId":"entry-26782","position":[-838.0694,-20.4816,-388.9688],"yaw":-2.34654,"spawnMask":3},{"id":"creature-126607","entityId":"entry-26782","position":[-989.8314,-26.3163,-463.9488],"yaw":-0.612719,"spawnMask":3},{"id":"creature-126608","entityId":"entry-26782","position":[-983.6794,-26.3163,-472.5948],"yaw":-0.174134,"spawnMask":3},{"id":"creature-126609","entityId":"entry-26782","position":[-1018.1964,-26.3163,-423.8308],"yaw":-2.62032,"spawnMask":3},{"id":"creature-126610","entityId":"entry-26792","position":[-978.4964,-26.5994,-399.7848],"yaw":-0.191986,"spawnMask":3},{"id":"creature-126614","entityId":"entry-26792","position":[-977.7484,-26.5994,-361.2738],"yaw":-0.872665,"spawnMask":3},{"id":"creature-126615","entityId":"entry-26792","position":[-1007.5254,-26.233,-474.8308],"yaw":-2.61799,"spawnMask":3},{"id":"creature-126616","entityId":"entry-26792","position":[-882.7474,-26.6202,-310.9608],"yaw":-1.11701,"spawnMask":3},{"id":"creature-126617","entityId":"entry-26792","position":[-913.6834,-26.6748,-445.3848],"yaw":-1.62316,"spawnMask":3},{"id":"creature-126618","entityId":"entry-26792","position":[-1026.7504,-26.233,-415.3788],"yaw":-4.18879,"spawnMask":3},{"id":"creature-126619","entityId":"entry-26793","position":[-990.0014,-26.233,-375.5768],"yaw":-3.45575,"spawnMask":3},{"id":"creature-126620","entityId":"entry-26793","position":[-1000.3194,-26.233,-333.2938],"yaw":-5.5676,"spawnMask":3},{"id":"creature-126621","entityId":"entry-26793","position":[-1003.3614,-26.6758,-461.3938],"yaw":-4.86947,"spawnMask":3},{"id":"creature-126622","entityId":"entry-26793","position":[-949.3254,-26.5994,-355.7648],"yaw":-2.1293,"spawnMask":3},{"id":"creature-126623","entityId":"entry-26793","position":[-938.0384,-26.5977,-462.8828],"yaw":-2.32129,"spawnMask":3},{"id":"creature-126624","entityId":"entry-26793","position":[-997.0994,-26.233,-357.9728],"yaw":-5.49779,"spawnMask":3},{"id":"creature-126625","entityId":"entry-26793","position":[-1033.8024,-26.233,-325.0718],"yaw":-3.63029,"spawnMask":3},{"id":"creature-126626","entityId":"entry-26793","position":[-1015.5944,-26.233,-423.4398],"yaw":-6.16101,"spawnMask":3},{"id":"creature-126627","entityId":"entry-26793","position":[-909.9124,-26.233,-410.6738],"yaw":-1.55334,"spawnMask":3},{"id":"creature-126628","entityId":"entry-26793","position":[-917.1644,-26.233,-423.6798],"yaw":-5.37561,"spawnMask":3},{"id":"creature-126629","entityId":"entry-26793","position":[-960.5644,-26.233,-329.9758],"yaw":-4.90438,"spawnMask":3},{"id":"creature-126630","entityId":"entry-26793","position":[-996.2724,-26.233,-385.7988],"yaw":-0.261799,"spawnMask":3},{"id":"creature-126631","entityId":"entry-26793","position":[-898.7134,-26.233,-401.6418],"yaw":-5.65487,"spawnMask":3},{"id":"creature-126632","entityId":"entry-26793","position":[-917.8594,-26.233,-383.4748],"yaw":-1.85005,"spawnMask":3},{"id":"creature-126633","entityId":"entry-26793","position":[-994.8884,-26.233,-402.2998],"yaw":-0.855211,"spawnMask":3},{"id":"creature-126634","entityId":"entry-26793","position":[-1019.2424,-26.233,-327.1658],"yaw":-4.15388,"spawnMask":3},{"id":"creature-126635","entityId":"entry-26793","position":[-909.1094,-26.233,-373.4738],"yaw":-3.85718,"spawnMask":3},{"id":"creature-126636","entityId":"entry-26793","position":[-1004.4874,-26.6758,-371.5788],"yaw":-2.93215,"spawnMask":3},{"id":"creature-126637","entityId":"entry-26793","position":[-933.4244,-26.233,-439.9158],"yaw":-3.40339,"spawnMask":3},{"id":"creature-126638","entityId":"entry-26793","position":[-1000.6364,-26.6758,-416.6548],"yaw":-5.68977,"spawnMask":3},{"id":"creature-126639","entityId":"entry-26793","position":[-904.5384,-26.3163,-389.0668],"yaw":-2.72539,"spawnMask":3},{"id":"creature-126640","entityId":"entry-26793","position":[-1052.6404,-26.233,-358.1078],"yaw":-3.00197,"spawnMask":3},{"id":"creature-126641","entityId":"entry-26793","position":[-949.5154,-26.233,-474.2688],"yaw":-5.89921,"spawnMask":3},{"id":"creature-126642","entityId":"entry-26793","position":[-992.9824,-26.233,-462.4528],"yaw":-0.174533,"spawnMask":3},{"id":"creature-126643","entityId":"entry-26793","position":[-934.8124,-26.233,-344.6828],"yaw":-3.24631,"spawnMask":3},{"id":"creature-126644","entityId":"entry-26793","position":[-946.7724,-26.233,-333.6478],"yaw":-2.3911,"spawnMask":3},{"id":"creature-126645","entityId":"entry-26793","position":[-923.7174,-26.233,-468.0958],"yaw":-2.86234,"spawnMask":3},{"id":"creature-126646","entityId":"entry-26793","position":[-1048.9024,-26.233,-331.3178],"yaw":-4.81711,"spawnMask":3},{"id":"creature-126647","entityId":"entry-26793","position":[-912.5954,-26.5004,-322.7928],"yaw":-3.12414,"spawnMask":3},{"id":"creature-126648","entityId":"entry-26793","position":[-1036.2564,-26.233,-367.8768],"yaw":-4.38078,"spawnMask":3},{"id":"creature-126649","entityId":"entry-26793","position":[-898.0334,-26.6957,-311.3278],"yaw":-5.32325,"spawnMask":3},{"id":"creature-126650","entityId":"entry-26793","position":[-975.4584,-26.5994,-381.6908],"yaw":-0.855211,"spawnMask":3},{"id":"creature-126651","entityId":"entry-26793","position":[-912.2914,-27.3149,-309.0738],"yaw":-2.26893,"spawnMask":3},{"id":"creature-126652","entityId":"entry-26793","position":[-1021.0554,-26.233,-369.7018],"yaw":-2.00713,"spawnMask":3},{"id":"creature-126653","entityId":"entry-26793","position":[-969.0634,-26.233,-340.7978],"yaw":-3.35103,"spawnMask":3},{"id":"creature-126654","entityId":"entry-26793","position":[-938.1654,-26.233,-481.3958],"yaw":-4.2237,"spawnMask":3},{"id":"creature-126655","entityId":"entry-26793","position":[-981.9024,-26.233,-338.1878],"yaw":-4.92183,"spawnMask":3},{"id":"creature-126656","entityId":"entry-26793","position":[-993.1534,-26.233,-345.9828],"yaw":-0.925025,"spawnMask":3},{"id":"creature-126657","entityId":"entry-26793","position":[-896.4424,-26.233,-421.2288],"yaw":-6.21337,"spawnMask":3},{"id":"creature-126658","entityId":"entry-26793","position":[-927.4164,-26.3805,-326.9568],"yaw":-0.20944,"spawnMask":3},{"id":"creature-126659","entityId":"entry-26793","position":[-1000.7824,-26.233,-438.1598],"yaw":-0.10472,"spawnMask":3},{"id":"creature-126660","entityId":"entry-26793","position":[-970.1374,-26.233,-470.3078],"yaw":-2.18166,"spawnMask":3},{"id":"creature-126661","entityId":"entry-26793","position":[-985.3784,-26.233,-469.3798],"yaw":-4.2586,"spawnMask":3},{"id":"creature-126662","entityId":"entry-26793","position":[-926.2464,-26.233,-453.6308],"yaw":-0.628319,"spawnMask":3},{"id":"creature-126663","entityId":"entry-26794","position":[-851.6244,-21.2451,-375.7438],"yaw":-5.89921,"spawnMask":3},{"id":"creature-126664","entityId":"entry-26800","position":[-982.5654,-47.1638,18.8912],"yaw":-5.41052,"spawnMask":3},{"id":"creature-126665","entityId":"entry-26802","position":[-996.6774,-47.1638,28.9892],"yaw":-5.02655,"spawnMask":3},{"id":"creature-126666","entityId":"entry-26802","position":[-976.1994,-47.1638,-1.6418],"yaw":-5.91667,"spawnMask":3},{"id":"creature-126667","entityId":"entry-26802","position":[-976.2604,-47.1638,16.9992],"yaw":-5.53269,"spawnMask":3},{"id":"creature-126668","entityId":"entry-26805","position":[-991.0044,-47.1638,31.0572],"yaw":-5.11381,"spawnMask":3},{"id":"creature-247105","entityId":"entry-27949","position":[-1011.2124,-47.1642,35.6332],"yaw":-4.72984,"spawnMask":1},{"id":"creature-1266090","entityId":"entry-26782","position":[-1018.1964,-26.3163,-423.8308],"yaw":-2.62032,"spawnMask":3}],"roamingPacks":[{"id":"patrol-126440","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-942.6094,-26.7317,-331.4878],[-933.3624,-26.7317,-332.5628],[-922.9424,-26.5049,-327.4208],[-913.8924,-26.7071,-320.0218],[-903.9204,-26.8333,-311.8688],[-912.3294,-26.7775,-318.1578],[-922.3644,-26.5251,-326.2318],[-933.0834,-26.7318,-333.2448],[-943.5664,-26.7318,-333.8438],[-950.5164,-26.3163,-334.6818]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126442","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264420,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-977.0584,-26.3163,-336.4498],[-984.2774,-26.3163,-340.3178],[-991.5914,-26.3163,-346.1908],[-995.7514,-26.3163,-355.8318],[-991.2734,-26.3163,-345.1088],[-983.9164,-26.3163,-341.6728],[-970.4614,-26.3163,-337.8048],[-962.6954,-26.3163,-335.2048],[-954.6774,-26.3163,-333.5348]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126443","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264430,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1041.7764,-26.3163,-324.5988],[-1033.6824,-26.3163,-325.2288],[-1027.8814,-26.3163,-325.5488],[-1018.6164,-26.3163,-326.4618],[-1026.7314,-26.3163,-326.2058],[-1034.9174,-26.3163,-325.9478],[-1043.0014,-26.3163,-326.7118],[-1050.8624,-26.3163,-331.8298],[-1054.6344,-26.3163,-339.0208],[-1049.3114,-26.3163,-332.8888],[-1043.8894,-26.3163,-325.7048]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126445","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264450,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-845.5184,-21.3284,-390.8478],[-853.3944,-20.5546,-392.8218],[-862.1864,-20.4816,-389.7588],[-868.4664,-20.4816,-382.8858],[-874.2714,-20.7115,-383.8168],[-882.8804,-23.7901,-387.3628],[-890.2694,-26.3163,-390.8938],[-903.9494,-26.3163,-397.4968],[-908.1104,-26.3163,-399.5048],[-900.7914,-26.3163,-395.8298],[-893.1944,-26.3163,-392.7698],[-888.9094,-26.0121,-391.0428],[-879.2674,-22.7067,-386.7118],[-874.9894,-21.0562,-384.7908],[-869.3944,-20.4815,-383.2238],[-863.9404,-20.4815,-389.2408],[-855.2684,-20.4816,-395.1588],[-844.7924,-20.4816,-394.4378],[-840.4704,-20.7239,-388.8428],[-834.0634,-20.7252,-377.7608]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126446","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-975.9084,-26.3163,-469.6848],[-966.7314,-26.3163,-471.2518],[-955.2764,-26.3163,-473.2078],[-944.7074,-26.3163,-473.1278],[-934.9094,-26.681,-466.7508],[-930.2924,-26.3163,-458.5858],[-920.3394,-26.7581,-444.1918],[-910.4254,-26.3163,-429.8558],[-918.5714,-26.758,-441.2418],[-928.7904,-26.3163,-455.5348],[-938.9684,-26.681,-469.7698],[-953.9774,-26.3163,-471.6018],[-967.9464,-26.3163,-470.6648],[-980.7114,-26.3163,-469.6018],[-993.1474,-26.4913,-466.2488],[-999.7154,-26.7591,-461.4748],[-989.9844,-26.3163,-465.4188]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126447","name":"Crystalline Tender Patrol","speed":1.15,"pathId":1264470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1018.0524,-26.3163,-421.7148],[-1010.3324,-26.3163,-418.9798],[-1002.6124,-26.7591,-416.2448],[-998.7534,-26.7591,-411.8078],[-996.6364,-26.3163,-399.1738],[-996.6214,-26.3163,-389.7938],[-997.9694,-26.7591,-376.9848],[-1007.4124,-26.3163,-372.3918],[-1013.1094,-26.3163,-371.2518],[-1023.4714,-26.3163,-369.5568],[-1032.7394,-26.3163,-368.1158],[-1023.5404,-26.3163,-369.5458],[-1011.9894,-26.3163,-371.3428],[-999.3794,-26.7591,-373.9688],[-996.7054,-26.3163,-381.7098],[-996.8864,-26.3163,-395.7088],[-998.4914,-26.3163,-407.2168],[-1001.1294,-26.7591,-420.9658],[-1009.1884,-26.3163,-422.4288],[-1022.9634,-26.3163,-424.9288],[-1031.5404,-26.3163,-428.5488]],"members":[{"id":"member","entityId":"entry-28231","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126448","name":"Azure Warder Patrol","speed":1.15,"pathId":1264480,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-893.8424,-29.2621,-251.9198],[-939.2404,-28.8642,-206.771],[-979.5604,-28.8642,-166.312],[-940.0094,-28.8642,-205.9149]],"members":[{"id":"member","entityId":"entry-26716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126449","name":"Azure Warder Patrol","speed":1.15,"pathId":1264490,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-870.4524,-28.7988,-141.0231],[-902.9214,-28.7897,-137.8718],[-875.8044,-28.8092,-136.1743],[-870.5174,-28.7987,-170.4922]],"members":[{"id":"member","entityId":"entry-26716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126450","name":"Azure Warder Patrol","speed":1.15,"pathId":1264500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-939.1514,-28.8642,-104.4011],[-972.3014,-28.8642,-137.7686],[-990.4964,-28.8642,-155.7193],[-940.3164,-28.8642,-105.6377]],"members":[{"id":"member","entityId":"entry-26716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126451","name":"Azure Warder Patrol","speed":1.15,"pathId":1264510,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-838.1964,-28.8642,-104.7979],[-810.1354,-28.8642,-132.6842],[-837.8674,-28.8642,-104.9859]],"members":[{"id":"member","entityId":"entry-26716","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126452","name":"Azure Magus Patrol","speed":1.15,"pathId":1264520,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-838.4504,-28.8642,-206.8251],[-798.0624,-28.8642,-166.4798],[-837.1834,-28.8642,-205.5184],[-864.2074,-28.8642,-232.5831]],"members":[{"id":"member","entityId":"entry-26722","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126455","name":"Mage Hunter Ascendant Patrol","speed":1.15,"pathId":1264550,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-947.1384,-46.026,1.7532],[-939.2044,-43.6408,3.7852],[-931.1804,-41.5515,7.2462],[-925.4424,-41.6043,8.0822],[-918.4434,-38.5717,8.1872],[-909.7354,-35.7569,8.6492],[-903.8084,-35.7982,6.9682],[-893.0354,-31.0413,-2.7598],[-890.4774,-30.6302,-8.0538],[-889.2074,-28.2695,-16.1448],[-890.7964,-30.6302,-8.7528],[-892.7454,-30.9796,-3.0478],[-904.2234,-35.7397,6.4312],[-910.3414,-35.9384,8.7512],[-925.5124,-41.6111,7.9982],[-931.3134,-41.5851,7.6692],[-950.0674,-46.8501,1.4212]],"members":[{"id":"member","entityId":"entry-26727","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126457","name":"Mage Hunter Ascendant Patrol","speed":1.15,"pathId":1264570,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1217.7214,-32.7548,-76.9738],[-1220.0294,-33.6186,-90.8532],[-1221.4774,-33.6636,-95.3139],[-1219.3614,-33.3009,-86.1758],[-1216.3894,-32.7186,-76.1051],[-1211.2604,-32.3954,-66.9431],[-1207.2394,-31.4008,-60.2581],[-1205.0254,-30.4864,-56.8285],[-1208.5404,-32.0563,-62.882]],"members":[{"id":"member","entityId":"entry-26727","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126461","name":"Mage Hunter Ascendant Patrol","speed":1.15,"pathId":1264610,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1088.1934,-41.5568,7.2372],[-1095.0924,-41.3612,8.4252],[-1110.3304,-35.7594,8.6202],[-1115.6934,-35.7208,6.2102],[-1126.2514,-31.0364,-2.8728],[-1128.8384,-30.6319,-7.8278],[-1130.6344,-29.3524,-14.5738],[-1129.4914,-30.5517,-8.8778],[-1127.2104,-30.9189,-3.4578],[-1123.7644,-32.4655,1.3062],[-1115.2104,-35.8072,7.3962],[-1109.6184,-36.0504,9.4302],[-1094.4684,-41.6051,8.5562],[-1086.3344,-42.1624,7.6252],[-1069.5154,-46.8507,1.2572]],"members":[{"id":"member","entityId":"entry-26727","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-4764","name":"Frozen Commander","position":[-1011.2124,-47.1642,35.6332]},{"id":"creature-126480","name":"Grand Magus Telestra","position":[-1081.3924,-28.2688,-61.2]},{"id":"creature-126599","name":"Anomalus","position":[-1224.3354,-21.36,-439.4498]},{"id":"creature-126663","name":"Ormorok the Tree-Shaper","position":[-851.6244,-21.2451,-375.7438]},{"id":"creature-126663","name":"Ormrok the Tree-Shaper","position":[-851.6244,-21.2451,-375.7438]},{"id":"creature-126453","name":"Keristrasza","position":[-888.1194,-27.7083,-155.7871]}],"objectiveOrder":[{"id":"creature-4764","name":"Frozen Commander","position":[-1011.2124,-47.1642,35.6332]},{"id":"creature-126480","name":"Grand Magus Telestra","position":[-1081.3924,-28.2688,-61.2]},{"id":"creature-126599","name":"Anomalus","position":[-1224.3354,-21.36,-439.4498]},{"id":"creature-126663","name":"Ormorok the Tree-Shaper","position":[-851.6244,-21.2451,-375.7438]},{"id":"creature-126663","name":"Ormrok the Tree-Shaper","position":[-851.6244,-21.2451,-375.7438]},{"id":"creature-126453","name":"Keristrasza","position":[-888.1194,-27.7083,-155.7871]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65527,"id":192788,"map":576,"orientation":-1.20428,"phaseMask":1,"position_x":417.639,"position_y":183.971,"position_z":-35.0197,"rotation0":0,"rotation1":0,"rotation2":-0.566407,"rotation3":0.824125,"spawnMask":3,"spawntimesecs":2,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65528,"id":191016,"map":576,"orientation":-2.46091,"phaseMask":1,"position_x":242.248,"position_y":-226.154,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333809,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65529,"id":191016,"map":576,"orientation":2.16421,"phaseMask":1,"position_x":242.636,"position_y":-212.158,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":0.882948,"rotation3":0.469471,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65530,"id":191016,"map":576,"orientation":-0.698132,"phaseMask":1,"position_x":253.213,"position_y":-207.445,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.34202,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65531,"id":191016,"map":576,"orientation":-1.37881,"phaseMask":1,"position_x":253.895,"position_y":-254.94,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65532,"id":191016,"map":576,"orientation":-1.93732,"phaseMask":1,"position_x":266.078,"position_y":-250.072,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.824127,"rotation3":0.566404,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65533,"id":191016,"map":576,"orientation":-1.90241,"phaseMask":1,"position_x":281.754,"position_y":-245.486,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.814116,"rotation3":0.580702,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65534,"id":191016,"map":576,"orientation":-0.733038,"phaseMask":1,"position_x":291.234,"position_y":-224.46,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65535,"id":191016,"map":576,"orientation":-0.279252,"phaseMask":1,"position_x":284.519,"position_y":-218.846,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65536,"id":191016,"map":576,"orientation":2.54818,"phaseMask":1,"position_x":250.144,"position_y":-240.091,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":0.956305,"rotation3":0.292372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65537,"id":191016,"map":576,"orientation":-0.191985,"phaseMask":1,"position_x":232.249,"position_y":-223.486,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":-0.0958451,"rotation3":0.995396,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65538,"id":191016,"map":576,"orientation":1.69297,"phaseMask":1,"position_x":278.096,"position_y":-190.07,"position_z":-6.43417,"rotation0":0,"rotation1":0,"rotation2":0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65539,"id":191016,"map":576,"orientation":-2.87979,"phaseMask":1,"position_x":286.049,"position_y":-190.991,"position_z":-3.74882,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65540,"id":191016,"map":576,"orientation":-2.94959,"phaseMask":1,"position_x":304.896,"position_y":-190.961,"position_z":2.85279,"rotation0":0,"rotation1":0,"rotation2":-0.995395,"rotation3":0.0958539,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65541,"id":191016,"map":576,"orientation":0.366518,"phaseMask":1,"position_x":291.651,"position_y":-180.501,"position_z":3.55757,"rotation0":0,"rotation1":0,"rotation2":0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65542,"id":191016,"map":576,"orientation":-2.80997,"phaseMask":1,"position_x":323.973,"position_y":-195.021,"position_z":4.42393,"rotation0":0,"rotation1":0,"rotation2":-0.986285,"rotation3":0.165053,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65543,"id":191016,"map":576,"orientation":0.174532,"phaseMask":1,"position_x":280.646,"position_y":-199.468,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65544,"id":191016,"map":576,"orientation":0.855211,"phaseMask":1,"position_x":271.133,"position_y":-199.666,"position_z":-8.25408,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65545,"id":191016,"map":576,"orientation":-0.837757,"phaseMask":1,"position_x":331.016,"position_y":-204.198,"position_z":7.43432,"rotation0":0,"rotation1":0,"rotation2":-0.406736,"rotation3":0.913546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65546,"id":191016,"map":576,"orientation":2.23402,"phaseMask":1,"position_x":293.258,"position_y":-187.126,"position_z":0.711857,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65547,"id":188526,"map":576,"orientation":-1.6057,"phaseMask":1,"position_x":281.923,"position_y":-25.4521,"position_z":-16.9398,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65548,"id":188527,"map":576,"orientation":-1.6057,"phaseMask":1,"position_x":322.153,"position_y":14.6832,"position_z":-16.8019,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65549,"id":188528,"map":576,"orientation":3.12412,"phaseMask":1,"position_x":281.783,"position_y":15.2074,"position_z":-16.621,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65550,"id":192136,"map":576,"orientation":1.5708,"phaseMask":1,"position_x":146.045,"position_y":-16.0422,"position_z":-15.347,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65551,"id":192137,"map":576,"orientation":1.5708,"phaseMask":1,"position_x":146.045,"position_y":-16.0422,"position_z":-15.347,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65552,"id":190174,"map":576,"orientation":0.174532,"phaseMask":1,"position_x":316.961,"position_y":-215.548,"position_z":-14.3496,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65553,"id":190174,"map":576,"orientation":0.418879,"phaseMask":1,"position_x":387.28,"position_y":-256.787,"position_z":-14.4552,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":99771,"id":188105,"map":576,"orientation":1.69601,"phaseMask":1,"position_x":640.319,"position_y":-320.255,"position_z":-9.55084,"rotation0":0,"rotation1":0,"rotation2":0.749962,"rotation3":0.661481,"spawnMask":3,"spawntimesecs":25,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/the-nexus/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["26/26 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged global-wmo environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"the-oculus","title":"The Oculus","mapId":578,"lfgDungeonIds":[206,211],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[77,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Oculus","theme":"Open-world expedition","summary":"Fight through The Oculus, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Oculus...","unchartedAreaName":"Uncharted The Oculus","background":"#081016","fog":{"color":"#0a141c","near":36,"far":368.6688},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/578-nexus80/visual.glb","checksum":"af708e322bb0d8dfba0359b12aec086135474cc85de9b636281a12c3cf05a8cd","size":39414100,"triangleCount":5921532}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/578-nexus80/collision-000.glb","checksum":"5fdbc8689fecd44099f3f3e0e0b015e4bcc539b6d03029435ec63506977e0a49","size":137680,"triangleCount":54054},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/578-nexus80/collision-001.glb","checksum":"a40d68b43759310099358d5bac38266bfe7810e355ed784fb2887643f416e5b3","size":128092,"triangleCount":54053},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/578-nexus80/collision-002.glb","checksum":"c2b33a94971cb281dc7dd13f09cbd53ff0243ade0cc74e5fcb424aaa9619966d","size":130816,"triangleCount":54054},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/578-nexus80/collision-003.glb","checksum":"c254f95b8e67851f43717a43a5fe565f5b72ea807ccc63bbbfbf46d9742e0925","size":127792,"triangleCount":54053},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/578-nexus80/collision-004.glb","checksum":"f6b0fb24163497b956e5105a76856830867f7b903ed031e4d1d41c18503b4c42","size":127224,"triangleCount":54054},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/578-nexus80/collision-005.glb","checksum":"320bcedbb9f79f8a3b441e42f53a645fef839b552ba29f363a9059c0b42c7eb1","size":124900,"triangleCount":54053},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/578-nexus80/collision-006.glb","checksum":"ccbad97cc28982c90deebde92fc61ae5308d69321166416c5ba88f808c0b9d4c","size":136500,"triangleCount":54054},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/578-nexus80/collision-007.glb","checksum":"f025c61e3f9433b166c7a0f5d7a960d2b2a3e52c22f07c4483104c0921ba7494","size":128520,"triangleCount":54053},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/578-nexus80/collision-008.glb","checksum":"68c1535bc1ab85a909e1eb8f031774a1abc5b84c6b632dac4e59b87e30d3737d","size":137160,"triangleCount":54054},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/578-nexus80/collision-009.glb","checksum":"1aa00cfead906490a8b22cbb3af14066d0e9e48814989c7a108a18503887152a","size":128396,"triangleCount":54054},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/578-nexus80/collision-010.glb","checksum":"8e6751250cbf7c7407d073ba2284485427022cd11b8f578e9d2323aa4027e573","size":130208,"triangleCount":54053},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/578-nexus80/collision-011.glb","checksum":"571d17e71c30097d3a5baaa194d976ee22a43288e4207b165ce706dcf2562452","size":127160,"triangleCount":54053},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/578-nexus80/collision-012.glb","checksum":"4300cb53e1c114f051d8c68acd6847b776084f8d1aa7daa880a6a8a5b4827f64","size":125856,"triangleCount":54054},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/578-nexus80/collision-013.glb","checksum":"2d6080cf41f37333e5b2df1eb6558cde603293033aac5ef5a42295f1bf7fb270","size":123252,"triangleCount":54054},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/578-nexus80/collision-014.glb","checksum":"84621caf2100b07c51b1d04534dabf116253bb6848844cb054e0e5856faf4747","size":137908,"triangleCount":54054},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/578-nexus80/collision-015.glb","checksum":"5d166d346ebd3b063c67f5b7bbb297bc16c0cd24d45594bda72f3dc971ee6a3f","size":128864,"triangleCount":54053},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/578-nexus80/collision-016.glb","checksum":"a91f3e9e33cf9235538d4561da4b5e2f8c028a133b760d2d3cb7098c6a7e3e65","size":140228,"triangleCount":54053},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/578-nexus80/collision-017.glb","checksum":"e378d42133f0e992fbbca9fedb3c3b46c6a66df8ceeb4a0b191f95fca8d92ecd","size":128824,"triangleCount":54054},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/578-nexus80/collision-018.glb","checksum":"b709d2e8f1e0bd3ec968a71c788dfd331cc7b6142f847b8e265d69f30a02b71a","size":132472,"triangleCount":54054},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/578-nexus80/collision-019.glb","checksum":"0d9cb5f559cc6eac5212018387c6bb3cf12e320d8fb217df2e5017a876d953c8","size":195432,"triangleCount":54054},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/578-nexus80/collision-020.glb","checksum":"64a21aa7d2dbc2e41cb68f7ca307c762ffc55c1889ef0153a4fed3795f7c70cc","size":193768,"triangleCount":54053},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/578-nexus80/collision-021.glb","checksum":"4f8f2712279b9991e09426064ea937d9f997a85c197d6492b3b827aedce93067","size":160596,"triangleCount":54054},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/578-nexus80/collision-022.glb","checksum":"748c8cf88fe9219356ddb7c7f1288185b491d60df5ba92b0b9bd261db93f4e52","size":141836,"triangleCount":54053},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/578-nexus80/collision-023.glb","checksum":"a9c0772c7d398c2bd22b38d87c0c138771b4c5cb6fb2461c23ff9426efac657a","size":127908,"triangleCount":54054},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/578-nexus80/collision-024.glb","checksum":"6a2cddae0f852ac8d788a41b0f14bc5486f629d32bd605fecbf60733f22ae9bf","size":139572,"triangleCount":54053},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/578-nexus80/collision-025.glb","checksum":"280471da81030e03310954a50c2876cb8211f490a047118e81b0b07b4dfa012c","size":129008,"triangleCount":54054},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/578-nexus80/collision-026.glb","checksum":"241002c3cc87dd95ec383ff20dcb67a6a8b0b48d7fb3b9eb9b4943a00b2ef621","size":187740,"triangleCount":54053},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/578-nexus80/collision-027.glb","checksum":"963184a5ff89f559df092685292c50498c649ffce53366e458cb8ff23f33c3dc","size":284784,"triangleCount":62110},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/578-nexus80/collision-028.glb","checksum":"02b8a46a52f43c08d94dfb92435cf61fcbc2911d645f2c44d0c639704b675fa9","size":790884,"triangleCount":54054},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/578-nexus80/collision-029.glb","checksum":"7255b288f7b5220491373155c01bf050ee1c9ef25fe385983318aec9ce2c9640","size":286540,"triangleCount":62109},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/578-nexus80/collision-030.glb","checksum":"b4fc17e3f54e0529fb3ce1b86669482c6414f2f17dd1db9822b83b3018ef41e1","size":185236,"triangleCount":54053},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/578-nexus80/collision-031.glb","checksum":"9df7821c43fbccb75ce0e2fd426ce2a848d4f52c789ee4813c62053ef5c844d3","size":142308,"triangleCount":54053},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/578-nexus80/collision-032.glb","checksum":"598de8d9e25db56f9f9c4be225f6d065080ccb5dfcb0d71d755a40b03a87c629","size":127900,"triangleCount":54054},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/578-nexus80/collision-033.glb","checksum":"5c20e23ec40c1c0478fb60f5c69256e13ccb081afce0c9a89479a66818340dd9","size":137032,"triangleCount":54053},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/578-nexus80/collision-034.glb","checksum":"39356d21d33d9085a1a1f2d74dc877e95e55d8bd0b2a59c5da93d0d4148adeb0","size":129164,"triangleCount":54053},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/578-nexus80/collision-035.glb","checksum":"eda30fe14e56ff70a1588677d1074740dfc3a12e0184d9286f67126426c2e4bb","size":185628,"triangleCount":54054},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/578-nexus80/collision-036.glb","checksum":"3b54c558185b3827c0e4101d703a2fc5c3e46362919c91e0697fbbd39f9612eb","size":398712,"triangleCount":73930},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/578-nexus80/collision-037.glb","checksum":"2e2eda2d16bb2b046d27e5901f551ff68be674bc3c02ae1b4bf357f0ff60af04","size":239960,"triangleCount":54053},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/578-nexus80/collision-038.glb","checksum":"14bf46cc507a9ae68b66a5045414fb3770b519b0e8b33d562451efe74a1249a7","size":181256,"triangleCount":54054},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/578-nexus80/collision-039.glb","checksum":"777185831a03dadd2af139f8ea17d08305911c2df4df8b275bd9b9bde61cc15c","size":139560,"triangleCount":54053},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/578-nexus80/collision-040.glb","checksum":"1494ef439a7aa94b0dd5d56600a9e8a49a318e90d1d7a68a880eb6a293f5f1d5","size":128716,"triangleCount":54054},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/578-nexus80/collision-041.glb","checksum":"b45e149d584a6ed8ca2c4cc49ae99611ec2ddee885a809f51018977fa4be25a3","size":139932,"triangleCount":54054},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/578-nexus80/collision-042.glb","checksum":"0e1349aafc37c5e2b2768a4bc45a6da1420291daff89e20b4756b1cce4fe7dff","size":130692,"triangleCount":54054},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/578-nexus80/collision-043.glb","checksum":"a67420bd61a4332e79aedf9011446d4f5dc19e4921d44bef467a992027c16745","size":136244,"triangleCount":54053},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/578-nexus80/collision-044.glb","checksum":"47376cbca65502842bd01ef6c879aabc45c7f7e9b109021045cc599a994bc312","size":203224,"triangleCount":54253},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/578-nexus80/collision-045.glb","checksum":"7c591aa7d196a5a2ab65854ab92f3c2b5481de318b7b08ecf563470e000501ba","size":205856,"triangleCount":55064},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/578-nexus80/collision-046.glb","checksum":"143b5f3b6083e4fd445beb0b2b77d2a68e9d8ebda83023573f4c9b15b929631f","size":128732,"triangleCount":54054},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/578-nexus80/collision-047.glb","checksum":"a8bb07ecd036a3975ddb8199d3b05386bba5cbdd36af712c8579354c7a7e8272","size":141408,"triangleCount":54054},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/578-nexus80/collision-048.glb","checksum":"2f6fe3283982e667aed7de06fe73363cbca128677c5ce9853e75bd4a774e962e","size":129212,"triangleCount":54054},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/578-nexus80/collision-049.glb","checksum":"f610bb194f944e2274ce1cfa87d41b6f728f4997df42b6bb03707e87c74fd55e","size":139632,"triangleCount":54054},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/578-nexus80/collision-050.glb","checksum":"49a02418a000303f148eff46d91ce28379478df1b7d1250676843f6450489319","size":131368,"triangleCount":54053},{"id":"collision-051","fileName":"collision-051.glb","url":"/assets/game/manastorm/578-nexus80/collision-051.glb","checksum":"709500f1ecd97cdde86c305662b7a759db4deb74422cc5f4ebcc12ecd7667157","size":134764,"triangleCount":54054},{"id":"collision-052","fileName":"collision-052.glb","url":"/assets/game/manastorm/578-nexus80/collision-052.glb","checksum":"ab06d286abc8dede964a003049dede8f2f179d446213e96b2bc0759af3a43716","size":131500,"triangleCount":54054},{"id":"collision-053","fileName":"collision-053.glb","url":"/assets/game/manastorm/578-nexus80/collision-053.glb","checksum":"0fa6180bb0e3dfba9cf1b7d5b16f04b137652c5ca7a43e5b8805b3a829049b13","size":126800,"triangleCount":54054},{"id":"collision-054","fileName":"collision-054.glb","url":"/assets/game/manastorm/578-nexus80/collision-054.glb","checksum":"fe5286ff7af31b0a6f2e0765d444b5d0cded2820b714ef96305b7fd59ebc4d1f","size":126040,"triangleCount":54053},{"id":"collision-055","fileName":"collision-055.glb","url":"/assets/game/manastorm/578-nexus80/collision-055.glb","checksum":"1d45a240e57ff39630b7baa57d4ebeb609788ee7f5db8281ea4333c3366abea5","size":139988,"triangleCount":54053},{"id":"collision-056","fileName":"collision-056.glb","url":"/assets/game/manastorm/578-nexus80/collision-056.glb","checksum":"234a6291eef8acb55c63dd10b6e72014eea2158a2ebf30be7722a9e3927fc58c","size":128536,"triangleCount":54054},{"id":"collision-057","fileName":"collision-057.glb","url":"/assets/game/manastorm/578-nexus80/collision-057.glb","checksum":"20095df5365120f48b6bbe61b3ef3d58eb03e67165bfff4b457dca93f51e5a36","size":138500,"triangleCount":54053},{"id":"collision-058","fileName":"collision-058.glb","url":"/assets/game/manastorm/578-nexus80/collision-058.glb","checksum":"a915b08983bfd380c8f316706417c18d40183a2963103d76db2a41612f1bf616","size":130452,"triangleCount":54053},{"id":"collision-059","fileName":"collision-059.glb","url":"/assets/game/manastorm/578-nexus80/collision-059.glb","checksum":"8f99b40c677a264c5fe35b3fb1d53fdb2e87ea4de59da7cb9014c2d673ed87ae","size":132748,"triangleCount":54054},{"id":"collision-060","fileName":"collision-060.glb","url":"/assets/game/manastorm/578-nexus80/collision-060.glb","checksum":"51c6815b9be206e32f80fb62d51702d0d35f07ea41ef1a2564814c8bec5b3a7d","size":126356,"triangleCount":54054},{"id":"collision-061","fileName":"collision-061.glb","url":"/assets/game/manastorm/578-nexus80/collision-061.glb","checksum":"8465774198b5a8ee62518b5178d66c48338eb33f9774598f38ac7075a42db6cc","size":125500,"triangleCount":54053},{"id":"collision-062","fileName":"collision-062.glb","url":"/assets/game/manastorm/578-nexus80/collision-062.glb","checksum":"f12cc77f7aa56040b42759d75f56b21a155148ace1a6827e45468c27bef72484","size":124180,"triangleCount":54054},{"id":"collision-063","fileName":"collision-063.glb","url":"/assets/game/manastorm/578-nexus80/collision-063.glb","checksum":"bc8be589af2ff8816e6f19635b66d913213bedb75afc807a9aa36669c980cc1f","size":137864,"triangleCount":54054},{"id":"collision-064","fileName":"collision-064.glb","url":"/assets/game/manastorm/578-nexus80/collision-064.glb","checksum":"4f19168ba32aa4e4c7d1c85884ffec3d541e3d9fe944a2039aa62067fed490db","size":129940,"triangleCount":54053}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/578-nexus80/navigation.glb","checksum":"df86c214e916014a658e9910a3419248dfa5e3203de9a73a0ab4a813b1052e8a","size":2866492,"triangleCount":249392}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[777.1527,144.0747,938.5507],"max":[1289.1927,479.5207,1444.1627]},"entrance":{"name":"The Oculus Entrance","footPosition":[979.3327,165.0937,1097.2327],"forward":[0.23651493126968526,0,0.9716278543179462],"yaw":0.23877744117607635},"areas":[{"id":"entrance","name":"The Oculus Entrance","center":[979.3327,165.0937,1097.2327],"radius":35},{"id":"area-drakos-the-interrogator","name":"Drakos the Interrogator's Encounter","center":[1038.2827,164.0747,989.0967],"radius":42},{"id":"area-varos-cloudstrider","name":"Varos Cloudstrider's Encounter","center":[1062.8427,243.5387,1326.9027],"radius":42},{"id":"area-mage-lord-urom","name":"Mage-Lord Urom's Encounter","center":[930.2047,331.4287,1218.7727],"radius":42},{"id":"area-ley-guardian-eregos","name":"Ley-Guardian Eregos's Encounter","center":[1078.6927,459.5207,1118.3427],"radius":42}],"entities":{"entry-32261":{"id":"entry-32261","kind":"mob","name":"Crystal Spider","combat":{"level":71,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7428480000000004,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/73cd1ddbf518085e70fe7dd3e36a1f1ce98d970e808602a7231d647a6625d533.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":0.5461,"markerRadius":0.65}}},"entry-27654":{"id":"entry-27654","kind":"boss","name":"Drakos the Interrogator","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-51336","name":"Magic Pull","spellId":51336,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-50774","name":"Thundering Stomp","spellId":50774,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":3000,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"crocolisk","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-27032-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0114,"labelHeight":7.9381,"markerRadius":4.5}}},"entry-27655":{"id":"entry-27655","kind":"boss","name":"Mage-Lord Urom","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-51602","name":"Evocation","spellId":51602,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":4230,"damageMultiplier":1.35},{"id":"spell-51110","name":"Empowered Arcane Explosion","spellId":51110,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":4230,"damageMultiplier":0.82,"radius":11},{"id":"spell-51103","name":"Frostbomb","spellId":51103,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.35},{"id":"spell-51121","name":"Time Bomb","spellId":51121,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-25010-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.001,"labelHeight":3.5751,"markerRadius":0.7474}}},"entry-27447":{"id":"entry-27447","kind":"boss","name":"Varos Cloudstrider","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-51054","name":"Amplify Magic","spellId":51054,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-51002","name":"Call Azure Ring Captain","spellId":51002,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-51006","name":"Call Azure Ring Captain","spellId":51006,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-51007","name":"Call Azure Ring Captain","spellId":51007,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-27033-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.7548,"labelHeight":15.6704,"markerRadius":3.8161}}},"entry-27635":{"id":"entry-27635","kind":"mob","name":"Azure Spellbinder","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/7f809d34e8476ea8db6d31ae49248520c5a392e9f9ef4fa0440bc32340780160.glb","rotationY":-1.5707963267948966,"groundOffset":0.0071,"labelHeight":3.4982,"markerRadius":2.4314}}},"entry-27633":{"id":"entry-27633","kind":"mob","name":"Azure Inquisitor","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-25195-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":4.7244,"markerRadius":3.1644}}},"entry-27636":{"id":"entry-27636","kind":"mob","name":"Azure Ley-Whelp","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-26088-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3096,"markerRadius":1.3792}}},"entry-27638":{"id":"entry-27638","kind":"mob","name":"Azure Ring Guardian","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-28080-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.3816,"labelHeight":11.9608,"markerRadius":4.5}}},"entry-27639":{"id":"entry-27639","kind":"mob","name":"Ring-Lord Sorceress","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-25305-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0024,"labelHeight":2.6752,"markerRadius":0.65}}},"entry-27640":{"id":"entry-27640","kind":"mob","name":"Ring-Lord Conjurer","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-25302-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.9037,"markerRadius":0.65}}},"entry-27641":{"id":"entry-27641","kind":"mob","name":"Centrifuge Construct","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-50044","name":"Empowering Blows","spellId":50044,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5595,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-24943-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":8.2015,"markerRadius":2.7514}}},"entry-27656":{"id":"entry-27656","kind":"boss","name":"Ley-Guardian Eregos","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-51162","name":"Planar Shift","spellId":51162,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6311,"damageMultiplier":1.35},{"id":"spell-49838","name":"Stop Time","spellId":49838,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-50804","name":"Arcane Barrage","spellId":50804,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-51153","name":"Arcane Volley","spellId":51153,"delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5000,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/the-oculus/creatures/display-27034-animated.glb","rotationY":-1.5707963267948966,"groundOffset":5.5685,"labelHeight":48.531,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-100165","entityId":"entry-32261","position":[1031.8527,299.7217,1196.6327],"yaw":-0.300066,"spawnMask":3},{"id":"creature-100166","entityId":"entry-32261","position":[1074.4927,330.6787,1010.9177],"yaw":-2.3259,"spawnMask":3},{"id":"creature-100167","entityId":"entry-32261","position":[944.6007,330.6787,1244.8427],"yaw":-1.53514,"spawnMask":3},{"id":"creature-100168","entityId":"entry-32261","position":[1094.7927,299.7217,1163.2427],"yaw":-5.85018,"spawnMask":3},{"id":"creature-100169","entityId":"entry-32261","position":[989.0377,299.6977,1150.2027],"yaw":-4.07995,"spawnMask":3},{"id":"creature-100171","entityId":"entry-32261","position":[1145.3227,330.6787,1238.9827],"yaw":-5.01687,"spawnMask":3},{"id":"creature-100172","entityId":"entry-27654","position":[1038.2827,164.0747,989.0967],"yaw":-0.314159,"spawnMask":3},{"id":"creature-100220","entityId":"entry-27655","position":[930.2047,331.4287,1218.7727],"yaw":-2.21657,"spawnMask":3},{"id":"creature-100235","entityId":"entry-27447","position":[1062.8427,243.5387,1326.9027],"yaw":-3.57792,"spawnMask":3},{"id":"creature-100402","entityId":"entry-27635","position":[1029.8127,165.0937,1224.3027],"yaw":-3.93238,"spawnMask":3},{"id":"creature-100404","entityId":"entry-27635","position":[1120.3427,165.0937,1136.2027],"yaw":-4.98004,"spawnMask":3},{"id":"creature-100405","entityId":"entry-27633","position":[1060.6627,165.0937,1220.3527],"yaw":-3.20184,"spawnMask":3},{"id":"creature-100406","entityId":"entry-27633","position":[1063.0127,165.0937,1222.7827],"yaw":-4.55913,"spawnMask":3},{"id":"creature-100409","entityId":"entry-27633","position":[1125.3927,165.0937,1148.9827],"yaw":-2.17407,"spawnMask":3},{"id":"creature-100411","entityId":"entry-27633","position":[1120.3427,165.0937,1136.2027],"yaw":-4.98004,"spawnMask":3},{"id":"creature-100412","entityId":"entry-27633","position":[1102.2927,165.1777,1100.8127],"yaw":-0.855211,"spawnMask":3},{"id":"creature-100413","entityId":"entry-27633","position":[1106.4427,165.1777,1094.2927],"yaw":-0.680678,"spawnMask":3},{"id":"creature-100415","entityId":"entry-27633","position":[1029.8127,165.0937,1224.3027],"yaw":-3.93238,"spawnMask":3},{"id":"creature-100416","entityId":"entry-27635","position":[1063.0127,165.0937,1222.7827],"yaw":-4.55913,"spawnMask":3},{"id":"creature-100418","entityId":"entry-27635","position":[1060.6627,165.0937,1220.3527],"yaw":-3.20184,"spawnMask":3},{"id":"creature-100419","entityId":"entry-27635","position":[1125.3927,165.0937,1148.9827],"yaw":-2.17407,"spawnMask":3},{"id":"creature-100420","entityId":"entry-27635","position":[1100.5127,165.1777,1091.3027],"yaw":-0.628319,"spawnMask":3},{"id":"creature-100439","entityId":"entry-27636","position":[1121.4327,165.0937,1145.2027],"yaw":-1.59132,"spawnMask":3},{"id":"creature-100449","entityId":"entry-27636","position":[1117.3527,165.0937,1130.7627],"yaw":-0.555255,"spawnMask":3},{"id":"creature-100463","entityId":"entry-27636","position":[1122.4327,165.0937,1115.0527],"yaw":-2.92779,"spawnMask":3},{"id":"creature-100465","entityId":"entry-27636","position":[1128.2327,165.0937,1130.5827],"yaw":-4.05297,"spawnMask":3},{"id":"creature-100466","entityId":"entry-27636","position":[1129.3227,165.0937,1151.8627],"yaw":-1.22917,"spawnMask":3},{"id":"creature-100467","entityId":"entry-27636","position":[1096.5027,165.0937,1205.7927],"yaw":-2.33314,"spawnMask":3},{"id":"creature-100468","entityId":"entry-27636","position":[1090.1127,165.0937,1210.2127],"yaw":-4.3172,"spawnMask":3},{"id":"creature-100471","entityId":"entry-27636","position":[1114.2227,165.0937,1182.0827],"yaw":-6.27531,"spawnMask":3},{"id":"creature-100479","entityId":"entry-27636","position":[1112.5127,165.0937,1178.5127],"yaw":-3.52187,"spawnMask":3},{"id":"creature-100564","entityId":"entry-27636","position":[1111.2027,165.0937,1194.9827],"yaw":-2.69372,"spawnMask":3},{"id":"creature-100580","entityId":"entry-27636","position":[1024.3327,165.0937,1219.0627],"yaw":-5.862,"spawnMask":3},{"id":"creature-100768","entityId":"entry-27636","position":[1031.6127,165.0937,1223.4127],"yaw":-3.48468,"spawnMask":3},{"id":"creature-100838","entityId":"entry-27636","position":[1036.2727,165.0937,1219.1827],"yaw":-3.41428,"spawnMask":3},{"id":"creature-100843","entityId":"entry-27636","position":[1016.2527,165.1767,1216.6627],"yaw":-0.368577,"spawnMask":3},{"id":"creature-100845","entityId":"entry-27636","position":[1016.5827,165.0937,1227.6727],"yaw":-0.244397,"spawnMask":3},{"id":"creature-100846","entityId":"entry-27636","position":[961.5407,165.0937,1153.8727],"yaw":-4.13822,"spawnMask":3},{"id":"creature-100848","entityId":"entry-27636","position":[955.3527,165.0937,1146.7127],"yaw":-0.949516,"spawnMask":3},{"id":"creature-100851","entityId":"entry-27636","position":[970.0527,165.0937,1154.7227],"yaw":-4.34972,"spawnMask":3},{"id":"creature-100852","entityId":"entry-27636","position":[963.6627,165.0937,1168.9327],"yaw":-3.94894,"spawnMask":3},{"id":"creature-100853","entityId":"entry-27636","position":[967.0747,165.0937,1166.5627],"yaw":-3.25111,"spawnMask":3},{"id":"creature-100892","entityId":"entry-27638","position":[1150.1127,210.2807,1118.7027],"yaw":-6.10194,"spawnMask":3},{"id":"creature-100919","entityId":"entry-27638","position":[1100.6227,191.7037,1246.2727],"yaw":-5.6687,"spawnMask":3},{"id":"creature-100921","entityId":"entry-27638","position":[1210.4727,233.0207,1159.6827],"yaw":-3.03666,"spawnMask":3},{"id":"creature-100929","entityId":"entry-27638","position":[933.9097,185.7567,1083.0327],"yaw":-4.05194,"spawnMask":3},{"id":"creature-100931","entityId":"entry-27638","position":[1111.0527,275.4337,1251.6827],"yaw":-0.449876,"spawnMask":3},{"id":"creature-100932","entityId":"entry-27638","position":[1033.2927,291.6987,1309.8527],"yaw":-3.03687,"spawnMask":3},{"id":"creature-100933","entityId":"entry-27638","position":[877.0997,268.3787,1033.8727],"yaw":-2.29762,"spawnMask":3},{"id":"creature-101069","entityId":"entry-27638","position":[1227.7527,206.3607,1119.7327],"yaw":-0.097147,"spawnMask":3},{"id":"creature-101090","entityId":"entry-27638","position":[886.3477,193.2397,1151.1627],"yaw":-5.16806,"spawnMask":3},{"id":"creature-101498","entityId":"entry-27638","position":[1047.7427,267.0437,1399.1627],"yaw":-2.30095,"spawnMask":3},{"id":"creature-101729","entityId":"entry-27638","position":[965.4317,219.1427,1054.0327],"yaw":-4.47108,"spawnMask":3},{"id":"creature-101730","entityId":"entry-27638","position":[931.4277,252.5137,1126.3527],"yaw":-1.30396,"spawnMask":3},{"id":"creature-101731","entityId":"entry-27638","position":[899.8817,204.8507,1004.7547],"yaw":-0.316293,"spawnMask":3},{"id":"creature-101813","entityId":"entry-27638","position":[1194.0327,283.3187,1040.8347],"yaw":-0.065094,"spawnMask":3},{"id":"creature-101816","entityId":"entry-27638","position":[908.9837,218.3287,1233.8627],"yaw":-2.72108,"spawnMask":3},{"id":"creature-101821","entityId":"entry-27638","position":[1227.8927,194.7877,1037.4407],"yaw":-1.51844,"spawnMask":3},{"id":"creature-101822","entityId":"entry-27638","position":[1149.9827,253.4967,1314.5127],"yaw":-3.3377,"spawnMask":3},{"id":"creature-101826","entityId":"entry-27638","position":[1152.2127,268.0867,1020.5867],"yaw":-1.77143,"spawnMask":3},{"id":"creature-101827","entityId":"entry-27638","position":[891.8437,278.2147,1074.0827],"yaw":-3.75559,"spawnMask":3},{"id":"creature-101829","entityId":"entry-27638","position":[1192.6127,308.5807,1062.3127],"yaw":-2.46,"spawnMask":3},{"id":"creature-101835","entityId":"entry-27638","position":[1051.0627,360.7477,1227.3027],"yaw":-4.41868,"spawnMask":3},{"id":"creature-101844","entityId":"entry-27638","position":[867.0237,288.5337,1105.4427],"yaw":-3.75753,"spawnMask":3},{"id":"creature-101847","entityId":"entry-27638","position":[1172.6127,282.4197,1084.7327],"yaw":-3.84522,"spawnMask":3},{"id":"creature-101848","entityId":"entry-27638","position":[1134.2027,196.9387,1071.3527],"yaw":-1.4045,"spawnMask":3},{"id":"creature-101851","entityId":"entry-27638","position":[1133.1727,219.3637,1243.4227],"yaw":-2.16226,"spawnMask":3},{"id":"creature-101852","entityId":"entry-27638","position":[1109.8927,255.6337,1050.0227],"yaw":-1.48878,"spawnMask":3},{"id":"creature-101857","entityId":"entry-27638","position":[899.5577,245.5027,1189.5527],"yaw":-1.28801,"spawnMask":3},{"id":"creature-101861","entityId":"entry-27638","position":[1178.2827,257.9477,1230.9327],"yaw":-3.727,"spawnMask":3},{"id":"creature-101864","entityId":"entry-27638","position":[822.1527,260.9777,1074.5627],"yaw":-2.92664,"spawnMask":3},{"id":"creature-101865","entityId":"entry-27638","position":[1135.8627,347.8317,1082.8227],"yaw":-4.29589,"spawnMask":3},{"id":"creature-101869","entityId":"entry-27638","position":[931.6807,246.1217,1025.3857],"yaw":-3.97775,"spawnMask":3},{"id":"creature-101870","entityId":"entry-27638","position":[1153.1027,225.8447,983.5507],"yaw":-2.14561,"spawnMask":3},{"id":"creature-101873","entityId":"entry-27638","position":[1042.8527,250.5397,1237.5327],"yaw":-2.73707,"spawnMask":3},{"id":"creature-101874","entityId":"entry-27638","position":[993.4027,256.8777,1366.1827],"yaw":-0.651494,"spawnMask":3},{"id":"creature-101880","entityId":"entry-27638","position":[860.0057,236.1717,1166.8527],"yaw":-4.06142,"spawnMask":3},{"id":"creature-101881","entityId":"entry-27638","position":[1244.1927,265.9587,1064.6227],"yaw":-3.54018,"spawnMask":3},{"id":"creature-101882","entityId":"entry-27638","position":[1119.3927,274.1037,1357.4127],"yaw":-4.27136,"spawnMask":3},{"id":"creature-101885","entityId":"entry-27638","position":[974.2607,189.8547,1256.2527],"yaw":-2.38326,"spawnMask":3},{"id":"creature-101889","entityId":"entry-27638","position":[1156.6227,218.1527,1340.1227],"yaw":-0.949899,"spawnMask":3},{"id":"creature-101891","entityId":"entry-27638","position":[928.6347,331.4287,1082.6227],"yaw":-2.5434,"spawnMask":3},{"id":"creature-101892","entityId":"entry-27638","position":[999.3927,183.3167,1312.6127],"yaw":-5.09294,"spawnMask":3},{"id":"creature-101893","entityId":"entry-27638","position":[1082.7627,211.0617,1392.3727],"yaw":-3.0259,"spawnMask":3},{"id":"creature-101894","entityId":"entry-27638","position":[945.6507,260.5887,1298.2627],"yaw":-1.77385,"spawnMask":3},{"id":"creature-101895","entityId":"entry-27639","position":[982.4267,237.1827,1129.5427],"yaw":-2.77507,"spawnMask":3},{"id":"creature-101896","entityId":"entry-27639","position":[986.1817,237.1827,1103.3827],"yaw":-0.05236,"spawnMask":3},{"id":"creature-101897","entityId":"entry-27639","position":[1103.6827,237.1067,1122.6627],"yaw":-3.78736,"spawnMask":3},{"id":"creature-101898","entityId":"entry-27639","position":[1088.4527,236.5457,1102.7127],"yaw":-0.645772,"spawnMask":3},{"id":"creature-101899","entityId":"entry-27639","position":[991.0347,237.1827,1158.8527],"yaw":-5.88176,"spawnMask":3},{"id":"creature-101900","entityId":"entry-27639","position":[998.3927,237.1827,1176.4827],"yaw":-4.32842,"spawnMask":3},{"id":"creature-101902","entityId":"entry-27639","position":[1194.4827,243.5387,1058.4427],"yaw":-6.14356,"spawnMask":3},{"id":"creature-101903","entityId":"entry-27639","position":[1104.5027,237.1827,1178.9727],"yaw":-3.28122,"spawnMask":3},{"id":"creature-101904","entityId":"entry-27639","position":[1096.1527,237.1827,1153.6427],"yaw":-0.488692,"spawnMask":3},{"id":"creature-101907","entityId":"entry-27640","position":[999.7327,237.1827,1113.6127],"yaw":-5.044,"spawnMask":3},{"id":"creature-101909","entityId":"entry-27640","position":[1092.1927,237.1827,1125.0727],"yaw":-2.80998,"spawnMask":3},{"id":"creature-101910","entityId":"entry-27640","position":[973.9577,237.1827,1163.6727],"yaw":-0.994838,"spawnMask":3},{"id":"creature-101912","entityId":"entry-27640","position":[984.6907,237.1827,1183.6627],"yaw":-3.07178,"spawnMask":3},{"id":"creature-101914","entityId":"entry-27640","position":[1090.3827,237.1827,1172.2027],"yaw":-2.05949,"spawnMask":3},{"id":"creature-101915","entityId":"entry-27640","position":[1112.8327,237.1827,1156.7127],"yaw":-5.42797,"spawnMask":3},{"id":"creature-101916","entityId":"entry-27640","position":[882.9677,243.5387,1077.8127],"yaw":-1.95477,"spawnMask":3},{"id":"creature-101917","entityId":"entry-27641","position":[986.7867,236.9867,1118.2127],"yaw":-1.20428,"spawnMask":3},{"id":"creature-101918","entityId":"entry-27641","position":[1096.2827,236.9867,1112.8927],"yaw":-5.21853,"spawnMask":3},{"id":"creature-101919","entityId":"entry-27641","position":[985.7137,236.9867,1171.0127],"yaw":-2.07694,"spawnMask":3},{"id":"creature-101922","entityId":"entry-27641","position":[1195.4627,243.5387,1046.2427],"yaw":0,"spawnMask":3},{"id":"creature-101924","entityId":"entry-27641","position":[1203.3627,243.5387,1066.8327],"yaw":-4.11898,"spawnMask":3},{"id":"creature-101933","entityId":"entry-27641","position":[1183.3627,243.5387,1064.9527],"yaw":-2.16421,"spawnMask":3},{"id":"creature-101937","entityId":"entry-27641","position":[1102.2327,236.9867,1165.7027],"yaw":-4.31096,"spawnMask":3},{"id":"creature-101967","entityId":"entry-27641","position":[870.0577,243.5387,1082.4827],"yaw":-1.97222,"spawnMask":3},{"id":"creature-101974","entityId":"entry-27641","position":[885.7537,243.5387,1064.4727],"yaw":-6.19592,"spawnMask":3},{"id":"creature-102064","entityId":"entry-27641","position":[891.9157,243.5387,1086.4627],"yaw":-4.08407,"spawnMask":3},{"id":"creature-1971378","entityId":"entry-27656","position":[1078.6927,459.5207,1118.3427],"yaw":-4.18879,"spawnMask":3}],"roamingPacks":[{"id":"patrol-100400","name":"Azure Spellbinder Patrol","speed":1.15,"pathId":10041400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[969.8297,165.2317,1184.0627],[976.7647,165.2327,1196.4627],[985.8557,165.2317,1208.2027],[995.7027,165.2327,1215.6527],[1009.2327,165.2317,1221.1327],[1019.3527,165.2327,1222.7527],[1009.2327,165.2317,1221.1327],[995.7027,165.2327,1215.6527],[985.8557,165.2317,1208.2027],[976.7647,165.2327,1196.4627],[969.8297,165.2317,1184.0627],[964.3827,165.3237,1164.3427]],"members":[{"id":"member","entityId":"entry-27635","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-100414","name":"Azure Inquisitor Patrol","speed":1.15,"pathId":10041400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[969.8297,165.2317,1184.0627],[976.7647,165.2327,1196.4627],[985.8557,165.2317,1208.2027],[995.7027,165.2327,1215.6527],[1009.2327,165.2317,1221.1327],[1019.3527,165.2327,1222.7527],[1009.2327,165.2317,1221.1327],[995.7027,165.2327,1215.6527],[985.8557,165.2317,1208.2027],[976.7647,165.2327,1196.4627],[969.8297,165.2317,1184.0627],[964.3827,165.3237,1164.3427]],"members":[{"id":"member","entityId":"entry-27633","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-100172","name":"Drakos the Interrogator","position":[1038.2827,164.0747,989.0967]},{"id":"creature-100235","name":"Varos Cloudstrider","position":[1062.8427,243.5387,1326.9027]},{"id":"creature-100220","name":"Mage-Lord Urom","position":[930.2047,331.4287,1218.7727]},{"id":"creature-1971378","name":"Ley-Guardian Eregos","position":[1078.6927,459.5207,1118.3427]}],"objectiveOrder":[{"id":"creature-100172","name":"Drakos the Interrogator","position":[1038.2827,164.0747,989.0967]},{"id":"creature-100235","name":"Varos Cloudstrider","position":[1062.8427,243.5387,1326.9027]},{"id":"creature-100220","name":"Mage-Lord Urom","position":[930.2047,331.4287,1218.7727]},{"id":"creature-1971378","name":"Ley-Guardian Eregos","position":[1078.6927,459.5207,1118.3427]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":1046,"id":189985,"map":578,"orientation":-1.64061,"phaseMask":1,"position_x":1045.57,"position_y":1104.24,"position_z":361.07,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":1507,"id":189986,"map":578,"orientation":2.65289,"phaseMask":1,"position_x":945.794,"position_y":1025.96,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.970294,"rotation3":0.241927,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":1953,"id":189986,"map":578,"orientation":1.0472,"phaseMask":1,"position_x":936.102,"position_y":1063.24,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":2102,"id":189986,"map":578,"orientation":1.79769,"phaseMask":1,"position_x":933.268,"position_y":1042.21,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.782608,"rotation3":0.622514,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":2368,"id":188715,"map":578,"orientation":-0.890117,"phaseMask":1,"position_x":1048.27,"position_y":991.311,"position_z":361.07,"rotation0":0,"rotation1":0,"rotation2":-0.430511,"rotation3":0.902586,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":2568,"id":188514,"map":578,"orientation":1.10828,"phaseMask":1,"position_x":1209.71,"position_y":1334.59,"position_z":192.375,"rotation0":0,"rotation1":0,"rotation2":0.526212,"rotation3":0.850353,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":2795,"id":188514,"map":578,"orientation":-0.532325,"phaseMask":1,"position_x":1339.24,"position_y":830.317,"position_z":186.819,"rotation0":0,"rotation1":0,"rotation2":-0.263031,"rotation3":0.964787,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":2837,"id":188514,"map":578,"orientation":-2.9845,"phaseMask":1,"position_x":795.597,"position_y":994.667,"position_z":195.304,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784656,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":3586,"id":193995,"map":578,"orientation":2.65289,"phaseMask":1,"position_x":945.794,"position_y":1025.96,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.970294,"rotation3":0.241927,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":3953,"id":193995,"map":578,"orientation":1.0472,"phaseMask":1,"position_x":936.102,"position_y":1063.24,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":4314,"id":193995,"map":578,"orientation":1.79769,"phaseMask":1,"position_x":933.268,"position_y":1042.21,"position_z":359.967,"rotation0":0,"rotation1":0,"rotation2":0.782608,"rotation3":0.622514,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":4343,"id":190172,"map":578,"orientation":-1.6057,"phaseMask":1,"position_x":1077.07,"position_y":1103.43,"position_z":495.698,"rotation0":0,"rotation1":0,"rotation2":-0.719339,"rotation3":0.694659,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":4402,"id":190172,"map":578,"orientation":0.785397,"phaseMask":1,"position_x":1208.45,"position_y":960.853,"position_z":526.655,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":100091,"id":190402,"map":578,"orientation":1.95106,"phaseMask":1,"position_x":1158.63,"position_y":1165.1,"position_z":527.322,"rotation0":0,"rotation1":0,"rotation2":0.827999,"rotation3":0.560729,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":100092,"id":190402,"map":578,"orientation":-0.910457,"phaseMask":1,"position_x":1151.58,"position_y":1177.87,"position_z":526.812,"rotation0":0,"rotation1":0,"rotation2":-0.439668,"rotation3":0.898161,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268067,"id":191349,"map":578,"orientation":0.017452,"phaseMask":1,"position_x":1015.06,"position_y":1051.09,"position_z":605.619,"rotation0":0,"rotation1":0,"rotation2":0.00872589,"rotation3":0.999962,"spawnMask":1,"spawntimesecs":-608400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":268068,"id":193603,"map":578,"orientation":0.017452,"phaseMask":1,"position_x":1015.06,"position_y":1051.09,"position_z":605.619,"rotation0":0,"rotation1":0,"rotation2":0.00872589,"rotation3":0.999962,"spawnMask":2,"spawntimesecs":-608400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/the-oculus/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["12/12 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"culling-of-stratholme","title":"The Culling of Stratholme","mapId":595,"lfgDungeonIds":[209,210],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[77,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Culling of Stratholme","theme":"Open-world expedition","summary":"Fight through The Culling of Stratholme, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Culling of Stratholme...","unchartedAreaName":"Uncharted The Culling of Stratholme","background":"#081016","fog":{"color":"#0a141c","near":36,"far":887.6016},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/595-stratholmecot/visual.glb","checksum":"c6752e190889ae85a15c1671e328d793391c0530d668bb6e63166796b72bb06e","size":30387424,"triangleCount":2632239}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-000.glb","checksum":"5aed8060afb139ace8ddd0f0328deebfa582b61424d7b53fe197ed9f3a07f6a8","size":153476,"triangleCount":55554},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-001.glb","checksum":"c7ae560092449aacc82becf53a14091dbf3fd0c5ef67ce24a0ad5a7cdb447d11","size":159908,"triangleCount":55554},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-002.glb","checksum":"948552fb30c8eabc880cea1f1eff7cba31aef3df69e1775ef84d9e01ed646939","size":162260,"triangleCount":55554},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-003.glb","checksum":"cf9f5132a24846b2da286372c01ed557d5ae21d16a9b71b9546972c4a39e802e","size":154432,"triangleCount":55554},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-004.glb","checksum":"9e6b9ea79d5477775ab8eeb4cb16b7673d9b128c35a228db56ce57b4974ee8eb","size":155212,"triangleCount":55554},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-005.glb","checksum":"140c744923e922c4a2770649ee05a538a4bd5bc745b2155047c611d056d998a7","size":155756,"triangleCount":55554},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-006.glb","checksum":"9d75be8623f2b63a8ab2856105bd8acee6f74ba3076a6c73172558b4030d9370","size":160120,"triangleCount":55554},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-007.glb","checksum":"ee4791432ad79d05ce9e39159fe820d2a809cf676d9189e45c0528c4287e17ee","size":1229052,"triangleCount":55555},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-008.glb","checksum":"3cd7acde6dbf121f8602425be912edc63645a94fb4052fde7135beba3488de6a","size":525024,"triangleCount":73044},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-009.glb","checksum":"f27e44025370140ba97da752c2272c354b9239e4df674aa8f9381c8b65467c61","size":317284,"triangleCount":60357},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-010.glb","checksum":"a49419071329d6e8ae16fb12a20d0c715842d278293cb88a6281bf55229cd6e9","size":169112,"triangleCount":55554},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-011.glb","checksum":"ad9a45030603571d8d82047f5b2e06cee96a049ee41eadfc82ae9ab23efa6ff9","size":158144,"triangleCount":55554},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-012.glb","checksum":"650ca9b292b3ddaf4e4dd044d968418ff931acd371737045b0d7a8216fabf8b9","size":157868,"triangleCount":55554},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-013.glb","checksum":"474ae5c6fa643228d0533a6c64684fe4f3e2ca2aec3a9a7c2743884f958148de","size":168348,"triangleCount":55802},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-014.glb","checksum":"ae21bbdf082e589bb44c7e1c2acd9a85cdb7ff6997fac7921e189b4b6e0add96","size":394364,"triangleCount":68183},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-015.glb","checksum":"25ad4eadf2615263e3ffdebdce9dddcc6122ab98811b1d87fc82f12534963db2","size":214204,"triangleCount":55555},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-016.glb","checksum":"b2b7875e4e088b241655d488aa9a0c119e5f9a08ab1babcb4aacff2b95cd20be","size":171936,"triangleCount":55554},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-017.glb","checksum":"76c928b641c5fcf1fc6c67696bc2846abd8ec8f5957f75e5e42decc066c75f38","size":158912,"triangleCount":55554},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-018.glb","checksum":"8668fcc1617c8eb16e933d17e4e3657b086191a19179ca37680247613dec0b4a","size":158524,"triangleCount":55554},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-019.glb","checksum":"8c2483fb891ab87d728460acdbec3a57506163f3f0dc9c5d117b0db2ab0da6b0","size":155388,"triangleCount":55554},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-020.glb","checksum":"b457b6fcb7d4e5d90a457602be902acac2c195cf47cb6ef9767b4e045605045e","size":399232,"triangleCount":69530},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-021.glb","checksum":"a00b37db9815acff9774ad2bb9782d5f465030379750b852726f288dae510e21","size":712960,"triangleCount":91021},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-022.glb","checksum":"13a7cd059fbac458969a4b25bba9bbfbf2da87eb6c25c66df02babd6d341ed3c","size":163496,"triangleCount":55554},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-023.glb","checksum":"b07ec0b5f7215371286d0f74833e51bc19bf70494c448e8dbf206e5a8e149e90","size":155400,"triangleCount":55554},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-024.glb","checksum":"fcb8e773a8ae0fc5aa8fcc54ac7c74475dd1e5b4c9ec1634833aa2640924b87b","size":155976,"triangleCount":55554},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-025.glb","checksum":"eab65383c3f5227c47c7173333a552b552876075dc82f8d80d4bbb6edc4f3c06","size":156980,"triangleCount":55554},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-026.glb","checksum":"a6ee307cfa4a5bca8af17ab8b0d954272d9064f697efc5d34902c75980f4f468","size":369904,"triangleCount":64488},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-027.glb","checksum":"590dbe51387ce32879e32b48d3309c1e6a334c7a6ad1ee1dd2cae616bee2c823","size":241152,"triangleCount":57161},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-028.glb","checksum":"ec520dcb625524fc394a0838721323e3f4909782021190738bef640fa0f9d9cf","size":162072,"triangleCount":55554},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-029.glb","checksum":"4eb84964552ad26b3c63c9ec06978d30cb0e00e2f216109319846fecebed31aa","size":156496,"triangleCount":55554},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-030.glb","checksum":"2a5020bac3a11058582545459b2b4b5168f102ff8ab60ae6eaa340ad0aa2b0b5","size":156252,"triangleCount":55554},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-031.glb","checksum":"9649b189d4fff6e06a15869a0e87f634a8602ed1c80c9d2d9ac62a99892d0461","size":156196,"triangleCount":55554},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-032.glb","checksum":"d025d8166acd13873f5f26b17516f5401a79365f4f4242d5fa94d47986cb7d91","size":272956,"triangleCount":62956},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-033.glb","checksum":"d47ab47704a31d0041ca7d6f29003b95e6835931063c989da0390d2dc1048c0c","size":169536,"triangleCount":55554},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-034.glb","checksum":"220d4e3504c0698f8f158aafb7f7883c0ab8c6e7ae3079bd32c57713a4757351","size":158840,"triangleCount":55554},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-035.glb","checksum":"b51203bcc23018b10123fed9248f15a650b6c807244ea29ae2ea0076714003bf","size":156180,"triangleCount":55554},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/595-stratholmecot/collision-036.glb","checksum":"f66750a447083b7dee1e4af9e6fda569d7109b358a98b5ca9a0c9a8f39ddbc96","size":156228,"triangleCount":55554}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/595-stratholmecot/navigation.glb","checksum":"0cc6336d4d40f8fd047a684e6562040c604ce0ab8e9df524e702952e59b668e0","size":4762616,"triangleCount":406563}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[2003.3309,224.2875,1563.6667],"max":[3000.7967,373.8305,2796.4467]},"entrance":{"name":"The Culling of Stratholme Entrance","footPosition":[2074.8667,244.2875,1608.6667],"forward":[-0.0957323369478111,0,0.9954071125235698],"yaw":-0.09587916935429375},"areas":[{"id":"entrance","name":"The Culling of Stratholme Entrance","center":[2074.8667,244.2875,1608.6667],"radius":35},{"id":"area-meathook","name":"Meathook's Encounter","center":[2049.6539,256.0775,1911.356],"radius":42},{"id":"area-salram-the-fleshcrafter","name":"Salram the Fleshcrafter's Encounter","center":[2048.3309,256.8975,1974.0755],"radius":42},{"id":"area-chrono-lord-epoch","name":"Chrono-Lord Epoch's Encounter","center":[2049.8618,257.7175,2032.0918],"radius":42},{"id":"area-mal-ganis","name":"Mal'ganis's Encounter","center":[2050.4698,258.5375,2096.9143],"radius":42}],"entities":{"entry-27737":{"id":"entry-27737","kind":"mob","name":"Risen Zombie","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.4,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25542-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.0187,"markerRadius":0.65}}},"entry-27734":{"id":"entry-27734","kind":"mob","name":"Crypt Fiend","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/ed106356c4811ff2d38eb79b7cc1d330b013d79ce241aca42ac86898efb56ea0.glb","rotationY":-1.5707963267948966,"groundOffset":0.2252,"labelHeight":5.2004,"markerRadius":2.4522}}},"entry-28249":{"id":"entry-28249","kind":"mob","name":"Devouring Ghoul","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-569-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8357,"markerRadius":0.6634}}},"entry-31126":{"id":"entry-31126","kind":"mob","name":"Agitated Stratholme Citizen","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7411,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25168-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-31127":{"id":"entry-31127","kind":"mob","name":"Agitated Stratholme Resident","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":7436,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25313-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.2877,"markerRadius":0.65}}},"entry-28167":{"id":"entry-28167","kind":"mob","name":"Stratholme Citizen","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.514272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4741,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25168-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-28169":{"id":"entry-28169","kind":"mob","name":"Stratholme Resident","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.514272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":4589,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25171-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-27729":{"id":"entry-27729","kind":"mob","name":"Enraging Ghoul","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/46dbc556794b321a584218463446041b44ea68c28fb0be594db6c7c669f7125f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":2.8357,"markerRadius":0.6634}}},"entry-27745":{"id":"entry-27745","kind":"mob","name":"Lordaeron Footman","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-24768-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-27746":{"id":"entry-27746","kind":"mob","name":"Lordaeron Knight","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-26537-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.7976,"markerRadius":1.2647}}},"entry-27747":{"id":"entry-27747","kind":"mob","name":"High Elf Mage-Priest","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-24769-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.5884,"markerRadius":0.65}}},"entry-27752":{"id":"entry-27752","kind":"mob","name":"High Elf Sorceress","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-24778-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0012,"labelHeight":2.3842,"markerRadius":0.65}}},"entry-26499":{"id":"entry-26499","kind":"mob","name":"Arthas","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6545,"damageMultiplier":1.12},{"id":"spell-51908","name":"Cosmetic - Shadowstep","spellId":51908,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6545,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/f410cbf05ee179af5e73862f00ce12a14c4be9e4c9e4fdad47f26c07e398993b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.7701,"markerRadius":0.65}}},"entry-27736":{"id":"entry-27736","kind":"mob","name":"Patchwork Construct","combat":{"level":81,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25282-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":5.893,"markerRadius":2.5975}}},"entry-28201":{"id":"entry-28201","kind":"mob","name":"Bile Golem","combat":{"level":81,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-25281-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0063,"labelHeight":5.893,"markerRadius":2.5975}}},"entry-27731":{"id":"entry-27731","kind":"mob","name":"Acolyte","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-24766-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.7973,"markerRadius":0.65}}},"entry-26529":{"id":"entry-26529","kind":"boss","name":"Meathook","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1},{"id":"spell-52666","name":"Disease Expulsion","spellId":52666,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.35},{"id":"spell-58841","name":"Frenzy","spellId":58841,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-58841","durationMs":12000,"magnitude":0.25}},{"id":"spell-52696","name":"Constricting Chains","spellId":52696,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-26579-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0105,"labelHeight":9.8217,"markerRadius":4.3291}}},"entry-26530":{"id":"entry-26530","kind":"boss","name":"Salramm the Fleshcrafter","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52480","name":"Explode Ghoul","spellId":52480,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-57725","name":"Shadow Bolt","spellId":57725,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.35},{"id":"spell-52708","name":"Steal Flesh","spellId":52708,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6123,"damageMultiplier":1.35},{"id":"spell-58845","name":"Curse of Twisted Flesh","spellId":58845,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6123,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-26581-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":5.2627,"markerRadius":1.0788}}},"entry-26532":{"id":"entry-26532","kind":"boss","name":"Chrono-Lord Epoch","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52737","name":"Time Step","spellId":52737,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7438,"damageMultiplier":1.35},{"id":"spell-52772","name":"Curse of Exertion","spellId":52772,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":9000,"damageMultiplier":1.35},{"id":"spell-52771","name":"Wounding Strike","spellId":52771,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-58848","name":"Time Stop","spellId":58848,"delivery":"projectile","target":"random-party","school":"arcane","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"stun","durationMs":2500}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-26580-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.4038,"labelHeight":11.7179,"markerRadius":2.0782}}},"entry-26533":{"id":"entry-26533","kind":"boss","name":"Mal'Ganis","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.1745920000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52720","name":"Carrion Swarm","spellId":52720,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6000,"damageMultiplier":1.35},{"id":"spell-52722","name":"Mind Blast","spellId":52722,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6000,"damageMultiplier":1.35},{"id":"spell-52721","name":"Sleep","spellId":52721,"delivery":"projectile","target":"random-party","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"sleep","durationMs":4500}},{"id":"spell-52723","name":"Vampiric Touch","spellId":52723,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/culling-of-stratholme/creatures/display-26582-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.6671,"labelHeight":14.0101,"markerRadius":4.3264}}}},"staticSpawns":[{"id":"creature-1970782","entityId":"entry-27737","position":[2668.8967,335.6725,2738.4667],"yaw":-3.895,"spawnMask":3},{"id":"creature-1970783","entityId":"entry-27737","position":[2674.2367,334.8285,2743.7067],"yaw":-1.41707,"spawnMask":3},{"id":"creature-1970784","entityId":"entry-27737","position":[2664.8167,335.2135,2743.3367],"yaw":-1.9158,"spawnMask":3},{"id":"creature-1970785","entityId":"entry-27737","position":[2665.3967,334.1765,2751.4467],"yaw":-5.64251,"spawnMask":3},{"id":"creature-1970786","entityId":"entry-27734","position":[2754.8867,333.2025,2732.6067],"yaw":-5.00007,"spawnMask":3},{"id":"creature-1970787","entityId":"entry-28249","position":[2753.3967,333.0955,2728.5767],"yaw":-5.07468,"spawnMask":3},{"id":"creature-1970788","entityId":"entry-31126","position":[2858.5367,340.2275,2324.3067],"yaw":-5.95157,"spawnMask":3},{"id":"creature-1970789","entityId":"entry-31126","position":[2663.5467,346.1715,2441.4967],"yaw":-5.96903,"spawnMask":3},{"id":"creature-1970790","entityId":"entry-31126","position":[2667.9767,346.1065,2441.9167],"yaw":-5.49779,"spawnMask":3},{"id":"creature-1970791","entityId":"entry-31126","position":[2666.7767,345.7975,2446.5967],"yaw":-4.45059,"spawnMask":3},{"id":"creature-1970792","entityId":"entry-31126","position":[2715.3167,339.3995,2541.6467],"yaw":-0.279253,"spawnMask":3},{"id":"creature-1970793","entityId":"entry-31126","position":[2711.0867,338.6575,2537.1267],"yaw":-0.541052,"spawnMask":3},{"id":"creature-1970794","entityId":"entry-31126","position":[2717.8067,338.9085,2538.3067],"yaw":-0.10472,"spawnMask":3},{"id":"creature-1970795","entityId":"entry-31127","position":[2665.4367,346.1175,2443.0667],"yaw":-5.49779,"spawnMask":3},{"id":"creature-1970796","entityId":"entry-31127","position":[2662.4067,346.1715,2439.6067],"yaw":-6.26573,"spawnMask":3},{"id":"creature-1970797","entityId":"entry-31127","position":[2666.6867,346.1715,2438.6967],"yaw":-5.75959,"spawnMask":3},{"id":"creature-1970798","entityId":"entry-31127","position":[2717.6267,339.7595,2542.5367],"yaw":-6.24828,"spawnMask":3},{"id":"creature-1970799","entityId":"entry-31127","position":[2712.1267,339.1425,2540.6267],"yaw":-0.523599,"spawnMask":3},{"id":"creature-1970800","entityId":"entry-31127","position":[2709.5967,339.7845,2543.3667],"yaw":-0.942478,"spawnMask":3},{"id":"creature-1970814","entityId":"entry-28167","position":[2826.6067,339.9975,2367.6367],"yaw":-5.32325,"spawnMask":3},{"id":"creature-1970815","entityId":"entry-28167","position":[2778.3967,342.5355,2334.8867],"yaw":-0.610865,"spawnMask":3},{"id":"creature-1970816","entityId":"entry-28167","position":[2757.0267,345.1075,2344.4367],"yaw":-2.18166,"spawnMask":3},{"id":"creature-1970817","entityId":"entry-28167","position":[2708.8267,338.5255,2518.0067],"yaw":-4.11898,"spawnMask":3},{"id":"creature-1970818","entityId":"entry-28167","position":[2884.4567,339.9795,2343.5067],"yaw":-3.89208,"spawnMask":3},{"id":"creature-1970819","entityId":"entry-28167","position":[2856.9967,338.5115,2342.1367],"yaw":-2.58309,"spawnMask":3},{"id":"creature-1970821","entityId":"entry-28167","position":[2814.4767,344.4415,2301.9567],"yaw":-4.81711,"spawnMask":3},{"id":"creature-1970822","entityId":"entry-28167","position":[2791.8167,345.9345,2297.2667],"yaw":-3.80482,"spawnMask":3},{"id":"creature-1970823","entityId":"entry-28167","position":[2788.8067,347.6475,2283.1367],"yaw":-1.309,"spawnMask":3},{"id":"creature-1970824","entityId":"entry-28167","position":[2792.2467,346.5935,2284.9467],"yaw":-4.01426,"spawnMask":3},{"id":"creature-1970825","entityId":"entry-28167","position":[2668.6767,346.1715,2429.6367],"yaw":-0.523599,"spawnMask":3},{"id":"creature-1970826","entityId":"entry-28167","position":[2702.4767,339.8175,2543.9367],"yaw":-2.9147,"spawnMask":3},{"id":"creature-1970827","entityId":"entry-28167","position":[2808.7967,342.3485,2329.6967],"yaw":-4.38078,"spawnMask":3},{"id":"creature-1970828","entityId":"entry-28167","position":[2823.9867,340.8045,2368.9467],"yaw":-4.2586,"spawnMask":3},{"id":"creature-1970829","entityId":"entry-27737","position":[2655.9867,335.3565,2742.7767],"yaw":-1.63305,"spawnMask":3},{"id":"creature-1970830","entityId":"entry-28167","position":[2857.6367,339.1445,2298.2167],"yaw":-4.15388,"spawnMask":3},{"id":"creature-1970831","entityId":"entry-28167","position":[2722.9167,338.8085,2537.2267],"yaw":-4.04916,"spawnMask":3},{"id":"creature-1970832","entityId":"entry-28167","position":[2884.9167,340.7695,2281.9567],"yaw":-5.44543,"spawnMask":3},{"id":"creature-1970833","entityId":"entry-28167","position":[2758.8667,345.0685,2342.1067],"yaw":-0.0174533,"spawnMask":3},{"id":"creature-1970834","entityId":"entry-28167","position":[2678.9667,346.1415,2409.1767],"yaw":-1.79769,"spawnMask":3},{"id":"creature-1970835","entityId":"entry-28167","position":[2681.8767,345.8815,2406.4767],"yaw":-6.12611,"spawnMask":3},{"id":"creature-1970836","entityId":"entry-28167","position":[2701.8567,346.4505,2446.6267],"yaw":-3.28122,"spawnMask":3},{"id":"creature-1970837","entityId":"entry-28167","position":[2856.2467,339.5005,2295.3467],"yaw":-6.03884,"spawnMask":3},{"id":"creature-1970838","entityId":"entry-28167","position":[2861.5067,338.2315,2384.8867],"yaw":-3.59538,"spawnMask":3},{"id":"creature-1970839","entityId":"entry-28167","position":[2834.6467,338.1225,2389.5267],"yaw":-1.8326,"spawnMask":3},{"id":"creature-1970841","entityId":"entry-28169","position":[2720.3867,344.0915,2401.6267],"yaw":-3.47321,"spawnMask":3},{"id":"creature-1970842","entityId":"entry-28169","position":[2703.4267,346.4525,2444.1467],"yaw":-5.13127,"spawnMask":3},{"id":"creature-1970843","entityId":"entry-28169","position":[2705.5567,338.4765,2516.0467],"yaw":-0.506145,"spawnMask":3},{"id":"creature-1970844","entityId":"entry-28169","position":[2856.4667,340.3505,2320.1867],"yaw":-1.79769,"spawnMask":3},{"id":"creature-1970845","entityId":"entry-28169","position":[2811.8367,344.5805,2286.9167],"yaw":-0.610865,"spawnMask":3},{"id":"creature-1970846","entityId":"entry-28169","position":[2799.7767,344.8585,2289.1667],"yaw":-6.03884,"spawnMask":3},{"id":"creature-1970847","entityId":"entry-28169","position":[2814.0367,344.3425,2289.0767],"yaw":-4.11898,"spawnMask":3},{"id":"creature-1970848","entityId":"entry-28169","position":[2792.1367,345.0935,2301.1867],"yaw":-5.48033,"spawnMask":3},{"id":"creature-1970849","entityId":"entry-27729","position":[2670.5067,334.0895,2751.3067],"yaw":-1.60792,"spawnMask":3},{"id":"creature-1970850","entityId":"entry-28169","position":[2799.0567,344.5835,2293.2867],"yaw":-3.08923,"spawnMask":3},{"id":"creature-1970851","entityId":"entry-28169","position":[2872.2467,338.8305,2357.0967],"yaw":-3.66519,"spawnMask":3},{"id":"creature-1970852","entityId":"entry-28169","position":[2887.2467,340.3505,2310.0167],"yaw":-5.13127,"spawnMask":3},{"id":"creature-1970853","entityId":"entry-28169","position":[2678.2367,344.4495,2488.1067],"yaw":-3.00197,"spawnMask":3},{"id":"creature-1970854","entityId":"entry-28169","position":[2796.7267,341.3665,2355.6567],"yaw":-2.77507,"spawnMask":3},{"id":"creature-1970855","entityId":"entry-28169","position":[2677.7367,344.8825,2485.4367],"yaw":-1.20428,"spawnMask":3},{"id":"creature-1970856","entityId":"entry-28169","position":[2886.4567,340.5405,2314.0667],"yaw":-2.41998,"spawnMask":3},{"id":"creature-1970858","entityId":"entry-28169","position":[2812.5367,344.4305,2303.3167],"yaw":-2.49582,"spawnMask":3},{"id":"creature-1970859","entityId":"entry-28169","position":[2872.0567,338.8625,2354.2567],"yaw":-5.48033,"spawnMask":3},{"id":"creature-1970860","entityId":"entry-28169","position":[2674.9267,345.2465,2465.1567],"yaw":-1.97222,"spawnMask":3},{"id":"creature-1970861","entityId":"entry-28169","position":[2661.1767,346.1715,2442.5267],"yaw":-1.74533,"spawnMask":3},{"id":"creature-1970862","entityId":"entry-28169","position":[2678.0267,345.1745,2466.8367],"yaw":-3.47321,"spawnMask":3},{"id":"creature-1970863","entityId":"entry-28169","position":[2854.4967,339.4135,2298.1267],"yaw":-2.58309,"spawnMask":3},{"id":"creature-1970881","entityId":"entry-27737","position":[2798.4767,340.3415,2507.0667],"yaw":-2.57143,"spawnMask":3},{"id":"creature-1970882","entityId":"entry-27737","position":[2776.4567,340.6705,2513.5767],"yaw":-5.1412,"spawnMask":3},{"id":"creature-1970883","entityId":"entry-27737","position":[2850.8667,331.9385,2454.4467],"yaw":-2.77098,"spawnMask":3},{"id":"creature-1970884","entityId":"entry-27737","position":[2846.8667,332.1455,2470.0967],"yaw":-0.150979,"spawnMask":3},{"id":"creature-1970885","entityId":"entry-27737","position":[2802.4767,339.2665,2497.0967],"yaw":-2.37491,"spawnMask":3},{"id":"creature-1970886","entityId":"entry-27737","position":[2844.4667,333.0515,2482.5967],"yaw":-1.88482,"spawnMask":3},{"id":"creature-1970887","entityId":"entry-27737","position":[2888.7667,336.2795,2487.5267],"yaw":-3.28122,"spawnMask":3},{"id":"creature-1970888","entityId":"entry-27737","position":[2659.0167,334.6905,2748.3067],"yaw":-3.0507,"spawnMask":3},{"id":"creature-1970889","entityId":"entry-27737","position":[2871.3767,334.6925,2483.9867],"yaw":-4.46804,"spawnMask":3},{"id":"creature-1970890","entityId":"entry-27737","position":[2814.8367,337.6815,2498.7367],"yaw":-0.726647,"spawnMask":3},{"id":"creature-1970891","entityId":"entry-27737","position":[2855.2867,332.4205,2477.7767],"yaw":-5.79717,"spawnMask":3},{"id":"creature-1970892","entityId":"entry-27737","position":[2834.4067,333.7575,2469.1067],"yaw":-4.00079,"spawnMask":3},{"id":"creature-1970893","entityId":"entry-27737","position":[2824.4667,335.2015,2487.2367],"yaw":-0.471632,"spawnMask":3},{"id":"creature-1970899","entityId":"entry-27745","position":[2811.3367,352.3105,2056.3967],"yaw":-4.62512,"spawnMask":3},{"id":"creature-1970900","entityId":"entry-27745","position":[2794.4667,351.5695,2068.4267],"yaw":-1.41372,"spawnMask":3},{"id":"creature-1970901","entityId":"entry-27745","position":[2811.5667,351.8835,2063.5267],"yaw":-4.55531,"spawnMask":3},{"id":"creature-1970902","entityId":"entry-27745","position":[2790.2167,351.9655,2048.6467],"yaw":-1.67552,"spawnMask":3},{"id":"creature-1970903","entityId":"entry-27745","position":[2790.1467,352.0805,2039.9567],"yaw":-1.50098,"spawnMask":3},{"id":"creature-1970904","entityId":"entry-27745","position":[2790.1167,352.2025,2031.3467],"yaw":-1.48353,"spawnMask":3},{"id":"creature-1970905","entityId":"entry-27745","position":[2810.9367,352.7315,2049.5867],"yaw":-4.7822,"spawnMask":3},{"id":"creature-1970906","entityId":"entry-27745","position":[2811.0867,350.9335,2219.6967],"yaw":-4.64258,"spawnMask":3},{"id":"creature-1970907","entityId":"entry-27745","position":[2799.8567,350.9185,2224.2767],"yaw":-1.51844,"spawnMask":3},{"id":"creature-1970908","entityId":"entry-27745","position":[2799.6067,351.1515,2219.5367],"yaw":-1.62316,"spawnMask":3},{"id":"creature-1970909","entityId":"entry-27745","position":[2811.2767,350.7295,2224.4267],"yaw":-4.7822,"spawnMask":3},{"id":"creature-1970910","entityId":"entry-27745","position":[2809.7467,352.5995,2031.0167],"yaw":-4.79966,"spawnMask":3},{"id":"creature-1970911","entityId":"entry-27745","position":[2794.7367,351.6235,2074.2267],"yaw":-1.5708,"spawnMask":3},{"id":"creature-1970912","entityId":"entry-27745","position":[2794.6767,351.4065,2080.2867],"yaw":-1.78024,"spawnMask":3},{"id":"creature-1970913","entityId":"entry-27745","position":[2810.1667,352.8365,2036.5767],"yaw":-4.7473,"spawnMask":3},{"id":"creature-1970914","entityId":"entry-27745","position":[2810.5067,352.8945,2042.7667],"yaw":-4.62512,"spawnMask":3},{"id":"creature-1970915","entityId":"entry-27745","position":[2790.1667,352.4125,2023.1467],"yaw":-1.50098,"spawnMask":3},{"id":"creature-1970916","entityId":"entry-27746","position":[2784.9967,353.0975,2031.5967],"yaw":-1.55334,"spawnMask":3},{"id":"creature-1970917","entityId":"entry-27746","position":[2785.0567,353.3035,2027.5567],"yaw":-1.44862,"spawnMask":3},{"id":"creature-1970918","entityId":"entry-27746","position":[2816.5167,353.5675,2038.5467],"yaw":-4.66003,"spawnMask":3},{"id":"creature-1970919","entityId":"entry-27746","position":[2784.8467,352.8745,2035.5767],"yaw":-1.53589,"spawnMask":3},{"id":"creature-1970920","entityId":"entry-27746","position":[2784.7167,352.6055,2039.7967],"yaw":-1.46608,"spawnMask":3},{"id":"creature-1970921","entityId":"entry-27746","position":[2816.2367,353.8305,2044.4067],"yaw":-4.66003,"spawnMask":3},{"id":"creature-1970922","entityId":"entry-27747","position":[2786.5167,352.0175,2055.6667],"yaw":-1.79769,"spawnMask":3},{"id":"creature-1970923","entityId":"entry-27747","position":[2786.3067,352.1585,2050.9267],"yaw":-1.55334,"spawnMask":3},{"id":"creature-1970924","entityId":"entry-27747","position":[2810.9767,351.0965,2215.4767],"yaw":-4.72984,"spawnMask":3},{"id":"creature-1970925","entityId":"entry-27747","position":[2799.7567,351.2635,2215.1567],"yaw":-1.48353,"spawnMask":3},{"id":"creature-1970926","entityId":"entry-27747","position":[2786.2167,352.2525,2046.3267],"yaw":-1.53589,"spawnMask":3},{"id":"creature-1970928","entityId":"entry-27752","position":[2814.8267,353.3945,2051.2567],"yaw":-4.72984,"spawnMask":3},{"id":"creature-1970929","entityId":"entry-27752","position":[2815.0167,352.8625,2059.2867],"yaw":-4.55531,"spawnMask":3},{"id":"creature-1970930","entityId":"entry-27752","position":[2814.9667,353.1635,2055.3367],"yaw":-4.62512,"spawnMask":3},{"id":"creature-1970935","entityId":"entry-26499","position":[2805.0667,350.5325,2098.4367],"yaw":-6.25562,"spawnMask":3},{"id":"creature-1970940","entityId":"entry-27737","position":[2652.5267,334.9725,2747.4567],"yaw":-4.59008,"spawnMask":3},{"id":"creature-1970941","entityId":"entry-27736","position":[2768.8167,333.6995,2720.6767],"yaw":-1.98415,"spawnMask":3},{"id":"creature-1970942","entityId":"entry-27729","position":[2780.8267,334.0135,2721.3967],"yaw":-2.69493,"spawnMask":3},{"id":"creature-1970943","entityId":"entry-27729","position":[2794.1267,335.9475,2697.1767],"yaw":-5.88365,"spawnMask":3},{"id":"creature-1970944","entityId":"entry-27729","position":[2744.3667,333.0945,2734.2267],"yaw":-4.95689,"spawnMask":3},{"id":"creature-1970945","entityId":"entry-27737","position":[2686.7467,334.9835,2739.6267],"yaw":-4.9883,"spawnMask":3},{"id":"creature-1970946","entityId":"entry-27737","position":[2688.5267,334.2475,2744.9067],"yaw":-0.531168,"spawnMask":3},{"id":"creature-1970947","entityId":"entry-27737","position":[2695.8667,333.4085,2750.3567],"yaw":-1.3794,"spawnMask":3},{"id":"creature-1970948","entityId":"entry-27737","position":[2696.9667,334.0865,2741.5067],"yaw":-3.24865,"spawnMask":3},{"id":"creature-1970949","entityId":"entry-27737","position":[2703.8167,334.2255,2737.5567],"yaw":-2.208,"spawnMask":3},{"id":"creature-1970950","entityId":"entry-27737","position":[2702.9367,333.6525,2743.4867],"yaw":-6.17425,"spawnMask":3},{"id":"creature-1970951","entityId":"entry-27737","position":[2710.5567,333.3115,2745.8367],"yaw":-1.29693,"spawnMask":3},{"id":"creature-1970952","entityId":"entry-27737","position":[2712.5567,333.8425,2738.3267],"yaw":-2.89129,"spawnMask":3},{"id":"creature-1970953","entityId":"entry-27737","position":[2718.6667,333.3945,2741.1667],"yaw":-0.00494862,"spawnMask":3},{"id":"creature-1970954","entityId":"entry-27737","position":[2721.9567,334.4155,2733.8967],"yaw":-2.09018,"spawnMask":3},{"id":"creature-1970955","entityId":"entry-27737","position":[2725.9567,333.1715,2738.9767],"yaw":-0.0991955,"spawnMask":3},{"id":"creature-1970956","entityId":"entry-27737","position":[2729.7767,332.8865,2742.9167],"yaw":-0.613631,"spawnMask":3},{"id":"creature-1970957","entityId":"entry-27737","position":[2729.6967,334.0795,2732.7767],"yaw":-2.29438,"spawnMask":3},{"id":"creature-1970958","entityId":"entry-27737","position":[2738.3267,332.9585,2736.8667],"yaw":-1.26551,"spawnMask":3},{"id":"creature-1970959","entityId":"entry-27737","position":[2744.9967,333.9335,2726.7867],"yaw":-2.17265,"spawnMask":3},{"id":"creature-1970960","entityId":"entry-27737","position":[2746.9067,333.1185,2732.4867],"yaw":-0.0991967,"spawnMask":3},{"id":"creature-1970961","entityId":"entry-27737","position":[2757.6767,333.1885,2726.8467],"yaw":-2.23941,"spawnMask":3},{"id":"creature-1970962","entityId":"entry-27737","position":[2753.0867,334.1775,2720.9567],"yaw":-3.24864,"spawnMask":3},{"id":"creature-1970963","entityId":"entry-27737","position":[2759.1667,334.0935,2718.7667],"yaw":-1.8899,"spawnMask":3},{"id":"creature-1970964","entityId":"entry-27737","position":[2758.4267,333.6865,2722.3067],"yaw":-5.93078,"spawnMask":3},{"id":"creature-1970965","entityId":"entry-27737","position":[2766.2567,333.0275,2728.1467],"yaw":-1.32442,"spawnMask":3},{"id":"creature-1970966","entityId":"entry-27737","position":[2768.9867,334.2415,2715.8267],"yaw":-2.89522,"spawnMask":3},{"id":"creature-1970967","entityId":"entry-27737","position":[2772.7967,333.8625,2723.3167],"yaw":-0.193446,"spawnMask":3},{"id":"creature-1970968","entityId":"entry-27737","position":[2776.4567,333.9785,2716.4867],"yaw":-2.4279,"spawnMask":3},{"id":"creature-1970969","entityId":"entry-27737","position":[2778.2467,335.5875,2709.4967],"yaw":-2.58106,"spawnMask":3},{"id":"creature-1970970","entityId":"entry-27737","position":[2790.4267,335.7535,2703.6567],"yaw":-2.43968,"spawnMask":3},{"id":"creature-1970971","entityId":"entry-27737","position":[2787.3167,334.5665,2711.4067],"yaw":-5.58128,"spawnMask":3},{"id":"creature-1970972","entityId":"entry-27737","position":[2787.7867,334.3705,2717.4567],"yaw":-0.0253715,"spawnMask":3},{"id":"creature-1970973","entityId":"entry-27737","position":[2782.0767,334.1785,2713.6667],"yaw":-4.33721,"spawnMask":3},{"id":"creature-1970974","entityId":"entry-27737","position":[2794.2967,335.1685,2710.8367],"yaw":-2.31481,"spawnMask":3},{"id":"creature-1970975","entityId":"entry-27737","position":[2794.6367,335.5925,2704.7467],"yaw":-2.22056,"spawnMask":3},{"id":"creature-1970976","entityId":"entry-27737","position":[2799.6167,335.9655,2708.4367],"yaw":-0.716519,"spawnMask":3},{"id":"creature-1970977","entityId":"entry-27737","position":[2797.2867,335.4495,2714.2167],"yaw":-5.29146,"spawnMask":3},{"id":"creature-1970978","entityId":"entry-27737","position":[2806.0867,337.0265,2707.3367],"yaw":-2.47581,"spawnMask":3},{"id":"creature-1970979","entityId":"entry-27737","position":[2811.1667,338.0765,2699.4567],"yaw":-2.93134,"spawnMask":3},{"id":"creature-1970980","entityId":"entry-27737","position":[2808.3167,338.0895,2692.7667],"yaw":-3.99556,"spawnMask":3},{"id":"creature-1970981","entityId":"entry-27737","position":[2804.1867,337.1745,2697.4067],"yaw":-5.51923,"spawnMask":3},{"id":"creature-1970982","entityId":"entry-27737","position":[2802.1167,337.7045,2690.8367],"yaw":-3.33975,"spawnMask":3},{"id":"creature-1970983","entityId":"entry-27737","position":[2796.1067,336.2735,2692.7967],"yaw":-5.03228,"spawnMask":3},{"id":"creature-1970984","entityId":"entry-27737","position":[2799.0067,336.4355,2698.6167],"yaw":-0.123542,"spawnMask":3},{"id":"creature-1970985","entityId":"entry-27737","position":[2801.7667,336.5235,2702.5867],"yaw":-0.606562,"spawnMask":3},{"id":"creature-1970986","entityId":"entry-27737","position":[2807.2167,337.4025,2703.1667],"yaw":-1.58046,"spawnMask":3},{"id":"creature-1970987","entityId":"entry-27737","position":[2812.1267,338.4215,2704.1267],"yaw":-1.54276,"spawnMask":3},{"id":"creature-1970988","entityId":"entry-27729","position":[2885.4567,338.3055,2673.0367],"yaw":-4.76446,"spawnMask":3},{"id":"creature-1970989","entityId":"entry-28201","position":[2883.0267,338.4505,2670.9067],"yaw":-2.02342,"spawnMask":3},{"id":"creature-1970990","entityId":"entry-27734","position":[2917.0367,337.9175,2652.4767],"yaw":-5.06684,"spawnMask":3},{"id":"creature-1970991","entityId":"entry-28249","position":[2915.5267,337.6935,2649.6067],"yaw":-5.04721,"spawnMask":3},{"id":"creature-1970992","entityId":"entry-27729","position":[2904.9767,337.2965,2656.4067],"yaw":-5.10611,"spawnMask":3},{"id":"creature-1970993","entityId":"entry-27731","position":[2936.5667,338.2115,2589.1067],"yaw":-0.169881,"spawnMask":3},{"id":"creature-1970994","entityId":"entry-27731","position":[2933.9967,338.0795,2589.6367],"yaw":-0.209151,"spawnMask":3},{"id":"creature-1970995","entityId":"entry-27731","position":[2938.9867,338.4265,2588.5767],"yaw":-0.205226,"spawnMask":3},{"id":"creature-1970996","entityId":"entry-27729","position":[2944.8867,338.5225,2628.4367],"yaw":-5.37314,"spawnMask":3},{"id":"creature-1970997","entityId":"entry-27737","position":[2877.7767,338.6955,2665.8967],"yaw":-5.75014,"spawnMask":3},{"id":"creature-1970998","entityId":"entry-27737","position":[2884.4067,337.6725,2653.7167],"yaw":-3.35074,"spawnMask":3},{"id":"creature-1970999","entityId":"entry-27737","position":[2885.1867,337.3515,2660.1267],"yaw":-0.110976,"spawnMask":3},{"id":"creature-1971000","entityId":"entry-27737","position":[2883.5567,338.0305,2666.1967],"yaw":-5.76584,"spawnMask":3},{"id":"creature-1971001","entityId":"entry-27737","position":[2890.0767,338.1215,2669.7067],"yaw":-0.939572,"spawnMask":3},{"id":"creature-1971002","entityId":"entry-27737","position":[2898.1767,337.8405,2670.7367],"yaw":-1.50506,"spawnMask":3},{"id":"creature-1971003","entityId":"entry-27737","position":[2895.9167,337.8305,2664.8367],"yaw":-3.51175,"spawnMask":3},{"id":"creature-1971004","entityId":"entry-27737","position":[2895.2967,337.1275,2657.4567],"yaw":-2.59284,"spawnMask":3},{"id":"creature-1971005","entityId":"entry-27737","position":[2901.8367,336.8185,2653.9467],"yaw":-2.03128,"spawnMask":3},{"id":"creature-1971006","entityId":"entry-27737","position":[2905.8967,337.1175,2647.0567],"yaw":-2.69494,"spawnMask":3},{"id":"creature-1971007","entityId":"entry-27737","position":[2908.3367,337.1515,2653.8567],"yaw":-0.31518,"spawnMask":3},{"id":"creature-1971008","entityId":"entry-27737","position":[2907.5767,337.6635,2660.0167],"yaw":-5.91507,"spawnMask":3},{"id":"creature-1971009","entityId":"entry-27737","position":[2906.1567,338.1925,2667.5467],"yaw":-0.0088737,"spawnMask":3},{"id":"creature-1971010","entityId":"entry-27737","position":[2907.1467,338.7995,2673.9267],"yaw":-0.48404,"spawnMask":3},{"id":"creature-1971011","entityId":"entry-27737","position":[2910.4767,338.5275,2666.6967],"yaw":-2.80096,"spawnMask":3},{"id":"creature-1971012","entityId":"entry-27737","position":[2915.3467,338.4275,2664.1867],"yaw":-1.26551,"spawnMask":3},{"id":"creature-1971013","entityId":"entry-27737","position":[2922.6667,339.1075,2663.8567],"yaw":-2.0784,"spawnMask":3},{"id":"creature-1971014","entityId":"entry-27737","position":[2917.6967,338.0225,2657.8167],"yaw":-3.86125,"spawnMask":3},{"id":"creature-1971015","entityId":"entry-27737","position":[2914.3767,337.6685,2651.5767],"yaw":-3.33896,"spawnMask":3},{"id":"creature-1971016","entityId":"entry-27737","position":[2911.0467,337.6815,2645.9567],"yaw":-3.72774,"spawnMask":3},{"id":"creature-1971017","entityId":"entry-27737","position":[2923.5867,338.3765,2649.4167],"yaw":-1.74067,"spawnMask":3},{"id":"creature-1971018","entityId":"entry-27737","position":[2921.3367,338.0335,2638.9567],"yaw":-3.62563,"spawnMask":3},{"id":"creature-1971019","entityId":"entry-27737","position":[2924.7967,337.9975,2636.3267],"yaw":-1.92917,"spawnMask":3},{"id":"creature-1971020","entityId":"entry-27737","position":[2928.2467,338.2645,2643.3167],"yaw":-6.06821,"spawnMask":3},{"id":"creature-1971021","entityId":"entry-27737","position":[2935.1467,338.8505,2644.7067],"yaw":-1.35975,"spawnMask":3},{"id":"creature-1971022","entityId":"entry-27737","position":[2931.6867,338.0795,2638.1167],"yaw":-3.33895,"spawnMask":3},{"id":"creature-1971023","entityId":"entry-27737","position":[2933.1867,337.2855,2630.7167],"yaw":-2.73812,"spawnMask":3},{"id":"creature-1971024","entityId":"entry-27737","position":[2939.3067,338.0045,2630.0167],"yaw":-0.95527,"spawnMask":3},{"id":"creature-1971025","entityId":"entry-27737","position":[2941.3967,338.5475,2637.9367],"yaw":-0.173799,"spawnMask":3},{"id":"creature-1971026","entityId":"entry-27737","position":[2948.5967,338.7915,2639.6967],"yaw":-1.59537,"spawnMask":3},{"id":"creature-1971027","entityId":"entry-27737","position":[2955.7967,339.2605,2636.4067],"yaw":-1.62286,"spawnMask":3},{"id":"creature-1971028","entityId":"entry-27737","position":[2951.9767,339.3365,2630.0267],"yaw":-3.66882,"spawnMask":3},{"id":"creature-1971029","entityId":"entry-27737","position":[2945.6867,338.5355,2622.3967],"yaw":-3.9123,"spawnMask":3},{"id":"creature-1971030","entityId":"entry-27737","position":[2938.9867,337.8565,2618.4367],"yaw":-4.47778,"spawnMask":3},{"id":"creature-1971031","entityId":"entry-27737","position":[2936.1167,337.6215,2613.6567],"yaw":-3.67667,"spawnMask":3},{"id":"creature-1971032","entityId":"entry-27737","position":[2942.6367,338.4155,2614.2367],"yaw":-1.31655,"spawnMask":3},{"id":"creature-1971033","entityId":"entry-27737","position":[2951.1967,338.9775,2618.8567],"yaw":-0.857092,"spawnMask":3},{"id":"creature-1971034","entityId":"entry-27737","position":[2948.1467,338.8605,2613.0067],"yaw":-3.64918,"spawnMask":3},{"id":"creature-1971035","entityId":"entry-27737","position":[2943.2867,338.7155,2605.8267],"yaw":-3.90836,"spawnMask":3},{"id":"creature-1971036","entityId":"entry-27737","position":[2934.4167,338.0795,2599.1267],"yaw":-4.00261,"spawnMask":3},{"id":"creature-1971037","entityId":"entry-27737","position":[2936.5667,338.1885,2606.0267],"yaw":-0.342657,"spawnMask":3},{"id":"encounter-293","entityId":"entry-26529","position":[2049.6539,256.0775,1911.356],"yaw":0,"spawnMask":1},{"id":"encounter-294","entityId":"entry-26530","position":[2048.3309,256.8975,1974.0755],"yaw":0,"spawnMask":1},{"id":"encounter-295","entityId":"entry-26532","position":[2049.8618,257.7175,2032.0918],"yaw":0,"spawnMask":1},{"id":"encounter-296","entityId":"entry-26533","position":[2050.4698,258.5375,2096.9143],"yaw":0,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"encounter-293","name":"Meathook","position":[2049.6539,256.0775,1911.356]},{"id":"encounter-294","name":"Salram the Fleshcrafter","position":[2048.3309,256.8975,1974.0755]},{"id":"encounter-295","name":"Chrono-Lord Epoch","position":[2049.8618,257.7175,2032.0918]},{"id":"encounter-296","name":"Mal'ganis","position":[2050.4698,258.5375,2096.9143]}],"objectiveOrder":[{"id":"encounter-293","name":"Meathook","position":[2049.6539,256.0775,1911.356]},{"id":"encounter-294","name":"Salram the Fleshcrafter","position":[2048.3309,256.8975,1974.0755]},{"id":"encounter-295","name":"Chrono-Lord Epoch","position":[2049.8618,257.7175,2032.0918]},{"id":"encounter-296","name":"Mal'ganis","position":[2050.4698,258.5375,2096.9143]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":1836,"id":191103,"map":595,"orientation":0.261799,"phaseMask":1,"position_x":2317.92,"position_y":1055.97,"position_z":138.809,"rotation0":0.0432458,"rotation1":0.00569248,"rotation2":0.130402,"rotation3":0.990501,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":1837,"id":191104,"map":595,"orientation":4.97419,"phaseMask":1,"position_x":2319.24,"position_y":1054.98,"position_z":139.257,"rotation0":0,"rotation1":0,"rotation2":-0.608761,"rotation3":0.793354,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":1838,"id":191105,"map":595,"orientation":1.83259,"phaseMask":1,"position_x":2316.44,"position_y":1054.27,"position_z":139.604,"rotation0":0.0794587,"rotation1":0.103553,"rotation2":0.786566,"rotation3":0.603554,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2653,"id":180411,"map":595,"orientation":3.6652,"phaseMask":1,"position_x":1549.68,"position_y":594.639,"position_z":107.305,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2654,"id":180411,"map":595,"orientation":1.18682,"phaseMask":1,"position_x":1596.45,"position_y":671.198,"position_z":112.61,"rotation0":0,"rotation1":0,"rotation2":0.559193,"rotation3":0.829038,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2655,"id":180411,"map":595,"orientation":3.14159,"phaseMask":1,"position_x":2025.54,"position_y":1287.3,"position_z":150.196,"rotation0":0,"rotation1":0,"rotation2":-1,"rotation3":0,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2656,"id":180411,"map":595,"orientation":5.55015,"phaseMask":1,"position_x":2196.7,"position_y":1223.45,"position_z":143.686,"rotation0":0,"rotation1":0,"rotation2":-0.358368,"rotation3":0.93358,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2657,"id":180411,"map":595,"orientation":1.90241,"phaseMask":1,"position_x":2398.39,"position_y":1206.93,"position_z":150.749,"rotation0":0,"rotation1":0,"rotation2":0.814116,"rotation3":0.580703,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2658,"id":180411,"map":595,"orientation":1.98967,"phaseMask":1,"position_x":2417.49,"position_y":1209.12,"position_z":150.519,"rotation0":0,"rotation1":0,"rotation2":0.83867,"rotation3":0.54464,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2659,"id":180411,"map":595,"orientation":1.8675,"phaseMask":1,"position_x":2435.39,"position_y":1214.04,"position_z":150.666,"rotation0":0,"rotation1":0,"rotation2":0.803857,"rotation3":0.594823,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":2775,"id":180523,"map":595,"orientation":3.07177,"phaseMask":1,"position_x":1569.01,"position_y":606.979,"position_z":100.176,"rotation0":0,"rotation1":0,"rotation2":0.999391,"rotation3":0.0349061,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67452,"id":175369,"map":595,"orientation":3.12412,"phaseMask":1,"position_x":1818.82,"position_y":627.569,"position_z":107.792,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67453,"id":175370,"map":595,"orientation":-2.8536,"phaseMask":1,"position_x":1904.85,"position_y":602.359,"position_z":108.435,"rotation0":0,"rotation1":0,"rotation2":-0.98965,"rotation3":0.143499,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67454,"id":188685,"map":595,"orientation":1.87623,"phaseMask":1,"position_x":2349.09,"position_y":1227.32,"position_z":130.269,"rotation0":0,"rotation1":0,"rotation2":0.806445,"rotation3":0.591309,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67455,"id":188686,"map":595,"orientation":1.78956,"phaseMask":1,"position_x":2473.27,"position_y":1121.36,"position_z":149.963,"rotation0":0,"rotation1":0,"rotation2":0.780071,"rotation3":0.62569,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67456,"id":192526,"map":595,"orientation":-1.11504,"phaseMask":1,"position_x":1427.33,"position_y":563.926,"position_z":39.3807,"rotation0":0,"rotation1":0,"rotation2":-0.529083,"rotation3":0.84857,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67457,"id":188687,"map":595,"orientation":1.87623,"phaseMask":1,"position_x":2342.43,"position_y":1248.43,"position_z":131.507,"rotation0":0,"rotation1":0,"rotation2":0.806445,"rotation3":0.591309,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67458,"id":192527,"map":595,"orientation":-1.11504,"phaseMask":1,"position_x":1427.33,"position_y":563.926,"position_z":39.3807,"rotation0":0,"rotation1":0,"rotation2":-0.529083,"rotation3":0.84857,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67459,"id":192530,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":2238.48,"position_y":1474.17,"position_z":134.196,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67460,"id":192531,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":2238.48,"position_y":1474.17,"position_z":134.196,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67461,"id":191015,"map":595,"orientation":1.67499,"phaseMask":1,"position_x":1560.27,"position_y":611.911,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":0.742968,"rotation3":0.669327,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67462,"id":191788,"map":595,"orientation":0.497418,"phaseMask":1,"position_x":2241.28,"position_y":1475.46,"position_z":131.855,"rotation0":0,"rotation1":0,"rotation2":0.246153,"rotation3":0.969231,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67463,"id":187710,"map":595,"orientation":2.99559,"phaseMask":1,"position_x":2152.99,"position_y":1341.79,"position_z":132.231,"rotation0":0.00949192,"rotation1":0.0690842,"rotation2":0.994931,"rotation3":0.072451,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67464,"id":187711,"map":595,"orientation":-2.67855,"phaseMask":1,"position_x":2325.64,"position_y":1422.77,"position_z":128.04,"rotation0":0,"rotation1":0,"rotation2":-0.973318,"rotation3":0.229459,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67465,"id":187712,"map":595,"orientation":3.14159,"phaseMask":1,"position_x":2256.25,"position_y":1331.31,"position_z":124.195,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67466,"id":187713,"map":595,"orientation":-2.83616,"phaseMask":1,"position_x":2328.47,"position_y":1288.68,"position_z":135.475,"rotation0":0,"rotation1":0,"rotation2":-0.988361,"rotation3":0.152123,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46368,"animprogress":255,"areaId":0,"guid":67467,"id":187714,"map":595,"orientation":3.01695,"phaseMask":1,"position_x":2306.79,"position_y":1286.48,"position_z":130.455,"rotation0":-0.0154276,"rotation1":0.115665,"rotation2":0.991075,"rotation3":0.0644568,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67468,"id":187715,"map":595,"orientation":-3.06302,"phaseMask":1,"position_x":2304.01,"position_y":1333.41,"position_z":131.264,"rotation0":0,"rotation1":0,"rotation2":-0.999228,"rotation3":0.0392762,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67469,"id":187460,"map":595,"orientation":-3.05428,"phaseMask":1,"position_x":1690.29,"position_y":1299.42,"position_z":155.037,"rotation0":0,"rotation1":0,"rotation2":-0.999047,"rotation3":0.0436424,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67470,"id":187460,"map":595,"orientation":-0.244344,"phaseMask":1,"position_x":1698.47,"position_y":853.909,"position_z":124.357,"rotation0":0,"rotation1":0,"rotation2":-0.121868,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67471,"id":187460,"map":595,"orientation":2.99322,"phaseMask":1,"position_x":1636.68,"position_y":864.953,"position_z":119.56,"rotation0":0,"rotation1":0,"rotation2":0.997249,"rotation3":0.0741182,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67472,"id":187460,"map":595,"orientation":-2.7838,"phaseMask":1,"position_x":1610.61,"position_y":895.874,"position_z":128.802,"rotation0":0,"rotation1":0,"rotation2":-0.984041,"rotation3":0.177944,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67473,"id":187460,"map":595,"orientation":2.9845,"phaseMask":1,"position_x":1612.94,"position_y":816.432,"position_z":121.184,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784656,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67474,"id":187460,"map":595,"orientation":-3.09792,"phaseMask":1,"position_x":1599.79,"position_y":749.444,"position_z":114.669,"rotation0":0,"rotation1":0,"rotation2":-0.999762,"rotation3":0.0218346,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67475,"id":187461,"map":595,"orientation":-1.76278,"phaseMask":1,"position_x":1690.06,"position_y":1298.56,"position_z":155.037,"rotation0":0,"rotation1":0,"rotation2":-0.771624,"rotation3":0.636079,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67476,"id":187461,"map":595,"orientation":1.04719,"phaseMask":1,"position_x":1698.97,"position_y":854.654,"position_z":124.357,"rotation0":0,"rotation1":0,"rotation2":0.499997,"rotation3":0.866027,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67477,"id":187461,"map":595,"orientation":-1.9984,"phaseMask":1,"position_x":1636.26,"position_y":864.164,"position_z":119.56,"rotation0":0,"rotation1":0,"rotation2":-0.841038,"rotation3":0.540975,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67478,"id":187461,"map":595,"orientation":-1.49226,"phaseMask":1,"position_x":1610.63,"position_y":894.979,"position_z":128.802,"rotation0":0,"rotation1":0,"rotation2":-0.678802,"rotation3":0.734321,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67479,"id":187461,"map":595,"orientation":-2.00713,"phaseMask":1,"position_x":1612.51,"position_y":815.647,"position_z":121.184,"rotation0":0,"rotation1":0,"rotation2":-0.843392,"rotation3":0.537299,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67480,"id":187461,"map":595,"orientation":-1.80642,"phaseMask":1,"position_x":1599.53,"position_y":748.589,"position_z":114.669,"rotation0":0,"rotation1":0,"rotation2":-0.785318,"rotation3":0.619092,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67481,"id":187462,"map":595,"orientation":1.35263,"phaseMask":1,"position_x":1604.93,"position_y":742.246,"position_z":114.748,"rotation0":0,"rotation1":0,"rotation2":0.625923,"rotation3":0.779885,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67482,"id":187719,"map":595,"orientation":-2.76634,"phaseMask":1,"position_x":2360.08,"position_y":1067.78,"position_z":142.914,"rotation0":0,"rotation1":0,"rotation2":-0.98245,"rotation3":0.186527,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67483,"id":187463,"map":595,"orientation":4.33714,"phaseMask":1,"position_x":1641.48,"position_y":866.026,"position_z":119.631,"rotation0":0,"rotation1":0,"rotation2":-0.82659,"rotation3":0.562805,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67484,"id":187720,"map":595,"orientation":2.23402,"phaseMask":1,"position_x":2315.42,"position_y":1171.69,"position_z":141.652,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67485,"id":187464,"map":595,"orientation":4.31969,"phaseMask":1,"position_x":1643.87,"position_y":865.037,"position_z":119.631,"rotation0":0,"rotation1":0,"rotation2":-0.83147,"rotation3":0.55557,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67486,"id":187721,"map":595,"orientation":2.30383,"phaseMask":1,"position_x":2359.84,"position_y":1177.94,"position_z":137.367,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67487,"id":187465,"map":595,"orientation":4.29351,"phaseMask":1,"position_x":1646.03,"position_y":864.07,"position_z":119.631,"rotation0":0,"rotation1":0,"rotation2":-0.838671,"rotation3":0.544639,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67488,"id":187722,"map":595,"orientation":1.16937,"phaseMask":1,"position_x":2242.3,"position_y":1150.53,"position_z":141.653,"rotation0":0,"rotation1":0,"rotation2":0.551937,"rotation3":0.833886,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67489,"id":187466,"map":595,"orientation":1.16064,"phaseMask":1,"position_x":1640.35,"position_y":856.907,"position_z":119.64,"rotation0":0,"rotation1":0,"rotation2":0.548293,"rotation3":0.836286,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67490,"id":187723,"map":595,"orientation":-2.70526,"phaseMask":1,"position_x":2310.16,"position_y":1454.54,"position_z":127.775,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67491,"id":187467,"map":595,"orientation":-1.8675,"phaseMask":1,"position_x":1646.7,"position_y":733.268,"position_z":118.533,"rotation0":0,"rotation1":0,"rotation2":-0.803856,"rotation3":0.594824,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67492,"id":187724,"map":595,"orientation":3.16245,"phaseMask":1,"position_x":2423.7,"position_y":1186.31,"position_z":148.062,"rotation0":0,"rotation1":0,"rotation2":-0.999946,"rotation3":0.0104268,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67493,"id":187468,"map":595,"orientation":0.322884,"phaseMask":1,"position_x":1647.51,"position_y":732.776,"position_z":118.533,"rotation0":0,"rotation1":0,"rotation2":0.160742,"rotation3":0.986997,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67494,"id":187725,"map":595,"orientation":3.75549,"phaseMask":1,"position_x":2428.18,"position_y":1222.3,"position_z":134.052,"rotation0":0,"rotation1":0,"rotation2":-0.953259,"rotation3":0.302153,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67495,"id":187469,"map":595,"orientation":1.61443,"phaseMask":1,"position_x":1646.81,"position_y":733.896,"position_z":113.616,"rotation0":0,"rotation1":0,"rotation2":0.722364,"rotation3":0.691513,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67496,"id":187726,"map":595,"orientation":1.55949,"phaseMask":1,"position_x":2419.85,"position_y":1202.04,"position_z":134.043,"rotation0":0,"rotation1":0,"rotation2":0.703096,"rotation3":0.711095,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67497,"id":187470,"map":595,"orientation":-1.8675,"phaseMask":1,"position_x":1646.49,"position_y":733.255,"position_z":113.616,"rotation0":0,"rotation1":0,"rotation2":-0.803856,"rotation3":0.594824,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67498,"id":187727,"map":595,"orientation":1.22476,"phaseMask":1,"position_x":2409.83,"position_y":1199.86,"position_z":134.052,"rotation0":0,"rotation1":0,"rotation2":0.574817,"rotation3":0.818282,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67499,"id":187471,"map":595,"orientation":0.322884,"phaseMask":1,"position_x":1647.3,"position_y":732.763,"position_z":113.616,"rotation0":0,"rotation1":0,"rotation2":0.160742,"rotation3":0.986997,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67500,"id":187728,"map":595,"orientation":3.16245,"phaseMask":1,"position_x":2519.31,"position_y":1122.56,"position_z":143.679,"rotation0":0,"rotation1":0,"rotation2":-0.999946,"rotation3":0.0104268,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67501,"id":187729,"map":595,"orientation":1.74533,"phaseMask":1,"position_x":2130.79,"position_y":1228.54,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.766044,"rotation3":0.642789,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67502,"id":187730,"map":595,"orientation":1.07338,"phaseMask":1,"position_x":2134.74,"position_y":1233.79,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.511292,"rotation3":0.859407,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67503,"id":187731,"map":595,"orientation":1.09083,"phaseMask":1,"position_x":2128.01,"position_y":1221.9,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67504,"id":187732,"map":595,"orientation":4.24988,"phaseMask":1,"position_x":2130.22,"position_y":1231.01,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.850351,"rotation3":0.526215,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67505,"id":187733,"map":595,"orientation":5.76831,"phaseMask":1,"position_x":2125.94,"position_y":1231.19,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.254601,"rotation3":0.967046,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67506,"id":187734,"map":595,"orientation":1.10828,"phaseMask":1,"position_x":2128.6,"position_y":1227.86,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.526214,"rotation3":0.850352,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67507,"id":187735,"map":595,"orientation":2.67908,"phaseMask":1,"position_x":2137.14,"position_y":1234.36,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67508,"id":187736,"map":595,"orientation":4.19752,"phaseMask":1,"position_x":2137.04,"position_y":1238.32,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.863835,"rotation3":0.503774,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67509,"id":187737,"map":595,"orientation":2.67908,"phaseMask":1,"position_x":2138.05,"position_y":1236.35,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67510,"id":187738,"map":595,"orientation":4.23242,"phaseMask":1,"position_x":2139.01,"position_y":1226.39,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.854912,"rotation3":0.518773,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67511,"id":187739,"map":595,"orientation":4.24988,"phaseMask":1,"position_x":2128.48,"position_y":1232.07,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.850351,"rotation3":0.526215,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67512,"id":187740,"map":595,"orientation":4.19752,"phaseMask":1,"position_x":2128.9,"position_y":1242.42,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.863835,"rotation3":0.503774,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67513,"id":187741,"map":595,"orientation":5.82068,"phaseMask":1,"position_x":2133.69,"position_y":1236.11,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.229199,"rotation3":0.973379,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67514,"id":187742,"map":595,"orientation":2.67908,"phaseMask":1,"position_x":2128.97,"position_y":1238.59,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67515,"id":187743,"map":595,"orientation":2.67908,"phaseMask":1,"position_x":2129.9,"position_y":1240.53,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.973379,"rotation3":0.229201,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67516,"id":187744,"map":595,"orientation":2.62672,"phaseMask":1,"position_x":2123.28,"position_y":1225.72,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.967046,"rotation3":0.254602,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67517,"id":187745,"map":595,"orientation":4.23242,"phaseMask":1,"position_x":2134.62,"position_y":1217.23,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":-0.854912,"rotation3":0.518773,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67518,"id":187746,"map":595,"orientation":1.07338,"phaseMask":1,"position_x":2126.58,"position_y":1238.08,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.511292,"rotation3":0.859407,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67519,"id":187747,"map":595,"orientation":5.82068,"phaseMask":1,"position_x":2134.55,"position_y":1237.96,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.229199,"rotation3":0.973379,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67520,"id":187748,"map":595,"orientation":5.82068,"phaseMask":1,"position_x":2125.55,"position_y":1240.25,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.229199,"rotation3":0.973379,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67521,"id":187749,"map":595,"orientation":2.62672,"phaseMask":1,"position_x":2130.22,"position_y":1222.38,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.967046,"rotation3":0.254602,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67522,"id":187750,"map":595,"orientation":5.76831,"phaseMask":1,"position_x":2136.94,"position_y":1225.81,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.254601,"rotation3":0.967046,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67523,"id":187751,"map":595,"orientation":1.09083,"phaseMask":1,"position_x":2137.64,"position_y":1223.86,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67524,"id":187752,"map":595,"orientation":5.76831,"phaseMask":1,"position_x":2132.38,"position_y":1216.6,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":-0.254601,"rotation3":0.967046,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67525,"id":187753,"map":595,"orientation":1.09083,"phaseMask":1,"position_x":2133.16,"position_y":1214.46,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67526,"id":187754,"map":595,"orientation":4.23242,"phaseMask":1,"position_x":2113.53,"position_y":1227.9,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":-0.854912,"rotation3":0.518773,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67527,"id":187498,"map":595,"orientation":3.20274,"phaseMask":1,"position_x":1644.12,"position_y":736.947,"position_z":113.547,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67528,"id":187755,"map":595,"orientation":1.09083,"phaseMask":1,"position_x":2121.02,"position_y":1225.25,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67529,"id":187499,"map":595,"orientation":3.20274,"phaseMask":1,"position_x":1643.86,"position_y":741.172,"position_z":113.547,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67530,"id":187756,"map":595,"orientation":1.09083,"phaseMask":1,"position_x":2111.88,"position_y":1225.11,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67531,"id":187500,"map":595,"orientation":3.20274,"phaseMask":1,"position_x":1643.99,"position_y":739.009,"position_z":113.547,"rotation0":0,"rotation1":0,"rotation2":-0.999533,"rotation3":0.0305673,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67532,"id":187757,"map":595,"orientation":2.62672,"phaseMask":1,"position_x":2114.29,"position_y":1225.73,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":0.967046,"rotation3":0.254602,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67533,"id":187501,"map":595,"orientation":4.77348,"phaseMask":1,"position_x":1642.43,"position_y":742.339,"position_z":113.547,"rotation0":0,"rotation1":0,"rotation2":-0.685183,"rotation3":0.728371,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67534,"id":187758,"map":595,"orientation":5.76831,"phaseMask":1,"position_x":2127.42,"position_y":1223.83,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":-0.254601,"rotation3":0.967046,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67535,"id":187502,"map":595,"orientation":4.77348,"phaseMask":1,"position_x":1640.05,"position_y":742.193,"position_z":113.547,"rotation0":0,"rotation1":0,"rotation2":-0.685183,"rotation3":0.728371,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67536,"id":187759,"map":595,"orientation":5.76831,"phaseMask":1,"position_x":2120.46,"position_y":1227.06,"position_z":140.942,"rotation0":0,"rotation1":0,"rotation2":-0.254601,"rotation3":0.967046,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67537,"id":187503,"map":595,"orientation":1.07338,"phaseMask":1,"position_x":1646.9,"position_y":729.666,"position_z":118.324,"rotation0":0,"rotation1":0,"rotation2":0.511293,"rotation3":0.859406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67538,"id":187760,"map":595,"orientation":5.82068,"phaseMask":1,"position_x":2126.51,"position_y":1242.1,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":-0.229199,"rotation3":0.973379,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":52237,"animprogress":255,"areaId":0,"guid":67539,"id":187504,"map":595,"orientation":2.88851,"phaseMask":1,"position_x":1648.82,"position_y":730.229,"position_z":118.324,"rotation0":0,"rotation1":0,"rotation2":0.992004,"rotation3":0.126203,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67540,"id":187761,"map":595,"orientation":1.10828,"phaseMask":1,"position_x":2126.72,"position_y":1228.75,"position_z":133.686,"rotation0":0,"rotation1":0,"rotation2":0.526214,"rotation3":0.850352,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67541,"id":187505,"map":595,"orientation":1.02921,"phaseMask":1,"position_x":1547.08,"position_y":573.699,"position_z":100.256,"rotation0":0,"rotation1":0,"rotation2":0.492191,"rotation3":0.870487,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67542,"id":187762,"map":595,"orientation":5.25668,"phaseMask":1,"position_x":2376.58,"position_y":1170.94,"position_z":144.417,"rotation0":0,"rotation1":0,"rotation2":-0.491012,"rotation3":0.871153,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67543,"id":187506,"map":595,"orientation":-0.375775,"phaseMask":1,"position_x":1548.43,"position_y":573.654,"position_z":100.256,"rotation0":0,"rotation1":0,"rotation2":-0.186784,"rotation3":0.982401,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67544,"id":187507,"map":595,"orientation":0.959399,"phaseMask":1,"position_x":1570.56,"position_y":595.492,"position_z":99.7284,"rotation0":0,"rotation1":0,"rotation2":0.461513,"rotation3":0.887134,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67545,"id":187508,"map":595,"orientation":-2.53126,"phaseMask":1,"position_x":1570.81,"position_y":596.986,"position_z":99.7284,"rotation0":0,"rotation1":0,"rotation2":-0.953797,"rotation3":0.300452,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67546,"id":187509,"map":595,"orientation":0.025649,"phaseMask":1,"position_x":1572.29,"position_y":596.915,"position_z":99.7284,"rotation0":0,"rotation1":0,"rotation2":0.0128241,"rotation3":0.999918,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67547,"id":187510,"map":595,"orientation":2.66109,"phaseMask":1,"position_x":1571.49,"position_y":598.279,"position_z":99.7284,"rotation0":0,"rotation1":0,"rotation2":0.971278,"rotation3":0.237947,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67548,"id":187511,"map":595,"orientation":3.69085,"phaseMask":1,"position_x":1568.19,"position_y":601.47,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":-0.962526,"rotation3":0.271188,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67549,"id":187512,"map":595,"orientation":4.31044,"phaseMask":1,"position_x":1566.55,"position_y":602.633,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":-0.834031,"rotation3":0.551717,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67550,"id":187513,"map":595,"orientation":4.81658,"phaseMask":1,"position_x":1564.51,"position_y":603.022,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":-0.669327,"rotation3":0.742968,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67551,"id":187514,"map":595,"orientation":1.86697,"phaseMask":1,"position_x":1566.37,"position_y":597.473,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":0.803699,"rotation3":0.595037,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67552,"id":187515,"map":595,"orientation":0.697602,"phaseMask":1,"position_x":1562.49,"position_y":599.079,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":0.341771,"rotation3":0.939783,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67553,"id":187516,"map":595,"orientation":3.8392,"phaseMask":1,"position_x":1562.3,"position_y":615.854,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":-0.939782,"rotation3":0.341774,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67554,"id":187517,"map":595,"orientation":4.20572,"phaseMask":1,"position_x":1560.53,"position_y":616.986,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":-0.861763,"rotation3":0.507311,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67555,"id":191102,"map":595,"orientation":-1.5708,"phaseMask":1,"position_x":2110.18,"position_y":1301.58,"position_z":143.756,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67556,"id":187518,"map":595,"orientation":5.00857,"phaseMask":1,"position_x":1558.42,"position_y":617.46,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":-0.595036,"rotation3":0.803699,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67557,"id":187519,"map":595,"orientation":0.549248,"phaseMask":1,"position_x":1556.6,"position_y":613.462,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":0.271185,"rotation3":0.962527,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67558,"id":187520,"map":595,"orientation":1.16884,"phaseMask":1,"position_x":1558.24,"position_y":612.299,"position_z":99.7785,"rotation0":0,"rotation1":0,"rotation2":0.551716,"rotation3":0.834032,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67559,"id":187521,"map":595,"orientation":4.90385,"phaseMask":1,"position_x":1563.3,"position_y":592.68,"position_z":99.7856,"rotation0":0,"rotation1":0,"rotation2":-0.636282,"rotation3":0.771457,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67560,"id":191106,"map":595,"orientation":-1.48353,"phaseMask":1,"position_x":2281.72,"position_y":1170.19,"position_z":137.635,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737277,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67561,"id":187522,"map":595,"orientation":5.65434,"phaseMask":1,"position_x":1552.23,"position_y":607.222,"position_z":106.643,"rotation0":0,"rotation1":0,"rotation2":-0.309268,"rotation3":0.950975,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67562,"id":191107,"map":595,"orientation":1.65806,"phaseMask":1,"position_x":2279.8,"position_y":1170.06,"position_z":137.406,"rotation0":0,"rotation1":0,"rotation2":0.737276,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67563,"id":187523,"map":595,"orientation":4.94748,"phaseMask":1,"position_x":1553.45,"position_y":608.264,"position_z":106.643,"rotation0":0,"rotation1":0,"rotation2":-0.619302,"rotation3":0.785153,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67564,"id":191108,"map":595,"orientation":-3.05433,"phaseMask":1,"position_x":2280.89,"position_y":1169.18,"position_z":136.947,"rotation0":0,"rotation1":0,"rotation2":-0.999048,"rotation3":0.0436174,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67565,"id":187524,"map":595,"orientation":1.17757,"phaseMask":1,"position_x":1552.9,"position_y":603.702,"position_z":106.643,"rotation0":0,"rotation1":0,"rotation2":0.55535,"rotation3":0.831617,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67566,"id":191109,"map":595,"orientation":-1.48353,"phaseMask":1,"position_x":2294.03,"position_y":1187.31,"position_z":146.035,"rotation0":0,"rotation1":0,"rotation2":-0.67559,"rotation3":0.737277,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67567,"id":187525,"map":595,"orientation":0.741235,"phaseMask":1,"position_x":1551.35,"position_y":604.583,"position_z":106.643,"rotation0":0,"rotation1":0,"rotation2":0.362191,"rotation3":0.932104,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67568,"id":191110,"map":595,"orientation":0.536579,"phaseMask":1,"position_x":2522.15,"position_y":1253.84,"position_z":144.08,"rotation0":0,"rotation1":0,"rotation2":0.265083,"rotation3":0.964226,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67569,"id":187526,"map":595,"orientation":-2.05129,"phaseMask":1,"position_x":1554.25,"position_y":573.109,"position_z":106.634,"rotation0":0,"rotation1":0,"rotation2":-0.855049,"rotation3":0.518547,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67570,"id":191111,"map":595,"orientation":2.90431,"phaseMask":1,"position_x":2585.69,"position_y":1166.58,"position_z":139.188,"rotation0":0,"rotation1":0,"rotation2":0.99297,"rotation3":0.118363,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67571,"id":187527,"map":595,"orientation":1.06412,"phaseMask":1,"position_x":1564.26,"position_y":597.946,"position_z":99.1562,"rotation0":0,"rotation1":0,"rotation2":0.50731,"rotation3":0.861764,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67572,"id":191112,"map":595,"orientation":0,"phaseMask":1,"position_x":2527.38,"position_y":1132.53,"position_z":149.191,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67573,"id":191113,"map":595,"orientation":-1.89395,"phaseMask":1,"position_x":2459.55,"position_y":1440.45,"position_z":150.79,"rotation0":0,"rotation1":0,"rotation2":-0.811652,"rotation3":0.584141,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67574,"id":191114,"map":595,"orientation":-2.51775,"phaseMask":1,"position_x":2499.95,"position_y":1371.78,"position_z":144.631,"rotation0":0,"rotation1":0,"rotation2":-0.951746,"rotation3":0.306888,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67575,"id":191115,"map":595,"orientation":-1.0472,"phaseMask":1,"position_x":2287.38,"position_y":1342.46,"position_z":124.912,"rotation0":0,"rotation1":0,"rotation2":-0.500001,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67576,"id":191116,"map":595,"orientation":2.09439,"phaseMask":1,"position_x":2285.69,"position_y":1341.53,"position_z":124.683,"rotation0":0,"rotation1":0,"rotation2":0.866024,"rotation3":0.500002,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67577,"id":191117,"map":595,"orientation":-2.61799,"phaseMask":1,"position_x":2287.05,"position_y":1341.2,"position_z":124.223,"rotation0":0,"rotation1":0,"rotation2":-0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67578,"id":191118,"map":595,"orientation":0.698129,"phaseMask":1,"position_x":2336.8,"position_y":1420.54,"position_z":128.136,"rotation0":0,"rotation1":0,"rotation2":0.342019,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67579,"id":190094,"map":595,"orientation":-1.64061,"phaseMask":1,"position_x":1570.92,"position_y":669.933,"position_z":102.309,"rotation0":0,"rotation1":0,"rotation2":-0.731354,"rotation3":0.681998,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67580,"id":190094,"map":595,"orientation":2.9845,"phaseMask":1,"position_x":1579.42,"position_y":621.446,"position_z":99.7329,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784656,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67581,"id":190094,"map":595,"orientation":-1.11701,"phaseMask":1,"position_x":1674.39,"position_y":872.307,"position_z":120.394,"rotation0":0,"rotation1":0,"rotation2":-0.529919,"rotation3":0.848048,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67582,"id":190094,"map":595,"orientation":-0.837757,"phaseMask":1,"position_x":1629.68,"position_y":731.367,"position_z":112.847,"rotation0":0,"rotation1":0,"rotation2":-0.406736,"rotation3":0.913546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67583,"id":190094,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":1628.98,"position_y":812.142,"position_z":120.689,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67584,"id":191119,"map":595,"orientation":2.26892,"phaseMask":1,"position_x":2336.66,"position_y":1419.13,"position_z":127.573,"rotation0":0,"rotation1":0,"rotation2":0.906306,"rotation3":0.422622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67585,"id":191120,"map":595,"orientation":0.174532,"phaseMask":1,"position_x":2340.73,"position_y":1263.61,"position_z":132.918,"rotation0":0,"rotation1":0,"rotation2":0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67586,"id":191121,"map":595,"orientation":-2.96148,"phaseMask":1,"position_x":2341.04,"position_y":1261.75,"position_z":132.655,"rotation0":0,"rotation1":0,"rotation2":-0.995948,"rotation3":0.0899347,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67587,"id":190117,"map":595,"orientation":0.349065,"phaseMask":1,"position_x":1629.7,"position_y":731.351,"position_z":112.845,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67588,"id":190117,"map":595,"orientation":-2.46091,"phaseMask":1,"position_x":1570.95,"position_y":669.954,"position_z":102.314,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333809,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67589,"id":190117,"map":595,"orientation":1.81514,"phaseMask":1,"position_x":1628.97,"position_y":812.188,"position_z":120.695,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67590,"id":190117,"map":595,"orientation":2.04204,"phaseMask":1,"position_x":1674.41,"position_y":872.299,"position_z":120.4,"rotation0":0,"rotation1":0,"rotation2":0.852641,"rotation3":0.522496,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67591,"id":190117,"map":595,"orientation":1.27409,"phaseMask":1,"position_x":1579.43,"position_y":621.444,"position_z":99.7333,"rotation0":0,"rotation1":0,"rotation2":0.594823,"rotation3":0.803857,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67592,"id":187579,"map":595,"orientation":3.14159,"phaseMask":1,"position_x":2235.83,"position_y":1331.63,"position_z":126.049,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67593,"id":187580,"map":595,"orientation":0.25049,"phaseMask":1,"position_x":2142.52,"position_y":1266.52,"position_z":135.074,"rotation0":0,"rotation1":0,"rotation2":0.124918,"rotation3":0.992167,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67594,"id":187581,"map":595,"orientation":0.100057,"phaseMask":1,"position_x":2115.59,"position_y":1271.2,"position_z":138.724,"rotation0":-0.0244069,"rotation1":0.0250139,"rotation2":0.0505829,"rotation3":0.998108,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67595,"id":187582,"map":595,"orientation":2.08057,"phaseMask":1,"position_x":2162.46,"position_y":1242.6,"position_z":136.947,"rotation0":-0.0172009,"rotation1":0.0968828,"rotation2":0.855921,"rotation3":0.507659,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67596,"id":187584,"map":595,"orientation":2.99593,"phaseMask":1,"position_x":2120.71,"position_y":1334.41,"position_z":131.935,"rotation0":0.025394,"rotation1":0.0494022,"rotation2":0.99589,"rotation3":0.0715428,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67597,"id":187586,"map":595,"orientation":2.41998,"phaseMask":1,"position_x":2136.5,"position_y":1368.51,"position_z":132.843,"rotation0":-0.0376878,"rotation1":0.0328188,"rotation2":0.934155,"rotation3":0.353352,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67598,"id":187587,"map":595,"orientation":4.40606,"phaseMask":1,"position_x":2110.48,"position_y":1367.59,"position_z":132.057,"rotation0":-0.0558376,"rotation1":0.0896568,"rotation2":-0.801701,"rotation3":0.58832,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67599,"id":187588,"map":595,"orientation":0.25049,"phaseMask":1,"position_x":2199.16,"position_y":1313.37,"position_z":131.366,"rotation0":0,"rotation1":0,"rotation2":0.124918,"rotation3":0.992167,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51739,"animprogress":255,"areaId":0,"guid":67600,"id":187589,"map":595,"orientation":0.25049,"phaseMask":1,"position_x":2175.28,"position_y":1356.66,"position_z":131.129,"rotation0":0,"rotation1":0,"rotation2":0.124918,"rotation3":0.992167,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67601,"id":187590,"map":595,"orientation":-1.09083,"phaseMask":1,"position_x":2108.53,"position_y":1367.28,"position_z":139.116,"rotation0":0,"rotation1":0,"rotation2":-0.518773,"rotation3":0.854912,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67602,"id":187591,"map":595,"orientation":1.1354,"phaseMask":1,"position_x":2141.38,"position_y":1276.24,"position_z":141.977,"rotation0":0,"rotation1":0,"rotation2":0.537694,"rotation3":0.84314,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67604,"id":187592,"map":595,"orientation":2.96704,"phaseMask":1,"position_x":2183.18,"position_y":1283.09,"position_z":136.899,"rotation0":0,"rotation1":0,"rotation2":0.996194,"rotation3":0.0871655,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67605,"id":187593,"map":595,"orientation":2.96706,"phaseMask":1,"position_x":2156.87,"position_y":1288.75,"position_z":132.787,"rotation0":0,"rotation1":0,"rotation2":0.996195,"rotation3":0.0871556,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67606,"id":192714,"map":595,"orientation":1.86861,"phaseMask":1,"position_x":1771.85,"position_y":1252.1,"position_z":138.35,"rotation0":0,"rotation1":0,"rotation2":0.804186,"rotation3":0.594377,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67607,"id":187594,"map":595,"orientation":-1.48877,"phaseMask":1,"position_x":2081.29,"position_y":1297.03,"position_z":141.645,"rotation0":0,"rotation1":0,"rotation2":-0.67752,"rotation3":0.735505,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67608,"id":192715,"map":595,"orientation":-1.28281,"phaseMask":1,"position_x":1771.94,"position_y":1252.13,"position_z":138.346,"rotation0":0,"rotation1":0,"rotation2":-0.598322,"rotation3":0.801256,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67609,"id":187595,"map":595,"orientation":1.65806,"phaseMask":1,"position_x":2079.33,"position_y":1296.77,"position_z":141.651,"rotation0":0,"rotation1":0,"rotation2":0.737276,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67610,"id":192716,"map":595,"orientation":0.245454,"phaseMask":1,"position_x":1771.84,"position_y":1252.13,"position_z":138.343,"rotation0":0,"rotation1":0,"rotation2":0.122419,"rotation3":0.992478,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67611,"id":187596,"map":595,"orientation":2.87979,"phaseMask":1,"position_x":2188.86,"position_y":1346.02,"position_z":130.133,"rotation0":0,"rotation1":0,"rotation2":0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67612,"id":187597,"map":595,"orientation":1.309,"phaseMask":1,"position_x":2188.13,"position_y":1347.21,"position_z":130.642,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67613,"id":187598,"map":595,"orientation":-1.83259,"phaseMask":1,"position_x":2189.99,"position_y":1346.68,"position_z":130.637,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608764,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67614,"id":187599,"map":595,"orientation":1.39626,"phaseMask":1,"position_x":2156.09,"position_y":1289.88,"position_z":133.217,"rotation0":0,"rotation1":0,"rotation2":0.642786,"rotation3":0.766046,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67615,"id":187600,"map":595,"orientation":-0.174532,"phaseMask":1,"position_x":2157.22,"position_y":1290.68,"position_z":133.75,"rotation0":0,"rotation1":0,"rotation2":-0.0871553,"rotation3":0.996195,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67616,"id":187601,"map":595,"orientation":2.96706,"phaseMask":1,"position_x":2156.87,"position_y":1288.75,"position_z":133.691,"rotation0":0,"rotation1":0,"rotation2":0.996195,"rotation3":0.0871556,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68295,"id":180405,"map":595,"orientation":2.60054,"phaseMask":1,"position_x":1560.67,"position_y":625.269,"position_z":99.8689,"rotation0":0,"rotation1":0,"rotation2":0.96363,"rotation3":0.267241,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68296,"id":180405,"map":595,"orientation":3.927,"phaseMask":1,"position_x":1564.89,"position_y":586.189,"position_z":100.932,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68297,"id":180405,"map":595,"orientation":2.80998,"phaseMask":1,"position_x":1592.72,"position_y":681.198,"position_z":104.538,"rotation0":0,"rotation1":0,"rotation2":0.986285,"rotation3":0.16505,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68298,"id":180405,"map":595,"orientation":0.453785,"phaseMask":1,"position_x":1664.9,"position_y":890.269,"position_z":119.996,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68299,"id":180405,"map":595,"orientation":0.750491,"phaseMask":1,"position_x":1670.04,"position_y":1097.86,"position_z":127.437,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68300,"id":180405,"map":595,"orientation":0.226892,"phaseMask":1,"position_x":1688.5,"position_y":1185.32,"position_z":132.573,"rotation0":0,"rotation1":0,"rotation2":0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68301,"id":180405,"map":595,"orientation":0.453785,"phaseMask":1,"position_x":1691.45,"position_y":954.137,"position_z":120.369,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68302,"id":180405,"map":595,"orientation":5.93412,"phaseMask":1,"position_x":1830.95,"position_y":1287.45,"position_z":143.594,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68303,"id":180405,"map":595,"orientation":5.93412,"phaseMask":1,"position_x":1916.11,"position_y":1298.61,"position_z":142.467,"rotation0":0,"rotation1":0,"rotation2":-0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68304,"id":180405,"map":595,"orientation":3.52557,"phaseMask":1,"position_x":1936.98,"position_y":1275.89,"position_z":145.916,"rotation0":0,"rotation1":0,"rotation2":-0.981627,"rotation3":0.190812,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68305,"id":180405,"map":595,"orientation":1.16937,"phaseMask":1,"position_x":1980.78,"position_y":1298.75,"position_z":146.12,"rotation0":0,"rotation1":0,"rotation2":0.551936,"rotation3":0.833886,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68306,"id":180405,"map":595,"orientation":2.74016,"phaseMask":1,"position_x":1984.5,"position_y":1244.8,"position_z":143.216,"rotation0":0,"rotation1":0,"rotation2":0.979924,"rotation3":0.19937,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68307,"id":180405,"map":595,"orientation":2.65289,"phaseMask":1,"position_x":2077.15,"position_y":1280.63,"position_z":141.534,"rotation0":0,"rotation1":0,"rotation2":0.970295,"rotation3":0.241925,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68308,"id":180405,"map":595,"orientation":5.28835,"phaseMask":1,"position_x":2228.9,"position_y":1336.89,"position_z":127.614,"rotation0":0,"rotation1":0,"rotation2":-0.477159,"rotation3":0.878817,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68309,"id":180405,"map":595,"orientation":0.663223,"phaseMask":1,"position_x":2338.74,"position_y":1423.53,"position_z":128.133,"rotation0":0,"rotation1":0,"rotation2":0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68310,"id":180405,"map":595,"orientation":4.92183,"phaseMask":1,"position_x":2369.35,"position_y":1190,"position_z":132.05,"rotation0":0,"rotation1":0,"rotation2":-0.62932,"rotation3":0.777146,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68311,"id":180405,"map":595,"orientation":2.11185,"phaseMask":1,"position_x":2408.69,"position_y":1113.02,"position_z":148.076,"rotation0":0,"rotation1":0,"rotation2":0.870356,"rotation3":0.492424,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68312,"id":180405,"map":595,"orientation":2.53072,"phaseMask":1,"position_x":2412.89,"position_y":1094.3,"position_z":148.076,"rotation0":0,"rotation1":0,"rotation2":0.953716,"rotation3":0.300708,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68599,"id":180406,"map":595,"orientation":1.43117,"phaseMask":1,"position_x":1557.51,"position_y":615.642,"position_z":99.7787,"rotation0":0,"rotation1":0,"rotation2":0.656058,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68600,"id":180406,"map":595,"orientation":5.91667,"phaseMask":1,"position_x":1599.99,"position_y":662.052,"position_z":103.333,"rotation0":0,"rotation1":0,"rotation2":-0.182235,"rotation3":0.983255,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68601,"id":180406,"map":595,"orientation":3.29869,"phaseMask":1,"position_x":1605.29,"position_y":676.438,"position_z":105.488,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784664,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68602,"id":180406,"map":595,"orientation":0.855211,"phaseMask":1,"position_x":1616.78,"position_y":754.014,"position_z":115.282,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68603,"id":180406,"map":595,"orientation":0.855211,"phaseMask":1,"position_x":1669.29,"position_y":1017.85,"position_z":125.02,"rotation0":0,"rotation1":0,"rotation2":0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68604,"id":180406,"map":595,"orientation":6.07375,"phaseMask":1,"position_x":1739.04,"position_y":1249.28,"position_z":137.711,"rotation0":0,"rotation1":0,"rotation2":-0.104528,"rotation3":0.994522,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68605,"id":180406,"map":595,"orientation":4.34587,"phaseMask":1,"position_x":1915.73,"position_y":1276,"position_z":142.379,"rotation0":0,"rotation1":0,"rotation2":-0.824126,"rotation3":0.566406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68606,"id":180406,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":1937.17,"position_y":1298.94,"position_z":145.935,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68607,"id":180406,"map":595,"orientation":3.15906,"phaseMask":1,"position_x":1980.1,"position_y":1276.05,"position_z":146.119,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873464,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68608,"id":180406,"map":595,"orientation":0.872664,"phaseMask":1,"position_x":1984.88,"position_y":1332.27,"position_z":143.219,"rotation0":0,"rotation1":0,"rotation2":0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68609,"id":180406,"map":595,"orientation":1.0472,"phaseMask":1,"position_x":2155.28,"position_y":1293.34,"position_z":134.351,"rotation0":0,"rotation1":0,"rotation2":0.5,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68610,"id":180406,"map":595,"orientation":4.46804,"phaseMask":1,"position_x":2187.16,"position_y":1243.62,"position_z":137.335,"rotation0":0,"rotation1":0,"rotation2":-0.788011,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68611,"id":180406,"map":595,"orientation":1.25664,"phaseMask":1,"position_x":2205.11,"position_y":1203.9,"position_z":136.978,"rotation0":0,"rotation1":0,"rotation2":0.587785,"rotation3":0.809017,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68612,"id":180406,"map":595,"orientation":4.90438,"phaseMask":1,"position_x":2228.82,"position_y":1326.12,"position_z":127.873,"rotation0":0,"rotation1":0,"rotation2":-0.636078,"rotation3":0.771625,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68613,"id":180406,"map":595,"orientation":2.00713,"phaseMask":1,"position_x":2267.95,"position_y":1323.43,"position_z":125.921,"rotation0":0,"rotation1":0,"rotation2":0.843391,"rotation3":0.5373,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68614,"id":180406,"map":595,"orientation":1.41372,"phaseMask":1,"position_x":2315.98,"position_y":1410.77,"position_z":128.212,"rotation0":0,"rotation1":0,"rotation2":0.649447,"rotation3":0.760406,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68615,"id":180406,"map":595,"orientation":5.41052,"phaseMask":1,"position_x":2365.68,"position_y":1206.09,"position_z":131.59,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68616,"id":180406,"map":595,"orientation":3.49067,"phaseMask":1,"position_x":2399.65,"position_y":1172.53,"position_z":148.075,"rotation0":0,"rotation1":0,"rotation2":-0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68617,"id":180406,"map":595,"orientation":0.890117,"phaseMask":1,"position_x":2407.3,"position_y":1138.25,"position_z":148.076,"rotation0":0,"rotation1":0,"rotation2":0.430511,"rotation3":0.902586,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68618,"id":180406,"map":595,"orientation":5.79449,"phaseMask":1,"position_x":2467.42,"position_y":1130.22,"position_z":158.027,"rotation0":0,"rotation1":0,"rotation2":-0.241921,"rotation3":0.970296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68882,"id":180407,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":1587.66,"position_y":667.144,"position_z":103.044,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68883,"id":180407,"map":595,"orientation":0.436332,"phaseMask":1,"position_x":1635.72,"position_y":816.54,"position_z":120.133,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68884,"id":180407,"map":595,"orientation":3.47321,"phaseMask":1,"position_x":1958.55,"position_y":1276.08,"position_z":146.207,"rotation0":0,"rotation1":0,"rotation2":-0.986285,"rotation3":0.16505,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68885,"id":180407,"map":595,"orientation":0.279252,"phaseMask":1,"position_x":1958.78,"position_y":1298.83,"position_z":146.205,"rotation0":0,"rotation1":0,"rotation2":0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68886,"id":180407,"map":595,"orientation":1.39626,"phaseMask":1,"position_x":2076.86,"position_y":1294.82,"position_z":141.653,"rotation0":0,"rotation1":0,"rotation2":0.642787,"rotation3":0.766045,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68887,"id":180407,"map":595,"orientation":2.9845,"phaseMask":1,"position_x":2157.34,"position_y":1260.66,"position_z":134.723,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784664,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68888,"id":180407,"map":595,"orientation":3.9619,"phaseMask":1,"position_x":2178.02,"position_y":1233.7,"position_z":137.326,"rotation0":0,"rotation1":0,"rotation2":-0.91706,"rotation3":0.39875,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68889,"id":180407,"map":595,"orientation":1.02974,"phaseMask":1,"position_x":2214.72,"position_y":1212.64,"position_z":137.131,"rotation0":0,"rotation1":0,"rotation2":0.492423,"rotation3":0.870356,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68890,"id":180407,"map":595,"orientation":2.9845,"phaseMask":1,"position_x":2232.3,"position_y":1145.8,"position_z":139.823,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784664,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68891,"id":180407,"map":595,"orientation":1.78023,"phaseMask":1,"position_x":2267.94,"position_y":1337.43,"position_z":124.415,"rotation0":0,"rotation1":0,"rotation2":0.777145,"rotation3":0.629321,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68892,"id":180407,"map":595,"orientation":3.54302,"phaseMask":1,"position_x":2332.64,"position_y":1254.01,"position_z":133.479,"rotation0":0,"rotation1":0,"rotation2":-0.979924,"rotation3":0.19937,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68893,"id":180407,"map":595,"orientation":4.10153,"phaseMask":1,"position_x":2411.18,"position_y":1174.94,"position_z":148.075,"rotation0":0,"rotation1":0,"rotation2":-0.887011,"rotation3":0.461749,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68894,"id":180407,"map":595,"orientation":0.279252,"phaseMask":1,"position_x":2418.8,"position_y":1140.76,"position_z":148.076,"rotation0":0,"rotation1":0,"rotation2":0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68895,"id":180407,"map":595,"orientation":6.12611,"phaseMask":1,"position_x":2438.48,"position_y":1206.11,"position_z":149.151,"rotation0":0,"rotation1":0,"rotation2":-0.0784588,"rotation3":0.996917,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68896,"id":180407,"map":595,"orientation":4.81711,"phaseMask":1,"position_x":2472.7,"position_y":1105.91,"position_z":157.971,"rotation0":0,"rotation1":0,"rotation2":-0.66913,"rotation3":0.743145,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46248,"animprogress":255,"areaId":0,"guid":68954,"id":180431,"map":595,"orientation":5.06146,"phaseMask":1,"position_x":2003.51,"position_y":1287.4,"position_z":145.757,"rotation0":0,"rotation1":0,"rotation2":-0.573576,"rotation3":0.819152,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/culling-of-stratholme/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["20/20 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"halls-of-stone","title":"Halls of Stone","mapId":599,"lfgDungeonIds":[208,213],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[75,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Halls of Stone","theme":"Open-world expedition","summary":"Fight through Halls of Stone, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Halls of Stone...","unchartedAreaName":"Uncharted Halls of Stone","background":"#081016","fog":{"color":"#0a141c","near":36,"far":398.551},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/599-ulduar70/visual.glb","checksum":"f0b9b1ce1cd902e15578797c58e9116135ad35d9998e85dddbf0f4ecdffa8306","size":16124736,"triangleCount":1748718}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/599-ulduar70/collision-000.glb","checksum":"5fe71c91e8a5c207b9665c179726ae487f4890beaa8dbb2cb09f918ccad1e10b","size":113840,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/599-ulduar70/collision-001.glb","checksum":"da9197c1a605d2d7a16171185d9e73a6d4ca6ee478ee9b38f118aa3b60ae5a29","size":113488,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/599-ulduar70/collision-002.glb","checksum":"3c4c628ff78bd541d9e1b4f1e2a9f9de17c68ac0aa7fac655942eba6906605d3","size":113308,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/599-ulduar70/collision-003.glb","checksum":"28ee5a1b09b3e7fcfe40fe617bb74712fd96f875a5cc913f7afd4eaed926fa2c","size":113648,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/599-ulduar70/collision-004.glb","checksum":"a3556fcb2fc8990b5637da5646dc64fae68c54d35d0d5201437c6586f0edc77a","size":113484,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/599-ulduar70/collision-005.glb","checksum":"26ba2e420f01e3c7a2a4cae1b30a65a60560d7c95bdb9599764b39ab99927ab7","size":113664,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/599-ulduar70/collision-006.glb","checksum":"cb19e3d0bf642e98c0d22f2420329c3f411eb885629c7ab172fc8a4be4d5afad","size":113312,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/599-ulduar70/collision-007.glb","checksum":"2458ea457881c868f9d5c48c308313a50c7680ee017932188974c1649ce160bf","size":113132,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/599-ulduar70/collision-008.glb","checksum":"f20ffafd1bfad7c4445496acad56670a6cbdac47f7ac873722ce43df66ffb629","size":1395900,"triangleCount":99999},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/599-ulduar70/collision-009.glb","checksum":"55d5429b0a734b84a06a7714a107cef0480a826b0af3dc9f860f8c5b3a2a7116","size":113648,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/599-ulduar70/collision-010.glb","checksum":"bd148b6c635308dd74bf1663af18cfa0a170e7741e1e5529f9eda23e56beef03","size":113308,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/599-ulduar70/collision-011.glb","checksum":"e5e6789c1cae31dd0a3613dddf6d07f28a646dcc680532c81cbaa97fedcc2434","size":113460,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/599-ulduar70/collision-012.glb","checksum":"8aeb4c265bec3f8092ca4054dff636f79da1a3c44d22756fb2222c0be11389d6","size":113468,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/599-ulduar70/collision-013.glb","checksum":"06b7b8c8847c6604dd82f878777d5f2bc72a3e7f00d47863362af0919cd68ad7","size":187504,"triangleCount":64400},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/599-ulduar70/collision-014.glb","checksum":"50de5d729f4dbcc086649c52b78cf7e646f731f83287f1b517d9b1e71c6d8166","size":111900,"triangleCount":63808},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/599-ulduar70/collision-015.glb","checksum":"a0b84808380384ad2cbab0aee59a3f494264d4e87b3a3468a760a4aa9ac0017a","size":113464,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/599-ulduar70/collision-016.glb","checksum":"39cf6f22e10f90de57dbfd1310147bb9c786eda716e1b6902a9a70aadccd3f8a","size":113712,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/599-ulduar70/collision-017.glb","checksum":"6c4c8fe598558da8d85d85333d7d5a9a1898e0294c05debd15fe56b8ac5e5dd5","size":113312,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/599-ulduar70/collision-018.glb","checksum":"36cfcc9a8407db77ab58c587944c36d101e0c6557512e4af040932579b531a51","size":221924,"triangleCount":65376},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/599-ulduar70/collision-019.glb","checksum":"a2a73497fe96614c3e455850663c6eb782b5a9e38b519a331efa37cae7b26c36","size":160264,"triangleCount":65072},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/599-ulduar70/collision-020.glb","checksum":"a6c228a000ab562eb0119434ee46bd7df4e582a58fbd1fa6519f25629da2a28a","size":113524,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/599-ulduar70/collision-021.glb","checksum":"decf3d655e6e7bc063b890d3379a4838d7783a17442464446a775841b1d91f6e","size":114032,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/599-ulduar70/collision-022.glb","checksum":"33418b3b1af15a38115d5b8a58670fe7b85e4f7a37fe452d0c28ca44e3f52830","size":113536,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/599-ulduar70/collision-023.glb","checksum":"dfed306093680095cd9b6a38e61279130a9df3009853e5d4e9c425ab9a6c66ca","size":215852,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/599-ulduar70/collision-024.glb","checksum":"a4e3e233c49fc7676734e575a0a4f88f6888bcd2a639a230fe8e181d1ea315e2","size":130708,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/599-ulduar70/collision-025.glb","checksum":"1bcff3dda88d7507979d80b12a06670f04e9a15aa80b14b7fc01de8e0564972e","size":113700,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/599-ulduar70/navigation.glb","checksum":"fd6366438476906a591e96c64f2d4c876fbac4b95d4e5516f6838203c6237ee0","size":882640,"triangleCount":74793}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-21.2853,-88.7963,631.9927],"max":[532.2577,-24.0493,1174.5707]},"entrance":{"name":"Halls of Stone Entrance","footPosition":[448.8667,-57.1563,987.6007],"forward":[0,0,1],"yaw":0},"areas":[{"id":"entrance","name":"Halls of Stone Entrance","center":[448.8667,-57.1563,987.6007],"radius":35},{"id":"area-krystallus","name":"Krystallus's Encounter","center":[402.6167,-44.3873,842.9207],"radius":42},{"id":"area-maiden-of-grief","name":"Maiden of Grief's Encounter","center":[308.7497,-62.9773,676.9927],"radius":42},{"id":"area-tribunal-of-ages","name":"Tribunal of Ages's Encounter","center":[449.066,-57.1563,985.3294],"radius":42},{"id":"area-sjonnir-the-ironshaper","name":"Sjonnir the Ironshaper's Encounter","center":[309.8597,-63.4023,1129.5707],"radius":42}],"entities":{"entry-27960":{"id":"entry-27960","kind":"mob","name":"Dark Rune Warrior","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25994-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27961":{"id":"entry-27961","kind":"mob","name":"Dark Rune Worker","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25995-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27962":{"id":"entry-27962","kind":"mob","name":"Dark Rune Elementalist","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25989-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27963":{"id":"entry-27963","kind":"mob","name":"Dark Rune Theurgist","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25990-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27964":{"id":"entry-27964","kind":"mob","name":"Dark Rune Scholar","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1600,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25992-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27965":{"id":"entry-27965","kind":"mob","name":"Dark Rune Shaper","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25993-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27966":{"id":"entry-27966","kind":"mob","name":"Dark Rune Controller","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-25988-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-27969":{"id":"entry-27969","kind":"mob","name":"Dark Rune Giant","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.07936,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-28132-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":15.9622,"markerRadius":4.5}}},"entry-27970":{"id":"entry-27970","kind":"mob","name":"Raging Construct","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-26146-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5279,"markerRadius":2.231}}},"entry-27971":{"id":"entry-27971","kind":"mob","name":"Unrelenting Construct","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-26154-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5279,"markerRadius":2.231}}},"entry-27972":{"id":"entry-27972","kind":"mob","name":"Lightning Construct","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-26140-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.5279,"markerRadius":2.231}}},"entry-27973":{"id":"entry-27973","kind":"mob","name":"Crystalline Shardling","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-19383-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0025,"labelHeight":3.2863,"markerRadius":0.732}}},"entry-27975":{"id":"entry-27975","kind":"boss","name":"Maiden of Grief","title":"Dungeon Boss","hasLoot":true,"combat":{"level":79,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50752","name":"Storm of Grief","spellId":50752,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":5376,"damageMultiplier":0.82,"radius":11},{"id":"spell-50760","name":"Shock of Sorrow","spellId":50760,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5376,"damageMultiplier":1.35},{"id":"spell-50761","name":"Pillar of Woe","spellId":50761,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5376,"damageMultiplier":1.35},{"id":"spell-59723","name":"Parting Sorrow","spellId":59723,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5376,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-26657-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0003,"labelHeight":16.643,"markerRadius":2.7243}}},"entry-27977":{"id":"entry-27977","kind":"boss","name":"Krystallus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":79,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50812","name":"Stoned","spellId":50812,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5222,"damageMultiplier":1.35},{"id":"spell-50843","name":"Boulder Toss","spellId":50843,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5222,"damageMultiplier":1.35},{"id":"spell-59750","name":"Ground Spike","spellId":59750,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":8000,"damageMultiplier":1.35},{"id":"spell-50868","name":"Stomp","spellId":50868,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5000,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-20909-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0221,"labelHeight":25.1791,"markerRadius":4.5}}},"entry-27978":{"id":"entry-27978","kind":"boss","name":"Sjonnir The Ironshaper","title":"Dungeon Boss","hasLoot":true,"combat":{"level":79,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-28747","name":"Frenzy","spellId":28747,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5762,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-28747","durationMs":12000,"magnitude":0.25}},{"id":"spell-51849","name":"Lightning Ring","spellId":51849,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5762,"damageMultiplier":1.35},{"id":"spell-50831","name":"Lightning Shield","spellId":50831,"delivery":"area","target":"self","school":"nature","animation":"cast","range":0,"cooldownMs":5762,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-50831","durationMs":12000,"magnitude":0.25}},{"id":"spell-50830","name":"Chain Lightning","spellId":50830,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5762,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-27483-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0592,"labelHeight":8.4473,"markerRadius":1.7345}}},"entry-28070":{"id":"entry-28070","kind":"mob","name":"Brann Bronzebeard","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50988","name":"Glare of the Tribunal","spellId":50988,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5560,"damageMultiplier":1.12},{"id":"spell-51012","name":"Dark Matter","spellId":51012,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-stone/creatures/display-26353-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0054,"labelHeight":2.1945,"markerRadius":0.65}}},"entry-837414411":{"id":"entry-837414411","kind":"boss","name":"Tribunal of Ages","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.69,"damageMultiplier":1.12,"moveSpeed":3.04,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2300,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"area","target":"nearby-party","school":"holy","animation":"cast","range":22,"cooldownMs":6865,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.37,"archetype":"humanoid"}}},"staticSpawns":[{"id":"creature-126692","entityId":"entry-27960","position":[409.6317,-57.1553,984.6807],"yaw":-1.57957,"spawnMask":3},{"id":"creature-126693","entityId":"entry-27960","position":[409.6827,-57.1553,990.3407],"yaw":-1.57955,"spawnMask":3},{"id":"creature-126697","entityId":"entry-27961","position":[423.9637,-61.9413,909.9307],"yaw":-0.034907,"spawnMask":3},{"id":"creature-126698","entityId":"entry-27961","position":[369.4547,-51.6883,868.6107],"yaw":-3.28122,"spawnMask":3},{"id":"creature-126699","entityId":"entry-27961","position":[471.7927,-66.4403,855.3007],"yaw":-3.80482,"spawnMask":3},{"id":"creature-126700","entityId":"entry-27962","position":[332.9057,-56.8583,1001.8807],"yaw":-5.73428,"spawnMask":3},{"id":"creature-126701","entityId":"entry-27962","position":[299.7087,-56.8583,963.3807],"yaw":-2.05656,"spawnMask":3},{"id":"creature-126702","entityId":"entry-27962","position":[314.7657,-51.1163,915.3507],"yaw":-4.11302,"spawnMask":3},{"id":"creature-126703","entityId":"entry-27962","position":[284.7217,-56.6793,979.3807],"yaw":-5.69728,"spawnMask":3},{"id":"creature-126704","entityId":"entry-27962","position":[312.5997,-56.4813,1013.3807],"yaw":-4.79008,"spawnMask":3},{"id":"creature-126705","entityId":"entry-27963","position":[336.5247,-56.8583,1004.0907],"yaw":-5.73434,"spawnMask":3},{"id":"creature-126707","entityId":"entry-27963","position":[298.5167,-56.8583,959.2107],"yaw":-2.05669,"spawnMask":3},{"id":"creature-126708","entityId":"entry-27963","position":[317.9567,-50.6313,910.6807],"yaw":-4.113,"spawnMask":3},{"id":"creature-126711","entityId":"entry-27963","position":[297.7107,-51.1163,850.3607],"yaw":-0.754551,"spawnMask":3},{"id":"creature-126712","entityId":"entry-27963","position":[302.5897,-51.1163,849.3507],"yaw":-0.753234,"spawnMask":3},{"id":"creature-126713","entityId":"entry-27963","position":[281.9377,-56.8583,976.8207],"yaw":-5.69732,"spawnMask":3},{"id":"creature-126714","entityId":"entry-27963","position":[312.9287,-56.8603,1017.6107],"yaw":-4.79012,"spawnMask":3},{"id":"creature-126716","entityId":"entry-27963","position":[308.7547,-50.3843,867.1207],"yaw":-5.40797,"spawnMask":3},{"id":"creature-126717","entityId":"entry-27964","position":[430.5537,-62.6693,909.9207],"yaw":-4.17134,"spawnMask":3},{"id":"creature-126718","entityId":"entry-27964","position":[468.6097,-65.6193,861.9407],"yaw":-4.67748,"spawnMask":3},{"id":"creature-126719","entityId":"entry-27965","position":[362.8367,-51.4013,879.0707],"yaw":-2.9147,"spawnMask":3},{"id":"creature-126720","entityId":"entry-27965","position":[376.7557,-53.6603,876.4507],"yaw":-3.94444,"spawnMask":3},{"id":"creature-126721","entityId":"entry-27965","position":[486.3467,-66.9193,853.9207],"yaw":-4.60767,"spawnMask":3},{"id":"creature-126722","entityId":"entry-27965","position":[476.6217,-66.9423,864.9107],"yaw":-3.66519,"spawnMask":3},{"id":"creature-126723","entityId":"entry-27965","position":[426.2577,-62.7073,894.9307],"yaw":-6.07375,"spawnMask":3},{"id":"creature-126737","entityId":"entry-27970","position":[222.4257,-46.0433,871.8107],"yaw":-0.017453,"spawnMask":3},{"id":"creature-126738","entityId":"entry-27970","position":[142.6107,-45.2903,892.6507],"yaw":-4.2237,"spawnMask":3},{"id":"creature-126739","entityId":"entry-27971","position":[111.6527,-44.0493,883.4507],"yaw":-5.44543,"spawnMask":3},{"id":"creature-126740","entityId":"entry-27971","position":[373.7387,-56.7663,979.2907],"yaw":-1.5708,"spawnMask":3},{"id":"creature-126741","entityId":"entry-27971","position":[372.9867,-56.7663,996.2207],"yaw":-1.67552,"spawnMask":3},{"id":"creature-126742","entityId":"entry-27971","position":[222.0367,-46.0053,894.3407],"yaw":-3.1765,"spawnMask":3},{"id":"creature-126743","entityId":"entry-27971","position":[296.7077,-50.8543,882.9607],"yaw":-1.71042,"spawnMask":3},{"id":"creature-126744","entityId":"entry-27971","position":[118.6487,-45.2903,866.9507],"yaw":-2.04204,"spawnMask":3},{"id":"creature-126745","entityId":"entry-27971","position":[143.9337,-45.2903,870.3807],"yaw":-5.75959,"spawnMask":3},{"id":"creature-126747","entityId":"entry-27972","position":[317.2377,-56.5993,741.0177],"yaw":-0.069813,"spawnMask":3},{"id":"creature-126748","entityId":"entry-27972","position":[301.6667,-56.5993,740.0467],"yaw":-0.122173,"spawnMask":3},{"id":"creature-126751","entityId":"entry-27973","position":[479.5987,-65.5543,770.5357],"yaw":-0.401426,"spawnMask":3},{"id":"creature-126752","entityId":"entry-27973","position":[478.4367,-65.3833,762.5467],"yaw":-4.99164,"spawnMask":3},{"id":"creature-126753","entityId":"entry-27973","position":[469.9677,-64.3163,760.0537],"yaw":-0.925025,"spawnMask":3},{"id":"creature-126754","entityId":"entry-27973","position":[316.6847,-50.7603,877.0107],"yaw":-1.34675,"spawnMask":3},{"id":"creature-126755","entityId":"entry-27973","position":[321.4247,-50.6723,881.0007],"yaw":-0.418879,"spawnMask":3},{"id":"creature-126756","entityId":"entry-27973","position":[315.4777,-51.2283,886.7407],"yaw":-0.488692,"spawnMask":3},{"id":"creature-126757","entityId":"entry-27973","position":[456.4887,-63.7813,799.1737],"yaw":-4.50776,"spawnMask":3},{"id":"creature-126758","entityId":"entry-27973","position":[465.6747,-64.9123,815.7437],"yaw":-0.698132,"spawnMask":3},{"id":"creature-126759","entityId":"entry-27973","position":[465.1147,-65.4843,803.0697],"yaw":-2.77507,"spawnMask":3},{"id":"creature-126760","entityId":"entry-27973","position":[460.0547,-64.4093,801.8617],"yaw":-2.96706,"spawnMask":3},{"id":"creature-126761","entityId":"entry-27973","position":[462.8947,-64.3343,810.6857],"yaw":0,"spawnMask":3},{"id":"creature-126762","entityId":"entry-27973","position":[449.9747,-65.2313,898.9107],"yaw":-5.72136,"spawnMask":3},{"id":"creature-126763","entityId":"entry-27973","position":[470.7477,-67.6073,904.8307],"yaw":-0.164425,"spawnMask":3},{"id":"creature-126764","entityId":"entry-27973","position":[469.8457,-68.1643,891.1507],"yaw":-4.81268,"spawnMask":3},{"id":"creature-126765","entityId":"entry-27973","position":[473.7247,-68.7963,889.9907],"yaw":-5.69452,"spawnMask":3},{"id":"creature-126766","entityId":"entry-27973","position":[454.1707,-65.5563,892.2707],"yaw":-5.50003,"spawnMask":3},{"id":"creature-126767","entityId":"entry-27973","position":[458.7907,-66.6243,899.7107],"yaw":-4.8355,"spawnMask":3},{"id":"creature-126768","entityId":"entry-27973","position":[474.0877,-68.3433,900.0507],"yaw":-5.41897,"spawnMask":3},{"id":"creature-126769","entityId":"entry-27973","position":[411.3897,-60.1373,882.2107],"yaw":-4.2389,"spawnMask":3},{"id":"creature-126770","entityId":"entry-27973","position":[393.4747,-55.9353,879.6007],"yaw":-4.43027,"spawnMask":3},{"id":"creature-126771","entityId":"entry-27973","position":[387.7407,-55.8263,869.2807],"yaw":-5.45241,"spawnMask":3},{"id":"creature-126772","entityId":"entry-27973","position":[407.5537,-58.9663,874.0107],"yaw":-4.57073,"spawnMask":3},{"id":"creature-126773","entityId":"entry-27973","position":[397.1027,-56.6653,865.5207],"yaw":-3.84551,"spawnMask":3},{"id":"creature-126774","entityId":"entry-27973","position":[402.3667,-58.0983,881.6007],"yaw":-1.70245,"spawnMask":3},{"id":"creature-126775","entityId":"entry-27973","position":[411.9837,-60.3123,889.0007],"yaw":-2.25148,"spawnMask":3},{"id":"creature-126776","entityId":"entry-27973","position":[431.7567,-57.6963,785.7427],"yaw":-1.8675,"spawnMask":3},{"id":"creature-126777","entityId":"entry-27973","position":[431.8147,-57.1493,794.6457],"yaw":-3.49066,"spawnMask":3},{"id":"creature-126778","entityId":"entry-27973","position":[420.6407,-55.5523,786.9687],"yaw":-5.5676,"spawnMask":3},{"id":"creature-126779","entityId":"entry-27973","position":[449.3477,-61.7723,780.9667],"yaw":-3.87463,"spawnMask":3},{"id":"creature-126780","entityId":"entry-27973","position":[443.3947,-60.2863,775.5827],"yaw":-4.81711,"spawnMask":3},{"id":"creature-126781","entityId":"entry-27973","position":[455.6087,-62.4793,769.6577],"yaw":-1.309,"spawnMask":3},{"id":"creature-126782","entityId":"entry-27973","position":[478.5267,-66.5083,795.5277],"yaw":-0.122173,"spawnMask":3},{"id":"creature-126783","entityId":"entry-27973","position":[480.7097,-66.8523,801.6007],"yaw":-4.43314,"spawnMask":3},{"id":"creature-126784","entityId":"entry-27973","position":[487.2577,-67.2653,800.9507],"yaw":-4.2237,"spawnMask":3},{"id":"creature-126785","entityId":"entry-27973","position":[477.9327,-66.2603,786.9177],"yaw":-1.69377,"spawnMask":3},{"id":"creature-126786","entityId":"entry-27973","position":[473.6477,-66.2173,795.9367],"yaw":-4.04916,"spawnMask":3},{"id":"creature-126789","entityId":"entry-27975","position":[308.7497,-62.9773,676.9927],"yaw":0,"spawnMask":3},{"id":"creature-126790","entityId":"entry-27977","position":[402.6167,-44.3873,842.9207],"yaw":-2.56563,"spawnMask":3},{"id":"creature-126792","entityId":"entry-27978","position":[309.8597,-63.4023,1129.5707],"yaw":-3.19395,"spawnMask":3},{"id":"creature-126801","entityId":"entry-28070","position":[116.8627,-45.2903,911.7707],"yaw":-2.70526,"spawnMask":3},{"id":"encounter-567","entityId":"entry-837414411","position":[449.066,-57.1563,985.3294],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-126687","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[338.5917,-56.8593,988.0407],[338.3977,-56.8593,996.9707],[333.6087,-56.8583,1004.8007],[338.3977,-56.8593,996.9707],[338.5917,-56.8593,988.0407],[338.3307,-56.8593,979.6707],[332.0947,-56.8583,969.9307],[338.3307,-56.8593,979.6707]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126688","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[320.7447,-50.6433,835.5607],[320.3397,-50.6313,834.9707],[321.9537,-51.1053,837.3107],[323.6657,-51.1163,839.7907],[325.8917,-51.1163,845.1707],[323.6327,-51.1163,847.1607],[321.3717,-51.1163,849.1607],[319.1117,-51.0253,851.1507],[318.5677,-50.8843,851.6307],[320.7367,-51.1163,849.7207],[322.9977,-51.1163,847.7207],[325.8497,-51.1163,842.9707],[324.1457,-51.1163,840.4907],[322.4367,-51.1163,838.0107]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126689","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266890,"formationSource":"database-solo","spawnMask":3,"waypoints":[[320.8137,-51.1163,843.9907],[318.5527,-51.1163,845.9907],[316.2927,-51.1163,847.9807],[315.7617,-51.1163,848.4507],[317.9307,-51.1163,846.5307],[320.1937,-51.1163,844.5407],[320.5607,-51.1163,844.3007],[320.6487,-51.1163,842.9007],[318.9407,-51.1163,840.4207],[317.2627,-51.1163,837.9807],[316.8457,-51.1163,837.3807],[318.4557,-51.1163,839.7107],[320.1667,-51.1163,842.1907],[323.0927,-51.1163,841.9807]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126690","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266900,"formationSource":"database-solo","spawnMask":3,"waypoints":[[319.5347,-56.8583,960.8307],[329.2797,-56.8583,966.2907],[319.5347,-56.8583,960.8307],[309.7557,-56.8583,960.3307],[301.3827,-56.8583,960.1007],[291.7187,-56.8583,965.2007],[301.3827,-56.8583,960.1007],[309.7497,-56.8583,960.3307]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126691","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266910,"formationSource":"database-solo","spawnMask":3,"waypoints":[[305.7577,-50.8503,928.5307],[314.3377,-50.9093,928.3307],[319.3777,-51.1163,924.6907],[319.7677,-51.1163,915.3407],[314.0257,-50.6313,911.4207],[306.5497,-50.5403,910.9007],[300.5257,-51.1163,915.3307],[300.1197,-51.1163,924.4107]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126694","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266940,"formationSource":"database-solo","spawnMask":3,"waypoints":[[302.7737,-50.6313,834.7907],[293.9057,-51.1163,843.2207],[302.4967,-50.6723,852.3507],[293.9087,-51.1163,843.2207]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126695","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266950,"formationSource":"database-solo","spawnMask":3,"waypoints":[[282.3077,-56.8583,995.8807],[281.4057,-56.8583,988.2907],[282.5317,-56.8583,979.7607],[287.3327,-56.8583,972.5307],[282.5317,-56.8583,979.7607],[281.4057,-56.8583,988.2907],[282.3077,-56.8583,995.8807],[288.0457,-56.8583,1004.8807]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126696","name":"Dark Rune Warrior Patrol","speed":1.15,"pathId":1266960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[301.8317,-56.8603,1015.0907],[310.6497,-56.8603,1015.6607],[318.2857,-56.8583,1015.0607],[326.1867,-56.8583,1011.4207],[318.2857,-56.8583,1015.0607],[310.6497,-56.8603,1015.6607],[301.8317,-56.8603,1015.0907],[294.3097,-56.8583,1012.1107]],"members":[{"id":"member","entityId":"entry-27960","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126706","name":"Dark Rune Theurgist Patrol","speed":1.15,"pathId":1267060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[323.9987,-51.1163,844.0107],[315.5727,-50.9393,851.4407],[323.9957,-51.1153,844.0207],[317.3897,-50.6313,834.4307]],"members":[{"id":"member","entityId":"entry-27963","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126709","name":"Dark Rune Theurgist Patrol","speed":1.15,"pathId":1267090,"formationSource":"database-solo","spawnMask":3,"waypoints":[[392.0527,-57.7433,986.8807],[406.4237,-57.1553,987.5407],[420.3367,-58.0493,987.4107],[406.4237,-57.1553,987.5407]],"members":[{"id":"member","entityId":"entry-27963","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126710","name":"Dark Rune Theurgist Patrol","speed":1.15,"pathId":1267100,"formationSource":"database-solo","spawnMask":3,"waypoints":[[385.9017,-57.4463,1006.3807],[386.1177,-57.7433,969.6607]],"members":[{"id":"member","entityId":"entry-27963","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126715","name":"Dark Rune Theurgist Patrol","speed":1.15,"pathId":1267150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[308.8727,-51.1163,843.5607],[308.2957,-50.6463,870.0707],[308.8727,-51.1163,843.5607],[309.0207,-50.2223,821.2257]],"members":[{"id":"member","entityId":"entry-27963","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126728","name":"Dark Rune Controller Patrol","speed":1.15,"pathId":1267280,"formationSource":"database-solo","spawnMask":3,"waypoints":[[463.5317,-65.4243,791.2687],[472.3377,-66.1593,804.7067],[478.9007,-66.7053,812.9147],[472.3377,-66.1593,804.7067],[463.5317,-65.4243,791.2687],[459.3957,-63.3433,772.2057]],"members":[{"id":"member","entityId":"entry-27966","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126732","name":"Dark Rune Controller Patrol","speed":1.15,"pathId":1267320,"formationSource":"database-solo","spawnMask":3,"waypoints":[[416.1877,-53.8123,803.8347],[426.8047,-55.8363,802.1257],[431.6817,-57.0873,796.1677],[438.0707,-59.1253,787.4697],[434.1927,-58.1163,778.7327],[427.6627,-56.7053,778.0297],[417.1597,-54.8353,783.9587],[413.0647,-54.2703,793.7917]],"members":[{"id":"member","entityId":"entry-27966","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126733","name":"Dark Rune Giant Patrol","speed":1.15,"pathId":1267330,"formationSource":"database-solo","spawnMask":3,"waypoints":[[176.7787,-45.3743,882.4007],[269.9167,-45.3743,882.7207]],"members":[{"id":"member","entityId":"entry-27969","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126734","name":"Dark Rune Giant Patrol","speed":1.15,"pathId":1267340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[306.4217,-56.8583,1025.5607],[285.3977,-56.8583,1016.9907],[275.0297,-56.8583,1004.2507],[270.0237,-56.8583,988.9407],[274.7007,-56.8583,974.7807],[287.9107,-56.8583,959.0607],[299.7747,-56.8583,955.9107],[287.9107,-56.8583,959.0607],[274.7007,-56.8583,974.7807],[270.0237,-56.8583,988.9407],[275.0297,-56.8583,1004.2507],[285.3957,-56.8583,1016.9907]],"members":[{"id":"member","entityId":"entry-27969","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126735","name":"Dark Rune Giant Patrol","speed":1.15,"pathId":1267350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[329.7087,-56.8583,956.6207],[341.3477,-56.8583,967.3807],[349.5187,-56.8573,983.0207],[349.5017,-56.8573,995.7607],[339.5037,-56.8583,1012.1307],[325.4027,-56.8583,1020.7107],[339.5037,-56.8583,1012.1307],[349.5017,-56.8573,995.7607],[349.5187,-56.8573,983.0207],[341.3477,-56.8583,967.3807],[329.7087,-56.8583,956.6207],[309.3557,-56.8583,958.5907]],"members":[{"id":"member","entityId":"entry-27969","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126736","name":"Dark Rune Giant Patrol","speed":1.15,"pathId":1267360,"formationSource":"database-solo","spawnMask":3,"waypoints":[[309.2307,-56.9333,780.9307],[309.3507,-56.6093,803.2177],[309.2307,-56.9333,780.9367],[308.9737,-56.6823,739.5907]],"members":[{"id":"member","entityId":"entry-27969","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126746","name":"Lightning Construct Patrol","speed":1.15,"pathId":1267460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[57.9487,-47.0993,815.3277],[62.9057,-47.0993,806.8837],[63.8857,-47.0993,795.9467],[58.7967,-47.0993,786.8557],[63.8587,-47.0993,795.8997],[62.9057,-47.0993,806.8837]],"members":[{"id":"member","entityId":"entry-27972","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126749","name":"Lightning Construct Patrol","speed":1.15,"pathId":1267490,"formationSource":"database-solo","spawnMask":3,"waypoints":[[45.6237,-47.0993,820.9217],[54.8057,-47.0993,817.4317],[45.6467,-47.0993,820.9127],[32.8077,-47.0993,817.6267],[25.1727,-47.0993,808.8327],[32.8077,-47.0993,817.6267]],"members":[{"id":"member","entityId":"entry-27972","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126750","name":"Lightning Construct Patrol","speed":1.15,"pathId":1267500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[25.5857,-47.0993,788.5687],[36.7577,-47.0993,778.7877],[52.0277,-47.0993,781.0337],[36.7587,-47.0993,778.7867],[25.5857,-47.0993,788.5687],[23.7147,-47.0993,802.3287]],"members":[{"id":"member","entityId":"entry-27972","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126787","name":"Crystalline Shardling Patrol","speed":1.15,"pathId":1267870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[457.3277,-63.7103,776.8247],[457.9607,-64.1563,779.7397],[458.5937,-64.6033,782.6597],[459.2287,-64.9453,785.5827],[459.8667,-65.0243,788.5227],[460.5047,-65.1033,791.4677],[462.4277,-65.3253,795.0577],[465.7257,-65.6133,800.0897],[467.3747,-65.7573,802.6057],[469.0257,-65.9023,805.1257],[470.9567,-66.0333,807.7837],[472.8307,-66.1573,810.1267],[474.7097,-66.2823,812.4757],[476.5567,-66.4053,814.7867],[473.9847,-66.2343,811.5697],[472.1057,-66.1093,809.2207],[470.2207,-65.9843,806.8637],[468.3717,-65.8443,804.1277],[466.7217,-65.7003,801.6107],[465.0707,-65.5563,799.0897],[463.4157,-65.4113,796.5647],[461.7637,-65.2673,794.0447],[460.2497,-65.0713,790.2887],[459.6107,-64.9923,787.3467],[458.9727,-64.8713,784.4057],[458.3407,-64.4243,781.4917],[457.0777,-63.5333,775.6697],[456.4647,-63.1003,772.8437]],"members":[{"id":"member","entityId":"entry-27973","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126788","name":"Crystalline Shardling Patrol","speed":1.15,"pathId":1267880,"formationSource":"database-solo","spawnMask":3,"waypoints":[[463.1917,-64.1343,775.5527],[463.8247,-64.5853,778.4687],[464.4577,-65.0373,781.3867],[465.0917,-65.3683,784.3107],[465.7297,-65.5093,787.2507],[466.3687,-65.6493,790.1947],[467.4467,-65.7703,791.7687],[470.7437,-66.1023,796.8017],[472.3937,-66.2623,799.3187],[474.0447,-66.4143,801.8377],[475.6437,-66.5373,804.0367],[477.5167,-66.6873,806.3797],[479.3947,-66.8383,808.7277],[481.2427,-66.9863,811.0387],[478.6707,-66.7803,807.8227],[476.7907,-66.6293,805.4717],[474.9057,-66.4783,803.1147],[473.3897,-66.3583,800.8387],[471.7397,-66.1993,798.3217],[470.0877,-66.0393,795.8007],[468.4337,-65.8793,793.2757],[466.7827,-65.6943,790.7567],[466.1127,-65.5933,789.0167],[465.5337,-65.4643,786.2927],[464.8487,-65.3153,783.1847],[464.2047,-64.8563,780.2197],[462.9417,-63.9563,774.3997],[462.3277,-63.5183,771.5697]],"members":[{"id":"member","entityId":"entry-27973","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-126790","name":"Krystallus","position":[402.6167,-44.3873,842.9207]},{"id":"creature-126789","name":"Maiden of Grief","position":[308.7497,-62.9773,676.9927]},{"id":"encounter-567","name":"Tribunal of Ages","position":[449.066,-57.1563,985.3294]},{"id":"creature-126792","name":"Sjonnir the Ironshaper","position":[309.8597,-63.4023,1129.5707]}],"objectiveOrder":[{"id":"creature-126790","name":"Krystallus","position":[402.6167,-44.3873,842.9207]},{"id":"creature-126789","name":"Maiden of Grief","position":[308.7497,-62.9773,676.9927]},{"id":"encounter-567","name":"Tribunal of Ages","position":[449.066,-57.1563,985.3294]},{"id":"creature-126792","name":"Sjonnir the Ironshaper","position":[309.8597,-63.4023,1129.5707]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65554,"id":189980,"map":599,"orientation":-2.60053,"phaseMask":1,"position_x":949.208,"position_y":845.198,"position_z":186.281,"rotation0":0,"rotation1":0,"rotation2":-0.963629,"rotation3":0.267244,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65555,"id":189980,"map":599,"orientation":2.25147,"phaseMask":1,"position_x":1063.82,"position_y":714.079,"position_z":203.998,"rotation0":0,"rotation1":0,"rotation2":0.902584,"rotation3":0.430513,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65556,"id":191527,"map":599,"orientation":3.14159,"phaseMask":1,"position_x":909.745,"position_y":345.068,"position_z":203.394,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65557,"id":191292,"map":599,"orientation":-1.5708,"phaseMask":1,"position_x":896.37,"position_y":666.683,"position_z":197.879,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65558,"id":191293,"map":599,"orientation":0,"phaseMask":1,"position_x":1048.15,"position_y":527.051,"position_z":209.189,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65559,"id":191294,"map":599,"orientation":-0.785397,"phaseMask":1,"position_x":1017.82,"position_y":453.865,"position_z":209.189,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65560,"id":191295,"map":599,"orientation":0,"phaseMask":1,"position_x":1048.15,"position_y":631.077,"position_z":209.189,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65561,"id":191296,"map":599,"orientation":-1.5708,"phaseMask":1,"position_x":1206.56,"position_y":666.977,"position_z":197.738,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65562,"id":193906,"map":599,"orientation":3.14159,"phaseMask":1,"position_x":1314.21,"position_y":666.193,"position_z":189.397,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65563,"id":193907,"map":599,"orientation":0.829032,"phaseMask":1,"position_x":894.825,"position_y":330.104,"position_z":203.714,"rotation0":0,"rotation1":0,"rotation2":0.402747,"rotation3":0.915311,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65564,"id":190586,"map":599,"orientation":0,"phaseMask":1,"position_x":880.406,"position_y":345.164,"position_z":203.706,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":1,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65565,"id":192163,"map":599,"orientation":-2.82804,"phaseMask":1,"position_x":1293.96,"position_y":735.123,"position_z":196.377,"rotation0":0,"rotation1":0,"rotation2":-0.987736,"rotation3":0.156135,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65566,"id":192164,"map":599,"orientation":-0.34004,"phaseMask":1,"position_x":1293.96,"position_y":598.708,"position_z":196.377,"rotation0":0,"rotation1":0,"rotation2":-0.169202,"rotation3":0.985581,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65567,"id":191669,"map":599,"orientation":0.785397,"phaseMask":1,"position_x":888.559,"position_y":323.302,"position_z":205.345,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65568,"id":191670,"map":599,"orientation":-0.785399,"phaseMask":1,"position_x":887.285,"position_y":367.833,"position_z":205.345,"rotation0":0,"rotation1":0,"rotation2":-0.382684,"rotation3":0.923879,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65569,"id":191671,"map":599,"orientation":2.35619,"phaseMask":1,"position_x":930.975,"position_y":323.753,"position_z":205.345,"rotation0":0,"rotation1":0,"rotation2":0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65570,"id":191459,"map":599,"orientation":3.14159,"phaseMask":1,"position_x":1153.23,"position_y":720.171,"position_z":197.738,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65571,"id":192489,"map":599,"orientation":-1.5708,"phaseMask":1,"position_x":1152.8,"position_y":818.52,"position_z":198.324,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65572,"id":192490,"map":599,"orientation":-1.5708,"phaseMask":1,"position_x":1152.8,"position_y":818.52,"position_z":198.324,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":151790,"id":193996,"map":599,"orientation":0,"phaseMask":1,"position_x":880.406,"position_y":345.164,"position_z":203.706,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":2,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/halls-of-stone/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["16/17 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"draktharon-keep","title":"Drak'Tharon Keep","mapId":600,"lfgDungeonIds":[214,215],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[72,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Drak'Tharon Keep","theme":"Open-world expedition","summary":"Fight through Drak'Tharon Keep, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Drak'Tharon Keep...","unchartedAreaName":"Uncharted Drak'Tharon Keep","background":"#081016","fog":{"color":"#0a141c","near":36,"far":286.5946},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/600-draktheronkeep/visual.glb","checksum":"6a03735ad1c7141f72243b91bdd300784bad19c0e41c5c0a6b7a0f0e760e5081","size":24634228,"triangleCount":1914607}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-000.glb","checksum":"c6250d1e360a35bc714122b764f5b07dc840b41ce4fc69080e15a3176ba85b4f","size":130952,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-001.glb","checksum":"7c754a3ae46549440149ac14007b09411a4424b2f1856510b8d483ccac2a8fb1","size":130640,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-002.glb","checksum":"25df76551765a59d1893f1f120f5798a5c389fb7ac14d2dd2775f9949b9e753c","size":131988,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-003.glb","checksum":"042dcd68e48c627eb565b15b014ab2406c55e3e59da7d47165a648039cb0864e","size":131836,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-004.glb","checksum":"ba6d07f01038f15669f245fb9c534f58c1271ad24a6d6d8cee8f7fe54ece2ff7","size":132964,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-005.glb","checksum":"8ad38de85df1a8611d3ccbcc607fa4a757afd20819d697b07f473262acc4625a","size":147588,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-006.glb","checksum":"fa6f92a611ff44330ffa06938fe96be3bc758e9aca982dc9b8fb1ab0e74a5cd3","size":166352,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-007.glb","checksum":"c6b6068412f46770a58030c3bb47e92babacd7e17ba73c676bb73f0bf2265ea3","size":260736,"triangleCount":66555},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-008.glb","checksum":"6df9f37308c03e153b27d647b0c95cabe295eb2ed231262028becbb20d447944","size":310120,"triangleCount":71640},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-009.glb","checksum":"2710b4b875aed819f8f1b4673b50ff97e2bfd982e868da6d069885945a9ccc22","size":151720,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-010.glb","checksum":"750762de26e25ff833689a2e3f1b0ea55046d60320b7a636bd927498ff5989fe","size":145404,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-011.glb","checksum":"5a20acb7d13b2f7cd4dfe8f4f55a5d5cf6616f58edee066e26f3e74f2687be71","size":266728,"triangleCount":72207},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-012.glb","checksum":"f5d042513fb14ebf753d90734695ce3240a8c4ab6ce710e8f9cc009197df2fa8","size":205632,"triangleCount":67609},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-013.glb","checksum":"b978d24d82c222c2a8501ec6f930f356172866b9f37689f9abe1f9f518ad7898","size":1201780,"triangleCount":74072},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-014.glb","checksum":"51b73d813acb3bc6fe484d86f1f8110ad1e464af227d537df2a2e7d46df97400","size":212768,"triangleCount":67484},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-015.glb","checksum":"63c3692bcd810275e454568f766950d15862472655a255fcc0414cdcae683303","size":172216,"triangleCount":66620},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-016.glb","checksum":"50ab4aaa85b657eed525173ee93f5a235b0f57f8b18c9ecb9b5d7c89066f085d","size":145820,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-017.glb","checksum":"24f9bd6f478e592407c11b37d4bf9486ffcfaaf749ce327464989836e65986dc","size":187456,"triangleCount":66649},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-018.glb","checksum":"a288d65c8b475f2a9a5a4ee4a112c3ef6b2c5a1788b00eec365b566c910722c0","size":191256,"triangleCount":66421},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-019.glb","checksum":"c64ffa345381fe8b86f4331e73791984b81e974fda8d5598881fd583e515ac82","size":336060,"triangleCount":75280},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-020.glb","checksum":"522f3de0441cfe6bc813a421b75828be6c5b277074d837f1952344fe0f2de924","size":152572,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-021.glb","checksum":"ef3b5cb2d86ce9adfab263d38820c3b8fa4aae5abe51921c50078793c0728bef","size":141192,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-022.glb","checksum":"10a16f42b69053620083db06d2e177e5e4a30a7edc139fd9e2c019b19686fcbf","size":185020,"triangleCount":67609},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-023.glb","checksum":"cb0d7dd64437e9c936676b5e66c8eec5220d7733987f8b8baa1dee01b0eb2c33","size":167144,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-024.glb","checksum":"3c4a274a2d47e76c8ae2b1aeaaee34e1ec0fedf5a7892180f6dd7891645b977a","size":169904,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/600-draktheronkeep/collision-025.glb","checksum":"4afcd91696b56f6e9d62547fbff018759ec576ae2dfe8878872c29f0fe5dad8c","size":149156,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/600-draktheronkeep/navigation.glb","checksum":"3ae4c87f2dbe01a96e489e7f3590ead93b260e3a70fc4fdb59f397be977443d7","size":4362736,"triangleCount":364577}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-1430.6504,-31.6747,-612.0304],"max":[-1078.5994,139.2546,-213.9824]},"entrance":{"name":"Drak'Tharon Keep Entrance","footPosition":[-1123.5994,-1.6834,-539.4994],"forward":[-0.17887797828310315,0,0.9838712664192149],"yaw":-0.17984591757895443},"areas":[{"id":"entrance","name":"Drak'Tharon Keep Entrance","center":[-1123.5994,-1.6834,-539.4994],"radius":35},{"id":"area-trollgore","name":"Trollgore's Encounter","center":[-1295.7704,13.8176,-288.3324],"radius":42},{"id":"area-novos-the-summoner","name":"Novos the Summoner's Encounter","center":[-1373.3514,14.6199,-401.4264],"radius":42},{"id":"area-king-dred","name":"King Dred's Encounter","center":[-1332.5974,17.6017,-567.0304],"radius":42},{"id":"area-the-prophet-tharon-ja","name":"The Prophet Tharon'ja's Encounter","center":[-1311.0284,119.2546,-258.9824],"radius":42}],"entities":{"entry-26624":{"id":"entry-26624","kind":"mob","name":"Wretched Belcher","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/2f64a293ef2b8514538c3e3c90e480b7f8d3c71dc2855c2183bad097933f4da2.glb","rotationY":-1.5707963267948966,"groundOffset":0.0061,"labelHeight":5.6966,"markerRadius":2.5109}}},"entry-26625":{"id":"entry-26625","kind":"mob","name":"Darkweb Recluse","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-16462-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2209,"labelHeight":3.0139,"markerRadius":2.3398}}},"entry-26626":{"id":"entry-26626","kind":"mob","name":"Scourge Reanimator","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2500,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-24084-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":4.6049,"markerRadius":0.944}}},"entry-26628":{"id":"entry-26628","kind":"mob","name":"Drakkari Scytheclaw","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-19732-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.023,"labelHeight":3.7328,"markerRadius":2.526}}},"entry-27909":{"id":"entry-27909","kind":"mob","name":"Darkweb Victim","combat":{"level":70,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-24925-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.6446,"labelHeight":4.0971,"markerRadius":1.7013}}},"entry-26630":{"id":"entry-26630","kind":"boss","name":"Trollgore","title":"Dungeon Boss","hasLoot":true,"combat":{"level":76,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-49637","name":"Infected Wound","spellId":49637,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6000,"damageMultiplier":1.35},{"id":"spell-49639","name":"Crush","spellId":49639,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-49380","name":"Consume","spellId":49380,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-49555","name":"Corpse Explode","spellId":49555,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-26352-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.017,"labelHeight":6.9778,"markerRadius":2.2481}}},"entry-26631":{"id":"entry-26631","kind":"boss","name":"Novos the Summoner","title":"Dungeon Boss","hasLoot":true,"combat":{"level":76,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52106","name":"Beam Channel","spellId":52106,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5372,"damageMultiplier":1.35},{"id":"spell-49034","name":"Blizzard","spellId":49034,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5372,"damageMultiplier":0.82,"radius":11},{"id":"spell-50089","name":"Wrath of Misery","spellId":50089,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5372,"damageMultiplier":1.35},{"id":"spell-49198","name":"Arcane Blast","spellId":49198,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":5372,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-26292-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.995,"labelHeight":13.5311,"markerRadius":2.9978}}},"entry-26635":{"id":"entry-26635","kind":"mob","name":"Risen Drakkari Warrior","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27058-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0281,"labelHeight":5.6905,"markerRadius":1.0315}}},"entry-26620":{"id":"entry-26620","kind":"mob","name":"Drakkari Guardian","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27077-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0176,"labelHeight":4.7168,"markerRadius":0.8267}}},"entry-26623":{"id":"entry-26623","kind":"mob","name":"Scourge Brute","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/9a6dd0a8f5d239e51ad1ceaed4079f25646ad7be2e952cc4feef7bbcda29613b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0035,"labelHeight":3.6388,"markerRadius":0.7423}}},"entry-26636":{"id":"entry-26636","kind":"mob","name":"Risen Drakkari Soulmage","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-26857-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0161,"labelHeight":3.2533,"markerRadius":0.65}}},"entry-26637":{"id":"entry-26637","kind":"mob","name":"Risen Drakkari Handler","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.434272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-26860-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0201,"labelHeight":4.0646,"markerRadius":0.7368}}},"entry-26638":{"id":"entry-26638","kind":"mob","name":"Risen Drakkari Bat Rider","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"winged","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27056-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0241,"labelHeight":4.8776,"markerRadius":0.8841}}},"entry-26639":{"id":"entry-26639","kind":"mob","name":"Drakkari Shaman","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27083-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0176,"labelHeight":4.7168,"markerRadius":0.8267}}},"entry-26641":{"id":"entry-26641","kind":"mob","name":"Drakkari Gutripper","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-19734-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.023,"labelHeight":3.7328,"markerRadius":2.526}}},"entry-27431":{"id":"entry-27431","kind":"mob","name":"Drakkari Commander","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27075-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0239,"labelHeight":6.4148,"markerRadius":1.1243}}},"entry-27483":{"id":"entry-27483","kind":"boss","name":"King Dred","title":"Dungeon Boss","hasLoot":true,"combat":{"level":76,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-22686","name":"Bellowing Roar","spellId":22686,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4650,"damageMultiplier":0.82,"radius":11},{"id":"spell-48849","name":"Fearsome Roar","spellId":48849,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4650,"damageMultiplier":0.82,"radius":11},{"id":"spell-48878","name":"Piercing Slash","spellId":48878,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-48873","name":"Mangling Slash","spellId":48873,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":2500,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-5240-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1061,"labelHeight":20.1113,"markerRadius":4.5}}},"entry-26830":{"id":"entry-26830","kind":"mob","name":"Risen Drakkari Death Knight","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27062-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0281,"labelHeight":5.6905,"markerRadius":1.0315}}},"entry-27871":{"id":"entry-27871","kind":"mob","name":"Flesheating Ghoul","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-829-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0011,"labelHeight":2.2953,"markerRadius":0.65}}},"entry-26621":{"id":"entry-26621","kind":"mob","name":"Ghoul Tormentor","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-24994-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.7604,"markerRadius":0.65}}},"entry-26622":{"id":"entry-26622","kind":"mob","name":"Drakkari Bat","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"winged","model":{"url":"/assets/game/creatures/shared/d1808c723ce299735a6e04353e27ea6350abc507068bc4737393e3d16145bac6.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.17,"markerRadius":2.1069}}},"entry-26632":{"id":"entry-26632","kind":"boss","name":"The Prophet Tharon'ja","title":"Dungeon Boss","hasLoot":true,"combat":{"level":76,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-53242","name":"Clear Gift of Tharon'ja","spellId":53242,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4952,"damageMultiplier":1.35},{"id":"spell-49356","name":"Decay Flesh","spellId":49356,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-49527","name":"Curse of Life","spellId":49527,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-49528","name":"Shadow Volley","spellId":49528,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6000,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/draktharon-keep/creatures/display-27072-animated.glb","rotationY":-1.5707963267948966,"groundOffset":13.929,"labelHeight":23.1673,"markerRadius":4.5}}}},"staticSpawns":[{"id":"creature-127405","entityId":"entry-26625","position":[-1357.7064,14.5985,-305.5464],"yaw":-1.40479,"spawnMask":3},{"id":"creature-127406","entityId":"entry-26625","position":[-1352.7124,14.9598,-315.3534],"yaw":-6.17846,"spawnMask":3},{"id":"creature-127407","entityId":"entry-26625","position":[-1346.9924,14.682,-304.3254],"yaw":-1.20428,"spawnMask":3},{"id":"creature-127408","entityId":"entry-26625","position":[-1356.9334,14.82,-271.2634],"yaw":-2.16421,"spawnMask":3},{"id":"creature-127409","entityId":"entry-26625","position":[-1367.4244,14.745,-278.1614],"yaw":-1.64061,"spawnMask":3},{"id":"creature-127410","entityId":"entry-26626","position":[-1240.4654,-11.6685,-420.2994],"yaw":-2.83436,"spawnMask":3},{"id":"creature-127413","entityId":"entry-26628","position":[-1353.8164,17.6363,-556.0134],"yaw":-2.32129,"spawnMask":3},{"id":"creature-127414","entityId":"entry-26628","position":[-1329.5384,17.6363,-549.8354],"yaw":-5.88176,"spawnMask":3},{"id":"creature-127415","entityId":"entry-26628","position":[-1298.3714,17.6416,-563.6334],"yaw":-5.61996,"spawnMask":3},{"id":"creature-127416","entityId":"entry-27909","position":[-1336.8654,14.6822,-309.2584],"yaw":-1.23918,"spawnMask":3},{"id":"creature-127417","entityId":"entry-27909","position":[-1375.1814,14.6822,-267.3454],"yaw":-3.07178,"spawnMask":3},{"id":"creature-127418","entityId":"entry-27909","position":[-1361.8044,14.6822,-331.5204],"yaw":-0.244346,"spawnMask":3},{"id":"creature-127419","entityId":"entry-27909","position":[-1339.4884,14.6822,-263.0254],"yaw":-4.06662,"spawnMask":3},{"id":"creature-127420","entityId":"entry-27909","position":[-1385.6504,16.8367,-277.9914],"yaw":-1.51844,"spawnMask":3},{"id":"creature-127421","entityId":"entry-27909","position":[-1376.3364,14.6822,-296.3534],"yaw":-1.37881,"spawnMask":3},{"id":"creature-127422","entityId":"entry-26630","position":[-1295.7704,13.8176,-288.3324],"yaw":0,"spawnMask":3},{"id":"creature-127424","entityId":"entry-26631","position":[-1373.3514,14.6199,-401.4264],"yaw":-4.45059,"spawnMask":3},{"id":"creature-127425","entityId":"entry-26635","position":[-1208.2604,-1.5902,-346.3814],"yaw":-2.53073,"spawnMask":3},{"id":"creature-127426","entityId":"entry-26635","position":[-1243.6064,-10.3485,-389.0604],"yaw":-2.68781,"spawnMask":3},{"id":"creature-127427","entityId":"entry-26635","position":[-1231.2964,59.9972,-444.3074],"yaw":-1.41372,"spawnMask":3},{"id":"creature-127428","entityId":"entry-26635","position":[-1230.0274,59.9136,-439.9044],"yaw":-2.57147,"spawnMask":3},{"id":"creature-127429","entityId":"entry-26635","position":[-1288.0324,-0.7779,-356.3004],"yaw":-0.645772,"spawnMask":3},{"id":"creature-127430","entityId":"entry-26635","position":[-1239.6934,-11.5848,-439.5774],"yaw":-2.72271,"spawnMask":3},{"id":"creature-127431","entityId":"entry-26635","position":[-1237.8214,-11.5848,-418.6394],"yaw":-5.61996,"spawnMask":3},{"id":"creature-127432","entityId":"entry-26635","position":[-1250.0134,59.9957,-334.3854],"yaw":-1.78024,"spawnMask":3},{"id":"creature-127433","entityId":"entry-26635","position":[-1247.9574,59.9834,-325.3954],"yaw":-2.30383,"spawnMask":3},{"id":"creature-127434","entityId":"entry-26635","position":[-1211.4474,-1.6049,-348.3334],"yaw":-2.3911,"spawnMask":3},{"id":"creature-127435","entityId":"entry-26635","position":[-1231.5844,-10.3485,-385.9614],"yaw":-3.33358,"spawnMask":3},{"id":"creature-127436","entityId":"entry-26620","position":[-1230.4234,-11.6434,-545.2944],"yaw":-2.33,"spawnMask":3},{"id":"creature-127437","entityId":"entry-26620","position":[-1235.8834,-11.1034,-550.4864],"yaw":-2.33,"spawnMask":3},{"id":"creature-127438","entityId":"entry-26623","position":[-1239.9904,59.9953,-471.4944],"yaw":-6.23082,"spawnMask":3},{"id":"creature-127439","entityId":"entry-26636","position":[-1293.8604,-1.6864,-353.1964],"yaw":-0.558505,"spawnMask":3},{"id":"creature-127440","entityId":"entry-26636","position":[-1242.3174,-11.0589,-506.9094],"yaw":-4.29351,"spawnMask":3},{"id":"creature-127441","entityId":"entry-26636","position":[-1234.9624,-11.0125,-487.5854],"yaw":-6.19592,"spawnMask":3},{"id":"creature-127443","entityId":"entry-26637","position":[-1319.2024,17.678,-527.4774],"yaw":-1.67738,"spawnMask":3},{"id":"creature-127445","entityId":"entry-26638","position":[-1243.1074,78.4143,-461.7454],"yaw":-5.50128,"spawnMask":3},{"id":"creature-127446","entityId":"entry-26638","position":[-1231.3354,81.0633,-480.3404],"yaw":-1.32326,"spawnMask":3},{"id":"creature-127447","entityId":"entry-26638","position":[-1250.5394,74.4725,-464.9784],"yaw":-5.77406,"spawnMask":3},{"id":"creature-127448","entityId":"entry-26638","position":[-1304.6004,14.0321,-423.1304],"yaw":-3.94444,"spawnMask":3},{"id":"creature-127449","entityId":"entry-26639","position":[-1222.4434,60.0549,-371.6184],"yaw":-5.61996,"spawnMask":3},{"id":"creature-127451","entityId":"entry-26639","position":[-1227.5884,59.999,-364.1564],"yaw":-3.87463,"spawnMask":3},{"id":"creature-127452","entityId":"entry-26641","position":[-1338.1374,17.561,-565.3174],"yaw":-1.0648,"spawnMask":3},{"id":"creature-127453","entityId":"entry-26641","position":[-1295.3154,18.2581,-549.9744],"yaw":-2.68781,"spawnMask":3},{"id":"creature-127454","entityId":"entry-26641","position":[-1358.3054,17.6363,-541.2134],"yaw":-2.98451,"spawnMask":3},{"id":"creature-127455","entityId":"entry-26641","position":[-1310.1424,17.6509,-563.7534],"yaw":-1.16937,"spawnMask":3},{"id":"creature-127507","entityId":"entry-27483","position":[-1332.5974,17.6017,-567.0304],"yaw":-4.06062,"spawnMask":3},{"id":"creature-127554","entityId":"entry-26830","position":[-1374.4594,89.1906,-298.7334],"yaw":-2.05949,"spawnMask":3},{"id":"creature-127555","entityId":"entry-26830","position":[-1364.9974,89.1906,-296.2864],"yaw":-3.08923,"spawnMask":3},{"id":"creature-127556","entityId":"entry-26830","position":[-1335.1614,89.2226,-310.6454],"yaw":-1.58825,"spawnMask":3},{"id":"creature-127557","entityId":"entry-26830","position":[-1334.2614,89.1986,-299.4124],"yaw":-1.79769,"spawnMask":3},{"id":"creature-127558","entityId":"entry-27871","position":[-1305.7994,-1.6862,-325.1294],"yaw":-0.296706,"spawnMask":3},{"id":"creature-127559","entityId":"entry-27871","position":[-1298.2914,-1.6862,-350.6744],"yaw":-1.8326,"spawnMask":3},{"id":"creature-127560","entityId":"entry-27871","position":[-1283.6074,-1.6862,-341.4324],"yaw":-2.28638,"spawnMask":3},{"id":"creature-127567","entityId":"entry-26620","position":[-1286.9674,-1.6862,-326.2614],"yaw":-3.05433,"spawnMask":3},{"id":"creature-127568","entityId":"entry-26620","position":[-1282.2094,-1.6862,-343.1064],"yaw":-0.750492,"spawnMask":3},{"id":"creature-127569","entityId":"entry-26620","position":[-1295.7944,-1.6862,-351.3794],"yaw":-3.735,"spawnMask":3},{"id":"creature-127570","entityId":"entry-26620","position":[-1304.9964,-2.229,-330.9444],"yaw":-4.99164,"spawnMask":3},{"id":"creature-127571","entityId":"entry-26620","position":[-1296.8854,-2.229,-345.7704],"yaw":-1.88496,"spawnMask":3},{"id":"creature-127572","entityId":"entry-26620","position":[-1232.8504,-11.5848,-496.1464],"yaw":-0.034907,"spawnMask":3},{"id":"creature-127573","entityId":"entry-26620","position":[-1221.0104,-7.2251,-301.9414],"yaw":-0.541052,"spawnMask":3},{"id":"creature-127574","entityId":"entry-26620","position":[-1216.2914,-6.8114,-293.3734],"yaw":-5.044,"spawnMask":3},{"id":"creature-127575","entityId":"entry-26620","position":[-1242.7614,-10.7935,-502.8034],"yaw":-2.16421,"spawnMask":3},{"id":"creature-127576","entityId":"entry-26620","position":[-1235.0554,-11.515,-513.5484],"yaw":-2.77507,"spawnMask":3},{"id":"creature-127577","entityId":"entry-26620","position":[-1202.6084,-1.639,-283.0024],"yaw":-3.47321,"spawnMask":3},{"id":"creature-127578","entityId":"entry-26620","position":[-1243.8754,59.9698,-327.0364],"yaw":-5.09636,"spawnMask":3},{"id":"creature-127579","entityId":"entry-26620","position":[-1246.2294,59.9964,-334.7784],"yaw":-4.83456,"spawnMask":3},{"id":"creature-127580","entityId":"entry-26620","position":[-1228.0494,59.9974,-442.9904],"yaw":-5.07891,"spawnMask":3},{"id":"creature-127583","entityId":"entry-26620","position":[-1290.2264,-2.229,-337.4554],"yaw":-1.5708,"spawnMask":3},{"id":"creature-127584","entityId":"entry-26620","position":[-1305.0234,-1.6862,-323.1904],"yaw":-4.24115,"spawnMask":3},{"id":"creature-127585","entityId":"entry-26620","position":[-1234.3084,-11.5852,-417.6164],"yaw":-3.07178,"spawnMask":3},{"id":"creature-127586","entityId":"entry-26620","position":[-1233.7004,-1.6388,-313.8074],"yaw":-5.75959,"spawnMask":3},{"id":"creature-127587","entityId":"entry-26620","position":[-1240.4684,-11.5348,-485.1984],"yaw":-3.22886,"spawnMask":3},{"id":"creature-127588","entityId":"entry-26620","position":[-1219.3564,-1.5678,-262.4904],"yaw":-5.67232,"spawnMask":3},{"id":"creature-127589","entityId":"entry-26620","position":[-1247.2704,59.9953,-461.9294],"yaw":-3.9968,"spawnMask":3},{"id":"creature-127590","entityId":"entry-26620","position":[-1238.5134,59.9953,-467.4704],"yaw":-3.9619,"spawnMask":3},{"id":"creature-127591","entityId":"entry-26620","position":[-1221.9044,60.0606,-359.3714],"yaw":-4.10152,"spawnMask":3},{"id":"creature-127592","entityId":"entry-26620","position":[-1214.3554,-1.5663,-269.9884],"yaw":-3.82227,"spawnMask":3},{"id":"creature-127593","entityId":"entry-26620","position":[-1234.8474,-11.5851,-438.3804],"yaw":-3.80482,"spawnMask":3},{"id":"creature-127594","entityId":"entry-26620","position":[-1239.8244,-11.5848,-412.2284],"yaw":-4.67748,"spawnMask":3},{"id":"creature-127595","entityId":"entry-26620","position":[-1214.9984,-1.6025,-340.9054],"yaw":-0.802851,"spawnMask":3},{"id":"creature-127596","entityId":"entry-26626","position":[-1239.5684,-11.6684,-538.0094],"yaw":-2.451,"spawnMask":3},{"id":"creature-127597","entityId":"entry-26620","position":[-1217.7944,-1.6067,-283.3784],"yaw":-1.79769,"spawnMask":3},{"id":"creature-127598","entityId":"entry-26620","position":[-1196.3984,-1.6355,-287.4804],"yaw":-0.087266,"spawnMask":3},{"id":"creature-127599","entityId":"entry-26620","position":[-1216.0184,-1.6022,-323.9114],"yaw":-3.85718,"spawnMask":3},{"id":"creature-127600","entityId":"entry-26620","position":[-1242.1964,-11.5848,-425.2534],"yaw":-3.97935,"spawnMask":3},{"id":"creature-127601","entityId":"entry-26620","position":[-1239.0734,-11.5848,-448.7754],"yaw":-0.418879,"spawnMask":3},{"id":"creature-127602","entityId":"entry-26620","position":[-1211.2504,-7.2345,-299.2204],"yaw":-3.75246,"spawnMask":3},{"id":"creature-127603","entityId":"entry-26620","position":[-1243.5644,-11.5848,-436.2034],"yaw":-2.18166,"spawnMask":3},{"id":"creature-127604","entityId":"entry-26621","position":[-1303.2364,-2.229,-329.1944],"yaw":-3.80482,"spawnMask":3},{"id":"creature-127605","entityId":"entry-26621","position":[-1303.4654,-1.6862,-321.7584],"yaw":-4.01426,"spawnMask":3},{"id":"creature-127606","entityId":"entry-26621","position":[-1294.5014,-2.229,-347.2804],"yaw":-5.5676,"spawnMask":3},{"id":"creature-127607","entityId":"entry-26621","position":[-1294.0064,-1.6862,-351.4984],"yaw":-4.59022,"spawnMask":3},{"id":"creature-127608","entityId":"entry-26621","position":[-1283.2174,-1.6862,-344.8714],"yaw":-0.471239,"spawnMask":3},{"id":"creature-127609","entityId":"entry-26621","position":[-1288.1084,-2.229,-339.6224],"yaw":-6.00393,"spawnMask":3},{"id":"creature-127610","entityId":"entry-26622","position":[-1310.2564,14.0323,-429.9274],"yaw":-4.67748,"spawnMask":3},{"id":"creature-127611","entityId":"entry-26622","position":[-1299.0194,14.0323,-427.6014],"yaw":-4.92183,"spawnMask":3},{"id":"creature-127616","entityId":"entry-26622","position":[-1318.0104,14.0323,-420.5964],"yaw":-3.92699,"spawnMask":3},{"id":"creature-127617","entityId":"entry-26623","position":[-1249.7874,59.9953,-467.7404],"yaw":-0.383972,"spawnMask":3},{"id":"creature-200143","entityId":"entry-26632","position":[-1311.0284,119.2546,-258.9824],"yaw":-4.76475,"spawnMask":3}],"roamingPacks":[{"id":"patrol-127403","name":"Wretched Belcher Patrol","speed":1.15,"pathId":1274030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1295.8684,-2.0625,-343.3354],[-1293.9224,-1.8335,-336.4214],[-1298.6494,-1.8403,-330.4684],[-1303.1394,-2.2631,-334.4844],[-1307.8734,-1.5411,-346.0284],[-1308.1994,-1.6228,-347.3834],[-1300.9804,-2.0411,-346.3504],[-1295.7554,-2.1765,-343.3614],[-1293.8974,-1.8335,-336.4224],[-1298.6544,-1.8374,-330.4534],[-1303.1514,-2.2613,-334.4734],[-1307.8914,-1.5411,-346.0474],[-1308.2004,-1.622,-347.3914],[-1300.9794,-2.0411,-346.3514],[-1295.7574,-2.1736,-343.3664],[-1293.8964,-1.8335,-336.4224],[-1298.6604,-1.8332,-330.4324],[-1303.1754,-2.2575,-334.4514],[-1307.9074,-1.5411,-346.0644],[-1308.2054,-1.6192,-347.4214]],"members":[{"id":"member","entityId":"entry-26624","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127404","name":"Wretched Belcher Patrol","speed":1.15,"pathId":1274040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1276.1384,-0.742,-340.3124],[-1279.3094,-1.3247,-333.2864],[-1281.8074,-1.7697,-329.1114],[-1285.9954,-1.5954,-322.5614],[-1293.7054,-2.0607,-320.5574],[-1295.3244,-2.0717,-320.9714],[-1296.9664,-2.056,-332.2774],[-1294.7484,-2.1198,-336.4404],[-1293.2674,-2.0118,-339.0974],[-1291.0694,-1.9438,-347.2864],[-1285.9384,-0.5854,-351.9694],[-1283.1314,-0.6834,-352.0824],[-1278.4964,-0.6354,-350.8484]],"members":[{"id":"member","entityId":"entry-26624","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127411","name":"Scourge Reanimator Patrol","speed":1.15,"pathId":1274110,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1236.8534,-11.5488,-508.9844],[-1235.5914,-11.6685,-503.3434],[-1238.0554,-10.8733,-497.6284],[-1240.4594,-11.649,-491.7934],[-1240.8014,-11.6747,-484.7114],[-1240.4674,-11.6507,-491.7134],[-1238.0554,-10.8733,-497.6284],[-1235.5914,-11.6685,-503.3434],[-1236.8534,-11.5488,-508.9844],[-1239.6014,-10.6212,-516.2754]],"members":[{"id":"member","entityId":"entry-26626","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127412","name":"Scourge Reanimator Patrol","speed":1.15,"pathId":1274120,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1238.4364,-11.6685,-426.6934],[-1240.4654,-11.6685,-420.2994],[-1238.4364,-11.6685,-426.6934],[-1239.0094,-11.6685,-433.0994],[-1236.3754,-11.6685,-438.8124],[-1235.3494,-11.6685,-446.6544],[-1236.3754,-11.6685,-438.8124],[-1239.0094,-11.6685,-433.0994]],"members":[{"id":"member","entityId":"entry-26626","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127442","name":"Risen Drakkari Handler Patrol","speed":1.15,"pathId":1274420,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1307.6994,17.553,-529.0384],[-1354.4204,17.5531,-514.7404]],"members":[{"id":"member","entityId":"entry-26637","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127444","name":"Risen Drakkari Handler Patrol","speed":1.15,"pathId":1274440,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1287.9274,16.0938,-488.4154],[-1287.6774,16.0938,-500.4154]],"members":[{"id":"member","entityId":"entry-26637","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127456","name":"Drakkari Gutripper Patrol","speed":1.15,"pathId":1274560,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1284.5084,15.8949,-508.2134],[-1284.6244,15.8952,-505.1964],[-1284.7414,15.8954,-502.1824],[-1284.8574,15.8957,-499.1664],[-1284.9734,15.8969,-496.1574],[-1285.0894,15.8969,-493.1484],[-1285.2064,15.8969,-490.1344],[-1285.3224,15.8595,-487.1224],[-1285.4384,15.8163,-484.1154],[-1285.5094,15.7281,-482.2664],[-1285.3504,15.8489,-486.3874],[-1285.2344,15.897,-489.3994],[-1285.1184,15.8969,-492.4114],[-1285.0024,15.8969,-495.4204],[-1284.8854,15.8957,-498.4304],[-1284.7694,15.8955,-501.4404],[-1284.6244,15.8952,-505.1964]],"members":[{"id":"member","entityId":"entry-26641","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127457","name":"Drakkari Gutripper Patrol","speed":1.15,"pathId":1274570,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1290.5034,15.8965,-508.4444],[-1290.6204,15.8968,-505.4294],[-1290.7364,15.8986,-502.4134],[-1290.8524,15.8986,-499.4004],[-1290.9694,15.8987,-496.3884],[-1291.0854,15.8987,-493.3794],[-1291.2014,15.8987,-490.3654],[-1291.3174,15.8646,-487.3534],[-1291.4334,15.8214,-484.3464],[-1291.5054,15.7948,-482.4984],[-1291.3464,15.854,-486.6194],[-1291.2294,15.8987,-489.6314],[-1291.1134,15.8987,-492.6444],[-1290.9974,15.8987,-495.6504],[-1290.8814,15.8986,-498.6594],[-1290.7654,15.8986,-501.6704],[-1290.6204,15.8968,-505.4294]],"members":[{"id":"member","entityId":"entry-26641","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127471","name":"Drakkari Commander Patrol","speed":1.15,"pathId":1274710,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1245.2554,59.9185,-395.8564],[-1246.5264,59.9079,-368.3804]],"members":[{"id":"member","entityId":"entry-27431","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127552","name":"Risen Drakkari Death Knight Patrol","speed":1.15,"pathId":1275520,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1356.6024,89.0876,-302.4024],[-1373.2464,89.0846,-302.0164],[-1356.6024,89.0876,-302.4024],[-1335.3404,89.0536,-304.9104]],"members":[{"id":"member","entityId":"entry-26830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127553","name":"Risen Drakkari Death Knight Patrol","speed":1.15,"pathId":1275530,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1244.3714,59.915,-425.0614],[-1244.1454,59.9126,-436.3344],[-1243.7864,59.9128,-445.7774],[-1244.1454,59.9126,-436.3344],[-1244.3714,59.915,-425.0614],[-1243.8934,59.914,-412.8904]],"members":[{"id":"member","entityId":"entry-26830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127582","name":"Drakkari Guardian Patrol","speed":1.15,"pathId":1275820,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1230.6584,59.9145,-370.4304],[-1226.8764,59.9149,-373.6214],[-1230.6584,59.9145,-370.4304],[-1233.3604,59.9142,-364.2484],[-1232.0804,59.9144,-359.5104],[-1228.9904,59.9146,-354.9584],[-1225.8384,59.915,-352.2834],[-1228.9904,59.9146,-354.9584],[-1232.0804,59.9144,-359.5104],[-1233.3604,59.9142,-364.2484]],"members":[{"id":"member","entityId":"entry-26620","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127612","name":"Drakkari Bat Patrol","speed":1.15,"pathId":1276120,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1329.7484,15.8801,-421.5144],[-1323.5564,15.8801,-415.0124],[-1314.9444,13.9483,-417.5054],[-1311.7114,13.9449,-426.7554],[-1318.2264,13.9482,-433.3044],[-1325.6934,15.881,-432.8264],[-1330.6494,15.8807,-428.7104]],"members":[{"id":"member","entityId":"entry-26622","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127613","name":"Drakkari Bat Patrol","speed":1.15,"pathId":1276130,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1304.9094,13.9487,-432.0834],[-1299.2444,13.9483,-426.9934],[-1291.1544,13.9485,-426.6024],[-1287.8004,15.8801,-433.6554],[-1289.3744,15.8804,-439.1074],[-1297.2124,15.8802,-443.8904],[-1301.5374,14.5758,-442.7594]],"members":[{"id":"member","entityId":"entry-26622","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127614","name":"Drakkari Bat Patrol","speed":1.15,"pathId":1276140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1315.9534,15.8801,-409.0954],[-1311.4194,15.8801,-403.4504],[-1302.5304,15.8801,-400.8914],[-1297.6744,15.8801,-408.5194],[-1300.4814,13.9481,-414.5754],[-1306.9574,13.948,-417.8234],[-1312.9484,13.9486,-414.3834]],"members":[{"id":"member","entityId":"entry-26622","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127615","name":"Drakkari Bat Patrol","speed":1.15,"pathId":1276150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1299.2384,15.8803,-445.2704],[-1303.6274,15.8804,-451.1324],[-1311.4734,15.8801,-450.2724],[-1315.2564,15.2557,-442.5094],[-1311.2404,13.9504,-435.1224],[-1303.9074,13.949,-434.5164],[-1297.8214,13.9496,-438.5704]],"members":[{"id":"member","entityId":"entry-26622","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-127422","name":"Trollgore","position":[-1295.7704,13.8176,-288.3324]},{"id":"creature-127424","name":"Novos the Summoner","position":[-1373.3514,14.6199,-401.4264]},{"id":"creature-127507","name":"King Dred","position":[-1332.5974,17.6017,-567.0304]},{"id":"creature-200143","name":"The Prophet Tharon'ja","position":[-1311.0284,119.2546,-258.9824]}],"objectiveOrder":[{"id":"creature-127422","name":"Trollgore","position":[-1295.7704,13.8176,-288.3324]},{"id":"creature-127424","name":"Novos the Summoner","position":[-1373.3514,14.6199,-401.4264]},{"id":"creature-127507","name":"King Dred","position":[-1332.5974,17.6017,-567.0304]},{"id":"creature-200143","name":"The Prophet Tharon'ja","position":[-1311.0284,119.2546,-258.9824]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":380,"id":188358,"map":600,"orientation":1.5708,"phaseMask":1,"position_x":-236.766,"position_y":-614.774,"position_z":116.487,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":4196,"guid":6120,"id":192585,"map":600,"orientation":-1.57952,"phaseMask":1,"position_x":4774.53,"position_y":-2020.72,"position_z":232.311,"rotation0":0,"rotation1":0,"rotation2":-0.710184,"rotation3":0.704016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":4196},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":4196,"guid":6121,"id":192776,"map":600,"orientation":-1.57952,"phaseMask":1,"position_x":4774.53,"position_y":-2020.72,"position_z":232.311,"rotation0":0,"rotation1":0,"rotation2":-0.710184,"rotation3":0.704016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":4196},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":4196,"guid":6122,"id":192775,"map":600,"orientation":-1.57952,"phaseMask":1,"position_x":4774.53,"position_y":-2020.72,"position_z":232.311,"rotation0":0,"rotation1":0,"rotation2":-0.710184,"rotation3":0.704016,"spawnMask":1,"spawntimesecs":120,"state":1,"zoneId":4196},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65694,"id":189975,"map":600,"orientation":-2.35619,"phaseMask":1,"position_x":-341.934,"position_y":-576.302,"position_z":10.9868,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65695,"id":191019,"map":600,"orientation":-2.46091,"phaseMask":1,"position_x":-536.647,"position_y":-644.057,"position_z":30.2464,"rotation0":0,"rotation1":0,"rotation2":-0.942641,"rotation3":0.333809,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65696,"id":191019,"map":600,"orientation":1.39626,"phaseMask":1,"position_x":-556.642,"position_y":-703.145,"position_z":30.7545,"rotation0":0,"rotation1":0,"rotation2":0.642786,"rotation3":0.766046,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65697,"id":189299,"map":600,"orientation":3.14159,"phaseMask":1,"position_x":-392.416,"position_y":-724.865,"position_z":29.4156,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65698,"id":191347,"map":600,"orientation":-1.41372,"phaseMask":1,"position_x":-239.728,"position_y":-616.755,"position_z":116.48,"rotation0":0,"rotation1":0,"rotation2":-0.649449,"rotation3":0.760405,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65699,"id":191347,"map":600,"orientation":1.53589,"phaseMask":1,"position_x":-233.764,"position_y":-616.797,"position_z":116.48,"rotation0":0,"rotation1":0,"rotation2":0.694658,"rotation3":0.71934,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65700,"id":189300,"map":600,"orientation":3.14159,"phaseMask":1,"position_x":-365.279,"position_y":-751.087,"position_z":29.4156,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65701,"id":189301,"map":600,"orientation":3.14159,"phaseMask":1,"position_x":-365.41,"position_y":-724.865,"position_z":29.4156,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65702,"id":189302,"map":600,"orientation":3.14159,"phaseMask":1,"position_x":-392.286,"position_y":-751.087,"position_z":29.4156,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65703,"id":192677,"map":600,"orientation":-0.785397,"phaseMask":1,"position_x":-518.575,"position_y":-478.596,"position_z":13.6225,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":65704,"id":190629,"map":600,"orientation":1.5708,"phaseMask":1,"position_x":-236.766,"position_y":-614.774,"position_z":116.487,"rotation0":0,"rotation1":0,"rotation2":0.707107,"rotation3":0.707107,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65705,"id":192678,"map":600,"orientation":-0.785397,"phaseMask":1,"position_x":-518.575,"position_y":-478.596,"position_z":13.6225,"rotation0":0,"rotation1":0,"rotation2":-0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65706,"id":190170,"map":600,"orientation":2.42601,"phaseMask":1,"position_x":-389.537,"position_y":-601.704,"position_z":72.6091,"rotation0":0,"rotation1":0,"rotation2":0.936673,"rotation3":0.350206,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/draktharon-keep/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["22/22 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"azjol-nerub","title":"Azjol-Nerub","mapId":601,"lfgDungeonIds":[204,241],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[70,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Azjol-Nerub","theme":"Open-world expedition","summary":"Fight through Azjol-Nerub, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Azjol-Nerub...","unchartedAreaName":"Uncharted Azjol-Nerub","background":"#081016","fog":{"color":"#0a141c","near":36,"far":459.1368},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/601-azjol-uppercity/visual.glb","checksum":"849c0bb9556dea98beb32848ef70751a62350e0117308c8084e4d1fb3bfa9ff8","size":8501448,"triangleCount":1117035}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-000.glb","checksum":"13b33f85227afecafdb7320a72f6e2a5d4a267f6bfadada6b6d7a3e30f871318","size":113016,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-001.glb","checksum":"e335be6512c809ddd4b0903c311769e1949c1ea02fb11a61c36931aec1941404","size":113532,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-002.glb","checksum":"a4a26779151b0677ac026287ac1114381321016bee4028eb48e099ea40fc562e","size":113192,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-003.glb","checksum":"5e5422ed8787474d1312330c12b11ce5ea2438f28ce1f5667ca2020cef0fd789","size":113544,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-004.glb","checksum":"abc95add7eedf7eeb9ae91718b84495b00486224e041af8d1a3a81a67714fb91","size":113140,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-005.glb","checksum":"eef0717a92f7281c14a26b90262158bc4f869cde17311b30fcf7720cb8a80144","size":113660,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-006.glb","checksum":"9563ed33dc2e5131ff0677b81d0566341d8413b9db434c87df100d93d275406f","size":902772,"triangleCount":68459},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-007.glb","checksum":"69d06c455fb483075faa49f90d332a2ab5eb8d0f7678192dc1fd22f17468bfe5","size":113348,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-008.glb","checksum":"137afb32344cce1fde27d1084a20557eb605fb9abf8119dc72fa4cbffb0da7ea","size":113564,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-009.glb","checksum":"00b9ae825b2ca462beac744bb10e482533751624e93f942ddada360d33036b7f","size":113016,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-010.glb","checksum":"0e6d551892b3409d20b78d54f9fd12e1a261a03b162e3bd32266743205eb71d6","size":113660,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-011.glb","checksum":"cf1f7d2b73dc26e85aa23392f1d764c45b4e396528b45588b8bd236b232a5a56","size":113408,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-012.glb","checksum":"e5f4104edda40975fd71d4a887bf38cd2f3d95ec9c12c363ac8d3d311537b807","size":113592,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-013.glb","checksum":"813911bf2bd55edb5cbe048b21a84ffaab16df245c47594aa7b8d25ed5a57fc3","size":113240,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-014.glb","checksum":"0bea9ee488eba9aa7e113da81a97810df6bd1d33c00842c7efe696ce4b4f9578","size":113660,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-015.glb","checksum":"69206949fc8ba8554312d65c85fbeefa5a7da8dd348acfc782b35a45ab7a1659","size":113584,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/601-azjol-uppercity/collision-016.glb","checksum":"9666cb782f3613fa94ec8177b7c7702bcc4853956c487e6689318da7168148ca","size":114100,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/601-azjol-uppercity/navigation.glb","checksum":"a0e40e020a6de452e8e81cd9a056e737a4b5c45133cc28e421d05f24495ed4f5","size":365248,"triangleCount":29405}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[80.2767,-318.8061,384.2283],"max":[717.9667,336.6729,677.5497]},"entrance":{"name":"Azjol-Nerub Entrance","footPosition":[672.9667,308.5729,484.5667],"forward":[-0.9688850896253942,0,-0.24751097571944544],"yaw":-1.8209067784434179},"areas":[{"id":"entrance","name":"Azjol-Nerub Entrance","center":[672.9667,308.5729,484.5667],"radius":35},{"id":"area-krik-thir-the-gatewatcher","name":"Krik'thir the Gatewatcher's Encounter","center":[523.2317,254.6299,600.8127],"radius":42},{"id":"area-hadronox","name":"Hadronox's Encounter","center":[421.9097,151.9009,593.7837],"radius":42},{"id":"area-anub-arak","name":"Anub'arak's Encounter","center":[125.2767,-298.8061,622.2707],"radius":42}],"entities":{"entry-28731":{"id":"entry-28731","kind":"mob","name":"Watcher Silthik","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-25729-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2702,"labelHeight":5.1434,"markerRadius":2.8142}}},"entry-28730":{"id":"entry-28730","kind":"mob","name":"Watcher Gashra","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-23568-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2702,"labelHeight":5.1434,"markerRadius":2.8142}}},"entry-28729":{"id":"entry-28729","kind":"mob","name":"Watcher Narjil","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-23984-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.2702,"labelHeight":5.1434,"markerRadius":2.8142}}},"entry-28733":{"id":"entry-28733","kind":"mob","name":"Anub'ar Shadowcaster","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-25258-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":3.3663,"markerRadius":1.8829}}},"entry-28734":{"id":"entry-28734","kind":"mob","name":"Anub'ar Skirmisher","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-25237-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1531,"labelHeight":2.9284,"markerRadius":1.5947}}},"entry-28732":{"id":"entry-28732","kind":"mob","name":"Anub'ar Warrior","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-23567-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":3.3974,"markerRadius":1.8761}}},"entry-28684":{"id":"entry-28684","kind":"boss","name":"Krik'thir the Gatewatcher","title":"Dungeon Boss","hasLoot":true,"combat":{"level":74,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-28747","name":"Frenzy","spellId":28747,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4635,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-28747","durationMs":12000,"magnitude":0.25}},{"id":"spell-52440","name":"Swarm","spellId":52440,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4635,"damageMultiplier":1.35},{"id":"spell-52586","name":"Mind Flay","spellId":52586,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4635,"damageMultiplier":1.35},{"id":"spell-52592","name":"Curse of Fatigue","spellId":52592,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4635,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-27394-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.126,"labelHeight":13.8906,"markerRadius":3.7487}}},"entry-32593":{"id":"entry-32593","kind":"mob","name":"Skittering Swarmer","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-25656-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0135,"labelHeight":1.1049,"markerRadius":0.65}}},"entry-29335":{"id":"entry-29335","kind":"mob","name":"Anub'ar Webspinner","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-23565-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":3.3974,"markerRadius":1.8761}}},"entry-28921":{"id":"entry-28921","kind":"boss","name":"Hadronox","title":"Dungeon Boss","hasLoot":true,"combat":{"level":74,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-53030","name":"Leech Poison","spellId":53030,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6523,"damageMultiplier":1.35},{"id":"spell-53418","name":"Pierce Armor","spellId":53418,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6523,"damageMultiplier":1.35},{"id":"spell-53400","name":"Acid Cloud","spellId":53400,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6523,"damageMultiplier":1.35},{"id":"spell-53406","name":"Web Grab","spellId":53406,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6523,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-26776-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":13.2019,"markerRadius":4.5}}},"entry-29340":{"id":"entry-29340","kind":"mob","name":"Anub'ar Brood Keeper","combat":{"level":72,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-26193-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0224,"labelHeight":1.6082,"markerRadius":0.7174}}},"entry-29120":{"id":"entry-29120","kind":"boss","name":"Anub'arak","title":"Dungeon Boss","hasLoot":true,"combat":{"level":74,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-34098","name":"ClearAllDebuffs","spellId":34098,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5416,"damageMultiplier":1.35},{"id":"spell-53421","name":"Submerge","spellId":53421,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5416,"damageMultiplier":1.35},{"id":"spell-53467","name":"Leeching Swarm","spellId":53467,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-53456","name":"Impale","spellId":53456,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5416,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-27856-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0127,"labelHeight":13.7501,"markerRadius":4.5}}},"entry-29128":{"id":"entry-29128","kind":"mob","name":"Anub'ar Prime Guard","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/azjol-nerub/creatures/display-26194-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3603,"labelHeight":6.8579,"markerRadius":3.7522}}}},"staticSpawns":[{"id":"creature-12758","entityId":"entry-28731","position":[542.1217,253.4669,615.0787],"yaw":-1.55334,"spawnMask":3},{"id":"creature-12759","entityId":"entry-28730","position":[540.6037,253.0269,597.9167],"yaw":-1.23918,"spawnMask":3},{"id":"creature-12760","entityId":"entry-28729","position":[543.4917,253.4999,583.0627],"yaw":-0.977384,"spawnMask":3},{"id":"creature-12761","entityId":"entry-28733","position":[539.0057,254.2149,620.9457],"yaw":-1.64061,"spawnMask":3},{"id":"creature-12762","entityId":"entry-28734","position":[545.1297,253.5009,621.2987],"yaw":-1.65806,"spawnMask":3},{"id":"creature-12763","entityId":"entry-28732","position":[535.1717,253.4619,602.2837],"yaw":-1.3439,"spawnMask":3},{"id":"creature-12764","entityId":"entry-28734","position":[536.4697,253.5349,593.0677],"yaw":-1.18682,"spawnMask":3},{"id":"creature-12765","entityId":"entry-28733","position":[546.9257,253.5279,577.4307],"yaw":-0.855211,"spawnMask":3},{"id":"creature-12766","entityId":"entry-28732","position":[541.3787,254.1979,577.7687],"yaw":-0.925025,"spawnMask":3},{"id":"creature-127214","entityId":"entry-28684","position":[523.2317,254.6299,600.8127],"yaw":-1.53589,"spawnMask":3},{"id":"creature-127229","entityId":"entry-28732","position":[578.8327,254.1279,612.5127],"yaw":-1.01229,"spawnMask":3},{"id":"creature-127235","entityId":"entry-28734","position":[577.0657,253.8759,607.3217],"yaw":-0.925025,"spawnMask":3},{"id":"creature-127237","entityId":"entry-32593","position":[419.7207,124.1499,592.2157],"yaw":-2.26893,"spawnMask":3},{"id":"creature-127238","entityId":"entry-32593","position":[435.4827,123.8349,610.0337],"yaw":-1.02974,"spawnMask":3},{"id":"creature-127239","entityId":"entry-32593","position":[423.6997,128.6499,583.1657],"yaw":-4.71239,"spawnMask":3},{"id":"creature-127240","entityId":"entry-32593","position":[405.6987,130.5959,583.4087],"yaw":-0.959931,"spawnMask":3},{"id":"creature-127241","entityId":"entry-32593","position":[417.5587,130.9749,626.6757],"yaw":-0.820305,"spawnMask":3},{"id":"creature-127242","entityId":"entry-32593","position":[398.2247,132.7499,607.2637],"yaw":-4.67748,"spawnMask":3},{"id":"creature-127243","entityId":"entry-32593","position":[394.4397,133.4949,577.8567],"yaw":-0.506145,"spawnMask":3},{"id":"creature-127244","entityId":"entry-32593","position":[407.5507,129.8119,576.2947],"yaw":-1.46608,"spawnMask":3},{"id":"creature-127245","entityId":"entry-32593","position":[428.5027,125.2509,619.4857],"yaw":-3.07178,"spawnMask":3},{"id":"creature-127246","entityId":"entry-32593","position":[402.1007,131.7789,598.0207],"yaw":-1.79769,"spawnMask":3},{"id":"creature-127247","entityId":"entry-32593","position":[405.0587,130.8179,628.9677],"yaw":-1.81514,"spawnMask":3},{"id":"creature-127248","entityId":"entry-32593","position":[422.8997,127.2959,621.4667],"yaw":-6.00393,"spawnMask":3},{"id":"creature-127249","entityId":"entry-32593","position":[405.1907,129.8219,614.3207],"yaw":-3.33358,"spawnMask":3},{"id":"creature-127250","entityId":"entry-32593","position":[400.6227,132.4699,632.5497],"yaw":-2.1293,"spawnMask":3},{"id":"creature-127251","entityId":"entry-32593","position":[437.0727,123.6369,603.9177],"yaw":-1.23918,"spawnMask":3},{"id":"creature-127252","entityId":"entry-32593","position":[413.5307,127.8829,579.8837],"yaw":-0.733038,"spawnMask":3},{"id":"creature-127253","entityId":"entry-32593","position":[420.5247,131.4369,578.2097],"yaw":-2.16421,"spawnMask":3},{"id":"creature-127254","entityId":"entry-32593","position":[422.9997,125.1429,615.6587],"yaw":-5.11381,"spawnMask":3},{"id":"creature-127255","entityId":"entry-32593","position":[424.0937,132.6539,577.3507],"yaw":-1.8675,"spawnMask":3},{"id":"creature-127256","entityId":"entry-32593","position":[416.5817,130.0219,578.0767],"yaw":-4.04916,"spawnMask":3},{"id":"creature-127257","entityId":"entry-32593","position":[391.9297,134.5169,597.7267],"yaw":-1.32645,"spawnMask":3},{"id":"creature-127258","entityId":"entry-32593","position":[397.3997,133.6489,570.7407],"yaw":-4.17134,"spawnMask":3},{"id":"creature-127259","entityId":"entry-32593","position":[401.2357,131.8979,573.1767],"yaw":-3.40339,"spawnMask":3},{"id":"creature-127260","entityId":"entry-32593","position":[430.4737,123.2679,610.0577],"yaw":-4.08407,"spawnMask":3},{"id":"creature-127261","entityId":"entry-32593","position":[430.6497,125.3009,590.9127],"yaw":-2.05949,"spawnMask":3},{"id":"creature-127262","entityId":"entry-32593","position":[406.6837,129.4929,598.6027],"yaw":-0.296706,"spawnMask":3},{"id":"creature-127263","entityId":"entry-32593","position":[406.5017,126.8059,621.2157],"yaw":-5.2709,"spawnMask":3},{"id":"creature-127264","entityId":"entry-32593","position":[412.4257,126.1219,611.5597],"yaw":-5.84685,"spawnMask":3},{"id":"creature-127265","entityId":"entry-32593","position":[413.6197,125.6249,596.6337],"yaw":-5.44543,"spawnMask":3},{"id":"creature-127266","entityId":"entry-32593","position":[426.7837,124.7279,591.8437],"yaw":-1.36136,"spawnMask":3},{"id":"creature-127267","entityId":"entry-32593","position":[441.9427,125.5219,602.8467],"yaw":-3.97935,"spawnMask":3},{"id":"creature-127268","entityId":"entry-32593","position":[415.6387,125.8869,618.2587],"yaw":-3.22886,"spawnMask":3},{"id":"creature-127269","entityId":"entry-32593","position":[424.2947,126.6739,587.5757],"yaw":-4.43314,"spawnMask":3},{"id":"creature-127270","entityId":"entry-32593","position":[406.5677,131.0089,591.4337],"yaw":-0.10472,"spawnMask":3},{"id":"creature-127271","entityId":"entry-32593","position":[420.1457,123.5939,596.2777],"yaw":-1.46608,"spawnMask":3},{"id":"creature-127338","entityId":"entry-29335","position":[571.3107,252.8989,614.9087],"yaw":-1.16937,"spawnMask":3},{"id":"creature-127401","entityId":"entry-28921","position":[421.9097,151.9009,593.7837],"yaw":-5.63362,"spawnMask":3},{"id":"creature-132214","entityId":"entry-29340","position":[434.3607,-246.8011,602.0717],"yaw":-0.087266,"spawnMask":3},{"id":"creature-132215","entityId":"entry-29340","position":[428.3737,-246.7471,610.6307],"yaw":-2.9147,"spawnMask":3},{"id":"creature-132216","entityId":"entry-29340","position":[341.1737,-233.1231,593.8647],"yaw":-0.733038,"spawnMask":3},{"id":"creature-132217","entityId":"entry-29340","position":[424.7797,-246.6951,610.9377],"yaw":-3.54302,"spawnMask":3},{"id":"creature-132218","entityId":"entry-29340","position":[429.3957,-246.8921,604.2607],"yaw":-3.03687,"spawnMask":3},{"id":"creature-132219","entityId":"entry-29340","position":[363.6167,-232.9381,607.9297],"yaw":-1.09028,"spawnMask":3},{"id":"creature-132220","entityId":"entry-29340","position":[348.2127,-233.1571,623.7817],"yaw":-1.6119,"spawnMask":3},{"id":"creature-132221","entityId":"entry-29340","position":[367.9687,-233.2001,608.1837],"yaw":-4.53572,"spawnMask":3},{"id":"creature-132222","entityId":"entry-29340","position":[427.3567,-246.4731,590.0907],"yaw":-1.48353,"spawnMask":3},{"id":"creature-132223","entityId":"entry-29340","position":[422.6517,-246.7131,598.4067],"yaw":-3.27724,"spawnMask":3},{"id":"creature-132224","entityId":"entry-29340","position":[427.2627,-246.7991,601.7987],"yaw":-0.872665,"spawnMask":3},{"id":"creature-132225","entityId":"entry-29340","position":[429.3777,-246.8911,605.8707],"yaw":-3.05433,"spawnMask":3},{"id":"creature-132226","entityId":"entry-29340","position":[425.1427,-246.5801,614.7637],"yaw":-2.46091,"spawnMask":3},{"id":"creature-132227","entityId":"entry-29340","position":[388.0407,-233.1891,611.2917],"yaw":-5.80104,"spawnMask":3},{"id":"creature-132228","entityId":"entry-29340","position":[424.9307,-246.7571,608.1177],"yaw":-3.22886,"spawnMask":3},{"id":"creature-132229","entityId":"entry-29340","position":[327.4637,-234.8551,602.0907],"yaw":-6.16101,"spawnMask":3},{"id":"creature-132230","entityId":"entry-29340","position":[417.2687,-246.5331,611.6007],"yaw":-2.49582,"spawnMask":3},{"id":"creature-132231","entityId":"entry-29340","position":[420.8407,-246.6601,604.4277],"yaw":-4.08407,"spawnMask":3},{"id":"creature-132273","entityId":"entry-29120","position":[125.2767,-298.8061,622.2707],"yaw":-1.5708,"spawnMask":3},{"id":"creature-132274","entityId":"entry-29128","position":[217.7747,-281.8791,629.5957],"yaw":-1.65806,"spawnMask":3},{"id":"creature-132275","entityId":"entry-29128","position":[218.4117,-281.8791,613.2557],"yaw":-1.48353,"spawnMask":3}],"roamingPacks":[{"id":"patrol-127230","name":"Anub'ar Warrior Patrol","speed":1.15,"pathId":1272300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[624.2567,267.9229,607.5367],[610.7187,254.7249,624.8197],[624.2567,267.9229,607.5367],[632.1617,286.0949,578.8487],[635.9907,295.3209,560.1497],[632.1617,286.0949,578.8487]],"members":[{"id":"member","entityId":"entry-28732","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127339","name":"Anub'ar Webspinner Patrol","speed":1.15,"pathId":1272300,"formationSource":"database-solo","spawnMask":3,"waypoints":[[624.2567,267.9229,607.5367],[610.7187,254.7249,624.8197],[624.2567,267.9229,607.5367],[632.1617,286.0949,578.8487],[635.9907,295.3209,560.1497],[632.1617,286.0949,578.8487]],"members":[{"id":"member","entityId":"entry-29335","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-127214","name":"Krik'thir the Gatewatcher","position":[523.2317,254.6299,600.8127]},{"id":"creature-127401","name":"Hadronox","position":[421.9097,151.9009,593.7837]},{"id":"creature-132273","name":"Anub'arak","position":[125.2767,-298.8061,622.2707]}],"objectiveOrder":[{"id":"creature-127214","name":"Krik'thir the Gatewatcher","position":[523.2317,254.6299,600.8127]},{"id":"creature-127401","name":"Hadronox","position":[421.9097,151.9009,593.7837]},{"id":"creature-132273","name":"Anub'arak","position":[125.2767,-298.8061,622.2707]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67338,"id":189973,"map":601,"orientation":0.785397,"phaseMask":1,"position_x":578.629,"position_y":565.931,"position_z":725.6,"rotation0":0,"rotation1":0,"rotation2":0.382683,"rotation3":0.92388,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67339,"id":193051,"map":601,"orientation":0.541051,"phaseMask":1,"position_x":489.153,"position_y":563.922,"position_z":740.094,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67340,"id":193051,"map":601,"orientation":-2.63544,"phaseMask":1,"position_x":556.443,"position_y":694.491,"position_z":775.437,"rotation0":0,"rotation1":0,"rotation2":-0.968147,"rotation3":0.250383,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67341,"id":193051,"map":601,"orientation":0.575957,"phaseMask":1,"position_x":581.014,"position_y":568.179,"position_z":725.066,"rotation0":0,"rotation1":0,"rotation2":0.284015,"rotation3":0.95882,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67343,"id":193051,"map":601,"orientation":3.12412,"phaseMask":1,"position_x":545.757,"position_y":673.861,"position_z":774.79,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67344,"id":193051,"map":601,"orientation":-1.65806,"phaseMask":1,"position_x":536.106,"position_y":558.922,"position_z":646.22,"rotation0":0,"rotation1":0,"rotation2":-0.737276,"rotation3":0.675591,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67345,"id":193051,"map":601,"orientation":2.07694,"phaseMask":1,"position_x":510.696,"position_y":528.885,"position_z":653.064,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67347,"id":193051,"map":601,"orientation":2.47837,"phaseMask":1,"position_x":481.469,"position_y":547.625,"position_z":741.177,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67348,"id":193051,"map":601,"orientation":-0.645772,"phaseMask":1,"position_x":579.778,"position_y":591.719,"position_z":728.172,"rotation0":0,"rotation1":0,"rotation2":-0.317305,"rotation3":0.948324,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67351,"id":193051,"map":601,"orientation":-0.750491,"phaseMask":1,"position_x":527.479,"position_y":558.76,"position_z":646.21,"rotation0":0,"rotation1":0,"rotation2":-0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67352,"id":193051,"map":601,"orientation":2.18166,"phaseMask":1,"position_x":571.447,"position_y":595.039,"position_z":728.9,"rotation0":0,"rotation1":0,"rotation2":0.88701,"rotation3":0.461749,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67354,"id":193051,"map":601,"orientation":2.05949,"phaseMask":1,"position_x":591.721,"position_y":508.679,"position_z":694.816,"rotation0":0,"rotation1":0,"rotation2":0.857168,"rotation3":0.515037,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67357,"id":193051,"map":601,"orientation":0.401425,"phaseMask":1,"position_x":506.314,"position_y":520.373,"position_z":655.167,"rotation0":0,"rotation1":0,"rotation2":0.199368,"rotation3":0.979925,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67360,"id":193051,"map":601,"orientation":1.5708,"phaseMask":1,"position_x":507.566,"position_y":528.436,"position_z":652.934,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67363,"id":193051,"map":601,"orientation":-0.314158,"phaseMask":1,"position_x":532.479,"position_y":517.108,"position_z":656.454,"rotation0":0,"rotation1":0,"rotation2":-0.156434,"rotation3":0.987688,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67364,"id":193051,"map":601,"orientation":0.942477,"phaseMask":1,"position_x":527.517,"position_y":617.248,"position_z":777.9,"rotation0":0,"rotation1":0,"rotation2":0.45399,"rotation3":0.891007,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67369,"id":193051,"map":601,"orientation":0.453785,"phaseMask":1,"position_x":553.991,"position_y":528.401,"position_z":650.733,"rotation0":0,"rotation1":0,"rotation2":0.224951,"rotation3":0.97437,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67370,"id":193051,"map":601,"orientation":-0.663223,"phaseMask":1,"position_x":572.967,"position_y":590.649,"position_z":728.6,"rotation0":0,"rotation1":0,"rotation2":-0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67372,"id":193051,"map":601,"orientation":-1.01229,"phaseMask":1,"position_x":557.236,"position_y":695.95,"position_z":775.653,"rotation0":0,"rotation1":0,"rotation2":-0.484809,"rotation3":0.87462,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67374,"id":193051,"map":601,"orientation":0.872664,"phaseMask":1,"position_x":504.891,"position_y":638.339,"position_z":777.295,"rotation0":0,"rotation1":0,"rotation2":0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67383,"id":193051,"map":601,"orientation":1.83259,"phaseMask":1,"position_x":480.885,"position_y":544.554,"position_z":740.356,"rotation0":0,"rotation1":0,"rotation2":0.793352,"rotation3":0.608764,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67387,"id":193051,"map":601,"orientation":-2.33874,"phaseMask":1,"position_x":568.974,"position_y":592.156,"position_z":728.911,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67388,"id":193051,"map":601,"orientation":-1.74533,"phaseMask":1,"position_x":558.701,"position_y":641.155,"position_z":777.262,"rotation0":0,"rotation1":0,"rotation2":-0.766045,"rotation3":0.642787,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67389,"id":193051,"map":601,"orientation":-0.663223,"phaseMask":1,"position_x":559.634,"position_y":647.505,"position_z":777.374,"rotation0":0,"rotation1":0,"rotation2":-0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67390,"id":193051,"map":601,"orientation":-1.18682,"phaseMask":1,"position_x":535.432,"position_y":566.377,"position_z":647.935,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67391,"id":193051,"map":601,"orientation":2.00713,"phaseMask":1,"position_x":579.179,"position_y":570.76,"position_z":725.636,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67392,"id":193051,"map":601,"orientation":-0.069812,"phaseMask":1,"position_x":529.547,"position_y":705.137,"position_z":777.17,"rotation0":0,"rotation1":0,"rotation2":-0.0348989,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67393,"id":193051,"map":601,"orientation":-3.12412,"phaseMask":1,"position_x":476.299,"position_y":545.252,"position_z":741.208,"rotation0":0,"rotation1":0,"rotation2":-0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67394,"id":193051,"map":601,"orientation":2.00713,"phaseMask":1,"position_x":574.825,"position_y":565.536,"position_z":725.208,"rotation0":0,"rotation1":0,"rotation2":0.843392,"rotation3":0.537299,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":14,"areaId":0,"guid":67395,"id":193051,"map":601,"orientation":-3.01941,"phaseMask":1,"position_x":502.62,"position_y":525.356,"position_z":654.026,"rotation0":0,"rotation1":0,"rotation2":-0.998134,"rotation3":0.0610534,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67396,"id":193051,"map":601,"orientation":-1.71042,"phaseMask":1,"position_x":519.264,"position_y":704.847,"position_z":777.136,"rotation0":0,"rotation1":0,"rotation2":-0.754709,"rotation3":0.65606,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67397,"id":193051,"map":601,"orientation":2.47837,"phaseMask":1,"position_x":511.278,"position_y":674.479,"position_z":775.616,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67398,"id":193051,"map":601,"orientation":1.3439,"phaseMask":1,"position_x":562.818,"position_y":586.951,"position_z":729.075,"rotation0":0,"rotation1":0,"rotation2":0.622513,"rotation3":0.782609,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67399,"id":193051,"map":601,"orientation":2.77507,"phaseMask":1,"position_x":533.045,"position_y":520.524,"position_z":655.448,"rotation0":0,"rotation1":0,"rotation2":0.983255,"rotation3":0.182237,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67400,"id":193051,"map":601,"orientation":2.61799,"phaseMask":1,"position_x":509.576,"position_y":674.458,"position_z":775.586,"rotation0":0,"rotation1":0,"rotation2":0.965925,"rotation3":0.258821,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67401,"id":193051,"map":601,"orientation":-2.87979,"phaseMask":1,"position_x":482.903,"position_y":546.681,"position_z":740.69,"rotation0":0,"rotation1":0,"rotation2":-0.991445,"rotation3":0.130528,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67402,"id":193051,"map":601,"orientation":2.23402,"phaseMask":1,"position_x":552.122,"position_y":527.915,"position_z":650.037,"rotation0":0,"rotation1":0,"rotation2":0.898794,"rotation3":0.438372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67403,"id":193051,"map":601,"orientation":0.610864,"phaseMask":1,"position_x":481.552,"position_y":570.944,"position_z":743.842,"rotation0":0,"rotation1":0,"rotation2":0.300705,"rotation3":0.953717,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67404,"id":193051,"map":601,"orientation":0.157079,"phaseMask":1,"position_x":584.233,"position_y":569.684,"position_z":725.011,"rotation0":0,"rotation1":0,"rotation2":0.0784588,"rotation3":0.996917,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67405,"id":193051,"map":601,"orientation":0.541051,"phaseMask":1,"position_x":534.502,"position_y":517.002,"position_z":656.52,"rotation0":0,"rotation1":0,"rotation2":0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67406,"id":193051,"map":601,"orientation":-0.226892,"phaseMask":1,"position_x":550.726,"position_y":525.998,"position_z":650.742,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67407,"id":193051,"map":601,"orientation":1.0472,"phaseMask":1,"position_x":501.92,"position_y":520.115,"position_z":655.959,"rotation0":0,"rotation1":0,"rotation2":0.500001,"rotation3":0.866025,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67408,"id":193051,"map":601,"orientation":1.18682,"phaseMask":1,"position_x":533.247,"position_y":623.125,"position_z":777.927,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67409,"id":193051,"map":601,"orientation":-2.58308,"phaseMask":1,"position_x":549.729,"position_y":524.321,"position_z":651.669,"rotation0":0,"rotation1":0,"rotation2":-0.961261,"rotation3":0.275641,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67410,"id":193051,"map":601,"orientation":1.43117,"phaseMask":1,"position_x":501.645,"position_y":644.68,"position_z":777.353,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67411,"id":193051,"map":601,"orientation":-0.104719,"phaseMask":1,"position_x":531.005,"position_y":558.677,"position_z":646.068,"rotation0":0,"rotation1":0,"rotation2":-0.0523356,"rotation3":0.99863,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":14,"areaId":0,"guid":67412,"id":193051,"map":601,"orientation":-1.5708,"phaseMask":1,"position_x":591.656,"position_y":515.967,"position_z":695.939,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67413,"id":193051,"map":601,"orientation":0.191985,"phaseMask":1,"position_x":557.516,"position_y":648.642,"position_z":777.351,"rotation0":0,"rotation1":0,"rotation2":0.0958451,"rotation3":0.995396,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67414,"id":193051,"map":601,"orientation":-0.191985,"phaseMask":1,"position_x":513.429,"position_y":671.875,"position_z":775.631,"rotation0":0,"rotation1":0,"rotation2":-0.0958451,"rotation3":0.995396,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":14,"areaId":0,"guid":67415,"id":193051,"map":601,"orientation":-2.54818,"phaseMask":1,"position_x":479.606,"position_y":563.172,"position_z":743.062,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67416,"id":193051,"map":601,"orientation":1.55334,"phaseMask":1,"position_x":475.726,"position_y":549.071,"position_z":742.446,"rotation0":0,"rotation1":0,"rotation2":0.700908,"rotation3":0.713252,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67417,"id":193051,"map":601,"orientation":2.19912,"phaseMask":1,"position_x":533.766,"position_y":611.328,"position_z":777.914,"rotation0":0,"rotation1":0,"rotation2":0.891008,"rotation3":0.453988,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67418,"id":193051,"map":601,"orientation":-1.69297,"phaseMask":1,"position_x":546.229,"position_y":679.186,"position_z":774.634,"rotation0":0,"rotation1":0,"rotation2":-0.748956,"rotation3":0.66262,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67419,"id":193051,"map":601,"orientation":-3.07177,"phaseMask":1,"position_x":504.271,"position_y":642.29,"position_z":777.403,"rotation0":0,"rotation1":0,"rotation2":-0.999391,"rotation3":0.0349043,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67420,"id":193051,"map":601,"orientation":-0.122173,"phaseMask":1,"position_x":559.076,"position_y":652.787,"position_z":777.354,"rotation0":0,"rotation1":0,"rotation2":-0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67421,"id":193051,"map":601,"orientation":1.06465,"phaseMask":1,"position_x":505.983,"position_y":523.406,"position_z":654.201,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67422,"id":193051,"map":601,"orientation":0.750491,"phaseMask":1,"position_x":518.809,"position_y":702.219,"position_z":776.957,"rotation0":0,"rotation1":0,"rotation2":0.366501,"rotation3":0.930418,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67423,"id":193051,"map":601,"orientation":0.383971,"phaseMask":1,"position_x":506.891,"position_y":639.227,"position_z":777.27,"rotation0":0,"rotation1":0,"rotation2":0.190808,"rotation3":0.981627,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67424,"id":193051,"map":601,"orientation":-0.226892,"phaseMask":1,"position_x":578.01,"position_y":593.714,"position_z":728.396,"rotation0":0,"rotation1":0,"rotation2":-0.113203,"rotation3":0.993572,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67425,"id":193051,"map":601,"orientation":1.98967,"phaseMask":1,"position_x":540.257,"position_y":540.262,"position_z":646.267,"rotation0":0,"rotation1":0,"rotation2":0.838669,"rotation3":0.544641,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67426,"id":193051,"map":601,"orientation":-1.81514,"phaseMask":1,"position_x":559.194,"position_y":582.618,"position_z":729.018,"rotation0":0,"rotation1":0,"rotation2":-0.78801,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":14,"areaId":0,"guid":67427,"id":193051,"map":601,"orientation":-0.279252,"phaseMask":1,"position_x":576.08,"position_y":568.168,"position_z":725.499,"rotation0":0,"rotation1":0,"rotation2":-0.139173,"rotation3":0.990268,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67428,"id":193051,"map":601,"orientation":0.418879,"phaseMask":1,"position_x":510.495,"position_y":525.188,"position_z":653.605,"rotation0":0,"rotation1":0,"rotation2":0.207912,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67429,"id":193051,"map":601,"orientation":-1.79769,"phaseMask":1,"position_x":527.851,"position_y":706.299,"position_z":777.014,"rotation0":0,"rotation1":0,"rotation2":-0.782608,"rotation3":0.622514,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67430,"id":193051,"map":601,"orientation":0.349065,"phaseMask":1,"position_x":583.688,"position_y":590.009,"position_z":727.878,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67431,"id":193051,"map":601,"orientation":-0.244346,"phaseMask":1,"position_x":534.486,"position_y":563.479,"position_z":647.093,"rotation0":0,"rotation1":0,"rotation2":-0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67432,"id":193051,"map":601,"orientation":3.14159,"phaseMask":1,"position_x":516.016,"position_y":702.472,"position_z":776.95,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67434,"id":192395,"map":601,"orientation":1.5708,"phaseMask":1,"position_x":530.584,"position_y":628.017,"position_z":780.981,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67436,"id":192396,"map":601,"orientation":3.14159,"phaseMask":1,"position_x":550.422,"position_y":254.681,"position_z":211.522,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67438,"id":192397,"map":601,"orientation":3.14159,"phaseMask":1,"position_x":550.387,"position_y":256.197,"position_z":210.127,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67440,"id":192398,"map":601,"orientation":3.14159,"phaseMask":1,"position_x":551.93,"position_y":252.178,"position_z":210.784,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":14,"areaId":0,"guid":67441,"id":190169,"map":601,"orientation":0.034906,"phaseMask":1,"position_x":502.358,"position_y":694.054,"position_z":774.493,"rotation0":0,"rotation1":0,"rotation2":0.0174521,"rotation3":0.999848,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67443,"id":192503,"map":601,"orientation":-0.872664,"phaseMask":1,"position_x":407.639,"position_y":800.019,"position_z":832.174,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67445,"id":192504,"map":601,"orientation":-0.876914,"phaseMask":1,"position_x":406.908,"position_y":800.609,"position_z":832.126,"rotation0":0,"rotation1":0,"rotation2":-0.424543,"rotation3":0.905408,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67446,"id":192505,"map":601,"orientation":0.436332,"phaseMask":1,"position_x":407.419,"position_y":56.0765,"position_z":252.803,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67447,"id":192506,"map":601,"orientation":0.43208,"phaseMask":1,"position_x":407.113,"position_y":55.8535,"position_z":252.783,"rotation0":0,"rotation1":0,"rotation2":0.214363,"rotation3":0.976754,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/azjol-nerub/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["13/13 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"halls-of-lightning","title":"Halls of Lightning","mapId":602,"lfgDungeonIds":[207,212],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[77,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Halls of Lightning","theme":"Open-world expedition","summary":"Fight through Halls of Lightning, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Halls of Lightning...","unchartedAreaName":"Uncharted Halls of Lightning","background":"#081016","fog":{"color":"#0a141c","near":36,"far":490.2041},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/602-ulduar80/visual.glb","checksum":"d988db6196bcd9933ab141af321047fd48287a324711e46bc577026937392fac","size":31200160,"triangleCount":3464587}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/602-ulduar80/collision-000.glb","checksum":"04617866cdf4afcb5ad0d20e7cb2a69a1ce11acb8a5763e7d86d44feb102d2c5","size":185348,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/602-ulduar80/collision-001.glb","checksum":"52a0ba562d4254e7eaa9fc79040233bfb44509790063c09a67e4b86666c3cdc4","size":117672,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/602-ulduar80/collision-002.glb","checksum":"8a14f8f608681108c84aedf75a5641a459581bba347c1ee7931067a78d932266","size":117492,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/602-ulduar80/collision-003.glb","checksum":"c9c2652e490e6cf3c3f19a2c9819137bdef1189acdb3f835876f851f0bc363e0","size":117832,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/602-ulduar80/collision-004.glb","checksum":"0b523fe9e230ce41df0a58667107ec185c8d21084f433bb5cd02f8932b6feee0","size":117668,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/602-ulduar80/collision-005.glb","checksum":"52a8f5c916bc4ef817e6d9b6b2f9612a04bcca6650d3b3141dcc68c23da8e9dd","size":118016,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/602-ulduar80/collision-006.glb","checksum":"deb8f007deb1d26f0fa5a06312eafe7aa7c89ae1a70bff98b38221a37b761f47","size":117864,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/602-ulduar80/collision-007.glb","checksum":"eb00c7ff82c8ba506d5361c5635bfd441f44c37358c780e43f9bb82e5aba6c33","size":185968,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/602-ulduar80/collision-008.glb","checksum":"57cea36e68caec6b8c156f6ccd5e3c883cc7e0f83f4ea10e3f8d9bc712577180","size":117496,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/602-ulduar80/collision-009.glb","checksum":"5443483c56a737d3df1dc55669beaae55f6c0686ff1b5f036a071e8e3588b42a","size":117316,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/602-ulduar80/collision-010.glb","checksum":"cc0ed4c90e9189d79f8d61641f01b67f5bd1f3a75958d93965c8df822734797c","size":117832,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/602-ulduar80/collision-011.glb","checksum":"e3628bf833f67642da353d3da61fb520249b92779cae406adac264fa0b81eac8","size":117492,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/602-ulduar80/collision-012.glb","checksum":"d0788642d4a6dcae261b28d1d27490b25cf4c4f9874de3e06e223a521d22eb6a","size":117852,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/602-ulduar80/collision-013.glb","checksum":"443562d0fcfea2d6a1ed4c4b5d17b0d569a8597f424a2410fbe4fab042fcca17","size":195864,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/602-ulduar80/collision-014.glb","checksum":"07c63968b0017e66410de8086b9f363b0ece28d4ede43756a3d8b47568afdcc4","size":190092,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/602-ulduar80/collision-015.glb","checksum":"885bf34661d50d2f9cb9490d077c549b88b7b558f8dec86f4766b913983366f1","size":117652,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/602-ulduar80/collision-016.glb","checksum":"0f081bc563e0c0b3e3f2fb693fb4afe4f55b972e62bcb6a65f80f6bcaffb1837","size":117440,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/602-ulduar80/collision-017.glb","checksum":"249431347db7f6db00db83aba45f95894ec424a8304093201a2dd87a39ca4292","size":117956,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/602-ulduar80/collision-018.glb","checksum":"79b2e41832c61be86d435f07b6b64618e98e52447c78644763d56b94b9e885be","size":189844,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/602-ulduar80/collision-019.glb","checksum":"6797465424114beb0b29966448462dcc1f26a3612a33f6fef2f2df03217a5e70","size":212176,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/602-ulduar80/collision-020.glb","checksum":"dc74e61b0903dc3b8a5ce5a2c63f0af49ade2adc2f657c5d27204f2a2e56599b","size":198680,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/602-ulduar80/collision-021.glb","checksum":"4fa733e62c7e92862cea98dddc27b1971c2b3828efcfec94d545d22017ef7c8b","size":197452,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/602-ulduar80/collision-022.glb","checksum":"2f2215aefaee3fc5f2467b90e2246ad91c9322d3741dbc0c6554481698aa709f","size":138376,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/602-ulduar80/collision-023.glb","checksum":"897649dfe2806bac09a1b9b932aae48ea17e52e201ef43527293a242e5462fe4","size":121888,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/602-ulduar80/collision-024.glb","checksum":"677808ad003eee9fe934ecd51f3ad16a1a72676b4708439008515b73afe506af","size":1132380,"triangleCount":67795},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/602-ulduar80/collision-025.glb","checksum":"5394117a68c0b7fe9d68612e89309a774cd4b1049d75f56d0944ed706663b33e","size":185360,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/602-ulduar80/collision-026.glb","checksum":"2672c0ca5d8e9c2a36042c968d833123d625e0ea2eed7444a326ddc6cdd27b8c","size":204236,"triangleCount":65536},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/602-ulduar80/collision-027.glb","checksum":"b2d54c1ab6a8de4dc1384571433a63bc241634038591d10a32fa13645879c1f9","size":125228,"triangleCount":65536},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/602-ulduar80/collision-028.glb","checksum":"b70364e240bb9f7e501b4bcdc7d06f63e5875d25a1a8cc77ea13a389d4d99bae","size":123332,"triangleCount":65536},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/602-ulduar80/collision-029.glb","checksum":"00d56a0e7dad84536f3873d680889ed35f9780dfce7bfc4b8c21474d541fb6cc","size":219484,"triangleCount":65536},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/602-ulduar80/collision-030.glb","checksum":"16dd6c77416f6267fb9d82f2c4eae47beced707b7c0e1919dc2d767820dfe84a","size":224496,"triangleCount":65536},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/602-ulduar80/collision-031.glb","checksum":"65b64c4d5614d3e82c0ed24efdbcbbf4d83f6de39e092b861961ea3e1d4da046","size":223600,"triangleCount":65536},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/602-ulduar80/collision-032.glb","checksum":"60a8c9e0138a6efbf3be15073ab101b5f9ab902b60dc661b7be1f9278ac8974f","size":217416,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/602-ulduar80/collision-033.glb","checksum":"01a7807aff8a66d34eadbe524eea9162afb8c785bca7817494a61f90fee0f57a","size":218152,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/602-ulduar80/collision-034.glb","checksum":"6edda3cb2a37abf24a155db4fa77ce26a73eaf43e706133982ed617006434ac4","size":198024,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/602-ulduar80/collision-035.glb","checksum":"0aa0f9a6b906e1b99da358b5fe0dffcd336f89a50e60d99fa95bc3076b298fcf","size":129484,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/602-ulduar80/collision-036.glb","checksum":"de29778af33b37be2478f56e376e448fa8ac942208476e99c0b73f32c65534fe","size":223992,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/602-ulduar80/collision-037.glb","checksum":"5b5e609fbe329f7c918387a37b6c9fa141cd662ff59adaedb4e671b2d415351a","size":476972,"triangleCount":50739},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/602-ulduar80/collision-038.glb","checksum":"edd19878de013aa3f79e1284c8f4bb1766a2f12334b03b7de0834ba9a6a9a435","size":458232,"triangleCount":81622},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/602-ulduar80/collision-039.glb","checksum":"642edc273856d009a2484478a6f14ca7ffa1948f006ab74183eccfb7de3a96a3","size":290344,"triangleCount":69939},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/602-ulduar80/collision-040.glb","checksum":"164474c15184717563134327e84a6bc1533bb35c752f8ebcec4ceb7936c26b8b","size":396772,"triangleCount":77246},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/602-ulduar80/collision-041.glb","checksum":"158efeccbdadcc6bd640a4948cafb211347513f5ea9ebdb6dabcc344e35e46dc","size":405168,"triangleCount":77219},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/602-ulduar80/collision-042.glb","checksum":"c4370d11ba7c7b5b0339421ffe1e1f8af4dde1bb6019bf1c395b3ab98f2a49f7","size":199272,"triangleCount":65536},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/602-ulduar80/collision-043.glb","checksum":"932a49730aa9de47deeab36ec27a6a473529761f5c4604c7e69a097713e00fd5","size":201744,"triangleCount":65536},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/602-ulduar80/collision-044.glb","checksum":"e5639c1a5c5200e06117b5cfdf4f2eaa44df6f85bf8f19a762822411d0a36ad3","size":140304,"triangleCount":65536},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/602-ulduar80/collision-045.glb","checksum":"eba028e348acc30f4fd89e12f28db80e4ea782a737921218d4822bd8c8f04bd1","size":207236,"triangleCount":65536},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/602-ulduar80/collision-046.glb","checksum":"24f4ab0ec9c1084e39eeb66ad9e32caa681276dfbaede1e39ba757d6e07fce26","size":209548,"triangleCount":65536},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/602-ulduar80/collision-047.glb","checksum":"0f6e4b7aded6a97b6d3db75eeb01abc731d044b5d7e8be9f7361c2ccd16c9ed2","size":172076,"triangleCount":67246},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/602-ulduar80/collision-048.glb","checksum":"64acf303daabb731ec6af0b266e6f13ce1397f2f630e7ef4663fc835186267a2","size":150964,"triangleCount":66048},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/602-ulduar80/collision-049.glb","checksum":"c96da58c83878ff95c2bb189fb3696a573d54203a95e6fe6dd4046e52cbb1511","size":119692,"triangleCount":65536},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/602-ulduar80/collision-050.glb","checksum":"892fdec93ea5843c44cfd3f7349ffea9cce9189580daf6e448aa17e4ab6efede","size":117688,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/602-ulduar80/navigation.glb","checksum":"ab8ecd073d634823a3c37772cba6f7fddd20842f119c285fab385fd793773c39","size":3402184,"triangleCount":292705}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-1149.2384,15.655,872.6427],"max":[-468.3994,93.9472,1377.6227]},"entrance":{"name":"Halls of Lightning Entrance","footPosition":[-513.3994,65.8275,1224.4327],"forward":[0,0,1],"yaw":0},"areas":[{"id":"entrance","name":"Halls of Lightning Entrance","center":[-513.3994,65.8275,1224.4327],"radius":35},{"id":"area-general-bjarngrim","name":"General Bjarngrim's Encounter","center":[-799.9184,45.9295,1154.9627],"radius":42},{"id":"area-volkhan","name":"Volkhan's Encounter","center":[-875.0964,69.2305,1225.3427],"radius":42},{"id":"area-ionar","name":"Ionar's Encounter","center":[-1034.8274,73.7208,974.9527],"radius":42},{"id":"area-loken","name":"Loken's Encounter","center":[-739.1879,73.2427,1079.4327],"radius":42}],"entities":{"entry-28547":{"id":"entry-28547","kind":"mob","name":"Storming Vortex","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-8715-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.5846,"markerRadius":1.7286}}},"entry-28825":{"id":"entry-28825","kind":"mob","name":"Cyclone","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-5494-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.878,"markerRadius":0.8643}}},"entry-28826":{"id":"entry-28826","kind":"mob","name":"Stormfury Revenant","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-26381-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":5.0922,"markerRadius":3.0623}}},"entry-28546":{"id":"entry-28546","kind":"boss","name":"Ionar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52770","name":"Disperse","spellId":52770,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6334,"damageMultiplier":1.35},{"id":"spell-52663","name":"Random Lightning Visual","spellId":52663,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6334,"damageMultiplier":1.35},{"id":"spell-52780","name":"Ball Lightning","spellId":52780,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7000,"damageMultiplier":1.35},{"id":"spell-52658","name":"Static Overload","spellId":52658,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-27484-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":12.7306,"markerRadius":4.5}}},"entry-28578":{"id":"entry-28578","kind":"mob","name":"Hardened Steel Reaver","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25984-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.2796,"markerRadius":1.084}}},"entry-28579":{"id":"entry-28579","kind":"mob","name":"Hardened Steel Berserker","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25982-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.2796,"markerRadius":1.084}}},"entry-28835":{"id":"entry-28835","kind":"mob","name":"Stormforged Construct","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-26143-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":7.4605,"markerRadius":2.5497}}},"entry-28580":{"id":"entry-28580","kind":"mob","name":"Hardened Steel Skycaller","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25985-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.037,"labelHeight":5.2796,"markerRadius":1.084}}},"entry-28836":{"id":"entry-28836","kind":"mob","name":"Stormforged Runeshaper","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25756-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-28581":{"id":"entry-28581","kind":"mob","name":"Stormforged Tactician","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25759-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-28837":{"id":"entry-28837","kind":"mob","name":"Stormforged Sentinel","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25757-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-28582":{"id":"entry-28582","kind":"mob","name":"Stormforged Mender","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25754-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.7761,"markerRadius":0.7096}}},"entry-28838":{"id":"entry-28838","kind":"mob","name":"Titanium Vanguard","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-26053-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0592,"labelHeight":8.4473,"markerRadius":1.7345}}},"entry-28583":{"id":"entry-28583","kind":"mob","name":"Blistering Steamrager","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-25654-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.7608,"markerRadius":0.9638}}},"entry-28584":{"id":"entry-28584","kind":"mob","name":"Unbound Firestorm","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1750,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-24905-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.5735,"labelHeight":6.1198,"markerRadius":3.0916}}},"entry-28585":{"id":"entry-28585","kind":"mob","name":"Slag","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-2170-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1407,"labelHeight":3.0979,"markerRadius":1.4601}}},"entry-28586":{"id":"entry-28586","kind":"boss","name":"General Bjarngrim","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-53792","name":"Battle Stance","spellId":53792,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6551,"damageMultiplier":1.35},{"id":"spell-52092","name":"Temporary Electrical Charge","spellId":52092,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":6551,"damageMultiplier":1.35},{"id":"spell-53790","name":"Defensive Stance","spellId":53790,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6551,"damageMultiplier":1.35},{"id":"spell-41105","name":"Defensive Aura","spellId":41105,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6551,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-41105","durationMs":12000,"magnitude":0.25}}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-27301-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0647,"labelHeight":9.2392,"markerRadius":1.8971}}},"entry-28587":{"id":"entry-28587","kind":"boss","name":"Volkhan","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52238","name":"Temper","spellId":52238,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5689,"damageMultiplier":1.35},{"id":"spell-52387","name":"Heat","spellId":52387,"delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":28,"cooldownMs":9000,"damageMultiplier":1.35},{"id":"spell-52237","name":"Shattering Stomp","spellId":52237,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5689,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-27071-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0085,"labelHeight":20.8473,"markerRadius":4.5}}},"entry-28920":{"id":"entry-28920","kind":"mob","name":"Stormforged Giant","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.07936,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-27092-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0042,"labelHeight":15.9622,"markerRadius":4.5}}},"entry-28923":{"id":"entry-28923","kind":"boss","name":"Loken","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-52663","name":"Random Lightning Visual","spellId":52663,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5175,"damageMultiplier":1.35},{"id":"spell-59414","name":"Pulsing Shockwave Aura","spellId":59414,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5175,"damageMultiplier":1.35},{"id":"spell-52961","name":"Pulsing Shockwave","spellId":52961,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5175,"damageMultiplier":1.35},{"id":"spell-52960","name":"Lightning Nova","spellId":52960,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":5175,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-lightning/creatures/display-27485-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0068,"labelHeight":17.7279,"markerRadius":3.628}}}},"staticSpawns":[{"id":"creature-76278","entityId":"entry-28547","position":[-1033.0784,64.7789,1068.4127],"yaw":-3.60509,"spawnMask":3},{"id":"creature-76279","entityId":"entry-28825","position":[-1022.3014,64.7831,1069.0527],"yaw":-4.02161,"spawnMask":3},{"id":"creature-76280","entityId":"entry-28825","position":[-1027.8594,64.773,1059.8827],"yaw":-3.00589,"spawnMask":3},{"id":"creature-76281","entityId":"entry-28825","position":[-1031.9414,64.7844,1078.5327],"yaw":-1.94418,"spawnMask":3},{"id":"creature-76282","entityId":"entry-28825","position":[-1039.7564,64.7753,1059.5527],"yaw":-6.25894,"spawnMask":3},{"id":"creature-76283","entityId":"entry-28825","position":[-1047.8344,64.7883,1076.4427],"yaw":-5.94552,"spawnMask":3},{"id":"creature-76284","entityId":"entry-28825","position":[-1093.6644,64.7673,1066.4727],"yaw":-3.10993,"spawnMask":3},{"id":"creature-76285","entityId":"entry-28825","position":[-1086.6284,64.7673,1073.3427],"yaw":-1.67872,"spawnMask":3},{"id":"creature-76286","entityId":"entry-28825","position":[-1090.3764,64.7673,1063.6327],"yaw":-6.26667,"spawnMask":3},{"id":"creature-76287","entityId":"entry-28825","position":[-1090.3514,69.3033,1017.0827],"yaw":-3.96968,"spawnMask":3},{"id":"creature-76288","entityId":"entry-28825","position":[-1091.5394,69.422,1030.7227],"yaw":-3.95068,"spawnMask":3},{"id":"creature-76289","entityId":"entry-28825","position":[-1090.0994,69.3033,1009.7127],"yaw":-2.21891,"spawnMask":3},{"id":"creature-76290","entityId":"entry-28825","position":[-1098.4504,69.3033,1013.4827],"yaw":-4.65494,"spawnMask":3},{"id":"creature-76291","entityId":"entry-28825","position":[-1104.2384,69.3033,1016.3727],"yaw":-1.38923,"spawnMask":3},{"id":"creature-76292","entityId":"entry-28825","position":[-1097.2954,69.3033,1026.7027],"yaw":-2.71994,"spawnMask":3},{"id":"creature-76293","entityId":"entry-28825","position":[-1101.0524,64.7673,1071.8027],"yaw":-2.54861,"spawnMask":3},{"id":"creature-76294","entityId":"entry-28825","position":[-1096.8384,64.7673,1082.1327],"yaw":-3.04051,"spawnMask":3},{"id":"creature-76295","entityId":"entry-28825","position":[-1097.0114,65.2073,1059.5727],"yaw":-5.97313,"spawnMask":3},{"id":"creature-76298","entityId":"entry-28826","position":[-1090.8194,69.3033,1013.2827],"yaw":-3.32541,"spawnMask":3},{"id":"creature-126873","entityId":"entry-28546","position":[-1034.8274,73.7208,974.9527],"yaw":-0.017453,"spawnMask":3},{"id":"creature-126876","entityId":"entry-28826","position":[-1039.0564,69.4187,1003.7627],"yaw":-6.14356,"spawnMask":3},{"id":"creature-126877","entityId":"entry-28826","position":[-1029.8224,69.4188,1003.7127],"yaw":-2.77507,"spawnMask":3},{"id":"creature-126878","entityId":"entry-28578","position":[-807.1011,52.6934,1218.0427],"yaw":-0.802851,"spawnMask":3},{"id":"creature-126879","entityId":"entry-28578","position":[-673.7711,52.6932,1220.2227],"yaw":-0.069813,"spawnMask":3},{"id":"creature-126880","entityId":"entry-28578","position":[-740.7855,62.5511,1297.5927],"yaw":-2.72271,"spawnMask":3},{"id":"creature-126881","entityId":"entry-28578","position":[-729.3066,71.2791,1332.5327],"yaw":-4.99164,"spawnMask":3},{"id":"creature-126882","entityId":"entry-28578","position":[-743.4413,71.2791,1332.6227],"yaw":-1.64061,"spawnMask":3},{"id":"creature-126883","entityId":"entry-28578","position":[-609.7734,66.2169,1218.7327],"yaw":-1.64061,"spawnMask":3},{"id":"creature-126884","entityId":"entry-28578","position":[-609.9874,66.2169,1230.7927],"yaw":-1.62316,"spawnMask":3},{"id":"creature-126885","entityId":"entry-28578","position":[-799.7522,46.0186,1145.3827],"yaw":0,"spawnMask":3},{"id":"creature-126886","entityId":"entry-28579","position":[-806.814,52.6934,1232.4027],"yaw":-2.37365,"spawnMask":3},{"id":"creature-126887","entityId":"entry-28579","position":[-673.3566,52.6932,1229.8327],"yaw":-3.19395,"spawnMask":3},{"id":"creature-126888","entityId":"entry-28579","position":[-729.4007,62.5511,1295.1327],"yaw":-3.90954,"spawnMask":3},{"id":"creature-126889","entityId":"entry-28579","position":[-742.9461,71.2791,1327.5927],"yaw":-1.5708,"spawnMask":3},{"id":"creature-126890","entityId":"entry-28835","position":[-683.0871,73.6641,959.1927],"yaw":-4.79965,"spawnMask":3},{"id":"creature-126891","entityId":"entry-28835","position":[-682.6362,73.6615,972.3827],"yaw":-5.07891,"spawnMask":3},{"id":"creature-126893","entityId":"entry-28835","position":[-982.2574,73.6907,958.8427],"yaw":-4.69494,"spawnMask":3},{"id":"creature-126894","entityId":"entry-28835","position":[-982.6184,73.7084,974.3327],"yaw":-4.79965,"spawnMask":3},{"id":"creature-126895","entityId":"entry-28579","position":[-669.5034,46.0184,1164.7427],"yaw":-3.52556,"spawnMask":3},{"id":"creature-126896","entityId":"entry-28835","position":[-812.6832,73.6992,961.5327],"yaw":-4.72984,"spawnMask":3},{"id":"creature-126897","entityId":"entry-28835","position":[-812.6219,73.7097,973.1127],"yaw":-4.69494,"spawnMask":3},{"id":"creature-126898","entityId":"entry-28579","position":[-808.7288,46.0186,1151.3927],"yaw":-1.16937,"spawnMask":3},{"id":"creature-126899","entityId":"entry-28580","position":[-797.6921,52.6934,1234.7127],"yaw":-3.35103,"spawnMask":3},{"id":"creature-126900","entityId":"entry-28580","position":[-726.6853,62.551,1285.1727],"yaw":-5.0091,"spawnMask":3},{"id":"creature-126901","entityId":"entry-28580","position":[-729.8377,71.2791,1326.9927],"yaw":-4.86947,"spawnMask":3},{"id":"creature-126902","entityId":"entry-28836","position":[-891.7794,73.7369,917.6427],"yaw":-5.93412,"spawnMask":3},{"id":"creature-126903","entityId":"entry-28836","position":[-882.1024,69.2552,966.5527],"yaw":-1.39626,"spawnMask":3},{"id":"creature-126904","entityId":"entry-28836","position":[-876.1114,69.2552,962.0327],"yaw":-5.77704,"spawnMask":3},{"id":"creature-126905","entityId":"entry-28580","position":[-669.5914,46.0184,1145.8327],"yaw":-5.89921,"spawnMask":3},{"id":"creature-126906","entityId":"entry-28580","position":[-663.5054,46.0184,1155.3727],"yaw":-4.67748,"spawnMask":3},{"id":"creature-126907","entityId":"entry-28836","position":[-943.0514,69.1601,948.5927],"yaw":-6.0912,"spawnMask":3},{"id":"creature-126908","entityId":"entry-28836","position":[-942.4914,69.1368,954.9527],"yaw":-3.1765,"spawnMask":3},{"id":"creature-126909","entityId":"entry-28836","position":[-890.0294,73.7811,1000.5927],"yaw":-4.4855,"spawnMask":3},{"id":"creature-126910","entityId":"entry-28836","position":[-891.8574,73.7742,1011.7227],"yaw":-3.56047,"spawnMask":3},{"id":"creature-126911","entityId":"entry-28836","position":[-948.5504,69.1586,978.6327],"yaw":-0.610865,"spawnMask":3},{"id":"creature-126912","entityId":"entry-28836","position":[-904.8084,73.7494,990.6727],"yaw":-5.55015,"spawnMask":3},{"id":"creature-126913","entityId":"entry-28836","position":[-920.3524,73.7103,928.5627],"yaw":-1.01229,"spawnMask":3},{"id":"creature-126914","entityId":"entry-28580","position":[-806.7566,46.0186,1162.0227],"yaw":-2.33874,"spawnMask":3},{"id":"creature-126916","entityId":"entry-28581","position":[-706.8771,56.0466,1247.6427],"yaw":-3.87463,"spawnMask":3},{"id":"creature-126920","entityId":"entry-28837","position":[-889.1024,73.7718,934.4727],"yaw":-3.75246,"spawnMask":3},{"id":"creature-126921","entityId":"entry-28837","position":[-875.2054,69.2417,970.4527],"yaw":-3.94444,"spawnMask":3},{"id":"creature-126922","entityId":"entry-28581","position":[-681.5183,48.5804,1186.4827],"yaw":-4.67748,"spawnMask":3},{"id":"creature-126923","entityId":"entry-28581","position":[-807.5239,48.5755,1186.5227],"yaw":-4.66003,"spawnMask":3},{"id":"creature-126927","entityId":"entry-28837","position":[-949.0554,69.1484,953.0127],"yaw":-2.23402,"spawnMask":3},{"id":"creature-126928","entityId":"entry-28837","position":[-944.7474,69.1646,983.9127],"yaw":-3.33358,"spawnMask":3},{"id":"creature-126929","entityId":"entry-28581","position":[-941.4844,69.1464,977.4327],"yaw":-6.16101,"spawnMask":3},{"id":"creature-126930","entityId":"entry-28837","position":[-915.8114,73.7309,992.8627],"yaw":-0.296706,"spawnMask":3},{"id":"creature-126931","entityId":"entry-28581","position":[-919.2284,73.7281,1003.1727],"yaw":-2.04204,"spawnMask":3},{"id":"creature-126932","entityId":"entry-28837","position":[-907.0644,73.7447,942.7327],"yaw":-3.28122,"spawnMask":3},{"id":"creature-126934","entityId":"entry-28838","position":[-885.5944,73.7485,925.6427],"yaw":-4.86947,"spawnMask":3},{"id":"creature-126936","entityId":"entry-28838","position":[-880.6614,73.7114,939.3927],"yaw":-2.11434,"spawnMask":3},{"id":"creature-126937","entityId":"entry-28838","position":[-920.4984,73.6185,981.6327],"yaw":-2.01811,"spawnMask":3},{"id":"creature-126943","entityId":"entry-28838","position":[-885.6234,73.7707,1007.8527],"yaw":-4.06662,"spawnMask":3},{"id":"creature-126944","entityId":"entry-28838","position":[-919.4384,73.7225,938.7827],"yaw":-2.1293,"spawnMask":3},{"id":"creature-126945","entityId":"entry-28583","position":[-1016.0084,50.3225,1255.8527],"yaw":-5.02655,"spawnMask":3},{"id":"creature-126946","entityId":"entry-28583","position":[-1008.8294,50.3188,1251.5527],"yaw":-3.9619,"spawnMask":3},{"id":"creature-126947","entityId":"entry-28583","position":[-908.2324,67.186,1191.0527],"yaw":-3.47321,"spawnMask":3},{"id":"creature-126948","entityId":"entry-28583","position":[-913.8514,64.5303,1198.4627],"yaw":-0.994838,"spawnMask":3},{"id":"creature-126949","entityId":"entry-28583","position":[-909.4354,68.4448,1261.3927],"yaw":-0.942478,"spawnMask":3},{"id":"creature-126950","entityId":"entry-28583","position":[-912.7194,64.5458,1252.9427],"yaw":-2.80998,"spawnMask":3},{"id":"creature-126951","entityId":"entry-28583","position":[-960.8264,64.5401,1186.9127],"yaw":-5.34071,"spawnMask":3},{"id":"creature-126952","entityId":"entry-28583","position":[-950.7324,64.5415,1188.9827],"yaw":-3.57792,"spawnMask":3},{"id":"creature-126953","entityId":"entry-28583","position":[-950.4554,64.5416,1261.7827],"yaw":-0.925025,"spawnMask":3},{"id":"creature-126955","entityId":"entry-28583","position":[-935.4064,64.4533,1247.2327],"yaw":-1.61992,"spawnMask":3},{"id":"creature-126956","entityId":"entry-28583","position":[-1015.4064,50.2971,1192.3127],"yaw":-0.802851,"spawnMask":3},{"id":"creature-126957","entityId":"entry-28583","position":[-1008.0674,50.3162,1186.4127],"yaw":-2.60054,"spawnMask":3},{"id":"creature-126958","entityId":"entry-28584","position":[-1011.3394,50.2358,1262.9227],"yaw":-4.44524,"spawnMask":3},{"id":"creature-126959","entityId":"entry-28584","position":[-918.5004,64.5213,1188.1027],"yaw":-1.15192,"spawnMask":3},{"id":"creature-126960","entityId":"entry-28584","position":[-917.5474,65.2797,1263.3427],"yaw":-3.87463,"spawnMask":3},{"id":"creature-126961","entityId":"entry-28584","position":[-988.2634,35.7383,1255.1127],"yaw":-2.28638,"spawnMask":3},{"id":"creature-126962","entityId":"entry-28584","position":[-961.1934,64.5366,1195.2327],"yaw":-5.2709,"spawnMask":3},{"id":"creature-126963","entityId":"entry-28584","position":[-958.9584,64.5414,1263.0227],"yaw":-4.55531,"spawnMask":3},{"id":"creature-126964","entityId":"entry-28584","position":[-959.7914,64.5377,1253.8727],"yaw":-2.44346,"spawnMask":3},{"id":"creature-126965","entityId":"entry-28584","position":[-987.8614,35.7383,1192.9927],"yaw":-2.56563,"spawnMask":3},{"id":"creature-126966","entityId":"entry-28584","position":[-1009.7134,50.27,1199.4227],"yaw":-3.00197,"spawnMask":3},{"id":"creature-126967","entityId":"entry-28585","position":[-963.2554,35.655,1224.3927],"yaw":-4.66591,"spawnMask":3},{"id":"creature-126968","entityId":"entry-28585","position":[-901.4514,35.656,1218.6027],"yaw":-1.80097,"spawnMask":3},{"id":"creature-126969","entityId":"entry-28585","position":[-911.0964,35.655,1212.9827],"yaw":-2.19795,"spawnMask":3},{"id":"creature-126970","entityId":"entry-28585","position":[-971.1414,35.655,1206.7827],"yaw":-4.05242,"spawnMask":3},{"id":"creature-126971","entityId":"entry-28585","position":[-969.5844,35.655,1242.3727],"yaw":-5.38308,"spawnMask":3},{"id":"creature-126972","entityId":"entry-28585","position":[-928.0004,35.655,1211.2827],"yaw":-3.17264,"spawnMask":3},{"id":"creature-126973","entityId":"entry-28585","position":[-916.0084,35.655,1225.2427],"yaw":-1.52094,"spawnMask":3},{"id":"creature-126974","entityId":"entry-28585","position":[-897.2894,35.6576,1225.1527],"yaw":-1.5631,"spawnMask":3},{"id":"creature-126975","entityId":"entry-28585","position":[-937.8444,35.655,1248.7427],"yaw":-6.25265,"spawnMask":3},{"id":"creature-126976","entityId":"entry-28585","position":[-938.7544,35.655,1198.8027],"yaw":-3.19814,"spawnMask":3},{"id":"creature-126977","entityId":"entry-28585","position":[-950.8774,35.655,1236.9827],"yaw":-6.01943,"spawnMask":3},{"id":"creature-126978","entityId":"entry-28585","position":[-951.8134,35.655,1212.5527],"yaw":-3.45532,"spawnMask":3},{"id":"creature-126979","entityId":"entry-28585","position":[-926.7714,35.655,1237.2727],"yaw":-0.067514,"spawnMask":3},{"id":"creature-126980","entityId":"entry-28585","position":[-906.7164,35.655,1237.1027],"yaw":-1.04352,"spawnMask":3},{"id":"creature-126981","entityId":"entry-28586","position":[-799.9184,45.9295,1154.9627],"yaw":-4.7273,"spawnMask":3},{"id":"creature-126982","entityId":"entry-28587","position":[-875.0964,69.2305,1225.3427],"yaw":-2.07694,"spawnMask":3},{"id":"creature-126985","entityId":"entry-28923","position":[-739.1879,73.2427,1079.4327],"yaw":-3.15905,"spawnMask":3}],"roamingPacks":[{"id":"patrol-76296","name":"Stormfury Revenant Patrol","speed":1.15,"pathId":762960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1071.1084,64.7731,1069.1027],[-1019.5944,64.7823,1069.2627]],"members":[{"id":"member","entityId":"entry-28826","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-76297","name":"Stormfury Revenant Patrol","speed":1.15,"pathId":762970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1088.4914,64.7673,1073.5327],[-1088.3514,64.7673,1064.9127],[-1100.4124,65.1222,1063.9827],[-1103.3984,64.7673,1076.7127],[-1090.8864,64.7673,1076.5827]],"members":[{"id":"member","entityId":"entry-28826","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126874","name":"Storming Vortex Patrol","speed":1.15,"pathId":1268740,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-1021.2254,69.3177,1011.1827],[-1048.0064,69.3126,1011.5827]],"members":[{"id":"member","entityId":"entry-28547","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126892","name":"Stormforged Construct Patrol","speed":1.15,"pathId":1268920,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-694.7109,73.8731,946.1227],[-697.3573,73.8731,943.4327],[-724.2647,71.6954,927.1227],[-760.8308,73.7051,926.8527],[-772.891,73.8219,934.1727],[-782.8343,73.8687,945.6627],[-783.0323,73.8714,945.9727],[-772.6712,73.8283,933.9927],[-752.7599,71.1632,925.4227],[-697.3573,73.8731,943.4327],[-724.2647,71.6954,927.1227]],"members":[{"id":"member","entityId":"entry-28835","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126915","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269150,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-725.1536,62.4678,1286.4127],[-726.6913,62.4678,1294.5727],[-727.235,62.4678,1294.7727],[-724.5073,62.4678,1287.3327]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126917","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269170,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-740.6445,45.9352,1161.5827],[-740.6761,45.9352,1162.9927],[-772.5292,45.9352,1162.4227],[-772.4932,45.9352,1162.7727]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126918","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269180,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-666.5614,45.9352,1145.3827],[-671.2364,45.9352,1142.4127],[-672.4274,45.9352,1143.3527],[-671.2154,45.9352,1144.3327],[-668.5724,45.9352,1143.3927],[-659.9214,45.9352,1152.8727],[-660.0504,45.9352,1158.2127],[-666.5024,45.9352,1166.7827],[-671.4874,45.9352,1167.9127],[-673.0004,45.9352,1165.5527],[-672.2104,45.9352,1165.3627],[-669.7284,45.9352,1167.9827],[-666.7774,45.9352,1166.8827],[-664.6814,45.9352,1160.1927],[-664.0584,45.9352,1157.9527],[-660.6764,45.9352,1156.3627]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126919","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269190,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-734.0552,45.9351,1147.3927],[-740.3613,47.4481,1147.2927],[-763.4798,45.9351,1147.6927],[-763.4624,45.9351,1147.2227],[-744.5129,46.2507,1147.5727],[-739.9602,47.4436,1147.5527],[-717.2596,45.9353,1147.5227],[-717.2781,45.9353,1147.1027]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126924","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-781.1448,53.5907,1251.6227],[-781.7446,53.5813,1252.1827],[-763.3339,61.3836,1269.2327],[-763.766,61.3795,1269.6427]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126925","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269250,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-740.2782,62.6566,1307.6027],[-740.2632,65.5438,1312.3627],[-740.1734,71.1939,1322.4127],[-740.2008,71.1966,1326.4927],[-740.9915,71.1966,1326.9827],[-740.759,71.1966,1323.1427],[-740.7314,67.2651,1315.2027],[-740.3426,62.524,1307.3927],[-740.2268,62.4678,1300.7427],[-740.3004,62.4678,1299.7227]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126926","name":"Stormforged Tactician Patrol","speed":1.15,"pathId":1269260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-708.4854,61.3226,1270.2427],[-708.0748,61.3226,1270.6527],[-691.0599,53.475,1252.2127],[-690.5115,53.4499,1252.6427]],"members":[{"id":"member","entityId":"entry-28581","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126933","name":"Stormforged Mender Patrol","speed":1.15,"pathId":1269330,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-769.5895,54.9288,1246.1527],[-769.1796,54.9273,1245.7327],[-754.6946,61.4892,1261.0727],[-754.1821,61.4957,1260.5927]],"members":[{"id":"member","entityId":"entry-28582","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126935","name":"Titanium Vanguard Patrol","speed":1.15,"pathId":1269350,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-872.6139,71.8118,942.8627],[-856.3609,71.3559,943.7027],[-848.3074,71.4789,948.8627],[-837.5722,73.7494,959.1527],[-841.187,72.2035,976.2927],[-865.4597,70.2875,988.9427],[-879.9424,73.8641,990.7227],[-882.1084,73.9472,990.7727],[-897.8644,73.6585,966.4727],[-892.7514,73.66,956.1327],[-881.3334,73.8149,945.9027]],"members":[{"id":"member","entityId":"entry-28838","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126938","name":"Titanium Vanguard Patrol","speed":1.15,"pathId":1269380,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-939.1324,71.1164,989.8027],[-918.9904,73.8212,953.7227],[-971.3524,72.3481,966.2427],[-918.9264,73.7821,953.6427],[-971.4424,72.3123,966.2927],[-939.1074,71.147,989.6427],[-918.9344,73.8237,953.6027],[-971.4574,72.3646,966.2927],[-939.1124,71.2357,989.4127],[-918.9684,73.8342,953.6127],[-971.4084,72.502,966.2527],[-938.9684,71.1067,989.4527],[-918.8634,73.7962,953.7527],[-971.4834,72.3159,966.3127],[-939.1144,71.1459,989.6427],[-918.9534,73.8229,953.6427],[-971.3854,72.351,966.2527],[-939.1264,71.1437,989.6327],[-918.7484,73.8325,953.6827],[-971.3874,72.3512,966.2627],[-939.0734,71.1127,989.6427],[-918.9124,73.7853,953.6127],[-971.5264,72.364,966.4227],[-939.0884,71.1135,989.6327],[-918.9244,73.7826,953.6427],[-973.3144,73.6618,963.4627]],"members":[{"id":"member","entityId":"entry-28838","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126939","name":"Stormforged Mender Patrol","speed":1.15,"pathId":1269390,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-809.4362,52.6101,1217.0727],[-806.3326,52.6101,1213.5527],[-804.4557,52.6101,1215.3027],[-805.1442,52.6101,1216.0927],[-808.1958,52.6101,1214.6427],[-810.6681,52.6101,1217.7427],[-809.3275,52.6101,1233.4427],[-807.5682,52.6101,1234.7827],[-804.7327,52.6101,1235.4727],[-799.8573,52.6101,1236.6727],[-799.1811,52.6101,1236.0227],[-804.8061,52.6101,1234.9527],[-805.2383,52.6101,1234.5627],[-809.4195,52.6101,1234.1627],[-811.9167,52.6101,1218.6827]],"members":[{"id":"member","entityId":"entry-28582","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126940","name":"Stormforged Mender Patrol","speed":1.15,"pathId":1269400,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-733.7721,45.935,1162.0327],[-733.7394,45.935,1162.9027],[-704.2361,45.935,1161.9627],[-704.226,45.935,1162.7627]],"members":[{"id":"member","entityId":"entry-28582","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126941","name":"Stormforged Mender Patrol","speed":1.15,"pathId":1269410,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-808.1025,45.9352,1160.0427],[-804.2224,45.9352,1146.9427],[-801.9671,45.9352,1145.7227],[-806.8662,45.9352,1148.1627],[-807.5495,45.9352,1149.7827],[-811.1532,45.9352,1149.4527],[-812.504,45.9352,1152.8127],[-809.9972,45.9352,1157.1227]],"members":[{"id":"member","entityId":"entry-28582","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126942","name":"Stormforged Mender Patrol","speed":1.15,"pathId":1269420,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-675.8342,52.61,1229.3127],[-675.7958,52.61,1230.7227],[-671.1914,52.61,1232.3927],[-670.6804,52.61,1230.4727],[-671.1374,52.61,1230.4127],[-671.4654,52.61,1220.3727],[-672.0434,52.61,1220.3127],[-672.3954,52.61,1218.6027],[-676.5552,52.61,1217.9727],[-676.5376,52.61,1220.0727],[-676.1893,52.61,1220.0327]],"members":[{"id":"member","entityId":"entry-28582","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126954","name":"Blistering Steamrager Patrol","speed":1.15,"pathId":1269540,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-932.0004,64.7045,1204.1927],[-947.8054,64.7017,1205.2827],[-959.7604,64.7025,1221.6627],[-957.9044,64.7027,1234.0027],[-946.1994,64.7028,1247.3527],[-942.7354,64.7028,1247.7027],[-921.5274,64.7036,1241.8927],[-915.5394,64.7033,1228.5027],[-919.4374,64.7407,1211.1027],[-931.8594,64.7039,1204.1327]],"members":[{"id":"member","entityId":"entry-28583","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126983","name":"Stormforged Giant Patrol","speed":1.15,"pathId":1269830,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-718.9661,66.0818,991.0127],[-712.9645,66.0828,978.7927],[-719.9521,66.0738,960.0927],[-717.7574,66.0729,961.6727],[-712.7798,66.0831,983.9127],[-721.7587,66.0876,993.3127]],"members":[{"id":"member","entityId":"entry-28920","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-126984","name":"Stormforged Giant Patrol","speed":1.15,"pathId":1269840,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-753.4639,66.0705,991.9327],[-765.135,66.0633,973.8427],[-760.3103,66.06,959.8227],[-764.7585,66.0606,971.0127],[-760.6111,66.0616,984.8427]],"members":[{"id":"member","entityId":"entry-28920","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-126981","name":"General Bjarngrim","position":[-799.9184,45.9295,1154.9627]},{"id":"creature-126982","name":"Volkhan","position":[-875.0964,69.2305,1225.3427]},{"id":"creature-126873","name":"Ionar","position":[-1034.8274,73.7208,974.9527]},{"id":"creature-126985","name":"Loken","position":[-739.1879,73.2427,1079.4327]}],"objectiveOrder":[{"id":"creature-126981","name":"General Bjarngrim","position":[-799.9184,45.9295,1154.9627]},{"id":"creature-126982","name":"Volkhan","position":[-875.0964,69.2305,1225.3427]},{"id":"creature-126873","name":"Ionar","position":[-1034.8274,73.7208,974.9527]},{"id":"creature-126985","name":"Loken","position":[-739.1879,73.2427,1079.4327]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65573,"id":191324,"map":602,"orientation":-1.5708,"phaseMask":1,"position_x":1219.26,"position_y":34.0884,"position_z":62.2243,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65574,"id":191325,"map":602,"orientation":1.5708,"phaseMask":1,"position_x":1277.44,"position_y":-164.663,"position_z":53.5171,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65575,"id":191326,"map":602,"orientation":0,"phaseMask":1,"position_x":1074.3,"position_y":-232.213,"position_z":62.5531,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65576,"id":191327,"map":602,"orientation":3.14159,"phaseMask":1,"position_x":1176.2,"position_y":-232.487,"position_z":53.8625,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65577,"id":191328,"map":602,"orientation":0,"phaseMask":1,"position_x":1074.3,"position_y":-31.9046,"position_z":62.5531,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65582,"id":190858,"map":602,"orientation":2.07694,"phaseMask":1,"position_x":1322.23,"position_y":-89.2544,"position_z":61.3288,"rotation0":0,"rotation1":0,"rotation2":0.861629,"rotation3":0.507539,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65583,"id":192654,"map":602,"orientation":1.5708,"phaseMask":1,"position_x":1124.02,"position_y":33.9976,"position_z":60.5274,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65584,"id":191415,"map":602,"orientation":0,"phaseMask":1,"position_x":1331.93,"position_y":176.425,"position_z":55.1985,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65585,"id":191416,"map":602,"orientation":3.14159,"phaseMask":1,"position_x":1332.17,"position_y":-115.781,"position_z":24.723,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65586,"id":192465,"map":602,"orientation":-1.5708,"phaseMask":1,"position_x":1331.6,"position_y":276.506,"position_z":57.1931,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65587,"id":192466,"map":602,"orientation":-1.5708,"phaseMask":1,"position_x":1331.6,"position_y":276.506,"position_z":57.1931,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/halls-of-lightning/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["20/20 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"gundrak","title":"Gundrak","mapId":604,"lfgDungeonIds":[216,217],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[74,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Gundrak","theme":"Open-world expedition","summary":"Fight through Gundrak, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Gundrak...","unchartedAreaName":"Uncharted Gundrak","background":"#081016","fog":{"color":"#0a141c","near":36,"far":326.034},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/604-gundrak/visual.glb","checksum":"b62724b4c8ed2286043e8bb869c466a4fa4c23741b21ac02ff5bd95e3880a37d","size":13318808,"triangleCount":1811897}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/604-gundrak/collision-000.glb","checksum":"ed1ce62f544c6fb47d649746f8d9ebf1c6ebe2c4a88e4c4ed3fd3b033edc49ff","size":113548,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/604-gundrak/collision-001.glb","checksum":"0ddf22ba15a12cae7145f1613c910940d288f7d6d51a37b62cd5bab61c5070a3","size":113724,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/604-gundrak/collision-002.glb","checksum":"929db3926fc1719e33a6c3bfc244fee24ba1373fc9885f746c9d5359c1d3905a","size":113368,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/604-gundrak/collision-003.glb","checksum":"79d6197cf3e9df89bc0b53fef3aabeb893b5f87e7e5d3ac24144f933a21db921","size":113188,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/604-gundrak/collision-004.glb","checksum":"3b89e2654df953f73230be4c6bb685ec9d4bbe4b38dd1ae63529dbd802e32bd4","size":113528,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/604-gundrak/collision-005.glb","checksum":"1a1341d41849d571b27804b6f012173bd3ff3c4f3f5e47a183911386c45bfd80","size":113372,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/604-gundrak/collision-006.glb","checksum":"070283ce42d0386357676f669564d2f994752b2fc6986e0f58b53693a04a3392","size":113548,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/604-gundrak/collision-007.glb","checksum":"d194a6fda7531e8eed6c50c037b2b20917ca29106f000ffb593eb726cc3503d3","size":113192,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/604-gundrak/collision-008.glb","checksum":"76610f0a4d450e1dc8039c050f6cb0cca91c24f1f58fa13ed727d26c3833ca18","size":113012,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/604-gundrak/collision-009.glb","checksum":"555feebb9478a014242157e979408da0b8db5abaa410b23618d490e2018627ca","size":113528,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/604-gundrak/collision-010.glb","checksum":"4ee44b8bb7de224ebfafbe99d3d0e1c242f358b5890278213edf2c39f0d96a05","size":113136,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/604-gundrak/collision-011.glb","checksum":"243d56acce35178d465953175a2805f1f6f6c9375d40eb9eb6af17c03d5f6008","size":113344,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/604-gundrak/collision-012.glb","checksum":"d8a288ccd02b368fb7c2f87bf0cc77db0b6b0e71b4948478f97b27c863020a1f","size":113348,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/604-gundrak/collision-013.glb","checksum":"65f246f557c5182d83d539df31f78f3ee82162ffab2a8d091be333f35e149e97","size":1420812,"triangleCount":99998},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/604-gundrak/collision-014.glb","checksum":"20941037eb57813b451131b9b5d2f54f98bd733f6e154c472e1cbf6588056967","size":113136,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/604-gundrak/collision-015.glb","checksum":"232afb1d61351f0dbbe83afdb0a8898f119aeb7351d04ac00f60b6d5fdb7c9e5","size":113656,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/604-gundrak/collision-016.glb","checksum":"789fdad76b0f70b78ac1dfce59d674dad361acdd921dc649056dcd5863f65930","size":113420,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/604-gundrak/collision-017.glb","checksum":"dfad0f72efb8d54a88325de58bb0a381cad6ef74b0edf3fe8ee678c555ca2ea0","size":113596,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/604-gundrak/collision-018.glb","checksum":"d1d6b1515d955dea2acfdad08102fd0a0c00775174ed4c0a7844a9c40e52f013","size":113192,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/604-gundrak/collision-019.glb","checksum":"be1581db72d4d2d39230ef7b9eea8a0f561797b0f428e82166fc6331fef58e8b","size":113012,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/604-gundrak/collision-020.glb","checksum":"8da2adf5fd0294d20c90821bc1a42984cbeecb7bed5d78bb348055f1e4b82a5f","size":113656,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/604-gundrak/collision-021.glb","checksum":"e107ab3fab4f3747a83600379c4020409839cb7c6f0f0eafca25fcf1120d5c3a","size":113736,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/604-gundrak/collision-022.glb","checksum":"8c757134a76e90a61c07a82eb22145605cca79d120e5d6c0000141c341732883","size":113912,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/604-gundrak/collision-023.glb","checksum":"d4d7e447b399f8ae9b250265c9be9189bab3df9aa14ada9c901541b483d2040c","size":113416,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/604-gundrak/collision-024.glb","checksum":"083f8ec7c8b75a220eb6a4aa66e7b4302c99279efd467b3f81e3f931e3f6c860","size":113236,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/604-gundrak/collision-025.glb","checksum":"603ac2097b0a0d441bcbeada216ce469e11c3ba04ec6f53ba3d2740232b62855","size":113656,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/604-gundrak/navigation.glb","checksum":"ace7eb32a564022c5ddb2a4a65532c62ad7b01773ca6bf3286d23344648801d2","size":292128,"triangleCount":24827}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[583.4987,29.6708,1385.5828],"max":[1036.3237,149.3,1824.6428]},"entrance":{"name":"Gundrak Entrance","footPosition":[872.4667,129.3,1756.7328],"forward":[-0.9870525750982887,0,-0.16039705106964125],"yaw":-1.7318892259027725},"areas":[{"id":"entrance","name":"Gundrak Entrance","center":[872.4667,129.3,1756.7328],"radius":35},{"id":"area-slad-ran","name":"Slad'ran's Encounter","center":[715.2787,81.931,1640.0228],"radius":42},{"id":"area-drakkari-colossus","name":"Drakkari Colossus's Encounter","center":[759.9609,129.2423,1753.2671],"radius":42},{"id":"area-moorabi","name":"Moorabi's Encounter","center":[849.8347,81.931,1637.3628],"radius":42},{"id":"area-gal-darah","name":"Gal'darah's Encounter","center":[783.9517,89.21,1779.6428],"radius":42},{"id":"area-eck-the-ferocious","name":"Eck the Ferocious's Encounter","center":[658.5943,129.1501,1756.7192],"radius":42}],"entities":{"entry-29768":{"id":"entry-29768","kind":"mob","name":"Unyielding Constrictor","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/91410fe76473ce1ac43daf2acee48c51da05084c27f58d11904d3c63faa51260.glb","rotationY":-1.5707963267948966,"groundOffset":0.3657,"labelHeight":1.6848,"markerRadius":3.5943}}},"entry-29774":{"id":"entry-29774","kind":"mob","name":"Spitting Cobra","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-14557-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3657,"labelHeight":1.6848,"markerRadius":3.5943}}},"entry-29304":{"id":"entry-29304","kind":"boss","name":"Slad'ran","title":"Dungeon Boss","hasLoot":true,"combat":{"level":78,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-55081","name":"Poison Nova","spellId":55081,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":2500,"damageMultiplier":0.82,"radius":11},{"id":"spell-48287","name":"Powerful Bite","spellId":48287,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5782,"damageMultiplier":1.35},{"id":"spell-54970","name":"Venom Bolt","spellId":54970,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5782,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27422-animated.glb","rotationY":-1.5707963267948966,"groundOffset":4.2906,"labelHeight":10.2085,"markerRadius":1.3725}}},"entry-29305":{"id":"entry-29305","kind":"boss","name":"Moorabi","title":"Dungeon Boss","hasLoot":true,"combat":{"level":78,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-55163","name":"Mojo Frenzy","spellId":55163,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":5456,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-55163","durationMs":12000,"magnitude":0.25}},{"id":"spell-55101","name":"Quake","spellId":55101,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5456,"damageMultiplier":0.82,"radius":11},{"id":"spell-55142","name":"Ground Tremor","spellId":55142,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6000,"damageMultiplier":1.35},{"id":"spell-55100","name":"Numbing Roar","spellId":55100,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":5456,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27059-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0211,"labelHeight":5.6602,"markerRadius":0.9921}}},"entry-29306":{"id":"entry-29306","kind":"boss","name":"Gal'darah","title":"Dungeon Boss","hasLoot":true,"combat":{"level":78,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-54956","name":"Impaling Charge","spellId":54956,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4937,"damageMultiplier":1.35},{"id":"spell-55285","name":"Enrage","spellId":55285,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":4937,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-55285","durationMs":12000,"magnitude":0.25}},{"id":"spell-55292","name":"Stomp","spellId":55292,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4937,"damageMultiplier":0.82,"radius":11},{"id":"spell-55218","name":"Stampede","spellId":55218,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4937,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27061-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0211,"labelHeight":5.6602,"markerRadius":0.9921}}},"entry-29819":{"id":"entry-29819","kind":"mob","name":"Drakkari Lancer","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27050-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.019,"labelHeight":5.0941,"markerRadius":0.8929}}},"entry-29307":{"id":"entry-29307","kind":"mob","name":"Drakkari Colossus","combat":{"level":78,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":3000,"damageMultiplier":1},{"id":"spell-52656","name":"Cosmetic - Stun Permanent (Freeze Anim)","spellId":52656,"delivery":"projectile","target":"random-party","school":"physical","animation":"cast","range":28,"cooldownMs":5571,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":3000}},{"id":"spell-54850","name":"Emerge","spellId":54850,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":5571,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26588-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1386,"labelHeight":14.4748,"markerRadius":3.8594}}},"entry-29820":{"id":"entry-29820","kind":"mob","name":"Drakkari God Hunter","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27048-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.019,"labelHeight":5.0941,"markerRadius":0.8929}}},"entry-29822":{"id":"entry-29822","kind":"mob","name":"Drakkari Fire Weaver","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27047-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0169,"labelHeight":4.5281,"markerRadius":0.7937}}},"entry-29826":{"id":"entry-29826","kind":"mob","name":"Drakkari Medicine Man","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27051-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0169,"labelHeight":4.5281,"markerRadius":0.7937}}},"entry-29829":{"id":"entry-29829","kind":"mob","name":"Drakkari Earthshaker","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26590-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0153,"labelHeight":6.28,"markerRadius":2.0233}}},"entry-29830":{"id":"entry-29830","kind":"mob","name":"Living Mojo","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-55627","name":"Mojo Puddle","spellId":55627,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4060,"damageMultiplier":1.12},{"id":"spell-55626","name":"Mojo Wave","spellId":55626,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4060,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27029-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7889,"markerRadius":1.5309}}},"entry-29832":{"id":"entry-29832","kind":"mob","name":"Drakkari Golem","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26592-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0855,"labelHeight":8.9261,"markerRadius":2.38}}},"entry-29834":{"id":"entry-29834","kind":"mob","name":"Drakkari Frenzy","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-17170-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":1.7988,"markerRadius":1.0336}}},"entry-29838":{"id":"entry-29838","kind":"mob","name":"Drakkari Rhino","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26265-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.101,"labelHeight":6.4634,"markerRadius":4.0024}}},"entry-29874":{"id":"entry-29874","kind":"mob","name":"Drakkari Inciter","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27049-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0155,"labelHeight":4.1508,"markerRadius":0.7275}}},"entry-29920":{"id":"entry-29920","kind":"mob","name":"Ruins Dweller","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.809536,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-23320-animated.glb","rotationY":-1.5707963267948966,"groundOffset":3.953,"labelHeight":6.9439,"markerRadius":1.4377}}},"entry-29931":{"id":"entry-29931","kind":"mob","name":"Drakkari Rhino","combat":{"level":77,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26265-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.101,"labelHeight":6.4634,"markerRadius":4.0024}}},"entry-29573":{"id":"entry-29573","kind":"boss","name":"Drakkari Elemental","title":"Dungeon Boss","hasLoot":true,"combat":{"level":78,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-54888","name":"Elemental Spawn Effect","spellId":54888,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4960,"damageMultiplier":1.35},{"id":"spell-54991","name":"Face Me","spellId":54991,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4960,"damageMultiplier":1.35},{"id":"spell-54878","name":"Merge","spellId":54878,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4960,"damageMultiplier":1.35},{"id":"spell-54801","name":"Surge","spellId":54801,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4960,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-27028-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":7.7421,"markerRadius":3.1283}}},"entry-29932":{"id":"entry-29932","kind":"boss","name":"Eck the Ferocious","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-55837","name":"Eck Spring","spellId":55837,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6124,"damageMultiplier":1.35},{"id":"spell-55815","name":"Eck Spring","spellId":55815,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6124,"damageMultiplier":1.35},{"id":"spell-55813","name":"Eck Bite","spellId":55813,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":6124,"damageMultiplier":1.35},{"id":"spell-55814","name":"Eck Spit","spellId":55814,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":6124,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/gundrak/creatures/display-26644-animated.glb","rotationY":-1.5707963267948966,"groundOffset":11.859,"labelHeight":20.8317,"markerRadius":4.3131}}}},"staticSpawns":[{"id":"creature-127006","entityId":"entry-29768","position":[691.2717,49.6708,1444.6728],"yaw":-5.044,"spawnMask":3},{"id":"creature-127007","entityId":"entry-29768","position":[628.4987,66.232,1533.0828],"yaw":-6.0912,"spawnMask":3},{"id":"creature-127008","entityId":"entry-29768","position":[648.0767,61.628,1507.6928],"yaw":-3.89208,"spawnMask":3},{"id":"creature-127009","entityId":"entry-29768","position":[673.0947,81.565,1561.7328],"yaw":-6.24828,"spawnMask":3},{"id":"creature-127010","entityId":"entry-29768","position":[666.9527,79.354,1554.9528],"yaw":-3.76991,"spawnMask":3},{"id":"creature-127011","entityId":"entry-29768","position":[714.0727,66.105,1430.5828],"yaw":-4.03171,"spawnMask":3},{"id":"creature-127012","entityId":"entry-29768","position":[717.3217,85.117,1504.6528],"yaw":-1.15192,"spawnMask":3},{"id":"creature-127013","entityId":"entry-29768","position":[672.9907,81.041,1515.8428],"yaw":-5.67065,"spawnMask":3},{"id":"creature-127015","entityId":"entry-29768","position":[685.4317,77.061,1642.3328],"yaw":-5.43354,"spawnMask":3},{"id":"creature-127016","entityId":"entry-29768","position":[679.1087,81.747,1667.4928],"yaw":-3.21141,"spawnMask":3},{"id":"creature-127018","entityId":"entry-29774","position":[680.0637,79.461,1555.1228],"yaw":-2.89725,"spawnMask":3},{"id":"creature-127019","entityId":"entry-29774","position":[713.7057,72.916,1560.5328],"yaw":-0.366519,"spawnMask":3},{"id":"creature-127020","entityId":"entry-29774","position":[710.7867,69.425,1540.9828],"yaw":-3.42085,"spawnMask":3},{"id":"creature-127021","entityId":"entry-29774","position":[726.5277,92.194,1494.2728],"yaw":-3.42085,"spawnMask":3},{"id":"creature-127022","entityId":"entry-29774","position":[711.2397,85.23,1486.8228],"yaw":-5.61996,"spawnMask":3},{"id":"creature-127024","entityId":"entry-29774","position":[668.3627,77.293,1512.5928],"yaw":-5.67066,"spawnMask":3},{"id":"creature-127025","entityId":"entry-29774","position":[689.1667,77.1,1646.5828],"yaw":-5.43348,"spawnMask":3},{"id":"creature-127026","entityId":"entry-29774","position":[673.7557,81.865,1670.5228],"yaw":-6.16101,"spawnMask":3},{"id":"creature-127027","entityId":"entry-29774","position":[669.8547,81.727,1667.0028],"yaw":-3.00197,"spawnMask":3},{"id":"creature-127028","entityId":"entry-29774","position":[653.4707,77.202,1635.7228],"yaw":-5.37693,"spawnMask":3},{"id":"creature-127029","entityId":"entry-29774","position":[656.8377,76.84,1636.4428],"yaw":-5.51307,"spawnMask":3},{"id":"creature-127042","entityId":"entry-29304","position":[715.2787,81.931,1640.0228],"yaw":-1.67552,"spawnMask":3},{"id":"creature-127043","entityId":"entry-29305","position":[849.8347,81.931,1637.3628],"yaw":-4.72984,"spawnMask":3},{"id":"creature-127044","entityId":"entry-29306","position":[783.9517,89.21,1779.6428],"yaw":-0.017453,"spawnMask":3},{"id":"creature-127046","entityId":"entry-29307","position":[783.7857,95.969,1537.8528],"yaw":-3.12414,"spawnMask":3},{"id":"creature-127047","entityId":"entry-29819","position":[879.3457,81.923,1612.7228],"yaw":-0.034907,"spawnMask":3},{"id":"creature-127048","entityId":"entry-29819","position":[927.9187,103.93,1453.6828],"yaw":-3.89208,"spawnMask":3},{"id":"creature-127049","entityId":"entry-29819","position":[907.6077,90.337,1525.9028],"yaw":-6.23082,"spawnMask":3},{"id":"creature-127050","entityId":"entry-29819","position":[903.0657,89.868,1531.4028],"yaw":-1.72788,"spawnMask":3},{"id":"creature-127051","entityId":"entry-29819","position":[896.2487,81.915,1662.5028],"yaw":-3.10669,"spawnMask":3},{"id":"creature-127052","entityId":"entry-29819","position":[877.5457,106.477,1435.7728],"yaw":-5.21853,"spawnMask":3},{"id":"creature-127053","entityId":"entry-29819","position":[867.9017,105.028,1440.9428],"yaw":-2.05949,"spawnMask":3},{"id":"creature-127055","entityId":"entry-29820","position":[921.8817,104.274,1451.2628],"yaw":-2.33874,"spawnMask":3},{"id":"creature-127056","entityId":"entry-29820","position":[907.9987,89.995,1534.0228],"yaw":-3.33358,"spawnMask":3},{"id":"creature-127057","entityId":"entry-29820","position":[872.3997,105.495,1443.9828],"yaw":-3.07178,"spawnMask":3},{"id":"creature-127058","entityId":"entry-29822","position":[676.6237,82.932,1524.2928],"yaw":-5.52175,"spawnMask":3},{"id":"creature-127059","entityId":"entry-29822","position":[889.6307,81.917,1612.4928],"yaw":-0.017453,"spawnMask":3},{"id":"creature-127060","entityId":"entry-29822","position":[920.0427,105.43,1445.4628],"yaw":-0.767945,"spawnMask":3},{"id":"creature-127061","entityId":"entry-29822","position":[911.2497,90.774,1529.5728],"yaw":-4.99164,"spawnMask":3},{"id":"creature-127062","entityId":"entry-29822","position":[887.2787,81.919,1662.5428],"yaw":-3.15905,"spawnMask":3},{"id":"creature-127063","entityId":"entry-29822","position":[877.0177,106.178,1440.5328],"yaw":-4.2237,"spawnMask":3},{"id":"creature-127064","entityId":"entry-29826","position":[932.3527,96.564,1501.2028],"yaw":-5.9975,"spawnMask":3},{"id":"creature-127065","entityId":"entry-29826","position":[898.3007,81.914,1612.5528],"yaw":0,"spawnMask":3},{"id":"creature-127066","entityId":"entry-29826","position":[924.7587,104.493,1448.7428],"yaw":-5.3058,"spawnMask":3},{"id":"creature-127067","entityId":"entry-29829","position":[888.9527,75.824,1637.6928],"yaw":-1.64926,"spawnMask":3},{"id":"creature-127068","entityId":"entry-29829","position":[893.0847,75.824,1637.5928],"yaw":-4.67587,"spawnMask":3},{"id":"creature-127076","entityId":"entry-29830","position":[800.5187,95.425,1499.1028],"yaw":-1.57854,"spawnMask":3},{"id":"creature-127080","entityId":"entry-29832","position":[780.1177,95.789,1490.4928],"yaw":-4.69494,"spawnMask":3},{"id":"creature-127081","entityId":"entry-29832","position":[787.6997,95.789,1489.9028],"yaw":-1.58825,"spawnMask":3},{"id":"creature-127082","entityId":"entry-29832","position":[759.2147,95.783,1441.3528],"yaw":-1.65806,"spawnMask":3},{"id":"creature-127083","entityId":"entry-29834","position":[899.7337,78.351,1515.0428],"yaw":-4.41733,"spawnMask":3},{"id":"creature-127084","entityId":"entry-29834","position":[899.2487,75.259,1504.5828],"yaw":-6.18063,"spawnMask":3},{"id":"creature-127085","entityId":"entry-29834","position":[729.7577,62.562,1681.2528],"yaw":-4.47669,"spawnMask":3},{"id":"creature-127086","entityId":"entry-29834","position":[757.0137,62.989,1700.0728],"yaw":-2.16475,"spawnMask":3},{"id":"creature-127087","entityId":"entry-29834","position":[868.7237,74.085,1525.1328],"yaw":-3.84638,"spawnMask":3},{"id":"creature-127088","entityId":"entry-29834","position":[849.4797,60.627,1666.3228],"yaw":-3.52199,"spawnMask":3},{"id":"creature-127089","entityId":"entry-29834","position":[733.6467,60.641,1584.7628],"yaw":-0.560292,"spawnMask":3},{"id":"creature-127090","entityId":"entry-29834","position":[821.2217,60.214,1654.0428],"yaw":-4.17256,"spawnMask":3},{"id":"creature-127091","entityId":"entry-29834","position":[850.3477,60.156,1678.5028],"yaw":-0.785398,"spawnMask":3},{"id":"creature-127092","entityId":"entry-29834","position":[853.8237,60.898,1645.4328],"yaw":-2.63544,"spawnMask":3},{"id":"creature-127093","entityId":"entry-29834","position":[788.1137,60.827,1677.0028],"yaw":-5.07891,"spawnMask":3},{"id":"creature-127094","entityId":"entry-29834","position":[755.3427,60.408,1680.9728],"yaw":-5.9889,"spawnMask":3},{"id":"creature-127095","entityId":"entry-29834","position":[885.5407,73.946,1487.5028],"yaw":-1.32947,"spawnMask":3},{"id":"creature-127096","entityId":"entry-29834","position":[737.0437,57.524,1654.0328],"yaw":-0.930271,"spawnMask":3},{"id":"creature-127097","entityId":"entry-29834","position":[753.7197,60.666,1613.8728],"yaw":-2.17953,"spawnMask":3},{"id":"creature-127098","entityId":"entry-29834","position":[751.4207,60.449,1650.4228],"yaw":-1.92096,"spawnMask":3},{"id":"creature-127099","entityId":"entry-29834","position":[867.0447,73.819,1510.9328],"yaw":-2.82734,"spawnMask":3},{"id":"creature-127100","entityId":"entry-29834","position":[842.4077,74.105,1530.1428],"yaw":-3.132,"spawnMask":3},{"id":"creature-127101","entityId":"entry-29834","position":[836.5227,60.524,1605.2128],"yaw":-5.01823,"spawnMask":3},{"id":"creature-127102","entityId":"entry-29834","position":[894.6217,74.965,1555.4128],"yaw":-1.59394,"spawnMask":3},{"id":"creature-127103","entityId":"entry-29834","position":[810.5297,60.424,1691.9928],"yaw":-4.31301,"spawnMask":3},{"id":"creature-127104","entityId":"entry-29834","position":[851.8987,74.297,1540.0028],"yaw":-5.34073,"spawnMask":3},{"id":"creature-127105","entityId":"entry-29834","position":[763.3387,60.695,1639.6228],"yaw":-0.541048,"spawnMask":3},{"id":"creature-127106","entityId":"entry-29834","position":[814.9987,60.629,1604.4228],"yaw":-3.56045,"spawnMask":3},{"id":"creature-127110","entityId":"entry-29838","position":[797.0087,88.8,1745.6128],"yaw":-3.54302,"spawnMask":3},{"id":"creature-127111","entityId":"entry-29838","position":[783.1757,88.815,1752.4528],"yaw":-3.10669,"spawnMask":3},{"id":"creature-127112","entityId":"entry-29838","position":[768.8337,88.826,1746.1928],"yaw":-2.79253,"spawnMask":3},{"id":"creature-127113","entityId":"entry-29874","position":[890.8727,75.907,1642.7328],"yaw":-3.10669,"spawnMask":3},{"id":"creature-127201","entityId":"entry-29920","position":[976.7527,59.908,1516.1528],"yaw":-6.02139,"spawnMask":3},{"id":"creature-127202","entityId":"entry-29920","position":[983.9147,59.907,1508.0928],"yaw":-0.087266,"spawnMask":3},{"id":"creature-127203","entityId":"entry-29920","position":[976.7697,59.919,1509.6228],"yaw":-1.58825,"spawnMask":3},{"id":"creature-127204","entityId":"entry-29920","position":[967.2597,68.725,1573.3728],"yaw":-4.86947,"spawnMask":3},{"id":"creature-127205","entityId":"entry-29920","position":[991.3237,69.167,1566.5528],"yaw":-4.66003,"spawnMask":3},{"id":"creature-127206","entityId":"entry-29920","position":[975.9127,69.736,1582.1928],"yaw":-0.668432,"spawnMask":3},{"id":"creature-127207","entityId":"entry-29931","position":[783.0787,89.032,1729.9528],"yaw":-3.14159,"spawnMask":3},{"id":"encounter-385","entityId":"entry-29573","position":[759.9609,129.2423,1753.2671],"yaw":0,"spawnMask":1},{"id":"encounter-389","entityId":"entry-29932","position":[658.5943,129.1501,1756.7192],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-127014","name":"Unyielding Constrictor Patrol","speed":1.15,"pathId":1270140,"formationSource":"database-solo","spawnMask":3,"waypoints":[[649.5377,77.109,1646.9028],[647.9117,77.109,1645.7128],[645.4717,77.11,1643.9428],[652.1307,77.108,1648.7828],[654.5677,77.107,1650.5528],[657.8467,77.104,1652.1428],[660.6177,77.11,1653.3228],[663.3867,77.111,1654.4928],[667.6597,77.22,1654.3328],[670.6677,77.24,1654.2228],[673.6727,77.099,1654.1228],[677.2747,77.096,1653.1228],[680.1357,77.098,1652.2028],[682.9857,77.1,1651.2828],[688.6537,77.098,1647.0328],[690.9167,77.105,1645.0428],[688.6537,77.098,1647.0328],[682.9857,77.1,1651.2828],[680.1357,77.098,1652.2028],[677.2747,77.096,1653.1228],[673.6727,77.099,1654.1228],[670.6677,77.24,1654.2228],[667.6597,77.22,1654.3328],[663.3867,77.111,1654.4928],[660.6177,77.11,1653.3228],[657.8467,77.104,1652.1428],[654.5677,77.107,1650.5528],[652.1307,77.108,1648.7828]],"members":[{"id":"member","entityId":"entry-29768","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127017","name":"Unyielding Constrictor Patrol","speed":1.15,"pathId":1270170,"formationSource":"database-solo","spawnMask":3,"waypoints":[[679.8537,76.807,1636.1628],[682.0927,76.831,1638.1628],[679.8537,76.807,1636.1628],[677.9207,76.797,1635.0628],[675.2227,76.787,1633.7228],[672.5267,76.777,1632.3928],[671.5307,76.784,1632.5328],[668.5867,76.808,1633.1828],[665.7007,76.832,1633.8128],[662.8027,76.746,1634.4528],[659.8137,76.84,1635.0428],[655.8967,76.84,1637.4128],[653.5257,76.84,1639.2728],[651.1537,77.131,1641.1328],[653.5257,76.84,1639.2728],[655.8967,76.84,1637.4128],[659.8137,76.84,1635.0428],[662.8027,76.746,1634.4528],[665.7007,76.832,1633.8128],[668.5867,76.808,1633.1828],[671.5307,76.784,1632.5328],[672.5267,76.777,1632.3928],[675.2227,76.787,1633.7228],[677.9207,76.797,1635.0628],[679.8537,76.807,1636.1628],[682.0927,76.831,1638.1628]],"members":[{"id":"member","entityId":"entry-29768","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127023","name":"Spitting Cobra Patrol","speed":1.15,"pathId":1270230,"formationSource":"database-solo","spawnMask":3,"waypoints":[[693.4457,77.883,1507.2428],[682.6207,78.287,1504.7528],[678.0547,78.663,1507.1528],[672.7897,79.263,1512.0428],[665.4227,80.706,1522.6728],[664.7257,80.254,1529.7328],[666.2687,80.053,1534.6028],[673.7047,79.958,1539.6328],[684.8687,79.014,1538.7728],[690.1397,78.793,1533.6528],[694.5867,78.239,1527.0028],[696.7737,78.221,1520.7528],[696.6897,77.915,1510.5128],[693.5637,77.921,1507.2628]],"members":[{"id":"member","entityId":"entry-29774","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127045","name":"Drakkari Lancer Patrol","speed":1.15,"pathId":1270450,"formationSource":"database-solo","spawnMask":3,"waypoints":[[677.7857,81.331,1560.8728],[677.9287,78.649,1552.8228],[678.0107,75.845,1548.2528],[678.1027,77.181,1543.1028],[678.1937,80.195,1537.9728],[680.0577,83.003,1526.4828],[696.0247,77.725,1509.8428],[700.9167,76.853,1505.1128],[705.3307,80.539,1501.8928],[720.3727,88.46,1499.1528],[705.3307,80.539,1501.8928],[700.9167,76.853,1505.1128],[696.0247,77.725,1509.8428],[680.0577,83.003,1526.4828],[678.1937,80.195,1537.9728],[678.1027,77.181,1543.1028],[678.0107,75.845,1548.2528],[677.9287,78.649,1552.8228]],"members":[{"id":"member","entityId":"entry-29819","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127054","name":"Drakkari God Hunter Patrol","speed":1.15,"pathId":1270540,"formationSource":"database-solo","spawnMask":3,"waypoints":[[935.5897,98.594,1491.9428],[935.7977,97.07,1506.7128],[926.6187,94.664,1511.2728],[917.4357,93.492,1513.2728],[910.9487,92.575,1516.1528],[915.0907,92.979,1513.7728],[920.0567,93.322,1513.3228],[934.5707,96.383,1508.1228],[936.9107,97.611,1498.5228],[935.8117,98.522,1493.0628],[926.7657,100.807,1473.5728],[921.2197,102.62,1465.1328],[911.0067,105.56,1448.4928],[917.0327,103.953,1458.4328],[925.3287,101.384,1471.4028],[931.4447,100.18,1481.1928],[935.6017,98.557,1492.1228],[935.6537,97.245,1506.6728]],"members":[{"id":"member","entityId":"entry-29820","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127069","name":"Drakkari Earthshaker Patrol","speed":1.15,"pathId":1270690,"formationSource":"database-solo","spawnMask":3,"waypoints":[[857.6047,102.414,1457.7128],[846.1027,98.942,1466.3828],[843.0207,97.833,1474.5828],[834.9277,96.481,1488.5428],[841.3987,97.318,1480.1028],[843.5377,98.147,1469.9928],[850.7287,100.369,1462.0328],[862.8137,103.179,1456.8928],[880.9217,106.36,1451.0628],[884.1557,106.898,1449.5828],[884.7207,107.118,1449.0728],[870.5817,104.793,1454.9928]],"members":[{"id":"member","entityId":"entry-29829","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127070","name":"Drakkari Earthshaker Patrol","speed":1.15,"pathId":1270700,"formationSource":"database-solo","spawnMask":3,"waypoints":[[897.4767,82.612,1571.6528],[907.4007,82.884,1572.1728],[919.8147,83.419,1569.0728],[932.7857,85.557,1556.2328],[932.2417,86.875,1544.3028],[922.6187,90.377,1533.1828],[928.7007,88.795,1538.5228],[933.9227,86.057,1552.8428],[926.1807,84.45,1566.0328],[912.0977,83.31,1571.8328]],"members":[{"id":"member","entityId":"entry-29829","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127077","name":"Living Mojo Patrol","speed":1.15,"pathId":1270770,"formationSource":"database-solo","spawnMask":3,"waypoints":[[790.4457,95.671,1499.1428],[789.5567,95.693,1510.4228],[780.3767,95.667,1511.7428],[778.6237,95.674,1507.9228],[769.6107,95.656,1499.2428],[768.7037,95.667,1494.1328],[764.3987,95.664,1490.3228],[765.2497,95.666,1489.9628],[768.5537,95.652,1498.2828],[772.0557,95.667,1499.2428],[778.3947,95.667,1507.3928],[788.9167,95.692,1511.6328]],"members":[{"id":"member","entityId":"entry-29830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127078","name":"Living Mojo Patrol","speed":1.15,"pathId":1270780,"formationSource":"database-solo","spawnMask":3,"waypoints":[[802.5287,95.667,1489.8328],[802.6437,95.667,1489.7528],[800.7927,95.709,1481.7928],[797.4237,95.667,1480.9528],[792.1147,95.667,1480.7728],[783.1887,95.667,1477.4828],[775.4307,95.667,1480.8628],[769.1387,95.67,1481.4628],[769.1907,95.67,1481.4528],[775.3667,95.667,1480.9128],[782.2417,95.667,1477.4928],[786.2337,95.667,1477.5328],[799.3587,95.669,1480.8728],[800.7957,95.667,1485.7528],[802.5307,95.667,1489.8528],[802.6437,95.667,1489.7528],[800.8017,95.709,1481.7928]],"members":[{"id":"member","entityId":"entry-29830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-127079","name":"Living Mojo Patrol","speed":1.15,"pathId":1270790,"formationSource":"database-solo","spawnMask":3,"waypoints":[[766.3967,95.664,1445.6728],[766.3967,95.664,1466.4228],[766.3967,95.664,1445.6728],[766.3967,95.664,1466.4228]],"members":[{"id":"member","entityId":"entry-29830","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-127042","name":"Slad'ran","position":[715.2787,81.931,1640.0228]},{"id":"encounter-385","name":"Drakkari Colossus","position":[759.9609,129.2423,1753.2671]},{"id":"creature-127043","name":"Moorabi","position":[849.8347,81.931,1637.3628]},{"id":"creature-127044","name":"Gal'darah","position":[783.9517,89.21,1779.6428]},{"id":"encounter-389","name":"Eck the Ferocious","position":[658.5943,129.1501,1756.7192]}],"objectiveOrder":[{"id":"creature-127042","name":"Slad'ran","position":[715.2787,81.931,1640.0228]},{"id":"encounter-385","name":"Drakkari Colossus","position":[759.9609,129.2423,1753.2671]},{"id":"creature-127043","name":"Moorabi","position":[849.8347,81.931,1637.3628]},{"id":"creature-127044","name":"Gal'darah","position":[783.9517,89.21,1779.6428]},{"id":"encounter-389","name":"Eck the Ferocious","position":[658.5943,129.1501,1756.7192]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65588,"id":192517,"map":604,"orientation":3.14159,"phaseMask":1,"position_x":1837.86,"position_y":1873.78,"position_z":188.544,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65589,"id":192518,"map":604,"orientation":3.14159,"phaseMask":1,"position_x":1775.29,"position_y":679.68,"position_z":129.236,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65590,"id":192519,"map":604,"orientation":3.14159,"phaseMask":1,"position_x":1772.22,"position_y":804.963,"position_z":129.236,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65591,"id":192520,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1693.51,"position_y":743.595,"position_z":142.788,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65592,"id":191019,"map":604,"orientation":1.67551,"phaseMask":1,"position_x":1719.71,"position_y":922.131,"position_z":115.921,"rotation0":0,"rotation1":0,"rotation2":0.743143,"rotation3":0.669133,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65593,"id":191019,"map":604,"orientation":-2.82743,"phaseMask":1,"position_x":1715.83,"position_y":660.234,"position_z":132.604,"rotation0":0,"rotation1":0,"rotation2":-0.987688,"rotation3":0.156436,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65594,"id":192564,"map":604,"orientation":3.14159,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65595,"id":192565,"map":604,"orientation":0,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65596,"id":192566,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65597,"id":192567,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65598,"id":192568,"map":604,"orientation":3.14159,"phaseMask":1,"position_x":1848.03,"position_y":743.816,"position_z":135.949,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65599,"id":192569,"map":604,"orientation":2.2549,"phaseMask":1,"position_x":1622.89,"position_y":857.706,"position_z":108.755,"rotation0":0,"rotation1":0,"rotation2":0.903321,"rotation3":0.428965,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65600,"id":192826,"map":604,"orientation":0.680677,"phaseMask":1,"position_x":1898.78,"position_y":713.32,"position_z":135.987,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65601,"id":192826,"map":604,"orientation":-2.04204,"phaseMask":1,"position_x":1717.85,"position_y":839.128,"position_z":129.468,"rotation0":0,"rotation1":0,"rotation2":-0.852641,"rotation3":0.522496,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65602,"id":192826,"map":604,"orientation":-2.54818,"phaseMask":1,"position_x":1673,"position_y":873.65,"position_z":136.519,"rotation0":0,"rotation1":0,"rotation2":-0.956305,"rotation3":0.292372,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65603,"id":192826,"map":604,"orientation":2.3911,"phaseMask":1,"position_x":1965.34,"position_y":775.519,"position_z":135.965,"rotation0":0,"rotation1":0,"rotation2":0.930417,"rotation3":0.366502,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65604,"id":192826,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1792.37,"position_y":825.022,"position_z":124.493,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65605,"id":192826,"map":604,"orientation":2.93214,"phaseMask":1,"position_x":1766.62,"position_y":877.325,"position_z":124.441,"rotation0":0,"rotation1":0,"rotation2":0.994521,"rotation3":0.104535,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65606,"id":192826,"map":604,"orientation":-1.23918,"phaseMask":1,"position_x":1726.68,"position_y":839.27,"position_z":129.21,"rotation0":0,"rotation1":0,"rotation2":-0.580701,"rotation3":0.814117,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65607,"id":192826,"map":604,"orientation":1.43117,"phaseMask":1,"position_x":1775.44,"position_y":681.744,"position_z":129.216,"rotation0":0,"rotation1":0,"rotation2":0.656059,"rotation3":0.75471,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65608,"id":192826,"map":604,"orientation":-2.37364,"phaseMask":1,"position_x":1818.38,"position_y":651.984,"position_z":129.213,"rotation0":0,"rotation1":0,"rotation2":-0.927182,"rotation3":0.37461,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65609,"id":192826,"map":604,"orientation":2.9845,"phaseMask":1,"position_x":1789.23,"position_y":877.808,"position_z":129.225,"rotation0":0,"rotation1":0,"rotation2":0.996917,"rotation3":0.0784656,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65610,"id":192826,"map":604,"orientation":2.79252,"phaseMask":1,"position_x":1792.56,"position_y":683.9,"position_z":129.216,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65611,"id":192826,"map":604,"orientation":0.95993,"phaseMask":1,"position_x":1782.82,"position_y":593.745,"position_z":129.155,"rotation0":0,"rotation1":0,"rotation2":0.461748,"rotation3":0.887011,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65612,"id":192826,"map":604,"orientation":0.122173,"phaseMask":1,"position_x":1644.11,"position_y":874.205,"position_z":140.811,"rotation0":0,"rotation1":0,"rotation2":0.0610485,"rotation3":0.998135,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65613,"id":192826,"map":604,"orientation":2.47837,"phaseMask":1,"position_x":1602.52,"position_y":891.821,"position_z":148.831,"rotation0":0,"rotation1":0,"rotation2":0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65614,"id":192826,"map":604,"orientation":1.06465,"phaseMask":1,"position_x":1755.81,"position_y":799.068,"position_z":129.216,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65615,"id":192826,"map":604,"orientation":-2.9845,"phaseMask":1,"position_x":1762.44,"position_y":671.432,"position_z":129.216,"rotation0":0,"rotation1":0,"rotation2":-0.996917,"rotation3":0.0784656,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65616,"id":192826,"map":604,"orientation":1.81514,"phaseMask":1,"position_x":1779.1,"position_y":798.336,"position_z":129.216,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65617,"id":192826,"map":604,"orientation":-2.47837,"phaseMask":1,"position_x":1636.82,"position_y":763.616,"position_z":142.783,"rotation0":0,"rotation1":0,"rotation2":-0.945519,"rotation3":0.325567,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65618,"id":192826,"map":604,"orientation":0.349065,"phaseMask":1,"position_x":1912.43,"position_y":787.582,"position_z":135.801,"rotation0":0,"rotation1":0,"rotation2":0.173648,"rotation3":0.984808,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65619,"id":192826,"map":604,"orientation":-1.15192,"phaseMask":1,"position_x":1937.29,"position_y":810.421,"position_z":135.373,"rotation0":0,"rotation1":0,"rotation2":-0.54464,"rotation3":0.83867,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65620,"id":192826,"map":604,"orientation":-0.872664,"phaseMask":1,"position_x":1726.94,"position_y":872.242,"position_z":129.21,"rotation0":0,"rotation1":0,"rotation2":-0.422618,"rotation3":0.906308,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65621,"id":192826,"map":604,"orientation":3.12412,"phaseMask":1,"position_x":1934.62,"position_y":745.348,"position_z":136.564,"rotation0":0,"rotation1":0,"rotation2":0.999962,"rotation3":0.00873622,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65622,"id":192826,"map":604,"orientation":-1.88495,"phaseMask":1,"position_x":1809.32,"position_y":857.316,"position_z":129.198,"rotation0":0,"rotation1":0,"rotation2":-0.809015,"rotation3":0.587788,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65623,"id":192826,"map":604,"orientation":0.680677,"phaseMask":1,"position_x":1571.94,"position_y":715.885,"position_z":143.859,"rotation0":0,"rotation1":0,"rotation2":0.333806,"rotation3":0.942642,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65624,"id":192826,"map":604,"orientation":2.70526,"phaseMask":1,"position_x":1688.02,"position_y":729.3,"position_z":142.781,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65625,"id":192826,"map":604,"orientation":2.42601,"phaseMask":1,"position_x":1713.95,"position_y":620.922,"position_z":129.186,"rotation0":0,"rotation1":0,"rotation2":0.936673,"rotation3":0.350206,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65626,"id":192826,"map":604,"orientation":2.79252,"phaseMask":1,"position_x":1970.51,"position_y":683.654,"position_z":135.209,"rotation0":0,"rotation1":0,"rotation2":0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65627,"id":192826,"map":604,"orientation":-0.087266,"phaseMask":1,"position_x":1609.19,"position_y":743.7,"position_z":142.786,"rotation0":0,"rotation1":0,"rotation2":-0.0436192,"rotation3":0.999048,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65628,"id":192826,"map":604,"orientation":-1.83259,"phaseMask":1,"position_x":1750.67,"position_y":748.303,"position_z":119.177,"rotation0":0,"rotation1":0,"rotation2":-0.793352,"rotation3":0.608764,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65629,"id":192826,"map":604,"orientation":1.51844,"phaseMask":1,"position_x":1594.54,"position_y":722.452,"position_z":142.783,"rotation0":0,"rotation1":0,"rotation2":0.688356,"rotation3":0.725373,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65630,"id":192632,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1772.7,"position_y":878.415,"position_z":124.118,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65631,"id":192633,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65632,"id":193188,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1775.16,"position_y":743.455,"position_z":119.073,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65633,"id":192679,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1897.08,"position_y":825.514,"position_z":178.066,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65634,"id":192680,"map":604,"orientation":1.5708,"phaseMask":1,"position_x":1897.08,"position_y":825.514,"position_z":178.066,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65635,"id":192681,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1899.26,"position_y":659.248,"position_z":178.066,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65636,"id":192682,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1899.26,"position_y":659.248,"position_z":178.066,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65637,"id":193208,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1947.65,"position_y":814.002,"position_z":135.295,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65638,"id":193209,"map":604,"orientation":-1.5708,"phaseMask":1,"position_x":1947.65,"position_y":672.852,"position_z":135.295,"rotation0":0,"rotation1":0,"rotation2":-0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65639,"id":193212,"map":604,"orientation":0.000002,"phaseMask":1,"position_x":1913.53,"position_y":644.975,"position_z":136.878,"rotation0":0,"rotation1":0,"rotation2":0.000001,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65640,"id":193213,"map":604,"orientation":0.000002,"phaseMask":1,"position_x":1913.53,"position_y":644.975,"position_z":136.878,"rotation0":0,"rotation1":0,"rotation2":0.000001,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":65641,"id":190170,"map":604,"orientation":0.069812,"phaseMask":1,"position_x":1634.81,"position_y":889.451,"position_z":143.884,"rotation0":0,"rotation1":0,"rotation2":0.0348989,"rotation3":0.999391,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/gundrak/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["20/20 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"violet-hold","title":"Violet Hold","mapId":608,"lfgDungeonIds":[220,221],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[73,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Violet Hold","theme":"Open-world expedition","summary":"Fight through Violet Hold, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Violet Hold...","unchartedAreaName":"Uncharted Violet Hold","background":"#081016","fog":{"color":"#0a141c","near":36,"far":260},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/608-dalaranprison/visual.glb","checksum":"d57120ce038bae2ab30436b4d423fa178db48777abaec4add20983b5f46d3710","size":8609340,"triangleCount":1658605}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-000.glb","checksum":"48e7defb1df8e3587a315cfa744832b4208dec376b6f4127ca18dca27ced1a47","size":113552,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-001.glb","checksum":"8db9fc4b2b0d9f7bdf75198e00708e49fa8c28c49f82822c843c2e8a2f89e356","size":113728,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-002.glb","checksum":"a5059d5b423bde1d35497d40f139c80e223d6d1203f508d405bbbe903356229e","size":113372,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-003.glb","checksum":"79b78e82d87464d6ff7dcbd38d006791a00a3fed753700cb78b6634c973cbb43","size":113192,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-004.glb","checksum":"ea2c07024f241ae5fdacf4d757313cb82e7f7b99178ea3d0576c66d4915f32b2","size":113532,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-005.glb","checksum":"cc650413142a86b996a770a903f5319559a8563e0770563082eb4c6043455069","size":113376,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-006.glb","checksum":"eabd58aedb41684495f467f1b1cbde6859750c498f3364c9e15e89207f43f08f","size":113552,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-007.glb","checksum":"284e0990387f4da1f6e709e90b43fe5817e803affd2f3b4ccfd71cd4cc9b73c8","size":113196,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-008.glb","checksum":"c94d0d34dc7b4e02ce0305f4288b33d4b235c0534cd12a77b5086969a1723b30","size":113016,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-009.glb","checksum":"8c1e2807414015e55a29333609455115b2b0dcd14e712b0c9d0095b864b477d8","size":113532,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-010.glb","checksum":"a4f07cd549a04f81a9a095ab4641d6420c235f255613efc37ee8064246b226c0","size":113140,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-011.glb","checksum":"35e3cc6bf9a4058abbca8b3bde0082682fc7cbec0265306946ad1ea54b80bd63","size":113348,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-012.glb","checksum":"271550b91091e1d24b09176b9736d8a6b275de6fea9cc1206cbca70ff4e94ffb","size":384988,"triangleCount":85741},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-013.glb","checksum":"de15a6591eb04c22655736193a19424140fb6c79809618d5c6da6681d917fd3b","size":113140,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-014.glb","checksum":"1fde91ee0fd90806bddb0fececd157416222e62f620b1dec76920585d169f50d","size":113660,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-015.glb","checksum":"fbe39e901ddd9897f3410490806d676eb3d6cf8dc3060c67170078b86a8a8d49","size":113424,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-016.glb","checksum":"c91af5156fc9cb2befa124a99edeab6b03b39526c2a031cf3fb8207558d65565","size":113600,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-017.glb","checksum":"95726c31d085a206f772412a8a39b8f368fbbba8f23c82d7795be990162bd67c","size":113196,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-018.glb","checksum":"8e150d1c25cf8909c6439b82ca006ede03fc479e1b13ff0ebce89d69cbf01069","size":113016,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-019.glb","checksum":"401112e5abeb64f5a8497c14fe5d52694db6716858fe96b237c5f4c076a273b7","size":113660,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-020.glb","checksum":"f8723f121fa48346f4ba323cb97ff4de83c5ed5c6b1b0bc83e4e3a8faaefc92d","size":113740,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-021.glb","checksum":"5bec98379321457aad66dd666983048741c7ed6b1887c5f90f5f3c7106bb7a3b","size":113916,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-022.glb","checksum":"23d20ae28498e2f0ab1f8f127d9537e5e9c42329f103a93dd8d8abc8768076f6","size":113420,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-023.glb","checksum":"130c71a1719051b177999990b5320d5413df36abce2c48c4f65f22f81e2363fa","size":113240,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/608-dalaranprison/collision-024.glb","checksum":"c2467d164cc777f6771afdbfc8a43d1cb3b5a95cf4f0395bf1cbec049de68ef4","size":113660,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/608-dalaranprison/navigation.glb","checksum":"fd17cfff5366b82fdc5aa0cbcf5462a21ce807453a3aadb6918067f5e9ac734b","size":63304,"triangleCount":5795}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[685.8668,17.7512,1789.7327],"max":[952.2197,67.7,1964.8127]},"entrance":{"name":"Violet Hold Entrance","footPosition":[838.8667,38.7,1834.7327],"forward":[-0.9639680467402515,0,0.26601805364257575],"yaw":-1.3015364508830067},"areas":[{"id":"entrance","name":"Violet Hold Entrance","center":[838.8667,38.7,1834.7327],"radius":35},{"id":"area-first-prisoner","name":"First Prisoner's Encounter","center":[905.9727,37.7512,1897.3727],"radius":42},{"id":"area-second-prisoner","name":"Second Prisoner's Encounter","center":[763.0627,42.0862,1919.8127],"radius":42},{"id":"area-cyanigosa","name":"Cyanigosa's Encounter","center":[731.0661,47.7,1899.6614],"radius":42}],"entities":{"entry-29315":{"id":"entry-29315","kind":"boss","name":"Erekem","title":"Dungeon Boss","hasLoot":true,"combat":{"level":77,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-54479","name":"Earth Shield","spellId":54479,"delivery":"area","target":"self","school":"nature","animation":"cast","range":0,"cooldownMs":12000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-54479","durationMs":12000,"magnitude":0.25}},{"id":"spell-54516","name":"Bloodlust","spellId":54516,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-59463","name":"Break Bonds","spellId":59463,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":9000,"damageMultiplier":1.35},{"id":"spell-54481","name":"Chain Heal","spellId":54481,"delivery":"projectile","target":"lowest-health-friendly","school":"nature","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":0,"effect":{"kind":"heal","multiplier":1.2},"condition":{"kind":"friendly-missing-health","amount":1,"range":28}}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/violet-hold/creatures/display-27488-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1189,"labelHeight":5.638,"markerRadius":2.4165}}},"entry-29316":{"id":"entry-29316","kind":"boss","name":"Moragg","title":"Dungeon Boss","hasLoot":true,"combat":{"level":77,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-54442","name":"Ray of Suffering","spellId":54442,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7256,"damageMultiplier":1.35},{"id":"spell-54438","name":"Ray of Pain","spellId":54438,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":7256,"damageMultiplier":1.35},{"id":"spell-54527","name":"Corrosive Saliva","spellId":54527,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.35},{"id":"spell-54396","name":"Optic Link","spellId":54396,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/violet-hold/creatures/display-20590-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.05,"labelHeight":17.0335,"markerRadius":4.1136}}},"entry-30659":{"id":"entry-30659","kind":"mob","name":"Violet Hold Guard","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/violet-hold/creatures/display-27215-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.6909,"markerRadius":0.65}}},"entry-29395":{"id":"entry-29395","kind":"mob","name":"Erekem Guard","combat":{"level":76,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-39215","name":"Gushing Wound","spellId":39215,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.12},{"id":"spell-54462","name":"Howling Screech","spellId":54462,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":8000,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/bcc14a8b2e12bb78aab11fcecfd6a0469d4df1fcf8167e779a7fc9ccf4d1ae4f.glb","rotationY":-1.5707963267948966,"groundOffset":0.0991,"labelHeight":4.7487,"markerRadius":2.0138}}},"entry-31134":{"id":"entry-31134","kind":"boss","name":"Cyanigosa","title":"Dungeon Boss","hasLoot":true,"combat":{"level":77,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-58694","name":"Arcane Vacuum","spellId":58694,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-58693","name":"Blizzard","spellId":58693,"delivery":"area","target":"nearby-party","school":"frost","animation":"cast","range":22,"cooldownMs":5000,"damageMultiplier":0.82,"radius":11},{"id":"spell-59374","name":"Mana Destruction","spellId":59374,"delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-58690","name":"Tail Sweep","spellId":58690,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/violet-hold/creatures/display-27508-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":3.1979,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-102383","entityId":"entry-29315","position":[905.9727,37.7512,1897.3727],"yaw":-5.11381,"spawnMask":3},{"id":"creature-102384","entityId":"entry-29316","position":[763.0627,42.0862,1919.8127],"yaw":-1.6057,"spawnMask":3},{"id":"creature-102915","entityId":"entry-30659","position":[837.0837,38.3438,1880.4527],"yaw":-6.22792,"spawnMask":3},{"id":"creature-102916","entityId":"entry-30659","position":[840.8097,38.3441,1880.7327],"yaw":-0.054694,"spawnMask":3},{"id":"creature-102917","entityId":"entry-30659","position":[845.3987,38.3448,1879.8627],"yaw":-0.239263,"spawnMask":3},{"id":"creature-102918","entityId":"entry-30659","position":[832.9897,38.3447,1880.2327],"yaw":-6.0355,"spawnMask":3},{"id":"creature-102923","entityId":"entry-29395","position":[907.2197,37.7516,1918.3327],"yaw":-4.55531,"spawnMask":3},{"id":"creature-102924","entityId":"entry-29395","position":[897.3897,37.7521,1879.6627],"yaw":-5.11381,"spawnMask":3},{"id":"encounter-545","entityId":"entry-31134","position":[731.0661,47.7,1899.6614],"yaw":0,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"creature-102383","name":"First Prisoner","position":[905.9727,37.7512,1897.3727]},{"id":"creature-102384","name":"Second Prisoner","position":[763.0627,42.0862,1919.8127]},{"id":"encounter-545","name":"Cyanigosa","position":[731.0661,47.7,1899.6614]}],"objectiveOrder":[{"id":"creature-102383","name":"First Prisoner","position":[905.9727,37.7512,1897.3727]},{"id":"creature-102384","name":"Second Prisoner","position":[763.0627,42.0862,1919.8127]},{"id":"encounter-545","name":"Cyanigosa","position":[731.0661,47.7,1899.6614]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":4524,"id":192528,"map":608,"orientation":0,"phaseMask":1,"position_x":1799.99,"position_y":803.646,"position_z":45.4529,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":5099,"id":192529,"map":608,"orientation":0,"phaseMask":1,"position_x":1799.99,"position_y":803.646,"position_z":45.4529,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":5139,"id":191556,"map":608,"orientation":-0.444615,"phaseMask":1,"position_x":1908.06,"position_y":844.885,"position_z":41.1377,"rotation0":0,"rotation1":0,"rotation2":-0.220481,"rotation3":0.975391,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":6091,"id":191557,"map":608,"orientation":-1.35222,"phaseMask":1,"position_x":1921.51,"position_y":797.133,"position_z":41.5831,"rotation0":0,"rotation1":0,"rotation2":-0.625764,"rotation3":0.780013,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":7462,"id":191558,"map":608,"orientation":-1.26667,"phaseMask":1,"position_x":1954.73,"position_y":822.575,"position_z":57.172,"rotation0":0,"rotation1":0,"rotation2":-0.591836,"rotation3":0.806058,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":7616,"id":191559,"map":608,"orientation":-1.60814,"phaseMask":1,"position_x":1957.5,"position_y":803.284,"position_z":57.172,"rotation0":0,"rotation1":0,"rotation2":-0.720186,"rotation3":0.693781,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":7757,"id":191560,"map":608,"orientation":-1.91064,"phaseMask":1,"position_x":1954.31,"position_y":784.77,"position_z":57.172,"rotation0":0,"rotation1":0,"rotation2":-0.816499,"rotation3":0.577348,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":7931,"id":191562,"map":608,"orientation":0.546741,"phaseMask":1,"position_x":1854.57,"position_y":860.96,"position_z":47.6405,"rotation0":0,"rotation1":0,"rotation2":0.269978,"rotation3":0.962866,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":8964,"id":191563,"map":608,"orientation":-0.05735,"phaseMask":1,"position_x":1892.01,"position_y":871.239,"position_z":47.6405,"rotation0":0,"rotation1":0,"rotation2":-0.0286711,"rotation3":0.999589,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":13215,"id":193611,"map":608,"orientation":2.49582,"phaseMask":1,"position_x":1940.8,"position_y":774,"position_z":53.592,"rotation0":0,"rotation1":0,"rotation2":0.948324,"rotation3":0.317305,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16534,"id":193611,"map":608,"orientation":-1.0821,"phaseMask":1,"position_x":1855,"position_y":844,"position_z":40.6313,"rotation0":0,"rotation1":0,"rotation2":-0.515036,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16821,"id":193611,"map":608,"orientation":-0.541051,"phaseMask":1,"position_x":1846,"position_y":780.629,"position_z":40.5764,"rotation0":0,"rotation1":0,"rotation2":-0.267238,"rotation3":0.963631,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16822,"id":193611,"map":608,"orientation":-2.02458,"phaseMask":1,"position_x":1911.34,"position_y":860.6,"position_z":48.3596,"rotation0":0,"rotation1":0,"rotation2":-0.848048,"rotation3":0.52992,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16826,"id":193611,"map":608,"orientation":-2.32129,"phaseMask":1,"position_x":1917.58,"position_y":802.5,"position_z":39,"rotation0":0,"rotation1":0,"rotation2":-0.91706,"rotation3":0.398748,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16832,"id":191564,"map":608,"orientation":0.289969,"phaseMask":1,"position_x":1872.45,"position_y":868.998,"position_z":47.6405,"rotation0":0,"rotation1":0,"rotation2":0.144477,"rotation3":0.989508,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":16846,"id":191565,"map":608,"orientation":-0.698129,"phaseMask":1,"position_x":1931.87,"position_y":859.01,"position_z":54.923,"rotation0":0,"rotation1":0,"rotation2":-0.342019,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":17181,"id":191566,"map":608,"orientation":2.44346,"phaseMask":1,"position_x":1847.81,"position_y":752.476,"position_z":49.3023,"rotation0":0,"rotation1":0,"rotation2":0.939692,"rotation3":0.342021,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":17867,"id":193615,"map":608,"orientation":1.48353,"phaseMask":1,"position_x":1828.3,"position_y":797.309,"position_z":46.1355,"rotation0":0,"rotation1":0,"rotation2":0.67559,"rotation3":0.737277,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":18129,"id":191606,"map":608,"orientation":3.14159,"phaseMask":1,"position_x":1895.07,"position_y":733.715,"position_z":57.6715,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":18131,"id":191722,"map":608,"orientation":2.37934,"phaseMask":1,"position_x":1938.43,"position_y":754.695,"position_z":28.7801,"rotation0":0,"rotation1":0,"rotation2":0.928246,"rotation3":0.371966,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":18517,"id":191723,"map":608,"orientation":3.14159,"phaseMask":1,"position_x":1822.59,"position_y":803.928,"position_z":44.3647,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/violet-hold/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["5/5 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"ahnkahet-old-kingdom","title":"Ahn'kahet: The Old Kingdom","mapId":619,"lfgDungeonIds":[218,219],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[71,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Ahn'kahet: The Old Kingdom","theme":"Open-world expedition","summary":"Fight through Ahn'kahet: The Old Kingdom, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Ahn'kahet: The Old Kingdom...","unchartedAreaName":"Uncharted Ahn'kahet: The Old Kingdom","background":"#081016","fog":{"color":"#0a141c","near":36,"far":545.8514},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/619-azjol-lowercity/visual.glb","checksum":"e265a24fa3f316f3c698dbdef833ceef8f0402c71f269b85bc7d658aea7a775f","size":33816976,"triangleCount":3504275}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-000.glb","checksum":"cad2f02462b6e79e963dd93a56a47f5b7957d001a8b3b4cf6ff552879ebd799a","size":128424,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-001.glb","checksum":"cdc17214d35fb1198ed7bfb8582d19600b1852f72a9f315cdfffdf396ca98a48","size":1079592,"triangleCount":78387},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-002.glb","checksum":"16da2fd6919e4fb389f9e6cafdd86936d6f4bb3b1ff2b5c170f3795fe12dfaa9","size":130664,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-003.glb","checksum":"65f7888b95d61c4d5ec15dfe9a577f9699792db59bbbe78397102f9bb78fabe6","size":129216,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-004.glb","checksum":"f553585ffbf03e78928ee7045133f56a9af0197dc166c2cef88e48968d308109","size":129996,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-005.glb","checksum":"07abf9779e8bd88ff341758107f7ccd41c0ff9622418783a51270dce918356ae","size":127932,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-006.glb","checksum":"c386d4c372845a2e4fac09531b08c826c7c0578e10c83f3241a936338dfbbc15","size":133088,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-007.glb","checksum":"90563a406caee7f74728be93155251af79a450c4aa166449198b6925cce33d85","size":141296,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-008.glb","checksum":"085c2100e32fc935c951b8dae1422247fea19bfb3d909389c031ccc026008a7e","size":132512,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-009.glb","checksum":"3d67047f9d487a16a9269d7b13f84251e4e080be864087aea7aaf0afd85aee53","size":124584,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-010.glb","checksum":"01dd32fc24f6708a88847d9451d5d69e64ed184339927c61420febe9bf75e116","size":124996,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-011.glb","checksum":"bf88061be44744dbe8d2fe4749b45f52dbfed1e4b53dedb8a9c746034a06d42d","size":126032,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-012.glb","checksum":"a0349e63dabcc8dfa23ba2ebba63fd7e7468a25b0e8ffcbe9b7d97ebf844485d","size":127404,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-013.glb","checksum":"5a73b0098c8d69ff31a5e0c32e7834df1acda632605f15b0977bff6e51652938","size":141256,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-014.glb","checksum":"1764f34fab350c79be8f7b47d08584d2664a23290547b4c88beb3cba102bd970","size":157360,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-015.glb","checksum":"a52e529825fe98dfd012a21d59ed8c609cfc62071ee8eba7acf8fc2f1408d592","size":134204,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-016.glb","checksum":"f9347b862cb6cfb0bc1e38879d509ae047fb68147ddd5048e6b85b90ddd1bb4a","size":149884,"triangleCount":65536},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-017.glb","checksum":"30ee1f125d7f12968b6d17eaec3c5d3b25f7b3e76c517ce639ff1aa9f8204a1c","size":156336,"triangleCount":65536},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-018.glb","checksum":"19c46c6c5ae76e51b7ce5bc8cf5331e7ef5022a1e02f9e61244fc8fa857b7aea","size":138508,"triangleCount":65536},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-019.glb","checksum":"3d7dea1b78024c3f1e6e2ed2fc2bb9fe38b186bdeb0774eef2e2b526917409a9","size":1181752,"triangleCount":78431},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-020.glb","checksum":"ffd1c35bbb0b3a097e4703b070483b450140666dc94df574dea65b6b2227d6d5","size":135436,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-021.glb","checksum":"0760e455e62c304665abec8175ffec9eb1a54da4783a7587d52487b7198978a9","size":128888,"triangleCount":65536},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-022.glb","checksum":"6c1ee27984423671dc40c5ce9869df8c5b5538d0b76dfc05d147d18bfb76c815","size":143932,"triangleCount":65536},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-023.glb","checksum":"61f000920754062f3262eff14231fc177374638a6858b7d8d2e8be1fbe607275","size":134336,"triangleCount":65536},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-024.glb","checksum":"093c3e423c24b0b8f5e0e324769e324511a06a68c6d9c7356c876fde846c8d93","size":157024,"triangleCount":65536},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-025.glb","checksum":"fcb7957c6ccc1b482af9cb8dc905d651f7101273e57983326d9e4b6674db12c8","size":167752,"triangleCount":65536},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-026.glb","checksum":"f20b5ff4dd21c802a7ff1e898742db4ff4f5b0c1ab48783ed663002c9e2d9e8d","size":161660,"triangleCount":64944},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-027.glb","checksum":"e81ff97a7494b153ce317aa5a09222602f24c86b6d2aad940c8a5a6edf6c8224","size":151344,"triangleCount":64656},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-028.glb","checksum":"ee3fe76ca6ae51dd782ea3a3532d150c4d4a3f0c2a331a3ff342f3e0eab0663e","size":125380,"triangleCount":65536},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-029.glb","checksum":"94352cdcc08a1a81cc815a029b98dc71d09e8a555b607fd95fc4b45c6635ba07","size":128640,"triangleCount":65536},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-030.glb","checksum":"0d51a24606c96a10546c233cf7b8be3e26d2028b78988732567c04c7ab1fbd69","size":158636,"triangleCount":65536},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-031.glb","checksum":"4a6243f6e7d37469e9f611623fe9d13378cc3373108f3494a311b00a7da74e55","size":172836,"triangleCount":65536},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-032.glb","checksum":"db22498996b4c9f0d496d612d6eca4ed5a9a308ca9daa343e3b8c9a91a3edf58","size":160656,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-033.glb","checksum":"71612522bf4b35d51eeaf083c6a53bd5e69332b24aad2bbfe21e3ac4ff802bab","size":148568,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-034.glb","checksum":"98589dafba1d1b15986ecbb051659e91311a186365cbf57c9bba717f938a86fd","size":140424,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-035.glb","checksum":"251e9616559d542955dcf5ee8524a777b74753d7a42e3cc5c62b074458ca8ec6","size":126692,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-036.glb","checksum":"e7f5a0330f5361dc3af8f8b87e4447dd4d11eb7ce5fa0d86bf7876c03efe3bc3","size":129296,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-037.glb","checksum":"fb42ac71edc188fe8deb0b78d97305fb2272bd908a047a2c02a01ab2bba69da9","size":161712,"triangleCount":65536},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-038.glb","checksum":"a44a6fec1794f6d593d0ad621f89f572571c91c36fcf7c993ded7c1376a1c036","size":145804,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-039.glb","checksum":"ee0a11bde371218dc58fa6a8578ed8fe628508f07c4c17b1e6583b94d156226f","size":124992,"triangleCount":65536},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-040.glb","checksum":"79c6c4db4e7bfef7f5963c3c1c8fc49c5d924214277bf30a446fecb7409adf3f","size":131292,"triangleCount":65536},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-041.glb","checksum":"4e65cb4b4cefa1f648826dd74319b995dd6637f808aa6d398d4528d86fa47f74","size":131640,"triangleCount":65536},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-042.glb","checksum":"96ae8ac0b2d07b64b7eae37612258e615c3a22ec74bacfbbdb304e641ec5b1bb","size":132684,"triangleCount":65536},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-043.glb","checksum":"72b1b7ef2bb40b7fa08ae80570e42fbb92251166aef5a7b6fc0a1c90c673bf35","size":129000,"triangleCount":65536},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-044.glb","checksum":"8c3ddb1d536cd70cd6a563b921aa3dc03736af9d05a6ae7b3aaa84d20fd4aa3d","size":140396,"triangleCount":65536},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-045.glb","checksum":"03e0ac761d68d55eaa34badd4c5231d06307ac664a8cb46dfe84cd33d0e14132","size":126004,"triangleCount":65536},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-046.glb","checksum":"a1ac9e44717dbf2d60d06e2d7d5cda486c93048be6a321e9d3f1125ece28adc5","size":125784,"triangleCount":65536},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-047.glb","checksum":"c925047df9f591e0c513d7a93622c98d1e805c506f02e59eb2ee2298ef93e8bc","size":127660,"triangleCount":65536},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-048.glb","checksum":"0080687f0c0c212a3c9b8d0f4c0868e46a76657daa575975c48a2b886a457aba","size":126192,"triangleCount":65536},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-049.glb","checksum":"2eadb7cab0c4ab8d49bd8d4182d0630d46c652c066f206598703172bc2892052","size":126664,"triangleCount":65536},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/619-azjol-lowercity/collision-050.glb","checksum":"852846ace7e5907c2c0643661ff48715824d4b197d1b1bc8d554be0b851030a3","size":127368,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/619-azjol-lowercity/navigation.glb","checksum":"7b49990e78209eb0ccf3449403bb4ba17ce9482b0becbd8cf5b155d79e317153","size":4747016,"triangleCount":402335}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-670.2272,-502.5668,1068.7327],"max":[87.8998,-310.2838,1553.8607]},"entrance":{"name":"Ahn'kahet: The Old Kingdom Entrance","footPosition":[-625.2272,-330.2838,1113.7327],"forward":[0,0,1],"yaw":0},"areas":[{"id":"entrance","name":"Ahn'kahet: The Old Kingdom Entrance","center":[-625.2272,-330.2838,1113.7327],"radius":35},{"id":"area-elder-nadox","name":"Elder Nadox's Encounter","center":[-420.7542,-374.358,1460.2737],"radius":42},{"id":"area-prince-taldaram","name":"Prince Taldaram's Encounter","center":[-361.2852,-358.0207,1309.1157],"radius":42},{"id":"area-jedoga-shadowseeker","name":"Jedoga Shadowseeker's Encounter","center":[-220.5652,-400.68,1152.7127],"radius":42},{"id":"area-herald-volazj","name":"Herald Volazj's Encounter","center":[42.8998,-373.6164,1300.2947],"radius":42},{"id":"area-amanitar","name":"Amanitar's Encounter","center":[-393.8792,-474.9196,1120.5547],"radius":42}],"entities":{"entry-31104":{"id":"entry-31104","kind":"mob","name":"Ahn'kahar Watcher","combat":{"level":79,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27324-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1982,"labelHeight":3.7719,"markerRadius":2.0637}}},"entry-30276":{"id":"entry-30276","kind":"mob","name":"Ahn'kahar Web Winder","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-25768-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1801,"labelHeight":3.3974,"markerRadius":1.8761}}},"entry-30277":{"id":"entry-30277","kind":"mob","name":"Ahn'kahar Slasher","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"plant","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27324-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1982,"labelHeight":3.7719,"markerRadius":2.0637}}},"entry-30278":{"id":"entry-30278","kind":"mob","name":"Ahn'kahar Spell Flinger","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-23821-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1621,"labelHeight":3.0551,"markerRadius":1.6946}}},"entry-30279":{"id":"entry-30279","kind":"mob","name":"Deep Crawler","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.809536,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-26775-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.3146,"markerRadius":2.3966}}},"entry-30283":{"id":"entry-30283","kind":"mob","name":"Plague Walker","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2200,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27323-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":7.5227,"markerRadius":2.5418}}},"entry-30284":{"id":"entry-30284","kind":"mob","name":"Bonegrinder","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-25012-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0102,"labelHeight":25.2557,"markerRadius":4.5}}},"entry-30285":{"id":"entry-30285","kind":"mob","name":"Eye of Taldaram","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-20090-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.7608,"markerRadius":0.9638}}},"entry-30286":{"id":"entry-30286","kind":"mob","name":"Frostbringer","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-26941-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0055,"labelHeight":4.7286,"markerRadius":0.9417}}},"entry-30287":{"id":"entry-30287","kind":"mob","name":"Plundering Geist","combat":{"level":73,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-25742-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":3.7706,"markerRadius":0.65}}},"entry-30319":{"id":"entry-30319","kind":"mob","name":"Twilight Darkcaster","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27373-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0028,"labelHeight":2.9483,"markerRadius":0.65}}},"entry-30329":{"id":"entry-30329","kind":"mob","name":"Savage Cave Beast","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-26948-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":6.6991,"markerRadius":2.0555}}},"entry-29308":{"id":"entry-29308","kind":"boss","name":"Prince Taldaram","title":"Dungeon Boss","hasLoot":true,"combat":{"level":75,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-55964","name":"Vanish","spellId":55964,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4523,"damageMultiplier":1.35},{"id":"spell-55966","name":"Shadowstep","spellId":55966,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4523,"damageMultiplier":1.35},{"id":"spell-55959","name":"Embrace of the Vampyr","spellId":55959,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4523,"damageMultiplier":1.35},{"id":"spell-60425","name":"Hover Fall","spellId":60425,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4523,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27406-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0204,"labelHeight":5.2021,"markerRadius":0.9081}}},"entry-29309":{"id":"entry-29309","kind":"boss","name":"Elder Nadox","title":"Dungeon Boss","hasLoot":true,"combat":{"level":75,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-59465","name":"Brood Rage","spellId":59465,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4865,"damageMultiplier":1.35},{"id":"spell-56130","name":"Brood Plague","spellId":56130,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":4865,"damageMultiplier":1.35},{"id":"spell-26662","name":"Berserk","spellId":26662,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4865,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27407-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.126,"labelHeight":13.8906,"markerRadius":3.7487}}},"entry-29310":{"id":"entry-29310","kind":"boss","name":"Jedoga Shadowseeker","title":"Dungeon Boss","hasLoot":true,"combat":{"level":75,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-56102","name":"Sphere Visual","spellId":56102,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4800,"damageMultiplier":1.35},{"id":"spell-60425","name":"Hover Fall","spellId":60425,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4800,"damageMultiplier":1.35},{"id":"spell-56219","name":"Gift of the Herald","spellId":56219,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4800,"damageMultiplier":1.35},{"id":"spell-56327","name":"Random Lightning Visual","spellId":56327,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4800,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-26777-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0113,"labelHeight":4.0985,"markerRadius":0.7038}}},"entry-30338":{"id":"entry-30338","kind":"mob","name":"Ahn'kahar Swarmer","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2308,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-28078-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0224,"labelHeight":1.6082,"markerRadius":0.7174}}},"entry-30111":{"id":"entry-30111","kind":"mob","name":"Twilight Worshipper","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0587,"labelHeight":2.9703,"markerRadius":0.7397}}},"entry-30416":{"id":"entry-30416","kind":"mob","name":"Bound Fire Elemental","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/39572de3191c78a4573a438b4f299709d7ff1606c17e59844c7165b245fc5993.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.9348,"markerRadius":0.878}}},"entry-30418":{"id":"entry-30418","kind":"mob","name":"Bound Air Elemental","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-8714-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.7231,"markerRadius":1.1524}}},"entry-30419":{"id":"entry-30419","kind":"mob","name":"Bound Water Elemental","combat":{"level":74,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-525-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.8918,"markerRadius":1.1315}}},"entry-30179":{"id":"entry-30179","kind":"mob","name":"Twilight Apostle","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27369-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0074,"labelHeight":3.2035,"markerRadius":0.742}}},"entry-29311":{"id":"entry-29311","kind":"boss","name":"Herald Volazj","title":"Dungeon Boss","hasLoot":true,"combat":{"level":75,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2400,"damageMultiplier":1},{"id":"spell-57496","name":"Insanity","spellId":57496,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4006,"damageMultiplier":1.35},{"id":"spell-57941","name":"Mind Flay","spellId":57941,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4006,"damageMultiplier":1.35},{"id":"spell-57942","name":"Shadow Bolt Volley","spellId":57942,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4006,"damageMultiplier":0.82,"radius":11},{"id":"spell-57949","name":"Shiver","spellId":57949,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4006,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-27408-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.2792,"labelHeight":21.0102,"markerRadius":4.5}}},"entry-30414":{"id":"entry-30414","kind":"mob","name":"Forgotten One","combat":{"level":75,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-28007-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.4797,"labelHeight":7.8788,"markerRadius":2.4297}}},"entry-30258":{"id":"entry-30258","kind":"boss","name":"Amanitar","title":"Dungeon Boss","hasLoot":true,"combat":{"level":81,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-57095","name":"Entangling Roots","spellId":57095,"delivery":"projectile","target":"random-party","school":"nature","animation":"cast","range":28,"cooldownMs":7333,"damageMultiplier":0,"effect":{"kind":"control","mechanic":"root","durationMs":4500}},{"id":"spell-57094","name":"Bash","spellId":57094,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":7333,"damageMultiplier":1.35},{"id":"spell-57088","name":"Venom Bolt Volley","spellId":57088,"delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":7333,"damageMultiplier":0.82,"radius":11},{"id":"spell-57055","name":"Mini","spellId":57055,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":7333,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/ahnkahet-old-kingdom/creatures/display-28133-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":13.3981,"markerRadius":4.111}}}},"staticSpawns":[{"id":"creature-68283","entityId":"entry-31104","position":[-540.2772,-369.6206,1234.5347],"yaw":-5.21853,"spawnMask":2},{"id":"creature-68284","entityId":"entry-31104","position":[-550.2172,-369.722,1240.4137],"yaw":-1.97222,"spawnMask":2},{"id":"creature-131864","entityId":"entry-30276","position":[-471.3652,-377.0344,1457.1787],"yaw":-1.15192,"spawnMask":3},{"id":"creature-131865","entityId":"entry-30276","position":[-512.0822,-361.9935,1329.7547],"yaw":-3.65762,"spawnMask":3},{"id":"creature-131866","entityId":"entry-30276","position":[-394.2792,-377.2805,1332.3837],"yaw":-1.76278,"spawnMask":3},{"id":"creature-131867","entityId":"entry-30276","position":[-484.3722,-362.0351,1334.9827],"yaw":-3.735,"spawnMask":3},{"id":"creature-131869","entityId":"entry-30276","position":[-491.6012,-377.0315,1428.4247],"yaw":-3.9619,"spawnMask":3},{"id":"creature-131870","entityId":"entry-30276","position":[-497.9552,-376.9899,1443.2357],"yaw":-1.40486,"spawnMask":3},{"id":"creature-131871","entityId":"entry-30276","position":[-424.4592,-377.0315,1395.1657],"yaw":-3.36848,"spawnMask":3},{"id":"creature-131872","entityId":"entry-30276","position":[-523.6072,-362.0337,1348.9747],"yaw":-4.95674,"spawnMask":3},{"id":"creature-131873","entityId":"entry-30277","position":[-389.7822,-377.2805,1341.5177],"yaw":-1.88496,"spawnMask":3},{"id":"creature-131874","entityId":"entry-30277","position":[-483.8132,-362.0351,1327.7477],"yaw":-5.37561,"spawnMask":3},{"id":"creature-131875","entityId":"entry-30277","position":[-399.9932,-377.3639,1345.7037],"yaw":-1.70515,"spawnMask":3},{"id":"creature-131876","entityId":"entry-30277","position":[-502.2372,-377.0315,1422.5067],"yaw":-1.0472,"spawnMask":3},{"id":"creature-131877","entityId":"entry-30277","position":[-494.5192,-377.0315,1421.0557],"yaw":-5.75959,"spawnMask":3},{"id":"creature-131878","entityId":"entry-30277","position":[-429.7582,-376.6988,1388.2127],"yaw":-1.53589,"spawnMask":3},{"id":"creature-131879","entityId":"entry-30277","position":[-530.4872,-362.0351,1344.8917],"yaw":-0.139626,"spawnMask":3},{"id":"creature-131880","entityId":"entry-30278","position":[-464.2512,-376.994,1454.6637],"yaw":-5.72468,"spawnMask":3},{"id":"creature-131881","entityId":"entry-30278","position":[-518.2372,-362.0395,1333.2437],"yaw":-3.65757,"spawnMask":3},{"id":"creature-131882","entityId":"entry-30278","position":[-380.9452,-377.2805,1359.7777],"yaw":-2.05949,"spawnMask":3},{"id":"creature-131883","entityId":"entry-30278","position":[-491.3452,-362.0351,1334.8877],"yaw":-2.40855,"spawnMask":3},{"id":"creature-131884","entityId":"entry-30278","position":[-404.9352,-377.3639,1342.4587],"yaw":-2.73411,"spawnMask":3},{"id":"creature-131885","entityId":"entry-30278","position":[-499.1872,-377.0315,1430.1207],"yaw":-2.44346,"spawnMask":3},{"id":"creature-131886","entityId":"entry-30278","position":[-496.5532,-376.9899,1434.8667],"yaw":-1.40484,"spawnMask":3},{"id":"creature-131887","entityId":"entry-30278","position":[-425.3122,-377.5241,1382.2717],"yaw":-6.16101,"spawnMask":3},{"id":"creature-131888","entityId":"entry-30278","position":[-527.5772,-362.035,1355.8627],"yaw":-3.40339,"spawnMask":3},{"id":"creature-131889","entityId":"entry-30279","position":[-488.1902,-369.634,1281.0257],"yaw":-6.27441,"spawnMask":3},{"id":"creature-131890","entityId":"entry-30279","position":[-485.9672,-369.6714,1273.0407],"yaw":-5.93887,"spawnMask":3},{"id":"creature-131891","entityId":"entry-30279","position":[-489.9052,-369.6714,1275.3517],"yaw":-0.522217,"spawnMask":3},{"id":"creature-131892","entityId":"entry-30279","position":[-490.9182,-362.0351,1327.2937],"yaw":-0.820305,"spawnMask":3},{"id":"creature-131895","entityId":"entry-30279","position":[-559.7072,-369.691,1287.8227],"yaw":-0.039618,"spawnMask":3},{"id":"creature-131896","entityId":"entry-30279","position":[-550.7172,-369.691,1290.5617],"yaw":-1.62753,"spawnMask":3},{"id":"creature-131897","entityId":"entry-30279","position":[-548.0972,-369.5789,1284.0277],"yaw":-6.15522,"spawnMask":3},{"id":"creature-131898","entityId":"entry-30279","position":[-421.7612,-377.3526,1389.5717],"yaw":-4.43314,"spawnMask":3},{"id":"creature-131899","entityId":"entry-30279","position":[-533.9772,-362.0261,1351.5537],"yaw":-1.91986,"spawnMask":3},{"id":"creature-131900","entityId":"entry-30283","position":[-464.7722,-377.0316,1464.3047],"yaw":-3.56047,"spawnMask":3},{"id":"creature-131902","entityId":"entry-30283","position":[-385.0252,-377.2805,1350.5777],"yaw":-2.07694,"spawnMask":3},{"id":"creature-131906","entityId":"entry-30285","position":[-328.9272,-403.2033,1336.9967],"yaw":-3.88969,"spawnMask":3},{"id":"creature-131907","entityId":"entry-30285","position":[-241.6102,-381.9943,1436.6097],"yaw":-4.86947,"spawnMask":3},{"id":"creature-131908","entityId":"entry-30285","position":[-230.2882,-381.9943,1435.0357],"yaw":-1.8326,"spawnMask":3},{"id":"creature-131909","entityId":"entry-30285","position":[-301.7702,-381.9943,1476.2107],"yaw":-5.63741,"spawnMask":3},{"id":"creature-131910","entityId":"entry-30285","position":[-294.7032,-382.3123,1467.7967],"yaw":-2.32129,"spawnMask":3},{"id":"creature-131911","entityId":"entry-30285","position":[-361.7942,-403.224,1390.6617],"yaw":-4.12535,"spawnMask":3},{"id":"creature-131912","entityId":"entry-30285","position":[-359.0712,-403.224,1384.6547],"yaw":-1.04962,"spawnMask":3},{"id":"creature-131913","entityId":"entry-30286","position":[-319.7932,-403.2033,1345.2917],"yaw":-1.92166,"spawnMask":3},{"id":"creature-131914","entityId":"entry-30286","position":[-332.9942,-403.2033,1342.1947],"yaw":-2.65936,"spawnMask":3},{"id":"creature-131915","entityId":"entry-30286","position":[-235.0632,-382.3123,1428.9157],"yaw":-3.14159,"spawnMask":3},{"id":"creature-131916","entityId":"entry-30286","position":[-234.0182,-381.9943,1439.9487],"yaw":-0.174533,"spawnMask":3},{"id":"creature-131917","entityId":"entry-30286","position":[-295.9202,-381.9943,1475.1167],"yaw":-1.11701,"spawnMask":3},{"id":"creature-131918","entityId":"entry-30286","position":[-304.3512,-381.9943,1467.9277],"yaw":-3.9619,"spawnMask":3},{"id":"creature-131919","entityId":"entry-30286","position":[-367.2372,-403.2045,1390.6507],"yaw":-4.14862,"spawnMask":3},{"id":"creature-131921","entityId":"entry-30287","position":[-308.4392,-403.2033,1364.0037],"yaw":-0.550063,"spawnMask":3},{"id":"creature-131922","entityId":"entry-30287","position":[-312.2462,-403.2033,1361.3037],"yaw":-0.648112,"spawnMask":3},{"id":"creature-131923","entityId":"entry-30287","position":[-314.2702,-403.2033,1366.3917],"yaw":-3.45597,"spawnMask":3},{"id":"creature-131924","entityId":"entry-30287","position":[-313.1052,-403.2033,1370.9477],"yaw":-3.52964,"spawnMask":3},{"id":"creature-131925","entityId":"entry-30287","position":[-327.8772,-403.2767,1401.5967],"yaw":-4.87983,"spawnMask":3},{"id":"creature-131927","entityId":"entry-30287","position":[-327.2922,-403.2767,1397.6397],"yaw":-3.25287,"spawnMask":3},{"id":"creature-131928","entityId":"entry-30287","position":[-331.4602,-403.2767,1399.8177],"yaw":-1.40835,"spawnMask":3},{"id":"creature-131929","entityId":"entry-30287","position":[-330.6762,-403.1517,1404.4537],"yaw":-1.38004,"spawnMask":3},{"id":"creature-131932","entityId":"entry-30287","position":[-357.7502,-403.2722,1421.9057],"yaw":-3.96356,"spawnMask":3},{"id":"creature-131933","entityId":"entry-30287","position":[-350.5972,-403.3273,1423.6427],"yaw":-3.33469,"spawnMask":3},{"id":"creature-131934","entityId":"entry-30287","position":[-354.5782,-403.2985,1422.2637],"yaw":-3.47214,"spawnMask":3},{"id":"creature-131935","entityId":"entry-30287","position":[-356.2522,-403.2671,1420.7387],"yaw":-3.92149,"spawnMask":3},{"id":"creature-131939","entityId":"entry-30319","position":[-308.9032,-431.6473,1234.6627],"yaw":-4.05385,"spawnMask":3},{"id":"creature-131940","entityId":"entry-30319","position":[-264.7992,-431.643,1251.0517],"yaw":-2.16421,"spawnMask":3},{"id":"creature-131942","entityId":"entry-30319","position":[-313.3702,-431.643,1193.2807],"yaw":-5.63741,"spawnMask":3},{"id":"creature-131943","entityId":"entry-30319","position":[-277.9532,-431.6202,1242.2587],"yaw":-4.69494,"spawnMask":3},{"id":"creature-131944","entityId":"entry-30319","position":[-277.4622,-431.6311,1283.8567],"yaw":-5.32325,"spawnMask":3},{"id":"creature-131945","entityId":"entry-30329","position":[-472.5452,-479.2905,1179.1847],"yaw":-4.97399,"spawnMask":3},{"id":"creature-131946","entityId":"entry-30329","position":[-450.7672,-482.5668,1136.1677],"yaw":-4.11964,"spawnMask":3},{"id":"creature-131948","entityId":"entry-30329","position":[-362.2352,-472.5768,1150.7537],"yaw":-4.05836,"spawnMask":3},{"id":"creature-131949","entityId":"entry-30329","position":[-337.5262,-472.0344,1118.5917],"yaw":-5.9517,"spawnMask":3},{"id":"creature-131951","entityId":"entry-29308","position":[-361.2852,-358.0207,1309.1157],"yaw":-0.680678,"spawnMask":3},{"id":"creature-131952","entityId":"entry-29309","position":[-420.7542,-374.358,1460.2737],"yaw":-3.66519,"spawnMask":3},{"id":"creature-131953","entityId":"entry-29310","position":[-220.5652,-400.68,1152.7127],"yaw":-5.42797,"spawnMask":3},{"id":"creature-131954","entityId":"entry-30338","position":[-559.4372,-376.9263,1407.7647],"yaw":-0.692266,"spawnMask":3},{"id":"creature-131955","entityId":"entry-30338","position":[-553.5672,-377.0513,1402.7677],"yaw":-2.35097,"spawnMask":3},{"id":"creature-131956","entityId":"entry-30338","position":[-550.5872,-377.0361,1415.9287],"yaw":-2.62105,"spawnMask":3},{"id":"creature-131957","entityId":"entry-30338","position":[-551.1872,-377.0513,1407.9817],"yaw":-4.24176,"spawnMask":3},{"id":"creature-131958","entityId":"entry-30338","position":[-508.6442,-364.7491,1498.2407],"yaw":-2.37961,"spawnMask":3},{"id":"creature-131959","entityId":"entry-30338","position":[-508.2462,-364.9467,1491.6257],"yaw":-5.96783,"spawnMask":3},{"id":"creature-131960","entityId":"entry-30338","position":[-503.0582,-364.9467,1504.2797],"yaw":-5.72801,"spawnMask":3},{"id":"creature-131961","entityId":"entry-30338","position":[-505.0632,-364.7491,1495.0187],"yaw":-4.56924,"spawnMask":3},{"id":"creature-131962","entityId":"entry-30338","position":[-502.3972,-364.9072,1498.2317],"yaw":-0.268717,"spawnMask":3},{"id":"creature-131963","entityId":"entry-30338","position":[-506.2572,-364.6248,1508.8607],"yaw":-0.322014,"spawnMask":3},{"id":"creature-131964","entityId":"entry-30338","position":[-499.5392,-364.8109,1500.8937],"yaw":-0.068019,"spawnMask":3},{"id":"creature-131965","entityId":"entry-30338","position":[-509.1842,-364.9467,1493.7667],"yaw":-2.97026,"spawnMask":3},{"id":"creature-131966","entityId":"entry-30338","position":[-559.7272,-362.0966,1342.8107],"yaw":-4.8398,"spawnMask":3},{"id":"creature-131967","entityId":"entry-30338","position":[-558.6272,-362.0535,1352.5787],"yaw":-1.91378,"spawnMask":3},{"id":"creature-131968","entityId":"entry-30338","position":[-558.0572,-362.0966,1335.6637],"yaw":-4.55633,"spawnMask":3},{"id":"creature-131969","entityId":"entry-30338","position":[-554.1672,-362.0535,1354.9197],"yaw":-3.55818,"spawnMask":3},{"id":"creature-131970","entityId":"entry-30338","position":[-554.4572,-362.0535,1347.7107],"yaw":-1.868,"spawnMask":3},{"id":"creature-131971","entityId":"entry-30338","position":[-550.9772,-362.0966,1343.9297],"yaw":-1.09807,"spawnMask":3},{"id":"creature-131972","entityId":"entry-30338","position":[-486.2352,-361.9912,1311.6957],"yaw":-5.55894,"spawnMask":3},{"id":"creature-131973","entityId":"entry-30338","position":[-482.8452,-361.9912,1304.0747],"yaw":-2.35176,"spawnMask":3},{"id":"creature-131974","entityId":"entry-30338","position":[-478.6802,-361.9982,1307.6737],"yaw":-4.66323,"spawnMask":3},{"id":"creature-131975","entityId":"entry-30338","position":[-474.4112,-361.8732,1306.4987],"yaw":-3.93673,"spawnMask":3},{"id":"creature-131976","entityId":"entry-30338","position":[-471.9372,-361.4982,1311.2027],"yaw":-3.01339,"spawnMask":3},{"id":"creature-131977","entityId":"entry-30338","position":[-480.2802,-361.9982,1311.5247],"yaw":-0.501859,"spawnMask":3},{"id":"creature-131978","entityId":"entry-30338","position":[-452.3222,-374.3512,1405.8057],"yaw":-3.52468,"spawnMask":3},{"id":"creature-131979","entityId":"entry-30338","position":[-453.8172,-374.3512,1402.0947],"yaw":-3.52468,"spawnMask":3},{"id":"creature-131980","entityId":"entry-30338","position":[-456.3122,-374.3512,1406.0807],"yaw":-3.5247,"spawnMask":3},{"id":"creature-131981","entityId":"entry-30338","position":[-453.2932,-374.3512,1409.6857],"yaw":-3.52476,"spawnMask":3},{"id":"creature-131982","entityId":"entry-30338","position":[-448.9322,-374.3512,1407.9277],"yaw":-3.52482,"spawnMask":3},{"id":"creature-131983","entityId":"entry-30338","position":[-449.2562,-374.3512,1403.2367],"yaw":-3.52476,"spawnMask":3},{"id":"creature-131984","entityId":"entry-30338","position":[-477.6672,-361.9899,1358.2067],"yaw":-3.4076,"spawnMask":3},{"id":"creature-131985","entityId":"entry-30338","position":[-471.7692,-361.8649,1361.6607],"yaw":-1.69402,"spawnMask":3},{"id":"creature-131986","entityId":"entry-30338","position":[-468.4712,-362.1149,1357.9787],"yaw":-3.92597,"spawnMask":3},{"id":"creature-131987","entityId":"entry-30338","position":[-470.9572,-362.1149,1357.5227],"yaw":-0.388135,"spawnMask":3},{"id":"creature-131988","entityId":"entry-30338","position":[-489.4022,-362.0663,1353.6157],"yaw":-3.2505,"spawnMask":3},{"id":"creature-131989","entityId":"entry-30338","position":[-483.1372,-362.0663,1353.3437],"yaw":-2.96054,"spawnMask":3},{"id":"creature-131990","entityId":"entry-30111","position":[-253.8132,-431.643,1246.2667],"yaw":-5.23599,"spawnMask":3},{"id":"creature-131991","entityId":"entry-30111","position":[-258.9252,-431.643,1243.1257],"yaw":-0.087266,"spawnMask":3},{"id":"creature-131993","entityId":"entry-30111","position":[-320.2992,-431.643,1201.6447],"yaw":-2.40855,"spawnMask":3},{"id":"creature-131994","entityId":"entry-30111","position":[-313.9592,-431.643,1200.8217],"yaw":-3.90954,"spawnMask":3},{"id":"creature-131995","entityId":"entry-30111","position":[-284.2902,-431.625,1241.1397],"yaw":-1.36136,"spawnMask":3},{"id":"creature-131996","entityId":"entry-30111","position":[-278.8272,-431.6272,1289.5897],"yaw":-4.03171,"spawnMask":3},{"id":"creature-132014","entityId":"entry-30416","position":[-237.1002,-431.643,1231.6567],"yaw":-2.61799,"spawnMask":3},{"id":"creature-132015","entityId":"entry-30416","position":[-297.3332,-431.643,1188.3217],"yaw":-2.51327,"spawnMask":3},{"id":"creature-132019","entityId":"entry-30418","position":[-241.7062,-431.643,1224.6857],"yaw":-2.30383,"spawnMask":3},{"id":"creature-132020","entityId":"entry-30418","position":[-291.3212,-431.643,1191.0097],"yaw":-3.19395,"spawnMask":3},{"id":"creature-132024","entityId":"entry-30419","position":[-229.0142,-431.643,1234.5837],"yaw":-2.93215,"spawnMask":3},{"id":"creature-132025","entityId":"entry-30419","position":[-300.7282,-431.643,1181.8607],"yaw":-1.53589,"spawnMask":3},{"id":"creature-132053","entityId":"entry-30179","position":[-256.6182,-431.643,1253.6297],"yaw":-3.63029,"spawnMask":3},{"id":"creature-132054","entityId":"entry-30179","position":[-232.8162,-427.7991,1225.9267],"yaw":-5.44543,"spawnMask":3},{"id":"creature-132056","entityId":"entry-30179","position":[-320.6372,-431.643,1195.1297],"yaw":-0.959931,"spawnMask":3},{"id":"creature-132057","entityId":"entry-30179","position":[-281.0732,-431.643,1245.7987],"yaw":-3.00197,"spawnMask":3},{"id":"creature-132058","entityId":"entry-30179","position":[-292.8932,-428.9489,1182.6857],"yaw":-5.58505,"spawnMask":3},{"id":"creature-132059","entityId":"entry-30179","position":[-266.0442,-431.6013,1291.0867],"yaw":-0.645683,"spawnMask":3},{"id":"creature-132060","entityId":"entry-30179","position":[-285.2322,-431.6272,1282.0537],"yaw":-0.575959,"spawnMask":3},{"id":"creature-132298","entityId":"entry-29311","position":[42.8998,-373.6164,1300.2947],"yaw":-4.72984,"spawnMask":3},{"id":"creature-132299","entityId":"entry-30414","position":[-67.3902,-373.3332,1304.4207],"yaw":-4.69494,"spawnMask":3},{"id":"creature-202410","entityId":"entry-30258","position":[-393.8792,-474.9196,1120.5547],"yaw":-0.331613,"spawnMask":2}],"roamingPacks":[{"id":"patrol-131868","name":"Ahn'kahar Web Winder Patrol","speed":1.15,"pathId":1318680,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-399.4722,-377.3638,1347.3447],[-390.7682,-377.3638,1364.7637],[-408.0682,-377.6074,1377.0227],[-389.8322,-377.6074,1411.1007],[-418.8522,-377.6073,1352.6277],[-389.8322,-377.6074,1411.1007],[-408.0682,-377.6074,1377.0227],[-390.7682,-377.3638,1364.7637]],"members":[{"id":"member","entityId":"entry-30276","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131893","name":"Deep Crawler Patrol","speed":1.15,"pathId":1318930,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-488.5242,-369.7039,1265.5927],[-486.0392,-369.7039,1267.3967],[-512.6582,-369.7039,1260.8627],[-537.4072,-369.7039,1263.3307],[-556.2072,-369.633,1278.8027],[-557.4472,-369.6577,1279.3437],[-556.2072,-369.633,1278.8027],[-537.4072,-369.7039,1263.3307],[-512.6582,-369.7039,1260.8627]],"members":[{"id":"member","entityId":"entry-30279","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131894","name":"Deep Crawler Patrol","speed":1.15,"pathId":1318940,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-510.9082,-369.3834,1265.7337],[-504.2692,-369.7039,1266.3297],[-500.4582,-369.7037,1277.2187],[-498.5142,-369.5876,1281.1967],[-500.4582,-369.7037,1277.2187],[-504.2692,-369.7039,1266.3297],[-510.9082,-369.3834,1265.7337],[-527.6272,-369.7036,1269.4967],[-545.2172,-369.7038,1271.7027],[-558.1572,-369.5596,1271.8607],[-561.2672,-369.2639,1272.1507],[-545.2172,-369.7038,1271.7027],[-527.6272,-369.7036,1269.4967]],"members":[{"id":"member","entityId":"entry-30279","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131901","name":"Plague Walker Patrol","speed":1.15,"pathId":1319010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-517.9272,-362.1173,1329.2887],[-525.1072,-362.4967,1288.7947],[-517.9272,-362.1173,1329.2887],[-548.7172,-362.1173,1338.8847],[-517.9272,-362.1173,1329.2887],[-498.5092,-362.1184,1346.4637],[-474.6372,-362.1184,1344.9837],[-498.5092,-362.1184,1346.4637]],"members":[{"id":"member","entityId":"entry-30283","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131903","name":"Plague Walker Patrol","speed":1.15,"pathId":1319030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-491.3512,-377.1148,1441.6407],[-481.3512,-377.1148,1446.2997],[-491.3512,-377.1148,1441.6407],[-504.1422,-377.1148,1439.8217],[-515.1602,-377.1148,1435.2917],[-521.4572,-377.1148,1425.2337],[-514.0902,-377.1148,1405.7227],[-521.4572,-377.1148,1425.2337],[-515.1602,-377.1148,1435.2917],[-504.1422,-377.1148,1439.8217]],"members":[{"id":"member","entityId":"entry-30283","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131904","name":"Bonegrinder Patrol","speed":1.15,"pathId":1319040,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-335.4662,-403.3283,1374.0707],[-310.9372,-403.326,1386.6917],[-295.6292,-402.7618,1392.6097],[-310.9372,-403.326,1386.6917]],"members":[{"id":"member","entityId":"entry-30284","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131905","name":"Bonegrinder Patrol","speed":1.15,"pathId":1319050,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-291.8802,-403.3283,1366.7437],[-291.8342,-403.1489,1331.7387],[-318.1802,-395.7016,1313.8517],[-291.8342,-403.1489,1331.7387]],"members":[{"id":"member","entityId":"entry-30284","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131920","name":"Plundering Geist Patrol","speed":1.15,"pathId":1319200,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-313.0552,-403.3278,1356.5597],[-308.9062,-403.3278,1373.6077],[-282.6762,-402.2245,1398.3167],[-249.8712,-382.0849,1424.3817],[-243.3852,-382.1551,1429.4057],[-249.8712,-382.0849,1424.3817],[-282.6762,-402.2245,1398.3167],[-308.9062,-403.3278,1373.6077]],"members":[{"id":"member","entityId":"entry-30287","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131926","name":"Plundering Geist Patrol","speed":1.15,"pathId":1319260,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-332.8652,-403.1842,1401.0657],[-316.3192,-402.8453,1399.6447],[-305.3172,-402.2166,1407.1347],[-300.4802,-381.9069,1453.6887],[-299.4942,-382.1408,1465.9977],[-300.4802,-381.9069,1453.6887],[-305.3172,-402.2166,1407.1347],[-316.3192,-402.8453,1399.6447]],"members":[{"id":"member","entityId":"entry-30287","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131931","name":"Plundering Geist Patrol","speed":1.15,"pathId":1319310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-352.6662,-403.2985,1416.1637],[-349.5952,-403.2985,1396.1227],[-350.9162,-403.3282,1384.1487],[-352.6662,-403.2985,1416.1637],[-343.9062,-403.33,1444.7177],[-365.1462,-389.9253,1454.7307],[-382.5722,-390.6238,1460.8037],[-365.1462,-389.9253,1454.7307],[-343.9062,-403.33,1444.7177]],"members":[{"id":"member","entityId":"entry-30287","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131947","name":"Savage Cave Beast Patrol","speed":1.15,"pathId":1319470,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-392.2342,-468.3252,1202.1697],[-392.5292,-472.1897,1191.6187],[-392.2342,-468.3252,1202.1697],[-395.3972,-464.054,1215.5387],[-398.4282,-461.2123,1224.2577],[-397.9202,-455.7443,1237.0947],[-398.4282,-461.2123,1224.2577],[-395.3972,-464.054,1215.5387]],"members":[{"id":"member","entityId":"entry-30329","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-131950","name":"Savage Cave Beast Patrol","speed":1.15,"pathId":1319500,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-397.0372,-456.5097,1235.3587],[-394.5952,-450.8861,1246.7457],[-384.3622,-444.7946,1251.4567],[-377.6802,-440.4211,1250.5777],[-366.2002,-435.4577,1249.2107],[-359.3732,-433.1302,1246.0327],[-366.2002,-435.4577,1249.2107],[-377.6802,-440.4211,1250.5777],[-384.3622,-444.7946,1251.4567],[-394.5952,-450.8861,1246.7457]],"members":[{"id":"member","entityId":"entry-30329","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132052","name":"Twilight Apostle Patrol","speed":1.15,"pathId":1320520,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-307.4102,-431.7262,1231.9597],[-326.6072,-431.7262,1225.5907],[-307.4102,-431.7262,1231.9597],[-284.2342,-431.7262,1254.4647],[-259.9572,-431.7262,1280.3847],[-284.2342,-431.7262,1254.4647]],"members":[{"id":"member","entityId":"entry-30179","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132300","name":"Forgotten One Patrol","speed":1.15,"pathId":1323000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-55.6962,-373.6998,1304.2837],[-18.6812,-373.6998,1337.9567],[-55.6962,-373.6998,1304.2837]],"members":[{"id":"member","entityId":"entry-30414","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-132301","name":"Forgotten One Patrol","speed":1.15,"pathId":1323010,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-17.2802,-373.6998,1263.4827],[-55.6332,-373.6998,1303.5427],[-17.2802,-373.6998,1263.4827]],"members":[{"id":"member","entityId":"entry-30414","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-131952","name":"Elder Nadox","position":[-420.7542,-374.358,1460.2737]},{"id":"creature-131951","name":"Prince Taldaram","position":[-361.2852,-358.0207,1309.1157]},{"id":"creature-131953","name":"Jedoga Shadowseeker","position":[-220.5652,-400.68,1152.7127]},{"id":"creature-132298","name":"Herald Volazj","position":[42.8998,-373.6164,1300.2947]},{"id":"creature-202410","name":"Amanitar","position":[-393.8792,-474.9196,1120.5547]}],"objectiveOrder":[{"id":"creature-131952","name":"Elder Nadox","position":[-420.7542,-374.358,1460.2737]},{"id":"creature-131951","name":"Prince Taldaram","position":[-361.2852,-358.0207,1309.1157]},{"id":"creature-131953","name":"Jedoga Shadowseeker","position":[-220.5652,-400.68,1152.7127]},{"id":"creature-132298","name":"Herald Volazj","position":[42.8998,-373.6164,1300.2947]},{"id":"creature-202410","name":"Amanitar","position":[-393.8792,-474.9196,1120.5547]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":6100,"id":191849,"map":619,"orientation":-1.5708,"phaseMask":1,"position_x":523.512,"position_y":-301.122,"position_z":68.8495,"rotation0":-0.00462866,"rotation1":0.00318146,"rotation2":-0.7086,"rotation3":0.705588,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":255,"areaId":0,"guid":6101,"id":191848,"map":619,"orientation":-1.57504,"phaseMask":1,"position_x":523.432,"position_y":-300.711,"position_z":68.8281,"rotation0":0,"rotation1":0,"rotation2":-0.708606,"rotation3":0.705605,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67328,"id":189973,"map":619,"orientation":1.95477,"phaseMask":1,"position_x":322.109,"position_y":-838.387,"position_z":-72.1601,"rotation0":0,"rotation1":0,"rotation2":0.829038,"rotation3":0.559192,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67329,"id":189973,"map":619,"orientation":1.06465,"phaseMask":1,"position_x":411.429,"position_y":-1000.11,"position_z":-72.6222,"rotation0":0,"rotation1":0,"rotation2":0.507538,"rotation3":0.861629,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67330,"id":193564,"map":619,"orientation":3.14159,"phaseMask":1,"position_x":528.005,"position_y":-846.296,"position_z":11.2026,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67331,"id":193093,"map":619,"orientation":3.14159,"phaseMask":1,"position_x":655.729,"position_y":-719.049,"position_z":18.0264,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67332,"id":193094,"map":619,"orientation":3.14159,"phaseMask":1,"position_x":692.465,"position_y":-783.911,"position_z":18.0264,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67333,"id":191846,"map":619,"orientation":0.606614,"phaseMask":1,"position_x":333.535,"position_y":-1109.94,"position_z":70.2691,"rotation0":0,"rotation1":0,"rotation2":0.298678,"rotation3":0.954354,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67334,"id":191847,"map":619,"orientation":0.610865,"phaseMask":1,"position_x":333.825,"position_y":-1109.64,"position_z":70.2906,"rotation0":0,"rotation1":0,"rotation2":0.300706,"rotation3":0.953717,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67335,"id":190169,"map":619,"orientation":0.244346,"phaseMask":1,"position_x":372.688,"position_y":-908.087,"position_z":-82.0696,"rotation0":0,"rotation1":0,"rotation2":0.121869,"rotation3":0.992546,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67336,"id":190170,"map":619,"orientation":-1.97222,"phaseMask":1,"position_x":602.793,"position_y":-918.579,"position_z":22.5588,"rotation0":0,"rotation1":0,"rotation2":-0.833885,"rotation3":0.551938,"spawnMask":3,"spawntimesecs":3600,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":67337,"id":192236,"map":619,"orientation":1.98857,"phaseMask":1,"position_x":550.141,"position_y":-865.111,"position_z":11.6117,"rotation0":0,"rotation1":0,"rotation2":0.838369,"rotation3":0.545102,"spawnMask":3,"spawntimesecs":180,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":46158,"animprogress":255,"areaId":0,"guid":67448,"id":193057,"map":619,"orientation":4.72984,"phaseMask":1,"position_x":520.858,"position_y":-353.019,"position_z":45.3949,"rotation0":0,"rotation1":0,"rotation2":-0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/ahnkahet-old-kingdom/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["24/24 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"forge-of-souls","title":"The Forge of Souls","mapId":632,"lfgDungeonIds":[251,252],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[80,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"The Forge of Souls","theme":"Open-world expedition","summary":"Fight through The Forge of Souls, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing The Forge of Souls...","unchartedAreaName":"Uncharted The Forge of Souls","background":"#081016","fog":{"color":"#0a141c","near":36,"far":613.368},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/632-icecrowncitadel5man/visual.glb","checksum":"dab0c012d306096394482daeae857f55bf5fd7d1a673fa2ce46341ee32f82601","size":2607972,"triangleCount":74047}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/632-icecrowncitadel5man/collision.glb","checksum":"e6e50ffb3222fd8cf27456844bdd7d8c4e249454241c8003dede7c82218897ef","size":1032616,"triangleCount":74047}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/632-icecrowncitadel5man/navigation.glb","checksum":"93034b579c111f17356554bb4e37fa56dccbb89523c3a88a143797cc2fcc82de","size":358564,"triangleCount":26452}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[2105.3915,499.3837,4926.2727],"max":[2650.9315,673.6117,5778.1727]},"entrance":{"name":"The Forge of Souls Entrance","footPosition":[2205.7715,583.4337,4994.2827],"forward":[0.5129152906235155,0,0.8584392259470641],"yaw":0.5385773943859671},"areas":[{"id":"entrance","name":"The Forge of Souls Entrance","center":[2205.7715,583.4337,4994.2827],"radius":35},{"id":"area-bronjahm","name":"Bronjahm's Encounter","center":[2536.6015,630.8507,5368.7327],"radius":42},{"id":"area-devourer-of-souls","name":"Devourer of Souls's Encounter","center":[2537.5315,653.6117,5733.1727],"radius":42}],"entities":{"entry-36499":{"id":"entry-36499","kind":"mob","name":"Soulguard Reaper","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30152-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0018,"labelHeight":3.4175,"markerRadius":0.65}}},"entry-36478":{"id":"entry-36478","kind":"mob","name":"Soulguard Watchman","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30269-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1084,"labelHeight":7.7862,"markerRadius":1.5558}}},"entry-36564":{"id":"entry-36564","kind":"mob","name":"Soulguard Bonecaster","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30270-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0045,"labelHeight":3.834,"markerRadius":0.7636}}},"entry-36666":{"id":"entry-36666","kind":"mob","name":"Spectral Warden","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30283-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.8292,"labelHeight":8.5367,"markerRadius":3.1754}}},"entry-36516":{"id":"entry-36516","kind":"mob","name":"Soulguard Animator","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30168-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0103,"labelHeight":3.7259,"markerRadius":0.65}}},"entry-36522":{"id":"entry-36522","kind":"mob","name":"Soul Horror","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-22701-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":4.7608,"markerRadius":0.9638}}},"entry-36620":{"id":"entry-36620","kind":"mob","name":"Soulguard Adept","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30240-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0021,"labelHeight":3.8506,"markerRadius":0.65}}},"entry-36497":{"id":"entry-36497","kind":"boss","name":"Bronjahm","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-70043","name":"Shadow Bolt","spellId":70043,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-68950","name":"Fear","spellId":68950,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":8000,"damageMultiplier":0,"radius":11,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}},{"id":"spell-68793","name":"Magic's Bane","spellId":68793,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-68839","name":"Corrupt Soul","spellId":68839,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30226-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.001,"labelHeight":3.5751,"markerRadius":0.7474}}},"entry-36551":{"id":"entry-36551","kind":"mob","name":"Spiteful Apparition","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-25942-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":null,"markerRadius":0.65}}},"entry-36502":{"id":"entry-36502","kind":"boss","name":"Devourer of Souls","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-68982","name":"Phantom Blast","spellId":68982,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-68899","name":"Wailing Souls","spellId":68899,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-69051","name":"Mirrored Soul","spellId":69051,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":9000,"damageMultiplier":1.35},{"id":"spell-68820","name":"Well of Souls","spellId":68820,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30148-animated.glb","rotationY":-1.5707963267948966,"groundOffset":6.8095,"labelHeight":34.1892,"markerRadius":4.0537}}},"entry-37583":{"id":"entry-37583","kind":"mob","name":"Dark Ranger Kalira","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/forge-of-souls/creatures/display-30686-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6894,"markerRadius":0.65}}},"entry-37779":{"id":"entry-37779","kind":"mob","name":"Dark Ranger Loralen","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/44ef1435e58e9a055208847ab1d1b47a8682800dabcece2619ff1ee417d7bf17.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6894,"markerRadius":0.65}}},"entry-37596":{"id":"entry-37596","kind":"mob","name":"Lady Sylvanas Windrunner","combat":{"level":83,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/2f647f35e19834a4011cce123d60bb361a8df5a9c24ed292fd7a1c56c0fad704.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.741,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-201676","entityId":"entry-36499","position":[2173.4615,594.2677,5120.8527],"yaw":-1.11701,"spawnMask":3},{"id":"creature-201677","entityId":"entry-36478","position":[2249.8515,583.5167,5020.2827],"yaw":-3.14159,"spawnMask":3},{"id":"creature-201678","entityId":"entry-36564","position":[2389.2215,612.9437,5253.2927],"yaw":-3.76991,"spawnMask":3},{"id":"creature-201686","entityId":"entry-36564","position":[2457.6915,616.4847,5312.3227],"yaw":-0.226893,"spawnMask":3},{"id":"creature-201688","entityId":"entry-36564","position":[2157.0115,596.9707,5251.3627],"yaw":-3.2287,"spawnMask":3},{"id":"creature-201693","entityId":"entry-36516","position":[2369.6215,612.9437,5236.0227],"yaw":-0.698132,"spawnMask":3},{"id":"creature-201695","entityId":"entry-36522","position":[2582.5215,620.0117,5328.2127],"yaw":-4.32842,"spawnMask":3},{"id":"creature-201697","entityId":"entry-36620","position":[2163.9115,597.0547,5229.7427],"yaw":0,"spawnMask":3},{"id":"creature-201698","entityId":"entry-36516","position":[2595.1115,620.0117,5315.7427],"yaw":-5.48033,"spawnMask":3},{"id":"creature-201699","entityId":"entry-36620","position":[2385.0915,612.9437,5233.9327],"yaw":-5.35816,"spawnMask":3},{"id":"creature-201705","entityId":"entry-36516","position":[2174.0715,597.0547,5246.4727],"yaw":-4.38078,"spawnMask":3},{"id":"creature-201707","entityId":"entry-36497","position":[2536.6015,630.8507,5368.7327],"yaw":-3.24631,"spawnMask":3},{"id":"creature-201711","entityId":"entry-36516","position":[2371.0215,612.9437,5256.7027],"yaw":-2.53073,"spawnMask":3},{"id":"creature-201714","entityId":"entry-36551","position":[2477.2815,643.4417,5486.2127],"yaw":-3.12365,"spawnMask":3},{"id":"creature-201719","entityId":"entry-36620","position":[2327.4415,610.2117,5208.2227],"yaw":-2.74017,"spawnMask":3},{"id":"creature-201725","entityId":"entry-36551","position":[2276.6315,583.5417,5027.3527],"yaw":-4.34893,"spawnMask":3},{"id":"creature-201726","entityId":"entry-36620","position":[2180.6515,589.5347,5106.0927],"yaw":-0.750492,"spawnMask":3},{"id":"creature-201732","entityId":"entry-36522","position":[2591.9915,620.0117,5393.2627],"yaw":-5.20108,"spawnMask":3},{"id":"creature-201733","entityId":"entry-36551","position":[2203.0515,597.2307,5289.5327],"yaw":-2.02187,"spawnMask":3},{"id":"creature-201734","entityId":"entry-36620","position":[2455.3215,616.4847,5293.5627],"yaw":-2.67035,"spawnMask":3},{"id":"creature-201735","entityId":"entry-36478","position":[2232.6415,600.3267,5279.3427],"yaw":-1.73264,"spawnMask":3},{"id":"creature-201736","entityId":"entry-36502","position":[2537.5315,653.6117,5733.1727],"yaw":-4.08407,"spawnMask":3},{"id":"creature-201742","entityId":"entry-36522","position":[2379.0615,612.9437,5245.8927],"yaw":-3.26377,"spawnMask":3},{"id":"creature-201748","entityId":"entry-36516","position":[2605.9315,620.0117,5400.3327],"yaw":-4.06662,"spawnMask":3},{"id":"creature-201749","entityId":"entry-36499","position":[2320.9715,610.2117,5206.2127],"yaw":-2.51327,"spawnMask":3},{"id":"creature-201751","entityId":"entry-36522","position":[2160.9015,596.9707,5239.2727],"yaw":-3.38266,"spawnMask":3},{"id":"creature-201753","entityId":"entry-36499","position":[2337.6515,611.0977,5201.7127],"yaw":-3.9968,"spawnMask":3},{"id":"creature-201757","entityId":"entry-36478","position":[2485.2515,631.0697,5416.4927],"yaw":-2.73418,"spawnMask":3},{"id":"creature-201758","entityId":"entry-36499","position":[2444.8715,616.4847,5308.1127],"yaw":-5.77704,"spawnMask":3},{"id":"creature-201762","entityId":"entry-36516","position":[2571.0315,620.0117,5338.0327],"yaw":-2.25148,"spawnMask":3},{"id":"creature-201763","entityId":"entry-36551","position":[2380.7415,612.8607,5192.0027],"yaw":-5.09885,"spawnMask":3},{"id":"creature-201764","entityId":"entry-36478","position":[2560.3115,621.3557,5320.6327],"yaw":-4.4926,"spawnMask":3},{"id":"creature-201766","entityId":"entry-36499","position":[2187.8815,585.8187,5095.8527],"yaw":-0.645772,"spawnMask":3},{"id":"creature-201776","entityId":"entry-36499","position":[2463.3415,616.4847,5302.9827],"yaw":-2.51327,"spawnMask":3},{"id":"creature-201786","entityId":"entry-36516","position":[2150.3915,597.0547,5236.5127],"yaw":-1.0472,"spawnMask":3},{"id":"creature-201790","entityId":"entry-36516","position":[2579.9815,620.0117,5388.3727],"yaw":-1.20428,"spawnMask":3},{"id":"creature-201791","entityId":"entry-36551","position":[2493.2415,622.6597,5333.1627],"yaw":-2.33989,"spawnMask":3},{"id":"creature-201792","entityId":"entry-36478","position":[2264.9015,583.5167,5012.4527],"yaw":-4.08407,"spawnMask":3},{"id":"creature-1972090","entityId":"entry-37583","position":[2242.9715,583.5167,4974.2527],"yaw":-0.349066,"spawnMask":3},{"id":"creature-1972091","entityId":"entry-37779","position":[2236.0415,583.5167,4971.2727],"yaw":-5.49779,"spawnMask":3},{"id":"creature-1972092","entityId":"entry-37596","position":[2238.3015,583.5167,4971.4027],"yaw":-0.349066,"spawnMask":3}],"roamingPacks":[{"id":"patrol-201687","name":"Spectral Warden Patrol","speed":1.15,"pathId":2016870,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2459.3515,650.5517,5645.5127],[2466.9115,650.5517,5634.7927],[2474.9415,650.5517,5624.1327],[2447.2415,650.5517,5660.8327],[2482.6315,650.5537,5689.9727],[2447.2415,650.5517,5660.8327]],"members":[{"id":"member","entityId":"entry-36666","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201700","name":"Soulguard Watchman Patrol","speed":1.15,"pathId":2017000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2481.5915,631.0707,5414.9127],[2462.9615,636.7937,5449.8327],[2473.2615,644.1557,5488.3227],[2484.4415,650.5387,5508.1327],[2501.9315,650.6947,5525.8827],[2484.4415,650.5387,5508.1327],[2473.2615,644.1557,5488.3227],[2462.9615,636.7937,5449.8327]],"members":[{"id":"member","entityId":"entry-36478","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201706","name":"Soulguard Watchman Patrol","speed":1.15,"pathId":2017060,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2560.7015,621.1177,5323.6727],[2549.2415,622.6607,5320.3227],[2531.8315,622.6607,5319.4627],[2513.9615,622.6607,5325.6627],[2531.8315,622.6607,5319.4627],[2549.2415,622.6607,5320.3227],[2560.7015,621.1177,5323.6727],[2568.8415,619.9287,5330.3327],[2568.3915,619.9287,5330.0527]],"members":[{"id":"member","entityId":"entry-36478","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201712","name":"Soulguard Bonecaster Patrol","speed":1.15,"pathId":2017120,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2184.9715,584.6517,5087.5127],[2175.3915,588.8797,5098.4927],[2168.7915,592.7067,5110.5527],[2175.3915,588.8797,5098.4927]],"members":[{"id":"member","entityId":"entry-36564","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201713","name":"Soulguard Watchman Patrol","speed":1.15,"pathId":2017130,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2232.6415,600.2797,5283.9627],[2260.8015,604.6477,5278.9427],[2296.5415,610.1287,5272.1027],[2309.6115,610.1287,5267.9027],[2296.5415,610.1287,5272.1027],[2260.8015,604.6477,5278.9427],[2214.7715,597.5017,5287.6027]],"members":[{"id":"member","entityId":"entry-36478","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201737","name":"Spectral Warden Patrol","speed":1.15,"pathId":2017370,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2503.2215,650.5527,5587.6927],[2491.1215,650.5527,5603.6127],[2503.2215,650.5527,5587.6927],[2527.2915,650.6837,5555.9127]],"members":[{"id":"member","entityId":"entry-36666","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201783","name":"Soulguard Bonecaster Patrol","speed":1.15,"pathId":2017830,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2312.7415,610.1287,5213.6327],[2324.8815,610.1287,5216.5927],[2336.2015,610.1287,5212.3327],[2345.5315,611.5127,5204.8927],[2336.2015,610.1287,5212.3327],[2324.8815,610.1287,5216.5927]],"members":[{"id":"member","entityId":"entry-36564","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201796","name":"Spectral Warden Patrol","speed":1.15,"pathId":2017960,"formationSource":"database-solo","spawnMask":3,"waypoints":[[2599.8915,650.7027,5597.4327],[2586.4115,650.7027,5589.2127],[2562.9315,650.7027,5568.5627],[2543.3715,650.7037,5555.0627],[2570.3915,650.7037,5572.8227]],"members":[{"id":"member","entityId":"entry-36666","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-201707","name":"Bronjahm","position":[2536.6015,630.8507,5368.7327]},{"id":"creature-201736","name":"Devourer of Souls","position":[2537.5315,653.6117,5733.1727]}],"objectiveOrder":[{"id":"creature-201707","name":"Bronjahm","position":[2536.6015,630.8507,5368.7327]},{"id":"creature-201736","name":"Devourer of Souls","position":[2537.5315,653.6117,5733.1727]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150207,"id":196392,"map":632,"orientation":2.04489,"phaseMask":1,"position_x":4925.1,"position_y":2170.29,"position_z":641.944,"rotation0":0,"rotation1":0,"rotation2":0.853385,"rotation3":0.521281,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150224,"id":201961,"map":632,"orientation":-2.23116,"phaseMask":1,"position_x":5684.1,"position_y":2536.37,"position_z":716.859,"rotation0":0,"rotation1":0,"rotation2":-0.898166,"rotation3":0.439657,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150238,"id":201960,"map":632,"orientation":-2.23116,"phaseMask":1,"position_x":5684.1,"position_y":2536.37,"position_z":716.859,"rotation0":0,"rotation1":0,"rotation2":-0.898166,"rotation3":0.439657,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150255,"id":196391,"map":632,"orientation":2.04489,"phaseMask":1,"position_x":4925.1,"position_y":2170.29,"position_z":641.944,"rotation0":0,"rotation1":0,"rotation2":0.853385,"rotation3":0.521281,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51666,"animprogress":255,"areaId":0,"guid":150292,"id":201600,"map":632,"orientation":5.67232,"phaseMask":1,"position_x":5672.2,"position_y":2520.55,"position_z":709.108,"rotation0":0,"rotation1":0,"rotation2":-0.300705,"rotation3":0.953717,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/forge-of-souls/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["13/13 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"trial-of-the-champion","title":"Trial of the Champion","mapId":650,"lfgDungeonIds":[245,249],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[80,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Trial of the Champion","theme":"Open-world expedition","summary":"Fight through Trial of the Champion, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Trial of the Champion...","unchartedAreaName":"Uncharted Trial of the Champion","background":"#081016","fog":{"color":"#0a141c","near":36,"far":798.2682},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/visual.glb","checksum":"1b17fb35654a8fc2bd224add65acc0b61efd9d42c529a94b7431a52e92fb4f67","size":9108480,"triangleCount":334379}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/collision-000.glb","checksum":"ed75a335eaea33054eb8860216aecbc18d91b5ad223c8b8ccde81062ad989b3e","size":239188,"triangleCount":65488},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/collision-001.glb","checksum":"b9b074479057f0bf609001e3a4918d90dbe43d0a85c37ab892a6eb1e27504280","size":979852,"triangleCount":72167},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/collision-002.glb","checksum":"4c2a0284a33930f41214713b9246f5b164f864c594bd545d62ca705f19e6f522","size":298392,"triangleCount":87954},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/collision-003.glb","checksum":"653be0261418bec25c1a0d9ecff0d0a179dd2e32b4d4d811fa2267645932a0fe","size":290876,"triangleCount":82319}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/650-argenttournamentdungeon/navigation.glb","checksum":"03d0ee92b05bc92d15a7e7c717bb97c90e7262a254a94b921f1e1c5ed6787439","size":1610632,"triangleCount":128834}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[890.7955,380.8933,663.5007],"max":[1999.5013,517.6434,852.8185]},"entrance":{"name":"Trial of the Champion Entrance","footPosition":[935.7955,400.8933,727.7007],"forward":[0.9986953242221891,0,-0.05106514835713792],"yaw":1.6218836945688382},"areas":[{"id":"entrance","name":"Trial of the Champion Entrance","center":[935.7955,400.8933,727.7007],"radius":35},{"id":"area-mokra-the-skullcrusher","name":"Mokra the Skullcrusher's Encounter","center":[1427.0726,488.0854,726.3779],"radius":42},{"id":"area-eressea-dawnsinger","name":"Eressea Dawnsinger's Encounter","center":[1557.6025,477.1999,747.954],"radius":42},{"id":"area-runok-wildmane","name":"Runok Wildmane's Encounter","center":[1690.9863,466.3144,764.8269],"radius":42},{"id":"area-argent-champion","name":"Argent Champion's Encounter","center":[1823.4473,455.4289,788.506],"radius":42},{"id":"area-the-black-knight","name":"The Black Knight's Encounter","center":[1952.7288,444.5434,807.505],"radius":42}],"entities":{"entry-35572":{"id":"entry-35572","kind":"boss","name":"Mokra the Skullcrusher","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"spell-64553","name":"[DND] Defend Aura (05 seconds)","spellId":64553,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4744,"damageMultiplier":1.35},{"id":"spell-67865","name":"Trample","spellId":67865,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4744,"damageMultiplier":1.35},{"id":"spell-67867","name":"Trampled","spellId":67867,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4744,"damageMultiplier":1.35},{"id":"spell-63784","name":"Bladestorm","spellId":63784,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4744,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/trial-of-the-champion/creatures/display-28587-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0081,"labelHeight":3.4865,"markerRadius":0.8094}}},"entry-35569":{"id":"entry-35569","kind":"boss","name":"Eressea Dawnsinger","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"spell-64553","name":"[DND] Defend Aura (05 seconds)","spellId":64553,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4826,"damageMultiplier":1.35},{"id":"spell-67865","name":"Trample","spellId":67865,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4826,"damageMultiplier":1.35},{"id":"spell-67867","name":"Trampled","spellId":67867,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4826,"damageMultiplier":1.35},{"id":"spell-63784","name":"Bladestorm","spellId":63784,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4826,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/trial-of-the-champion/creatures/display-28637-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.5876,"markerRadius":0.65}}},"entry-35571":{"id":"entry-35571","kind":"boss","name":"Runok Wildmane","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":5.2,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"spell-64553","name":"[DND] Defend Aura (05 seconds)","spellId":64553,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4151,"damageMultiplier":1.35},{"id":"spell-67865","name":"Trample","spellId":67865,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4151,"damageMultiplier":1.35},{"id":"spell-67867","name":"Trampled","spellId":67867,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4151,"damageMultiplier":1.35},{"id":"spell-63784","name":"Bladestorm","spellId":63784,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4151,"damageMultiplier":0.82,"radius":11}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/trial-of-the-champion/creatures/display-28597-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0587,"labelHeight":2.9703,"markerRadius":0.7397}}},"entry-30188":{"id":"entry-30188","kind":"boss","name":"Argent Champion","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-53625","name":"Heroic Leap","spellId":53625,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4162,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/trial-of-the-champion/creatures/display-26838-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-35451":{"id":"entry-35451","kind":"boss","name":"The Black Knight","title":"Dungeon Boss","hasLoot":true,"combat":{"level":80,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-67751","name":"Ghoul Explode","spellId":67751,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6911,"damageMultiplier":1.35},{"id":"spell-67691","name":"Feign Death","spellId":67691,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6911,"damageMultiplier":1.35},{"id":"spell-67715","name":"Raise Dead Jaeren Sunsworn","spellId":67715,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6911,"damageMultiplier":1.35},{"id":"spell-67705","name":"Raise Dead Arelas Brightstar","spellId":67705,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6911,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.31,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/trial-of-the-champion/creatures/display-29837-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0051,"labelHeight":5.291,"markerRadius":0.7796}}}},"staticSpawns":[{"id":"encounter-33400","entityId":"entry-35572","position":[1427.0726,488.0854,726.3779],"yaw":0,"spawnMask":1},{"id":"encounter-33401","entityId":"entry-35569","position":[1557.6025,477.1999,747.954],"yaw":0,"spawnMask":1},{"id":"encounter-33402","entityId":"entry-35571","position":[1690.9863,466.3144,764.8269],"yaw":0,"spawnMask":1},{"id":"encounter-338","entityId":"entry-30188","position":[1823.4473,455.4289,788.506],"yaw":0,"spawnMask":1},{"id":"encounter-340","entityId":"entry-35451","position":[1952.7288,444.5434,807.505],"yaw":0,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"encounter-33400","name":"Mokra the Skullcrusher","position":[1427.0726,488.0854,726.3779]},{"id":"encounter-33401","name":"Eressea Dawnsinger","position":[1557.6025,477.1999,747.954]},{"id":"encounter-33402","name":"Runok Wildmane","position":[1690.9863,466.3144,764.8269]},{"id":"encounter-338","name":"Argent Champion","position":[1823.4473,455.4289,788.506]},{"id":"encounter-340","name":"The Black Knight","position":[1952.7288,444.5434,807.505]}],"objectiveOrder":[{"id":"encounter-33400","name":"Mokra the Skullcrusher","position":[1427.0726,488.0854,726.3779]},{"id":"encounter-33401","name":"Eressea Dawnsinger","position":[1557.6025,477.1999,747.954]},{"id":"encounter-33402","name":"Runok Wildmane","position":[1690.9863,466.3144,764.8269]},{"id":"encounter-338","name":"Argent Champion","position":[1823.4473,455.4289,788.506]},{"id":"encounter-340","name":"The Black Knight","position":[1952.7288,444.5434,807.505]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150063,"id":196398,"map":650,"orientation":-1.3439,"phaseMask":1,"position_x":801.663,"position_y":624.806,"position_z":412.344,"rotation0":0,"rotation1":0,"rotation2":-0.622513,"rotation3":0.782609,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150064,"id":196398,"map":650,"orientation":-0.715585,"phaseMask":1,"position_x":784.533,"position_y":660.238,"position_z":412.389,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150065,"id":196398,"map":650,"orientation":0.698132,"phaseMask":1,"position_x":710.325,"position_y":660.708,"position_z":412.387,"rotation0":0,"rotation1":0,"rotation2":0.34202,"rotation3":0.939693,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150066,"id":196398,"map":650,"orientation":1.85005,"phaseMask":1,"position_x":692.127,"position_y":610.575,"position_z":412.347,"rotation0":0,"rotation1":0,"rotation2":0.798636,"rotation3":0.601815,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150067,"id":195477,"map":650,"orientation":0,"phaseMask":1,"position_x":813.13,"position_y":617.632,"position_z":413.039,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150068,"id":195486,"map":650,"orientation":0,"phaseMask":1,"position_x":813.12,"position_y":617.59,"position_z":413.031,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150069,"id":195481,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.156,"position_y":549.464,"position_z":412.881,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150070,"id":195480,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.156,"position_y":549.464,"position_z":412.881,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150071,"id":195479,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.156,"position_y":549.464,"position_z":412.881,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150072,"id":195478,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.156,"position_y":549.464,"position_z":412.881,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150073,"id":195648,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.646,"position_y":556.925,"position_z":412.412,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150074,"id":195649,"map":650,"orientation":3.14159,"phaseMask":1,"position_x":685.51,"position_y":618.055,"position_z":412.412,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150075,"id":195485,"map":650,"orientation":0,"phaseMask":1,"position_x":844.685,"position_y":623.408,"position_z":159.109,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150076,"id":195650,"map":650,"orientation":3.14159,"phaseMask":1,"position_x":807.839,"position_y":618.055,"position_z":412.412,"rotation0":0,"rotation1":0,"rotation2":1,"rotation3":0.00000126759,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150077,"id":195647,"map":650,"orientation":1.5708,"phaseMask":1,"position_x":746.698,"position_y":677.469,"position_z":412.339,"rotation0":0,"rotation1":0,"rotation2":0.707108,"rotation3":0.707106,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150078,"id":180723,"map":650,"orientation":-2.35619,"phaseMask":1,"position_x":779.951,"position_y":655.656,"position_z":421.818,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150079,"id":180723,"map":650,"orientation":2.25147,"phaseMask":1,"position_x":782.309,"position_y":582.892,"position_z":421.546,"rotation0":0,"rotation1":0,"rotation2":0.902584,"rotation3":0.430513,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150082,"id":180708,"map":650,"orientation":-0.767944,"phaseMask":1,"position_x":712.521,"position_y":655.648,"position_z":424.593,"rotation0":0,"rotation1":0,"rotation2":-0.374606,"rotation3":0.927184,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150083,"id":180708,"map":650,"orientation":0.436332,"phaseMask":1,"position_x":704.793,"position_y":600.736,"position_z":429.519,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150084,"id":180708,"map":650,"orientation":-0.418879,"phaseMask":1,"position_x":704.302,"position_y":636.326,"position_z":425.136,"rotation0":0,"rotation1":0,"rotation2":-0.207912,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150085,"id":180703,"map":650,"orientation":-0.767944,"phaseMask":1,"position_x":712.521,"position_y":655.648,"position_z":424.593,"rotation0":0,"rotation1":0,"rotation2":-0.374606,"rotation3":0.927184,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150086,"id":180703,"map":650,"orientation":0.715585,"phaseMask":1,"position_x":714.158,"position_y":585.533,"position_z":425.579,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150087,"id":180703,"map":650,"orientation":0.436332,"phaseMask":1,"position_x":704.793,"position_y":600.736,"position_z":429.519,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150088,"id":180730,"map":650,"orientation":0.715585,"phaseMask":1,"position_x":714.158,"position_y":585.533,"position_z":425.579,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150089,"id":180730,"map":650,"orientation":0.436332,"phaseMask":1,"position_x":704.793,"position_y":600.736,"position_z":429.519,"rotation0":0,"rotation1":0,"rotation2":0.216439,"rotation3":0.976296,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150090,"id":180736,"map":650,"orientation":2.70526,"phaseMask":1,"position_x":792.309,"position_y":598.457,"position_z":424.636,"rotation0":0,"rotation1":0,"rotation2":0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150091,"id":180736,"map":650,"orientation":-2.77507,"phaseMask":1,"position_x":794.441,"position_y":638.306,"position_z":425.7,"rotation0":0,"rotation1":0,"rotation2":-0.983255,"rotation3":0.182237,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150092,"id":180736,"map":650,"orientation":-2.35619,"phaseMask":1,"position_x":779.951,"position_y":655.656,"position_z":421.818,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150093,"id":180736,"map":650,"orientation":2.25147,"phaseMask":1,"position_x":782.309,"position_y":582.892,"position_z":421.546,"rotation0":0,"rotation1":0,"rotation2":0.902584,"rotation3":0.430513,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150094,"id":180720,"map":650,"orientation":-2.35619,"phaseMask":1,"position_x":779.951,"position_y":655.656,"position_z":421.818,"rotation0":0,"rotation1":0,"rotation2":-0.923879,"rotation3":0.382686,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150095,"id":180720,"map":650,"orientation":2.25147,"phaseMask":1,"position_x":782.309,"position_y":582.892,"position_z":421.546,"rotation0":0,"rotation1":0,"rotation2":0.902584,"rotation3":0.430513,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150096,"id":180738,"map":650,"orientation":-2.77507,"phaseMask":1,"position_x":794.441,"position_y":638.306,"position_z":425.7,"rotation0":0,"rotation1":0,"rotation2":-0.983255,"rotation3":0.182237,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150097,"id":180738,"map":650,"orientation":2.25147,"phaseMask":1,"position_x":782.309,"position_y":582.892,"position_z":421.546,"rotation0":0,"rotation1":0,"rotation2":0.902584,"rotation3":0.430513,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150098,"id":180728,"map":650,"orientation":-0.418879,"phaseMask":1,"position_x":704.302,"position_y":636.326,"position_z":425.136,"rotation0":0,"rotation1":0,"rotation2":-0.207912,"rotation3":0.978148,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150099,"id":180728,"map":650,"orientation":0.715585,"phaseMask":1,"position_x":714.158,"position_y":585.533,"position_z":425.579,"rotation0":0,"rotation1":0,"rotation2":0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150100,"id":180728,"map":650,"orientation":-0.767944,"phaseMask":1,"position_x":712.521,"position_y":655.648,"position_z":424.593,"rotation0":0,"rotation1":0,"rotation2":-0.374606,"rotation3":0.927184,"spawnMask":3,"spawntimesecs":0,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/trial-of-the-champion/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["5/5 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"pit-of-saron","title":"Pit of Saron","mapId":658,"lfgDungeonIds":[253,254],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[80,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Pit of Saron","theme":"Open-world expedition","summary":"Fight through Pit of Saron, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Pit of Saron...","unchartedAreaName":"Uncharted Pit of Saron","background":"#081016","fog":{"color":"#0a141c","near":36,"far":578.7223},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/658-quarryoftears/visual.glb","checksum":"beb7c3581ce0f39ac8323160d801fa1f31703170e9264434f9f4c72308a2b55a","size":11556752,"triangleCount":731355}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-000.glb","checksum":"99799000a867a14422630d305ed6bb7943b353774325a73b85727245e2e04e4b","size":134484,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-001.glb","checksum":"45392336c8a338ea436170665e5815d56b710c149575a3709929193a734002e9","size":183700,"triangleCount":66962},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-002.glb","checksum":"b9ffc463e825eecc879c2c8303f43ca5800c4a2969b5b367dac96c4f5b864371","size":171148,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-003.glb","checksum":"ce23f687d1af7e3e9714462ac78a1a7450324ad0faa083ba211aa13701667cf6","size":781236,"triangleCount":54645},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-004.glb","checksum":"db89e660bca5897af3c3905a873e6fab2cdec25b44c18533e21083809ed25a3b","size":585860,"triangleCount":95056},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-005.glb","checksum":"fde33d9adef84ecb479f0deda42459b1e259ae3d6baeaa8f7b9ed0dcd3a5ba30","size":356656,"triangleCount":81682},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-006.glb","checksum":"6bd6d0baa49e5176bb095e28e71f5c5fb51f2f5634359944facbbadcfe5478cf","size":152144,"triangleCount":65538},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-007.glb","checksum":"e42824d1e52da4f01425e64d63859ce3b3a1fd54a5e1532e7d72a3e62b29e035","size":167476,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-008.glb","checksum":"dab6cc30b32927eb49fdd9e68386bcbffb23b4413ef5824e79ac79e2e257d06e","size":348396,"triangleCount":77521},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/658-quarryoftears/collision-009.glb","checksum":"d317a5fb237d84ea089c9cb51210871b09f80f90be368bafc7999caee4b7d950","size":171128,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/658-quarryoftears/navigation.glb","checksum":"4059475cc89b10d61729778113445c3e9835257d310bfa1f04be624a94b5d2eb","size":3089960,"triangleCount":250921}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[-329.0333,515.8075,200.1393],"max":[377.6897,752.3305,1003.9203]},"entrance":{"name":"Pit of Saron Entrance","footPosition":[212.1667,627.1195,315.5733],"forward":[-0.7141621806585419,0,0.6999802709484292],"yaw":-0.7954264560081025},"areas":[{"id":"entrance","name":"Pit of Saron Entrance","center":[212.1667,627.1195,315.5733],"radius":35},{"id":"area-forgemaster-garfrost","name":"Forgemaster Garfrost's Encounter","center":[-215.9473,625.4765,591.9673],"radius":42},{"id":"area-krick","name":"Krick's Encounter","center":[123.2817,608.4395,732.6793],"radius":42},{"id":"area-overlrod-tyrannus","name":"Overlrod Tyrannus's Encounter","center":[-283.834,613.7695,689.5021],"radius":42}],"entities":{"entry-36881":{"id":"entry-36881","kind":"mob","name":"Skeletal Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-9785-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.4117,"markerRadius":0.65}}},"entry-36764":{"id":"entry-36764","kind":"mob","name":"Alliance Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30368-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-36830":{"id":"entry-36830","kind":"mob","name":"Wrathbone Laborer","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30364-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1084,"labelHeight":7.7862,"markerRadius":1.5558}}},"entry-36770":{"id":"entry-36770","kind":"mob","name":"Horde Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30380-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0067,"labelHeight":2.9441,"markerRadius":0.6745}}},"entry-36771":{"id":"entry-36771","kind":"mob","name":"Horde Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30384-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0534,"labelHeight":2.7321,"markerRadius":0.6724}}},"entry-36886":{"id":"entry-36886","kind":"mob","name":"Geist Ambusher","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-26577-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0001,"labelHeight":6.464,"markerRadius":0.8562}}},"entry-36772":{"id":"entry-36772","kind":"mob","name":"Horde Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-36896":{"id":"entry-36896","kind":"mob","name":"Stonespine Gargoyle","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30403-animated.glb","rotationY":-1.5707963267948966,"groundOffset":1.3876,"labelHeight":8.6859,"markerRadius":4.5}}},"entry-36879":{"id":"entry-36879","kind":"mob","name":"Plagueborn Horror","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.126976,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-23681-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":7.5227,"markerRadius":2.5418}}},"entry-36765":{"id":"entry-36765","kind":"mob","name":"Alliance Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.5714239999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30372-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.057,"markerRadius":0.65}}},"entry-36794":{"id":"entry-36794","kind":"mob","name":"Scourgelord Tyrannus","combat":{"level":82,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30277-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":4.7668,"markerRadius":0.9965}}},"entry-36907":{"id":"entry-36907","kind":"mob","name":"Wrathbone Siegesmith","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30401-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0034,"labelHeight":4.1787,"markerRadius":0.65}}},"entry-36877":{"id":"entry-36877","kind":"mob","name":"Wrathbone Skeleton","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30363-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.1482,"markerRadius":0.65}}},"entry-36767":{"id":"entry-36767","kind":"mob","name":"Alliance Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.015,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30376-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-36841":{"id":"entry-36841","kind":"mob","name":"Fallen Warrior","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30350-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0722,"labelHeight":5.1908,"markerRadius":1.0372}}},"entry-36788":{"id":"entry-36788","kind":"mob","name":"Deathwhisper Necrolyte","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30540","name":"Summon Visual","spellId":30540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6599,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-22196-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0015,"labelHeight":5.2627,"markerRadius":1.0788}}},"entry-37711":{"id":"entry-37711","kind":"mob","name":"Hungering Ghoul","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-24992-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0013,"labelHeight":2.7604,"markerRadius":0.65}}},"entry-37713":{"id":"entry-37713","kind":"mob","name":"Deathwhisper Torturer","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30851-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0183,"labelHeight":4.9055,"markerRadius":0.8598}}},"entry-37712":{"id":"entry-37712","kind":"mob","name":"Deathwhisper Shadowcaster","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30848-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.002,"labelHeight":2.5086,"markerRadius":0.65}}},"entry-36891":{"id":"entry-36891","kind":"mob","name":"Iceborn Proto-Drake","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":5.07936,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.88,"archetype":"winged","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-26742-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.101,"labelHeight":8.1267,"markerRadius":4.5}}},"entry-36494":{"id":"entry-36494","kind":"boss","name":"Forgemaster Garfrost","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-70326","name":"Permafrost","spellId":70326,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4925,"damageMultiplier":1.35},{"id":"spell-68771","name":"Thundering Stomp","spellId":68771,"delivery":"area","target":"nearby-party","school":"physical","animation":"cast","range":22,"cooldownMs":4925,"damageMultiplier":0.82,"radius":11},{"id":"spell-68774","name":"Forge Frozen Blade","spellId":68774,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4925,"damageMultiplier":1.35},{"id":"spell-68785","name":"Forge Frostborn Mace","spellId":68785,"delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":28,"cooldownMs":4925,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30843-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":29.465,"markerRadius":4.5}}},"entry-36874":{"id":"entry-36874","kind":"mob","name":"Disturbed Glacial Revenant","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.114272,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-29100-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":14.0637,"markerRadius":4.5}}},"entry-36773":{"id":"entry-36773","kind":"mob","name":"Horde Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30388-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.5884,"markerRadius":0.65}}},"entry-36476":{"id":"entry-36476","kind":"boss","name":"Ick","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.126976,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1500,"damageMultiplier":1},{"id":"spell-68987","name":"Pursuit","spellId":68987,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":7487,"damageMultiplier":1.35},{"id":"spell-69024","name":"Toxic Waste","spellId":69024,"delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-69021","name":"Mighty Kick","spellId":69021,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.35},{"id":"spell-69028","name":"Shadow Bolt","spellId":69028,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":10000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30347-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":10.0303,"markerRadius":3.3891}}},"entry-37728":{"id":"entry-37728","kind":"mob","name":"Wrathbone Sorcerer","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30363-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0026,"labelHeight":3.1482,"markerRadius":0.65}}},"entry-36766":{"id":"entry-36766","kind":"mob","name":"Alliance Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30374-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0119,"labelHeight":2.9248,"markerRadius":0.65}}},"entry-36889":{"id":"entry-36889","kind":"mob","name":"Rescued Horde Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30386-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.5745,"markerRadius":0.65}}},"entry-36888":{"id":"entry-36888","kind":"mob","name":"Rescued Alliance Slave","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":0.925,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30368-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0007,"labelHeight":2.478,"markerRadius":0.65}}},"entry-36990":{"id":"entry-36990","kind":"mob","name":"Lady Sylvanas Windrunner","combat":{"level":83,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-30540","name":"Summon Visual","spellId":30540,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6548,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#435b50","accentColor":"#a8d7b1","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/2f647f35e19834a4011cce123d60bb361a8df5a9c24ed292fd7a1c56c0fad704.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":2.741,"markerRadius":0.65}}},"entry-36658":{"id":"entry-36658","kind":"boss","name":"Scourgelord Tyrannus","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.8228480000000005,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-69155","name":"Forceful Smash","spellId":69155,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-69167","name":"Unholy Power","spellId":69167,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":2500,"damageMultiplier":1.35},{"id":"spell-69172","name":"Overlord's Brand","spellId":69172,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.16,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/pit-of-saron/creatures/display-30277-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":4.7668,"markerRadius":0.9965}}}},"staticSpawns":[{"id":"creature-42160","entityId":"entry-36881","position":[175.8577,608.5685,472.8053],"yaw":0,"spawnMask":3},{"id":"creature-201797","entityId":"entry-36881","position":[137.1687,613.6805,439.0573],"yaw":-2.32129,"spawnMask":3},{"id":"creature-201798","entityId":"entry-36764","position":[165.9017,609.5985,600.5853],"yaw":-4.90438,"spawnMask":3},{"id":"creature-201805","entityId":"entry-36770","position":[246.8557,607.5005,454.9123],"yaw":-4.85202,"spawnMask":3},{"id":"creature-201806","entityId":"entry-36881","position":[142.0467,612.4865,446.0903],"yaw":-2.61799,"spawnMask":3},{"id":"creature-201807","entityId":"entry-36770","position":[-46.2463,584.4745,570.9623],"yaw":-4.67748,"spawnMask":3},{"id":"creature-201813","entityId":"entry-36771","position":[168.5107,606.4135,556.1203],"yaw":-0.139626,"spawnMask":3},{"id":"creature-201815","entityId":"entry-36886","position":[-21.6716,645.0875,764.6983],"yaw":-2.37365,"spawnMask":3},{"id":"creature-201816","entityId":"entry-36770","position":[197.9047,608.0615,467.8073],"yaw":-2.93215,"spawnMask":3},{"id":"creature-201817","entityId":"entry-36830","position":[72.6061,624.0295,432.6413],"yaw":-4.15388,"spawnMask":3},{"id":"creature-201818","entityId":"entry-36772","position":[-14.3262,611.0955,487.0473],"yaw":-4.81711,"spawnMask":3},{"id":"creature-201819","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-201820","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-2.17721,"spawnMask":3},{"id":"creature-201823","entityId":"entry-36771","position":[148.8427,609.7555,605.8073],"yaw":-1.11701,"spawnMask":3},{"id":"creature-201833","entityId":"entry-36879","position":[87.8934,610.9035,657.0403],"yaw":-0.255449,"spawnMask":3},{"id":"creature-201839","entityId":"entry-36765","position":[-59.1109,605.9175,563.7503],"yaw":-3.35103,"spawnMask":3},{"id":"creature-201845","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.89692,"spawnMask":3},{"id":"creature-201851","entityId":"entry-36794","position":[226.1807,646.4105,402.1803],"yaw":-3.14,"spawnMask":3},{"id":"creature-201855","entityId":"entry-36907","position":[-171.1963,625.9225,603.3773],"yaw":-4.52473,"spawnMask":3},{"id":"creature-201857","entityId":"entry-36771","position":[-95.3123,611.2405,633.9983],"yaw":-0.069813,"spawnMask":3},{"id":"creature-201861","entityId":"entry-36770","position":[-107.2653,611.4305,629.9793],"yaw":-5.77704,"spawnMask":3},{"id":"creature-201865","entityId":"entry-36830","position":[43.9221,549.3925,565.6083],"yaw":-3.40339,"spawnMask":3},{"id":"creature-201871","entityId":"entry-36877","position":[-69.8929,731.4895,929.8303],"yaw":-4.36332,"spawnMask":3},{"id":"creature-201873","entityId":"entry-36767","position":[8.4829,545.3175,581.3963],"yaw":-1.48353,"spawnMask":3},{"id":"creature-201876","entityId":"entry-36841","position":[-30.097,732.2895,941.9803],"yaw":-4.43314,"spawnMask":3},{"id":"creature-201884","entityId":"entry-36881","position":[133.8317,613.3405,438.4983],"yaw":-2.23402,"spawnMask":3},{"id":"creature-201888","entityId":"entry-36788","position":[247.6097,627.2025,377.1493],"yaw":-6.24828,"spawnMask":3},{"id":"creature-201889","entityId":"entry-36877","position":[-122.0703,722.2365,898.9103],"yaw":-3.7001,"spawnMask":3},{"id":"creature-201897","entityId":"entry-36830","position":[184.4497,609.9565,590.3653],"yaw":-0.802851,"spawnMask":3},{"id":"creature-201899","entityId":"entry-36764","position":[72.2884,589.7935,564.3133],"yaw":-1.22173,"spawnMask":3},{"id":"creature-201900","entityId":"entry-37711","position":[208.6757,605.6185,495.1033],"yaw":-2.21657,"spawnMask":3},{"id":"creature-201901","entityId":"entry-36830","position":[-12.3852,574.4925,630.3443],"yaw":-2.09439,"spawnMask":3},{"id":"creature-201903","entityId":"entry-36879","position":[132.0577,608.1105,670.0513],"yaw":-0.202483,"spawnMask":3},{"id":"creature-201905","entityId":"entry-36771","position":[-59.7602,611.0825,512.4173],"yaw":-2.77507,"spawnMask":3},{"id":"creature-201914","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.89679,"spawnMask":3},{"id":"creature-201917","entityId":"entry-36764","position":[158.0887,609.8085,617.6863],"yaw":-4.27606,"spawnMask":3},{"id":"creature-201920","entityId":"entry-36765","position":[53.1565,561.8545,628.6363],"yaw":-1.8326,"spawnMask":3},{"id":"creature-201921","entityId":"entry-37711","position":[217.3737,605.8015,501.5123],"yaw":-2.96706,"spawnMask":3},{"id":"creature-201926","entityId":"entry-36877","position":[-13.0521,732.0375,949.2203],"yaw":-4.53786,"spawnMask":3},{"id":"creature-201927","entityId":"entry-36907","position":[-174.7763,625.1825,537.4263],"yaw":-3.38594,"spawnMask":3},{"id":"creature-201932","entityId":"entry-36770","position":[-17.1682,611.0915,461.6953],"yaw":-2.77507,"spawnMask":3},{"id":"creature-201934","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-201939","entityId":"entry-36841","position":[-31.2585,731.8195,953.4303],"yaw":-4.60767,"spawnMask":3},{"id":"creature-201943","entityId":"entry-36770","position":[-70.8678,611.0815,516.0893],"yaw":-3.90954,"spawnMask":3},{"id":"creature-201945","entityId":"entry-36770","position":[276.8027,606.0005,510.0493],"yaw":-2.47837,"spawnMask":3},{"id":"creature-201946","entityId":"entry-36771","position":[-23.9824,611.1245,471.5003],"yaw":-5.61996,"spawnMask":3},{"id":"creature-201947","entityId":"entry-36830","position":[-119.3643,612.0195,525.5893],"yaw":-3.87463,"spawnMask":3},{"id":"creature-201949","entityId":"entry-36881","position":[145.3547,612.5405,447.9933],"yaw":-2.74017,"spawnMask":3},{"id":"creature-201952","entityId":"entry-36830","position":[-124.4583,611.1125,626.3463],"yaw":-5.93412,"spawnMask":3},{"id":"creature-201954","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-201956","entityId":"entry-36770","position":[167.7637,608.3485,452.1393],"yaw":-3.4383,"spawnMask":3},{"id":"creature-201957","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-2.12636,"spawnMask":3},{"id":"creature-201960","entityId":"entry-36881","position":[170.9297,608.0255,466.2853],"yaw":-5.29531,"spawnMask":3},{"id":"creature-201970","entityId":"entry-37713","position":[210.9587,605.7145,498.6443],"yaw":-2.77507,"spawnMask":3},{"id":"creature-201974","entityId":"entry-36772","position":[153.2297,609.8805,593.0003],"yaw":-0.20944,"spawnMask":3},{"id":"creature-201976","entityId":"entry-36886","position":[-35.1404,655.3055,723.7593],"yaw":-1.93731,"spawnMask":3},{"id":"creature-201980","entityId":"entry-37712","position":[115.5207,608.2555,508.6113],"yaw":-5.2709,"spawnMask":3},{"id":"creature-201981","entityId":"entry-36879","position":[73.6854,608.4185,685.6833],"yaw":-3.90664,"spawnMask":3},{"id":"creature-201982","entityId":"entry-36841","position":[-139.5033,714.2855,877.0833],"yaw":-2.72271,"spawnMask":3},{"id":"creature-201984","entityId":"entry-36772","position":[-15.722,577.6835,548.1293],"yaw":-1.88496,"spawnMask":3},{"id":"creature-201985","entityId":"entry-36830","position":[54.5002,608.2625,478.2383],"yaw":-3.08923,"spawnMask":3},{"id":"creature-201988","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.89679,"spawnMask":3},{"id":"creature-201990","entityId":"entry-36770","position":[-17.5762,607.9775,714.1463],"yaw":-4.01426,"spawnMask":3},{"id":"creature-201992","entityId":"entry-36494","position":[-215.9473,625.4765,591.9673],"yaw":-5.8679,"spawnMask":3},{"id":"creature-201994","entityId":"entry-36830","position":[246.3007,606.9865,518.7383],"yaw":-0.418879,"spawnMask":3},{"id":"creature-201998","entityId":"entry-36874","position":[-93.3019,731.2675,933.7203],"yaw":-4.2237,"spawnMask":2},{"id":"creature-202000","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-2.9192,"spawnMask":3},{"id":"creature-202013","entityId":"entry-36830","position":[43.9898,619.9105,459.4103],"yaw":-3.83972,"spawnMask":3},{"id":"creature-202015","entityId":"entry-36841","position":[-113.5763,728.2245,929.6003],"yaw":-4.10152,"spawnMask":3},{"id":"creature-202027","entityId":"entry-36907","position":[-232.1733,625.2115,569.8583],"yaw":-5.67232,"spawnMask":3},{"id":"creature-202028","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-3.50724,"spawnMask":3},{"id":"creature-202030","entityId":"entry-37711","position":[153.1057,609.0755,465.8653],"yaw":-1.91986,"spawnMask":3},{"id":"creature-202032","entityId":"entry-36830","position":[-28.531,535.8075,572.7993],"yaw":-4.43314,"spawnMask":3},{"id":"creature-202037","entityId":"entry-36773","position":[45.8804,578.4765,548.7283],"yaw":-2.84489,"spawnMask":3},{"id":"creature-202038","entityId":"entry-37711","position":[269.2307,604.8705,472.7743],"yaw":-2.58309,"spawnMask":3},{"id":"creature-202041","entityId":"entry-37713","position":[273.3227,604.6695,474.2743],"yaw":-3.08923,"spawnMask":3},{"id":"creature-202042","entityId":"entry-36476","position":[123.2817,608.4395,732.6793],"yaw":-3.26377,"spawnMask":3},{"id":"creature-202045","entityId":"entry-36877","position":[-52.255,732.3305,949.2003],"yaw":-4.5204,"spawnMask":3},{"id":"creature-202054","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.61811,"spawnMask":3},{"id":"creature-202057","entityId":"entry-36771","position":[-24.0796,580.9095,634.7403],"yaw":-4.55531,"spawnMask":3},{"id":"creature-202058","entityId":"entry-36772","position":[-12.2637,607.9775,695.3843],"yaw":-5.5676,"spawnMask":3},{"id":"creature-202059","entityId":"entry-36830","position":[89.285,555.2345,598.4793],"yaw":-3.71755,"spawnMask":3},{"id":"creature-202061","entityId":"entry-36772","position":[20.1738,611.1095,468.9463],"yaw":-2.07694,"spawnMask":3},{"id":"creature-202067","entityId":"entry-36771","position":[6.4152,587.9715,657.7833],"yaw":-6.03884,"spawnMask":3},{"id":"creature-202068","entityId":"entry-36877","position":[-88.9989,731.2385,948.7603],"yaw":-4.2237,"spawnMask":3},{"id":"creature-202070","entityId":"entry-36773","position":[-37.2706,602.6265,548.0833],"yaw":-3.01942,"spawnMask":3},{"id":"creature-202071","entityId":"entry-37712","position":[161.1287,607.9095,470.4133],"yaw":-3.19395,"spawnMask":3},{"id":"creature-202072","entityId":"entry-36907","position":[-212.3623,625.6985,597.6563],"yaw":-0.837758,"spawnMask":3},{"id":"creature-202076","entityId":"entry-36771","position":[210.4187,606.0425,541.1533],"yaw":-4.74729,"spawnMask":3},{"id":"creature-202079","entityId":"entry-36881","position":[144.6127,613.1225,445.4083],"yaw":-2.68781,"spawnMask":3},{"id":"creature-202082","entityId":"entry-36772","position":[-83.6664,611.0815,520.1413],"yaw":-3.68265,"spawnMask":3},{"id":"creature-202083","entityId":"entry-36886","position":[-31.4512,661.9495,762.2683],"yaw":-2.42601,"spawnMask":3},{"id":"creature-202084","entityId":"entry-36772","position":[64.1061,623.6335,439.1203],"yaw":-3.76991,"spawnMask":3},{"id":"creature-202085","entityId":"entry-36877","position":[-124.8603,726.1585,923.7403],"yaw":-3.59538,"spawnMask":3},{"id":"creature-202096","entityId":"entry-36770","position":[-5.5501,611.0915,461.4653],"yaw":-3.42085,"spawnMask":3},{"id":"creature-202097","entityId":"entry-36830","position":[-24.6282,607.8035,723.3683],"yaw":-4.43314,"spawnMask":3},{"id":"creature-202098","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-202099","entityId":"entry-36881","position":[182.8387,607.5255,468.5563],"yaw":-0.075408,"spawnMask":3},{"id":"creature-202105","entityId":"entry-37728","position":[49.2346,729.1205,951.0703],"yaw":-1.90241,"spawnMask":3},{"id":"creature-202107","entityId":"entry-37711","position":[116.7307,608.6245,513.3463],"yaw":-4.34587,"spawnMask":3},{"id":"creature-202108","entityId":"entry-36772","position":[191.8357,605.9155,527.3843],"yaw":-2.77507,"spawnMask":3},{"id":"creature-202112","entityId":"entry-36788","position":[143.2437,614.6195,439.4453],"yaw":-5.55015,"spawnMask":3},{"id":"creature-202118","entityId":"entry-36770","position":[182.1047,605.4205,517.3283],"yaw":-1.13446,"spawnMask":3},{"id":"creature-202119","entityId":"entry-36830","position":[-19.6074,611.3995,499.3533],"yaw":-3.7001,"spawnMask":3},{"id":"creature-202121","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-202122","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-2.17721,"spawnMask":3},{"id":"creature-202124","entityId":"entry-36773","position":[143.9347,606.2645,534.5633],"yaw":-1.01229,"spawnMask":3},{"id":"creature-202125","entityId":"entry-36881","position":[177.5397,608.0255,463.9833],"yaw":-5.6513,"spawnMask":3},{"id":"creature-202126","entityId":"entry-36773","position":[29.3058,610.6625,472.4203],"yaw":-2.56563,"spawnMask":3},{"id":"creature-202131","entityId":"entry-36773","position":[79.2294,571.3565,586.2523],"yaw":-1.91986,"spawnMask":3},{"id":"creature-202132","entityId":"entry-36877","position":[37.7698,728.2395,951.1003],"yaw":-4.95674,"spawnMask":3},{"id":"creature-202139","entityId":"entry-36770","position":[264.6047,607.5005,430.0303],"yaw":-3.50811,"spawnMask":3},{"id":"creature-202144","entityId":"entry-36773","position":[190.4477,609.0015,578.1773],"yaw":-4.38078,"spawnMask":3},{"id":"creature-202145","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.89679,"spawnMask":3},{"id":"creature-202151","entityId":"entry-36766","position":[45.0384,548.9715,606.3933],"yaw":-0.523599,"spawnMask":3},{"id":"creature-202152","entityId":"entry-37712","position":[214.0127,605.7835,501.3823],"yaw":-2.6529,"spawnMask":3},{"id":"creature-202156","entityId":"entry-36879","position":[116.2967,608.4475,740.3943],"yaw":-0.773846,"spawnMask":3},{"id":"creature-202158","entityId":"entry-36877","position":[-14.9645,731.1365,957.4103],"yaw":-4.45059,"spawnMask":3},{"id":"creature-202159","entityId":"entry-36907","position":[-191.4353,625.2585,526.4153],"yaw":-1.36186,"spawnMask":3},{"id":"creature-202163","entityId":"entry-36877","position":[92.6636,728.8235,937.9303],"yaw":-5.07441,"spawnMask":3},{"id":"creature-202165","entityId":"entry-36841","position":[99.7957,729.4725,949.7403],"yaw":-4.86947,"spawnMask":3},{"id":"creature-202166","entityId":"entry-36770","position":[-70.538,590.9315,601.0193],"yaw":-4.2586,"spawnMask":3},{"id":"creature-202174","entityId":"entry-36841","position":[-128.1193,714.6575,880.2303],"yaw":-3.40339,"spawnMask":3},{"id":"creature-202181","entityId":"entry-36773","position":[-99.2585,611.1105,526.1363],"yaw":-3.80482,"spawnMask":3},{"id":"creature-202182","entityId":"entry-36881","position":[137.0437,612.9865,441.8533],"yaw":-2.3911,"spawnMask":3},{"id":"creature-202183","entityId":"entry-36772","position":[220.8407,609.5905,563.6653],"yaw":-1.02974,"spawnMask":3},{"id":"creature-202184","entityId":"entry-36886","position":[-37.9477,647.2225,687.6653],"yaw":-1.93731,"spawnMask":3},{"id":"creature-202196","entityId":"entry-36881","position":[315.3197,606.9675,425.1253],"yaw":-5.68977,"spawnMask":3},{"id":"creature-202199","entityId":"entry-36881","position":[229.4827,606.4705,511.6533],"yaw":-2.13658,"spawnMask":3},{"id":"creature-202200","entityId":"entry-37728","position":[47.9256,729.0165,946.8303],"yaw":-2.02458,"spawnMask":3},{"id":"creature-202202","entityId":"entry-36773","position":[-61.1873,609.9825,638.5733],"yaw":-5.72468,"spawnMask":3},{"id":"creature-202203","entityId":"entry-36881","position":[173.9257,608.0255,464.2483],"yaw":-5.37707,"spawnMask":3},{"id":"creature-202204","entityId":"entry-37711","position":[164.0857,608.2075,466.9623],"yaw":-4.69494,"spawnMask":3},{"id":"creature-202211","entityId":"entry-37713","position":[155.9867,608.1275,468.9383],"yaw":-3.01942,"spawnMask":3},{"id":"creature-202212","entityId":"entry-36877","position":[34.0603,728.2105,958.9203],"yaw":-4.60767,"spawnMask":3},{"id":"creature-202216","entityId":"entry-37713","position":[112.0797,608.4205,506.0423],"yaw":-6.17846,"spawnMask":3},{"id":"creature-202227","entityId":"entry-36881","position":[117.1947,606.4415,491.7683],"yaw":-4.89679,"spawnMask":3},{"id":"creature-202229","entityId":"entry-36772","position":[-80.7341,611.0935,633.2293],"yaw":-0.10472,"spawnMask":3},{"id":"creature-202232","entityId":"entry-37711","position":[108.1807,608.8355,505.2453],"yaw":-0.471239,"spawnMask":3},{"id":"creature-202233","entityId":"entry-37712","position":[276.2797,604.6595,474.1623],"yaw":-3.22886,"spawnMask":3},{"id":"creature-202236","entityId":"entry-36879","position":[116.7897,607.9065,706.1203],"yaw":-4.91328,"spawnMask":3},{"id":"creature-202238","entityId":"entry-36907","position":[-234.8433,625.2115,566.7283],"yaw":-5.51524,"spawnMask":3},{"id":"creature-202244","entityId":"entry-36771","position":[6.3648,611.0845,466.5573],"yaw":-3.35103,"spawnMask":3},{"id":"creature-202246","entityId":"entry-36877","position":[95.8975,729.4855,950.2003],"yaw":-4.9102,"spawnMask":3},{"id":"creature-202248","entityId":"entry-36841","position":[95.66,729.1915,939.0003],"yaw":-4.93928,"spawnMask":3},{"id":"creature-202249","entityId":"entry-36773","position":[6.0714,608.1305,764.1653],"yaw":-1.16937,"spawnMask":3},{"id":"creature-202256","entityId":"entry-36766","position":[17.8197,583.9825,545.7743],"yaw":-5.8294,"spawnMask":3},{"id":"creature-202257","entityId":"entry-36841","position":[-104.5463,728.4485,921.9903],"yaw":-3.89208,"spawnMask":3},{"id":"creature-202260","entityId":"entry-36770","position":[77.2537,626.1485,426.6163],"yaw":-3.66519,"spawnMask":3},{"id":"creature-202264","entityId":"entry-36771","position":[89.3145,623.8725,428.2333],"yaw":-2.75762,"spawnMask":3},{"id":"creature-202265","entityId":"entry-36877","position":[-52.9597,731.9215,935.5103],"yaw":-4.60767,"spawnMask":3},{"id":"creature-202269","entityId":"entry-36771","position":[-112.3973,611.8215,527.2033],"yaw":-2.70526,"spawnMask":3},{"id":"creature-202271","entityId":"entry-36771","position":[-11.5901,608.1515,745.9833],"yaw":-5.46288,"spawnMask":3},{"id":"creature-202275","entityId":"entry-36772","position":[-18.005,607.8825,735.9603],"yaw":-5.32325,"spawnMask":3},{"id":"creature-202276","entityId":"entry-36886","position":[-29.4251,627.4255,703.6303],"yaw":-1.76278,"spawnMask":3},{"id":"creature-202278","entityId":"entry-36770","position":[-44.1612,578.3735,601.8253],"yaw":-5.35816,"spawnMask":3},{"id":"creature-202279","entityId":"entry-36889","position":[-35.9963,606.7705,652.1073],"yaw":-3.91,"spawnMask":3},{"id":"creature-202280","entityId":"entry-36889","position":[-37.9263,606.7705,653.6003],"yaw":-3.91,"spawnMask":3},{"id":"creature-202281","entityId":"entry-36788","position":[198.6527,627.2055,376.6653],"yaw":0,"spawnMask":3},{"id":"creature-202282","entityId":"entry-36881","position":[180.8017,607.9005,465.5603],"yaw":-6.18504,"spawnMask":3},{"id":"creature-202283","entityId":"entry-36889","position":[-33.7063,606.7705,650.3203],"yaw":-3.91,"spawnMask":3},{"id":"creature-202284","entityId":"entry-36889","position":[-31.6063,606.7705,648.6903],"yaw":-3.91,"spawnMask":3},{"id":"creature-202285","entityId":"entry-36888","position":[-35.9963,606.7705,652.1073],"yaw":-3.91,"spawnMask":3},{"id":"creature-202286","entityId":"entry-36888","position":[-37.9263,606.7705,653.6003],"yaw":-3.91,"spawnMask":3},{"id":"creature-202287","entityId":"entry-36888","position":[-33.7063,606.7705,650.3203],"yaw":-3.91,"spawnMask":3},{"id":"creature-202288","entityId":"entry-36888","position":[-31.6063,606.7705,648.6903],"yaw":-3.91,"spawnMask":3},{"id":"creature-1972267","entityId":"entry-36990","position":[211.9137,627.2105,304.2903],"yaw":0,"spawnMask":3},{"id":"encounter-837","entityId":"entry-36658","position":[-283.834,613.7695,689.5021],"yaw":0,"spawnMask":1}],"roamingPacks":[{"id":"patrol-201800","name":"Wrathbone Laborer Patrol","speed":1.15,"pathId":2018000,"formationSource":"database-solo","spawnMask":3,"waypoints":[[188.6687,608.0835,464.2503],[193.7187,608.1505,463.5043],[193.7187,608.1505,463.5043],[193.7187,608.1505,463.5043],[193.7187,608.1505,463.5043],[190.0157,607.2715,473.9083],[191.2987,606.0685,484.8113],[191.0997,605.9315,497.6743],[186.5817,607.0385,512.9903],[186.5817,607.0385,512.9903],[190.7247,606.1815,504.1773],[189.6777,605.8065,493.1533],[189.4047,605.8065,484.3463],[187.2017,607.3885,473.8143],[188.6687,608.0835,464.2503]],"members":[{"id":"member","entityId":"entry-36830","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201822","name":"Stonespine Gargoyle Patrol","speed":1.15,"pathId":2018220,"formationSource":"database-solo","spawnMask":3,"waypoints":[[252.7297,660.2915,751.1253],[250.2887,660.2915,788.1773],[291.4587,660.2915,794.8073],[292.5857,660.2915,742.6083],[278.6717,660.2915,720.4413],[227.9827,660.2915,706.4013],[174.1117,660.2915,713.3753],[116.3597,660.2915,720.7833],[96.2207,660.2915,695.8633],[119.8557,660.2915,653.4413],[175.2817,660.2915,580.1323],[223.4347,660.2915,551.8543],[266.0557,660.2915,590.0683],[287.1977,660.2915,686.6893]],"members":[{"id":"member","entityId":"entry-36896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201824","name":"Stonespine Gargoyle Patrol","speed":1.15,"pathId":2018240,"formationSource":"database-solo","spawnMask":3,"waypoints":[[62.9071,604.0225,566.1183],[81.1853,593.6465,588.2393],[80.5166,602.0365,608.0303],[73.4794,618.1585,634.1483],[54.1097,618.9965,652.9823],[26.5558,630.5325,651.9313],[1.4703,630.6845,637.2823],[-30.0596,596.5425,605.8423],[-36.0411,609.5215,583.0683],[-19.5747,620.1355,555.0753],[8.005,619.9815,545.0963]],"members":[{"id":"member","entityId":"entry-36896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201834","name":"Stonespine Gargoyle Patrol","speed":1.15,"pathId":2018340,"formationSource":"database-solo","spawnMask":3,"waypoints":[[186.8957,679.9095,290.7973],[207.3217,679.9095,293.0753],[230.5107,679.9095,290.5123],[278.1977,679.9095,245.1393],[301.8407,679.9095,258.0043],[294.6637,679.9095,289.8803],[289.5487,679.9095,319.1103],[239.7867,679.9095,357.0493],[182.9637,679.9095,353.7623],[140.4287,679.9095,349.2193],[121.4677,679.9095,309.4653],[142.7777,679.9095,287.2363]],"members":[{"id":"member","entityId":"entry-36896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201838","name":"Stonespine Gargoyle Patrol","speed":1.15,"pathId":2018380,"formationSource":"database-solo","spawnMask":3,"waypoints":[[136.7307,722.0225,753.6133],[139.0277,720.8555,752.7343],[171.0937,689.7725,768.6223],[209.5997,689.7725,741.1373],[254.3097,689.7725,710.3213],[277.3947,689.7725,660.3143],[272.2177,689.7725,612.5073],[265.0297,689.7725,563.7333],[284.5467,651.9105,492.1673],[302.9397,651.9105,434.6463],[308.8157,651.9105,377.9323],[229.7707,651.9105,350.2473],[174.9677,651.9105,333.8393],[126.9347,681.5215,372.2593],[121.3887,681.5215,431.0903],[126.1077,681.5215,527.3873],[130.6787,681.5215,646.0523],[42.0922,681.5215,709.2383],[-53.2793,681.5215,626.5403],[-77.5692,681.5215,543.0683],[3.1235,681.5215,498.4693],[89.0297,681.5215,521.6863],[115.4397,681.5215,673.9973]],"members":[{"id":"member","entityId":"entry-36896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201846","name":"Stonespine Gargoyle Patrol","speed":1.15,"pathId":2018460,"formationSource":"database-solo","spawnMask":3,"waypoints":[[23.0627,666.7375,630.6723],[-50.472,666.7375,635.2973],[-93.6595,666.7375,614.5233],[-42.222,666.7375,542.2333],[19.5384,666.7375,514.7903],[57.8874,666.7375,498.9273],[79.8405,666.7375,449.4793],[136.4677,666.7375,354.7193],[173.2707,666.7375,307.3963],[237.3957,666.7375,279.4243],[271.3227,666.7375,296.6413],[280.9027,666.7375,322.7073],[286.7067,666.7375,352.7683],[320.9167,666.7375,394.8983],[332.6897,666.7375,426.8843],[286.0817,666.7375,484.8593],[183.8287,666.7375,553.7473]],"members":[{"id":"member","entityId":"entry-36896","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-201991","name":"Iceborn Proto-Drake Patrol","speed":1.15,"pathId":2019910,"formationSource":"database-solo","spawnMask":3,"waypoints":[[-80.1508,612.2485,541.0073],[-62.2654,612.2095,531.1793],[-45.7376,612.2095,524.9643],[-20.4425,612.2745,513.9383],[-45.7376,612.2095,524.9643],[-62.2654,612.2095,531.1793],[-80.1508,612.2485,541.0073],[-100.8543,612.2485,559.0513]],"members":[{"id":"member","entityId":"entry-36891","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202063","name":"Deathwhisper Necrolyte Patrol","speed":1.15,"pathId":2020630,"formationSource":"database-solo","spawnMask":3,"waypoints":[[229.4827,606.4705,511.6533],[215.0207,606.6375,523.7033],[215.7177,606.2625,538.8443],[213.3367,607.2575,554.0143],[200.8197,606.8825,558.6303],[182.8227,606.3685,542.2943],[171.3177,606.1185,530.7243],[155.0107,606.3305,517.5593],[130.0177,608.8315,524.4693],[121.0577,610.3315,534.8203],[136.4067,611.1815,557.5753],[148.8767,606.3075,558.1153],[136.4067,611.1815,557.5753],[121.0577,610.3315,534.8203],[130.0177,608.8315,524.4693],[155.0107,606.3305,517.5593],[171.3177,606.1185,530.7243],[182.8227,606.3685,542.2943],[200.8197,606.8825,558.6303],[213.3367,607.2575,554.0143],[215.7177,606.2625,538.8443],[215.0207,606.6375,523.7033]],"members":[{"id":"member","entityId":"entry-36788","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202103","name":"Deathwhisper Necrolyte Patrol","speed":1.15,"pathId":2021030,"formationSource":"database-solo","spawnMask":3,"waypoints":[[303.2887,606.0335,435.2283],[297.7447,605.3675,448.3203],[292.3027,604.7425,465.9783],[292.3547,604.7425,478.4133],[299.9677,605.3565,482.1743],[307.2937,606.1065,482.8873],[315.8667,606.8565,491.5543],[312.4377,606.6065,499.8983],[304.8407,606.7315,502.0143],[294.9617,606.2925,496.5143],[287.1827,605.4845,493.7543],[272.6357,606.0205,498.3473],[263.2397,606.3545,501.2753],[272.6357,606.0205,498.3473],[287.1827,605.4845,493.7543],[294.9617,606.2925,496.5143],[304.8407,606.7315,502.0143],[312.4377,606.5105,499.8983],[315.8667,606.8565,491.5543],[307.2937,606.0735,482.8873],[299.9677,605.2515,482.1743],[292.3547,604.7605,478.4133],[292.3027,604.7425,465.9783],[297.7447,605.3675,448.3203]],"members":[{"id":"member","entityId":"entry-36788","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202197","name":"Iceborn Proto-Drake Patrol","speed":1.15,"pathId":2021970,"formationSource":"database-solo","spawnMask":3,"waypoints":[[0.4655,612.2595,506.3663],[18.5454,612.0095,499.1353],[32.1339,611.0095,495.0183],[47.2815,610.8465,495.3013],[62.2745,610.9715,497.4583],[76.7797,610.8595,501.1563],[62.2745,610.9715,497.4583],[47.2815,610.8465,495.3013],[32.1339,611.0095,495.0183],[18.5454,612.0095,499.1353]],"members":[{"id":"member","entityId":"entry-36891","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202231","name":"Deathwhisper Necrolyte Patrol","speed":1.15,"pathId":2022310,"formationSource":"database-solo","spawnMask":3,"waypoints":[[175.2777,606.7755,475.8513],[157.4637,605.6235,485.0963],[146.0367,605.7485,484.2363],[131.1807,606.2265,472.1203],[117.9777,606.7265,457.2833],[103.4847,612.5605,442.9003],[89.1669,621.5835,437.6043],[77.4065,623.8335,440.7883],[77.4065,623.8335,440.7883],[69.1877,623.6855,450.8443],[77.4065,623.8335,440.7883],[89.1669,621.5835,437.6043],[103.4847,612.5605,442.9003],[117.9777,606.7265,457.2833],[131.1807,606.2265,472.1203],[146.0367,605.7485,484.2363],[157.4637,605.6235,485.0963],[175.2777,606.7755,475.8513]],"members":[{"id":"member","entityId":"entry-36788","role":"leader","formationOffset":[0,0,0]}]},{"id":"patrol-202273","name":"Deathwhisper Necrolyte Patrol","speed":1.15,"pathId":2022730,"formationSource":"database-solo","spawnMask":3,"waypoints":[[117.1947,606.4415,491.7683],[139.0537,604.9415,500.7833],[153.7067,605.7485,504.2153],[167.3767,605.8585,505.6623],[183.4327,606.1815,502.6673],[167.3767,605.8585,505.6623],[153.7067,605.7485,504.2153],[139.0537,604.9415,500.7833],[117.1947,606.4415,491.7683],[99.2303,608.4845,490.7133]],"members":[{"id":"member","entityId":"entry-36788","role":"leader","formationOffset":[0,0,0]}]}],"bosses":[{"id":"creature-201992","name":"Forgemaster Garfrost","position":[-215.9473,625.4765,591.9673]},{"id":"creature-202042","name":"Krick","position":[123.2817,608.4395,732.6793]},{"id":"encounter-837","name":"Overlrod Tyrannus","position":[-283.834,613.7695,689.5021]}],"objectiveOrder":[{"id":"creature-201992","name":"Forgemaster Garfrost","position":[-215.9473,625.4765,591.9673]},{"id":"creature-202042","name":"Krick","position":[123.2817,608.4395,732.6793]},{"id":"encounter-837","name":"Overlrod Tyrannus","position":[-283.834,613.7695,689.5021]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":207,"id":201590,"map":658,"orientation":3.53903,"phaseMask":1,"position_x":637.954,"position_y":-209.544,"position_z":533.269,"rotation0":0,"rotation1":0,"rotation2":0.98032,"rotation3":-0.197413,"spawnMask":3,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":215,"id":201590,"map":658,"orientation":5.5732,"phaseMask":1,"position_x":726.268,"position_y":-237.654,"position_z":534.13,"rotation0":0,"rotation1":0,"rotation2":0.347583,"rotation3":-0.937649,"spawnMask":3,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":305,"id":201885,"map":658,"orientation":2.28638,"phaseMask":1,"position_x":932.267,"position_y":-80.6684,"position_z":591.676,"rotation0":0,"rotation1":0,"rotation2":0.909961,"rotation3":0.414694,"spawnMask":3,"spawntimesecs":300,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150195,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":724.438,"position_y":-140.052,"position_z":512.621,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150197,"id":201969,"map":658,"orientation":-3.01941,"phaseMask":1,"position_x":592.08,"position_y":-22.4306,"position_z":512.605,"rotation0":0,"rotation1":0,"rotation2":-0.998134,"rotation3":0.0610534,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150198,"id":201969,"map":658,"orientation":1.91986,"phaseMask":1,"position_x":637.587,"position_y":-70.7083,"position_z":512.642,"rotation0":0,"rotation1":0,"rotation2":0.819151,"rotation3":0.573577,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150199,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":839.693,"position_y":85.4531,"position_z":510.398,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150201,"id":201969,"map":658,"orientation":-2.70526,"phaseMask":1,"position_x":575.352,"position_y":248.378,"position_z":509.007,"rotation0":0,"rotation1":0,"rotation2":-0.976296,"rotation3":0.21644,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150202,"id":201969,"map":658,"orientation":-2.63544,"phaseMask":1,"position_x":548.127,"position_y":90.8594,"position_z":525.021,"rotation0":0,"rotation1":0,"rotation2":-0.968147,"rotation3":0.250383,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150203,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":554.149,"position_y":264.531,"position_z":509.007,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150205,"id":201969,"map":658,"orientation":-2.79252,"phaseMask":1,"position_x":546.736,"position_y":78.5799,"position_z":527.68,"rotation0":0,"rotation1":0,"rotation2":-0.984807,"rotation3":0.173652,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150208,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":468.238,"position_y":173.26,"position_z":528.706,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150211,"id":201969,"map":658,"orientation":-2.33874,"phaseMask":1,"position_x":855.941,"position_y":-16.5764,"position_z":509.491,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150213,"id":201592,"map":658,"orientation":-1.0821,"phaseMask":1,"position_x":837.733,"position_y":141.722,"position_z":509.508,"rotation0":0,"rotation1":0,"rotation2":-0.515036,"rotation3":0.857168,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150215,"id":201969,"map":658,"orientation":-1.36136,"phaseMask":1,"position_x":752.821,"position_y":-94.8229,"position_z":512.716,"rotation0":0,"rotation1":0,"rotation2":-0.629322,"rotation3":0.777145,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150216,"id":201969,"map":658,"orientation":-0.523598,"phaseMask":1,"position_x":752.497,"position_y":-81.316,"position_z":512.603,"rotation0":0,"rotation1":0,"rotation2":-0.258819,"rotation3":0.965926,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150219,"id":201969,"map":658,"orientation":3.08918,"phaseMask":1,"position_x":550.918,"position_y":265.731,"position_z":509.007,"rotation0":0,"rotation1":0,"rotation2":0.999657,"rotation3":0.0262033,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150220,"id":201969,"map":658,"orientation":0.017452,"phaseMask":1,"position_x":758.177,"position_y":-62.0313,"position_z":511.524,"rotation0":0,"rotation1":0,"rotation2":0.00872589,"rotation3":0.999962,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150222,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":447.21,"position_y":262.74,"position_z":528.709,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150225,"id":201969,"map":658,"orientation":2.33874,"phaseMask":1,"position_x":655.58,"position_y":144.47,"position_z":507.822,"rotation0":0,"rotation1":0,"rotation2":0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150226,"id":201969,"map":658,"orientation":-2.91469,"phaseMask":1,"position_x":646.318,"position_y":-97.9375,"position_z":512.605,"rotation0":0,"rotation1":0,"rotation2":-0.993571,"rotation3":0.113208,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150228,"id":201969,"map":658,"orientation":1.58825,"phaseMask":1,"position_x":648.649,"position_y":-112.335,"position_z":513.084,"rotation0":0,"rotation1":0,"rotation2":0.713251,"rotation3":0.700909,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150232,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":472.552,"position_y":136.938,"position_z":530.262,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150234,"id":201969,"map":658,"orientation":-2.32129,"phaseMask":1,"position_x":833.667,"position_y":-16.2899,"position_z":509.484,"rotation0":0,"rotation1":0,"rotation2":-0.91706,"rotation3":0.398748,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150235,"id":201848,"map":658,"orientation":-2.28516,"phaseMask":1,"position_x":1106.11,"position_y":251.749,"position_z":627.814,"rotation0":0,"rotation1":0,"rotation2":-0.909708,"rotation3":0.415249,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150236,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":815.474,"position_y":137.865,"position_z":509.377,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150239,"id":201969,"map":658,"orientation":-0.715585,"phaseMask":1,"position_x":749.285,"position_y":-107.773,"position_z":512.901,"rotation0":0,"rotation1":0,"rotation2":-0.350207,"rotation3":0.936672,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150240,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":671.543,"position_y":-116.234,"position_z":512.695,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150241,"id":201969,"map":658,"orientation":2.65289,"phaseMask":1,"position_x":588.804,"position_y":199.064,"position_z":509.48,"rotation0":0,"rotation1":0,"rotation2":0.970294,"rotation3":0.241927,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150242,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":630.884,"position_y":275.889,"position_z":507.606,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150244,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":631.854,"position_y":294.524,"position_z":507.514,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150246,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":582.547,"position_y":-17.8663,"position_z":512.617,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150247,"id":201969,"map":658,"orientation":2.30383,"phaseMask":1,"position_x":699.583,"position_y":190.753,"position_z":510.857,"rotation0":0,"rotation1":0,"rotation2":0.913544,"rotation3":0.406739,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150248,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":655.708,"position_y":-137.531,"position_z":512.588,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150250,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":587.677,"position_y":5.81597,"position_z":512.588,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51666,"animprogress":255,"areaId":0,"guid":150251,"id":202392,"map":658,"orientation":1.55334,"phaseMask":1,"position_x":878.24,"position_y":24.6997,"position_z":498.52,"rotation0":0,"rotation1":0,"rotation2":0.700909,"rotation3":0.713251,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150252,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":564.207,"position_y":178.653,"position_z":509.93,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150254,"id":201969,"map":658,"orientation":-0.977383,"phaseMask":1,"position_x":636.401,"position_y":182.17,"position_z":507.123,"rotation0":0,"rotation1":0,"rotation2":-0.469471,"rotation3":0.882948,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150256,"id":202209,"map":658,"orientation":0,"phaseMask":1,"position_x":423.349,"position_y":212.451,"position_z":531.064,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150257,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":630,"position_y":268.547,"position_z":507.359,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150259,"id":201969,"map":658,"orientation":0.663223,"phaseMask":1,"position_x":676.191,"position_y":167.217,"position_z":507.966,"rotation0":0,"rotation1":0,"rotation2":0.325567,"rotation3":0.945519,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150260,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":755.774,"position_y":-119.53,"position_z":512.688,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150261,"id":201969,"map":658,"orientation":-1.18682,"phaseMask":1,"position_x":864.655,"position_y":-11.4358,"position_z":509.657,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150262,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":569.375,"position_y":192.802,"position_z":509.854,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150264,"id":201969,"map":658,"orientation":-0.191985,"phaseMask":1,"position_x":883.674,"position_y":5.69097,"position_z":509.652,"rotation0":0,"rotation1":0,"rotation2":-0.0958451,"rotation3":0.995396,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150265,"id":201969,"map":658,"orientation":-0.855211,"phaseMask":1,"position_x":682.894,"position_y":220.568,"position_z":511.024,"rotation0":0,"rotation1":0,"rotation2":-0.414693,"rotation3":0.909961,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150266,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":718.997,"position_y":125.872,"position_z":501.708,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150267,"id":201969,"map":658,"orientation":2.42601,"phaseMask":1,"position_x":560.273,"position_y":64.6684,"position_z":524.846,"rotation0":0,"rotation1":0,"rotation2":0.936673,"rotation3":0.350206,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150268,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":863.717,"position_y":99.6094,"position_z":510.408,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150270,"id":201969,"map":658,"orientation":-1.18682,"phaseMask":1,"position_x":814.389,"position_y":-12.2188,"position_z":509.484,"rotation0":0,"rotation1":0,"rotation2":-0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150271,"id":201969,"map":658,"orientation":-2.68781,"phaseMask":1,"position_x":661.503,"position_y":211.88,"position_z":507.633,"rotation0":0,"rotation1":0,"rotation2":-0.97437,"rotation3":0.22495,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150272,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":582.837,"position_y":196.997,"position_z":510.922,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150273,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":686.017,"position_y":175.748,"position_z":508.175,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150274,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":633.323,"position_y":-60.6597,"position_z":512.589,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51666,"animprogress":255,"areaId":0,"guid":150275,"id":202393,"map":658,"orientation":1.53589,"phaseMask":1,"position_x":728,"position_y":-122.156,"position_z":491.926,"rotation0":0,"rotation1":0,"rotation2":0.694657,"rotation3":0.719341,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150276,"id":201592,"map":658,"orientation":-2.72271,"phaseMask":1,"position_x":861.462,"position_y":138.559,"position_z":510.187,"rotation0":0,"rotation1":0,"rotation2":-0.978147,"rotation3":0.207914,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150278,"id":202210,"map":658,"orientation":0,"phaseMask":1,"position_x":423.349,"position_y":212.451,"position_z":531.064,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150279,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":582.417,"position_y":-6.21354,"position_z":512.597,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150280,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":893.722,"position_y":119.649,"position_z":508.609,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51666,"animprogress":255,"areaId":0,"guid":150281,"id":202391,"map":658,"orientation":1.30027,"phaseMask":1,"position_x":855.278,"position_y":68.934,"position_z":498.539,"rotation0":0,"rotation1":0,"rotation2":0.605293,"rotation3":0.796003,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150282,"id":201969,"map":658,"orientation":2.32129,"phaseMask":1,"position_x":608.422,"position_y":-13.6319,"position_z":512.602,"rotation0":0,"rotation1":0,"rotation2":0.91706,"rotation3":0.398748,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":51666,"animprogress":255,"areaId":0,"guid":150283,"id":202394,"map":658,"orientation":1.53589,"phaseMask":1,"position_x":661.2,"position_y":-121.932,"position_z":491.615,"rotation0":0,"rotation1":0,"rotation2":0.694657,"rotation3":0.719341,"spawnMask":3,"spawntimesecs":7200,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150284,"id":201592,"map":658,"orientation":1.25664,"phaseMask":1,"position_x":887.139,"position_y":112.799,"position_z":508.72,"rotation0":0,"rotation1":0,"rotation2":0.587786,"rotation3":0.809016,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150286,"id":201969,"map":658,"orientation":2.67035,"phaseMask":1,"position_x":573.201,"position_y":168.451,"position_z":509.855,"rotation0":0,"rotation1":0,"rotation2":0.972369,"rotation3":0.233447,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150287,"id":201969,"map":658,"orientation":1.309,"phaseMask":1,"position_x":631.651,"position_y":110.535,"position_z":510.694,"rotation0":0,"rotation1":0,"rotation2":0.608763,"rotation3":0.793352,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150288,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":850.455,"position_y":-23.4201,"position_z":509.15,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150290,"id":201969,"map":658,"orientation":1.71042,"phaseMask":1,"position_x":641.556,"position_y":-83.934,"position_z":512.588,"rotation0":0,"rotation1":0,"rotation2":0.754709,"rotation3":0.65606,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150293,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":593.021,"position_y":28.6684,"position_z":512.291,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150295,"id":201592,"map":658,"orientation":1.67551,"phaseMask":1,"position_x":844.215,"position_y":92.8108,"position_z":510.385,"rotation0":0,"rotation1":0,"rotation2":0.743143,"rotation3":0.669133,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150297,"id":201969,"map":658,"orientation":1.18682,"phaseMask":1,"position_x":590.087,"position_y":19.8438,"position_z":512.596,"rotation0":0,"rotation1":0,"rotation2":0.559191,"rotation3":0.829039,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150299,"id":201592,"map":658,"orientation":0,"phaseMask":1,"position_x":748.467,"position_y":147.703,"position_z":511.183,"rotation0":0,"rotation1":0,"rotation2":0,"rotation3":1,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150302,"id":201969,"map":658,"orientation":1.81514,"phaseMask":1,"position_x":648.74,"position_y":191.651,"position_z":507.575,"rotation0":0,"rotation1":0,"rotation2":0.78801,"rotation3":0.615662,"spawnMask":3,"spawntimesecs":86400,"state":1,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/pit-of-saron/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["30/30 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"halls-of-reflection","title":"Halls of Reflection","mapId":668,"lfgDungeonIds":[255,256],"expansion":"wrath","environmentMode":"adt-hybrid","difficultyVariants":[{"difficulty":"normal","id":"normal","levelRange":[80,80],"mapDifficultyId":0,"spawnMask":1},{"difficulty":"heroic","id":"heroic","levelRange":[80,83],"mapDifficultyId":1,"spawnMask":2}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Halls of Reflection","theme":"Open-world expedition","summary":"Fight through Halls of Reflection, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Halls of Reflection...","unchartedAreaName":"Uncharted Halls of Reflection","background":"#081016","fog":{"color":"#0a141c","near":36,"far":303.156},"ambientLight":{"color":"#9eb8c2","intensity":0.22},"hemisphereLight":{"skyColor":"#7896a5","groundColor":"#070b0e","intensity":0.64},"directionalLight":{"color":"#c4dce3","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/668-hallsofreflection/visual.glb","checksum":"af62f70fc494f215fd1a95043ccec4cba0720c9a3d880651e9e6635b3f8071b1","size":26758888,"triangleCount":1256758}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-000.glb","checksum":"f5147fe0f57d9a0aaf13977b379661eb13d30f07e501b25d951f632909403764","size":890892,"triangleCount":62151},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-001.glb","checksum":"ba9bc990ead1ed7e924f2a06c6f3316d73ddab372383cc4bf88a439025b66231","size":150316,"triangleCount":47968},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-002.glb","checksum":"50e13b85461bc87d8c24ed67015dc62aca044e29baca6ce49448f9546b24465e","size":444576,"triangleCount":86313},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-003.glb","checksum":"a2355f0342be59b88b856a68b178299ab6d3ad46ef3e9dba0e6238b3deb99f89","size":286804,"triangleCount":83700},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-004.glb","checksum":"0144681eb85a6cecaf6fb058c3e7a482d15e64f3ea57e809717d6db6d46028e1","size":351696,"triangleCount":60410},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-005.glb","checksum":"49289aa60495200dbba85c04494b401348455c32a0af7cc3ad2ff6865c0fda2f","size":196332,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-006.glb","checksum":"7266ca81445054d5b317df6ce6c02af322dfc0b976c184644a1b3fd0b81f0599","size":197580,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-007.glb","checksum":"7d60aab6a971167973d57adb0f5baae36dbf59189f1ce06b939d164caf0197fe","size":266440,"triangleCount":64896},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-008.glb","checksum":"94205540fcac6cc8f3fc844b261ba05a920a029a41ac940135df5fed05ed8bd6","size":315212,"triangleCount":68928},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-009.glb","checksum":"5c9f5aff516fcf4df90f01922287c896c4174293992859a8aa9ac1e4fee3fc82","size":594312,"triangleCount":88276},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-010.glb","checksum":"9d4d28d860c9f50f1defb5ed85a87f308f462c4e9a2d9b8d12b009cc12ecfa7b","size":489668,"triangleCount":82320},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-011.glb","checksum":"30a1f8f153c05e51702c90e9b62d91e15b4d0a8d7ad7354758fed6630157f4b2","size":195724,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-012.glb","checksum":"70de30385f5083c32a1414db03ba8f4f29518aae0c9222a9bac118956da28dbd","size":196256,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-013.glb","checksum":"6f954d2bf7910173a3f85cf20987edec386934b1fcac0790cba13ab8e114cd48","size":275996,"triangleCount":71238},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-014.glb","checksum":"96778438f975a33099055c8ee0345db6ababc7bcbd178815fd193323a4638810","size":199464,"triangleCount":65536},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-015.glb","checksum":"6a3864059198cc03202efacb4c559111ca2b25840664cb0ca8cd918f4a98a144","size":195248,"triangleCount":65536},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/668-hallsofreflection/collision-016.glb","checksum":"cec357bfa6d3a6578c2efbfd2cfbba85ec1297f80c42680993c8904fa26420f1","size":194772,"triangleCount":65376}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/668-hallsofreflection/navigation.glb","checksum":"920d9a4655d818ea0fdc56a76bc9d033113e6bc2ec10f543629c3a5db1412f7c","size":5400024,"triangleCount":444731}},"transform":{"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)","position":[0,0,0],"rotation":[0,0,0],"scale":1},"bounds":{"min":[1677.6128,132.9099,4044.4136],"max":[2098.6628,198.2269,4454.4936]},"entrance":{"name":"Halls of Reflection Entrance","footPosition":[1723.7328,152.9099,4095.7336],"forward":[0,0,1],"yaw":0},"areas":[{"id":"entrance","name":"Halls of Reflection Entrance","center":[1723.7328,152.9099,4095.7336],"radius":35},{"id":"area-falric","name":"Falric's Encounter","center":[1821.7828,154.5339,4140.8836],"radius":42},{"id":"area-marwyn","name":"Marwyn's Encounter","center":[1773.4728,154.5349,4192.0536],"radius":42}],"entities":{"entry-37779":{"id":"entry-37779","kind":"mob","name":"Dark Ranger Loralen","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/44ef1435e58e9a055208847ab1d1b47a8682800dabcece2619ff1ee417d7bf17.glb","rotationY":-1.5707963267948966,"groundOffset":0.0014,"labelHeight":2.6894,"markerRadius":0.65}}},"entry-37225":{"id":"entry-37225","kind":"mob","name":"Uther the Lightbringer","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.6479999999999997,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30821-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0012,"labelHeight":4.171,"markerRadius":0.8719}}},"entry-37226":{"id":"entry-37226","kind":"mob","name":"The Lich King","combat":{"level":83,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.4799999999999995,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30721-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0107,"labelHeight":6.789,"markerRadius":1.5168}}},"entry-38112":{"id":"entry-38112","kind":"boss","name":"Falric","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1800,"damageMultiplier":1},{"id":"spell-72422","name":"Quivering Strike","spellId":72422,"delivery":"melee","target":"primary","school":"physical","animation":"attack","range":5.5,"cooldownMs":5000,"damageMultiplier":1.35},{"id":"spell-72426","name":"Impending Despair","spellId":72426,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":11000,"damageMultiplier":1.35},{"id":"spell-72435","name":"Defiling Horror","spellId":72435,"delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":4000,"damageMultiplier":0,"radius":11,"effect":{"kind":"control","mechanic":"fear","durationMs":4500}}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.26,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30972-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":5.9585,"markerRadius":1.2456}}},"entry-38113":{"id":"entry-38113","kind":"boss","name":"Marwyn","title":"Dungeon Boss","hasLoot":true,"combat":{"level":82,"healthMultiplier":1.3299999999999998,"damageMultiplier":1.12,"moveSpeed":4.5714239999999995,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-72360","name":"Obliterate","spellId":72360,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":3000,"damageMultiplier":1.35},{"id":"spell-72362","name":"Well of Corruption","spellId":72362,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-72363","name":"Corrupted Flesh","spellId":72363,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":12000,"damageMultiplier":1.35},{"id":"spell-72368","name":"Shared Suffering","spellId":72368,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5000,"damageMultiplier":1.35}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.21,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30973-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0017,"labelHeight":5.9585,"markerRadius":1.2456}}},"entry-36723":{"id":"entry-36723","kind":"mob","name":"Frostsworn General","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":4.096,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-69222","name":"Throw Shield","spellId":69222,"delivery":"area","target":"self","school":"physical","animation":"cast","range":0,"cooldownMs":6000,"damageMultiplier":0,"effect":{"kind":"aura","aura":"spell-69222","durationMs":8000,"magnitude":0.15}}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30300-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.1445,"labelHeight":10.3816,"markerRadius":2.0744}}},"entry-37068":{"id":"entry-37068","kind":"mob","name":"Spiritual Reflection","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-69933","name":"Baleful Strike","spellId":69933,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":4000,"damageMultiplier":1.12},{"id":"spell-69900","name":"Spirit Burst","spellId":69900,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":6834,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-24653-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.3317,"labelHeight":3.4147,"markerRadius":1.2701}}},"entry-36954":{"id":"entry-36954","kind":"mob","name":"The Lich King","combat":{"level":83,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":2.7520000000000002,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-69780","name":"Remorseless Winter","spellId":69780,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6861,"damageMultiplier":1.12},{"id":"spell-70653","name":"Lich King Zap Player","spellId":70653,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6861,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.88,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30721-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0.0107,"labelHeight":6.789,"markerRadius":1.5168}}},"entry-37554":{"id":"entry-37554","kind":"mob","name":"Lady Sylvanas Windrunner","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.1745920000000005,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1250,"damageMultiplier":1},{"id":"spell-69410","name":"Soul Reaper","spellId":69410,"delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":28,"cooldownMs":5455,"damageMultiplier":1.12},{"id":"spell-70190","name":"Evasion","spellId":70190,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":5455,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/dungeons/halls-of-reflection/creatures/display-30776-animated.glb","rotationY":-1.5707963267948966,"groundOffset":0,"labelHeight":3.3473,"markerRadius":0.65}}},"entry-26499":{"id":"entry-26499","kind":"mob","name":"Arthas","combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.657152,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"spell-50773","name":"Crusader Strike","spellId":50773,"delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":28,"cooldownMs":6545,"damageMultiplier":1.12},{"id":"spell-51908","name":"Cosmetic - Shadowstep","spellId":51908,"delivery":"projectile","target":"primary","school":"physical","animation":"cast","range":28,"cooldownMs":6545,"damageMultiplier":1.12}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.105,"archetype":"humanoid","model":{"url":"/assets/game/creatures/shared/f410cbf05ee179af5e73862f00ce12a14c4be9e4c9e4fdad47f26c07e398993b.glb","rotationY":-1.5707963267948966,"groundOffset":0.0008,"labelHeight":2.7701,"markerRadius":0.65}}}},"staticSpawns":[{"id":"creature-1971979","entityId":"entry-37779","position":[1722.6128,152.9929,4089.4136],"yaw":-0.820305,"spawnMask":3},{"id":"creature-1971980","entityId":"entry-37225","position":[1794.2628,154.6389,4164.5336],"yaw":-4.53786,"spawnMask":3},{"id":"creature-1971982","entityId":"entry-37226","position":[1853.7828,152.9929,4219.1836],"yaw":-3.94444,"spawnMask":3},{"id":"creature-1971983","entityId":"entry-38112","position":[1821.7828,154.5339,4140.8836],"yaw":-5.48939,"spawnMask":3},{"id":"creature-1971984","entityId":"entry-38113","position":[1773.4728,154.5349,4192.0536],"yaw":-2.33994,"spawnMask":3},{"id":"creature-1972019","entityId":"entry-36723","position":[1907.5928,152.9099,4270.6436],"yaw":-3.95015,"spawnMask":3},{"id":"creature-1972020","entityId":"entry-37068","position":[1906.8128,161.6149,4234.4136],"yaw":0,"spawnMask":3},{"id":"creature-1972021","entityId":"entry-37068","position":[1908.0528,161.6149,4306.7236],"yaw":-3.14,"spawnMask":3},{"id":"creature-1972022","entityId":"entry-37068","position":[1943.6428,161.6149,4269.7136],"yaw":-4.71,"spawnMask":3},{"id":"creature-1972023","entityId":"entry-37068","position":[1871.4028,161.6149,4271.1236],"yaw":-1.57,"spawnMask":3},{"id":"creature-1972024","entityId":"entry-37068","position":[1925.9128,161.6149,4238.7636],"yaw":-5.75,"spawnMask":3},{"id":"creature-1972025","entityId":"entry-36954","position":[2053.6628,178.2269,4409.4936],"yaw":-4.15523,"spawnMask":3},{"id":"creature-1972026","entityId":"entry-37554","position":[2048.6828,178.2259,4406.2336],"yaw":-0.99299,"spawnMask":3}],"roamingPacks":[],"bosses":[{"id":"creature-1971983","name":"Falric","position":[1821.7828,154.5339,4140.8836]},{"id":"creature-1971984","name":"Marwyn","position":[1773.4728,154.5349,4192.0536]}],"objectiveOrder":[{"id":"creature-1971983","name":"Falric","position":[1821.7828,154.5339,4140.8836]},{"id":"creature-1971984","name":"Marwyn","position":[1773.4728,154.5349,4192.0536]}],"navigationLinks":[],"serverGameObjects":[{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150206,"id":202302,"map":668,"orientation":-2.33874,"phaseMask":1,"position_x":5309.36,"position_y":2006.55,"position_z":709.341,"rotation0":0,"rotation1":0,"rotation2":-0.920505,"rotation3":0.390732,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150210,"id":197342,"map":668,"orientation":0.810935,"phaseMask":1,"position_x":5520.77,"position_y":2229.04,"position_z":733.04,"rotation0":0,"rotation1":0,"rotation2":0.394448,"rotation3":0.918918,"spawnMask":3,"spawntimesecs":6000,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150221,"id":197343,"map":668,"orientation":-0.75986,"phaseMask":1,"position_x":5582.81,"position_y":2230.62,"position_z":733.04,"rotation0":0,"rotation1":0,"rotation2":-0.370855,"rotation3":0.928691,"spawnMask":3,"spawntimesecs":6000,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150229,"id":202236,"map":668,"orientation":-0.75986,"phaseMask":1,"position_x":5309.34,"position_y":2006.52,"position_z":709.316,"rotation0":0,"rotation1":0,"rotation2":-0.370855,"rotation3":0.928691,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150231,"id":201747,"map":668,"orientation":0.810935,"phaseMask":1,"position_x":5231.04,"position_y":1923.79,"position_z":707.044,"rotation0":0,"rotation1":0,"rotation2":0.394448,"rotation3":0.918918,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150243,"id":201756,"map":668,"orientation":0.810935,"phaseMask":1,"position_x":5231.04,"position_y":1923.79,"position_z":707.044,"rotation0":0,"rotation1":0,"rotation2":0.394448,"rotation3":0.918918,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150291,"id":201976,"map":668,"orientation":0.810935,"phaseMask":1,"position_x":5264.61,"position_y":1959.44,"position_z":707.724,"rotation0":0,"rotation1":0,"rotation2":0.394448,"rotation3":0.918918,"spawnMask":3,"spawntimesecs":6000,"state":0,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150294,"id":197341,"map":668,"orientation":0.810935,"phaseMask":1,"position_x":5358.96,"position_y":2058.75,"position_z":707.724,"rotation0":0,"rotation1":0,"rotation2":0.394448,"rotation3":0.918918,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":100,"areaId":0,"guid":150301,"id":190236,"map":668,"orientation":-2.26562,"phaseMask":1,"position_x":4926.09,"position_y":1554.96,"position_z":163.292,"rotation0":0,"rotation1":0,"rotation2":-0.905608,"rotation3":0.424117,"spawnMask":3,"spawntimesecs":6000,"state":1,"zoneId":0},{"Comment":null,"ScriptName":"","VerifiedBuild":0,"animprogress":0,"areaId":0,"guid":150303,"id":201596,"map":668,"orientation":4.05956,"phaseMask":1,"position_x":5275.91,"position_y":1693.72,"position_z":786.151,"rotation0":0,"rotation1":0,"rotation2":0.896503,"rotation3":-0.443037,"spawnMask":3,"spawntimesecs":25,"state":0,"zoneId":0}],"provenance":{"clientBuild":"3.3.5a-Epoch","clientArchiveHashes":{},"databaseAdapter":"azerothcore-4d9d1d4b5723","databaseRevision":"4d9d1d4b5723e819c5c390f6ca1177283dbfb8e3","sourceSnapshot":"dungeon-pipeline/work/halls-of-reflection/source-snapshot.json","coordinateTransform":"three(x,y,z)=(wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["10/10 combat entity templates use native animated client models from the reviewed five-player import.","Server positions were aligned to the packaged adt-hybrid environment at its reviewed player anchor."]}},{"schemaVersion":1,"id":"tinkertech-showdown","title":"Tinkertech Showdown","mapId":821,"lfgDungeonIds":[],"expansion":"custom","environmentMode":"global-wmo","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[1,80]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Tinkertech Showdown","theme":"Instanced dungeon","summary":"Fight through Tinkertech Showdown, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Tinkertech Showdown...","unchartedAreaName":"Uncharted Tinkertech Showdown","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":1773.4627},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/821-tinketechshowdown/visual.glb","checksum":"1eaa0ac3fdbf745a2af571f957090f8c8882ce00ca1b38a8daa6a42c0ea52b0a","size":11106952,"triangleCount":284323}],"collision":[{"id":"collision","fileName":"collision.glb","url":"/assets/game/manastorm/821-tinketechshowdown/collision.glb","checksum":"cb3159b1ffdf3137671838b00815741abae0a85f50ae82a5ba76d8733d500de6","size":1781304,"triangleCount":100000}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/821-tinketechshowdown/navigation.glb","checksum":"d11f2e5700c041c9580740eca39d85c026dab6f5689e4036d1b9d6ee0d73a1b9","size":317488,"triangleCount":27408}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[-60.7798,-146.0678,21.2633],"max":[55.2202,15.8322,2484.406]},"entrance":{"name":"Tinkertech Showdown Entrance","footPosition":[3.6488,-4.1678,66.2633],"forward":[0.005476368352013866,0,0.9999850045824052],"yaw":0.005476395725654838},"areas":[{"id":"entrance","name":"Tinkertech Showdown Entrance","center":[3.6488,-4.1678,66.2633],"radius":35},{"id":"area-mechatron","name":"Mechatron's Encounter","center":[-15.7798,-4.2678,2439.406],"radius":42}],"entities":{"entry-663012":{"id":"entry-663012","kind":"boss","name":"Creature 663012","title":"Dungeon Boss","hasLoot":true,"combat":{"level":1,"healthMultiplier":1.15,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"area","target":"nearby-party","school":"arcane","animation":"cast","range":22,"cooldownMs":5474,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#61473b","accentColor":"#efbd83","scale":1.18,"archetype":"humanoid"}},"tinkertech-showdown-guardian":{"id":"tinkertech-showdown-guardian","kind":"mob","name":"Tinkertech Showdown Guardian","hasLoot":false,"combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":26,"cooldownMs":7128,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid"}},"tinkertech-showdown-caster":{"id":"tinkertech-showdown-caster","kind":"mob","name":"Tinkertech Showdown Invoker","hasLoot":false,"combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":26,"cooldownMs":5491,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid"}},"tinkertech-showdown-brute":{"id":"tinkertech-showdown-brute","kind":"mob","name":"Tinkertech Showdown Brute","hasLoot":false,"combat":{"level":80,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"projectile","target":"primary","school":"nature","animation":"cast","range":26,"cooldownMs":5165,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid"}}},"staticSpawns":[{"id":"encounter-9013","entityId":"entry-663012","position":[-15.7798,-4.2678,2439.406],"yaw":0,"spawnMask":1},{"id":"generated-trash-1","entityId":"tinkertech-showdown-guardian","position":[5.2917,-34.6428,366.249],"yaw":0,"spawnMask":1},{"id":"generated-trash-2","entityId":"tinkertech-showdown-caster","position":[4.4003,-46.8328,487.6618],"yaw":1.618,"spawnMask":1},{"id":"generated-trash-3","entityId":"tinkertech-showdown-brute","position":[6.8385,-59.0228,603.5878],"yaw":3.236,"spawnMask":1},{"id":"generated-trash-4","entityId":"tinkertech-showdown-guardian","position":[8.2001,-71.2128,727.454],"yaw":4.854,"spawnMask":1},{"id":"generated-trash-5","entityId":"tinkertech-showdown-caster","position":[7.9202,-83.4028,846.2262],"yaw":0.1888,"spawnMask":1},{"id":"generated-trash-6","entityId":"tinkertech-showdown-brute","position":[7.0289,-95.5928,967.639],"yaw":1.8068,"spawnMask":1},{"id":"generated-trash-7","entityId":"tinkertech-showdown-guardian","position":[8.3728,-116.3238,1357.4124],"yaw":3.4248,"spawnMask":1},{"id":"generated-trash-8","entityId":"tinkertech-showdown-caster","position":[6.8672,-105.9708,1461.0062],"yaw":5.0428,"spawnMask":1},{"id":"generated-trash-9","entityId":"tinkertech-showdown-brute","position":[3.7202,-95.6178,1559.5061],"yaw":0.3776,"spawnMask":1},{"id":"generated-trash-10","entityId":"tinkertech-showdown-guardian","position":[-0.0383,-85.2648,1660.6466],"yaw":1.9956,"spawnMask":1},{"id":"generated-trash-11","entityId":"tinkertech-showdown-caster","position":[-0.4672,-74.9118,1756.3003],"yaw":3.6136,"spawnMask":1},{"id":"generated-trash-12","entityId":"tinkertech-showdown-brute","position":[-1.9728,-64.5588,1859.8942],"yaw":5.2316,"spawnMask":1},{"id":"generated-trash-13","entityId":"tinkertech-showdown-guardian","position":[-5.1198,-54.2058,1958.3941],"yaw":0.5664,"spawnMask":1},{"id":"generated-trash-14","entityId":"tinkertech-showdown-caster","position":[-8.8783,-43.8528,2059.5346],"yaw":2.1844,"spawnMask":1},{"id":"generated-trash-15","entityId":"tinkertech-showdown-brute","position":[-9.3072,-33.4998,2155.1882],"yaw":3.8024,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"encounter-9013","name":"Mechatron","position":[-15.7798,-4.2678,2439.406]}],"objectiveOrder":[{"id":"encounter-9013","name":"Mechatron","position":[-15.7798,-4.2678,2439.406]}],"navigationLinks":[],"serverGameObjects":[],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"patch-WB2/world/maps/TinketechShowdown":"323c47c081d0a6c39daf9878284863c21e3e38dbced2ba3f58d1d157d080d41d"},"databaseAdapter":"ascension-encounter-identities-with-procedural-population","sourceSnapshot":"dungeon-pipeline/work/tinkertech-showdown/source-snapshot.json","coordinateTransform":"three(x,y,z)=draft(x,y,z)+package-anchor-translation"},"validation":{"status":"unvalidated","blockers":[],"warnings":["Creature bodies use explicit procedural fallbacks until the corresponding client display composites are exported.","Trash identities and placements are procedural; boss identities come from the installed Ascension encounter catalog."]}},{"schemaVersion":1,"id":"frozen-reach","title":"Frozen Reach","mapId":908,"lfgDungeonIds":[],"expansion":"custom","environmentMode":"adt-hybrid","difficultyVariants":[{"id":"normal","difficulty":"normal","spawnMask":1,"levelRange":[60,60]}],"defaultDifficultyId":"normal","availability":"available","presentation":{"location":"Frozen Reach","theme":"Open-world expedition","summary":"Fight through Frozen Reach, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Frozen Reach...","unchartedAreaName":"Uncharted Frozen Reach","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":414.4321},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/908-alvaencounter/visual.glb","checksum":"608e5aeeda2ded42c44cd8c146b1ff58dfc69457b51ed6e698fdbbe0c632605f","size":35891036,"triangleCount":3753492}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-000.glb","checksum":"6c6df953f0bb4618f963a6c769190df81e3b7d773915c17caca0c08f2d462a24","size":122008,"triangleCount":65536},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-001.glb","checksum":"97c4ec4e71ae60afb022c0e64b17dc0b2025e13c5676f5e837d2f12f1e7ee885","size":120464,"triangleCount":65536},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-002.glb","checksum":"7098f52a2c5a5ec630f336a7fc89b2d4895c1d642bfa18fda4da1c93fb68086f","size":120464,"triangleCount":65536},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-003.glb","checksum":"08351edfa09791586fafcf978ed97c4931bb4880850fd92491e6ef5933c4de1e","size":121700,"triangleCount":65536},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-004.glb","checksum":"e7a8a7769c3f658af45c909157fdb64ff27ef49fd75427253ba115042557c92e","size":127624,"triangleCount":65536},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-005.glb","checksum":"edb5662d360f148bab0bab3aea5166350a4a15e1abc2b00d1cc0c3a092e52ccb","size":123180,"triangleCount":65536},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-006.glb","checksum":"e9b68d3438deb67bfbac4fb4a0d13411acbe753b154ed0b603cf5f2e69482c71","size":129996,"triangleCount":65536},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-007.glb","checksum":"9c4a1f37d5885a7bbc6993eae9ab2e5f276a7a10a8a3fcae3866c75c69e12c15","size":136276,"triangleCount":65536},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-008.glb","checksum":"de90295a1d8a41fc6c7fa585bd2cc201dab6825cb9ee1f339dc640e9c2fd471e","size":150028,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-009.glb","checksum":"0d14b55b1766e14ae8573641fbcc0df692f724ee313eeafefbf8b9549f5ecaac","size":147428,"triangleCount":65536},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-010.glb","checksum":"0c1e79dc5f0c824da5057d9b58b9e129f145c73250890d7ff703955fcb3780e7","size":132516,"triangleCount":65536},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-011.glb","checksum":"a8b76e2b0c14d12ee68ed8489265b99cc72268966944c109134b7d985ebb3a8f","size":130192,"triangleCount":65536},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-012.glb","checksum":"90d8b162468ea1fe53ef6e8b4f0e9a17980d57ab0487e318d56b7ab67527bb9b","size":131504,"triangleCount":65536},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-013.glb","checksum":"46e14fa81747bbf3a2d9d010d75836f7cd39deb70152ca9c72c2bcf84d9b7eb3","size":147772,"triangleCount":65536},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-014.glb","checksum":"3baa396d57f9662b11b6b795bc91a87cb5c868a1b8aa5ec342b4751758efed20","size":165592,"triangleCount":65520},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-015.glb","checksum":"a322d98a76eef9d5c00aafe26ea2c3ea6894b177280bc9421e4c5a4b170ae716","size":21584,"triangleCount":1214},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-016.glb","checksum":"9276a227c84f434b6d2c19d746f5d537e03b9365f4cca4c297881615f5347702","size":270848,"triangleCount":22823},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-017.glb","checksum":"28ba2af310c7d0d761e5e2c9837b4c04b4f1a7ec30e6b735215d3b984d44e523","size":22356,"triangleCount":1282},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-018.glb","checksum":"d31935ec9fee94b64f2720ae45e3da204f87fbd9d00031277afb5c3c21cb4f9b","size":31132,"triangleCount":1704},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-019.glb","checksum":"16219faccfedbf8630a5d295fa980c78c48a8966f1c2a86397b25b92663cd7f5","size":45036,"triangleCount":2794},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-020.glb","checksum":"b81ac7d67c624be04fc74dbcd66a642712576d02708ee8ebe912ba0c14a39072","size":64868,"triangleCount":4535},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-021.glb","checksum":"3922ec584999383783ad6ed768ad765d9aaa3d1d9ac56c91ee2924eb4e17b73a","size":45072,"triangleCount":2794},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-022.glb","checksum":"ba03e6e3dc0bff7aaf425c530ffb0a9a23f6de3a9b6fa01b5353f279678b6336","size":85972,"triangleCount":6312},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-023.glb","checksum":"f18f0981ad76de5c384979dedddd08e974965ea1959001215a9759a9edb586c5","size":85912,"triangleCount":6312},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-024.glb","checksum":"e25127b0ef4170d78e78961999e7d0f7bfe9e0ce6b092cf906a29a3e16209d59","size":115232,"triangleCount":9280},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-025.glb","checksum":"946d25b0301cef546d78502ed66e8b87c59095b6ab47b61b997c966be15676ca","size":64948,"triangleCount":4535},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-026.glb","checksum":"699169b8ba6474315899fab7e5783cf47aa69f9604bc26447ad618239565df56","size":132760,"triangleCount":10902},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-027.glb","checksum":"d927cd6de947b6443191058f2c3e6743706ef96f1633a5d1e43e1f6b43bd3f90","size":14556,"triangleCount":448},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-028.glb","checksum":"74ce217108c8f97c7914d5ca8493faa60520aca220d45ce1e7408224f02e79d3","size":17248,"triangleCount":778},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-029.glb","checksum":"60ed573cedddebf14e65977624ffac137485e9f1e5c249605139d8b6714206bf","size":14056,"triangleCount":384},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-030.glb","checksum":"1f177a3ba0ecea569ed0b53675dd0f2bdfd21db8eec3ce403464639571d37b46","size":164764,"triangleCount":65536},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-031.glb","checksum":"bfc56d203e318054e2be2377aa7e477d33b28f3a82c28141160d7652439a26d9","size":17252,"triangleCount":778},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-032.glb","checksum":"5539aa6a8075e4f4c5bda24e3fb95cc166b08280f7858e3660ee90e9f45c481c","size":148400,"triangleCount":65536},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-033.glb","checksum":"40a671315544bd76c04050a0561da862c4a848d15fc579883b3357756144165a","size":126968,"triangleCount":65536},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-034.glb","checksum":"9ac7d7906e887619d176634c6b76ad6b80d3a5c6adc0b8fdea9d9ac11137cda6","size":129220,"triangleCount":65536},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-035.glb","checksum":"ae8f69b5f23470421efb5b79f705027b7bea4eb1a49dcafc183854002a5621f6","size":150544,"triangleCount":65536},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-036.glb","checksum":"46b1a3816f0122ae8abea28ace4a583e4920560b0439970721414186fc7065d1","size":163908,"triangleCount":65536},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-037.glb","checksum":"faa6aae268ae734ebd1886b41d0e67033c98a08fbcb316690ace0de482e1ffdc","size":413048,"triangleCount":44850},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-038.glb","checksum":"66e3e84ef2836da0f185e9183fdfe5acbad5a2f291f0ac3edf21bddb8d48b66a","size":166532,"triangleCount":65536},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-039.glb","checksum":"2855c6984c27a86b49233cb8da87e858fe1a27e9787d0c82fec136847499f733","size":17236,"triangleCount":778},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-040.glb","checksum":"bac279ec1e55083beefec1d4a45552512ab184a23fa8765a4ee1184caba31e69","size":23256,"triangleCount":1388},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-041.glb","checksum":"707b209cefb3a79ebec83a2d331645296e4e0c64c9996db0baf2d519d89a8f64","size":145520,"triangleCount":65536},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-042.glb","checksum":"9b64e6c2fb06b41b5c14537b9b2cbc1180172c485cb18fe7d8bac23559574689","size":125588,"triangleCount":65536},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-043.glb","checksum":"90f72dc3ecb087ad12b3794816860d3b6b4170bb327b302833174f28572bae3b","size":127432,"triangleCount":65536},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-044.glb","checksum":"e22e54d31768ce384e41dc60cf64eb0bc269d7dd5823b59bc34f97b79ee9e975","size":131868,"triangleCount":65536},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-045.glb","checksum":"bd3c3ca49c1e700e961526b51e4c8340ded8684df88a92fd425d85d07b1ee40d","size":139400,"triangleCount":65536},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-046.glb","checksum":"f0203be353545b3b2bd0bcaf2c354122abb677411be578a30657f373a92583ff","size":144304,"triangleCount":65536},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-047.glb","checksum":"f48e98bfb2c589f0155e84714bc18cbd30439c79a89466d041e6aca8bb7a8a8e","size":129452,"triangleCount":65536},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-048.glb","checksum":"0df593ea787443641aa254ab844db3000b35d51ba7169e857e148aadc9a5a248","size":128684,"triangleCount":65536},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-049.glb","checksum":"490673b92c9bf8b4a645fa6af8b73fbb0973149e08505c35f2784076c4ad9e1a","size":128960,"triangleCount":65536},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-050.glb","checksum":"f22d17610e28a127f136da50efee350a107868cf74d60ca8a0af53ebf2538ea3","size":125968,"triangleCount":65536},{"id":"collision-051","fileName":"collision-051.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-051.glb","checksum":"e22206d0fdadc6466025e0e46ab4b86674ad533aaa4705bca5061d83b123ea45","size":123924,"triangleCount":65536},{"id":"collision-052","fileName":"collision-052.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-052.glb","checksum":"3e9c43282c1a98370ccdda331fbff6ae0f755fc92b7a1e20a80bdd7d4b4d3391","size":125012,"triangleCount":65536},{"id":"collision-053","fileName":"collision-053.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-053.glb","checksum":"025459483d6e34fd2cfbf5b702aa2e64566d8836846e3a8bc8e38d3fc4e4e5d5","size":124036,"triangleCount":65536},{"id":"collision-054","fileName":"collision-054.glb","url":"/assets/game/manastorm/908-alvaencounter/collision-054.glb","checksum":"1b67bf7d152acf8b41d21c8ba42c1da99d916be2c3682a1c5bca37a471ab5895","size":126888,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/908-alvaencounter/navigation.glb","checksum":"53747d3e8715e855beacd87a07d7d9f765fc493708221dda6dba5b8c29bff9b3","size":2873512,"triangleCount":243342}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[1813.5347,42.4602,2085.3968],"max":[2389.1348,100.8602,2274.3345]},"entrance":{"name":"Frozen Reach Entrance","footPosition":[1858.5347,78.8602,2229.3345],"forward":[0.9287946832465547,0,-0.370594706347692],"yaw":1.9504455648065726},"areas":[{"id":"entrance","name":"Frozen Reach Entrance","center":[1858.5347,78.8602,2229.3345],"radius":35},{"id":"area-alva","name":"Alva's Encounter","center":[2344.1348,62.4602,2134.3347],"radius":42}],"entities":{"entry-97700":{"id":"entry-97700","kind":"boss","name":"Creature 97700","title":"Dungeon Boss","hasLoot":true,"combat":{"level":1,"healthMultiplier":1.15,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"nature-surge","name":"Nature Surge","delivery":"area","target":"nearby-party","school":"nature","animation":"cast","range":22,"cooldownMs":5399,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":1.18,"archetype":"humanoid"}},"frozen-reach-guardian":{"id":"frozen-reach-guardian","kind":"mob","name":"Frozen Reach Guardian","hasLoot":false,"combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"holy-surge","name":"Holy Surge","delivery":"projectile","target":"primary","school":"holy","animation":"cast","range":26,"cooldownMs":6391,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":0.88,"archetype":"humanoid"}},"frozen-reach-caster":{"id":"frozen-reach-caster","kind":"mob","name":"Frozen Reach Invoker","hasLoot":false,"combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"arcane-surge","name":"Arcane Surge","delivery":"projectile","target":"primary","school":"arcane","animation":"cast","range":26,"cooldownMs":7736,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#584568","accentColor":"#d2aef0","scale":1.06,"archetype":"humanoid"}},"frozen-reach-brute":{"id":"frozen-reach-brute","kind":"mob","name":"Frozen Reach Brute","hasLoot":false,"combat":{"level":60,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":26,"cooldownMs":6892,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.015,"archetype":"humanoid"}}},"staticSpawns":[{"id":"encounter-2168","entityId":"entry-97700","position":[2344.1348,62.4602,2134.3347],"yaw":0,"spawnMask":1},{"id":"generated-trash-1","entityId":"frozen-reach-guardian","position":[1918.9347,79.3602,2205.2345],"yaw":0,"spawnMask":1},{"id":"generated-trash-2","entityId":"frozen-reach-caster","position":[1941.5462,79.5602,2197.013],"yaw":1.618,"spawnMask":1},{"id":"generated-trash-3","entityId":"frozen-reach-brute","position":[1967.4873,79.7602,2183.3047],"yaw":3.236,"spawnMask":1},{"id":"generated-trash-4","entityId":"frozen-reach-guardian","position":[1992.3517,79.9602,2177.5366],"yaw":4.854,"spawnMask":1},{"id":"generated-trash-5","entityId":"frozen-reach-caster","position":[2015.5747,80.1602,2166.6745],"yaw":0.1888,"spawnMask":1},{"id":"generated-trash-6","entityId":"frozen-reach-brute","position":[2038.1862,80.3602,2158.4531],"yaw":1.8068,"spawnMask":1},{"id":"generated-trash-7","entityId":"frozen-reach-guardian","position":[2119.8874,79.3882,2130.3968],"yaw":3.4248,"spawnMask":1},{"id":"generated-trash-8","entityId":"frozen-reach-caster","position":[2141.3318,77.8242,2134.3877],"yaw":5.0428,"spawnMask":1},{"id":"generated-trash-9","entityId":"frozen-reach-brute","position":[2161.1348,76.2602,2133.2846],"yaw":0.3776,"spawnMask":1},{"id":"generated-trash-10","entityId":"frozen-reach-guardian","position":[2180.3263,74.6962,2134.8221],"yaw":1.9956,"spawnMask":1},{"id":"generated-trash-11","entityId":"frozen-reach-caster","position":[2202.8474,73.1322,2130.8728],"yaw":3.6136,"spawnMask":1},{"id":"generated-trash-12","entityId":"frozen-reach-brute","position":[2224.2918,71.5682,2134.8637],"yaw":5.2316,"spawnMask":1},{"id":"generated-trash-13","entityId":"frozen-reach-guardian","position":[2244.0948,70.0042,2133.7607],"yaw":0.5664,"spawnMask":1},{"id":"generated-trash-14","entityId":"frozen-reach-caster","position":[2263.2863,68.4402,2135.2982],"yaw":2.1844,"spawnMask":1},{"id":"generated-trash-15","entityId":"frozen-reach-brute","position":[2285.8074,66.8762,2131.3489],"yaw":3.8024,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"encounter-2168","name":"Alva","position":[2344.1348,62.4602,2134.3347]}],"objectiveOrder":[{"id":"encounter-2168","name":"Alva","position":[2344.1348,62.4602,2134.3347]}],"navigationLinks":[],"serverGameObjects":[],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"patch-WB1/world/maps/alvaencounter":"5ab771df79c0e062cea3ebda4e416a9245bcf8a4cc6da048077df5e674081f97"},"databaseAdapter":"ascension-encounter-identities-with-procedural-population","sourceSnapshot":"dungeon-pipeline/work/frozen-reach/source-snapshot.json","coordinateTransform":"three(x,y,z)=(-wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["Creature bodies use explicit procedural fallbacks until the corresponding client display composites are exported.","Trash identities and placements are procedural; boss identities come from the installed Ascension encounter catalog."]}},{"schemaVersion":1,"id":"forgotten-mine","title":"Forgotten Mine","mapId":1781,"lfgDungeonIds":[],"expansion":"ascension","environmentMode":"adt-hybrid","difficultyVariants":[{"id":"manastorm","difficulty":"manastorm","spawnMask":1,"levelRange":[1,255]}],"defaultDifficultyId":"manastorm","availability":"available","presentation":{"location":"Forgotten Mine","theme":"Open-world expedition","summary":"Fight through Forgotten Mine, defeat its encounter roster, and keep the party alive.","loadingMessage":"Preparing Forgotten Mine...","unchartedAreaName":"Uncharted Forgotten Mine","background":"#080d0c","fog":{"color":"#0a1210","near":36,"far":756.13},"ambientLight":{"color":"#a8b49b","intensity":0.22},"hemisphereLight":{"skyColor":"#879c8a","groundColor":"#090b09","intensity":0.64},"directionalLight":{"color":"#d2c79d","intensity":1,"offset":[12,20,-7]},"materials":{"cutoutPatterns":["_B1$"],"cutoutNames":[],"blendPatterns":["_B2$"],"blendNames":[],"additivePatterns":["_B4$"],"additiveNames":[]},"map":{"width":430,"height":300,"padding":24,"contours":["M24 205 C86 118 142 247 208 171 S334 71 406 126","M38 239 C109 183 172 268 240 208 S344 96 397 77"]}},"assets":{"visual":[{"id":"visual","fileName":"visual.glb","url":"/assets/game/manastorm/1781-forgottenmine/visual.glb","checksum":"ccdb10f537b2cb81f88f51bc7895d27d5ce42b406b78e6b40a874c74b9ae7dd4","size":25014320,"triangleCount":1225870}],"collision":[{"id":"collision-000","fileName":"collision-000.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-000.glb","checksum":"9cd229c8887628d6652ce776c3d8b69dd9b076aefe1f26c46bc736e0385540ca","size":264892,"triangleCount":65488},{"id":"collision-001","fileName":"collision-001.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-001.glb","checksum":"81e8ceedadae432ad657b2b8a31a4bc4b6b01c48b28bc3920679d949807f203c","size":233140,"triangleCount":23441},{"id":"collision-002","fileName":"collision-002.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-002.glb","checksum":"7bd7d313372f4650a34f01e922a2aa675e1af7ac774ff1d9ea99afac1e639e64","size":45148,"triangleCount":1512},{"id":"collision-003","fileName":"collision-003.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-003.glb","checksum":"5e3a4988c89402c7f7ba8b6c848abe748e27787c561c3e2db8e4541f1779c430","size":98708,"triangleCount":6824},{"id":"collision-004","fileName":"collision-004.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-004.glb","checksum":"ee94acc527729af4602782754ef38e61d1e13f0c9f7b1bf9757cb5ae39ba2427","size":45212,"triangleCount":1512},{"id":"collision-005","fileName":"collision-005.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-005.glb","checksum":"e2a9462a9d1f65fc9507ca235ba447a7b95d36a488c76b22a8210245ea427706","size":62428,"triangleCount":3260},{"id":"collision-006","fileName":"collision-006.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-006.glb","checksum":"8deab6290ad0c8969ee8485b067f2d6df1808f7964d37c08823f805976034aa4","size":418364,"triangleCount":42014},{"id":"collision-007","fileName":"collision-007.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-007.glb","checksum":"0046d75b502fb0b2c632f70152131d5c6580700e50bf048cbbbe20e04bcedc86","size":98748,"triangleCount":6824},{"id":"collision-008","fileName":"collision-008.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-008.glb","checksum":"d3904f0c181eaee38b196248fe7c78360e029649b92f9917685a9206f7a6cff8","size":260356,"triangleCount":65536},{"id":"collision-009","fileName":"collision-009.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-009.glb","checksum":"246117b036b280e4d1ddaf08b78649e099e55fa6f0831bd93d83ca8756f4e286","size":45216,"triangleCount":1512},{"id":"collision-010","fileName":"collision-010.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-010.glb","checksum":"1f23fbb3f70b2bdb36155c920afe126d3299f971a688bf66a10313fed8008516","size":62460,"triangleCount":3260},{"id":"collision-011","fileName":"collision-011.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-011.glb","checksum":"9e8047b2bb9df8c2e05669265e6a7303c301f86962c1386285dd29c2883d6ec7","size":62432,"triangleCount":3260},{"id":"collision-012","fileName":"collision-012.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-012.glb","checksum":"6e728cc328bb667d0a41726fc1e3f440226f880be4ad8938b0f397cfe175da33","size":45196,"triangleCount":1512},{"id":"collision-013","fileName":"collision-013.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-013.glb","checksum":"3d0ff70a898425e4c5a4e1606bab68f7ae0b964a39d779b97a0c823c9e453f20","size":45264,"triangleCount":1512},{"id":"collision-014","fileName":"collision-014.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-014.glb","checksum":"81e8e21e8df712254c05361f143202590db80fc7760df8b1d0491ffa0b9fd9f1","size":98612,"triangleCount":6824},{"id":"collision-015","fileName":"collision-015.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-015.glb","checksum":"e40178c75c02adad2c44f4e9ece8139a9c0e3bde36f936c95967d4340f33a567","size":62468,"triangleCount":3260},{"id":"collision-016","fileName":"collision-016.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-016.glb","checksum":"a3040a1fc5084a80f8ea3e659c9168041140c291730b7066addd92cdb2edd80f","size":80368,"triangleCount":5673},{"id":"collision-017","fileName":"collision-017.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-017.glb","checksum":"6213883663eaf3985f4960d189cfc8e8edc37e3c69f2bc101edfa21daf8057f0","size":251496,"triangleCount":15284},{"id":"collision-018","fileName":"collision-018.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-018.glb","checksum":"7481a21f2157197cbb7019b120df6637ad2a6ab585a429c72c1b3a6bd62104c8","size":62440,"triangleCount":3260},{"id":"collision-019","fileName":"collision-019.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-019.glb","checksum":"bd4d87ff0fc6966930b30678542e0fcbd5f2f4e028d9b3705b90fd8722aad298","size":242440,"triangleCount":65536},{"id":"collision-020","fileName":"collision-020.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-020.glb","checksum":"a22f217d202ffdda6f1ba21ac6deaddae522bb579beaecd2fff2726206b45031","size":196740,"triangleCount":65536},{"id":"collision-021","fileName":"collision-021.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-021.glb","checksum":"121114c4e28267b31d41aaed21a60cd8d3b4686916e8b2d76dbd3883c6e52664","size":62464,"triangleCount":3260},{"id":"collision-022","fileName":"collision-022.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-022.glb","checksum":"038caf1c4d5fdd20450668a716b80ff9b112a873f1c04c678124ad692e554dbd","size":37664,"triangleCount":516},{"id":"collision-023","fileName":"collision-023.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-023.glb","checksum":"0fc24aadb753fd87aa288843b334e29044eba7991d29a2e2c169a5ef2ba333d1","size":177712,"triangleCount":16953},{"id":"collision-024","fileName":"collision-024.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-024.glb","checksum":"6af35d6e0e9c9c381d349128512d5e8595883083b8d0c2ff59a647760a79449f","size":37668,"triangleCount":516},{"id":"collision-025","fileName":"collision-025.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-025.glb","checksum":"76237cd0d8c62804d9243e9a0238ef29a8ce625ce623486de1c17c3ee5feed31","size":62452,"triangleCount":3260},{"id":"collision-026","fileName":"collision-026.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-026.glb","checksum":"0e24f2ed9555c4d5376994bea7f46e400e689aaacc1cee83a346645fadf3414b","size":33512,"triangleCount":152},{"id":"collision-027","fileName":"collision-027.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-027.glb","checksum":"db2330d391f392531151b10cd89a5240690d8a8cd184166fb82deab077b4c68c","size":50244,"triangleCount":1508},{"id":"collision-028","fileName":"collision-028.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-028.glb","checksum":"e02b0fb8d4176e1dcfee76d9a677bbb89a591da64e369808e90b94b99d1000d9","size":33500,"triangleCount":152},{"id":"collision-029","fileName":"collision-029.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-029.glb","checksum":"1eb94c699c3ef5af74d7a2ad7ae1d1ff55f1a0a2e3bc5c4f026b38b6b7506851","size":52772,"triangleCount":2010},{"id":"collision-030","fileName":"collision-030.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-030.glb","checksum":"1246025b514d4e518b9e5af8821f48ee888d605071068895e92d275602e662a9","size":62404,"triangleCount":3260},{"id":"collision-031","fileName":"collision-031.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-031.glb","checksum":"2aaba158e06c2c8abe42f389536360daed792a97f05174a5561e8fc821ce1579","size":37580,"triangleCount":516},{"id":"collision-032","fileName":"collision-032.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-032.glb","checksum":"9fba04022a650de69e32d26ea9ee2594c7776e4767432be77d5b9a360b4229ae","size":33500,"triangleCount":152},{"id":"collision-033","fileName":"collision-033.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-033.glb","checksum":"d622e7b077b82675ac387eae1753abf2fed971315bb04259c2e30fd38f4151aa","size":33512,"triangleCount":152},{"id":"collision-034","fileName":"collision-034.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-034.glb","checksum":"480a7eb95a415311579d21e6f4f00533dcdd6d9daa557d85a6b17605c126008e","size":45192,"triangleCount":1512},{"id":"collision-035","fileName":"collision-035.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-035.glb","checksum":"bb57e0e8fd20368f11dc42555b041625b4f59c8266fea6cdf14dc4d26c00ae37","size":50268,"triangleCount":1508},{"id":"collision-036","fileName":"collision-036.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-036.glb","checksum":"e9caba1d8ef4fbed7ce1a4e4624c9fabf53faac3a876f453b67209eacd9732aa","size":192636,"triangleCount":64976},{"id":"collision-037","fileName":"collision-037.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-037.glb","checksum":"901bdb462412a0986fda103db531f9891d3e5f283d5f4367c17770854014a2c9","size":32340,"triangleCount":40},{"id":"collision-038","fileName":"collision-038.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-038.glb","checksum":"0da7c57037b8da96d3efdc48190290ec83e6e1de90a6a795d4bff7b21213bfb6","size":40068,"triangleCount":576},{"id":"collision-039","fileName":"collision-039.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-039.glb","checksum":"569e2212a340026905ca61cf290e78196a34d5efe962482ace21508d3d10d473","size":40240,"triangleCount":547},{"id":"collision-040","fileName":"collision-040.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-040.glb","checksum":"6f9765da7daacae0e8cd73697f958c70f12fb2e4308f9263f13c9a5648018e43","size":32332,"triangleCount":40},{"id":"collision-041","fileName":"collision-041.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-041.glb","checksum":"e934e2bffb09029c0e80d09359c93579b77cf46e2eda60d849abfa5f1fe97b26","size":32344,"triangleCount":40},{"id":"collision-042","fileName":"collision-042.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-042.glb","checksum":"b86cb3bdf447eb01d92b1d690aa79b69f8d0c21733625c9e88bb17ee35e90ad5","size":35644,"triangleCount":318},{"id":"collision-043","fileName":"collision-043.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-043.glb","checksum":"bfa3ac43200cb6a7394daaac8a75e90262674d186eb3f710a722ce3081fc7580","size":33520,"triangleCount":152},{"id":"collision-044","fileName":"collision-044.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-044.glb","checksum":"7aaea1d42d2059a49b6e3b4b6199d9ecb1e145b81899764706fc8262c1c91dbe","size":32348,"triangleCount":40},{"id":"collision-045","fileName":"collision-045.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-045.glb","checksum":"ea4ad076dbcb6320b4230c7218c669ed2599ed23e52831b735009951de3b9ec9","size":32340,"triangleCount":40},{"id":"collision-046","fileName":"collision-046.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-046.glb","checksum":"5ae0316a15a40a3a73c1f866ecff958949845e354ad95b02ba6fbe739812fb8d","size":32348,"triangleCount":40},{"id":"collision-047","fileName":"collision-047.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-047.glb","checksum":"5c1c86fa8e8603ad442c167e053f11a87df982be6014a04a56f946b6ee2d57a1","size":32344,"triangleCount":40},{"id":"collision-048","fileName":"collision-048.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-048.glb","checksum":"8c861e34674d93da4856a57286353bc12eb964ecad0de31483c97f2317fa5a18","size":50152,"triangleCount":1877},{"id":"collision-049","fileName":"collision-049.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-049.glb","checksum":"a0abb2a40d35e6b782bf03859049af786a2465afbc81172ce1e7a612e11b8f64","size":32344,"triangleCount":40},{"id":"collision-050","fileName":"collision-050.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-050.glb","checksum":"ece9e6db7a25a722119338a721006e700295f5e2fb0f666ec31448c69f7ed6c0","size":32336,"triangleCount":40},{"id":"collision-051","fileName":"collision-051.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-051.glb","checksum":"a6e136f320087a89731853d8e60e41ef763be17a3f839a5208025a021d805845","size":40064,"triangleCount":576},{"id":"collision-052","fileName":"collision-052.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-052.glb","checksum":"b3068797232d66850407d4d84fc8f6b10a30274e922f32ca82f2b3fd919bc7ef","size":106124,"triangleCount":5258},{"id":"collision-053","fileName":"collision-053.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-053.glb","checksum":"80ae5e9f1862fae7d64c9947d8e461039bf922a1d9a52e692376f4c0ddd0e667","size":40092,"triangleCount":576},{"id":"collision-054","fileName":"collision-054.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-054.glb","checksum":"009f33c961f87f4ef57764e13865f003bc9fc9c473d6c58c3f5c0c25768ff32e","size":40056,"triangleCount":576},{"id":"collision-055","fileName":"collision-055.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-055.glb","checksum":"3b85b4e327f89bc3baf398cddec289baf43d20e94ed36bc03aba297038447286","size":41948,"triangleCount":762},{"id":"collision-056","fileName":"collision-056.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-056.glb","checksum":"d17ceeea0026d3c0ebac66bf80528b7e96d7c5d21f6ca5cb8fb007f34d79e1ed","size":32344,"triangleCount":40},{"id":"collision-057","fileName":"collision-057.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-057.glb","checksum":"029f62d0de0bcbf2065f4c3fc17919988a07780ae1e8054f98ef4769c1864c58","size":32348,"triangleCount":40},{"id":"collision-058","fileName":"collision-058.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-058.glb","checksum":"e6d8154863f7e6b6580545bfaace542b33852d579e7f676bec5655f8d7042ffa","size":41972,"triangleCount":762},{"id":"collision-059","fileName":"collision-059.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-059.glb","checksum":"0f9fd26d19af27611a7cc4b37b2d08ccd2da6b45b2d7423e20fc96467e3d6e26","size":32348,"triangleCount":40},{"id":"collision-060","fileName":"collision-060.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-060.glb","checksum":"c91509a6fea8da434304153f5540ea21606c25572baa373c7a7e60b12cce8358","size":40304,"triangleCount":547},{"id":"collision-061","fileName":"collision-061.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-061.glb","checksum":"7cbfc9011d4d0210775af70a6f6eb9a93061bbda8fd8ef1400ecb17bb58bd812","size":32336,"triangleCount":40},{"id":"collision-062","fileName":"collision-062.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-062.glb","checksum":"eca547bd7ba1c8f7c25e79738483e4dc4192efacbe701c60e8159a3e45f002f2","size":32328,"triangleCount":40},{"id":"collision-063","fileName":"collision-063.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-063.glb","checksum":"a39f858bd65540306b8a4f416a5abc301c0cb02e56cb4d91d51a29fafba76edb","size":32340,"triangleCount":40},{"id":"collision-064","fileName":"collision-064.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-064.glb","checksum":"3cb2b5ffa94aa94ae1d458ff60f3cdbcbd79f51c950b7bb1dc6ec17bf902ec24","size":32336,"triangleCount":40},{"id":"collision-065","fileName":"collision-065.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-065.glb","checksum":"22ec4844a77442e49be79730c151eeb21d6a43b88ded566a28bfa0c2c444e854","size":32348,"triangleCount":40},{"id":"collision-066","fileName":"collision-066.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-066.glb","checksum":"b5be35385ed756f7189d37c6eea89f265422762d49e5b5dcbbd89c915401cfc0","size":32344,"triangleCount":40},{"id":"collision-067","fileName":"collision-067.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-067.glb","checksum":"a78d9429a80ec3dc10e13ba8ca10a028a10a93157d12b33a7581466a399d34f9","size":32324,"triangleCount":40},{"id":"collision-068","fileName":"collision-068.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-068.glb","checksum":"6958846ef95b308b5907b9e7f278e86fd9ab9d8fe288b8dadf8bbf4e03dc1294","size":40108,"triangleCount":576},{"id":"collision-069","fileName":"collision-069.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-069.glb","checksum":"cd48dc551abc0a87d07d8ffed55f3310346e2d4e42e1a77e08c44dcdc2d901ce","size":32340,"triangleCount":40},{"id":"collision-070","fileName":"collision-070.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-070.glb","checksum":"8173004ca447eb85edf653c5a724e3a90a9927af66c2889125114afe0b3ec899","size":32344,"triangleCount":40},{"id":"collision-071","fileName":"collision-071.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-071.glb","checksum":"afa5ab6e77baab2dc9c57b0f5012d70e215072bd3548a15141d46af31fe9a6c9","size":32344,"triangleCount":40},{"id":"collision-072","fileName":"collision-072.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-072.glb","checksum":"3a128f20720e5a7ffc6cf3a4d30b3672975b40f7dc63b967d3e673dca725190b","size":40100,"triangleCount":576},{"id":"collision-073","fileName":"collision-073.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-073.glb","checksum":"81445baffeddb9aae6a45ee214bb41ec36a8eca829cd7f45f9b15070f22a967d","size":32340,"triangleCount":40},{"id":"collision-074","fileName":"collision-074.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-074.glb","checksum":"c58545e86f9609599a797d3d97c81b5a0b0202b33a2b8d35fa4acf22fececf91","size":33500,"triangleCount":152},{"id":"collision-075","fileName":"collision-075.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-075.glb","checksum":"f93f3b4660e17082da85aeb84d2bed51398000c079212f981c6c59e16adfb60b","size":40236,"triangleCount":547},{"id":"collision-076","fileName":"collision-076.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-076.glb","checksum":"bb8de2ec71fed15a8ad271e4d41344348fd57c0980ad53d175d8f063d7fe484c","size":32336,"triangleCount":40},{"id":"collision-077","fileName":"collision-077.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-077.glb","checksum":"abd3df25c12698f64de44f121ed715f74a07437903e914a29d5020e395e60448","size":33584,"triangleCount":136},{"id":"collision-078","fileName":"collision-078.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-078.glb","checksum":"db4ec0a06cafe51256fe99dda375d3243d78c4b16c6046c80812687634f8d328","size":37584,"triangleCount":516},{"id":"collision-079","fileName":"collision-079.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-079.glb","checksum":"9d29aadfc906be490a5154382136a78ef5e8e0d9017e59ebe481ee61e98f9e94","size":37572,"triangleCount":516},{"id":"collision-080","fileName":"collision-080.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-080.glb","checksum":"3c81dfa4fe812c0386e31402eeef3b8e334f72691ecc9491618d753d36603311","size":40192,"triangleCount":547},{"id":"collision-081","fileName":"collision-081.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-081.glb","checksum":"226f50e8429dd879a417528795daa978b4981862bb3c16c80b9e36bc2403f011","size":32340,"triangleCount":40},{"id":"collision-082","fileName":"collision-082.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-082.glb","checksum":"0151b7f895ac1007f369c90327ebe6d9e6f6d122ff81b15eab2c400002707868","size":40208,"triangleCount":547},{"id":"collision-083","fileName":"collision-083.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-083.glb","checksum":"6092f5b8ba70957f3106f57df1d50888779076fde19ed69b409c786dd2a30ae6","size":34136,"triangleCount":192},{"id":"collision-084","fileName":"collision-084.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-084.glb","checksum":"1b89682007e7c4310beef74e545b314d5f4099fc0cc84476ff0c74c22e579c30","size":32344,"triangleCount":40},{"id":"collision-085","fileName":"collision-085.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-085.glb","checksum":"398bead92d98cfa45d39d1069e29aae1a6f3bbe1522b244dbf5be4be80f6afe2","size":62472,"triangleCount":3260},{"id":"collision-086","fileName":"collision-086.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-086.glb","checksum":"3994808dd08dc44eebf26685ccaa8ad8644ae4596689cb3979a9581b72ed92c7","size":32340,"triangleCount":40},{"id":"collision-087","fileName":"collision-087.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-087.glb","checksum":"1be66b925ecdecc3ade23fa52f8de8cd5e597f35bd85537ee56b5b070175efdd","size":42016,"triangleCount":762},{"id":"collision-088","fileName":"collision-088.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-088.glb","checksum":"1c050dc4426259333a2afca25d23906065d9b9dd9e85681fd8d3bb2fae4b8265","size":32348,"triangleCount":40},{"id":"collision-089","fileName":"collision-089.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-089.glb","checksum":"3fad0136e23c78eaa56f7ffc10418adcdec3ded1aa487d023fcea323e35b9397","size":40044,"triangleCount":576},{"id":"collision-090","fileName":"collision-090.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-090.glb","checksum":"58ef38b3fdf6e4572a0d45125215d4af7c895c98bfee8b2fcf114095c29f113c","size":40048,"triangleCount":576},{"id":"collision-091","fileName":"collision-091.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-091.glb","checksum":"1c0b9282d2850a0adea7a792ed8ad3f32a38912c04d62244f0273713ca092554","size":40120,"triangleCount":547},{"id":"collision-092","fileName":"collision-092.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-092.glb","checksum":"056889e7c3b1b645e22742549bc59f86eba1e404b15d964afcfabea035e191e0","size":40292,"triangleCount":547},{"id":"collision-093","fileName":"collision-093.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-093.glb","checksum":"0c292e993a939b299f5dcd7482e3faaf0d4bcccccd2842e442625c93947c9651","size":32348,"triangleCount":40},{"id":"collision-094","fileName":"collision-094.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-094.glb","checksum":"34c395195d8580144d9d2c5f64a0700e86c63109bac25f34371f12754a5a784b","size":33536,"triangleCount":152},{"id":"collision-095","fileName":"collision-095.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-095.glb","checksum":"01dc7d729e363c1fcb9d134187d3dc45db66f7dc664f42f572aaa29995729cc1","size":32352,"triangleCount":40},{"id":"collision-096","fileName":"collision-096.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-096.glb","checksum":"ab21833cfd17d899168bac35ab6d51f31ad35d8bb002526056b1e48c162c2549","size":32340,"triangleCount":40},{"id":"collision-097","fileName":"collision-097.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-097.glb","checksum":"b98e3c576d3e31e1eacb76701e5c0e66023935dd7942a685072f4f7a5d3e56ee","size":32344,"triangleCount":40},{"id":"collision-098","fileName":"collision-098.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-098.glb","checksum":"9ea8f1cbd2316c707d8d65fd51750a40e911551146dceb54beebfef83fb51d12","size":32340,"triangleCount":40},{"id":"collision-099","fileName":"collision-099.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-099.glb","checksum":"89d8d24100957e2125ea7390432e1518f1c67dd54c9317802ae7bdd7dc074d21","size":62444,"triangleCount":3260},{"id":"collision-100","fileName":"collision-100.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-100.glb","checksum":"73435d9e361ecdbb170c69759704c7c021a6de70a41c2d5ec7a166a3a73aaf99","size":37632,"triangleCount":516},{"id":"collision-101","fileName":"collision-101.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-101.glb","checksum":"f5bfe72da12579a0f4a19f28a2639bb3c201451204cf4eebde0e1266fb5c80ab","size":32348,"triangleCount":40},{"id":"collision-102","fileName":"collision-102.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-102.glb","checksum":"c4e3e1f088f2c767ea193bca939e95f3918b86d3f8060689f5a6b0ff1d7ddbc5","size":32344,"triangleCount":40},{"id":"collision-103","fileName":"collision-103.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-103.glb","checksum":"ba9f579238d8fd71d1d238b5761cb1aa22f4657b3d8cae4dc35cbb755dc6eb18","size":32352,"triangleCount":40},{"id":"collision-104","fileName":"collision-104.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-104.glb","checksum":"5bd4f39880f58021e0031c7cdf7a861ca484e026a515e44a310a17a2868f026a","size":33588,"triangleCount":136},{"id":"collision-105","fileName":"collision-105.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-105.glb","checksum":"73761c8de431f6e13c442945503becdcc71ba93d4e5c1ecf23dd6cad896baa75","size":40188,"triangleCount":547},{"id":"collision-106","fileName":"collision-106.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-106.glb","checksum":"8af5c307edd94b8a28c4ef6ae8dc3f4ffe683c5111e0a172b72350ad33e2ece6","size":42044,"triangleCount":762},{"id":"collision-107","fileName":"collision-107.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-107.glb","checksum":"cc98206cd4994ef172227477800b9280ec4fa994b27fad38b9226f11e0b0c354","size":32348,"triangleCount":40},{"id":"collision-108","fileName":"collision-108.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-108.glb","checksum":"891c797fd5e7c6910921a644411cd650717ad37f55c8ea315f9186bd90913510","size":32344,"triangleCount":40},{"id":"collision-109","fileName":"collision-109.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-109.glb","checksum":"3129384b62d6ff49c4d1bdaa6b4072f1390747b844b4a5e44d09c685b4436173","size":32348,"triangleCount":40},{"id":"collision-110","fileName":"collision-110.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-110.glb","checksum":"d22a3abd2ba8c077f6b38ea91cc41537fd9b1053ef797a54945ca131a8ec181a","size":53904,"triangleCount":1906},{"id":"collision-111","fileName":"collision-111.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-111.glb","checksum":"fbcd82a2dba23cc74ff905f0bd07e8f99b347c86609c769636c3dd64b62344ff","size":40200,"triangleCount":547},{"id":"collision-112","fileName":"collision-112.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-112.glb","checksum":"395aa673aebe944f91ea5f6960f588d83a8a46d90428c060e629b76951dcba86","size":37480,"triangleCount":516},{"id":"collision-113","fileName":"collision-113.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-113.glb","checksum":"f975bd7c195c6b337415cc7dec819b79c09fec1462905cc3154a71680d3576f3","size":32340,"triangleCount":40},{"id":"collision-114","fileName":"collision-114.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-114.glb","checksum":"de72ddac53d07c59903266dee7545f0fcf7d2c15876eef53e60b12a1803e1ecb","size":40072,"triangleCount":576},{"id":"collision-115","fileName":"collision-115.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-115.glb","checksum":"a8a5a2f0f51fd085410a9b03fac576c8bcaf5eb8b0a909a1d49d5f9a3e15968f","size":32340,"triangleCount":40},{"id":"collision-116","fileName":"collision-116.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-116.glb","checksum":"86f768f4acb2c61c1ec4f6087379066bd655128a049855e22f93474b62893dd9","size":51616,"triangleCount":1296},{"id":"collision-117","fileName":"collision-117.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-117.glb","checksum":"fb86571fa9d4144b9c7ff4b5247ed7ef655672c23329fcbc26e31181f16582fb","size":40068,"triangleCount":576},{"id":"collision-118","fileName":"collision-118.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-118.glb","checksum":"b65ca81a86b1ebeca5a78f6aeaa4325f99b20084c6c862484604bcbead13b3b7","size":32352,"triangleCount":40},{"id":"collision-119","fileName":"collision-119.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-119.glb","checksum":"39748d31edb59e22bde58a9e9133635ca359a7f74a38cf110059a36537d1e992","size":32344,"triangleCount":40},{"id":"collision-120","fileName":"collision-120.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-120.glb","checksum":"88dfaf493af2dd5cd5a67d26d129e03b5041e07d3ceb093aaab68b9ea7defc18","size":32352,"triangleCount":40},{"id":"collision-121","fileName":"collision-121.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-121.glb","checksum":"72cffda52df9c6d6fe8edc0b218c05a00b869841ffd713967dda64597341bbd4","size":32324,"triangleCount":40},{"id":"collision-122","fileName":"collision-122.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-122.glb","checksum":"c058ad28143b060d52e1c6309bced98a560e141277c1035629b72df69ef4de68","size":32332,"triangleCount":40},{"id":"collision-123","fileName":"collision-123.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-123.glb","checksum":"a783a955a40e8bf1cd59f8ca04e388cac9998b0050dac1b9196abb6a84527e76","size":34140,"triangleCount":192},{"id":"collision-124","fileName":"collision-124.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-124.glb","checksum":"6b581982a3aded38f3606cde7e6e5d6eaff81a9ecbc96cc8a6d5f7b49b5eab22","size":40160,"triangleCount":547},{"id":"collision-125","fileName":"collision-125.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-125.glb","checksum":"3dc184f32b3344a9773828a2de1cdbd861a6088881097ba9492ec226408f6e6f","size":40168,"triangleCount":547},{"id":"collision-126","fileName":"collision-126.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-126.glb","checksum":"fbad4245eb3c739cebb09725963bb9c23913296048d2033a5bacaae9441313ec","size":40096,"triangleCount":576},{"id":"collision-127","fileName":"collision-127.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-127.glb","checksum":"f047f1ac2b02bc0fb2bc718d391eeea01efcc9e489fa26e733f716de4c82f087","size":34120,"triangleCount":192},{"id":"collision-128","fileName":"collision-128.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-128.glb","checksum":"6f7b75a180d4795b1654e0b7d006749008e81b545467a09ce12859ab691781ec","size":32344,"triangleCount":40},{"id":"collision-129","fileName":"collision-129.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-129.glb","checksum":"48c1900456d71f058f1045396e75ded01c02ff37efdccd59c2bbcc7a0ab5d4d6","size":32344,"triangleCount":40},{"id":"collision-130","fileName":"collision-130.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-130.glb","checksum":"28ca760e3379aa7e8c5ff8bc9ab401829905f9079e164f3cb25b64b7ca1bf919","size":33584,"triangleCount":136},{"id":"collision-131","fileName":"collision-131.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-131.glb","checksum":"2d4e4981dfd15c9a5369e39f7b811f9efcb0f9c081e7304d7b5c66b4873ff74d","size":40100,"triangleCount":576},{"id":"collision-132","fileName":"collision-132.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-132.glb","checksum":"c010be5462edb29bf891a4072b4666f2e17ed6de2bed4227dad5d99840bbd40c","size":40000,"triangleCount":576},{"id":"collision-133","fileName":"collision-133.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-133.glb","checksum":"dc499df3b84950c0af2283eb985d4e7e1b247d2e9209b5b906e10252070aa5b7","size":32340,"triangleCount":40},{"id":"collision-134","fileName":"collision-134.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-134.glb","checksum":"a49757576328497d39da46548f854e0a6a9c0fe1079063f9263a23ee140d69ba","size":52784,"triangleCount":2010},{"id":"collision-135","fileName":"collision-135.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-135.glb","checksum":"98731e26671b82838989ffbc6ddb8ca301207eff51e57e995a8240ff9bebb627","size":40276,"triangleCount":547},{"id":"collision-136","fileName":"collision-136.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-136.glb","checksum":"380371300631ce4ebba2371c4cddaad3032eee2085fc1cc40107145d337fa229","size":42036,"triangleCount":762},{"id":"collision-137","fileName":"collision-137.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-137.glb","checksum":"ebde3fd093f8741c5b4ef977a456cf18d22f724aae30bfe7e01206438b9418a5","size":32332,"triangleCount":40},{"id":"collision-138","fileName":"collision-138.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-138.glb","checksum":"b4e64b9bc81312f9ec7711112159e0c1d9bdb898041d3ab187ff96d3bab15be9","size":62464,"triangleCount":3260},{"id":"collision-139","fileName":"collision-139.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-139.glb","checksum":"88c086deeaf4f3114db278d29d23c6299ff6ca0c6449d2481237f33acb11e04c","size":37588,"triangleCount":516},{"id":"collision-140","fileName":"collision-140.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-140.glb","checksum":"0c6d4adfce03e9af846a6542640a78ea220b8a80cfe79054ad42cce20b7a5617","size":32344,"triangleCount":40},{"id":"collision-141","fileName":"collision-141.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-141.glb","checksum":"30986a77f26c59034f991a9f98b0846d89ffbe6164cc00e49a86aa9d7d486ba2","size":32336,"triangleCount":40},{"id":"collision-142","fileName":"collision-142.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-142.glb","checksum":"b9b4dd01a2776cde3ec1a06b982650bdec1a55b251129bd49b47aa23f432690c","size":32348,"triangleCount":40},{"id":"collision-143","fileName":"collision-143.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-143.glb","checksum":"7682d39cdd84be9ad06141dae2fa5c01e557e036c9752930a886a5a8c9653a88","size":32336,"triangleCount":40},{"id":"collision-144","fileName":"collision-144.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-144.glb","checksum":"7d0a31f616d7725eb78e6ef4525b1f5257af02551ef598a770818ca775275b1a","size":32344,"triangleCount":40},{"id":"collision-145","fileName":"collision-145.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-145.glb","checksum":"4f905d7ebeb716d7757c10a6df582430c2e01649a04f9f6f83d89c43f0f5753f","size":40048,"triangleCount":576},{"id":"collision-146","fileName":"collision-146.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-146.glb","checksum":"4e6df24025559f8b1dd52a8216e7430fdfffca0f5e951fd8416ebc2c8d018070","size":40256,"triangleCount":547},{"id":"collision-147","fileName":"collision-147.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-147.glb","checksum":"f4b8292604f8af220812534116341438c8a67cb4127e879887588b84fe23e465","size":32332,"triangleCount":40},{"id":"collision-148","fileName":"collision-148.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-148.glb","checksum":"5ce210dbb63666b97b63d096a5591e61d27a77bc1a2c96adf5686f0d0eb7012c","size":32340,"triangleCount":40},{"id":"collision-149","fileName":"collision-149.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-149.glb","checksum":"28f5b15b7ae6eb1bfc40371a8cdd86210b0f322217979321a8eb74a44c6b038d","size":62288,"triangleCount":2760},{"id":"collision-150","fileName":"collision-150.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-150.glb","checksum":"fcf563d450b88f5d1eceb562bb16bd6a7bc752029c0502718446c7635251df43","size":32336,"triangleCount":40},{"id":"collision-151","fileName":"collision-151.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-151.glb","checksum":"4bd74987d0d63360600dbccc2848b5c57eaf993d87c3a7f3254e5442fe0955a5","size":37572,"triangleCount":516},{"id":"collision-152","fileName":"collision-152.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-152.glb","checksum":"a6bb6bad2705197c3ec1deb0970bda5f83096437cd63897a800c4a4a0a15f007","size":42576,"triangleCount":918},{"id":"collision-153","fileName":"collision-153.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-153.glb","checksum":"281710bb2b0053cd1c374aec03bff63624b9f6fc34039376c062c555551d4a51","size":32348,"triangleCount":40},{"id":"collision-154","fileName":"collision-154.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-154.glb","checksum":"0473fb3999a0e894393a9085c897fc3b6a2c2fa61a6dab55110c05c3867ca7ee","size":35648,"triangleCount":318},{"id":"collision-155","fileName":"collision-155.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-155.glb","checksum":"f7f3b1f234d221453884a269bc6a288da8ba39ccda1ba5ec858c705bc5fa5561","size":32356,"triangleCount":40},{"id":"collision-156","fileName":"collision-156.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-156.glb","checksum":"ce1dd0e735969aaea866c961c7c2993ef59b241d5289d4e1091d7a3267ba1fca","size":32336,"triangleCount":40},{"id":"collision-157","fileName":"collision-157.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-157.glb","checksum":"90b6790ae8d4ae803465512c812f61f0ea80cc79fd8f5156870132a8872d7fa3","size":34112,"triangleCount":192},{"id":"collision-158","fileName":"collision-158.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-158.glb","checksum":"eb31abbfb8786f230a902d2610b58275f2f12f39d26e8ff6b7ce865b18732f15","size":62420,"triangleCount":3260},{"id":"collision-159","fileName":"collision-159.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-159.glb","checksum":"6e8348c03eb1c712fee08870f75fa701499d343f67ce79acd94dc0b6d01c2fcb","size":32340,"triangleCount":40},{"id":"collision-160","fileName":"collision-160.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-160.glb","checksum":"faebf74897f9f4e03e6af8153469e2f0d9ad014a46fc67074433678eebda7d21","size":40200,"triangleCount":547},{"id":"collision-161","fileName":"collision-161.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-161.glb","checksum":"748c2862a072a5f75710b95b1d118062c3e63b9bad589f0326ee23577271280c","size":32340,"triangleCount":40},{"id":"collision-162","fileName":"collision-162.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-162.glb","checksum":"1fc17f2c40b00f99f0442153cc711e84d3042346915991eca560aeec36a9cac2","size":37508,"triangleCount":516},{"id":"collision-163","fileName":"collision-163.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-163.glb","checksum":"9d617d17cb10ed7489563a5626711f4d21ac4a4e7210fb0957b6b2f38ae3cfbe","size":32340,"triangleCount":40},{"id":"collision-164","fileName":"collision-164.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-164.glb","checksum":"9ac75d59999433f3572015fc551c0bc2395a12800d4aac84628c2d2fde2c27c6","size":39960,"triangleCount":576},{"id":"collision-165","fileName":"collision-165.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-165.glb","checksum":"9d51b3db3f8f201cef8433c39fdf601fd8e5f14b48ea34b48e6fd0574758c481","size":37584,"triangleCount":516},{"id":"collision-166","fileName":"collision-166.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-166.glb","checksum":"1a58c8878a8dd30660ee6c9094d6c2dd40bfd92fed968c73c0baf9a35d1355fb","size":53908,"triangleCount":1906},{"id":"collision-167","fileName":"collision-167.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-167.glb","checksum":"20c7c6912638afb6e66a22c818758f22fe86fb8bd69b1829a38b09662e6db2f7","size":40248,"triangleCount":547},{"id":"collision-168","fileName":"collision-168.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-168.glb","checksum":"407398ee35a4dbe5158c07571109529519ee7e963b0a2e6e482c5a50ddebe263","size":32348,"triangleCount":40},{"id":"collision-169","fileName":"collision-169.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-169.glb","checksum":"97ee34bc43de7d5a3e2b7e5fc6a7f1fe534f4e2a29b4ffdfa62ab357b28b336c","size":51620,"triangleCount":1296},{"id":"collision-170","fileName":"collision-170.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-170.glb","checksum":"285a5c9bf3d45c369b284dd8623afd0d0570c3730a05d977b042527c43085aa8","size":32344,"triangleCount":40},{"id":"collision-171","fileName":"collision-171.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-171.glb","checksum":"5dde99c13e673d7ba1172d6c770fdbc0a1929e7ab6fbc5a45a1118df2aca03d5","size":40096,"triangleCount":576},{"id":"collision-172","fileName":"collision-172.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-172.glb","checksum":"61b507df7a4024f72f8cfa8e6a7d28f371e7cf63c6cf66c76c57079a1bb3eb62","size":40128,"triangleCount":547},{"id":"collision-173","fileName":"collision-173.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-173.glb","checksum":"c033d9705fffb77d7d543cd8c6ab90f6d7e04ea3d604601484b38b2781493893","size":35636,"triangleCount":318},{"id":"collision-174","fileName":"collision-174.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-174.glb","checksum":"3e0ce597fb41c586f0c808cbeadba6306410211a67311fd4f658f0c6687ed856","size":37528,"triangleCount":516},{"id":"collision-175","fileName":"collision-175.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-175.glb","checksum":"1f6db28869552b7ca10a20e23eb0c34d0eca2d4e176d8afff44b98c55f2f4252","size":37560,"triangleCount":516},{"id":"collision-176","fileName":"collision-176.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-176.glb","checksum":"6054f14a1c5db02da6bded19a62958ce67a532699e41abc30d82d5ad5fba1dfa","size":32348,"triangleCount":40},{"id":"collision-177","fileName":"collision-177.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-177.glb","checksum":"8cba5254f7f8145a6950a923c006ce34b3d76642677dec1b4ce85f614ec599b1","size":32340,"triangleCount":40},{"id":"collision-178","fileName":"collision-178.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-178.glb","checksum":"6b54cdaf40782775e41eb88e80b1c7410c5225f5f9b9bd3c27fc9217c4290144","size":34124,"triangleCount":192},{"id":"collision-179","fileName":"collision-179.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-179.glb","checksum":"c072220c78db67e9546ad62a2dfa469532b61c20cab6f8a653f2b2d21bd08d08","size":32344,"triangleCount":40},{"id":"collision-180","fileName":"collision-180.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-180.glb","checksum":"a7c3dcff359b37078ec25181fd239dcc9fd0be507f102298b81766af88e7c33c","size":32348,"triangleCount":40},{"id":"collision-181","fileName":"collision-181.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-181.glb","checksum":"4397e447757358a9d89187eef62bc0b0af24c1037d52cf5b8436b4e4b3c86492","size":32340,"triangleCount":40},{"id":"collision-182","fileName":"collision-182.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-182.glb","checksum":"ef06b0558cca185fd1cf12189100102df05f2783076089d3f65aa4f1c66aa98f","size":32340,"triangleCount":40},{"id":"collision-183","fileName":"collision-183.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-183.glb","checksum":"9878d54506481c9b4805c310c75a1a5d09028eb1c707945f0bc6fcbcb24b63bd","size":40192,"triangleCount":547},{"id":"collision-184","fileName":"collision-184.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-184.glb","checksum":"d3d5b3fcba563ced57aff328b02f4c1350256cd02c9cfd440d336331c91b9431","size":34148,"triangleCount":192},{"id":"collision-185","fileName":"collision-185.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-185.glb","checksum":"08dc69a5e8b9e9d0af21cf058dd6ef4bd87fc6005a76ba54e4b441eb72af23a8","size":40084,"triangleCount":576},{"id":"collision-186","fileName":"collision-186.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-186.glb","checksum":"493fffa2691b3e731ea7dd2509b3df739e0c8c66a54aef1e5f72438482e589d9","size":32344,"triangleCount":40},{"id":"collision-187","fileName":"collision-187.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-187.glb","checksum":"c84c71ee8c6a7834b6642db6fad91c04fec0f2cdd7513c4109109e545085e15c","size":32344,"triangleCount":40},{"id":"collision-188","fileName":"collision-188.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-188.glb","checksum":"6bfc51742faf3b53565be9a485fe592d9fd2babbc7c060a78060434f004b9a90","size":40100,"triangleCount":576},{"id":"collision-189","fileName":"collision-189.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-189.glb","checksum":"6872dd0e65dcd527cc6a21661d7f4e051b8899dad9a10a163248e562e64c7258","size":32344,"triangleCount":40},{"id":"collision-190","fileName":"collision-190.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-190.glb","checksum":"7f0441086288c1190c276b395b93e2bf0ba33b10e3c7fa8f67615845d5b791c0","size":32352,"triangleCount":40},{"id":"collision-191","fileName":"collision-191.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-191.glb","checksum":"844516cce0c071eb5284d9d1df07fc11ca593364c12b54e91dd1bf748a0a8934","size":32348,"triangleCount":40},{"id":"collision-192","fileName":"collision-192.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-192.glb","checksum":"a0d58087fd18df8b9107f71897cd720cca74eb6c508149de19b5900141c7bcef","size":32340,"triangleCount":40},{"id":"collision-193","fileName":"collision-193.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-193.glb","checksum":"11ecee417cd578c93cad49ad0eeb178a271ca6f55fcb6a207c01b99536597535","size":37592,"triangleCount":516},{"id":"collision-194","fileName":"collision-194.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-194.glb","checksum":"f411ab8471ddf8108a04682870f1f5db8be89390527584b052e9458c2ba1fc96","size":40296,"triangleCount":547},{"id":"collision-195","fileName":"collision-195.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-195.glb","checksum":"874f25f920a9e463a284b1f61b4b604c50adb212410e0cfe9e323c3c28772fae","size":51616,"triangleCount":1296},{"id":"collision-196","fileName":"collision-196.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-196.glb","checksum":"7b7de906cf327065035bed35e924e31dbba674311a88d8f4ca91f7f81c25b2cf","size":40072,"triangleCount":576},{"id":"collision-197","fileName":"collision-197.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-197.glb","checksum":"d6bbcbeb4dae038045f043c369547d62994df91528b25da18cc8d8b01b9b2202","size":32340,"triangleCount":40},{"id":"collision-198","fileName":"collision-198.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-198.glb","checksum":"feb3da8468bfdf7d5bd668e96c07b6ebd0dc57596de62a6d7d66fed970a78d13","size":32344,"triangleCount":40},{"id":"collision-199","fileName":"collision-199.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-199.glb","checksum":"8957001fa832c6a33123d1259144d61a39cebb88b11d180055dd0ef24d481c31","size":40084,"triangleCount":576},{"id":"collision-200","fileName":"collision-200.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-200.glb","checksum":"f706e7c62658c839ce3fb78f6bc400f9eff046428624393415275fa08ae1b528","size":32344,"triangleCount":40},{"id":"collision-201","fileName":"collision-201.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-201.glb","checksum":"d3e93b75162e783c8ecb4b32f5f37137a6f75a41bb10275b3162af5bfad65f03","size":32344,"triangleCount":40},{"id":"collision-202","fileName":"collision-202.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-202.glb","checksum":"020e5e015ff16ec03304fa1bc7c50c8bfd82f6cfc9afa7b3f34e255ae57506df","size":32348,"triangleCount":40},{"id":"collision-203","fileName":"collision-203.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-203.glb","checksum":"7f2ae8b27e02e1e15648fb832f6d29d51d25f9d9d5335ded25ad60ce588c5f41","size":32340,"triangleCount":40},{"id":"collision-204","fileName":"collision-204.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-204.glb","checksum":"4da57dc9bafbc60571388f1879ffcad4709833ad4ff0d0c8787d5e417a56e0b0","size":32336,"triangleCount":40},{"id":"collision-205","fileName":"collision-205.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-205.glb","checksum":"0079f988c758a26a45274f82183e2b8a1397d3af0e4a1a0df061183ea4ccee5d","size":32344,"triangleCount":40},{"id":"collision-206","fileName":"collision-206.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-206.glb","checksum":"4bb2b1a5d54428a4d9e592a3e5c98b73c4389fe82f67bb4e0aab9b849d73c702","size":40116,"triangleCount":576},{"id":"collision-207","fileName":"collision-207.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-207.glb","checksum":"fdcbe8936d227f3bef4013769ff8e5954287572e9da4b8ef443e5406a9e3583e","size":32340,"triangleCount":40},{"id":"collision-208","fileName":"collision-208.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-208.glb","checksum":"825e79ceb3616862cba7c200b0960496035b9337323c6cfdc53ee28901201b0f","size":40096,"triangleCount":576},{"id":"collision-209","fileName":"collision-209.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-209.glb","checksum":"ada470eb24e2bf63410954539ee8dbfa7520ee2516b95b757b0f22bd8ec157d7","size":40152,"triangleCount":547},{"id":"collision-210","fileName":"collision-210.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-210.glb","checksum":"ec7b1a4474865f0468b44015f29bb1d89550f014e0029dcd1d6dd20e3212fba9","size":32336,"triangleCount":40},{"id":"collision-211","fileName":"collision-211.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-211.glb","checksum":"12e5014a34c8d0e2dbc9a00e1870c11f71c64e1152ab0df3086b2f118237320f","size":32360,"triangleCount":40},{"id":"collision-212","fileName":"collision-212.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-212.glb","checksum":"ff8498e4fb628d202e587e35e1e735e901776946ead6747e526baa0aa811de43","size":40100,"triangleCount":576},{"id":"collision-213","fileName":"collision-213.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-213.glb","checksum":"72ece23874d1d7a105582513ebf2eb244dc3e5de299cdcf81dfcd5a938ddf071","size":48280,"triangleCount":1467},{"id":"collision-214","fileName":"collision-214.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-214.glb","checksum":"158b487072b2b980e871ebdfd145b390be5cf9353f561f9a0a83cfd6bf40378d","size":32352,"triangleCount":40},{"id":"collision-215","fileName":"collision-215.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-215.glb","checksum":"057da5113b6944e6851aa3525603e24fa43a78fb7f157f28352bc01ae2c70904","size":35660,"triangleCount":318},{"id":"collision-216","fileName":"collision-216.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-216.glb","checksum":"6042641fd3e214295d9eb62b2054112925e199f8755407bb76348073af175b84","size":40132,"triangleCount":547},{"id":"collision-217","fileName":"collision-217.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-217.glb","checksum":"96b6bb20adb930067f85aa38a67753009f54783399e04cc05df7dc91fa24fced","size":32336,"triangleCount":40},{"id":"collision-218","fileName":"collision-218.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-218.glb","checksum":"066f6f48b044e30e1e0948983143ab7c0021d65194cb796c49e2bc0bbfec3297","size":40052,"triangleCount":576},{"id":"collision-219","fileName":"collision-219.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-219.glb","checksum":"0bc2495d5929e2a3fd4660d10951e199f94f5341b24bbc9ee999e57ab07d3e25","size":32324,"triangleCount":40},{"id":"collision-220","fileName":"collision-220.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-220.glb","checksum":"f3b28e3a92fb9069b3f6ceaef467c4a778bd141169d593e1f19bc9e535076690","size":32360,"triangleCount":40},{"id":"collision-221","fileName":"collision-221.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-221.glb","checksum":"0b70bf4f99181f3bba0a1eb3391d5b1ac42f9cd28f120134ff79874da8e48da3","size":39960,"triangleCount":576},{"id":"collision-222","fileName":"collision-222.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-222.glb","checksum":"ee7ac580d93440a06270c14869e4682d502a00fa3cfba192d1851057c4d293dd","size":32336,"triangleCount":40},{"id":"collision-223","fileName":"collision-223.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-223.glb","checksum":"dee6f35d883ca5524dfd7e3d7cf20efff7a3c66d139a0252a0576a6b130b2879","size":33516,"triangleCount":152},{"id":"collision-224","fileName":"collision-224.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-224.glb","checksum":"c3f624c2c21db6380bd04f33a7bf26fc6c2d64a3bfba4dc0d38ca6a9af06dd40","size":52768,"triangleCount":2010},{"id":"collision-225","fileName":"collision-225.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-225.glb","checksum":"5ab16959ace65e246162954da9281c491c5eb1ae98a1340035abf7a17d351fc5","size":33592,"triangleCount":136},{"id":"collision-226","fileName":"collision-226.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-226.glb","checksum":"a0a1a96c311530da70d74bba8cae21a80dccb3298c0c0a3510114cecd95fb481","size":32340,"triangleCount":40},{"id":"collision-227","fileName":"collision-227.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-227.glb","checksum":"c71dc3833cde1a4110ddad3e522e35a8443cf40c92bc3109af3e957856206da8","size":32344,"triangleCount":40},{"id":"collision-228","fileName":"collision-228.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-228.glb","checksum":"02fc7c08fd6df98a0715a38cf6087a1dff1beefa94062e3ea2c4e36446a5fd36","size":32348,"triangleCount":40},{"id":"collision-229","fileName":"collision-229.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-229.glb","checksum":"2b614d0437e8f018dfac24e5d73e502e76875705c1584255d17e1c200f375d87","size":32344,"triangleCount":40},{"id":"collision-230","fileName":"collision-230.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-230.glb","checksum":"d798134d4c7715e23a03fa4acfb3b52782b4ae1d36612fec71e61dfad42fd85a","size":45228,"triangleCount":1512},{"id":"collision-231","fileName":"collision-231.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-231.glb","checksum":"cc2c8fde1447d69d1ea6f97fb6f0316fd15da6166257cae40dd3100243635675","size":32336,"triangleCount":40},{"id":"collision-232","fileName":"collision-232.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-232.glb","checksum":"de4617e7e75e5a04042fb6671583bcdcbe105c24316b451d265a79e4d73b7e0e","size":32332,"triangleCount":40},{"id":"collision-233","fileName":"collision-233.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-233.glb","checksum":"4a2fcbbc5897f63aa96a2699f303e6205c56be012e2c70a5819e56acc3b30403","size":32328,"triangleCount":40},{"id":"collision-234","fileName":"collision-234.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-234.glb","checksum":"c051f9626e826f701934c4a4afc9d2d8540e23c5e1a40807f1b69cbed7d6a130","size":34112,"triangleCount":192},{"id":"collision-235","fileName":"collision-235.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-235.glb","checksum":"799e5f85dba842477379ffa4fc96bece7bea492dd8d168598052894ae5907804","size":32340,"triangleCount":40},{"id":"collision-236","fileName":"collision-236.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-236.glb","checksum":"af7e00614396cf74755ec7879535e9193a4ebd91d0e2c58c8c5c90214c791528","size":32340,"triangleCount":40},{"id":"collision-237","fileName":"collision-237.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-237.glb","checksum":"7a211164e0390e7fb45784ce6c718aa89fadcbec6eaafb2c4bf4397f2b1fd349","size":32352,"triangleCount":40},{"id":"collision-238","fileName":"collision-238.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-238.glb","checksum":"32c1c0222af4a39b864b0181c119b3cb1d4531d07a89a679b7c41acec7783485","size":32340,"triangleCount":40},{"id":"collision-239","fileName":"collision-239.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-239.glb","checksum":"57cf9f57ee514489aefe8d4153bb33166fd12829a9a5e70a09d9205a5f653b78","size":40212,"triangleCount":547},{"id":"collision-240","fileName":"collision-240.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-240.glb","checksum":"3fc704b2b24dc968cad02604d73fac428fe36c92a662413d30d81ca31b4ea6be","size":32340,"triangleCount":40},{"id":"collision-241","fileName":"collision-241.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-241.glb","checksum":"100fcbce51199a709a45d157d703ce45a6d88020b60ada83873ecadee12019f0","size":45264,"triangleCount":840},{"id":"collision-242","fileName":"collision-242.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-242.glb","checksum":"053ed2ff6f36087ad5055d5a59e5b0e1d2b795f7f16bf0a6880be699a934da30","size":32332,"triangleCount":40},{"id":"collision-243","fileName":"collision-243.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-243.glb","checksum":"07de16e9b00455c29c899f510e53fcedb819f2aacd3a8bbc1a424b8441bc10d8","size":32352,"triangleCount":40},{"id":"collision-244","fileName":"collision-244.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-244.glb","checksum":"29921d02b10f706bf2e8bc0b9a332a7bf387dd7b382551dd9e911cc17291628d","size":32344,"triangleCount":40},{"id":"collision-245","fileName":"collision-245.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-245.glb","checksum":"7a2c3144ec886694c8075159148452f3c4edabe7b10a671afaa56aaa1f73f8b2","size":40288,"triangleCount":547},{"id":"collision-246","fileName":"collision-246.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-246.glb","checksum":"ab163512bb74505aa64aa63d1f9af0e7633ceea70e6486fb444f1c9fa99084d3","size":32348,"triangleCount":40},{"id":"collision-247","fileName":"collision-247.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-247.glb","checksum":"a46fe0a53934238231c6690e4e685cdb9ea55dfe7f6e9b169a247fbeb6004704","size":33516,"triangleCount":152},{"id":"collision-248","fileName":"collision-248.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-248.glb","checksum":"1fbd82ecd6793bbb8a82acd9153d5c942ec4f1c450039dd7c4d55a4987c7909c","size":40144,"triangleCount":547},{"id":"collision-249","fileName":"collision-249.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-249.glb","checksum":"cd1b509faa3f9a624e5475f9ca4e141399c40be34c8fe07a9d750de319f38974","size":32336,"triangleCount":40},{"id":"collision-250","fileName":"collision-250.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-250.glb","checksum":"15e96fa9b5a3c082d5de5b2309366984d2560e3b8b8c3fe11293ce1d20618e89","size":32340,"triangleCount":40},{"id":"collision-251","fileName":"collision-251.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-251.glb","checksum":"8f3238c3c1c5ff59c77517726aaf4b7463e1575b1b9a465638235f03f03b60a9","size":40044,"triangleCount":576},{"id":"collision-252","fileName":"collision-252.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-252.glb","checksum":"0663fa32755b7849c16aadbbfc0f125e13ba1dfc4022e8fc4b1cf443a4698a90","size":40216,"triangleCount":547},{"id":"collision-253","fileName":"collision-253.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-253.glb","checksum":"76093402fc5228ec1968d56a42045956481eb73d935fa655744a46f36da4a1fe","size":62288,"triangleCount":2760},{"id":"collision-254","fileName":"collision-254.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-254.glb","checksum":"2ea1fba86ab99aa0873284366190f1feae8e765934c16b53afb14fc915484d3e","size":40256,"triangleCount":547},{"id":"collision-255","fileName":"collision-255.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-255.glb","checksum":"d68744e6a57f4fbeb778f3827fd9cfd507a17b6da6aacd1153ea193b614baa32","size":37496,"triangleCount":516},{"id":"collision-256","fileName":"collision-256.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-256.glb","checksum":"9401cdc5652758b2ad51c1773ec3ac0bc512f317ab82a503cd420b9d25aa613b","size":32336,"triangleCount":40},{"id":"collision-257","fileName":"collision-257.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-257.glb","checksum":"2c9f2e197519cb354eedde0bb89c82f52e8e2cfcdb1d7d841a9cf1319c6e0964","size":32336,"triangleCount":40},{"id":"collision-258","fileName":"collision-258.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-258.glb","checksum":"cd1a6b9010aa652ca112a7862e9f12ccd056776594dc9ede43bfbf1be09e4dee","size":32352,"triangleCount":40},{"id":"collision-259","fileName":"collision-259.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-259.glb","checksum":"3e5da1be189860e604cf2f640d4ce0117086a21600e7650db043a8dc3847ebc6","size":40036,"triangleCount":576},{"id":"collision-260","fileName":"collision-260.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-260.glb","checksum":"d278670a02255f8f572ee376046865b56178555b4bf8741db4951c5b7da893ee","size":40096,"triangleCount":576},{"id":"collision-261","fileName":"collision-261.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-261.glb","checksum":"a4b71da65932beacb42d277c1d707b986a7a1f5a8485e49abf4df52814282e61","size":32336,"triangleCount":40},{"id":"collision-262","fileName":"collision-262.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-262.glb","checksum":"e08493508c6f684ce27cff3e97d1068dedbcb870153a90b2c66459d9603881ee","size":32352,"triangleCount":40},{"id":"collision-263","fileName":"collision-263.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-263.glb","checksum":"738f6c8235aa83fa234ebe52381bf9410083f5825a2ea254e0e6ed20035f2c4e","size":32352,"triangleCount":40},{"id":"collision-264","fileName":"collision-264.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-264.glb","checksum":"ea80ca80764326fe5941683ad4bce91335bd25fa156a735394df0d2751c6c98f","size":40084,"triangleCount":576},{"id":"collision-265","fileName":"collision-265.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-265.glb","checksum":"583faa21f089d853ce2798f2b8845d95f02cb4a56f511b58028e83375893aaae","size":32348,"triangleCount":40},{"id":"collision-266","fileName":"collision-266.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-266.glb","checksum":"8f75d6547e8171748dc26a2a8affea72d6d6eb7f2cdac1eb38dd7ac809d7dd86","size":40084,"triangleCount":576},{"id":"collision-267","fileName":"collision-267.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-267.glb","checksum":"4ffeefd1dc7f611af453decde4261ee58df8d301b440ccbac51360f19139e798","size":33556,"triangleCount":136},{"id":"collision-268","fileName":"collision-268.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-268.glb","checksum":"22e7c9803ccf0b487eef280adbb510e2bc9232259ebe34f8fa86ba1215fce57e","size":32340,"triangleCount":40},{"id":"collision-269","fileName":"collision-269.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-269.glb","checksum":"540337252ecf03b1a27e2e71056c5e04f76a62d28e5c082afe09e80dd50106dc","size":40056,"triangleCount":576},{"id":"collision-270","fileName":"collision-270.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-270.glb","checksum":"99cb3b98164655d6436dd6cbd135874b98fd0f9c8e996981871fd9ea4cd23113","size":53868,"triangleCount":1906},{"id":"collision-271","fileName":"collision-271.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-271.glb","checksum":"4f026d91754f76eb3a759f15ac4c008a92b23b467156f48eb4de085ead67d559","size":32336,"triangleCount":40},{"id":"collision-272","fileName":"collision-272.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-272.glb","checksum":"58d483fbbab65920df93b2da17d97c65bed33f426eac0a87aec209e7ee6c90d7","size":40248,"triangleCount":547},{"id":"collision-273","fileName":"collision-273.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-273.glb","checksum":"f3669cbb9b362f35d6d4676085d9f876d360aed8d672055a44b98dda37ec9f47","size":35564,"triangleCount":318},{"id":"collision-274","fileName":"collision-274.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-274.glb","checksum":"f1b83130b4158e6df1aa4196e21d95924371c7a19f1ffeb54cc272ed57cd1c57","size":32340,"triangleCount":40},{"id":"collision-275","fileName":"collision-275.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-275.glb","checksum":"9f157067a5e4968077041676322698610b0c89da558ebca8ca9584000bf14b57","size":32364,"triangleCount":40},{"id":"collision-276","fileName":"collision-276.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-276.glb","checksum":"5835ae02d91e9ca584c91ce1fd45cab93d8afbe1d208b5f1c568feda81f54f8b","size":32352,"triangleCount":40},{"id":"collision-277","fileName":"collision-277.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-277.glb","checksum":"a85c1dea4edc9d7f96acaf15052f6b4e53f37450056095e0f165142897e87462","size":33504,"triangleCount":152},{"id":"collision-278","fileName":"collision-278.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-278.glb","checksum":"9915069cb6e1b0d4963247c81669c67050c8c31322b2ecd1b6f73d9ffe2cccab","size":32344,"triangleCount":40},{"id":"collision-279","fileName":"collision-279.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-279.glb","checksum":"ad8caa12560ce2a5ffa4846ab58e746d0a115a1df5e218ff9889e104d89a750b","size":37620,"triangleCount":516},{"id":"collision-280","fileName":"collision-280.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-280.glb","checksum":"65a3bb4403899544e76602733d79df3efbae24752cb79f808f0c4e7e9e60dc49","size":40212,"triangleCount":547},{"id":"collision-281","fileName":"collision-281.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-281.glb","checksum":"d2be0af75b19f661bfad58b43580f504fef0e82d63963e2d659d5479e343cfb5","size":32332,"triangleCount":40},{"id":"collision-282","fileName":"collision-282.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-282.glb","checksum":"aa6d1b37bbb3c64d180721b28eb25a7a732f4b1a33bb1fc87605d7099d7e1eba","size":40084,"triangleCount":576},{"id":"collision-283","fileName":"collision-283.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-283.glb","checksum":"ba153e6bfa3b5241d781c4157eb973bea979d9db803a9fe6dae10ffecdb5b4ed","size":45336,"triangleCount":1512},{"id":"collision-284","fileName":"collision-284.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-284.glb","checksum":"54ecf70b2932e1d2a25843d935ecf6d2e6b207067b88a0ed92841b6393464305","size":32336,"triangleCount":40},{"id":"collision-285","fileName":"collision-285.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-285.glb","checksum":"141a82c7f4b3f9454accef6f978a80ac912b4a4cd29c86635f875cfbb3fc4ec2","size":45416,"triangleCount":840},{"id":"collision-286","fileName":"collision-286.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-286.glb","checksum":"751ff40ea0a50dbfc6293071281494db4a9c660819a47b7243a9c7d26d7cfda5","size":32340,"triangleCount":40},{"id":"collision-287","fileName":"collision-287.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-287.glb","checksum":"b0974248547388374884fe62d6f699eb03480c7221b6b3e2f8ff609fffcdcee2","size":45248,"triangleCount":840},{"id":"collision-288","fileName":"collision-288.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-288.glb","checksum":"a2cf3187bd3b50dd104dd4a56adc899b984f3d7997e67571708233253d2edf5f","size":42024,"triangleCount":762},{"id":"collision-289","fileName":"collision-289.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-289.glb","checksum":"d3d6adb39da459950c0e02e35d6e94584cdcbb61e0120c8c8178d64fd5ca4e27","size":32356,"triangleCount":40},{"id":"collision-290","fileName":"collision-290.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-290.glb","checksum":"865e48c6777799308c4f49b5f61fb133e25fb53a49c11973c4bd9368d6e58dad","size":32352,"triangleCount":40},{"id":"collision-291","fileName":"collision-291.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-291.glb","checksum":"0069234bc074a3c528fa9ada68e1ba2ff716ec6e9c984002ac8703c875e26260","size":32328,"triangleCount":40},{"id":"collision-292","fileName":"collision-292.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-292.glb","checksum":"373cee4040bb9b9853a0117268169c144e2b20cc12fcd6078f613049e3278eaf","size":32352,"triangleCount":40},{"id":"collision-293","fileName":"collision-293.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-293.glb","checksum":"c856854b0120aa569fc9640de620322e9db2e0b7254887482fd92b9e920b6d02","size":87732,"triangleCount":6419},{"id":"collision-294","fileName":"collision-294.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-294.glb","checksum":"bdb4a45a7577fdfec0afcd0eae8bb50943ca96e7a927fc5da1c086487539583f","size":35592,"triangleCount":318},{"id":"collision-295","fileName":"collision-295.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-295.glb","checksum":"0d3348ba8d88fd8d4d6be4e0a94d4ab836b7252f4f020173e2ef804f072ef48e","size":32356,"triangleCount":40},{"id":"collision-296","fileName":"collision-296.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-296.glb","checksum":"e735edb4927e9647f2745f3ac4ede395615e065a84c7e74a333f9c108285f7b1","size":40048,"triangleCount":576},{"id":"collision-297","fileName":"collision-297.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-297.glb","checksum":"18c628a2b920db04d9c04b660e4578661bc7e95d942793d732e13134aab7b1f0","size":32340,"triangleCount":40},{"id":"collision-298","fileName":"collision-298.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-298.glb","checksum":"7ba1ab867c1f063bf4d50629eb4c9973fd675c62ed93a15dffedf515f805a8c3","size":32332,"triangleCount":40},{"id":"collision-299","fileName":"collision-299.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-299.glb","checksum":"462b5997faeb2accf41268fad7dac41178d99bf60e0af522430d7bae41004a05","size":32344,"triangleCount":40},{"id":"collision-300","fileName":"collision-300.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-300.glb","checksum":"3f442a7315bae3dddb2b253e7efb5d8fae9ff4aff2ff513e396223471fa2e6f4","size":32340,"triangleCount":40},{"id":"collision-301","fileName":"collision-301.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-301.glb","checksum":"a814bb46d34fd2964168f8e2680abc07144f6065b1d79e4fcbe47f4372793625","size":32344,"triangleCount":40},{"id":"collision-302","fileName":"collision-302.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-302.glb","checksum":"8411d359ccaba2b4c15d7410c838a27af379696996233542df655cc5e8e1e13f","size":32344,"triangleCount":40},{"id":"collision-303","fileName":"collision-303.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-303.glb","checksum":"efa10ebc7594d75683cbd3a5cf6c4bf912272be74c58f157b0bb42d48cbb4f98","size":40096,"triangleCount":576},{"id":"collision-304","fileName":"collision-304.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-304.glb","checksum":"36c83151d29b97a613f3439641a8fb5f0328e71d21eb4282e6e439333ac98627","size":32348,"triangleCount":40},{"id":"collision-305","fileName":"collision-305.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-305.glb","checksum":"2dbb038fd3fb845628e820dee05a16bafb0082a43d43103cedf4d1d57d11c6c7","size":33524,"triangleCount":152},{"id":"collision-306","fileName":"collision-306.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-306.glb","checksum":"83fc5d40c14717e6c89c7ed93c67e7681162279a27dfb5cbb8ca71edecee38ae","size":32348,"triangleCount":40},{"id":"collision-307","fileName":"collision-307.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-307.glb","checksum":"b8026309873a252273bbd3200b41d00fdd418a082d24c6b272ce90264daee192","size":40160,"triangleCount":547},{"id":"collision-308","fileName":"collision-308.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-308.glb","checksum":"74396b6c74893a59a53eee28d4b57078c8c1b349059194694c32c58f9efecf64","size":32352,"triangleCount":40},{"id":"collision-309","fileName":"collision-309.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-309.glb","checksum":"88ce301df8924fcada6c6897a4361b637467319cf09ea1161fb1414f539af101","size":45284,"triangleCount":1512},{"id":"collision-310","fileName":"collision-310.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-310.glb","checksum":"0101bd2e5106fd0dec12c645b057ab61d2592c85b87a41aab29148d1a85cd992","size":32344,"triangleCount":40},{"id":"collision-311","fileName":"collision-311.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-311.glb","checksum":"964249fe847e4ce9fd591978112a30ce03f3754daa4fc056281457aacdc701ba","size":32348,"triangleCount":40},{"id":"collision-312","fileName":"collision-312.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-312.glb","checksum":"e2c47e0fda71f3a8f17e6b3a3feaafdd6a2b9ffe9ccb289861c92a58f4fdd436","size":40116,"triangleCount":576},{"id":"collision-313","fileName":"collision-313.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-313.glb","checksum":"66fe27a92432146abe893dc4ff92bf01a241f88cdfa78c137f1ee493e985619d","size":40036,"triangleCount":576},{"id":"collision-314","fileName":"collision-314.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-314.glb","checksum":"7d43ff56cdbc8a4d9d476dd71de68a99f17d098979238ae28bd2967a8d0a2dce","size":33572,"triangleCount":136},{"id":"collision-315","fileName":"collision-315.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-315.glb","checksum":"ba237c4b88cccff4f7cfae1ea818505ead1019f1bbc2fd3041b0b96683d604a7","size":40116,"triangleCount":576},{"id":"collision-316","fileName":"collision-316.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-316.glb","checksum":"ec02653871cc19668a92324f7bc937febb4940b49dd326d003b058461ed71050","size":40164,"triangleCount":547},{"id":"collision-317","fileName":"collision-317.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-317.glb","checksum":"6b16a11754f69a6539c98c2c95ee9efc9929b798de7eb2c6e36bbea6269f3700","size":40236,"triangleCount":547},{"id":"collision-318","fileName":"collision-318.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-318.glb","checksum":"eff805ae8d07e564fcf9d477f34779aed3d8723ceac312ba59aa8e8bdf5dc00b","size":32352,"triangleCount":40},{"id":"collision-319","fileName":"collision-319.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-319.glb","checksum":"d8e2bf0e6a181cffe1fc7a85c7a409ef4f865f9b2a71faf4f04a852cef01ea62","size":32336,"triangleCount":40},{"id":"collision-320","fileName":"collision-320.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-320.glb","checksum":"0cfce715ff411051a5df2a479c4b54ed77bd4d265190ee30c588ab963bbba4da","size":45268,"triangleCount":840},{"id":"collision-321","fileName":"collision-321.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-321.glb","checksum":"92f172b772be93d6d94e38af8f9ebf1cce185571a13b111bd7ad51be80598219","size":32328,"triangleCount":40},{"id":"collision-322","fileName":"collision-322.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-322.glb","checksum":"ec3d124291e1bde19d6b95d9f727fea23aea5598e43cd5529d2474ed01ba5234","size":33536,"triangleCount":152},{"id":"collision-323","fileName":"collision-323.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-323.glb","checksum":"debe322c05f7edc5dff0ad76f4612cb426dfb6cded96a34c438aa642bda52c07","size":37584,"triangleCount":516},{"id":"collision-324","fileName":"collision-324.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-324.glb","checksum":"4b2b3f24a33ed50c15701969c630b9e290923eaff7d9237503b4562aea57a42a","size":32320,"triangleCount":40},{"id":"collision-325","fileName":"collision-325.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-325.glb","checksum":"71bc5c2b6afa6ac46ed2b6ec16904792c1ca3541555bc326aa96b5d77dd8d2c8","size":35508,"triangleCount":318},{"id":"collision-326","fileName":"collision-326.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-326.glb","checksum":"bba57ca347e0d15bcdd449d71913d7074667600ab99d741c24bad873337b4dcb","size":35596,"triangleCount":318},{"id":"collision-327","fileName":"collision-327.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-327.glb","checksum":"e1019bc716df7945b32e2cbd05ac1b6d696079a8c2fd11d6a07847a4a98960f0","size":52768,"triangleCount":2010},{"id":"collision-328","fileName":"collision-328.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-328.glb","checksum":"382e01b0f200fae1905517ba01cb91c9cd2600c41ce18c15033092cd5bd99113","size":32344,"triangleCount":40},{"id":"collision-329","fileName":"collision-329.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-329.glb","checksum":"21d61cf0f6fb480fd0a5e2f57e4b3cbb9a68d9a96a69dcff15d4d5ee18a79344","size":40152,"triangleCount":547},{"id":"collision-330","fileName":"collision-330.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-330.glb","checksum":"ba0a60f3b59aef1eab9ea9b4e9659eb085854bde5f779dd612f1f5b220068b27","size":33504,"triangleCount":152},{"id":"collision-331","fileName":"collision-331.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-331.glb","checksum":"ea819020c9c80fbde26de9f572ba76ee134b7d48198ed560f8d17e9cc9cf8f13","size":40228,"triangleCount":547},{"id":"collision-332","fileName":"collision-332.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-332.glb","checksum":"730bde1d31f6135e09bbf613580e6f333cd071676fef6c6418bc51f26670a0e1","size":40108,"triangleCount":576},{"id":"collision-333","fileName":"collision-333.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-333.glb","checksum":"8e0953f19995469366e737b91b1d268d528d4b75ddac03047410b60f8011ab39","size":40200,"triangleCount":547},{"id":"collision-334","fileName":"collision-334.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-334.glb","checksum":"12a97e54c7e1bd237df068186aa0f27ff6bfbd40e0ac81d9e45caf74d28c87ee","size":40084,"triangleCount":576},{"id":"collision-335","fileName":"collision-335.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-335.glb","checksum":"ee404d8644265ea6c84c9aea3ff428d9d598b6f9a79f07ed08a282418f7a2774","size":32340,"triangleCount":40},{"id":"collision-336","fileName":"collision-336.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-336.glb","checksum":"00c82e8472afac2c951b3eeb263ea54df5d7adc472cf9d86376b91ae333ddd19","size":40224,"triangleCount":547},{"id":"collision-337","fileName":"collision-337.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-337.glb","checksum":"4cb853b5b139b142052f4135031a409f6eca9c82c0db7bae0c7b09a4ff181edd","size":32340,"triangleCount":40},{"id":"collision-338","fileName":"collision-338.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-338.glb","checksum":"e0ddd74e7eb3aa4857fdc013860618d4c423123d0287f20f91e2d79e699497d9","size":32344,"triangleCount":40},{"id":"collision-339","fileName":"collision-339.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-339.glb","checksum":"1b1254bbbea20598363690c4a6b868ad32c0851bad2e3e6014d280cc43eb7d18","size":35612,"triangleCount":318},{"id":"collision-340","fileName":"collision-340.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-340.glb","checksum":"4c7af0d692096bf994d457d9d1b3f93936ec822318e7d90f1c8cf3de360a1c3c","size":32332,"triangleCount":40},{"id":"collision-341","fileName":"collision-341.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-341.glb","checksum":"ea1fc4576b9a75d53ede59bca70fd75637f5ba946f3b61550c5cecf7b1f3ec60","size":40212,"triangleCount":547},{"id":"collision-342","fileName":"collision-342.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-342.glb","checksum":"805a31aef8c7e52c412cf7e397e2588fddd7ba7cdaea191d1af59e8e4006a590","size":32336,"triangleCount":40},{"id":"collision-343","fileName":"collision-343.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-343.glb","checksum":"766e800425cc07eeb645ea63b992315aa90b3d8408c4d8b885467c66e522fdbd","size":40144,"triangleCount":547},{"id":"collision-344","fileName":"collision-344.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-344.glb","checksum":"9141db18bb1de097abd8c1b8812327cf01960991c4b9cb81e75d6fdb8a450e68","size":33544,"triangleCount":152},{"id":"collision-345","fileName":"collision-345.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-345.glb","checksum":"50d391352ce6cfec9463ac93990ebd4bcc976ce6a2d51a2c2f4bda0548649588","size":33572,"triangleCount":136},{"id":"collision-346","fileName":"collision-346.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-346.glb","checksum":"c98196af62b284bbb37ce980f25f92fad0eadd7338b9a20c2eac346874f4579a","size":32340,"triangleCount":40},{"id":"collision-347","fileName":"collision-347.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-347.glb","checksum":"f65513a62829e239cd182473b036b2463d0ce6fcba3816298abb419eb758cb46","size":37612,"triangleCount":516},{"id":"collision-348","fileName":"collision-348.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-348.glb","checksum":"79262cdff765253b50d6fb4cefeec1a90a39555de376a7b45bea06ed2fc92d0e","size":42032,"triangleCount":762},{"id":"collision-349","fileName":"collision-349.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-349.glb","checksum":"4aac9ef6ed578e627284361cee486ec4d9b3a77af7814cc24516f38876396793","size":40096,"triangleCount":576},{"id":"collision-350","fileName":"collision-350.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-350.glb","checksum":"f44bfed82178e5551842b4f17e9cb7410c19c831938db47cf6911ece415d9294","size":32348,"triangleCount":40},{"id":"collision-351","fileName":"collision-351.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-351.glb","checksum":"70cf02fa313f8d5a12aae968a71231eff6b274b8d528f96cf027c217698a0a8d","size":32340,"triangleCount":40},{"id":"collision-352","fileName":"collision-352.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-352.glb","checksum":"87bfcdfc036e7068e594ea12c1f27fe082159620c650bd6333632ed18abeabd4","size":40200,"triangleCount":547},{"id":"collision-353","fileName":"collision-353.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-353.glb","checksum":"049f15d159886bbebeb4340a4bc4a58f7ebd18892341b91e1986083513e206f1","size":32344,"triangleCount":40},{"id":"collision-354","fileName":"collision-354.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-354.glb","checksum":"c6df78f49f67bbfae677472bc674bbc1e412d35596c3f3c86daa5b87ad1b22e8","size":32332,"triangleCount":40},{"id":"collision-355","fileName":"collision-355.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-355.glb","checksum":"2390d1efc3ba3df9fbf1b4fc32043318357c0fcb864c57c5491291dfd9a8b19c","size":78044,"triangleCount":5111},{"id":"collision-356","fileName":"collision-356.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-356.glb","checksum":"5f19155f1459a1589fab1b11e2461e2e631b9729a5be538659a0c02340269f92","size":52784,"triangleCount":2010},{"id":"collision-357","fileName":"collision-357.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-357.glb","checksum":"5b15258cde0639d7918a1e1afa40b492a2391bc8eabc27208d94df3a05600923","size":32348,"triangleCount":40},{"id":"collision-358","fileName":"collision-358.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-358.glb","checksum":"d98b4c60af860339961abb2c214df3146ee6512ec48391b9c4f11c9d7e624b59","size":40152,"triangleCount":547},{"id":"collision-359","fileName":"collision-359.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-359.glb","checksum":"9780eda8927302d54956a96aee20055005e20f840c86f6dea9c1c582bfca5fc7","size":33520,"triangleCount":152},{"id":"collision-360","fileName":"collision-360.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-360.glb","checksum":"b871672129404b814cd1a1c9a59f383a51781b6a8695cd0fa811da1f82d5c5d0","size":32332,"triangleCount":40},{"id":"collision-361","fileName":"collision-361.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-361.glb","checksum":"604ed854ef126f4f6a0dbd34583c4563b1a519d9af458180fc5f53f6dda50b7d","size":32336,"triangleCount":40},{"id":"collision-362","fileName":"collision-362.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-362.glb","checksum":"f372b3c25734cdb9a84b5d0a8260b0f2b90f71328d1c3d3c753cf147aed37712","size":45248,"triangleCount":840},{"id":"collision-363","fileName":"collision-363.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-363.glb","checksum":"9b92df0ee08453a0ef6c60b423119b3d820af1b8e1ad58c099f2e7dd36349058","size":32328,"triangleCount":40},{"id":"collision-364","fileName":"collision-364.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-364.glb","checksum":"0de5524230c01c35b90adcb30e563e3b744691b3af0085a29d17e7e4b2142dd0","size":32348,"triangleCount":40},{"id":"collision-365","fileName":"collision-365.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-365.glb","checksum":"04bcb26fabb470071bb1a8955f96eb9452e2895cc254dd73de23b95802b75596","size":33508,"triangleCount":152},{"id":"collision-366","fileName":"collision-366.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-366.glb","checksum":"0d1af9d863284e2cbf787979f5338ef33ad4e9fb944a848fd262221d905c2a80","size":32348,"triangleCount":40},{"id":"collision-367","fileName":"collision-367.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-367.glb","checksum":"1857e133c78040e75f0e3ddfe0a9df3d7e9727cf69871bad2b7e7a7c2b1b0476","size":32344,"triangleCount":40},{"id":"collision-368","fileName":"collision-368.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-368.glb","checksum":"be163bd03fd6598f685c2356a481d9f059bddfec1b043d1f896176d658fc244b","size":32348,"triangleCount":40},{"id":"collision-369","fileName":"collision-369.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-369.glb","checksum":"cd043c0b3f4afcd37a2eee7564b25485a1ff2af4b9d7a8cd36c8622064e77612","size":32336,"triangleCount":40},{"id":"collision-370","fileName":"collision-370.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-370.glb","checksum":"f2f78f1d111ac18c8cdf8c4623386d5807c1a1ad2c46547f8f847d2f440a2015","size":32332,"triangleCount":40},{"id":"collision-371","fileName":"collision-371.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-371.glb","checksum":"1ac47125d7c733cc8106e0bff140c7a8567a5c030ef56539074cfc38b92e1b40","size":40152,"triangleCount":547},{"id":"collision-372","fileName":"collision-372.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-372.glb","checksum":"7531ee8096e1d4c759286e1a085d4fba934e5682816f8d9cd9668856b4054e48","size":32332,"triangleCount":40},{"id":"collision-373","fileName":"collision-373.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-373.glb","checksum":"572430c882b5bce2a9b141d947f7b08ff37579d058e5aaad2564c55518b19e46","size":32344,"triangleCount":40},{"id":"collision-374","fileName":"collision-374.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-374.glb","checksum":"312b6a20d15a3dbaded4e3181d7209bb37e936f76d36f8ce06078aa5579fbc9b","size":32348,"triangleCount":40},{"id":"collision-375","fileName":"collision-375.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-375.glb","checksum":"07a1efb775d3a6f2109326a0f55687721f844c7b43e0d06bff953d77444fbbd2","size":40000,"triangleCount":576},{"id":"collision-376","fileName":"collision-376.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-376.glb","checksum":"c869e1d86a828673f130ea77b4d544c2569587335ff9b0c73b5f294397c9942d","size":32356,"triangleCount":40},{"id":"collision-377","fileName":"collision-377.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-377.glb","checksum":"df46e3dd2d958f3c6781ebd3f66da6077e2430dea2d3bc7c8aa1706a4ed03b09","size":32352,"triangleCount":40},{"id":"collision-378","fileName":"collision-378.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-378.glb","checksum":"31e6b184415f233a6ea9ae60049198c0ff31249585f35adaac1fd453139327eb","size":40056,"triangleCount":576},{"id":"collision-379","fileName":"collision-379.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-379.glb","checksum":"caf3c5f76091ce296bd7dce8f89565608b6ab4d8d8b6b4d460be9af9c4dacf47","size":40088,"triangleCount":576},{"id":"collision-380","fileName":"collision-380.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-380.glb","checksum":"730d8568ea6ec9da71738fac0b2d7126c7c6983ee583056cfcac3434d3a4e389","size":40148,"triangleCount":547},{"id":"collision-381","fileName":"collision-381.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-381.glb","checksum":"5b39ea1d93f86a97e23ae10c268744fb83c421252716ea8febeff5971eeb7da4","size":32344,"triangleCount":40},{"id":"collision-382","fileName":"collision-382.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-382.glb","checksum":"ae22bc055e0ed83773d4438c844e7a0a4289d56b6dc3b329b5ecb04393277e4c","size":32336,"triangleCount":40},{"id":"collision-383","fileName":"collision-383.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-383.glb","checksum":"6fb0c881acca00a5076311346966f689716ddc0f9a5ea3c342003329d006da30","size":40092,"triangleCount":576},{"id":"collision-384","fileName":"collision-384.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-384.glb","checksum":"e4ecc7446293c5e18e02c1dc878c86e7096f07ae541617bd4c9e8d3c2b20eda1","size":35608,"triangleCount":318},{"id":"collision-385","fileName":"collision-385.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-385.glb","checksum":"54bbc60224eb3ec37cef43f0d9190a61fe24c67e9e06e375b10c37235a8e32e0","size":45220,"triangleCount":840},{"id":"collision-386","fileName":"collision-386.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-386.glb","checksum":"f9045c88715b9748b8bd03a886b53f23e0c9ad14a64652ebc9a0a718738d095a","size":32344,"triangleCount":40},{"id":"collision-387","fileName":"collision-387.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-387.glb","checksum":"96d380758f0af6daa46556f7e4b23264f6b3d3501495e978f876aef18e29f990","size":37540,"triangleCount":516},{"id":"collision-388","fileName":"collision-388.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-388.glb","checksum":"40c420b5328c751f347309b3ae1ee9af7f2ff17fcb7800626d6ea02dc2115c34","size":40156,"triangleCount":547},{"id":"collision-389","fileName":"collision-389.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-389.glb","checksum":"88e3a3ba1d19052fd9549ac72b01d86156b6450d281511afdf95f9d4c5d8ed3c","size":32340,"triangleCount":40},{"id":"collision-390","fileName":"collision-390.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-390.glb","checksum":"1985f71611645d960716ea5302b19144058ec8831589298903cbcc2950ceacb6","size":32324,"triangleCount":40},{"id":"collision-391","fileName":"collision-391.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-391.glb","checksum":"6f51f47a5602cbd13d67fa5d91f4fccbdc0e73704702698169270890e590cacc","size":32344,"triangleCount":40},{"id":"collision-392","fileName":"collision-392.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-392.glb","checksum":"022404a25bcb642444f903cec6b0247f6b70aa9609e7eae33d3437fd635ae349","size":32344,"triangleCount":40},{"id":"collision-393","fileName":"collision-393.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-393.glb","checksum":"d72841aaa5216d399b1c976ef0bb6ca947c74e80a1b1cc9a023053e59a7472b0","size":32340,"triangleCount":40},{"id":"collision-394","fileName":"collision-394.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-394.glb","checksum":"7b028c1ed9f4b1c0867a1ee89972a641b8356b141128d7015109155d40f4747e","size":48236,"triangleCount":1770},{"id":"collision-395","fileName":"collision-395.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-395.glb","checksum":"913bcc7340a821603045f752f19efc8bf50e299e566d5866f0c1c5261bdeb5f2","size":53900,"triangleCount":1906},{"id":"collision-396","fileName":"collision-396.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-396.glb","checksum":"26c1d5c99600512adbce38937ef69cb3bbc02f41606c0798572d2d19e5ad0ecb","size":32328,"triangleCount":40},{"id":"collision-397","fileName":"collision-397.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-397.glb","checksum":"c296fd370d88966a81e019d8ef86c5ee4032d88bb3039e40bbef3a5d3c116a4c","size":40192,"triangleCount":547},{"id":"collision-398","fileName":"collision-398.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-398.glb","checksum":"a0e8aea92aaa57ad2fadffdcbf52a70b789c0b3a2b182d8771efc8bbb8b922d3","size":40144,"triangleCount":547},{"id":"collision-399","fileName":"collision-399.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-399.glb","checksum":"a66e3635359f398bd0e645604cc3f6ec9ba031faabc5e88c61b4cc65fa75394f","size":40200,"triangleCount":547},{"id":"collision-400","fileName":"collision-400.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-400.glb","checksum":"e265367e47415b70e3130a3df1be5c46fa0f4e1ca49f956e88e38c01cf41b7c7","size":32344,"triangleCount":40},{"id":"collision-401","fileName":"collision-401.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-401.glb","checksum":"e9f52b994d1749e36bde5b4bc162b31ab0df3e686305eb75cc68674fbd1ce4ea","size":32340,"triangleCount":40},{"id":"collision-402","fileName":"collision-402.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-402.glb","checksum":"147f7868df74fcf33189399b5674cb7f978afd42a63f821acb9cc56218e6aeaf","size":33524,"triangleCount":152},{"id":"collision-403","fileName":"collision-403.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-403.glb","checksum":"f02e6df156ae3e72d43e00f5dd063cf72b8187b363ad6161519937e812ab533f","size":50132,"triangleCount":1508},{"id":"collision-404","fileName":"collision-404.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-404.glb","checksum":"de1d9b18c3e851e42aacd3a95a36b03eefefffca23623e28101b883fa4f0aa3d","size":32344,"triangleCount":40},{"id":"collision-405","fileName":"collision-405.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-405.glb","checksum":"f63680ad6d4e29b906f8b6a20f1fdac00d1791692942956a70704044a6faea7f","size":32320,"triangleCount":40},{"id":"collision-406","fileName":"collision-406.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-406.glb","checksum":"ce7188c577a745b19b9500148362d773a339f3160b8600e5301e83832e2b8187","size":32340,"triangleCount":40},{"id":"collision-407","fileName":"collision-407.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-407.glb","checksum":"5db4df9af79a995bcfa304b51aff2acb76172cb425303cf1dbdd147f2073457d","size":40196,"triangleCount":547},{"id":"collision-408","fileName":"collision-408.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-408.glb","checksum":"a4c26f90a77d26e1797a34528950b32667d4d3b6c4f2e46d36aff7ca4707ca67","size":32340,"triangleCount":40},{"id":"collision-409","fileName":"collision-409.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-409.glb","checksum":"cba0ed65a27d0f17cb0e626fbcb26cd7dd921eb3dbb6e212e931cb09a2dd791e","size":32336,"triangleCount":40},{"id":"collision-410","fileName":"collision-410.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-410.glb","checksum":"08e55de760f231ecf8c382265a202f3d2f6bf989b5d90017370d088d89d8d301","size":32344,"triangleCount":40},{"id":"collision-411","fileName":"collision-411.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-411.glb","checksum":"966474cb1cbecbf4a5c2235ab58fa044d7d766e3f23811d755e699efc718131a","size":40308,"triangleCount":547},{"id":"collision-412","fileName":"collision-412.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-412.glb","checksum":"21a5066f7979a44aaed7d843a7e7c6c5812f4770b9e88bfb11ad540f4627e3d1","size":40080,"triangleCount":576},{"id":"collision-413","fileName":"collision-413.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-413.glb","checksum":"a1b6d64e60f7cd1ea123a03d8cd4d530e4d717c4b507f15d5a1584d045bb7f23","size":40080,"triangleCount":576},{"id":"collision-414","fileName":"collision-414.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-414.glb","checksum":"b82fca77127fdbec877ba843a8ba8948f192261af89ca1ac79c6a5502cc827ea","size":32336,"triangleCount":40},{"id":"collision-415","fileName":"collision-415.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-415.glb","checksum":"99bcc2e581f2966e2d040428d0dcb8700192da059d8cdd81025624eba340162b","size":40100,"triangleCount":576},{"id":"collision-416","fileName":"collision-416.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-416.glb","checksum":"694ce78d52f9721663e2398847a3fb4c30d89485b7af70162bfa1939f096dffb","size":32348,"triangleCount":40},{"id":"collision-417","fileName":"collision-417.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-417.glb","checksum":"350b1cd71fc3e980bbbf8dff7ff83ffcc09a4834b0eec4d952b83aea5578310f","size":32336,"triangleCount":40},{"id":"collision-418","fileName":"collision-418.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-418.glb","checksum":"aa7fdad38be264cc5ed08c51247e7e44dc85b113d9cda65265faac027ca5a106","size":32340,"triangleCount":40},{"id":"collision-419","fileName":"collision-419.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-419.glb","checksum":"a0b4177e73d8b7c3da4a8fc2e36ecf3ab3c33da47e79a034fdb31c7b9d881255","size":32340,"triangleCount":40},{"id":"collision-420","fileName":"collision-420.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-420.glb","checksum":"38876960077620398871d30fa0ba3ece4784b15d5ba4dea0f96fde96439cdf6c","size":40128,"triangleCount":547},{"id":"collision-421","fileName":"collision-421.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-421.glb","checksum":"69924012cbb454262278b78c7dc53bb718b327415dc0917ae1165bf27c2ff621","size":32344,"triangleCount":40},{"id":"collision-422","fileName":"collision-422.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-422.glb","checksum":"7d80045d73ab44bf4f69fa4bd7951d581778e35da31ac2d0c362eb76efeb1980","size":32348,"triangleCount":40},{"id":"collision-423","fileName":"collision-423.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-423.glb","checksum":"fad4377a3f82b156bcf2c9b4dcfb2cefa04a5cd5cc8cb6772df50ce940d10d4f","size":42208,"triangleCount":762},{"id":"collision-424","fileName":"collision-424.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-424.glb","checksum":"6195017bfd6837c4402e18af5957707b55ff2482002f0fc1c3612430c7f55d06","size":32348,"triangleCount":40},{"id":"collision-425","fileName":"collision-425.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-425.glb","checksum":"7e2f90a72df2e7a0195c5b82c2336a7a18dfab493a6e49102ff03c0a9fca7ae0","size":32352,"triangleCount":40},{"id":"collision-426","fileName":"collision-426.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-426.glb","checksum":"ff25f21ada6e8fc0c60a6d5cc345b0f7891bb2be3db1a1fc83ec13415e13001c","size":32344,"triangleCount":40},{"id":"collision-427","fileName":"collision-427.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-427.glb","checksum":"4a3e1c113747b4fe5739025b050de3a7a3210cf26c0bd4c36b91535f3aaa1a9d","size":98172,"triangleCount":5630},{"id":"collision-428","fileName":"collision-428.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-428.glb","checksum":"734f49d9d741e54aaff49b43006f51347af42b10c89ffb840fc31a79a6a5d093","size":35576,"triangleCount":318},{"id":"collision-429","fileName":"collision-429.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-429.glb","checksum":"750d1bc74167dda9ebb2981ab596c32b6be3fb37f3d5876f175bf9f7c0541cff","size":32344,"triangleCount":40},{"id":"collision-430","fileName":"collision-430.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-430.glb","checksum":"f0915582ad281ef10c1abf638ee547036e60f37ced01f11a3deb60b81cc98d38","size":45280,"triangleCount":1512},{"id":"collision-431","fileName":"collision-431.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-431.glb","checksum":"846d3b3c12b821af18cb599894fe5ea29d35479b18646372f57f3dd5b0b7e168","size":32352,"triangleCount":40},{"id":"collision-432","fileName":"collision-432.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-432.glb","checksum":"90830e7290b76456b0c4d4d79fb5645f78f09078cf03a32db6ea96fdf6ad2d7b","size":40204,"triangleCount":547},{"id":"collision-433","fileName":"collision-433.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-433.glb","checksum":"1ce068b986992974a23a16f1ad37edac2c9f21b665c33eb78300163806c464e5","size":32336,"triangleCount":40},{"id":"collision-434","fileName":"collision-434.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-434.glb","checksum":"96dcbcb41f723138cedaa2066376775ab61b7a5b40fc42a9a23ee92c6cc8576b","size":40084,"triangleCount":576},{"id":"collision-435","fileName":"collision-435.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-435.glb","checksum":"8556920274348626e1ef2ccf50fdf72358719f11acd679e3058b8301871872ff","size":33568,"triangleCount":136},{"id":"collision-436","fileName":"collision-436.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-436.glb","checksum":"7cc17c169257a1aea10ed899f9950f053f5ddd62d58db0cf6055b93d58de8208","size":32324,"triangleCount":40},{"id":"collision-437","fileName":"collision-437.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-437.glb","checksum":"529c8763e2956ede02a2cff8fee4680a4a79dc518afa10642d0b6bdf241bc7c1","size":34140,"triangleCount":192},{"id":"collision-438","fileName":"collision-438.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-438.glb","checksum":"6834bd104937f841793bd7344b61641cc871bf83ae6393b7501acd1045ac25f5","size":45240,"triangleCount":840},{"id":"collision-439","fileName":"collision-439.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-439.glb","checksum":"55c4ffca87e978b13bd9cf9d6fe643cf978d84f196a699c42bf69b1975dc5446","size":32348,"triangleCount":40},{"id":"collision-440","fileName":"collision-440.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-440.glb","checksum":"d58c01cb5cbbd7502fc5fc1c8aedd81ae15dd0ea770b3fdc2c507400fdf3d933","size":32344,"triangleCount":40},{"id":"collision-441","fileName":"collision-441.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-441.glb","checksum":"93b216a9d9b15cd5c29e1a30847e9f0804dd5bd08bcd9dd3d474d62b1ed654ba","size":35628,"triangleCount":318},{"id":"collision-442","fileName":"collision-442.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-442.glb","checksum":"24b593e0dce8b505b5bedd855816ef6df6bb036ec1ea9530fcbe7abe8f2dc1b8","size":32332,"triangleCount":40},{"id":"collision-443","fileName":"collision-443.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-443.glb","checksum":"d212debf456e708da0420a929d8a879dc309824a747bcaca5fed5a69b0a79fa1","size":32336,"triangleCount":40},{"id":"collision-444","fileName":"collision-444.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-444.glb","checksum":"dae9881ea5cf3d496ff4f4d8605b10c55ddaf34e2a529c61e9a398482ded642b","size":53840,"triangleCount":2288},{"id":"collision-445","fileName":"collision-445.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-445.glb","checksum":"d99ffc732758106a9e06cbe868d4ba40120ff8b26da3f74814428002862607e4","size":33588,"triangleCount":136},{"id":"collision-446","fileName":"collision-446.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-446.glb","checksum":"ac41f7a3dffb055ab299f6397dfb33d8c23815d0b431f426f8efbda42125992b","size":32352,"triangleCount":40},{"id":"collision-447","fileName":"collision-447.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-447.glb","checksum":"23dba50af74ff87d92ad442e575bfc7626ba3836030ce09877f82100b14f0de1","size":45260,"triangleCount":840},{"id":"collision-448","fileName":"collision-448.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-448.glb","checksum":"6637331e36c8ed82b97c20e670e35f853ca83929487bd38ef60c53a4f27d3b2a","size":32340,"triangleCount":40},{"id":"collision-449","fileName":"collision-449.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-449.glb","checksum":"fc37632f8475d4a79b67a368b467e64b72b99abd22129322dd4e03095e24ed23","size":34144,"triangleCount":192},{"id":"collision-450","fileName":"collision-450.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-450.glb","checksum":"17145b51f4b1709e0b9bbb05c3e9d4dc8077734cfe19502eaeb602de94d0a153","size":40152,"triangleCount":547},{"id":"collision-451","fileName":"collision-451.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-451.glb","checksum":"08478b4f74f9cc883dc95e7bcd26d42be09bbe3e15869b60a41acf8453248a1d","size":32328,"triangleCount":40},{"id":"collision-452","fileName":"collision-452.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-452.glb","checksum":"2cdadb38ca8c1fa21d31e931ccba88ad0e0a914a1573e6d4bfb1826e412301fc","size":32344,"triangleCount":40},{"id":"collision-453","fileName":"collision-453.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-453.glb","checksum":"d948eb2ac12b92ce3c65cd80c5f56f42ab27817743c66a218ea668d02555368d","size":32332,"triangleCount":40},{"id":"collision-454","fileName":"collision-454.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-454.glb","checksum":"8f95bd042da280e3aab2f595d658e6e8686f5eeb169e2608da2dfc486c26af48","size":40212,"triangleCount":547},{"id":"collision-455","fileName":"collision-455.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-455.glb","checksum":"e8a77b64b2f6cb427d503ce110d0399cc6c30b6a80666d42691d910c0ea37e25","size":32344,"triangleCount":40},{"id":"collision-456","fileName":"collision-456.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-456.glb","checksum":"d2d35d64d2c541ffeb53d96e883c716fe06c18c6565d08c59236e39e5b4193d4","size":33552,"triangleCount":136},{"id":"collision-457","fileName":"collision-457.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-457.glb","checksum":"f4760fcaa266ad7e90505000b47da748f5d0c8ff5285b85b1375544ecf14a7c8","size":32344,"triangleCount":40},{"id":"collision-458","fileName":"collision-458.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-458.glb","checksum":"7a4959236114e64a6fe8c14f842c109a34587c998da71c88a0ff43ab64852fec","size":40084,"triangleCount":576},{"id":"collision-459","fileName":"collision-459.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-459.glb","checksum":"0e0c2fafb9c6823ea48617bb74a69dbeee621906e55f56295eedc1dc28e6cf24","size":35512,"triangleCount":318},{"id":"collision-460","fileName":"collision-460.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-460.glb","checksum":"07cf9bbe0d2f84b171ee8224dcc5d9171bf9c2e2537230f2cac51d83104542dd","size":32348,"triangleCount":40},{"id":"collision-461","fileName":"collision-461.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-461.glb","checksum":"89f5e3a2fba572e04e9a36ff2c2759330ea5c1e9a19bf5d1ef2ce9f40b11cba2","size":32340,"triangleCount":40},{"id":"collision-462","fileName":"collision-462.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-462.glb","checksum":"fdfd7204fc64d81ef7ea96286dda833485b2df55875b4960ba1f8f1579786dee","size":70676,"triangleCount":2609},{"id":"collision-463","fileName":"collision-463.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-463.glb","checksum":"66ed2ad6036326f8a42b2a81fbc5f976dde341d04a92f632d9a40dcf6e14a9d5","size":37560,"triangleCount":516},{"id":"collision-464","fileName":"collision-464.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-464.glb","checksum":"6bcb42265e9b5a5582d69e4bb917c50c6c8733d31fc408a34d4ee8c05cffb85e","size":40244,"triangleCount":547},{"id":"collision-465","fileName":"collision-465.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-465.glb","checksum":"f66fd9f2b4b4a3397d6ac41701d7f90b7fe83a0346c0d2e0632224daf5f8be2e","size":40108,"triangleCount":576},{"id":"collision-466","fileName":"collision-466.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-466.glb","checksum":"e88aa77da0a365620e362d638d14a79ff83dae3fd3718ee502bdebc5ed65fe97","size":40232,"triangleCount":547},{"id":"collision-467","fileName":"collision-467.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-467.glb","checksum":"cdfc291a44f5260fafac01135ce0ae2037878860d5587d806a55235371243622","size":32332,"triangleCount":40},{"id":"collision-468","fileName":"collision-468.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-468.glb","checksum":"ef06811e683f607dea089c0e6e3f2bcb2cabbfa56b5e50b9f941ae155c7ae54e","size":40080,"triangleCount":576},{"id":"collision-469","fileName":"collision-469.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-469.glb","checksum":"55b7a428313341bb57eed975fd59087a512cacc9f1e9aa700a16c34f526ecd27","size":32344,"triangleCount":40},{"id":"collision-470","fileName":"collision-470.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-470.glb","checksum":"6123d5f3ec1c3be100a0f944d173c4b60429637b802758d2bd3aae0fda2138df","size":32348,"triangleCount":40},{"id":"collision-471","fileName":"collision-471.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-471.glb","checksum":"2a06dd3080e887eee6705bfa4065b56f87d5a608eb74897fa78824ef9e8c1e8d","size":48320,"triangleCount":1770},{"id":"collision-472","fileName":"collision-472.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-472.glb","checksum":"7c873fbddc2f659268c338bf2027fe988c211fa90c4e0172939a640222c55c67","size":40232,"triangleCount":547},{"id":"collision-473","fileName":"collision-473.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-473.glb","checksum":"4368d5f2047e1fe04af585fba60905849e0869aa992c4be0fa534a197cbd49d4","size":40152,"triangleCount":547},{"id":"collision-474","fileName":"collision-474.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-474.glb","checksum":"051948efa718f1d48c9b137b92c6af72b24b218cc9a5a0b7fedce9cc45b6b576","size":42024,"triangleCount":762},{"id":"collision-475","fileName":"collision-475.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-475.glb","checksum":"887ddb91453168157fe93c273e9d5eb170582227b1c26723ea8743b2767bcbaa","size":32332,"triangleCount":40},{"id":"collision-476","fileName":"collision-476.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-476.glb","checksum":"0acb69096d41b9e6b042e1f734004613b7625f62dd69a1f300d6cdcc256f1eeb","size":32352,"triangleCount":40},{"id":"collision-477","fileName":"collision-477.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-477.glb","checksum":"9bbc8404d680bf5fedacf8f002cffd3ceb3fc4b436b2d9ec6c293a68e4e3cc5f","size":37580,"triangleCount":516},{"id":"collision-478","fileName":"collision-478.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-478.glb","checksum":"187a7214dd26ed64b3ef856f256a147c6d881572a4a94e24cd0ec8dac7ba0c06","size":40064,"triangleCount":576},{"id":"collision-479","fileName":"collision-479.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-479.glb","checksum":"e3626b2988a2f6dbe592e9b4a7a64e0f6f0e85bce5d0cca4d102dc6b7c081bf0","size":53880,"triangleCount":1906},{"id":"collision-480","fileName":"collision-480.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-480.glb","checksum":"a13da12fd80f4d8b31f449820b57c2533e746172271a81e0b124615dd73c7941","size":34088,"triangleCount":192},{"id":"collision-481","fileName":"collision-481.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-481.glb","checksum":"21280f451b418667ba66df78d8fd1d4e59cb7962bf5a086feb83c8e0a96819f4","size":62432,"triangleCount":3260},{"id":"collision-482","fileName":"collision-482.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-482.glb","checksum":"b8af7d681df0147f1a511331dbbfd12d63aadfd0c4702acd79a08c804fb2774f","size":40248,"triangleCount":547},{"id":"collision-483","fileName":"collision-483.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-483.glb","checksum":"83d8736e95e064574d36364475f50c25bb5fa649c32bc1867cb47a78458af291","size":62428,"triangleCount":3260},{"id":"collision-484","fileName":"collision-484.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-484.glb","checksum":"dfa59f275d701e37582139681f163cf6eea30511890ce367ed3abb90b6fafee3","size":32328,"triangleCount":40},{"id":"collision-485","fileName":"collision-485.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-485.glb","checksum":"49c474d2f108ef5f12b394a362b1fbc68fd3995133ef46e16b7e0be08de4fc60","size":32340,"triangleCount":40},{"id":"collision-486","fileName":"collision-486.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-486.glb","checksum":"4179fbe6a5bfb9586d64a40246a93c2bd70aae1efaeed18caa9c1e5e56ccfe2f","size":32340,"triangleCount":40},{"id":"collision-487","fileName":"collision-487.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-487.glb","checksum":"7a2ca6e71187a4220a195c52003a009fe29dcac37ead3273722e5c207b31dab8","size":32344,"triangleCount":40},{"id":"collision-488","fileName":"collision-488.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-488.glb","checksum":"6b9e13823a90d0f04b7d00897df07ef1b18ebc1ff818f8f76912f25de7f7addc","size":40080,"triangleCount":576},{"id":"collision-489","fileName":"collision-489.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-489.glb","checksum":"790b7256ec2e0ac1506c13852d7149c8afb6ad5f329724ac35eec38782a43dc6","size":40100,"triangleCount":576},{"id":"collision-490","fileName":"collision-490.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-490.glb","checksum":"8508413a73a597352846d3ea115d54da7f091b9525a7c55511ade70a4af7cc2d","size":32344,"triangleCount":40},{"id":"collision-491","fileName":"collision-491.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-491.glb","checksum":"be0c01c362a6e805fa51497f2942581461443dbc888e76397443cd9a1633d30a","size":40100,"triangleCount":576},{"id":"collision-492","fileName":"collision-492.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-492.glb","checksum":"9ff82bd854ef523a54cf9bec25c92283d3f79efc5b0485a7ed67dd3b0ebfda40","size":33572,"triangleCount":136},{"id":"collision-493","fileName":"collision-493.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-493.glb","checksum":"e0c3230b2ff449e8e020446bcf4f016991553d69468d48586d54925fc44d848b","size":32332,"triangleCount":40},{"id":"collision-494","fileName":"collision-494.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-494.glb","checksum":"a246cb99c63dee45ee4789083dbcd7b3f716882f48154edc68f58eb5150ddacc","size":32332,"triangleCount":40},{"id":"collision-495","fileName":"collision-495.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-495.glb","checksum":"d1ea99dcc62ad4a388c38c0283fc82a43d9384c3bb6ebcf2e829c8094c5be270","size":35632,"triangleCount":318},{"id":"collision-496","fileName":"collision-496.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-496.glb","checksum":"24349fac7db58f482e9438a3fdee70f4690c54376786071f6fd04793d6919dbb","size":32332,"triangleCount":40},{"id":"collision-497","fileName":"collision-497.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-497.glb","checksum":"36b3ab1550e93c930aeadc5789f361d38f89d05859c0383a053d40773b97c28b","size":32344,"triangleCount":40},{"id":"collision-498","fileName":"collision-498.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-498.glb","checksum":"bf9e1cf750aef5d5aef68398efd8a4a158f0bfeccbb339fa6f233901866fd6ec","size":33580,"triangleCount":136},{"id":"collision-499","fileName":"collision-499.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-499.glb","checksum":"114de55fdd713ef824036e1c16b11836c50636b3777ff9f91d59f1041a557323","size":32348,"triangleCount":40},{"id":"collision-500","fileName":"collision-500.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-500.glb","checksum":"6d0016c9194e4dff83224f05b32989b03228d27c17b35deb92a8e63c5823dabc","size":53932,"triangleCount":1906},{"id":"collision-501","fileName":"collision-501.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-501.glb","checksum":"8654302e53c1729b8d45ab06abb79bc4386c59664e471af13c13f32e2a858ac3","size":40176,"triangleCount":547},{"id":"collision-502","fileName":"collision-502.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-502.glb","checksum":"70abc34381ae40e9f1cca08d0acdbe205585da3f1551117ecf3f7f4f65526551","size":53852,"triangleCount":1906},{"id":"collision-503","fileName":"collision-503.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-503.glb","checksum":"f16b960a74264181b0536ae9c363de7398e16a8e7ea8e774d53589c15fd46a31","size":45268,"triangleCount":840},{"id":"collision-504","fileName":"collision-504.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-504.glb","checksum":"c49b48570aeaf793490578959f5e25dccb47d36aff3191e059173139d3243688","size":32336,"triangleCount":40},{"id":"collision-505","fileName":"collision-505.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-505.glb","checksum":"1940a4d1fe1e8b079c11add0258d5ade1fc4e3782cfc7a828177ed72d2c5cb63","size":37580,"triangleCount":516},{"id":"collision-506","fileName":"collision-506.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-506.glb","checksum":"b4571cab06b2e497328f78b30bb16ed4d3fa9fa23d2cf9740a4cb8dab812648d","size":32344,"triangleCount":40},{"id":"collision-507","fileName":"collision-507.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-507.glb","checksum":"1c8d84aeeb2f99e25d26a5369dd513e4df4196b1fc03549763c8a3beb879214c","size":40048,"triangleCount":576},{"id":"collision-508","fileName":"collision-508.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-508.glb","checksum":"c80ff19cb4dfb249f3881bba725a808ecff7e1e59d693aee24393f1999c0aabd","size":40156,"triangleCount":547},{"id":"collision-509","fileName":"collision-509.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-509.glb","checksum":"408089fb2fdd68df10779e7576a1f18cec5d9b56cc0b41328783ab8284c54a34","size":32344,"triangleCount":40},{"id":"collision-510","fileName":"collision-510.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-510.glb","checksum":"e8d086a689e2578a64f35bc5195fd8e07750b7d4c4f94bd339c0a76698315626","size":32336,"triangleCount":40},{"id":"collision-511","fileName":"collision-511.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-511.glb","checksum":"f2a00c6a4a8833c34ba2543107536e76a64b5df363acd4f7e50eb5993d2cc61a","size":40236,"triangleCount":547},{"id":"collision-512","fileName":"collision-512.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-512.glb","checksum":"6804ac2e85c24875931e4113a92af2dcde70516faf34511e6e86dde3f4723477","size":32332,"triangleCount":40},{"id":"collision-513","fileName":"collision-513.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-513.glb","checksum":"bea5e1d2e06d9201d5e18e1f997f536aba4f7e925eb55331916dd9ab6470e5f7","size":32324,"triangleCount":40},{"id":"collision-514","fileName":"collision-514.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-514.glb","checksum":"a7f2ed0039c9b1c015f2b979328df29a8b3d7feca4ec53f71b0314870d4fbb3c","size":32336,"triangleCount":40},{"id":"collision-515","fileName":"collision-515.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-515.glb","checksum":"4ad902f5b757fae054a1dea688ba63b9f8e5f8167e9c2224732cce6a0aca1df5","size":32352,"triangleCount":40},{"id":"collision-516","fileName":"collision-516.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-516.glb","checksum":"45b6a5814f81b922e6cf912c6353846c6e1938a986c09e5226044bda80095031","size":40084,"triangleCount":576},{"id":"collision-517","fileName":"collision-517.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-517.glb","checksum":"9205857b106f11749f258cc3e38c103c3dade0d3146385e645809a7ed4d6f3e2","size":33520,"triangleCount":152},{"id":"collision-518","fileName":"collision-518.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-518.glb","checksum":"4f87532fac1663567828182d01b08b5e1f19eb3159f590896b8e323876c7da2f","size":32332,"triangleCount":40},{"id":"collision-519","fileName":"collision-519.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-519.glb","checksum":"188a50392f485458a3ddddb2099068526a8b1da3e5deb7ebcf8a110bd4715319","size":32340,"triangleCount":40},{"id":"collision-520","fileName":"collision-520.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-520.glb","checksum":"249a72251723a5296b4276dc5681ca4e664e1ce6ade3d46c4c0c54d172209f67","size":32332,"triangleCount":40},{"id":"collision-521","fileName":"collision-521.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-521.glb","checksum":"2fd2cb2b75c2c82bc0eaf4d00f7a141fc2deb3a85d88218f1535ad667ae4aa39","size":45276,"triangleCount":840},{"id":"collision-522","fileName":"collision-522.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-522.glb","checksum":"fb8d90988da2462f39863cbebc2e5c0d7d0fa81a9a891343bce3d1df25867b0f","size":32340,"triangleCount":40},{"id":"collision-523","fileName":"collision-523.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-523.glb","checksum":"989385c66d444d42ec1768d14c304077e627366ae26d2be478f820bc65e73257","size":45220,"triangleCount":840},{"id":"collision-524","fileName":"collision-524.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-524.glb","checksum":"ca5e2e204fea17435fda36fec64e4f5e5a85019065c4665abeb3f5f824515c31","size":37624,"triangleCount":516},{"id":"collision-525","fileName":"collision-525.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-525.glb","checksum":"8784a778c19188bb169fd6653cffa80fb34763cafa51a4b288e52076666584e8","size":40348,"triangleCount":547},{"id":"collision-526","fileName":"collision-526.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-526.glb","checksum":"4ccb510859f89bf1fc134577841d28d85406c66075b0550459297b530040f371","size":40200,"triangleCount":547},{"id":"collision-527","fileName":"collision-527.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-527.glb","checksum":"1bd6f34b2d206aec6e6e6ad84b88009f2b36a9836fc5995c4df828631af64350","size":90560,"triangleCount":5075},{"id":"collision-528","fileName":"collision-528.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-528.glb","checksum":"b59f4d24f7a81f12117b67ec48c03f10dadb8bbffd406e7b27516c7fb2d87db9","size":40088,"triangleCount":576},{"id":"collision-529","fileName":"collision-529.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-529.glb","checksum":"754530842044e590ff15042fcbdd4e8f31fe604a3f47bc27b807a87bbb51590f","size":40068,"triangleCount":576},{"id":"collision-530","fileName":"collision-530.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-530.glb","checksum":"29ae3e341093340e0be42fd382ecab837f059b0c002331ea931746744d9619ee","size":32340,"triangleCount":40},{"id":"collision-531","fileName":"collision-531.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-531.glb","checksum":"8d2d014e99fae2daffea58c5eeb62f53a7f92d17935db0f627d8a9d36cf5a13d","size":32336,"triangleCount":40},{"id":"collision-532","fileName":"collision-532.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-532.glb","checksum":"99bfee371645a2d4c44544eb443138fe59d7e09b48793aeae3bdb754381bbe6c","size":32340,"triangleCount":40},{"id":"collision-533","fileName":"collision-533.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-533.glb","checksum":"fabbf36e4416466b8f222c62141faf2f75a9a7b5c5ae0bcf7823e88603157e53","size":32348,"triangleCount":40},{"id":"collision-534","fileName":"collision-534.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-534.glb","checksum":"7b71f60d740161120e829dde660510e60f86afafdea0686e6c3645230183fb4a","size":32336,"triangleCount":40},{"id":"collision-535","fileName":"collision-535.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-535.glb","checksum":"be4239e3579739111b94a24dd28529606de5b61b9a18fe2f8d2358ea84ddc999","size":32340,"triangleCount":40},{"id":"collision-536","fileName":"collision-536.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-536.glb","checksum":"aac3f9c6d8b233ec65e83b2ebd52e2b8c6ef1cc65449396e6051b4f27604266b","size":32340,"triangleCount":40},{"id":"collision-537","fileName":"collision-537.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-537.glb","checksum":"07580c20da472ac7379ad6acb8005fc52999e6c0278966eb3726dc53c26f0007","size":32332,"triangleCount":40},{"id":"collision-538","fileName":"collision-538.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-538.glb","checksum":"efda3dbcee84c6fb1dd4e8e0dfe31b73b494372221c183c319e6416d2d2521bd","size":40160,"triangleCount":547},{"id":"collision-539","fileName":"collision-539.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-539.glb","checksum":"4793575c1e38f5cf7f54af7cb919bdf166facaeedbb12a890a7298d763c45115","size":32352,"triangleCount":40},{"id":"collision-540","fileName":"collision-540.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-540.glb","checksum":"f0614aab36972a9914d23cdf98ffcd057d0bf43b913e3128f422f99061f15172","size":32348,"triangleCount":40},{"id":"collision-541","fileName":"collision-541.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-541.glb","checksum":"2027b53bf966f3f4941326712eeee3508ae9ffd67e67af47bd9891d59d60b972","size":32320,"triangleCount":40},{"id":"collision-542","fileName":"collision-542.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-542.glb","checksum":"5f7c5b20b4a7dcb1f53d3d106cba9e4b432df068f86da51f14809d6beb550165","size":32328,"triangleCount":40},{"id":"collision-543","fileName":"collision-543.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-543.glb","checksum":"6afcbf88e20dc0ba43981bfb625a0deafe6b3a9efc5f90f8e3d70410383cfce9","size":40148,"triangleCount":547},{"id":"collision-544","fileName":"collision-544.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-544.glb","checksum":"868e741485d0f901b7293f730643bce44faa5178092396c242d37a751d350386","size":33516,"triangleCount":152},{"id":"collision-545","fileName":"collision-545.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-545.glb","checksum":"7e453be8f87cdce5ae72c49cf9b0f18e0a04b39177ec1c3c589ca06652bbbfcf","size":40036,"triangleCount":576},{"id":"collision-546","fileName":"collision-546.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-546.glb","checksum":"b3ec9691e05ec83c296ef1679a86ab4a73ef022a3e86fa6a523a9d44d78dd22f","size":50240,"triangleCount":1508},{"id":"collision-547","fileName":"collision-547.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-547.glb","checksum":"303d651e1b4847990a395050da862753a5f0b6c880fd35445ed199f2703dcd66","size":62656,"triangleCount":2760},{"id":"collision-548","fileName":"collision-548.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-548.glb","checksum":"dcafe3a9c11ca0b6b436a6bd0e257a060d8876b778e852038ee7a98d45f812d9","size":42028,"triangleCount":762},{"id":"collision-549","fileName":"collision-549.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-549.glb","checksum":"ee3f7e577aa186b2aa631fdceee187e60ebba13217575eb1164f34944acddf8f","size":42008,"triangleCount":762},{"id":"collision-550","fileName":"collision-550.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-550.glb","checksum":"41800b59a22ef8a7abdc77d4357b0c764a9f308ccf5d0ed1892010846f510ff3","size":40136,"triangleCount":547},{"id":"collision-551","fileName":"collision-551.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-551.glb","checksum":"fcb7a8223456d16cc7e6564faaf28541ab510ebe3a58f877a69683a5a1799f32","size":32348,"triangleCount":40},{"id":"collision-552","fileName":"collision-552.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-552.glb","checksum":"1345e9186184af35e7cf68b8c837ba53fb96127a817fcfba398aef524eb0fa1d","size":53884,"triangleCount":1906},{"id":"collision-553","fileName":"collision-553.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-553.glb","checksum":"e6e7ed65aa527df6c44edf2b52b17bcaba95c9c44f112f7d303f6b514d842d5e","size":42644,"triangleCount":680},{"id":"collision-554","fileName":"collision-554.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-554.glb","checksum":"f6d54340f5c97afd73b0a7f4887be463142fd1cd3780ed578643aa97a984fa60","size":62476,"triangleCount":3260},{"id":"collision-555","fileName":"collision-555.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-555.glb","checksum":"8874613e5d9b0ed03361c95d3e3ebe12d450ab21ff11328c12a587aa04347801","size":32340,"triangleCount":40},{"id":"collision-556","fileName":"collision-556.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-556.glb","checksum":"d38606fc4e007b8793dcda7191d92e9c566eaf7a13e30057ab34db39a3314fb7","size":35624,"triangleCount":318},{"id":"collision-557","fileName":"collision-557.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-557.glb","checksum":"aa232b6ece5e1819b76f9ef26b5aa47a7b4c4ecd5e460169597ed90f1c54f163","size":40044,"triangleCount":576},{"id":"collision-558","fileName":"collision-558.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-558.glb","checksum":"e200404370d434b78e049784fef95157243004f958f6df220e2359e022d000c4","size":33512,"triangleCount":152},{"id":"collision-559","fileName":"collision-559.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-559.glb","checksum":"eb6e224ff62227c844eec147e6f7b2f4e305a6d7b08983916b113b6d1e755878","size":35572,"triangleCount":318},{"id":"collision-560","fileName":"collision-560.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-560.glb","checksum":"6568dfcdecde751a693e01c91de91603dce47d578cba4e228bb89ade6c5d5b56","size":40056,"triangleCount":576},{"id":"collision-561","fileName":"collision-561.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-561.glb","checksum":"93e1613b48ec5acc26accf015d821b626dd63b8e37f2ceb6f4b458359126f958","size":32352,"triangleCount":40},{"id":"collision-562","fileName":"collision-562.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-562.glb","checksum":"3315c3b8f372c35edb42b2aed7d178f22aecce659c67e382f08c36dc91b70661","size":32352,"triangleCount":40},{"id":"collision-563","fileName":"collision-563.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-563.glb","checksum":"50bd863c0932c4df7bdd702ea908f61065c534f235860906de2aa9cbf60dec59","size":40080,"triangleCount":576},{"id":"collision-564","fileName":"collision-564.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-564.glb","checksum":"1d32543fd46df0cfe6069e02aaf06c400f5f5f85887a98a9aeeadece91b47b41","size":33520,"triangleCount":152},{"id":"collision-565","fileName":"collision-565.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-565.glb","checksum":"0666a92915f48d9b78f1072c811f3f2e49fba8d0c43568f52be5d44218664a2d","size":40244,"triangleCount":547},{"id":"collision-566","fileName":"collision-566.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-566.glb","checksum":"7394b31e5c552fd87a1a0a62c0fcc932f211466d9be94427e75b354f429a377e","size":32352,"triangleCount":40},{"id":"collision-567","fileName":"collision-567.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-567.glb","checksum":"6733261e43093938680cc78ba34c5c76dd929756585232798cae833d51a9e120","size":32332,"triangleCount":40},{"id":"collision-568","fileName":"collision-568.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-568.glb","checksum":"493fa1afd575650e6237e1a85611d26bed4b09b98c9d840014566e0869d4397a","size":32340,"triangleCount":40},{"id":"collision-569","fileName":"collision-569.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-569.glb","checksum":"95477e36d0cdcbedfe51032408ead12af4c2340b61b5aa41fe8fe0cdcd02ceed","size":32328,"triangleCount":40},{"id":"collision-570","fileName":"collision-570.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-570.glb","checksum":"c76ffde4b0a93a8888ba831a647ab2fedd268e711f993b27ef5b9673f9f2914c","size":40212,"triangleCount":547},{"id":"collision-571","fileName":"collision-571.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-571.glb","checksum":"c1b3125fec2fc234c9f3d0e6d75f7afc551d8356ffeec27125f87540f5a793ab","size":40100,"triangleCount":576},{"id":"collision-572","fileName":"collision-572.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-572.glb","checksum":"dfd9dab0c4a7c8a54251e8c2c17dc25629f9f6e13d5a558703c19ac6a634a8b0","size":32352,"triangleCount":40},{"id":"collision-573","fileName":"collision-573.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-573.glb","checksum":"e55a52c1a6d2a4f2b2a9edef967110d441ba8e2f07faf220f971a5ef23e1eea3","size":32336,"triangleCount":40},{"id":"collision-574","fileName":"collision-574.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-574.glb","checksum":"54332c9b95241493e533281040d8dcd008e95bfaff29b88bcf29fa79e53769a3","size":32348,"triangleCount":40},{"id":"collision-575","fileName":"collision-575.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-575.glb","checksum":"4bca721672d764d85af2d04f8e5946c3c5dff13fb61500c36225a25fd9388d46","size":32348,"triangleCount":40},{"id":"collision-576","fileName":"collision-576.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-576.glb","checksum":"b91ee021967fa1370f3a56b5593aec992b5b8b67b4c932a11b39770ad5d7495a","size":32348,"triangleCount":40},{"id":"collision-577","fileName":"collision-577.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-577.glb","checksum":"bd589d8b57d5f68d3f0cd8ce63fcd6278306d656bc6bfda1890162ca58237c33","size":32336,"triangleCount":40},{"id":"collision-578","fileName":"collision-578.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-578.glb","checksum":"713ca9dbef2ec628011447e87e9e527c38af3262c4954b5937b9a3f77b89405b","size":42020,"triangleCount":762},{"id":"collision-579","fileName":"collision-579.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-579.glb","checksum":"442c4d2b9049d168839867efc1b0bf052c6a6027f1f2da068463489fbb83e901","size":40244,"triangleCount":547},{"id":"collision-580","fileName":"collision-580.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-580.glb","checksum":"524f7f07d36fc0eb72d2f5aafe6cc7e037226998bf729a1fa9cf6e49880ba0a3","size":32340,"triangleCount":40},{"id":"collision-581","fileName":"collision-581.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-581.glb","checksum":"19a7bbab0072e02ff9ad63667fa7ed7296d3def9c5ea6338cb21e739b6590369","size":40240,"triangleCount":547},{"id":"collision-582","fileName":"collision-582.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-582.glb","checksum":"52cc1e2eeab91c6ba20a5d464a58114edf477be0f5cc9a8376af7e64acb3d599","size":51620,"triangleCount":1296},{"id":"collision-583","fileName":"collision-583.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-583.glb","checksum":"ac4ae65759ea4ddaff2dab303d3dc337d6cc588a2dca14a44bfcf6dba0d5b374","size":32340,"triangleCount":40},{"id":"collision-584","fileName":"collision-584.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-584.glb","checksum":"e19e85a9475ccc3233aa83118143fdf0f1ae84dab046ec97eb59eeaf6ef3690e","size":40096,"triangleCount":576},{"id":"collision-585","fileName":"collision-585.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-585.glb","checksum":"0563a8c2d779d221e7edd4f24bf0e390c90ece737418fee2dc68c5f43fda4a9d","size":186536,"triangleCount":65536},{"id":"collision-586","fileName":"collision-586.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-586.glb","checksum":"a4e395841f037278497e204005b609219325c28ff5123a83afc0303a1589a482","size":62404,"triangleCount":3260},{"id":"collision-587","fileName":"collision-587.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-587.glb","checksum":"321b13c8ae5ae229e32eb2536c0da6255350bb86a226a2555ff293911995f9ba","size":50180,"triangleCount":1877},{"id":"collision-588","fileName":"collision-588.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-588.glb","checksum":"c2bf3ce500696180af57584209669e646932b744b0c15c86b1099e1b0da09349","size":45164,"triangleCount":1512},{"id":"collision-589","fileName":"collision-589.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-589.glb","checksum":"344f5e2c53cd3ffabb6f9e3af90e786e5fa3795e3197a7df6c3c9c0530c161a0","size":193508,"triangleCount":65536},{"id":"collision-590","fileName":"collision-590.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-590.glb","checksum":"25ba7ddeabb6e06c4bfae54a0b39955e15973870635fa5483495d053fadbf8c0","size":197704,"triangleCount":65504},{"id":"collision-591","fileName":"collision-591.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-591.glb","checksum":"113dd338a6d50bd5fdeab704cb4dfc0ffd60f362b54b4ac168b1e969a3e1d814","size":522368,"triangleCount":46197},{"id":"collision-592","fileName":"collision-592.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-592.glb","checksum":"60c7036cda1bf597972b484f4e6cf3991a22b66418d7d11430c929940f72b71b","size":32340,"triangleCount":40},{"id":"collision-593","fileName":"collision-593.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-593.glb","checksum":"bc47c53b9c01fde5b368af440a6d094c892e7cd374977ad9486eb3041fb0ea52","size":32336,"triangleCount":40},{"id":"collision-594","fileName":"collision-594.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-594.glb","checksum":"c9c3718f03eeac19b56065d82021ce9dca3a83fbb5b941adc24e174fdb325960","size":32344,"triangleCount":40},{"id":"collision-595","fileName":"collision-595.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-595.glb","checksum":"e73039a84834ec4432f9e2c3d68fe06bc8ed15f7749b60990efef4f9d1d99994","size":32344,"triangleCount":40},{"id":"collision-596","fileName":"collision-596.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-596.glb","checksum":"a6b0efe91e15e9e669717223575396b8342fb0003078c186ca1222b94adbffcd","size":32348,"triangleCount":40},{"id":"collision-597","fileName":"collision-597.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-597.glb","checksum":"238d69876651080a6c86d5853aa5904724841269df5fa6fb51eec6deace0b53c","size":40016,"triangleCount":576},{"id":"collision-598","fileName":"collision-598.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-598.glb","checksum":"a85ca1100ee960735c36c155a63896b32e57c852b03765c70e20347a8f0fbc6b","size":32348,"triangleCount":40},{"id":"collision-599","fileName":"collision-599.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-599.glb","checksum":"040b5564416dd10b42a00dea8796246d492896e77ca3962c6231f844330c726b","size":32340,"triangleCount":40},{"id":"collision-600","fileName":"collision-600.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-600.glb","checksum":"2908e21ab96aa5f59326377c9c3275e15ebce7db9a05345c44adc6106768fd5d","size":32332,"triangleCount":40},{"id":"collision-601","fileName":"collision-601.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-601.glb","checksum":"0120b5e8e4ac02b3d19a06496a055ee410c5a0f69342890f4f3ad4f039d94a7d","size":32336,"triangleCount":40},{"id":"collision-602","fileName":"collision-602.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-602.glb","checksum":"5e5cfae2fbaa50b9adbd126fc4cc8217662216246e88462a8cf52f197c9d99a1","size":32324,"triangleCount":40},{"id":"collision-603","fileName":"collision-603.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-603.glb","checksum":"7565917bef093929acac21bac6d3d1f33d0a0bfb9be60870d538d5488564402f","size":32336,"triangleCount":40},{"id":"collision-604","fileName":"collision-604.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-604.glb","checksum":"6f7900bbd5e1f94bde83a31a9f214464dffced941502a4fc0cd82842de6a5f62","size":32344,"triangleCount":40},{"id":"collision-605","fileName":"collision-605.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-605.glb","checksum":"85fdf8467eff2a0d57ea3349b584f2d153a5f592b906c76f19c8d17ecdf9ea53","size":32340,"triangleCount":40},{"id":"collision-606","fileName":"collision-606.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-606.glb","checksum":"dccc39520bd2b6317fd0f16fdd5269fe3517bee08552188aa082a3d9b06c8ad8","size":32336,"triangleCount":40},{"id":"collision-607","fileName":"collision-607.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-607.glb","checksum":"14c7adba753733801587d3f9d5ca837abbb811dcb38be277ffaf982c2fdc9f35","size":33524,"triangleCount":152},{"id":"collision-608","fileName":"collision-608.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-608.glb","checksum":"6113ea60297145e954b1d0c8e7b445c086a4f88688bf8293dbebdebd40fd3a7c","size":32344,"triangleCount":40},{"id":"collision-609","fileName":"collision-609.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-609.glb","checksum":"e42a19651658fc3c63d4ac1e3a48c88cfddd8403cc5679ed5a479edc90f73073","size":40132,"triangleCount":547},{"id":"collision-610","fileName":"collision-610.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-610.glb","checksum":"038ac0cd1da150fdd8215595e1a6f775e408a5c73510537ca6866baf0f6c0d86","size":40016,"triangleCount":576},{"id":"collision-611","fileName":"collision-611.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-611.glb","checksum":"672e9305dd74bcdad746b9d0f83f197816b1f9bc048cab4c5940812fe3f62d0a","size":40116,"triangleCount":547},{"id":"collision-612","fileName":"collision-612.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-612.glb","checksum":"c3a991be300a0079eeda57c9e3e79aca5fe015b5a94c39a1d08f263d6a34cd97","size":32344,"triangleCount":40},{"id":"collision-613","fileName":"collision-613.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-613.glb","checksum":"d007f826057d75f4e0eb10ddaa66c86afab78cbbf97609f69e212c922ecc8116","size":32356,"triangleCount":40},{"id":"collision-614","fileName":"collision-614.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-614.glb","checksum":"12a5a7bf5f1dc409a64299eef0cec2c9a3704b05670e2e06cd1afc31b12a3332","size":32336,"triangleCount":40},{"id":"collision-615","fileName":"collision-615.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-615.glb","checksum":"5fed406a35c9e86678532678728e59e0b5b2d5b5b9fc62681b87a975f85dd66c","size":41888,"triangleCount":762},{"id":"collision-616","fileName":"collision-616.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-616.glb","checksum":"0906253f7855badb9ccb507e30444db49c1e3bbc7d597f7b248b5471823ca7a1","size":40132,"triangleCount":547},{"id":"collision-617","fileName":"collision-617.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-617.glb","checksum":"d20b59a684b3db2a466ac5251bdd72f46e035e7cd5ea1ff7331747c54cf464b9","size":45116,"triangleCount":840},{"id":"collision-618","fileName":"collision-618.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-618.glb","checksum":"9c7bcda74276c0538d37aa39f7142faf36c71a3d794f5722891ff285317cb3b7","size":40164,"triangleCount":547},{"id":"collision-619","fileName":"collision-619.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-619.glb","checksum":"98fb8cfb22366d5b85f9ee1a7dcfda33505ec85d1a37ea7abc8a9733ef8c3230","size":40156,"triangleCount":547},{"id":"collision-620","fileName":"collision-620.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-620.glb","checksum":"4ee0b32f0510306286f1017e1785f67906de6a4b9f3166f6f89bb4a9d2394801","size":40144,"triangleCount":547},{"id":"collision-621","fileName":"collision-621.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-621.glb","checksum":"02455e47b3e3f764c36b2ac165d06cb1e991214329c454ba88576cb02f27e538","size":40216,"triangleCount":547},{"id":"collision-622","fileName":"collision-622.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-622.glb","checksum":"e8c15c0ee120005691890b7cfad0fb6479f7458eaaaf58d4da3f891fb65fc3d0","size":32332,"triangleCount":40},{"id":"collision-623","fileName":"collision-623.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-623.glb","checksum":"8435f709917c07e0e8236035b022b41cd470e9a74044f7eaa67e007c5699dbd1","size":32348,"triangleCount":40},{"id":"collision-624","fileName":"collision-624.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-624.glb","checksum":"d368e63a870b871d2f69f4bd57fe864e9c903c4d8412fdce4e5c031ed670d32a","size":32336,"triangleCount":40},{"id":"collision-625","fileName":"collision-625.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-625.glb","checksum":"455f6eee3c824c45ded29494f1ea9108adbf8ba7eab06dae6063d33c006b498e","size":32332,"triangleCount":40},{"id":"collision-626","fileName":"collision-626.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-626.glb","checksum":"dfb78ce5c6efe01ff1ff98290fb6ee1f83fe287e1dd2e1be72dc38a734eb0389","size":32336,"triangleCount":40},{"id":"collision-627","fileName":"collision-627.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-627.glb","checksum":"1493ff60e68abebf5425f3be3501e74b1787f465a5a2099ec62a90237905c3f5","size":32340,"triangleCount":40},{"id":"collision-628","fileName":"collision-628.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-628.glb","checksum":"35bc67edfd9e5b1ed58d42e6cc16776558e75e0e26d43a5a5fc7f6313fd0e0aa","size":32344,"triangleCount":40},{"id":"collision-629","fileName":"collision-629.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-629.glb","checksum":"ac3121921097d3bea4644e47f80a99cb49fda1c68166ec815a4b803913fb51b0","size":32344,"triangleCount":40},{"id":"collision-630","fileName":"collision-630.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-630.glb","checksum":"7aa726344cda59fc6f6584638eece630fcf4cf68af73961776c21893b2e99974","size":32336,"triangleCount":40},{"id":"collision-631","fileName":"collision-631.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-631.glb","checksum":"e007dc46e65ca45034d23998d059679be5ff00d9ed9ca1017bd77cefa1583a8d","size":32324,"triangleCount":40},{"id":"collision-632","fileName":"collision-632.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-632.glb","checksum":"7a36c880bda19eba5c80492c1bc23e07bbb51698c5f9a19f27515e20b4ea7280","size":32336,"triangleCount":40},{"id":"collision-633","fileName":"collision-633.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-633.glb","checksum":"6c6bed0dd52a9e0b2256be6cc1b18a51ee0f172cbc202957410539e221d65674","size":32336,"triangleCount":40},{"id":"collision-634","fileName":"collision-634.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-634.glb","checksum":"ce93d8256b2ad03c781166be36f8fc29d07e2797b7d6e081bd1ade8de4e52f2d","size":45340,"triangleCount":1512},{"id":"collision-635","fileName":"collision-635.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-635.glb","checksum":"7e02a8311cbd37909a5eca172875f69587244444e5d224540f9ff8e9b3d0fb5b","size":45352,"triangleCount":1512},{"id":"collision-636","fileName":"collision-636.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-636.glb","checksum":"d09834286ccd790eaf49a44dd534301525d120ea93fe696053a57cc7e7e61ef5","size":42064,"triangleCount":762},{"id":"collision-637","fileName":"collision-637.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-637.glb","checksum":"2ebb87becb9e1996736512f46ff2a08c019772bc4530e6c1a35e3c4a2165e542","size":42072,"triangleCount":762},{"id":"collision-638","fileName":"collision-638.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-638.glb","checksum":"96c2c8f5e55f18f9284f85eb5beac98ae499c528e08dc48db8dff2577892d25a","size":45240,"triangleCount":840},{"id":"collision-639","fileName":"collision-639.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-639.glb","checksum":"eac693d9651b818b3257189ef39bc4ed6a83500751ff3c79620760af1dfac47e","size":45244,"triangleCount":840},{"id":"collision-640","fileName":"collision-640.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-640.glb","checksum":"d4ef2920d6faf84e5b2eb4860884e99deb157bd75c12234c2ba1f16140650624","size":40104,"triangleCount":576},{"id":"collision-641","fileName":"collision-641.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-641.glb","checksum":"a4201c076f6506f4ffde04d5724ca4529e081da76a6d575b4d9ea298a95e4a94","size":40040,"triangleCount":576},{"id":"collision-642","fileName":"collision-642.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-642.glb","checksum":"2d9a9959e6cbc39b47ed2a640189762b45f383d3442fcb9d438022fe8fc23a09","size":52796,"triangleCount":2010},{"id":"collision-643","fileName":"collision-643.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-643.glb","checksum":"0586189ca6cb867fbf21c8fa5f664c3e7a0ee38f6550eb2608f589021ac56e42","size":45168,"triangleCount":1512},{"id":"collision-644","fileName":"collision-644.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-644.glb","checksum":"1cf650bec1b052b32d3431734ec150bb05851dd76dfb8a9f888cdad9b6453697","size":45172,"triangleCount":1512},{"id":"collision-645","fileName":"collision-645.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-645.glb","checksum":"f9c72ac7a0487d222ecd59ab4d339be01e8246576492600040cf9d4ed3cc0faf","size":62428,"triangleCount":3260},{"id":"collision-646","fileName":"collision-646.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-646.glb","checksum":"1f0ebaf1850e62a71dd0f3c2b52b248cfa269457b4411c9f30b1c7cb0e991611","size":45260,"triangleCount":840},{"id":"collision-647","fileName":"collision-647.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-647.glb","checksum":"8b57d2759e8030e2760fd71183f7ba8c0f9e12cdc0a7b9f1c4cf3428998fc7b5","size":40104,"triangleCount":576},{"id":"collision-648","fileName":"collision-648.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-648.glb","checksum":"1e581eaecf353c2b915ad00a726cb4263ba569ef5523cb678296b0b89ad53aaa","size":40108,"triangleCount":576},{"id":"collision-649","fileName":"collision-649.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-649.glb","checksum":"19ddab059325eb2f6b67c8943a0eaccef3aa8ca48af02c9bbf9d06167bbb782f","size":40108,"triangleCount":576},{"id":"collision-650","fileName":"collision-650.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-650.glb","checksum":"2fb952ab86d0601d9bdab6e6307da72964779a6a6dc26ee0741d124b255b373c","size":40044,"triangleCount":576},{"id":"collision-651","fileName":"collision-651.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-651.glb","checksum":"72103747d522d0b85027130956305d9f829b05be549247aacdb65475314d51b8","size":40180,"triangleCount":547},{"id":"collision-652","fileName":"collision-652.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-652.glb","checksum":"d19142cb939e3b1493ec1c43b4e7b00a7e4e8075d769971a7af8b77b0736cd61","size":35608,"triangleCount":318},{"id":"collision-653","fileName":"collision-653.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-653.glb","checksum":"26f6ad333dc2d43899e30bcc86207f76acdd55752e1640901b4f1c228b6adbd6","size":40052,"triangleCount":576},{"id":"collision-654","fileName":"collision-654.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-654.glb","checksum":"ef5f0c188b9379203f8411d72dc6e3a1634cab8fa0695742a6f87d213ceda164","size":40052,"triangleCount":576},{"id":"collision-655","fileName":"collision-655.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-655.glb","checksum":"82a455b03cf87e5561fe28d78fb4b6b5f44ad960adf6752d8bcc17873f9f9f76","size":35560,"triangleCount":318},{"id":"collision-656","fileName":"collision-656.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-656.glb","checksum":"2f2f1caeaee27ed90d1c40b3bd33ed0210c2dbf9afb010c10679ccbffc580ef8","size":32340,"triangleCount":40},{"id":"collision-657","fileName":"collision-657.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-657.glb","checksum":"29c54579caf64b3c6b18db357735d36e401dd01fc1b6a871949bad13bfbf4aa1","size":32344,"triangleCount":40},{"id":"collision-658","fileName":"collision-658.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-658.glb","checksum":"cc9dde875197c719915ad8443b9279984b2a8377717e5b433a1f838333b944c5","size":40044,"triangleCount":576},{"id":"collision-659","fileName":"collision-659.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-659.glb","checksum":"933892c7f2f933fecb915b22aa45591b5d166f4970e820dd7750f74e2822a324","size":40044,"triangleCount":576},{"id":"collision-660","fileName":"collision-660.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-660.glb","checksum":"399b01bc91876cf61b32f1f639003429c705e6d1b4a59ff24087ba72bd574f40","size":32340,"triangleCount":40},{"id":"collision-661","fileName":"collision-661.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-661.glb","checksum":"44064d1c7dc6177182f0fbc1cbc6c85fcce6a8129327ae8381eb286dbb7552bf","size":32332,"triangleCount":40},{"id":"collision-662","fileName":"collision-662.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-662.glb","checksum":"14050cf26baba5071fe1d38c537a71070fef41b85aefd768b0a6b3897c44cc78","size":32336,"triangleCount":40},{"id":"collision-663","fileName":"collision-663.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-663.glb","checksum":"2eb2faa7de60c96df2bd9dcc50039c236ee4e9d1cc4d135f5663299426161cca","size":32340,"triangleCount":40},{"id":"collision-664","fileName":"collision-664.glb","url":"/assets/game/manastorm/1781-forgottenmine/collision-664.glb","checksum":"c7669ad7750424665a5f23248c75cbfa0cac4cab802bbd300dfeb2528ac83641","size":197624,"triangleCount":65536}],"navigation":{"id":"navigation","fileName":"navigation.glb","url":"/assets/game/manastorm/1781-forgottenmine/navigation.glb","checksum":"aeb76952fab6a4494febff8fdeccab8d1d56fd01f5a51c4cc72b4b1a42501874","size":5360496,"triangleCount":440319}},"transform":{"position":[0,0,0],"rotation":[0,0,0],"scale":1,"fromWow":"three(x,y,z)=(-wow.x,wow.z,wow.y)"},"bounds":{"min":[1240.8861,116.0807,1679.2645],"max":[2291.0667,218.1808,2192.8667]},"entrance":{"name":"Forgotten Mine Entrance","footPosition":[1285.8861,149.5807,1724.2645],"forward":[0.9682295680569261,0,0.2500629991428129],"yaw":1.318051005871305},"areas":[{"id":"entrance","name":"Forgotten Mine Entrance","center":[1285.8861,149.5807,1724.2645],"radius":35},{"id":"area-geolord-vek","name":"Geolord Vek's Encounter","center":[2246.0667,198.1808,2147.8667],"radius":42}],"entities":{"entry-254272":{"id":"entry-254272","kind":"boss","name":"Creature 254272","title":"Dungeon Boss","hasLoot":true,"combat":{"level":1,"healthMultiplier":1.15,"damageMultiplier":1.12,"moveSpeed":3.657152,"leashRange":70,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":2000,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"area","target":"nearby-party","school":"shadow","animation":"cast","range":22,"cooldownMs":6768,"damageMultiplier":0.82,"radius":10}]},"visual":{"primaryColor":"#3d5368","accentColor":"#9bcff1","scale":1.08,"archetype":"humanoid"}},"forgotten-mine-guardian":{"id":"forgotten-mine-guardian","kind":"mob","name":"Forgotten Mine Guardian","hasLoot":false,"combat":{"level":255,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"fire-surge","name":"Fire Surge","delivery":"projectile","target":"primary","school":"fire","animation":"cast","range":26,"cooldownMs":6753,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#633f49","accentColor":"#f0aaa0","scale":1.06,"archetype":"humanoid"}},"forgotten-mine-caster":{"id":"forgotten-mine-caster","kind":"mob","name":"Forgotten Mine Invoker","hasLoot":false,"combat":{"level":255,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"frost-surge","name":"Frost Surge","delivery":"projectile","target":"primary","school":"frost","animation":"cast","range":26,"cooldownMs":5074,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#4e4c6d","accentColor":"#b9b8f2","scale":1.06,"archetype":"humanoid"}},"forgotten-mine-brute":{"id":"forgotten-mine-brute","kind":"mob","name":"Forgotten Mine Brute","hasLoot":false,"combat":{"level":255,"healthMultiplier":1,"damageMultiplier":1,"moveSpeed":3.2,"leashRange":52,"attacks":[{"id":"basic-attack","name":"Basic Attack","delivery":"melee","target":"primary","school":"physical","animation":"attack","range":4.5,"cooldownMs":1900,"damageMultiplier":1},{"id":"shadow-surge","name":"Shadow Surge","delivery":"projectile","target":"primary","school":"shadow","animation":"cast","range":26,"cooldownMs":7134,"damageMultiplier":1.08}]},"visual":{"primaryColor":"#535b35","accentColor":"#d2dc7f","scale":0.97,"archetype":"humanoid"}}},"staticSpawns":[{"id":"encounter-5069","entityId":"entry-254272","position":[2246.0667,198.1808,2147.8667],"yaw":0,"spawnMask":1},{"id":"generated-trash-1","entityId":"forgotten-mine-guardian","position":[1428.7799,146.2057,1761.1694],"yaw":0,"spawnMask":1},{"id":"generated-trash-2","entityId":"forgotten-mine-caster","position":[1484.3889,144.8557,1777.3499],"yaw":1.618,"spawnMask":1},{"id":"generated-trash-3","entityId":"forgotten-mine-brute","position":[1543.3275,143.5057,1788.0436],"yaw":3.236,"spawnMask":1},{"id":"generated-trash-4","entityId":"forgotten-mine-guardian","position":[1601.1895,142.1557,1806.6775],"yaw":4.854,"spawnMask":1},{"id":"generated-trash-5","entityId":"forgotten-mine-caster","position":[1657.41,140.8057,1820.2174],"yaw":0.1888,"spawnMask":1},{"id":"generated-trash-6","entityId":"forgotten-mine-brute","position":[1713.019,139.4557,1836.3978],"yaw":1.8068,"spawnMask":1},{"id":"generated-trash-7","entityId":"forgotten-mine-guardian","position":[1888.7823,141.0488,1891.3131],"yaw":3.4248,"spawnMask":1},{"id":"generated-trash-8","entityId":"forgotten-mine-caster","position":[1922.5182,146.3273,1918.6435],"yaw":5.0428,"spawnMask":1},{"id":"generated-trash-9","entityId":"forgotten-mine-brute","position":[1954.6126,151.6058,1940.8799],"yaw":0.3776,"spawnMask":1},{"id":"generated-trash-10","entityId":"forgotten-mine-guardian","position":[1986.0956,156.8843,1965.7569],"yaw":1.9956,"spawnMask":1},{"id":"generated-trash-11","entityId":"forgotten-mine-caster","position":[2020.9081,162.1628,1985.1471],"yaw":3.6136,"spawnMask":1},{"id":"generated-trash-12","entityId":"forgotten-mine-brute","position":[2054.644,167.4413,2012.4775],"yaw":5.2316,"spawnMask":1},{"id":"generated-trash-13","entityId":"forgotten-mine-guardian","position":[2086.7385,172.7198,2034.7139],"yaw":0.5664,"spawnMask":1},{"id":"generated-trash-14","entityId":"forgotten-mine-caster","position":[2118.2214,177.9983,2059.5909],"yaw":2.1844,"spawnMask":1},{"id":"generated-trash-15","entityId":"forgotten-mine-brute","position":[2153.034,183.2768,2078.9811],"yaw":3.8024,"spawnMask":1}],"roamingPacks":[],"bosses":[{"id":"encounter-5069","name":"Geolord Vek","position":[2246.0667,198.1808,2147.8667]}],"objectiveOrder":[{"id":"encounter-5069","name":"Geolord Vek","position":[2246.0667,198.1808,2147.8667]}],"navigationLinks":[],"serverGameObjects":[],"provenance":{"clientBuild":"3.3.5a-Ascension","clientArchiveHashes":{"patch-WB1/world/maps/forgottenmine":"693b7067aa1109e14beb944bc95aed8299bf64e2ec6ae3dc43f4fab7d18f57b6"},"databaseAdapter":"ascension-encounter-identities-with-procedural-population","sourceSnapshot":"dungeon-pipeline/work/forgotten-mine/source-snapshot.json","coordinateTransform":"three(x,y,z)=(-wow.y,wow.z,wow.x)"},"validation":{"status":"unvalidated","blockers":[],"warnings":["Creature bodies use explicit procedural fallbacks until the corresponding client display composites are exported.","Trash identities and placements are procedural; boss identities come from the installed Ascension encounter catalog."]}}]} diff --git a/src/game/generated/fivePlayerDungeonImports.json b/src/game/generated/fivePlayerDungeonImports.json index cf6e0a0f..1d272c39 100644 --- a/src/game/generated/fivePlayerDungeonImports.json +++ b/src/game/generated/fivePlayerDungeonImports.json @@ -13370,8 +13370,8 @@ { "id": "visual", "url": "/assets/game/manastorm/230-blackrockdepths/visual.glb", - "checksum": "42d57961c31f54ecc7bc78829751110fc89294e6318336b8f260e132e478d13d", - "byteLength": 10266900, + "checksum": "7e4c7c75a898f5000fcb686dcfc6d3c1c4e675dc3dac5f7a8d48e53372b9f364", + "byteLength": 7068884, "triangleCount": 248302, "compression": "meshopt+ktx2" } diff --git a/src/game/generated/manastormAssetPackages.json b/src/game/generated/manastormAssetPackages.json index b9d874a0..c7513d79 100644 --- a/src/game/generated/manastormAssetPackages.json +++ b/src/game/generated/manastormAssetPackages.json @@ -54510,8 +54510,8 @@ { "id": "visual", "url": "/assets/game/manastorm/230-blackrockdepths/visual.glb", - "checksum": "42d57961c31f54ecc7bc78829751110fc89294e6318336b8f260e132e478d13d", - "byteLength": 10266900, + "checksum": "7e4c7c75a898f5000fcb686dcfc6d3c1c4e675dc3dac5f7a8d48e53372b9f364", + "byteLength": 7068884, "triangleCount": 248302, "compression": "meshopt+ktx2" } diff --git a/src/game/generated/talentUi/barbarian.json b/src/game/generated/talentUi/barbarian.json new file mode 100644 index 00000000..cfefb5dd --- /dev/null +++ b/src/game/generated/talentUi/barbarian.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"barbarian","trees":[{"id":"coa-barbarian-31","classId":"barbarian","name":"Brutality","icon":"/assets/ui/spells/novart_physical_ability_(47)_border.png","background":"","description":"Brutality nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-barbarian-32","classId":"barbarian","name":"Headhunting","icon":"/assets/ui/spells/inv_axe_1h_draenorcrafted_d_02_a_horde.png","background":"","description":"Headhunting nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-barbarian-33","classId":"barbarian","name":"Ancestry","icon":"/assets/ui/spells/ability_monk_elusiveale.png","background":"","description":"Ancestry nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-barbarian-87","classId":"barbarian","name":"Class","icon":"/assets/ui/spells/maiming_spear.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-5744","treeId":"coa-barbarian-31","index":5744,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/novart_physical_ability_(47)_border.png","maxRank":1,"name":"Decapitate","description":"Attempt to decapitate an injured enemy, dealing 220% Weapon Damage plus 27, and converting each extra point of Energy to deal additional damage (up to a maximum cost of 100 Energy). Only usable on enemies below 35% health.","rankDescriptions":["Attempt to decapitate an injured enemy, dealing 220% Weapon Damage plus 27, and converting each extra point of Energy to deal additional damage (up to a maximum cost of 100 Energy). Only usable on enemies below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4001","treeId":"coa-barbarian-31","index":4001,"prerequisiteId":"coa-entry-29783","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29783","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/_orc_06.png","maxRank":1,"name":"Excessive Power","description":"Level 10 Passive Increases your maximum Energy by 100%.","rankDescriptions":["Level 10 Passive Increases your maximum Energy by 100%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-6744","treeId":"coa-barbarian-31","index":6744,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_archaeology_ogres_warmaul_chieftain.png","maxRank":1,"name":"Beheader","description":"Scoring a kill blow with Decapitate now refunds 100% of your maximum Energy.","rankDescriptions":["Scoring a kill blow with Decapitate now refunds 100% of your maximum Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30792","treeId":"coa-barbarian-31","index":30792,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/achievement_boss_blackhand.png","maxRank":1,"name":"Reckless Movements","description":"Increases the damage of Ancestral Strike and Barbaric Whirl by 20%.","rankDescriptions":["Increases the damage of Ancestral Strike and Barbaric Whirl by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29281","treeId":"coa-barbarian-31","index":29281,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/_d3leapattack.png","maxRank":1,"name":"Killing Spree","description":"Charge at an enemy, dealing 25 + 30% AP Physical damage. Can only be used within 6 seconds of scoring a killing blow or applying Born in Blood.","rankDescriptions":["Charge at an enemy, dealing 25 + 30% AP Physical damage. Can only be used within 6 seconds of scoring a killing blow or applying Born in Blood."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6742","treeId":"coa-barbarian-31","index":6742,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/ability_revendreth_rogue.png","maxRank":2,"name":"Pure Power","description":"Increases the damage of Smash by 30% and your expertise by 10.","rankDescriptions":["Increases the damage of Smash by 15% and your expertise by 5.","Increases the damage of Smash by 30% and your expertise by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9170","treeId":"coa-barbarian-31","index":9170,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/5_warriorskill07_border.png","maxRank":1,"name":"Relentless","description":"Level 20 Passive Critical strikes with Ancestral Strike and Brutal Swing now refund 10 Energy.","rankDescriptions":["Level 20 Passive Critical strikes with Ancestral Strike and Brutal Swing now refund 10 Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-34268","treeId":"coa-barbarian-31","index":34268,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/5_axe_border.png","maxRank":1,"name":"Brutal Swing","description":"Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 135% Weapon Damage plus 10.","rankDescriptions":["Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 135% Weapon Damage plus 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29791","treeId":"coa-barbarian-31","index":29791,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/novart_magicspell_(16)_border.png","maxRank":1,"name":"Overkill","description":"Increases the critical strike chance of Decapitate and Headhunter's Spear by 30% against targets below 20% health.","rankDescriptions":["Increases the critical strike chance of Decapitate and Headhunter's Spear by 30% against targets below 20% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31151","treeId":"coa-barbarian-31","index":31151,"prerequisiteId":"coa-entry-4001","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4001","requiredRank":1},{"talentId":"coa-entry-29783","requiredRank":1}],"column":8,"row":4,"icon":"/assets/ui/spells/inv_mace_69.png","maxRank":1,"name":"Crush","description":"Crush enemies in a frontal cone, dealing 275% Weapon Damage plus 30, knocking them down briefly and stunning them for 3 seconds.","rankDescriptions":["Crush enemies in a frontal cone, dealing 275% Weapon Damage plus 30, knocking them down briefly and stunning them for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6750","treeId":"coa-barbarian-31","index":6750,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/inv_mace_1h_pvpcataclysms3_c_02.png","maxRank":2,"name":"Bloody Fighter","description":"Increases the critical strike chance of Brutal Swing and Smash by 10%.","rankDescriptions":["Increases the critical strike chance of Brutal Swing and Smash by 5%.","Increases the critical strike chance of Brutal Swing and Smash by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6350","treeId":"coa-barbarian-31","index":6350,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/novart_physical_ability_(10)_border.png","maxRank":1,"name":"Headlopper","description":"Your critical strikes with Decapitate now cause the enemy to bleed, dealing an additional 30% of the damage dealt over 5 seconds.","rankDescriptions":["Your critical strikes with Decapitate now cause the enemy to bleed, dealing an additional 30% of the damage dealt over 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30042","treeId":"coa-barbarian-31","index":30042,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/inv_mace_1h_draenorhonors2_c_01.png","maxRank":1,"name":"Spiked Weapons","description":"Increases the critical damage of Crush, Brutal Swing, and Decapitate by 20%.","rankDescriptions":["Increases the critical damage of Crush, Brutal Swing, and Decapitate by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6739","treeId":"coa-barbarian-31","index":6739,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/warrior_skullbanner.png","maxRank":1,"name":"Horde Breaker","description":"Your Crush now applies Wounded to enemies for 1 minute and is now guaranteed to critically strike enemies affected by Headbutt.Wounded (Proc)Increases Physical Damage taken by 4% for 1 minute.","rankDescriptions":["Your Crush now applies Wounded to enemies for 1 minute and is now guaranteed to critically strike enemies affected by Headbutt.Wounded (Proc)Increases Physical Damage taken by 4% for 1 minute."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12739","treeId":"coa-barbarian-31","index":12739,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/ability_warrior_offensivestance.png","maxRank":1,"name":"Power Swings","description":"Reduces the cooldown of Crush by -5 sec.","rankDescriptions":["Reduces the cooldown of Crush by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4720","treeId":"coa-barbarian-31","index":4720,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_racial_bloodrage.png","maxRank":1,"name":"Thirst for Battle","description":"Your Smash now regenerate 25% of your maximum Energy.","rankDescriptions":["Your Smash now regenerate 25% of your maximum Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-30760","treeId":"coa-barbarian-31","index":30760,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/trade_archaeology_generalbeauregardslaststand.png","maxRank":1,"name":"Rancor","description":"Your Brutal Swing now triggers an additional auto attack on the primary target.","rankDescriptions":["Your Brutal Swing now triggers an additional auto attack on the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34271","treeId":"coa-barbarian-31","index":34271,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/5_engineerskill03_border.png","maxRank":2,"name":"Battering Ram","description":"While wielding a two-handed weapon, you bypass 20% of enemy armor.","rankDescriptions":["While wielding a two-handed weapon, you bypass 10% of enemy armor.","While wielding a two-handed weapon, you bypass 20% of enemy armor."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34265","treeId":"coa-barbarian-31","index":34265,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/custom_iron_hammer_b_border.png","maxRank":1,"name":"Hail of Hammers","description":"Reduces the cast time of Crush by -25%.","rankDescriptions":["Reduces the cast time of Crush by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6834","treeId":"coa-barbarian-31","index":6834,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0005s_0000_characterb_border.png","maxRank":1,"name":"Anger Issues","description":"Scoring a critical strike against an enemy now reduces the cooldown of Carnage by -4 sec.","rankDescriptions":["Scoring a critical strike against an enemy now reduces the cooldown of Carnage by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30377","treeId":"coa-barbarian-31","index":30377,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/ability_butcher_whirl.png","maxRank":1,"name":"Whirling Assault","description":"Increases the damage of Whirling Advance by 300% on enemies above 80% health.","rankDescriptions":["Increases the damage of Whirling Advance by 300% on enemies above 80% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34266","treeId":"coa-barbarian-31","index":34266,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/5_warriorskill41_border.png","maxRank":1,"name":"Efficient Killer","description":"Reduces the Energy cost of your spells and abilities by -10%.","rankDescriptions":["Reduces the Energy cost of your spells and abilities by -10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6737","treeId":"coa-barbarian-31","index":6737,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/warrior_talent_icon_furyintheblood.png","maxRank":1,"name":"Mounting Fury","description":"Increases the duration of Born in Blood by 2 sec.","rankDescriptions":["Increases the duration of Born in Blood by 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12737","treeId":"coa-barbarian-31","index":12737,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_rogue_ruthlessness.png","maxRank":1,"name":"Savage","description":"Unbridled Rage now also increases your critical damage by 10%.","rankDescriptions":["Unbridled Rage now also increases your critical damage by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33958","treeId":"coa-barbarian-31","index":33958,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/uico_blood_spell_10_border.png","maxRank":1,"name":"Ancestral Trauma","description":"Damage dealt by Ancestral Strike and Crush now scales with your Strength.","rankDescriptions":["Damage dealt by Ancestral Strike and Crush now scales with your Strength."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-14171","treeId":"coa-barbarian-31","index":14171,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/achievement_reputation_ogre.png","maxRank":1,"name":"Ogre's Strength","description":"Level 40 Passive Increases your Strength by 25%.","rankDescriptions":["Level 40 Passive Increases your Strength by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-34313","treeId":"coa-barbarian-31","index":34313,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/ability_warrior_bullrush.png","maxRank":2,"name":"Reckful","description":"Your Smash now has a 60% chance to not trigger a cooldown.","rankDescriptions":["Your Smash now has a 30% chance to not trigger a cooldown.","Your Smash now has a 60% chance to not trigger a cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2277","treeId":"coa-barbarian-31","index":2277,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/ability_warrior_devastate.png","maxRank":1,"name":"Incredibly Strong","description":"Removes the minimum range from Maiming Spear, but reduces its maximum range by -5 yds.","rankDescriptions":["Removes the minimum range from Maiming Spear, but reduces its maximum range by -5 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12277","treeId":"coa-barbarian-31","index":12277,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/inv_ability_packleaderhunter_vicioushunt.png","maxRank":1,"name":"Giant Tosser","description":"Your Headhunter's Spear now generates 50% additional Energy when you strike an enemy that is at least 20 yds away.","rankDescriptions":["Your Headhunter's Spear now generates 50% additional Energy when you strike an enemy that is at least 20 yds away."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30374","treeId":"coa-barbarian-31","index":30374,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_banner_warspear.png","maxRank":1,"name":"Symbol of the Warspear","description":"You are marked by the Warspear symbol, granting 10% increased attack power to party and raid members. Does not stack with similar effects. In addition, reduces the cooldown of Spears by -2 sec.","rankDescriptions":["You are marked by the Warspear symbol, granting 10% increased attack power to party and raid members. Does not stack with similar effects. In addition, reduces the cooldown of Spears by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34274","treeId":"coa-barbarian-31","index":34274,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_helmet_08.png","maxRank":1,"name":"Brutal Spirit","description":"Increases the effectiveness of your Spirit spells by 25%.","rankDescriptions":["Increases the effectiveness of your Spirit spells by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13958","treeId":"coa-barbarian-31","index":13958,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/_d3seismicslam.png","maxRank":2,"name":"Crusher","description":"Melee auto attacks now have a 20% chance to reset the cooldown of Crush.","rankDescriptions":["Melee auto attacks now have a 10% chance to reset the cooldown of Crush.","Melee auto attacks now have a 20% chance to reset the cooldown of Crush."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6706","treeId":"coa-barbarian-31","index":6706,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/spell_warrior_paintrain.png","maxRank":1,"name":"Maximum Carnage","description":"Casting Unbridled Rage now causes you to begin swinging your weapon around you dealing 152 + 25% AP Physical damage to up to 5 nearby enemies over 5 seconds.","rankDescriptions":["Casting Unbridled Rage now causes you to begin swinging your weapon around you dealing 152 + 25% AP Physical damage to up to 5 nearby enemies over 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29514","treeId":"coa-barbarian-31","index":29514,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/custom_warriorskill_21_border.png","maxRank":1,"name":"Storm of Steel","description":"Begin striking your target every 1 sec for 90% Weapon Damage for 3 seconds.","rankDescriptions":["Begin striking your target every 1 sec for 90% Weapon Damage for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9171","treeId":"coa-barbarian-31","index":9171,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_nature_strength.png","maxRank":1,"name":"Body Builder","description":"Level 50 Passive Increases your size by 5% and when your Strength is lower than your Agility your melee attack power is further increased by 75% of your Strength.","rankDescriptions":["Level 50 Passive Increases your size by 5% and when your Strength is lower than your Agility your melee attack power is further increased by 75% of your Strength."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30378","treeId":"coa-barbarian-31","index":30378,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/ability_warrior_bladestorm.png","maxRank":1,"name":"Steelslinger","description":"Reduces the cooldown of Barbaric Whirl by -2 sec and increases its damage dealt by 100% on enemies below 35% health.","rankDescriptions":["Reduces the cooldown of Barbaric Whirl by -2 sec and increases its damage dealt by 100% on enemies below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6740","treeId":"coa-barbarian-31","index":6740,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":10,"icon":"/assets/ui/spells/ability_warrior_endlessrage.png","maxRank":1,"name":"Utter Devastation","description":"Increases the duration of Maximum Carnage by 1 sec and it now grants Utter Devastation for 6 seconds. Utter DevastationInstantly removes all movement impairing effects, increases your movement speed by 25%, and makes you immune to slows. Can be consumed by Decapitate or Crush to guarantee them to critically strike.","rankDescriptions":["Increases the duration of Maximum Carnage by 1 sec and it now grants Utter Devastation for 6 seconds. Utter DevastationInstantly removes all movement impairing effects, increases your movement speed by 25%, and makes you immune to slows. Can be consumed by Decapitate or Crush to guarantee them to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34314","treeId":"coa-barbarian-31","index":34314,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":10,"icon":"/assets/ui/spells/ability_warrior_warbringer.png","maxRank":1,"name":"Steel Fury","description":"Dealing damage with Storm of Steel increases the damage of its subsequent strikes by 4%, stacking 10 times. In addition, the duration of Storm of Steel is increased by 2.5 sec.","rankDescriptions":["Dealing damage with Storm of Steel increases the damage of its subsequent strikes by 4%, stacking 10 times. In addition, the duration of Storm of Steel is increased by 2.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6741","treeId":"coa-barbarian-31","index":6741,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/custom_warriorskill_42_nobg_border.png","maxRank":1,"name":"Sustaining Swings","description":"Melee attacks now have an 8% chance to heal you for 10% of the damage dealt and cause your next Ancestral Strike to deal 50% increased damage.","rankDescriptions":["Melee attacks now have an 8% chance to heal you for 10% of the damage dealt and cause your next Ancestral Strike to deal 50% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30163","treeId":"coa-barbarian-32","index":30163,"prerequisiteId":"coa-entry-4002","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4002","requiredRank":1},{"talentId":"coa-entry-30162","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_axe_1h_draenorcrafted_d_02_a_horde.png","maxRank":1,"name":"Berserker Axe","description":"Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 16 + 40% ranged AP Physical damage and reducing their armor by -4% for 20 seconds, stacking up to 5 times.","rankDescriptions":["Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 16 + 40% ranged AP Physical damage and reducing their armor by -4% for 20 seconds, stacking up to 5 times."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4002","treeId":"coa-barbarian-32","index":4002,"prerequisiteId":"coa-entry-30162","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30162","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_axe_2h_artifactmaw_d_01.png","maxRank":1,"name":"Headhunter","description":"Level 10 Passive Reduces the Energy cost of Throw Weapon, Maiming Spear, and Whirling Advance by -15.","rankDescriptions":["Level 10 Passive Reduces the Energy cost of Throw Weapon, Maiming Spear, and Whirling Advance by -15."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-6796","treeId":"coa-barbarian-32","index":6796,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_axe_1h_garrison_a_01.png","maxRank":1,"name":"You Want Axe?","description":"While enraged, casting Spears now refreshes 3 charges of Berserker Axe and your next 3 casts cost -50% less Energy. Lasts 12 seconds.","rankDescriptions":["While enraged, casting Spears now refreshes 3 charges of Berserker Axe and your next 3 casts cost -50% less Energy. Lasts 12 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34319","treeId":"coa-barbarian-32","index":34319,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/barbed_spear.png","maxRank":1,"name":"Barbed Spear","description":"Throw a heavy spear with precision at an enemy, dealing 160% Ranged Weapon Damage plus 37, and reducing their healing received by -30% for 10 seconds.","rankDescriptions":["Throw a heavy spear with precision at an enemy, dealing 160% Ranged Weapon Damage plus 37, and reducing their healing received by -30% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31152","treeId":"coa-barbarian-32","index":31152,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/novart_weapon_(6)_border.png","maxRank":1,"name":"Gutspiller","description":"Launch a heavy axe at an enemy, causing them to bleed for 96 damage over 12 seconds. Every 6 sec the target has their Guts Spilled, causing them to bleed out for an additional 71 + 40% ranged AP damage.","rankDescriptions":["Launch a heavy axe at an enemy, causing them to bleed for 96 damage over 12 seconds. Every 6 sec the target has their Guts Spilled, causing them to bleed out for an additional 71 + 40% ranged AP damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9192","treeId":"coa-barbarian-32","index":9192,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/achievement_boss_trollgore.png","maxRank":1,"name":"Savage","description":"Level 20 Passive Born in Blood now also increases your damage dealt by 5% and its duration is increased by 3 sec.","rankDescriptions":["Level 20 Passive Born in Blood now also increases your damage dealt by 5% and its duration is increased by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-6785","treeId":"coa-barbarian-32","index":6785,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/inv_misc_boilingblood.png","maxRank":1,"name":"Puncture Wounds","description":"Critical strikes with Spears now causes enemies to bleed for 633 + 16.5% ranged AP over 6 seconds.","rankDescriptions":["Critical strikes with Spears now causes enemies to bleed for 633 + 16.5% ranged AP over 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5318","treeId":"coa-barbarian-32","index":5318,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/ability_warrior_strengthofarms.png","maxRank":1,"name":"Strong Arm","description":"Increases the damage of Spears by 15% and your hit chance by 3%.","rankDescriptions":["Increases the damage of Spears by 15% and your hit chance by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5327","treeId":"coa-barbarian-32","index":5327,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_nature_reincarnation.png","maxRank":2,"name":"Vital Spirit","description":"Increases the range of your Spirit spells by 20 yds.","rankDescriptions":["Increases the range of your Spirit spells by 10 yds.","Increases the range of your Spirit spells by 20 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30771","treeId":"coa-barbarian-32","index":30771,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/ability_blackhand_marked4death.png","maxRank":2,"name":"Guts Splatter","description":"Your Gutspiller now allows your abilities to ignore 10% of the enemy's Armor.","rankDescriptions":["Your Gutspiller now allows your abilities to ignore 10% of the enemy's Armor.","Your Gutspiller now allows your abilities to ignore 10% of the enemy's Armor."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6608","treeId":"coa-barbarian-32","index":6608,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/ability_warrior_warcry.png","maxRank":1,"name":"Deep Fury","description":"Direct Physical damage dealt now reduces the cooldown of Unbridled Rage by -1 sec.","rankDescriptions":["Direct Physical damage dealt now reduces the cooldown of Unbridled Rage by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34325","treeId":"coa-barbarian-32","index":34325,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/5_archerskill07_border.png","maxRank":1,"name":"Headhunting","description":"Reduces the cast time of Throw Weapon by -20% and removes your spell pushback suffered from taking damage.","rankDescriptions":["Reduces the cast time of Throw Weapon by -20% and removes your spell pushback suffered from taking damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13576","treeId":"coa-barbarian-32","index":13576,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_axe_104.png","maxRank":1,"name":"Axe Twirling","description":"Display mastery over throwing weapons for 10 seconds, causing Throw Weapon, Gutspiller, and Berserker Axe to strike 2 additional nearby enemies.","rankDescriptions":["Display mastery over throwing weapons for 10 seconds, causing Throw Weapon, Gutspiller, and Berserker Axe to strike 2 additional nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6803","treeId":"coa-barbarian-32","index":6803,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/spell_shadow_lifedrain.png","maxRank":1,"name":"Entrails","description":"Damage dealt by bleed effects now increases your Agility by 1% for 8 seconds, stacking 10 times.","rankDescriptions":["Damage dealt by bleed effects now increases your Agility by 1% for 8 seconds, stacking 10 times."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19192","treeId":"coa-barbarian-32","index":19192,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/asaltante-azul.png","maxRank":1,"name":"Spear Thrower","description":"Level 30 Passive Casting Throw Weapon now has a 30% chance to reset the cooldown of your Spears.","rankDescriptions":["Level 30 Passive Casting Throw Weapon now has a 30% chance to reset the cooldown of your Spears."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-6511","treeId":"coa-barbarian-32","index":6511,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_bloodtrollfemalehead.png","maxRank":2,"name":"Frothing Savage","description":"Increases the critical strike chance of Spears and Berserker Axe by 15% against bleeding targets.","rankDescriptions":["Increases the critical strike chance of Spears and Berserker Axe by 8% against bleeding targets.","Increases the critical strike chance of Spears and Berserker Axe by 15% against bleeding targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5794","treeId":"coa-barbarian-32","index":5794,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/impaling_spear.png","maxRank":1,"name":"Impaling Spear","description":"Hurl a spear in a 30 yd frontal line, dealing 131% Ranged Weapon Damage plus 23, dealing less damage with each enemy struck. At the spear's impact location the spear shatters, dealing 277 + 15% ranged AP Physical damage to nearby enemies.","rankDescriptions":["Hurl a spear in a 30 yd frontal line, dealing 131% Ranged Weapon Damage plus 23, dealing less damage with each enemy struck. At the spear's impact location the spear shatters, dealing 277 + 15% ranged AP Physical damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30773","treeId":"coa-barbarian-32","index":30773,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_hunter_focusingshot.png","maxRank":1,"name":"Time To Kill!","description":"Reduces the cooldown of Axe Twirling by -15 sec.","rankDescriptions":["Reduces the cooldown of Axe Twirling by -15 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5329","treeId":"coa-barbarian-32","index":5329,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/ability_hanzandfranz_chestbump.png","maxRank":1,"name":"Berserker Rush","description":"Charge an enemy dealing 31 + 35% ranged AP Physical damage and rooting them for 2 seconds, then leap backwards.","rankDescriptions":["Charge an enemy dealing 31 + 35% ranged AP Physical damage and rooting them for 2 seconds, then leap backwards."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6799","treeId":"coa-barbarian-32","index":6799,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/ability_skeer_bloodletting.png","maxRank":2,"name":"Gruesome","description":"Increases the damage of Throw Weapon, Gutspiller, and Guts Spilled by 20%.","rankDescriptions":["Increases the damage of Throw Weapon, Gutspiller, and Guts Spilled by 10%.","Increases the damage of Throw Weapon, Gutspiller, and Guts Spilled by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6797","treeId":"coa-barbarian-32","index":6797,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_spear_06.png","maxRank":1,"name":"Spear Shards","description":"Whenever you shatter your Impaling Spear, affected enemies bleed for 100% of the damage dealt over 3 seconds.","rankDescriptions":["Whenever you shatter your Impaling Spear, affected enemies bleed for 100% of the damage dealt over 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5124","treeId":"coa-barbarian-32","index":5124,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_warrior_warcry.png","maxRank":1,"name":"Furious Berserker","description":"Critical strikes with Barbed Spear now grants Born in Blood.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","rankDescriptions":["Critical strikes with Barbed Spear now grants Born in Blood.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6794","treeId":"coa-barbarian-32","index":6794,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_hunter_exoticmunitions_incendiary.png","maxRank":1,"name":"Hunting for Sport","description":"While Unbridled Rage is active, your attacks now ignore 20% of the target's Armor.","rankDescriptions":["While Unbridled Rage is active, your attacks now ignore 20% of the target's Armor."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34293","treeId":"coa-barbarian-32","index":34293,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/racial_troll_berserk.png","maxRank":1,"name":"Vengeance For Zul'jin","description":"Casting Berserker Rush now grants you Born in Blood.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","rankDescriptions":["Casting Berserker Rush now grants you Born in Blood.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5192","treeId":"coa-barbarian-32","index":5192,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_misc_head_troll_01.png","maxRank":1,"name":"Bloody Fighter","description":"Level 40 Passive Born in Blood now stacks 1 additional time.","rankDescriptions":["Level 40 Passive Born in Blood now stacks 1 additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-30166","treeId":"coa-barbarian-32","index":30166,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/novart_physical_ability_(25)_border.png","maxRank":1,"name":"Legacy of the Amani","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34275","treeId":"coa-barbarian-32","index":34275,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/warrior_talent_icon_innerrage.png","maxRank":1,"name":"Raging Spirit","description":"Casting Unbridled Rage now grants you 30 Energy and it now also removes the Energy cost of your Spirit spells while active.","rankDescriptions":["Casting Unbridled Rage now grants you 30 Energy and it now also removes the Energy cost of your Spirit spells while active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29468","treeId":"coa-barbarian-32","index":29468,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/achievement_bg_interruptx_flagcapture_attempts_1game.png","maxRank":1,"name":"No Survivors","description":"Increases the duration of Axe Twirling, Maiming Spear, and Barbed Spear by 5 sec.","rankDescriptions":["Increases the duration of Axe Twirling, Maiming Spear, and Barbed Spear by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34326","treeId":"coa-barbarian-32","index":34326,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_warrior_gladiatorstance.png","maxRank":1,"name":"Manhunter","description":"Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your damage dealt by 10% against Humanoids.","rankDescriptions":["Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your damage dealt by 10% against Humanoids."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5608","treeId":"coa-barbarian-32","index":5608,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/_strongbone_red.png","maxRank":1,"name":"To The Bone","description":"Increases the critical strike chance of Guts Spilled by 10% and it now applies Break to the target and critically striking with it will apply an additional stack.BreakBreak an enemy's defenses, reducing their armor by -4% for 30 seconds, stacking 5 times.","rankDescriptions":["Increases the critical strike chance of Guts Spilled by 10% and it now applies Break to the target and critically striking with it will apply an additional stack.BreakBreak an enemy's defenses, reducing their armor by -4% for 30 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34329","treeId":"coa-barbarian-32","index":34329,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/spell_fire_enchantweapon.png","maxRank":1,"name":"Skullseeker","description":"Increases your critical strike chance against enemies above 80% health by 25%.","rankDescriptions":["Increases your critical strike chance against enemies above 80% health by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7338","treeId":"coa-barbarian-32","index":7338,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/spells/inv_axe_1h_pvpdraenors2_d_01.png","maxRank":1,"name":"Brutal Form","description":"Increases the tick rate of Born in Blood by -25%, allows its healing to scale with your Agility, and it can now critically heal you.","rankDescriptions":["Increases the tick rate of Born in Blood by -25%, allows its healing to scale with your Agility, and it can now critically heal you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30167","treeId":"coa-barbarian-32","index":30167,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":9,"icon":"/assets/ui/spells/_troll_03.png","maxRank":1,"name":"Berserker","description":"While enraged, your ranged critical strikes now grant you Berserker. Once applied it cannot be applied again.BerserkerYour ranged abilities have a 20% chance to unleash Berserker Throw, dealing 75% Ranged Weapon Damage. Lasts 15 seconds. While active, every offensive ranged ability used increases its chance to trigger by 2%.","rankDescriptions":["While enraged, your ranged critical strikes now grant you Berserker. Once applied it cannot be applied again.BerserkerYour ranged abilities have a 20% chance to unleash Berserker Throw, dealing 75% Ranged Weapon Damage. Lasts 15 seconds. While active, every offensive ranged ability used increases its chance to trigger by 2%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34321","treeId":"coa-barbarian-32","index":34321,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/inv_axe_11.png","maxRank":1,"name":"Payback","description":"Increases the damage dealt by your Guts Spilled by 75%.","rankDescriptions":["Increases the damage dealt by your Guts Spilled by 75%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-14237","treeId":"coa-barbarian-32","index":14237,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_thrown_1h_pvp410_c_01.png","maxRank":1,"name":"Power Tosser","description":"Level 50 Passive Damage dealt by Throw Weapon now scales with your Agility.","rankDescriptions":["Level 50 Passive Damage dealt by Throw Weapon now scales with your Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-6798","treeId":"coa-barbarian-32","index":6798,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/inv_helm_mask_zulgurub_d_01.png","maxRank":1,"name":"Gurubashi Technique","description":"Casting Throw Weapon now has a 25% chance to transform your next cast of it within 8 seconds into Rapid Throw.Rapid ThrowThrow your ranged weapon 3 times in quick succession, each dealing 50% Ranged Weapon Damage plus 25 Physical damage. Grants Born in Blood. Scales with damage modifiers to Throw Weapon.","rankDescriptions":["Casting Throw Weapon now has a 25% chance to transform your next cast of it within 8 seconds into Rapid Throw.Rapid ThrowThrow your ranged weapon 3 times in quick succession, each dealing 50% Ranged Weapon Damage plus 25 Physical damage. Grants Born in Blood. Scales with damage modifiers to Throw Weapon."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6801","treeId":"coa-barbarian-32","index":6801,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/archaeology_5_0_spearofxuen.png","maxRank":1,"name":"Sen'jin's Guidance","description":"Transforms your Throw Weapon into Javelin Toss and increases the critical strike chance of Javelin Toss by 5%.Javelin TossTake aim and hurl a javelin at an enemy dealing 160% Ranged Weapon Damage plus 241. Scales with damage modifiers to Throw Weapon and Spears. Usable while moving.","rankDescriptions":["Transforms your Throw Weapon into Javelin Toss and increases the critical strike chance of Javelin Toss by 5%.Javelin TossTake aim and hurl a javelin at an enemy dealing 160% Ranged Weapon Damage plus 241. Scales with damage modifiers to Throw Weapon and Spears. Usable while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7337","treeId":"coa-barbarian-32","index":7337,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0007s_0000_warrior_border.png","maxRank":1,"name":"Spite","description":"Quickly unleash 3 Berserker Throws at your target and then fling yourself back a great distance, dealing 125% Ranged Weapon Damage, scaling with modifiers to Berserker Axe.","rankDescriptions":["Quickly unleash 3 Berserker Throws at your target and then fling yourself back a great distance, dealing 125% Ranged Weapon Damage, scaling with modifiers to Berserker Axe."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13572","treeId":"coa-barbarian-33","index":13572,"prerequisiteId":"coa-entry-30762","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30762","requiredRank":1},{"talentId":"coa-entry-4003","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/ability_monk_elusiveale.png","maxRank":1,"name":"Keg Smash","description":"Smash an enemy for 21 + 15% AP Physical damage, plus an additional 17 + 25% AP Frost damage to up to 5 nearby enemies.","rankDescriptions":["Smash an enemy for 21 + 15% AP Physical damage, plus an additional 17 + 25% AP Frost damage to up to 5 nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4003","treeId":"coa-barbarian-33","index":4003,"prerequisiteId":"coa-entry-30762","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30762","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/spell_brew_wheat.png","maxRank":1,"name":"Fill Level","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-31153","treeId":"coa-barbarian-33","index":31153,"prerequisiteId":"coa-entry-4003","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4003","requiredRank":1},{"talentId":"coa-entry-30762","requiredRank":1}],"column":5,"row":2,"icon":"/assets/ui/spells/inv_helmet_158.png","maxRank":1,"name":"Ancestor's Call","description":"Teaches you Ancestor's Call.Ancestor's Call (Troll)Call an Honored Ancestor to aid you in battle until dismissed that scales with your Agility and attack power. Whenever you use Barbaric Whirl or Whirling Advance, your Honored Ancestor mimics it.","rankDescriptions":["Teaches you Ancestor's Call.Ancestor's Call (Troll)Call an Honored Ancestor to aid you in battle until dismissed that scales with your Agility and attack power. Whenever you use Barbaric Whirl or Whirling Advance, your Honored Ancestor mimics it."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34306","treeId":"coa-barbarian-33","index":34306,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/spell_fire_blueflamebreath.png","maxRank":1,"name":"Breath of The North","description":"Unleashes a frost breath, dealing 31 + 20% AP Frost damage to enemies in a 12 yd cone and slowing them by -30% for 5 seconds. Can only be used after emptying your Tankard.","rankDescriptions":["Unleashes a frost breath, dealing 31 + 20% AP Frost damage to enemies in a 12 yd cone and slowing them by -30% for 5 seconds. Can only be used after emptying your Tankard."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29284","treeId":"coa-barbarian-33","index":29284,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/aleofgodking.png","maxRank":1,"name":"Ale of The God-King","description":"Empower your Honored Ancestor's melee attacks to deal additional Frost damage scaling with your attack power. Lasts for 20 seconds or 10 attacks. This ability consumes Fill Level stacks and triggers a reduced cooldown based on stacks consumed.","rankDescriptions":["Empower your Honored Ancestor's melee attacks to deal additional Frost damage scaling with your attack power. Lasts for 20 seconds or 10 attacks. This ability consumes Fill Level stacks and triggers a reduced cooldown based on stacks consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9172","treeId":"coa-barbarian-33","index":9172,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_weapon_shortblade_48.png","maxRank":1,"name":"Frozen Blades","description":"Critical strikes now grant party and raid members 5% critical strike chance for 8 seconds. Does not stack with similar effects.","rankDescriptions":["Critical strikes now grant party and raid members 5% critical strike chance for 8 seconds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":15,"isPassive":false},{"id":"coa-entry-11172","treeId":"coa-barbarian-33","index":11172,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/achievement_dungeon_utgardekeep_normal.png","maxRank":1,"name":"Ancestral Wisdom","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.","rankDescriptions":["Increases chance to hit with all spells and attacks by 1% for you and party and raid members. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":15,"isPassive":false},{"id":"coa-entry-34258","treeId":"coa-barbarian-33","index":34258,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/novart_magicspell_(74)_border.png","maxRank":1,"name":"Frostbite","description":"Breath of The North now causes the target to bleed for an additional 30% of its damage over 6 seconds as Frost damage.","rankDescriptions":["Breath of The North now causes the target to bleed for an additional 30% of its damage over 6 seconds as Frost damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31220","treeId":"coa-barbarian-33","index":31220,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/achievement_boss_argus_aggramar.png","maxRank":1,"name":"Ancestral Fury","description":"Emanate a powerful aura, granting 10% increased melee and ranged haste to party and raid members within 100 yds. Does not stack with similar effects.","rankDescriptions":["Emanate a powerful aura, granting 10% increased melee and ranged haste to party and raid members within 100 yds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29799","treeId":"coa-barbarian-33","index":29799,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/_d3calloftheancients.png","maxRank":1,"name":"Ancestral Combat","description":"Empower yourself, granting your Physical damage dealt a 25% chance to trigger an additional main hand attack as Frost damage on your target and grant a stack of Fill Level. Lasts until triggered 20 times.","rankDescriptions":["Empower yourself, granting your Physical damage dealt a 25% chance to trigger an additional main hand attack as Frost damage on your target and grant a stack of Fill Level. Lasts until triggered 20 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34259","treeId":"coa-barbarian-33","index":34259,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/achievement_guildperk_bartering.png","maxRank":2,"name":"Trip to the Alehouse","description":"Increases the damage of Keg Smash by 20% and its range by 6 yds.","rankDescriptions":["Increases the damage of Keg Smash by 10% and its range by 3 yds.","Increases the damage of Keg Smash by 20% and its range by 6 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34260","treeId":"coa-barbarian-33","index":34260,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_misc_archaeology_vrykuldrinkinghorn.png","maxRank":1,"name":"Drinking Frenzy","description":"Your melee attacks now have a 15% chance to grant a stack of Fill Level. In addition, your chance to hit is increased by 5%.","rankDescriptions":["Your melee attacks now have a 15% chance to grant a stack of Fill Level. In addition, your chance to hit is increased by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4354","treeId":"coa-barbarian-33","index":4354,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/spell_deathknight_icetouch.png","maxRank":1,"name":"Frost Giant's Fury","description":"Casting Breath of the North now grants you 10% melee attack speed, plus an additional 20% when using a two-handed weapon, for 8 seconds.","rankDescriptions":["Casting Breath of the North now grants you 10% melee attack speed, plus an additional 20% when using a two-handed weapon, for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12153","treeId":"coa-barbarian-33","index":12153,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/tankardtoss.png","maxRank":1,"name":"Frozen Tankard","description":"Throw one of your extra tankards at an enemy, dealing 107 Frost damage and stunning them for 4 seconds. Stunned enemies are considered Frozen.","rankDescriptions":["Throw one of your extra tankards at an enemy, dealing 107 Frost damage and stunning them for 4 seconds. Stunned enemies are considered Frozen."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29800","treeId":"coa-barbarian-33","index":29800,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_axe_82.png","maxRank":3,"name":"Improved Ancestral Combat","description":"Reduces the Energy cost of your Ancestral Combat by -30 and allows it to trigger 10 additional times.","rankDescriptions":["Reduces the Energy cost of your Ancestral Combat by -10 and allows it to trigger 3 additional times.","Reduces the Energy cost of your Ancestral Combat by -20 and allows it to trigger 6 additional times.","Reduces the Energy cost of your Ancestral Combat by -30 and allows it to trigger 10 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30763","treeId":"coa-barbarian-33","index":30763,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/archaeology_5_0_twinsteinsetofbrewfatherquantoukuo.png","maxRank":1,"name":"Cheers!","description":"Designate an ally as your drinking partner for 30 minutes, reducing all damage they take by -5%, and causing 10% of all damage they take to be redirected to you. You can only have 1 ally designated at a time.","rankDescriptions":["Designate an ally as your drinking partner for 30 minutes, reducing all damage they take by -5%, and causing 10% of all damage they take to be redirected to you. You can only have 1 ally designated at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34263","treeId":"coa-barbarian-33","index":34263,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/spell_misc_drink.png","maxRank":1,"name":"The Finest Ale","description":"Your Ale of The God-King no longer empties your Tankard.","rankDescriptions":["Your Ale of The God-King no longer empties your Tankard."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11257","treeId":"coa-barbarian-33","index":11257,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_misc_frostemblem_01.png","maxRank":1,"name":"Crystal Enhancements","description":"You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects.","rankDescriptions":["You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-34257","treeId":"coa-barbarian-33","index":34257,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_helm_mail_vrykuldragonrider_b_01.png","maxRank":1,"name":"Uniting Voice","description":"Casting Ancestral Roar now increases haste of party and raid members by 5% for 20 seconds. Does not stack with similar effects. Critical strikes extend the duration of the buff by 1 sec.","rankDescriptions":["Casting Ancestral Roar now increases haste of party and raid members by 5% for 20 seconds. Does not stack with similar effects. Critical strikes extend the duration of the buff by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-34262","treeId":"coa-barbarian-33","index":34262,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/achievement_boss_forgemaster.png","maxRank":1,"name":"Icebound Ancestry","description":"Increases the critical strike chance of Breath of the North by 10%. In addition, your attacks now ignore Armor against Frozen targets.","rankDescriptions":["Increases the critical strike chance of Breath of the North by 10%. In addition, your attacks now ignore Armor against Frozen targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34264","treeId":"coa-barbarian-33","index":34264,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/spell_deathknight_iceboundfortitude.png","maxRank":1,"name":"Hodir's Revenge","description":"Enemies damaged by your Frozen Tankard now take 50% increased damage from you for 6 seconds.","rankDescriptions":["Enemies damaged by your Frozen Tankard now take 50% increased damage from you for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11219","treeId":"coa-barbarian-33","index":11219,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/5_archerskill33_border.png","maxRank":1,"name":"Thane's Grip","description":"Allows you to wield a Two-Handed Axe, Mace, or Sword in each hand, but reduces your Physical Damage dealt by -8%.","rankDescriptions":["Allows you to wield a Two-Handed Axe, Mace, or Sword in each hand, but reduces your Physical Damage dealt by -8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31219","treeId":"coa-barbarian-33","index":31219,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/achievements_zone_stormheim.png","maxRank":1,"name":"Thane's Guard","description":"Gain the Shield proficiency and while wearing a shield you gain 40% increased attack speed and 100% increased Armor contribution from your shield.","rankDescriptions":["Gain the Shield proficiency and while wearing a shield you gain 40% increased attack speed and 100% increased Armor contribution from your shield."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34304","treeId":"coa-barbarian-33","index":34304,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/ability_monk_fortifyingale_new.png","maxRank":1,"name":"Liquid Courage","description":"Each Fill Level stack now reduces your damage taken by -2%.","rankDescriptions":["Each Fill Level stack now reduces your damage taken by -2%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12261","treeId":"coa-barbarian-33","index":12261,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/ability_racial_avatar.png","maxRank":1,"name":"Breaking Morale","description":"Reduces the Energy cost of Break by -15.","rankDescriptions":["Reduces the Energy cost of Break by -15."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30386","treeId":"coa-barbarian-33","index":30386,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/nhi_iceswirl_border.png","maxRank":2,"name":"Ice Cold Bubbles","description":"Each Fill Level stack now also increases Frost damage dealt by 4%.","rankDescriptions":["Each Fill Level stack now also increases Frost damage dealt by 2%.","Each Fill Level stack now also increases Frost damage dealt by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30387","treeId":"coa-barbarian-33","index":30387,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/novart_magicspell_(76)_border.png","maxRank":1,"name":"Unified Rage","description":"Your Unbridled Rage now increases your chance to trigger Ancestral Combat by 25%.","rankDescriptions":["Your Unbridled Rage now increases your chance to trigger Ancestral Combat by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29348","treeId":"coa-barbarian-33","index":29348,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_monk_drunkenhaze.png","maxRank":1,"name":"Blind Stupor","description":"Damage dealt by Keg Smash now reduces enemies' casting speed by -30% for 15 seconds.","rankDescriptions":["Damage dealt by Keg Smash now reduces enemies' casting speed by -30% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9861","treeId":"coa-barbarian-33","index":9861,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/nhi_frost_bonecrack_border.png","maxRank":1,"name":"To The Bone","description":"Damage dealt by Breath of the North now reduces enemies' resistances by 75 and increases their Magic damage taken by -2% for 8 seconds.","rankDescriptions":["Damage dealt by Breath of the North now reduces enemies' resistances by 75 and increases their Magic damage taken by -2% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-30764","treeId":"coa-barbarian-33","index":30764,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_holiday_beerfest_darkiron.png","maxRank":1,"name":"Splash Zone","description":"Share a drink from your Tankard with all party and raid members, granting 95 increased attack or spell power for 15 seconds. Does not stack with similar effects.","rankDescriptions":["Share a drink from your Tankard with all party and raid members, granting 95 increased attack or spell power for 15 seconds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-34305","treeId":"coa-barbarian-33","index":34305,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_offhand_1h_draenordungeon_c_02.png","maxRank":1,"name":"Drunken Frenzy","description":"Unbridled Rage now increases your Honored Ancestor's Physical damage by 15% for 10 seconds.","rankDescriptions":["Unbridled Rage now increases your Honored Ancestor's Physical damage by 15% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34261","treeId":"coa-barbarian-33","index":34261,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/achievement_boss_generalbjarngrim.png","maxRank":1,"name":"Ancestor's Fury","description":"Unbridled Rage now also increases your Frost damage by 10%.","rankDescriptions":["Unbridled Rage now also increases your Frost damage by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30754","treeId":"coa-barbarian-33","index":30754,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/spell_monk_nimblebrew.png","maxRank":1,"name":"Cold Brew","description":"Critical strikes with Frost damage now generate a stack of Fill Level. Can only occur once per sec.","rankDescriptions":["Critical strikes with Frost damage now generate a stack of Fill Level. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34309","treeId":"coa-barbarian-33","index":34309,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/5_druideskill22_border.png","maxRank":2,"name":"Ancestral Spirit","description":"Reduces the Energy cost of your Spirit spells and increases the duration of your Shouts by -100%.","rankDescriptions":["Reduces the Energy cost of your Spirit spells and increases the duration of your Shouts by -50%.","Reduces the Energy cost of your Spirit spells and increases the duration of your Shouts by -100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34311","treeId":"coa-barbarian-33","index":34311,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/skill_icon_skill14_border.png","maxRank":1,"name":"The Spins","description":"Casting Keg Smash now causes your Honored Ancestor to perform an Ancestral Whirl attack upon nearby enemies.","rankDescriptions":["Casting Keg Smash now causes your Honored Ancestor to perform an Ancestral Whirl attack upon nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29366","treeId":"coa-barbarian-33","index":29366,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_holiday_beerfest_maghar.png","maxRank":1,"name":"Ramhorn Rage","description":"Enrage Effect Enrage party and raid members within 8 yds for 3 seconds, regenerating 2% of their maximum health every 2 sec. Melee auto attacks extend the duration of this effect by 2 sec, up to a maximum of 15 seconds. This ability empties your Tankard, consuming Fill Level stacks and triggering with a reduced cooldown based on stacks consumed. Barbaric Rage (Passive)While enraged, the global cooldown of Barbarian abilities is reduced by 30%.","rankDescriptions":["Enrage Effect Enrage party and raid members within 8 yds for 3 seconds, regenerating 2% of their maximum health every 2 sec. Melee auto attacks extend the duration of this effect by 2 sec, up to a maximum of 15 seconds. This ability empties your Tankard, consuming Fill Level stacks and triggering with a reduced cooldown based on stacks consumed. Barbaric Rage (Passive)While enraged, the global cooldown of Barbarian abilities is reduced by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29782","treeId":"coa-barbarian-33","index":29782,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/ability_soulrenderdormazain_hellscream.png","maxRank":1,"name":"War Cry","description":"Unleash a blood curdling war cry, increasing melee and ranged attack speed by 20%, and attack power by 150 of party and raid members within 25 yds for 20 seconds. Allies cannot benefit from this spell again for 5 minutes.","rankDescriptions":["Unleash a blood curdling war cry, increasing melee and ranged attack speed by 20%, and attack power by 150 of party and raid members within 25 yds for 20 seconds. Allies cannot benefit from this spell again for 5 minutes."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12112","treeId":"coa-barbarian-33","index":12112,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_belt_armor_orcclan_d_01.png","maxRank":1,"name":"Clanlord's Totem","description":"Drop the Clanlord's Totem at the target location where it will remain for 15 seconds. The totem emanates an aura for 15 seconds, causing allied players within 100 yds to deal 35% AP additional damage as Frost damage when they deal direct damage and gain 50% increased honor. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute.","rankDescriptions":["Drop the Clanlord's Totem at the target location where it will remain for 15 seconds. The totem emanates an aura for 15 seconds, causing allied players within 100 yds to deal 35% AP additional damage as Frost damage when they deal direct damage and gain 50% increased honor. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-13111","treeId":"coa-barbarian-33","index":13111,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/novart_passivemastery_(34)_border.png","maxRank":1,"name":"Tavern Brawl!","description":"Enrage all nearby allies, increasing their haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes.","rankDescriptions":["Enrage all nearby allies, increasing their haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-34312","treeId":"coa-barbarian-33","index":34312,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/achievement_dungeon_utgardepinnacle_normal.png","maxRank":1,"name":"Might of Utgarde","description":"Attacks from your Ancestral Combat now heal your Honored Ancestor for 5% maximum health and cause it to perform an Ancestral Whirl attack.","rankDescriptions":["Attacks from your Ancestral Combat now heal your Honored Ancestor for 5% maximum health and cause it to perform an Ancestral Whirl attack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34307","treeId":"coa-barbarian-33","index":34307,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":10,"icon":"/assets/ui/spells/inv_banner_tolbarad_alliance.png","maxRank":1,"name":"Rage of the North","description":"Increases the amount of attacks that can trigger your Ale of The God-King by 10.","rankDescriptions":["Increases the amount of attacks that can trigger your Ale of The God-King by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6713","treeId":"coa-barbarian-33","index":6713,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":10,"icon":"/assets/ui/spells/uico_frost_spell_10_border.png","maxRank":1,"name":"Fury of the North","description":"Increases the duration of the enrage effect from your Ramhorn Rage by 6 sec and causes it to increase your movement speed by 40% for its duration.","rankDescriptions":["Increases the duration of the enrage effect from your Ramhorn Rage by 6 sec and causes it to increase your movement speed by 40% for its duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7846","treeId":"coa-barbarian-33","index":7846,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/ability_hunter_rapidkilling.png","maxRank":1,"name":"Rally Behind Me!","description":"Increases the duration of Warband by 3 sec. In addition, your first use of Warband will incur no cooldown. Can only occur once every 1.5 min.","rankDescriptions":["Increases the duration of Warband by 3 sec. In addition, your first use of Warband will incur no cooldown. Can only occur once every 1.5 min."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30162","treeId":"coa-barbarian-87","index":30162,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/spells/maiming_spear.png","maxRank":1,"name":"Maiming Spear","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29783","treeId":"coa-barbarian-87","index":29783,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/achievement_dungeon_bastion_of_twilight_halfus_wyrmbreaker.png","maxRank":1,"name":"Jawbreaker","description":"Attempt to break an enemy's jaw, interrupting them and preventing any spell from that school from being cast for 4 seconds.","rankDescriptions":["Attempt to break an enemy's jaw, interrupting them and preventing any spell from that school from being cast for 4 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30762","treeId":"coa-barbarian-87","index":30762,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":1,"icon":"/assets/ui/spells/_d3threateningshout.png","maxRank":1,"name":"Ancestral Roar","description":"Requires Enraged Roar with ancestral fervor, healing you for 100 + 50% AP.","rankDescriptions":["Requires Enraged Roar with ancestral fervor, healing you for 100 + 50% AP."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34291","treeId":"coa-barbarian-87","index":34291,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/spells/spell_deathknight_runetap.png","maxRank":1,"name":"Unrelenting","description":"Increases your Physical damage dealt and taken by 5%.","rankDescriptions":["Increases your Physical damage dealt and taken by 5%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34277","treeId":"coa-barbarian-87","index":34277,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/achievement_character_orc_male.png","maxRank":2,"name":"Savage Strength","description":"Increases your Agility by 10%.","rankDescriptions":["Increases your Agility by 5%.","Increases your Agility by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-14277","treeId":"coa-barbarian-87","index":14277,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":2,"icon":"/assets/ui/spells/inv_helm_plate_pvpwarrior_d_01.png","maxRank":2,"name":"One With The Ancestors","description":"Increases your critical strike chance by 4%.","rankDescriptions":["Increases your critical strike chance by 2%.","Increases your critical strike chance by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34279","treeId":"coa-barbarian-87","index":34279,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/spells/5_run_border.png","maxRank":1,"name":"Athleticism","description":"Increases your Energy regeneration by 25%.","rankDescriptions":["Increases your Energy regeneration by 25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6802","treeId":"coa-barbarian-87","index":6802,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/achievement_boss_highmaul_butcher.png","maxRank":1,"name":"Strength of Goria","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.","rankDescriptions":["Casting Unbridled Rage now grants you Born in Blood.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6462","treeId":"coa-barbarian-87","index":6462,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/ability_warrior_innerrage.png","maxRank":1,"name":"Unstoppable Rage","description":"Increases the duration of Unbridled Rage by 2 sec.","rankDescriptions":["Increases the duration of Unbridled Rage by 2 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6790","treeId":"coa-barbarian-87","index":6790,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":3,"icon":"/assets/ui/spells/inv_misc_head_dwarf_01.png","maxRank":1,"name":"War Tales","description":"Increases your chance to resist fear and horrify effects by 25%.","rankDescriptions":["Increases your chance to resist fear and horrify effects by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29793","treeId":"coa-barbarian-87","index":29793,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/headhunting_spear.png","maxRank":1,"name":"Headhunter's Spear","description":"Hurl a light spear at an enemy dealing 140% Ranged Weapon Damage plus 21 and restores 30% of your maximum Energy.","rankDescriptions":["Hurl a light spear at an enemy dealing 140% Ranged Weapon Damage plus 21 and restores 30% of your maximum Energy."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30870","treeId":"coa-barbarian-87","index":30870,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/ability_warrior_bloodsurge.png","maxRank":1,"name":"Defiance","description":"Attempt to defy death, reducing all damage taken by 30% to 80% based on your current missing health for 15 seconds.","rankDescriptions":["Attempt to defy death, reducing all damage taken by 30% to 80% based on your current missing health for 15 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7720","treeId":"coa-barbarian-87","index":7720,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/warrior_skullbanner.png","maxRank":1,"name":"Warband","description":"Bring all nearby allies into the warband for 12 seconds, granting them Born in Blood, repeating every 3 sec.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","rankDescriptions":["Bring all nearby allies into the warband for 12 seconds, granting them Born in Blood, repeating every 3 sec.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34299","treeId":"coa-barbarian-87","index":34299,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/sha_ability_rogue_sturdyrecuperate_nightmare.png","maxRank":1,"name":"Dauntless","description":"Dealing damage with Whirling Advance now dispels 1 movement slowing effect from you and refunds 2 Energy.","rankDescriptions":["Dealing damage with Whirling Advance now dispels 1 movement slowing effect from you and refunds 2 Energy."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6844","treeId":"coa-barbarian-87","index":6844,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_garrosh_hellscreams_warsong.png","maxRank":1,"name":"Savagery","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-14304","treeId":"coa-barbarian-87","index":14304,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_offhand_1h_artifactskulloferedar_d_05.png","maxRank":1,"name":"Savage Cadence","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6871","treeId":"coa-barbarian-87","index":6871,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/item_onepunch.png","maxRank":1,"name":"Knockout Artist","description":"Successfully interrupting a target with Jawbreaker now increases your haste by 30% for 4 seconds and refunds half its Energy cost.","rankDescriptions":["Successfully interrupting a target with Jawbreaker now increases your haste by 30% for 4 seconds and refunds half its Energy cost."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4297","treeId":"coa-barbarian-87","index":4297,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/_d3gargantuan.png","maxRank":1,"name":"Bloodbound","description":"Reduces the cooldown of your Warband by -30 sec and Ancestral Roar by -5 sec.","rankDescriptions":["Reduces the cooldown of your Warband by -30 sec and Ancestral Roar by -5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12770","treeId":"coa-barbarian-87","index":12770,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/5_druideskill45_border.png","maxRank":1,"name":"Rage Whirling","description":"Increases the critical strike chance of Whirling Advance by 50%.","rankDescriptions":["Increases the critical strike chance of Whirling Advance by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30770","treeId":"coa-barbarian-87","index":30770,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_ascend_whirlpool_b_01.png","maxRank":1,"name":"Forward Advance","description":"Increases the range of your Whirling Advance by 3 yds.","rankDescriptions":["Increases the range of your Whirling Advance by 3 yds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12563","treeId":"coa-barbarian-87","index":12563,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/skullsmash2.png","maxRank":1,"name":"Skull Smash","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11302","treeId":"coa-barbarian-87","index":11302,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/inv_fishing_bait_spinefinpiranha.png","maxRank":1,"name":"Bloody Onslaught","description":"Increases the duration of Onslaught by 6 sec.","rankDescriptions":["Increases the duration of Onslaught by 6 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34302","treeId":"coa-barbarian-87","index":34302,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/custom_warriorskill_11_border.png","maxRank":1,"name":"Rapid Recovery","description":"Your Onslaught's effect now occurs -50% faster.","rankDescriptions":["Your Onslaught's effect now occurs -50% faster."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6374","treeId":"coa-barbarian-87","index":6374,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_helm_laughingskull_01.png","maxRank":1,"name":"Thick Skull","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34276","treeId":"coa-barbarian-87","index":34276,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/ability_fomor_boss_shout.png","maxRank":1,"name":"Bellowing Voice","description":"Increases the effectiveness of your Shouts by 20%.","rankDescriptions":["Increases the effectiveness of your Shouts by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34303","treeId":"coa-barbarian-87","index":34303,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/achievement_boss_operator_thogar.png","maxRank":1,"name":"Blood and Glory","description":"Taking damage while at or below 35% maximum health now grants you 20% increased healing received and -10% reduced damage taken.","rankDescriptions":["Taking damage while at or below 35% maximum health now grants you 20% increased healing received and -10% reduced damage taken."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11168","treeId":"coa-barbarian-87","index":11168,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/ability_rogue_eviscerate.png","maxRank":1,"name":"Smasher","description":"Removes the Energy cost from Skull Smash.","rankDescriptions":["Removes the Energy cost from Skull Smash."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13168","treeId":"coa-barbarian-87","index":13168,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/custom_t_bloodfog_border.png","maxRank":1,"name":"Plugging the Hole","description":"Your Skull Smash now removes all bleed effects on the enemy.","rankDescriptions":["Your Skull Smash now removes all bleed effects on the enemy."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34320","treeId":"coa-barbarian-87","index":34320,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/achievement_boss_highmaul_king.png","maxRank":1,"name":"Ogre's Endurance","description":"Increases your healing received by 10%.","rankDescriptions":["Increases your healing received by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29608","treeId":"coa-barbarian-87","index":29608,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/warrior_talent_icon_innerrage.png","maxRank":1,"name":"Face Smasher","description":"Your ability critical strikes now reduce the cooldown of your Battle Vigor and Thick Skull by -1 sec.","rankDescriptions":["Your ability critical strikes now reduce the cooldown of your Battle Vigor and Thick Skull by -1 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6753","treeId":"coa-barbarian-87","index":6753,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/_monkspecialattack_dodgepandaren.png","maxRank":1,"name":"Drunken Brawler","description":"Taking direct damage now increases your chance to dodge by 1% for 3 seconds, stacking 10 times.","rankDescriptions":["Taking direct damage now increases your chance to dodge by 1% for 3 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12463","treeId":"coa-barbarian-87","index":12463,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/custom_warriorskill_03_border.png","maxRank":1,"name":"Powerful Grip","description":"Reduces the duration of disarm effects by -30%.","rankDescriptions":["Reduces the duration of disarm effects by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5373","treeId":"coa-barbarian-87","index":5373,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_misc_trinket6oih_ironskull1.png","maxRank":1,"name":"Born Killer","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.","rankDescriptions":["Killing an enemy that yields experience or honor now grants you 5% increased armor penetration and movement speed for 5 seconds, stacking 20 times."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-14303","treeId":"coa-barbarian-87","index":14303,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_axe_2h_orcwarrior_c_01.png","maxRank":1,"name":"Battle Rhythm","description":"Critical strikes with abilities now generate 5 Energy.","rankDescriptions":["Critical strikes with abilities now generate 5 Energy."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34295","treeId":"coa-barbarian-87","index":34295,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/5_warriorskill44_border.png","maxRank":1,"name":"Iron Gut","description":"Reduces the duration of poison effects on you by -40%.","rankDescriptions":["Reduces the duration of poison effects on you by -40%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29322","treeId":"coa-barbarian-87","index":29322,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/_d3frenzy.png","maxRank":1,"name":"Outrage","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29803","treeId":"coa-barbarian-87","index":29803,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/warrior_talent_icon_skirmisher.png","maxRank":1,"name":"First Blood","description":"Increases all damage dealt to enemies above 80% health by 20%.","rankDescriptions":["Increases all damage dealt to enemies above 80% health by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30767","treeId":"coa-barbarian-87","index":30767,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_icegiant_01.png","maxRank":1,"name":"Hodir's Wrath","description":"Erupt with the power of Hodir, dealing 1361 + 120% AP Frost damage to nearby enemies and restoring 100% of your maximum Energy.","rankDescriptions":["Erupt with the power of Hodir, dealing 1361 + 120% AP Frost damage to nearby enemies and restoring 100% of your maximum Energy."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7764","treeId":"coa-barbarian-87","index":7764,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_bullrush.png","maxRank":1,"name":"Bloodthirsty","description":"Increases the effectiveness of your Outrage by 100%.","rankDescriptions":["Increases the effectiveness of your Outrage by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7848","treeId":"coa-barbarian-87","index":7848,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/achievement_leader_thrall.png","maxRank":1,"name":"Mak'Gora","description":"Critical strikes on enemies above 80% or below 20% health now challenges them to a Mak'Gora. Only 1 enemy can be challenged at a time.Mak'gora (20%)Challenge an enemy to a duel to the death for 10 seconds, reducing their healing received by -20% and absorbing the next 1244 + 100% AP healing done to them.","rankDescriptions":["Critical strikes on enemies above 80% or below 20% health now challenges them to a Mak'Gora. Only 1 enemy can be challenged at a time.Mak'gora (20%)Challenge an enemy to a duel to the death for 10 seconds, reducing their healing received by -20% and absorbing the next 1244 + 100% AP healing done to them."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7847","treeId":"coa-barbarian-87","index":7847,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/nhi_frost_knight_border.png","maxRank":1,"name":"Frozen Warlord","description":"Damage dealt by Hodir's Wrath now freezes enemies in place for 0 seconds.","rankDescriptions":["Damage dealt by Hodir's Wrath now freezes enemies in place for 0 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/bloodmage.json b/src/game/generated/talentUi/bloodmage.json new file mode 100644 index 00000000..79c43fc5 --- /dev/null +++ b/src/game/generated/talentUi/bloodmage.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"bloodmage","trees":[{"id":"coa-bloodmage-26","classId":"bloodmage","name":"Sanguine","icon":"/assets/ui/spells/epic_rpg_icon_pack_blood_0002s_0000_foreground_border.png","background":"","description":"Sanguine nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-bloodmage-52","classId":"bloodmage","name":"Accursed","icon":"/assets/ui/spells/achievement_dungeon_hallsofattonement_echelon.png","background":"","description":"Accursed nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-bloodmage-53","classId":"bloodmage","name":"Eternal","icon":"/assets/ui/spells/5_clawstrike_border.png","background":"","description":"Eternal nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-bloodmage-93","classId":"bloodmage","name":"Fleshweaver","icon":"/assets/ui/spells/spell_animarevendreth_orb.png","background":"","description":"Fleshweaver nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-bloodmage-87","classId":"bloodmage","name":"Class","icon":"/assets/ui/spells/nhi_blooddrop_(2)_border.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-31175","treeId":"coa-bloodmage-26","index":31175,"prerequisiteId":"coa-entry-4025","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4025","requiredRank":1},{"talentId":"coa-entry-29543","requiredRank":1}],"column":4,"row":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_blood_0002s_0000_foreground_border.png","maxRank":1,"name":"Transgression","description":"Transforms your Blood Curse into Transgression.Transgression (Cursed Form)Enter a unique Cursed Form for 30 seconds that does not disable the use of Mortal Form abilities and casts a free Vampiric Fang on your target. While active, direct spell damage triggers a Vampiric Feast, dealing 20% additional Shadow damage to enemies, healing you equal to 50% of the damage dealt.","rankDescriptions":["Transforms your Blood Curse into Transgression.Transgression (Cursed Form)Enter a unique Cursed Form for 30 seconds that does not disable the use of Mortal Form abilities and casts a free Vampiric Fang on your target. While active, direct spell damage triggers a Vampiric Feast, dealing 20% additional Shadow damage to enemies, healing you equal to 50% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4525","treeId":"coa-bloodmage-26","index":4525,"prerequisiteId":"coa-entry-4025","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4025","requiredRank":1},{"talentId":"coa-entry-29543","requiredRank":1}],"column":6,"row":1,"icon":"/assets/ui/spells/custom_t_bloodhaze_border.png","maxRank":1,"name":"Vampiric Fang","description":"Expends Thirst Stacks Steal 36 + 34% SP health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","rankDescriptions":["Expends Thirst Stacks Steal 36 + 34% SP health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4025","treeId":"coa-bloodmage-26","index":4025,"prerequisiteId":"coa-entry-29543","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29543","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_blood_0003s_0000_hand_border.png","maxRank":1,"name":"Thirst","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-30360","treeId":"coa-bloodmage-26","index":30360,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/ability_deathknight_necroticaura.png","maxRank":1,"name":"Valanar's Vengeance","description":"Requires Mortal Form Launch a powerful blood bolt at an enemy, dealing 188 + 127.75% SP Shadow damage. Each stack of Thirst reduces the cast time of this ability and increases its damage.","rankDescriptions":["Requires Mortal Form Launch a powerful blood bolt at an enemy, dealing 188 + 127.75% SP Shadow damage. Each stack of Thirst reduces the cast time of this ability and increases its damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29195","treeId":"coa-bloodmage-26","index":29195,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/spell_shadow_destructivesoul.png","maxRank":2,"name":"Atherann's Wickedness","description":"Increases your Shadow damage dealt by 8% and increases your hit chance by 6%.","rankDescriptions":["Increases your Shadow damage dealt by 4% and increases your hit chance by 3%.","Increases your Shadow damage dealt by 8% and increases your hit chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6410","treeId":"coa-bloodmage-26","index":6410,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/5_assassinskill02_border.png","maxRank":1,"name":"Fearmonger","description":"Increases the tick rate and cost of Taldaram's Torment by -30%.","rankDescriptions":["Increases the tick rate and cost of Taldaram's Torment by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4526","treeId":"coa-bloodmage-26","index":4526,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/atherann2.png","maxRank":1,"name":"Cunning of Atherann","description":"Level 20 Passive Increases your spell damage by 25% of your Stamina and Spirit.","rankDescriptions":["Level 20 Passive Increases your spell damage by 25% of your Stamina and Spirit."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-11324","treeId":"coa-bloodmage-26","index":11324,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/spell_shadow_corpseexplode.png","maxRank":1,"name":"Blood Constructor","description":"Increases the duration of Animated Blood by 1 sec per stack of Thirst.","rankDescriptions":["Increases the duration of Animated Blood by 1 sec per stack of Thirst."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29628","treeId":"coa-bloodmage-26","index":29628,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/spell_argus_psychic_scarring.png","maxRank":1,"name":"Aneurysm","description":"Counter the enemy's spellcast, preventing any spell from that school of magic from being cast for 4 seconds. Successfully interrupting an enemy heals you for 5% of your maximum health.","rankDescriptions":["Counter the enemy's spellcast, preventing any spell from that school of magic from being cast for 4 seconds. Successfully interrupting an enemy heals you for 5% of your maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33690","treeId":"coa-bloodmage-26","index":33690,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/inv_staff_2h_artifactdeadwind_d_06.png","maxRank":2,"name":"Darkfallen's Embrace","description":"Increases your spell haste by 6% and increases the range of your Sanguine spells and Bloodbolt by 10 yds.","rankDescriptions":["Increases your spell haste by 3% and increases the range of your Sanguine spells and Bloodbolt by 5 yds.","Increases your spell haste by 6% and increases the range of your Sanguine spells and Bloodbolt by 10 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6405","treeId":"coa-bloodmage-26","index":6405,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/spell_shadow_bloodboil.png","maxRank":2,"name":"Blood Banquet","description":"Increases the damage of Valanar's Vengeance and Taldaram's Torment by 30%.","rankDescriptions":["Increases the damage of Valanar's Vengeance and Taldaram's Torment by 15%.","Increases the damage of Valanar's Vengeance and Taldaram's Torment by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33692","treeId":"coa-bloodmage-26","index":33692,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv_misc_cauldron_fire.png","maxRank":1,"name":"The Cup Runneth Over","description":"Increases the spell power scaling of Bloodmoon Blast, Taldaram's Torment and Bloodbolt by 20%.","rankDescriptions":["Increases the spell power scaling of Bloodmoon Blast, Taldaram's Torment and Bloodbolt by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7293","treeId":"coa-bloodmage-26","index":7293,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/nhi_blood_slash_border.png","maxRank":1,"name":"Lifedrinker","description":"Increases the damage of your Vampiric Fang by 25%.","rankDescriptions":["Increases the damage of your Vampiric Fang by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6847","treeId":"coa-bloodmage-26","index":6847,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/spell_animarevendreth_debuff.png","maxRank":1,"name":"Essence Harvester","description":"Being struck by an enemy while below 35% health instantly resets the cooldown of your Vampiric Fang and grants you Wretched. Can only occur once per minute.WretchedGenerates 10 Rage and 1 stack of Thirst every 1 sec for 10 seconds. Vampiric Fang removes this effect.","rankDescriptions":["Being struck by an enemy while below 35% health instantly resets the cooldown of your Vampiric Fang and grants you Wretched. Can only occur once per minute.WretchedGenerates 10 Rage and 1 stack of Thirst every 1 sec for 10 seconds. Vampiric Fang removes this effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12304","treeId":"coa-bloodmage-26","index":12304,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/ability_ironmaidens_maraksbloodcalling.png","maxRank":1,"name":"Night Feast","description":"Each point of Rage now increases the damage of Bloodbolt by 1%, but its Rage cost is increased by 10.","rankDescriptions":["Each point of Rage now increases the damage of Bloodbolt by 1%, but its Rage cost is increased by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7305","treeId":"coa-bloodmage-26","index":7305,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/nhi_foreshadowblood_border.png","maxRank":1,"name":"Blood Prince's Command","description":"Your Bloodbolt is now guaranteed to critically strike on enemies affected by Taldaram's Torment.","rankDescriptions":["Your Bloodbolt is now guaranteed to critically strike on enemies affected by Taldaram's Torment."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33698","treeId":"coa-bloodmage-26","index":33698,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/ability_warlock_burningembers.png","maxRank":1,"name":"Swarm of Flies","description":"Your Bloodbolt now refreshes the duration of Taldaram's Torment.","rankDescriptions":["Your Bloodbolt now refreshes the duration of Taldaram's Torment."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11528","treeId":"coa-bloodmage-26","index":11528,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_deathknight_desolation.png","maxRank":1,"name":"Bloodsores","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7762","treeId":"coa-bloodmage-26","index":7762,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/_soulharvest2__red.png","maxRank":1,"name":"Malediction","description":"Condemn an enemy, dealing 248 + 77.33% shadow SP Shadow damage over 12 seconds and increasing the damage they take from your next 5 direct damage spells by 20%.","rankDescriptions":["Condemn an enemy, dealing 248 + 77.33% shadow SP Shadow damage over 12 seconds and increasing the damage they take from your next 5 direct damage spells by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6633","treeId":"coa-bloodmage-26","index":6633,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/_bloodplague_red.png","maxRank":1,"name":"Atherann's Anguish","description":"Unleash a hemoplague upon the target area, accumulating 30% of the damage you deal to affected enemies for 10 seconds, and then exploding for that amount of Shadow damage. Damage caused by this ability cannot critically strike.","rankDescriptions":["Unleash a hemoplague upon the target area, accumulating 30% of the damage you deal to affected enemies for 10 seconds, and then exploding for that amount of Shadow damage. Damage caused by this ability cannot critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7672","treeId":"coa-bloodmage-26","index":7672,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/ability_revendreth_paladin.png","maxRank":1,"name":"Keleseth's Calamity","description":"Requires Mortal Form Bend blood in an area, dealing 177 + 69% shadow SP Shadow damage to enemies. Each stack of Thirst reduces the cast time of this ability and increases its damage.","rankDescriptions":["Requires Mortal Form Bend blood in an area, dealing 177 + 69% shadow SP Shadow damage to enemies. Each stack of Thirst reduces the cast time of this ability and increases its damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30676","treeId":"coa-bloodmage-26","index":30676,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/spell_shadow_possession.png","maxRank":2,"name":"Hematoma","description":"Your Bloodbolt now heals for an additional 40% of the damage dealt.","rankDescriptions":["Your Bloodbolt now heals for an additional 20% of the damage dealt.","Your Bloodbolt now heals for an additional 40% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30952","treeId":"coa-bloodmage-26","index":30952,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/achievement_zone_bloodmystisle_01.png","maxRank":1,"name":"Dominion of Blood","description":"Your Vampiric Fang now heals you for an additional 50% of the damage dealt.","rankDescriptions":["Your Vampiric Fang now heals you for an additional 50% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30950","treeId":"coa-bloodmage-26","index":30950,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/sha_ability_rogue_envelopingshadows_nightmare.png","maxRank":1,"name":"Dark Presence","description":"Increases spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your spell haste by 3%.","rankDescriptions":["Increases spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your spell haste by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6408","treeId":"coa-bloodmage-26","index":6408,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/_deathcoilv2_blood.png","maxRank":1,"name":"Twisted Magic","description":"Your direct harmful critical strikes increase the target's Shadow damage taken from you by 2%, stacking up to 5 times, for 12 seconds.","rankDescriptions":["Your direct harmful critical strikes increase the target's Shadow damage taken from you by 2%, stacking up to 5 times, for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6627","treeId":"coa-bloodmage-26","index":6627,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/artifactability_blooddeathknight_umbilicuseternus.png","maxRank":1,"name":"Bloodwell Eruption","description":"Increases the radius of Sanguine Rupture by 5 yds and its critical strike chance by 10%.","rankDescriptions":["Increases the radius of Sanguine Rupture by 5 yds and its critical strike chance by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11627","treeId":"coa-bloodmage-26","index":11627,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/spell_shadow_deathanddecay.png","maxRank":1,"name":"Cursed Ground","description":"Increases the cast time of Sanguine Rupture by 2 sec, but now when you strike at least 5 enemies it causes them to bleed out, dealing an additional 352 Shadow damage over 2 seconds.","rankDescriptions":["Increases the cast time of Sanguine Rupture by 2 sec, but now when you strike at least 5 enemies it causes them to bleed out, dealing an additional 352 Shadow damage over 2 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7463","treeId":"coa-bloodmage-26","index":7463,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/ability_mount_bloodtick_red.png","maxRank":1,"name":"Blood Parasites","description":"Your Taldaram's Torment now generates 3 additional Rage per tick and increases spell critical strike chance against the target by 3% for 15 seconds.","rankDescriptions":["Your Taldaram's Torment now generates 3 additional Rage per tick and increases spell critical strike chance against the target by 3% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4528","treeId":"coa-bloodmage-26","index":4528,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/nhi_bloodavatar_border.png","maxRank":1,"name":"Reckless Abandon","description":"Level 40 Passive Each stack of Thirst now increases your critical strike chance by 1%.","rankDescriptions":["Level 40 Passive Each stack of Thirst now increases your critical strike chance by 1%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-7670","treeId":"coa-bloodmage-26","index":7670,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_shadow_lifedrain.png","maxRank":1,"name":"Blood Craving","description":"Requires Mortal Form You crave blood for 12 seconds, for the duration you cannot be interrupted or silenced, and you regain 5% of your maximum health and 15% of your missing Rage every 2 sec.","rankDescriptions":["Requires Mortal Form You crave blood for 12 seconds, for the duration you cannot be interrupted or silenced, and you regain 5% of your maximum health and 15% of your missing Rage every 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7304","treeId":"coa-bloodmage-26","index":7304,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/spell_shadow_improvedvampiricembrace.png","maxRank":1,"name":"Vampyr Lord","description":"Increases the damage dealt by your Animated Blood by 35%.","rankDescriptions":["Increases the damage dealt by your Animated Blood by 35%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7342","treeId":"coa-bloodmage-26","index":7342,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/ability_rogue_deadliness.png","maxRank":1,"name":"Enthraller","description":"Increases the critical strike chance of Valanar's Vengeance and Keleseth's Calamity by 10%.","rankDescriptions":["Increases the critical strike chance of Valanar's Vengeance and Keleseth's Calamity by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33695","treeId":"coa-bloodmage-26","index":33695,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/achievement_boss_kael'thassunstrider_01.png","maxRank":2,"name":"Blood Lord","description":"Grants your Bloodsore a -30% chance to provide its benefits without being consumed.","rankDescriptions":["Grants your Bloodsore a -15% chance to provide its benefits without being consumed.","Grants your Bloodsore a -30% chance to provide its benefits without being consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7674","treeId":"coa-bloodmage-26","index":7674,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_bloodeye_border.png","maxRank":1,"name":"Cardiac Arrest","description":"Your Valanar's Vengeance now deals an additional 50% of its initial damage dealt over 10 seconds, healing you for 50% of the damage dealt.","rankDescriptions":["Your Valanar's Vengeance now deals an additional 50% of its initial damage dealt over 10 seconds, healing you for 50% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6634","treeId":"coa-bloodmage-26","index":6634,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/warlock_bloodstone.png","maxRank":1,"name":"Agonizing Pain","description":"Damage dealt by your Atherann's Anguish now causes enemies hit to bleed, dealing 1405 + 100% shadow SP Shadow damage over 10 seconds.","rankDescriptions":["Damage dealt by your Atherann's Anguish now causes enemies hit to bleed, dealing 1405 + 100% shadow SP Shadow damage over 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5563","treeId":"coa-bloodmage-26","index":5563,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/nhi_bloodhand_border.png","maxRank":1,"name":"Crimson Terror","description":"Your Transgression now grants spell damage equal to 50% of your Spirit for the duration.","rankDescriptions":["Your Transgression now grants spell damage equal to 50% of your Spirit for the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12448","treeId":"coa-bloodmage-26","index":12448,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/epic_rpg_icon_pack_blood_0002s_0000_foreground_border.png","maxRank":1,"name":"Thirst for Blood","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-6656","treeId":"coa-bloodmage-26","index":6656,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/uico_blood_spell_06_border.png","maxRank":1,"name":"The Council Assembled","description":"Atherann's Anguish now costs -25 less Rage. Taldaram's Torment now increases the damage of your next Valanar's Vengeance or Keleseth's Calamity by 3% per tick for 10 seconds, stacking 5 times. Valanar's Vengeance and Keleseth's Calamity now reduce the cooldown of Malediction by -5 sec.","rankDescriptions":["Atherann's Anguish now costs -25 less Rage. Taldaram's Torment now increases the damage of your next Valanar's Vengeance or Keleseth's Calamity by 3% per tick for 10 seconds, stacking 5 times. Valanar's Vengeance and Keleseth's Calamity now reduce the cooldown of Malediction by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29630","treeId":"coa-bloodmage-26","index":29630,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_shadowtentacle_border.png","maxRank":1,"name":"Sacrificial Rite","description":"Requires Mortal Form Invoke a dark ritual, increasing your haste by 20% for 15 seconds. While active, attackers are afflicted with Cursed Blood. Can only occur once per sec. At the end of the duration, your healing done is increased by 15% and you are healed for 795 + 150% SP over 15 seconds.","rankDescriptions":["Requires Mortal Form Invoke a dark ritual, increasing your haste by 20% for 15 seconds. While active, attackers are afflicted with Cursed Blood. Can only occur once per sec. At the end of the duration, your healing done is increased by 15% and you are healed for 795 + 150% SP over 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7676","treeId":"coa-bloodmage-26","index":7676,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_offhand_1h_artifactskulloferedar_d_05.png","maxRank":1,"name":"Torture","description":"Increases the leech of Vampiric Feast by 50%. Consuming at least 9 stacks of Thirst with Vampiric Fang now extends the duration of Transgression by 5 sec.","rankDescriptions":["Increases the leech of Vampiric Feast by 50%. Consuming at least 9 stacks of Thirst with Vampiric Fang now extends the duration of Transgression by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29485","treeId":"coa-bloodmage-52","index":29485,"prerequisiteId":"coa-entry-4026","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4026","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/achievement_dungeon_hallsofattonement_echelon.png","maxRank":1,"name":"Accursed Form","description":"Transforms your Blood Curse into Accursed Form.Accursed Form (Cursed Form)Embrace your demonic curse for 30 seconds, entering an improved Cursed Form, increasing your attack power by 50% of your Agility and causing your melee attacks to reduce all healing done to the target by -20% for 10 seconds, stacking 2 times.","rankDescriptions":["Transforms your Blood Curse into Accursed Form.Accursed Form (Cursed Form)Embrace your demonic curse for 30 seconds, entering an improved Cursed Form, increasing your attack power by 50% of your Agility and causing your melee attacks to reduce all healing done to the target by -20% for 10 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4026","treeId":"coa-bloodmage-52","index":4026,"prerequisiteId":"coa-entry-31117","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-31117","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/nhi_foreshadowblood_border.png","maxRank":1,"name":"Unchained","description":"Level 10 Passive Your damaging Mortal Form spells can now be cast while moving.","rankDescriptions":["Level 10 Passive Your damaging Mortal Form spells can now be cast while moving."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":10,"isPassive":true},{"id":"coa-entry-33745","treeId":"coa-bloodmage-52","index":33745,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_weapon_shortblade_40.png","maxRank":1,"name":"Reave","description":"Lacerate an enemy, dealing 125% Weapon Damage plus 26. If the enemy is bleeding, below 35% health, or if you are behind them, deal 100% additional Shadow damage for each condition met.","rankDescriptions":["Lacerate an enemy, dealing 125% Weapon Damage plus 26. If the enemy is bleeding, below 35% health, or if you are behind them, deal 100% additional Shadow damage for each condition met."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6328","treeId":"coa-bloodmage-52","index":6328,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/ability_deathwing_bloodcorruption_death.png","maxRank":1,"name":"Puncturing Fangs","description":"Your Bloodmoon Blast now generates 3 additional Rage per hit.","rankDescriptions":["Your Bloodmoon Blast now generates 3 additional Rage per hit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7318","treeId":"coa-bloodmage-52","index":7318,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_misc_monsterfang_02.png","maxRank":1,"name":"Fang Over Fang","description":"Casting Bloodfang Bite now has a 20% chance to reset the cooldown of Reave.","rankDescriptions":["Casting Bloodfang Bite now has a 20% chance to reset the cooldown of Reave."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33709","treeId":"coa-bloodmage-52","index":33709,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/spell_nzinsanity_bloodthirst.png","maxRank":2,"name":"Barely Human","description":"Increases your armor penetration and the damage of spells that cost health by 30%.","rankDescriptions":["Increases your armor penetration and the damage of spells that cost health by 15%.","Increases your armor penetration and the damage of spells that cost health by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4127","treeId":"coa-bloodmage-52","index":4127,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/5_bull_border.png","maxRank":1,"name":"Forbidden Power","description":"Level 20 Passive Increases your spell critical strike rating by 30% of your Agility and spell hit rating by 5% of your Agility.","rankDescriptions":["Level 20 Passive Increases your spell critical strike rating by 30% of your Agility and spell hit rating by 5% of your Agility."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-30290","treeId":"coa-bloodmage-52","index":30290,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/ability_ironmaidens_bloodritual.png","maxRank":1,"name":"Veinburst","description":"Requires Mortal Form Blast an enemy, dealing 123 + 25% AP + 85% shadow SP Shadow damage. Deals 25% increased damage to bleeding targets.","rankDescriptions":["Requires Mortal Form Blast an enemy, dealing 123 + 25% AP + 85% shadow SP Shadow damage. Deals 25% increased damage to bleeding targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12896","treeId":"coa-bloodmage-52","index":12896,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/spell_shadow_blackplague.png","maxRank":1,"name":"Shadow Pact","description":"Increases the effectiveness of your Shields by 50%.","rankDescriptions":["Increases the effectiveness of your Shields by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30291","treeId":"coa-bloodmage-52","index":30291,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/ability_revendreth_deathknight.png","maxRank":1,"name":"Blood Pact","description":"Increases your maximum Rage by 20 and you now regenerate 4 Rage every 5 sec.","rankDescriptions":["Increases your maximum Rage by 20 and you now regenerate 4 Rage every 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7295","treeId":"coa-bloodmage-52","index":7295,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/inv_artifact_corruptedbloodofzakajz.png","maxRank":2,"name":"Rage","description":"Increases your spell damage by 30% of your attack power and the damage dealt by Reave by 20%.","rankDescriptions":["Increases your spell damage by 15% of your attack power and the damage dealt by Reave by 10%.","Increases your spell damage by 30% of your attack power and the damage dealt by Reave by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7297","treeId":"coa-bloodmage-52","index":7297,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/achievement_moguraid_06.png","maxRank":1,"name":"Aortic Assault","description":"Extend the duration of your active Cursed Form by 3 sec and strike nearby enemies every 1 sec for 3 seconds, each strike causing 20 + 12% AP Physical damage.","rankDescriptions":["Extend the duration of your active Cursed Form by 3 sec and strike nearby enemies every 1 sec for 3 seconds, each strike causing 20 + 12% AP Physical damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33701","treeId":"coa-bloodmage-52","index":33701,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/ability_racial_bloodrage.png","maxRank":1,"name":"Terrorizer","description":"Increases the damage of Veinburst, Bloodfang Bite, and Claw Sweep on enemies below 35% health by 25%.","rankDescriptions":["Increases the damage of Veinburst, Bloodfang Bite, and Claw Sweep on enemies below 35% health by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33741","treeId":"coa-bloodmage-52","index":33741,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/_book6_red.png","maxRank":1,"name":"Sanguine Scripture","description":"Upon exiting Accursed Form, you gain 70% movement speed and spell haste for 5 seconds.","rankDescriptions":["Upon exiting Accursed Form, you gain 70% movement speed and spell haste for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33707","treeId":"coa-bloodmage-52","index":33707,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/spell_deathknight_bladedarmor.png","maxRank":1,"name":"Dark Hunt","description":"Increases your Shadow damage dealt by 10% against bleeding targets.","rankDescriptions":["Increases your Shadow damage dealt by 10% against bleeding targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11419","treeId":"coa-bloodmage-52","index":11419,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/_book2motif_kaelthas.png","maxRank":1,"name":"Gore Tome","description":"For the first 5 sec after activating a Cursed Form, your Bloodfang Bite is now guaranteed to critically strike.","rankDescriptions":["For the first 5 sec after activating a Cursed Form, your Bloodfang Bite is now guaranteed to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30419","treeId":"coa-bloodmage-52","index":30419,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/_book1_red.png","maxRank":1,"name":"Leeching Tome","description":"Your Bloodbolt now leeches 50% more health, but it now costs 5 additional Rage.","rankDescriptions":["Your Bloodbolt now leeches 50% more health, but it now costs 5 additional Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11444","treeId":"coa-bloodmage-52","index":11444,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/ability_deathknight_roilingblood.png","maxRank":1,"name":"Dark Intent","description":"When you Lunge at an enemy you now heal for 5% of your maximum health.","rankDescriptions":["When you Lunge at an enemy you now heal for 5% of your maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30294","treeId":"coa-bloodmage-52","index":30294,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/inv_amalgamofrage.png","maxRank":1,"name":"Cruel Intent","description":"When you Lunge at an enemy you now strike them 3 times with auto attacks.","rankDescriptions":["When you Lunge at an enemy you now strike them 3 times with auto attacks."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4128","treeId":"coa-bloodmage-52","index":4128,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/uico_blood_spell_02_border.png","maxRank":1,"name":"Blood Shards","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-29878","treeId":"coa-bloodmage-52","index":29878,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/spell_shadow_curseoftounges.png","maxRank":1,"name":"Cursed Blood","description":"Damage dealt by Taldaram's Torment now has a 20% chance to internally rupture, causing it to deal its damage an additional time to all enemies near the target.","rankDescriptions":["Damage dealt by Taldaram's Torment now has a 20% chance to internally rupture, causing it to deal its damage an additional time to all enemies near the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30292","treeId":"coa-bloodmage-52","index":30292,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/artifactability_blooddeathknight_umbilicuseternus.png","maxRank":1,"name":"Corrupted Blood","description":"When you use Taldaram's Torment on a Humanoid or Beast it now corrupts their blood, increasing your damage dealt against them by 10%.","rankDescriptions":["When you use Taldaram's Torment on a Humanoid or Beast it now corrupts their blood, increasing your damage dealt against them by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6848","treeId":"coa-bloodmage-52","index":6848,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/_skullcurse2_red.png","maxRank":1,"name":"Bloodsurge","description":"Requires Mortal Form Enter a bloodsurge, enraging you and increasing your Shadow damage dealt and your spell critical strike chance by 20% for 20 seconds. At the end of the duration, or whenever you trigger Accursed Form, gain Bloodchaser instead.BloodchaserEnrage, increasing your Physical damage dealt and reducing your Physical damage taken by 20% for 30 seconds While active, Bloodfang Bite now launches 1 Blood Shard, dealing 18 + 15% AP + 35% SP Shadow Damage to your target.","rankDescriptions":["Requires Mortal Form Enter a bloodsurge, enraging you and increasing your Shadow damage dealt and your spell critical strike chance by 20% for 20 seconds. At the end of the duration, or whenever you trigger Accursed Form, gain Bloodchaser instead.BloodchaserEnrage, increasing your Physical damage dealt and reducing your Physical damage taken by 20% for 30 seconds While active, Bloodfang Bite now launches 1 Blood Shard, dealing 18 + 15% AP + 35% SP Shadow Damage to your target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30848","treeId":"coa-bloodmage-52","index":30848,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/_hearthstonedark_deathknight.png","maxRank":1,"name":"Dark Sigil","description":"Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, you now heal for 15% of all critical damage dealt.","rankDescriptions":["Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, you now heal for 15% of all critical damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33708","treeId":"coa-bloodmage-52","index":33708,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/custom_t_bloodspikes_border.png","maxRank":1,"name":"Gore Barrage","description":"Reduces the cost of spells that cost health and Animated Blood by -30%.","rankDescriptions":["Reduces the cost of spells that cost health and Animated Blood by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7303","treeId":"coa-bloodmage-52","index":7303,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/ability_criticalstrike.png","maxRank":1,"name":"Crimson Expedition","description":"Increases the critical strike chance of your Bloodbolt, Blood Shards, and Aortic Assault by 10%.","rankDescriptions":["Increases the critical strike chance of your Bloodbolt, Blood Shards, and Aortic Assault by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33744","treeId":"coa-bloodmage-52","index":33744,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/ability_deathknight_roilingblood.png","maxRank":1,"name":"Killer Instinct","description":"Each point of Rage now increases the critical strike chance of Veinburst and Reave by 0.5%, up to a maximum of 50%.","rankDescriptions":["Each point of Rage now increases the critical strike chance of Veinburst and Reave by 0.5%, up to a maximum of 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30864","treeId":"coa-bloodmage-52","index":30864,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/nhi_blood_grawl_border.png","maxRank":1,"name":"Crimson Feast","description":"Every 5 second you remain in a Cursed Form now reduces the cooldown of your Bloodsurge by -5 sec.","rankDescriptions":["Every 5 second you remain in a Cursed Form now reduces the cooldown of your Bloodsurge by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7411","treeId":"coa-bloodmage-52","index":7411,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_sulfurelemental_blood.png","maxRank":1,"name":"Endure the Curse","description":"Reduce all damage taken by -30% for 10 seconds. While active, taking damage that would reduce your health below 10% will instantly heal you for 30% of your maximum health. Can only occur once.","rankDescriptions":["Reduce all damage taken by -30% for 10 seconds. While active, taking damage that would reduce your health below 10% will instantly heal you for 30% of your maximum health. Can only occur once."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7294","treeId":"coa-bloodmage-52","index":7294,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/_warlock_plaiefuneste1.png","maxRank":1,"name":"Dark Frenzy","description":"Increases spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, while a Cursed Form is active, your global cooldowns are reduced by -25%.","rankDescriptions":["Increases spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, while a Cursed Form is active, your global cooldowns are reduced by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30293","treeId":"coa-bloodmage-52","index":30293,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/inv_hand_1h_pvpdraenors2_d_01.png","maxRank":1,"name":"Clotting","description":"At the end of Aortic Assault's duration, all enemies in a 10 yd frontal cone suffer 600 + 50% AP Physical damage. Damage dealt by this effect is increased by 25% against bleeding targets.","rankDescriptions":["At the end of Aortic Assault's duration, all enemies in a 10 yd frontal cone suffer 600 + 50% AP Physical damage. Damage dealt by this effect is increased by 25% against bleeding targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4129","treeId":"coa-bloodmage-52","index":4129,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_shoulder_mail_pvphunter_g_01.png","maxRank":1,"name":"Relentless","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-33746","treeId":"coa-bloodmage-52","index":33746,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/ability_hunter_rapidkilling.png","maxRank":1,"name":"Everlasting Hunt","description":"Damage dealt by Blood Shards now reduces the cooldown of Veinburst and Reave by -1.5 sec.","rankDescriptions":["Damage dealt by Blood Shards now reduces the cooldown of Veinburst and Reave by -1.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30420","treeId":"coa-bloodmage-52","index":30420,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_blooddrop_border.png","maxRank":1,"name":"One Man's Curse...","description":"Removes the health cost of Accursed Form and entering it now instantly restores 15% of your maximum health.","rankDescriptions":["Removes the health cost of Accursed Form and entering it now instantly restores 15% of your maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30202","treeId":"coa-bloodmage-52","index":30202,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/warlock_charredremains.png","maxRank":1,"name":"Battleweaver","description":"Casting Cursed Form abilities now has a 50% chance to generate 1 Blood Shard for 10 minutes, up to 8. Dealing damage with Bloodbolt will launch 1 Blood Shard, dealing 18 + 15% AP + 35% SP Arcane damage to your target.","rankDescriptions":["Casting Cursed Form abilities now has a 50% chance to generate 1 Blood Shard for 10 minutes, up to 8. Dealing damage with Bloodbolt will launch 1 Blood Shard, dealing 18 + 15% AP + 35% SP Arcane damage to your target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33742","treeId":"coa-bloodmage-52","index":33742,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/achievement_boss_breaker_darmac.png","maxRank":1,"name":"Inhumane","description":"Dealing damage with Aortic Assault will now launch 1 Blood Shard, dealing 18 + 15% AP + 35% SP Arcane damage to your target.","rankDescriptions":["Dealing damage with Aortic Assault will now launch 1 Blood Shard, dealing 18 + 15% AP + 35% SP Arcane damage to your target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7662","treeId":"coa-bloodmage-52","index":7662,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/spell_shadow_nethercloak.png","maxRank":1,"name":"Night Hunter","description":"Your Veinburst now has a 40% chance to not trigger a cooldown when cast. Your Bloodbolt now has a 40% chance to refund half of its Rage cost when cast.","rankDescriptions":["Your Veinburst now has a 40% chance to not trigger a cooldown when cast. Your Bloodbolt now has a 40% chance to refund half of its Rage cost when cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31251","treeId":"coa-bloodmage-52","index":31251,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_physical_taunt.png","maxRank":1,"name":"Blood Scent","description":"While in Accursed Form, you now deal 15% increased damage to targets below 35% maximum health. Dealing direct damage to enemies below 35% maximum health now leeches health equal to 10% of the damage dealt.","rankDescriptions":["While in Accursed Form, you now deal 15% increased damage to targets below 35% maximum health. Dealing direct damage to enemies below 35% maximum health now leeches health equal to 10% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6510","treeId":"coa-bloodmage-52","index":6510,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_druid_predatoryinstincts.png","maxRank":1,"name":"Ultra Instinct","description":"Direct ability critical strikes now increase your spell and ability critical strike chance and critical damage by 3% for 10 sec, stacking up to 10 times. Each additional critical strike increases this by an additional 3%, but reduces its duration by -1 sec.","rankDescriptions":["Direct ability critical strikes now increase your spell and ability critical strike chance and critical damage by 3% for 10 sec, stacking up to 10 times. Each additional critical strike increases this by an additional 3%, but reduces its duration by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4306","treeId":"coa-bloodmage-52","index":4306,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_blood_aura_border.png","maxRank":1,"name":"The Hunter and the Hunted","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30421","treeId":"coa-bloodmage-52","index":30421,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/nhi_bloodbolt_border.png","maxRank":1,"name":"Hemoburst","description":"Requires Mortal Form Unleash a powerful burst of blood at an enemy, dealing 1480 + 65% AP + 50% SP Shadow damage. This ability is guaranteed to critically strike against bleeding targets. Extends the duration of your next Cursed Form by 5 sec for 30 seconds, stacking 2 times.","rankDescriptions":["Requires Mortal Form Unleash a powerful burst of blood at an enemy, dealing 1480 + 65% AP + 50% SP Shadow damage. This ability is guaranteed to critically strike against bleeding targets. Extends the duration of your next Cursed Form by 5 sec for 30 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30418","treeId":"coa-bloodmage-52","index":30418,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_bloodmaw_border.png","maxRank":1,"name":"Final Embrace","description":"Requires Mortal Form Gorge on blood magic, entering a dramatically improved Cursed Form for 20 seconds, transforming your Bloodfang Bite into Crimson Maw, but draining your health over time. While active, every 1 sec you curse enemies within 8 yds, applying Hematoma for 6 seconds.Hematoma (Shadow Damage)Deals 55 + 15% shadow SP + 10% AP Shadow Damage and increases the damage the target takes from subsequent applications of Hematoma by 3%, stacking 10 times. Generates Rage based on damage dealt.","rankDescriptions":["Requires Mortal Form Gorge on blood magic, entering a dramatically improved Cursed Form for 20 seconds, transforming your Bloodfang Bite into Crimson Maw, but draining your health over time. While active, every 1 sec you curse enemies within 8 yds, applying Hematoma for 6 seconds.Hematoma (Shadow Damage)Deals 55 + 15% shadow SP + 10% AP Shadow Damage and increases the damage the target takes from subsequent applications of Hematoma by 3%, stacking 10 times. Generates Rage based on damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30342","treeId":"coa-bloodmage-52","index":30342,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/_devouringshadow_red.png","maxRank":1,"name":"Darkcasting","description":"Critical strikes with abilities now spawn a Blood Orb near you for 15 seconds.Blood Orb (Spawn)When you run over this, restore 3% of your missing health and 5 Rage and gain a stack of Darkcasting for 1 minute, stacking 10 times. Darkcasting (Buff)Gaining a stack reduces the cooldown of Animated Blood by 1 sec and causes your next Animated Blood to spawn 1 blood worm to attack your enemies.","rankDescriptions":["Critical strikes with abilities now spawn a Blood Orb near you for 15 seconds.Blood Orb (Spawn)When you run over this, restore 3% of your missing health and 5 Rage and gain a stack of Darkcasting for 1 minute, stacking 10 times. Darkcasting (Buff)Gaining a stack reduces the cooldown of Animated Blood by 1 sec and causes your next Animated Blood to spawn 1 blood worm to attack your enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30191","treeId":"coa-bloodmage-53","index":30191,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/5_clawstrike_border.png","maxRank":1,"name":"Rotclaw","description":"2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 28 + 10% AP Shadow damage, generating Rage and infecting their wounds, causing them to bleed for 24 + 46% AP Shadow damage over 4 seconds.","rankDescriptions":["2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 28 + 10% AP Shadow damage, generating Rage and infecting their wounds, causing them to bleed for 24 + 46% AP Shadow damage over 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4027","treeId":"coa-bloodmage-53","index":4027,"prerequisiteId":"coa-entry-31117","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-31117","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/ability_racial_viciousness.png","maxRank":1,"name":"Eternal Curse","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-6881","treeId":"coa-bloodmage-53","index":6881,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/inv_skinning_80_coarsefur.png","maxRank":2,"name":"Heightened Reflexes","description":"Increases your chance to dodge by 8% and your expertise by 10.","rankDescriptions":["Increases your chance to dodge by 4% and your expertise by 5.","Increases your chance to dodge by 8% and your expertise by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33683","treeId":"coa-bloodmage-53","index":33683,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/inv_misc_pelt_15.png","maxRank":1,"name":"Thick Pelt","description":"Physical damage taken now reduces the Physical damage taken from the next attack within 10 seconds by -15 + 20% AP.","rankDescriptions":["Physical damage taken now reduces the Physical damage taken from the next attack within 10 seconds by -15 + 20% AP."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33682","treeId":"coa-bloodmage-53","index":33682,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_helm_cloth_raidpriest_l_01.png","maxRank":1,"name":"Eternal Hunt","description":"Increases your maximum health and reduces the cost of your spells and abilities by 10%.","rankDescriptions":["Increases your maximum health and reduces the cost of your spells and abilities by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30194","treeId":"coa-bloodmage-53","index":30194,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_shadow_painandsuffering.png","maxRank":1,"name":"Enduring","description":"Increases the damage of Bloodbolt by 25%, plus an additional 25% while below 35% health.","rankDescriptions":["Increases the damage of Bloodbolt by 25%, plus an additional 25% while below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34633","treeId":"coa-bloodmage-53","index":34633,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/skill_icon_skill73_border.png","maxRank":1,"name":"Eternal Resolve","description":"Activate your eternal resolve for 30 seconds, sending you into a feral frenzy, increasing your melee attack speed, maximum health, and healing received by 50%.","rankDescriptions":["Activate your eternal resolve for 30 seconds, sending you into a feral frenzy, increasing your melee attack speed, maximum health, and healing received by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4627","treeId":"coa-bloodmage-53","index":4627,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_shadow_spectralsight.png","maxRank":1,"name":"Uncanny Movement","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-30198","treeId":"coa-bloodmage-53","index":30198,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/nhi_nightmarehowl_border.png","maxRank":1,"name":"Blood Howl","description":"Taunts nearby enemies within 10 yds, forcing them to attack you for 5 seconds.","rankDescriptions":["Taunts nearby enemies within 10 yds, forcing them to attack you for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13684","treeId":"coa-bloodmage-53","index":13684,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/ability_racial_pureblood.png","maxRank":1,"name":"Coated In Blood","description":"Increases the effectiveness of Blood Pact by 50%.","rankDescriptions":["Increases the effectiveness of Blood Pact by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33684","treeId":"coa-bloodmage-53","index":33684,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/ability_shaman_freedomwolf.png","maxRank":1,"name":"Coated In Darkness","description":"Casting Bloodbolt or Bloodfang Bite now reduces the cooldown of your Blood Pact by -0.5 sec.","rankDescriptions":["Casting Bloodbolt or Bloodfang Bite now reduces the cooldown of your Blood Pact by -0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29541","treeId":"coa-bloodmage-53","index":29541,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/_monkspecialattack_dodgebloodelf.png","maxRank":1,"name":"Bloodguard","description":"Increases the duration of Blood Pact by 4 sec.","rankDescriptions":["Increases the duration of Blood Pact by 4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33681","treeId":"coa-bloodmage-53","index":33681,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/_worgenflayer_priest.png","maxRank":1,"name":"Packleader","description":"Casting Howl spell now enrages your summons, increasing their damage dealt by 10% for 8 seconds.","rankDescriptions":["Casting Howl spell now enrages your summons, increasing their damage dealt by 10% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6769","treeId":"coa-bloodmage-53","index":6769,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_expulsom.png","maxRank":1,"name":"Vitality","description":"Increases your Stamina while in Eternal Curse by an additional 10%.","rankDescriptions":["Increases your Stamina while in Eternal Curse by an additional 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29872","treeId":"coa-bloodmage-53","index":29872,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/achievement_dungeon_sanguinedepths_tarvold.png","maxRank":1,"name":"Monstrous Hunger","description":"Enrage for 10 seconds, causing the next 6 Bloodfang Bites to have a -50% reduced global cooldown and cost and to trigger Call of the Darkwing.Call of the DarkwingCalls 1 to 2 Shadow Bats to appear from the shadows and strike the target for 28 + 40% SP + 20% AP Physical Damage, healing you equal to the damage dealt.","rankDescriptions":["Enrage for 10 seconds, causing the next 6 Bloodfang Bites to have a -50% reduced global cooldown and cost and to trigger Call of the Darkwing.Call of the DarkwingCalls 1 to 2 Shadow Bats to appear from the shadows and strike the target for 28 + 40% SP + 20% AP Physical Damage, healing you equal to the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7379","treeId":"coa-bloodmage-53","index":7379,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/spell_nzinsanity_chasedbyshadows.png","maxRank":1,"name":"Shadows In The Night","description":"While above 75% health, your damage taken is reduced by -5%.","rankDescriptions":["While above 75% health, your damage taken is reduced by -5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12379","treeId":"coa-bloodmage-53","index":12379,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/artifactability_balancedruid_halfmoon.png","maxRank":1,"name":"Blood Moon","description":"While below 75% health, you now heal for 3% of all damage you deal.","rankDescriptions":["While below 75% health, you now heal for 3% of all damage you deal."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33705","treeId":"coa-bloodmage-53","index":33705,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/spell_nature_spiritwolf.png","maxRank":1,"name":"Uncanny Speed","description":"Increases your melee haste by 5% and your movement speed and mounted movement speed by 20%.","rankDescriptions":["Increases your melee haste by 5% and your movement speed and mounted movement speed by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4629","treeId":"coa-bloodmage-53","index":4629,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/nhi_unholy_wounds_border.png","maxRank":1,"name":"Feral Strength","description":"Level 30 Passive While in Eternal Curse, you now gain 50% more attack power from Agility and Strength.","rankDescriptions":["Level 30 Passive While in Eternal Curse, you now gain 50% more attack power from Agility and Strength."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-9705","treeId":"coa-bloodmage-53","index":9705,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/achievement_raid_revendrethraid_huntsmangargon.png","maxRank":1,"name":"Night Hunter's Howl","description":"Howl into the souls of nearby enemies, dealing 71 + 28.5% AP Shadow damage and slowing their movement speed by -60% for 6 seconds.","rankDescriptions":["Howl into the souls of nearby enemies, dealing 71 + 28.5% AP Shadow damage and slowing their movement speed by -60% for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33675","treeId":"coa-bloodmage-53","index":33675,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/spell_shadow_creepingplague.png","maxRank":1,"name":"Blood Plague","description":"Increases the critical strike chance and critical damage of Ravenous Strike and Claw Sweep by 10% against Diseased targets.","rankDescriptions":["Increases the critical strike chance and critical damage of Ravenous Strike and Claw Sweep by 10% against Diseased targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30192","treeId":"coa-bloodmage-53","index":30192,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/custom_fishbite_border.png","maxRank":1,"name":"Festering Maw","description":"Healing with Bite Wound now reduces the cooldown of Lunge by 1 sec.","rankDescriptions":["Healing with Bite Wound now reduces the cooldown of Lunge by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29544","treeId":"coa-bloodmage-53","index":29544,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_ascend_hunting_90.png","maxRank":1,"name":"No Mercy","description":"Allows your Thick Pelt to affect an additional hit.","rankDescriptions":["Allows your Thick Pelt to affect an additional hit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30196","treeId":"coa-bloodmage-53","index":30196,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_misc_reforgedarchstone_01.png","maxRank":1,"name":"Petrified Legions","description":"Physical damage you deal or take now has a 10% chance to trigger a Call of the Darkwing.Call of the DarkwingCalls 1 to 2 Shadow Bats to appear from the shadows and strike the target for 28 + 40% SP + 20% AP Physical Damage, healing you equal to the damage dealt.","rankDescriptions":["Physical damage you deal or take now has a 10% chance to trigger a Call of the Darkwing.Call of the DarkwingCalls 1 to 2 Shadow Bats to appear from the shadows and strike the target for 28 + 40% SP + 20% AP Physical Damage, healing you equal to the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33704","treeId":"coa-bloodmage-53","index":33704,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/ability_hunter_pet_wolf.png","maxRank":1,"name":"Rabid","description":"Reduces the cooldown of Howl spells by -25%.","rankDescriptions":["Reduces the cooldown of Howl spells by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33680","treeId":"coa-bloodmage-53","index":33680,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_bullrush.png","maxRank":1,"name":"Appetite for Blood","description":"Increases the damage dealt by Bloodfang Bite and Claw Sweep by 20% against Humanoids and Beasts.","rankDescriptions":["Increases the damage dealt by Bloodfang Bite and Claw Sweep by 20% against Humanoids and Beasts."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13706","treeId":"coa-bloodmage-53","index":13706,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/spell_deathknight_bloodpresence.png","maxRank":1,"name":"Blood Mark","description":"Increases the Physical damage taken by enemies within 5 yds of you by 3%.","rankDescriptions":["Increases the Physical damage taken by enemies within 5 yds of you by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33706","treeId":"coa-bloodmage-53","index":33706,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/nathriasymbol.png","maxRank":1,"name":"Dark Mark","description":"Reduces the chance to hit for enemies within 5 yds of you by -3%.","rankDescriptions":["Reduces the chance to hit for enemies within 5 yds of you by -3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33717","treeId":"coa-bloodmage-53","index":33717,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_bloodbite_border.png","maxRank":2,"name":"Cursed Strikes","description":"Increases the duration of Rotclaw and Hypovolemic Shock by 100%.","rankDescriptions":["Increases the duration of Rotclaw and Hypovolemic Shock by 50%.","Increases the duration of Rotclaw and Hypovolemic Shock by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9418","treeId":"coa-bloodmage-53","index":9418,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/5_wound_border.png","maxRank":1,"name":"Enraging Wounds","description":"Level 40 Passive Melee critical strikes now leech 96 + 30% Stamina health from the target, scaling with your Stamina.","rankDescriptions":["Level 40 Passive Melee critical strikes now leech 96 + 30% Stamina health from the target, scaling with your Stamina."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-34974","treeId":"coa-bloodmage-53","index":34974,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_shadow_chilltouch.png","maxRank":1,"name":"Grim Omen","description":"Critical strikes with Ravenous Strike or Bloodfang Bite, or using Howl spells, now triggers Call of the Darkwing. Call of the DarkwingCalls 1 to 2 Shadow Bats to appear from the shadows and strike the target for 28 + 40% SP + 20% AP Physical Damage, healing you equal to the damage dealt.","rankDescriptions":["Critical strikes with Ravenous Strike or Bloodfang Bite, or using Howl spells, now triggers Call of the Darkwing. Call of the DarkwingCalls 1 to 2 Shadow Bats to appear from the shadows and strike the target for 28 + 40% SP + 20% AP Physical Damage, healing you equal to the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30224","treeId":"coa-bloodmage-53","index":30224,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_misc_trinket6oih_wolf1.png","maxRank":1,"name":"Eternal Presence","description":"Increases the attack power of party and raid members by 5%. Does not stack with similar effects. In addition, you now gain attack power equal to 15% of the damage taken for 10 seconds. Can only occur once every 10 sec.","rankDescriptions":["Increases the attack power of party and raid members by 5%. Does not stack with similar effects. In addition, you now gain attack power equal to 15% of the damage taken for 10 seconds. Can only occur once every 10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6463","treeId":"coa-bloodmage-53","index":6463,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/spell_shadow_antishadow.png","maxRank":1,"name":"Rejuvenating Shadows","description":"Nearby party and raid members receive 6% more healing. Does not stack with similar effects. In addition, increases the health leeched by Bloodbolt by 50%.","rankDescriptions":["Nearby party and raid members receive 6% more healing. Does not stack with similar effects. In addition, increases the health leeched by Bloodbolt by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30193","treeId":"coa-bloodmage-53","index":30193,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_misc_monsterclaw_06.png","maxRank":1,"name":"Infection","description":"Auto attacking a bleeding target will now infect the wound, increasing their chance to be critically struck from you by 1% for 6 seconds, stacking 10 times.","rankDescriptions":["Auto attacking a bleeding target will now infect the wound, increasing their chance to be critically struck from you by 1% for 6 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33714","treeId":"coa-bloodmage-53","index":33714,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/ability_priest_shadowyapparition.png","maxRank":1,"name":"Screech of the Darkwing","description":"Your effects that trigger Call of the Darkwing now trigger an additional Call of the Darkwing. Can only occur once per sec.","rankDescriptions":["Your effects that trigger Call of the Darkwing now trigger an additional Call of the Darkwing. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30402","treeId":"coa-bloodmage-53","index":30402,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/custom_08_death_border.png","maxRank":1,"name":"Enraging Howls","description":"Casting Howl spells now increases the damage dealt and reduces damage taken by nearby party members by 5% for 10 seconds.","rankDescriptions":["Casting Howl spells now increases the damage dealt and reduces damage taken by nearby party members by 5% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30195","treeId":"coa-bloodmage-53","index":30195,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/spell_druid_malfurionstenacity.png","maxRank":1,"name":"Iron Claws","description":"Allows Rotclaw's periodic effect to stack up 2 additional times for 50% longer duration and cause you to ignore 3% of the target's armor per stack.","rankDescriptions":["Allows Rotclaw's periodic effect to stack up 2 additional times for 50% longer duration and cause you to ignore 3% of the target's armor per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4305","treeId":"coa-bloodmage-53","index":4305,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_crawlinghandpet_red.png","maxRank":1,"name":"Bloodmoon Power","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30190","treeId":"coa-bloodmage-53","index":30190,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/sha_spell_shadow_shadesofdarkness_nightmare.png","maxRank":1,"name":"Eyes In The Night","description":"Allies within 20 yds are protected by Shadow Colony, giving them a 40% chance to trigger a Call of the Darkwing when they take direct damage. Can only occur once every 2 sec. If allies have less health than you when this occurs, generate a large amount of threat against the enemy that triggered it.","rankDescriptions":["Allies within 20 yds are protected by Shadow Colony, giving them a 40% chance to trigger a Call of the Darkwing when they take direct damage. Can only occur once every 2 sec. If allies have less health than you when this occurs, generate a large amount of threat against the enemy that triggered it."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33716","treeId":"coa-bloodmage-53","index":33716,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_icon_shadowcouncilorb_purple.png","maxRank":1,"name":"Shadow Strength","description":"Casting Howl spells now deal 65 + 25% Stamina + 25% Agility + 10% AP Shadow damage to all nearby enemies and triggering Call of the Darkwing now reduces the cooldown of all Howl spells by -1 sec. Can only occur once per sec.","rankDescriptions":["Casting Howl spells now deal 65 + 25% Stamina + 25% Agility + 10% AP Shadow damage to all nearby enemies and triggering Call of the Darkwing now reduces the cooldown of all Howl spells by -1 sec. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31247","treeId":"coa-bloodmage-53","index":31247,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_deathknight_bloodtap.png","maxRank":1,"name":"Bloody Claws","description":"You now generate 20% increased Rage from damage dealt and critical strikes with auto attacks now reduces the cooldown of Animated Blood, Blood Veil, and Blood Pact by 1 sec.","rankDescriptions":["You now generate 20% increased Rage from damage dealt and critical strikes with auto attacks now reduces the cooldown of Animated Blood, Blood Veil, and Blood Pact by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29543","treeId":"coa-bloodmage-87","index":29543,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/nhi_blooddrop_(2)_border.png","maxRank":1,"name":"Scarlet Delirium","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29629","treeId":"coa-bloodmage-87","index":29629,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/nhi_bloodtear_border.png","maxRank":1,"name":"Fleshcraft","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.","rankDescriptions":["Mend blood and bone, healing an ally for 50% of their maximum health and applies Sated. SatedCannot be affected by Fleshcraft for 3 minutes."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31117","treeId":"coa-bloodmage-87","index":31117,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/ability_xavius_darkeningsoul.png","maxRank":1,"name":"Blood Pact","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7288","treeId":"coa-bloodmage-87","index":7288,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/spells/inv_misc_eye_04.png","maxRank":1,"name":"Night Stalker","description":"All damage and healing done is increased by 5% at night.","rankDescriptions":["All damage and healing done is increased by 5% at night."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29871","treeId":"coa-bloodmage-87","index":29871,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/5_run_border.png","maxRank":2,"name":"Alacrity","description":"Increases all primary stats by 8%.","rankDescriptions":["Increases all primary stats by 4%.","Increases all primary stats by 8%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5384","treeId":"coa-bloodmage-87","index":5384,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":2,"icon":"/assets/ui/spells/sha_ability_warrior_bloodnova.png","maxRank":1,"name":"Blood Runs Cold","description":"Your Blood Pact now also increases your healing received by 20%.","rankDescriptions":["Your Blood Pact now also increases your healing received by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34628","treeId":"coa-bloodmage-87","index":34628,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/_sacrificialdagger_blood.png","maxRank":1,"name":"Bloody Sacrifice","description":"Increases your healing received by 15%.","rankDescriptions":["Increases your healing received by 15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8352","treeId":"coa-bloodmage-87","index":8352,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/ability_racial_cannibalize.png","maxRank":2,"name":"Dark Curse","description":"Increases critical strike chance by 6%.","rankDescriptions":["Increases critical strike chance by 3%.","Increases critical strike chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33688","treeId":"coa-bloodmage-87","index":33688,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/ability_ironmaidens_corruptedblood.png","maxRank":1,"name":"Liquify","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6630","treeId":"coa-bloodmage-87","index":6630,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/ability_rogue_bloodyeye.png","maxRank":1,"name":"Blood Rush","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33715","treeId":"coa-bloodmage-87","index":33715,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/ability_warlock_howlofterror.png","maxRank":1,"name":"Shadow Howl","description":"Let loose a dark howl that inspires your allies, granting immunity to movement impairing effects to all allies for 6 seconds.","rankDescriptions":["Let loose a dark howl that inspires your allies, granting immunity to movement impairing effects to all allies for 6 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7661","treeId":"coa-bloodmage-87","index":7661,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/_enslavespell_blood.png","maxRank":1,"name":"Blood Clot","description":"Your Scarlet Delirium now deals 100% increased damage.","rankDescriptions":["Your Scarlet Delirium now deals 100% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11661","treeId":"coa-bloodmage-87","index":11661,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/spell_shadow_abominationexplosion.png","maxRank":1,"name":"Mucking Around","description":"Reduces the cast time of Scarlet Delirium by -1 sec, but increases the health cost by 100%.","rankDescriptions":["Reduces the cast time of Scarlet Delirium by -1 sec, but increases the health cost by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7289","treeId":"coa-bloodmage-87","index":7289,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/nhi_handsofblood_border.png","maxRank":1,"name":"Bloodbender","description":"Increases the effectiveness of Offerings by 20%.","rankDescriptions":["Increases the effectiveness of Offerings by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7287","treeId":"coa-bloodmage-87","index":7287,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/nhi_bloodvision_border.png","maxRank":1,"name":"Hemostasis","description":"Trap an enemy in a blood orb, horrifying them in place for 4 seconds. Reactivating this ability within 4 seconds, instantly pops the Hemostasis, dealing 137 + 43% AP + 103% shadow SP Shadow damage and reducing their healing received by -60% for 10 seconds.","rankDescriptions":["Trap an enemy in a blood orb, horrifying them in place for 4 seconds. Reactivating this ability within 4 seconds, instantly pops the Hemostasis, dealing 137 + 43% AP + 103% shadow SP Shadow damage and reducing their healing received by -60% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30846","treeId":"coa-bloodmage-87","index":30846,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/ability_deathwing_bloodcorruption_death.png","maxRank":1,"name":"Mortal Wounds","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.","rankDescriptions":["Your direct harmful critical strikes with spells and abilities now cause the target to bleed for 306 + 6% AP + 30% SP over 6 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8357","treeId":"coa-bloodmage-87","index":8357,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/5_engineerskill03_border.png","maxRank":1,"name":"Crimson Etchings","description":"Removes the health cost of your Blood Shield and Vital Shield.","rankDescriptions":["Removes the health cost of your Blood Shield and Vital Shield."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12357","treeId":"coa-bloodmage-87","index":12357,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/_stonetablet_stainedblood.png","maxRank":1,"name":"Bloodbound Etchings","description":"Your Blood Shield now increases your health regeneration by an additional 50%.","rankDescriptions":["Your Blood Shield now increases your health regeneration by an additional 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30334","treeId":"coa-bloodmage-87","index":30334,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/ability_rogue_sanguinaryvein.png","maxRank":1,"name":"Veins of Vengeance","description":"Increases your chance to resist curse effects by 15%.","rankDescriptions":["Increases your chance to resist curse effects by 15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6629","treeId":"coa-bloodmage-87","index":6629,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/nhi_shadowtouch_border.png","maxRank":1,"name":"Dark Mending","description":"Reduces the cast time of Sanguine Mend by -0.5 sec.","rankDescriptions":["Reduces the cast time of Sanguine Mend by -0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34965","treeId":"coa-bloodmage-87","index":34965,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/trade_archaeology_bloodysatyrscepter.png","maxRank":1,"name":"Saturating Sutures","description":"Your periodic damage and healing has a 15% chance to reduce the cost your next Sanguine Mend by -100% for 8 seconds.","rankDescriptions":["Your periodic damage and healing has a 15% chance to reduce the cost your next Sanguine Mend by -100% for 8 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29484","treeId":"coa-bloodmage-87","index":29484,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/ability_deathwing_bloodcorruption_earth.png","maxRank":1,"name":"Blood Moon","description":"Your Animated Blood now spawns an additional amalgam.","rankDescriptions":["Your Animated Blood now spawns an additional amalgam."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7285","treeId":"coa-bloodmage-87","index":7285,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/spell_yorsahj_bloodboil_orangeoil.png","maxRank":1,"name":"Infected Blood","description":"Periodic damage dealt now reduces the enemy's movement speed by -30%.","rankDescriptions":["Periodic damage dealt now reduces the enemy's movement speed by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34969","treeId":"coa-bloodmage-87","index":34969,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/nhi_blood_drain_border.png","maxRank":1,"name":"Blood Veil","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5907","treeId":"coa-bloodmage-87","index":5907,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_mount_epicbatmount.png","maxRank":1,"name":"Easy Prey","description":"Increases the duration of Hemostasis by 1 sec.","rankDescriptions":["Increases the duration of Hemostasis by 1 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29173","treeId":"coa-bloodmage-87","index":29173,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/custom_t_bloodmaw_border.png","maxRank":1,"name":"Wicked Howl","description":"Let loose a wicked howl, increasing your maximum health by 30% for 20 seconds.","rankDescriptions":["Let loose a wicked howl, increasing your maximum health by 30% for 20 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7283","treeId":"coa-bloodmage-87","index":7283,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/warlock_bloodstone.png","maxRank":1,"name":"Vampiric Pools","description":"When Liquify ends, you now leech 474 + 100% SP health from nearby enemies.","rankDescriptions":["When Liquify ends, you now leech 474 + 100% SP health from nearby enemies."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29876","treeId":"coa-bloodmage-87","index":29876,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/sha_ability_rogue_bloodyeye_nightmare.png","maxRank":1,"name":"Bloodmoon Power","description":"Your Liquify now cleanses all negative effects when used.","rankDescriptions":["Your Liquify now cleanses all negative effects when used."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33737","treeId":"coa-bloodmage-87","index":33737,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_nature_reincarnation.png","maxRank":1,"name":"Adrenaline","description":"Reduces the duration of bleed, root, and movement slowing effects against you by -25%.","rankDescriptions":["Reduces the duration of bleed, root, and movement slowing effects against you by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9970","treeId":"coa-bloodmage-87","index":9970,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/ability_rogue_garrote.png","maxRank":1,"name":"Life Scent","description":"Increases your stealth detection significantly.","rankDescriptions":["Increases your stealth detection significantly."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5354","treeId":"coa-bloodmage-87","index":5354,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/spell_deathknight_bloodpresence.png","maxRank":1,"name":"Visceral Magic","description":"Adds 40% to the Armor contribution from items by Blood Shield.","rankDescriptions":["Adds 40% to the Armor contribution from items by Blood Shield."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7354","treeId":"coa-bloodmage-87","index":7354,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/inv_maldraxxusslime_red.png","maxRank":1,"name":"Coagulation","description":"Your Blood Shield now also dispels 1 bleed effect from you every 5 sec.","rankDescriptions":["Your Blood Shield now also dispels 1 bleed effect from you every 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34963","treeId":"coa-bloodmage-87","index":34963,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/novart_physical_ability_(14)_border.png","maxRank":1,"name":"Crimson Curse","description":"Your direct damage critical strikes increase the damage the target takes from bleed effects by 30% for 15 seconds.","rankDescriptions":["Your direct damage critical strikes increase the damage the target takes from bleed effects by 30% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4969","treeId":"coa-bloodmage-87","index":4969,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/inv_boot_cloth_raidwarlock_r_01.png","maxRank":1,"name":"Bloodleaper","description":"Reduces the cooldown of your Lunge by -10 sec.","rankDescriptions":["Reduces the cooldown of your Lunge by -10 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8191","treeId":"coa-bloodmage-87","index":8191,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_misc_food_legion_heartyfeast.png","maxRank":1,"name":"Everhungry","description":"Direct critical strikes now increase your haste by 10% for 5 seconds.","rankDescriptions":["Direct critical strikes now increase your haste by 10% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34964","treeId":"coa-bloodmage-87","index":34964,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_shadow_summonfelhunter.png","maxRank":1,"name":"Predator","description":"Your Sanguine Mend now heals 1 additional nearby target. Increases the critical damage of Claw Sweep and Sanguine Rupture by 10%.","rankDescriptions":["Your Sanguine Mend now heals 1 additional nearby target. Increases the critical damage of Claw Sweep and Sanguine Rupture by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31215","treeId":"coa-bloodmage-87","index":31215,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/uico_blood_spell_07_border.png","maxRank":1,"name":"Blood Trails","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34966","treeId":"coa-bloodmage-87","index":34966,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/nhi_bloodboil_border.png","maxRank":1,"name":"Transfusion","description":"Swap health percentages with an ally. Increases the lower health percentage of the two to 40%, if below that amount.","rankDescriptions":["Swap health percentages with an ally. Increases the lower health percentage of the two to 40%, if below that amount."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29370","treeId":"coa-bloodmage-87","index":29370,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/_deathcoilv2_blood.png","maxRank":1,"name":"Nightmare","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8215","treeId":"coa-bloodmage-87","index":8215,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/nhi_bloodsacrifice_border.png","maxRank":1,"name":"Blood Bond","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7750","treeId":"coa-bloodmage-93","index":7750,"prerequisiteId":"coa-entry-29629","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29629","requiredRank":1},{"talentId":"coa-entry-9905","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/spell_animarevendreth_orb.png","maxRank":1,"name":"Sanguine Essence","description":"Transforms your Blood Curse into Sanguine Essence.Sanguine Essence (Cursed Form)Enter a unique Cursed Form that does not disable Mortal Form abilties, coalescing a blood orb that will float beside you. While active, you replicate 20% of healing or damage done by Sanguine Mend and Bloodmoon Blast on the target every 1 sec for 3 seconds.","rankDescriptions":["Transforms your Blood Curse into Sanguine Essence.Sanguine Essence (Cursed Form)Enter a unique Cursed Form that does not disable Mortal Form abilties, coalescing a blood orb that will float beside you. While active, you replicate 20% of healing or damage done by Sanguine Mend and Bloodmoon Blast on the target every 1 sec for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9905","treeId":"coa-bloodmage-93","index":9905,"prerequisiteId":"coa-entry-29629","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29629","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_misc_food_legion_gooamber_pool.png","maxRank":1,"name":"Pooled Vitality","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7681","treeId":"coa-bloodmage-93","index":7681,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/spell_shadow_felmending.png","maxRank":1,"name":"Consolidation","description":"Increases your haste by 5%.","rankDescriptions":["Increases your haste by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7435","treeId":"coa-bloodmage-93","index":7435,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/spell_holy_silence.png","maxRank":1,"name":"Raging Hunger","description":"Triggering Pooled Vitality now also generates 3 Rage.","rankDescriptions":["Triggering Pooled Vitality now also generates 3 Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7677","treeId":"coa-bloodmage-93","index":7677,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/sanctum_features_animadiversion_revendreth.png","maxRank":1,"name":"Dark Liturgy","description":"Requires Mortal Form Form a blood bond, healing a friendly target for 77 + 35% SP + 25% Spirit and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck.Blood RitualsCauses Bloodmoon Blast to heal marked allies for 178 + 7% healing + 8.5% Stamina.","rankDescriptions":["Requires Mortal Form Form a blood bond, healing a friendly target for 77 + 35% SP + 25% Spirit and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck.Blood RitualsCauses Bloodmoon Blast to heal marked allies for 178 + 7% healing + 8.5% Stamina."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7443","treeId":"coa-bloodmage-93","index":7443,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/lanathel2.png","maxRank":2,"name":"Gift of Lana'thel","description":"Become blessed by Lana'thel, increasing your spell power by 50% of your Spirit and your hit rating by 8% of your Spirit.","rankDescriptions":["Become blessed by Lana'thel, increasing your spell power by 25% of your Spirit and your hit rating by 4% of your Spirit.","Become blessed by Lana'thel, increasing your spell power by 50% of your Spirit and your hit rating by 8% of your Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7447","treeId":"coa-bloodmage-93","index":7447,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/nhi_kiss_border.png","maxRank":1,"name":"Vampyr's Kiss","description":"Curse an enemy, causing them to bleed for 174 Shadow damage over 30 seconds. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","rankDescriptions":["Curse an enemy, causing them to bleed for 174 Shadow damage over 30 seconds. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11206","treeId":"coa-bloodmage-93","index":11206,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_rottenflesh_border.png","maxRank":1,"name":"Fleshbending","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":false},{"id":"coa-entry-11237","treeId":"coa-bloodmage-93","index":11237,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/ability_butcher_exsanguination.png","maxRank":1,"name":"Invigorated Flesh","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.","rankDescriptions":["Increases chance to hit with all spells and attacks by 1% for you and party and raid members. Does not stack with similar effects."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":false},{"id":"coa-entry-7694","treeId":"coa-bloodmage-93","index":7694,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/spell_shadow_demonicfortitude.png","maxRank":2,"name":"Dark Blood","description":"Reduces the cost of your abilities that require Cursed Form and increases the healing done by Blood Rituals by -50%.","rankDescriptions":["Reduces the cost of your abilities that require Cursed Form and increases the healing done by Blood Rituals by -25%.","Reduces the cost of your abilities that require Cursed Form and increases the healing done by Blood Rituals by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7440","treeId":"coa-bloodmage-93","index":7440,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_shadow_soulgem.png","maxRank":1,"name":"Organ Orbs","description":"Each stack of Pooled Vitality now increases your Spirit by 3%.","rankDescriptions":["Each stack of Pooled Vitality now increases your Spirit by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7668","treeId":"coa-bloodmage-93","index":7668,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_misc_greateressence.png","maxRank":1,"name":"Lingering Essence","description":"Periodic damage and healing done now has a 50% chance to reduce the cooldown of Vampyr's Kiss by -1 sec.","rankDescriptions":["Periodic damage and healing done now has a 50% chance to reduce the cooldown of Vampyr's Kiss by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7438","treeId":"coa-bloodmage-93","index":7438,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/ability_deathwing_bloodcorruption_earth.png","maxRank":1,"name":"Dark Essence","description":"Casting Cursed Form abilities or Bloodbolt will now heal allies affected by Blood Rituals for 114 + 10% healing every 1 sec for 3 seconds.","rankDescriptions":["Casting Cursed Form abilities or Bloodbolt will now heal allies affected by Blood Rituals for 114 + 10% healing every 1 sec for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7433","treeId":"coa-bloodmage-93","index":7433,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/nhi_shadowraise_border.png","maxRank":1,"name":"Infuse","description":"Accumulates 10% of all damage dealt to the target and unleashes it after 10 seconds, dealing Shadow damage and absorbing healing done to the target equal to the damage done for 10 seconds.","rankDescriptions":["Accumulates 10% of all damage dealt to the target and unleashes it after 10 seconds, dealing Shadow damage and absorbing healing done to the target equal to the damage done for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4355","treeId":"coa-bloodmage-93","index":4355,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/custom_t_bloodfog_border.png","maxRank":1,"name":"Gruesome Rituals","description":"Your damage dealt is now increased by 1% for each stack of Pooled Vitality.","rankDescriptions":["Your damage dealt is now increased by 1% for each stack of Pooled Vitality."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7450","treeId":"coa-bloodmage-93","index":7450,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/nhi_blood_slash_border.png","maxRank":1,"name":"Crimson Tide","description":"Requires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for 165 + 140% SP Shadow damage over 15 seconds. Empowered: Radius increased by 5 yds and costs -100% less Rage.","rankDescriptions":["Requires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for 165 + 140% SP Shadow damage over 15 seconds. Empowered: Radius increased by 5 yds and costs -100% less Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7449","treeId":"coa-bloodmage-93","index":7449,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/spell_misc_hearty_04.png","maxRank":1,"name":"Black Heart","description":"Your Vampyr's Kiss now regenerates 20% of your maximum Rage.","rankDescriptions":["Your Vampyr's Kiss now regenerates 20% of your maximum Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9906","treeId":"coa-bloodmage-93","index":9906,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/5_assassinskill09_border.png","maxRank":1,"name":"Blood-Cursed Weapons","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-12906","treeId":"coa-bloodmage-93","index":12906,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/spell_shadow_curseoftounges.png","maxRank":1,"name":"Blood-Cursed Armor","description":"You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects.","rankDescriptions":["You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-7445","treeId":"coa-bloodmage-93","index":7445,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/nhi_blood_blade_border.png","maxRank":1,"name":"Hemal Excision","description":"Cut into an ally's vital essence, siphoning all curse effects from them. You may reactivate this ability again within 10 seconds to place these curse effects on an enemy.","rankDescriptions":["Cut into an ally's vital essence, siphoning all curse effects from them. You may reactivate this ability again within 10 seconds to place these curse effects on an enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7751","treeId":"coa-bloodmage-93","index":7751,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_animusdraw.png","maxRank":1,"name":"Universal Donor","description":"Casting Infuse or Vampyr's Kiss now increases the healing received by all allies by 6% for 10 seconds.","rankDescriptions":["Casting Infuse or Vampyr's Kiss now increases the healing received by all allies by 6% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11251","treeId":"coa-bloodmage-93","index":11251,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/_shamantotam_blood.png","maxRank":1,"name":"Acquired Taste","description":"Casting Infuse or Vampyr's Kiss now generates 2 additional stacks of Pooled Vitality.","rankDescriptions":["Casting Infuse or Vampyr's Kiss now generates 2 additional stacks of Pooled Vitality."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7436","treeId":"coa-bloodmage-93","index":7436,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_animusorbs.png","maxRank":1,"name":"Aortic Aegis","description":"Your Blood Veil now applies to the party members of the target.","rankDescriptions":["Your Blood Veil now applies to the party members of the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7437","treeId":"coa-bloodmage-93","index":7437,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/_seed_grainedecorruption.png","maxRank":1,"name":"Sovereignty","description":"Damage dealt by Crimson Tide now grants you Sovereignty.SovereigntyReduces the cost of your next Bloodbolt within 12 seconds by -10% and causes it to strike 1 additional nearby enemy for each target damaged, stacking up to 5 times.","rankDescriptions":["Damage dealt by Crimson Tide now grants you Sovereignty.SovereigntyReduces the cost of your next Bloodbolt within 12 seconds by -10% and causes it to strike 1 additional nearby enemy for each target damaged, stacking up to 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7669","treeId":"coa-bloodmage-93","index":7669,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/_enslavespell_blood.png","maxRank":1,"name":"Arterial Bind","description":"Place a pool of blood on the ground, instantly silencing all enemies for 4 seconds and healing allies for 203 + 33% healing every 1 sec for 4 seconds.","rankDescriptions":["Place a pool of blood on the ground, instantly silencing all enemies for 4 seconds and healing allies for 203 + 33% healing every 1 sec for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7448","treeId":"coa-bloodmage-93","index":7448,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_artifact_corruptedbloodofzakajz.png","maxRank":2,"name":"Dissipation","description":"Reduces the cooldown of Fleshcraft and the duration of the Sated debuff by -120 sec.","rankDescriptions":["Reduces the cooldown of Fleshcraft and the duration of the Sated debuff by -60 sec.","Reduces the cooldown of Fleshcraft and the duration of the Sated debuff by -120 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7752","treeId":"coa-bloodmage-93","index":7752,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/spell_shadow_lifedrain.png","maxRank":1,"name":"Heart Rupturer","description":"Increases the damage of Claw Sweep, Sanguine Rupture, Ravenous Strike and Bloodmoon Blast by 20%.","rankDescriptions":["Increases the damage of Claw Sweep, Sanguine Rupture, Ravenous Strike and Bloodmoon Blast by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7880","treeId":"coa-bloodmage-93","index":7880,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/nhi_bloodsacrifice_border.png","maxRank":1,"name":"Vitality For Later","description":"Consuming Pooled Vitality now heals up to 10 allies within 30 yds for 176 + 25% SP + 50% Spirit, scaling with Spirit and healing power.","rankDescriptions":["Consuming Pooled Vitality now heals up to 10 allies within 30 yds for 176 + 25% SP + 50% Spirit, scaling with Spirit and healing power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13435","treeId":"coa-bloodmage-93","index":13435,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/inv_misc_boilingblood.png","maxRank":1,"name":"Waves of Blood","description":"Each tick of Crimson Tide now has a 10% chance to heal a nearby ally for 25% of the damage dealt.","rankDescriptions":["Each tick of Crimson Tide now has a 10% chance to heal a nearby ally for 25% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7680","treeId":"coa-bloodmage-93","index":7680,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/ability_rogue_bloodyeye.png","maxRank":1,"name":"Spice of Life","description":"Your periodic damage and healing now has a 10% chance to grant a stack of Pooled Vitality.","rankDescriptions":["Your periodic damage and healing now has a 10% chance to grant a stack of Pooled Vitality."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4906","treeId":"coa-bloodmage-93","index":4906,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/5_assassinskill37_border.png","maxRank":1,"name":"Cursed Blood","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-11906","treeId":"coa-bloodmage-93","index":11906,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/nhi_blooddrop_border.png","maxRank":1,"name":"Heartbreak","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-7434","treeId":"coa-bloodmage-93","index":7434,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_druid_massentanglement_nightmare.png","maxRank":1,"name":"Blood Redistribution","description":"Increases the maximum health restored by Fleshcraft by 25%.","rankDescriptions":["Increases the maximum health restored by Fleshcraft by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5444","treeId":"coa-bloodmage-93","index":5444,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/5_assassinskill37_border.png","maxRank":1,"name":"Sanguine Scion","description":"Increases the critical strike chance of Sanguine Mend and Bloodbolt by 10%.","rankDescriptions":["Increases the critical strike chance of Sanguine Mend and Bloodbolt by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7444","treeId":"coa-bloodmage-93","index":7444,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_animarevendreth_buff.png","maxRank":1,"name":"Crimson Scion","description":"Direct damage dealt now has a 10% chance to make your next Sanguine Mend within 10 seconds instant cast.","rankDescriptions":["Direct damage dealt now has a 10% chance to make your next Sanguine Mend within 10 seconds instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30401","treeId":"coa-bloodmage-93","index":30401,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/sha_inv_misc_slime_01_nightmare.png","maxRank":1,"name":"Excess Blood","description":"Your healing done now has a 10% chance to heal the target for an additional 240 + 3% healing over 6 seconds.","rankDescriptions":["Your healing done now has a 10% chance to heal the target for an additional 240 + 3% healing over 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7439","treeId":"coa-bloodmage-93","index":7439,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/achievement_raid_hall_of_flesh.png","maxRank":1,"name":"Flesh Foundry","description":"Your critical strikes now reduce the cooldown of Fleshcraft and the duration of Sated on the target by -4 sec. In addition, increases your critical strike rating by 15% of your Spirit.","rankDescriptions":["Your critical strikes now reduce the cooldown of Fleshcraft and the duration of Sated on the target by -4 sec. In addition, increases your critical strike rating by 15% of your Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7691","treeId":"coa-bloodmage-93","index":7691,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/sha_ability_rogue_sturdyrecuperate_nightmare.png","maxRank":1,"name":"Gorge","description":"Instantly gain 10 stacks of Pooled Vitality every 5 sec for 15 seconds.","rankDescriptions":["Instantly gain 10 stacks of Pooled Vitality every 5 sec for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7754","treeId":"coa-bloodmage-93","index":7754,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_venthyr_doorofshadows.png","maxRank":1,"name":"Darkfallen Lament","description":"Chant a sinister ritual, healing up to 12 allies affected by Blood Rituals for 648 + 80% healing over 8 seconds and leeching 684 + 800% healing health from enemies within 10 yds over 8 seconds. While active, you are immune to silence and interrupt effects, but cannot move.","rankDescriptions":["Chant a sinister ritual, healing up to 12 allies affected by Blood Rituals for 648 + 80% healing over 8 seconds and leeching 684 + 800% healing health from enemies within 10 yds over 8 seconds. While active, you are immune to silence and interrupt effects, but cannot move."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4916","treeId":"coa-bloodmage-93","index":4916,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/ability_revendreth_priest.png","maxRank":1,"name":"Red Thirst","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-11916","treeId":"coa-bloodmage-93","index":11916,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_animarevendreth_nova.png","maxRank":1,"name":"Purify Blood","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-30400","treeId":"coa-bloodmage-93","index":30400,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/custom_t_bloodeye_border.png","maxRank":1,"name":"Hemoglobe","description":"Coalesce a powerful sanguine orb above you, healing up to 12 allies within 20 yds for 4247 + 84.38% healing + 337.5% Spirit + 262.5% Stamina over 15 seconds. Generates 2 stacks of Pooled Vitality, and 150 Rage every 2 sec.","rankDescriptions":["Coalesce a powerful sanguine orb above you, healing up to 12 allies within 20 yds for 4247 + 84.38% healing + 337.5% Spirit + 262.5% Stamina over 15 seconds. Generates 2 stacks of Pooled Vitality, and 150 Rage every 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7679","treeId":"coa-bloodmage-93","index":7679,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/spell_holy_sealofsacrifice.png","maxRank":1,"name":"Adrenaline Boost","description":"Increases the critical strike chance of abilities that require Cursed Form on enemies above 75% or below 35% health by 20%. In addition, melee critical strikes now have a 50% chance to make your next Dark Liturgy or Bloodmoon Blast instant cast.","rankDescriptions":["Increases the critical strike chance of abilities that require Cursed Form on enemies above 75% or below 35% health by 20%. In addition, melee critical strikes now have a 50% chance to make your next Dark Liturgy or Bloodmoon Blast instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7695","treeId":"coa-bloodmage-93","index":7695,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/ability_skeer_bloodletting.png","maxRank":1,"name":"Bloodcraft","description":"Your damage dealt by Darkfallen Lament now applies Bloodcraft to affected enemies, reducing damage dealt by -2% for 5 seconds, stacking 4 times.","rankDescriptions":["Your damage dealt by Darkfallen Lament now applies Bloodcraft to affected enemies, reducing damage dealt by -2% for 5 seconds, stacking 4 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/chronomancer.json b/src/game/generated/talentUi/chronomancer.json new file mode 100644 index 00000000..2989cb07 --- /dev/null +++ b/src/game/generated/talentUi/chronomancer.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"chronomancer","trees":[{"id":"coa-chronomancer-56","classId":"chronomancer","name":"Infinite","icon":"/assets/ui/spells/spell_animamaw_beam.png","background":"","description":"Infinite nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-chronomancer-57","classId":"chronomancer","name":"Artificer","icon":"/assets/ui/spells/shatterecho.png","background":"","description":"Artificer nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-chronomancer-87","classId":"chronomancer","name":"Class","icon":"/assets/ui/spells/spell_holy_healingfocus.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-chronomancer-58","classId":"chronomancer","name":"Time","icon":"/assets/ui/spells/inv_staff_2h_nazmirraid_d_01.png","background":"","description":"Time nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-3997","treeId":"coa-chronomancer-56","index":3997,"prerequisiteId":"coa-entry-4031","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4031","requiredRank":1},{"talentId":"coa-entry-30249","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/spell_animamaw_beam.png","maxRank":1,"name":"Timerend","description":"Transforms your Wand of Time into Timerend.TimerendRend the fabric of time, dealing 36 Chromatic Damage over 6 seconds.","rankDescriptions":["Transforms your Wand of Time into Timerend.TimerendRend the fabric of time, dealing 36 Chromatic Damage over 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4031","treeId":"coa-chronomancer-56","index":4031,"prerequisiteId":"coa-entry-30249","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30249","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/achievement_boss_infinitecorruptor.png","maxRank":1,"name":"Infinite Power","description":"Level 10 Passive Casting damaging spells now reduces your damaging spell cooldowns by 10% of their remaining cooldown.","rankDescriptions":["Level 10 Passive Casting damaging spells now reduces your damaging spell cooldowns by 10% of their remaining cooldown."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7200","treeId":"coa-chronomancer-56","index":7200,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/nhi_timewarp_border.png","maxRank":1,"name":"Melt Reality","description":"Melt the target's reality, dealing 1638 Chromatic Damage over 36 seconds. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","rankDescriptions":["Melt the target's reality, dealing 1638 Chromatic Damage over 36 seconds. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6156","treeId":"coa-chronomancer-56","index":6156,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_ingot_titansteel_dark.png","maxRank":2,"name":"Anomaly Spikes","description":"Periodic damage dealt now has a 15% chance to launch an Anomaly Spike at your target. Anomaly SpikeDeals cond(gt(SPA, SPS), 161*1+SPA*0.25, 161*1+SPS*0.25) Chromatic Damage.","rankDescriptions":["Periodic damage dealt now has a 8% chance to launch an Anomaly Spike at your target. Anomaly SpikeDeals cond(gt(SPA, SPS), 161*1+SPA*0.25, 161*1+SPS*0.25) Chromatic Damage.","Periodic damage dealt now has a 15% chance to launch an Anomaly Spike at your target. Anomaly SpikeDeals cond(gt(SPA, SPS), 161*1+SPA*0.25, 161*1+SPS*0.25) Chromatic Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31139","treeId":"coa-chronomancer-56","index":31139,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/spell_shadow_brainwash.png","maxRank":1,"name":"Mind Melt","description":"Damage dealt by Melt Reality now also reduces the target's primary attributes by -3% for 15 sec, stacking 5 times.","rankDescriptions":["Damage dealt by Melt Reality now also reduces the target's primary attributes by -3% for 15 sec, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9185","treeId":"coa-chronomancer-56","index":9185,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_shadow_skull.png","maxRank":1,"name":"Gift of the Infinite Dragonflight","description":"Level 20 Passive Increases your spell damage by 40% of your Spirit and your spell hit rating by 3% of your Spirit.","rankDescriptions":["Level 20 Passive Increases your spell damage by 40% of your Spirit and your spell hit rating by 3% of your Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7201","treeId":"coa-chronomancer-56","index":7201,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/inv_enchanting_wod_crystalshard2.png","maxRank":1,"name":"Chromatic Shard","description":"Fling a shard of chaos at an enemy, dealing 270 + 200% SP Chromatic Damage, piercing immunities and resistances. Dealing damage with Anomaly Spikes reduces the cast time of this ability by -10% for 30 seconds, stacking 10 times.","rankDescriptions":["Fling a shard of chaos at an enemy, dealing 270 + 200% SP Chromatic Damage, piercing immunities and resistances. Dealing damage with Anomaly Spikes reduces the cast time of this ability by -10% for 30 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29680","treeId":"coa-chronomancer-56","index":29680,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/inv_chest_armor_voidelf_d_01.png","maxRank":2,"name":"Deconstruction","description":"Increases the critical strike chance of Unmake by 10%.","rankDescriptions":["Increases the critical strike chance of Unmake by 5%.","Increases the critical strike chance of Unmake by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7216","treeId":"coa-chronomancer-56","index":7216,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/inv_jewelcrafting_shadowsongamethyst_02.png","maxRank":2,"name":"Warpstriker","description":"Reduces the cost of your spells by -10% and the chance for your spells to be dispelled by 20%.","rankDescriptions":["Reduces the cost of your spells by -5% and the chance for your spells to be dispelled by 10%.","Reduces the cost of your spells by -10% and the chance for your spells to be dispelled by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30776","treeId":"coa-chronomancer-56","index":30776,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/custom_62_light_border.png","maxRank":1,"name":"Chronological","description":"Every 20 sec, your next Discordance within 10 seconds is instant cast.","rankDescriptions":["Every 20 sec, your next Discordance within 10 seconds is instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31336","treeId":"coa-chronomancer-56","index":31336,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/spell_shadow_chilltouch.png","maxRank":1,"name":"Unearthed Power","description":"Damage dealt by Anomaly Spikes now also increases your damage and critical strike chance with Chromatic Shard by 6% per stack.","rankDescriptions":["Damage dealt by Anomaly Spikes now also increases your damage and critical strike chance with Chromatic Shard by 6% per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1802","treeId":"coa-chronomancer-56","index":1802,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/spell_animamaw_groundstate.png","maxRank":1,"name":"Time Means Nothing","description":"Increases your magic damage dealt by 3% and damage dealt by Chromatic Shard now increases the target's spell damage taken by 10% for 30 seconds.","rankDescriptions":["Increases your magic damage dealt by 3% and damage dealt by Chromatic Shard now increases the target's spell damage taken by 10% for 30 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6200","treeId":"coa-chronomancer-56","index":6200,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_relics_hourglass.png","maxRank":1,"name":"Hourglass of Eternity","description":"Periodic damage dealt now has a 5% chance to grant you 25% increased haste for 5 seconds.","rankDescriptions":["Periodic damage dealt now has a 5% chance to grant you 25% increased haste for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11175","treeId":"coa-chronomancer-56","index":11175,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/ability_hunter_pet_warpstalker.png","maxRank":1,"name":"Excruciating Discord","description":"Your Discordances used with Chronological are now guaranteed to critically strike.","rankDescriptions":["Your Discordances used with Chronological are now guaranteed to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12184","treeId":"coa-chronomancer-56","index":12184,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/inv_motorcyclefelreavermount_shadow.png","maxRank":1,"name":"Timelost Power","description":"Your Discordance now strikes 3 additional enemies.","rankDescriptions":["Your Discordance now strikes 3 additional enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11685","treeId":"coa-chronomancer-56","index":11685,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_archaeology_70_highborne_violetglassvessel.png","maxRank":1,"name":"Warping Reality","description":"Level 30 Passive Casting Waves of Time now grants you Warped Reality for 10 seconds. Warped Reality (Proc)Allows you to cast Unmake and Melt Reality while moving for 10 seconds.","rankDescriptions":["Level 30 Passive Casting Waves of Time now grants you Warped Reality for 10 seconds. Warped Reality (Proc)Allows you to cast Unmake and Melt Reality while moving for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-5168","treeId":"coa-chronomancer-56","index":5168,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/inv_belt_armor_voidelf_d_01.png","maxRank":1,"name":"Incarnation of Chaos","description":"Transform into an Incarnate of Chaos, instantly resetting the cooldown of Chromatic Shard and causing your next cast to not incur a cooldown. In addition, your damage dealt is increased by 15% for 15 seconds.","rankDescriptions":["Transform into an Incarnate of Chaos, instantly resetting the cooldown of Chromatic Shard and causing your next cast to not incur a cooldown. In addition, your damage dealt is increased by 15% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29677","treeId":"coa-chronomancer-56","index":29677,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_shadow_auraofdarkness.png","maxRank":1,"name":"Infinity Crash","description":"Increases the critical damage of Discordance and Chromatic Shard by 50%.","rankDescriptions":["Increases the critical damage of Discordance and Chromatic Shard by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6522","treeId":"coa-chronomancer-56","index":6522,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/spell_nzinsanity_desynchronized.png","maxRank":1,"name":"Destabilize Time","description":"Reduces enemy casting speed by -10% for 20 seconds, increasing by -10% every time they cast. Gaining stacks does not extend the duration of the spell.","rankDescriptions":["Reduces enemy casting speed by -10% for 20 seconds, increasing by -10% every time they cast. Gaining stacks does not extend the duration of the spell."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5367","treeId":"coa-chronomancer-56","index":5367,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/spell_shadow_mindtwisting.png","maxRank":1,"name":"Black Hole","description":"Increases the damage of Chromatic Shard, Melt Reality and Unmake by 15% against slowed enemies.","rankDescriptions":["Increases the damage of Chromatic Shard, Melt Reality and Unmake by 15% against slowed enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11170","treeId":"coa-chronomancer-56","index":11170,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/nhi_shadowsun_border.png","maxRank":1,"name":"Chaos Fusion","description":"While Incarnation of Chaos is active, you may now cast Chromatic Shard while moving, but the duration of Incarnation of Chaos is reduced by -3 sec.","rankDescriptions":["While Incarnation of Chaos is active, you may now cast Chromatic Shard while moving, but the duration of Incarnation of Chaos is reduced by -3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11176","treeId":"coa-chronomancer-56","index":11176,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_shadow_unstableaffliction_1.png","maxRank":1,"name":"Pure Chaos","description":"While Incarnation of Chaos is active, all damage dealt now has a 10% chance to lock yourself in a time loop for 3 seconds, making you unable to cast any spells other than Chromatic Shard. While active, you cast Chromatic Shard free of cost, repeating every 1 sec.","rankDescriptions":["While Incarnation of Chaos is active, all damage dealt now has a 10% chance to lock yourself in a time loop for 3 seconds, making you unable to cast any spells other than Chromatic Shard. While active, you cast Chromatic Shard free of cost, repeating every 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7159","treeId":"coa-chronomancer-56","index":7159,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/spell_shadow_shadowmend.png","maxRank":1,"name":"Paradox","description":"Casting Melt Reality now causes your next Unmake or Reverse Wound within 6 seconds to become instant and cost -100% less mana.","rankDescriptions":["Casting Melt Reality now causes your next Unmake or Reverse Wound within 6 seconds to become instant and cost -100% less mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7209","treeId":"coa-chronomancer-56","index":7209,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_priest_void_blast.png","maxRank":1,"name":"Slipstream","description":"Target an enemy and slip them into a pocket dimension for 5 seconds, banishing them and making them immune to damage. Activate this ability again before the duration expires to choose a new location to place that enemy within 20 yds.","rankDescriptions":["Target an enemy and slip them into a pocket dimension for 5 seconds, banishing them and making them immune to damage. Activate this ability again before the duration expires to choose a new location to place that enemy within 20 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6514","treeId":"coa-chronomancer-56","index":6514,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/spell_holy_persecution.png","maxRank":1,"name":"Gift of the Timeways","description":"Casting Melt Reality now causes your Timerend and Unmake's periodic damage to benefit from haste for 10 seconds.","rankDescriptions":["Casting Melt Reality now causes your Timerend and Unmake's periodic damage to benefit from haste for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4161","treeId":"coa-chronomancer-56","index":4161,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_infinitedragonmount.png","maxRank":1,"name":"End of Time","description":"At the end of the duration of Clasp of Infinity, you launch an Anomaly Spike at affected enemies and their damage dealt is reduced by -10% for 4 seconds.Anomaly SpikeDeals cond(gt(SPA, SPS), 161*1+SPA*0.25, 161*1+SPS*0.25) Chromatic Damage.","rankDescriptions":["At the end of the duration of Clasp of Infinity, you launch an Anomaly Spike at affected enemies and their damage dealt is reduced by -10% for 4 seconds.Anomaly SpikeDeals cond(gt(SPA, SPS), 161*1+SPA*0.25, 161*1+SPS*0.25) Chromatic Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6161","treeId":"coa-chronomancer-56","index":6161,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_enchant_dreamshard_01.png","maxRank":1,"name":"Eternity","description":"Your Clasp of Infinity now increases your damage dealt to the target by 15%.","rankDescriptions":["Your Clasp of Infinity now increases your damage dealt to the target by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6164","treeId":"coa-chronomancer-56","index":6164,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/spell_shadow_shadowpower.png","maxRank":1,"name":"Distorted Time","description":"Reduces the cooldown of Timerend by -2 sec and increases the duration of Decomposition by 3 sec.","rankDescriptions":["Reduces the cooldown of Timerend by -2 sec and increases the duration of Decomposition by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9186","treeId":"coa-chronomancer-56","index":9186,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_infinitedragonmount.png","maxRank":1,"name":"Infinite Guard","description":"Level 40 Passive Increases the effectiveness of your Temporal Resilience, Temporal Swiftness, and Temporal Restoration spells by 100% and reduces their mana costs by -50%.","rankDescriptions":["Level 40 Passive Increases the effectiveness of your Temporal Resilience, Temporal Swiftness, and Temporal Restoration spells by 100% and reduces their mana costs by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-6159","treeId":"coa-chronomancer-56","index":6159,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_jewelcrafting_shadowspirit_02.png","maxRank":1,"name":"Shifting Chaos","description":"Your Chromatic Shard and Anomaly Spikes now deal an additional 20% their damage dealt as Chromatic Damage all nearby enemies.","rankDescriptions":["Your Chromatic Shard and Anomaly Spikes now deal an additional 20% their damage dealt as Chromatic Damage all nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31334","treeId":"coa-chronomancer-56","index":31334,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_helm_crown_c_01_purple white.png","maxRank":1,"name":"Crown of Power","description":"Increases the tick rate of Melt Reality by -25%.","rankDescriptions":["Increases the tick rate of Melt Reality by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6158","treeId":"coa-chronomancer-56","index":6158,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/achievement_boss_triumvirate_shadowguardetherealmelee.png","maxRank":1,"name":"Infinite Horizon","description":"Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, your Unmake and Timerend gain an additional 20% bonus spell scaling.","rankDescriptions":["Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, your Unmake and Timerend gain an additional 20% bonus spell scaling."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7920","treeId":"coa-chronomancer-56","index":7920,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/spell_shadow_charm.png","maxRank":1,"name":"Magic Erosion","description":"Your Decomposition now deals 10% more damage and applies Magic Erosion to the target, increasing attackers chance to hit the target with spells by 3% for 30 seconds.","rankDescriptions":["Your Decomposition now deals 10% more damage and applies Magic Erosion to the target, increasing attackers chance to hit the target with spells by 3% for 30 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2125","treeId":"coa-chronomancer-56","index":2125,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/spells/spell_animamaw_wave.png","maxRank":1,"name":"Erasion","description":"Increases the chance to trigger Anomaly Spikes by 5% and their damage by 20%.","rankDescriptions":["Increases the chance to trigger Anomaly Spikes by 5% and their damage by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4316","treeId":"coa-chronomancer-56","index":4316,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":9,"icon":"/assets/ui/spells/spell_animamaw_orb.png","maxRank":1,"name":"Aeon Rend","description":"Your Chromatic Shard now has a 25% chance to strike again and incur no cooldown.","rankDescriptions":["Your Chromatic Shard now has a 25% chance to strike again and incur no cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11861","treeId":"coa-chronomancer-56","index":11861,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_priest_divinestar_shadow2.png","maxRank":1,"name":"End of Time","description":"Level 50 Passive Mind Melt now also increases the target's periodic damage taken from you by 6% per stack.","rankDescriptions":["Level 50 Passive Mind Melt now also increases the target's periodic damage taken from you by 6% per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30908","treeId":"coa-chronomancer-56","index":30908,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/scifi_skills_p_03_border.png","maxRank":1,"name":"Null Orbs","description":"Periodic critical damage dealt now has a 20% chance to grant Null Orbs for 8 seconds.Null Orbs (Proc)Increases the critical damage of Chromatic Shard and Anomaly Spikes based on your spell critical strike rating.","rankDescriptions":["Periodic critical damage dealt now has a 20% chance to grant Null Orbs for 8 seconds.Null Orbs (Proc)Increases the critical damage of Chromatic Shard and Anomaly Spikes based on your spell critical strike rating."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5486","treeId":"coa-chronomancer-56","index":5486,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_chest_dragonblue_infinite.png","maxRank":1,"name":"Chaotic Time","description":"While Incarnation of Chaos is active, your Melt Reality deals 30% increased damage and replicates an additional 20% In addition, periodic damage dealt now reduces the cooldown of Incarnation of Chaos by -1 sec.","rankDescriptions":["While Incarnation of Chaos is active, your Melt Reality deals 30% increased damage and replicates an additional 20% In addition, periodic damage dealt now reduces the cooldown of Incarnation of Chaos by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5861","treeId":"coa-chronomancer-56","index":5861,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_inscription_armorscroll02.png","maxRank":1,"name":"Infinite Keeper","description":"Using Unmake on an enemy affected by your Timerend now causes the enemy to erupt in a vortex of sand, dealing 141 Chromatic Damage every 1 sec to up to 8 enemies for 6 seconds in an 8 yd radius.","rankDescriptions":["Using Unmake on an enemy affected by your Timerend now causes the enemy to erupt in a vortex of sand, dealing 141 Chromatic Damage every 1 sec to up to 8 enemies for 6 seconds in an 8 yd radius."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31183","treeId":"coa-chronomancer-57","index":31183,"prerequisiteId":"coa-entry-4033","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4033","requiredRank":1},{"talentId":"coa-entry-30855","requiredRank":1}],"column":4,"row":1,"icon":"/assets/ui/spells/shatterecho.png","maxRank":1,"name":"Shatter Echo","description":"Distortion Spell Launch a distorted echo from your wand at an enemy, dealing 90% Ranged Weapon damage plus cond(gt(SPA, SPH), 4+0+SPA*0.3, 4+0+SPH*0.3) Arcane damage. Damage increased by 40% for each Echo Fragment consumed.","rankDescriptions":["Distortion Spell Launch a distorted echo from your wand at an enemy, dealing 90% Ranged Weapon damage plus cond(gt(SPA, SPH), 4+0+SPA*0.3, 4+0+SPH*0.3) Arcane damage. Damage increased by 40% for each Echo Fragment consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12853","treeId":"coa-chronomancer-57","index":12853,"prerequisiteId":"coa-entry-4033","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4033","requiredRank":1},{"talentId":"coa-entry-30855","requiredRank":1}],"column":6,"row":1,"icon":"/assets/ui/spells/inv_wand_16.png","maxRank":1,"name":"Artificer's Wand","description":"Transforms your Unmake into Artificer's Wand.Artificer's WandFocus to unleash 2 wand attacks dealing Ranged Weapon damage plus 5 over 1 seconds. Generates 1 Echo Fragment.","rankDescriptions":["Transforms your Unmake into Artificer's Wand.Artificer's WandFocus to unleash 2 wand attacks dealing Ranged Weapon damage plus 5 over 1 seconds. Generates 1 Echo Fragment."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4033","treeId":"coa-chronomancer-57","index":4033,"prerequisiteId":"coa-entry-30855","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30855","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/achievement_guildperk_workingovertime.png","maxRank":1,"name":"Echo Fragments","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7853","treeId":"coa-chronomancer-57","index":7853,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_elementalearth2.png","maxRank":1,"name":"Caverns of Time","description":"Your Discordance now generates 1 Echo Fragment.","rankDescriptions":["Your Discordance now generates 1 Echo Fragment."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7391","treeId":"coa-chronomancer-57","index":7391,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_azeritedebuff.png","maxRank":3,"name":"Artificer's Empowerment","description":"Increases your Spirit by 25%.","rankDescriptions":["Increases your Spirit by 8%.","Increases your Spirit by 16%.","Increases your Spirit by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30256","treeId":"coa-chronomancer-57","index":30256,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/spell_nature_brilliance.png","maxRank":2,"name":"Wand Master","description":"Increases the damage of Wand of Time and Artificer's Wand by 20%.","rankDescriptions":["Increases the damage of Wand of Time and Artificer's Wand by 10%.","Increases the damage of Wand of Time and Artificer's Wand by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9175","treeId":"coa-chronomancer-57","index":9175,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_cloth_raidpriestdragon_d_01_helm_blue.png","maxRank":1,"name":"Wand Expert","description":"Level 20 Passive Increases your ranged attack power by 100% of your Spirit and your hit rating by 5% of your Spirit.","rankDescriptions":["Level 20 Passive Increases your ranged attack power by 100% of your Spirit and your hit rating by 5% of your Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-6576","treeId":"coa-chronomancer-57","index":6576,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/5_wandshot_(2)_border.png","maxRank":1,"name":"Discovery","description":"Casting Artificers's Wand and Wand of Time now grants Discovery for 30 seconds, stacking 4 times. DiscoveryAt 3 stacks, your next Wand of Time or Artificer's Wand causes an additional 1 + 21.2% arcane SP + 25% Spirit + 10% ranged AP Arcane Damage, scaling with Spirit.","rankDescriptions":["Casting Artificers's Wand and Wand of Time now grants Discovery for 30 seconds, stacking 4 times. DiscoveryAt 3 stacks, your next Wand of Time or Artificer's Wand causes an additional 1 + 21.2% arcane SP + 25% Spirit + 10% ranged AP Arcane Damage, scaling with Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6574","treeId":"coa-chronomancer-57","index":6574,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/inv_wand_1h_warfrontsalliance_c_01.png","maxRank":1,"name":"Concentrated Fate","description":"Increases the effectiveness of your Echo Fragments by 20%.","rankDescriptions":["Increases the effectiveness of your Echo Fragments by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30265","treeId":"coa-chronomancer-57","index":30265,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/achievement_challengemode_bronze.png","maxRank":1,"name":"Bronze Echoes","description":"Reduces the cast time of Artificer's Wand by -0.2 sec.","rankDescriptions":["Reduces the cast time of Artificer's Wand by -0.2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7854","treeId":"coa-chronomancer-57","index":7854,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_staff_2h_jaina_d_01.png","maxRank":1,"name":"Singularity Core","description":"Continuum Spell Empower your Wand attacks to deal an additional 50% Ranged Weapon Damage plus 2 + 25% SP + 12% ranged AP additional Arcane damage for 3 sec plus 5 sec per Echo Fragment. Can only have 1 Continuum spell active at a time.","rankDescriptions":["Continuum Spell Empower your Wand attacks to deal an additional 50% Ranged Weapon Damage plus 2 + 25% SP + 12% ranged AP additional Arcane damage for 3 sec plus 5 sec per Echo Fragment. Can only have 1 Continuum spell active at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6170","treeId":"coa-chronomancer-57","index":6170,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/trade_archaeology_dwarf_artifactfragment.png","maxRank":1,"name":"Archaeology","description":"Your Discovery now also generates 3% of your base mana and health.","rankDescriptions":["Your Discovery now also generates 3% of your base mana and health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30250","treeId":"coa-chronomancer-57","index":30250,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_misc_cat_trinket10.png","maxRank":1,"name":"Hyperwand","description":"Increases the damage and critical damage of your Shatter Echo by 30%.","rankDescriptions":["Increases the damage and critical damage of your Shatter Echo by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6575","treeId":"coa-chronomancer-57","index":6575,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/5_wandshot_border.png","maxRank":1,"name":"Elder Wand","description":"Your Wand attacks now have a 30% chance to increase the damage of Artificer's Wand against the target by 3% for 15 seconds, stacking 10 times.","rankDescriptions":["Your Wand attacks now have a 30% chance to increase the damage of Artificer's Wand against the target by 3% for 15 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6171","treeId":"coa-chronomancer-57","index":6171,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/spell_holy_mindvision.png","maxRank":1,"name":"Temporal Convergence","description":"Your Wand of Time now has a 40% chance to reset its own cooldown.","rankDescriptions":["Your Wand of Time now has a 40% chance to reset its own cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30844","treeId":"coa-chronomancer-57","index":30844,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/ability_monk_chiexplosion.png","maxRank":1,"name":"Conduction Burst","description":"Your Shatter Echo now deals 20% additional damage while a Continuum spell is active.","rankDescriptions":["Your Shatter Echo now deals 20% additional damage while a Continuum spell is active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6172","treeId":"coa-chronomancer-57","index":6172,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_evoker_eternitysurge.png","maxRank":1,"name":"Crystal Cannon","description":"Level 30 Passive Casting Discordance now unleashes the Crystal Cannon, launching 2 quick lesser Wand attacks at the enemy over 1 seconds, scaling with Spirit.","rankDescriptions":["Level 30 Passive Casting Discordance now unleashes the Crystal Cannon, launching 2 quick lesser Wand attacks at the enemy over 1 seconds, scaling with Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-6175","treeId":"coa-chronomancer-57","index":6175,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/nhi_arcanesandwatch_border.png","maxRank":1,"name":"Unstable Chronoglass","description":"Place an Unstable Chronoglass at target location for 30 seconds that will redirect the next 3 offensive enemy spell casts onto itself.","rankDescriptions":["Place an Unstable Chronoglass at target location for 30 seconds that will redirect the next 3 offensive enemy spell casts onto itself."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7937","treeId":"coa-chronomancer-57","index":7937,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/ability_racial_timeismoney.png","maxRank":1,"name":"Clocked In","description":"Casting Discordance now makes your next Artificer's Wand within 10 seconds instant cast and causes it to generate an additional Echo Fragment.","rankDescriptions":["Casting Discordance now makes your next Artificer's Wand within 10 seconds instant cast and causes it to generate an additional Echo Fragment."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30856","treeId":"coa-chronomancer-57","index":30856,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/inv_wand_25.png","maxRank":1,"name":"Flux Emitter","description":"Continuum Spell Empower Wand attacks to affect up to 2 additional nearby enemies for 3 sec plus 5 sec per Echo Fragment. Affected attacks deal less damage per additional enemy hit. Can only have 1 Continuum spell active at a time.","rankDescriptions":["Continuum Spell Empower Wand attacks to affect up to 2 additional nearby enemies for 3 sec plus 5 sec per Echo Fragment. Affected attacks deal less damage per additional enemy hit. Can only have 1 Continuum spell active at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30857","treeId":"coa-chronomancer-57","index":30857,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holyrain_border.png","maxRank":1,"name":"Hands of Time","description":"Increases the effectiveness of your Accelerate and Decelerate spells by 25%.","rankDescriptions":["Increases the effectiveness of your Accelerate and Decelerate spells by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6174","treeId":"coa-chronomancer-57","index":6174,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_staff_2h_artifactaegwynsstaff_d_06.png","maxRank":1,"name":"Paradox Cannon","description":"Continuum Spell Generate 1 Echo Fragment every 3 sec for 5 seconds, plus an additional 5 sec per Echo Fragment consumed. Can only have 1 Continuum spell active at a time.","rankDescriptions":["Continuum Spell Generate 1 Echo Fragment every 3 sec for 5 seconds, plus an additional 5 sec per Echo Fragment consumed. Can only have 1 Continuum spell active at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6173","treeId":"coa-chronomancer-57","index":6173,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_wand_29.png","maxRank":1,"name":"Borrowed Time","description":"Taking Physical damage now heals you equal to 10% of the damage dealt. Can only occur once per sec.","rankDescriptions":["Taking Physical damage now heals you equal to 10% of the damage dealt. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1803","treeId":"coa-chronomancer-57","index":1803,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/custom_t_sundarkening_border.png","maxRank":1,"name":"Sporadic Incantations","description":"Your Flux Emitter now strikes 1 additional enemy.","rankDescriptions":["Your Flux Emitter now strikes 1 additional enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6884","treeId":"coa-chronomancer-57","index":6884,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/novart_magicspell_(56)_border.png","maxRank":1,"name":"Tamed Incantations","description":"Increases the duration of Continuum spells per Echo Fragment consumed by 0.5 sec.","rankDescriptions":["Increases the duration of Continuum spells per Echo Fragment consumed by 0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12279","treeId":"coa-chronomancer-57","index":12279,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/_engineering_tanaristp.png","maxRank":1,"name":"Reverse Engineering","description":"Periodic damage and healing now has a 15% chance to increase your haste by 15% for 6 seconds and grant allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","rankDescriptions":["Periodic damage and healing now has a 15% chance to increase your haste by 15% for 6 seconds and grant allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30279","treeId":"coa-chronomancer-57","index":30279,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/ability_hunter_disarmingshot.png","maxRank":1,"name":"Erode Armaments","description":"Your Wand attacks now reduce enemy attack power by 208 for 5 seconds.","rankDescriptions":["Your Wand attacks now reduce enemy attack power by 208 for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11472","treeId":"coa-chronomancer-57","index":11472,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_wand_1h_maldraxxusquest_b_01.png","maxRank":1,"name":"Time Is A Circle","description":"Level 40 Passive Casting Wand of Time now extends the duration of your Continuum spells by 3 sec. Continuum spells cannot be extended beyond their maximum duration.","rankDescriptions":["Level 40 Passive Casting Wand of Time now extends the duration of your Continuum spells by 3 sec. Continuum spells cannot be extended beyond their maximum duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-7914","treeId":"coa-chronomancer-57","index":7914,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/spell_arcane_blast.png","maxRank":1,"name":"Fate Twister","description":"Reduces the cooldown of Unstable Chronoglass by -30 sec.","rankDescriptions":["Reduces the cooldown of Unstable Chronoglass by -30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30282","treeId":"coa-chronomancer-57","index":30282,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/_enslavespell_arcane.png","maxRank":1,"name":"Magic Sensitivity","description":"Critical strikes with Shatter Echo now increases the enemy's damage taken from you by 10% for 8 seconds.","rankDescriptions":["Critical strikes with Shatter Echo now increases the enemy's damage taken from you by 10% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31332","treeId":"coa-chronomancer-57","index":31332,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_ascend_gems_64.png","maxRank":1,"name":"Infinity Stone","description":"Increases the critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your critical strike chance by 3%.","rankDescriptions":["Increases the critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your critical strike chance by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6178","treeId":"coa-chronomancer-57","index":6178,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/ability_mage_arcanebarrage_nightborne.png","maxRank":1,"name":"Splitting Time","description":"Your Crystal Cannon now strikes 2 additional nearby enemies.","rankDescriptions":["Your Crystal Cannon now strikes 2 additional nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4520","treeId":"coa-chronomancer-57","index":4520,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_6_2raid_trinket_4a.png","maxRank":1,"name":"Resonance","description":"Casting Artificer's Wand or Crystal Cannon now has a 35% chance to reduce the cooldown of Hasten by -1 sec.","rankDescriptions":["Casting Artificer's Wand or Crystal Cannon now has a 35% chance to reduce the cooldown of Hasten by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31120","treeId":"coa-chronomancer-57","index":31120,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/inv_helm_goggles_draenortradeskill_d_01.png","maxRank":1,"name":"Timemage","description":"Reduces the duration of harmful magic effects on you by -30%.","rankDescriptions":["Reduces the duration of harmful magic effects on you by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7855","treeId":"coa-chronomancer-57","index":7855,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/ui_profession_enchanting.png","maxRank":1,"name":"Aether Compression","description":"Continuum Spell Artificer's Wand and Reverse Wound can be cast while moving for 5 seconds. Duration increased by 5 sec per Echo Fragment. Can only have 1 Continuum spell active at a time.","rankDescriptions":["Continuum Spell Artificer's Wand and Reverse Wound can be cast while moving for 5 seconds. Duration increased by 5 sec per Echo Fragment. Can only have 1 Continuum spell active at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7856","treeId":"coa-chronomancer-57","index":7856,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/nhi_arcaneburst_border.png","maxRank":1,"name":"Arc Collision","description":"Distortion Spell Create a timestorm around an enemy that causes them and up to 2 nearby enemies to take 270 + 24% SP Arcane damage, repeating over 4 seconds. Duration increased by 2 sec for each Echo Fragment consumed.","rankDescriptions":["Distortion Spell Create a timestorm around an enemy that causes them and up to 2 nearby enemies to take 270 + 24% SP Arcane damage, repeating over 4 seconds. Duration increased by 2 sec for each Echo Fragment consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30859","treeId":"coa-chronomancer-57","index":30859,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/inv_wand_33.png","maxRank":1,"name":"Pulse Driver","description":"Singularity Core now increases the damage of Shatter Echo while its active by 30% and allows Shatter Echo to trigger its damage.","rankDescriptions":["Singularity Core now increases the damage of Shatter Echo while its active by 30% and allows Shatter Echo to trigger its damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11273","treeId":"coa-chronomancer-57","index":11273,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_lightning_timewarp_border.png","maxRank":1,"name":"Intuition","description":"Level 50 Passive Increases your critical damage by 25%.","rankDescriptions":["Level 50 Passive Increases your critical damage by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7873","treeId":"coa-chronomancer-57","index":7873,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/inv_wand_18.png","maxRank":1,"name":"Cheating Time","description":"Casting Shatter Echo now extends the duration of your Flux Emitter by 4 sec. Cannot be extended beyond maximum duration.","rankDescriptions":["Casting Shatter Echo now extends the duration of your Flux Emitter by 4 sec. Cannot be extended beyond maximum duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31333","treeId":"coa-chronomancer-57","index":31333,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_tailoring_80_nylonthread.png","maxRank":1,"name":"Threads of Eternity","description":"Damage dealt by Discordance now applies Thread of Eternity to enemies.Thread of EternityMarked for 6 seconds. Damage taken from Wand of Time is increased by 30%. You may consume this debuff with Wand of Time to gain an additional effect based on your active Continuum Spell. Singularity Core: Triggers 3 instances of Singularity Core damage. Flux Emitter: Explodes on the enemy, dealing 50% of the damage dealt to all enemies within 8 yds. Paradox Cannon: Increases the damage of your next Shatter Echo within 6 sec by 25%.","rankDescriptions":["Damage dealt by Discordance now applies Thread of Eternity to enemies.Thread of EternityMarked for 6 seconds. Damage taken from Wand of Time is increased by 30%. You may consume this debuff with Wand of Time to gain an additional effect based on your active Continuum Spell. Singularity Core: Triggers 3 instances of Singularity Core damage. Flux Emitter: Explodes on the enemy, dealing 50% of the damage dealt to all enemies within 8 yds. Paradox Cannon: Increases the damage of your next Shatter Echo within 6 sec by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30861","treeId":"coa-chronomancer-57","index":30861,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/5_wandshot_border.png","maxRank":1,"name":"Wand Mastery","description":"Wand of Time and Shatter Echo now have a 25% chance to unleash Crystal Cannon, launching 2 quick lesser Wand auto attacks at the enemy over 1 seconds, scaling with Spirit. While Paradox Cannon is active, the chance to trigger this effect is increased by 10%.","rankDescriptions":["Wand of Time and Shatter Echo now have a 25% chance to unleash Crystal Cannon, launching 2 quick lesser Wand auto attacks at the enemy over 1 seconds, scaling with Spirit. While Paradox Cannon is active, the chance to trigger this effect is increased by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31182","treeId":"coa-chronomancer-58","index":31182,"prerequisiteId":"coa-entry-4032","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4032","requiredRank":1},{"talentId":"coa-entry-30277","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_staff_2h_nazmirraid_d_01.png","maxRank":1,"name":"Ripple","description":"Channel for up to 5 seconds. When the channel ends, if you channeled for at least 1.5 sec, allies within 40 yds are healed based on the duration of the channel. While channeling, you are immune to stun effects.","rankDescriptions":["Channel for up to 5 seconds. When the channel ends, if you channeled for at least 1.5 sec, allies within 40 yds are healed based on the duration of the channel. While channeling, you are immune to stun effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4032","treeId":"coa-chronomancer-58","index":4032,"prerequisiteId":"coa-entry-30277","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30277","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_trinket_80_kultiras02a.png","maxRank":1,"name":"Aeon of Resilience","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-19979","treeId":"coa-chronomancer-58","index":19979,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/spell_quicksand.png","maxRank":2,"name":"Sands of Life","description":"Increases your healing power by 50% of your Spirit.","rankDescriptions":["Increases your healing power by 25% of your Spirit.","Increases your healing power by 50% of your Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6700","treeId":"coa-chronomancer-58","index":6700,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/inv_enchant_dustspirit.png","maxRank":1,"name":"Endless Sands","description":"Casting Epoch now grants you Endless Sands.Endless SandsCast time of your next Reverse Wounds within 15 seconds is reduced by -20%, stacking up to 5 times.","rankDescriptions":["Casting Epoch now grants you Endless Sands.Endless SandsCast time of your next Reverse Wounds within 15 seconds is reduced by -20%, stacking up to 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19980","treeId":"coa-chronomancer-58","index":19980,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/5_heal_border.png","maxRank":1,"name":"Correct the Mistake","description":"Retell the fate of party members within 30 yds, healing them for 73 + 54.86% healing.","rankDescriptions":["Retell the fate of party members within 30 yds, healing them for 73 + 54.86% healing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9177","treeId":"coa-chronomancer-58","index":9177,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_trinket_80_kultiras02d.png","maxRank":1,"name":"Aeon of Protection","description":"Increases Epoch's cast time by 15%, healing done by 15%, and causes it to apply a damage absorption shield equal to 30% of the amount healed for 8 seconds.","rankDescriptions":["Increases Epoch's cast time by 15%, healing done by 15%, and causes it to apply a damage absorption shield equal to 30% of the amount healed for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":15,"isPassive":false},{"id":"coa-entry-6183","treeId":"coa-chronomancer-58","index":6183,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/spell_holy_flashheal.png","maxRank":2,"name":"Time Wizard","description":"Increases the critical strike chance of your Reverse Wound, Epoch, and Correct the Mistake by 15%.","rankDescriptions":["Increases the critical strike chance of your Reverse Wound, Epoch, and Correct the Mistake by 8%.","Increases the critical strike chance of your Reverse Wound, Epoch, and Correct the Mistake by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6190","treeId":"coa-chronomancer-58","index":6190,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/paladin_icon_speedoflight.png","maxRank":1,"name":"Keep Accelerating","description":"Your Accelerated Recovery now also applies to the lowest-health nearby target.","rankDescriptions":["Your Accelerated Recovery now also applies to the lowest-health nearby target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6187","treeId":"coa-chronomancer-58","index":6187,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holywhirlpool_border.png","maxRank":2,"name":"Time Beacon","description":"Increases the duration of effects applied by your Aeons by 8 sec.","rankDescriptions":["Increases the duration of effects applied by your Aeons by 4 sec.","Increases the duration of effects applied by your Aeons by 8 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29681","treeId":"coa-chronomancer-58","index":29681,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/ability_racial_timeismoney.png","maxRank":1,"name":"Cadence of Time","description":"Your critical strikes with Epoch now grant Cadence of Time, increasing the healing of Ripple by 10% for 15 seconds. Stacks 5 times.","rankDescriptions":["Your critical strikes with Epoch now grant Cadence of Time, increasing the healing of Ripple by 10% for 15 seconds. Stacks 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6699","treeId":"coa-chronomancer-58","index":6699,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/trade_archaeology.png","maxRank":1,"name":"Carbon Dating","description":"Each stack of Sands of Time now also increases the healing of your Epoch by 10%.","rankDescriptions":["Each stack of Sands of Time now also increases the healing of your Epoch by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6196","treeId":"coa-chronomancer-58","index":6196,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/spell_nature_mentalquickness.png","maxRank":1,"name":"Timeless","description":"While Endless Sands is active, the mana costs of your spells and abilities is reduced by -3% per stack.","rankDescriptions":["While Endless Sands is active, the mana costs of your spells and abilities is reduced by -3% per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19978","treeId":"coa-chronomancer-58","index":19978,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/spell_monk_diffusemagic.png","maxRank":1,"name":"Fabric of Time","description":"Alter the fabric of time, healing an ally for 302 + 68% healing. Your next Aeon used within 8 seconds will trigger with no cooldown or cost.","rankDescriptions":["Alter the fabric of time, healing an ally for 302 + 68% healing. Your next Aeon used within 8 seconds will trigger with no cooldown or cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9181","treeId":"coa-chronomancer-58","index":9181,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_trinket_80_kultiras02b.png","maxRank":1,"name":"Aeon of Renewal","description":"Reduces Epoch's healing by -30%, but causes it to heal for an additional 50% of the amount healed over 3 seconds.","rankDescriptions":["Reduces Epoch's healing by -30%, but causes it to heal for an additional 50% of the amount healed over 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-30901","treeId":"coa-chronomancer-58","index":30901,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/ability_paladin_righteousvengeance.png","maxRank":1,"name":"A Ripple In Time","description":"Your damaging and healing critical strikes now reduce the remaining cooldown of Ripple by -1 sec.","rankDescriptions":["Your damaging and healing critical strikes now reduce the remaining cooldown of Ripple by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30903","treeId":"coa-chronomancer-58","index":30903,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/nhi_corruptionknowledge_border.png","maxRank":1,"name":"Ideal Time","description":"Every 30 sec, your next ability is guaranteed to critically strike.","rankDescriptions":["Every 30 sec, your next ability is guaranteed to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7912","treeId":"coa-chronomancer-58","index":7912,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_evoker_timedilation.png","maxRank":1,"name":"Continuum Restoration","description":"Restore the continuum at target location for all allies and enemies, removing all beneficial magic effects from enemies and harmful magic effects from allies. This dispel is potent enough to remove magic effects that are normally undispellable","rankDescriptions":["Restore the continuum at target location for all allies and enemies, removing all beneficial magic effects from enemies and harmful magic effects from allies. This dispel is potent enough to remove magic effects that are normally undispellable"],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29571","treeId":"coa-chronomancer-58","index":29571,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/nhi_arcanespeed_border.png","maxRank":1,"name":"Time Skip","description":"Your Roll Back now removes 1 additional harmful effect.","rankDescriptions":["Your Roll Back now removes 1 additional harmful effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30264","treeId":"coa-chronomancer-58","index":30264,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/icon_dragonflygold.png","maxRank":1,"name":"Orderly Protector","description":"Healing done by your Epoch now increases the healing of Fabric of Time by 10% for 10 seconds, stacking 10 times. Each stack gives you a 2% chance when you cast Fabric of Time to reset its own cooldown.","rankDescriptions":["Healing done by your Epoch now increases the healing of Fabric of Time by 10% for 10 seconds, stacking 10 times. Each stack gives you a 2% chance when you cast Fabric of Time to reset its own cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30902","treeId":"coa-chronomancer-58","index":30902,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/5_teleport_border.png","maxRank":1,"name":"Displacement","description":"Displaces a party or raid member and pulls them to you, dispelling root and snare effects from them.","rankDescriptions":["Displaces a party or raid member and pulls them to you, dispelling root and snare effects from them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30780","treeId":"coa-chronomancer-58","index":30780,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/inv_inscription_80_vantusrune_uldir.png","maxRank":1,"name":"Mark of Order","description":"Healing done by Fortify Timeline now applies Mark of Order.Mark of OrderIncreases the healing of your next Reverse Wound on the target by 10% for 20 seconds. Every 1 sec for the duration, they gain an additional stack of this effect, up to 5.","rankDescriptions":["Healing done by Fortify Timeline now applies Mark of Order.Mark of OrderIncreases the healing of your next Reverse Wound on the target by 10% for 20 seconds. Every 1 sec for the duration, they gain an additional stack of this effect, up to 5."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6702","treeId":"coa-chronomancer-58","index":6702,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/skill_icon_skill42_border.png","maxRank":1,"name":"Cycling Aeons","description":"Reduces the cooldown of your Aeons by -50%.","rankDescriptions":["Reduces the cooldown of your Aeons by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29570","treeId":"coa-chronomancer-58","index":29570,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/inv_misc_gem_x4_uncommon_perfectcut_yellow.png","maxRank":1,"name":"Shimmering Shard","description":"Activating Aeon spells now grants you 4% increased damage and healing for 20 seconds, stacking 3 times.","rankDescriptions":["Activating Aeon spells now grants you 4% increased damage and healing for 20 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6841","treeId":"coa-chronomancer-58","index":6841,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_trinket_80_kultiras02e.png","maxRank":1,"name":"Aeon of Oblivion","description":"Increases Epoch's mana cost by 30%, critical strike chance by 10%, and healing done by 15%. In addition, healing with Epoch now increases the target's damage dealt by 3% for 15 seconds.","rankDescriptions":["Increases Epoch's mana cost by 30%, critical strike chance by 10%, and healing done by 15%. In addition, healing with Epoch now increases the target's damage dealt by 3% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-10728","treeId":"coa-chronomancer-58","index":10728,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/inv_misc_head_dragon_bronze.png","maxRank":1,"name":"Nozdormu's Gaze","description":"Your Time Out! now regenerates -2% less mana per tick, but casting it now instantly restores an additional 15% of your maximum mana.","rankDescriptions":["Your Time Out! now regenerates -2% less mana per tick, but casting it now instantly restores an additional 15% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30268","treeId":"coa-chronomancer-58","index":30268,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/inv_archaeology_ogres_hargunn_eye.png","maxRank":1,"name":"Titan's Gaze","description":"Your Time Out! no longer breaks on damage, but reduces its damage reduction by -75%.","rankDescriptions":["Your Time Out! no longer breaks on damage, but reduces its damage reduction by -75%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10922","treeId":"coa-chronomancer-58","index":10922,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/5_priestskill27_border.png","maxRank":1,"name":"Overcorrection","description":"Overhealing done by Correct the Mistake now applies a heal over time effect to the ally equal to 30% of the healing done over 5 seconds.","rankDescriptions":["Overhealing done by Correct the Mistake now applies a heal over time effect to the ally equal to 30% of the healing done over 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30922","treeId":"coa-chronomancer-58","index":30922,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/inv_progenitorbeetlebronze.png","maxRank":1,"name":"Bronze Timeways","description":"Casting Correct the Mistake now grants 2 stacks of Endless Sands.Endless SandsCast time of your next Reverse Wounds within 15 seconds is reduced by -20%, stacking up to 5 times.","rankDescriptions":["Casting Correct the Mistake now grants 2 stacks of Endless Sands.Endless SandsCast time of your next Reverse Wounds within 15 seconds is reduced by -20%, stacking up to 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29670","treeId":"coa-chronomancer-58","index":29670,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/ability_hunter_readiness.png","maxRank":1,"name":"Wonders of Time","description":"Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. Additionally, all healing done now has a 10% chance to grant you Endless Sands.Endless SandsCast time of your next Reverse Wounds within 15 seconds is reduced by -20%, stacking up to 5 times.","rankDescriptions":["Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. Additionally, all healing done now has a 10% chance to grant you Endless Sands.Endless SandsCast time of your next Reverse Wounds within 15 seconds is reduced by -20%, stacking up to 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6652","treeId":"coa-chronomancer-58","index":6652,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/nhi_timewarp_border.png","maxRank":1,"name":"Through The Aeons","description":"Activating an Aeon now increases your mana regeneration from Spirit by 100% for 8 seconds.","rankDescriptions":["Activating an Aeon now increases your mana regeneration from Spirit by 100% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30905","treeId":"coa-chronomancer-58","index":30905,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/ability_priest_bindingprayers.png","maxRank":1,"name":"Chronicler","description":"Casting Fortify Timeline now extends the duration of Accelerated Recovery on all targets within 40 yds by an additional 10 sec.","rankDescriptions":["Casting Fortify Timeline now extends the duration of Accelerated Recovery on all targets within 40 yds by an additional 10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6184","treeId":"coa-chronomancer-58","index":6184,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/_enslavespell_holy.png","maxRank":1,"name":"Timeline Tether","description":"Your periodic damage and healing reduces the cooldown of your Fortify Timeline by -1 sec.","rankDescriptions":["Your periodic damage and healing reduces the cooldown of your Fortify Timeline by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29682","treeId":"coa-chronomancer-58","index":29682,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holywatch_border.png","maxRank":1,"name":"Shield of the Ages","description":"When hit by a damaging critical strike, your damage taken is reduced by -3%, and healing received is increased by 5% for 3 seconds, stacking 3 times.","rankDescriptions":["When hit by a damaging critical strike, your damage taken is reduced by -3%, and healing received is increased by 5% for 3 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7826","treeId":"coa-chronomancer-58","index":7826,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/nhi_arcanetwist_border.png","maxRank":1,"name":"Converge the Infinite","description":"Casting Fortify Timeline now grants you Converge the Infinite.Converge the InfiniteYour next Correct the Mistake has a 1 sec increased cast time, but heals for 30% more and is guaranteed to critically strike. Successfully healing an ally in this way reduces the cooldown of Fortify Timeline by 8%.","rankDescriptions":["Casting Fortify Timeline now grants you Converge the Infinite.Converge the InfiniteYour next Correct the Mistake has a 1 sec increased cast time, but heals for 30% more and is guaranteed to critically strike. Successfully healing an ally in this way reduces the cooldown of Fortify Timeline by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6192","treeId":"coa-chronomancer-58","index":6192,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_shield_1h_bastionquest_b_01.png","maxRank":1,"name":"Epic Recovery","description":"When you cast Epoch you now also cast a Rank 1 Epoch on up to 5 allies affected by Accelerated Recovery.","rankDescriptions":["When you cast Epoch you now also cast a Rank 1 Epoch on up to 5 allies affected by Accelerated Recovery."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9182","treeId":"coa-chronomancer-58","index":9182,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/ability_bossmagistrix_timewarp2.png","maxRank":1,"name":"Eternity Warper","description":"Level 50 Passive Your Ripple channel performs a unique effect based on your active Aeon: Rippling RenewalRipple periodically heals allies within 0 yds for 71 + 12.5% SP every 1 sec. Rippling OblivionRipple deals periodic damage to enemies within 25 yds for 156 + 38.5% SP every 1 sec. Rippling ProtectionRipple now places a damage absorb for 420 + 75% healing on allies within 15 yds for the duration of its channel. Rippling ResilienceRipple now delays 30% of incoming direct Physical Damage to allies within 15 yds for it's duration, instead taking it over 5 seconds.","rankDescriptions":["Level 50 Passive Your Ripple channel performs a unique effect based on your active Aeon: Rippling RenewalRipple periodically heals allies within 0 yds for 71 + 12.5% SP every 1 sec. Rippling OblivionRipple deals periodic damage to enemies within 25 yds for 156 + 38.5% SP every 1 sec. Rippling ProtectionRipple now places a damage absorb for 420 + 75% healing on allies within 15 yds for the duration of its channel. Rippling ResilienceRipple now delays 30% of incoming direct Physical Damage to allies within 15 yds for it's duration, instead taking it over 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-9986","treeId":"coa-chronomancer-58","index":9986,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/achievement_guild_timeoff.png","maxRank":1,"name":"Timeblender","description":"Guarantees healing done by Fabric of Time to critically strike and gives it an additional charge.Fabric of Time (Timeblender)2 Charges, 15 sec recharge Alter the fabric of time, healing an ally for 644 + 68% healing. Your next Aeon used within 8 seconds will trigger with no cooldown.","rankDescriptions":["Guarantees healing done by Fabric of Time to critically strike and gives it an additional charge.Fabric of Time (Timeblender)2 Charges, 15 sec recharge Alter the fabric of time, healing an ally for 644 + 68% healing. Your next Aeon used within 8 seconds will trigger with no cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6182","treeId":"coa-chronomancer-58","index":6182,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_racial_chillofnight.png","maxRank":1,"name":"The Vast Infinite","description":"All party and raid members become one, equally sharing 25% of all damage dealt to them for 10 seconds, up to a maximum of 100% of their total health. At the end of the duration, all affected allies are healed equal to the total damage shared split evenly amongst all allies.","rankDescriptions":["All party and raid members become one, equally sharing 25% of all damage dealt to them for 10 seconds, up to a maximum of 100% of their total health. At the end of the duration, all affected allies are healed equal to the total damage shared split evenly amongst all allies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30261","treeId":"coa-chronomancer-58","index":30261,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/ability_racial_timeismoney.png","maxRank":1,"name":"Buy Time","description":"Put all enemies and allies in an 8 yd radius in target area into a stasis, banishing them for 6 seconds, making them invulnerable to all effects but unable to move. Casting Unmake on a target will remove this effect.","rankDescriptions":["Put all enemies and allies in an 8 yd radius in target area into a stasis, banishing them for 6 seconds, making them invulnerable to all effects but unable to move. Casting Unmake on a target will remove this effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30277","treeId":"coa-chronomancer-87","index":30277,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/spells/spell_holy_healingfocus.png","maxRank":1,"name":"Accelerated Recovery","description":"Accelerates the bodies natural healing process, healing the target for 48 + 92% healing over 15 seconds.","rankDescriptions":["Accelerates the bodies natural healing process, healing the target for 48 + 92% healing over 15 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30249","treeId":"coa-chronomancer-87","index":30249,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/handbeamblackhand.png","maxRank":1,"name":"Clasp of Infinity","description":"Conjure a magical binding upon an enemy that bounces to nearby enemies, rooting them in place for 4 seconds.","rankDescriptions":["Conjure a magical binding upon an enemy that bounces to nearby enemies, rooting them in place for 4 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30855","treeId":"coa-chronomancer-87","index":30855,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":1,"icon":"/assets/ui/spells/5_healingwave_border.png","maxRank":1,"name":"Waves of Time","description":"Blast enemies in a frontal cone with time fractals, knocking them back slightly. The knockback repeats 1 additional time after 2 sec.","rankDescriptions":["Blast enemies in a frontal cone with time fractals, knocking them back slightly. The knockback repeats 1 additional time after 2 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6697","treeId":"coa-chronomancer-87","index":6697,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/spells/spell_holy_blessedrecovery.png","maxRank":1,"name":"Improved Reverse Wound","description":"Reduces the cast time of Reverse Wound by -0.3 sec.","rankDescriptions":["Reduces the cast time of Reverse Wound by -0.3 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7911","treeId":"coa-chronomancer-87","index":7911,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/racial_dwarf_findtreasure.png","maxRank":2,"name":"Luck","description":"Allows 80% of your mana regeneration to continue while in combat.","rankDescriptions":["Allows 40% of your mana regeneration to continue while in combat.","Allows 80% of your mana regeneration to continue while in combat."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30280","treeId":"coa-chronomancer-87","index":30280,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/novart_magicspell_(48)_border.png","maxRank":1,"name":"Unearthed Pools","description":"Reduces the cast time of Unmake by -15% and reduces the mana cost of your instant spells by 10%.","rankDescriptions":["Reduces the cast time of Unmake by -15% and reduces the mana cost of your instant spells by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6226","treeId":"coa-chronomancer-87","index":6226,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/inv_misc_head_dragon_bronze.png","maxRank":2,"name":"Perfect Timing","description":"Increases your haste by 8% and reduces your spell pushback suffered from damaging attacks by 70%.","rankDescriptions":["Increases your haste by 4% and reduces your spell pushback suffered from damaging attacks by 35%.","Increases your haste by 8% and reduces your spell pushback suffered from damaging attacks by 70%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30251","treeId":"coa-chronomancer-87","index":30251,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":2,"icon":"/assets/ui/spells/spell_shadow_manaburn.png","maxRank":1,"name":"Temporal Dissonance","description":"Chronostasis now slows your target's movement speed by an additional -10%.","rankDescriptions":["Chronostasis now slows your target's movement speed by an additional -10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6228","treeId":"coa-chronomancer-87","index":6228,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/achievement_guildperk_workingovertime_rank2.png","maxRank":1,"name":"Fortify Timeline","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7917","treeId":"coa-chronomancer-87","index":7917,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_holy_dispelmagic.png","maxRank":1,"name":"Impeccable Timing","description":"Your periodic damage and healing effects can now critically strike.","rankDescriptions":["Your periodic damage and healing effects can now critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30269","treeId":"coa-chronomancer-87","index":30269,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_belt_armor_waistoftime_d_01.png","maxRank":1,"name":"Timeguard","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6162","treeId":"coa-chronomancer-87","index":6162,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/ability_bossmagistrix_timewarp1.png","maxRank":2,"name":"Rippling Power","description":"Increases your Spirit by 15%.","rankDescriptions":["Increases your Spirit by 8%.","Increases your Spirit by 15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30260","treeId":"coa-chronomancer-87","index":30260,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/novart_magicspell_(39)_border.png","maxRank":1,"name":"Temporal Anomaly","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.","rankDescriptions":["Augment reality for 10 seconds, causing 50% of the damage taken to be stored and converted into healing at the end of the duration."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7198","treeId":"coa-chronomancer-87","index":7198,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_arcanevision_border.png","maxRank":1,"name":"Eternal","description":"Increases the duration of your Accelerated Recovery by 6 sec and Decomposition by 3 sec.","rankDescriptions":["Increases the duration of your Accelerated Recovery by 6 sec and Decomposition by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-32547","treeId":"coa-chronomancer-87","index":32547,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/ability_priest_voidshift.png","maxRank":1,"name":"Infinite Sands","description":"Reduces the cooldown of Infinite Clone by -60 sec.","rankDescriptions":["Reduces the cooldown of Infinite Clone by -60 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6696","treeId":"coa-chronomancer-87","index":6696,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/novart_magicspell_(11)_border.png","maxRank":1,"name":"Desynchronization","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30276","treeId":"coa-chronomancer-87","index":30276,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/spell_holy_purify.png","maxRank":1,"name":"Constant Recovery","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9198","treeId":"coa-chronomancer-87","index":9198,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_hibernation.png","maxRank":1,"name":"Mind Over Matter","description":"Increases the effectiveness of your Wisdom spells by 20%.","rankDescriptions":["Increases the effectiveness of your Wisdom spells by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6698","treeId":"coa-chronomancer-87","index":6698,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/_d3serenity.png","maxRank":1,"name":"Temporal Focus","description":"You lock yourself into a perfect moment, removing and becoming immune to banish, silence, and interrupt effects for 10 seconds.","rankDescriptions":["You lock yourself into a perfect moment, removing and becoming immune to banish, silence, and interrupt effects for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7226","treeId":"coa-chronomancer-87","index":7226,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/novart_magicspell_(39)_border.png","maxRank":1,"name":"Entropy Overload","description":"Increases your chance to resist movement slowing effects by 20%.","rankDescriptions":["Increases your chance to resist movement slowing effects by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6213","treeId":"coa-chronomancer-87","index":6213,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/spell_holy_ashestoashes.png","maxRank":1,"name":"Expediting Time","description":"Reduces the channel time of your Time Out! by -40%.","rankDescriptions":["Reduces the channel time of your Time Out! by -40%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5122","treeId":"coa-chronomancer-87","index":5122,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/achievement_dungeon_arakkoaspires.png","maxRank":1,"name":"Unmaker of Realities","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11122","treeId":"coa-chronomancer-87","index":11122,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/ability_racial_haymaker.png","maxRank":1,"name":"Maker of Realities","description":"Casting Hasten now also always reduces the cast time of your healing spells by an additional -20%.","rankDescriptions":["Casting Hasten now also always reduces the cast time of your healing spells by an additional -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6214","treeId":"coa-chronomancer-87","index":6214,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/achievement_bg_win_av_x_times.png","maxRank":1,"name":"Ahead of the Game","description":"Every 10th instance of your damage dealt or healing now gives you 60 increased spell power for 10 seconds.","rankDescriptions":["Every 10th instance of your damage dealt or healing now gives you 60 increased spell power for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6215","treeId":"coa-chronomancer-87","index":6215,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_eng_unstabletemporaltimeshifter.png","maxRank":1,"name":"Timekeeper","description":"Increases the effectiveness of Timeguard by 25%.","rankDescriptions":["Increases the effectiveness of Timeguard by 25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12215","treeId":"coa-chronomancer-87","index":12215,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_ascend_brain_b_01.png","maxRank":1,"name":"Procrastination","description":"Reduces the cooldown of Timeguard by -30 sec.","rankDescriptions":["Reduces the cooldown of Timeguard by -30 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6199","treeId":"coa-chronomancer-87","index":6199,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_shadow_spectralsight.png","maxRank":1,"name":"Entropy Reversal","description":"Reduces the duration of disease effects by -40%.","rankDescriptions":["Reduces the duration of disease effects by -40%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9547","treeId":"coa-chronomancer-87","index":9547,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_holy_divineprovidence.png","maxRank":1,"name":"Timewalking","description":"Reduces the cooldown of Waves of Time by -4 sec.","rankDescriptions":["Reduces the cooldown of Waves of Time by -4 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30267","treeId":"coa-chronomancer-87","index":30267,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_holy_dizzy.png","maxRank":1,"name":"Tripping the Rift","description":"Casting Clasp of Infinity now reduces the cooldown of Backtrack by -10 sec.","rankDescriptions":["Casting Clasp of Infinity now reduces the cooldown of Backtrack by -10 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31335","treeId":"coa-chronomancer-87","index":31335,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_pet_babymurlocs_white.png","maxRank":1,"name":"Life Cycles","description":"Reduces the cast time of your Babify by 0.25 sec and its mana cost by -15%.","rankDescriptions":["Reduces the cast time of your Babify by 0.25 sec and its mana cost by -15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7915","treeId":"coa-chronomancer-87","index":7915,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/sha_spell_fire_felfireward.png","maxRank":1,"name":"Infinite Shield","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6194","treeId":"coa-chronomancer-87","index":6194,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_60pvp_trinket3b.png","maxRank":1,"name":"The Bieko Effect","description":"While Hasten is active the cooldowns of Dimensional Divergence, Temporal Anomaly, and Temporal Focus are reduced by 10% every 2 sec.","rankDescriptions":["While Hasten is active the cooldowns of Dimensional Divergence, Temporal Anomaly, and Temporal Focus are reduced by 10% every 2 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30257","treeId":"coa-chronomancer-87","index":30257,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/skill_icon_skill42_border.png","maxRank":1,"name":"Gravity Bomb","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7916","treeId":"coa-chronomancer-87","index":7916,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/achievement_zone_thousandneedles_01.png","maxRank":1,"name":"Infinity","description":"Removes the cooldown of Infinite Shield.","rankDescriptions":["Removes the cooldown of Infinite Shield."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6221","treeId":"coa-chronomancer-87","index":6221,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":10,"icon":"/assets/ui/spells/massbabify.png","maxRank":1,"name":"Mass Babify","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29684","treeId":"coa-chronomancer-87","index":29684,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_dragonriding_bronzerewind01.png","maxRank":1,"name":"Dimensional Divergence","description":"Swap places with a target player. If they're an enemy, you steal -80% of their movement speed for 3 seconds.","rankDescriptions":["Swap places with a target player. If they're an enemy, you steal -80% of their movement speed for 3 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6223","treeId":"coa-chronomancer-87","index":6223,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":10,"icon":"/assets/ui/spells/inv_misc_starmetal.png","maxRank":1,"name":"Chaos Omen","description":"Reduces the cooldown of your Gravity Bomb by -30 sec, and its explosion occurs -3 sec faster.","rankDescriptions":["Reduces the cooldown of your Gravity Bomb by -30 sec, and its explosion occurs -3 sec faster."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6195","treeId":"coa-chronomancer-87","index":6195,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/inv_inscription_trinket_healer.png","maxRank":1,"name":"Charm of Power","description":"Increases the damage dealt by Gravity Bomb by 50%.","rankDescriptions":["Increases the damage dealt by Gravity Bomb by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/cultist.json b/src/game/generated/talentUi/cultist.json new file mode 100644 index 00000000..370b9c51 --- /dev/null +++ b/src/game/generated/talentUi/cultist.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"cultist","trees":[{"id":"coa-cultist-65","classId":"cultist","name":"Corruption","icon":"/assets/ui/spells/spell_shadow_unstableaffliction_3_purple.png","background":"","description":"Corruption nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-cultist-64","classId":"cultist","name":"Godblade","icon":"/assets/ui/spells/inv_chest_armor_voidelf_d_01.png","background":"","description":"Godblade nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-cultist-66","classId":"cultist","name":"Heretic","icon":"/assets/ui/spells/inv_mace_1h_orgrimmarraid_d_03.png","background":"","description":"Heretic nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-cultist-88","classId":"cultist","name":"Dreadnought","icon":"/assets/ui/spells/inv_shield_1h_artifactstormfist_d_05.png","background":"","description":"Dreadnought nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-cultist-87","classId":"cultist","name":"Class","icon":"/assets/ui/spells/_d3energyarmor.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-31189","treeId":"coa-cultist-64","index":31189,"prerequisiteId":"coa-entry-4040","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4040","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_chest_armor_voidelf_d_01.png","maxRank":1,"name":"Rift","description":"Apply a dark boon to yourself for 15 seconds, causing your next Hammer of Twilight to deal an additional 80% of its damage dealt as Shadow damage. Creates a rift that absorbs the next 690 + 150% AP healing taken by enemies that step inside and reduces their periodic healing received by -50% for 10 seconds while inside.","rankDescriptions":["Apply a dark boon to yourself for 15 seconds, causing your next Hammer of Twilight to deal an additional 80% of its damage dealt as Shadow damage. Creates a rift that absorbs the next 690 + 150% AP healing taken by enemies that step inside and reduces their periodic healing received by -50% for 10 seconds while inside."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4040","treeId":"coa-cultist-64","index":4040,"prerequisiteId":"coa-entry-7608","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-7608","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/nzothicon.png","maxRank":1,"name":"Obliteration","description":"Level 10 Passive Your Gaze of C'Thun now gains an additional 15 base damage and healing.","rankDescriptions":["Level 10 Passive Your Gaze of C'Thun now gains an additional 15 base damage and healing."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-33894","treeId":"coa-cultist-64","index":33894,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/spell_shadow_chilltouch.png","maxRank":1,"name":"Hand of N'Zoth","description":"Your Hammer of Twilight, Entropic Slam, and Gaze of C'Thun now refreshes a charge of Blade of the Empire.","rankDescriptions":["Your Hammer of Twilight, Entropic Slam, and Gaze of C'Thun now refreshes a charge of Blade of the Empire."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4810","treeId":"coa-cultist-64","index":4810,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_sword_02.png","maxRank":3,"name":"Voidforged Edge","description":"Your auto attacks now deal an additional 30% of the damage dealt as Shadow damage.","rankDescriptions":["Your auto attacks now deal an additional 10% of the damage dealt as Shadow damage.","Your auto attacks now deal an additional 20% of the damage dealt as Shadow damage.","Your auto attacks now deal an additional 30% of the damage dealt as Shadow damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6543","treeId":"coa-cultist-64","index":6543,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_sword_1h_draenei_c_03.png","maxRank":2,"name":"Abyssal Edge","description":"Increases the critical strike chance of Blade of the Empire by 4% and reduces its mana cost by -50%.","rankDescriptions":["Increases the critical strike chance of Blade of the Empire by 2% and reduces its mana cost by -25%.","Increases the critical strike chance of Blade of the Empire by 4% and reduces its mana cost by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11297","treeId":"coa-cultist-64","index":11297,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/5_shadowswords_border.png","maxRank":1,"name":"Shadow of the Void","description":"Level 20 Passive While above 40 Insanity, melee attacks and abilities trigger Shadow of the Void.Shadow of the VoidRestores 5% of your maximum mana and increases your Shadow Damage dealt by 10% for 8 seconds.","rankDescriptions":["Level 20 Passive While above 40 Insanity, melee attacks and abilities trigger Shadow of the Void.Shadow of the VoidRestores 5% of your maximum mana and increases your Shadow Damage dealt by 10% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-33976","treeId":"coa-cultist-64","index":33976,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/nhi_void_conquer_border.png","maxRank":1,"name":"Shadow Strikes","description":"Blade of the Empire now has a 30% chance to cause your next auto attack to hit twice.","rankDescriptions":["Blade of the Empire now has a 30% chance to cause your next auto attack to hit twice."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30881","treeId":"coa-cultist-64","index":30881,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/nhi_arcanearrow_border.png","maxRank":1,"name":"Netherstrike","description":"Generates 10 Insanity Strike an enemy quickly for 125% Weapon Damage plus 48 Shadow damage, purging 1 beneficial magic effect from them. Only usable on enemies below 35% health.","rankDescriptions":["Generates 10 Insanity Strike an enemy quickly for 125% Weapon Damage plus 48 Shadow damage, purging 1 beneficial magic effect from them. Only usable on enemies below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12562","treeId":"coa-cultist-64","index":12562,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/nhi_shadowasphyxiation_border.png","maxRank":1,"name":"Warrior of the Old Gods","description":"Increases the Weapon Damage dealt by Hammer of Twilight and Entropic Slam by 20%.","rankDescriptions":["Increases the Weapon Damage dealt by Hammer of Twilight and Entropic Slam by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4845","treeId":"coa-cultist-64","index":4845,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/ability_rogue_nightblade.png","maxRank":1,"name":"Residual Energy","description":"Doubles the duration of Shadow of the Void.","rankDescriptions":["Doubles the duration of Shadow of the Void."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6542","treeId":"coa-cultist-64","index":6542,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/spell_nzinsanity_shortsighted.png","maxRank":1,"name":"Hysterical Momentum","description":"Damage dealt by Blade of the Empire increases your melee haste by 3% for 8 seconds, stacking 3 times.","rankDescriptions":["Damage dealt by Blade of the Empire increases your melee haste by 3% for 8 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7554","treeId":"coa-cultist-64","index":7554,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_helm_cloth_eyeballhat_b_01.png","maxRank":1,"name":"Voidseeker","description":"Melee attacks now have a 10% chance to reset the cooldown of your Netherstrike, allowing the next use regardless of the target's health for 8 seconds.","rankDescriptions":["Melee attacks now have a 10% chance to reset the cooldown of your Netherstrike, allowing the next use regardless of the target's health for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10983","treeId":"coa-cultist-64","index":10983,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/nhi_void_blackhole_border.png","maxRank":1,"name":"Touch of the Void","description":"Increases your Magic damage dealt by 3% and Hammer of Twilight now increases the target's spell damage taken by 10% for 15 seconds.","rankDescriptions":["Increases your Magic damage dealt by 3% and Hammer of Twilight now increases the target's spell damage taken by 10% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30845","treeId":"coa-cultist-64","index":30845,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/nhi_shadowwatcher_border.png","maxRank":1,"name":"Encroaching Presence","description":"Your melee critical strikes reduce the cooldown of Rift and Gaze of C'Thun by -3 sec.","rankDescriptions":["Your melee critical strikes reduce the cooldown of Rift and Gaze of C'Thun by -3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7563","treeId":"coa-cultist-64","index":7563,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_hand_1h_shaclaw.png","maxRank":1,"name":"Twilight's Call","description":"Level 30 Passive Critical strikes with Hammer of Twilight now refund 10 Insanity.","rankDescriptions":["Level 30 Passive Critical strikes with Hammer of Twilight now refund 10 Insanity."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7556","treeId":"coa-cultist-64","index":7556,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/achievement_nazmir_boss_mythraxtheunraveler.png","maxRank":1,"name":"Teachings of Mythrax","description":"Increases the duration of Presence of N'Zoth and Presence of Y'Shaarj by 25%.","rankDescriptions":["Increases the duration of Presence of N'Zoth and Presence of Y'Shaarj by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7555","treeId":"coa-cultist-64","index":7555,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_demonhunter_darkness.png","maxRank":1,"name":"Empire's Grasp","description":"Teleport an enemy to your position and slow their movement speed by -60% for 4 seconds.","rankDescriptions":["Teleport an enemy to your position and slow their movement speed by -60% for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33889","treeId":"coa-cultist-64","index":33889,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_weapon_shortblade_60.png","maxRank":1,"name":"God Blade","description":"Your Rift now guarantees your next Hammer of Twilight to critically strike.","rankDescriptions":["Your Rift now guarantees your next Hammer of Twilight to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30512","treeId":"coa-cultist-64","index":30512,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/custom_t_shadowstab_border.png","maxRank":2,"name":"Abyssal Cleave","description":"Your Gaze of C'Thun now strikes 1 additional nearby enemy.","rankDescriptions":["Your Gaze of C'Thun now strikes 1 additional nearby enemy.","Your Gaze of C'Thun now strikes 1 additional nearby enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30511","treeId":"coa-cultist-64","index":30511,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/spell_priest_voidtendrils.png","maxRank":1,"name":"Tentacle of N'Zoth","description":"Target an enemy and summon a Tentacle of N'Zoth on the ground near them that will silence them and deal 117 + 75% SP Shadow damage every 2 sec for 8 seconds. If your target runs out of range, the tentacle will seek a new target. The tentacle gains health based on your Stamina. If the tentacle dies, the silence effect will end.","rankDescriptions":["Target an enemy and summon a Tentacle of N'Zoth on the ground near them that will silence them and deal 117 + 75% SP Shadow damage every 2 sec for 8 seconds. If your target runs out of range, the tentacle will seek a new target. The tentacle gains health based on your Stamina. If the tentacle dies, the silence effect will end."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7609","treeId":"coa-cultist-64","index":7609,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_fire_twilighthellfire.png","maxRank":1,"name":"Seething Void","description":"Reduces the cooldown of Empire's Grasp by -5 sec.","rankDescriptions":["Reduces the cooldown of Empire's Grasp by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29272","treeId":"coa-cultist-64","index":29272,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/custom_167_border.png","maxRank":1,"name":"End Times","description":"Increases the range of Blade of the Empire, Netherstrike, and Hammer of Twilight by 25 yds and reduces their mana costs by -50% for 15 seconds.","rankDescriptions":["Increases the range of Blade of the Empire, Netherstrike, and Hammer of Twilight by 25 yds and reduces their mana costs by -50% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30515","treeId":"coa-cultist-64","index":30515,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/spell_nzinsanity_chasedbyshadows.png","maxRank":1,"name":"Oblivion's Embrace","description":"Increases the critical damage of your Hammer of Twilight by 25%.","rankDescriptions":["Increases the critical damage of your Hammer of Twilight by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9298","treeId":"coa-cultist-64","index":9298,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/achievement_nzothraid_nzoth.png","maxRank":1,"name":"Void Strength","description":"Level 40 Passive Increases your Shadow spell damage by 50% of your Strength and your spell hit chance by 5% of your Strength.","rankDescriptions":["Level 40 Passive Increases your Shadow spell damage by 50% of your Strength and your spell hit chance by 5% of your Strength."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-7559","treeId":"coa-cultist-64","index":7559,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_eyeofnzothpet.png","maxRank":1,"name":"Eye of N'zoth","description":"Increases the critical strike chance and critical damage of your Tentacles by 10%.","rankDescriptions":["Increases the critical strike chance and critical damage of your Tentacles by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7557","treeId":"coa-cultist-64","index":7557,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/achievement_zone_netherstorm_01.png","maxRank":1,"name":"Who Needs Sanity?","description":"Each stack of Insanity increases the critical damage of your Netherstrike by 1%.","rankDescriptions":["Each stack of Insanity increases the critical damage of your Netherstrike by 1%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33949","treeId":"coa-cultist-64","index":33949,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/spell_shadow_summonvoidwalker.png","maxRank":1,"name":"Netherborne","description":"Increases the critical damage of Netherstrike by 25%.","rankDescriptions":["Increases the critical damage of Netherstrike by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30526","treeId":"coa-cultist-64","index":30526,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/spell_shadow_shadetruesight.png","maxRank":1,"name":"Instilling Fear","description":"While above 60 Insanity, your Netherstrike and Gaze of C'Thun now gain 10% increased critical strike chance.","rankDescriptions":["While above 60 Insanity, your Netherstrike and Gaze of C'Thun now gain 10% increased critical strike chance."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13897","treeId":"coa-cultist-64","index":13897,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/potent_void_effigy.png","maxRank":1,"name":"Glory to N'Zoth","description":"While Shadow of the Void is active, you now take -15% reduced damage.","rankDescriptions":["While Shadow of the Void is active, you now take -15% reduced damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33947","treeId":"coa-cultist-64","index":33947,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/ability_hunter_pet_netherray.png","maxRank":1,"name":"Void Rage","description":"Increases the Shadow damage increased through Shadow of the Void by 5%.","rankDescriptions":["Increases the Shadow damage increased through Shadow of the Void by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6664","treeId":"coa-cultist-64","index":6664,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/achievement_nzothraid_nyalothaguildrun.png","maxRank":1,"name":"Eldritch Obelisk","description":"Create an Eldritch Obelisk beneath you for 20 seconds, increasing the damage of your Tentacles by 100% and the movement speed of allies by 40% while near it.","rankDescriptions":["Create an Eldritch Obelisk beneath you for 20 seconds, increasing the damage of your Tentacles by 100% and the movement speed of allies by 40% while near it."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7564","treeId":"coa-cultist-64","index":7564,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_dhmurloc_purple.png","maxRank":1,"name":"Nutcase","description":"Your Shadow of the Void now also increases your critical damage dealt by 10%.","rankDescriptions":["Your Shadow of the Void now also increases your critical damage dealt by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7558","treeId":"coa-cultist-64","index":7558,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/nhi_void_wraith_border.png","maxRank":1,"name":"Voidborne","description":"Tap into your inner voidborne rage, increasing your damage dealt and critical strike chance by 25%, and granting you immunity to stun effects for 15 seconds. Generates 1 Insanity every 1 sec.","rankDescriptions":["Tap into your inner voidborne rage, increasing your damage dealt and critical strike chance by 25%, and granting you immunity to stun effects for 15 seconds. Generates 1 Insanity every 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11298","treeId":"coa-cultist-64","index":11298,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_nzothfish_void.png","maxRank":1,"name":"Blessing of N'Zoth","description":"Level 50 Passive Increases your attack power by 100% of your Intellect.","rankDescriptions":["Level 50 Passive Increases your attack power by 100% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7941","treeId":"coa-cultist-64","index":7941,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_mount_voidelfstridermount.png","maxRank":1,"name":"Twilight Domination","description":"Damage dealt by your Tentacles reduces the cooldown of Eldritch Obelisk by -2 sec. In addition, increases the effectiveness of Eldritch Obelisk by 25%.","rankDescriptions":["Damage dealt by your Tentacles reduces the cooldown of Eldritch Obelisk by -2 sec. In addition, increases the effectiveness of Eldritch Obelisk by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7565","treeId":"coa-cultist-64","index":7565,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/_book2_purple.png","maxRank":1,"name":"Book of N'Zoth","description":"Your Shadow of the Void now stacks 1 additional time.","rankDescriptions":["Your Shadow of the Void now stacks 1 additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30516","treeId":"coa-cultist-64","index":30516,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_stormdragonvoidmount.png","maxRank":1,"name":"Shadow Fiend","description":"Reduces the cooldown of your Voidborne by -90 sec and increases its duration by 5 sec.","rankDescriptions":["Reduces the cooldown of your Voidborne by -90 sec and increases its duration by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31190","treeId":"coa-cultist-65","index":31190,"prerequisiteId":"coa-entry-4041","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4041","requiredRank":1},{"talentId":"coa-entry-29470","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/spell_shadow_unstableaffliction_3_purple.png","maxRank":1,"name":"Darkwither","description":"Generates 10 Insanity Wither an enemy, dealing 135 Shadow damage over 15 seconds. Each instance of damage reduces their periodic healing taken by -5%, stacking up to 4 times.","rankDescriptions":["Generates 10 Insanity Wither an enemy, dealing 135 Shadow damage over 15 seconds. Each instance of damage reduces their periodic healing taken by -5%, stacking up to 4 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4041","treeId":"coa-cultist-65","index":4041,"prerequisiteId":"coa-entry-29470","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29470","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/cthunicon.png","maxRank":1,"name":"Corrupting Whispers","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":10,"isPassive":false},{"id":"coa-entry-6559","treeId":"coa-cultist-65","index":6559,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/inv_misc_volatileshadow.png","maxRank":1,"name":"Absolute Horror","description":"Reduces the cast time of Horrorbolt and Wrath of the Black Empire by 0.3 sec.","rankDescriptions":["Reduces the cast time of Horrorbolt and Wrath of the Black Empire by 0.3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6327","treeId":"coa-cultist-65","index":6327,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/spell_shadow_mindtwisting.png","maxRank":2,"name":"Feeding Darkness","description":"Increases the range of your Corruption spells by 6 yds and their chance to critically strike by 4%.","rankDescriptions":["Increases the range of your Corruption spells by 3 yds and their chance to critically strike by 2%.","Increases the range of your Corruption spells by 6 yds and their chance to critically strike by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6557","treeId":"coa-cultist-65","index":6557,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/ability_racial_shadowmeld.png","maxRank":2,"name":"Moment of Clarity","description":"Reduces spell pushback suffered from damaging attacks by 70% and increases mana generated by Sanity Tap by 10%.","rankDescriptions":["Reduces spell pushback suffered from damaging attacks by 35% and increases mana generated by Sanity Tap by 5%.","Reduces spell pushback suffered from damaging attacks by 70% and increases mana generated by Sanity Tap by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7052","treeId":"coa-cultist-65","index":7052,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_wand_1h_nzothraid_d_01.png","maxRank":1,"name":"Call of N'Zoth","description":"Increases the duration of Darkwither by 9 sec.","rankDescriptions":["Increases the duration of Darkwither by 9 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13052","treeId":"coa-cultist-65","index":13052,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_knife_1h_artifactcthun_d_02.png","maxRank":1,"name":"Call of C'Thun","description":"Your Darkwither's healing reduction now stacks 3 additional times and its tick rate is increased by -25%.","rankDescriptions":["Your Darkwither's healing reduction now stacks 3 additional times and its tick rate is increased by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33937","treeId":"coa-cultist-65","index":33937,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/spell_shadow_gathershadows.png","maxRank":1,"name":"Servant of C'Thun","description":"Casting Gaze of C'thun now always triggers your Presence of C'Thun while it is active.Presence of C'Thun (Buff)Increases your haste by 20% for 6 seconds.","rankDescriptions":["Casting Gaze of C'thun now always triggers your Presence of C'Thun while it is active.Presence of C'Thun (Buff)Increases your haste by 20% for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5254","treeId":"coa-cultist-65","index":5254,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_priest_void_flay.png","maxRank":1,"name":"Dark Magician","description":"Level 20 Passive Increases your critical damage dealt by 50% and your spell power by 30% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your critical damage dealt by 50% and your spell power by 30% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-29471","treeId":"coa-cultist-65","index":29471,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/inv_artifact_powerofthedarkside.png","maxRank":1,"name":"Eldritch Devastation","description":"Channel upon an enemy, chaining to nearby enemies, dealing 60 + 132% shadow SP Shadow damage over 6 seconds, dealing less damage with each enemy struck.","rankDescriptions":["Channel upon an enemy, chaining to nearby enemies, dealing 60 + 132% shadow SP Shadow damage over 6 seconds, dealing less damage with each enemy struck."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7056","treeId":"coa-cultist-65","index":7056,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/nhi_shadoweye_border.png","maxRank":1,"name":"Obliteration Beam","description":"Generates 10 Insanity Unleash a beam of eldritch energy, dealing 126 + 65% shadow SP Shadow damage to an enemy and all nearby enemies. While above 60 Insanity, deals 20% more damage.","rankDescriptions":["Generates 10 Insanity Unleash a beam of eldritch energy, dealing 126 + 65% shadow SP Shadow damage to an enemy and all nearby enemies. While above 60 Insanity, deals 20% more damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29270","treeId":"coa-cultist-65","index":29270,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/ability_bossgorefiend_touchofdoom.png","maxRank":1,"name":"Unrelenting Void","description":"Periodic or channeled damage now increases the damage the enemy takes from you by 2% for 10 seconds, stacking 10 times.","rankDescriptions":["Periodic or channeled damage now increases the damage the enemy takes from you by 2% for 10 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33939","treeId":"coa-cultist-65","index":33939,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/spell_shadow_mindshear.png","maxRank":1,"name":"Mind Rot","description":"Periodic or channeled damage dealt now has a 25% chance to curse your target, applying Mind Rot.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.","rankDescriptions":["Periodic or channeled damage dealt now has a 25% chance to curse your target, applying Mind Rot.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."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6312","treeId":"coa-cultist-65","index":6312,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/nhi_shadowwatcher_border.png","maxRank":2,"name":"Cunning Nature","description":"Increases your chance to hit by 6% and reduces threat generated by Shadow damage spells by -30%.","rankDescriptions":["Increases your chance to hit by 3% and reduces threat generated by Shadow damage spells by -15%.","Increases your chance to hit by 6% and reduces threat generated by Shadow damage spells by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30671","treeId":"coa-cultist-65","index":30671,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/spell_shadow_summonvoidwalker.png","maxRank":1,"name":"Dark Revelation","description":"Grants your Horrorbolt and Wrath of the Black Empire a 20% chance to reset the cooldown of Gaze of C'thun.","rankDescriptions":["Grants your Horrorbolt and Wrath of the Black Empire a 20% chance to reset the cooldown of Gaze of C'thun."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2312","treeId":"coa-cultist-65","index":2312,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/_scrollofspeed_purple.png","maxRank":1,"name":"Whispers of C'Thun","description":"Level 30 Passive Your Gaze of C'Thun now generates 10 Insanity.","rankDescriptions":["Level 30 Passive Your Gaze of C'Thun now generates 10 Insanity."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7057","treeId":"coa-cultist-65","index":7057,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_eyeofnzothpet.png","maxRank":1,"name":"Corruptor's Gaze","description":"Increases the damage of your Tentacles by 20%.","rankDescriptions":["Increases the damage of your Tentacles by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9935","treeId":"coa-cultist-65","index":9935,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/spell_shadow_burningspirit.png","maxRank":1,"name":"Dread","description":"Increases the damage of Darkwither by 30%.","rankDescriptions":["Increases the damage of Darkwither by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7071","treeId":"coa-cultist-65","index":7071,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/nhi_void_whirl_border.png","maxRank":1,"name":"Visions","description":"Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, your Shadow damage is increased by 3%.","rankDescriptions":["Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, your Shadow damage is increased by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33938","treeId":"coa-cultist-65","index":33938,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/novart_magicspell_(88)_border.png","maxRank":1,"name":"Worrysome Idol","description":"Increases your spell haste by 4% and causes you to regenerate mana equal to 1% of your missing mana every 10 sec.","rankDescriptions":["Increases your spell haste by 4% and causes you to regenerate mana equal to 1% of your missing mana every 10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11935","treeId":"coa-cultist-65","index":11935,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/spell_shadow_unholyfrenzy.png","maxRank":1,"name":"Horrific Visions","description":"While above 40 Insanity, your chance to trigger Dark Revelation is now increased by 10%.","rankDescriptions":["While above 40 Insanity, your chance to trigger Dark Revelation is now increased by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7072","treeId":"coa-cultist-65","index":7072,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/spell_shadow_chilltouch.png","maxRank":1,"name":"Foulness","description":"Increases the damage bonus provided by your Corrupting Whispers by 5%.","rankDescriptions":["Increases the damage bonus provided by your Corrupting Whispers by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33942","treeId":"coa-cultist-65","index":33942,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/ability_warlock_howlofterror.png","maxRank":1,"name":"Terror","description":"Increases the spell damage bonus of Horrorbolt by 10% and Wrath of the Empire by 20%.","rankDescriptions":["Increases the spell damage bonus of Horrorbolt by 10% and Wrath of the Empire by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1375","treeId":"coa-cultist-65","index":1375,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_priest_voidsear.png","maxRank":1,"name":"Psychic Suppression","description":"Stun an enemy, dealing 30 + 55% shadow SP + 10% AP Shadow damage every 1 sec for 5 seconds. The target takes 15% more spell damage from all sources while you are channeling this spell.","rankDescriptions":["Stun an enemy, dealing 30 + 55% shadow SP + 10% AP Shadow damage every 1 sec for 5 seconds. The target takes 15% more spell damage from all sources while you are channeling this spell."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33945","treeId":"coa-cultist-65","index":33945,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/nhi_shadowchains_border.png","maxRank":1,"name":"Inner Turmoil","description":"Increases the damage of Wrath of the Black Empire by 25%.","rankDescriptions":["Increases the damage of Wrath of the Black Empire by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7058","treeId":"coa-cultist-65","index":7058,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/ability_hunter_mastertactitian.png","maxRank":2,"name":"Glimpse of Madness","description":"Reduces the cooldown of Obliteration Beam by -40% and it now applies Madness to all targets struck. MadnessYour Gaze of C'thun causes 3% increased damage, stacks up to 5 times.","rankDescriptions":["Reduces the cooldown of Obliteration Beam by -20% and it now applies Madness to all targets struck. MadnessYour Gaze of C'thun causes 3% increased damage, stacks up to 5 times.","Reduces the cooldown of Obliteration Beam by -40% and it now applies Madness to all targets struck. MadnessYour Gaze of C'thun causes 3% increased damage, stacks up to 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4392","treeId":"coa-cultist-65","index":4392,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/spell_nzinsanity_desynchronized.png","maxRank":1,"name":"Dark Revelation","description":"Level 40 Passive Grants all periodic damage and damage dealt a 6% chance to reset the cooldown of Gaze of C'Thun and generate 5 Insanity.","rankDescriptions":["Level 40 Passive Grants all periodic damage and damage dealt a 6% chance to reset the cooldown of Gaze of C'Thun and generate 5 Insanity."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-29477","treeId":"coa-cultist-65","index":29477,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_priest_void_blast.png","maxRank":1,"name":"Yawning Decay","description":"Every 3rd Horrorbolt cast causes your next successful Horrorbolt to deal an additional 50% of the initial damage to the target over 3 seconds.","rankDescriptions":["Every 3rd Horrorbolt cast causes your next successful Horrorbolt to deal an additional 50% of the initial damage to the target over 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29478","treeId":"coa-cultist-65","index":29478,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_shadow_painandsuffering.png","maxRank":1,"name":"Embrace the Void","description":"Reaching 60 Insanity increases your damage dealt by 10% for 10 seconds.","rankDescriptions":["Reaching 60 Insanity increases your damage dealt by 10% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33957","treeId":"coa-cultist-65","index":33957,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/achievement_dungeon_lordstormsong.png","maxRank":1,"name":"Misery","description":"Casting Gaze of C'Thun now reduces the cooldown of Psychic Suppression and Grasp of Zek'voz by -1 sec.","rankDescriptions":["Casting Gaze of C'Thun now reduces the cooldown of Psychic Suppression and Grasp of Zek'voz by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31356","treeId":"coa-cultist-65","index":31356,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_ascend_book_b_03.png","maxRank":1,"name":"Occultism","description":"Increases the critical strike chance of Wrath of the Black Empire by 10%.","rankDescriptions":["Increases the critical strike chance of Wrath of the Black Empire by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33936","treeId":"coa-cultist-65","index":33936,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/_soulharvest2__purple.png","maxRank":1,"name":"Depths of Madness","description":"Damage dealt by Gaze of C'Thun now has a 15% to chance to spawn a void portal that casts either Gaze of C'thun, Horrorbolt, or Obliteration Beam before disappearing.","rankDescriptions":["Damage dealt by Gaze of C'Thun now has a 15% to chance to spawn a void portal that casts either Gaze of C'thun, Horrorbolt, or Obliteration Beam before disappearing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33959","treeId":"coa-cultist-65","index":33959,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_shadowsrising_border.png","maxRank":1,"name":"Dark Whispers","description":"Casting Horrorbolt now grants Inspired Malice for 12 seconds. Inspired MaliceYour next Gaze of C'thun, Darkwither or Wrath of the Black Empire will be empowered. Gaze of C'thun: Critical strike chance increased by 20%. Darkwither: Shadow damage dealt increased by 5% and damage of Darkwither by an additional 15% for 10 seconds. Wrath of the Black Empire: Deals 25% increased damage.","rankDescriptions":["Casting Horrorbolt now grants Inspired Malice for 12 seconds. Inspired MaliceYour next Gaze of C'thun, Darkwither or Wrath of the Black Empire will be empowered. Gaze of C'thun: Critical strike chance increased by 20%. Darkwither: Shadow damage dealt increased by 5% and damage of Darkwither by an additional 15% for 10 seconds. Wrath of the Black Empire: Deals 25% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33953","treeId":"coa-cultist-65","index":33953,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_priest_shadow_mend.png","maxRank":1,"name":"Abyssal Destruction","description":"Periodic or channeled damage dealt now reduces the cooldown of your Obliteration Beam by -1 sec and grants 1 stack of Abyssal Destruction.Abyssal DestructionIncreases the damage dealt of your next Obliteration Beam by 5%, stacking 10 times, for 15 seconds.","rankDescriptions":["Periodic or channeled damage dealt now reduces the cooldown of your Obliteration Beam by -1 sec and grants 1 stack of Abyssal Destruction.Abyssal DestructionIncreases the damage dealt of your next Obliteration Beam by 5%, stacking 10 times, for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29476","treeId":"coa-cultist-65","index":29476,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/nhi_void_conquer_border.png","maxRank":1,"name":"Apocalyptic Skies","description":"Casting Wrath of the Black Empire now spawns a void portal that casts either Gaze of C'thun, Horrorbolt, or Obliteration Beam before disappearing.","rankDescriptions":["Casting Wrath of the Black Empire now spawns a void portal that casts either Gaze of C'thun, Horrorbolt, or Obliteration Beam before disappearing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4393","treeId":"coa-cultist-65","index":4393,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_inscription_talenttome01.png","maxRank":1,"name":"Blessing of C'Thun","description":"Level 50 Passive Your Darkwither can now critically strike and your spell hit rating is increased by 5% of your Intellect.","rankDescriptions":["Level 50 Passive Your Darkwither can now critically strike and your spell hit rating is increased by 5% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7938","treeId":"coa-cultist-65","index":7938,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/5_normal20shadowrain_border.png","maxRank":1,"name":"Horrorbolt Volley","description":"After casting 3 Horrorbolts, it transforms into Horrorbolt Volley for 15 seconds. Horrorbolt VolleyGenerates 10 Insanity Inflict sheer horror on up to 5 enemies, dealing 607 + 28% shadow SP Shadow damage.","rankDescriptions":["After casting 3 Horrorbolts, it transforms into Horrorbolt Volley for 15 seconds. Horrorbolt VolleyGenerates 10 Insanity Inflict sheer horror on up to 5 enemies, dealing 607 + 28% shadow SP Shadow damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5176","treeId":"coa-cultist-65","index":5176,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/void_hided_limb.png","maxRank":1,"name":"Ancient Curse","description":"Generates 20 Insanity Curse an enemy, dealing 326 + 100% SP Shadow damage and increasing all Shadow damage they take from you by 10% for 10 seconds. Upon expiration, it deals an additional 1233 + 100% shadow SP Shadow damage to the target.","rankDescriptions":["Generates 20 Insanity Curse an enemy, dealing 326 + 100% SP Shadow damage and increasing all Shadow damage they take from you by 10% for 10 seconds. Upon expiration, it deals an additional 1233 + 100% shadow SP Shadow damage to the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29266","treeId":"coa-cultist-65","index":29266,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_shadow_shadetruesight.png","maxRank":1,"name":"Sunderer of Realities","description":"Casting Wrath of the Black Empire now causes your subsequent Wraths of the Black Empire, within 15 seconds, to deal 15% more damage each and unleash Apocalyptic Skies upon the enemy.Apocalyptic SkiesSpawns a void portal that casts either Gaze of C'thun, Horrorbolt, or Obliteration Beam before disappearing.","rankDescriptions":["Casting Wrath of the Black Empire now causes your subsequent Wraths of the Black Empire, within 15 seconds, to deal 15% more damage each and unleash Apocalyptic Skies upon the enemy.Apocalyptic SkiesSpawns a void portal that casts either Gaze of C'thun, Horrorbolt, or Obliteration Beam before disappearing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31191","treeId":"coa-cultist-66","index":31191,"prerequisiteId":"coa-entry-4042","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4042","requiredRank":1},{"talentId":"coa-entry-29265","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_mace_1h_orgrimmarraid_d_03.png","maxRank":1,"name":"Malevolence","description":"Generates 10 Insanity Smash an enemy with eldritch force, dealing 40 + 10% AP + 52% SP Shadow damage and applying Black Blood to 5 nearby allies, healing them for 25 + 10% AP, repeating every 3 sec for 15 seconds. Usable while moving. Additional applications of Black Blood do not refresh the duration.","rankDescriptions":["Generates 10 Insanity Smash an enemy with eldritch force, dealing 40 + 10% AP + 52% SP Shadow damage and applying Black Blood to 5 nearby allies, healing them for 25 + 10% AP, repeating every 3 sec for 15 seconds. Usable while moving. Additional applications of Black Blood do not refresh the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4042","treeId":"coa-cultist-66","index":4042,"prerequisiteId":"coa-entry-29265","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29265","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/yogg-saronicon.png","maxRank":1,"name":"Herald of the Depths","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-33935","treeId":"coa-cultist-66","index":33935,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/inv_weapon_shortblade_52.png","maxRank":2,"name":"Blade of Yogg-Saron","description":"Damage dealt by Blade of the Empire now heals the lowest health ally for 70% of the damage dealt plus 198 + 20% healing + 5% AP.","rankDescriptions":["Damage dealt by Blade of the Empire now heals the lowest health ally for 35% of the damage dealt plus 198 + 20% healing + 5% AP.","Damage dealt by Blade of the Empire now heals the lowest health ally for 70% of the damage dealt plus 198 + 20% healing + 5% AP."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30522","treeId":"coa-cultist-66","index":30522,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/mocking_banner.png","maxRank":2,"name":"Shadow Pennant","description":"You now heal the lowest health ally affected by Black Blood for 100% of your auto attack damage.","rankDescriptions":["You now heal the lowest health ally affected by Black Blood for 50% of your auto attack damage.","You now heal the lowest health ally affected by Black Blood for 100% of your auto attack damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31324","treeId":"coa-cultist-66","index":31324,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_sword_2h_artifactashbringershadow_d_03.png","maxRank":1,"name":"Malevolent Power","description":"Every 3rd melee ability you cast now causes your next Eldritch Mending to become instant cast and cost -20% less mana.","rankDescriptions":["Every 3rd melee ability you cast now causes your next Eldritch Mending to become instant cast and cost -20% less mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7894","treeId":"coa-cultist-66","index":7894,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_helm_cloth_eyeballhat_b_01.png","maxRank":1,"name":"Abyssal Covenant","description":"Link yourself to an ally for 30 minutes, transfering 10% of all damage taken by them to you and causing 20% of all damage you deal to be converted into healing for them. Can only be applied to 1 ally at a time.","rankDescriptions":["Link yourself to an ally for 30 minutes, transfering 10% of all damage taken by them to you and causing 20% of all damage you deal to be converted into healing for them. Can only be applied to 1 ally at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6666","treeId":"coa-cultist-66","index":6666,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/spell_priest_void_flay.png","maxRank":1,"name":"Twisted Sanity","description":"Allies affected by your Black Blood are now healed for 30% of the damage dealt by your Tentacles.","rankDescriptions":["Allies affected by your Black Blood are now healed for 30% of the damage dealt by your Tentacles."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9295","treeId":"coa-cultist-66","index":9295,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/achievement_dungeon_aqusirr.png","maxRank":1,"name":"Shadow Training","description":"Level 20 Passive Increases the healing done by Eldritch Mending by 50% and Gaze of C'Thun by 100%. In addition, you are now unable to miss your attacks and you cannot be parried or dodged.","rankDescriptions":["Level 20 Passive Increases the healing done by Eldritch Mending by 50% and Gaze of C'Thun by 100%. In addition, you are now unable to miss your attacks and you cannot be parried or dodged."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-29267","treeId":"coa-cultist-66","index":29267,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/inv_eyeofnzothpet.png","maxRank":1,"name":"Eldritch Eye","description":"Invoke the Old Gods for 15 seconds, removing the cast time of your next 3 Eldritch Mendings or Malevolences and causing them to critically strike.","rankDescriptions":["Invoke the Old Gods for 15 seconds, removing the cast time of your next 3 Eldritch Mendings or Malevolences and causing them to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7900","treeId":"coa-cultist-66","index":7900,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_shadow_sealofkings.png","maxRank":1,"name":"Dark Protection","description":"Allies affected by Abyssal Covenant now also take 20% increased healing from you.","rankDescriptions":["Allies affected by Abyssal Covenant now also take 20% increased healing from you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33887","treeId":"coa-cultist-66","index":33887,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_shoulder_cloth_nzothraidmythic_d_01.png","maxRank":1,"name":"Lead the Covenant","description":"50% of all healing done to allies through Abyssal Covenant is now replicated to you.","rankDescriptions":["50% of all healing done to allies through Abyssal Covenant is now replicated to you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33966","treeId":"coa-cultist-66","index":33966,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/inv_nullstone_shadow.png","maxRank":1,"name":"Forbidden Ritual","description":"Chant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 225 + 50% healing damage for 10 seconds.","rankDescriptions":["Chant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 225 + 50% healing damage for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33931","treeId":"coa-cultist-66","index":33931,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/ability_priest_psychiclink.png","maxRank":2,"name":"Saronite Mind","description":"Your Eldritch Eye now affects 1 additional cast.","rankDescriptions":["Your Eldritch Eye now affects 1 additional cast.","Your Eldritch Eye now affects 1 additional cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7083","treeId":"coa-cultist-66","index":7083,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_inscription_scroll_fortitude.png","maxRank":1,"name":"As The Prophecy Foretold","description":"Melee critical strikes now refresh a charge of Blade of the Empire and restore 5% of your base mana.","rankDescriptions":["Melee critical strikes now refresh a charge of Blade of the Empire and restore 5% of your base mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33930","treeId":"coa-cultist-66","index":33930,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/achievement_leader_prophet_velen.png","maxRank":1,"name":"Prophetic Compulsion","description":"While Black Blood is active on an ally, healing done to them by your Gaze of C'Thun has a 15% increased chance to critically strike.","rankDescriptions":["While Black Blood is active on an ally, healing done to them by your Gaze of C'Thun has a 15% increased chance to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9296","treeId":"coa-cultist-66","index":9296,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_deathknight_aoedeathgrip.png","maxRank":1,"name":"Void-Touched","description":"Level 30 Passive Direct healing done now applies Void-Touched.Void-Touched (Stacks)Marks the ally for 30 seconds, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 304 + 35% healing, increased based on how many stacks were on them.","rankDescriptions":["Level 30 Passive Direct healing done now applies Void-Touched.Void-Touched (Stacks)Marks the ally for 30 seconds, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 304 + 35% healing, increased based on how many stacks were on them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-33925","treeId":"coa-cultist-66","index":33925,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/spell_fire_twilightimmolation.png","maxRank":1,"name":"Protection From Light","description":"Reduces all damage taken by party and raid members by -3%. In addition, your Holy damage taken is reduced by -10%.","rankDescriptions":["Reduces all damage taken by party and raid members by -3%. In addition, your Holy damage taken is reduced by -10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33975","treeId":"coa-cultist-66","index":33975,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_enchant_voidcrystal.png","maxRank":1,"name":"Dark Rites","description":"While Herald of the Depths is active, your movement speed cannot be reduced below 100% of normal value.","rankDescriptions":["While Herald of the Depths is active, your movement speed cannot be reduced below 100% of normal value."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12975","treeId":"coa-cultist-66","index":12975,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/spell_arcane_prismaticcloak.png","maxRank":1,"name":"Dark Matter","description":"Channeling Satiate now heals all allies within 30 yds for 208 + 20% healing every 1 sec for 10 seconds.","rankDescriptions":["Channeling Satiate now heals all allies within 30 yds for 208 + 20% healing every 1 sec for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4536","treeId":"coa-cultist-66","index":4536,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_shadowwatcher_border.png","maxRank":2,"name":"Persistent Prayers","description":"Increases the duration and absorption amount of Void Shield and Forbidden Ritual by 50%.","rankDescriptions":["Increases the duration and absorption amount of Void Shield and Forbidden Ritual by 25%.","Increases the duration and absorption amount of Void Shield and Forbidden Ritual by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6948","treeId":"coa-cultist-66","index":6948,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/spell_shadow_summonvoidwalker.png","maxRank":1,"name":"Yogg-Saron's Embrace","description":"Increases your attack power and your maximum mana by 10%.","rankDescriptions":["Increases your attack power and your maximum mana by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30936","treeId":"coa-cultist-66","index":30936,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/nhi_void_stab_border.png","maxRank":1,"name":"Forbidden Strength","description":"While Herald of the Depths is active, the critical strike chance of Blade of the Empire is increased by 10%.","rankDescriptions":["While Herald of the Depths is active, the critical strike chance of Blade of the Empire is increased by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33934","treeId":"coa-cultist-66","index":33934,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_helm_armor_voidelf_d_01.png","maxRank":1,"name":"Forbidden Resilience","description":"While Herald of the Depths is active, you now take -15% less damage and have a 25% increased chance to resist dispel effects.","rankDescriptions":["While Herald of the Depths is active, you now take -15% less damage and have a 25% increased chance to resist dispel effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4934","treeId":"coa-cultist-66","index":4934,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/custom_t_orbofshadow_border.png","maxRank":1,"name":"Blade of the Depths","description":"While Herald of the Depths is active, your Forbidden Ritual will cooldown faster.","rankDescriptions":["While Herald of the Depths is active, your Forbidden Ritual will cooldown faster."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30036","treeId":"coa-cultist-66","index":30036,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_mage_thermalvoid.png","maxRank":1,"name":"Dark Infusion","description":"3 Charges, 30 sec recharge Infuse an ally with dark energy, healing them for 66 the next time they take damage. When the heal occurs, Dark Infusion is consumed and expands to the two lowest-health nearby party or raid members. Each secondary infusion heals when triggered, then expands to three nearby allies.","rankDescriptions":["3 Charges, 30 sec recharge Infuse an ally with dark energy, healing them for 66 the next time they take damage. When the heal occurs, Dark Infusion is consumed and expands to the two lowest-health nearby party or raid members. Each secondary infusion heals when triggered, then expands to three nearby allies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29344","treeId":"coa-cultist-66","index":29344,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_priest_burningwill_shadow.png","maxRank":1,"name":"Dark Veil","description":"Channel a shield of void energies upon an ally, causing both you and them to absorb 875 + 100% healing + 25% AP damage, stacking 5 times, every 1 sec for 5 seconds. At the end of the duration, if the shield holds, you teleport to them. While channeling you are immune to stuns and silences. Not usable on yourself.","rankDescriptions":["Channel a shield of void energies upon an ally, causing both you and them to absorb 875 + 100% healing + 25% AP damage, stacking 5 times, every 1 sec for 5 seconds. At the end of the duration, if the shield holds, you teleport to them. While channeling you are immune to stuns and silences. Not usable on yourself."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6982","treeId":"coa-cultist-66","index":6982,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_misc_cat_trinket05.png","maxRank":1,"name":"Saronite Cube","description":"Melee ability damage now reduces the duration of Wracked Mind by -1 sec on all allies within 30 yds.","rankDescriptions":["Melee ability damage now reduces the duration of Wracked Mind by -1 sec on all allies within 30 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12982","treeId":"coa-cultist-66","index":12982,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/_curse_purple.png","maxRank":1,"name":"Devour Curse","description":"Devour dark magic on an ally, dispelling 2 curse effects from them and healing you for 90 + 65% SP.","rankDescriptions":["Devour dark magic on an ally, dispelling 2 curse effects from them and healing you for 90 + 65% SP."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4196","treeId":"coa-cultist-66","index":4196,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_belt_armor_voidelf_d_01.png","maxRank":1,"name":"Void Power","description":"Your healing power is increased based on your main-hand weapon damage.","rankDescriptions":["Your healing power is increased based on your main-hand weapon damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-30935","treeId":"coa-cultist-66","index":30935,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_shadow_twilight.png","maxRank":1,"name":"Ancient Rituals","description":"Casting Satiate now refreshes the duration of Black Blood on all allies within 30 yds. Dark Infusion bounces one additional time after its third infusion, expanding to the three lowest-health nearby party or raid members.","rankDescriptions":["Casting Satiate now refreshes the duration of Black Blood on all allies within 30 yds. Dark Infusion bounces one additional time after its third infusion, expanding to the three lowest-health nearby party or raid members."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6310","treeId":"coa-cultist-66","index":6310,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/achievement_battleground_templeofkotmogu_02_purple.png","maxRank":1,"name":"Dark Reservoir","description":"Increases the bonus healing power scaling of Eldritch Mending by 25%.","rankDescriptions":["Increases the bonus healing power scaling of Eldritch Mending by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4868","treeId":"coa-cultist-66","index":4868,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/5_deadshadow_border.png","maxRank":1,"name":"Corrupt Fate","description":"Reduces the cooldown of Dark Veil by -60 sec.","rankDescriptions":["Reduces the cooldown of Dark Veil by -60 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33928","treeId":"coa-cultist-66","index":33928,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_warlock_demonwrath.png","maxRank":1,"name":"Tales of Woe","description":"Your Dark Veil now performs its effect -50% faster.","rankDescriptions":["Your Dark Veil now performs its effect -50% faster."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12453","treeId":"coa-cultist-66","index":12453,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/sha_ability_rogue_bloodyeye_nightborne.png","maxRank":1,"name":"Visions of the Empire","description":"Increases the damage converted into healing through Abyssal Covenant by 10%.","rankDescriptions":["Increases the damage converted into healing through Abyssal Covenant by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29453","treeId":"coa-cultist-66","index":29453,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/5_druideskill30_border.png","maxRank":1,"name":"Dark Chants","description":"Reduces the cast time of Forbidden Ritual by 1 sec and allows Black Blood to stack up to 2 times.","rankDescriptions":["Reduces the cast time of Forbidden Ritual by 1 sec and allows Black Blood to stack up to 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7278","treeId":"coa-cultist-66","index":7278,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_ingot_yoggthorite.png","maxRank":1,"name":"Saronite Blessing","description":"Melee critical strikes now apply Saronite Blessing to you.Saronite Blessing (Buff)Your melee attack speed is increased by 25% and your melee auto attacks heal the lowest health ally for an additional 100% of the damage dealt. Lasts for 15 seconds or 10 attacks.","rankDescriptions":["Melee critical strikes now apply Saronite Blessing to you.Saronite Blessing (Buff)Your melee attack speed is increased by 25% and your melee auto attacks heal the lowest health ally for an additional 100% of the damage dealt. Lasts for 15 seconds or 10 attacks."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33926","treeId":"coa-cultist-66","index":33926,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_shadow_shadowfiend.png","maxRank":1,"name":"Hand of Yogg-Saron","description":"Tether yourself to an ally for 15 seconds, increasing all damage they deal and reducing all damage they take by 15%.","rankDescriptions":["Tether yourself to an ally for 15 seconds, increasing all damage they deal and reducing all damage they take by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29915","treeId":"coa-cultist-66","index":29915,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/nhi_shadowbarrier_border.png","maxRank":1,"name":"Void Barrier","description":"Casting Herald of the Depths now increases the absorption of your next Void Shield within 10 seconds by 100%.","rankDescriptions":["Casting Herald of the Depths now increases the absorption of your next Void Shield within 10 seconds by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4496","treeId":"coa-cultist-66","index":4496,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_holy_devotion.png","maxRank":1,"name":"Blessing of Yogg-Saron","description":"Level 50 Passive Increases your attack power by an amount equal to 3 times your spell critical strike rating.","rankDescriptions":["Level 50 Passive Increases your attack power by an amount equal to 3 times your spell critical strike rating."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30523","treeId":"coa-cultist-66","index":30523,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/achievement_boss_heraldvolazj.png","maxRank":1,"name":"Blessing of Yogg-Saron","description":"While Herald of the Depths is active, you now transform into a Faceless Monstrosity, increasing your critical healing and critical strike chance by 20%, but reducing its duration by -5 sec. In addition, while active you are now immune to fear, horrify, and polymorph effects.","rankDescriptions":["While Herald of the Depths is active, you now transform into a Faceless Monstrosity, increasing your critical healing and critical strike chance by 20%, but reducing its duration by -5 sec. In addition, while active you are now immune to fear, horrify, and polymorph effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33886","treeId":"coa-cultist-66","index":33886,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/achievement_boss_triumvirate_darknaaru.png","maxRank":1,"name":"Horrific Revelations","description":"Every 1 sec while Hand of Yogg-Saron is active, you now trigger a Horrific Revelation on the target and generate 5 Insanity.Horrific RevelationHeals a friendly target for 144 + 67.85% SP, scaling with Insanity, and increases their critical strike chance by 1%, stacking 15 times, for 15 seconds.","rankDescriptions":["Every 1 sec while Hand of Yogg-Saron is active, you now trigger a Horrific Revelation on the target and generate 5 Insanity.Horrific RevelationHeals a friendly target for 144 + 67.85% SP, scaling with Insanity, and increases their critical strike chance by 1%, stacking 15 times, for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7901","treeId":"coa-cultist-66","index":7901,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/nhi_foreshadowing_border.png","maxRank":1,"name":"Dark Prophet","description":"Healing done by Abyssal Covenant now heals 5 of the lowest health nearby allies and healing done by Black Blood can now critically strike.","rankDescriptions":["Healing done by Abyssal Covenant now heals 5 of the lowest health nearby allies and healing done by Black Blood can now critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29265","treeId":"coa-cultist-87","index":29265,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/spells/_d3energyarmor.png","maxRank":1,"name":"Void Shield","description":"Shields an ally, absorbing 195 + 60% SP damage for 30 seconds and applying Wracked Mind. Wracked MindCannot be affected by Void Shield. Lasts for 15 seconds.","rankDescriptions":["Shields an ally, absorbing 195 + 60% SP damage for 30 seconds and applying Wracked Mind. Wracked MindCannot be affected by Void Shield. Lasts for 15 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29470","treeId":"coa-cultist-87","index":29470,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/ability_priest_clarityofpower.png","maxRank":1,"name":"Corrupt Mind","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7608","treeId":"coa-cultist-87","index":7608,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":1,"icon":"/assets/ui/spells/spell_priest_shadoworbs.png","maxRank":1,"name":"Abyssal Ward","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6283","treeId":"coa-cultist-87","index":6283,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/spells/spell_shadow_antishadow.png","maxRank":1,"name":"Empire's Blessing","description":"Reduces the mana cost of Void Shield by -20%.","rankDescriptions":["Reduces the mana cost of Void Shield by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11892","treeId":"coa-cultist-87","index":11892,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/impotent_void_effigy.png","maxRank":1,"name":"Eldritch Screams","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33892","treeId":"coa-cultist-87","index":33892,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/_soulsdevourer_purple.png","maxRank":1,"name":"Stare Into The Abyss","description":"Removes the cast time of your Corrupt Mind.","rankDescriptions":["Removes the cast time of your Corrupt Mind."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29263","treeId":"coa-cultist-87","index":29263,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":2,"icon":"/assets/ui/spells/nhi_shadowasphyxiation_border.png","maxRank":3,"name":"Empire Commander","description":"Increases all primary attributes by 12%.","rankDescriptions":["Increases all primary attributes by 4%.","Increases all primary attributes by 8%.","Increases all primary attributes by 12%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29268","treeId":"coa-cultist-87","index":29268,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/spells/spell_priest_voidshift.png","maxRank":1,"name":"Shadow Words","description":"Increases the effectiveness of your Whispers by 25%.","rankDescriptions":["Increases the effectiveness of your Whispers by 25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6272","treeId":"coa-cultist-87","index":6272,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/spells/inv_misc_volatileshadow.png","maxRank":1,"name":"Mass Nightmare","description":"Spread nightmares of the black empire to up to 5 nearby enemies, horrifying them for 5 seconds and interrupting non-player spellcasting for 3 seconds.","rankDescriptions":["Spread nightmares of the black empire to up to 5 nearby enemies, horrifying them for 5 seconds and interrupting non-player spellcasting for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6280","treeId":"coa-cultist-87","index":6280,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":3,"icon":"/assets/ui/spells/achievement_nazmir_boss_zekvoz.png","maxRank":1,"name":"Grasp of Zek'voz","description":"Hinder an enemies momentum with void chains, slowing their movement speed by -30% for 10 seconds.","rankDescriptions":["Hinder an enemies momentum with void chains, slowing their movement speed by -30% for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29455","treeId":"coa-cultist-87","index":29455,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":3,"icon":"/assets/ui/spells/sha_spell_fire_felfireward.png","maxRank":1,"name":"Shroud of Pride","description":"Your Abyssal Ward now stacks 3 additional times.","rankDescriptions":["Your Abyssal Ward now stacks 3 additional times."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6959","treeId":"coa-cultist-87","index":6959,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/creatureportrait_sc_eyeofacherus_02.png","maxRank":1,"name":"Gift of C'Thun","description":"Increases your Shadow damage dealt by 4% and healing done by 4%.","rankDescriptions":["Increases your Shadow damage dealt by 4% and healing done by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11880","treeId":"coa-cultist-87","index":11880,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/uico_shadow_spell_08_nobg_border.png","maxRank":1,"name":"Rapid Incantations","description":"While above 60 Insanity, you gain 5% increased haste.","rankDescriptions":["While above 60 Insanity, you gain 5% increased haste."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29880","treeId":"coa-cultist-87","index":29880,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_shadow_mindrot.png","maxRank":1,"name":"Mind Leak","description":"While above 60 Insanity, you gain -5% reduced damage taken.","rankDescriptions":["While above 60 Insanity, you gain -5% reduced damage taken."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30323","treeId":"coa-cultist-87","index":30323,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/_ldaeye.png","maxRank":1,"name":"Wicked Thoughts","description":"Increases your maximum mana, your movement speed, and mounted movement speed by 15%.","rankDescriptions":["Increases your maximum mana, your movement speed, and mounted movement speed by 15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6382","treeId":"coa-cultist-87","index":6382,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/5_warlock28_border.png","maxRank":1,"name":"Hallucination","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9953","treeId":"coa-cultist-87","index":9953,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/spell_nature_faeriefire.png","maxRank":1,"name":"Overwhelming Void","description":"Your Mass Nightmare now triggers a 60 sec reduced cooldown when used at or above 80 Insanity.","rankDescriptions":["Your Mass Nightmare now triggers a 60 sec reduced cooldown when used at or above 80 Insanity."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6278","treeId":"coa-cultist-87","index":6278,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/5_assassinskill07_border.png","maxRank":1,"name":"Dismay","description":"Increases the movement speed slowed by Grasp of Zek'voz by -20%.","rankDescriptions":["Increases the movement speed slowed by Grasp of Zek'voz by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12444","treeId":"coa-cultist-87","index":12444,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/spell_nature_drowsy.png","maxRank":1,"name":"Disdain","description":"Removes the cooldown of Grasp of Zek'voz, but increases its mana cost by 25%.","rankDescriptions":["Removes the cooldown of Grasp of Zek'voz, but increases its mana cost by 25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6277","treeId":"coa-cultist-87","index":6277,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/overwhelming_void_effigy.png","maxRank":1,"name":"Embrace the Void","description":"Become one with the void, preventing you from dying for 6 seconds, or until you take damage equal to a maximum of 100% of your total health. When the effect ends you instantly regenerate health equal to 50% of the damage taken while active.","rankDescriptions":["Become one with the void, preventing you from dying for 6 seconds, or until you take damage equal to a maximum of 100% of your total health. When the effect ends you instantly regenerate health equal to 50% of the damage taken while active."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33969","treeId":"coa-cultist-87","index":33969,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/warlock_houroftwilight.png","maxRank":1,"name":"Embodied Presences","description":"Increases the chance to trigger your Presences by 5%.","rankDescriptions":["Increases the chance to trigger your Presences by 5%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5172","treeId":"coa-cultist-87","index":5172,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/nhi_void_blackhole_border.png","maxRank":1,"name":"Entropic Singularity","description":"Create a void zone for 5 seconds at target location that slows enemies' movement speed while inside. The slow increases in intensity based on how close to the middle of the zone the enemy is.","rankDescriptions":["Create a void zone for 5 seconds at target location that slows enemies' movement speed while inside. The slow increases in intensity based on how close to the middle of the zone the enemy is."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7084","treeId":"coa-cultist-87","index":7084,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_offhand_1h_artifactcthun_d_04.png","maxRank":1,"name":"Dark Calling","description":"Taking damage while below 35% health now summons 3 Manifestations of Y'shaarj for 10 sec, which will attack enemies and heal you for 2% of your base health. Can ony occur once every 2 minutes.","rankDescriptions":["Taking damage while below 35% health now summons 3 Manifestations of Y'shaarj for 10 sec, which will attack enemies and heal you for 2% of your base health. Can ony occur once every 2 minutes."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7899","treeId":"coa-cultist-87","index":7899,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/spell_shadow_shadowmend.png","maxRank":1,"name":"Mind Games","description":"Reduces the cooldown of Hallucination by -5 sec and reduces its mana cost by -20%.","rankDescriptions":["Reduces the cooldown of Hallucination by -5 sec and reduces its mana cost by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6281","treeId":"coa-cultist-87","index":6281,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/achievement_boss_heraldofnzoth.png","maxRank":1,"name":"Doomsayer","description":"Reduces the mana cost of your Presences by -50%.","rankDescriptions":["Reduces the mana cost of your Presences by -50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33952","treeId":"coa-cultist-87","index":33952,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_priest_surgeofdarkness.png","maxRank":1,"name":"Void Hunger","description":"Satiate now also regenerates an additional 1% mana per tick and no longer increases damage taken during the channel.","rankDescriptions":["Satiate now also regenerates an additional 1% mana per tick and no longer increases damage taken during the channel."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6276","treeId":"coa-cultist-87","index":6276,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/achievement_nzothraid_carapace.png","maxRank":2,"name":"Eternal Grasp","description":"Increases the duration of your Tentacles by 50%.","rankDescriptions":["Increases the duration of your Tentacles by 25%.","Increases the duration of your Tentacles by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33967","treeId":"coa-cultist-87","index":33967,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/spell_shadow_soulleech_3.png","maxRank":1,"name":"Improved Sermon of Dread","description":"Increases the effectiveness of Sermon of Dread by 40%.","rankDescriptions":["Increases the effectiveness of Sermon of Dread by 40%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6274","treeId":"coa-cultist-87","index":6274,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_holy_mindsooth.png","maxRank":2,"name":"Darkward","description":"Increases the effectiveness of your damage absorption effects by 20%.","rankDescriptions":["Increases the effectiveness of your damage absorption effects by 10%.","Increases the effectiveness of your damage absorption effects by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31123","treeId":"coa-cultist-87","index":31123,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_misc_eye_03.png","maxRank":1,"name":"Devourer","description":"Your Devour Magic now dispels 1 additional magic effect.","rankDescriptions":["Your Devour Magic now dispels 1 additional magic effect."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7465","treeId":"coa-cultist-87","index":7465,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/inv_ascend_eyes_01.png","maxRank":1,"name":"Eyes of Eternity","description":"Healing an ally with Gaze of C'Thun now additionally reveals nearby stealthed enemies for 8 seconds.","rankDescriptions":["Healing an ally with Gaze of C'Thun now additionally reveals nearby stealthed enemies for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33968","treeId":"coa-cultist-87","index":33968,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/uico_shadow_spell_02_border.png","maxRank":1,"name":"Eldritch Command","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6279","treeId":"coa-cultist-87","index":6279,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/pure_void_metal.png","maxRank":1,"name":"Void-Enchanted Armor","description":"Increases your chance to resist dispel effects by -20%.","rankDescriptions":["Increases your chance to resist dispel effects by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29479","treeId":"coa-cultist-87","index":29479,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/ability_racial_shadowmeld.png","maxRank":1,"name":"Ungodly Blessing","description":"Reduces the duration of curse effects on you by -40%.","rankDescriptions":["Reduces the duration of curse effects on you by -40%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30205","treeId":"coa-cultist-87","index":30205,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/spell_holy_prayerofshadowprotection.png","maxRank":1,"name":"Crystalline Reflection","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.","rankDescriptions":["Increases the chance for Void Shield to resist dispel effects on allies by -50% and it now also reflects 50% of the damage absorbed."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33951","treeId":"coa-cultist-87","index":33951,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/forbidding_void_dust.png","maxRank":1,"name":"Black Prayer","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7940","treeId":"coa-cultist-87","index":7940,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_peacockmount_dark.png","maxRank":1,"name":"Twisted Seal","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29920","treeId":"coa-cultist-87","index":29920,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/inv_soulbarrier.png","maxRank":1,"name":"Split Mind","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29275","treeId":"coa-cultist-87","index":29275,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/spell_fire_twilightcano.png","maxRank":1,"name":"Vision of Doom","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33965","treeId":"coa-cultist-87","index":33965,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/nhi_arcanemask_border.png","maxRank":1,"name":"Lost in the Void","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7404","treeId":"coa-cultist-88","index":7404,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/inv_shield_1h_artifactstormfist_d_05.png","maxRank":1,"name":"Twilight Shieldtoss","description":"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.","rankDescriptions":["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."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7512","treeId":"coa-cultist-88","index":7512,"prerequisiteId":"coa-entry-7608","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-7608","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/yshaarjicon.png","maxRank":1,"name":"Dreadnought","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7612","treeId":"coa-cultist-88","index":7612,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/inv_sulfurelemental_void.png","maxRank":2,"name":"Adaptive Combatant","description":"Increases your parry chance by 6% and dodge chance by 4%.","rankDescriptions":["Increases your parry chance by 3% and dodge chance by 2%.","Increases your parry chance by 6% and dodge chance by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7617","treeId":"coa-cultist-88","index":7617,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_helm_plate_nzothraidmythic_d_01.png","maxRank":1,"name":"Malignant Armor","description":"Increases your attack power by 2 for every 100 armor value you have.","rankDescriptions":["Increases your attack power by 2 for every 100 armor value you have."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6771","treeId":"coa-cultist-88","index":6771,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/inv_wand_1h_430oldgod_c_01.png","maxRank":2,"name":"Boon of Y'shaarj","description":"You now gain an additional 4 mana per point of Intellect.","rankDescriptions":["You now gain an additional 2 mana per point of Intellect.","You now gain an additional 4 mana per point of Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7620","treeId":"coa-cultist-88","index":7620,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/nhi_shadowcatcher_border.png","maxRank":1,"name":"Bulwark of Horror","description":"Avoiding an attack now has a 40% chance to refresh a charge of Blade of the Empire.","rankDescriptions":["Avoiding an attack now has a 40% chance to refresh a charge of Blade of the Empire."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9299","treeId":"coa-cultist-88","index":9299,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/ability_titankeeper_uncheckedcorruption.png","maxRank":1,"name":"Strength of the Sha","description":"Level 20 Passive Increases your spell damage by 25% of your Strength and your spell hit rating by 6% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your spell damage by 25% of your Strength and your spell hit rating by 6% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7614","treeId":"coa-cultist-88","index":7614,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/inv_shield_73.png","maxRank":1,"name":"Bulwark of Y'shaarj","description":"Increases your block chance by 5%, plus an additional 10% while above 40 Insanity.","rankDescriptions":["Increases your block chance by 5%, plus an additional 10% while above 40 Insanity."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9759","treeId":"coa-cultist-88","index":9759,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_shield_orgrimmarraid_d_01.png","maxRank":1,"name":"Y'Shaarj's Enforcer","description":"Increases the damage dealt by your Twilight Shieldtoss by 100% but it to no longer bounces.","rankDescriptions":["Increases the damage dealt by your Twilight Shieldtoss by 100% but it to no longer bounces."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33888","treeId":"coa-cultist-88","index":33888,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/nhi_arcaneshuriken_border.png","maxRank":1,"name":"Bouncing Thoughts","description":"Your Twilight Shieldtoss now hits an additional enemy for every 20 Insanity you have.","rankDescriptions":["Your Twilight Shieldtoss now hits an additional enemy for every 20 Insanity you have."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29882","treeId":"coa-cultist-88","index":29882,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/achievement_boss_yoggsaron_01.png","maxRank":1,"name":"Tentacle of Y'shaarj","description":"Summon a Tentacle of Y'shaarj near you for 30 seconds. When summoned and whenever Gaze of C'thun is used, it slams the ground dealing Physical damage, scaling with Stamina, to all enemies in a 10 yd frontal cone.","rankDescriptions":["Summon a Tentacle of Y'shaarj near you for 30 seconds. When summoned and whenever Gaze of C'thun is used, it slams the ground dealing Physical damage, scaling with Stamina, to all enemies in a 10 yd frontal cone."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33893","treeId":"coa-cultist-88","index":33893,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/nhi_shadowbarrier_border.png","maxRank":1,"name":"Entropic Retaliation","description":"Blocking an attack now increases your critical strike chance by 2% for 6 seconds, stacking up to 5 times.","rankDescriptions":["Blocking an attack now increases your critical strike chance by 2% for 6 seconds, stacking up to 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6275","treeId":"coa-cultist-88","index":6275,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_racial_entropicembrace.png","maxRank":1,"name":"Inner Darkness","description":"Blocking an attack now generates 3 Insanity.","rankDescriptions":["Blocking an attack now generates 3 Insanity."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29918","treeId":"coa-cultist-88","index":29918,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_elemental_eternal_shadow.png","maxRank":1,"name":"Twilight Incarnate","description":"Damage dealt by Twilight Shieldtoss now generates 3 Insanity.","rankDescriptions":["Damage dealt by Twilight Shieldtoss now generates 3 Insanity."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7611","treeId":"coa-cultist-88","index":7611,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_darkmoon_eye.png","maxRank":1,"name":"Everpresent","description":"Increases the chance to trigger Presences by 10%.","rankDescriptions":["Increases the chance to trigger Presences by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29273","treeId":"coa-cultist-88","index":29273,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/sha_ability_rogue_envelopingshadows.png","maxRank":1,"name":"Eldritch Strength","description":"Increases the damage of Hammer of Twilight and Entropic Slam by 25% and they now generates a large amount of threat.","rankDescriptions":["Increases the damage of Hammer of Twilight and Entropic Slam by 25% and they now generates a large amount of threat."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9301","treeId":"coa-cultist-88","index":9301,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/spell_shadow_summonvoidwalker.png","maxRank":1,"name":"Deep Secrets","description":"Level 30 Passive Each point of Insanity now reduces mana costs of your instant cast spells and abilities by 1%.","rankDescriptions":["Level 30 Passive Each point of Insanity now reduces mana costs of your instant cast spells and abilities by 1%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-12219","treeId":"coa-cultist-88","index":12219,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_shadowguard_border.png","maxRank":1,"name":"Dreadfall","description":"Raise your shield and charge towards an enemy, dealing 50% AP Shadow damage to enemies you pass through, generating additional threat.","rankDescriptions":["Raise your shield and charge towards an enemy, dealing 50% AP Shadow damage to enemies you pass through, generating additional threat."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7615","treeId":"coa-cultist-88","index":7615,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/achievement_dungeon_grimbatol_drahga_the_shadowburner.png","maxRank":1,"name":"Wavering Hope","description":"While above 60 Insanity, the cooldown of your Twilight Shieldtoss and Gaze of C'thun is reduced by -25%.","rankDescriptions":["While above 60 Insanity, the cooldown of your Twilight Shieldtoss and Gaze of C'thun is reduced by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7606","treeId":"coa-cultist-88","index":7606,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/nhi_shadowtentacle_border.png","maxRank":2,"name":"Eldritch Bastion","description":"Increases your Armor contribution from your shield by 30%.","rankDescriptions":["Increases your Armor contribution from your shield by 15%.","Increases your Armor contribution from your shield by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30520","treeId":"coa-cultist-88","index":30520,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/ability_kaztik_dominatemind.png","maxRank":1,"name":"Crushing Dissonance","description":"Unleash a wave of maddening resonance, interrupting the current spell cast of all enemies around you and preventing any spell in that school from being cast for 2 seconds.","rankDescriptions":["Unleash a wave of maddening resonance, interrupting the current spell cast of all enemies around you and preventing any spell in that school from being cast for 2 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7618","treeId":"coa-cultist-88","index":7618,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_shield_draenei_a_02_uprez.png","maxRank":1,"name":"Void-Enhanced Shield","description":"Increases your block value by 20%. While above 60 Insanity, the value of this effect is doubled.","rankDescriptions":["Increases your block value by 20%. While above 60 Insanity, the value of this effect is doubled."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9302","treeId":"coa-cultist-88","index":9302,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/sha_spell_shadow_shadesofdarkness.png","maxRank":1,"name":"Void Reaver","description":"Avoiding or absorbing an attack now has a 20% chance to make your next Blade of the Empire deal 20% more damage and hit an additional nearby enemy.","rankDescriptions":["Avoiding or absorbing an attack now has a 20% chance to make your next Blade of the Empire deal 20% more damage and hit an additional nearby enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7610","treeId":"coa-cultist-88","index":7610,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_glyph_primewarlock.png","maxRank":1,"name":"Voidwarding","description":"Reduces damage taken by party and raid members by -3%. Does not stack with similar effects. In addition, increases all of your resistances by 5, scaling with level.","rankDescriptions":["Reduces damage taken by party and raid members by -3%. Does not stack with similar effects. In addition, increases all of your resistances by 5, scaling with level."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7619","treeId":"coa-cultist-88","index":7619,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/spell_shadow_deathsembrace.png","maxRank":1,"name":"In And Out of Insanity","description":"Increases the effectiveness of your damage absorption effects by 20%.","rankDescriptions":["Increases the effectiveness of your damage absorption effects by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33896","treeId":"coa-cultist-88","index":33896,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/inv_shield_draenorhonor_c_02.png","maxRank":1,"name":"Bulwark of Shadow","description":"While above 80 Insanity, your Void Shield has 30% increased value.","rankDescriptions":["While above 80 Insanity, your Void Shield has 30% increased value."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33890","treeId":"coa-cultist-88","index":33890,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/achievement_boss_generalvezax_01.png","maxRank":1,"name":"Strength of the Black Empire","description":"Level 40 Passive Dreadnought now sheds your mortal form, transforming you into a void monstrosity, reducing your damage taken by -10%","rankDescriptions":["Level 40 Passive Dreadnought now sheds your mortal form, transforming you into a void monstrosity, reducing your damage taken by -10%"],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-7624","treeId":"coa-cultist-88","index":7624,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_nzinsanity_stophittingyourself.png","maxRank":1,"name":"Shadowy Symbiosis","description":"Your successful blocks now have a 20% chance to critically block for twice the normal amount. This effect is doubled while above 60 Insanity.","rankDescriptions":["Your successful blocks now have a 20% chance to critically block for twice the normal amount. This effect is doubled while above 60 Insanity."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6545","treeId":"coa-cultist-88","index":6545,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/nhi_void_stab_border.png","maxRank":1,"name":"Void Strikes","description":"Damage dealt by Blade of the Empire and Entropic Slam is now increased based on your defense rating.","rankDescriptions":["Damage dealt by Blade of the Empire and Entropic Slam is now increased based on your defense rating."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7616","treeId":"coa-cultist-88","index":7616,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/inv_voidboss.png","maxRank":1,"name":"General of Y'shaarj","description":"Dealing damage with Twilight Shieldtoss now heals you for 10% of the damage dealt.","rankDescriptions":["Dealing damage with Twilight Shieldtoss now heals you for 10% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29916","treeId":"coa-cultist-88","index":29916,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/spell_shadow_auraofdarkness.png","maxRank":1,"name":"Eldritch Entities","description":"Critical strikes with abilities now summon a Manifestation of Y'shaarj for 10 seconds, which will attack enemies and heal you for 2% of your base health.","rankDescriptions":["Critical strikes with abilities now summon a Manifestation of Y'shaarj for 10 seconds, which will attack enemies and heal you for 2% of your base health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7622","treeId":"coa-cultist-88","index":7622,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/5_tentacles_border.png","maxRank":1,"name":"Dreadful","description":"Increases your critical strike rating equal to your block rating. In addition, critical strikes now reduce the cooldown of Dreadfall and Dreadnought by 1 sec.","rankDescriptions":["Increases your critical strike rating equal to your block rating. In addition, critical strikes now reduce the cooldown of Dreadfall and Dreadnought by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7627","treeId":"coa-cultist-88","index":7627,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_druid_twilightswrath.png","maxRank":1,"name":"Twilight Guardian","description":"The first instance of damage dealt by Twilight Shieldtoss now shields you for 100% of the damage dealt for 8 seconds.","rankDescriptions":["The first instance of damage dealt by Twilight Shieldtoss now shields you for 100% of the damage dealt for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29654","treeId":"coa-cultist-88","index":29654,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/inv_legendary_chimeraoffear.png","maxRank":1,"name":"Void Tolerance","description":"Reduces the cooldown of Abyssal Ward by -30 sec.","rankDescriptions":["Reduces the cooldown of Abyssal Ward by -30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7621","treeId":"coa-cultist-88","index":7621,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_inscription_80_vantusrune_nyalotha.png","maxRank":1,"name":"Blessing of Y'Shaarj","description":"Level 50 Passive While transformed into a void monstrosity your damage dealt is now also increased by 20%.","rankDescriptions":["Level 50 Passive While transformed into a void monstrosity your damage dealt is now also increased by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7629","treeId":"coa-cultist-88","index":7629,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/nhi_shadowtentacle_border.png","maxRank":1,"name":"Eldritch Force","description":"Every 5th critical strike with abilities now transforms your next Gaze of C'Thun into Eldritch Force.Eldritch ForceGenerates 30 Insanity Send out a wave of force, dealing 631 + 76.26% SP + 12.5% AP Shadow damage to enemies in front of you and reducing their movement speed by -30% for 10 seconds.","rankDescriptions":["Every 5th critical strike with abilities now transforms your next Gaze of C'Thun into Eldritch Force.Eldritch ForceGenerates 30 Insanity Send out a wave of force, dealing 631 + 76.26% SP + 12.5% AP Shadow damage to enemies in front of you and reducing their movement speed by -30% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7625","treeId":"coa-cultist-88","index":7625,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/achievement_alliedrace_voidelf.png","maxRank":1,"name":"Void Augmentation","description":"While Dreadnought is active, your Twilight Shieldtoss has a -3 sec reduced cooldown.","rankDescriptions":["While Dreadnought is active, your Twilight Shieldtoss has a -3 sec reduced cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7626","treeId":"coa-cultist-88","index":7626,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/achievement_thenighthold_chromaticanomaly.png","maxRank":1,"name":"Embodiment of Y'shaarj","description":"Increases the amount that Void Shield absorbs by 100%. Absorbing damage grants you 20% of the absorbed value as spell power for 8 seconds.","rankDescriptions":["Increases the amount that Void Shield absorbs by 100%. Absorbing damage grants you 20% of the absorbed value as spell power for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/death-knight.json b/src/game/generated/talentUi/death-knight.json new file mode 100644 index 00000000..876ccc87 --- /dev/null +++ b/src/game/generated/talentUi/death-knight.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"death-knight","trees":[{"id":"death-knight-blood","classId":"death-knight","name":"Blood","icon":"/assets/ui/talents/icons/spell_deathknight_bloodpresence.png","background":"/assets/ui/talents/backgrounds/talent_deathknight1.png","description":"Drain life and withstand brutal attacks.","system":"classic"},{"id":"death-knight-frost","classId":"death-knight","name":"Frost","icon":"/assets/ui/talents/icons/spell_deathknight_frostpresence.png","background":"/assets/ui/talents/backgrounds/talent_deathknight2.png","description":"Command freezing power and rune weapons.","system":"classic"},{"id":"death-knight-unholy","classId":"death-knight","name":"Unholy","icon":"/assets/ui/talents/icons/spell_deathknight_unholypresence.png","background":"/assets/ui/talents/backgrounds/talent_deathknight3.png","description":"Spread disease and forbidden necromancy.","system":"classic"}],"nodes":[{"id":"talent-1938","treeId":"death-knight-blood","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/inv_shoulder_36.png","maxRank":5,"name":"Bladed Armor","description":"Increases your attack power by 5 for every the listed amount armor value you have.","rankDescriptions":["Increases your attack power by 1 for every the listed amount armor value you have.","Increases your attack power by 2 for every the listed amount armor value you have.","Increases your attack power by 3 for every the listed amount armor value you have.","Increases your attack power by 4 for every the listed amount armor value you have.","Increases your attack power by 5 for every the listed amount armor value you have."],"system":"classic"},{"id":"talent-1939","treeId":"death-knight-blood","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/inv_axe_68.png","maxRank":2,"name":"Butchery","description":"Whenever you kill an enemy that grants experience or honor, you generate up to 20 runic power. In addition, you generate 2 rage per 5 sec while in combat.","rankDescriptions":["Whenever you kill an enemy that grants experience or honor, you generate up to 10 runic power. In addition, you generate 1 rage per 5 sec while in combat.","Whenever you kill an enemy that grants experience or honor, you generate up to 20 runic power. In addition, you generate 2 rage per 5 sec while in combat."],"system":"classic"},{"id":"talent-1941","treeId":"death-knight-blood","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_deathknight_runetap.png","maxRank":1,"name":"Rune Tap","description":"Converts 1 Blood Rune into 10% of your maximum health.","rankDescriptions":["Converts 1 Blood Rune into 10% of your maximum health."],"system":"classic"},{"id":"talent-1942","treeId":"death-knight-blood","index":10,"prerequisiteId":"talent-1941","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1941","requiredRank":1}],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_deathknight_runetap.png","maxRank":3,"name":"Improved Rune Tap","description":"Increases the health provided by Rune Tap by 100% and lowers its cooldown by 30 sec.","rankDescriptions":["Increases the health provided by Rune Tap by 33% and lowers its cooldown by 10 sec.","Increases the health provided by Rune Tap by 66% and lowers its cooldown by 20 sec.","Increases the health provided by Rune Tap by 100% and lowers its cooldown by 30 sec."],"system":"classic"},{"id":"talent-1959","treeId":"death-knight-blood","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_creature_cursed_02.png","maxRank":3,"name":"Will of the Necropolis","description":"Damage that would take you below 35% health or taken while you are at 35% health is reduced by 15%.","rankDescriptions":["Damage that would take you below 35% health or taken while you are at 35% health is reduced by 5%.","Damage that would take you below 35% health or taken while you are at 35% health is reduced by 10%.","Damage that would take you below 35% health or taken while you are at 35% health is reduced by 15%."],"system":"classic"},{"id":"talent-1960","treeId":"death-knight-blood","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_shadow_soulleech.png","maxRank":3,"name":"Bloodworms","description":"Your weapon hits have a 9% chance to cause the target to spawn 2-4 Bloodworms. Bloodworms attack your enemies, healing you as they do damage for 20 sec or until killed.","rankDescriptions":["Your weapon hits have a 3% chance to cause the target to spawn 2-4 Bloodworms. Bloodworms attack your enemies, healing you as they do damage for 20 sec or until killed.","Your weapon hits have a 6% chance to cause the target to spawn 2-4 Bloodworms. Bloodworms attack your enemies, healing you as they do damage for 20 sec or until killed.","Your weapon hits have a 9% chance to cause the target to spawn 2-4 Bloodworms. Bloodworms attack your enemies, healing you as they do damage for 20 sec or until killed."],"system":"classic"},{"id":"talent-2015","treeId":"death-knight-blood","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_deathknight_deathstrike.png","maxRank":3,"name":"Bloody Strikes","description":"Increases the damage of Blood Strike by 15% and Heart Strike by 45%, and increases the damage of Blood Boil by 30%.","rankDescriptions":["Increases the damage of Blood Strike by 5% and Heart Strike by 15%, and increases the damage of Blood Boil by 10%.","Increases the damage of Blood Strike by 10% and Heart Strike by 30%, and increases the damage of Blood Boil by 20%.","Increases the damage of Blood Strike by 15% and Heart Strike by 45%, and increases the damage of Blood Boil by 30%."],"system":"classic"},{"id":"talent-2259","treeId":"death-knight-blood","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/spell_deathknight_butcher2.png","maxRank":2,"name":"Improved Death Strike","description":"Increases the damage of your Death Strike by 30%, increases its critical strike chance by 6%, and increases the healing granted by 50%.","rankDescriptions":["Increases the damage of your Death Strike by 15%, increases its critical strike chance by 3%, and increases the healing granted by 25%.","Increases the damage of your Death Strike by 30%, increases its critical strike chance by 6%, and increases the healing granted by 50%."],"system":"classic"},{"id":"talent-1943","treeId":"death-knight-blood","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_deathknight_darkconviction.png","maxRank":5,"name":"Dark Conviction","description":"Increases your chance to critically hit with weapons, spells and abilities by 5%.","rankDescriptions":["Increases your chance to critically hit with weapons, spells and abilities by 1%.","Increases your chance to critically hit with weapons, spells and abilities by 2%.","Increases your chance to critically hit with weapons, spells and abilities by 3%.","Increases your chance to critically hit with weapons, spells and abilities by 4%.","Increases your chance to critically hit with weapons, spells and abilities by 5%."],"system":"classic"},{"id":"talent-1944","treeId":"death-knight-blood","index":16,"prerequisiteId":"talent-1943","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1943","requiredRank":5}],"column":2,"row":6,"icon":"/assets/ui/talents/icons/ability_backstab.png","maxRank":3,"name":"Bloody Vengeance","description":"Gives you a 3% bonus to physical damage you deal for 30 seconds after dealing a critical strike from a weapon swing, spell, or ability. This effect stacks up to 3 times.","rankDescriptions":["Gives you a 1% bonus to physical damage you deal for 15 seconds after dealing a critical strike from a weapon swing, spell, or ability. This effect stacks up to 3 times.","Gives you a 2% bonus to physical damage you deal for 30 seconds after dealing a critical strike from a weapon swing, spell, or ability. This effect stacks up to 3 times.","Gives you a 3% bonus to physical damage you deal for 30 seconds after dealing a critical strike from a weapon swing, spell, or ability. This effect stacks up to 3 times."],"system":"classic"},{"id":"talent-1945","treeId":"death-knight-blood","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_deathknight_subversion.png","maxRank":3,"name":"Subversion","description":"Increases the critical strike chance of Blood Strike, Scourge Strike, Heart Strike and Obliterate by 9%, and reduces threat generated while in Blood or Unholy Presence by 25%.","rankDescriptions":["Increases the critical strike chance of Blood Strike, Scourge Strike, Heart Strike and Obliterate by 3%, and reduces threat generated while in Blood or Unholy Presence by 8%.","Increases the critical strike chance of Blood Strike, Scourge Strike, Heart Strike and Obliterate by 6%, and reduces threat generated while in Blood or Unholy Presence by 16%.","Increases the critical strike chance of Blood Strike, Scourge Strike, Heart Strike and Obliterate by 9%, and reduces threat generated while in Blood or Unholy Presence by 25%."],"system":"classic"},{"id":"talent-1948","treeId":"death-knight-blood","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_rogue_bloodyeye.png","maxRank":3,"name":"Scent of Blood","description":"You have a 15% chance after dodging, parrying or taking direct damage to gain the Scent of Blood effect, causing your next 3 melee hits to generate 10 runic power.","rankDescriptions":["You have a 15% chance after dodging, parrying or taking direct damage to gain the Scent of Blood effect, causing your next melee hit to generate 10 runic power.","You have a 15% chance after dodging, parrying or taking direct damage to gain the Scent of Blood effect, causing your next 2 melee hits to generate 10 runic power.","You have a 15% chance after dodging, parrying or taking direct damage to gain the Scent of Blood effect, causing your next 3 melee hits to generate 10 runic power."],"system":"classic"},{"id":"talent-1954","treeId":"death-knight-blood","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_deathknight_bladedarmor.png","maxRank":1,"name":"Hysteria","description":"Induces a friendly unit into a killing frenzy for 30 seconds. The target is Enraged, which increases their physical damage by 15%, but causes them to lose health equal to 1% of their maximum health every second.","rankDescriptions":["Induces a friendly unit into a killing frenzy for 30 seconds. The target is Enraged, which increases their physical damage by 15%, but causes them to lose health equal to 1% of their maximum health every second."],"system":"classic"},{"id":"talent-1955","treeId":"death-knight-blood","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/spell_shadow_painspike.png","maxRank":3,"name":"Sudden Doom","description":"Your Blood Strikes and Heart Strikes have a 15% chance to launch a free Death Coil at your target.","rankDescriptions":["Your Blood Strikes and Heart Strikes have a 5% chance to launch a free Death Coil at your target.","Your Blood Strikes and Heart Strikes have a 10% chance to launch a free Death Coil at your target.","Your Blood Strikes and Heart Strikes have a 15% chance to launch a free Death Coil at your target."],"system":"classic"},{"id":"talent-1957","treeId":"death-knight-blood","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/inv_weapon_shortblade_40.png","maxRank":1,"name":"Heart Strike","description":"Instantly strike the target and his nearest ally, causing 50% weapon damage plus the listed amount on the primary target, and 25% weapon damage plus the listed amountthe listed amount on the secondary target. Each target takes 10% additional damage for each of your diseases active on that targetthe listed amount[, and movement speed is reduced by by 50% for 10 seconds.][.]","rankDescriptions":["Instantly strike the target and his nearest ally, causing 50% weapon damage plus the listed amount on the primary target, and 25% weapon damage plus the listed amountthe listed amount on the secondary target. Each target takes 10% additional damage for each of your diseases active on that targetthe listed amount[, and movement speed is reduced by by 50% for 10 seconds.][.]"],"system":"classic"},{"id":"talent-1961","treeId":"death-knight-blood","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/inv_sword_07.png","maxRank":1,"name":"Dancing Rune Weapon","description":"Summons a second rune weapon that fights on its own for 12 seconds, doing the same attacks as the Death Knight but for 50% reduced damage.","rankDescriptions":["Summons a second rune weapon that fights on its own for 12 seconds, doing the same attacks as the Death Knight but for 50% reduced damage."],"system":"classic"},{"id":"talent-2034","treeId":"death-knight-blood","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/spell_nature_reincarnation.png","maxRank":5,"name":"Blood Gorged","description":"When you are above 75% health, you deal 10% more damage. In addition, your attacks ignore up to 10% of your opponent's armor at all times.","rankDescriptions":["When you are above 75% health, you deal 2% more damage. In addition, your attacks ignore up to 2% of your opponent's armor at all times.","When you are above 75% health, you deal 4% more damage. In addition, your attacks ignore up to 4% of your opponent's armor at all times.","When you are above 75% health, you deal 6% more damage. In addition, your attacks ignore up to 6% of your opponent's armor at all times.","When you are above 75% health, you deal 8% more damage. In addition, your attacks ignore up to 8% of your opponent's armor at all times.","When you are above 75% health, you deal 10% more damage. In addition, your attacks ignore up to 10% of your opponent's armor at all times."],"system":"classic"},{"id":"talent-1936","treeId":"death-knight-blood","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_deathknight_bloodpresence.png","maxRank":2,"name":"Improved Blood Presence","description":"While in Frost Presence or Unholy Presence, you retain 4% healing from Blood Presence, and healing done to you is increased by 10% in Blood Presence.","rankDescriptions":["While in Frost Presence or Unholy Presence, you retain 2% healing from Blood Presence, and healing done to you is increased by 5% in Blood Presence.","While in Frost Presence or Unholy Presence, you retain 4% healing from Blood Presence, and healing done to you is increased by 10% in Blood Presence."],"system":"classic"},{"id":"talent-1950","treeId":"death-knight-blood","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_misc_warsongfocus.png","maxRank":3,"name":"Veteran of the Third War","description":"Increases your total Strength by 6%, your Stamina by 3%, and your expertise by 6.","rankDescriptions":["Increases your total Strength by 2%, and your Stamina by 1%.","Increases your total Strength by 4%, your Stamina by 2%, and your expertise by 4.","Increases your total Strength by 6%, your Stamina by 3%, and your expertise by 6."],"system":"classic"},{"id":"talent-1958","treeId":"death-knight-blood","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/spell_deathknight_classicon.png","maxRank":3,"name":"Might of Mograine","description":"Increases the critical strike damage bonus of your Blood Boil, Blood Strike, Death Strike, and Heart Strike abilities by 45%.","rankDescriptions":["Increases the critical strike damage bonus of your Blood Boil, Blood Strike, Death Strike, and Heart Strike abilities by 15%.","Increases the critical strike damage bonus of your Blood Boil, Blood Strike, Death Strike, and Heart Strike abilities by 30%.","Increases the critical strike damage bonus of your Blood Boil, Blood Strike, Death Strike, and Heart Strike abilities by 45%."],"system":"classic"},{"id":"talent-2017","treeId":"death-knight-blood","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_upgrademoonglaive.png","maxRank":5,"name":"Blade Barrier","description":"Whenever your Blood Runes are on cooldown, you gain the Blade Barrier effect, which decreases damage taken by 5% for the next 10 seconds.","rankDescriptions":["Whenever your Blood Runes are on cooldown, you gain the Blade Barrier effect, which decreases damage taken by 1% for the next 10 seconds.","Whenever your Blood Runes are on cooldown, you gain the Blade Barrier effect, which decreases damage taken by 2% for the next 10 seconds.","Whenever your Blood Runes are on cooldown, you gain the Blade Barrier effect, which decreases damage taken by 3% for the next 10 seconds.","Whenever your Blood Runes are on cooldown, you gain the Blade Barrier effect, which decreases damage taken by 4% for the next 10 seconds.","Whenever your Blood Runes are on cooldown, you gain the Blade Barrier effect, which decreases damage taken by 5% for the next 10 seconds."],"system":"classic"},{"id":"talent-2018","treeId":"death-knight-blood","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_deathknight_spelldeflection.png","maxRank":3,"name":"Spell Deflection","description":"You have a chance equal to your Parry chance of taking 45% less damage from a direct damage spell.","rankDescriptions":["You have a chance equal to your Parry chance of taking 15% less damage from a direct damage spell.","You have a chance equal to your Parry chance of taking 30% less damage from a direct damage spell.","You have a chance equal to your Parry chance of taking 45% less damage from a direct damage spell."],"system":"classic"},{"id":"talent-2019","treeId":"death-knight-blood","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_shadow_lifedrain.png","maxRank":1,"name":"Vampiric Blood","description":"Temporarily grants the Death Knight 15% of maximum health and increases the amount of health generated through spells and effects by 35% for 10 seconds. After the effect expires, the health is lost.","rankDescriptions":["Temporarily grants the Death Knight 15% of maximum health and increases the amount of health generated through spells and effects by 35% for 10 seconds. After the effect expires, the health is lost."],"system":"classic"},{"id":"talent-2086","treeId":"death-knight-blood","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/inv_sword_62.png","maxRank":3,"name":"Death Rune Mastery","description":"Whenever you hit with Death Strike or Obliterate there is a 100% chance that the Frost and Unholy Runes will become Death Runes when they activate. Death Runes count as a Blood, Frost or Unholy Rune.","rankDescriptions":["Whenever you hit with Death Strike or Obliterate there is a 33% chance that the Frost and Unholy Runes will become Death Runes when they activate. Death Runes count as a Blood, Frost or Unholy Rune.","Whenever you hit with Death Strike or Obliterate there is a 66% chance that the Frost and Unholy Runes will become Death Runes when they activate. Death Runes count as a Blood, Frost or Unholy Rune.","Whenever you hit with Death Strike or Obliterate there is a 100% chance that the Frost and Unholy Runes will become Death Runes when they activate. Death Runes count as a Blood, Frost or Unholy Rune."],"system":"classic"},{"id":"talent-2105","treeId":"death-knight-blood","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/ability_warrior_intensifyrage.png","maxRank":2,"name":"Abomination's Might","description":"Increases the attack power by 10% of party and raid members within the listed amount yards. Also increases your total Strength by 2%.","rankDescriptions":["Increases the attack power by 5% of party and raid members within the listed amount yards. Also increases your total Strength by 1%.","Increases the attack power by 10% of party and raid members within the listed amount yards. Also increases your total Strength by 2%."],"system":"classic"},{"id":"talent-2217","treeId":"death-knight-blood","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/inv_sword_68.png","maxRank":2,"name":"Two-Handed Weapon Specialization","description":"Increases the damage you deal with two-handed melee weapons by 4%.","rankDescriptions":["Increases the damage you deal with two-handed melee weapons by 2%.","Increases the damage you deal with two-handed melee weapons by 4%."],"system":"classic"},{"id":"talent-1949","treeId":"death-knight-blood","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/ability_hunter_rapidkilling.png","maxRank":1,"name":"Mark of Blood","description":"Place a Mark of Blood on an enemy. Whenever the marked enemy deals damage to a target, that target is healed for 4% of its maximum health. Lasts for 20 seconds or up to 20 hits.","rankDescriptions":["Place a Mark of Blood on an enemy. Whenever the marked enemy deals damage to a target, that target is healed for 4% of its maximum health. Lasts for 20 seconds or up to 20 hits."],"system":"classic"},{"id":"talent-1953","treeId":"death-knight-blood","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/spell_deathknight_vendetta.png","maxRank":3,"name":"Vendetta","description":"Heals you for up to 6% of your maximum health whenever you kill a target that yields experience or honor.","rankDescriptions":["Heals you for up to 2% of your maximum health whenever you kill a target that yields experience or honor.","Heals you for up to 4% of your maximum health whenever you kill a target that yields experience or honor.","Heals you for up to 6% of your maximum health whenever you kill a target that yields experience or honor."],"system":"classic"},{"id":"talent-1997","treeId":"death-knight-frost","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/spell_fire_elementaldevastation.png","maxRank":3,"name":"Acclimation","description":"When you are hit by a spell, you have a 30% chance to boost your resistance to that type of magic for 18 sec. Stacks up to 3 times.","rankDescriptions":["When you are hit by a spell, you have a 10% chance to boost your resistance to that type of magic for 18 sec. Stacks up to 3 times.","When you are hit by a spell, you have a 20% chance to boost your resistance to that type of magic for 18 sec. Stacks up to 3 times.","When you are hit by a spell, you have a 30% chance to boost your resistance to that type of magic for 18 sec. Stacks up to 3 times."],"system":"classic"},{"id":"talent-2031","treeId":"death-knight-frost","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/spell_deathknight_icetouch.png","maxRank":3,"name":"Improved Icy Touch","description":"Your Icy Touch does an additional 15% damage and your Frost Fever reduces melee and ranged attack speed by an additional 6%.","rankDescriptions":["Your Icy Touch does an additional 5% damage and your Frost Fever reduces melee and ranged attack speed by an additional 2%.","Your Icy Touch does an additional 10% damage and your Frost Fever reduces melee and ranged attack speed by an additional 4%.","Your Icy Touch does an additional 15% damage and your Frost Fever reduces melee and ranged attack speed by an additional 6%."],"system":"classic"},{"id":"talent-2042","treeId":"death-knight-frost","index":7,"prerequisiteId":"talent-2031","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-2031","requiredRank":3}],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_deathknight_icytalons.png","maxRank":5,"name":"Icy Talons","description":"You leech heat from victims of your Frost Fever, so that when their melee attack speed is reduced, yours increases by 20% for the next 20 sec.","rankDescriptions":["You leech heat from victims of your Frost Fever, so that when their melee attack speed is reduced, yours increases by 4% for the next 20 sec.","You leech heat from victims of your Frost Fever, so that when their melee attack speed is reduced, yours increases by 8% for the next 20 sec.","You leech heat from victims of your Frost Fever, so that when their melee attack speed is reduced, yours increases by 12% for the next 20 sec.","You leech heat from victims of your Frost Fever, so that when their melee attack speed is reduced, yours increases by 16% for the next 20 sec.","You leech heat from victims of your Frost Fever, so that when their melee attack speed is reduced, yours increases by 20% for the next 20 sec."],"system":"classic"},{"id":"talent-2223","treeId":"death-knight-frost","index":16,"prerequisiteId":"talent-2042","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-2042","requiredRank":5}],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_deathknight_icytalons.png","maxRank":1,"name":"Improved Icy Talons","description":"Increases the melee and range haste of all party and raid members within the listed amount yds by 20% and your haste by an additional 5%.","rankDescriptions":["Increases the melee and range haste of all party and raid members within the listed amount yds by 20% and your haste by an additional 5%."],"system":"classic"},{"id":"talent-2260","treeId":"death-knight-frost","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_frost_wisp.png","maxRank":3,"name":"Chilblains","description":"Victims of your Frost Fever disease are Chilled, reducing movement speed by 50% for 10 seconds.","rankDescriptions":["Victims of your Frost Fever disease are Chilled, reducing movement speed by 15% for 10 seconds.","Victims of your Frost Fever disease are Chilled, reducing movement speed by 30% for 10 seconds.","Victims of your Frost Fever disease are Chilled, reducing movement speed by 50% for 10 seconds."],"system":"classic"},{"id":"talent-2284","treeId":"death-knight-frost","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_dualwieldspecialization.png","maxRank":3,"name":"Threat of Thassarian","description":"When dual-wielding, your Death Strikes, Obliterates, Plague Strikes, Rune Strikes, Blood Strikes and Frost Strikes have a 100% chance to also deal damage with your off-hand weapon.","rankDescriptions":["When dual-wielding, your Death Strikes, Obliterates, Plague Strikes, Rune Strikes, Blood Strikes and Frost Strikes have a 30% chance to also deal damage with your off-hand weapon.","When dual-wielding, your Death Strikes, Obliterates, Plague Strikes, Rune Strikes, Blood Strikes and Frost Strikes have a 60% chance to also deal damage with your off-hand weapon.","When dual-wielding, your Death Strikes, Obliterates, Plague Strikes, Rune Strikes, Blood Strikes and Frost Strikes have a 100% chance to also deal damage with your off-hand weapon."],"system":"classic"},{"id":"talent-1975","treeId":"death-knight-frost","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_deathknight_empowerruneblade2.png","maxRank":1,"name":"Frost Strike","description":"Instantly strike the enemy, causing 55% weapon damage plus the listed amount as Frost damage.","rankDescriptions":["Instantly strike the enemy, causing 55% weapon damage plus the listed amount as Frost damage."],"system":"classic"},{"id":"talent-1989","treeId":"death-knight-frost","index":29,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/spell_frost_arcticwinds.png","maxRank":1,"name":"Howling Blast","description":"Blast the target with a frigid wind dealing 199 Frost damage to all enemies within 10 yards.","rankDescriptions":["Blast the target with a frigid wind dealing 199 Frost damage to all enemies within 10 yards."],"system":"classic"},{"id":"talent-1990","treeId":"death-knight-frost","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/inv_chest_mail_04.png","maxRank":3,"name":"Frigid Dreadplate","description":"Reduces the chance melee attacks will hit you by 3%.","rankDescriptions":["Reduces the chance melee attacks will hit you by 1%.","Reduces the chance melee attacks will hit you by 2%.","Reduces the chance melee attacks will hit you by 3%."],"system":"classic"},{"id":"talent-1993","treeId":"death-knight-frost","index":17,"prerequisiteId":"talent-1994","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1994","requiredRank":1}],"column":2,"row":6,"icon":"/assets/ui/talents/icons/inv_sword_112.png","maxRank":2,"name":"Merciless Combat","description":"Your Icy Touch, Howling Blast, Obliterate and Frost Strike do an additional 12% damage when striking targets with less than 35% health.","rankDescriptions":["Your Icy Touch, Howling Blast, Obliterate and Frost Strike do an additional 6% damage when striking targets with less than 35% health.","Your Icy Touch, Howling Blast, Obliterate and Frost Strike do an additional 12% damage when striking targets with less than 35% health."],"system":"classic"},{"id":"talent-1998","treeId":"death-knight-frost","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/spell_nature_tranquility.png","maxRank":5,"name":"Tundra Stalker","description":"Your spells and abilities deal 15% more damage to targets infected with Frost Fever. Also increases your expertise by 5.","rankDescriptions":["Your spells and abilities deal 3% more damage to targets infected with Frost Fever.","Your spells and abilities deal 6% more damage to targets infected with Frost Fever. Also increases your expertise by 2.","Your spells and abilities deal 9% more damage to targets infected with Frost Fever. Also increases your expertise by 3.","Your spells and abilities deal 12% more damage to targets infected with Frost Fever. Also increases your expertise by 4.","Your spells and abilities deal 15% more damage to targets infected with Frost Fever. Also increases your expertise by 5."],"system":"classic"},{"id":"talent-1999","treeId":"death-knight-frost","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/talents/icons/inv_staff_15.png","maxRank":1,"name":"Hungering Cold","description":"Purges the earth around the Death Knight of all heat. Enemies within the listed amount yards are trapped in ice, preventing them from performing any action for 10 seconds and infecting them with Frost Fever. Enemies are considered Frozen, but any damage other than diseases will break the ice.","rankDescriptions":["Purges the earth around the Death Knight of all heat. Enemies within the listed amount yards are trapped in ice, preventing them from performing any action for 10 seconds and infecting them with Frost Fever. Enemies are considered Frozen, but any damage other than diseases will break the ice."],"system":"classic"},{"id":"talent-2020","treeId":"death-knight-frost","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_arcane_arcane01.png","maxRank":2,"name":"Runic Power Mastery","description":"Increases your maximum Runic Power by 20.","rankDescriptions":["Increases your maximum Runic Power by 10.","Increases your maximum Runic Power by 20."],"system":"classic"},{"id":"talent-2035","treeId":"death-knight-frost","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_frost_manarecharge.png","maxRank":2,"name":"Icy Reach","description":"Increases the range of your Icy Touch, Chains of Ice and Howling Blast by 10 yards.","rankDescriptions":["Increases the range of your Icy Touch, Chains of Ice and Howling Blast by 5 yards.","Increases the range of your Icy Touch, Chains of Ice and Howling Blast by 10 yards."],"system":"classic"},{"id":"talent-2044","treeId":"death-knight-frost","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/inv_sword_122.png","maxRank":5,"name":"Killing Machine","description":"Your melee attacks have a chance to make your next Icy Touch, Howling Blast or Frost Strike a critical strike. Effect occurs more often than Killing Machine (Rank 4).","rankDescriptions":["Your melee attacks have a chance to make your next Icy Touch, Howling Blast or Frost Strike a critical strike.","Your melee attacks have a chance to make your next Icy Touch, Howling Blast or Frost Strike a critical strike. Effect occurs more often than Killing Machine (Rank 1).","Your melee attacks have a chance to make your next Icy Touch, Howling Blast or Frost Strike a critical strike. Effect occurs more often than Killing Machine (Rank 2).","Your melee attacks have a chance to make your next Icy Touch, Howling Blast or Frost Strike a critical strike. Effect occurs more often than Killing Machine (Rank 3).","Your melee attacks have a chance to make your next Icy Touch, Howling Blast or Frost Strike a critical strike. Effect occurs more often than Killing Machine (Rank 4)."],"system":"classic"},{"id":"talent-2210","treeId":"death-knight-frost","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/inv_weapon_shortblade_79.png","maxRank":3,"name":"Blood of the North","description":"Increases Blood Strike and Frost Strike damage by 10%. In addition, whenever you hit with Blood Strike or Pestilence there is a 100% chance that the Blood Rune will become a Death Rune when it activates. Death Runes count as a Blood, Frost or Unholy Rune.","rankDescriptions":["Increases Blood Strike and Frost Strike damage by 3%. In addition, whenever you hit with Blood Strike or Pestilence there is a 30% chance that the Blood Rune will become a Death Rune when it activates. Death Runes count as a Blood, Frost or Unholy Rune.","Increases Blood Strike and Frost Strike damage by 6%. In addition, whenever you hit with Blood Strike or Pestilence there is a 60% chance that the Blood Rune will become a Death Rune when it activates. Death Runes count as a Blood, Frost or Unholy Rune.","Increases Blood Strike and Frost Strike damage by 10%. In addition, whenever you hit with Blood Strike or Pestilence there is a 100% chance that the Blood Rune will become a Death Rune when it activates. Death Runes count as a Blood, Frost or Unholy Rune."],"system":"classic"},{"id":"talent-2215","treeId":"death-knight-frost","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_raisedead.png","maxRank":1,"name":"Lichborne","description":"Draw upon unholy energy to become undead for 10 seconds. While undead, you are immune to Charm, Fear and Sleep effects.","rankDescriptions":["Draw upon unholy energy to become undead for 10 seconds. While undead, you are immune to Charm, Fear and Sleep effects."],"system":"classic"},{"id":"talent-1968","treeId":"death-knight-frost","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_holy_devotion.png","maxRank":5,"name":"Toughness","description":"Increases your armor value from items by 10% and reduces the duration of all movement slowing effects by 30%.","rankDescriptions":["Increases your armor value from items by 2% and reduces the duration of all movement slowing effects by 6%.","Increases your armor value from items by 4% and reduces the duration of all movement slowing effects by 12%.","Increases your armor value from items by 6% and reduces the duration of all movement slowing effects by 18%.","Increases your armor value from items by 8% and reduces the duration of all movement slowing effects by 24%.","Increases your armor value from items by 10% and reduces the duration of all movement slowing effects by 30%."],"system":"classic"},{"id":"talent-1973","treeId":"death-knight-frost","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_darkritual.png","maxRank":5,"name":"Black Ice","description":"Increases your Frost and Shadow damage by 10%.","rankDescriptions":["Increases your Frost and Shadow damage by 2%.","Increases your Frost and Shadow damage by 4%.","Increases your Frost and Shadow damage by 6%.","Increases your Frost and Shadow damage by 8%.","Increases your Frost and Shadow damage by 10%."],"system":"classic"},{"id":"talent-1979","treeId":"death-knight-frost","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/inv_armor_helm_plate_naxxramas_raidwarrior_c_01.png","maxRank":1,"name":"Unbreakable Armor","description":"Reinforces your armor with a thick coat of ice, increasing your armor by 25% and increasing your Strength by 20% for 20 seconds.","rankDescriptions":["Reinforces your armor with a thick coat of ice, increasing your armor by 25% and increasing your Strength by 20% for 20 seconds."],"system":"classic"},{"id":"talent-1981","treeId":"death-knight-frost","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_frost_frostshock.png","maxRank":2,"name":"Chill of the Grave","description":"Your Chains of Ice, Howling Blast, Icy Touch and Obliterate generate 5 additional runic power.","rankDescriptions":["Your Chains of Ice, Howling Blast, Icy Touch and Obliterate generate 2.5 additional runic power.","Your Chains of Ice, Howling Blast, Icy Touch and Obliterate generate 5 additional runic power."],"system":"classic"},{"id":"talent-1992","treeId":"death-knight-frost","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_frost_freezingbreath.png","maxRank":3,"name":"Rime","description":"Increases the critical strike chance of your Icy Touch and Obliterate by 15% and casting Obliterate has a 15% chance to reset the cooldown on Howling Blast and cause your next Howling Blast to consume no runes.","rankDescriptions":["Increases the critical strike chance of your Icy Touch and Obliterate by 5% and casting Obliterate has a 5% chance to reset the cooldown on Howling Blast and cause your next Howling Blast to consume no runes.","Increases the critical strike chance of your Icy Touch and Obliterate by 10% and casting Obliterate has a 10% chance to reset the cooldown on Howling Blast and cause your next Howling Blast to consume no runes.","Increases the critical strike chance of your Icy Touch and Obliterate by 15% and casting Obliterate has a 15% chance to reset the cooldown on Howling Blast and cause your next Howling Blast to consume no runes."],"system":"classic"},{"id":"talent-2029","treeId":"death-knight-frost","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_deathknight_frostpresence.png","maxRank":2,"name":"Improved Frost Presence","description":"While in Blood Presence or Unholy Presence, you retain 8% stamina from Frost Presence, and damage done to you is decreased by an additional 2% in Frost Presence.","rankDescriptions":["While in Blood Presence or Unholy Presence, you retain 4% stamina from Frost Presence, and damage done to you is decreased by an additional 1% in Frost Presence.","While in Blood Presence or Unholy Presence, you retain 8% stamina from Frost Presence, and damage done to you is decreased by an additional 2% in Frost Presence."],"system":"classic"},{"id":"talent-2030","treeId":"death-knight-frost","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_removedisease.png","maxRank":3,"name":"Glacier Rot","description":"Diseased enemies take 20% more damage from your Icy Touch, Howling Blast and Frost Strike.","rankDescriptions":["Diseased enemies take 7% more damage from your Icy Touch, Howling Blast and Frost Strike.","Diseased enemies take 13% more damage from your Icy Touch, Howling Blast and Frost Strike.","Diseased enemies take 20% more damage from your Icy Touch, Howling Blast and Frost Strike."],"system":"classic"},{"id":"talent-2040","treeId":"death-knight-frost","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/inv-sword_53.png","maxRank":3,"name":"Guile of Gorefiend","description":"Increases the critical strike damage bonus of your Blood Strike, Frost Strike, Howling Blast and Obliterate abilities by 45%, and increases the duration of your Icebound Fortitude by 6 secs.","rankDescriptions":["Increases the critical strike damage bonus of your Blood Strike, Frost Strike, Howling Blast and Obliterate abilities by 15%, and increases the duration of your Icebound Fortitude by 2 secs.","Increases the critical strike damage bonus of your Blood Strike, Frost Strike, Howling Blast and Obliterate abilities by 30%, and increases the duration of your Icebound Fortitude by 4 secs.","Increases the critical strike damage bonus of your Blood Strike, Frost Strike, Howling Blast and Obliterate abilities by 45%, and increases the duration of your Icebound Fortitude by 6 secs."],"system":"classic"},{"id":"talent-2048","treeId":"death-knight-frost","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/inv_weapon_hand_18.png","maxRank":3,"name":"Annihilation","description":"Increases the critical strike chance of your melee special abilities by 3%. In addition, there is a 100% chance that your Obliterate will do its damage without consuming diseases.","rankDescriptions":["Increases the critical strike chance of your melee special abilities by 1%. In addition, there is a 33% chance that your Obliterate will do its damage without consuming diseases.","Increases the critical strike chance of your melee special abilities by 2%. In addition, there is a 66% chance that your Obliterate will do its damage without consuming diseases.","Increases the critical strike chance of your melee special abilities by 3%. In addition, there is a 100% chance that your Obliterate will do its damage without consuming diseases."],"system":"classic"},{"id":"talent-1971","treeId":"death-knight-frost","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_twilight.png","maxRank":2,"name":"Endless Winter","description":"Your strength is increased by 4% and your Mind Freeze no longer costs runic power.","rankDescriptions":["Your strength is increased by 2% and the cost of your Mind Freeze is reduced to 10 runic power.","Your strength is increased by 4% and your Mind Freeze no longer costs runic power."],"system":"classic"},{"id":"talent-1980","treeId":"death-knight-frost","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_soulleech_2.png","maxRank":1,"name":"Deathchill","description":"When activated, makes your next Icy Touch, Howling Blast, Frost Strike or Obliterate a critical hit if used within 30 seconds.","rankDescriptions":["When activated, makes your next Icy Touch, Howling Blast, Frost Strike or Obliterate a critical hit if used within 30 seconds."],"system":"classic"},{"id":"talent-2022","treeId":"death-knight-frost","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/talents/icons/ability_dualwield.png","maxRank":3,"name":"Nerves of Cold Steel","description":"Increases your chance to hit with one-handed melee weapons by 3% and increases the damage done by your off-hand weapon by 25%.","rankDescriptions":["Increases your chance to hit with one-handed melee weapons by 1% and increases the damage done by your off-hand weapon by 8%.","Increases your chance to hit with one-handed melee weapons by 2% and increases the damage done by your off-hand weapon by 16%.","Increases your chance to hit with one-handed melee weapons by 3% and increases the damage done by your off-hand weapon by 25%."],"system":"classic"},{"id":"talent-1963","treeId":"death-knight-unholy","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_shadowwordpain.png","maxRank":2,"name":"Epidemic","description":"Increases the duration of Blood Plague and Frost Fever by 6 sec.","rankDescriptions":["Increases the duration of Blood Plague and Frost Fever by 3 sec.","Increases the duration of Blood Plague and Frost Fever by 6 sec."],"system":"classic"},{"id":"talent-1996","treeId":"death-knight-unholy","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_contagion.png","maxRank":2,"name":"Unholy Blight","description":"The victims of your Death Coil have a 100% chance to be surrounded by a vile swarm of unholy insects, taking 10% of the damage done by the Death Coil over 10 seconds, and preventing any diseases on the victim from being dispelled.","rankDescriptions":["The victims of your Death Coil have a 50% chance to be surrounded by a vile swarm of unholy insects, taking 10% of the damage done by the Death Coil over 10 seconds, and preventing any diseases on the victim from being dispelled.","The victims of your Death Coil have a 100% chance to be surrounded by a vile swarm of unholy insects, taking 10% of the damage done by the Death Coil over 10 seconds, and preventing any diseases on the victim from being dispelled."],"system":"classic"},{"id":"talent-2003","treeId":"death-knight-unholy","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/spell_shadow_callofbone.png","maxRank":3,"name":"Wandering Plague","description":"When your diseases damage an enemy, there is a chance equal to your melee critical strike chance that they will cause 100% additional damage to the target and all enemies within 8 yards. Ignores any target under the effect of a spell that is cancelled by taking damage.","rankDescriptions":["When your diseases damage an enemy, there is a chance equal to your melee critical strike chance that they will cause 33% additional damage to the target and all enemies within 8 yards. Ignores any target under the effect of a spell that is cancelled by taking damage.","When your diseases damage an enemy, there is a chance equal to your melee critical strike chance that they will cause 66% additional damage to the target and all enemies within 8 yards. Ignores any target under the effect of a spell that is cancelled by taking damage.","When your diseases damage an enemy, there is a chance equal to your melee critical strike chance that they will cause 100% additional damage to the target and all enemies within 8 yards. Ignores any target under the effect of a spell that is cancelled by taking damage."],"system":"classic"},{"id":"talent-2008","treeId":"death-knight-unholy","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_plaguecloud.png","maxRank":3,"name":"Outbreak","description":"Increases the damage of Plague Strike by 30% and Scourge Strike by 20%.","rankDescriptions":["Increases the damage of Plague Strike by 10% and Scourge Strike by 7%.","Increases the damage of Plague Strike by 20% and Scourge Strike by 13%.","Increases the damage of Plague Strike by 30% and Scourge Strike by 20%."],"system":"classic"},{"id":"talent-2082","treeId":"death-knight-unholy","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/spell_deathknight_plaguestrike.png","maxRank":2,"name":"Vicious Strikes","description":"Increases the critical strike chance by 6% and critical strike damage bonus by 30% of your Plague Strike and Scourge Strike.","rankDescriptions":["Increases the critical strike chance by 3% and critical strike damage bonus by 15% of your Plague Strike and Scourge Strike.","Increases the critical strike chance by 6% and critical strike damage bonus by 30% of your Plague Strike and Scourge Strike."],"system":"classic"},{"id":"talent-2226","treeId":"death-knight-unholy","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_shadowfiend.png","maxRank":2,"name":"Desecration","description":"Your Plague Strikes and Scourge Strikes cause the Desecrated Ground effect. Targets in the area are slowed by 50% by the grasping arms of the dead while standing on the unholy ground. Lasts 20 seconds.","rankDescriptions":["Your Plague Strikes and Scourge Strikes cause the Desecrated Ground effect. Targets in the area are slowed by 25% by the grasping arms of the dead while standing on the unholy ground. Lasts 20 seconds.","Your Plague Strikes and Scourge Strikes cause the Desecrated Ground effect. Targets in the area are slowed by 50% by the grasping arms of the dead while standing on the unholy ground. Lasts 20 seconds."],"system":"classic"},{"id":"talent-2285","treeId":"death-knight-unholy","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_shadow_unholyfrenzy.png","maxRank":5,"name":"Desolation","description":"Your Blood Strikes cause you to deal 5% additional damage with all attacks for the next 20 seconds.","rankDescriptions":["Your Blood Strikes cause you to deal 1% additional damage with all attacks for the next 20 seconds.","Your Blood Strikes cause you to deal 2% additional damage with all attacks for the next 20 seconds.","Your Blood Strikes cause you to deal 3% additional damage with all attacks for the next 20 seconds.","Your Blood Strikes cause you to deal 4% additional damage with all attacks for the next 20 seconds.","Your Blood Strikes cause you to deal 5% additional damage with all attacks for the next 20 seconds."],"system":"classic"},{"id":"talent-1932","treeId":"death-knight-unholy","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_burningspirit.png","maxRank":3,"name":"Virulence","description":"Increases your chance to hit with your spells by 3% and reduces the chance that your damage over time diseases can be cured by 30%.","rankDescriptions":["Increases your chance to hit with your spells by 1% and reduces the chance that your damage over time diseases can be cured by 10%.","Increases your chance to hit with your spells by 2% and reduces the chance that your damage over time diseases can be cured by 20%.","Increases your chance to hit with your spells by 3% and reduces the chance that your damage over time diseases can be cured by 30%."],"system":"classic"},{"id":"talent-1933","treeId":"death-knight-unholy","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_deathanddecay.png","maxRank":3,"name":"Morbidity","description":"Increases the damage and healing of Death Coil by 15% and reduces the cooldown on Death and Decay by 15 sec.","rankDescriptions":["Increases the damage and healing of Death Coil by 5% and reduces the cooldown on Death and Decay by 5 sec.","Increases the damage and healing of Death Coil by 10% and reduces the cooldown on Death and Decay by 10 sec.","Increases the damage and healing of Death Coil by 15% and reduces the cooldown on Death and Decay by 15 sec."],"system":"classic"},{"id":"talent-1962","treeId":"death-knight-unholy","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/spell_nature_nullifydisease.png","maxRank":3,"name":"Crypt Fever","description":"Your diseases also cause Crypt Fever, which increases disease damage taken by the target by 30%.","rankDescriptions":["Your diseases also cause Crypt Fever, which increases disease damage taken by the target by 10%.","Your diseases also cause Crypt Fever, which increases disease damage taken by the target by 20%.","Your diseases also cause Crypt Fever, which increases disease damage taken by the target by 30%."],"system":"classic"},{"id":"talent-2000","treeId":"death-knight-unholy","index":31,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_hunter_pet_bat.png","maxRank":1,"name":"Summon Gargoyle","description":"A Gargoyle flies into the area and bombards the target with Nature damage modified by the Death Knight's attack power. Persists for 30 seconds.","rankDescriptions":["A Gargoyle flies into the area and bombards the target with Nature damage modified by the Death Knight's attack power. Persists for 30 seconds."],"system":"classic"},{"id":"talent-2005","treeId":"death-knight-unholy","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_shadowandflame.png","maxRank":5,"name":"Impurity","description":"The attack power bonus of your Deathknight spells is increased by 4%.","rankDescriptions":["The attack power bonus of your Deathknight spells is increased by 4%.","The attack power bonus of your Deathknight spells is increased by 4%.","The attack power bonus of your Deathknight spells is increased by 4%.","The attack power bonus of your Deathknight spells is increased by 4%.","The attack power bonus of your Deathknight spells is increased by 4%."],"system":"classic"},{"id":"talent-2009","treeId":"death-knight-unholy","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_antimagicshell.png","maxRank":3,"name":"Magic Suppression","description":"You take 6% less damage from all magic. In addition, your Anti-Magic Shell absorbs an additional 25% of spell damage.","rankDescriptions":["You take 2% less damage from all magic. In addition, your Anti-Magic Shell absorbs an additional 8% of spell damage.","You take 4% less damage from all magic. In addition, your Anti-Magic Shell absorbs an additional 16% of spell damage.","You take 6% less damage from all magic. In addition, your Anti-Magic Shell absorbs an additional 25% of spell damage."],"system":"classic"},{"id":"talent-2036","treeId":"death-knight-unholy","index":30,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/inv_weapon_halberd14.png","maxRank":5,"name":"Rage of Rivendare","description":"Your spells and abilities deal 10% more damage to targets infected with Blood Plague. Also increases your expertise by 5.","rankDescriptions":["Your spells and abilities deal 2% more damage to targets infected with Blood Plague.","Your spells and abilities deal 4% more damage to targets infected with Blood Plague. Also increases your expertise by 2.","Your spells and abilities deal 6% more damage to targets infected with Blood Plague. Also increases your expertise by 3.","Your spells and abilities deal 8% more damage to targets infected with Blood Plague. Also increases your expertise by 4.","Your spells and abilities deal 10% more damage to targets infected with Blood Plague. Also increases your expertise by 5."],"system":"classic"},{"id":"talent-2039","treeId":"death-knight-unholy","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_deathknight_summondeathcharger.png","maxRank":2,"name":"On a Pale Horse","description":"You become as hard to stop as death itself. The duration of all Stun and Fear effects used against you is reduced by 20%, and your mounted speed is increased by 20%. This does not stack with other movement speed increasing effects.","rankDescriptions":["You become as hard to stop as death itself. The duration of all Stun and Fear effects used against you is reduced by 10%, and your mounted speed is increased by 10%. This does not stack with other movement speed increasing effects.","You become as hard to stop as death itself. The duration of all Stun and Fear effects used against you is reduced by 20%, and your mounted speed is increased by 20%. This does not stack with other movement speed increasing effects."],"system":"classic"},{"id":"talent-2043","treeId":"death-knight-unholy","index":28,"prerequisiteId":"talent-1962","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-1962","requiredRank":3}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/ability_creature_cursed_03.png","maxRank":3,"name":"Ebon Plaguebringer","description":"Your Crypt Fever morphs into Ebon Plague, which increases magic damage taken by 13% in addition to increasing disease damage taken. Improves your critical strike chance with weapons and spells by 3% at all times.","rankDescriptions":["Your Crypt Fever morphs into Ebon Plague, which increases magic damage taken by 4% in addition to increasing disease damage taken. Improves your critical strike chance with weapons and spells by 1% at all times.","Your Crypt Fever morphs into Ebon Plague, which increases magic damage taken by 9% in addition to increasing disease damage taken. Improves your critical strike chance with weapons and spells by 2% at all times.","Your Crypt Fever morphs into Ebon Plague, which increases magic damage taken by 13% in addition to increasing disease damage taken. Improves your critical strike chance with weapons and spells by 3% at all times."],"system":"classic"},{"id":"talent-2047","treeId":"death-knight-unholy","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/inv_weapon_shortblade_60.png","maxRank":5,"name":"Necrosis","description":"Your auto attacks deal an additional 20% Shadow damage.","rankDescriptions":["Your auto attacks deal an additional 4% Shadow damage.","Your auto attacks deal an additional 8% Shadow damage.","Your auto attacks deal an additional 12% Shadow damage.","Your auto attacks deal an additional 16% Shadow damage.","Your auto attacks deal an additional 20% Shadow damage."],"system":"classic"},{"id":"talent-2221","treeId":"death-knight-unholy","index":22,"prerequisiteId":"talent-2009","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-2009","requiredRank":3}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_deathknight_antimagiczone.png","maxRank":1,"name":"Anti-Magic Zone","description":"Places a large, stationary Anti-Magic Zone that reduces spell damage done to party or raid members inside it by 75%. The Anti-Magic Zone lasts for 10 seconds or until it absorbs the listed amount power} spell damage.","rankDescriptions":["Places a large, stationary Anti-Magic Zone that reduces spell damage done to party or raid members inside it by 75%. The Anti-Magic Zone lasts for 10 seconds or until it absorbs the listed amount power} spell damage."],"system":"classic"},{"id":"talent-1985","treeId":"death-knight-unholy","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/ability_creature_disease_02.png","maxRank":1,"name":"Corpse Explosion","description":"Cause a corpse to explode for 166 Shadow damage to all enemies within the listed amount yards. Will use a nearby corpse if the target is not a corpse. Does not affect mechanical or elemental corpses.","rankDescriptions":["Cause a corpse to explode for 166 Shadow damage to all enemies within the listed amount yards. Will use a nearby corpse if the target is not a corpse. Does not affect mechanical or elemental corpses."],"system":"classic"},{"id":"talent-2001","treeId":"death-knight-unholy","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_shadetruesight.png","maxRank":3,"name":"Reaping","description":"Whenever you hit with Blood Strike or Pestilence there is a 100% chance that the Blood Rune becomes a Death Rune when it activates. Death Runes count as a Blood, Frost or Unholy Rune.","rankDescriptions":["Whenever you hit with Blood Strike or Pestilence there is a 33% chance that the Blood Rune becomes a Death Rune when it activates. Death Runes count as a Blood, Frost or Unholy Rune.","Whenever you hit with Blood Strike or Pestilence there is a 66% chance that the Blood Rune becomes a Death Rune when it activates. Death Runes count as a Blood, Frost or Unholy Rune.","Whenever you hit with Blood Strike or Pestilence there is a 100% chance that the Blood Rune becomes a Death Rune when it activates. Death Runes count as a Blood, Frost or Unholy Rune."],"system":"classic"},{"id":"talent-2004","treeId":"death-knight-unholy","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/ability_criticalstrike.png","maxRank":3,"name":"Blood-Caked Blade","description":"Your auto attacks have a 30% chance to cause a Blood-Caked Strike, which hits for 25% weapon damage plus the listed amount% for each of your diseases on the target.","rankDescriptions":["Your auto attacks have a 10% chance to cause a Blood-Caked Strike, which hits for 25% weapon damage plus the listed amount% for each of your diseases on the target.","Your auto attacks have a 20% chance to cause a Blood-Caked Strike, which hits for 25% weapon damage plus the listed amount% for each of your diseases on the target.","Your auto attacks have a 30% chance to cause a Blood-Caked Strike, which hits for 25% weapon damage plus the listed amount% for each of your diseases on the target."],"system":"classic"},{"id":"talent-2007","treeId":"death-knight-unholy","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/inv_chest_leather_13.png","maxRank":1,"name":"Bone Shield","description":"The Death Knight is surrounded by 3 whirling bones. While at least 1 bone remains, he takes 20% less damage from all sources and deals 2% more damage with all attacks, spells and abilities. Each damaging attack that lands consumes 1 bone. Lasts 5 minutes.","rankDescriptions":["The Death Knight is surrounded by 3 whirling bones. While at least 1 bone remains, he takes 20% less damage from all sources and deals 2% more damage with all attacks, spells and abilities. Each damaging attack that lands consumes 1 bone. Lasts 5 minutes."],"system":"classic"},{"id":"talent-2011","treeId":"death-knight-unholy","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_shadesofdarkness.png","maxRank":2,"name":"Dirge","description":"Your Death Strike, Plague Strike and Scourge Strike generate 5 additional runic power.","rankDescriptions":["Your Death Strike, Plague Strike and Scourge Strike generate 2.5 additional runic power.","Your Death Strike, Plague Strike and Scourge Strike generate 5 additional runic power."],"system":"classic"},{"id":"talent-2013","treeId":"death-knight-unholy","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_deathknight_unholypresence.png","maxRank":2,"name":"Improved Unholy Presence","description":"While in Blood Presence or Frost Presence, you retain 15% increased movement speed from Unholy Presence, and your runes finish their cooldowns 10% faster in Unholy Presence.","rankDescriptions":["While in Blood Presence or Frost Presence, you retain 8% increased movement speed from Unholy Presence, and your runes finish their cooldowns 5% faster in Unholy Presence.","While in Blood Presence or Frost Presence, you retain 15% increased movement speed from Unholy Presence, and your runes finish their cooldowns 10% faster in Unholy Presence."],"system":"classic"},{"id":"talent-2025","treeId":"death-knight-unholy","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_deathknight_strangulate.png","maxRank":2,"name":"Unholy Command","description":"Reduces the cooldown of your Death Grip ability by 10 sec.","rankDescriptions":["Reduces the cooldown of your Death Grip ability by 5 sec.","Reduces the cooldown of your Death Grip ability by 10 sec."],"system":"classic"},{"id":"talent-2216","treeId":"death-knight-unholy","index":29,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/spell_deathknight_scourgestrike.png","maxRank":1,"name":"Scourge Strike","description":"An unholy strike that deals 70% of weapon damage as Physical damage plus the listed amount In addition, for each of your diseases on your target, you deal an additional 12% of the Physical damage done as Shadow damage.","rankDescriptions":["An unholy strike that deals 70% of weapon damage as Physical damage plus the listed amount In addition, for each of your diseases on your target, you deal an additional 12% of the Physical damage done as Shadow damage."],"system":"classic"},{"id":"talent-2218","treeId":"death-knight-unholy","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_mirrorimage.png","maxRank":5,"name":"Anticipation","description":"Increases your Dodge chance by 5%.","rankDescriptions":["Increases your Dodge chance by 1%.","Increases your Dodge chance by 2%.","Increases your Dodge chance by 3%.","Increases your Dodge chance by 4%.","Increases your Dodge chance by 5%."],"system":"classic"},{"id":"talent-1934","treeId":"death-knight-unholy","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/talents/icons/spell_deathknight_gnaw_ghoul.png","maxRank":3,"name":"Ravenous Dead","description":"Increases your total Strength by 3% and the contribution your Ghouls get from your Strength and Stamina by 60%","rankDescriptions":["Increases your total Strength by 1% and the contribution your Ghouls get from your Strength and Stamina by 20%.","Increases your total Strength by 2% and the contribution your Ghouls get from your Strength and Stamina by 40%.","Increases your total Strength by 3% and the contribution your Ghouls get from your Strength and Stamina by 60%"],"system":"classic"},{"id":"talent-1984","treeId":"death-knight-unholy","index":20,"prerequisiteId":"talent-2225","prerequisiteRank":2,"prerequisites":[{"talentId":"talent-2225","requiredRank":2}],"column":4,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_animatedead.png","maxRank":1,"name":"Master of Ghouls","description":"Reduces the cooldown on Raise Dead by the listed amount sec, and the Ghoul summoned by your Raise Dead spell is considered a pet under your control. Unlike normal Death Knight Ghouls, your pet does not have a limited duration.","rankDescriptions":["Reduces the cooldown on Raise Dead by the listed amount sec, and the Ghoul summoned by your Raise Dead spell is considered a pet under your control. Unlike normal Death Knight Ghouls, your pet does not have a limited duration."],"system":"classic"},{"id":"talent-2085","treeId":"death-knight-unholy","index":24,"prerequisiteId":"talent-1984","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1984","requiredRank":1}],"column":4,"row":7,"icon":"/assets/ui/talents/icons/ability_ghoulfrenzy.png","maxRank":1,"name":"Ghoul Frenzy","description":"Grants your undead pet 25% haste for 30 seconds and heals it for the listed amount% of its health over the duration.","rankDescriptions":["Grants your undead pet 25% haste for 30 seconds and heals it for the listed amount% of its health over the duration."],"system":"classic"},{"id":"talent-2225","treeId":"death-knight-unholy","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/spell_deathknight_armyofthedead.png","maxRank":2,"name":"Night of the Dead","description":"Reduces the cooldown on Raise Dead by the listed amount sec and the cooldown on Army of the Dead by the listed amount min. Also reduces the damage your pet takes from creature area of effect attacks by 90%.","rankDescriptions":["Reduces the cooldown on Raise Dead by the listed amount sec and the cooldown on Army of the Dead by the listed amount min. Also reduces the damage your pet takes from creature area of effect attacks by 45%.","Reduces the cooldown on Raise Dead by the listed amount sec and the cooldown on Army of the Dead by the listed amount min. Also reduces the damage your pet takes from creature area of effect attacks by 90%."],"system":"classic"}]} diff --git a/src/game/generated/talentUi/druid.json b/src/game/generated/talentUi/druid.json new file mode 100644 index 00000000..3bd1694e --- /dev/null +++ b/src/game/generated/talentUi/druid.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"druid","trees":[{"id":"druid-balance","classId":"druid","name":"Balance","icon":"/assets/ui/talents/icons/spell_nature_starfall.png","background":"/assets/ui/talents/backgrounds/talent_druid1.png","description":"Wield lunar, solar, and natural magic.","system":"classic"},{"id":"druid-feral-combat","classId":"druid","name":"Feral Combat","icon":"/assets/ui/talents/icons/ability_racial_bearform.png","background":"/assets/ui/talents/backgrounds/talent_druid2.png","description":"Fight in powerful animal forms.","system":"classic"},{"id":"druid-restoration","classId":"druid","name":"Restoration","icon":"/assets/ui/talents/icons/spell_nature_healingtouch.png","background":"/assets/ui/talents/backgrounds/talent_druid3.png","description":"Restore life through natural regeneration.","system":"classic"}],"nodes":[{"id":"talent-797","treeId":"druid-feral-combat","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/ability_druid_bash.png","maxRank":3,"name":"Brutal Impact","description":"Increases the stun duration of your Bash by 1 sec. Capstone Bonus: Bash or Feral Charge (Bear) deals the listed amount power*66/100} damage.","rankDescriptions":["Increases the stun duration of your Bash by 0.33 sec. Capstone Bonus: Bash and Feral Charge (Bear) deals the listed amount power*66/100} damage.","Increases the stun duration of your Bash by 0.66. Capstone Bonus: Bash and Feral Charge (Bear) deals the listed amount power*66/100} damage.","Increases the stun duration of your Bash by 1 sec. Capstone Bonus: Bash or Feral Charge (Bear) deals the listed amount power*66/100} damage."],"system":"classic"},{"id":"talent-799","treeId":"druid-feral-combat","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/ability_ambush.png","maxRank":3,"name":"Feral Instinct","description":"Increases Swipe and Ravage damage by 30%. Increases all damage dealt by 3% while Tiger's Fury is active. Reduces all damage taken by 3% while Enrage is active. Capstone Bonus: Dealing damage with Swipe and Ravage reduce the cooldown of Tiger's Fury and Enrage by 1 second.","rankDescriptions":["Increases Swipe and Ravage damage by 10%. Increases all damage dealt by 1% while Tiger's Fury is active. Reduces all damage taken by 1% while Enrage is active. Capstone Bonus: Dealing damage with Swipe and Ravage reduce the cooldown of Tiger's Fury and Enrage by 1 second.","Increases Swipe and Ravage damage by 20%. Increases all damage dealt by 2% while Tiger's Fury is active. Reduces all damage taken by 2% while Enrage is active. Capstone Bonus: Dealing damage with Swipe and Ravage reduce the cooldown of Tiger's Fury and Enrage by 1 second.","Increases Swipe and Ravage damage by 30%. Increases all damage dealt by 3% while Tiger's Fury is active. Reduces all damage taken by 3% while Enrage is active. Capstone Bonus: Dealing damage with Swipe and Ravage reduce the cooldown of Tiger's Fury and Enrage by 1 second."],"system":"classic"},{"id":"talent-802","treeId":"druid-feral-combat","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_vampiricaura.png","maxRank":3,"name":"Shredding Attacks","description":"Reduces the energy cost of your Shred and Ravage by 15. Capstone Bonus: Using Shred or Ravage while you are behind a target applies Shredded Defense to the enemy, increasing the Physical damage the target takes from you by 5% for 6 seconds, stacks up to 3 times.","rankDescriptions":["Reduces the energy cost of your Shred and Ravage by 5. Capstone Bonus: Using Shred or Ravage while you are behind a target applies Shredded Defense to the enemy, increasing the physical damage the target takes from you by 5% for 6 seconds, stacks up to 3 times.","Reduces the energy cost of your Shred and Ravage by 10. Capstone Bonus: Using Shred or Ravage while you are behind a target applies Shredded Defense to the enemy, increasing the Physical damage the target takes from you by 5% for 6 seconds, stacks up to 3 times.","Reduces the energy cost of your Shred and Ravage by 15. Capstone Bonus: Using Shred or Ravage while you are behind a target applies Shredded Defense to the enemy, increasing the Physical damage the target takes from you by 5% for 6 seconds, stacks up to 3 times."],"system":"classic"},{"id":"talent-807","treeId":"druid-feral-combat","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_spiritwolf.png","maxRank":2,"name":"Feral Swiftness","description":"Increases your movement speed by 20% in Cat Form and by 10% in Bear Form. Reduces the cooldown of Survival Instincts by 50%.","rankDescriptions":["Increases your movement speed by 10% in Cat Form and by 5% in Bear Form. Reduces the cooldown of Survival Instincts by 25%.","Increases your movement speed by 20% in Cat Form and by 10% in Bear Form. Reduces the cooldown of Survival Instincts by 50%."],"system":"classic"},{"id":"talent-1921","treeId":"druid-feral-combat","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_druid_kingofthejungle.png","maxRank":3,"name":"King of the Jungle","description":"While in Bear Form or Dire Bear Form, Enrage ability increases physical damage done by 15%. While in Cat Form, Casting Tiger's Fury restores the listed amount energy over 10 seconds. Additionally, you deal 6% increased damage while above 75% health. Capstone Bonus: The global cooldown of Cat Form and Bear Form is reduced by 0.5 sec.","rankDescriptions":["While in Bear Form or Dire Bear Form, Enrage ability increases physical damage done by 5%. While in Cat Form, Casting Tiger's Fury restores the listed amount energy over 10 seconds. Additionally, you deal 2% increased damage while above 75% health. Capstone Bonus: The global cooldown of Cat Form and Bear Form is reduced by 0.5 sec.","While in Bear Form or Dire Bear Form, Enrage ability increases physical damage done by 10%. While in Cat Form, Casting Tiger's Fury restores the listed amount energy over 10 seconds. Additionally, you deal 4% increased damage while above 75% health. Capstone Bonus: The global cooldown of Cat Form and Bear Form is reduced by 0.5 sec.","While in Bear Form or Dire Bear Form, Enrage ability increases physical damage done by 15%. While in Cat Form, Casting Tiger's Fury restores the listed amount energy over 10 seconds. Additionally, you deal 6% increased damage while above 75% health. Capstone Bonus: The global cooldown of Cat Form and Bear Form is reduced by 0.5 sec."],"system":"classic"},{"id":"talent-2241","treeId":"druid-feral-combat","index":22,"prerequisiteId":"talent-809","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-809","requiredRank":1}],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_druid_challangingroar.png","maxRank":3,"name":"Protector of the Pack","description":"While in Bear or Dire Bear Form your attack power is increased by 6% and the physical damage you take is reduced by 6%. Increases the melee attack power reduction of your Demoralizing Roar by 20%.","rankDescriptions":["While in Bear or Dire Bear Form your attack power is increased by 2% and the physical damage you take is reduced by 2%. Increases the melee attack power reduction of your Demoralizing Roar by 7%.","While in Bear or Dire Bear Form your attack power is increased by 4% and the physical damage you take is reduced by 4%. Increases the melee attack power reduction of your Demoralizing Roar by 14%.","While in Bear or Dire Bear Form your attack power is increased by 6% and the physical damage you take is reduced by 6%. Increases the melee attack power reduction of your Demoralizing Roar by 20%."],"system":"classic"},{"id":"talent-2242","treeId":"druid-feral-combat","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/ability_bullrush.png","maxRank":3,"name":"Natural Reaction","description":"Increases your dodge rating by 15% of your Agility while in Bear Form or Dire Bear Form. You regenerate 15 rage every time you dodge while in Bear Form or Dire Bear Form.","rankDescriptions":["Increases your dodge rating by 5% of your Agility while in Bear Form or Dire Bear Form. You regenerate 5 rage every time you dodge while in Bear Form or Dire Bear Form.","Increases your dodge rating by 10% of your Agility while in Bear Form or Dire Bear Form. You regenerate 10 rage every time you dodge while in Bear Form or Dire Bear Form.","Increases your dodge rating by 15% of your Agility while in Bear Form or Dire Bear Form. You regenerate 15 rage every time you dodge while in Bear Form or Dire Bear Form."],"system":"classic"},{"id":"talent-796","treeId":"druid-feral-combat","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/ability_hunter_pet_hyena.png","maxRank":5,"name":"Ferocity","description":"Increases all attributes by 5% and reduces the energy cost of your Swipe (Cat), Claw, Rake and Mangle (Cat) abilities by 10 Energy. Reduces the rage cost of your Maul, Swipe (Bear), and Mangle (Bear) by 5 Rage.","rankDescriptions":["Increases all attributes by 1% and reduces the energy cost of your Swipe (Cat), Claw, Rake and Mangle (Cat) abilities by 2 Energy. Reduces the rage cost of your Maul, Swipe (Bear), and Mangle (Bear) by 1 Rage.","Increases all attributes by 2% and reduces the energy cost of your Swipe (Cat), Claw, Rake and Mangle (Cat) abilities by 4 Energy. Reduces the rage cost of your Maul, Swipe (Bear), and Mangle (Bear) by 2 Rage.","Increases all attributes by 3% and reduces the energy cost of your Swipe (Cat), Claw, Rake and Mangle (Cat) abilities by 6 Energy. Reduces the rage cost of your Maul, Swipe (Bear), and Mangle (Bear) by 3 Rage.","Increases all attributes by 4% and reduces the energy cost of your Swipe (Cat), Claw, Rake and Mangle (Cat) abilities by 8 Energy. Reduces the rage cost of your Maul, Swipe (Bear), and Mangle (Bear) by 4 Rage.","Increases all attributes by 5% and reduces the energy cost of your Swipe (Cat), Claw, Rake and Mangle (Cat) abilities by 10 Energy. Reduces the rage cost of your Maul, Swipe (Bear), and Mangle (Bear) by 5 Rage."],"system":"classic"},{"id":"talent-803","treeId":"druid-feral-combat","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/ability_hunter_pet_cat.png","maxRank":3,"name":"Predatory Strikes","description":"Reduces the energy cost of your Cat Form finishing moves by 9. Your Feral finishing moves have a the listed amount% chance per combo point spent to make your next Druid Nature spell with a base casting time less than 10 sec. become an instant cast spell. Healing Touch used this way heals for 25% less.","rankDescriptions":["Reduces the energy cost of your Cat Form finishing moves by 3. Your Feral finishing moves have a the listed amount% chance per combo point spent to make your next Druid Nature spell with a base casting time less than 10 sec. become an instant cast spell. Healing Touch used this way heals for 25% less.","Reduces the energy cost of your Cat Form finishing moves by 6. Your Feral finishing moves have a the listed amount% chance per combo point spent to make your next Druid Nature spell with a base casting time less than 10 sec. become an instant cast spell. Healing Touch used this way heals for 25% less.","Reduces the energy cost of your Cat Form finishing moves by 9. Your Feral finishing moves have a the listed amount% chance per combo point spent to make your next Druid Nature spell with a base casting time less than 10 sec. become an instant cast spell. Healing Touch used this way heals for 25% less."],"system":"classic"},{"id":"talent-805","treeId":"druid-feral-combat","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_druid_ravage.png","maxRank":3,"name":"Savage Fury","description":"Increases the damage caused by your Claw, Rake, Shred, Mangle (Cat), Mangle (Bear), and Maul abilities by 12%.","rankDescriptions":["Increases the damage caused by your Claw, Rake, Shred, Mangle (Cat), Mangle (Bear), and Maul abilities by 4%.","Increases the damage caused by your Claw, Rake, Shred, Mangle (Cat), Mangle (Bear), and Maul abilities by 8%.","Increases the damage caused by your Claw, Rake, Shred, Mangle (Cat), Mangle (Bear), and Maul abilities by 12%."],"system":"classic"},{"id":"talent-808","treeId":"druid-feral-combat","index":17,"prerequisiteId":"talent-803","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-803","requiredRank":3}],"column":2,"row":6,"icon":"/assets/ui/talents/icons/spell_holy_blessingofagility.png","maxRank":3,"name":"Heart of the Wild","description":"Increases your Intellect by 9%. While in Bear or Dire Bear Form your Stamina is increased by 6%. While in Cat Form your attack power is increased by 6%.","rankDescriptions":["Increases your Intellect by 3%. While in Bear or Dire Bear Form your Stamina is increased by 2%. While in Cat Form your attack power is increased by 2%.","Increases your Intellect by 6%. While in Bear or Dire Bear Form your Stamina is increased by 4%. While in Cat Form your attack power is increased by 4%.","Increases your Intellect by 9%. While in Bear or Dire Bear Form your Stamina is increased by 6%. While in Cat Form your attack power is increased by 6%."],"system":"classic"},{"id":"talent-809","treeId":"druid-feral-combat","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_nature_unyeildingstamina.png","maxRank":1,"name":"Leader of the Pack","description":"While in Cat, Bear or Dire Bear Form, the Leader of the Pack increases ranged and melee critical strike chance of all party and raid members by 5%. Does not stack with other similar effects.","rankDescriptions":["While in Cat, Bear or Dire Bear Form, the Leader of the Pack increases ranged and melee critical strike chance of all party and raid members by 5%. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-1162","treeId":"druid-feral-combat","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/ability_druid_tigersroar.png","maxRank":1,"name":"Survival Instincts","description":"Increases your maximum health by 20% and triples effectiveness of Nurturing Instinct's increased healing received effect for 20 seconds. Only usable while in Cat, Bear or Dire Bear Form. After the effect expires, the health is lost. Shares a cooldown with Last Stand.","rankDescriptions":["Increases your maximum health by 20% and triples effectiveness of Nurturing Instinct's increased healing received effect for 20 seconds. Only usable while in Cat, Bear or Dire Bear Form. After the effect expires, the health is lost. Shares a cooldown with Last Stand."],"system":"classic"},{"id":"talent-1796","treeId":"druid-feral-combat","index":26,"prerequisiteId":"talent-809","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-809","requiredRank":1}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/ability_druid_mangle2.png","maxRank":1,"name":"Mangle","description":"Mangle the target, inflicting damage and causing the target to take 30% additional damage from bleeds for 1 minute. Does not stack with similar effects. This ability can be used in Cat Form or Dire Bear Form.","rankDescriptions":["Mangle the target, inflicting damage and causing the target to take 30% additional damage from bleeds for 1 minute. Does not stack with similar effects. This ability can be used in Cat Form or Dire Bear Form."],"system":"classic"},{"id":"talent-1918","treeId":"druid-feral-combat","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_druid_primalagression.png","maxRank":3,"name":"Rend and Tear","description":"Targets affected by your Rip or Lacerate make your Maul and Shred attacks deal 20% more damage and increase the critical strike chance of your Ferocious Bite ability by 30%.","rankDescriptions":["Targets affected by your Rip or Lacerate make your Maul and Shred attacks deal 7% more damage and increase the critical strike chance of your Ferocious Bite ability by 10%.","Targets affected by your Rip or Lacerate make your Maul and Shred attacks deal 14% more damage and increase the critical strike chance of your Ferocious Bite ability by 20%.","Targets affected by your Rip or Lacerate make your Maul and Shred attacks deal 20% more damage and increase the critical strike chance of your Ferocious Bite ability by 30%."],"system":"classic"},{"id":"talent-1927","treeId":"druid-feral-combat","index":30,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_druid_berserk.png","maxRank":1,"name":"Berserk","description":"When activated, this ability causes your Mangle abilities to hit up to 3 targets and have no cooldown. Reduces the cost of all your Cat Form and Bear Form abilities by 50%. While active your Savage Defense absorb effect is doubled. Cat combo point generators grant 4 additional combo points. (1 vs players). Lasts 10 seconds.","rankDescriptions":["When activated, this ability causes your Mangle abilities to hit up to 3 targets and have no cooldown. Reduces the cost of all your Cat Form and Bear Form abilities by 50%. While active your Savage Defense absorb effect is doubled. Cat combo point generators grant 4 additional combo points. (1 vs players). Lasts 10 seconds."],"system":"classic"},{"id":"talent-794","treeId":"druid-feral-combat","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/inv_misc_pelt_bear_03.png","maxRank":3,"name":"Elder Hide","description":"Increases your Stamina by 3%. Increases the Armor contribution from cloth and leather items while in Bear or Dire Bear Form by 20%. Capstone Bonus: Ironfur now increases healing received by 4% per stack.","rankDescriptions":["Increases your Stamina by 0%. Increases the Armor contribution from cloth and leather items while in Bear or Dire Bear Form by 7%. Capstone Bonus: Ironfur now increases healing received by 4% per stack.","Increases your Stamina by 2%. Increases the Armor contribution from cloth and leather items while in Bear or Dire Bear Form by 14%. Capstone Bonus: Ironfur now increases healing received by 4% per stack.","Increases your Stamina by 3%. Increases the Armor contribution from cloth and leather items while in Bear or Dire Bear Form by 20%. Capstone Bonus: Ironfur now increases healing received by 4% per stack."],"system":"classic"},{"id":"talent-795","treeId":"druid-feral-combat","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_druid_demoralizingroar.png","maxRank":3,"name":"Feral Aggression","description":"Increases the damage you do to targets above 75% health by 9%. Increases your attack power while in Feral forms by 150% of your level.","rankDescriptions":["Increases the damage you do to targets above 75% health by 3%. Increases your attack power while in Feral forms by 50% of your level.","Increases the damage you do to targets above 75% health by 6%. Increases your attack power while in Feral forms by 100% of your level.","Increases the damage you do to targets above 75% health by 9%. Increases your attack power while in Feral forms by 150% of your level."],"system":"classic"},{"id":"talent-798","treeId":"druid-feral-combat","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/inv_misc_monsterclaw_04.png","maxRank":3,"name":"Sharpened Claws","description":"Increases your critical strike chance with all spells and abilities while in Bear, Dire Bear or Cat Form by 6%.","rankDescriptions":["Increases your critical strike chance with all spells and abilities while in Bear, Dire Bear or Cat Form by 2%.","Increases your critical strike chance with all spells and abilities while in Bear, Dire Bear or Cat Form by 4%.","Increases your critical strike chance with all spells and abilities while in Bear, Dire Bear or Cat Form by 6%."],"system":"classic"},{"id":"talent-801","treeId":"druid-feral-combat","index":11,"prerequisiteId":"talent-798","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-798","requiredRank":3}],"column":3,"row":4,"icon":"/assets/ui/talents/icons/ability_racial_cannibalize.png","maxRank":2,"name":"Primal Fury","description":"Gives you a 100% chance to gain an additional 5 Rage anytime you get a critical strike while in Bear and Dire Bear Form. Your critical strikes from Cat Form abilities that add combo points have a 100% chance to add an additional combo point.","rankDescriptions":["Gives you a 50% chance to gain an additional 5 Rage anytime you get a critical strike while in Bear and Dire Bear Form. Your critical strikes from Cat Form abilities that add combo points have a 50% chance to add an additional combo point.","Gives you a 100% chance to gain an additional 5 Rage anytime you get a critical strike while in Bear and Dire Bear Form. Your critical strikes from Cat Form abilities that add combo points have a 100% chance to add an additional combo point."],"system":"classic"},{"id":"talent-804","treeId":"druid-feral-combat","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/ability_hunter_pet_bear.png","maxRank":1,"name":"Feral Charge","description":"Teaches Feral Charge (Bear) and Feral Charge (Cat). @s:16979:0@ @s:49376:0@","rankDescriptions":["Teaches Feral Charge (Bear) and Feral Charge (Cat). @s:16979:0@ @s:49376:0@"],"system":"classic"},{"id":"talent-1794","treeId":"druid-feral-combat","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/ability_druid_enrage.png","maxRank":3,"name":"Survival of the Fittest","description":"While you are in Bear Form: Increases all attributes by 3%. Reduces the chance you'll be critically hit by melee attacks by 6%. Increases your armor contribution from cloth and leather items by 10%.","rankDescriptions":["While you are in Bear Form: Increases all attributes by 1%. Reduces the chance you'll be critically hit by melee attacks by 2%. Increases your armor contribution from cloth and leather items by 4%.","While you are in Bear Form: Increases all attributes by 2%. Reduces the chance you'll be critically hit by melee attacks by 4%. Increases your armor contribution from cloth and leather items by 7%.","While you are in Bear Form: Increases all attributes by 3%. Reduces the chance you'll be critically hit by melee attacks by 6%. Increases your armor contribution from cloth and leather items by 10%."],"system":"classic"},{"id":"talent-1795","treeId":"druid-feral-combat","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_druid_predatoryinstincts.png","maxRank":3,"name":"Predatory Instincts","description":"While in Cat Form increases your damage from all critical strikes by 15% and reduces the damage taken from area of effect attacks by 10%. This does not stack with other similar effects.","rankDescriptions":["While in Cat Form increases your damage from all critical strikes by 5% and reduces the damage taken from area of effect attacks by 4%. This does not stack with other similar effects.","While in Cat Form increases your damage from all critical strikes by 10% and reduces the damage taken from area of effect attacks by 7%. This does not stack with other similar effects.","While in Cat Form increases your damage from all critical strikes by 15% and reduces the damage taken from area of effect attacks by 10%. This does not stack with other similar effects."],"system":"classic"},{"id":"talent-1798","treeId":"druid-feral-combat","index":20,"prerequisiteId":"talent-809","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-809","requiredRank":1}],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_nature_unyeildingstamina.png","maxRank":2,"name":"Improved Leader of the Pack","description":"Leader of the Pack also causes affected targets to heal themselves for 4% of their base health when they critically hit with a melee or ranged attack. You gain 16% of your base mana when you benefit from this heal. The healing effect cannot occur more than once every 6 sec.","rankDescriptions":["Leader of the Pack also causes affected targets to heal themselves for 2% of their base health when they critically hit with a melee or ranged attack. You gain 8% of your base mana when you benefit from this heal. The healing effect cannot occur more than once every 6 sec.","Leader of the Pack also causes affected targets to heal themselves for 4% of their base health when they critically hit with a melee or ranged attack. You gain 16% of your base mana when you benefit from this heal. The healing effect cannot occur more than once every 6 sec."],"system":"classic"},{"id":"talent-1920","treeId":"druid-feral-combat","index":27,"prerequisiteId":"talent-1796","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1796","requiredRank":1}],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_druid_mangle2.png","maxRank":3,"name":"Improved Mangle","description":"Increases the damage of your Mangle by 20%. Reduces the cooldown of your Mangle (Bear) ability by the listed amount sec., and reduces the energy cost of your Mangle (Cat) ability by 6. Capstone Bonus: Your Mangle reduces the cooldown of your Enrage and Tiger's Fury by 3 seconds. This effect has a 3 second cooldown.","rankDescriptions":["Increases the damage of your Mangle by 7%. Reduces the cooldown of your Mangle (Bear) ability by the listed amount sec. and reduces the energy cost of your Mangle (Cat) ability by 2. Capstone Bonus: Your Mangle reduces the cooldown of your Enrage and Tiger's Fury by 3 seconds. This effect has a 3 second cooldown.","Increases the damage of your Mangle by 14%. Reduces the cooldown of your Mangle (Bear) ability by the listed amount sec., and reduces the energy cost of your Mangle (Cat) ability by 4. Capstone Bonus: Your Mangle reduces the cooldown of your Enrage and Tiger's Fury by 3 seconds. This effect has a 3 second cooldown.","Increases the damage of your Mangle by 20%. Reduces the cooldown of your Mangle (Bear) ability by the listed amount sec., and reduces the energy cost of your Mangle (Cat) ability by 6. Capstone Bonus: Your Mangle reduces the cooldown of your Enrage and Tiger's Fury by 3 seconds. This effect has a 3 second cooldown."],"system":"classic"},{"id":"talent-2266","treeId":"druid-feral-combat","index":29,"prerequisiteId":"talent-1918","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1918","requiredRank":5}],"column":3,"row":10,"icon":"/assets/ui/talents/icons/ability_druid_rake.png","maxRank":3,"name":"Primal Gore","description":"Increases the damage of your Lacerate, Rip and Rake by 15%. Capstone Bonus: the listed amount[][The periodic damage from your Lacerate and Rip abilities can critically hit. ]Critical damage from Lacerate can trigger Savage Defense.","rankDescriptions":["Increases the damage of your Lacerate, Rip and Rake by 5%. Capstone Bonus: the listed amount[][The periodic damage from your Lacerate and Rip abilities can critically hit. ]Critical damage from Lacerate can trigger Savage Defense.","Increases the damage of your Lacerate, Rip and Rake by 10%. Capstone Bonus: the listed amount[][The periodic damage from your Lacerate and Rip abilities can critically hit. ]Critical damage from Lacerate can trigger Savage Defense.","Increases the damage of your Lacerate, Rip and Rake by 15%. Capstone Bonus: the listed amount[][The periodic damage from your Lacerate and Rip abilities can critically hit. ]Critical damage from Lacerate can trigger Savage Defense."],"system":"classic"},{"id":"talent-1792","treeId":"druid-feral-combat","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/ability_druid_healinginstincts.png","maxRank":2,"name":"Nurturing Instinct","description":"Increases your bonus spell healing by an amount equal to 30% of your Agility. Additionally increases healing done to you by 10% while in Cat, Bear and Dire Bear Form. This does not stack with other increased healing received effects.","rankDescriptions":["Increases your bonus spell healing by an amount equal to 15% of your Agility. Increases healing done to you by 5% while in Cat, Bear and Dire Bear Form. This does not stack with other increased healing received effects.","Increases your bonus spell healing by an amount equal to 30% of your Agility. Additionally increases healing done to you by 10% while in Cat, Bear and Dire Bear Form. This does not stack with other increased healing received effects."],"system":"classic"},{"id":"talent-1793","treeId":"druid-feral-combat","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/talents/icons/ability_druid_primaltenacity.png","maxRank":3,"name":"Primal Tenacity","description":"While in Cat Form the duration of fear effects are reduced by 15% and all damage taken while stunned by 15%.","rankDescriptions":["While in Cat Form the duration of fear effects are reduced by 5% and all damage taken while stunned by 5%.","While in Cat Form the duration of fear effects are reduced by 10% and all damage taken while stunned by 10%.","While in Cat Form the duration of fear effects are reduced by 15% and all damage taken while stunned by 15%."],"system":"classic"},{"id":"talent-1914","treeId":"druid-feral-combat","index":12,"prerequisiteId":"talent-798","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-798","requiredRank":3}],"column":4,"row":4,"icon":"/assets/ui/talents/icons/ability_druid_primalprecision.png","maxRank":2,"name":"Primal Precision","description":"Increases your energy regeneration rate by 20%. Cat Form finishing moves that fail to land are refunded 80% of the energy cost. Capstone Bonus: Your Cat Form finishing moves reduce the cooldown of Berserk by 3 sec. and Tiger's Fury by 2 sec.","rankDescriptions":["Increases your energy regeneration rate by 10%. Cat Form finishing moves that fail to land are refunded 40% of the energy cost. Capstone Bonus: Your Cat Form finishing moves reduce the cooldown of Berserk by 3 sec. and Tiger's Fury by 2 sec.","Increases your energy regeneration rate by 20%. Cat Form finishing moves that fail to land are refunded 80% of the energy cost. Capstone Bonus: Your Cat Form finishing moves reduce the cooldown of Berserk by 3 sec. and Tiger's Fury by 2 sec."],"system":"classic"},{"id":"talent-1919","treeId":"druid-feral-combat","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/talents/icons/ability_druid_infectedwound.png","maxRank":3,"name":"Infected Wounds","description":"Increases the damage of your feral bleeds 9%. Shred, Maul, Swipe, and Mangle attacks have a 50% chance to cause an Infected Wound in the target. Infected Wound reduces the targets movement speed by 30%, attack speed by 20% and periodic healing received by 30%. Lasts 12 seconds. Does not stack with other similar effects.","rankDescriptions":["Increases the damage of your feral bleeds 3%. Shred, Maul, Swipe, and Mangle attacks have a 50% chance to cause an Infected Wound in the target. Infected Wound reduces the targets movement speed by 10%, attack speed by 6% and periodic healing and absorbs by 5%. Lasts 12 seconds. Does not stack with other similar effects.","Increases the damage of your feral bleeds 6%. Shred, Maul, Swipe, and Mangle attacks have a 50% chance to cause an Infected Wound in the target. Infected Wound reduces the targets movement speed by 20%, attack speed by 14% and periodic healing received by 20%. Lasts 12 seconds. Does not stack with other similar effects.","Increases the damage of your feral bleeds 9%. Shred, Maul, Swipe, and Mangle attacks have a 50% chance to cause an Infected Wound in the target. Infected Wound reduces the targets movement speed by 30%, attack speed by 20% and periodic healing received by 30%. Lasts 12 seconds. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-821","treeId":"druid-restoration","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_regeneration.png","maxRank":2,"name":"Improved Mark of the Wild","description":"Increases all of total attributes by 2%. Increases the effects of your Mark of the Wild and Gift of the Wild spells by 40%.","rankDescriptions":["Increases all of total attributes by 1%. Increases the effects of your Mark of the Wild and Gift of the Wild spells by 20%.","Increases all of total attributes by 2%. Increases the effects of your Mark of the Wild and Gift of the Wild spells by 40%."],"system":"classic"},{"id":"talent-824","treeId":"druid-restoration","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_healingtouch.png","maxRank":3,"name":"Naturalist","description":"Increases Physical damage done by 3%. Increases critical strike chance of your Healing Touch by 9%.","rankDescriptions":["Increases Physical damage done by 1%. Increases critical strike chance of your Healing Touch by 3%.","Increases Physical damage done by 2%. Increases critical strike chance of your Healing Touch by 6%.","Increases Physical damage done by 3%. Increases critical strike chance of your Healing Touch by 9%."],"system":"classic"},{"id":"talent-829","treeId":"druid-restoration","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_frost_windwalkon.png","maxRank":3,"name":"Intensity","description":"Allows 25% of your mana regeneration to continue while casting. Your Enrage ability instantly generate 15 rage and 30% base mana.","rankDescriptions":["Allows 8% of your mana regeneration to continue while casting. Your Enrage ability instantly generate 5 rage and 10% base mana.","Allows 16% of your mana regeneration to continue while casting. Your Enrage ability instantly generate 10 rage and 20% base mana.","Allows 25% of your mana regeneration to continue while casting. Your Enrage ability instantly generate 15 rage and 30% base mana."],"system":"classic"},{"id":"talent-831","treeId":"druid-restoration","index":12,"prerequisiteId":"talent-829","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-829","requiredRank":3}],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_ravenform.png","maxRank":1,"name":"Natural Alacrity","description":"When activated, your next Druid Nature spell with a base casting time less than 10 sec. becomes an instant cast spell. In addition, the effectiveness of your Nature healing spells are increased by 10% for 20 seconds.","rankDescriptions":["When activated, your next Druid Nature spell with a base casting time less than 10 sec. becomes an instant cast spell. In addition, the effectiveness of your Nature healing spells are increased by 10% for 20 seconds."],"system":"classic"},{"id":"talent-1788","treeId":"druid-restoration","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/ability_druid_empoweredtouch.png","maxRank":2,"name":"Empowered Touch","description":"Your Healing Touch and Flourish spells gains an additional 25% and of your bonus healing effects. Capstone Bonus: Your Healing Touch and Flourish casts reduces the cooldown of Natural Alacrity and Tranquility by 3 seconds.","rankDescriptions":["Your Healing Touch and Flourish spells gains an additional 12% of your bonus healing effects. Capstone Bonus: Your Healing Touch and Flourish casts reduce the cooldown of Natural Alacrity and Tranquility by 3 seconds.","Your Healing Touch and Flourish spells gains an additional 25% and of your bonus healing effects. Capstone Bonus: Your Healing Touch and Flourish casts reduces the cooldown of Natural Alacrity and Tranquility by 3 seconds."],"system":"classic"},{"id":"talent-1797","treeId":"druid-restoration","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_nature_giftofthewaterspirit.png","maxRank":3,"name":"Living Spirit","description":"Increases your total Spirit by 15%. Capstone Bonus: Your Rejuvenation now heals for an additional 50% on targets below 50% health.","rankDescriptions":["Increases your total Spirit by 5%. Capstone Bonus: Your Rejuvenation now heals for an additional 50% on targets below 50% health.","Increases your total Spirit by 10%. Capstone Bonus: Your Rejuvenation now heals for an additional 50% on targets below 50% health.","Increases your total Spirit by 15%. Capstone Bonus: Your Rejuvenation now heals for an additional 50% on targets below 50% health."],"system":"classic"},{"id":"talent-1929","treeId":"druid-restoration","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_druid_replenish.png","maxRank":3,"name":"Revitalize","description":"Your Rejuvenation, Wild Growth and Efflorescence spells have a 15% chance, and your Healing Touch and Regrowth has a 100% chance to restore 8 Energy, 4 Rage and 1% Mana. Capstone Bonus: Healing a target to full health with Healing Touch will restore 30% of its mana cost.","rankDescriptions":["Your Rejuvenation, Wild Growth and Efflorescence spells have a 5% chance, and your Healing Touch and Regrowth has a 33% chance to restore 8 Energy, 4 Rage and 1% Mana. Capstone Bonus: Healing a target to full health with Healing Touch will restore 30% of its mana cost.","Your Rejuvenation, Wild Growth and Efflorescence spells have a 10% chance, and your Healing Touch and Regrowth has a 67% chance to restore 8 Energy, 4 Rage and 1% Mana. Capstone Bonus: Healing a target to full health with Healing Touch will restore 30% of its mana cost.","Your Rejuvenation, Wild Growth and Efflorescence spells have a 15% chance, and your Healing Touch and Regrowth has a 100% chance to restore 8 Energy, 4 Rage and 1% Mana. Capstone Bonus: Healing a target to full health with Healing Touch will restore 30% of its mana cost."],"system":"classic"},{"id":"talent-2264","treeId":"druid-restoration","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":10,"icon":"/assets/ui/talents/icons/spell_nature_stoneclawtotem.png","maxRank":2,"name":"Improved Barkskin","description":"Increases the damage reduction granted by your Barkskin spell by 10% and reduces the chance your Barkskin is dispelled by 70%.","rankDescriptions":["Increases the damage reduction granted by your Barkskin spell by 5% and reduces the chance your Barkskin is dispelled by 35%.","Increases the damage reduction granted by your Barkskin spell by 10% and reduces the chance your Barkskin is dispelled by 70%."],"system":"classic"},{"id":"talent-823","treeId":"druid-restoration","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_healingwavegreater.png","maxRank":3,"name":"Nature's Focus","description":"Increases spell, ranged and melee haste by 3%. Reduces the pushback suffered from damaging attacks while casting any spells by 100%. Capstone Bonus: Being critically struck while casting a Nature healing spell grants you a healing over time effect on yourself.","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Reduces the pushback suffered from damaging attacks while casting any spells by 33%. Capstone Bonus: Being critically struck while casting a Nature healing spell grants you a healing over time effect on yourself.","Increases spell, ranged and melee haste by 2%. Reduces the pushback suffered from damaging attacks while casting any spells by 66%. Capstone Bonus: Being critically struck while casting a Nature healing spell grants you a healing over time effect on yourself.","Increases spell, ranged and melee haste by 3%. Reduces the pushback suffered from damaging attacks while casting any spells by 100%. Capstone Bonus: Being critically struck while casting a Nature healing spell grants you a healing over time effect on yourself."],"system":"classic"},{"id":"talent-827","treeId":"druid-restoration","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_crystalball.png","maxRank":3,"name":"Omen of Clarity","description":"Damage, healing and auto attacks have a 6% chance of causing you to enter a Clearcasting state. The Clearcasting state reduces the Mana, Rage or Energy cost of your next damage, healing spell or offensive ability by 100%. This effect has a 2 second cooldown.","rankDescriptions":["Damage, healing and auto attacks have a 2% chance of causing you to enter a Clearcasting state. The Clearcasting state reduces the Mana, Rage or Energy cost of your next damage, healing spell or offensive ability by 100%. This effect has a 2 second cooldown.","Damage, healing and auto attacks have a 4% chance of causing you to enter a Clearcasting state. The Clearcasting state reduces the Mana, Rage or Energy cost of your next damage, healing spell or offensive ability by 100%. This effect has a 2 second cooldown.","Damage, healing and auto attacks have a 6% chance of causing you to enter a Clearcasting state. The Clearcasting state reduces the Mana, Rage or Energy cost of your next damage, healing spell or offensive ability by 100%. This effect has a 2 second cooldown."],"system":"classic"},{"id":"talent-828","treeId":"druid-restoration","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_protectionformnature.png","maxRank":5,"name":"Gift of Nature","description":"Increases the effect of all Nature healing spells by 10%.","rankDescriptions":["Increases the effect of all Nature healing spells by 2%.","Increases the effect of all Nature healing spells by 4%.","Increases the effect of all Nature healing spells by 6%.","Increases the effect of all Nature healing spells by 8%.","Increases the effect of all Nature healing spells by 10%."],"system":"classic"},{"id":"talent-841","treeId":"druid-restoration","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_eyeoftheowl.png","maxRank":3,"name":"Subtlety","description":"Increases spell, ranged and melee haste by 3%. Reduces the chance your helpful Druid spells, Moonfire, and Insect Swarm will be dispelled by 30%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Reduces the chance your helpful Druid spells, Moonfire, and Insect Swarm will be dispelled by 10%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases spell, ranged and melee haste by 2%. Reduces the chance your helpful Druid spells, Moonfire, and Insect Swarm will be dispelled by 20%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases spell, ranged and melee haste by 3%. Reduces the chance your helpful Druid spells, Moonfire, and Insect Swarm will be dispelled by 30%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]"],"system":"classic"},{"id":"talent-843","treeId":"druid-restoration","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_elunesgrace.png","maxRank":5,"name":"Tranquil Spirit","description":"Reduces the mana cost of your Healing Touch, Nourish and Tranquility spells by 15%.","rankDescriptions":["Reduces the mana cost of your Healing Touch, Nourish and Tranquility spells by 3%.","Reduces the mana cost of your Healing Touch, Nourish and Tranquility spells by 6%.","Reduces the mana cost of your Healing Touch, Nourish and Tranquility spells by 9%.","Reduces the mana cost of your Healing Touch, Nourish and Tranquility spells by 12%.","Reduces the mana cost of your Healing Touch, Nourish and Tranquility spells by 15%."],"system":"classic"},{"id":"talent-844","treeId":"druid-restoration","index":18,"prerequisiteId":"talent-828","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-828","requiredRank":5}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/inv_relics_idolofrejuvenation.png","maxRank":1,"name":"Swiftmend","description":"Consumes a Rejuvenation or Regrowth effect on a friendly target to instantly heal them an amount equal to 12 sec. of Rejuvenation or 18 sec. of Regrowth. Max 2 charges. 15 second recharge timer.","rankDescriptions":["Consumes a Rejuvenation or Regrowth effect on a friendly target to instantly heal them an amount equal to 12 sec. of Rejuvenation or 18 sec. of Regrowth. Max 2 charges. 15 second recharge timer."],"system":"classic"},{"id":"talent-1789","treeId":"druid-restoration","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/ability_druid_empoweredrejuvination.png","maxRank":3,"name":"Nature's Rejuvenation","description":"The bonus healing effects of your Nature healing over time spells is increased by 20%.","rankDescriptions":["The bonus healing effects of your Nature healing over time spells is increased by 7%.","The bonus healing effects of your Nature healing over time spells is increased by 14%.","The bonus healing effects of your Nature healing over time spells is increased by 20%."],"system":"classic"},{"id":"talent-1791","treeId":"druid-restoration","index":23,"prerequisiteId":"talent-1789","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1789","requiredRank":5}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/ability_druid_treeoflife.png","maxRank":1,"name":"Tree of Life","description":"Shapeshift into the Tree of Life. While in this form you increase healing received by 6% for all party and raid members. Does not stack with similar effects. Tree of Life reduces the mana cost of your Druid healing over time spells by 0%. While in this form, you can only cast healing spells in addition to Innervate, Barkskin, Nature's Grasp, Thorns spells, and non-offensive spells usable while shapeshifted. If your Primary Stat is Spirit, shapeshifting into Tree of Life will free you from all movement impairing effects.","rankDescriptions":["Shapeshift into the Tree of Life. While in this form you increase healing received by 6% for all party and raid members. Does not stack with similar effects. Tree of Life reduces the mana cost of your Druid healing over time spells by 0%. While in this form, you can only cast healing spells in addition to Innervate, Barkskin, Nature's Grasp, Thorns spells, and non-offensive spells usable while shapeshifted. If your Primary Stat is Spirit, shapeshifting into Tree of Life will free you from all movement impairing effects."],"system":"classic"},{"id":"talent-1917","treeId":"druid-restoration","index":27,"prerequisiteId":"talent-1791","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1791","requiredRank":1}],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_druid_flourish.png","maxRank":1,"name":"Wild Growth","description":"Heals up to 5 friendly party or raid members within 15 yards of the target for 273 over 7 seconds. The amount healed is applied quickly at first, and slows down as the Wild Growth reaches its full duration. Wild Growth shares a cooldown with Circle of Healing. the listed amount[Periodic Healing from Wild Growth can critically strike while in Wildcard][]","rankDescriptions":["Heals up to 5 friendly party or raid members within 15 yards of the target for 273 over 7 seconds. The amount healed is applied quickly at first, and slows down as the Wild Growth reaches its full duration. Wild Growth shares a cooldown with Circle of Healing. the listed amount[Periodic Healing from Wild Growth can critically strike while in Wildcard][]"],"system":"classic"},{"id":"talent-822","treeId":"druid-restoration","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_holy_blessingofstamina.png","maxRank":3,"name":"Furor","description":"Increases your Arcane and Nature spell damage done by 6%. Increases your Stamina in Bear and Dire Bear Form by 9%. Increases your damage in Cat Form by 6%.","rankDescriptions":["Increases your Arcane and Nature spell damage done by 2%. Increases your Stamina in Bear and Dire Bear Form by 3%. Increases your damage in Cat Form by 2%.","Increases your Arcane and Nature spell damage done by 4%. Increases your Stamina in Bear and Dire Bear Form by 6%. Increases your damage in Cat Form by 4%.","Increases your Arcane and Nature spell damage done by 6%. Increases your Stamina in Bear and Dire Bear Form by 9%. Increases your damage in Cat Form by 6%."],"system":"classic"},{"id":"talent-825","treeId":"druid-restoration","index":16,"prerequisiteId":"talent-830","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-830","requiredRank":3}],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_nature_resistnature.png","maxRank":5,"name":"Nature's Bounty","description":"Increases the critical effect chance of your Regrowth and Nourish spells by 25%. the listed amount[Capstone Bonus: Your Regrowth heal over time effect can now periodically critically heal.][Capstone Bonus: Your Regrowth heal over time effect benefits from spell haste.]","rankDescriptions":["Increases the critical effect chance of your Regrowth and Nourish spells by 5%. the listed amount[Capstone Bonus: The final rank of this talent allows your Regrowth heal over time effect to periodically critically heal.][Capstone Bonus: The final rank of this talent allows your Regrowth heal over time effect to benefit from spell haste.]","Increases the critical effect chance of your Regrowth and Nourish spells by 10%. the listed amount[Capstone Bonus: The final rank of this talent allows your Regrowth heal over time effect to periodically critically heal.][Capstone Bonus: The final rank of this talent allows your Regrowth heal over time effect to benefit from spell haste.]","Increases the critical effect chance of your Regrowth and Nourish spells by 15%. the listed amount[Capstone Bonus: The final rank of this talent allows your Regrowth heal over time effect to periodically critically heal.][Capstone Bonus: The final rank of this talent allows your Regrowth heal over time effect to benefit from spell haste.]","Increases the critical effect chance of your Regrowth and Nourish spells by 20%. the listed amount[Capstone Bonus: The final rank of this talent allows your Regrowth heal over time effect to periodically critically heal.][Capstone Bonus: The final rank of this talent allows your Regrowth heal over time effect to benefit from spell haste.]","Increases the critical effect chance of your Regrowth and Nourish spells by 25%. the listed amount[Capstone Bonus: Your Regrowth heal over time effect can now periodically critically heal.][Capstone Bonus: Your Regrowth heal over time effect benefits from spell haste.]"],"system":"classic"},{"id":"talent-826","treeId":"druid-restoration","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_wispsplode.png","maxRank":3,"name":"Natural Shapeshifter","description":"Reduces the mana cost of all shapeshifting by 30%.","rankDescriptions":["Reduces the mana cost of all shapeshifting by 10%.","Reduces the mana cost of all shapeshifting by 20%.","Reduces the mana cost of all shapeshifting by 30%."],"system":"classic"},{"id":"talent-830","treeId":"druid-restoration","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_nature_rejuvenation.png","maxRank":3,"name":"Improved Rejuvenation","description":"Increases the effect of your Rejuvenation spell by 20%.","rankDescriptions":["Increases the effect of your Rejuvenation spell by 7%.","Increases the effect of your Rejuvenation spell by 14%.","Increases the effect of your Rejuvenation spell by 20%."],"system":"classic"},{"id":"talent-1790","treeId":"druid-restoration","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_druid_naturalperfection.png","maxRank":3,"name":"Natural Perfection","description":"Your critical strike chance with all spells is increased by 3% Capstone Bonus: Being critically struck by a spell or ability has a 100% chance to reduce the damage you take from the next 3 attacks by 10%. This effect can only occur once every 30 seconds.","rankDescriptions":["Your critical strike chance with all spells is increased by 1% Capstone Bonus: Being critically struck by a spell or ability has a 100% chance to reduce the damage you take from the next 3 attacks by 10%. This effect can only occur once every 30 seconds.","Your critical strike chance with all spells is increased by 2% Capstone Bonus: Being critically struck by a spell or ability has a 100% chance to reduce the damage you take from the next 3 attacks by 10%. This effect can only occur once every 30 seconds.","Your critical strike chance with all spells is increased by 3% Capstone Bonus: Being critically struck by a spell or ability has a 100% chance to reduce the damage you take from the next 3 attacks by 10%. This effect can only occur once every 30 seconds."],"system":"classic"},{"id":"talent-1915","treeId":"druid-restoration","index":9,"prerequisiteId":"talent-826","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-826","requiredRank":3}],"column":3,"row":3,"icon":"/assets/ui/talents/icons/ability_druid_mastershapeshifter.png","maxRank":2,"name":"Master Shapeshifter","description":"Grants an effect which lasts while the Druid is within the respective shapeshift form. Bear Form - Increases physical damage by 4%. Cat Form - Increases melee critical strike chance by 4%. Moonkin Form - Increases Arcane and Nature damage by 4%. Tree of Life Form - Increases healing by 4%.","rankDescriptions":["Grants an effect which lasts while the Druid is within the respective shapeshift form. Bear Form - Increases physical damage by 2%. Cat Form - Increases melee critical strike chance by 2%. Moonkin Form - Increases Arcane and Nature damage by 2%. Tree of Life Form - Increases healing by 2%.","Grants an effect which lasts while the Druid is within the respective shapeshift form. Bear Form - Increases physical damage by 4%. Cat Form - Increases melee critical strike chance by 4%. Moonkin Form - Increases Arcane and Nature damage by 4%. Tree of Life Form - Increases healing by 4%."],"system":"classic"},{"id":"talent-1916","treeId":"druid-restoration","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/talents/icons/ability_druid_manatree.png","maxRank":5,"name":"Gift of the Earthmother","description":"Increases spell, ranged and melee haste by 5%. Increases the periodic healing of your Lifebloom by 30%. the listed amount[Capstone Bonus: Your Rejuvenation spell can now periodically critically heal.][Capstone Bonus: Your Rejuvenation spell now benefits from spell haste.]","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Increases the periodic healing of your Lifebloom by 6%. the listed amount[Capstone Bonus: Your Rejuvenation spell can now periodically critically heal.][Capstone Bonus: Your Rejuvenation spell now benefits from spell haste.]","Increases spell, ranged and melee haste by 2%. Increases the periodic healing of your Lifebloom by 12%. the listed amount[Capstone Bonus: Your Rejuvenation spell can now periodically critically heal.][Capstone Bonus: Your Rejuvenation spell now benefits from spell haste.]","Increases spell, ranged and melee haste by 3%. Increases the periodic healing of your Lifebloom by 18%. the listed amount[Capstone Bonus: Your Rejuvenation spell can now periodically critically heal.][Capstone Bonus: Your Rejuvenation spell now benefits from spell haste.]","Increases spell, ranged and melee haste by 4%. Increases the periodic healing of your Lifebloom by 24%. the listed amount[Capstone Bonus: Your Rejuvenation spell can now periodically critically heal.][Capstone Bonus: Your Rejuvenation spell now benefits from spell haste.]","Increases spell, ranged and melee haste by 5%. Increases the periodic healing of your Lifebloom by 30%. the listed amount[Capstone Bonus: Your Rejuvenation spell can now periodically critically heal.][Capstone Bonus: Your Rejuvenation spell now benefits from spell haste.]"],"system":"classic"},{"id":"talent-1922","treeId":"druid-restoration","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_druid_giftoftheearthmother.png","maxRank":3,"name":"Living Seed","description":"Critically healing with Swiftmend, Regrowth, Healing Touch, Flourish or Lesser Healing Wave you have a 100% chance to plant a Living Seed on the target for 30% of the amount healed. Living Seed will bloom when the target is next hit by a direct spell or attack. Lasts 15 seconds.","rankDescriptions":["Critically healing with Swiftmend, Regrowth, Healing Touch, Flourish or Lesser Healing Wave you have a 33% chance to plant a Living Seed on the target for 30% of the amount healed. Living Seed will bloom when the target is next hit by a direct spell or attack. Lasts 15 seconds.","Critically healing with Swiftmend, Regrowth, Healing Touch, Flourish or Lesser Healing Wave you have a 66% chance to plant a Living Seed on the target for 30% of the amount healed. Living Seed will bloom when the target is next hit by a direct spell or attack. Lasts 15 seconds.","Critically healing with Swiftmend, Regrowth, Healing Touch, Flourish or Lesser Healing Wave you have a 100% chance to plant a Living Seed on the target for 30% of the amount healed. Living Seed will bloom when the target is next hit by a direct spell or attack. Lasts 15 seconds."],"system":"classic"},{"id":"talent-1930","treeId":"druid-restoration","index":24,"prerequisiteId":"talent-1791","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1791","requiredRank":1}],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_druid_improvedtreeform.png","maxRank":3,"name":"Improved Tree of Life","description":"Reduces the mana cost of Tree of Life by 30%. Tree of life increases your armor contribution from cloth and leather items by 15%, and your healing spell power by 15% of your spirit.","rankDescriptions":["Reduces the mana cost of Tree of Life by 10%. Tree of life increases your armor contribution from cloth and leather items by 5%, and your healing spell power by 5% of your spirit.","Reduces the mana cost of Tree of Life by 20%. Tree of life increases your armor contribution from cloth and leather items by 10%, and your healing spell power by 10% of your spirit.","Reduces the mana cost of Tree of Life by 30%. Tree of life increases your armor contribution from cloth and leather items by 15%, and your healing spell power by 15% of your spirit."],"system":"classic"},{"id":"talent-842","treeId":"druid-restoration","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_tranquility.png","maxRank":2,"name":"Improved Tranquility","description":"Reduces threat caused by Tranquility by 100%, and reduces the cooldown by 60%.","rankDescriptions":["Reduces threat caused by Tranquility by 50%, and reduces the cooldown by 30%.","Reduces threat caused by Tranquility by 100%, and reduces the cooldown by 60%."],"system":"classic"},{"id":"talent-782","treeId":"druid-balance","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_thorns.png","maxRank":3,"name":"Brambles","description":"Damage from your Thorns increased by 75% and damage done by your Treants increased by 15%. Melee attacks done to you while you have Barkskin active have a 50% chance to daze the target for 3 sec. Capstone Bonus: Your Entangling Roots Silence the target for 2 seconds. This effect has a 10 second cooldown.","rankDescriptions":["Damage from your Thorns increased by 25% and damage done by your Treants increased by 5%. Melee attacks done to you while you have Barkskin active have a 17% chance to daze the target for 3 sec. Capstone Bonus: Your Entangling Roots Silence the target for 2 seconds. This effect has a 10 second cooldown.","Damage from your Thorns increased by 50% and damage done by your Treants increased by 10%. Melee attacks done to you while you have Barkskin active have a 34% chance to daze the target for 3 sec. Capstone Bonus: Your Entangling Roots Silence the target for 2 seconds. This effect has a 10 second cooldown.","Damage from your Thorns increased by 75% and damage done by your Treants increased by 15%. Melee attacks done to you while you have Barkskin active have a 50% chance to daze the target for 3 sec. Capstone Bonus: Your Entangling Roots Silence the target for 2 seconds. This effect has a 10 second cooldown."],"system":"classic"},{"id":"talent-783","treeId":"druid-balance","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_sentinal.png","maxRank":3,"name":"Moonglow","description":"Reduces the mana cost of your Starfire, Wrath, Starsurge, Healing Touch, Regrowth, Rejuvenation, and Swiftmend spells by 9%. Casting these spells has a chance to increase your Spirit by 30% and mana regeneration while casting by 75% for 12 seconds. This does not stack with similar effects.","rankDescriptions":["Reduces the mana cost of your Starfire, Wrath, Starsurge, Healing Touch, Regrowth, Rejuvenation, and Swiftmend spells by 3%. Casting these spells has a chance to increase your Spirit by 10% and mana regeneration while casting by 25% for 12 seconds. This does not stack with similar effects.","Reduces the mana cost of your Starfire, Wrath, Starsurge, Healing Touch, Regrowth, Rejuvenation, and Swiftmend spells by 6%. Casting these spells has a chance to increase your Spirit by 20% and mana regeneration while casting by 50% for 12 seconds. This does not stack with similar effects.","Reduces the mana cost of your Starfire, Wrath, Starsurge, Healing Touch, Regrowth, Rejuvenation, and Swiftmend spells by 9%. Casting these spells has a chance to increase your Spirit by 30% and mana regeneration while casting by 75% for 12 seconds. This does not stack with similar effects."],"system":"classic"},{"id":"talent-1782","treeId":"druid-balance","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/ability_druid_lunarguidance.png","maxRank":3,"name":"Lunar Guidance","description":"Increases your critical strike chance with all spells and abilities by 3% and your spell damage by 9% of your Intellect.","rankDescriptions":["Increases your critical strike chance with all spells and abilities by 1% and your spell damage by 3% of your Intellect.","Increases your critical strike chance with all spells and abilities by 2% and your spell damage by 6% of your Intellect.","Increases your critical strike chance with all spells and abilities by 3% and your spell damage by 9% of your Intellect."],"system":"classic"},{"id":"talent-1784","treeId":"druid-balance","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/ability_druid_dreamstate.png","maxRank":3,"name":"Dreamstate","description":"Increases your critical strike chance with all spells and abilities by 3%. Regenerate 3% of your missing mana every 10 seconds. Innervate restores 75% more mana.","rankDescriptions":["Increases your critical strike chance with all spells and abilities by 1%. Regenerate 1% of your missing mana every 10 seconds. Innervate restores 25% more mana.","Increases your critical strike chance with all spells and abilities by 2%. Regenerate 2% of your missing mana every 10 seconds. Innervate restores 50% more mana.","Increases your critical strike chance with all spells and abilities by 3%. Regenerate 3% of your missing mana every 10 seconds. Innervate restores 75% more mana."],"system":"classic"},{"id":"talent-1913","treeId":"druid-balance","index":21,"prerequisiteId":"talent-793","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-793","requiredRank":1}],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_druid_owlkinfrenzy.png","maxRank":3,"name":"Owlkin Frenzy","description":"While in Moonkin Form, attacks against you have a 24% chance to trigger a Frenzy, increasing your Arcane and Nature damage by 10%. This also grants immunity to casting pushback for Balance spells and restores 2% base mana every the listed amount sec. Lasts 10 seconds.","rankDescriptions":["While in Moonkin Form, attacks against you have a 8% chance to trigger a Frenzy, increasing your Arcane and Nature damage by 10%. This also grants immunity to casting pushback for Balance spells and restores 2% base mana every the listed amount sec. Lasts 10 seconds.","While in Moonkin Form, attacks against you have a 16% chance to trigger a Frenzy, increasing your Arcane and Nature damage by 10%. This also grants immunity to casting pushback for Balance spells and restores 2% base mana every the listed amount sec. Lasts 10 seconds.","While in Moonkin Form, attacks against you have a 24% chance to trigger a Frenzy, increasing your Arcane and Nature damage by 10%. This also grants immunity to casting pushback for Balance spells and restores 2% base mana every the listed amount sec. Lasts 10 seconds."],"system":"classic"},{"id":"talent-1924","treeId":"druid-balance","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_druid_eclipse.png","maxRank":3,"name":"Eclipse","description":"Dealing damage with Starfire grants you a 100% chance to increase the damage of your Wrath and Starsurge by 30% for 15 seconds. Dealing damage with Wrath grants you a 100% chance to increase your critical strike chance with Starfire and Starsurge by 30% for 15 seconds. Both effects cannot occur at the same time and each effect can only occur once every 30 seconds.","rankDescriptions":["Dealing damage with Starfire grants you a 33% chance to increase the damage of your Wrath and Starsurge by 30% for 15 seconds. Dealing damage with Wrath grants you a 33% chance to increase your critical strike chance with Starfire and Starsurge by 30% for 15 seconds. Both effects cannot occur at the same time and each effect can only occur once every 30 seconds.","Dealing damage with Starfire grants you a 66% chance to increase the damage of your Wrath and Starsurge by 30% for 15 seconds. Dealing damage with Wrath grants you a 66% chance to increase your critical strike chance with Starfire and Starsurge by 30% for 15 seconds. Both effects cannot occur at the same time and each effect can only occur once every 30 seconds.","Dealing damage with Starfire grants you a 100% chance to increase the damage of your Wrath and Starsurge by 30% for 15 seconds. Dealing damage with Wrath grants you a 100% chance to increase your critical strike chance with Starfire and Starsurge by 30% for 15 seconds. Both effects cannot occur at the same time and each effect can only occur once every 30 seconds."],"system":"classic"},{"id":"talent-762","treeId":"druid-balance","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_abolishmagic.png","maxRank":3,"name":"Starlight Wrath","description":"Increases the critical strike chance of Wrath by 9%. Increases the damage of Starfire and Starsurge by 6%.","rankDescriptions":["Increases the critical strike chance of Wrath by 3%. Increases the damage of Starfire and Starsurge by 2%.","Increases the critical strike chance of Wrath by 6%. Increases the damage of Starfire and Starsurge by 4%.","Increases the critical strike chance of Wrath by 9%. Increases the damage of Starfire and Starsurge by 6%."],"system":"classic"},{"id":"talent-788","treeId":"druid-balance","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_insectswarm.png","maxRank":1,"name":"Insect Swarm","description":"The enemy target is swarmed by insects, causing 138 Nature damage over 12 seconds.the listed amount[ Periodic damage from Insect Swarm can critically strike while in Wildcard][]","rankDescriptions":["The enemy target is swarmed by insects, causing 138 Nature damage over 12 seconds.the listed amount[ Periodic damage from Insect Swarm can critically strike while in Wildcard][]"],"system":"classic"},{"id":"talent-789","treeId":"druid-balance","index":7,"prerequisiteId":"talent-1822","prerequisiteRank":2,"prerequisites":[{"talentId":"talent-1822","requiredRank":2}],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_naturesblessing.png","maxRank":3,"name":"Nature's Grace","description":"Direct damaging or healing Druid spell criticals have a 100% chance to grant you Nature's Grace. Increasing spell, ranged and melee haste by 20% for 4 sec.","rankDescriptions":["Direct damaging or healing Druid spell criticals have a 33% chance to grant you Nature's Grace. Increasing spell, ranged and melee haste by 20% for 4 sec.","Direct damaging or healing Druid spell criticals have a 66% chance to grant you Nature's Grace. Increasing spell, ranged and melee haste by 20% for 4 sec.","Direct damaging or healing Druid spell criticals have a 100% chance to grant you Nature's Grace. Increasing spell, ranged and melee haste by 20% for 4 sec."],"system":"classic"},{"id":"talent-790","treeId":"druid-balance","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/talents/icons/spell_nature_moonglow.png","maxRank":3,"name":"Moonfury","description":"Increases the damage of your Starfire, Moonfire, Wrath, and Starsurge by 10%. Your Starfall damage is also increased by 20%. Capstone Bonus: If your Moonfire is dispelled, your next Moonfire within 5 seconds is guaranteed to critically strike and applies Insect Swarm, if known.","rankDescriptions":["Increases the damage of your Starfire, Moonfire, Wrath, and Starsurge by 4%. Increases Starfall damage by 7%. Capstone Bonus: If Moonfire is dispelled, your next Moonfire within 5 seconds has a guaranteed critical strike and applies Insect Swarm, if known.","Increases the damage of your Starfire, Moonfire, Wrath, and Starsurge by 7%. Increases Starfall damage by 14%. Capstone Bonus: If Moonfire is dispelled, your next Moonfire within 5 seconds has a guaranteed critical strike and applies Insect Swarm, if known.","Increases the damage of your Starfire, Moonfire, Wrath, and Starsurge by 10%. Your Starfall damage is also increased by 20%. Capstone Bonus: If your Moonfire is dispelled, your next Moonfire within 5 seconds is guaranteed to critically strike and applies Insect Swarm, if known."],"system":"classic"},{"id":"talent-792","treeId":"druid-balance","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_nature_purge.png","maxRank":5,"name":"Vengeance","description":"Your spell critical strikes now deal 200% damage. Does not stack with similar effects. Capstone Bonus: The final rank of this talent causes your direct Arcane and Nature criticals to have a chance to attract a Vengeful Soul, increasing your magic damage by 8% for 12 seconds. When this effect ends the Soul leaves your body, restoring 10% of your missing mana.","rankDescriptions":["Your spell critical strikes now deal 180% damage. Does not stack with similar effects. Capstone Bonus: The final rank of this talent causes your direct Arcane and Nature criticals to have a chance to attract a Vengeful Soul, increasing your magic damage by 8% for 12 seconds. When this effect ends the Soul leaves your body, restoring 10% of your missing mana.","Your spell critical strikes now deal 185% damage. Does not stack with similar effects. Capstone Bonus: The final rank of this talent causes your direct Arcane and Nature criticals to have a chance to attract a Vengeful Soul, increasing your magic damage by 8% for 12 seconds. When this effect ends the Soul leaves your body, restoring 10% of your missing mana.","Your spell critical strikes now deal 190% damage. Does not stack with similar effects. Capstone Bonus: The final rank of this talent causes your direct Arcane and Nature criticals to have a chance to attract a Vengeful Soul, increasing your magic damage by 8% for 12 seconds. When this effect ends the Soul leaves your body, restoring 10% of your missing mana.","Your spell critical strikes now deal 195% damage. Does not stack with similar effects. Capstone Bonus: The final rank of this talent causes your direct Arcane and Nature criticals to have a chance to attract a Vengeful Soul, increasing your magic damage by 8% for 12 seconds. When this effect ends the Soul leaves your body, restoring 10% of your missing mana.","Your spell critical strikes now deal 200% damage. Does not stack with similar effects. Capstone Bonus: The final rank of this talent causes your direct Arcane and Nature criticals to have a chance to attract a Vengeful Soul, increasing your magic damage by 8% for 12 seconds. When this effect ends the Soul leaves your body, restoring 10% of your missing mana."],"system":"classic"},{"id":"talent-793","treeId":"druid-balance","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_nature_forceofnature.png","maxRank":1,"name":"Moonkin Form","description":"Increases armor from cloth and leather by 40%, damage taken while stunned is reduced by 0%. Your direct damaging spells have a 33% chance to regenerate 2% of your total mana. All party and raid members gain 5% increased spell critical effect chance. Does not stack with similar effects. Casting any healing spell will take you out of Moonkin Form.","rankDescriptions":["Increases armor from cloth and leather by 40%, damage taken while stunned is reduced by 0%. Your direct damaging spells have a 33% chance to regenerate 2% of your total mana. All party and raid members gain 5% increased spell critical effect chance. Does not stack with similar effects. Casting any healing spell will take you out of Moonkin Form."],"system":"classic"},{"id":"talent-1822","treeId":"druid-balance","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/inv_staff_01.png","maxRank":2,"name":"Nature's Majesty","description":"Increases the critical strike chance of your Wrath, Starfire, Starfall, Starsurge, Nourish and Healing Touch spells by 6% Reduces the cooldown of your Mass Entanglement by 10 seconds.","rankDescriptions":["Increases the critical strike chance of your Wrath, Starfire, Starfall, Starsurge, Nourish and Healing Touch spells by 3%. Reduces the cooldown of your Mass Entanglement by 5 seconds.","Increases the critical strike chance of your Wrath, Starfire, Starfall, Starsurge, Nourish and Healing Touch spells by 6% Reduces the cooldown of your Mass Entanglement by 10 seconds."],"system":"classic"},{"id":"talent-1923","treeId":"druid-balance","index":24,"prerequisiteId":"talent-793","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-793","requiredRank":1}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/ability_druid_typhoon.png","maxRank":1,"name":"Typhoon","description":"You summon a violent Typhoon that does 460 Nature damage when in contact with hostile targets, knocking them back and dazing them for 4 seconds.","rankDescriptions":["You summon a violent Typhoon that does 460 Nature damage when in contact with hostile targets, knocking them back and dazing them for 4 seconds."],"system":"classic"},{"id":"talent-1926","treeId":"druid-balance","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_druid_starfall.png","maxRank":1,"name":"Starfall","description":"You summon a flurry of stars from the sky on all targets within the listed amount yards of the caster, each dealing 141 Arcane damage. Also causes 25 Arcane damage to all other enemies within the listed amount yards of the enemy target. Maximum 16 stars. Lasts 8 seconds. 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.","rankDescriptions":["You summon a flurry of stars from the sky on all targets within the listed amount yards of the caster, each dealing 141 Arcane damage. Also causes 25 Arcane damage to all other enemies within the listed amount yards of the enemy target. Maximum 16 stars. Lasts 8 seconds. 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."],"system":"classic"},{"id":"talent-1928","treeId":"druid-balance","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_druid_earthandsky.png","maxRank":3,"name":"Earth and Moon","description":"Increases your Arcane and Nature damage by 6%. Wrath, Starfire and Starsurge apply the Earth and Moon effect, which increases magic damage taken by 10% and reduces the effectiveness of any healing by 40% for 8 seconds. Does not stack with other similar effects.","rankDescriptions":["Increases your Arcane and Nature damage by 2%. Wrath, Starfire and Starsurge apply the Earth and Moon effect, which increases magic damage taken by 4% and reduces the effectiveness of any healing by 17% for 12 seconds. Does not stack with other similar effects.","Increases your Arcane and Nature damage by 4%. Wrath, Starfire and Starsurge apply the Earth and Moon effect, which increases magic damage taken by 7% and reduces the effectiveness of any healing by 27% for 12 seconds. Does not stack with other similar effects.","Increases your Arcane and Nature damage by 6%. Wrath, Starfire and Starsurge apply the Earth and Moon effect, which increases magic damage taken by 10% and reduces the effectiveness of any healing by 40% for 8 seconds. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-784","treeId":"druid-balance","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_arcane_starfire.png","maxRank":3,"name":"Celestial Focus","description":"Increases spell, ranged and melee haste by 3%. Reduces the pushback suffered from damaging attacks by 100%. Capstone Bonus: If hit by an Interrupt when not casting, you become immune to the next Crowd Control, Knockback, Silence, or Interrupt for 20 seconds and your next Druid Nature spell within 10 seconds becomes an instant cast. This effect can only occur once every 20 seconds.","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Reduces the pushback suffered from damaging attacks by 33%. Capstone Bonus: If hit by an Interrupt when not casting, you become immune to the next Crowd Control, Knockback, Silence, or Interrupt for 20 seconds and your next Druid Nature spell within 10 seconds becomes an instant cast. This effect can only occur once every 20 seconds.","Increases spell, ranged and melee haste by 2%. Reduces the pushback suffered from damaging attacks by 66%. Capstone Bonus: If hit by an Interrupt when not casting, you become immune to the next Crowd Control, Knockback, Silence, or Interrupt for 20 seconds and your next Druid Nature spell within 10 seconds becomes an instant cast. This effect can only occur once every 20 seconds.","Increases spell, ranged and melee haste by 3%. Reduces the pushback suffered from damaging attacks by 100%. Capstone Bonus: If hit by an Interrupt when not casting, you become immune to the next Crowd Control, Knockback, Silence, or Interrupt for 20 seconds and your next Druid Nature spell within 10 seconds becomes an instant cast. This effect can only occur once every 20 seconds."],"system":"classic"},{"id":"talent-1783","treeId":"druid-balance","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/ability_druid_balanceofpower.png","maxRank":2,"name":"Balance of Power","description":"Increases your chance to hit with spells and abilities by 2%. Reduces your magic damage taken by 2%.","rankDescriptions":["Increases your chance to hit with spells and abilities by 1%. Reduces your magic damage taken by 1%.","Increases your chance to hit with spells and abilities by 2%. Reduces your magic damage taken by 2%."],"system":"classic"},{"id":"talent-1786","treeId":"druid-balance","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_druid_twilightswrath.png","maxRank":3,"name":"Wrath of Cenarius","description":"Increases the spell damage scaling of your Starfire, Wrath and Starsurge by 20%. Reduces the mana cost of Moonkin Form by 30%. Capstone Bonus: Dealing damage with your Wrath reduces the cooldown of your Solar Beam and increases the duration of Nature's Grace by 1 second.","rankDescriptions":["Increases the spell damage scaling of your Starfire, Wrath and Starsurge by 7%. Reduces the mana cost of Moonkin Form by 10%. Capstone Bonus: Dealing damage with your Wrath reduces the cooldown of your Solar Beam and increases the duration of Nature's Grace by 1 second.","Increases the spell damage scaling of your Starfire, Wrath and Starsurge by 14%. Reduces the mana cost of Moonkin Form by 20%. Capstone Bonus: Dealing damage with your Wrath reduces the cooldown of your Solar Beam and increases the duration of Nature's Grace by 1 second.","Increases the spell damage scaling of your Starfire, Wrath and Starsurge by 20%. Reduces the mana cost of Moonkin Form by 30%. Capstone Bonus: Dealing damage with your Wrath reduces the cooldown of your Solar Beam and increases the duration of Nature's Grace by 1 second."],"system":"classic"},{"id":"talent-1787","treeId":"druid-balance","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_druid_forceofnature.png","maxRank":1,"name":"Force of Nature","description":"Summons 3 treants to attack enemy targets for 30 seconds. Shares a cooldown with other Force of Nature spells. Can't be used while having an active pet. This ability is usable while shapeshifted.","rankDescriptions":["Summons 3 treants to attack enemy targets for 30 seconds. Shares a cooldown with other Force of Nature spells. Can't be used while having an active pet. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-1912","treeId":"druid-balance","index":19,"prerequisiteId":"talent-793","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-793","requiredRank":1}],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_druid_improvedmoonkinform.png","maxRank":3,"name":"Improved Moonkin Form","description":"Your Moonkin Aura also causes affected targets to gain 3% spell haste. Does not stack with similar effects. In Moonkin Form, you to gain 18% of your spirit as additional spell damage, and increases your armor contribution from cloth and leather items in Moonkin Form by 40%.","rankDescriptions":["Your Moonkin Aura grants affected targets 1% spell haste. Does not stack with similar effects. In Moonkin Form, you gain 6% of your spirit as extra spell damage and increase armor from cloth and leather by 14%.","Your Moonkin Aura also causes affected targets to gain 2% spell haste. Does not stack with similar effects. In Moonkin Form, you to gain 12% of your spirit as additional spell damage, and increases your armor contribution from cloth and leather items in Moonkin Form by 27%.","Your Moonkin Aura also causes affected targets to gain 3% spell haste. Does not stack with similar effects. In Moonkin Form, you to gain 18% of your spirit as additional spell damage, and increases your armor contribution from cloth and leather items in Moonkin Form by 40%."],"system":"classic"},{"id":"talent-2238","treeId":"druid-balance","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_arcane_arcane03.png","maxRank":5,"name":"Genesis","description":"Increases the periodic damage and healing of your Druid spells by 10%.","rankDescriptions":["Increases the periodic damage and healing of your Druid spells by 2%.","Increases the periodic damage and healing of your Druid spells by 4%.","Increases the periodic damage and healing of your Druid spells by 6%.","Increases the periodic damage and healing of your Druid spells by 8%.","Increases the periodic damage and healing of your Druid spells by 10%."],"system":"classic"},{"id":"talent-2239","treeId":"druid-balance","index":14,"prerequisiteId":"talent-788","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-788","requiredRank":1}],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_insectswarm.png","maxRank":3,"name":"Celestial Bane","description":"Increases your Nature damage by 6% to targets affected by your Insect Swarm. Increases your Arcane damage by 6% to targets affected by your Moonfire. Capstone Bonus: Your Insect Swarm causes the target to become vulnerable, increasing the spell critical strike chance by 5% against that target. Does not stack with other similar effects.","rankDescriptions":["Increases your Nature damage by 2% to targets affected by your Insect Swarm. Increases your Arcane damage by 2% to targets affected by your Moonfire. Capstone Bonus: Your Insect Swarm causes the target to become vulnerable, increasing the spell critical strike chance by 5% against that target. Does not stack with other similar effects.","Increases your Nature damage by 4% to targets affected by your Insect Swarm. Increases your Arcane damage by 4% to targets affected by your Moonfire. Capstone Bonus: Your Insect Swarm causes the target to become vulnerable, increasing the spell critical strike chance by 5% against that target. Does not stack with other similar effects.","Increases your Nature damage by 6% to targets affected by your Insect Swarm. Increases your Arcane damage by 6% to targets affected by your Moonfire. Capstone Bonus: Your Insect Swarm causes the target to become vulnerable, increasing the spell critical strike chance by 5% against that target. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-2240","treeId":"druid-balance","index":8,"prerequisiteId":"talent-1822","prerequisiteRank":2,"prerequisites":[{"talentId":"talent-1822","requiredRank":2}],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_natureguardian.png","maxRank":3,"name":"Nature's Splendor","description":"Increases the healing of your Rejuvenation and Efflorescence, Regrowth and Lifebloom by 6%. Capstone Bonus: Increases the duration of your Moonfire and Rejuvenation by the listed amount sec, your Regrowth by the listed amount sec, and your Insect Swarm, Lifebloom, Efflorescence and Flourish by the listed amount sec.","rankDescriptions":["Increases the healing of your Rejuvenation and Efflorescence, Regrowth and Lifebloom by 2%. Capstone Bonus: The final rank of this talent increases the duration of your Moonfire and Rejuvenation by the listed amount sec, your Regrowth by the listed amount sec, and your Insect Swarm, Lifebloom, Efflorescence and Flourish by the listed amount sec.","Increases the healing of your Rejuvenation and Efflorescence, Regrowth and Lifebloom by 4%. Capstone Bonus: The final rank of this talent increases the duration of your Moonfire and Rejuvenation by the listed amount sec, your Regrowth by the listed amount sec, and your Insect Swarm, Lifebloom, Efflorescence and Flourish by the listed amount sec.","Increases the healing of your Rejuvenation and Efflorescence, Regrowth and Lifebloom by 6%. Capstone Bonus: Increases the duration of your Moonfire and Rejuvenation by the listed amount sec, your Regrowth by the listed amount sec, and your Insect Swarm, Lifebloom, Efflorescence and Flourish by the listed amount sec."],"system":"classic"},{"id":"talent-763","treeId":"druid-balance","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_starfall.png","maxRank":3,"name":"Improved Moonfire","description":"Increases the damage of Moonfire spell by 15% and the critical strike chance of Starfire and Starsurge by 10%. Capstone Bonus: Your direct Arcane damage critical hits on targets afflicted by your Moonfire instantly trigger an extra Arcane damage. This can happen once every 1.5 sec.","rankDescriptions":["Increases the damage of Moonfire spell by 5% and the critical strike chance of Starfire and Starsurge by 4%. Capstone Bonus: Your direct Arcane damage critical hits on targets afflicted by your Moonfire instantly trigger an extra Arcane damage. This can happen once every 1.5 sec.","Increases the damage of Moonfire spell by 10% and the critical strike chance of Starfire and Starsurge by 7%. Capstone Bonus: Your direct Arcane damage critical hits on targets afflicted by your Moonfire instantly trigger an extra Arcane damage. This can happen once every 1.5 sec.","Increases the damage of Moonfire spell by 15% and the critical strike chance of Starfire and Starsurge by 10%. Capstone Bonus: Your direct Arcane damage critical hits on targets afflicted by your Moonfire instantly trigger an extra Arcane damage. This can happen once every 1.5 sec."],"system":"classic"},{"id":"talent-764","treeId":"druid-balance","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_naturetouchgrow.png","maxRank":3,"name":"Nature's Reach","description":"Increases the range of your damaging spells with a channeling or cast time by 6 yards. Does not stack with similar effects. Capstone Bonus: Your Nature non-periodic spells have a 100% chance to spread your Insect Swarm to all enemies within 5 yards, if hitting a target affected by Insect Swarm. This effect has a 6 sec internal cooldown.","rankDescriptions":["Increases the range of your damaging spells with a channeling or cast time by 2 yards. Does not stack with similar effects. Capstone Bonus: Your Nature non-periodic spells have a 100% chance to spread your Insect Swarm to all enemies within 5 yards, if hitting a target affected by Insect Swarm. This effect has a 6 sec internal cooldown.","Increases the range of your damaging spells with a channeling or cast time by 4 yards. Does not stack with similar effects. Capstone Bonus: Your Nature non-periodic spells have a 100% chance to spread your Insect Swarm to all enemies within 5 yards, if hitting a target affected by Insect Swarm. This effect has a 6 sec internal cooldown.","Increases the range of your damaging spells with a channeling or cast time by 6 yards. Does not stack with similar effects. Capstone Bonus: Your Nature non-periodic spells have a 100% chance to spread your Insect Swarm to all enemies within 5 yards, if hitting a target affected by Insect Swarm. This effect has a 6 sec internal cooldown."],"system":"classic"},{"id":"talent-1785","treeId":"druid-balance","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/talents/icons/spell_nature_faeriefire.png","maxRank":3,"name":"Improved Faerie Fire","description":"Increases your chance to hit with spell and abilities by 3%. Increases the critical strike chance of your Druid damage spells by 6% on targets afflicted by Faerie Fire.","rankDescriptions":["Increases your chance to hit with spell and abilities by 1%. Increases the critical strike chance of your Druid damage spells by 2% on targets afflicted by Faerie Fire.","Increases your chance to hit with spell and abilities by 2%. Increases the critical strike chance of your Druid damage spells by 4% on targets afflicted by Faerie Fire.","Increases your chance to hit with spell and abilities by 3%. Increases the critical strike chance of your Druid damage spells by 6% on targets afflicted by Faerie Fire."],"system":"classic"},{"id":"talent-1925","treeId":"druid-balance","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/talents/icons/ability_druid_galewinds.png","maxRank":3,"name":"Gale Winds","description":"Increases your Hurricane and Typhoon damage by 30% and reduces their mana costs by 60%. Increases the range of your Entangling Roots and Cyclone by 6 yards.","rankDescriptions":["Increases your Hurricane and Typhoon damage by 10% and reduces their mana costs by 20%. Increases the range of your Entangling Roots and Cyclone by 2 yards.","Increases your Hurricane and Typhoon damage by 20% and reduces their mana costs by 40%. Increases the range of your Entangling Roots and Cyclone by 4 yards.","Increases your Hurricane and Typhoon damage by 30% and reduces their mana costs by 60%. Increases the range of your Entangling Roots and Cyclone by 6 yards."],"system":"classic"}]} diff --git a/src/game/generated/talentUi/felsworn.json b/src/game/generated/talentUi/felsworn.json new file mode 100644 index 00000000..b2a3a9a7 --- /dev/null +++ b/src/game/generated/talentUi/felsworn.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"felsworn","trees":[{"id":"coa-felsworn-37","classId":"felsworn","name":"Slayer","icon":"/assets/ui/spells/ability_creature_felsunder.png","background":"","description":"Slayer nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-felsworn-38","classId":"felsworn","name":"Infernal","icon":"/assets/ui/spells/inv_infernalmountgreen.png","background":"","description":"Infernal nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-felsworn-18","classId":"felsworn","name":"Tyrant","icon":"/assets/ui/spells/ability_demonhunter_infernalstrike2.png","background":"","description":"Tyrant nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-felsworn-87","classId":"felsworn","name":"Class","icon":"/assets/ui/spells/ability_boss_lordanthricystgreen.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-31159","treeId":"coa-felsworn-18","index":31159,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/ability_demonhunter_infernalstrike2.png","maxRank":1,"name":"Carve","description":"Consumes 2 Felfury Charge up a powerful attack over 2.5 seconds. Upon ending the channel, slash in front of you, dealing increased Weapon Damage with both weapons based on how long you channel, dealing less damage with each target struck. Inner Demon: Reduces affected enemies melee and ranged haste by -20% for 8 seconds.","rankDescriptions":["Consumes 2 Felfury Charge up a powerful attack over 2.5 seconds. Upon ending the channel, slash in front of you, dealing increased Weapon Damage with both weapons based on how long you channel, dealing less damage with each target struck. Inner Demon: Reduces affected enemies melee and ranged haste by -20% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4009","treeId":"coa-felsworn-18","index":4009,"prerequisiteId":"coa-entry-30554","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30554","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/ability_demonhunter_demonictrample.png","maxRank":1,"name":"Burning Commander","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-29845","treeId":"coa-felsworn-18","index":29845,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/ability_demonhunter_infernalchains.png","maxRank":1,"name":"Demonic Will","description":"Generates 1 Felfury Strengthen your will, reducing Physical damage taken by -30% for 10 seconds. While active, direct damaging abilities heal you for 3% of your maximum health. Can only occur once every 0.5 sec.","rankDescriptions":["Generates 1 Felfury Strengthen your will, reducing Physical damage taken by -30% for 10 seconds. While active, direct damaging abilities heal you for 3% of your maximum health. Can only occur once every 0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11121","treeId":"coa-felsworn-18","index":11121,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/mannoroth.png","maxRank":1,"name":"Annihilan Rituals","description":"Fully channeling Carve now refunds 1 Felfury.","rankDescriptions":["Fully channeling Carve now refunds 1 Felfury."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30567","treeId":"coa-felsworn-18","index":30567,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_polearm_2h_fellord.png","maxRank":1,"name":"Quick Carving","description":"Carve now channels 1 sec faster.","rankDescriptions":["Carve now channels 1 sec faster."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6338","treeId":"coa-felsworn-18","index":6338,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_felhound4_custom.png","maxRank":2,"name":"Nether Disciple","description":"Increases your dodge and parry chance by 8%.","rankDescriptions":["Increases your dodge and parry chance by 4%.","Increases your dodge and parry chance by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7869","treeId":"coa-felsworn-18","index":7869,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/ability_racial_demonbane.png","maxRank":2,"name":"Demon Hide","description":"While Inner Demon is active, your Armor contribution from cloth and leather items is increased by 240%.","rankDescriptions":["While Inner Demon is active, your Armor contribution from cloth and leather items is increased by 120%.","While Inner Demon is active, your Armor contribution from cloth and leather items is increased by 240%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9231","treeId":"coa-felsworn-18","index":9231,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/ability_warlock_avoidance.png","maxRank":1,"name":"Hulking Demon","description":"Level 20 Passive Increases your attack power by 30% of your Stamina and your hit rating by 6% of your Agility.","rankDescriptions":["Level 20 Passive Increases your attack power by 30% of your Stamina and your hit rating by 6% of your Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-29442","treeId":"coa-felsworn-18","index":29442,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/ability_demonhunter_chaosstrike.png","maxRank":1,"name":"Felrend","description":"Generates 1 Felfury Erupt in a whirlwind of felfury, striking all enemies within 6 yds with both weapons, dealing Weapon Damage plus 5.","rankDescriptions":["Generates 1 Felfury Erupt in a whirlwind of felfury, striking all enemies within 6 yds with both weapons, dealing Weapon Damage plus 5."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34222","treeId":"coa-felsworn-18","index":34222,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/ability_demonhunter_metamorphasistank.png","maxRank":1,"name":"Pure Hatred","description":"Your Hateforged Barrier now also scales with your maximum health.","rankDescriptions":["Your Hateforged Barrier now also scales with your maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34226","treeId":"coa-felsworn-18","index":34226,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/kiljaedan.png","maxRank":1,"name":"Burning Legionnaire","description":"Reduces the Energy cost of Twin Slice and Sunder by -10.","rankDescriptions":["Reduces the Energy cost of Twin Slice and Sunder by -10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6774","treeId":"coa-felsworn-18","index":6774,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/ability_felshieldemitter.png","maxRank":2,"name":"Outland Slaver","description":"Reduces the cost of your Felrend and Fel Fireball by -6 and increases their damage dealt by 30%.","rankDescriptions":["Reduces the cost of your Felrend and Fel Fireball by -3 and increases their damage dealt by 15%.","Reduces the cost of your Felrend and Fel Fireball by -6 and increases their damage dealt by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30566","treeId":"coa-felsworn-18","index":30566,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/warlock_curse_weakness_aura.png","maxRank":1,"name":"Battle Finesse","description":"While channeling Carve, your chance to dodge is now increased by 1% based on how long you channel, up to a maximum of 10%.","rankDescriptions":["While channeling Carve, your chance to dodge is now increased by 1% based on how long you channel, up to a maximum of 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34221","treeId":"coa-felsworn-18","index":34221,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_demonhunter_doublejump.png","maxRank":1,"name":"Unholy Endurance","description":"Increases the damage and threat generated from Carve by 15%.","rankDescriptions":["Increases the damage and threat generated from Carve by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30556","treeId":"coa-felsworn-18","index":30556,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/spell_yorsahj_bloodboil_greenoil.png","maxRank":1,"name":"Felspill","description":"Generating Felfury now leeches 10% AP health from 3 nearby enemies within 6 yds, scaling with your attack power.","rankDescriptions":["Generating Felfury now leeches 10% AP health from 3 nearby enemies within 6 yds, scaling with your attack power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34220","treeId":"coa-felsworn-18","index":34220,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/ability_demonhunter_glide.png","maxRank":1,"name":"Infernal Constitution","description":"Increases your maximum health by 10% and increases your off-hand weapon damage by 30%.","rankDescriptions":["Increases your maximum health by 10% and increases your off-hand weapon damage by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11213","treeId":"coa-felsworn-18","index":11213,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/spell_warlock_summonabyssal.png","maxRank":1,"name":"Abyssal Conditioning","description":"Casting Felfury spenders now increases your Energy regeneration by 5% for 10 seconds, stacking up to 4 times.","rankDescriptions":["Casting Felfury spenders now increases your Energy regeneration by 5% for 10 seconds, stacking up to 4 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30563","treeId":"coa-felsworn-18","index":30563,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/spell_fire_elementaldevastation.png","maxRank":1,"name":"Illidari Training","description":"Dodging an attack now generates 3 Energy.","rankDescriptions":["Dodging an attack now generates 3 Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9832","treeId":"coa-felsworn-18","index":9832,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_felhound4_custom.png","maxRank":1,"name":"Hellfire Carver","description":"Level 30 Passive Casting Carve now makes your next Fel Fireball instant cast and causes it to strike 1 additional enemy near the primary target based on how long you channeled, up to a maximum of 10 enemies, dealing less damage with each target struck.","rankDescriptions":["Level 30 Passive Casting Carve now makes your next Fel Fireball instant cast and causes it to strike 1 additional enemy near the primary target based on how long you channeled, up to a maximum of 10 enemies, dealing less damage with each target struck."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-29398","treeId":"coa-felsworn-18","index":29398,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/inv_polearm_2h_fellord_2.png","maxRank":1,"name":"Vengeance","description":"Your Twin Slice and Felrend now have a 60% chance to generate 1 additional Felfury.","rankDescriptions":["Your Twin Slice and Felrend now have a 60% chance to generate 1 additional Felfury."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34219","treeId":"coa-felsworn-18","index":34219,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_armor_shield_naxxramas_d_01.png","maxRank":1,"name":"Bulwark of Azzinoth","description":"Inner Demon now also reduces your damage taken by -10%.","rankDescriptions":["Inner Demon now also reduces your damage taken by -10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30558","treeId":"coa-felsworn-18","index":30558,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_warlock_demonicempowerment.png","maxRank":1,"name":"Burning Hatred","description":"Enrages you, instantly generating 6 Felfury and causing your melee damage to leech health to you equal to 50% of the damage dealt as Chaos damage for 15 seconds.","rankDescriptions":["Enrages you, instantly generating 6 Felfury and causing your melee damage to leech health to you equal to 50% of the damage dealt as Chaos damage for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34229","treeId":"coa-felsworn-18","index":34229,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/nhi_unholy_smile_border.png","maxRank":1,"name":"Betrayer","description":"Dodging attacks causes 40% off-hand Weapon Damage to attackers and enrages your party and raid members within 20 yds, increasing their critical strike chance by 2% for 10 seconds.","rankDescriptions":["Dodging attacks causes 40% off-hand Weapon Damage to attackers and enrages your party and raid members within 20 yds, increasing their critical strike chance by 2% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30557","treeId":"coa-felsworn-18","index":30557,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_summondemonictyrant.png","maxRank":1,"name":"Tyrant's Gaze","description":"Set your fiery gaze upon an enemy and all enemies nearby, intimidating them and causing them to combust, dealing 220 + 35% AP Shadowflame Damage to them. Damaging an enemy in this way heals you for 146 + 50% AP and generates 1 Felfury. Only usable on enemies below 35% health.","rankDescriptions":["Set your fiery gaze upon an enemy and all enemies nearby, intimidating them and causing them to combust, dealing 220 + 35% AP Shadowflame Damage to them. Damaging an enemy in this way heals you for 146 + 50% AP and generates 1 Felfury. Only usable on enemies below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9218","treeId":"coa-felsworn-18","index":9218,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/spell_shadow_demoniccirclesummon.png","maxRank":1,"name":"Straight to the Nether","description":"While Inner Demon is active, Carve and Sargeron Smite now leeches 20% of the damage dealt from the initial strike as Shadowflame Damage.","rankDescriptions":["While Inner Demon is active, Carve and Sargeron Smite now leeches 20% of the damage dealt from the initial strike as Shadowflame Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7870","treeId":"coa-felsworn-18","index":7870,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/achievement_boss_illidan.png","maxRank":1,"name":"Illidan's Favor","description":"Removes the Energy cost of your Felbane and Manaburn and your Manaburn now strikes 4 additional enemies near the primary target.","rankDescriptions":["Removes the Energy cost of your Felbane and Manaburn and your Manaburn now strikes 4 additional enemies near the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12170","treeId":"coa-felsworn-18","index":12170,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/custom_t_felspikes_border.png","maxRank":1,"name":"Fel Torpedo","description":"Transforms your Chaos Rush into Fel Torpedo.Fel TorpedoGenerates 1 Felfury Torpedo forward in the direction you're running and deal 195 + 35% AP Shadowflame Damage to enemies in your path. Generates a large amount of threat. Scales with modifiers to Chaos Rush","rankDescriptions":["Transforms your Chaos Rush into Fel Torpedo.Fel TorpedoGenerates 1 Felfury Torpedo forward in the direction you're running and deal 195 + 35% AP Shadowflame Damage to enemies in your path. Generates a large amount of threat. Scales with modifiers to Chaos Rush"],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6815","treeId":"coa-felsworn-18","index":6815,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/_darkhand_fel.png","maxRank":1,"name":"Nether Strength","description":"Casting Felfury spenders now reduces the cooldown of Burning Hatred, Hateforged Barrier, and Demonic Will by -1 sec.","rankDescriptions":["Casting Felfury spenders now reduces the cooldown of Burning Hatred, Hateforged Barrier, and Demonic Will by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11217","treeId":"coa-felsworn-18","index":11217,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_demonhunter_brandofthehunt.png","maxRank":1,"name":"Demonic Blood","description":"Generating Felfury now extends the duration of Inner Demon by 0.5 sec.","rankDescriptions":["Generating Felfury now extends the duration of Inner Demon by 0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34217","treeId":"coa-felsworn-18","index":34217,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_demonhunter_reversemagic.png","maxRank":1,"name":"Demonic Fortitude","description":"While Demonic Will or Hateforged Barrier are active, all damage taken or avoided now has a 20% chance to generate 1 Felfury.","rankDescriptions":["While Demonic Will or Hateforged Barrier are active, all damage taken or avoided now has a 20% chance to generate 1 Felfury."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6877","treeId":"coa-felsworn-18","index":6877,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/_manaburn_fel.png","maxRank":1,"name":"Expose","description":"Direct Fire and Shadow spell damage dealt now applies Expose to enemies.Expose (Proc)Damage taken from the Felsworn increased by 10% and the critical strike chance of all allies against this target is increased by 3% for 8 seconds.","rankDescriptions":["Direct Fire and Shadow spell damage dealt now applies Expose to enemies.Expose (Proc)Damage taken from the Felsworn increased by 10% and the critical strike chance of all allies against this target is increased by 3% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9233","treeId":"coa-felsworn-18","index":9233,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/_monkspecialattack_dodgebloodelf.png","maxRank":1,"name":"Felblade","description":"Level 40 Passive Damage dealt by Fel Fireball, Sargeron Smite, and Twin Slice now additionally scales with your Agility.","rankDescriptions":["Level 40 Passive Damage dealt by Fel Fireball, Sargeron Smite, and Twin Slice now additionally scales with your Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-6339","treeId":"coa-felsworn-18","index":6339,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_shield_mogu_c_01.png","maxRank":1,"name":"Doomscarring","description":"Twin Slice now deals an additional 1 + 30% AP Physical damage and scars enemies for 12 seconds, increasing your allies' attack power against them by 45 + 15% Agility.","rankDescriptions":["Twin Slice now deals an additional 1 + 30% AP Physical damage and scars enemies for 12 seconds, increasing your allies' attack power against them by 45 + 15% Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11111","treeId":"coa-felsworn-18","index":11111,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_shadow_deathcoil.png","maxRank":1,"name":"Fel Daze","description":"Increases the critical strike chance of Fel Fireball by 10% and it's damage dealt now reduces the enemy's chance to hit by -3% for 6 seconds.","rankDescriptions":["Increases the critical strike chance of Fel Fireball by 10% and it's damage dealt now reduces the enemy's chance to hit by -3% for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30561","treeId":"coa-felsworn-18","index":30561,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_helm_leather_demonhunter_b_01gold.png","maxRank":1,"name":"Dark Lord","description":"While above 75% health, your damage taken is reduced by -5% and damage dealt is increased by 5%.","rankDescriptions":["While above 75% health, your damage taken is reduced by -5% and damage dealt is increased by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30560","treeId":"coa-felsworn-18","index":30560,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_misc_fel_tainted_cache.png","maxRank":1,"name":"Eye of the Tyrant","description":"Grant 10% increased melee and ranged haste to party and raid members within 100 yds. Does not stack with similar effects. In addition, your Stamina and attack power is increased by 4%.","rankDescriptions":["Grant 10% increased melee and ranged haste to party and raid members within 100 yds. Does not stack with similar effects. In addition, your Stamina and attack power is increased by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6876","treeId":"coa-felsworn-18","index":6876,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/ability_demonhunter_brandofthehunt.png","maxRank":1,"name":"Vengeance Is Mine","description":"Dodging or parrying an attack now gives you a 10% chance to make your next 10 instances of damage with Twin Slice deal 30% increased damage and generate 1 Felfury.","rankDescriptions":["Dodging or parrying an attack now gives you a 10% chance to make your next 10 instances of damage with Twin Slice deal 30% increased damage and generate 1 Felfury."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30404","treeId":"coa-felsworn-18","index":30404,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_fire_felfirenova.png","maxRank":1,"name":"Mannoroth's Rage","description":"Reduces the cooldown of Burning Hatred by -60 sec.","rankDescriptions":["Reduces the cooldown of Burning Hatred by -60 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34224","treeId":"coa-felsworn-18","index":34224,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_warlock_whiplash.png","maxRank":1,"name":"Infernal Whipcrack","description":"Enrage up to 8 allies within 20 yds, reducing their damage taken by -15% and increasing their haste by 10% for 10 seconds.","rankDescriptions":["Enrage up to 8 allies within 20 yds, reducing their damage taken by -15% and increasing their haste by 10% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11233","treeId":"coa-felsworn-18","index":11233,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/achievement_boss_hellfire_felreaver.png","maxRank":1,"name":"Fel Monstrosity","description":"Level 50 Passive Increases your Stamina by 25% and size by 10%.","rankDescriptions":["Level 50 Passive Increases your Stamina by 25% and size by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30405","treeId":"coa-felsworn-18","index":30405,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_demonhunter_immolation.png","maxRank":1,"name":"Tyrannical Resolve","description":"Taunt nearby enemies for 4 seconds and ignore -50% of all damage taken for 30 seconds, up to 100% of your maximum health. When this ends, you unleash a Felfire Blast that leeches health from nearby enemies based on how many times you took damage with the effect active.","rankDescriptions":["Taunt nearby enemies for 4 seconds and ignore -50% of all damage taken for 30 seconds, up to 100% of your maximum health. When this ends, you unleash a Felfire Blast that leeches health from nearby enemies based on how many times you took damage with the effect active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34228","treeId":"coa-felsworn-18","index":34228,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/_orc_06.png","maxRank":1,"name":"Grommash's Folly","description":"While Inner Demon is active, your melee haste is now increased by 15% and you now heal equal to 50% of all damage dealt by critical strikes with auto attacks. In addition, critical strikes with Carve deal 5% increased damage, increasing up to 60% with each strike based on how long you channel.","rankDescriptions":["While Inner Demon is active, your melee haste is now increased by 15% and you now heal equal to 50% of all damage dealt by critical strikes with auto attacks. In addition, critical strikes with Carve deal 5% increased damage, increasing up to 60% with each strike based on how long you channel."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29407","treeId":"coa-felsworn-18","index":29407,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/achievement_boss_hellfire_fellord.png","maxRank":1,"name":"Taskmaster's Army","description":"Reduces the cooldown of Infernal Whipcrack by -30 sec and it now affects all allies and its radius is increased by 15 yds.","rankDescriptions":["Reduces the cooldown of Infernal Whipcrack by -30 sec and it now affects all allies and its radius is increased by 15 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34243","treeId":"coa-felsworn-37","index":34243,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/ability_creature_felsunder.png","maxRank":1,"name":"Azzinoth's Assault","description":"Consumes 2 Felfury Strike an enemy for Weapon Damage plus 15 + 10% AP with both weapons, additionally scaling with your attack power.","rankDescriptions":["Consumes 2 Felfury Strike an enemy for Weapon Damage plus 15 + 10% AP with both weapons, additionally scaling with your attack power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4007","treeId":"coa-felsworn-37","index":4007,"prerequisiteId":"coa-entry-29367","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29367","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_sword_1h_artifactfelomelorn_d_03dual.png","maxRank":1,"name":"Dancing Blades","description":"Level 10 Passive Critical strikes with melee abilities now trigger Dancing Blades, dealing off-hand Weapon Damage to up to 5 nearby enemies.","rankDescriptions":["Level 10 Passive Critical strikes with melee abilities now trigger Dancing Blades, dealing off-hand Weapon Damage to up to 5 nearby enemies."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-6512","treeId":"coa-felsworn-37","index":6512,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_glaive_1h_demonhunter_a_01.png","maxRank":2,"name":"Slice & Dice","description":"Increases your off-hand weapon damage by 50% and reduces the Energy cost of Twin Slice by -10.","rankDescriptions":["Increases your off-hand weapon damage by 25% and reduces the Energy cost of Twin Slice by -5.","Increases your off-hand weapon damage by 50% and reduces the Energy cost of Twin Slice by -10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29387","treeId":"coa-felsworn-37","index":29387,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_glaive_1h_npc_d_02.png","maxRank":1,"name":"Annihilan Strike","description":"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.","rankDescriptions":["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."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6526","treeId":"coa-felsworn-37","index":6526,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/spell_fire_felimmolation.png","maxRank":1,"name":"Immolation Aura","description":"Wreathe yourself in fire for up to 1 minute, dealing 23 + 30% fire SP + 23% AP Fire Damage to nearby enemies every 3 sec.","rankDescriptions":["Wreathe yourself in fire for up to 1 minute, dealing 23 + 30% fire SP + 23% AP Fire Damage to nearby enemies every 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9228","treeId":"coa-felsworn-37","index":9228,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/azgalor_border.png","maxRank":1,"name":"True Self","description":"Level 20 Passive Your Inner Demon now grants 10% increased dodge chance and critical damage dealt while active.","rankDescriptions":["Level 20 Passive Your Inner Demon now grants 10% increased dodge chance and critical damage dealt while active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-34236","treeId":"coa-felsworn-37","index":34236,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/spell_fire_felcano.png","maxRank":1,"name":"Twin Fury","description":"Critically striking with Twin Slice or Annihilan Strike now generates an additional 1 Felfury.","rankDescriptions":["Critically striking with Twin Slice or Annihilan Strike now generates an additional 1 Felfury."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30300","treeId":"coa-felsworn-37","index":30300,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/achievement_boss_omartheunscarred_01.png","maxRank":3,"name":"Azzinoth's Rage","description":"Increases your Armor penetration by 30% and your expertise by 12.","rankDescriptions":["Increases your Armor penetration by 10% and your expertise by 4.","Increases your Armor penetration by 20% and your expertise by 8.","Increases your Armor penetration by 30% and your expertise by 12."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30299","treeId":"coa-felsworn-37","index":30299,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/ability_demonhunter_felblade.png","maxRank":1,"name":"Chaos Soldier","description":"Increases the critical strike chance of Azzinoth's Assault and Sargeron Smite by 5%.","rankDescriptions":["Increases the critical strike chance of Azzinoth's Assault and Sargeron Smite by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29927","treeId":"coa-felsworn-37","index":29927,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/ability_demonhunter_vengefulretreat.png","maxRank":1,"name":"Legionfall","description":"Melee ability damage now has a 15% chance to reset the cooldown of Annihilan Strike.","rankDescriptions":["Melee ability damage now has a 15% chance to reset the cooldown of Annihilan Strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31308","treeId":"coa-felsworn-37","index":31308,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_sword_1h_artifactfelomelorn_d_03.png","maxRank":1,"name":"Scars of Suffering","description":"Casting Azzinoth's Assault now scars the enemy, increasing your allies' attack power against them by 15% Agility for 10 seconds.","rankDescriptions":["Casting Azzinoth's Assault now scars the enemy, increasing your allies' attack power against them by 15% Agility for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34238","treeId":"coa-felsworn-37","index":34238,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_weapon_shortblade_62.png","maxRank":1,"name":"Fel Blades","description":"Damage dealt by Azzinoth's Assault now reduces the enemy's armor by -4% for 10 seconds, stacking 5 times.","rankDescriptions":["Damage dealt by Azzinoth's Assault now reduces the enemy's armor by -4% for 10 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29405","treeId":"coa-felsworn-37","index":29405,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/achievement_boss_hellfire_mannorothreanimated.png","maxRank":2,"name":"Pit Lord's Strength","description":"Your Annihilation now affects 2 additional attack.","rankDescriptions":["Your Annihilation now affects 1 additional attack.","Your Annihilation now affects 2 additional attack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34252","treeId":"coa-felsworn-37","index":34252,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/spell_shadow_summonimp.png","maxRank":1,"name":"Burning Rage","description":"Increases the damage and reduces the cost of Sunder and Immolation Aura by 20%.","rankDescriptions":["Increases the damage and reduces the cost of Sunder and Immolation Aura by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11228","treeId":"coa-felsworn-37","index":11228,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_potion_19.png","maxRank":1,"name":"Unbound","description":"Level 30 Passive Increases your dodge by 15% of your Agility and your hit rating by 6% of your Agility.","rankDescriptions":["Level 30 Passive Increases your dodge by 15% of your Agility and your hit rating by 6% of your Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-31301","treeId":"coa-felsworn-37","index":31301,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/ability_warlock_backdraftgreen.png","maxRank":2,"name":"Spite","description":"Increases your Agility by 15% and dodge chance by 6%.","rankDescriptions":["Increases your Agility by 8% and dodge chance by 3%.","Increases your Agility by 15% and dodge chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29396","treeId":"coa-felsworn-37","index":29396,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_demonhunter_felrush.png","maxRank":1,"name":"Felhoof Charge","description":"Generates 1 Felfury Charge an enemy, dealing 60 + 28.5% AP Physical damage.","rankDescriptions":["Generates 1 Felfury Charge an enemy, dealing 60 + 28.5% AP Physical damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29852","treeId":"coa-felsworn-37","index":29852,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_demonhunter_metamorphasistank.png","maxRank":1,"name":"You Cheat, Gul'dan!","description":"Increases your critical damage by 50% against enemies above 75% health.","rankDescriptions":["Increases your critical damage by 50% against enemies above 75% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7432","treeId":"coa-felsworn-37","index":7432,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/ability_mage_worldinflamesgreen.png","maxRank":1,"name":"Nether Champion","description":"Triggering Dancing Blades now increases the damage of next Sargeron Smite by 8% for 20 seconds, stacking 5 times.","rankDescriptions":["Triggering Dancing Blades now increases the damage of next Sargeron Smite by 8% for 20 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34245","treeId":"coa-felsworn-37","index":34245,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_polearm_2h_fellord_03.png","maxRank":1,"name":"Demonic Machinations","description":"Critical strikes with Sargeron Smite now cause the target to bleed for an additional 50% of the damage dealt over 5 seconds.","rankDescriptions":["Critical strikes with Sargeron Smite now cause the target to bleed for an additional 50% of the damage dealt over 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11814","treeId":"coa-felsworn-37","index":11814,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/custom_t_felspikes_border.png","maxRank":1,"name":"Consumed By Fel","description":"Increases the tick rate of Immolation Aura by -25%.","rankDescriptions":["Increases the tick rate of Immolation Aura by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6919","treeId":"coa-felsworn-37","index":6919,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_glaive_1h_battledungeon_c_02.png","maxRank":1,"name":"A Thousand Cuts","description":"Azzinoth's Assault now has a 30% chance to hit an additional time with your main-hand Weapon.","rankDescriptions":["Azzinoth's Assault now has a 30% chance to hit an additional time with your main-hand Weapon."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31299","treeId":"coa-felsworn-37","index":31299,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/spell-illidan-rosa.png","maxRank":1,"name":"Scars of the Past","description":"Reduces the Energy cost of Chaos Rush by -5 and casting Chaos Rush now heals you for 81 + 20% Stamina + 33% AP.","rankDescriptions":["Reduces the Energy cost of Chaos Rush by -5 and casting Chaos Rush now heals you for 81 + 20% Stamina + 33% AP."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29402","treeId":"coa-felsworn-37","index":29402,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/skill_icon_skill104_border.png","maxRank":1,"name":"Blighted Strikes","description":"While Inner Demon is active your melee attacks reduce the target's healing received by -20% for 8 seconds, stacking 2 times.","rankDescriptions":["While Inner Demon is active your melee attacks reduce the target's healing received by -20% for 8 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34244","treeId":"coa-felsworn-37","index":34244,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_glaive_1h_artifactaldrochi_d_03dual.png","maxRank":1,"name":"Fury Unleashed","description":"Spin your glaives for 5 seconds, increasing movement speed by 30% and dealing 200% Weapon Damage every 1 sec with both weapons to all nearby enemies. You are immune to movement impairing and loss of control effects.","rankDescriptions":["Spin your glaives for 5 seconds, increasing movement speed by 30% and dealing 200% Weapon Damage every 1 sec with both weapons to all nearby enemies. You are immune to movement impairing and loss of control effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9229","treeId":"coa-felsworn-37","index":9229,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/ability_demonhunter_immolation.png","maxRank":1,"name":"Chaotic","description":"Level 40 Passive While Inner Demon is active, direct melee ability critical strikes now refund 3 Energy.","rankDescriptions":["Level 40 Passive While Inner Demon is active, direct melee ability critical strikes now refund 3 Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-31300","treeId":"coa-felsworn-37","index":31300,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_argustalbukmount_felpurple.png","maxRank":1,"name":"Fel Instincts","description":"Increases the damage of Azzinoth's Assault by 10% and causes it to increase your melee haste by 20% for 5 seconds.","rankDescriptions":["Increases the damage of Azzinoth's Assault by 10% and causes it to increase your melee haste by 20% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29132","treeId":"coa-felsworn-37","index":29132,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/ability_demonhunter_spectralsight.png","maxRank":1,"name":"Reckless Assault","description":"Increases the damage of Azzinoth's Assault, Annihilan Strike, and Twin Slice by 15% against slowed enemies.","rankDescriptions":["Increases the damage of Azzinoth's Assault, Annihilan Strike, and Twin Slice by 15% against slowed enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6513","treeId":"coa-felsworn-37","index":6513,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_shadow_fingerofdeath.png","maxRank":1,"name":"Fel Haze","description":"While active, Blood of Mannoroth now also causes you to ignore all enemy Armor.","rankDescriptions":["While active, Blood of Mannoroth now also causes you to ignore all enemy Armor."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34209","treeId":"coa-felsworn-37","index":34209,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_shadow_felarmour.png","maxRank":1,"name":"Felguard","description":"Emanate a powerful aura, granting 10% increased melee and ranged haste to party and raid members within 100 yds. Does not stack with similar effects. In addition, while Inner Demon is active, you now heal for 15% of all melee damage dealt.","rankDescriptions":["Emanate a powerful aura, granting 10% increased melee and ranged haste to party and raid members within 100 yds. Does not stack with similar effects. In addition, while Inner Demon is active, you now heal for 15% of all melee damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6524","treeId":"coa-felsworn-37","index":6524,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/achievement_thenighthold_tichondrius.png","maxRank":1,"name":"Perpetual Fury","description":"Dealing damage with Dancing Blades reduces the cooldown of Fury Unleashed by -1 sec.","rankDescriptions":["Dealing damage with Dancing Blades reduces the cooldown of Fury Unleashed by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34251","treeId":"coa-felsworn-37","index":34251,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/ability_demonhunter_infernalstrike2.png","maxRank":1,"name":"Glaiving","description":"Increases the damage dealt and reduces the Energy cost of Fury Unleashed by 50%.","rankDescriptions":["Increases the damage dealt and reduces the Energy cost of Fury Unleashed by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34249","treeId":"coa-felsworn-37","index":34249,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_blood_of_sargeras.png","maxRank":1,"name":"Reachwalker","description":"Casting Chaos Rush now reduces the cooldown of Felhoof Charge by -2 sec.","rankDescriptions":["Casting Chaos Rush now reduces the cooldown of Felhoof Charge by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6968","treeId":"coa-felsworn-37","index":6968,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_shoulder_leather_raiddemonhuntermythic_r_01.png","maxRank":1,"name":"Azzinoth's Battery","description":"Your Azzinoth's Assault now has a 30% chance to not consume Felfury.","rankDescriptions":["Your Azzinoth's Assault now has a 30% chance to not consume Felfury."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31392","treeId":"coa-felsworn-37","index":31392,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_staff_2h_felfireraid_d_03.png","maxRank":1,"name":"Oblivion","description":"Critically striking now increases your damage dealt by 1% for 4 seconds, stacking 10 times.","rankDescriptions":["Critically striking now increases your damage dealt by 1% for 4 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9230","treeId":"coa-felsworn-37","index":9230,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_polearm_1h_felfireraid_d_02.png","maxRank":1,"name":"Felcaked Blades","description":"Level 50 Passive Twin Slice and Sargeron Smite now additionally scale with your Agility.","rankDescriptions":["Level 50 Passive Twin Slice and Sargeron Smite now additionally scale with your Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30811","treeId":"coa-felsworn-37","index":30811,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/inv_staff_2h_felfireraid_d_03.png","maxRank":1,"name":"Pit Lord's Rage","description":"Casting Chaos Rush now increases your Physical damage by 15% for 10 seconds. Casting Felhoof Charge increases your critical strike chance by 6% for 15 seconds.","rankDescriptions":["Casting Chaos Rush now increases your Physical damage by 15% for 10 seconds. Casting Felhoof Charge increases your critical strike chance by 6% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29926","treeId":"coa-felsworn-37","index":29926,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_sword_1h_artifactfelomelorn_d_03dual.png","maxRank":1,"name":"Fury of the Illidari","description":"2 Charges, 1.5 min recharge Move quickly from enemy to enemy, attacking them every 1 sec with both weapons until 6 assaults are made, generating 1 Felfury with each strike. While active you are immune to crowd control effects. Can hit the same target multiple times. Cannot hit invisible or stealthed targets.","rankDescriptions":["2 Charges, 1.5 min recharge Move quickly from enemy to enemy, attacking them every 1 sec with both weapons until 6 assaults are made, generating 1 Felfury with each strike. While active you are immune to crowd control effects. Can hit the same target multiple times. Cannot hit invisible or stealthed targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29842","treeId":"coa-felsworn-37","index":29842,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/ability_rogue_cuttothechase.png","maxRank":1,"name":"Whirling Vengeance","description":"Reduces the cooldown of Fury Unleashed by -60 sec. When Fury Unleashed ends, you strike all nearby enemies for 757 + 56.14% AP Shadowflame Damage and increase their damage taken from Sunder by 100% for 15 seconds.","rankDescriptions":["Reduces the cooldown of Fury Unleashed by -60 sec. When Fury Unleashed ends, you strike all nearby enemies for 757 + 56.14% AP Shadowflame Damage and increase their damage taken from Sunder by 100% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31158","treeId":"coa-felsworn-38","index":31158,"prerequisiteId":"coa-entry-4008","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4008","requiredRank":1},{"talentId":"coa-entry-29686","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_infernalmountgreen.png","maxRank":1,"name":"Ruin","description":"Consumes 2 Felfury Bring doom upon an enemy, dealing cond(gt(SPFI, SPS), 116+0+SPFI*1, 116+0+SPS*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 seconds.","rankDescriptions":["Consumes 2 Felfury Bring doom upon an enemy, dealing cond(gt(SPFI, SPS), 116+0+SPFI*1, 116+0+SPS*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4008","treeId":"coa-felsworn-38","index":4008,"prerequisiteId":"coa-entry-29686","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29686","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/_auracloak_felfire.png","maxRank":1,"name":"Fel Apprentice","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-34256","treeId":"coa-felsworn-38","index":34256,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/_deathgrip_fel.png","maxRank":1,"name":"Dark Magician","description":"While Inner Demon is active, casting Ruin, Sunder, or Felwrath now refunds 20 Energy.","rankDescriptions":["While Inner Demon is active, casting Ruin, Sunder, or Felwrath now refunds 20 Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31297","treeId":"coa-felsworn-38","index":31297,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/achievement_dungeon_tombofsargeras.png","maxRank":2,"name":"Wrath of Sargeras","description":"Increases your Magic damage dealt by 6% and your spell hit chance by 4%.","rankDescriptions":["Increases your Magic damage dealt by 3% and your spell hit chance by 2%.","Increases your Magic damage dealt by 6% and your spell hit chance by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29933","treeId":"coa-felsworn-38","index":29933,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/chaosincursion.png","maxRank":1,"name":"Bane of Chaos","description":"Generates 1 Felfury Unleash fel magic on an enemy, dealing 114 Chaos damage over 18 seconds. Inner Demon: The enemy takes an additional 13 + 100% SP Chaos Damage every 6 sec. Can only have 1 Bane active on a target at a time.","rankDescriptions":["Generates 1 Felfury Unleash fel magic on an enemy, dealing 114 Chaos damage over 18 seconds. Inner Demon: The enemy takes an additional 13 + 100% SP Chaos Damage every 6 sec. Can only have 1 Bane active on a target at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31291","treeId":"coa-felsworn-38","index":31291,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_fire_felhellfire.png","maxRank":2,"name":"Felfire Adept","description":"Increases the critical strike chance of Sargeron Smite by 20%.","rankDescriptions":["Increases the critical strike chance of Sargeron Smite by 10%.","Increases the critical strike chance of Sargeron Smite by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6931","treeId":"coa-felsworn-38","index":6931,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/spell_warlock_demonicempowerment.png","maxRank":1,"name":"Gul'dan's Prodigy","description":"Reduces Energy cost and cast time of Fel Fireball by -15%.","rankDescriptions":["Reduces Energy cost and cast time of Fel Fireball by -15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11224","treeId":"coa-felsworn-38","index":11224,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_shadow_unstableaffliction_2.png","maxRank":1,"name":"Hidden Power","description":"Level 20 Passive Increases your spell damage by 15% of your Intellect and Spirit. In addition, Inner Demon now increases your spell damage and critical strike rating by an additional 20% of your Spirit.","rankDescriptions":["Level 20 Passive Increases your spell damage by 15% of your Intellect and Spirit. In addition, Inner Demon now increases your spell damage and critical strike rating by an additional 20% of your Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-30302","treeId":"coa-felsworn-38","index":30302,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/spell_fire_felfire.png","maxRank":1,"name":"Felforged","description":"Periodic damage dealt now has a 15% chance to grant you Felforged for 8 seconds.Felforged (Proc)Your next 3 Fel Fireballs have a -30% reduced cast time for 8 seconds.","rankDescriptions":["Periodic damage dealt now has a 15% chance to grant you Felforged for 8 seconds.Felforged (Proc)Your next 3 Fel Fireballs have a -30% reduced cast time for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6340","treeId":"coa-felsworn-38","index":6340,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_gizmo_felironbomb.png","maxRank":1,"name":"Fel Cannon","description":"Increases the critical strike chance of Fel Fireball and Ruin by 15% on enemies above 75% health.","rankDescriptions":["Increases the critical strike chance of Fel Fireball and Ruin by 15% on enemies above 75% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6915","treeId":"coa-felsworn-38","index":6915,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/spell_fire_felflamering.png","maxRank":1,"name":"Felwrath","description":"Consumes 2 Felfury Blast an enemy and all enemies near them with fel magic, dealing 69 + 40% SP Shadowflame Damage. Inner Demon: Striking at least 5 enemies with this spell causes it to deal an additional 108 + 10% SP Shadowflame Damage over 6 seconds, stacking 3 times.","rankDescriptions":["Consumes 2 Felfury Blast an enemy and all enemies near them with fel magic, dealing 69 + 40% SP Shadowflame Damage. Inner Demon: Striking at least 5 enemies with this spell causes it to deal an additional 108 + 10% SP Shadowflame Damage over 6 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30808","treeId":"coa-felsworn-38","index":30808,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/achievement_zone_shadowmoon.png","maxRank":1,"name":"Withering","description":"Your Fel Fireballs used with Felforged active now deal 30% increased damage.","rankDescriptions":["Your Fel Fireballs used with Felforged active now deal 30% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31298","treeId":"coa-felsworn-38","index":31298,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_shoulder_plate_archimonde_d_01.png","maxRank":2,"name":"Black Magic","description":"Increases the damage of your Bane of Chaos and Ruin by 20%.","rankDescriptions":["Increases the damage of your Bane of Chaos and Ruin by 10%.","Increases the damage of your Bane of Chaos and Ruin by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7861","treeId":"coa-felsworn-38","index":7861,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/spell_fire_felflamestrike.png","maxRank":1,"name":"Cursed Flames","description":"Critically striking with Fel Fireball now increases the critical strike chance of your next Fel Fireball within 10 seconds by 20%.","rankDescriptions":["Critically striking with Fel Fireball now increases the critical strike chance of your next Fel Fireball within 10 seconds by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29968","treeId":"coa-felsworn-38","index":29968,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/inv_polearm_2h_fellord.png","maxRank":1,"name":"Illidari Magi","description":"Your periodic damage now has a 20% chance to generate 1 Felfury.","rankDescriptions":["Your periodic damage now has a 20% chance to generate 1 Felfury."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9225","treeId":"coa-felsworn-38","index":9225,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/achievement_boss_argus_felreaver.png","maxRank":1,"name":"Sculptor of Doom","description":"Landing 3 direct critical strikes now grants Sculptor of Doom.Sculptor of DoomYour next Ruin within 8 seconds is instant cast.","rankDescriptions":["Landing 3 direct critical strikes now grants Sculptor of Doom.Sculptor of DoomYour next Ruin within 8 seconds is instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-34230","treeId":"coa-felsworn-38","index":34230,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/ability_deathknight_deathsiphon.png","maxRank":1,"name":"Felbreak","description":"Interrupt a spell from being cast, preventing the target from casting spells of that school for 3 seconds and draining mana from the target based on your Spirit. Usable while moving.","rankDescriptions":["Interrupt a spell from being cast, preventing the target from casting spells of that school for 3 seconds and draining mana from the target based on your Spirit. Usable while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29923","treeId":"coa-felsworn-38","index":29923,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_shadow_sealofkings.png","maxRank":1,"name":"Shadow Magi","description":"Reduces the cooldown of Annihilation by -15 sec and Sunder by -4 sec.","rankDescriptions":["Reduces the cooldown of Annihilation by -15 sec and Sunder by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31295","treeId":"coa-felsworn-38","index":31295,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/spell_shadow_summoninfernal.png","maxRank":1,"name":"Infernal","description":"Drop an infernal from the sky with grotesque magic, dealing 102 + 105% fire SP Fire damage to enemies in the radius, horrifying them for 3 seconds, and spawning an Infernal to fight by your side for 15 seconds. Inner Demon: Lasts 1 additional sec.","rankDescriptions":["Drop an infernal from the sky with grotesque magic, dealing 102 + 105% fire SP Fire damage to enemies in the radius, horrifying them for 3 seconds, and spawning an Infernal to fight by your side for 15 seconds. Inner Demon: Lasts 1 additional sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6911","treeId":"coa-felsworn-38","index":6911,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_belt_leather_raiddemonhuntermythic_r_01.png","maxRank":1,"name":"Illidari Smiter","description":"Critical strikes with Fel Fireball now generate 1 Felfury.","rankDescriptions":["Critical strikes with Fel Fireball now generate 1 Felfury."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6909","treeId":"coa-felsworn-38","index":6909,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/uico_unholy_spell_03_border.png","maxRank":1,"name":"Fel Flamecasting","description":"Damage dealt by Sargeron Smite now spreads your Cripple to 2 nearby enemies.","rankDescriptions":["Damage dealt by Sargeron Smite now spreads your Cripple to 2 nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10909","treeId":"coa-felsworn-38","index":10909,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/legionshipmount.png","maxRank":1,"name":"Herald of the Legion","description":"Damage dealt by Bane of Chaos now radiates fel energy around the enemy, dealing 50% of the damage dealt to up to 8 nearby enemies.","rankDescriptions":["Damage dealt by Bane of Chaos now radiates fel energy around the enemy, dealing 50% of the damage dealt to up to 8 nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6912","treeId":"coa-felsworn-38","index":6912,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_sword_1h_felfireraid_d_03.png","maxRank":1,"name":"The True Blessing","description":"Casting Annihilation now grants you Sculptor of Doom.Sculptor of DoomYour next Ruin within 8 seconds is instant cast.","rankDescriptions":["Casting Annihilation now grants you Sculptor of Doom.Sculptor of DoomYour next Ruin within 8 seconds is instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4292","treeId":"coa-felsworn-38","index":4292,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/custom_74_wings_border.png","maxRank":1,"name":"Infernal Summoner","description":"Direct damage dealt now has a 5% chance to reset the cooldown of Infernal.","rankDescriptions":["Direct damage dealt now has a 5% chance to reset the cooldown of Infernal."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11292","treeId":"coa-felsworn-38","index":11292,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/inv_staff_2h_artifactsargeras_d_02.png","maxRank":1,"name":"Doomsayer","description":"Critical strikes with Sargeron Smite now refund 1 Felfury. In addition, Sargeron Smite now deals 25% increased damage to enemies above 75% of their maximum health.","rankDescriptions":["Critical strikes with Sargeron Smite now refund 1 Felfury. In addition, Sargeron Smite now deals 25% increased damage to enemies above 75% of their maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6914","treeId":"coa-felsworn-38","index":6914,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/warlock_pvp_burninglegion.png","maxRank":1,"name":"Infernal Ruin","description":"Every 3rd Ruin or Felwrath now spawns an Infernal to fight by your side for 15 seconds.","rankDescriptions":["Every 3rd Ruin or Felwrath now spawns an Infernal to fight by your side for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11914","treeId":"coa-felsworn-38","index":11914,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/creatureportrait_infernal_ball_02.png","maxRank":1,"name":"Oppressive Ruin","description":"Damage dealt by Ruin now absorbs the next 99 healing on the target based on rank, up to 226 at rank 7, for 8 sec.","rankDescriptions":["Damage dealt by Ruin now absorbs the next 99 healing on the target based on rank, up to 226 at rank 7, for 8 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9226","treeId":"coa-felsworn-38","index":9226,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_fabric_felrag.png","maxRank":1,"name":"Unphased","description":"Level 40 Passive Increases your spell penetration by 20, scaling with your level. In addition, reduces spell pushback suffered from damaging attacks by 50% while Inner Demon is active.","rankDescriptions":["Level 40 Passive Increases your spell penetration by 20, scaling with your level. In addition, reduces spell pushback suffered from damaging attacks by 50% while Inner Demon is active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-30874","treeId":"coa-felsworn-38","index":30874,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_natureburn_border.png","maxRank":1,"name":"Curse of Argus","description":"Each time Bane of Chaos deals damage its damage is increased on the target by 1% for 6 seconds, stacking 20 times.","rankDescriptions":["Each time Bane of Chaos deals damage its damage is increased on the target by 1% for 6 seconds, stacking 20 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6910","treeId":"coa-felsworn-38","index":6910,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/spell_fel_incinerate.png","maxRank":1,"name":"Felshock","description":"Direct critical strikes with Felfury spenders now extend the duration of Inner Demon by 1 sec and cause enemies struck to have a 3% increased chance to be hit by spells for 12 seconds.","rankDescriptions":["Direct critical strikes with Felfury spenders now extend the duration of Inner Demon by 1 sec and cause enemies struck to have a 3% increased chance to be hit by spells for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34231","treeId":"coa-felsworn-38","index":34231,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/_auracloak_felfire.png","maxRank":1,"name":"Fel Infusion","description":"Increases critical strike chance of all party and raid members within 100 by 3%. Does not stack with similar effects. In addition, increases your critical strike chance by 3%.","rankDescriptions":["Increases critical strike chance of all party and raid members within 100 by 3%. Does not stack with similar effects. In addition, increases your critical strike chance by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34237","treeId":"coa-felsworn-38","index":34237,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/achievement_boss_exarch_maladaar.png","maxRank":1,"name":"Archimonde's Wrath","description":"Increases the critical strike chance of your Felfury spenders by 1% for every 10 points of Energy you have at the time of casting.","rankDescriptions":["Increases the critical strike chance of your Felfury spenders by 1% for every 10 points of Energy you have at the time of casting."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29849","treeId":"coa-felsworn-38","index":29849,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_glaive_1h_artifactaldrochi_d_05.png","maxRank":1,"name":"Infernal Doom","description":"Ruin now has a -25% chance not to consume Felfury.","rankDescriptions":["Ruin now has a -25% chance not to consume Felfury."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34234","treeId":"coa-felsworn-38","index":34234,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_demonhunter_immolation.png","maxRank":1,"name":"Nether Spirit","description":"Increases your spell critical strike rating by 20% of your Spirit.","rankDescriptions":["Increases your spell critical strike rating by 20% of your Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29922","treeId":"coa-felsworn-38","index":29922,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_ember_fel.png","maxRank":1,"name":"Chaotic Intuition","description":"Damage dealt by Felstrikes now extends the duration of Cripple on the target by 1 sec and grants you 1% increased spell critical damage for 6 seconds, stacking 10 times.","rankDescriptions":["Damage dealt by Felstrikes now extends the duration of Cripple on the target by 1 sec and grants you 1% increased spell critical damage for 6 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4226","treeId":"coa-felsworn-38","index":4226,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/achievement_boss_argus_femaleeredar.png","maxRank":1,"name":"Man'ari Teachings","description":"Level 50 Passive Increases your critical damage dealt by 100%.","rankDescriptions":["Level 50 Passive Increases your critical damage dealt by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-29445","treeId":"coa-felsworn-38","index":29445,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_demonhunter_eyebeam.png","maxRank":1,"name":"Sargeras Embrace","description":"Channel a beam of fel magic upon an enemy, slowing your target's movement speed by -60% for 5.5 seconds and dealing cond(gt(SPFI, SPS), 695+0+SPFI*0.85, 695+0+SPS*0.85) Shadowflame Damage at the end of the duration. For the duration, you may instant cast Fel Fireball and Ruin while channeling and they refund their cost.","rankDescriptions":["Channel a beam of fel magic upon an enemy, slowing your target's movement speed by -60% for 5.5 seconds and dealing cond(gt(SPFI, SPS), 695+0+SPFI*0.85, 695+0+SPS*0.85) Shadowflame Damage at the end of the duration. For the duration, you may instant cast Fel Fireball and Ruin while channeling and they refund their cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34232","treeId":"coa-felsworn-38","index":34232,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/achievement_thenighthold_guldan.png","maxRank":1,"name":"Malice of Gul'dan","description":"Direct critical strikes now have a 60% chance to trigger a Felstrike and generate a Fragment of Malice. FelstrikeBurn an enemy for 54 + 30% SP Shadowflame Damage over 6 seconds, stacking 3 times.Fragment of MaliceRestores 5 Energy and increases your critical strike chance by 10% for 5 seconds.","rankDescriptions":["Direct critical strikes now have a 60% chance to trigger a Felstrike and generate a Fragment of Malice. FelstrikeBurn an enemy for 54 + 30% SP Shadowflame Damage over 6 seconds, stacking 3 times.Fragment of MaliceRestores 5 Energy and increases your critical strike chance by 10% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30200","treeId":"coa-felsworn-38","index":30200,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/achievement_boss_hellfire_archimonde.png","maxRank":1,"name":"Fury of Archimonde","description":"After generating 10 Felfury, your next Sargeron Smite within 15 seconds gains 50% increased critical strike chance and damage.","rankDescriptions":["After generating 10 Felfury, your next Sargeron Smite within 15 seconds gains 50% increased critical strike chance and damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29686","treeId":"coa-felsworn-87","index":29686,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/ability_boss_lordanthricystgreen.png","maxRank":1,"name":"Annihilation","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29367","treeId":"coa-felsworn-87","index":29367,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/_manaburn_fel.png","maxRank":1,"name":"Manaburn","description":"Burn an enemy's mana equal to 200% of your Stamina. Deals damage equal to the mana drained.","rankDescriptions":["Burn an enemy's mana equal to 200% of your Stamina. Deals damage equal to the mana drained."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30554","treeId":"coa-felsworn-87","index":30554,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/spell_fire_felfireward.png","maxRank":1,"name":"Hateforged Barrier","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7862","treeId":"coa-felsworn-87","index":7862,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/_warlock_imp.png","maxRank":2,"name":"Cruelty","description":"Increases your critical strike chance by 4% and an additional 6% against Demons.","rankDescriptions":["Increases your critical strike chance by 2% and an additional 3% against Demons.","Increases your critical strike chance by 4% and an additional 6% against Demons."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34207","treeId":"coa-felsworn-87","index":34207,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/nhi_unholyswing_border.png","maxRank":2,"name":"Demonborn","description":"Increases your Energy regeneration by 30%.","rankDescriptions":["Increases your Energy regeneration by 15%.","Increases your Energy regeneration by 30%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34203","treeId":"coa-felsworn-87","index":34203,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/_monkspecialattack_dodgenightelf.png","maxRank":1,"name":"Demonic Evasion","description":"Increases your chance to dodge by 5%.","rankDescriptions":["Increases your chance to dodge by 5%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34211","treeId":"coa-felsworn-87","index":34211,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/inv_leather_raiddemonhuntermythic_q_02helm.png","maxRank":1,"name":"Focused Hatred","description":"Direct magical critical strikes now generate 5 Energy.","rankDescriptions":["Direct magical critical strikes now generate 5 Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34205","treeId":"coa-felsworn-87","index":34205,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_shadow_demoniccircleteleport.png","maxRank":1,"name":"Felwracked","description":"Every 3rd Twin Slice or Fel Fireball within 15 seconds now generates 1 additional Felfury.","rankDescriptions":["Every 3rd Twin Slice or Fel Fireball within 15 seconds now generates 1 additional Felfury."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7863","treeId":"coa-felsworn-87","index":7863,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/achievement_boss_argus_felreaver.png","maxRank":1,"name":"Infernal Armor","description":"Reduces the cooldown of your Hateforged Barrier by -10 sec.","rankDescriptions":["Reduces the cooldown of your Hateforged Barrier by -10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6868","treeId":"coa-felsworn-87","index":6868,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/ability_bossmannoroth_mannorothsgaze.png","maxRank":1,"name":"Whispers of the Pit","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33670","treeId":"coa-felsworn-87","index":33670,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/_castercloak_fel.png","maxRank":1,"name":"Embracing Evil","description":"Increases the duration and reduces the Energy cost of Banes by 20%.","rankDescriptions":["Increases the duration and reduces the Energy cost of Banes by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30559","treeId":"coa-felsworn-87","index":30559,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/inv_offhand_1h_artifactskulloferedar_d_03.png","maxRank":1,"name":"Skull of Gul'dan","description":"Consume the essence of the skull of Gul'dan, increasing your maximum health and Energy by 25% for 10 seconds.","rankDescriptions":["Consume the essence of the skull of Gul'dan, increasing your maximum health and Energy by 25% for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33668","treeId":"coa-felsworn-87","index":33668,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/ability_demonhunter_feldevastation.png","maxRank":1,"name":"Felgorged","description":"Reduces the Energy cost of Cripple and Consume Magic by -10.","rankDescriptions":["Reduces the Energy cost of Cripple and Consume Magic by -10."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34212","treeId":"coa-felsworn-87","index":34212,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_dhmount_felsaber.png","maxRank":1,"name":"Felheart","description":"Each Felfury active now increases your haste by 1%.","rankDescriptions":["Each Felfury active now increases your haste by 1%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29400","treeId":"coa-felsworn-87","index":29400,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/ability_demonhunter_doublejump.png","maxRank":1,"name":"Doomstride","description":"Using Chaos Rush twice in a row now refreshes a charge of Chaos Rush.","rankDescriptions":["Using Chaos Rush twice in a row now refreshes a charge of Chaos Rush."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34213","treeId":"coa-felsworn-87","index":34213,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/ability_mage_worldinflamesgreen.png","maxRank":1,"name":"Demonic Embrace","description":"Casting Inner Demon with at least 6 Felfury now restores 50 Energy.","rankDescriptions":["Casting Inner Demon with at least 6 Felfury now restores 50 Energy."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29924","treeId":"coa-felsworn-87","index":29924,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/inv_misc_qirajicrystal_03.png","maxRank":1,"name":"Illidan's Guile","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6423","treeId":"coa-felsworn-87","index":6423,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/_book2motif_illidan.png","maxRank":1,"name":"Dark Teachings","description":"Increases the effectiveness of your Intuitions by 20%.","rankDescriptions":["Increases the effectiveness of your Intuitions by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29399","treeId":"coa-felsworn-87","index":29399,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/_warlock_rueeardenteverte.png","maxRank":1,"name":"Legion March","description":"Increases the range of Chaos Rush by 3 yds.","rankDescriptions":["Increases the range of Chaos Rush by 3 yds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30552","treeId":"coa-felsworn-87","index":30552,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/5_warlock42_border.png","maxRank":1,"name":"Felbane","description":"Curse an enemy, causing the next spell they cast within 4 seconds to be reflected onto them.","rankDescriptions":["Curse an enemy, causing the next spell they cast within 4 seconds to be reflected onto them."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34204","treeId":"coa-felsworn-87","index":34204,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_fabric_felcloth_ebon.png","maxRank":1,"name":"Warden's End","description":"Reduces the cooldown of Mana Burn and Illidan's Guile by -20%.","rankDescriptions":["Reduces the cooldown of Mana Burn and Illidan's Guile by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31294","treeId":"coa-felsworn-87","index":31294,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/achievement_boss_hellfire_felreaver.png","maxRank":1,"name":"Cunning","description":"Reduces the duration of movement impairing effects on you by -20%.","rankDescriptions":["Reduces the duration of movement impairing effects on you by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30565","treeId":"coa-felsworn-87","index":30565,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_demonhunter_metamorphasistank.png","maxRank":1,"name":"Pact Hunter","description":"Increases the effectiveness of your Pacts by 50%.","rankDescriptions":["Increases the effectiveness of your Pacts by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11227","treeId":"coa-felsworn-87","index":11227,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/ability_hunter_negate.png","maxRank":1,"name":"Suffering","description":"Increases the duration of Skull of Gul'dan by 5 sec.","rankDescriptions":["Increases the duration of Skull of Gul'dan by 5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34227","treeId":"coa-felsworn-87","index":34227,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/inv_staff_2h_guldan_d_01.png","maxRank":1,"name":"Gul'dan's Gift","description":"Increases the effectiveness of your Skull of Gul'dan by 50%, but its cooldown is increased by 30 sec.","rankDescriptions":["Increases the effectiveness of your Skull of Gul'dan by 50%, but its cooldown is increased by 30 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33674","treeId":"coa-felsworn-87","index":33674,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/spell_fel_elementaldevastation.png","maxRank":1,"name":"Elemental Bane","description":"Increases your critical damage by 10% and additionally increases your critical strike chance by 15% while fighting Elementals.","rankDescriptions":["Increases your critical damage by 10% and additionally increases your critical strike chance by 15% while fighting Elementals."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30553","treeId":"coa-felsworn-87","index":30553,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_shadow_darksummoning.png","maxRank":1,"name":"Magic Fiend","description":"Increases the amount of beneficial magic effects stolen by your Consume Magic by 1.","rankDescriptions":["Increases the amount of beneficial magic effects stolen by your Consume Magic by 1."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6875","treeId":"coa-felsworn-87","index":6875,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/ability_warlock_moltencoregreen.png","maxRank":1,"name":"Fel Communion","description":"Increases your maximum Energy by 30.","rankDescriptions":["Increases your maximum Energy by 30."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5210","treeId":"coa-felsworn-87","index":5210,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/achievement_explore_argus.png","maxRank":1,"name":"Felguard","description":"Your Chaos Rush now reduces all damage taken by -3% for 5 seconds, stacking 2 times.","rankDescriptions":["Your Chaos Rush now reduces all damage taken by -3% for 5 seconds, stacking 2 times."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11210","treeId":"coa-felsworn-87","index":11210,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/ability_hunter_onewithnature.png","maxRank":1,"name":"Felstrider","description":"Your Chaos Rush now increases your Energy regeneration by 10% for 5 seconds, stacking 2 times.","rankDescriptions":["Your Chaos Rush now increases your Energy regeneration by 10% for 5 seconds, stacking 2 times."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33671","treeId":"coa-felsworn-87","index":33671,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/inv_plate_helmet_eredarargus_d_01.png","maxRank":2,"name":"Armaments of the Legion","description":"Reduces your chance to be hit by spells by -4% and increases the absorption value of Hateforged Barrier by 20%.","rankDescriptions":["Reduces your chance to be hit by spells by -2% and increases the absorption value of Hateforged Barrier by 10%.","Reduces your chance to be hit by spells by -4% and increases the absorption value of Hateforged Barrier by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7860","treeId":"coa-felsworn-87","index":7860,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/_orc_09.png","maxRank":1,"name":"Warlock Training","description":"Cripple now causes the enemy target to be unable to critically strike for 4 seconds.","rankDescriptions":["Cripple now causes the enemy target to be unable to critically strike for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5685","treeId":"coa-felsworn-87","index":5685,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/nhi_chaosfire_border.png","maxRank":1,"name":"Chaotic","description":"Dealing damage now has an 8% chance to increase your damage by 3% for 8 seconds, stacking 3 times.","rankDescriptions":["Dealing damage now has an 8% chance to increase your damage by 3% for 8 seconds, stacking 3 times."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30301","treeId":"coa-felsworn-87","index":30301,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/spell_shadow_antimagicshell.png","maxRank":1,"name":"Anti-Magic","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7865","treeId":"coa-felsworn-87","index":7865,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/spell_fire_felrainoffire.png","maxRank":1,"name":"Reckoning","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7868","treeId":"coa-felsworn-87","index":7868,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/70_inscription_glyph_demonhunter_minor.png","maxRank":1,"name":"Mark of Chaos","description":"Using Chaos Rush increases the next instance of direct spell or ability damage within 5 seconds by 25%.","rankDescriptions":["Using Chaos Rush increases the next instance of direct spell or ability damage within 5 seconds by 25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29409","treeId":"coa-felsworn-87","index":29409,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/ability_vehicle_shellshieldgenerator_green.png","maxRank":1,"name":"Illidari Barrier","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/guardian.json b/src/game/generated/talentUi/guardian.json new file mode 100644 index 00000000..2332e604 --- /dev/null +++ b/src/game/generated/talentUi/guardian.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"guardian","trees":[{"id":"coa-guardian-7","classId":"guardian","name":"Vanguard","icon":"/assets/ui/spells/spell_paladin_hammerofwrath.png","background":"","description":"Vanguard nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-guardian-48","classId":"guardian","name":"Inspiration","icon":"/assets/ui/spells/ability_maldraxxus_warriorplantbanner.png","background":"","description":"Inspiration nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-guardian-49","classId":"guardian","name":"Gladiator","icon":"/assets/ui/spells/custom_warriorskill_02_border.png","background":"","description":"Gladiator nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-guardian-87","classId":"guardian","name":"Class","icon":"/assets/ui/spells/ability_ensnare.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-31169","treeId":"coa-guardian-7","index":31169,"prerequisiteId":"coa-entry-4019","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4019","requiredRank":1},{"talentId":"coa-entry-30057","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/spell_paladin_hammerofwrath.png","maxRank":1,"name":"Heavy Blow","description":"Smash an enemy and enemies behind them in a line, dealing 23 + 37% AP High Threat Physical damage, scaling with your defense rating.","rankDescriptions":["Smash an enemy and enemies behind them in a line, dealing 23 + 37% AP High Threat Physical damage, scaling with your defense rating."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4019","treeId":"coa-guardian-7","index":4019,"prerequisiteId":"coa-entry-30057","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30057","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/_human_06.png","maxRank":1,"name":"Footman's Calling","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":10,"isPassive":true},{"id":"coa-entry-30056","treeId":"coa-guardian-7","index":30056,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/garrison_building_armory.png","maxRank":3,"name":"Iron Guardian","description":"Increases your Stamina by 15% and critical strike chance by 6%.","rankDescriptions":["Increases your Stamina by 5% and critical strike chance by 2%.","Increases your Stamina by 10% and critical strike chance by 4%.","Increases your Stamina by 15% and critical strike chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30802","treeId":"coa-guardian-7","index":30802,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/ability_warrior_vigilance.png","maxRank":1,"name":"Heavy Expert","description":"Increases your chance to parry and dodge by 4% and increase your Armor contribution from mail and plate items by 20%.","rankDescriptions":["Increases your chance to parry and dodge by 4% and increase your Armor contribution from mail and plate items by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31319","treeId":"coa-guardian-7","index":31319,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_shoulder_plate_raidpaladin_s_01.png","maxRank":1,"name":"With Honor","description":"Reduces the cooldown of Ram by -4 sec and its critical strike chance by 25%.","rankDescriptions":["Reduces the cooldown of Ram by -4 sec and its critical strike chance by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4718","treeId":"coa-guardian-7","index":4718,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_shield_06.png","maxRank":1,"name":"Bulwark","description":"Level 20 Passive Increases your block value by 25% and your hit rating by 5% of your Stamina.","rankDescriptions":["Level 20 Passive Increases your block value by 25% and your hit rating by 5% of your Stamina."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-6712","treeId":"coa-guardian-7","index":6712,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/inv_shield_draenorguard_b_01_a_alliance.png","maxRank":1,"name":"Shieldbound","description":"Your Shield Challenge no longer has a cooldown, but now costs 10 additional Energy.","rankDescriptions":["Your Shield Challenge no longer has a cooldown, but now costs 10 additional Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11060","treeId":"coa-guardian-7","index":11060,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/5_assassinskill32_border.png","maxRank":1,"name":"Honorbound","description":"Removes the Energy cost of Shield Challenge.","rankDescriptions":["Removes the Energy cost of Shield Challenge."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34448","treeId":"coa-guardian-7","index":34448,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_horsekultiran.png","maxRank":2,"name":"Knight's Conviction","description":"Increases the block value provided by Raise Shield by 50% and your block chance by 2%.","rankDescriptions":["Increases the block value provided by Raise Shield by 25% and your block chance by 1%.","Increases the block value provided by Raise Shield by 50% and your block chance by 2%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30144","treeId":"coa-guardian-7","index":30144,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/warrior_talent_icon_blitz.png","maxRank":1,"name":"Footman's Call","description":"Damage dealt by Pulverize is increased by 15, plus an additional amount scaling with your block value.","rankDescriptions":["Damage dealt by Pulverize is increased by 15, plus an additional amount scaling with your block value."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1719","treeId":"coa-guardian-7","index":1719,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_steelmelee.png","maxRank":1,"name":"Seasoned Fighter","description":"Reduces the Energy cost of Pulverize, Ram, and Broad Sweep by -15%.","rankDescriptions":["Reduces the Energy cost of Pulverize, Ram, and Broad Sweep by -15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34441","treeId":"coa-guardian-7","index":34441,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_plate_raidwarrior_s_01helm.png","maxRank":1,"name":"Vanguard's Might","description":"Your Heavy Blow now causes you to emanate an aura for 5 seconds that reduces all damage taken by -5% for party members.","rankDescriptions":["Your Heavy Blow now causes you to emanate an aura for 5 seconds that reduces all damage taken by -5% for party members."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34440","treeId":"coa-guardian-7","index":34440,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_hammer_1h_jiro_b_01.png","maxRank":1,"name":"Bring Down The Hammer!","description":"Damage dealt by Heavy Blow now deals an additional 20% of the damage dealt every 1 sec for 3 seconds.","rankDescriptions":["Damage dealt by Heavy Blow now deals an additional 20% of the damage dealt every 1 sec for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4716","treeId":"coa-guardian-7","index":4716,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_shoulder_plate_pvpwarrior_c_01.png","maxRank":1,"name":"Iron Barrier","description":"Level 30 Passive Your successful blocks now have a 50% chance to critically block for twice the normal amount.","rankDescriptions":["Level 30 Passive Your successful blocks now have a 50% chance to critically block for twice the normal amount."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-34417","treeId":"coa-guardian-7","index":34417,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_shield_32.png","maxRank":1,"name":"Vanguard's Shield","description":"Blocking an attack or landing an auto attack now grants a stack of Vanguard for 1 minute, stacking 10 times.Vanguard's ShieldMagic Damage taken reduced by -2%. Whenever you are hit by a spell, you lose 1 stack of this effect.","rankDescriptions":["Blocking an attack or landing an auto attack now grants a stack of Vanguard for 1 minute, stacking 10 times.Vanguard's ShieldMagic Damage taken reduced by -2%. Whenever you are hit by a spell, you lose 1 stack of this effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34439","treeId":"coa-guardian-7","index":34439,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_warrior_shieldguard.png","maxRank":1,"name":"Hold the Line","description":"Command nearby allies to hold the line, making them immune to incapacitate, disorient, knockback, and grip effects for 15 seconds.","rankDescriptions":["Command nearby allies to hold the line, making them immune to incapacitate, disorient, knockback, and grip effects for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34445","treeId":"coa-guardian-7","index":34445,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_mace_1h_draenorguard_b_02_a.png","maxRank":1,"name":"Hammer of the Law","description":"Smash an enemy and enemies behind them in a line, dealing 140 + 100% AP High Threat Physical damage and silencing them for 3.5 seconds.","rankDescriptions":["Smash an enemy and enemies behind them in a line, dealing 140 + 100% AP High Threat Physical damage and silencing them for 3.5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31318","treeId":"coa-guardian-7","index":31318,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/custom_warriorskill_22_border.png","maxRank":1,"name":"Battle Wary","description":"Reduces the cooldown of your Advance and Battle Rush by -30%.","rankDescriptions":["Reduces the cooldown of your Advance and Battle Rush by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30530","treeId":"coa-guardian-7","index":30530,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/ability_warrior_shieldreflection.png","maxRank":1,"name":"Retaliation","description":"Successful blocks now deal 51 + 5% AP Physical damage to the attacker, scaling with defense rating. Can only occur once per sec.","rankDescriptions":["Successful blocks now deal 51 + 5% AP Physical damage to the attacker, scaling with defense rating. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34443","treeId":"coa-guardian-7","index":34443,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_plate_raidwarrior_s_01helm.png","maxRank":1,"name":"Plate Buster","description":"Critical strikes with Ram now reduces the remaining cooldown of Hold the Line by -4 sec.","rankDescriptions":["Critical strikes with Ram now reduces the remaining cooldown of Hold the Line by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34438","treeId":"coa-guardian-7","index":34438,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/_d3revenge.png","maxRank":2,"name":"Stalwart","description":"Increases your block value by 20% and your expertise by 8.","rankDescriptions":["Increases your block value by 10% and your expertise by 4.","Increases your block value by 20% and your expertise by 8."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29220","treeId":"coa-guardian-7","index":29220,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/creatureportrait_blackrockv2_shieldgong.png","maxRank":1,"name":"Unscuffable","description":"Allies within 30 yds now take -10% less Magic damage from area of effect attacks.","rankDescriptions":["Allies within 30 yds now take -10% less Magic damage from area of effect attacks."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30061","treeId":"coa-guardian-7","index":30061,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/_silence_bloodelf.png","maxRank":1,"name":"Order In The Court","description":"Damage dealt by Hammer of the Law now reduces the damage dealt by affected enemies by -10% for 8 seconds.","rankDescriptions":["Damage dealt by Hammer of the Law now reduces the damage dealt by affected enemies by -10% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30060","treeId":"coa-guardian-7","index":30060,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/5_warriorskill25_border.png","maxRank":1,"name":"The Green Tower","description":"Reduces the Energy cost of your Formations and increases their effectiveness by 25%.","rankDescriptions":["Reduces the Energy cost of your Formations and increases their effectiveness by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4710","treeId":"coa-guardian-7","index":4710,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/ability_golemthunderclap.png","maxRank":1,"name":"Experienced Soldier","description":"Level 40 Passive Melee attacks now reduce the cooldown of Brace by -1 sec.","rankDescriptions":["Level 40 Passive Melee attacks now reduce the cooldown of Brace by -1 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-34446","treeId":"coa-guardian-7","index":34446,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/inv_shoulder_mail_bastion_d_01.png","maxRank":1,"name":"Valorous Strikes","description":"Auto attacks now have a 10% chance to strike an additional time and reduce your target's chance to hit by -3% for 15 seconds.","rankDescriptions":["Auto attacks now have a 10% chance to strike an additional time and reduce your target's chance to hit by -3% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31320","treeId":"coa-guardian-7","index":31320,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/5_warriorskill47_border.png","maxRank":1,"name":"Resilient","description":"Blocking an attack while Raise Shield is active now increases your maximum health by 308 + 10% Stamina + 11% AP for 15 seconds.","rankDescriptions":["Blocking an attack while Raise Shield is active now increases your maximum health by 308 + 10% Stamina + 11% AP for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29213","treeId":"coa-guardian-7","index":29213,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/novart_passivemastery_(11)_border.png","maxRank":1,"name":"Forceful Impact","description":"Casting Raise Shield and Heavy Blow now extends the duration of your Brace by 1 sec.","rankDescriptions":["Casting Raise Shield and Heavy Blow now extends the duration of your Brace by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7180","treeId":"coa-guardian-7","index":7180,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv__faction_alliancewareffort.png","maxRank":1,"name":"Lionheart","description":"Your Shield of Denial now strikes 1 additional enemy.","rankDescriptions":["Your Shield of Denial now strikes 1 additional enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19218","treeId":"coa-guardian-7","index":19218,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/5_archerskill48_border.png","maxRank":1,"name":"Valiant Knight","description":"Melee ability critical strikes now cause your next Pulverize within 6 seconds to be free of cost and deal 25% increased damage.","rankDescriptions":["Melee ability critical strikes now cause your next Pulverize within 6 seconds to be free of cost and deal 25% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29219","treeId":"coa-guardian-7","index":29219,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/spell_holy_divineintervention.png","maxRank":1,"name":"Valiant Defender","description":"Increases your maximum Energy by 15 and increases the damage of Pulverize and Broad Sweep by 10%.","rankDescriptions":["Increases your maximum Energy by 15 and increases the damage of Pulverize and Broad Sweep by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34447","treeId":"coa-guardian-7","index":34447,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_helmet_plate_raidpaladin_l_01.png","maxRank":1,"name":"King's Guard","description":"Your Pulverize and Ram now have a 10% chance to reset the cooldown of Raise Shield.","rankDescriptions":["Your Pulverize and Ram now have a 10% chance to reset the cooldown of Raise Shield."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30529","treeId":"coa-guardian-7","index":30529,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_tailor_defenceup01.png","maxRank":1,"name":"Shield Unit","description":"Each time you take damage, you gain 5% of the damage taken as attack power for 1 minute.","rankDescriptions":["Each time you take damage, you gain 5% of the damage taken as attack power for 1 minute."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1721","treeId":"coa-guardian-7","index":1721,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/6bf_explosive_shard.png","maxRank":1,"name":"Wreck Formation","description":"Melee critical strikes now have a 50% chance to reset the cooldown of Hammer of the Law. Casting Standard of Valiance now increases your attack power by 10% for 15 seconds.","rankDescriptions":["Melee critical strikes now have a 50% chance to reset the cooldown of Hammer of the Law. Casting Standard of Valiance now increases your attack power by 10% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12710","treeId":"coa-guardian-7","index":12710,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/custom_warriorskill_03_border.png","maxRank":1,"name":"High Guard","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-29969","treeId":"coa-guardian-7","index":29969,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/5_warriorskill16_border.png","maxRank":1,"name":"Paragon","description":"Blocking an attack grants you a stack of Paragon for 10 seconds. Can only occur once every 0.5 sec. At 10 stacks, your Heavy Blow transforms into Paragon Smash for 10 seconds.Paragon Smash (Damage)Deals 144 + 37% AP Physical damage to all nearby enemies. Increases your chance to block by 10% and each block reduces the cooldown of Brace by -2 sec. Lasts for 5 blocks or 10 seconds. Scales with modifiers to Heavy Blow. Casting Heavy Blow instantly grants 3 stacks of this effect.","rankDescriptions":["Blocking an attack grants you a stack of Paragon for 10 seconds. Can only occur once every 0.5 sec. At 10 stacks, your Heavy Blow transforms into Paragon Smash for 10 seconds.Paragon Smash (Damage)Deals 144 + 37% AP Physical damage to all nearby enemies. Increases your chance to block by 10% and each block reduces the cooldown of Brace by -2 sec. Lasts for 5 blocks or 10 seconds. Scales with modifiers to Heavy Blow. Casting Heavy Blow instantly grants 3 stacks of this effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30434","treeId":"coa-guardian-7","index":30434,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/shield_draenorcrafted_d_02_a_alliance.png","maxRank":1,"name":"Bastion","description":"Raise your shield and lead your allies within 12 yds, reducing their damage taken by -40% for 10 seconds.","rankDescriptions":["Raise your shield and lead your allies within 12 yds, reducing their damage taken by -40% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29992","treeId":"coa-guardian-7","index":29992,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_hammer_10.png","maxRank":1,"name":"Shieldlord’s Strength","description":"You may now use two-handed Maces and can now equip two-handed Maces with a shield. Your Heavy Blow and Hammer of the Law now gains damage scaling with your Stamina and your Stamina is increased by 15%.","rankDescriptions":["You may now use two-handed Maces and can now equip two-handed Maces with a shield. Your Heavy Blow and Hammer of the Law now gains damage scaling with your Stamina and your Stamina is increased by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31171","treeId":"coa-guardian-48","index":31171,"prerequisiteId":"coa-entry-4021","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4021","requiredRank":1},{"talentId":"coa-entry-29796","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/ability_maldraxxus_warriorplantbanner.png","maxRank":1,"name":"Inspiring Leader","description":"You pledge to inspire your allies in the midst of battle, transforming your Pulverize and your Broad Sweep into Ballads.","rankDescriptions":["You pledge to inspire your allies in the midst of battle, transforming your Pulverize and your Broad Sweep into Ballads."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4021","treeId":"coa-guardian-48","index":4021,"prerequisiteId":"coa-entry-29796","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29796","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/achievement_guildperk_everyones_a_hero.png","maxRank":1,"name":"Tempo","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-6432","treeId":"coa-guardian-48","index":6432,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/achievement_pvp_legion08.png","maxRank":2,"name":"A Hero's Tale","description":"Increases your Energy regeneration by 20%.","rankDescriptions":["Increases your Energy regeneration by 10%.","Increases your Energy regeneration by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6454","treeId":"coa-guardian-48","index":6454,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/ability_warrior_victoryrush.png","maxRank":2,"name":"Leading the March","description":"Increases your attack power and total Armor by 8%.","rankDescriptions":["Increases your attack power and total Armor by 4%.","Increases your attack power and total Armor by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4836","treeId":"coa-guardian-48","index":4836,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/inv_misc_drum_01.png","maxRank":1,"name":"Strength In Unison","description":"Increases your melee haste by 1% for each ally within 20 yds, up to a maximum of 20%.","rankDescriptions":["Increases your melee haste by 1% for each ally within 20 yds, up to a maximum of 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34433","treeId":"coa-guardian-48","index":34433,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/spells/novart_passivemastery_(4)_border.png","maxRank":1,"name":"Veteran of the Third War","description":"You now restore 3% of your base health whenever you block an attack.","rankDescriptions":["You now restore 3% of your base health whenever you block an attack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31362","treeId":"coa-guardian-48","index":31362,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":3,"icon":"/assets/ui/spells/crest_warrior.png","maxRank":1,"name":"Dragonslayer","description":"Increases your Agility by 10%.","rankDescriptions":["Increases your Agility by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6428","treeId":"coa-guardian-48","index":6428,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/_d3wrathoftheberserker.png","maxRank":1,"name":"Into The Fray","description":"Triggering a Sound of War now grants you an additional auto attack on your next swing.","rankDescriptions":["Triggering a Sound of War now grants you an additional auto attack on your next swing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13616","treeId":"coa-guardian-48","index":13616,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_holy_spellwarding.png","maxRank":1,"name":"Spirit of Battle","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.","rankDescriptions":["Increases chance to hit with all spells and attacks by 1% for you and party and raid members. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":false},{"id":"coa-entry-29216","treeId":"coa-guardian-48","index":29216,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/demoralizing_banner.png","maxRank":1,"name":"Banner of Conquest","description":"Attach a Banner of Conquest to your back, increasing the critical strike chance of party and raid members within 40 yds by 5%. Does not stack with similar effects.","rankDescriptions":["Attach a Banner of Conquest to your back, increasing the critical strike chance of party and raid members within 40 yds by 5%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":false},{"id":"coa-entry-30829","treeId":"coa-guardian-48","index":30829,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/inv_inscription_scrollofwisdom_01.png","maxRank":1,"name":"Battle Bard","description":"Increases the damage of your Ballads by 15%.","rankDescriptions":["Increases the damage of your Ballads by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31361","treeId":"coa-guardian-48","index":31361,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/spell_animabastion_wave.png","maxRank":1,"name":"Soundwave","description":"Increases the damage dealt by Sound of War by 15%.","rankDescriptions":["Increases the damage dealt by Sound of War by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31141","treeId":"coa-guardian-48","index":31141,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/inv_axe_2h_undeadguitar_c_01.png","maxRank":1,"name":"Harrowing Melody","description":"Play a harrowing melody, dealing 191 + 42% AP Magic damage and reducing all healing received by enemies within 10 yds by -30% for 10 seconds. In addition, your next Ballad within 10 seconds is free of cost and deals 50% increased damage.","rankDescriptions":["Play a harrowing melody, dealing 191 + 42% AP Magic damage and reducing all healing received by enemies within 10 yds by -30% for 10 seconds. In addition, your next Ballad within 10 seconds is free of cost and deals 50% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29797","treeId":"coa-guardian-48","index":29797,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_misc_drum_03.png","maxRank":1,"name":"Hero's March","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34430","treeId":"coa-guardian-48","index":34430,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/ability_pvp_gladiatormedallion.png","maxRank":1,"name":"Liberation","description":"Instantly breaks an ally free of any stun, fear, or polymorph effects and grants immunity to such effects for 5 seconds. Dispels 2 harmful magic effects from the ally. Usable while stunned, feared, or polymorphed.","rankDescriptions":["Instantly breaks an ally free of any stun, fear, or polymorph effects and grants immunity to such effects for 5 seconds. Dispels 2 harmful magic effects from the ally. Usable while stunned, feared, or polymorphed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11214","treeId":"coa-guardian-48","index":11214,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_misc_flute_01.png","maxRank":1,"name":"Knight's Song","description":"Casting a Ballad now grants allies Knight's Song.Knight's SongEmanate an aura for 10 seconds that increases the Armor of party and raid members by 400. Does not stack with similar effects.","rankDescriptions":["Casting a Ballad now grants allies Knight's Song.Knight's SongEmanate an aura for 10 seconds that increases the Armor of party and raid members by 400. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-29214","treeId":"coa-guardian-48","index":29214,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_banner_03.png","maxRank":1,"name":"Banner of Swiftness","description":"Attach a Banner of Swiftness to your back, increasing the haste of party and raid members within 40 yds by 5%. Does not stack with similar effects.","rankDescriptions":["Attach a Banner of Swiftness to your back, increasing the haste of party and raid members within 40 yds by 5%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-31359","treeId":"coa-guardian-48","index":31359,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/ability_racial_makecamp.png","maxRank":1,"name":"Minstrel","description":"Casting a Ballad now increases your haste by 3%, stacking 3 times, for 8 seconds.","rankDescriptions":["Casting a Ballad now increases your haste by 3%, stacking 3 times, for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7040","treeId":"coa-guardian-48","index":7040,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_misc_flute_01.png","maxRank":1,"name":"Pied Piper","description":"Triggering a Sound of War now increases damage of your next Ram by 20% for 15 seconds.","rankDescriptions":["Triggering a Sound of War now increases damage of your next Ram by 20% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11040","treeId":"coa-guardian-48","index":11040,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_warrior_intervene.png","maxRank":1,"name":"Frontliner","description":"Triggering a Sound of War now increases your movement speed by 40% and allies' within 20 yds movement speed by 20% for 2 seconds.","rankDescriptions":["Triggering a Sound of War now increases your movement speed by 40% and allies' within 20 yds movement speed by 20% for 2 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12123","treeId":"coa-guardian-48","index":12123,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/pvp_scroll_1.png","maxRank":1,"name":"Bard's Manuscript","description":"Reduces the cooldown of Hero's March by -60 sec.","rankDescriptions":["Reduces the cooldown of Hero's March by -60 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34435","treeId":"coa-guardian-48","index":34435,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/inv_misc_notescript1c.png","maxRank":1,"name":"Warbringer's Manuscript","description":"Critical strikes now reduce the cooldown of Hero's March by -1 sec.","rankDescriptions":["Critical strikes now reduce the cooldown of Hero's March by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1789","treeId":"coa-guardian-48","index":1789,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/skill_icon_skill121_border.png","maxRank":1,"name":"Reverberations","description":"Casting Ram now causes your next 3 melee attacks to deal an additional 30 + 10% AP Magic damage for 10 seconds.","rankDescriptions":["Casting Ram now causes your next 3 melee attacks to deal an additional 30 + 10% AP Magic damage for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9279","treeId":"coa-guardian-48","index":9279,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/spell_fire_firearmor.png","maxRank":1,"name":"Show of Force","description":"Dealing damage with Ram now dispels 1 magic effect from the target.","rankDescriptions":["Dealing damage with Ram now dispels 1 magic effect from the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30098","treeId":"coa-guardian-48","index":30098,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/ability_warrior_battleshout.png","maxRank":1,"name":"Powerful Voice","description":"Increases the critical strike chance of your Ballads by 10%.","rankDescriptions":["Increases the critical strike chance of your Ballads by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30825","treeId":"coa-guardian-48","index":30825,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/novart_misc_(15)_border.png","maxRank":1,"name":"Little Drummer","description":"Allies within 20 yds of you now gain 20% chance to resist curses.","rankDescriptions":["Allies within 20 yds of you now gain 20% chance to resist curses."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30145","treeId":"coa-guardian-48","index":30145,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/custom_warriorskill_35_border.png","maxRank":1,"name":"Elegant Combat","description":"Casting a Ballad has a 20% chance to remove the cost of the next Ram and increase its critical chance by 10%.","rankDescriptions":["Casting a Ballad has a 20% chance to remove the cost of the next Ram and increase its critical chance by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29798","treeId":"coa-guardian-48","index":29798,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/achievement_bg_captureflag_wsg.png","maxRank":2,"name":"Banner Boy","description":"Increases your haste by 10% and the movement speed granted by Line Formation by 15%.","rankDescriptions":["Increases your haste by 5% and the movement speed granted by Line Formation by 8%.","Increases your haste by 10% and the movement speed granted by Line Formation by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7836","treeId":"coa-guardian-48","index":7836,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/skill_icon_skill29_border.png","maxRank":1,"name":"Song of Steel","description":"Boost the morale of party and raid members, increasing their attack or spell power by 95 for 15 seconds. Does not stack with similar effects.","rankDescriptions":["Boost the morale of party and raid members, increasing their attack or spell power by 95 for 15 seconds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-10836","treeId":"coa-guardian-48","index":10836,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/5_music_border.png","maxRank":1,"name":"Dissonance","description":"Damage dealt by Sound of War now has a 25% chance to reduce enemies' resistances by 75 and increases their Magic damage taken by -2% for 8 seconds.","rankDescriptions":["Damage dealt by Sound of War now has a 25% chance to reduce enemies' resistances by 75 and increases their Magic damage taken by -2% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-5825","treeId":"coa-guardian-48","index":5825,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/spell_nature_reincarnation.png","maxRank":1,"name":"War's Muse","description":"Increases your critical damage by 20%.","rankDescriptions":["Increases your critical damage by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9450","treeId":"coa-guardian-48","index":9450,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_holy_heroism.png","maxRank":1,"name":"Stand Your Ground!","description":"While standing in your Standard of Valiance, your allies' Physical damage taken is reduced by -10%.","rankDescriptions":["While standing in your Standard of Valiance, your allies' Physical damage taken is reduced by -10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31315","treeId":"coa-guardian-48","index":31315,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/achievement_bg_masterofallbgs.png","maxRank":1,"name":"You Shall Not Fall!","description":"While standing in your Standard of Valiance, allies have a -20% increased chance to resist stun and grip effects.","rankDescriptions":["While standing in your Standard of Valiance, allies have a -20% increased chance to resist stun and grip effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11797","treeId":"coa-guardian-48","index":11797,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_archaeology_70_tauren_drum.png","maxRank":1,"name":"Battle Drums","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34434","treeId":"coa-guardian-48","index":34434,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_nature_invisibilty.png","maxRank":1,"name":"Fearless","description":"Each nearby enemy within 10 yds now reduces your damage taken by 1%, up to a maximum of 10%.","rankDescriptions":["Each nearby enemy within 10 yds now reduces your damage taken by 1%, up to a maximum of 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34436","treeId":"coa-guardian-48","index":34436,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/inv_blacksmith_leystonehoofplates_blue.png","maxRank":1,"name":"Cavalry Tactics","description":"Reduces the cooldown of your Cavalry Charge by -30 sec and it now prevents root and slow effects on allies.","rankDescriptions":["Reduces the cooldown of your Cavalry Charge by -30 sec and it now prevents root and slow effects on allies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31364","treeId":"coa-guardian-48","index":31364,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/ability_warrior_rallyingcry.png","maxRank":1,"name":"Legion Commander","description":"The damage increase of Harrowing Melody now affects an additional 2 Ballad casts and guarantees them to critically strike and deal 100% more damage.","rankDescriptions":["The damage increase of Harrowing Melody now affects an additional 2 Ballad casts and guarantees them to critically strike and deal 100% more damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29432","treeId":"coa-guardian-48","index":29432,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/spells/achievement_dungeon_lordstormsong.png","maxRank":1,"name":"Echoes of War","description":"Triggering a Sound of War now grants Echoes of War to nearby allies for 8 seconds.Echoes of WarNext direct ability or spell deals 15% of their damage as additional Magic Damage.","rankDescriptions":["Triggering a Sound of War now grants Echoes of War to nearby allies for 8 seconds.Echoes of WarNext direct ability or spell deals 15% of their damage as additional Magic Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30097","treeId":"coa-guardian-48","index":30097,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":9,"icon":"/assets/ui/spells/achievement_pvp_legion04.png","maxRank":1,"name":"Song of Battle","description":"Every 2 sec you emanate Sounds of War, dealing 71 + 12.74% AP Physical damage to all enemies within 8 yds. Lasts 15 seconds. Upon expiration, stun all enemies within 8 yds for 4 seconds.","rankDescriptions":["Every 2 sec you emanate Sounds of War, dealing 71 + 12.74% AP Physical damage to all enemies within 8 yds. Lasts 15 seconds. Upon expiration, stun all enemies within 8 yds for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7309","treeId":"coa-guardian-48","index":7309,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/nhi_magicbanner_border.png","maxRank":1,"name":"Bannerman","description":"While affected by your Banner of Swiftness or Banner of Conquest, the initial damage dealt by your Standard of Valiance now deals 150% more damage.","rankDescriptions":["While affected by your Banner of Swiftness or Banner of Conquest, the initial damage dealt by your Standard of Valiance now deals 150% more damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11836","treeId":"coa-guardian-48","index":11836,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/_human_07.png","maxRank":1,"name":"Inspiring Presence","description":"Emanate an aura around you for 15 seconds, causing allied players within 100 yds to deal 35% AP additional damage as Holy damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute.","rankDescriptions":["Emanate an aura around you for 15 seconds, causing allied players within 100 yds to deal 35% AP additional damage as Holy damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-11837","treeId":"coa-guardian-48","index":11837,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_paladin_clarityofpurpose.png","maxRank":1,"name":"Champion's Presence","description":"Enrage all nearby allies, increasing their haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes.","rankDescriptions":["Enrage all nearby allies, increasing their haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-31316","treeId":"coa-guardian-48","index":31316,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/ability_priest_heavanlyvoice.png","maxRank":1,"name":"Voice of an Angel","description":"Sing a beautiful song, instantly resetting the cooldown of Liberation, Harrowing Melody, and Hero's March.","rankDescriptions":["Sing a beautiful song, instantly resetting the cooldown of Liberation, Harrowing Melody, and Hero's March."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31358","treeId":"coa-guardian-48","index":31358,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_leatherworking_drums.png","maxRank":1,"name":"War Drums","description":"Adds 5% to the value of Echoes of War. In addition, performing a Sound of War now has a 40% chance to echo, striking an additional time after 0.5 sec. Can only occur once per sec.","rankDescriptions":["Adds 5% to the value of Echoes of War. In addition, performing a Sound of War now has a 40% chance to echo, striking an additional time after 0.5 sec. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29433","treeId":"coa-guardian-48","index":29433,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/achievement_pvp_a_06.png","maxRank":1,"name":"Field Commander","description":"Placing a Standard causes your next Song of Steel to unleash an additional unique effect.SpellwardingIncreases the magic resistance of party and raid members within 100 yds by 20 for 10 seconds.MightReduces the Armor of enemies within 100 yds by -15% for 10 seconds.RallyingIncreases the movement speed of party and raid members within 100 yds by 15% for 10 seconds.RecoveryReduces the melee and ranged attack speed of enemies within 100 yds by -10% for 10 seconds.","rankDescriptions":["Placing a Standard causes your next Song of Steel to unleash an additional unique effect.SpellwardingIncreases the magic resistance of party and raid members within 100 yds by 20 for 10 seconds.MightReduces the Armor of enemies within 100 yds by -15% for 10 seconds.RallyingIncreases the movement speed of party and raid members within 100 yds by 15% for 10 seconds.RecoveryReduces the melee and ranged attack speed of enemies within 100 yds by -10% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31170","treeId":"coa-guardian-49","index":31170,"prerequisiteId":"coa-entry-4020","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4020","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/custom_warriorskill_02_border.png","maxRank":1,"name":"Centurion Strike","description":"Stab an enemy, dealing 110% Weapon Damage plus an additional effect based on your weapon. Sword: Triggers 3 additional auto attacks. Axe: Guaranteed to critically strike for 25% increased damage. Mace: Ignores -50% of your target's Armor. Polearm: Stabs the target and enemies behind them an additional time.","rankDescriptions":["Stab an enemy, dealing 110% Weapon Damage plus an additional effect based on your weapon. Sword: Triggers 3 additional auto attacks. Axe: Guaranteed to critically strike for 25% increased damage. Mace: Ignores -50% of your target's Armor. Polearm: Stabs the target and enemies behind them an additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4020","treeId":"coa-guardian-49","index":4020,"prerequisiteId":"coa-entry-29430","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29430","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0001s_0000_warrior_border.png","maxRank":1,"name":"Glory","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":10,"isPassive":true},{"id":"coa-entry-4410","treeId":"coa-guardian-49","index":4410,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/inv_helm_crown_c_01_silver.png","maxRank":2,"name":"Might","description":"Increases your attack power by 10%.","rankDescriptions":["Increases your attack power by 5%.","Increases your attack power by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29426","treeId":"coa-guardian-49","index":29426,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/ability_warrior_shieldbreak.png","maxRank":2,"name":"Legionnaire","description":"Increases the critical damage of Centurion Strike and Reprisal by 20%.","rankDescriptions":["Increases the critical damage of Centurion Strike and Reprisal by 10%.","Increases the critical damage of Centurion Strike and Reprisal by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30000","treeId":"coa-guardian-49","index":30000,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/spells/inv_sword_40.png","maxRank":3,"name":"Sword Training","description":"While a sword is equipped, your melee haste is increased by 30%.","rankDescriptions":["While a sword is equipped, your melee haste is increased by 10%.","While a sword is equipped, your melee haste is increased by 20%.","While a sword is equipped, your melee haste is increased by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29661","treeId":"coa-guardian-49","index":29661,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/custom_sword_b_07_border.png","maxRank":1,"name":"Supremacy","description":"Casting Centurion Strike now refreshes a charge of Reprisal.","rankDescriptions":["Casting Centurion Strike now refreshes a charge of Reprisal."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5433","treeId":"coa-guardian-49","index":5433,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":3,"icon":"/assets/ui/spells/inv_axe_12.png","maxRank":3,"name":"Axe Training","description":"While an axe is equipped, your critical strike chance is increased by 6% and critical damage increased by 15%.","rankDescriptions":["While an axe is equipped, your critical strike chance is increased by 2% and critical damage increased by 5%.","While an axe is equipped, your critical strike chance is increased by 4% and critical damage increased by 10%.","While an axe is equipped, your critical strike chance is increased by 6% and critical damage increased by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4220","treeId":"coa-guardian-49","index":4220,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_shield_20.png","maxRank":1,"name":"Shield Training","description":"Level 20 Passive Increases your block rating by 10% of your Strength.","rankDescriptions":["Level 20 Passive Increases your block rating by 10% of your Strength."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7306","treeId":"coa-guardian-49","index":7306,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/gladiatorspearguy.png","maxRank":3,"name":"Polearm Training","description":"Allows you to wield polearms and to wield them with a shield equipped. While a polearm is equipped, your melee abilities have 5 yds increased range.","rankDescriptions":["Allows you to wield polearms and to wield them with a shield equipped. While a polearm is equipped, your melee abilities have 2 yds increased range.","Allows you to wield polearms and to wield them with a shield equipped. While a polearm is equipped, your melee abilities have 3 yds increased range.","Allows you to wield polearms and to wield them with a shield equipped. While a polearm is equipped, your melee abilities have 5 yds increased range."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34458","treeId":"coa-guardian-49","index":34458,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/inv_relics_totemofrage.png","maxRank":1,"name":"Upper Hand","description":"Your melee auto attacks now have a 20% chance to strike 2 additional times.","rankDescriptions":["Your melee auto attacks now have a 20% chance to strike 2 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5349","treeId":"coa-guardian-49","index":5349,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/5_engineerskill39_border.png","maxRank":1,"name":"Built Different","description":"Increases your Strength and Stamina by 4%.","rankDescriptions":["Increases your Strength and Stamina by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34455","treeId":"coa-guardian-49","index":34455,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_mace_05.png","maxRank":3,"name":"Mace Training","description":"While a mace is equipped, your armor penetration is increased by 25%.","rankDescriptions":["While a mace is equipped, your armor penetration is increased by 8%.","While a mace is equipped, your armor penetration is increased by 16%.","While a mace is equipped, your armor penetration is increased by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34410","treeId":"coa-guardian-49","index":34410,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_sword_1h_artifactskywall_d_06dual.png","maxRank":1,"name":"Double Duty","description":"Increases your hit chance by 5% and expertise by 4.","rankDescriptions":["Increases your hit chance by 5% and expertise by 4."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7038","treeId":"coa-guardian-49","index":7038,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_warrior_improveddisciplines.png","maxRank":1,"name":"Champion","description":"Your Centurion Strike now extends the duration of Raise Shield on you by 3 sec.","rankDescriptions":["Your Centurion Strike now extends the duration of Raise Shield on you by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6433","treeId":"coa-guardian-49","index":6433,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_mace_124.png","maxRank":2,"name":"Crashing Force","description":"Increases the damage of your Centurion Strike and Reprisal by 30%.","rankDescriptions":["Increases the damage of your Centurion Strike and Reprisal by 15%.","Increases the damage of your Centurion Strike and Reprisal by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12224","treeId":"coa-guardian-49","index":12224,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/5_assassinskill06_border.png","maxRank":1,"name":"Experienced Combatant","description":"Level 30 Passive Increases your attack power by 20% of your Strength.","rankDescriptions":["Level 30 Passive Increases your attack power by 20% of your Strength."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7307","treeId":"coa-guardian-49","index":7307,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/_d3ancientspear.png","maxRank":1,"name":"Spear Throw","description":"Throw a massive spear at an enemy, dealing 45 + 35% AP Physical damage, reducing the effectiveness of any healing by -50% for 10 seconds.","rankDescriptions":["Throw a massive spear at an enemy, dealing 45 + 35% AP Physical damage, reducing the effectiveness of any healing by -50% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6431","treeId":"coa-guardian-49","index":6431,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/achievement_bg_killxenemies_generalsroom.png","maxRank":2,"name":"Tactical Combat","description":"Increases your block value by 15% and chance to block by 4%.","rankDescriptions":["Increases your block value by 8% and chance to block by 2%.","Increases your block value by 15% and chance to block by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34450","treeId":"coa-guardian-49","index":34450,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/achievement_guildperk_everyones_a_hero.png","maxRank":1,"name":"Heroic Effort","description":"Casting Centurion Strike now grants 1 stack of Glory.","rankDescriptions":["Casting Centurion Strike now grants 1 stack of Glory."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30003","treeId":"coa-guardian-49","index":30003,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/novart_physical_ability_(46)_border.png","maxRank":1,"name":"No Escape","description":"Ram now reduces the cooldown of your Battle Rush by -10 sec when used against a rooted enemy.","rankDescriptions":["Ram now reduces the cooldown of your Battle Rush by -10 sec when used against a rooted enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34453","treeId":"coa-guardian-49","index":34453,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/ability_warrior_criticalblock.png","maxRank":1,"name":"Bulwark Rush","description":"Casting Battle Rush increases your block rating by 25% of Strength for 6 seconds.","rankDescriptions":["Casting Battle Rush increases your block rating by 25% of Strength for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6434","treeId":"coa-guardian-49","index":6434,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/custom_iron_hl_b_border.png","maxRank":1,"name":"No Retreating!","description":"While in combat, every 2 sec, increase the range and Energy cost of your next Spear Throw by 1 and its damage dealt by 3%, stacking up to 15 times.","rankDescriptions":["While in combat, every 2 sec, increase the range and Energy cost of your next Spear Throw by 1 and its damage dealt by 3%, stacking up to 15 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6430","treeId":"coa-guardian-49","index":6430,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_sword_35.png","maxRank":1,"name":"Waste No Movement","description":"Reduces the Energy cost of Broad Sweep, Spear Throw, and Centurion Strike by -5.","rankDescriptions":["Reduces the Energy cost of Broad Sweep, Spear Throw, and Centurion Strike by -5."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4123","treeId":"coa-guardian-49","index":4123,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/novart_shield_(8)_border.png","maxRank":1,"name":"Overwhelming Presence","description":"Increases the attack power of all party and raid members 5%. Does not stack with similar effects. In addition, increases your Agility by 10%.","rankDescriptions":["Increases the attack power of all party and raid members 5%. Does not stack with similar effects. In addition, increases your Agility by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6989","treeId":"coa-guardian-49","index":6989,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_warrior_shieldbash.png","maxRank":1,"name":"Momentum","description":"Melee damage dealt now reduces the cooldown of your Chivlary by -2 sec.","rankDescriptions":["Melee damage dealt now reduces the cooldown of your Chivlary by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6990","treeId":"coa-guardian-49","index":6990,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0007s_0000_warrior_border.png","maxRank":1,"name":"Myrmidon","description":"Increases the damage of Ram and Broad Sweep by 25%.","rankDescriptions":["Increases the damage of Ram and Broad Sweep by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4224","treeId":"coa-guardian-49","index":4224,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/ability_warrior_victoryrush.png","maxRank":1,"name":"Shield Combat","description":"Level 40 Passive Casting Ram and Pulverize now increases your attack power based on your block rating for 6 seconds.","rankDescriptions":["Level 40 Passive Casting Ram and Pulverize now increases your attack power based on your block rating for 6 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-4654","treeId":"coa-guardian-49","index":4654,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/ability_warrior_challange.png","maxRank":1,"name":"Pinned Down!","description":"Damage dealt by Spear Throw now refreshes the duration of Net Throw on your target.","rankDescriptions":["Damage dealt by Spear Throw now refreshes the duration of Net Throw on your target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31354","treeId":"coa-guardian-49","index":31354,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/custom_net_border.png","maxRank":1,"name":"Clinch Brawler","description":"Centurion Strike is now guaranteed to critically strike against enemies affected by Net Throw.","rankDescriptions":["Centurion Strike is now guaranteed to critically strike against enemies affected by Net Throw."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6547","treeId":"coa-guardian-49","index":6547,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_mace_2h_draenorcrafted_d_01_b_alliance.png","maxRank":1,"name":"Deadly Blow","description":"Your Centurion Strike and Broad Sweep now bleed an additional 20% of the damage dealt over 2 seconds.","rankDescriptions":["Your Centurion Strike and Broad Sweep now bleed an additional 20% of the damage dealt over 2 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29998","treeId":"coa-guardian-49","index":29998,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/ability_warrior_warbringer.png","maxRank":1,"name":"Retiarius","description":"Increases your maximum Energy by 25.","rankDescriptions":["Increases your maximum Energy by 25."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30528","treeId":"coa-guardian-49","index":30528,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/_d3groundstomp.png","maxRank":1,"name":"Close Combat","description":"Removes the shared cooldown of your Standards and reduces the cooldown of Guard by -10 sec.","rankDescriptions":["Removes the shared cooldown of your Standards and reduces the cooldown of Guard by -10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31352","treeId":"coa-guardian-49","index":31352,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_racial_avatar.png","maxRank":1,"name":"Heroism","description":"Whenever you reach 3 stacks of Glory or 20 stacks of Favor, your next 2 Pulverizes or Broad Sweeps within 10 seconds are free of cost.","rankDescriptions":["Whenever you reach 3 stacks of Glory or 20 stacks of Favor, your next 2 Pulverizes or Broad Sweeps within 10 seconds are free of cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6429","treeId":"coa-guardian-49","index":6429,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_warrior_unrelentingassault.png","maxRank":1,"name":"One-Handed Mastery","description":"Increases your damage dealt by 10% while a one-handed weapon is equipped.","rankDescriptions":["Increases your damage dealt by 10% while a one-handed weapon is equipped."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4225","treeId":"coa-guardian-49","index":4225,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/warrior_talent_icon_angermanagement.png","maxRank":1,"name":"Favor","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-31285","treeId":"coa-guardian-49","index":31285,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/achievement_raregarrisonquests_x.png","maxRank":1,"name":"Calculated Strike","description":"Your Reprisal, Broad Sweep, and Spear Throw now deal an additional 2% Weapon Damage for each Energy point you have upon casting it.","rankDescriptions":["Your Reprisal, Broad Sweep, and Spear Throw now deal an additional 2% Weapon Damage for each Energy point you have upon casting it."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30019","treeId":"coa-guardian-49","index":30019,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0001s_0000_warrior_border.png","maxRank":1,"name":"Final Verdict","description":"Give the final verdict to your target, dealing 1195 + 100% AP Physical damage and healing you for 15% of your maximum health. Only usable on enemies below 20% health. Killing blows reset the cooldown of this ability.","rankDescriptions":["Give the final verdict to your target, dealing 1195 + 100% AP Physical damage and healing you for 15% of your maximum health. Only usable on enemies below 20% health. Killing blows reset the cooldown of this ability."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29999","treeId":"coa-guardian-49","index":29999,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/ability_kilruk_reave.png","maxRank":1,"name":"Earthsplitter","description":"Casting Broad Sweep now increases the amount of enemies struck by your next Broad Sweep by 1 and reduces its Energy cost by -10% for 6 seconds, stacking 3 times.","rankDescriptions":["Casting Broad Sweep now increases the amount of enemies struck by your next Broad Sweep by 1 and reduces its Energy cost by -10% for 6 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29430","treeId":"coa-guardian-87","index":29430,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/spells/ability_ensnare.png","maxRank":1,"name":"Net Throw","description":"Toss a weighted net at an enemy that roots them for 4 seconds. While active, the target cannot dodge attacks.","rankDescriptions":["Toss a weighted net at an enemy that roots them for 4 seconds. While active, the target cannot dodge attacks."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29796","treeId":"coa-guardian-87","index":29796,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/standard_valiance.png","maxRank":1,"name":"Standard of Rallying","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30057","treeId":"coa-guardian-87","index":30057,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":1,"icon":"/assets/ui/spells/ability_warrior_safeguard.png","maxRank":1,"name":"Brace","description":"Fortify your defenses, reducing all damage taken by -50% and gaining immunity to stun effects for 10 seconds.","rankDescriptions":["Fortify your defenses, reducing all damage taken by -50% and gaining immunity to stun effects for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6362","treeId":"coa-guardian-87","index":6362,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/spells/custom_sharp_blade_b_border.png","maxRank":1,"name":"Knightly Demeanor","description":"Your attack power is increased by 1 for every 50 Armor you have.","rankDescriptions":["Your attack power is increased by 1 for every 50 Armor you have."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6455","treeId":"coa-guardian-87","index":6455,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_chest_plate04.png","maxRank":2,"name":"Gallant","description":"Increases your Strength by 8% and expertise by 4.","rankDescriptions":["Increases your Strength by 4% and expertise by 2.","Increases your Strength by 8% and expertise by 4."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34427","treeId":"coa-guardian-87","index":34427,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":2,"icon":"/assets/ui/spells/novart_shield_(3)_border.png","maxRank":1,"name":"Sturdy","description":"Increases your maximum health by 6%.","rankDescriptions":["Increases your maximum health by 6%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30433","treeId":"coa-guardian-87","index":30433,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/spells/hunter_pvp_trackersnet.png","maxRank":1,"name":"Light Nets","description":"Increases the range of your Net Throw by 15 yds.","rankDescriptions":["Increases the range of your Net Throw by 15 yds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6364","treeId":"coa-guardian-87","index":6364,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/custom_t_burningeyes_border.png","maxRank":1,"name":"Guardbreaker","description":"Casting Pulverize or Ram now has a 20% chance to reset the cooldown of Ram.","rankDescriptions":["Casting Pulverize or Ram now has a 20% chance to reset the cooldown of Ram."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6456","treeId":"coa-guardian-87","index":6456,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/novart_weapon_(2)_border.png","maxRank":1,"name":"Valiant Effort","description":"Your auto attacks now have a 15% chance to allow the use of Reprisal as if you had recently blocked an attack.","rankDescriptions":["Your auto attacks now have a 15% chance to allow the use of Reprisal as if you had recently blocked an attack."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6818","treeId":"coa-guardian-87","index":6818,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":3,"icon":"/assets/ui/spells/warrior_talent_icon_gladiatorsresolve.png","maxRank":1,"name":"Resolve","description":"Increases the duration of your Raise Shield by 1 sec.","rankDescriptions":["Increases the duration of your Raise Shield by 1 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34422","treeId":"coa-guardian-87","index":34422,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":3,"icon":"/assets/ui/spells/ability_warrior_shieldreflection.png","maxRank":1,"name":"Deflector","description":"Reduces the cooldown of your Raise Shield by -5 sec and reduces its Energy cost by -10%.","rankDescriptions":["Reduces the cooldown of your Raise Shield by -5 sec and reduces its Energy cost by -10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7310","treeId":"coa-guardian-87","index":7310,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/achievement_zone_bladesedgemtns_01.png","maxRank":1,"name":"Glorious Arena","description":"Create a 10 yd ring beneath you for 15 seconds. Enemies who stand inside will gain Peril every 1 sec. PerilEach stack can be consumed by Pulverize to deal an additional 10% AP Physical Damage and reduce the cooldown of Glorious Arena by 10%. Upon reaching 5 stacks, the stacks are instantly consumed to stun the enemy for 5 seconds.","rankDescriptions":["Create a 10 yd ring beneath you for 15 seconds. Enemies who stand inside will gain Peril every 1 sec. PerilEach stack can be consumed by Pulverize to deal an additional 10% AP Physical Damage and reduce the cooldown of Glorious Arena by 10%. Upon reaching 5 stacks, the stacks are instantly consumed to stun the enemy for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6817","treeId":"coa-guardian-87","index":6817,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/5_archerskill20_border.png","maxRank":1,"name":"Press the Line!","description":"While Line Formation is active, your movement speed cannot be reduced below 115%, but its cost is increased by 30 Energy.","rankDescriptions":["While Line Formation is active, your movement speed cannot be reduced below 115%, but its cost is increased by 30 Energy."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29972","treeId":"coa-guardian-87","index":29972,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/5_warriorskill18_border.png","maxRank":1,"name":"Shrug It Off","description":"Instantly escape the effects of any root or slow and become immune to movement slowing effects for 3 seconds.","rankDescriptions":["Instantly escape the effects of any root or slow and become immune to movement slowing effects for 3 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29639","treeId":"coa-guardian-87","index":29639,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/ability_defend.png","maxRank":2,"name":"Shield Wall","description":"Increases your Armor contribution from your shield by 40%.","rankDescriptions":["Increases your Armor contribution from your shield by 20%.","Increases your Armor contribution from your shield by 40%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7786","treeId":"coa-guardian-87","index":7786,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/inv_axe_2h_war_b_02_hd.png","maxRank":1,"name":"Lord of the Arena","description":"Reduces the Energy cost of Pulverize and Broad Sweep by -5.","rankDescriptions":["Reduces the Energy cost of Pulverize and Broad Sweep by -5."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29971","treeId":"coa-guardian-87","index":29971,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/_d3furiouscharge.png","maxRank":1,"name":"Unstoppable","description":"Reduces the cooldown of Battle Rush by -5 sec and Advance by -30 sec.","rankDescriptions":["Reduces the cooldown of Battle Rush by -5 sec and Advance by -30 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30316","treeId":"coa-guardian-87","index":30316,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/ability_paladin_touchedbylight.png","maxRank":1,"name":"Heroic Deeds","description":"Increases the reputation gains of your allies within 30 yds by 5% and reduces damage you take by -3%.","rankDescriptions":["Increases the reputation gains of your allies within 30 yds by 5% and reduces damage you take by -3%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6363","treeId":"coa-guardian-87","index":6363,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0003s_0000_fire_border.png","maxRank":1,"name":"Reflective Shield","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7320","treeId":"coa-guardian-87","index":7320,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_sword_1h_artifactmagnar_d_02.png","maxRank":1,"name":"Bloodletter","description":"Avoiding an attack now reduces the remaining cooldown of Glorious Arena by 10%. Can only occur once per sec.","rankDescriptions":["Avoiding an attack now reduces the remaining cooldown of Glorious Arena by 10%. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34415","treeId":"coa-guardian-87","index":34415,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/ability_warrior_challange.png","maxRank":1,"name":"Myrmidon","description":"Removes the Energy cost of Glorious Arena and increases its damage dealt by 25%.","rankDescriptions":["Removes the Energy cost of Glorious Arena and increases its damage dealt by 25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34407","treeId":"coa-guardian-87","index":34407,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_warrior_shockwave.png","maxRank":1,"name":"Valiance","description":"Reprisal now regenerates an additional 20 Energy.","rankDescriptions":["Reprisal now regenerates an additional 20 Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29431","treeId":"coa-guardian-87","index":29431,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/counterstanceguardian.png","maxRank":1,"name":"Counter Stance","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29429","treeId":"coa-guardian-87","index":29429,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_banner_02.png","maxRank":1,"name":"Standard Bearer","description":"Increases the range of Standards by 10 yds and increases the effectiveness of your Honor by 20%.","rankDescriptions":["Increases the range of Standards by 10 yds and increases the effectiveness of your Honor by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29996","treeId":"coa-guardian-87","index":29996,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/ability_skyreach_shielded.png","maxRank":1,"name":"Recuperation","description":"Taking Physical damage or blocking a physical attack now restores 2 Energy.","rankDescriptions":["Taking Physical damage or blocking a physical attack now restores 2 Energy."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34421","treeId":"coa-guardian-87","index":34421,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/novart_passivemastery_(8)_border.png","maxRank":1,"name":"Energetic","description":"Restores 5 of your Energy every 3 sec.","rankDescriptions":["Restores 5 of your Energy every 3 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34419","treeId":"coa-guardian-87","index":34419,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/achievement_legionpvp2tier1.png","maxRank":1,"name":"Knight's Advantage","description":"Increases your damage dealt against Humanoids by 6%.","rankDescriptions":["Increases your damage dealt against Humanoids by 6%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34414","treeId":"coa-guardian-87","index":34414,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_meleedamage.png","maxRank":1,"name":"Steel Riposte","description":"Reduces the cooldown of Counter Stance and Turn the Blade by -25%.","rankDescriptions":["Reduces the cooldown of Counter Stance and Turn the Blade by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7311","treeId":"coa-guardian-87","index":7311,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_warrior_gladiatorstance.png","maxRank":1,"name":"Pit Fighter","description":"Increases the movement speed slow of your Standard of Valiance by -15%.","rankDescriptions":["Increases the movement speed slow of your Standard of Valiance by -15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30059","treeId":"coa-guardian-87","index":30059,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/warrior_talent_icon_thunderstruck.png","maxRank":1,"name":"Warstopper","description":"Reduces the Energy cost of Standard of Valiance by -20.","rankDescriptions":["Reduces the Energy cost of Standard of Valiance by -20."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34405","treeId":"coa-guardian-87","index":34405,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/inv_shield_1h_newplayer_a_01.png","maxRank":1,"name":"Thick Shields","description":"Increases your block value by 10%.","rankDescriptions":["Increases your block value by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12431","treeId":"coa-guardian-87","index":12431,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/custom_paladinskill_32_border.png","maxRank":1,"name":"Knight's Calling","description":"Embrace your calling, restoring 15% of your maximum health and Energy, repeating every 5 sec for 10 seconds.","rankDescriptions":["Embrace your calling, restoring 15% of your maximum health and Energy, repeating every 5 sec for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29970","treeId":"coa-guardian-87","index":29970,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/achievement_featsofstrength_gladiator_08.png","maxRank":1,"name":"Make Room! I'm Here.","description":"Increases the duration of Standard of Valiance and Broad Sweep by 50%.","rankDescriptions":["Increases the duration of Standard of Valiance and Broad Sweep by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34404","treeId":"coa-guardian-87","index":34404,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/novart_passivemastery_(35)_border.png","maxRank":1,"name":"Master of Arms","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.","rankDescriptions":["Your Turn the Blade now guarantees you to parry 1 additional attack and the duration of its parry window is increased by 1 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34425","treeId":"coa-guardian-87","index":34425,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/garrison_building_salvageyard.png","maxRank":1,"name":"Relentless","description":"Your Pulverizes or Rams now ignores -15% of the target's Armor.","rankDescriptions":["Your Pulverizes or Rams now ignores -15% of the target's Armor."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34429","treeId":"coa-guardian-87","index":34429,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_toughness.png","maxRank":1,"name":"Honorable Demeanor","description":"Whenever you block an attack your Strength and Stamina are increased by 2% for 10 seconds, stacking 3 times.","rankDescriptions":["Whenever you block an attack your Strength and Stamina are increased by 2% for 10 seconds, stacking 3 times."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29427","treeId":"coa-guardian-87","index":29427,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/sha_ability_rogue_sturdyrecuperate.png","maxRank":1,"name":"Refuse To Die","description":"Casting Advance now resets the cooldown of Raise Shield.","rankDescriptions":["Casting Advance now resets the cooldown of Raise Shield."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34426","treeId":"coa-guardian-87","index":34426,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_warrior_stalwartprotector.png","maxRank":1,"name":"Grand Entrance","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30100","treeId":"coa-guardian-87","index":30100,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_skyreach_shielded.png","maxRank":1,"name":"Valiant Warrior","description":"Critical strikes with Ram now have a 50% chance to strike again for 100% of the damage dealt.","rankDescriptions":["Critical strikes with Ram now have a 50% chance to strike again for 100% of the damage dealt."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34403","treeId":"coa-guardian-87","index":34403,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/novart_physical_ability_(50)_border.png","maxRank":1,"name":"Press the Attack","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/hunter.json b/src/game/generated/talentUi/hunter.json new file mode 100644 index 00000000..1e07f15b --- /dev/null +++ b/src/game/generated/talentUi/hunter.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"hunter","trees":[{"id":"hunter-beast-mastery","classId":"hunter","name":"Beast Mastery","icon":"/assets/ui/talents/icons/ability_hunter_beasttaming.png","background":"/assets/ui/talents/backgrounds/talent_hunter1.png","description":"Strengthen the bond between hunter and beast.","system":"classic"},{"id":"hunter-marksmanship","classId":"hunter","name":"Marksmanship","icon":"/assets/ui/talents/icons/ability_marksmanship.png","background":"/assets/ui/talents/backgrounds/talent_hunter2.png","description":"Perfect precise and devastating ranged attacks.","system":"classic"},{"id":"hunter-survival","classId":"hunter","name":"Survival","icon":"/assets/ui/talents/icons/ability_hunter_swiftstrike.png","background":"/assets/ui/talents/backgrounds/talent_hunter3.png","description":"Control the battlefield with traps and cunning.","system":"classic"}],"nodes":[{"id":"talent-1384","treeId":"hunter-beast-mastery","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/ability_mount_jungletiger.png","maxRank":2,"name":"Pathfinding","description":"Increases the speed bonus of your Aspect of the Cheetah and Aspect of the Pack by 10%. Increases your speed while mounted by 10%. The mounted movement speed increase does not stack with similar effects.","rankDescriptions":["Increases the speed bonus of your Aspect of the Cheetah and Aspect of the Pack by 5%. Increases your speed while mounted by 5%. The mounted movement speed increase does not stack with similar effects.","Increases the speed bonus of your Aspect of the Cheetah and Aspect of the Pack by 10%. Increases your speed while mounted by 10%. The mounted movement speed increase does not stack with similar effects."],"system":"classic"},{"id":"talent-1388","treeId":"hunter-beast-mastery","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/ability_druid_demoralizingroar.png","maxRank":2,"name":"Spirit Bond","description":"While your pet is active, you and your pet will regenerate 3% of base health every 10 sec. Increases healing done to you and your pet by 6%. This effect does not stack with other similar effects.","rankDescriptions":["While your pet is active, you and your pet will regenerate 3% of base health every 20 sec. Increases healing done to you and your pet by 3%. This effect does not stack with other similar effects.","While your pet is active, you and your pet will regenerate 3% of base health every 10 sec. Increases healing done to you and your pet by 6%. This effect does not stack with other similar effects."],"system":"classic"},{"id":"talent-1624","treeId":"hunter-beast-mastery","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/ability_hunter_silenthunter.png","maxRank":2,"name":"Focused Fire","description":"All damage caused by you and your pet is increased by 2% while your pet is active and the critical strike chance of your tamed beast's special abilities is increased by 20% while Kill Command is active.","rankDescriptions":["All damage caused by you and your pet is increased by 1% while your pet is active and the critical strike chance of your tamed beast's special abilities is increased by 10% while Kill Command is active.","All damage caused by you and your pet is increased by 2% while your pet is active and the critical strike chance of your tamed beast's special abilities is increased by 20% while Kill Command is active."],"system":"classic"},{"id":"talent-1799","treeId":"hunter-beast-mastery","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/ability_hunter_animalhandler.png","maxRank":2,"name":"Animal Handler","description":"Increases your tamed beast's attack power by 12% and increases the duration of your Master's Call effect by 6 sec.","rankDescriptions":["Increases your tamed beast's attack power by 6% and increases the duration of your Master's Call effect by 3 sec.","Increases your tamed beast's attack power by 12% and increases the duration of your Master's Call effect by 6 sec."],"system":"classic"},{"id":"talent-1800","treeId":"hunter-beast-mastery","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_hunter_ferociousinspiration.png","maxRank":3,"name":"Ferocious Inspiration","description":"Increases the damage of all party and raid members by 3%. Does not stack with other similar effects. Increases the damage dealt by Arcane Shot and Steady Shot by 9%.","rankDescriptions":["Increases the damage of all party and raid members by 1%. Does not stack with other similar effects. Increases the damage dealt by Arcane Shot and Steady Shot by 3%.","Increases the damage of all party and raid members by 2%. Does not stack with other similar effects. Increases the damage dealt by Arcane Shot and Steady Shot by 6%.","Increases the damage of all party and raid members by 3%. Does not stack with other similar effects. Increases the damage dealt by Arcane Shot and Steady Shot by 9%."],"system":"classic"},{"id":"talent-2136","treeId":"hunter-beast-mastery","index":20,"prerequisiteId":"talent-1800","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-1800","requiredRank":3}],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_hunter_invigeration.png","maxRank":3,"name":"Invigoration","description":"When your tamed beast scores a critical hit with a special ability, you have a 100% chance to instantly regenerate 1% mana and grant Replenishment. Capstone Bonus: Using Intimidation heals your pet for 20% of its health. @s:57669:0@","rankDescriptions":["When your tamed beast scores a critical hit with a special ability, you have a 50% chance to instantly regenerate 1% mana and grant Replenishment. Capstone Bonus: Using Intimidation heals your pet for 20% of its health.| @s:57669:0@","When your tamed beast scores a critical hit with a special ability, you have a 100% chance to instantly regenerate 1% mana and grant Replenishment. Capstone Bonus: Using Intimidation heals your pet for 20% of its health.| @s:57669:0@","When your tamed beast scores a critical hit with a special ability, you have a 100% chance to instantly regenerate 1% mana and grant Replenishment. Capstone Bonus: Using Intimidation heals your pet for 20% of its health. @s:57669:0@"],"system":"classic"},{"id":"talent-2140","treeId":"hunter-beast-mastery","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_hunter_longevity.png","maxRank":3,"name":"Longevity","description":"Reduces the cooldown of your Bestial Wrath, Intimidation and Tamed Beast Pet Special Abilities by 30%.","rankDescriptions":["Reduces the cooldown of your Bestial Wrath, Intimidation and Tamed Beast Pet Special Abilities by 10%.","Reduces the cooldown of your Bestial Wrath, Intimidation and Tamed Beast Pet Special Abilities by 20%.","Reduces the cooldown of your Bestial Wrath, Intimidation and Tamed Beast Pet Special Abilities by 30%."],"system":"classic"},{"id":"talent-1381","treeId":"hunter-beast-mastery","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_hunter_aspectofthemonkey.png","maxRank":3,"name":"Improved Aspect of the Monkey","description":"Increases the dodge bonus of your Aspect of the Monkey by 3%.","rankDescriptions":["Increases the dodge bonus of your Aspect of the Monkey by 1%.","Increases the dodge bonus of your Aspect of the Monkey by 2%.","Increases the dodge bonus of your Aspect of the Monkey by 3%."],"system":"classic"},{"id":"talent-1382","treeId":"hunter-beast-mastery","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_ravenform.png","maxRank":5,"name":"Improved Aspect of the Hawk","description":"While Aspect of the Hawk is active, Auto Shot and Auto Attack have a 10% chance of increasing ranged attack speed by 30% for 12 seconds.","rankDescriptions":["While Aspect of the Hawk is active, Auto Shot and Auto Attack have a 10% chance of increasing ranged attack speed by 6% for 12 seconds.","While Aspect of the Hawk is active, Auto Shot and Auto Attack have a 10% chance of increasing ranged attack speed by 12% for 12 seconds.","While Aspect of the Hawk is active, Auto Shot and Auto Attack have a 10% chance of increasing ranged attack speed by 18% for 12 seconds.","While Aspect of the Hawk is active, Auto Shot and Auto Attack have a 10% chance of increasing ranged attack speed by 24% for 12 seconds.","While Aspect of the Hawk is active, Auto Shot and Auto Attack have a 10% chance of increasing ranged attack speed by 30% for 12 seconds."],"system":"classic"},{"id":"talent-1385","treeId":"hunter-beast-mastery","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/ability_hunter_mendpet.png","maxRank":2,"name":"Improved Mend Pet","description":"Reduces the mana cost of your Mend Pet spell by 20%. Mend Pet has a 20% chance of cleansing 1 Curse, Disease, Magic or Poison effect from the pet each tick.","rankDescriptions":["Reduces the mana cost of your Mend Pet spell by 10%. Mend Pet has a 10% chance of cleansing 1 Curse, Disease, Magic or Poison effect from the pet each tick.","Reduces the mana cost of your Mend Pet spell by 20%. Mend Pet has a 20% chance of cleansing 1 Curse, Disease, Magic or Poison effect from the pet each tick."],"system":"classic"},{"id":"talent-1386","treeId":"hunter-beast-mastery","index":18,"prerequisiteId":"talent-1387","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1387","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/ability_druid_ferociousbite.png","maxRank":1,"name":"Bestial Wrath","description":"Send your tamed beast or tamed dragonkin into a rage causing 30% additional damage for 8 seconds. While enraged, the beast does not feel pity or remorse or fear and it cannot be stopped unless killed. Does not stack with other similar effects. This ability is usable while shapeshifted.","rankDescriptions":["Send your tamed beast or tamed dragonkin into a rage causing 30% additional damage for 8 seconds. While enraged, the beast does not feel pity or remorse or fear and it cannot be stopped unless killed. Does not stack with other similar effects. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-1387","treeId":"hunter-beast-mastery","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/ability_devour.png","maxRank":1,"name":"Intimidation","description":"Command your tamed beast to intimidate the target, causing a high amount of threat and stunning the target for 5 seconds. Lasts 4 seconds. This ability is usable while shapeshifted. This spell cannot miss.","rankDescriptions":["Command your tamed beast to intimidate the target, causing a high amount of threat and stunning the target for 5 seconds. Lasts 4 seconds. This ability is usable while shapeshifted. This spell cannot miss."],"system":"classic"},{"id":"talent-1803","treeId":"hunter-beast-mastery","index":23,"prerequisiteId":"talent-1386","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1386","requiredRank":1}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/ability_hunter_beastwithin.png","maxRank":2,"name":"The Beast Within","description":"While your tamed pet is under the effects of Bestial Wrath, you have a 100% chance to also go into a rage causing 15% additional damage and reducing mana costs of all spells by 50% for 6 seconds. While enraged, you do not feel pity or remorse or fear and you cannot be stopped unless killed. Does not stack with other similar effects.","rankDescriptions":["While your tamed pet is under the effects of Bestial Wrath, you have a 50% chance to also go into a rage causing 15% additional damage and reducing mana costs of all spells by 50% for 6 seconds. While enraged, you do not feel pity or remorse or fear and you cannot be stopped unless killed. Does not stack with other similar effects.","While your tamed pet is under the effects of Bestial Wrath, you have a 100% chance to also go into a rage causing 15% additional damage and reducing mana costs of all spells by 50% for 6 seconds. While enraged, you do not feel pity or remorse or fear and you cannot be stopped unless killed. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-2138","treeId":"hunter-beast-mastery","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/ability_hunter_aspectmastery.png","maxRank":2,"name":"Aspect Mastery","description":"Aspect of the Viper - Reduces the damage and healing penalty by 20%. Aspect of the Monkey - Reduces the damage done to you while active by 4%. Aspect of the Hawk - Increases the attack power bonus by 80%.","rankDescriptions":["Aspect of the Viper - Reduces the damage and healing penalty by 10%. Aspect of the Monkey - Reduces the damage done to you while active by 2%. Aspect of the Hawk - Increases the attack power bonus by 40%.","Aspect of the Viper - Reduces the damage and healing penalty by 20%. Aspect of the Monkey - Reduces the damage done to you while active by 4%. Aspect of the Hawk - Increases the attack power bonus by 80%."],"system":"classic"},{"id":"talent-2139","treeId":"hunter-beast-mastery","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_hunter_beastmastery.png","maxRank":1,"name":"Beast Mastery","description":"@req:965200:@ You master the art of Beast training, teaching you the ability to tame Exotic pets and increasing your total amount of Pet Skill Points by 6.","rankDescriptions":["@req:965200:@ You master the art of Beast training, teaching you the ability to tame Exotic pets and increasing your total amount of Pet Skill Points by 6."],"system":"classic"},{"id":"talent-2227","treeId":"hunter-beast-mastery","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_hunter_separationanxiety.png","maxRank":5,"name":"Kindred Spirits","description":"Increases your pet's damage and healing by 20% and your pet's movement speed by 10%.","rankDescriptions":["Increases your pet's damage and healing by 4% and your pet's movement speed by 2%.","Increases your pet's damage and healing by 8% and your pet's movement speed by 4%.","Increases your pet's damage and healing by 12% and your pet's movement speed by 6%.","Increases your pet's damage and healing by 16% and your pet's movement speed by 8%.","Increases your pet's damage and healing by 20% and your pet's movement speed by 10%."],"system":"classic"},{"id":"talent-1389","treeId":"hunter-beast-mastery","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_reincarnation.png","maxRank":5,"name":"Endurance Training","description":"Increases your total health by 5%. Increases the health of your tamed beast, enslaved demon, dominated undead, tamed dragonkin, and tethered elemental by 15%.","rankDescriptions":["Increases your total health by 1%. Increases the health of your tamed beast, enslaved demon, dominated undead, tamed dragonkin, and tethered elemental by 3%.","Increases your total health by 2%. Increases the health of your tamed beast, enslaved demon, dominated undead, tamed dragonkin, and tethered elemental by 6%.","Increases your total health by 3%. Increases the health of your tamed beast, enslaved demon, dominated undead, tamed dragonkin, and tethered elemental by 9%.","Increases your total health by 4%. Increases the health of your tamed beast, enslaved demon, dominated undead, tamed dragonkin, and tethered elemental by 12%.","Increases your total health by 5%. Increases the health of your tamed beast, enslaved demon, dominated undead, tamed dragonkin, and tethered elemental by 15%."],"system":"classic"},{"id":"talent-1393","treeId":"hunter-beast-mastery","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/inv_misc_monsterclaw_04.png","maxRank":3,"name":"Ferocity","description":"Increases the critical strike chance of your tamed pet by 15%. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","rankDescriptions":["Increases the critical strike chance of your tamed pet by 5%. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","Increases the critical strike chance of your tamed pet by 10%. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","Increases the critical strike chance of your tamed pet by 15%. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast."],"system":"classic"},{"id":"talent-1395","treeId":"hunter-beast-mastery","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/inv_misc_pelt_bear_03.png","maxRank":3,"name":"Thick Hide","description":"Increases the armor rating of your tamed beast by 20% and your armor contribution from items by 10%.","rankDescriptions":["Increases the armor rating of your tamed beast by 7% and your armor contribution from items by 4%.","Increases the armor rating of your tamed beast by 14% and your armor contribution from items by 7%.","Increases the armor rating of your tamed beast by 20% and your armor contribution from items by 10%."],"system":"classic"},{"id":"talent-1396","treeId":"hunter-beast-mastery","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/ability_bullrush.png","maxRank":5,"name":"Unleashed Fury","description":"Increases the damage done by your Tamed Pet by 25%, and Tamed Beast special attacks by an additional 25%. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","rankDescriptions":["Increases the damage done by your Tamed Pet by 5%, and Tamed Beast special attacks by an additional 5%. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","Increases the damage done by your Tamed Pet by 10%, and Tamed Beast special attacks by an additional 10%. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","Increases the damage done by your Tamed Pet by 15%, and Tamed Beast special attacks by an additional 15%. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","Increases the damage done by your Tamed Pet by 20%, and Tamed Beast special attacks by an additional 20%. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","Increases the damage done by your Tamed Pet by 25%, and Tamed Beast special attacks by an additional 25%. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast."],"system":"classic"},{"id":"talent-1397","treeId":"hunter-beast-mastery","index":16,"prerequisiteId":"talent-1393","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1393","requiredRank":5}],"column":3,"row":6,"icon":"/assets/ui/talents/icons/inv_misc_monsterclaw_03.png","maxRank":3,"name":"Frenzy","description":"Gives your pet a 100% chance to gain a 30% attack speed increase for 6 seconds after dealing a critical strike. Frenzy affects Enslaved Demons, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","rankDescriptions":["Gives your pet a 33% chance to gain a 30% attack speed increase for 6 seconds after dealing a critical strike. Frenzy affects Enslaved Demons, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","Gives your pet a 66% chance to gain a 30% attack speed increase for 6 seconds after dealing a critical strike. Frenzy affects Enslaved Demons, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","Gives your pet a 100% chance to gain a 30% attack speed increase for 6 seconds after dealing a critical strike. Frenzy affects Enslaved Demons, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast."],"system":"classic"},{"id":"talent-1801","treeId":"hunter-beast-mastery","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_hunter_catlikereflexes.png","maxRank":3,"name":"Catlike Reflexes","description":"Increases your tamed beast's chance to dodge by an additional 12%. Reduces the cooldown of your Kill Command ability by 30 sec.","rankDescriptions":["Increases your tamed beast's chance to dodge by an additional 4%. Reduces the cooldown of your Kill Command ability by 10 sec.","Increases your tamed beast's chance to dodge by an additional 8%. Reduces the cooldown of your Kill Command ability by 20 sec.","Increases your tamed beast's chance to dodge by an additional 12%. Reduces the cooldown of your Kill Command ability by 30 sec."],"system":"classic"},{"id":"talent-1802","treeId":"hunter-beast-mastery","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_hunter_serpentswiftness.png","maxRank":5,"name":"Serpent's Swiftness","description":"Increases ranged combat attack speed by 20% and your tamed beast's melee attack speed by 20%.","rankDescriptions":["Increases ranged combat attack speed by 4% and your tamed beast's melee attack speed by 4%.","Increases ranged combat attack speed by 8% and your tamed beast's melee attack speed by 8%.","Increases ranged combat attack speed by 12% and your tamed beast's melee attack speed by 12%.","Increases ranged combat attack speed by 16% and your tamed beast's melee attack speed by 16%.","Increases ranged combat attack speed by 20% and your tamed beast's melee attack speed by 20%."],"system":"classic"},{"id":"talent-2137","treeId":"hunter-beast-mastery","index":24,"prerequisiteId":"talent-1802","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1802","requiredRank":5}],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_hunter_cobrastrikes.png","maxRank":3,"name":"Cobra Strikes","description":"You have a 60% chance when you critically hit with Arcane Shot, Steady Shot, Raptor Strike, Mongoose Bite, Frenzy Shot, or Counterattack to cause your tamed beast's next 2 special attacks to critically hit.","rankDescriptions":["You have a 20% chance when you critically hit with Arcane Shot, Steady Shot, Raptor Strike, Mongoose Bite, Frenzy Shot, or Counterattack to cause your tamed beast's next 2 special attacks to critically hit.","You have a 40% chance when you critically hit with Arcane Shot, Steady Shot, Raptor Strike, Mongoose Bite, Frenzy Shot, or Counterattack to cause your tamed beast's next 2 special attacks to critically hit.","You have a 60% chance when you critically hit with Arcane Shot, Steady Shot, Raptor Strike, Mongoose Bite, Frenzy Shot, or Counterattack to cause your tamed beast's next 2 special attacks to critically hit."],"system":"classic"},{"id":"talent-1390","treeId":"hunter-beast-mastery","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_abolishmagic.png","maxRank":2,"name":"Bestial Discipline","description":"Increases the Focus regeneration of your tamed beasts by 100%. Reduces the mana cost of your Intimidation by 50%.","rankDescriptions":["Increases the Focus regeneration of your tamed beasts by 50%. Reduces the mana cost of your Intimidation by 25%.","Increases the Focus regeneration of your tamed beasts by 100%. Reduces the mana cost of your Intimidation by 50%."],"system":"classic"},{"id":"talent-1625","treeId":"hunter-beast-mastery","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/talents/icons/ability_hunter_beastsoothe.png","maxRank":2,"name":"Improved Revive Pet","description":"All pet revival spells have their cast times reduced by 4 seconds, mana costs reduced by 40%, and the health your pet returns with is increased by an additional 20%. Revive Pet includes; Revive Elemental, Revive Dragonkin, Revive Undead, Revive Demon.","rankDescriptions":["All pet revival spells have their cast times reduced by 2 seconds, mana costs reduced by 20%, and the health your pet returns with is increased by an additional 10%. Revive Pet includes; Revive Elemental, Revive Dragonkin, Revive Undead, Revive Demon.","All pet revival spells have their cast times reduced by 4 seconds, mana costs reduced by 40%, and the health your pet returns with is increased by an additional 20%. Revive Pet includes; Revive Elemental, Revive Dragonkin, Revive Undead, Revive Demon."],"system":"classic"},{"id":"talent-1303","treeId":"hunter-survival","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_nature_invisibilty.png","maxRank":3,"name":"Lightning Reflexes","description":"Increases your Agility by 6%.","rankDescriptions":["Increases your Agility by 2%.","Increases your Agility by 4%.","Increases your Agility by 6%."],"system":"classic"},{"id":"talent-1310","treeId":"hunter-survival","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/ability_kick.png","maxRank":3,"name":"Surefooted","description":"Reduces the duration of movement impairing effects by 20%.","rankDescriptions":["Reduces the duration of movement impairing effects by 7%.","Reduces the duration of movement impairing effects by 14%.","Reduces the duration of movement impairing effects by 20%."],"system":"classic"},{"id":"talent-1622","treeId":"hunter-survival","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_twilight.png","maxRank":3,"name":"Survivalist","description":"Increases your Agility and Stamina by 3%. Reduces the cooldown of your Deterrence ability by 10 sec and increases its duration by 1 sec. Reduces the duration of all Disarm effects used against you by 30%. This does not stack with other Disarm duration reducing effects. Capstone Bonus: Your movement speed is increased by 30% while Deterrence is active and for 3 seconds after using Disengage or Feign Death.","rankDescriptions":["Increases your Agility and Stamina by 1%. Reduces the cooldown of your Deterrence ability by 10 sec and increases its duration by 1 sec. Reduces the duration of all Disarm effects used against you by 10%. This does not stack with other Disarm duration reducing effects. Capstone Bonus: Your movement speed is increased by 30% while Deterrence is active and for 3 seconds after using Disengage or Feign Death.","Increases your Agility and Stamina by 2%. Reduces the cooldown of your Deterrence ability by 10 sec and increases its duration by 1 sec. Reduces the duration of all Disarm effects used against you by 20%. This does not stack with other Disarm duration reducing effects. Capstone Bonus: Your movement speed is increased by 30% while Deterrence is active and for 3 seconds after using Disengage or Feign Death.","Increases your Agility and Stamina by 3%. Reduces the cooldown of your Deterrence ability by 10 sec and increases its duration by 1 sec. Reduces the duration of all Disarm effects used against you by 30%. This does not stack with other Disarm duration reducing effects. Capstone Bonus: Your movement speed is increased by 30% while Deterrence is active and for 3 seconds after using Disengage or Feign Death."],"system":"classic"},{"id":"talent-1623","treeId":"hunter-survival","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/ability_hunter_improvedtracking.png","maxRank":2,"name":"Lone Wolf","description":"Increases the damage of your Auto Shot and Hunter abilities by 8% while you do not have a pet active.","rankDescriptions":["Increases the damage of your Auto Shot and Hunter abilities by 4% while you do not have a pet active.","Increases the damage of your Auto Shot and Hunter abilities by 8% while you do not have a pet active."],"system":"classic"},{"id":"talent-1812","treeId":"hunter-survival","index":19,"prerequisiteId":"talent-1303","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1303","requiredRank":5}],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_rogue_findweakness.png","maxRank":3,"name":"Expose Weakness","description":"Your ranged ability criticals, Mongoose Bite and Counterattack criticals grant you Expose Weakness. Expose Weakness increases your attack power by 30% of your Agility for 7 seconds.","rankDescriptions":["Your ranged ability criticals, Mongoose Bite and Counterattack criticals grant you Expose Weakness. Expose Weakness increases your attack power by 10% of your Agility for 7 seconds.","Your ranged ability criticals, Mongoose Bite and Counterattack criticals grant you Expose Weakness. Expose Weakness increases your attack power by 20% of your Agility for 7 seconds.","Your ranged ability criticals, Mongoose Bite and Counterattack criticals grant you Expose Weakness. Expose Weakness increases your attack power by 30% of your Agility for 7 seconds."],"system":"classic"},{"id":"talent-1813","treeId":"hunter-survival","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_hunter_mastertactitian.png","maxRank":3,"name":"Master Tactician","description":"Your successful ranged shots have a 15% chance to increase your critical strike chance with all spells and attacks by 9% for 8 seconds.","rankDescriptions":["Your successful ranged shots have a 15% chance to increase your critical strike chance with all spells and attacks by 3% for 8 seconds.","Your successful ranged shots have a 15% chance to increase your critical strike chance with all spells and attacks by 6% for 8 seconds.","Your successful ranged shots have a 15% chance to increase your critical strike chance with all spells and attacks by 9% for 8 seconds."],"system":"classic"},{"id":"talent-2142","treeId":"hunter-survival","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_hunter_pointofnoescape.png","maxRank":3,"name":"Point of No Escape","description":"Increases your damage on targets affected by your Black Arrow, Counterattack, Concussive Shot, Frost Trap, Freezing Trap and Freezing Arrow by 6%.","rankDescriptions":["Increases your damage on targets affected by your Black Arrow, Counterattack, Concussive Shot, Frost Trap, Freezing Trap and Freezing Arrow by 2%.","Increases your damage on targets affected by your Black Arrow, Counterattack, Concussive Shot, Frost Trap, Freezing Trap and Freezing Arrow by 4%.","Increases your damage on targets affected by your Black Arrow, Counterattack, Concussive Shot, Frost Trap, Freezing Trap and Freezing Arrow by 6%."],"system":"classic"},{"id":"talent-2228","treeId":"hunter-survival","index":14,"prerequisiteId":"talent-1622","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1622","requiredRank":5}],"column":1,"row":5,"icon":"/assets/ui/talents/icons/ability_hunter_huntervswild.png","maxRank":3,"name":"Hunter vs. Wild","description":"Increases your attack power and ranged attack power equal to 20% of your total Stamina. Increases the damage of your tamed beast by 6%.","rankDescriptions":["Increases your attack power and ranged attack power equal to 7% of your total Stamina. Increases the damage of your tamed beast by 2%.","Increases your attack power and ranged attack power equal to 14% of your total Stamina. Increases the damage of your tamed beast by 4%.","Increases your attack power and ranged attack power equal to 20% of your total Stamina. Increases the damage of your tamed beast by 6%."],"system":"classic"},{"id":"talent-1304","treeId":"hunter-survival","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_stranglevines.png","maxRank":3,"name":"Entrapment","description":"Increases the slow effect of Frost Trap by 15%. Capstone Bonus: When your Frost Trap or Snake Trap is triggered you entrap all afflicted targets, preventing them from moving for 3 seconds.","rankDescriptions":["Increases the slow effect of Frost Trap by 4%. Capstone Bonus: When your Frost Trap or Snake Trap is triggered you entrap all afflicted targets, preventing them from moving for 3 seconds.","Increases the slow effect of Frost Trap by 10%. Capstone Bonus: When your Frost Trap or Snake Trap is triggered you entrap all afflicted targets, preventing them from moving for 3 seconds.","Increases the slow effect of Frost Trap by 15%. Capstone Bonus: When your Frost Trap or Snake Trap is triggered you entrap all afflicted targets, preventing them from moving for 3 seconds."],"system":"classic"},{"id":"talent-1321","treeId":"hunter-survival","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_holy_blessingofstamina.png","maxRank":3,"name":"Killer Instinct","description":"Increases your critical strike chance with all spells and abilities by 3%. You have a 100% chance to allow the use of your Counterattack ability after using Mongoose Bite, Explosive Shot or Glaive Toss for 6 seconds. This effect can only occur once every 8 seconds.","rankDescriptions":["Increases your critical strike chance with all spells and abilities by 1%. You have a 33% chance to allow the use of your Counterattack ability after using Mongoose Bite, Explosive Shot or Glaive Toss for 6 seconds. This effect can only occur once every 8 seconds.","Increases your critical strike chance with all spells and abilities by 2%. You have a 66% chance to allow the use of your Counterattack ability after using Mongoose Bite, Explosive Shot or Glaive Toss for 6 seconds. This effect can only occur once every 8 seconds.","Increases your critical strike chance with all spells and abilities by 3%. You have a 100% chance to allow the use of your Counterattack ability after using Mongoose Bite, Explosive Shot or Glaive Toss for 6 seconds. This effect can only occur once every 8 seconds."],"system":"classic"},{"id":"talent-1322","treeId":"hunter-survival","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_shadow_painspike.png","maxRank":1,"name":"Black Arrow","description":"Fires a Black Arrow at the target dealing the listed amount attack power*0.075)} Shadow damage every 3 over 15 seconds.","rankDescriptions":["Fires a Black Arrow at the target dealing the listed amount attack power*0.075)} Shadow damage every 3 over 15 seconds."],"system":"classic"},{"id":"talent-1325","treeId":"hunter-survival","index":20,"prerequisiteId":"talent-1321","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-1321","requiredRank":3}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/inv_spear_02.png","maxRank":1,"name":"Wyvern Sting","description":"A stinging shot reduces the targets damage done by 30% for 2 seconds. After the duration ends the target is put to sleep for 30 seconds. Any damage will cancel the sleep effect except for Serpent Sting. Lasts 6 sec vs players This spell cannot miss.","rankDescriptions":["A stinging shot reduces the targets damage done by 30% for 2 seconds. After the duration ends the target is put to sleep for 30 seconds. Any damage will cancel the sleep effect except for Serpent Sting. Lasts 6 sec vs players This spell cannot miss."],"system":"classic"},{"id":"talent-1814","treeId":"hunter-survival","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/ability_golemstormbolt.png","maxRank":1,"name":"Scatter Shot","description":"A short-range shot that deals 50% weapon damage and disorients the target for 4 seconds. Any damage caused except for Piercing Shots and Serpent Sting will remove the effect. Turns off your attack when used. This spell cannot miss.","rankDescriptions":["A short-range shot that deals 50% weapon damage and disorients the target for 4 seconds. Any damage caused except for Piercing Shots and Serpent Sting will remove the effect. Turns off your attack when used. This spell cannot miss."],"system":"classic"},{"id":"talent-1820","treeId":"hunter-survival","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/ability_townwatch.png","maxRank":3,"name":"Hawk Eye","description":"Increases your chance to hit with spells and abilities by 3%. Increases the damage done by Auto Shot by 6%.","rankDescriptions":["Increases your chance to hit with spells and abilities by 1%. Increases the damage done by Auto Shot by 2%.","Increases your chance to hit with spells and abilities by 2%. Increases the damage done by Auto Shot by 4%.","Increases your chance to hit with spells and abilities by 3%. Increases the damage done by Auto Shot by 6%."],"system":"classic"},{"id":"talent-2141","treeId":"hunter-survival","index":23,"prerequisiteId":"talent-1325","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1325","requiredRank":1}],"column":2,"row":8,"icon":"/assets/ui/talents/icons/ability_hunter_potentvenom.png","maxRank":3,"name":"Noxious Stings","description":"Increases all damage done by you on targets afflicted by your Serpent Sting by 3%. Capstone Bonus: Using Chimera Shot on a target affected by the Wyvern Sting sleep effect causes the target to be rooted and silenced for 2 seconds.","rankDescriptions":["Increases all damage done by you on targets afflicted by your Serpent Sting by 1%. Capstone Bonus: Using Chimera Shot on a target affected by the Wyvern Sting sleep effect causes the target to be rooted and silenced for 2 seconds.","Increases all damage done by you on targets afflicted by your Serpent Sting by 2%. Capstone Bonus: Using Chimera Shot on a target affected by the Wyvern Sting sleep effect causes the target to be rooted and silenced for 2 seconds.","Increases all damage done by you on targets afflicted by your Serpent Sting by 3%. Capstone Bonus: Using Chimera Shot on a target affected by the Wyvern Sting sleep effect causes the target to be rooted and silenced for 2 seconds."],"system":"classic"},{"id":"talent-2145","treeId":"hunter-survival","index":28,"prerequisiteId":"talent-1322","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1322","requiredRank":1}],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_hunter_explosiveshot.png","maxRank":1,"name":"Explosive Shot","description":"You fire an explosive charge into the enemy target, dealing the listed amount attack power*0.067))*2.57} Fire damage to the target. Nearby enemies are also hit, but for 60% less damage. The charge will blast the target every second for an additional 2 seconds.","rankDescriptions":["You fire an explosive charge into the enemy target, dealing the listed amount attack power*0.067))*2.57} Fire damage to the target. Nearby enemies are also hit, but for 60% less damage. The charge will blast the target every second for an additional 2 seconds."],"system":"classic"},{"id":"talent-2229","treeId":"hunter-survival","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/inv_misc_bomb_05.png","maxRank":3,"name":"T.N.T.","description":"Increases the damage done by your Explosive Shot, Explosive Trap, Black Arrow and Immolation Trap by 12%.","rankDescriptions":["Increases the damage done by your Explosive Shot, Explosive Trap, Black Arrow and Immolation Trap by 4%.","Increases the damage done by your Explosive Shot, Explosive Trap, Black Arrow and Immolation Trap by 8%.","Increases the damage done by your Explosive Shot, Explosive Trap, Black Arrow and Immolation Trap by 12%."],"system":"classic"},{"id":"talent-1305","treeId":"hunter-survival","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/ability_ensnare.png","maxRank":3,"name":"Trap Mastery","description":"Frost Trap - Increases the duration by 30%. Immolation Trap, Explosive Trap and Black Arrow - Increases the periodic damage done by 30%. Snake Trap - Increases the number of snakes summoned by 6. Capstone Bonus: The duration of Freezing Trap is doubled on targets affected by your Scatter Shot.","rankDescriptions":["Frost Trap - Increases the duration by 10%. Immolation Trap, Explosive Trap and Black Arrow - Increases the periodic damage done by 10%. Snake Trap - Increases the number of snakes summoned by 2. Capstone Bonus: The duration of Freezing Trap is doubled on targets affected by your Scatter Shot.","Frost Trap - Increases the duration by 20%. Immolation Trap, Explosive Trap and Black Arrow - Increases the periodic damage done by 20%. Snake Trap - Increases the number of snakes summoned by 4. Capstone Bonus: The duration of Freezing Trap is doubled on targets affected by your Scatter Shot.","Frost Trap - Increases the duration by 30%. Immolation Trap, Explosive Trap and Black Arrow - Increases the periodic damage done by 30%. Snake Trap - Increases the number of snakes summoned by 6. Capstone Bonus: The duration of Freezing Trap is doubled on targets affected by your Scatter Shot."],"system":"classic"},{"id":"talent-1311","treeId":"hunter-survival","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/ability_parry.png","maxRank":3,"name":"Improved Counterattack","description":"Increases the damage dealt by your Counterattack by 15%. Capstone Bonus: Your Mongoose Bite and Raptor Strike critical hits now lower the internal cooldown of Killer Instinct. This effect has a 4 seconds cooldown.","rankDescriptions":["Increases the damage dealt by your Counterattack by 5%. Capstone Bonus: Your Mongoose Bite and Raptor Strike critical hits now lower the internal cooldown of Killer Instinct. This effect has a 4 seconds cooldown.","Increases the damage dealt by your Counterattack by 10%. Capstone Bonus: Your Mongoose Bite and Raptor Strike critical hits now lower the internal cooldown of Killer Instinct. This effect has a 4 seconds cooldown.","Increases the damage dealt by your Counterattack by 15%. Capstone Bonus: Your Mongoose Bite and Raptor Strike critical hits now lower the internal cooldown of Killer Instinct. This effect has a 4 seconds cooldown."],"system":"classic"},{"id":"talent-1312","treeId":"hunter-survival","index":16,"prerequisiteId":"talent-1311","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-1311","requiredRank":3}],"column":3,"row":5,"icon":"/assets/ui/talents/icons/ability_warrior_challange.png","maxRank":1,"name":"Counterattack","description":"A strike that becomes active after parrying an opponent's attack. This attack deals the listed amount attack power*0.8+50} damage and immobilizes the target for 2 seconds. Counterattack cannot be blocked, dodged, or parried.","rankDescriptions":["A strike that becomes active after parrying an opponent's attack. This attack deals the listed amount attack power*0.8+50} damage and immobilizes the target for 2 seconds. Counterattack cannot be blocked, dodged, or parried."],"system":"classic"},{"id":"talent-1621","treeId":"hunter-survival","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_racial_bloodrage.png","maxRank":3,"name":"Savage Strikes","description":"the listed amount[Increases the critical strike chance of Counterattack, Fury of the Eagle, Mongoose Bite, Raptor Strike, Savage Blade and Wing Clip by 20%.][Increases the critical strike chance of Counterattack, Mongoose Bite, Raptor Strike and Wing Clip by 20%.]","rankDescriptions":["the listed amount[Increases the critical strike chance of Counterattack, Fury of the Eagle, Mongoose Bite, Raptor Strike, Savage Blade and Wing Clip by 7%.][Increases the critical strike chance of Counterattack, Mongoose Bite, Raptor Strike and Wing Clip by 7%.]","the listed amount[Increases the critical strike chance of Counterattack, Fury of the Eagle, Mongoose Bite, Raptor Strike, Savage Blade and Wing Clip by 14%.][Increases the critical strike chance of Counterattack, Mongoose Bite, Raptor Strike and Wing Clip by 14%.]","the listed amount[Increases the critical strike chance of Counterattack, Fury of the Eagle, Mongoose Bite, Raptor Strike, Savage Blade and Wing Clip by 20%.][Increases the critical strike chance of Counterattack, Mongoose Bite, Raptor Strike and Wing Clip by 20%.]"],"system":"classic"},{"id":"talent-1809","treeId":"hunter-survival","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/ability_hunter_resourcefulness.png","maxRank":3,"name":"Resourcefulness","description":"Reduces the mana cost of all traps, Hunter melee abilities and Black Arrow by 60%. Reduces the cooldown of all traps and Black Arrow by 10 sec. Capstone Bonus: Dealing periodic damage with Immolation Trap, Explosive Trap or Black Arrow reduces the cooldown of your Mongoose Bite, Raptor Strike and Glaive Toss by 1 second. This effect cannot occur more than once every second.","rankDescriptions":["Reduces the mana cost of all traps, Hunter melee abilities and Black Arrow by 20%. Reduces the cooldown of all traps and Black Arrow by 4 sec. Capstone Bonus: Dealing periodic damage with Immolation Trap, Explosive Trap or Black Arrow reduces the cooldown of your Mongoose Bite, Raptor Strike and Glaive Toss by 1 second. This effect cannot occur more than once every second.","Reduces the mana cost of all traps, Hunter melee abilities and Black Arrow by 40%. Reduces the cooldown of all traps and Black Arrow by 7 sec. Capstone Bonus: Dealing periodic damage with Immolation Trap, Explosive Trap or Black Arrow reduces the cooldown of your Mongoose Bite, Raptor Strike and Glaive Toss by 1 second. This effect cannot occur more than once every second.","Reduces the mana cost of all traps, Hunter melee abilities and Black Arrow by 60%. Reduces the cooldown of all traps and Black Arrow by 10 sec. Capstone Bonus: Dealing periodic damage with Immolation Trap, Explosive Trap or Black Arrow reduces the cooldown of your Mongoose Bite, Raptor Strike and Glaive Toss by 1 second. This effect cannot occur more than once every second."],"system":"classic"},{"id":"talent-1811","treeId":"hunter-survival","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_hunter_thrillofthehunt.png","maxRank":3,"name":"Thrill of the Hunt","description":"Gives you a 100% chance to regain 40% of the mana cost of any non-periodic damage dealing hunter shot when it critically hits. You have a 100% chance to refund 1 sec of your Arcane Shot or Explosive Shot and 2 sec of your Chimera Shot, Multi-Shot, and Aimed Shot when they critically strike. This effect can not trigger multiple times from the same shot.","rankDescriptions":["Gives you a 33% chance to regain 40% of the mana cost of any non-periodic damage dealing hunter shot when it critically hits. You have a 33% chance to refund 1 sec of your Arcane Shot or Explosive Shot and 2 sec of your Chimera Shot, Multi-Shot, and Aimed Shot when they critically strike. This effect can not trigger multiple times from the same shot.","Gives you a 66% chance to regain 40% of the mana cost of any non-periodic damage dealing hunter shot when it critically hits. You have a 66% chance to refund 1 sec of your Arcane Shot or Explosive Shot and 2 sec of your Chimera Shot, Multi-Shot, and Aimed Shot when they critically strike. This effect can not trigger multiple times from the same shot.","Gives you a 100% chance to regain 40% of the mana cost of any non-periodic damage dealing hunter shot when it critically hits. You have a 100% chance to refund 1 sec of your Arcane Shot or Explosive Shot and 2 sec of your Chimera Shot, Multi-Shot, and Aimed Shot when they critically strike. This effect can not trigger multiple times from the same shot."],"system":"classic"},{"id":"talent-2144","treeId":"hunter-survival","index":27,"prerequisiteId":"talent-1811","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-1811","requiredRank":3}],"column":3,"row":10,"icon":"/assets/ui/talents/icons/ability_hunter_huntingparty.png","maxRank":3,"name":"Hunting Party","description":"Increases your Agility by 3% and Ranged attack power by 6%. Your Arcane Shot, Explosive Shot, Glaive Toss, Steady Shot, Mongoose Bite and Counterattack critical strikes have a 100% chance to grant Replenishment. @s:57669:0@","rankDescriptions":["Increases your Agility by 1% and Ranged attack power by 2%. Your Arcane Shot, Explosive Shot, Glaive Toss, Steady Shot, Mongoose Bite and Counterattack critical strikes have a 33% chance to grant Replenishment. @s:57669:0@","Increases your Agility by 2% and Ranged attack power by 4%. Your Arcane Shot, Explosive Shot, Glaive Toss, Steady Shot, Mongoose Bite and Counterattack critical strikes have a 66% chance to grant Replenishment. @s:57669:0@","Increases your Agility by 3% and Ranged attack power by 6%. Your Arcane Shot, Explosive Shot, Glaive Toss, Steady Shot, Mongoose Bite and Counterattack critical strikes have a 100% chance to grant Replenishment. @s:57669:0@"],"system":"classic"},{"id":"talent-1306","treeId":"hunter-survival","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/ability_hunter_lockandload.png","maxRank":3,"name":"Lock and Load","description":"Trapping a target with Freezing Trap, Freezing Arrow or Frost Trap has a 100% chance to cause your next 2 Arcane Shot or Explosive Shot spells to trigger no cooldown, and cost no mana. Periodic damage from Immolation Trap, Explosive Trap and Black Arrow has a 30% to trigger this effect. This effect has a 15 sec cooldown.","rankDescriptions":["Trapping a target with Freezing Trap, Freezing Arrow or Frost Trap has a 33% chance to cause your next 2 Arcane Shot or Explosive Shot spells to trigger no cooldown, and cost no mana. Periodic damage from Immolation Trap, Explosive Trap and Black Arrow has a 10% to trigger this effect. This effect has a 15 sec cooldown.","Trapping a target with Freezing Trap, Freezing Arrow or Frost Trap has a 66% chance to cause your next 2 Arcane Shot or Explosive Shot spells to trigger no cooldown, and cost no mana. Periodic damage from Immolation Trap, Explosive Trap and Black Arrow has a 20% to trigger this effect. This effect has a 15 sec cooldown.","Trapping a target with Freezing Trap, Freezing Arrow or Frost Trap has a 100% chance to cause your next 2 Arcane Shot or Explosive Shot spells to trigger no cooldown, and cost no mana. Periodic damage from Immolation Trap, Explosive Trap and Black Arrow has a 30% to trigger this effect. This effect has a 15 sec cooldown."],"system":"classic"},{"id":"talent-1309","treeId":"hunter-survival","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/ability_rogue_feigndeath.png","maxRank":3,"name":"Survival Tactics","description":"Reduces the cooldown of Disengage by 6 sec. Capstone Bonus: Using Disengage will clear any slow effects on you.","rankDescriptions":["Reduces the cooldown of Disengage by 2 sec. Capstone Bonus: Using Disengage will clear any slow effects on you.","Reduces the cooldown of Disengage by 4 sec. Capstone Bonus: Using Disengage will clear any slow effects on you.","Reduces the cooldown of Disengage by 6 sec. Capstone Bonus: Using Disengage will clear any slow effects on you."],"system":"classic"},{"id":"talent-1810","treeId":"hunter-survival","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/talents/icons/ability_hunter_survivalinstincts.png","maxRank":3,"name":"Survival Instincts","description":"Reduces all damage taken by 3%. Increases the critical strike chance of your Arcane Shot, Steady Shot, Explosive Shot and Glaive Toss by 6%.","rankDescriptions":["Reduces all damage taken by 1%. Increases the critical strike chance of your Arcane Shot, Steady Shot, Explosive Shot and Glaive Toss by 2%.","Reduces all damage taken by 2%. Increases the critical strike chance of your Arcane Shot, Steady Shot, Explosive Shot and Glaive Toss by 4%.","Reduces all damage taken by 3%. Increases the critical strike chance of your Arcane Shot, Steady Shot, Explosive Shot and Glaive Toss by 6%."],"system":"classic"},{"id":"talent-2143","treeId":"hunter-survival","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/talents/icons/ability_hunter_longshots.png","maxRank":3,"name":"Sniper Training","description":"While standing still for 3 sec, you gain Sniper Training increasing the damage of your Hunter shots by 3% for 12 seconds. This effect stacks up to 4 times.","rankDescriptions":["While standing still for 3 sec, you gain Sniper Training increasing the damage of your Hunter shots by 1% for 12 seconds. This effect stacks up to 4 times.","While standing still for 3 sec, you gain Sniper Training increasing the damage of your Hunter shots by 2% for 12 seconds. This effect stacks up to 4 times.","While standing still for 3 sec, you gain Sniper Training increasing the damage of your Hunter shots by 3% for 12 seconds. This effect stacks up to 4 times."],"system":"classic"},{"id":"talent-1341","treeId":"hunter-marksmanship","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/spell_frost_stun.png","maxRank":2,"name":"Improved Concussive Shot","description":"Increases the duration of your Concussive Shot's daze effect by 2 sec and the damage of your Concussive Shot by 30%.","rankDescriptions":["Increases the duration of your Concussive Shot's daze effect by 1 sec and the damage of your Concussive Shot by 15%.","Increases the duration of your Concussive Shot's daze effect by 2 sec and the damage of your Concussive Shot by 30%."],"system":"classic"},{"id":"talent-1351","treeId":"hunter-marksmanship","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_arcane_starfire.png","maxRank":2,"name":"Concussive Barrage","description":"Multi-Shot and Chimera Shot attacks have a 100% chance to increase the duration of your Concussive Shot by 3 sec. You cannot increase the duration of your Concussive Shot past its maximum.","rankDescriptions":["Multi-Shot and Chimera Shot attacks have a 50% chance to increase the duration of your Concussive Shot by 3 sec. You cannot increase the duration of your Concussive Shot past its maximum.","Multi-Shot and Chimera Shot attacks have a 100% chance to increase the duration of your Concussive Shot by 3 sec. You cannot increase the duration of your Concussive Shot past its maximum."],"system":"classic"},{"id":"talent-1804","treeId":"hunter-marksmanship","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/ability_hunter_combatexperience.png","maxRank":3,"name":"Combat Experience","description":"Increases your total Agility by 3%. Increases your melee and ranged critical strike chance by 3%. Capstone Bonus: Your Intellect is increased by the listed amountthe listed amount (based on your level).","rankDescriptions":["Increases your total Agility by 1%. Increases your melee and ranged critical strike chance by 1%. Capstone Bonus: Your Intellect is increased by the listed amountthe listed amount (based on your level).","Increases your total Agility by 2%. Increases your melee and ranged critical strike chance by 2%. Capstone Bonus: Your Intellect is increased by the listed amountthe listed amount (based on your level).","Increases your total Agility by 3%. Increases your melee and ranged critical strike chance by 3%. Capstone Bonus: Your Intellect is increased by the listed amountthe listed amount (based on your level)."],"system":"classic"},{"id":"talent-1806","treeId":"hunter-marksmanship","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/ability_hunter_zenarchery.png","maxRank":3,"name":"Careful Aim","description":"@req:300036@ Increases your chance to hit with spells and abilities by 3%. Increases your ranged attack power by an amount equal to 60% of your total Intellect","rankDescriptions":["@req:300036@ Increases your chance to hit with spells and abilities by 1%. Increases your ranged attack power by an amount equal to 20% of your total Intellect","@req:300036@ Increases your chance to hit with spells and abilities by 2%. Increases your ranged attack power by an amount equal to 40% of your total Intellect","@req:300036@ Increases your chance to hit with spells and abilities by 3%. Increases your ranged attack power by an amount equal to 60% of your total Intellect"],"system":"classic"},{"id":"talent-1818","treeId":"hunter-marksmanship","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/ability_hunter_goforthethroat.png","maxRank":2,"name":"Go for the Throat","description":"Your ranged and melee critical strikes cause your tamed beast to generate 30 Focus. Dominate undead, enslaved demon or tamed dragonkin generate 30 Energy. This effect cannot occur more than once every 2 seconds.","rankDescriptions":["Your ranged and melee critical strikes cause your tamed beast to generate 15 Focus. Dominate undead, enslaved demon or tamed dragonkin generate 15 Energy. This effect cannot occur more than once every 2 seconds.","Your ranged and melee critical strikes cause your tamed beast to generate 30 Focus. Dominate undead, enslaved demon or tamed dragonkin generate 30 Energy. This effect cannot occur more than once every 2 seconds."],"system":"classic"},{"id":"talent-2130","treeId":"hunter-marksmanship","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_hunter_piercingshots.png","maxRank":3,"name":"Piercing Shots","description":"Your critical Aimed Shot, Steady Shot, Arcane Shot, Chimera Shot, Multi-Shot and Kill Shot cause the target to take 25% of the damage dealt over 8 seconds. Piercing Shots reduces all periodic healing and absorbs on the target by 15%.","rankDescriptions":["Your critical Aimed Shot, Steady Shot, Arcane Shot, Chimera Shot, Multi-Shot and Kill Shot cause the target to take 8% of the damage dealt over 8 seconds. Piercing Shots reduces all periodic healing and absorbs on the target by 5%.","Your critical Aimed Shot, Steady Shot, Arcane Shot, Chimera Shot, Multi-Shot and Kill Shot cause the target to take 16% of the damage dealt over 8 seconds. Piercing Shots reduces all periodic healing and absorbs on the target by 10%.","Your critical Aimed Shot, Steady Shot, Arcane Shot, Chimera Shot, Multi-Shot and Kill Shot cause the target to take 25% of the damage dealt over 8 seconds. Piercing Shots reduces all periodic healing and absorbs on the target by 15%."],"system":"classic"},{"id":"talent-2132","treeId":"hunter-marksmanship","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_hunter_wildquiver.png","maxRank":3,"name":"Wild Quiver","description":"You have a 30% chance to shoot an additional shot when dealing damage with your Auto Shot or Steady Shot, dealing 60% weapon Nature damage.","rankDescriptions":["You have a 10% chance to shoot an additional shot when dealing damage with your Auto Shot or Steady Shot, dealing 60% weapon Nature damage.","You have a 20% chance to shoot an additional shot when dealing damage with your Auto Shot or Steady Shot, dealing 60% weapon Nature damage.","You have a 30% chance to shoot an additional shot when dealing damage with your Auto Shot or Steady Shot, dealing 60% weapon Nature damage."],"system":"classic"},{"id":"talent-1343","treeId":"hunter-marksmanship","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_hunter_snipershot.png","maxRank":3,"name":"Improved Hunter's Mark","description":"Increases the bonus attack power granted by your Hunter's Mark ability by 100%. Reduces the mana cost of your Hunter's Mark ability by 100%.","rankDescriptions":["Increases the bonus attack power granted by your Hunter's Mark ability by 33%. Reduces the mana cost of your Hunter's Mark ability by 33%.","Increases the bonus attack power granted by your Hunter's Mark ability by 66%. Reduces the mana cost of your Hunter's Mark ability by 66%.","Increases the bonus attack power granted by your Hunter's Mark ability by 100%. Reduces the mana cost of your Hunter's Mark ability by 100%."],"system":"classic"},{"id":"talent-1346","treeId":"hunter-marksmanship","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/ability_impalingbolt.png","maxRank":3,"name":"Improved Arcane Shot","description":"Increases the damage done by your Arcane Shot by 15%.","rankDescriptions":["Increases the damage done by your Arcane Shot by 5%.","Increases the damage done by your Arcane Shot by 10%.","Increases the damage done by your Arcane Shot by 15%."],"system":"classic"},{"id":"talent-1348","treeId":"hunter-marksmanship","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/ability_hunter_quickshot.png","maxRank":3,"name":"Improved Stings","description":"Increases the damage done by your Serpent Sting by 20%, and the effectiveness of Viper Sting by 30%. Capstone Bonus: If your Serpent Sting is dispelled, the target is afflicted by Serpent’s Kiss for 5 seconds. Using Chimera Shot on a target afflicted by your Serpent’s Kiss deals bonus Nature damage and applies Serpent Sting.","rankDescriptions":["Increases the damage done by your Serpent Sting by 7%, and the effectiveness of Viper Sting by 10%. Capstone Bonus: If your Serpent Sting is dispelled, the target is afflicted by Serpent’s Kiss for 5 seconds. Using Chimera Shot on a target afflicted by your Serpent’s Kiss deals bonus Nature damage and applies Serpent Sting.","Increases the damage done by your Serpent Sting by 14%, and the effectiveness of Viper Sting by 20%. Capstone Bonus: If your Serpent Sting is dispelled, the target is afflicted by Serpent’s Kiss for 5 seconds. Using Chimera Shot on a target afflicted by your Serpent’s Kiss deals bonus Nature damage and applies Serpent Sting.","Increases the damage done by your Serpent Sting by 20%, and the effectiveness of Viper Sting by 30%. Capstone Bonus: If your Serpent Sting is dispelled, the target is afflicted by Serpent’s Kiss for 5 seconds. Using Chimera Shot on a target afflicted by your Serpent’s Kiss deals bonus Nature damage and applies Serpent Sting."],"system":"classic"},{"id":"talent-1353","treeId":"hunter-marksmanship","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/ability_hunter_readiness.png","maxRank":1,"name":"Readiness","description":"When activated, this ability immediately resets the cooldown on your other Hunter abilities except Bestial Wrath.","rankDescriptions":["When activated, this ability immediately resets the cooldown on your other Hunter abilities except Bestial Wrath."],"system":"classic"},{"id":"talent-1361","treeId":"hunter-marksmanship","index":19,"prerequisiteId":"talent-1353","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1353","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/ability_trueshot.png","maxRank":1,"name":"Trueshot Aura","description":"Increases the attack power of all party and raid members by 5%. Does not stack with other similar effects.","rankDescriptions":["Increases the attack power of all party and raid members by 5%. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-1807","treeId":"hunter-marksmanship","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/ability_hunter_mastermarksman.png","maxRank":3,"name":"Master Marksman","description":"Increases your critical strike chance with ranged attacks by 6%. Reduces the mana cost of your Steady Shot, Aimed Shot, Multi-Shot, Chimera Shot and Kill Shot by 20%.","rankDescriptions":["Increases your critical strike chance with ranged attacks by 2%. Reduces the mana cost of your Steady Shot, Aimed Shot, Multi-Shot, Chimera Shot and Kill Shot by 7%.","Increases your critical strike chance with ranged attacks by 4%. Reduces the mana cost of your Steady Shot, Aimed Shot, Multi-Shot, Chimera Shot and Kill Shot by 14%.","Increases your critical strike chance with ranged attacks by 6%. Reduces the mana cost of your Steady Shot, Aimed Shot, Multi-Shot, Chimera Shot and Kill Shot by 20%."],"system":"classic"},{"id":"talent-1808","treeId":"hunter-marksmanship","index":24,"prerequisiteId":"talent-1807","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1807","requiredRank":5}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/ability_theblackarrow.png","maxRank":1,"name":"Silencing Shot","description":"A shot that deals 75% weapon damage and silences the target for 2 seconds. Non-player victim spellcasting is also interrupted for 3 sec. Silencing Shot cannot trigger any procs. This ability shares a cooldown with other interrupts. This spell cannot miss.","rankDescriptions":["A shot that deals 75% weapon damage and silences the target for 2 seconds. Non-player victim spellcasting is also interrupted for 3 sec. Silencing Shot cannot trigger any procs. This ability shares a cooldown with other interrupts. This spell cannot miss."],"system":"classic"},{"id":"talent-2134","treeId":"hunter-marksmanship","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_hunter_assassinate.png","maxRank":5,"name":"Marked for Death","description":"Increases the damage done by your shots and the damage done by your tamed beast's special abilities by 5% on targets affected by Hunter's Mark. Increases the critical strike damage bonus of your Aimed Shot, Arcane Shot, Steady Shot, Multi-Shot, Chimera Shot, Frenzy Shot, Barbed Shot, Kill Command and Kill Shot by 10%.","rankDescriptions":["Increases the damage done by your shots and the damage done by your tamed beast's special abilities by 1% on targets affected by Hunter's Mark. Increases the critical strike damage bonus of your Aimed Shot, Arcane Shot, Steady Shot, Multi-Shot, Chimera Shot, Frenzy Shot and Kill Shot by 2%.","Increases the damage done by your shots and the damage done by your tamed beast's special abilities by 2% on targets affected by Hunter's Mark. Increases the critical strike damage bonus of your Aimed Shot, Arcane Shot, Steady Shot, Multi-Shot, Chimera Shot, Frenzy Shot and Kill Shot by 4%.","Increases the damage done by your shots and the damage done by your tamed beast's special abilities by 3% on targets affected by Hunter's Mark. Increases the critical strike damage bonus of your Aimed Shot, Arcane Shot, Steady Shot, Multi-Shot, Chimera Shot, Frenzy Shot and Kill Shot by 6%.","Increases the damage done by your shots and the damage done by your tamed beast's special abilities by 4% on targets affected by Hunter's Mark. Increases the critical strike damage bonus of your Aimed Shot, Arcane Shot, Steady Shot, Multi-Shot, Chimera Shot, Frenzy Shot and Kill Shot by 8%.","Increases the damage done by your shots and the damage done by your tamed beast's special abilities by 5% on targets affected by Hunter's Mark. Increases the critical strike damage bonus of your Aimed Shot, Arcane Shot, Steady Shot, Multi-Shot, Chimera Shot, Frenzy Shot, Barbed Shot, Kill Command and Kill Shot by 10%."],"system":"classic"},{"id":"talent-2135","treeId":"hunter-marksmanship","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_hunter_chimerashot2.png","maxRank":1,"name":"Chimera Shot","description":"Deals 230% ranged weapon damage, refreshing the current Stings on your target and triggering extra effects if the Stings are active: Serpent Sting - Instantly deals 90% of the damage done by your Serpent Sting. Viper Sting - Instantly restores mana to you equal to 30% of the total amount drained by your Viper Sting. Scorpid Sting - Disarms the target for 4 sec. This effect cannot occur more than once per 1 minute.","rankDescriptions":["Deals 230% ranged weapon damage, refreshing the current Stings on your target and triggering extra effects if the Stings are active: Serpent Sting - Instantly deals 90% of the damage done by your Serpent Sting. Viper Sting - Instantly restores mana to you equal to 30% of the total amount drained by your Viper Sting. Scorpid Sting - Disarms the target for 4 sec. This effect cannot occur more than once per 1 minute."],"system":"classic"},{"id":"talent-2197","treeId":"hunter-marksmanship","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/ability_hunter_focusedaim.png","maxRank":3,"name":"Focused Aim","description":"Increases your chance to hit with spells and abilities by 3%. Reduces the pushback suffered from damaging attacks while casting Steady Shot by 100%.","rankDescriptions":["Increases your chance to hit with spells and abilities by 1%. Reduces the pushback suffered from damaging attacks while casting Steady Shot by 33%.","Increases your chance to hit with spells and abilities by 2%. Reduces the pushback suffered from damaging attacks while casting Steady Shot by 66%.","Increases your chance to hit with spells and abilities by 3%. Reduces the pushback suffered from damaging attacks while casting Steady Shot by 100%."],"system":"classic"},{"id":"talent-1342","treeId":"hunter-marksmanship","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_frost_wizardmark.png","maxRank":3,"name":"Efficiency","description":"Increases your Ranged attack speed by 10%. Reduces the mana cost of your Shots and Stings by 30%.","rankDescriptions":["Increases your Ranged attack speed by 3%. Reduces the mana cost of your Shots and Stings by 10%.","Increases your Ranged attack speed by 7%. Reduces the mana cost of your Shots and Stings by 20%.","Increases your Ranged attack speed by 10%. Reduces the mana cost of your Shots and Stings by 30%."],"system":"classic"},{"id":"talent-1344","treeId":"hunter-marksmanship","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_searingarrow.png","maxRank":5,"name":"Lethal Shots","description":"Increases your critical strike chance with ranged weapons by 5%. Increases the damage done by Arcane Shot by 10%.","rankDescriptions":["Increases your critical strike chance with ranged weapons by 1%. Increases the damage done by Arcane Shot by 2%.","Increases your critical strike chance with ranged weapons by 2%. Increases the damage done by Arcane Shot by 4%.","Increases your critical strike chance with ranged weapons by 3%. Increases the damage done by Arcane Shot by 6%.","Increases your critical strike chance with ranged weapons by 4%. Increases the damage done by Arcane Shot by 8%.","Increases your critical strike chance with ranged weapons by 5%. Increases the damage done by Arcane Shot by 10%."],"system":"classic"},{"id":"talent-1345","treeId":"hunter-marksmanship","index":9,"prerequisiteId":"talent-1349","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1349","requiredRank":5}],"column":3,"row":3,"icon":"/assets/ui/talents/icons/inv_spear_07.png","maxRank":1,"name":"Aimed Shot","description":"An aimed shot that deals 210% weapon damage plus the listed amount attack power*0.20+0} and reduces healing done to that target by 30%. Lasts 6 seconds. Does not stack with other similar effects.","rankDescriptions":["An aimed shot that deals 210% weapon damage plus the listed amount attack power*0.20+0} and reduces healing done to that target by 30%. Lasts 6 seconds. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-1347","treeId":"hunter-marksmanship","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/ability_upgrademoonglaive.png","maxRank":3,"name":"Barrage","description":"Increases the damage done by your Multi-Shot, Aimed Shot, Chimera Shot, Kill Shot and Volley spells by 12%. Increases the healing reduction effect of Aimed Shot by 10%.","rankDescriptions":["Increases the damage done by your Multi-Shot, Aimed Shot, Chimera Shot, Kill Shot and Volley spells by 4%. Increases the healing reduction effect of Aimed Shot by 4%.","Increases the damage done by your Multi-Shot, Aimed Shot, Chimera Shot, Kill Shot and Volley spells by 8%. Increases the healing reduction effect of Aimed Shot by 7%.","Increases the damage done by your Multi-Shot, Aimed Shot, Chimera Shot, Kill Shot and Volley spells by 12%. Increases the healing reduction effect of Aimed Shot by 10%."],"system":"classic"},{"id":"talent-1349","treeId":"hunter-marksmanship","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/ability_piercedamage.png","maxRank":3,"name":"Mortal Shots","description":"Increases the critical strike damage bonus of your ranged Hunter abilities by 20%. Increases the duration of your Aimed Shot by 3 seconds.","rankDescriptions":["Increases the critical strike damage bonus of your ranged Hunter abilities by 7%. Increases the duration of your Aimed Shot by 1 seconds.","Increases the critical strike damage bonus of your ranged Hunter abilities by 14%. Increases the duration of your Aimed Shot by 2 seconds.","Increases the critical strike damage bonus of your ranged Hunter abilities by 20%. Increases the duration of your Aimed Shot by 3 seconds."],"system":"classic"},{"id":"talent-1821","treeId":"hunter-marksmanship","index":20,"prerequisiteId":"talent-1347","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-1347","requiredRank":3}],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_upgrademoonglaive.png","maxRank":3,"name":"Improved Barrage","description":"Increases the critical strike chance of your Multi-Shot, Aimed Shot, Chimera Shot and Kill Shot abilities by 15% and reduces their mana cost by 30%. Reduces the pushback suffered from damaging attacks while channeling Volley by 100%.","rankDescriptions":["Increases the critical strike chance of your Multi-Shot, Aimed Shot, Chimera Shot and Kill Shot abilities by 5% and reduces their mana cost by 10%. Reduces the pushback suffered from damaging attacks while channeling Volley by 33%.","Increases the critical strike chance of your Multi-Shot, Aimed Shot, Chimera Shot and Kill Shot abilities by 10% and reduces their mana cost by 20%. Reduces the pushback suffered from damaging attacks while channeling Volley by 66%.","Increases the critical strike chance of your Multi-Shot, Aimed Shot, Chimera Shot and Kill Shot abilities by 15% and reduces their mana cost by 30%. Reduces the pushback suffered from damaging attacks while channeling Volley by 100%."],"system":"classic"},{"id":"talent-2131","treeId":"hunter-marksmanship","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_hunter_rapidregeneration.png","maxRank":2,"name":"Rapid Recuperation","description":"Regenerate 4% of your base mana every 3 sec while under the effect of Rapid Fire. Regenerate 2% of your base mana every 2 sec when you gain Rapid Killing.","rankDescriptions":["Regenerate 2% of your base mana every 3 sec while under the effect of Rapid Fire. Regenerate 1% of your base mana every 2 sec when you gain Rapid Killing.","Regenerate 4% of your base mana every 3 sec while under the effect of Rapid Fire. Regenerate 2% of your base mana every 2 sec when you gain Rapid Killing."],"system":"classic"},{"id":"talent-2133","treeId":"hunter-marksmanship","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_hunter_improvedsteadyshot.png","maxRank":3,"name":"Improved Steady Shot","description":"Your Steady Shot has a 50% chance to empower your next Aimed Shot, Arcane Shot, Chimera Shot, or Multi-Shots, increasing its damage by 20% and reducing its mana cost by 25%. Capstone Bonus: Steady Shots fired while remaining fully stationary are guaranteed to trigger this talent and will also make the empowered shots pierce 30% of the targets' armor.","rankDescriptions":["Your Steady Shot has a 17% chance to empower your next Aimed Shot, Arcane Shot, Chimera Shot, or Multi-Shots, increasing its damage by 20% and reducing its mana cost by 25%. Capstone Bonus: Steady Shots fired while remaining fully stationary are guaranteed to trigger this talent and will also make the empowered shots pierce 30% of the targets' armor.","Your Steady Shot has a 34% chance to empower your next Aimed Shot, Arcane Shot, Chimera Shot, or Multi-Shots, increasing its damage by 20% and reducing its mana cost by 25%. Capstone Bonus: Steady Shots fired while remaining fully stationary are guaranteed to trigger this talent and will also make the empowered shots pierce 30% of the targets' armor.","Your Steady Shot has a 50% chance to empower your next Aimed Shot, Arcane Shot, Chimera Shot, or Multi-Shots, increasing its damage by 20% and reducing its mana cost by 25%. Capstone Bonus: Steady Shots fired while remaining fully stationary are guaranteed to trigger this talent and will also make the empowered shots pierce 30% of the targets' armor."],"system":"classic"},{"id":"talent-1362","treeId":"hunter-marksmanship","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/talents/icons/inv_weapon_rifle_06.png","maxRank":3,"name":"Ranged Weapon Specialization","description":"Increases the damage dealt by your Auto Shot and Hunter Shots by 6%.","rankDescriptions":["Increases the damage dealt by your Auto Shot and Hunter Shots by 2%.","Increases the damage dealt by your Auto Shot and Hunter Shots by 4%.","Increases the damage dealt by your Auto Shot and Hunter Shots by 6%."],"system":"classic"},{"id":"talent-1819","treeId":"hunter-marksmanship","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/ability_hunter_rapidkilling.png","maxRank":3,"name":"Rapid Killing","description":"Increases the damage of your Hunter shots against targets below 35% health by 12%. Reduces the cooldown of your Rapid Fire ability by 60 seconds. Killing an opponent that yields experience or honor makes your next two Aimed Shot, Arcane Shot, Kill Shot or Chimera Shots cause 30% additional damage.","rankDescriptions":["Increases the damage of your Hunter shots against targets below 35% health by 4%. Reduces the cooldown of your Rapid Fire ability by 20 seconds. Killing an opponent that yields experience or honor makes your next two Aimed Shot, Arcane Shot, Kill Shot or Chimera Shots cause 10% additional damage.","Increases the damage of your Hunter shots against targets below 35% health by 8%. Reduces the cooldown of your Rapid Fire ability by 40 seconds. Killing an opponent that yields experience or honor makes your next two Aimed Shot, Arcane Shot, Kill Shot or Chimera Shots cause 20% additional damage.","Increases the damage of your Hunter shots against targets below 35% health by 12%. Reduces the cooldown of your Rapid Fire ability by 60 seconds. Killing an opponent that yields experience or honor makes your next two Aimed Shot, Arcane Shot, Kill Shot or Chimera Shots cause 30% additional damage."],"system":"classic"}]} diff --git a/src/game/generated/talentUi/knight-of-xoroth.json b/src/game/generated/talentUi/knight-of-xoroth.json new file mode 100644 index 00000000..ec35b53c --- /dev/null +++ b/src/game/generated/talentUi/knight-of-xoroth.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"knight-of-xoroth","trees":[{"id":"coa-knight-of-xoroth-46","classId":"knight-of-xoroth","name":"Hellfire","icon":"/assets/ui/spells/inv_firecatmount.png","background":"","description":"Hellfire nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-knight-of-xoroth-45","classId":"knight-of-xoroth","name":"War","icon":"/assets/ui/spells/inv_mace_2h_pvpcataclysms3_c_01.png","background":"","description":"War nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-knight-of-xoroth-47","classId":"knight-of-xoroth","name":"Defiance","icon":"/assets/ui/spells/inv_shield_draenorraid_d_02.png","background":"","description":"Defiance nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-knight-of-xoroth-87","classId":"knight-of-xoroth","name":"Class","icon":"/assets/ui/spells/_enslavespell_fire.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-12166","treeId":"coa-knight-of-xoroth-45","index":12166,"prerequisiteId":"coa-entry-4016","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4016","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_mace_2h_pvpcataclysms3_c_01.png","maxRank":1,"name":"Warbringer","description":"Transforms your Flames of Xoroth into Warbringer.WarbringerSlam the ground, dealing 65% Weapon Damage plus 2 to nearby enemies, reducing the effectiveness of any healing by -50% for 10 seconds. Deals increased damage per Demonfire consumed.","rankDescriptions":["Transforms your Flames of Xoroth into Warbringer.WarbringerSlam the ground, dealing 65% Weapon Damage plus 2 to nearby enemies, reducing the effectiveness of any healing by -50% for 10 seconds. Deals increased damage per Demonfire consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4016","treeId":"coa-knight-of-xoroth-45","index":4016,"prerequisiteId":"coa-entry-30668","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30668","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/warrior_skullbanner.png","maxRank":1,"name":"Crusher","description":"Level 10 Passive Doubles the base Weapon Damage dealt by Infernal Strike and increases all critical damage dealt by 25%.","rankDescriptions":["Level 10 Passive Doubles the base Weapon Damage dealt by Infernal Strike and increases all critical damage dealt by 25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-31166","treeId":"coa-knight-of-xoroth-45","index":31166,"prerequisiteId":"coa-entry-4016","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4016","requiredRank":1},{"talentId":"coa-entry-30668","requiredRank":1}],"column":5,"row":2,"icon":"/assets/ui/spells/inv_sword_140.png","maxRank":1,"name":"Gore","description":"2 Charges, 8 sec recharge Generates 1 Demonfire Quickly gore an enemy, dealing 100% Weapon Damage plus 15.","rankDescriptions":["2 Charges, 8 sec recharge Generates 1 Demonfire Quickly gore an enemy, dealing 100% Weapon Damage plus 15."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34127","treeId":"coa-knight-of-xoroth-45","index":34127,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/ability_skeer_bloodletting.png","maxRank":3,"name":"Mutilation","description":"Increases the damage of Gore and Sever by 30%.","rankDescriptions":["Increases the damage of Gore and Sever by 10%.","Increases the damage of Gore and Sever by 20%.","Increases the damage of Gore and Sever by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6936","treeId":"coa-knight-of-xoroth-45","index":6936,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/sha_ability_warrior_bloodnova_nightmare.png","maxRank":1,"name":"Gored","description":"Damage dealt by Gore and Meatsaw now increases your target's damage taken from Skulltaker and Warbringer by 15% for 10 seconds, stacking 2 times.","rankDescriptions":["Damage dealt by Gore and Meatsaw now increases your target's damage taken from Skulltaker and Warbringer by 15% for 10 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7881","treeId":"coa-knight-of-xoroth-45","index":7881,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_stave_2h_pvppandarias1_c_02.png","maxRank":2,"name":"Consuming Blade","description":"Increases the critical strike chance of Gore by 50% and your expertise by 10.","rankDescriptions":["Increases the critical strike chance of Gore by 25% and your expertise by 5.","Increases the critical strike chance of Gore by 50% and your expertise by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11261","treeId":"coa-knight-of-xoroth-45","index":11261,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/_diablo3_execute_deathknight.png","maxRank":1,"name":"Ripper","description":"Level 20 Passive Damaging abilities that spend Demonfire now refresh a charge of Gore.","rankDescriptions":["Level 20 Passive Damaging abilities that spend Demonfire now refresh a charge of Gore."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7408","treeId":"coa-knight-of-xoroth-45","index":7408,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/inv_mace_1h_pvppandarias1_d_01.png","maxRank":1,"name":"Fiend","description":"Casting Sever now removes the cost of your next Infernal Strike.","rankDescriptions":["Casting Sever now removes the cost of your next Infernal Strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30694","treeId":"coa-knight-of-xoroth-45","index":30694,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/ability_warrior_titansgrip.png","maxRank":1,"name":"Hellfire Striker","description":"Increases your critical strike and hit chance by 3%.","rankDescriptions":["Increases your critical strike and hit chance by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29621","treeId":"coa-knight-of-xoroth-45","index":29621,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/kox_death.png","maxRank":1,"name":"Pestilence of Death","description":"Emanate a pestilence, increasing your critical damage by 10%.","rankDescriptions":["Emanate a pestilence, increasing your critical damage by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7889","treeId":"coa-knight-of-xoroth-45","index":7889,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/spell_fire_flameblades.png","maxRank":1,"name":"Burning Blade","description":"Ignite your weapon, causing you to send out searing fire with each melee critical strike, dealing 270 + 32.5% AP Fire damage in a line and increasing your Armor penetration by 30% while active. Lasts for 6 attacks. Lasts for 1 additional attack per Demonfire consumed.","rankDescriptions":["Ignite your weapon, causing you to send out searing fire with each melee critical strike, dealing 270 + 32.5% AP Fire damage in a line and increasing your Armor penetration by 30% while active. Lasts for 6 attacks. Lasts for 1 additional attack per Demonfire consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30463","treeId":"coa-knight-of-xoroth-45","index":30463,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/nhi_nightmareblade_border.png","maxRank":1,"name":"Burning Blade","description":"Your Skulltaker now ignores -25% of the target's Armor.","rankDescriptions":["Your Skulltaker now ignores -25% of the target's Armor."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6518","treeId":"coa-knight-of-xoroth-45","index":6518,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/spell_nature_reincarnation.png","maxRank":1,"name":"Bringer of Destruction","description":"Critical damage taken now grants you 1 Demonfire and 5 Rage. Can only occur once every 3 sec.","rankDescriptions":["Critical damage taken now grants you 1 Demonfire and 5 Rage. Can only occur once every 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7888","treeId":"coa-knight-of-xoroth-45","index":7888,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/inv_axe_1h_draenorraid_d_03.png","maxRank":1,"name":"Absolutism","description":"Damage dealt by Meatsaw now ignores -10% of the target's Armor.","rankDescriptions":["Damage dealt by Meatsaw now ignores -10% of the target's Armor."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34059","treeId":"coa-knight-of-xoroth-45","index":34059,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/ability_warlock_improveddemonictactics.png","maxRank":1,"name":"Boundless Fury","description":"Increases the effectiveness of the unleash effect from Pestilence of Death by 30%.","rankDescriptions":["Increases the effectiveness of the unleash effect from Pestilence of Death by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30705","treeId":"coa-knight-of-xoroth-45","index":30705,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/polearm_2h_deathwingraiddw_d_01.png","maxRank":1,"name":"Carver","description":"Level 30 Passive Critical strikes with Gore now generate 1 additional Demonfire.","rankDescriptions":["Level 30 Passive Critical strikes with Gore now generate 1 additional Demonfire."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-31259","treeId":"coa-knight-of-xoroth-45","index":31259,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_offhand_1h_artifactskulloferedar_d_05.png","maxRank":1,"name":"Murderous Might","description":"Increases the base damage of abilities that spend Demonfire by 25%.","rankDescriptions":["Increases the base damage of abilities that spend Demonfire by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7810","treeId":"coa-knight-of-xoroth-45","index":7810,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/warrior_talent_icon_innerrage.png","maxRank":1,"name":"Decimation","description":"Your next Skulltaker or Warbringer is guaranteed to critically strike for 25% increased damage. Lasts 30 seconds.","rankDescriptions":["Your next Skulltaker or Warbringer is guaranteed to critically strike for 25% increased damage. Lasts 30 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7883","treeId":"coa-knight-of-xoroth-45","index":7883,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/ability_fomor_boss_shout.png","maxRank":1,"name":"Screamin' Demon","description":"Reduces the cooldown of Unleash Pestilence by -15 sec.","rankDescriptions":["Reduces the cooldown of Unleash Pestilence by -15 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12817","treeId":"coa-knight-of-xoroth-45","index":12817,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_fire_enchantweapon.png","maxRank":1,"name":"Burning Swings","description":"Your Burning Blade now affects 4 additional attacks.","rankDescriptions":["Your Burning Blade now affects 4 additional attacks."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34125","treeId":"coa-knight-of-xoroth-45","index":34125,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_fire_incinerate.png","maxRank":1,"name":"Hellsmelted","description":"Increases the critical strike chance and damage of Burning Blade by 30%.","rankDescriptions":["Increases the critical strike chance and damage of Burning Blade by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34119","treeId":"coa-knight-of-xoroth-45","index":34119,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/nhi_fireclaw_border.png","maxRank":1,"name":"Hand of Doom","description":"Increases the Weapon Damage dealt by Sever by 10%, increased by 10% for each Demonfire you have active.","rankDescriptions":["Increases the Weapon Damage dealt by Sever by 10%, increased by 10% for each Demonfire you have active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7929","treeId":"coa-knight-of-xoroth-45","index":7929,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/nhi_fireghost_border.png","maxRank":1,"name":"Conqueror's Will","description":"Increases the critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, Physical critical strikes now increase the target's Physical damage taken by 4% for 20 seconds.","rankDescriptions":["Increases the critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, Physical critical strikes now increase the target's Physical damage taken by 4% for 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11890","treeId":"coa-knight-of-xoroth-45","index":11890,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/5_druideskill47_border.png","maxRank":2,"name":"Hellborn","description":"Generating a stack of Demon's Blood now has a 10% chance to unleash your active Pestilence at half of their effectiveness.","rankDescriptions":["Generating a stack of Demon's Blood now has a 5% chance to unleash your active Pestilence at half of their effectiveness.","Generating a stack of Demon's Blood now has a 10% chance to unleash your active Pestilence at half of their effectiveness."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11212","treeId":"coa-knight-of-xoroth-45","index":11212,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_weapon_shortblade_40.png","maxRank":1,"name":"Chop Shop","description":"Each stack of Demon's Blood now increases the critical strike chance of Sever and Meatsaw by 1%.","rankDescriptions":["Each stack of Demon's Blood now increases the critical strike chance of Sever and Meatsaw by 1%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9262","treeId":"coa-knight-of-xoroth-45","index":9262,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_axe_104.png","maxRank":1,"name":"Render","description":"Level 40 Passive Increases your melee haste rating by 30% of your Strength.","rankDescriptions":["Level 40 Passive Increases your melee haste rating by 30% of your Strength."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-34056","treeId":"coa-knight-of-xoroth-45","index":34056,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/inv_glaive_1h_artifactazgalor_d_03.png","maxRank":1,"name":"Domination","description":"Melee critical strikes now reduce the cooldown of Burning Blade by -1 sec.","rankDescriptions":["Melee critical strikes now reduce the cooldown of Burning Blade by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34104","treeId":"coa-knight-of-xoroth-45","index":34104,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/inv_axe_2h_artifactmaw_d_01.png","maxRank":1,"name":"Hook, Line, and Sinker","description":"Reduces the cooldown of Flesh Hook and Chainwhip by -5 sec.","rankDescriptions":["Reduces the cooldown of Flesh Hook and Chainwhip by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29280","treeId":"coa-knight-of-xoroth-45","index":29280,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_knife_1h_pvppandarias1_c_01.png","maxRank":1,"name":"Demonic Frenzy","description":"Casting Sever now increases your attack speed by 20% for 10 seconds. Casting Gore extends the duration of this effect by 3 sec.","rankDescriptions":["Casting Sever now increases your attack speed by 20% for 10 seconds. Casting Gore extends the duration of this effect by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6360","treeId":"coa-knight-of-xoroth-45","index":6360,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_axe_07.png","maxRank":1,"name":"Jagged Edge","description":"Increases your Rage generated from damage dealt by 20%.","rankDescriptions":["Increases your Rage generated from damage dealt by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6906","treeId":"coa-knight-of-xoroth-45","index":6906,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/spell_nature_insect_swarm2.png","maxRank":1,"name":"Knight of Pestilence","description":"Increases the critical damage of your Pestilences by 50%.","rankDescriptions":["Increases the critical damage of your Pestilences by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7892","treeId":"coa-knight-of-xoroth-45","index":7892,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/artifactability_unholydeathknight_flagellation.png","maxRank":1,"name":"The Butcher","description":"Damage dealt by Meatsaw now increases the damage dealt by subsequent Meatsaws by 10% and reduces its global cooldown by -5% for 10 seconds, stacking 5 times.","rankDescriptions":["Damage dealt by Meatsaw now increases the damage dealt by subsequent Meatsaws by 10% and reduces its global cooldown by -5% for 10 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7891","treeId":"coa-knight-of-xoroth-45","index":7891,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/spells/inv_mace_1h_pvp410_c_01.png","maxRank":1,"name":"Brimstone Bludgeon","description":"Transforms your Sever into Brimstone Bludgeon.Brimstone BludgeonGenerates 1 Demonfire Bludgeon an enemy and all nearby enemies, dealing 250% Weapon Damage. Unleashes your active Pestilence to trigger a powerful effect. Scales with modifiers to Sever.","rankDescriptions":["Transforms your Sever into Brimstone Bludgeon.Brimstone BludgeonGenerates 1 Demonfire Bludgeon an enemy and all nearby enemies, dealing 250% Weapon Damage. Unleashes your active Pestilence to trigger a powerful effect. Scales with modifiers to Sever."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34061","treeId":"coa-knight-of-xoroth-45","index":34061,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":9,"icon":"/assets/ui/spells/spell_shadow_unholyfrenzy.png","maxRank":1,"name":"Blood Frenzy","description":"Abilities that spend Demonfire now refund 1 Demonfire when used with at least 4 stacks.","rankDescriptions":["Abilities that spend Demonfire now refund 1 Demonfire when used with at least 4 stacks."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34058","treeId":"coa-knight-of-xoroth-45","index":34058,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/inv_axe_1h_blacksmithing_03.png","maxRank":1,"name":"Pestilence Unbound","description":"When you use an ability that consumes Demonfire with 6 stacks, you now unleash your active Pestilence at half of their effectiveness.","rankDescriptions":["When you use an ability that consumes Demonfire with 6 stacks, you now unleash your active Pestilence at half of their effectiveness."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4217","treeId":"coa-knight-of-xoroth-45","index":4217,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_winston_rage.png","maxRank":1,"name":"Knight of the Apocalypse","description":"Level 50 Passive Unleash Pestilence now triggers no cooldown on it's first use. Unleash Pestilence can only be reset this way once every 30 sec.","rankDescriptions":["Level 50 Passive Unleash Pestilence now triggers no cooldown on it's first use. Unleash Pestilence can only be reset this way once every 30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-29519","treeId":"coa-knight-of-xoroth-45","index":29519,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/nhi_blood_blade_border.png","maxRank":1,"name":"Demonic Blade","description":"Damaging abilities that spend Demonfire now increase the damage and cost of your next 2 Gores by 25% for 12 seconds. At the end of the duration, or when all stacks are consumed, you instantly cast Meatsaw free of cost.","rankDescriptions":["Damaging abilities that spend Demonfire now increase the damage and cost of your next 2 Gores by 25% for 12 seconds. At the end of the duration, or when all stacks are consumed, you instantly cast Meatsaw free of cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29376","treeId":"coa-knight-of-xoroth-45","index":29376,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/custom_t_bloodmaw_border.png","maxRank":1,"name":"Gorged","description":"Gore now heals you for 50% of the damage dealt over 3 sec and grants a stack of Gorged for 30 seconds. At 3 stacks, your next Sever will consume the stacks to leech an additional 200% of the damage dealt by it from up to 5 enemies within 5 yds. In addition, Sever now strikes an additional time after 1 sec but has a 2 increased cooldown.","rankDescriptions":["Gore now heals you for 50% of the damage dealt over 3 sec and grants a stack of Gorged for 30 seconds. At 3 stacks, your next Sever will consume the stacks to leech an additional 200% of the damage dealt by it from up to 5 enemies within 5 yds. In addition, Sever now strikes an additional time after 1 sec but has a 2 increased cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34120","treeId":"coa-knight-of-xoroth-45","index":34120,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/inv_helm_mail_pvphuntergladiator_o_01.png","maxRank":1,"name":"Hellknight","description":"While above 75% health, all direct Physical damage dealt will grant a stack of Hellknight.HellknightMovement speed increased and global cooldowns reduced by -5%. Physical Damage and critical strike chance increased by 1%, stacking 5 times. Lasts 20 seconds.","rankDescriptions":["While above 75% health, all direct Physical damage dealt will grant a stack of Hellknight.HellknightMovement speed increased and global cooldowns reduced by -5%. Physical Damage and critical strike chance increased by 1%, stacking 5 times. Lasts 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31167","treeId":"coa-knight-of-xoroth-46","index":31167,"prerequisiteId":"coa-entry-4017","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4017","requiredRank":1},{"talentId":"coa-entry-30176","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_firecatmount.png","maxRank":1,"name":"Hellmaw","description":"Burn an enemy with a fiery strike, dealing 18 + 10% AP + 18% SP Shadowflame Damage, plus an additional 72 + 56% AP + 57.2% SP over 12 seconds. Deals 20% increased damage per Demonfire consumed.","rankDescriptions":["Burn an enemy with a fiery strike, dealing 18 + 10% AP + 18% SP Shadowflame Damage, plus an additional 72 + 56% AP + 57.2% SP over 12 seconds. Deals 20% increased damage per Demonfire consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4017","treeId":"coa-knight-of-xoroth-46","index":4017,"prerequisiteId":"coa-entry-30176","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30176","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/5_sumimparmy_border.png","maxRank":1,"name":"Greater Imp","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-6519","treeId":"coa-knight-of-xoroth-46","index":6519,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/spell_fire_moltenblood.png","maxRank":2,"name":"Combusting Blade","description":"Increases your Intellect by 10% and reduces the Rage cost of Infernal Strike by -10.","rankDescriptions":["Increases your Intellect by 5% and reduces the Rage cost of Infernal Strike by -5.","Increases your Intellect by 10% and reduces the Rage cost of Infernal Strike by -10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30691","treeId":"coa-knight-of-xoroth-46","index":30691,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/_auracloak_fire.png","maxRank":2,"name":"Invasion","description":"All Fire damage dealt is increased by 20% to enemies above 80% health.","rankDescriptions":["All Fire damage dealt is increased by 10% to enemies above 80% health.","All Fire damage dealt is increased by 20% to enemies above 80% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30697","treeId":"coa-knight-of-xoroth-46","index":30697,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/kox_apoc.png","maxRank":1,"name":"Pestilence of Apocalypse","description":"Emanate the Pestilence of Apocalypse, causing nearby enemies to take 10% increased Fire damage from you.","rankDescriptions":["Emanate the Pestilence of Apocalypse, causing nearby enemies to take 10% increased Fire damage from you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30709","treeId":"coa-knight-of-xoroth-46","index":30709,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_shadowflame_missile.png","maxRank":1,"name":"Seeking Flame","description":"Generates 1 Demonfire Sear an enemy, dealing 63 + 33.62% fire SP + 33% AP Fire damage.","rankDescriptions":["Generates 1 Demonfire Sear an enemy, dealing 63 + 33.62% fire SP + 33% AP Fire damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11256","treeId":"coa-knight-of-xoroth-46","index":11256,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_helmet_103.png","maxRank":1,"name":"Burning Power","description":"Level 20 Passive Increases your attack power by 100% of your Intellect and your spell damage by 50% of your Strength.","rankDescriptions":["Level 20 Passive Increases your attack power by 100% of your Intellect and your spell damage by 50% of your Strength."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-34110","treeId":"coa-knight-of-xoroth-46","index":34110,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/spell_fire_volcano.png","maxRank":1,"name":"To Ashes","description":"Increases the critical strike chance of abilities that spend Demonfire by 5%.","rankDescriptions":["Increases the critical strike chance of abilities that spend Demonfire by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34107","treeId":"coa-knight-of-xoroth-46","index":34107,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_fire_incinerate.png","maxRank":1,"name":"Hellfire Embers","description":"Increases the Fire damage dealt by your Hellfire Imp by 30% against enemies above 80% maximum health.","rankDescriptions":["Increases the Fire damage dealt by your Hellfire Imp by 30% against enemies above 80% maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34068","treeId":"coa-knight-of-xoroth-46","index":34068,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/spell_fire_lavaspawn.png","maxRank":1,"name":"Flamewrath","description":"Increases the critical strike chance of Seeking Flame by 20%.","rankDescriptions":["Increases the critical strike chance of Seeking Flame by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34067","treeId":"coa-knight-of-xoroth-46","index":34067,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/_deathgrip_fire.png","maxRank":1,"name":"Claws of Hell","description":"When you spend at least 4 Demonfire stacks you now refresh the duration of your Unleash Apocalypse on the target.","rankDescriptions":["When you spend at least 4 Demonfire stacks you now refresh the duration of your Unleash Apocalypse on the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34111","treeId":"coa-knight-of-xoroth-46","index":34111,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/nhi_burningeyes_border.png","maxRank":1,"name":"Calamity","description":"Increases the damage of the Unleash effect of Pestilence of Apocalypse by 25% and its duration is increased by 5 sec.","rankDescriptions":["Increases the damage of the Unleash effect of Pestilence of Apocalypse by 25% and its duration is increased by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34066","treeId":"coa-knight-of-xoroth-46","index":34066,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/ability_racial_foregedinflames.png","maxRank":1,"name":"Hellfire Form","description":"Enter your Hellfire Form, increasing your Fire damage dealt by 20% and Fire critical strike chance by 15% for 15 seconds.","rankDescriptions":["Enter your Hellfire Form, increasing your Fire damage dealt by 20% and Fire critical strike chance by 15% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34108","treeId":"coa-knight-of-xoroth-46","index":34108,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/ability_warlock_improveddemonictactics.png","maxRank":1,"name":"Doom","description":"Transforms your Greater Imp into a Doomguard for 12 seconds. While transformed, your Doomguard deals 20% more damage, and its auto attacks ignite the target, dealing 10% of the damage dealt as Fire damage over 6 seconds, stacking 6 times.","rankDescriptions":["Transforms your Greater Imp into a Doomguard for 12 seconds. While transformed, your Doomguard deals 20% more damage, and its auto attacks ignite the target, dealing 10% of the damage dealt as Fire damage over 6 seconds, stacking 6 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29619","treeId":"coa-knight-of-xoroth-46","index":29619,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0000s_0000_sword_border.png","maxRank":1,"name":"Seething Strikes","description":"Increases the damage of Sever by 30% against Burning targets and it now increases the targets chance to be critically struck by 3% for 12 seconds.","rankDescriptions":["Increases the damage of Sever by 30% against Burning targets and it now increases the targets chance to be critically struck by 3% for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30706","treeId":"coa-knight-of-xoroth-46","index":30706,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/spell_fire_felflamering_red.png","maxRank":1,"name":"Cinderblade","description":"Level 30 Passive Increases your critical strike rating by 20% of your Intellect and your spell hit chance by 6%.","rankDescriptions":["Level 30 Passive Increases your critical strike rating by 20% of your Intellect and your spell hit chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7361","treeId":"coa-knight-of-xoroth-46","index":7361,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/spell_shadow_rainoffire.png","maxRank":1,"name":"Rain of Chaos","description":"Casting Flames of Xoroth with 6 Demonfire now calls down a Rain of Chaos.Rain of ChaosMolten rain burns enemies in the area causing 234 Fire Damage over 9 seconds.","rankDescriptions":["Casting Flames of Xoroth with 6 Demonfire now calls down a Rain of Chaos.Rain of ChaosMolten rain burns enemies in the area causing 234 Fire Damage over 9 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34063","treeId":"coa-knight-of-xoroth-46","index":34063,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/ability_demonhunter_torment.png","maxRank":1,"name":"Grotesque","description":"While Hellfire Form is active, your Seeking Flame now has no cooldown and generates an additional Demonfire.","rankDescriptions":["While Hellfire Form is active, your Seeking Flame now has no cooldown and generates an additional Demonfire."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9257","treeId":"coa-knight-of-xoroth-46","index":9257,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/ability_warlock_cremation.png","maxRank":1,"name":"Hellfire Rituals","description":"Critical strikes with Skulltaker now increases the haste of your Greater Imp by 15% for 8 seconds.","rankDescriptions":["Critical strikes with Skulltaker now increases the haste of your Greater Imp by 15% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6929","treeId":"coa-knight-of-xoroth-46","index":6929,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_sword_1h_artifactfelomelorn_d_02.png","maxRank":1,"name":"Infernal Steel","description":"Casting Skulltaker with 6 Demonfire stacks now causes your next Hellmaw within 15 seconds to tick -25% faster and cost -50% less Rage.","rankDescriptions":["Casting Skulltaker with 6 Demonfire stacks now causes your next Hellmaw within 15 seconds to tick -25% faster and cost -50% less Rage."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30393","treeId":"coa-knight-of-xoroth-46","index":30393,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_glaive_1h_artifactaldrochi_d_04.png","maxRank":1,"name":"Indiscriminate","description":"Seeking Flame now spreads Hellmaw and Melt from the target to up to 3 enemies within 6 yds.","rankDescriptions":["Seeking Flame now spreads Hellmaw and Melt from the target to up to 3 enemies within 6 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34105","treeId":"coa-knight-of-xoroth-46","index":34105,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_offhand_1h_artifactdoomhammer_d_01.png","maxRank":2,"name":"Inferno Blast","description":"Increases your critical damage against Burning targets by 40%.","rankDescriptions":["Increases your critical damage against Burning targets by 20%.","Increases your critical damage against Burning targets by 40%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34109","treeId":"coa-knight-of-xoroth-46","index":34109,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/nhi_infernalmadness_border.png","maxRank":1,"name":"Infernal Pummeling","description":"Melt now increases the damage your target takes from Flames of Xoroth and Skulltaker by 10%.","rankDescriptions":["Melt now increases the damage your target takes from Flames of Xoroth and Skulltaker by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30714","treeId":"coa-knight-of-xoroth-46","index":30714,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/achievement_firelands_raid_ragnaros.png","maxRank":1,"name":"Xorothian Empowerment","description":"Increases the attack power of all party and raid members 5%. Does not stack with similar effects.","rankDescriptions":["Increases the attack power of all party and raid members 5%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34098","treeId":"coa-knight-of-xoroth-46","index":34098,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/inv_felbatmountdh.png","maxRank":1,"name":"Hellbringer","description":"Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects.","rankDescriptions":["Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6859","treeId":"coa-knight-of-xoroth-46","index":6859,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/inv_boots_plate_raiddeathknight_i_01.png","maxRank":2,"name":"Infernal Pursuit","description":"Increases your melee haste by 6% and reduces the duration of root effects against you by -30%.","rankDescriptions":["Increases your melee haste by 3% and reduces the duration of root effects against you by -15%.","Increases your melee haste by 6% and reduces the duration of root effects against you by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4706","treeId":"coa-knight-of-xoroth-46","index":4706,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_misc_herb_fireweedbranch.png","maxRank":1,"name":"Impish Pestilence","description":"Level 40 Passive Using a Pestilence now applies a Lesser Pestilence to your pet. You can only apply a Lesser Pestilence to your pet every 10 sec.Pestilence of Apocalypse (Pet)Increases the Imps Fire Damage dealt by 10% and allows 50% of its mana regeneration to continue while in combat.Pestilence of Famine (Pet)Damage dealt by the Imp has a 20% chance to reduce the enemy's melee and ranged attack speed by -20% for 6 seconds.Pestilence of Conquest (Pet)Damage dealt by the Imp has a 20% chance to reduce the enemy's Magic Damage dealt by -5% for 5 seconds.Pestilence of War (Pet)Damage dealt by the Imp has a 20% chance to heal you for 1 + 10% AP health.","rankDescriptions":["Level 40 Passive Using a Pestilence now applies a Lesser Pestilence to your pet. You can only apply a Lesser Pestilence to your pet every 10 sec.Pestilence of Apocalypse (Pet)Increases the Imps Fire Damage dealt by 10% and allows 50% of its mana regeneration to continue while in combat.Pestilence of Famine (Pet)Damage dealt by the Imp has a 20% chance to reduce the enemy's melee and ranged attack speed by -20% for 6 seconds.Pestilence of Conquest (Pet)Damage dealt by the Imp has a 20% chance to reduce the enemy's Magic Damage dealt by -5% for 5 seconds.Pestilence of War (Pet)Damage dealt by the Imp has a 20% chance to heal you for 1 + 10% AP health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-12607","treeId":"coa-knight-of-xoroth-46","index":12607,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/5_sumimp_border.png","maxRank":1,"name":"Partners in Flames","description":"Fire damage dealt by your Greater Imp now has a 25% chance to empower you, increasing your damage dealt by 5% for 10 seconds.","rankDescriptions":["Fire damage dealt by your Greater Imp now has a 25% chance to empower you, increasing your damage dealt by 5% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30704","treeId":"coa-knight-of-xoroth-46","index":30704,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_fire_flameblades.png","maxRank":1,"name":"Unbound Inferno","description":"Your Infernal Strikes against enemies affected by your Flames of Xoroth now blasts nearby enemies for 75 + 10% fire SP + 5% AP Fire damage.","rankDescriptions":["Your Infernal Strikes against enemies affected by your Flames of Xoroth now blasts nearby enemies for 75 + 10% fire SP + 5% AP Fire damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12179","treeId":"coa-knight-of-xoroth-46","index":12179,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/nhi_firestone_border.png","maxRank":1,"name":"Brimstone Flames","description":"Damage dealt by Seeking Flame is increased by 20% on enemies affected by Pestilence of Apocalypse. Damage dealt is increased by an additional 10% for each Demonfire you have active.","rankDescriptions":["Damage dealt by Seeking Flame is increased by 20% on enemies affected by Pestilence of Apocalypse. Damage dealt is increased by an additional 10% for each Demonfire you have active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30179","treeId":"coa-knight-of-xoroth-46","index":30179,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_flaming_splinter.png","maxRank":1,"name":"Brimstone Splinters","description":"Grants Seeking Flame a 30% chance to generate 1 additional Demonfire when it deals damage. Chance to trigger is increased by 5% for each Demonfire you have active.","rankDescriptions":["Grants Seeking Flame a 30% chance to generate 1 additional Demonfire when it deals damage. Chance to trigger is increased by 5% for each Demonfire you have active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34099","treeId":"coa-knight-of-xoroth-46","index":34099,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/ability_racial_forgeoflight.png","maxRank":2,"name":"Shadowflame Forge","description":"Increases the duration of Hellmaw by 6 sec.","rankDescriptions":["Increases the duration of Hellmaw by 3 sec.","Increases the duration of Hellmaw by 6 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30707","treeId":"coa-knight-of-xoroth-46","index":30707,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_fire_explosion_border.png","maxRank":1,"name":"Into the Maw","description":"Hellmaw causes a Hellfire Explosion at the end of its duration, dealing additional Fire damage to all nearby enemies within 5 yards equal to 50% of the periodic damage dealt over the duration.","rankDescriptions":["Hellmaw causes a Hellfire Explosion at the end of its duration, dealing additional Fire damage to all nearby enemies within 5 yards equal to 50% of the periodic damage dealt over the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30713","treeId":"coa-knight-of-xoroth-46","index":30713,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/novart_magicspell_(36)_border.png","maxRank":1,"name":"Punisher","description":"Increases the attack power and spell power scaling of Seeking Flame by 25%.","rankDescriptions":["Increases the attack power and spell power scaling of Seeking Flame by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11106","treeId":"coa-knight-of-xoroth-46","index":11106,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_shadow_summonimp.png","maxRank":1,"name":"Evil Duo","description":"Level 50 Passive Unleashing a Pestilence now causes your Greater Imp to unleash it's Pestilence. The Imp's unleash effect is equivalent to your own unleash effect for the equivalent Pestilence.","rankDescriptions":["Level 50 Passive Unleashing a Pestilence now causes your Greater Imp to unleash it's Pestilence. The Imp's unleash effect is equivalent to your own unleash effect for the equivalent Pestilence."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-34100","treeId":"coa-knight-of-xoroth-46","index":34100,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_xavius_darkruination.png","maxRank":1,"name":"Hellstorm","description":"Create a hellstorm, dealing 77 + 32.04% fire SP + 8% AP Fire damage to up to 8 nearby enemies. Embers then flare every 1 sec for 2 seconds, dealing 28 + 2.5% fire SP + 2.5% AP Fire damage. Duration is increased by 100% for each stack of Demonfire consumed.","rankDescriptions":["Create a hellstorm, dealing 77 + 32.04% fire SP + 8% AP Fire damage to up to 8 nearby enemies. Embers then flare every 1 sec for 2 seconds, dealing 28 + 2.5% fire SP + 2.5% AP Fire damage. Duration is increased by 100% for each stack of Demonfire consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30710","treeId":"coa-knight-of-xoroth-46","index":30710,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_demonhunter_demonictrample.png","maxRank":1,"name":"Ascended Warlock","description":"Your Skulltaker used with 6 stacks of Demonfire now reduces the cooldown of Doom by -5 seconds. In addition, while Doom is active, your Doomguard will now copy your Skulltaker, dealing reduced damage.","rankDescriptions":["Your Skulltaker used with 6 stacks of Demonfire now reduces the cooldown of Doom by -5 seconds. In addition, while Doom is active, your Doomguard will now copy your Skulltaker, dealing reduced damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1710","treeId":"coa-knight-of-xoroth-46","index":1710,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_argusfelstalkermount_red.png","maxRank":1,"name":"Fury of Xoroth","description":"Infernal Strike now grants you a stack of Xorothian Fury, increasing the chance for your next Skulltaker within 10 seconds to critically strike by 10% per stack, up to 3 stacks. Additionally, using Skulltaker with 6 stacks of Demonfire grants you Xorothian Rage, causing your next Infernal Strike within 10 seconds to be guaranteed to critically strike.","rankDescriptions":["Infernal Strike now grants you a stack of Xorothian Fury, increasing the chance for your next Skulltaker within 10 seconds to critically strike by 10% per stack, up to 3 stacks. Additionally, using Skulltaker with 6 stacks of Demonfire grants you Xorothian Rage, causing your next Infernal Strike within 10 seconds to be guaranteed to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30229","treeId":"coa-knight-of-xoroth-47","index":30229,"prerequisiteId":"coa-entry-4018","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4018","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_shield_draenorraid_d_02.png","maxRank":1,"name":"Shieldgore","description":"Transforms your Infernal Strike into Shieldgore.ShieldgoreGenerates 2 Demonfire Gore the target with your spiked shield, causing 23 + 35% AP High Threat Fire Damage, scaling with your block value.","rankDescriptions":["Transforms your Infernal Strike into Shieldgore.ShieldgoreGenerates 2 Demonfire Gore the target with your spiked shield, causing 23 + 35% AP High Threat Fire Damage, scaling with your block value."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4018","treeId":"coa-knight-of-xoroth-47","index":4018,"prerequisiteId":"coa-entry-7099","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-7099","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/ability_warlock_improveddemonictactics.png","maxRank":1,"name":"Brimstone Buckler","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-30236","treeId":"coa-knight-of-xoroth-47","index":30236,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/ability_warlock_empoweredimp.png","maxRank":1,"name":"Call: Hellfire Imp","description":"Generates 2 Demonfire Beckon 1 Hellfire Imp to aid you in battle for 12 seconds and generate 20 Rage. Threat generated by Hellfire Imps is transferred to you.","rankDescriptions":["Generates 2 Demonfire Beckon 1 Hellfire Imp to aid you in battle for 12 seconds and generate 20 Rage. Threat generated by Hellfire Imps is transferred to you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30235","treeId":"coa-knight-of-xoroth-47","index":30235,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_ascend_blacksmith_25.png","maxRank":1,"name":"A Gift from Hell","description":"Reduces the Rage cost of Infernal Strike, Meatsaw, and Melt by -10.","rankDescriptions":["Reduces the Rage cost of Infernal Strike, Meatsaw, and Melt by -10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6679","treeId":"coa-knight-of-xoroth-47","index":6679,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_shadow_impphaseshift.png","maxRank":1,"name":"Imp Gang Boss","description":"Your Call: Hellfire Imp now summons 2 additional imps.","rankDescriptions":["Your Call: Hellfire Imp now summons 2 additional imps."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34085","treeId":"coa-knight-of-xoroth-47","index":34085,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_warlock_summonimpoutland.png","maxRank":1,"name":"Impcaller","description":"Transforms your Call: Hellfire Imp into Impcaller.Impcaller (Aura)Your Infernal Strike now summons a Hellfire Imp to aid you in combat for 10 seconds, but its Rage cost is increased by 10. In addition, the maximum health of your imps is increased by 30%.","rankDescriptions":["Transforms your Call: Hellfire Imp into Impcaller.Impcaller (Aura)Your Infernal Strike now summons a Hellfire Imp to aid you in combat for 10 seconds, but its Rage cost is increased by 10. In addition, the maximum health of your imps is increased by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6620","treeId":"coa-knight-of-xoroth-47","index":6620,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_glove_armor_orcclan_d_01.png","maxRank":2,"name":"Hellsmelted Armor","description":"Each Hellfire Imp active now increases your chance to block by 1%.","rankDescriptions":["Each Hellfire Imp active now increases your chance to block by 1%.","Each Hellfire Imp active now increases your chance to block by 1%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9878","treeId":"coa-knight-of-xoroth-47","index":9878,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/uico_fire_spell_09_border.png","maxRank":1,"name":"Imp Guards","description":"Level 20 Passive Each Hellfire Imp now reduces your damage taken by 1%.","rankDescriptions":["Level 20 Passive Each Hellfire Imp now reduces your damage taken by 1%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-30237","treeId":"coa-knight-of-xoroth-47","index":30237,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/inv_shield_pvp410_c_01.png","maxRank":1,"name":"Bulwark of Xoroth","description":"Damage dealt by Shieldgore and Meatsaw will now apply Torn Flesh, causing the target to bleed for 100 + 37.5% AP over 15 seconds.","rankDescriptions":["Damage dealt by Shieldgore and Meatsaw will now apply Torn Flesh, causing the target to bleed for 100 + 37.5% AP over 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29329","treeId":"coa-knight-of-xoroth-47","index":29329,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/achievement_guild_forgreatjusticerank2.png","maxRank":1,"name":"Warden of Hellfire","description":"Increases the damage dealt by Skulltaker, Flames of Xoroth, and Meatsaw by 30%.","rankDescriptions":["Increases the damage dealt by Skulltaker, Flames of Xoroth, and Meatsaw by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6928","treeId":"coa-knight-of-xoroth-47","index":6928,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/achievement_zone_ironforge.png","maxRank":1,"name":"Hellfire Forgemaster","description":"Increases your block value by 20%.","rankDescriptions":["Increases your block value by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6392","treeId":"coa-knight-of-xoroth-47","index":6392,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/nhi_firerune_(2)_border.png","maxRank":1,"name":"Sacrificial Circle","description":"Sacrifice your Hellfire Imps within 15 yds, healing you 15% of your maximum health, plus an additional amount equal to 25% of each of your Hellfire Imp's maximum health. Hellfire Imps sacrificed in this way leave behind corpses.","rankDescriptions":["Sacrifice your Hellfire Imps within 15 yds, healing you 15% of your maximum health, plus an additional amount equal to 25% of each of your Hellfire Imp's maximum health. Hellfire Imps sacrificed in this way leave behind corpses."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9485","treeId":"coa-knight-of-xoroth-47","index":9485,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/5_druideskill41_border.png","maxRank":1,"name":"Demonfire Retaliation","description":"Grants you a 30% chance to generate a stack of Demonfire when attacked.","rankDescriptions":["Grants you a 30% chance to generate a stack of Demonfire when attacked."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6619","treeId":"coa-knight-of-xoroth-47","index":6619,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_bow_1h_firelandsraid_d_01.png","maxRank":1,"name":"Hellish Rebuke","description":"Generating a stack of Demon's Blood now has a 15% chance to trigger a fiery explosion on up to 5 nearby enemies, dealing 96 Fire damage.","rankDescriptions":["Generating a stack of Demon's Blood now has a 15% chance to trigger a fiery explosion on up to 5 nearby enemies, dealing 96 Fire damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34132","treeId":"coa-knight-of-xoroth-47","index":34132,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/custom_12_summon_imp_army_border.png","maxRank":1,"name":"Implosion","description":"Explode with hellish fire, dealing 51 + 25% Strength + 50% fire SP + 10% AP Fire damage to nearby enemies, beckoning Hellfire Imps to aid you in battle for 12 seconds, and generating 30 Rage. Deals increased damage and increases the amount of imps summoned by 1 for each Demonfire consumed.","rankDescriptions":["Explode with hellish fire, dealing 51 + 25% Strength + 50% fire SP + 10% AP Fire damage to nearby enemies, beckoning Hellfire Imps to aid you in battle for 12 seconds, and generating 30 Rage. Deals increased damage and increases the amount of imps summoned by 1 for each Demonfire consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34077","treeId":"coa-knight-of-xoroth-47","index":34077,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_plate_firelands_d_01.png","maxRank":1,"name":"Hellfire Reprimand","description":"Your Hellfire Imps now have a 20% chance on hit to launch a firebolt dealing 40% Strength Fire damage and reducing enemy attack power by 190 for 10 seconds.","rankDescriptions":["Your Hellfire Imps now have a 20% chance on hit to launch a firebolt dealing 40% Strength Fire damage and reducing enemy attack power by 190 for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5392","treeId":"coa-knight-of-xoroth-47","index":5392,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/nhi_fireblast_border.png","maxRank":1,"name":"Soul Furnace","description":"Sacrificial Circle now grants you a damage absorption shield equal to 15% of the total health of each destroyed imp for 10 sec.","rankDescriptions":["Sacrificial Circle now grants you a damage absorption shield equal to 15% of the total health of each destroyed imp for 10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9260","treeId":"coa-knight-of-xoroth-47","index":9260,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_warlock_moltencore.png","maxRank":1,"name":"Hellfire Resolve","description":"Level 30 Passive Increases your block rating by 15% of your Strength and increases your hit rating by 8% of your Strength.","rankDescriptions":["Level 30 Passive Increases your block rating by 15% of your Strength and increases your hit rating by 8% of your Strength."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-6391","treeId":"coa-knight-of-xoroth-47","index":6391,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/spell_shadow_demonicfortitude.png","maxRank":1,"name":"Demon's Breath","description":"Critical strikes with Shieldgore now unleash an eruption of hellfire, causing 111 + 20% AP Fire damage and generating 1 additional Demonfire.","rankDescriptions":["Critical strikes with Shieldgore now unleash an eruption of hellfire, causing 111 + 20% AP Fire damage and generating 1 additional Demonfire."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6860","treeId":"coa-knight-of-xoroth-47","index":6860,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_shadow_rainoffire.png","maxRank":1,"name":"Demonfire Command","description":"Reduces the cooldown of Implosion by -10 sec and its Rage cost by -5.","rankDescriptions":["Reduces the cooldown of Implosion by -10 sec and its Rage cost by -5."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6681","treeId":"coa-knight-of-xoroth-47","index":6681,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_shield_firelandsraid_d_01.png","maxRank":1,"name":"Infernal Bulwark","description":"Casting Unleash Pestilence now generates 4 stacks of Demonfire and grants Infernal Bulwark.Infernal Bulwark (Proc)Increases block value by 20% for 18 seconds.","rankDescriptions":["Casting Unleash Pestilence now generates 4 stacks of Demonfire and grants Infernal Bulwark.Infernal Bulwark (Proc)Increases block value by 20% for 18 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34079","treeId":"coa-knight-of-xoroth-47","index":34079,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_belt_plate_raidwarrior_j_01.png","maxRank":1,"name":"Stoke the Flames","description":"Your Skulltaker and Melt used with 6 Demonfire now refund 2 Demonfire. Skulltaker used with 6 Demonfire now deals an additional 30% Fire damage.","rankDescriptions":["Your Skulltaker and Melt used with 6 Demonfire now refund 2 Demonfire. Skulltaker used with 6 Demonfire now deals an additional 30% Fire damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31086","treeId":"coa-knight-of-xoroth-47","index":31086,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/achievement_zone_hellfirepeninsula_01.png","maxRank":1,"name":"Speed Demon","description":"Your Suffuse now increases your movement speed by 20%.","rankDescriptions":["Your Suffuse now increases your movement speed by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34086","treeId":"coa-knight-of-xoroth-47","index":34086,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0009s_0000_fire_border.png","maxRank":1,"name":"Brimstone Knight","description":"Increases your Fire damage dealt by 3% and dealing Fire damage increases the enemy spell damage taken by 10% for 15 seconds.","rankDescriptions":["Increases your Fire damage dealt by 3% and dealing Fire damage increases the enemy spell damage taken by 10% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30699","treeId":"coa-knight-of-xoroth-47","index":30699,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/nhi_holychains_border.png","maxRank":1,"name":"Chains of Xoroth","description":"Create demonic chains at target location that slow enemies inside by -80% for 5 seconds. At the end of the duration, it pulls all affected enemies to it.","rankDescriptions":["Create demonic chains at target location that slow enemies inside by -80% for 5 seconds. At the end of the duration, it pulls all affected enemies to it."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34087","treeId":"coa-knight-of-xoroth-47","index":34087,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/5_bull_border.png","maxRank":1,"name":"Pestilent Retaliation","description":"When you block an attack you now have a 5% chance to unleash your active Pestilence at half of its effectiveness. Can only occur once every 5 sec.","rankDescriptions":["When you block an attack you now have a 5% chance to unleash your active Pestilence at half of its effectiveness. Can only occur once every 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29625","treeId":"coa-knight-of-xoroth-47","index":29625,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0004s_0000_armor_border.png","maxRank":1,"name":"Forgefiend's Bulwark","description":"Successful blocks, parries and dodges now have a 30% chance to Enrage you, increasing your damage dealt by 10% for 10 seconds.","rankDescriptions":["Successful blocks, parries and dodges now have a 30% chance to Enrage you, increasing your damage dealt by 10% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9258","treeId":"coa-knight-of-xoroth-47","index":9258,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_fabric_spellfire.png","maxRank":1,"name":"Imp Aura","description":"Level 40 Passive Each Hellfire Imp now increases your Strength by 1%.","rankDescriptions":["Level 40 Passive Each Hellfire Imp now increases your Strength by 1%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-29624","treeId":"coa-knight-of-xoroth-47","index":29624,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/inv_implosion.png","maxRank":1,"name":"Brimstone Striker","description":"Damage dealt by Stoke the Flames now reduces the cooldown of Sever and Juggernaut by -4 sec.","rankDescriptions":["Damage dealt by Stoke the Flames now reduces the cooldown of Sever and Juggernaut by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34097","treeId":"coa-knight-of-xoroth-47","index":34097,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/inv_magemount_fire.png","maxRank":1,"name":"Hellfire Sieger","description":"Doubles the absorption of Black Shield while below 35% health.","rankDescriptions":["Doubles the absorption of Black Shield while below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31079","treeId":"coa-knight-of-xoroth-47","index":31079,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/inv_helmet_103.png","maxRank":1,"name":"Demolisher","description":"Casting Flesh Hook or Chainwhip now taunts the target for 2 seconds and reduces your Physical damage taken by -5% for 10 seconds.","rankDescriptions":["Casting Flesh Hook or Chainwhip now taunts the target for 2 seconds and reduces your Physical damage taken by -5% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7887","treeId":"coa-knight-of-xoroth-47","index":7887,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/nhi_corruptionfire_border.png","maxRank":1,"name":"Hellfire Bellows","description":"Transforms your Flames of Xoroth into Hellfire Bellows.Hellfire BellowsBellow fire on all enemies in a 6 yd cone in front of and behind you, dealing 552 + 27.63% AP + 40% fire SP Fire damage and reducing the cooldown of Chains of Xoroth by -4 sec per enemy hit. Cooldown is reduced by -3 sec for each Demonfire consumed.","rankDescriptions":["Transforms your Flames of Xoroth into Hellfire Bellows.Hellfire BellowsBellow fire on all enemies in a 6 yd cone in front of and behind you, dealing 552 + 27.63% AP + 40% fire SP Fire damage and reducing the cooldown of Chains of Xoroth by -4 sec per enemy hit. Cooldown is reduced by -3 sec for each Demonfire consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30124","treeId":"coa-knight-of-xoroth-47","index":30124,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_shield_01.png","maxRank":1,"name":"Black Skull Shield","description":"Reduces the Rage cost of Shieldgore by -5 and increases its damage by 25%.","rankDescriptions":["Reduces the Rage cost of Shieldgore by -5 and increases its damage by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30700","treeId":"coa-knight-of-xoroth-47","index":30700,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_helm_cloth_raidwarlock_r_01.png","maxRank":2,"name":"Demonic Grit","description":"Grant your summons demonic grit, increasing their total health by 30% and reducing their damage taken by by 20%.","rankDescriptions":["Grant your summons demonic grit, increasing their total health by 15% and reducing their damage taken by by 10%.","Grant your summons demonic grit, increasing their total health by 30% and reducing their damage taken by by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34076","treeId":"coa-knight-of-xoroth-47","index":34076,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/uico_fire_spell_03_border.png","maxRank":1,"name":"Fiend of Forges","description":"Forgefiend's Bulwark now also increases your critical strike chance by 10%.","rankDescriptions":["Forgefiend's Bulwark now also increases your critical strike chance by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30125","treeId":"coa-knight-of-xoroth-47","index":30125,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_trinket_firelands_03.png","maxRank":1,"name":"Hellwrath","description":"Your Demon's Blood can now stack 5 additional times and each stack now increases the absorption amount of Black Shield by 1%.","rankDescriptions":["Your Demon's Blood can now stack 5 additional times and each stack now increases the absorption amount of Black Shield by 1%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30177","treeId":"coa-knight-of-xoroth-47","index":30177,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_shadowflame_groundstate.png","maxRank":1,"name":"Curse of Xoroth","description":"Curse an enemy for 15 seconds, dealing 1575 + 100% AP Shadowflame Damage over 15 seconds. Your next Shieldgore within 12 seconds grants you Black Shield, absorbing 860 + 200% Stamina damage for 30 seconds.","rankDescriptions":["Curse an enemy for 15 seconds, dealing 1575 + 100% AP Shadowflame Damage over 15 seconds. Your next Shieldgore within 12 seconds grants you Black Shield, absorbing 860 + 200% Stamina damage for 30 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29615","treeId":"coa-knight-of-xoroth-47","index":29615,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_stave_2h_firelandsraid_d_01.png","maxRank":1,"name":"Fiery Retribution","description":"Each time a Hellfire Imp dies, you reduce the cooldown of Sacrificial Circle by -2 sec and Implosion by -1 sec.","rankDescriptions":["Each time a Hellfire Imp dies, you reduce the cooldown of Sacrificial Circle by -2 sec and Implosion by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12765","treeId":"coa-knight-of-xoroth-47","index":12765,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_fire_firearmor.png","maxRank":1,"name":"Demonic Bulwark","description":"Level 50 Passive Your successful blocks now have a 30% chance to critically block for twice the normal amount. Chance to trigger is increased by 2% for each Hellfire Imp you have active.","rankDescriptions":["Level 50 Passive Your successful blocks now have a 30% chance to critically block for twice the normal amount. Chance to trigger is increased by 2% for each Hellfire Imp you have active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30498","treeId":"coa-knight-of-xoroth-47","index":30498,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/spell_warlock_summonabyssal.png","maxRank":1,"name":"Call: Hellfire Abyssal","description":"Call down a Hellfire Abyssal from the sky to crash down upon the targeted 8 yd area, dealing 1500 + 100% SP + 100% AP Fire damage. The abyssal remains to aid you in battle for 15 seconds and emits an aura that reduces the damage taken by party and raid members within 40 yds by -5%. Costs -15 less Rage for each active Hellfire Imp.","rankDescriptions":["Call down a Hellfire Abyssal from the sky to crash down upon the targeted 8 yd area, dealing 1500 + 100% SP + 100% AP Fire damage. The abyssal remains to aid you in battle for 15 seconds and emits an aura that reduces the damage taken by party and raid members within 40 yds by -5%. Costs -15 less Rage for each active Hellfire Imp."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7367","treeId":"coa-knight-of-xoroth-47","index":7367,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_fireenchantment_border.png","maxRank":1,"name":"A Curse from Hell","description":"Periodic damage dealt now has a 15% chance to reduce the cooldown of Curse of Xoroth by -3 sec. Chance to trigger is increased by 2% for each stack of Demonfire active.","rankDescriptions":["Periodic damage dealt now has a 15% chance to reduce the cooldown of Curse of Xoroth by -3 sec. Chance to trigger is increased by 2% for each stack of Demonfire active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30428","treeId":"coa-knight-of-xoroth-47","index":30428,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/achievement_dungeon_blackrockcaverns.png","maxRank":1,"name":"Legion's Presence","description":"Emanate an aura to all party and raid members within 25 yds for 15 seconds, increasing their damage dealt by 10%. Fire damage dealt by Hellfire Imps is increased by 150% and total health increased by 50% while this effect is active on them.","rankDescriptions":["Emanate an aura to all party and raid members within 25 yds for 15 seconds, increasing their damage dealt by 10%. Fire damage dealt by Hellfire Imps is increased by 150% and total health increased by 50% while this effect is active on them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30176","treeId":"coa-knight-of-xoroth-87","index":30176,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/_enslavespell_fire.png","maxRank":1,"name":"Chainwhip","description":"Swing a chain at an enemy dealing 8 + 45% AP + 25% SP Physical damage and silencing them for 2 seconds, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","rankDescriptions":["Swing a chain at an enemy dealing 8 + 45% AP + 25% SP Physical damage and silencing them for 2 seconds, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7099","treeId":"coa-knight-of-xoroth-87","index":7099,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/diabloanniversary_achievement.png","maxRank":1,"name":"Suffuse","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30668","treeId":"coa-knight-of-xoroth-87","index":30668,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/nhi_nightmarechain_border.png","maxRank":1,"name":"Chains of Malice","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29437","treeId":"coa-knight-of-xoroth-87","index":29437,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/spell_shadow_demonicpact.png","maxRank":2,"name":"Xorothian Strength","description":"Increases your Strength by 10%.","rankDescriptions":["Increases your Strength by 5%.","Increases your Strength by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7360","treeId":"coa-knight-of-xoroth-87","index":7360,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/spell_shadow_unholystrength.png","maxRank":2,"name":"Demonfire Plating","description":"Reduces your damage taken by -4% and increases your Stamina by 6%.","rankDescriptions":["Reduces your damage taken by -2% and increases your Stamina by 3%.","Reduces your damage taken by -4% and increases your Stamina by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29610","treeId":"coa-knight-of-xoroth-87","index":29610,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/ability_deathwing_assualtaspects.png","maxRank":1,"name":"War Pig","description":"Increases your Physical damage dealt by 4%.","rankDescriptions":["Increases your Physical damage dealt by 4%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34094","treeId":"coa-knight-of-xoroth-87","index":34094,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/creatureportrait_blackrock_chainsofwoe.png","maxRank":1,"name":"Spiked Chains","description":"Your Chainwhip now deals 321 + 30% AP additional Physical damage, increased by 100% on Humanoids.","rankDescriptions":["Your Chainwhip now deals 321 + 30% AP additional Physical damage, increased by 100% on Humanoids."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34064","treeId":"coa-knight-of-xoroth-87","index":34064,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/nhi_bloodboil_border.png","maxRank":1,"name":"Boiling Blood","description":"Casting Suffuse now increases your healing received by 25% for the first 6 seconds of it's duration.","rankDescriptions":["Casting Suffuse now increases your healing received by 25% for the first 6 seconds of it's duration."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34075","treeId":"coa-knight-of-xoroth-87","index":34075,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_trinket_firelands_03.png","maxRank":1,"name":"Suffusion of Essence","description":"Increases the duration of Suffuse by 2 sec for each Demonfire consumed.","rankDescriptions":["Increases the duration of Suffuse by 2 sec for each Demonfire consumed."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7364","treeId":"coa-knight-of-xoroth-87","index":7364,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/inv_staff_2h_artifactelune_d_05.png","maxRank":1,"name":"Bloodied Blade","description":"Melee Physical damage dealt now generates a stack of Demon's Blood.","rankDescriptions":["Melee Physical damage dealt now generates a stack of Demon's Blood."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30701","treeId":"coa-knight-of-xoroth-87","index":30701,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/spell_warlock_soulburn_haunt.png","maxRank":1,"name":"Black Shield","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34114","treeId":"coa-knight-of-xoroth-87","index":34114,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/custom_06_summon_demon_border.png","maxRank":1,"name":"Omen of Rage","description":"Periodic damage and healing done has a 10% chance to grant a stack of Demonfire.","rankDescriptions":["Periodic damage and healing done has a 10% chance to grant a stack of Demonfire."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31701","treeId":"coa-knight-of-xoroth-87","index":31701,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/inv_ragnaros_heart.png","maxRank":1,"name":"Demon Heart","description":"Embrace your inner demon, instantly generating 6 stacks of Demonfire and 50 Rage.","rankDescriptions":["Embrace your inner demon, instantly generating 6 stacks of Demonfire and 50 Rage."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30178","treeId":"coa-knight-of-xoroth-87","index":30178,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/nhi_fireghost_border.png","maxRank":1,"name":"Brimstone's Blood","description":"Increases the chance of gaining a stack of Demon's Blood by 25%.","rankDescriptions":["Increases the chance of gaining a stack of Demon's Blood by 25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34074","treeId":"coa-knight-of-xoroth-87","index":34074,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_relics_totemofrage.png","maxRank":2,"name":"Ragefist","description":"Increases your maximum Rage by 20 and reduces the duration of disarm effects against you by -30%.","rankDescriptions":["Increases your maximum Rage by 10 and reduces the duration of disarm effects against you by -15%.","Increases your maximum Rage by 20 and reduces the duration of disarm effects against you by -30%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7365","treeId":"coa-knight-of-xoroth-87","index":7365,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/ability_warrior_unrelentingassault.png","maxRank":1,"name":"Hell Blender","description":"Casting Meatsaw now has a 40% chance to refund 10 Rage.","rankDescriptions":["Casting Meatsaw now has a 40% chance to refund 10 Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34117","treeId":"coa-knight-of-xoroth-87","index":34117,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/spell_shadow_carrionswarm.png","maxRank":1,"name":"Darkrider","description":"Increases the duration of your Mark spells by 50%.","rankDescriptions":["Increases the duration of your Mark spells by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7359","treeId":"coa-knight-of-xoroth-87","index":7359,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/inv_helm_plate_challengewarrior_d_01.png","maxRank":1,"name":"Demonic Rage","description":"Generating Demon's Blood stacks now generates 1 additional Rage.","rankDescriptions":["Generating Demon's Blood stacks now generates 1 additional Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30016","treeId":"coa-knight-of-xoroth-87","index":30016,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0004s_0000_armor_border.png","maxRank":1,"name":"Juggernaut","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6393","treeId":"coa-knight-of-xoroth-87","index":6393,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_mace_80.png","maxRank":1,"name":"Hellstriker","description":"Direct critical strikes now increase the duration of Hellrider on you by 2 sec.","rankDescriptions":["Direct critical strikes now increase the duration of Hellrider on you by 2 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34112","treeId":"coa-knight-of-xoroth-87","index":34112,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/warrior_talent_icon_angermanagement.png","maxRank":1,"name":"Burning Rage","description":"Enrage, generating 15 Rage every 1 sec and making you immune to incapacitate, banish, and polymorph effects for 6 seconds. Usable while incapacitated, banished, or polymorphed.","rankDescriptions":["Enrage, generating 15 Rage every 1 sec and making you immune to incapacitate, banish, and polymorph effects for 6 seconds. Usable while incapacitated, banished, or polymorphed."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34060","treeId":"coa-knight-of-xoroth-87","index":34060,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_wand_1h_firelandsraid_d_01.png","maxRank":1,"name":"Demonskin","description":"Each stack of Demon's Blood also increases your Armor by 1%.","rankDescriptions":["Each stack of Demon's Blood also increases your Armor by 1%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5453","treeId":"coa-knight-of-xoroth-87","index":5453,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/_crimsondeathcharger_64x.png","maxRank":1,"name":"Hellbound Charge","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34071","treeId":"coa-knight-of-xoroth-87","index":34071,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/inv_staff_2h_artifactdeadwind_d_06.png","maxRank":1,"name":"Dismemberment","description":"Damaging abilities that spend Demonfire now reduces the target's healing received by -20% for 8 seconds.","rankDescriptions":["Damaging abilities that spend Demonfire now reduces the target's healing received by -20% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7366","treeId":"coa-knight-of-xoroth-87","index":7366,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/ability_warrior_intensifyrage.png","maxRank":1,"name":"Warpath","description":"While Unleash Pestilence is active it now protects your movement speed from being reduced below 90% of normal speed.","rankDescriptions":["While Unleash Pestilence is active it now protects your movement speed from being reduced below 90% of normal speed."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34096","treeId":"coa-knight-of-xoroth-87","index":34096,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/ability_blackhand_marked4death.png","maxRank":1,"name":"Hellbreaker","description":"Casting Unleash Pestilence now removes all active movement impairing effects from you.","rankDescriptions":["Casting Unleash Pestilence now removes all active movement impairing effects from you."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7885","treeId":"coa-knight-of-xoroth-87","index":7885,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/nhi_blood_aim_border.png","maxRank":1,"name":"Xorothian Finesse","description":"Increases your chance to parry by 5%.","rankDescriptions":["Increases your chance to parry by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12620","treeId":"coa-knight-of-xoroth-87","index":12620,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_deathelementalmount_red.png","maxRank":1,"name":"Mounted Reaver","description":"Reduces the cooldown of all Mounted Combat abilities by -20%.","rankDescriptions":["Reduces the cooldown of all Mounted Combat abilities by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29620","treeId":"coa-knight-of-xoroth-87","index":29620,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/ability_mount_clockworkhorse.png","maxRank":1,"name":"Mounted Champion","description":"Your Xorothian Warsteed is now instant cast and prevents roots and slows for 2 sec when cast, but now has a 10 sec cooldown.","rankDescriptions":["Your Xorothian Warsteed is now instant cast and prevents roots and slows for 2 sec when cast, but now has a 10 sec cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7363","treeId":"coa-knight-of-xoroth-87","index":7363,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/ability_warrior_improveddisciplines.png","maxRank":1,"name":"Taskmaster","description":"Increases your critical strike chance by 3% plus an additional 15% against Demons.","rankDescriptions":["Increases your critical strike chance by 3% plus an additional 15% against Demons."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34069","treeId":"coa-knight-of-xoroth-87","index":34069,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/spells/ability_warrior_focusedrage.png","maxRank":1,"name":"Rage of Xoroth","description":"Your critical strikes now enrage you, increasing your melee attack speed by 15%.","rankDescriptions":["Your critical strikes now enrage you, increasing your melee attack speed by 15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34090","treeId":"coa-knight-of-xoroth-87","index":34090,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/spells/ability_rogue_sanguinaryvein.png","maxRank":1,"name":"Heart of Xoroth","description":"Allows Demon's Blood to stack 5 additional times.","rankDescriptions":["Allows Demon's Blood to stack 5 additional times."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29623","treeId":"coa-knight-of-xoroth-87","index":29623,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":9,"icon":"/assets/ui/spells/spell_nature_strength.png","maxRank":1,"name":"Brute Strength","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34091","treeId":"coa-knight-of-xoroth-87","index":34091,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":9,"icon":"/assets/ui/spells/warlock_pvp_endlessaffliction.png","maxRank":1,"name":"Harbinger of Pestilence","description":"Increases the effectiveness of your Pestilences by 50%.","rankDescriptions":["Increases the effectiveness of your Pestilences by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30013","treeId":"coa-knight-of-xoroth-87","index":30013,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/spell_fire_incinerate.png","maxRank":1,"name":"Dread","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30695","treeId":"coa-knight-of-xoroth-87","index":30695,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_misc_ahnqirajtrinket_04.png","maxRank":1,"name":"Xorothian Sigil","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6394","treeId":"coa-knight-of-xoroth-87","index":6394,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/warlock_sacrificial_pact.png","maxRank":1,"name":"Chain Warden","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/mage.json b/src/game/generated/talentUi/mage.json new file mode 100644 index 00000000..b20713f4 --- /dev/null +++ b/src/game/generated/talentUi/mage.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"mage","trees":[{"id":"mage-arcane","classId":"mage","name":"Arcane","icon":"/assets/ui/talents/icons/spell_holy_magicalsentry.png","background":"/assets/ui/talents/backgrounds/talent_mage1.png","description":"Shape raw magical energy with precision.","system":"classic"},{"id":"mage-fire","classId":"mage","name":"Fire","icon":"/assets/ui/talents/icons/spell_fire_firebolt02.png","background":"/assets/ui/talents/backgrounds/talent_mage2.png","description":"Incinerate enemies with explosive flame.","system":"classic"},{"id":"mage-frost","classId":"mage","name":"Frost","icon":"/assets/ui/talents/icons/spell_frost_frostbolt02.png","background":"/assets/ui/talents/backgrounds/talent_mage3.png","description":"Slow, control, and shatter frozen enemies.","system":"classic"}],"nodes":[{"id":"talent-25","treeId":"mage-fire","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_fire_soulburn.png","maxRank":3,"name":"Improved Scorch","description":"Increases your chance to critically hit with Scorch, Fireball and Frostfire Bolt by an additional 3%. Your Scorch spell has a 100% chance to cause your target to be vulnerable to spell damage, increasing spell critical strike chance against that target by 5% and lasts 30 seconds. Does not stack with other similar effects.","rankDescriptions":["Increases your chance to critically hit with Scorch, Fireball and Frostfire Bolt by an additional 1%. Your Scorch spell has a 33% chance to cause your target to be vulnerable to spell damage, increasing spell critical strike chance against that target by 5% and lasts 30 seconds. Does not stack with other similar effects.","Increases your chance to critically hit with Scorch, Fireball and Frostfire Bolt by an additional 2%. Your Scorch spell has a 66% chance to cause your target to be vulnerable to spell damage, increasing spell critical strike chance against that target by 5% and lasts 30 seconds. Does not stack with other similar effects.","Increases your chance to critically hit with Scorch, Fireball and Frostfire Bolt by an additional 3%. Your Scorch spell has a 100% chance to cause your target to be vulnerable to spell damage, increasing spell critical strike chance against that target by 5% and lasts 30 seconds. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-27","treeId":"mage-fire","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/spell_fire_fireball.png","maxRank":2,"name":"Improved Fire Blast","description":"Reduces the cooldown of your Fire Blast spell by 2 sec and increases the damage of your Fire Blast by 10% to monsters.","rankDescriptions":["Reduces the cooldown of your Fire Blast spell by 1 sec and increases the damage of your Fire Blast by 5% to monsters.","Reduces the cooldown of your Fire Blast spell by 2 sec and increases the damage of your Fire Blast by 10% to monsters."],"system":"classic"},{"id":"talent-28","treeId":"mage-fire","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_fire_flare.png","maxRank":3,"name":"Flame Throwing","description":"Increases the range of your damaging spells by 6 yards. This does not stack with other similar effects. Capstone Bonus: The cast time of your Fireball is reduced by 20%. This effect becomes inactive for 12 seconds after use.","rankDescriptions":["Increases the range of your damaging spells by 2 yards. This does not stack with other similar effects. Capstone Bonus: The cast time of your Fireball is reduced by 20%. This effect becomes inactive for 12 seconds after use.","Increases the range of your damaging spells by 4 yards. This does not stack with other similar effects. Capstone Bonus: The cast time of your Fireball is reduced by 20%. This effect becomes inactive for 12 seconds after use.","Increases the range of your damaging spells by 6 yards. This does not stack with other similar effects. Capstone Bonus: The cast time of your Fireball is reduced by 20%. This effect becomes inactive for 12 seconds after use."],"system":"classic"},{"id":"talent-34","treeId":"mage-fire","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_fire_incinerate.png","maxRank":5,"name":"Ignite","description":"Your critical strikes from direct Fire damage spells and abilities cause the target to burn for an additional 30% of your spell's damage and cause them to take 40% less healing over 4 seconds. Does not stack with other similar effects.","rankDescriptions":["Your critical strikes from direct Fire damage spells and abilities cause the target to burn for an additional 6% of your spell's damage and cause them to take 8% less healing over 4 seconds. Does not stack with other similar effects.","Your critical strikes from direct Fire damage spells and abilities cause the target to burn for an additional 12% of your spell's damage and cause them to take 16% less healing over 4 seconds. Does not stack with other similar effects.","Your critical strikes from direct Fire damage spells and abilities cause the target to burn for an additional 18% of your spell's damage and cause them to take 24% less healing over 4 seconds. Does not stack with other similar effects.","Your critical strikes from direct Fire damage spells and abilities cause the target to burn for an additional 24% of your spell's damage and cause them to take 32% less healing over 4 seconds. Does not stack with other similar effects.","Your critical strikes from direct Fire damage spells and abilities cause the target to burn for an additional 30% of your spell's damage and cause them to take 40% less healing over 4 seconds. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-1730","treeId":"mage-fire","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_fire_playingwithfire.png","maxRank":2,"name":"Playing with Fire","description":"Increases all damage done by 2% and all magic damage taken by 2%. Dealing direct magic damage now has a 100% chance to reduce the cooldown of your Combustion and Dragon's Breath by 1 second, doubled when dealing critical strikes. Reduces the cooldown by 0.5 seconds against players. Dragon's Breath cannot reduce its own cooldown. Up to 15 seconds reduction. Max 5 seconds reduction for Explosive Shot.","rankDescriptions":["Increases all damage done by 1% and all magic damage taken by 1%. Dealing direct magic damage now has a 50% chance to reduce the cooldown of your Combustion and Dragon's Breath by 1 second, doubled when dealing critical strikes. Reduces the cooldown by 0.5 seconds against players. Dragon's Breath cannot reduce its own cooldown. Up to 15 seconds reduction. Max 5 seconds reduction for Explosive Shot.","Increases all damage done by 2% and all magic damage taken by 2%. Dealing direct magic damage now has a 100% chance to reduce the cooldown of your Combustion and Dragon's Breath by 1 second, doubled when dealing critical strikes. Reduces the cooldown by 0.5 seconds against players. Dragon's Breath cannot reduce its own cooldown. Up to 15 seconds reduction. Max 5 seconds reduction for Explosive Shot."],"system":"classic"},{"id":"talent-1731","treeId":"mage-fire","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_fire_burningspeed.png","maxRank":3,"name":"Blazing Speed","description":"Reduces the cooldown of your Blast Wave ability by 10 seconds. Capstone Bonus: Taking direct damage while being below 35% health will trigger Blazing Speed, dispelling all movement impairing effects and increasing your movement speed by 50% and your haste by 20% for 6 seconds. While active, you can cast non-channeled Fire spells while moving. This effect can only occur every 30 seconds.","rankDescriptions":["Reduces the cooldown of your Blast Wave ability by 4 seconds. Capstone Bonus: Taking direct damage while being below 35% health will trigger Blazing Speed, dispelling all movement impairing effects and increasing your movement speed by 50% and your haste by 20% for 6 seconds. While active, you can cast non-channeled Fire spells while moving. This effect can only occur every 30 seconds.","Reduces the cooldown of your Blast Wave ability by 7 seconds. Capstone Bonus: Taking direct damage while being below 35% health will trigger Blazing Speed, dispelling all movement impairing effects and increasing your movement speed by 50% and your haste by 20% for 6 seconds. While active, you can cast non-channeled Fire spells while moving. This effect can only occur every 30 seconds.","Reduces the cooldown of your Blast Wave ability by 10 seconds. Capstone Bonus: Taking direct damage while being below 35% health will trigger Blazing Speed, dispelling all movement impairing effects and increasing your movement speed by 50% and your haste by 20% for 6 seconds. While active, you can cast non-channeled Fire spells while moving. This effect can only occur every 30 seconds."],"system":"classic"},{"id":"talent-1733","treeId":"mage-fire","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_fire_burnout.png","maxRank":3,"name":"Pyromaniac","description":"Increases your spell critical strike chance by 3%. Allows 25% of your mana regeneration to continue while casting. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","rankDescriptions":["Increases your spell critical strike chance by 1%. Allows 8% of your mana regeneration to continue while casting. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects]","Increases your spell critical strike chance by 2%. Allows 16% of your mana regeneration to continue while casting. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects]","Increases your spell critical strike chance by 3%. Allows 25% of your mana regeneration to continue while casting. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]"],"system":"classic"},{"id":"talent-1848","treeId":"mage-fire","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_mage_fierypayback.png","maxRank":2,"name":"Fiery Payback","description":"While below 35% health your Fire damage is increased by 6%. Capstone Bonus: Your direct damage Fire spells heal you for a small amount when you are below 35% health. This effect can only occur once every second.","rankDescriptions":["While below 35% health your Fire damage is increased by 3%. Capstone Bonus: Your direct damage Fire spells heal you for a small amount when you are below 35% health. This effect can only occur once every second.","While below 35% health your Fire damage is increased by 6%. Capstone Bonus: Your direct damage Fire spells heal you for a small amount when you are below 35% health. This effect can only occur once every second."],"system":"classic"},{"id":"talent-1849","treeId":"mage-fire","index":24,"prerequisiteId":"talent-1735","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1735","requiredRank":1}],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_mage_firestarter.png","maxRank":3,"name":"Firestarter","description":"Increases the duration of your Dragon's Breath by 1 second. Capstone Bonus: Your damaging Blast Wave, Dragon's Breath and Meteor spells make your next Flamestrike spell instant cast, and cost no mana, and deal 30% more direct damage.","rankDescriptions":["Increases the duration of your Dragon's Breath by 0.33 seconds. Capstone Bonus: Your damaging Blast Wave, Dragon's Breath and Meteor spells make your next Flamestrike spell instant cast, and cost no mana, and deal 30% more direct damage.","Increases the duration of your Dragon's Breath by 0.67 seconds. Capstone Bonus: Your damaging Blast Wave, Dragon's Breath and Meteor spells make your next Flamestrike spell instant cast, and cost no mana, and deal 30% more direct damage.","Increases the duration of your Dragon's Breath by 1 second. Capstone Bonus: Your damaging Blast Wave, Dragon's Breath and Meteor spells make your next Flamestrike spell instant cast, and cost no mana, and deal 30% more direct damage."],"system":"classic"},{"id":"talent-24","treeId":"mage-fire","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_fire_firearmor.png","maxRank":2,"name":"Molten Shields","description":"Reduces the cooldown of Fire Ward, Frost Ward, Arcane Ward and Shadow Ward by 4 sec. Your Fire Ward, Frost Ward, Arcane Ward and Shadow Ward spells to have a 100% chance to reflect spells from the school it wards against for 1 second.","rankDescriptions":["Reduces the cooldown of Fire Ward, Frost Ward, Arcane Ward and Shadow Ward by 2 sec. Your Fire Ward, Frost Ward, Arcane Ward and Shadow Ward spells to have a 50% chance to reflect spells from the school it wards against for 1 second.","Reduces the cooldown of Fire Ward, Frost Ward, Arcane Ward and Shadow Ward by 4 sec. Your Fire Ward, Frost Ward, Arcane Ward and Shadow Ward spells to have a 100% chance to reflect spells from the school it wards against for 1 second."],"system":"classic"},{"id":"talent-30","treeId":"mage-fire","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_fire_meteorstorm.png","maxRank":3,"name":"Impact","description":"Increases the damage of Fire Blast and Meteor by 9%. Capstone Bonus: Your direct damaging spells have a 4% chance and your Meteor has a 100% chance to cause the next Fire Blast you cast to stun the target for 3 seconds.","rankDescriptions":["Increases the damage of Fire Blast and Meteor by 3%. Capstone Bonus: Your direct damaging spells have a 4% chance and your Meteor has a 100% chance to cause the next Fire Blast you cast to stun the target for 3 seconds.","Increases the damage of Fire Blast and Meteor by 6%. Capstone Bonus: Your direct damaging spells have a 4% chance and your Meteor has a 100% chance to cause the next Fire Blast you cast to stun the target for 3 seconds.","Increases the damage of Fire Blast and Meteor by 9%. Capstone Bonus: Your direct damaging spells have a 4% chance and your Meteor has a 100% chance to cause the next Fire Blast you cast to stun the target for 3 seconds."],"system":"classic"},{"id":"talent-33","treeId":"mage-fire","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_wispheal.png","maxRank":3,"name":"Critical Mass","description":"Increases the critical strike chance of your Fire spells and abilities by 6%.","rankDescriptions":["Increases the critical strike chance of your Fire spells and abilities by 2%.","Increases the critical strike chance of your Fire spells and abilities by 4%.","Increases the critical strike chance of your Fire spells and abilities by 6%."],"system":"classic"},{"id":"talent-36","treeId":"mage-fire","index":20,"prerequisiteId":"talent-33","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-33","requiredRank":3}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_fire_sealoffire.png","maxRank":1,"name":"Combustion","description":"When activated, this spell increases your critical strike damage bonus with Mage Fire damage spells by 150% and causes each of your Mage Fire damage spell hits to increase your critical strike chance with Mage Fire damage spells by 10%. This effect lasts 30 seconds, which renews every time you gain a stack, or until you have caused 3 non-periodic critical strikes with Mage Fire spells. The critical strike bonus damage is increased by 50% versus players.","rankDescriptions":["When activated, this spell increases your critical strike damage bonus with Mage Fire damage spells by 150% and causes each of your Mage Fire damage spell hits to increase your critical strike chance with Mage Fire damage spells by 10%. This effect lasts 30 seconds, which renews every time you gain a stack, or until you have caused 3 non-periodic critical strikes with Mage Fire spells. The critical strike bonus damage is increased by 50% versus players."],"system":"classic"},{"id":"talent-1141","treeId":"mage-fire","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_fire_flameshock.png","maxRank":3,"name":"Incineration","description":"Increases the critical strike chance of your Fire Blast, Scorch, Arcane Blast and Cone of Cold spells by 9%.","rankDescriptions":["Increases the critical strike chance of your Fire Blast, Scorch, Arcane Blast and Cone of Cold spells by 3%.","Increases the critical strike chance of your Fire Blast, Scorch, Arcane Blast and Cone of Cold spells by 6%.","Increases the critical strike chance of your Fire Blast, Scorch, Arcane Blast and Cone of Cold spells by 9%."],"system":"classic"},{"id":"talent-1735","treeId":"mage-fire","index":25,"prerequisiteId":"talent-36","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-36","requiredRank":1}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/inv_misc_head_dragon_01.png","maxRank":1,"name":"Dragon's Breath","description":"Targets in a cone in front of the caster take 425 Fire damage and are Disoriented for 3 seconds. Any direct damaging attack will revive targets. Turns off your attack when used. This spell cannot miss.","rankDescriptions":["Targets in a cone in front of the caster take 425 Fire damage and are Disoriented for 3 seconds. Any direct damaging attack will revive targets. Turns off your attack when used. This spell cannot miss."],"system":"classic"},{"id":"talent-1851","treeId":"mage-fire","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_mage_burnout.png","maxRank":5,"name":"Burnout","description":"Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct Fire damage on targets afflicted by your Ignite increases your spell damage by 6% for 8 seconds. Dealing direct magic non-Fire damage to targets affected by your Ignite causes an explosion, dealing damage to all nearby enemies. Both effects require the final rank of Ignite.","rankDescriptions":["Your spell critical strikes now deal 180% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct Fire damage on targets afflicted by your Ignite increases your spell damage by 6% for 8 seconds. Dealing direct magic non-Fire damage to targets affected by your Ignite causes an explosion, dealing damage to all nearby enemies. Both effects require the final rank of Ignite.","Your spell critical strikes now deal 185% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct Fire damage on targets afflicted by your Ignite increases your spell damage by 6% for 8 seconds. Dealing direct magic non-Fire damage to targets affected by your Ignite causes an explosion, dealing damage to all nearby enemies. Both effects require the final rank of Ignite.","Your spell critical strikes now deal 190% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct Fire damage on targets afflicted by your Ignite increases your spell damage by 6% for 8 seconds. Dealing direct magic non-Fire damage to targets affected by your Ignite causes an explosion, dealing damage to all nearby enemies. Both effects require the final rank of Ignite.","Your spell critical strikes now deal 195% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct Fire damage on targets afflicted by your Ignite increases your spell damage by 6% for 8 seconds. Dealing direct magic non-Fire damage to targets affected by your Ignite causes an explosion, dealing damage to all nearby enemies. Both effects require the final rank of Ignite.","Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct Fire damage on targets afflicted by your Ignite increases your spell damage by 6% for 8 seconds. Dealing direct magic non-Fire damage to targets affected by your Ignite causes an explosion, dealing damage to all nearby enemies. Both effects require the final rank of Ignite."],"system":"classic"},{"id":"talent-1852","treeId":"mage-fire","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_mage_livingbomb.png","maxRank":1,"name":"Living Bomb","description":"The target becomes a Living Bomb, taking 708 Fire damage over 12 seconds. After 12 seconds or when the spell is dispelled, the target explodes dealing 353 Fire damage to all enemies within the listed amount yards.the listed amount[ Periodic damage from Living Bomb can critically strike while in Wildcard][]","rankDescriptions":["The target becomes a Living Bomb, taking 708 Fire damage over 12 seconds. After 12 seconds or when the spell is dispelled, the target explodes dealing 353 Fire damage to all enemies within the listed amount yards.the listed amount[ Periodic damage from Living Bomb can critically strike while in Wildcard][]"],"system":"classic"},{"id":"talent-2212","treeId":"mage-fire","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_fire_totemofwrath.png","maxRank":3,"name":"Burning Determination","description":"Reduces damage taken while affected by a Silence effect by 20%. Capstone Being hit by an interrupt effect while not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect and gives you 20% spell haste for 5 seconds. This may only occur once every 20 seconds.","rankDescriptions":["Reduces damage taken while affected by a Silence effect by 7%. Capstone Bonus: Being hit by an interrupt effect while not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect and gives you 20% spell haste for 5 seconds. This may only occur once every 20 seconds.","Reduces damage taken while affected by a Silence effect by 14%. Capstone Bonus: Being hit by an interrupt effect while not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect and gives you 20% spell haste for 5 seconds. This may only occur once every 20 seconds.","Reduces damage taken while affected by a Silence effect by 20%. Capstone Being hit by an interrupt effect while not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect and gives you 20% spell haste for 5 seconds. This may only occur once every 20 seconds."],"system":"classic"},{"id":"talent-26","treeId":"mage-fire","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_fire_flamebolt.png","maxRank":3,"name":"Improved Fireball","description":"Increases the critical strike chance of Fireball by 9%.","rankDescriptions":["Increases the critical strike chance of Fireball by 3%.","Increases the critical strike chance of Fireball by 6%.","Increases the critical strike chance of Fireball by 9%."],"system":"classic"},{"id":"talent-29","treeId":"mage-fire","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_fire_fireball02.png","maxRank":1,"name":"Pyroblast","description":"Hurls an immense fiery boulder that causes 159 Fire damage and an additional 64 Fire damage over 12 seconds.","rankDescriptions":["Hurls an immense fiery boulder that causes 159 Fire damage and an additional 64 Fire damage over 12 seconds."],"system":"classic"},{"id":"talent-31","treeId":"mage-fire","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/ability_mage_worldinflames.png","maxRank":3,"name":"World in Flames","description":"Increases the critical strike chance of your Flamestrike, Pyroblast, Blast Wave, Dragon's Breath, Living Bomb, Meteor, Blizzard and Arcane Explosion spells by 6%.","rankDescriptions":["Increases the critical strike chance of your Flamestrike, Pyroblast, Blast Wave, Dragon's Breath, Living Bomb, Meteor, Blizzard and Arcane Explosion spells by 2%.","Increases the critical strike chance of your Flamestrike, Pyroblast, Blast Wave, Dragon's Breath, Living Bomb, Meteor, Blizzard and Arcane Explosion spells by 4%.","Increases the critical strike chance of your Flamestrike, Pyroblast, Blast Wave, Dragon's Breath, Living Bomb, Meteor, Blizzard and Arcane Explosion spells by 6%."],"system":"classic"},{"id":"talent-32","treeId":"mage-fire","index":16,"prerequisiteId":"talent-29","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-29","requiredRank":1}],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_holy_excorcism_02.png","maxRank":1,"name":"Blast Wave","description":"A wave of flame radiates outward from the caster, damaging all enemies caught within the blast for 177 Fire damage, knocking them back and dazing them for 6 seconds.","rankDescriptions":["A wave of flame radiates outward from the caster, damaging all enemies caught within the blast for 177 Fire damage, knocking them back and dazing them for 6 seconds."],"system":"classic"},{"id":"talent-35","treeId":"mage-fire","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_fire_immolation.png","maxRank":5,"name":"Fire Power","description":"Increases all Fire damage you deal by 10%.","rankDescriptions":["Increases all Fire damage you deal by 2%.","Increases all Fire damage you deal by 4%.","Increases all Fire damage you deal by 6%.","Increases all Fire damage you deal by 8%.","Increases all Fire damage you deal by 10%."],"system":"classic"},{"id":"talent-1732","treeId":"mage-fire","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_fire_moltenblood.png","maxRank":2,"name":"Molten Fury","description":"Increases damage done by all Fire Damaging Spells and Abilities by 12% to targets under 35% health. Increases the damage of your Frost and Arcane Mage Spells by 12% to targets under 35%.","rankDescriptions":["Increases damage done by all Fire Damaging Spells and Abilities by 6% to targets under 35% health. Increases the damage of your Frost and Arcane Mage Spells by 6% to targets under 35%.","Increases damage done by all Fire Damaging Spells and Abilities by 12% to targets under 35% health. Increases the damage of your Frost and Arcane Mage Spells by 12% to targets under 35%."],"system":"classic"},{"id":"talent-1734","treeId":"mage-fire","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_fire_flamebolt.png","maxRank":3,"name":"Empowered Fire","description":"Increases the spell damage scaling of your Fireball, Pyroblast and Living Bomb spells by 20%. Each time your Ignite talent causes damage, you have a 100% chance to regain 2% of your base mana.the listed amount[][ Capstone Bonus: The periodic damage from Living Bomb can critically strike.]","rankDescriptions":["Increases the spell damage scaling of your Fireball, Pyroblast and Living Bomb spells by 7%. Each time your Ignite talent causes damage, you have a 100% chance to regain 2% of your base mana.the listed amount[][ Capstone Bonus: The periodic damage from Living Bomb can critically strike.]","Increases the spell damage scaling of your Fireball, Pyroblast and Living Bomb spells by 14%. Each time your Ignite talent causes damage, you have a 100% chance to regain 2% of your base mana.the listed amount[][ Capstone Bonus: The periodic damage from Living Bomb can critically strike.]","Increases the spell damage scaling of your Fireball, Pyroblast and Living Bomb spells by 20%. Each time your Ignite talent causes damage, you have a 100% chance to regain 2% of your base mana.the listed amount[][ Capstone Bonus: The periodic damage from Living Bomb can critically strike.]"],"system":"classic"},{"id":"talent-1850","treeId":"mage-fire","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_mage_hotstreak.png","maxRank":3,"name":"Hot Streak","description":"Any time you score 2 non-periodic spell criticals in a row using Fireball, Fire Blast, Scorch, Living Bomb, or Frostfire Bolt, you have a 100% chance the next Pyroblast spell cast within 10 seconds will be instant cast and deal 40% more damage to monsters and its mana will be reduced by 50%.","rankDescriptions":["Any time you score 2 non-periodic spell criticals in a row using Fireball, Fire Blast, Scorch, Living Bomb, or Frostfire Bolt, you have a 33% chance the next Pyroblast spell cast within 10 seconds will be instant cast and deal 40% more damage to monsters and its mana will be reduced by 50%.","Any time you score 2 non-periodic spell criticals in a row using Fireball, Fire Blast, Scorch, Living Bomb, or Frostfire Bolt, you have a 66% chance the next Pyroblast spell cast within 10 seconds will be instant cast and deal 40% more damage to monsters and its mana will be reduced by 50%.","Any time you score 2 non-periodic spell criticals in a row using Fireball, Fire Blast, Scorch, Living Bomb, or Frostfire Bolt, you have a 100% chance the next Pyroblast spell cast within 10 seconds will be instant cast and deal 40% more damage to monsters and its mana will be reduced by 50%."],"system":"classic"},{"id":"talent-23","treeId":"mage-fire","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/spell_fire_fire.png","maxRank":3,"name":"Burning Soul","description":"Increases spell critical strike chance by 3%. Reduces spell pushback suffered from damaging attacks by 100%.","rankDescriptions":["Increases spell critical strike chance by 1%. Reduces spell pushback suffered from damaging attacks by 33%.","Increases spell critical strike chance by 2%. Reduces spell pushback suffered from damaging attacks by 66%.","Increases spell critical strike chance by 3%. Reduces spell pushback suffered from damaging attacks by 100%."],"system":"classic"},{"id":"talent-1639","treeId":"mage-fire","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/spell_fire_masterofelements.png","maxRank":3,"name":"Master of Elements","description":"Increases your critical strike chance with all spells and abilities by 3%. Capstone Bonus: Your direct damage spell criticals refund 40% of their mana cost.","rankDescriptions":["Increases your critical strike chance with all spells and abilities by 1%. Capstone Bonus: Your direct damage spell criticals refund 40% of their mana cost.","Increases your critical strike chance with all spells and abilities by 2%. Capstone Bonus: Your direct damage spell criticals refund 40% of their mana cost.","Increases your critical strike chance with all spells and abilities by 3%. Capstone Bonus: Your direct damage spell criticals refund 40% of their mana cost."],"system":"classic"},{"id":"talent-38","treeId":"mage-frost","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/spell_frost_frostarmor.png","maxRank":3,"name":"Frostbite","description":"Gives your Mage Frost damage spells a 15% chance to freeze the target for 4 seconds.","rankDescriptions":["Gives your Mage Frost damage spells a 5% chance to freeze the target for 4 seconds.","Gives your Mage Frost damage spells a 10% chance to freeze the target for 4 seconds.","Gives your Mage Frost damage spells a 15% chance to freeze the target for 4 seconds."],"system":"classic"},{"id":"talent-61","treeId":"mage-frost","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_frost_frostbolt.png","maxRank":3,"name":"Piercing Ice","description":"Increases the damage done by your Frost spells by 9%.","rankDescriptions":["Increases the damage done by your Frost spells by 3%.","Increases the damage done by your Frost spells by 6%.","Increases the damage done by your Frost spells by 9%."],"system":"classic"},{"id":"talent-73","treeId":"mage-frost","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_frost_iceshard.png","maxRank":5,"name":"Ice Shards","description":"Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Increases damage against frozen targets by 12%.","rankDescriptions":["Your spell critical strikes now deal 180% damage. This does not stack with other similar effects. Capstone Bonus: The final rank of this talent increases damage against frozen targets by 12%.","Your spell critical strikes now deal 185% damage. This does not stack with other similar effects. Capstone Bonus: The final rank of this talent increases damage against frozen targets by 12%.","Your spell critical strikes now deal 190% damage. This does not stack with other similar effects. Capstone Bonus: The final rank of this talent increases damage against frozen targets by 12%.","Your spell critical strikes now deal 195% damage. This does not stack with other similar effects. Capstone Bonus: The final rank of this talent increases damage against frozen targets by 12%.","Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Increases damage against frozen targets by 12%."],"system":"classic"},{"id":"talent-741","treeId":"mage-frost","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_darkritual.png","maxRank":3,"name":"Arctic Reach","description":"Increases the range of your damaging spells by 6 yards. This does not stack with other similar effects. Capstone Bonus: Your Fingers of Frost will now grant an extra charge.","rankDescriptions":["Increases the range of your damaging spells by 2 yards. This does not stack with other similar effects. Capstone Bonus: Your Fingers of Frost will now grant an extra charge.","Increases the range of your damaging spells by 4 yards. This does not stack with other similar effects. Capstone Bonus: Your Fingers of Frost will now grant an extra charge.","Increases the range of your damaging spells by 6 yards. This does not stack with other similar effects. Capstone Bonus: Your Fingers of Frost will now grant an extra charge."],"system":"classic"},{"id":"talent-1737","treeId":"mage-frost","index":17,"prerequisiteId":"talent-72","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-72","requiredRank":1}],"column":1,"row":6,"icon":"/assets/ui/talents/icons/ability_mage_coldasice.png","maxRank":2,"name":"Cold as Ice","description":"Reduces the cooldown of your Cold Snap, Ice Barrier, Frozen Orb and Summon Water Elemental spells by 20%. Increases the duration of your Ice Barrier by 50%. The global cooldown of Ice Barrier is reduced by 0.5 seconds.","rankDescriptions":["Reduces the cooldown of your Cold Snap, Ice Barrier, Frozen Orb and Summon Water Elemental spells by 10%. Increases the duration of your Ice Barrier by 25%. The global cooldown of Ice Barrier is reduced by 0.25 seconds.","Reduces the cooldown of your Cold Snap, Ice Barrier, Frozen Orb and Summon Water Elemental spells by 20%. Increases the duration of your Ice Barrier by 50%. The global cooldown of Ice Barrier is reduced by 0.5 seconds."],"system":"classic"},{"id":"talent-1854","treeId":"mage-frost","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_mage_brainfreeze.png","maxRank":3,"name":"Brain Freeze","description":"Dealing direct damage with Frostbolt, Frost Nova, Blizzard, Cone of Cold and Frozen Orb has a 15% chance to cause your next Fireball or Frostfire Bolt spell to be instant cast, cost no mana, and deal 25% increased damage. Damage dealt by your Frost and Arcane Mage spells is increased by 6% and Arcane Missiles and Frostbolt by an additional 6% on targets affected by your Fireball effect.","rankDescriptions":["Dealing direct damage with Frostbolt, Frost Nova, Blizzard, Cone of Cold and Frozen Orb has a 5% chance to cause your next Fireball or Frostfire Bolt spell to be instant cast, cost no mana, and deal 25% increased damage. Damage dealt by your Frost and Arcane Mage spells is increased by 2% and Arcane Missiles and Frostbolt by an additional 2% on targets affected by your Fireball effect.","Dealing direct damage with Frostbolt, Frost Nova, Blizzard, Cone of Cold and Frozen Orb has a 10% chance to cause your next Fireball or Frostfire Bolt spell to be instant cast, cost no mana, and deal 25% increased damage. Damage dealt by your Frost and Arcane Mage spells is increased by 4% and Arcane Missiles and Frostbolt by an additional 4% on targets affected by your Fireball effect.","Dealing direct damage with Frostbolt, Frost Nova, Blizzard, Cone of Cold and Frozen Orb has a 15% chance to cause your next Fireball or Frostfire Bolt spell to be instant cast, cost no mana, and deal 25% increased damage. Damage dealt by your Frost and Arcane Mage spells is increased by 6% and Arcane Missiles and Frostbolt by an additional 6% on targets affected by your Fireball effect."],"system":"classic"},{"id":"talent-2214","treeId":"mage-frost","index":19,"prerequisiteId":"talent-71","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-71","requiredRank":1}],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_mage_shattershield.png","maxRank":3,"name":"Shattered Barrier","description":"Increases all damage done by 3%. While Ice Barrier is active your Frost Damage is increased by 6%. Capstone Bonus: Your Ice Barrier will shatter when destroyed, slowing all enemies within the listed amount yards by 70% for 4 seconds and grants you 8% spell haste for 8 seconds.","rankDescriptions":["Increases all damage done by 1%. While Ice Barrier is active your Frost Damage is increased by 2%. Capstone Bonus: Your Ice Barrier will shatter when destroyed, slowing all enemies within the listed amount yards by 70% for 4 seconds and grants you 8% spell haste for 8 seconds.","Increases all damage done by 2%. While Ice Barrier is active your Frost Damage is increased by 4%. Capstone Bonus: Your Ice Barrier will shatter when destroyed, slowing all enemies within the listed amount yards by 70% for 4 seconds and grants you 8% spell haste for 8 seconds.","Increases all damage done by 3%. While Ice Barrier is active your Frost Damage is increased by 6%. Capstone Bonus: Your Ice Barrier will shatter when destroyed, slowing all enemies within the listed amount yards by 70% for 4 seconds and grants you 8% spell haste for 8 seconds."],"system":"classic"},{"id":"talent-37","treeId":"mage-frost","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_frost_frostbolt02.png","maxRank":3,"name":"Improved Frostbolt","description":"Increases the damage of Frostbolt and Ice Lance by 9%.","rankDescriptions":["Increases the damage of Frostbolt and Ice Lance by 3%.","Increases the damage of Frostbolt and Ice Lance by 6%.","Increases the damage of Frostbolt and Ice Lance by 9%."],"system":"classic"},{"id":"talent-66","treeId":"mage-frost","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_frost_stun.png","maxRank":3,"name":"Frost Channeling","description":"Reduces the mana cost of your Frost spells by 12% and reduces the threat caused by your Frost spells by 15%. Capstone Bonus: Killing an enemy that yields experience or honor with Frost damage will restore 12% of your mana.","rankDescriptions":["Reduces the mana cost of your Frost spells by 4% and reduces the threat caused by your Frost spells by 5%. Capstone Bonus: Killing an enemy that yields experience or honor with Frost damage will restore 12% of your mana.","Reduces the mana cost of your Frost spells by 8% and reduces the threat caused by your Frost spells by 10%. Capstone Bonus: Killing an enemy that yields experience or honor with Frost damage will restore 12% of your mana.","Reduces the mana cost of your Frost spells by 12% and reduces the threat caused by your Frost spells by 15%. Capstone Bonus: Killing an enemy that yields experience or honor with Frost damage will restore 12% of your mana."],"system":"classic"},{"id":"talent-69","treeId":"mage-frost","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_frost_coldhearted.png","maxRank":1,"name":"Icy Veins","description":"Hastens your spellcasting, increasing spell casting speed by 20%. Lasts 12 seconds. Casting this also makes you immune to Interrupt and Silence mechanics for 4 seconds. Does not stack with other similar cast speed increasing effects.","rankDescriptions":["Hastens your spellcasting, increasing spell casting speed by 20%. Lasts 12 seconds. Casting this also makes you immune to Interrupt and Silence mechanics for 4 seconds. Does not stack with other similar cast speed increasing effects."],"system":"classic"},{"id":"talent-70","treeId":"mage-frost","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_frost_frostward.png","maxRank":2,"name":"Frost Warding","description":"Increases the armor and resistances given by your Frost Armor and Ice Armor spells by 50%. Frost Ward, Fire Ward, Shadow Ward and Arcane Ward have a 50% chance to reduce the damage taken from the spell by 50% and restore mana equal to the damage reduced.","rankDescriptions":["Increases the armor and resistances given by your Frost Armor and Ice Armor spells by 25%. Frost Ward, Fire Ward, Shadow Ward and Arcane Ward have a 25% chance to reduce the damage taken from the spell by 50% and restore mana equal to the damage reduced.","Increases the armor and resistances given by your Frost Armor and Ice Armor spells by 50%. Frost Ward, Fire Ward, Shadow Ward and Arcane Ward have a 50% chance to reduce the damage taken from the spell by 50% and restore mana equal to the damage reduced."],"system":"classic"},{"id":"talent-71","treeId":"mage-frost","index":20,"prerequisiteId":"talent-72","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-72","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_ice_lament.png","maxRank":1,"name":"Ice Barrier","description":"Instantly shields you, absorbing 369 damage. Lasts 20 seconds. While the shield holds, spellcasting will not be delayed by damage.","rankDescriptions":["Instantly shields you, absorbing 369 damage. Lasts 20 seconds. While the shield holds, spellcasting will not be delayed by damage."],"system":"classic"},{"id":"talent-72","treeId":"mage-frost","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_frost_wizardmark.png","maxRank":1,"name":"Cold Snap","description":"When activated, this spell resets the cooldown on all Mage Frost spells you recently cast.","rankDescriptions":["When activated, this spell resets the cooldown on all Mage Frost spells you recently cast."],"system":"classic"},{"id":"talent-1740","treeId":"mage-frost","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/spell_frost_frostbolt02.png","maxRank":3,"name":"Empowering Frostbolt","description":"Increases the critical strike damage bonus of your spells by 20% and your total Frost damage by 7% for 8 seconds after casting Frostbolt.","rankDescriptions":["Increases the critical strike damage bonus of your spells by 7% and your total Frost damage by 3% for 8 seconds after casting Frostbolt.","Increases the critical strike damage bonus of your spells by 14% and your total Frost damage by 5% for 8 seconds after casting Frostbolt.","Increases the critical strike damage bonus of your spells by 20% and your total Frost damage by 7% for 8 seconds after casting Frostbolt."],"system":"classic"},{"id":"talent-1741","treeId":"mage-frost","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_frost_summonwaterelemental_2.png","maxRank":1,"name":"Summon Water Elemental","description":"Summon a Water Elemental to fight for the casterthe listed amount[][ for 45 seconds].","rankDescriptions":["Summon a Water Elemental to fight for the casterthe listed amount[][ for 45 seconds]."],"system":"classic"},{"id":"talent-1856","treeId":"mage-frost","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_mage_chilledtothebone.png","maxRank":3,"name":"Chilled to the Bone","description":"Increases all damage done by 3%. Reduces the movement speed of targets affected by Frostbolt, Cone of Cold and Frozen Orb by an additional 10%. Capstone Bonus: Your casted Frostbolt and Ice Lances versus monsters reduce the cooldown of your Deep Freeze by 2 sec and Frozen Orb by 1 sec. Also, dealing damage with Deep Freeze grants you a Lesser Ice Barrier (if you know Ice Barrier).","rankDescriptions":["Increases all damage done by 1%. Reduces the movement speed of targets affected by Frostbolt, Cone of Cold and Frozen Orb by an additional 4%. Capstone Bonus: Your casted Frostbolt and Ice Lances versus monsters reduce the cooldown of your Deep Freeze by 2 sec and Frozen Orb by 1 sec. Also, dealing damage with Deep Freeze grants you a Lesser Ice Barrier (if you know Ice Barrier).","Increases all damage done by 2%. Reduces the movement speed of targets affected by Frostbolt, Cone of Cold and Frozen Orb by an additional 7%. Capstone Bonus: Your casted Frostbolt and Ice Lances versus monsters reduce the cooldown of your Deep Freeze by 2 sec and Frozen Orb by 1 sec. Also, dealing damage with Deep Freeze grants you a Lesser Ice Barrier (if you know Ice Barrier).","Increases all damage done by 3%. Reduces the movement speed of targets affected by Frostbolt, Cone of Cold and Frozen Orb by an additional 10%. Capstone Bonus: Your casted Frostbolt and Ice Lances versus monsters reduce the cooldown of your Deep Freeze by 2 sec and Frozen Orb by 1 sec. Also, dealing damage with Deep Freeze grants you a Lesser Ice Barrier (if you know Ice Barrier)."],"system":"classic"},{"id":"talent-1857","treeId":"mage-frost","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_mage_deepfreeze.png","maxRank":1,"name":"Deep Freeze","description":"Stuns the target for 2.5 seconds. Only usable on Frozen targets. Deals the listed amountthe listed amount to the listed amountthe listed amount damage to monsters permanently immune to stuns.","rankDescriptions":["Stuns the target for 2.5 seconds. Only usable on Frozen targets. Deals the listed amountthe listed amount to the listed amountthe listed amount damage to monsters permanently immune to stuns."],"system":"classic"},{"id":"talent-62","treeId":"mage-frost","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_frost_icefloes.png","maxRank":3,"name":"Ice Floes","description":"Reduces the cooldown of your Frost Nova, Cone of Cold, Ice Block and Icy Veins spells by 33%. Capstone Bonus: Your Ice Block also heals you for 4% of your base health every second.","rankDescriptions":["Reduces the cooldown of your Frost Nova, Cone of Cold, Ice Block and Icy Veins spells by 11%. Capstone Bonus: Your Ice Block also heals you for 4% of your base health every second.","Reduces the cooldown of your Frost Nova, Cone of Cold, Ice Block and Icy Veins spells by 22%. Capstone Bonus: Your Ice Block also heals you for 4% of your base health every second.","Reduces the cooldown of your Frost Nova, Cone of Cold, Ice Block and Icy Veins spells by 33%. Capstone Bonus: Your Ice Block also heals you for 4% of your base health every second."],"system":"classic"},{"id":"talent-63","treeId":"mage-frost","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_frost_icestorm.png","maxRank":3,"name":"Improved Blizzard","description":"Adds a chill effect to your Blizzard. This effect lowers the target's movement speed by 40%. Lasts 1.5 seconds. Reduces the mana cost of Blizzard by 30% and its periodic interval by 28%.","rankDescriptions":["Adds a chill effect to your Blizzard. This effect lowers the target's movement speed by 20%. Lasts 1.5 seconds. Reduces the mana cost of Blizzard by 10% and its periodic interval by 12%.","Adds a chill effect to your Blizzard. This effect lowers the target's movement speed by 30%. Lasts 1.5 seconds. Reduces the mana cost of Blizzard by 20% and its periodic interval by 20%.","Adds a chill effect to your Blizzard. This effect lowers the target's movement speed by 40%. Lasts 1.5 seconds. Reduces the mana cost of Blizzard by 30% and its periodic interval by 28%."],"system":"classic"},{"id":"talent-64","treeId":"mage-frost","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_frost_glacier.png","maxRank":3,"name":"Flash Freeze","description":"Increases the damage dealt by your Cone of Cold spell by 45%. After dealing damage with Cone of Cold or Frost Nova you have a 100% chance to reduce the cast time of your next 2 Frostbolt or Blizzard casts by 25%.","rankDescriptions":["Increases the damage dealt by your Cone of Cold spell by 15%. After dealing damage with Cone of Cold or Frost Nova you have a 33% chance to reduce the cast time of your next 2 Frostbolt or Blizzard casts by 25%.","Increases the damage dealt by your Cone of Cold spell by 30%. After dealing damage with Cone of Cold or Frost Nova you have a 66% chance to reduce the cast time of your next 2 Frostbolt or Blizzard casts by 25%.","Increases the damage dealt by your Cone of Cold spell by 45%. After dealing damage with Cone of Cold or Frost Nova you have a 100% chance to reduce the cast time of your next 2 Frostbolt or Blizzard casts by 25%."],"system":"classic"},{"id":"talent-67","treeId":"mage-frost","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_frost_frostshock.png","maxRank":3,"name":"Shatter","description":"Increases the critical strike chance of your Mage spells against frozen targets by 50%. Increases the duration of your Icy Veins by 9 seconds. Capstone Bonus: Enhances your Ice Lance by converting any critical chance exceeding 100% into a bonus to damage.","rankDescriptions":["Increases the critical strike chance of your Mage spells against frozen targets by 17%. Increases the duration of your Icy Veins by 3 seconds. Capstone Bonus: The final rank of this talent enhances your Ice Lance by converting any critical chance exceeding 100% into a bonus to damage.","Increases the critical strike chance of your Mage spells against frozen targets by 34%. Increases the duration of your Icy Veins by 6 seconds. Capstone Bonus: The final rank of this talent enhances your Ice Lance by converting any critical chance exceeding 100% into a bonus to damage.","Increases the critical strike chance of your Mage spells against frozen targets by 50%. Increases the duration of your Icy Veins by 9 seconds. Capstone Bonus: Enhances your Ice Lance by converting any critical chance exceeding 100% into a bonus to damage."],"system":"classic"},{"id":"talent-68","treeId":"mage-frost","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_frost_chillingblast.png","maxRank":3,"name":"Winter's Chill","description":"Increases your critical strike chance with all spells and abilities by 3% Non-periodic Frost spell damage has a 100% chance to apply the Winter's Chill effect: Increasing the chance spells will critically strike the target by 1% and reducing healing received by 7% for 8 seconds. Stacks up to 5 times. Does not stack with other similar effects. Frozen Orb can not trigger this effect","rankDescriptions":["Increases your critical strike chance with all spells and abilities by 1%. Non-periodic Frost spell damage has a 33% chance to apply the Winter's Chill effect: Increasing the chance spells will critically strike the target by 1% and reducing healing received by 7% for 8 seconds. Stacks up to 5 times. Does not stack with other similar effects. Frozen Orb can not trigger this effect","Increases your critical strike chance with all spells and abilities by 2%. Non-periodic Frost spell damage has a 66% chance to apply the Winter's Chill effect: Increasing the chance spells will critically strike the target by 1% and reducing healing received by 7% for 8 seconds. Stacks up to 5 times. Does not stack with other similar effects. Frozen Orb can not trigger this effect","Increases your critical strike chance with all spells and abilities by 3% Non-periodic Frost spell damage has a 100% chance to apply the Winter's Chill effect: Increasing the chance spells will critically strike the target by 1% and reducing healing received by 7% for 8 seconds. Stacks up to 5 times. Does not stack with other similar effects. Frozen Orb can not trigger this effect"],"system":"classic"},{"id":"talent-1649","treeId":"mage-frost","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_ice_magicdamage.png","maxRank":3,"name":"Precision","description":"Increases your chance to hit with spells and abilities by 3%. Reduces the mana cost of Mage spells by 3%.","rankDescriptions":["Increases your chance to hit with spells and abilities by 1%. Reduces the mana cost of Mage spells by 1%.","Increases your chance to hit with spells and abilities by 2%. Reduces the mana cost of Mage spells by 2%.","Increases your chance to hit with spells and abilities by 3%. Reduces the mana cost of Mage spells by 3%."],"system":"classic"},{"id":"talent-1738","treeId":"mage-frost","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_frost_arcticwinds.png","maxRank":3,"name":"Arctic Winds","description":"Increases all damage done by 3%, and Frost by an additional 3%. Increases the duration of Deep Freeze by 1 sec. Capstone Bonus: Your Deep Freeze casts apply up to 5 frozen enemies within 8 yards of your target. If used with Fingers of Frost, it will consume only one charge.","rankDescriptions":["Increases all damage done by 1%, and Frost by an additional 1%. Increases the duration of Deep Freeze by 0.33 sec. Capstone Bonus: Your Deep Freeze casts apply up to 5 frozen enemies within 8 yards of your target. If used with Fingers of Frost, it will consume only one charge.","Increases all damage done by 2%, and Frost by an additional 2%. Increases the duration of Deep Freeze by 0.66 sec. Capstone Bonus: Your Deep Freeze casts apply up to 5 frozen enemies within 8 yards of your target. If used with Fingers of Frost, it will consume only one charge.","Increases all damage done by 3%, and Frost by an additional 3%. Increases the duration of Deep Freeze by 1 sec. Capstone Bonus: Your Deep Freeze casts apply up to 5 frozen enemies within 8 yards of your target. If used with Fingers of Frost, it will consume only one charge."],"system":"classic"},{"id":"talent-1853","treeId":"mage-frost","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_mage_wintersgrasp.png","maxRank":2,"name":"Fingers of Frost","description":"When you deal direct Frost damage with a Mage or Shaman spell you have a 15% chance to be granted the Fingers of Frost effect, which treats your next 2 Mage spells cast as if the target were Frozen. Lasts 15 seconds. Blizzard and Ice Lance cannot trigger this effect.","rankDescriptions":["When you deal direct Frost damage with a Mage or Shaman spell you have a 7% chance to be granted the Fingers of Frost effect, which treats your next 2 Mage spells cast as if the target were Frozen. Lasts 15 seconds. Blizzard and Ice Lance cannot trigger this effect.","When you deal direct Frost damage with a Mage or Shaman spell you have a 15% chance to be granted the Fingers of Frost effect, which treats your next 2 Mage spells cast as if the target were Frozen. Lasts 15 seconds. Blizzard and Ice Lance cannot trigger this effect."],"system":"classic"},{"id":"talent-1855","treeId":"mage-frost","index":26,"prerequisiteId":"talent-1741","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1741","requiredRank":1}],"column":3,"row":9,"icon":"/assets/ui/talents/icons/spell_frost_summonwaterelemental_2.png","maxRank":3,"name":"Enduring Winter","description":"Increases the duration of your Summon Water Elemental spell by 15 sec and your Frost spells have a 100% chance to grant Replenishment. @s:57669:0@ Capstone Bonus: Damage of your Water Elemental gets increased by 30%.","rankDescriptions":["Increases the duration of your Summon Water Elemental spell by 5 sec and your Frost spells have a 33% chance to grant Replenishment. @s:57669:0@ Capstone Bonus: Damage of your Water Elemental gets increased by 30%.","Increases the duration of your Summon Water Elemental spell by 10 sec and your Frost spells have a 66% chance to grant Replenishment. @s:57669:0@ Capstone Bonus: Damage of your Water Elemental gets increased by 30%.","Increases the duration of your Summon Water Elemental spell by 15 sec and your Frost spells have a 100% chance to grant Replenishment. @s:57669:0@ Capstone Bonus: Damage of your Water Elemental gets increased by 30%."],"system":"classic"},{"id":"talent-65","treeId":"mage-frost","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/talents/icons/spell_frost_wisp.png","maxRank":3,"name":"Permafrost","description":"Increases the duration of your Cone of Cold, Frostbolt, Ice Armor and Frost Shock slow effects by 3 sec, and reduces the target's speed by an additional 10%.","rankDescriptions":["Increases the duration of your Cone of Cold, Frostbolt, Ice Armor and Frost Shock slow effects by 1 sec, and reduces the target's speed by an additional 4%.","Increases the duration of your Cone of Cold, Frostbolt, Ice Armor and Frost Shock slow effects by 2 sec, and reduces the target's speed by an additional 7%.","Increases the duration of your Cone of Cold, Frostbolt, Ice Armor and Frost Shock slow effects by 3 sec, and reduces the target's speed by an additional 10%."],"system":"classic"},{"id":"talent-1736","treeId":"mage-frost","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/spell_frost_frozencore.png","maxRank":3,"name":"Frozen Core","description":"Increases spell, ranged and melee haste by 3%. Increases the duration of your Ice Block by 3 seconds. Capstone Bonus: Being hit by an Interrupt effect when you are not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect against you for 20 seconds. It also freezes all nearby targets, preventing them from moving for 4 seconds. This may only occur once every 20 seconds.","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Increases the duration of your Ice Block by 1 seconds. Capstone Bonus: Being hit by an Interrupt effect when you are not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect against you for 20 seconds. It also freezes all nearby targets, preventing them from moving for 4 seconds. This may only occur once every 20 seconds.","Increases spell, ranged and melee haste by 2%. Increases the duration of your Ice Block by 2 seconds. Capstone Bonus: Being hit by an Interrupt effect when you are not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect against you for 20 seconds. It also freezes all nearby targets, preventing them from moving for 4 seconds. This may only occur once every 20 seconds.","Increases spell, ranged and melee haste by 3%. Increases the duration of your Ice Block by 3 seconds. Capstone Bonus: Being hit by an Interrupt effect when you are not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect against you for 20 seconds. It also freezes all nearby targets, preventing them from moving for 4 seconds. This may only occur once every 20 seconds."],"system":"classic"},{"id":"talent-74","treeId":"mage-arcane","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/spell_holy_dispelmagic.png","maxRank":3,"name":"Arcane Subtlety","description":"Increases the range of your damaging spells with a channeling or cast time by 6 yards. This does not stack with other similar effects. Reduces the mana cost of your Arcane Spells by 12%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","rankDescriptions":["Increases the range of your damaging spells with a channeling or cast time by 2 yards. This does not stack with other similar effects. Reduces the mana cost of your Arcane Spells by 4%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases the range of your damaging spells with a channeling or cast time by 4 yards. This does not stack with other similar effects. Reduces the mana cost of your Arcane Spells by 8%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases the range of your damaging spells with a channeling or cast time by 6 yards. This does not stack with other similar effects. Reduces the mana cost of your Arcane Spells by 12%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]"],"system":"classic"},{"id":"talent-82","treeId":"mage-arcane","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_abolishmagic.png","maxRank":3,"name":"Improved Polymorph","description":"Reduces the casting time of your Polymorph by 0.6 sec. Capstone Bonus: Your Polymorph removes all periodic damage effects on the target.","rankDescriptions":["Reduces the casting time of your Polymorph by 0.2 sec. Capstone Bonus: Your Polymorph removes all periodic damage effects on the target.","Reduces the casting time of your Polymorph by 0.4 sec. Capstone Bonus: Your Polymorph removes all periodic damage effects on the target.","Reduces the casting time of your Polymorph by 0.6 sec. Capstone Bonus: Your Polymorph removes all periodic damage effects on the target."],"system":"classic"},{"id":"talent-83","treeId":"mage-arcane","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_detectlesserinvisibility.png","maxRank":2,"name":"Arcane Shielding","description":"Reduces magic damage taken by 2%. Decreases the mana lost per point of damage taken when Mana Shield is active by 33%.","rankDescriptions":["Reduces magic damage taken by 1%. Decreases the mana lost per point of damage taken when Mana Shield is active by 17%.","Reduces magic damage taken by 2%. Decreases the mana lost per point of damage taken when Mana Shield is active by 33%."],"system":"classic"},{"id":"talent-85","treeId":"mage-arcane","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_arcane_arcaneresilience.png","maxRank":3,"name":"Arcane Fortitude","description":"Increases your armor by an amount equal to 150% of your Intellect. This effect is doubled while Mana-forged Barrier is active. Capstone Bonus: Your armor contribution from Cloth gear is increased by 30% while Mana-Forged Barrier is active.","rankDescriptions":["Increases your armor by an amount equal to 50% of your Intellect. This effect is doubled while Mana-forged Barrier is active. Capstone Bonus: Your armor contribution from Cloth gear is increased by 30% while Mana-Forged Barrier is active.","Increases your armor by an amount equal to 100% of your Intellect. This effect is doubled while Mana-forged Barrier is active. Capstone Bonus: Your armor contribution from Cloth gear is increased by 30% while Mana-Forged Barrier is active.","Increases your armor by an amount equal to 150% of your Intellect. This effect is doubled while Mana-forged Barrier is active. Capstone Bonus: Your armor contribution from Cloth gear is increased by 30% while Mana-Forged Barrier is active."],"system":"classic"},{"id":"talent-1724","treeId":"mage-arcane","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_arcane_blink.png","maxRank":3,"name":"Improved Blink","description":"Reduces the cooldown of Blink and Shimmer by 12 seconds and their mana costs by 100%. Capstone Bonus: After casting Blink all damage taken is reduced by 20% for 3 seconds.","rankDescriptions":["Reduces the cooldown of Blink and Shimmer by 4 seconds and their mana costs by 33%. Capstone Bonus: After casting Blink or Shimmer all damage taken is reduced by 20% for 3 seconds.","Reduces the cooldown of Blink and Shimmer by 8 seconds and their mana costs by 66%. Capstone Bonus: After casting Blink or Shimmer all damage taken is reduced by 20% for 3 seconds.","Reduces the cooldown of Blink and Shimmer by 12 seconds and their mana costs by 100%. Capstone Bonus: After casting Blink all damage taken is reduced by 20% for 3 seconds."],"system":"classic"},{"id":"talent-1726","treeId":"mage-arcane","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_arcane_prismaticcloak.png","maxRank":2,"name":"Prismatic Cloak","description":"Reduces all damage taken by 2%. Reduces the fade time of your Invisibility spell by 3 sec.","rankDescriptions":["Reduces all damage taken by 1%. Reduces the fade time of your Invisibility spell by 1.5 sec.","Reduces all damage taken by 2%. Reduces the fade time of your Invisibility spell by 3 sec."],"system":"classic"},{"id":"talent-1727","treeId":"mage-arcane","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_nature_starfall.png","maxRank":3,"name":"Arcane Empowerment","description":"Increases the damage of all party and raid members by 3%. Does not stack with other similar effects. Increases the spell damage scaling of your Arcane Missiles by 30%. Increases the spell damage scaling of your Arcane Blast and Arcane Barrage by 15%.","rankDescriptions":["Increases the damage of all party and raid members by 1%. Does not stack with other similar effects. Increases the spell damage scaling of your Arcane Missiles by 10%. Increases the spell damage scaling of your Arcane Blast and Arcane Barrage by 5%.","Increases the damage of all party and raid members by 2%. Does not stack with other similar effects. Increases the spell damage scaling of your Arcane Missiles by 20%. Increases the spell damage scaling of your Arcane Blast and Arcane Barrage by 10%.","Increases the damage of all party and raid members by 3%. Does not stack with other similar effects. Increases the spell damage scaling of your Arcane Missiles by 30%. Increases the spell damage scaling of your Arcane Blast and Arcane Barrage by 15%."],"system":"classic"},{"id":"talent-76","treeId":"mage-arcane","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_holy_devotion.png","maxRank":3,"name":"Alacrity","description":"Increases spell, ranged and melee haste by 6%.","rankDescriptions":["Increases spell, ranged and melee haste by 2%.","Increases spell, ranged and melee haste by 4%.","Increases spell, ranged and melee haste by 6%."],"system":"classic"},{"id":"talent-81","treeId":"mage-arcane","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_wispsplode.png","maxRank":3,"name":"Spell Impact","description":"Increases the damage of your Arcane Explosion, Arcane Blast, Arcane Barrage, Arcane Orb, Blast Wave, Fire Blast, Scorch, Pyroblast, Ice Lance and Cone of Cold spells by 9%.","rankDescriptions":["Increases the damage of your Arcane Explosion, Arcane Blast, Arcane Barrage, Arcane Orb, Blast Wave, Fire Blast, Scorch, Pyroblast, Ice Lance and Cone of Cold spells by 3%.","Increases the damage of your Arcane Explosion, Arcane Blast, Arcane Barrage, Arcane Orb, Blast Wave, Fire Blast, Scorch, Pyroblast, Ice Lance and Cone of Cold spells by 6%.","Increases the damage of your Arcane Explosion, Arcane Blast, Arcane Barrage, Arcane Orb, Blast Wave, Fire Blast, Scorch, Pyroblast, Ice Lance and Cone of Cold spells by 9%."],"system":"classic"},{"id":"talent-86","treeId":"mage-arcane","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_enchantarmor.png","maxRank":1,"name":"Presence of Mind","description":"When activated, your next Mage spell within 10 seconds with a casting time less than 10 sec becomes an instant cast spell. Arcane blast, Pyroblast, and Fireball deal 20% reduced damage against players when done this way.","rankDescriptions":["When activated, your next Mage spell within 10 seconds with a casting time less than 10 sec becomes an instant cast spell. Arcane blast, Pyroblast, and Fireball deal 20% reduced damage against players when done this way."],"system":"classic"},{"id":"talent-87","treeId":"mage-arcane","index":22,"prerequisiteId":"talent-421","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-421","requiredRank":3}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_nature_lightning.png","maxRank":1,"name":"Arcane Power","description":"When activated, your spells and abilities deal 15% more magic damage while costing 15% more mana to cast. This effect lasts the listed amount Does not stack with other similar effects. This ability can be used while in Cat, Bear, Moonkin or Tree of Life Shapeshifts.","rankDescriptions":["When activated, your spells and abilities deal 15% more magic damage while costing 15% more mana to cast. This effect lasts the listed amount Does not stack with other similar effects. This ability can be used while in Cat, Bear, Moonkin or Tree of Life Shapeshifts."],"system":"classic"},{"id":"talent-88","treeId":"mage-arcane","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_frost_iceshock.png","maxRank":3,"name":"Improved Counterspell","description":"Reduce the cooldown of your Counterspell ability by 10 seconds. Capstone Bonus: Your Counterspell ability now silences the target for 2 seconds.","rankDescriptions":["Reduce the cooldown of your Counterspell ability by 4 seconds. Capstone Bonus: Your Counterspell ability now silences the target for 2 seconds.","Reduce the cooldown of your Counterspell ability by 7 seconds. Capstone Bonus: Your Counterspell ability now silences the target for 2 seconds.","Reduce the cooldown of your Counterspell ability by 10 seconds. Capstone Bonus: Your Counterspell ability now silences the target for 2 seconds."],"system":"classic"},{"id":"talent-421","treeId":"mage-arcane","index":19,"prerequisiteId":"talent-86","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-86","requiredRank":1}],"column":2,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_teleport.png","maxRank":3,"name":"Arcane Instability","description":"Increases your critical strike chance with all spells and abilities by 3%. Increases all damage dealt by Arcane Spells and Abilities by 3%. Increases the cast time reduction effect of your Slow spell by 15%. Capstone Bonus: Your Arcane Orb reduces the movement speed of targets hit by 60% for 3 seconds.","rankDescriptions":["Increases your critical strike chance with all spells and abilities by 1%. Increases all damage dealt by Arcane Spells and Abilities by 1%. Increases the cast time reduction effect of your Slow spell by 5%. Capstone Bonus: Your Arcane Orb reduces the movement speed of targets hit by 60% for 3 seconds.","Increases your critical strike chance with all spells and abilities by 2%. Increases all damage dealt by Arcane Spells and Abilities by 2%. Increases the cast time reduction effect of your Slow spell by 10%. Capstone Bonus: Your Arcane Orb reduces the movement speed of targets hit by 60% for 3 seconds.","Increases your critical strike chance with all spells and abilities by 3%. Increases all damage dealt by Arcane Spells and Abilities by 3%. Increases the cast time reduction effect of your Slow spell by 15%. Capstone Bonus: Your Arcane Orb reduces the movement speed of targets hit by 60% for 3 seconds."],"system":"classic"},{"id":"talent-1650","treeId":"mage-arcane","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_astralrecalgroup.png","maxRank":3,"name":"Magic Absorption","description":"Increases magic damage done by 3%. Reduces magic damage taken by 3%. Increases the mana you gain from Mana Gems by 45%.","rankDescriptions":["Increases magic damage done by 1%. Reduces magic damage taken by 1%. Increases the mana you gain from Mana Gems by 15%.","Increases magic damage done by 2%. Reduces magic damage taken by 2%. Increases the mana you gain from Mana Gems by 30%.","Increases magic damage done by 3%. Reduces magic damage taken by 3%. Increases the mana you gain from Mana Gems by 45%."],"system":"classic"},{"id":"talent-1729","treeId":"mage-arcane","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_nature_slow.png","maxRank":1,"name":"Slow","description":"Reduces target's movement speed by 40%, increases the time between ranged attacks by 30% and increases casting time by 15%. Lasts 15 sec(10 versus players) Slow can only affect one target at a time. Does not stack with other similar effects.","rankDescriptions":["Reduces target's movement speed by 40%, increases the time between ranged attacks by 30% and increases casting time by 15%. Lasts 15 sec(10 versus players) Slow can only affect one target at a time. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-1843","treeId":"mage-arcane","index":24,"prerequisiteId":"talent-87","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-87","requiredRank":1}],"column":2,"row":8,"icon":"/assets/ui/talents/icons/ability_mage_potentspirit.png","maxRank":3,"name":"Arcane Flows","description":"Reduces the cooldown of your Presence of Mind, Arcane Power, Arcane Orb, Alter Time and Invisibility spells by 30%. Reduces the cooldown of Evocation by 30 seconds. Capstone Bonus: Your Arcane Power increases your magic damage dealt by an additional 5%.","rankDescriptions":["Reduces the cooldown of your Presence of Mind, Arcane Power, Arcane Orb, Alter Time and Invisibility spells by 10%. Reduces the cooldown of Evocation by 10 seconds. Capstone Bonus: Your Arcane Power increases your magic damage dealt by an additional 5%.","Reduces the cooldown of your Presence of Mind, Arcane Power, Arcane Orb, Alter Time and Invisibility spells by 20%. Reduces the cooldown of Evocation by 20 seconds. Capstone Bonus: Your Arcane Power increases your magic damage dealt by an additional 5%.","Reduces the cooldown of your Presence of Mind, Arcane Power, Arcane Orb, Alter Time and Invisibility spells by 30%. Reduces the cooldown of Evocation by 30 seconds. Capstone Bonus: Your Arcane Power increases your magic damage dealt by an additional 5%."],"system":"classic"},{"id":"talent-1846","treeId":"mage-arcane","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_mage_netherwindpresence.png","maxRank":3,"name":"Netherwind Presence","description":"Your Arcane Missiles, Arcane Barrage, Arcane Blast, Arcane Orb, Moonfire, Starfire and Starsurge spells increase your haste by 3% for 10 seconds, stacks up to 3 times. Capstone Bonus: Casting Slow while Netherwind Presence is fully stacked increases your movement speed by 30% for 3 sec.","rankDescriptions":["Your Arcane Missiles, Arcane Barrage, Arcane Blast, Arcane Orb, Moonfire, Starfire and Starsurge spells increase your haste by 1% for 10 seconds, stacks up to 3 times. Capstone Bonus: Casting Slow while Netherwind Presence is fully stacked increases your movement speed by 30% for 3 sec.","Your Arcane Missiles, Arcane Barrage, Arcane Blast, Arcane Orb, Moonfire, Starfire and Starsurge spells increase your haste by 2% for 10 seconds, stacks up to 3 times. Capstone Bonus: Casting Slow while Netherwind Presence is fully stacked increases your movement speed by 30% for 3 sec.","Your Arcane Missiles, Arcane Barrage, Arcane Blast, Arcane Orb, Moonfire, Starfire and Starsurge spells increase your haste by 3% for 10 seconds, stacks up to 3 times. Capstone Bonus: Casting Slow while Netherwind Presence is fully stacked increases your movement speed by 30% for 3 sec."],"system":"classic"},{"id":"talent-1847","treeId":"mage-arcane","index":30,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_mage_arcanebarrage.png","maxRank":1,"name":"Arcane Barrage","description":"Launches several missiles at the enemy target, causing 377 Arcane damage.","rankDescriptions":["Launches several missiles at the enemy target, causing 377 Arcane damage."],"system":"classic"},{"id":"talent-75","treeId":"mage-arcane","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_manaburn.png","maxRank":3,"name":"Arcane Concentration","description":"Gives you a 15% chance of entering a Clearcasting state after casting a damaging spell. The Clearcasting state reduces the mana, energy or rage cost of your next spell or ability by 100%.","rankDescriptions":["Gives you a 5% chance of entering a Clearcasting state after casting a damaging spell. The Clearcasting state reduces the mana, energy or rage cost of your next spell or ability by 100%.","Gives you a 10% chance of entering a Clearcasting state after casting a damaging spell. The Clearcasting state reduces the mana, energy or rage cost of your next spell or ability by 100%.","Gives you a 15% chance of entering a Clearcasting state after casting a damaging spell. The Clearcasting state reduces the mana, energy or rage cost of your next spell or ability by 100%."],"system":"classic"},{"id":"talent-80","treeId":"mage-arcane","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_starfall.png","maxRank":3,"name":"Arcane Stability","description":"Increases your chance to hit with spells and abilities by 3%. Reduces spell pushback suffered from damaging attacks by 100%. Reduces the mana cost of your Arcane Mage spells by 9%.","rankDescriptions":["Increases your chance to hit with spells and abilities by 1%. Reduces spell pushback suffered from damaging attacks by 33%. Reduces the mana cost of your Arcane Mage spells by 3%.","Increases your chance to hit with spells and abilities by 2%. Reduces spell pushback suffered from damaging attacks by 66%. Reduces the mana cost of your Arcane Mage spells by 6%.","Increases your chance to hit with spells and abilities by 3%. Reduces spell pushback suffered from damaging attacks by 100%. Reduces the mana cost of your Arcane Mage spells by 9%."],"system":"classic"},{"id":"talent-1142","treeId":"mage-arcane","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_siphonmana.png","maxRank":3,"name":"Arcane Meditation","description":"Increases spell, ranged and melee haste by 3%. Allows 25% of your mana regeneration to continue while casting.","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Allows 8% of your mana regeneration to continue while casting.","Increases spell, ranged and melee haste by 2%. Allows 16% of your mana regeneration to continue while casting.","Increases spell, ranged and melee haste by 3%. Allows 25% of your mana regeneration to continue while casting."],"system":"classic"},{"id":"talent-1725","treeId":"mage-arcane","index":20,"prerequisiteId":"talent-86","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-86","requiredRank":1}],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_arcane_arcanepotency.png","maxRank":2,"name":"Arcane Potency","description":"Increases the critical strike chance of your next damaging spell by 30% after gaining Presence of Mind or Clearcasting from Arcane Concentration. This effect will be consumed by any spell cast, even spells which cannot critically strike.","rankDescriptions":["Increases the critical strike chance of your next damaging spell by 15% after gaining Presence of Mind or Clearcasting from Arcane Concentration. This effect will be consumed by any spell cast, even spells which cannot critically strike.","Increases the critical strike chance of your next damaging spell by 30% after gaining Presence of Mind or Clearcasting from Arcane Concentration. This effect will be consumed by any spell cast, even spells which cannot critically strike."],"system":"classic"},{"id":"talent-1728","treeId":"mage-arcane","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_arcane_mindmastery.png","maxRank":3,"name":"Mind Mastery","description":"Increases spell damage by 9% of your Intellect. Reduces the mana cost of all spells by 6%. Increases the duration of Brilliance Aura by 6 seconds.","rankDescriptions":["Increases spell damage by 3% of your Intellect. Reduces the mana cost of all spells by 2%. Increases the duration of Brilliance Aura by 2 seconds.","Increases spell damage by 6% of your Intellect. Reduces the mana cost of all spells by 4%. Increases the duration of Brilliance Aura by 4 seconds.","Increases spell damage by 9% of your Intellect. Reduces the mana cost of all spells by 6%. Increases the duration of Brilliance Aura by 6 seconds."],"system":"classic"},{"id":"talent-1826","treeId":"mage-arcane","index":29,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/talents/icons/spell_arcane_arcanetorrent.png","maxRank":5,"name":"Spell Power","description":"Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct critical damage with a spell while your mana is below 50% taps into raw power, restoring 1% of your total mana each second and increasing your magic damage by 10% and Arcane damage by another 5%. This effect lasts for 10 seconds and can only occur once every 30 seconds.","rankDescriptions":["Your spell critical strikes now deal 180% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct critical damage with a spell while your mana is below 50% taps into raw power, restoring 1% of your total mana each second and increasing your magic damage by 10% and Arcane damage by another 5%. This effect lasts for 10 seconds and can only occur once every 30 seconds.","Your spell critical strikes now deal 185% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct critical damage with a spell while your mana is below 50% taps into raw power, restoring 1% of your total mana each second and increasing your magic damage by 10% and Arcane damage by another 5%. This effect lasts for 10 seconds and can only occur once every 30 seconds.","Your spell critical strikes now deal 190% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct critical damage with a spell while your mana is below 50% taps into raw power, restoring 1% of your total mana each second and increasing your magic damage by 10% and Arcane damage by another 5%. This effect lasts for 10 seconds and can only occur once every 30 seconds.","Your spell critical strikes now deal 195% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct critical damage with a spell while your mana is below 50% taps into raw power, restoring 1% of your total mana each second and increasing your magic damage by 10% and Arcane damage by another 5%. This effect lasts for 10 seconds and can only occur once every 30 seconds.","Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Dealing direct critical damage with a spell while your mana is below 50% taps into raw power, restoring 1% of your total mana each second and increasing your magic damage by 10% and Arcane damage by another 5%. This effect lasts for 10 seconds and can only occur once every 30 seconds."],"system":"classic"},{"id":"talent-1844","treeId":"mage-arcane","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_mage_incantersabsorbtion.png","maxRank":3,"name":"Incanter's Absorption","description":"Reduces the cooldown of Spellsteal by 3 sec. Using a direct damaging Arcane spell with a cast time or Arcane Missiles while Missile Barrage is active has a 100% chance to grant you a shield absorbing a small amount of damage. Capstone Bonus: Your Spellsteal steals an additional spell from the target.","rankDescriptions":["Reduces the cooldown of Spellsteal by 1 sec. Using a direct damaging Arcane spell with a cast time or Arcane Missiles while Missile Barrage is active has a 33% chance to grant you a shield absorbing a small amount of damage. Capstone Bonus: Your Spellsteal steals an additional spell from the target.","Reduces the cooldown of Spellsteal by 2 sec. Using a direct damaging Arcane spell with a cast time or Arcane Missiles while Missile Barrage is active has a 66% chance to grant you a shield absorbing a small amount of damage. Capstone Bonus: Your Spellsteal steals an additional spell from the target.","Reduces the cooldown of Spellsteal by 3 sec. Using a direct damaging Arcane spell with a cast time or Arcane Missiles while Missile Barrage is active has a 100% chance to grant you a shield absorbing a small amount of damage. Capstone Bonus: Your Spellsteal steals an additional spell from the target."],"system":"classic"},{"id":"talent-1845","treeId":"mage-arcane","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/ability_mage_studentofthemind.png","maxRank":3,"name":"Student of the Mind","description":"Increases your total Spirit by 15%. Capstone Bonus: Your spell damage is increased by 15% of your Spirit.","rankDescriptions":["Increases your total Spirit by 5%. Capstone Bonus: Your spell damage is increased by 15% of your Spirit.","Increases your total Spirit by 10%. Capstone Bonus: Your spell damage is increased by 15% of your Spirit.","Increases your total Spirit by 15%. Capstone Bonus: Your spell damage is increased by 15% of your Spirit."],"system":"classic"},{"id":"talent-2209","treeId":"mage-arcane","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_mage_missilebarrage.png","maxRank":3,"name":"Missile Barrage","description":"Arcane Blast, Starfire and Starsurge have a 40% chance to empower your next Arcane Missiles, reducing its channel and fire time by 50%, and removing its mana cost. Arcane Barrage, Fireball, Frostbolt, Slow and Moonfire have a 20% chance to trigger this effect. Arcane Orb has a 100% chance to trigger this effect.","rankDescriptions":["Arcane Blast, Starfire and Starsurge have a 14% chance to empower your next Arcane Missiles, reducing its channel and fire time by 50%, and removing its mana cost. Arcane Barrage, Fireball, Frostbolt, Slow and Moonfire have a 7% chance to trigger this effect. Arcane Orb has a 33% chance to trigger this effect.","Arcane Blast, Starfire and Starsurge have a 27% chance to empower your next Arcane Missiles, reducing its channel and fire time by 50%, and removing its mana cost. Arcane Barrage, Fireball, Frostbolt, Slow and Moonfire have a 14% chance to trigger this effect. Arcane Orb has a 66% chance to trigger this effect.","Arcane Blast, Starfire and Starsurge have a 40% chance to empower your next Arcane Missiles, reducing its channel and fire time by 50%, and removing its mana cost. Arcane Barrage, Fireball, Frostbolt, Slow and Moonfire have a 20% chance to trigger this effect. Arcane Orb has a 100% chance to trigger this effect."],"system":"classic"},{"id":"talent-77","treeId":"mage-arcane","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_charm.png","maxRank":3,"name":"Arcane Mind","description":"Increases your total Intellect by 10% and your spell critical chance by 3%. The duration of Alter Time is increased by 2 sec. Capstone Bonus: Reduces the global cooldown of Alter Time by 100%.","rankDescriptions":["Increases your total Intellect by 4% and your spell critical chance by 1%. The duration of Alter Time is increased by 0.66 sec. Capstone Bonus: Reduces the global cooldown of Alter Time by 100%.","Increases your total Intellect by 7% and your spell critical chance by 2%. The duration of Alter Time is increased by 1.33 sec. Capstone Bonus: Reduces the global cooldown of Alter Time by 100%.","Increases your total Intellect by 10% and your spell critical chance by 3%. The duration of Alter Time is increased by 2 sec. Capstone Bonus: Reduces the global cooldown of Alter Time by 100%."],"system":"classic"},{"id":"talent-2211","treeId":"mage-arcane","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/spell_arcane_studentofmagic.png","maxRank":1,"name":"Focus Magic","description":"Increases the target's chance to critically hit with spells by 1%. When the target critically hits the caster's chance to critically hit with Arcane, Fire and Frost spells is increased by 3% for 10 seconds. Cannot be cast on self.","rankDescriptions":["Increases the target's chance to critically hit with spells by 1%. When the target critically hits the caster's chance to critically hit with Arcane, Fire and Frost spells is increased by 3% for 10 seconds. Cannot be cast on self."],"system":"classic"},{"id":"talent-2222","treeId":"mage-arcane","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/ability_mage_tormentoftheweak.png","maxRank":3,"name":"Torment the Weak","description":"Your Frostbolt, Fireball, Frostfire Bolt, Pyroblast, Arcane Missiles, Arcane Blast, and Arcane Barrage abilities deal 9% more damage to targets affected by a movement or attack speed slow.","rankDescriptions":["Your Frostbolt, Fireball, Frostfire Bolt, Pyroblast, Arcane Missiles, Arcane Blast, and Arcane Barrage abilities deal 3% more damage to targets affected by a movement or attack speed slow.","Your Frostbolt, Fireball, Frostfire Bolt, Pyroblast, Arcane Missiles, Arcane Blast, and Arcane Barrage abilities deal 6% more damage to targets affected by a movement or attack speed slow.","Your Frostbolt, Fireball, Frostfire Bolt, Pyroblast, Arcane Missiles, Arcane Blast, and Arcane Barrage abilities deal 9% more damage to targets affected by a movement or attack speed slow."],"system":"classic"}]} diff --git a/src/game/generated/talentUi/necromancer.json b/src/game/generated/talentUi/necromancer.json new file mode 100644 index 00000000..44557058 --- /dev/null +++ b/src/game/generated/talentUi/necromancer.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"necromancer","trees":[{"id":"coa-necromancer-61","classId":"necromancer","name":"Animation","icon":"/assets/ui/spells/skeletalarcher.png","background":"","description":"Animation nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-necromancer-87","classId":"necromancer","name":"Class","icon":"/assets/ui/spells/ui_darkshore_warfront_horde_abomination.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-necromancer-59","classId":"necromancer","name":"Death","icon":"/assets/ui/spells/inv_pet_batpetmaldraxxus.png","background":"","description":"Death nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-necromancer-60","classId":"necromancer","name":"Rime","icon":"/assets/ui/spells/uico_frost_spell_09_border.png","background":"","description":"Rime nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-29866","treeId":"coa-necromancer-59","index":29866,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/inv_pet_batpetmaldraxxus.png","maxRank":1,"name":"Flesh to Worms","description":"Disease an enemy, dealing 15 + 11.06% shadow SP Plague damage and generating Runic Power every 3 sec for 18 seconds.","rankDescriptions":["Disease an enemy, dealing 15 + 11.06% shadow SP Plague damage and generating Runic Power every 3 sec for 18 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4034","treeId":"coa-necromancer-59","index":4034,"prerequisiteId":"coa-entry-29244","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29244","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/spell_shadow_plaguecloud.png","maxRank":1,"name":"Crypt Plague","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-11904","treeId":"coa-necromancer-59","index":11904,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/spell_holy_turnundead.png","maxRank":1,"name":"Cycle of Death","description":"Increases your spell haste by 5%.","rankDescriptions":["Increases your spell haste by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33752","treeId":"coa-necromancer-59","index":33752,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/spell_shadow_deathanddecay.png","maxRank":1,"name":"Master of Death","description":"Casting Command spells on an enemy now applies Crypt Plague.","rankDescriptions":["Casting Command spells on an enemy now applies Crypt Plague."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7808","treeId":"coa-necromancer-59","index":7808,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/spell_shadow_raisedead.png","maxRank":1,"name":"Rotting Flesh","description":"Increases the damage of Flesh to Worms by 25% and allows its periodic damage to scale with your spell haste.","rankDescriptions":["Increases the damage of Flesh to Worms by 25% and allows its periodic damage to scale with your spell haste."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6904","treeId":"coa-necromancer-59","index":6904,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_shadow_darksummoning.png","maxRank":1,"name":"Swarmer","description":"Increases the Runic Power generated by Crypt Swarm by 2 per tick.","rankDescriptions":["Increases the Runic Power generated by Crypt Swarm by 2 per tick."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6863","treeId":"coa-necromancer-59","index":6863,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/nhi_deathcoil_border.png","maxRank":2,"name":"Damnation","description":"Increases your Shadow damage by 10%, doubled against enemies below 35% health.","rankDescriptions":["Increases your Shadow damage by 5%, doubled against enemies below 35% health.","Increases your Shadow damage by 10%, doubled against enemies below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19222","treeId":"coa-necromancer-59","index":19222,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_pet_diseasedsquirrel.png","maxRank":1,"name":"Plague Science","description":"Level 20 Passive Your diseases and Crypt Swarm now deal 100% increased damage to enemies below 20% health.","rankDescriptions":["Level 20 Passive Your diseases and Crypt Swarm now deal 100% increased damage to enemies below 20% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-31245","treeId":"coa-necromancer-59","index":31245,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/epic_rpg_icon_pack_death_icon_0000s_0000_spirits_border.png","maxRank":1,"name":"Plague of Undeath","description":"Disease an enemy dealing 32 + 25% shadow SP Plague damage every 3 sec and reduces the targets Holy healing received by -40% for 20 seconds. If Plague of Undeath is dispelled, the enemy takes 456 + 125% shadow SP Plague damage and is stunned for 5 seconds.","rankDescriptions":["Disease an enemy dealing 32 + 25% shadow SP Plague damage every 3 sec and reduces the targets Holy healing received by -40% for 20 seconds. If Plague of Undeath is dispelled, the enemy takes 456 + 125% shadow SP Plague damage and is stunned for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6295","treeId":"coa-necromancer-59","index":6295,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/ability_deathwing_sealarmorbreachgreen.png","maxRank":1,"name":"Creeping Crypt","description":"Increases the critical strike chance of Flesh to Worms by 25% against enemies below 35% maximum health.","rankDescriptions":["Increases the critical strike chance of Flesh to Worms by 25% against enemies below 35% maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30821","treeId":"coa-necromancer-59","index":30821,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/spell_shadow_auraofdarkness.png","maxRank":1,"name":"Dark Harvester","description":"Increases your critical strike and hit chance by 3%.","rankDescriptions":["Increases your critical strike and hit chance by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34982","treeId":"coa-necromancer-59","index":34982,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/_d3acidcloud.png","maxRank":1,"name":"Expunge","description":"Casting Command spells on an enemy now applies Expunge if they are Diseased.Expunge (Talent)Increases the target's damage taken from your Necromancer diseases by 10% for 10 seconds, stacking 2 times.","rankDescriptions":["Casting Command spells on an enemy now applies Expunge if they are Diseased.Expunge (Talent)Increases the target's damage taken from your Necromancer diseases by 10% for 10 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30804","treeId":"coa-necromancer-59","index":30804,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_maldraxxus_shaman.png","maxRank":1,"name":"Virulency","description":"Reinvigorate your diseases, refreshing all diseases on the target enemy and copying them, preserving their power and duration. You may use this abilty again within 10 sec to Infest another target, applying the copied diseases.","rankDescriptions":["Reinvigorate your diseases, refreshing all diseases on the target enemy and copying them, preserving their power and duration. You may use this abilty again within 10 sec to Infest another target, applying the copied diseases."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6960","treeId":"coa-necromancer-59","index":6960,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/spell_deathknight_explode_ghoul.png","maxRank":1,"name":"Foul Contagion","description":"Applying Crypt Plague now extends the duration of Flesh to Worms on the target by 1 sec.","rankDescriptions":["Applying Crypt Plague now extends the duration of Flesh to Worms on the target by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30835","treeId":"coa-necromancer-59","index":30835,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/artifactability_unholydeathknight_flagellation.png","maxRank":1,"name":"Necrosis","description":"Increases the duration of your diseases by 25%.","rankDescriptions":["Increases the duration of your diseases by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9223","treeId":"coa-necromancer-59","index":9223,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_deathknight_decomposingaura.png","maxRank":1,"name":"Rotting Flesh","description":"Level 30 Passive Applying Crypt Plague to an enemy now additionally adds Rotting Flesh to your Undead minions, increasing their damage dealt by 2% per stack for 5 sec.","rankDescriptions":["Level 30 Passive Applying Crypt Plague to an enemy now additionally adds Rotting Flesh to your Undead minions, increasing their damage dealt by 2% per stack for 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-6965","treeId":"coa-necromancer-59","index":6965,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/5_druideskill47_border.png","maxRank":1,"name":"Touch of Death","description":"Allows Expunge to stack an additional time and increases the range of your Death spells by 20%.","rankDescriptions":["Allows Expunge to stack an additional time and increases the range of your Death spells by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29241","treeId":"coa-necromancer-59","index":29241,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_necrolord_fleshcraft.png","maxRank":1,"name":"Crypt Explosion","description":"Casting Command spells on an enemy now applies Crypt Plague to 3 enemies near the primary target.","rankDescriptions":["Casting Command spells on an enemy now applies Crypt Plague to 3 enemies near the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30917","treeId":"coa-necromancer-59","index":30917,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/spell_necro_necroticsmash.png","maxRank":1,"name":"Creeping Plagues","description":"You may now Infest an additional target after using Virulency.","rankDescriptions":["You may now Infest an additional target after using Virulency."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33759","treeId":"coa-necromancer-59","index":33759,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/spell_nature_sicklypolymorph.png","maxRank":1,"name":"Pandemic","description":"Damage dealt by your Undead minions now reduces the cooldown of Virulency by -1 sec.","rankDescriptions":["Damage dealt by your Undead minions now reduces the cooldown of Virulency by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6961","treeId":"coa-necromancer-59","index":6961,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/_deathcoilv2_cyan.png","maxRank":1,"name":"Festering Decay","description":"Reduces the cost of Command spells by -15% and causes them to increase the target's spell damage taken by 10% for 15 seconds.","rankDescriptions":["Reduces the cost of Command spells by -15% and causes them to increase the target's spell damage taken by 10% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33753","treeId":"coa-necromancer-59","index":33753,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/spell_deathknight_empowerruneblade.png","maxRank":1,"name":"Unholy Runes","description":"Increases the damage of Crypt Swarm by 15%.","rankDescriptions":["Increases the damage of Crypt Swarm by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33763","treeId":"coa-necromancer-59","index":33763,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_fishing_bait_spineworm.png","maxRank":1,"name":"Expediting Death","description":"Each stack of Expunge now increases the target's damage taken from your Plague of Undeath by an additional 5%.","rankDescriptions":["Each stack of Expunge now increases the target's damage taken from your Plague of Undeath by an additional 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4620","treeId":"coa-necromancer-59","index":4620,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/achievement_dungeon_plaguefall_stradamamargrave.png","maxRank":1,"name":"Mutation","description":"For the next 15 seconds your diseases mutate causing them to act with accelerated lethality, allowing your freshly applied diseases to tick -50% faster.","rankDescriptions":["For the next 15 seconds your diseases mutate causing them to act with accelerated lethality, allowing your freshly applied diseases to tick -50% faster."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29864","treeId":"coa-necromancer-59","index":29864,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_helm_cloth_raidwarlockmythic_s_01.png","maxRank":1,"name":"Plague Revenant","description":"Critical strikes now apply a stack of Crypt Plague.","rankDescriptions":["Critical strikes now apply a stack of Crypt Plague."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4623","treeId":"coa-necromancer-59","index":4623,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/spell_shadow_deathcoil.png","maxRank":1,"name":"Withering","description":"Level 40 Passive Allows Crypt Plague to stack 5 additional times.","rankDescriptions":["Level 40 Passive Allows Crypt Plague to stack 5 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-29946","treeId":"coa-necromancer-59","index":29946,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/ability_creature_disease_01.png","maxRank":1,"name":"Parasite Plague","description":"Damage dealt now has a 5% chance to apply Parasites for 8 seconds.ParasitesYour Undead minions feast upon the parasites on hit, leeching 15% of their damage dealt as Plague Damage to the target.","rankDescriptions":["Damage dealt now has a 5% chance to apply Parasites for 8 seconds.ParasitesYour Undead minions feast upon the parasites on hit, leeching 15% of their damage dealt as Plague Damage to the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33761","treeId":"coa-necromancer-59","index":33761,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/nhi_unholybird_border.png","maxRank":1,"name":"Fleshcrafting","description":"Increases the duration Unholy Frenzy by 5 sec and casting Command spells now reduces its cooldown by -1 sec.","rankDescriptions":["Increases the duration Unholy Frenzy by 5 sec and casting Command spells now reduces its cooldown by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30919","treeId":"coa-necromancer-59","index":30919,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/spell_nature_nullifydisease.png","maxRank":1,"name":"Apothecary's Cauldron","description":"Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your Magic damage dealt by 3%.","rankDescriptions":["Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your Magic damage dealt by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10918","treeId":"coa-necromancer-59","index":10918,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/epic_rpg_icon_pack_death_icon_0005s_0000_grave_border.png","maxRank":1,"name":"Death Commander","description":"Periodic damage dealt now has a 10% chance to increase your and your Undead minion's haste by 20% for 8 seconds.","rankDescriptions":["Periodic damage dealt now has a 10% chance to increase your and your Undead minion's haste by 20% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7807","treeId":"coa-necromancer-59","index":7807,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_deathknight_thrash_ghoul.png","maxRank":1,"name":"Fiend","description":"Increases the damage and critical damage of Lichfrost by 20% against diseased targets.","rankDescriptions":["Increases the damage and critical damage of Lichfrost by 20% against diseased targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29242","treeId":"coa-necromancer-59","index":29242,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/achievement_boss_profputricide.png","maxRank":2,"name":"Putricide's Formula","description":"Damage dealt by Undead minions has a 20% chance to blast up to 3 nearby enemies for 71 + 30% SP Plague damage.","rankDescriptions":["Damage dealt by Undead minions has a 10% chance to blast up to 3 nearby enemies for 71 + 30% SP Plague damage.","Damage dealt by Undead minions has a 20% chance to blast up to 3 nearby enemies for 71 + 30% SP Plague damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30912","treeId":"coa-necromancer-59","index":30912,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/5_warlock09_border.png","maxRank":1,"name":"Lichplague","description":"Disease an enemy, dealing 151 + 22% SP Plague damage every 3 sec for 18 seconds. Damage increased by 4% for each Necromancer disease on the enemy.","rankDescriptions":["Disease an enemy, dealing 151 + 22% SP Plague damage every 3 sec for 18 seconds. Damage increased by 4% for each Necromancer disease on the enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29861","treeId":"coa-necromancer-59","index":29861,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_rotting_breath.png","maxRank":1,"name":"Rot Fetishist","description":"Your Virulency now applies Rot Fetishist for 10 seconds, causing you to replicate 20% of your periodic damage dealt as direct damage.","rankDescriptions":["Your Virulency now applies Rot Fetishist for 10 seconds, causing you to replicate 20% of your periodic damage dealt as direct damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33760","treeId":"coa-necromancer-59","index":33760,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/custom_worm_b_01_border.png","maxRank":1,"name":"Wormfood","description":"Upon fully channeling Crypt Swarm, you summon a Rotling that will run towards the enemy and explode after 5 sec for 320 + 33.5% SP Plague damage.","rankDescriptions":["Upon fully channeling Crypt Swarm, you summon a Rotling that will run towards the enemy and explode after 5 sec for 320 + 33.5% SP Plague damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11623","treeId":"coa-necromancer-59","index":11623,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_shadow_cripple.png","maxRank":1,"name":"Unholy Erosion","description":"Level 50 Passive Increases your spell penetration by 50, scaling with your level.","rankDescriptions":["Level 50 Passive Increases your spell penetration by 50, scaling with your level."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-33750","treeId":"coa-necromancer-59","index":33750,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/inv_maldraxxus.png","maxRank":1,"name":"Waking Crypts","description":"Increases the damage of Crypt Plague by 50% and Crypt Swarm now deals 4% more damage for each Necromancer disease you have on the target.","rankDescriptions":["Increases the damage of Crypt Plague by 50% and Crypt Swarm now deals 4% more damage for each Necromancer disease you have on the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30822","treeId":"coa-necromancer-59","index":30822,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_deathknight_summongargoyle.png","maxRank":1,"name":"Raise: Gargoyle","description":"Raise a fallen Gargoyle to aid you in combat, occupying 3 Life Force. Command: Shoots necrotic bile at an enemy, dealing 73 + 65% SP Plague damage, dealing 50% increased damage for each of your diseases on the target.","rankDescriptions":["Raise a fallen Gargoyle to aid you in combat, occupying 3 Life Force. Command: Shoots necrotic bile at an enemy, dealing 73 + 65% SP Plague damage, dealing 50% increased damage for each of your diseases on the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30915","treeId":"coa-necromancer-59","index":30915,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/inv_fishing_lure_worm.png","maxRank":1,"name":"Muck Summoner","description":"Periodic damage dealt now has an 5% chance to summon 2 to 3 Rotlings that will run towards the enemy and explode after 5 sec for 320 + 33.5% SP Plague damage.","rankDescriptions":["Periodic damage dealt now has an 5% chance to summon 2 to 3 Rotlings that will run towards the enemy and explode after 5 sec for 320 + 33.5% SP Plague damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31185","treeId":"coa-necromancer-60","index":31185,"prerequisiteId":"coa-entry-4035","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4035","requiredRank":1},{"talentId":"coa-entry-29787","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/uico_frost_spell_09_border.png","maxRank":1,"name":"Ice Barrage","description":"Unleash a relentless volley of glacial shards, dealing 26 + 59.71% SP Frost damage every 0 sec for 1 seconds. At the end of the duration, you entomb your target in ice, freezing them for 4 seconds.","rankDescriptions":["Unleash a relentless volley of glacial shards, dealing 26 + 59.71% SP Frost damage every 0 sec for 1 seconds. At the end of the duration, you entomb your target in ice, freezing them for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4035","treeId":"coa-necromancer-60","index":4035,"prerequisiteId":"coa-entry-29787","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29787","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/wc3lichoriginal.png","maxRank":1,"name":"Tundra Warriors","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-6901","treeId":"coa-necromancer-60","index":6901,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/5_mageskill32_border.png","maxRank":1,"name":"Refreshing Chill","description":"Casting Command spells now has a 20% chance to reset the cooldown of Ice Barrage and make your cast next within 15 seconds instant cast.","rankDescriptions":["Casting Command spells now has a 20% chance to reset the cooldown of Ice Barrage and make your cast next within 15 seconds instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7213","treeId":"coa-necromancer-60","index":7213,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_icewave_border.png","maxRank":1,"name":"Frigid Winds","description":"Increases the chance to trigger Refreshing Chill by 5%.","rankDescriptions":["Increases the chance to trigger Refreshing Chill by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34976","treeId":"coa-necromancer-60","index":34976,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/custom_t_icespear_border.png","maxRank":1,"name":"Piercing Icicles","description":"Increases the damage of Ice Barrage by 20%.","rankDescriptions":["Increases the damage of Ice Barrage by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6893","treeId":"coa-necromancer-60","index":6893,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/skill_icon_skill23_border.png","maxRank":1,"name":"Glacial Impact","description":"Requires Frozen Target Call down icy boulders onto a Frozen enemy, dealing 142 + 140.5% frost SP Frost damage.","rankDescriptions":["Requires Frozen Target Call down icy boulders onto a Frozen enemy, dealing 142 + 140.5% frost SP Frost damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4436","treeId":"coa-necromancer-60","index":4436,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/_auracloak_ice.png","maxRank":1,"name":"Ice Mastery","description":"Level 20 Passive Increases your spell power by 30% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your spell power by 30% of your Intellect."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-33725","treeId":"coa-necromancer-60","index":33725,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/novart_physical_ability_(38)_border.png","maxRank":2,"name":"Bone Legion","description":"Increases the damage of Lichfrost by 20% and its Runic Power generated by 50%.","rankDescriptions":["Increases the damage of Lichfrost by 10% and its Runic Power generated by 25%.","Increases the damage of Lichfrost by 20% and its Runic Power generated by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34978","treeId":"coa-necromancer-60","index":34978,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/_castercloak_ice.png","maxRank":1,"name":"Curse of the Lich","description":"Increases the range of your Rime spells by 6 yds and increases the Frost critical strike chance of you and your summons by 3%.","rankDescriptions":["Increases the range of your Rime spells by 6 yds and increases the Frost critical strike chance of you and your summons by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33720","treeId":"coa-necromancer-60","index":33720,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_misc_frostemblem_01.png","maxRank":2,"name":"Runic Reservoir","description":"Increases your Frost damage by 10% and your maximum Runic Power by 30.","rankDescriptions":["Increases your Frost damage by 5% and your maximum Runic Power by 15.","Increases your Frost damage by 10% and your maximum Runic Power by 30."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6488","treeId":"coa-necromancer-60","index":6488,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/call_of_the_sepulcher_64x64.png","maxRank":1,"name":"Hoarfrost Hands","description":"Increases the duration of Lichfrost's movement speed slow by 4 sec and your hit chance by 4%.","rankDescriptions":["Increases the duration of Lichfrost's movement speed slow by 4 sec and your hit chance by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5605","treeId":"coa-necromancer-60","index":5605,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/spell_ice_lament.png","maxRank":1,"name":"Frigid Death","description":"Increases the damage of Glacial Impact by 50%.","rankDescriptions":["Increases the damage of Glacial Impact by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30605","treeId":"coa-necromancer-60","index":30605,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/ability_mage_coldasice.png","maxRank":1,"name":"Freeze Dry","description":"Your Glacial Impact now generates 20 Runic Power.","rankDescriptions":["Your Glacial Impact now generates 20 Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7214","treeId":"coa-necromancer-60","index":7214,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/ability_deathknight_heartstopaura.png","maxRank":1,"name":"Heartchill","description":"Chill an enemy's heart, interrupting their current spell cast. Successfully interrupting a spell also reduces their movement speed and haste by -80% for 3 seconds.","rankDescriptions":["Chill an enemy's heart, interrupting their current spell cast. Successfully interrupting a spell also reduces their movement speed and haste by -80% for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6891","treeId":"coa-necromancer-60","index":6891,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/achievement_boss_lichking.png","maxRank":1,"name":"Necrotic Chains","description":"Every 3rd Command spell now freezes the target in place for 5 seconds. Damage dealt may end this effect.","rankDescriptions":["Every 3rd Command spell now freezes the target in place for 5 seconds. Damage dealt may end this effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12891","treeId":"coa-necromancer-60","index":12891,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_mage_freeze.png","maxRank":1,"name":"Ner'zhul's Blessing","description":"Every 3rd Command spell now makes your next Lichfrost within 10 seconds guaranteed to critically strike.","rankDescriptions":["Every 3rd Command spell now makes your next Lichfrost within 10 seconds guaranteed to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29778","treeId":"coa-necromancer-60","index":29778,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_icegiant_01.png","maxRank":1,"name":"Giant Bones","description":"Casting Unholy Frenzy now summons a Rotting Frost Giant to aid you in combat for the duration.","rankDescriptions":["Casting Unholy Frenzy now summons a Rotting Frost Giant to aid you in combat for the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29773","treeId":"coa-necromancer-60","index":29773,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/uico_frost_spell_03_border.png","maxRank":1,"name":"Glacier Lord","description":"Your Glacial Impact is now guaranteed to critically strike against Frozen targets.","rankDescriptions":["Your Glacial Impact is now guaranteed to critically strike against Frozen targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30621","treeId":"coa-necromancer-60","index":30621,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/inv_helm_eternalwinter_d_01.png","maxRank":1,"name":"Icecrown","description":"Your Frost damage dealt now increases your allies' critical strike chance against the enemy by 1% for 10 seconds, stacking 3 times.","rankDescriptions":["Your Frost damage dealt now increases your allies' critical strike chance against the enemy by 1% for 10 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4437","treeId":"coa-necromancer-60","index":4437,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/achievement_boss_forgemaster.png","maxRank":1,"name":"Frigidness","description":"Level 30 Passive Increases your critical damage by 100% against Frozen targets.","rankDescriptions":["Level 30 Passive Increases your critical damage by 100% against Frozen targets."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-30622","treeId":"coa-necromancer-60","index":30622,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/skeletalicemage2.png","maxRank":1,"name":"Raise: Skeletal Mage","description":"Raise a Skeletal Mage to aid you in combat, occupying 2 Life Force. Command: Unleashes ice at your target and enemies within 6 yds, dealing 51 + 80% frost SP Frost damage.","rankDescriptions":["Raise a Skeletal Mage to aid you in combat, occupying 2 Life Force. Command: Unleashes ice at your target and enemies within 6 yds, dealing 51 + 80% frost SP Frost damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30599","treeId":"coa-necromancer-60","index":30599,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/spell_frost_freezingbreath.png","maxRank":1,"name":"Dominion of Frost","description":"Critical strikes dealt by your Undead minions now reduce the cooldown of Unholy Frenzy by -3 sec.","rankDescriptions":["Critical strikes dealt by your Undead minions now reduce the cooldown of Unholy Frenzy by -3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29779","treeId":"coa-necromancer-60","index":29779,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/custom_t_iceskull_border.png","maxRank":1,"name":"Frozen Power","description":"Increases your critical damage with Frost spells by 50%.","rankDescriptions":["Increases your critical damage with Frost spells by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33731","treeId":"coa-necromancer-60","index":33731,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/spell_frost_frostbolt.png","maxRank":1,"name":"Frigid Power","description":"Increases the spell power scaling of Lichfrost and Ice Barrage by 20%.","rankDescriptions":["Increases the spell power scaling of Lichfrost and Ice Barrage by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12212","treeId":"coa-necromancer-60","index":12212,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/spell_shadow_darkritual.png","maxRank":1,"name":"Command: Bonefreeze","description":"Command your Skeletal Mages to freeze enemies at target location for 40 seconds (8 sec vs players). Damage taken may end the effect.","rankDescriptions":["Command your Skeletal Mages to freeze enemies at target location for 40 seconds (8 sec vs players). Damage taken may end the effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4615","treeId":"coa-necromancer-60","index":4615,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_misc_herb_frostweedbranch.png","maxRank":1,"name":"Blood and Ice","description":"Each Skeletal Warrior or Skeletal Rogue now increases the damage of your Ice Barrage by 8%.","rankDescriptions":["Each Skeletal Warrior or Skeletal Rogue now increases the damage of your Ice Barrage by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30355","treeId":"coa-necromancer-60","index":30355,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/ability_mage_frostjaw.png","maxRank":1,"name":"Death and Ice","description":"While a Skeletal Mage is active the critical strike chance of your Undead minions is now increased by 10%.","rankDescriptions":["While a Skeletal Mage is active the critical strike chance of your Undead minions is now increased by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19778","treeId":"coa-necromancer-60","index":19778,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_holy_senseundead.png","maxRank":1,"name":"Frozen Bodies","description":"When you kill an enemy that yields experience or honor or critically strike with Frost damage you now gain a stack of Frozen Bodies.Frozen BodiesIncreases the damage of your next Glacial Impact by 3% for 20 seconds, stacking 10 times. Reaching 10 stacks causes your next Glacial Impact to critically strike for 50% increased damage.","rankDescriptions":["When you kill an enemy that yields experience or honor or critically strike with Frost damage you now gain a stack of Frozen Bodies.Frozen BodiesIncreases the damage of your next Glacial Impact by 3% for 20 seconds, stacking 10 times. Reaching 10 stacks causes your next Glacial Impact to critically strike for 50% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29772","treeId":"coa-necromancer-60","index":29772,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/uico_frost_spell_06_border.png","maxRank":1,"name":"Permafrost","description":"While your Lich Form is active, your Champion spells will now cooldown faster.","rankDescriptions":["While your Lich Form is active, your Champion spells will now cooldown faster."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30619","treeId":"coa-necromancer-60","index":30619,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/nhi_frost_beam_border.png","maxRank":1,"name":"Deathly Chill","description":"Reduces the channel and cast time of Ice Barrage by -25%.","rankDescriptions":["Reduces the channel and cast time of Ice Barrage by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4438","treeId":"coa-necromancer-60","index":4438,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/achievement_boss_amnennar_the_coldbringer.png","maxRank":1,"name":"Lich Form","description":"Transform into a Lich, becoming Undead increasing your Frost damage dealt by 10%. While active you generate 3 Runic Power every 5 sec.","rankDescriptions":["Transform into a Lich, becoming Undead increasing your Frost damage dealt by 10%. While active you generate 3 Runic Power every 5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-30617","treeId":"coa-necromancer-60","index":30617,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/expansionicon_wrathofthelichking.png","maxRank":2,"name":"Crown's Call","description":"Increases your Intellect by 10% and the Frost damage dealt by your Undead minions by 20%.","rankDescriptions":["Increases your Intellect by 5% and the Frost damage dealt by your Undead minions by 10%.","Increases your Intellect by 10% and the Frost damage dealt by your Undead minions by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33723","treeId":"coa-necromancer-60","index":33723,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_deathknight_iceboundfortitude.png","maxRank":1,"name":"Chilling Presence","description":"Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, increases the critical strike chance of Ice Barrage by 20% against Frozen targets.","rankDescriptions":["Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, increases the critical strike chance of Ice Barrage by 20% against Frozen targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8100","treeId":"coa-necromancer-60","index":8100,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_misc_food_109_honeylichen.png","maxRank":1,"name":"Arch Lich","description":"Critical strikes with Frost spells now refund 3% of your maximum mana.","rankDescriptions":["Critical strikes with Frost spells now refund 3% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6892","treeId":"coa-necromancer-60","index":6892,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/spell_nature_brilliance.png","maxRank":1,"name":"Raising the Kirin Tor","description":"Your Command spells now have a 40% chance to refund a portion of their Runic Power cost.","rankDescriptions":["Your Command spells now have a 40% chance to refund a portion of their Runic Power cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30620","treeId":"coa-necromancer-60","index":30620,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/custom_14_big_frost_arrow_border.png","maxRank":1,"name":"Harrowing Winds","description":"Damage dealt by Glacial Impact now deals an additional 50% of the damage dealt as Frost damage to enemies within 6 yds of the primary target.","rankDescriptions":["Damage dealt by Glacial Impact now deals an additional 50% of the damage dealt as Frost damage to enemies within 6 yds of the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29317","treeId":"coa-necromancer-60","index":29317,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_mage_rayoffrost.png","maxRank":1,"name":"Soulfreeze","description":"All Frost damage you deal to Frozen targets now has a 25% chance to unleash Soulfreeze on them.SoulfreezeLaunch a chain of frost at an enemy, dealing 354 + 35% frost SP Frost Damage every 1 sec for 3 seconds. Each tick generates 3 to 8 Runic Power.","rankDescriptions":["All Frost damage you deal to Frozen targets now has a 25% chance to unleash Soulfreeze on them.SoulfreezeLaunch a chain of frost at an enemy, dealing 354 + 35% frost SP Frost Damage every 1 sec for 3 seconds. Each tick generates 3 to 8 Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11438","treeId":"coa-necromancer-60","index":11438,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/_manaburn_frost.png","maxRank":1,"name":"Champion of Kel'thuzad","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-6900","treeId":"coa-necromancer-60","index":6900,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/spell_deathknight_mindfreeze.png","maxRank":1,"name":"Champion of Kel'Thuzad","description":"Your Skeletal Mages now only cost 1 Life Force.","rankDescriptions":["Your Skeletal Mages now only cost 1 Life Force."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5892","treeId":"coa-necromancer-60","index":5892,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_frost_runedweapon_border.png","maxRank":1,"name":"Army of the North","description":"Chant a powerful ritual that brings forth 1 Rotting Frost Giant near you to aid you in combat for 30 seconds and generate 30 Runic Power, repeating every 3 sec for 15 seconds. For the duration, your Undead minions are guaranteed to critically strike.","rankDescriptions":["Chant a powerful ritual that brings forth 1 Rotting Frost Giant near you to aid you in combat for 30 seconds and generate 30 Runic Power, repeating every 3 sec for 15 seconds. For the duration, your Undead minions are guaranteed to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33738","treeId":"coa-necromancer-60","index":33738,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/epic_rpg_icon_pack_frost_0000s_0000_figure_border.png","maxRank":1,"name":"Master Lich","description":"Soulfreeze now increases the enemy's Frost damage taken by you by 5% per tick for 8 sec, stacking 3 times.","rankDescriptions":["Soulfreeze now increases the enemy's Frost damage taken by you by 5% per tick for 8 sec, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7345","treeId":"coa-necromancer-61","index":7345,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/skeletalarcher.png","maxRank":1,"name":"Animate: Skeletal Archer","description":"Animate 3 Skeletal Archers to aid you in combat for 15 seconds.","rankDescriptions":["Animate 3 Skeletal Archers to aid you in combat for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4036","treeId":"coa-necromancer-61","index":4036,"prerequisiteId":"coa-entry-29364","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29364","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/_undead_03.png","maxRank":1,"name":"Summoning Adept","description":"Level 10 Passive Increases your maximum Life Force by 1.","rankDescriptions":["Level 10 Passive Increases your maximum Life Force by 1."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7143","treeId":"coa-necromancer-61","index":7143,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/inv_custom_bonetattoo_green.png","maxRank":1,"name":"Bone King","description":"Casting Command spells now has a 15% chance to make your next Lichfrost or Blight free of cost and instant cast.","rankDescriptions":["Casting Command spells now has a 15% chance to make your next Lichfrost or Blight free of cost and instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30022","treeId":"coa-necromancer-61","index":30022,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/ability_deathknight_deathsiphon.png","maxRank":1,"name":"Graverobber","description":"Reduces the mana cost and cast time of your Raise and Animate spells by -30%.","rankDescriptions":["Reduces the mana cost and cast time of your Raise and Animate spells by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33774","treeId":"coa-necromancer-61","index":33774,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/spell_shadow_requiem.png","maxRank":1,"name":"Summoning Prodigy","description":"Increases the duration of Skeletal Archers by 3 sec.","rankDescriptions":["Increases the duration of Skeletal Archers by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12165","treeId":"coa-necromancer-61","index":12165,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/_d3markedfordeath.png","maxRank":2,"name":"Sepulchral Might","description":"Increases your Stamina by 10%. Increases your spell damage by an amount equal to 30% of the total of your Raised minion's Stamina.","rankDescriptions":["Increases your Stamina by 5%. Increases your spell damage by an amount equal to 15% of the total of your Raised minion's Stamina.","Increases your Stamina by 10%. Increases your spell damage by an amount equal to 30% of the total of your Raised minion's Stamina."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30497","treeId":"coa-necromancer-61","index":30497,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/spell_deathknight_empowerruneblade.png","maxRank":1,"name":"Forbidden Technique","description":"Casting Command spells now reduces the cooldown of your Animates by -1 sec.","rankDescriptions":["Casting Command spells now reduces the cooldown of your Animates by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4236","treeId":"coa-necromancer-61","index":4236,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_qirajidol_death.png","maxRank":1,"name":"Deadly Bond","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.","rankDescriptions":["Level 20 Passive Casting Command spells now has a 30% chance to cause their next use within 6 seconds to be free of cost."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7347","treeId":"coa-necromancer-61","index":7347,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/nhi_rottenflesh_border.png","maxRank":1,"name":"Scourge Disciple","description":"Each active Skeletal Archer now increases your haste by 5%.","rankDescriptions":["Each active Skeletal Archer now increases your haste by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33775","treeId":"coa-necromancer-61","index":33775,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/ghoul.png","maxRank":1,"name":"Raise: Ghoul","description":"Raise a Ghoul to aid you in combat occupying 1 Life Force. Its auto attacks restore 21 + 3.53% Intellect + 3.53% SP health to you. Command: Expels leeching plague that strikes up to 5 nearby enemies, dealing 30 + 15.68% Intellect + 15.68% SP Plague damage, and healing you for 35 + 22% SP + 50% Intellect for each Ghoul.","rankDescriptions":["Raise a Ghoul to aid you in combat occupying 1 Life Force. Its auto attacks restore 21 + 3.53% Intellect + 3.53% SP health to you. Command: Expels leeching plague that strikes up to 5 nearby enemies, dealing 30 + 15.68% Intellect + 15.68% SP Plague damage, and healing you for 35 + 22% SP + 50% Intellect for each Ghoul."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7145","treeId":"coa-necromancer-61","index":7145,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/achievement_dungeon_thenecroticwake_stitchflesh.png","maxRank":1,"name":"Runic Animation","description":"Reduces the cooldown of Animate: Skeletal Archers and Command: Hook by -20%.","rankDescriptions":["Reduces the cooldown of Animate: Skeletal Archers and Command: Hook by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30487","treeId":"coa-necromancer-61","index":30487,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv_misc_necklacea7.png","maxRank":1,"name":"Summoner","description":"Reduces the mana cost and cooldown of Sacrifice Undead by -20%.","rankDescriptions":["Reduces the mana cost and cooldown of Sacrifice Undead by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10495","treeId":"coa-necromancer-61","index":10495,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/achievement_boss_lordmarrowgar.png","maxRank":1,"name":"Animate: Bone Wraith","description":"Animate a Bone Wraith to aid you in combat for 15 seconds. While active, it will periodically unleash a Bonestorm, striking up to 5 nearby enemies for 30 + 40% SP Physical damage every 1 sec for 5 seconds.","rankDescriptions":["Animate a Bone Wraith to aid you in combat for 15 seconds. While active, it will periodically unleash a Bonestorm, striking up to 5 nearby enemies for 30 + 40% SP Physical damage every 1 sec for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30495","treeId":"coa-necromancer-61","index":30495,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/kingoftombs1.png","maxRank":1,"name":"Animate: Tomb King","description":"Animate a Tomb King to aid you in combat for 15 seconds. While active, all of your Undead minion's attacks deal an additional 10% of the damage dealt as Plague damage.","rankDescriptions":["Animate a Tomb King to aid you in combat for 15 seconds. While active, all of your Undead minion's attacks deal an additional 10% of the damage dealt as Plague damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7119","treeId":"coa-necromancer-61","index":7119,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_demonhunter_reversemagic.png","maxRank":1,"name":"Ghoul Mastery","description":"Damage dealt by your Ghouls now has a 15% chance to transform them into a Frenzied Ghoul.Frenzied Ghoul (Proc)Transformed into a Frenzied Ghoul, increasing haste by 40% for 10 seconds. Immune to movement slowing effects.","rankDescriptions":["Damage dealt by your Ghouls now has a 15% chance to transform them into a Frenzied Ghoul.Frenzied Ghoul (Proc)Transformed into a Frenzied Ghoul, increasing haste by 40% for 10 seconds. Immune to movement slowing effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7146","treeId":"coa-necromancer-61","index":7146,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_misc_trinket6oog_cyclopianpig1.png","maxRank":2,"name":"Skeletal Artillery","description":"Your Animate: Skeletal Archers now summons 2 additional Skeletal Archer.","rankDescriptions":["Your Animate: Skeletal Archers now summons 1 additional Skeletal Archer.","Your Animate: Skeletal Archers now summons 2 additional Skeletal Archer."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2174","treeId":"coa-necromancer-61","index":2174,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/spell_shadow_deathcoil.png","maxRank":1,"name":"Putrifier","description":"Increases the durations of Ghoulify and Mass Grave by 25%.","rankDescriptions":["Increases the durations of Ghoulify and Mass Grave by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4237","treeId":"coa-necromancer-61","index":4237,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/_beasttaming_undead.png","maxRank":1,"name":"Summoning Expert","description":"Level 30 Passive Increases your maximum Life Force by 1 and your Undead minion's Stamina by 10%.","rankDescriptions":["Level 30 Passive Increases your maximum Life Force by 1 and your Undead minion's Stamina by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-6887","treeId":"coa-necromancer-61","index":6887,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/spell_deathknight_armyofthedead.png","maxRank":2,"name":"Unrelenting Army","description":"Damage dealt by Harvest Plague now has a 40% chance to summon a Lesser Zombie to aid you in combat for 15 seconds.","rankDescriptions":["Damage dealt by Harvest Plague now has a 20% chance to summon a Lesser Zombie to aid you in combat for 15 seconds.","Damage dealt by Harvest Plague now has a 40% chance to summon a Lesser Zombie to aid you in combat for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33748","treeId":"coa-necromancer-61","index":33748,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/inv_helm_leather_maldraxxus_d_01.png","maxRank":1,"name":"Animate: Plaguefather","description":"Animate a Plaguefather to aid you in combat for 15 seconds. Damage dealt by this minion will emit Zombie Plague, dealing 79 + 10% SP Plague damage to nearby enemies, and reducing their attack power by 223.","rankDescriptions":["Animate a Plaguefather to aid you in combat for 15 seconds. Damage dealt by this minion will emit Zombie Plague, dealing 79 + 10% SP Plague damage to nearby enemies, and reducing their attack power by 223."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29943","treeId":"coa-necromancer-61","index":29943,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/spell_shadow_deadofnight.png","maxRank":1,"name":"March of the Dead","description":"Beckon the restless dead to rise and march forward. When they reach an enemy they explode, dealing 700 + 75% SP Plague damage to nearby enemies and slowing their movement speed by -70% for 3 seconds.","rankDescriptions":["Beckon the restless dead to rise and march forward. When they reach an enemy they explode, dealing 700 + 75% SP Plague damage to nearby enemies and slowing their movement speed by -70% for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5766","treeId":"coa-necromancer-61","index":5766,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_mace_1h_warfrontsforsaken_d_01.png","maxRank":1,"name":"Depravity","description":"Increases the melee haste of your Undead minions by 5% and gives their critical melee auto attacks an 50% chance to trigger Bone Club, dealing 40% of the damage dealt as Shadow Damage.","rankDescriptions":["Increases the melee haste of your Undead minions by 5% and gives their critical melee auto attacks an 50% chance to trigger Bone Club, dealing 40% of the damage dealt as Shadow Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33766","treeId":"coa-necromancer-61","index":33766,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/ability_fiegndead.png","maxRank":1,"name":"Mindless Fury","description":"Casting Animate or Command spells now increases your haste by 1% for 10 seconds, stacking 5 times.","rankDescriptions":["Casting Animate or Command spells now increases your haste by 1% for 10 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7112","treeId":"coa-necromancer-61","index":7112,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/_undead_02.png","maxRank":1,"name":"Crypt Keeper","description":"Your Crypt Swarm now bounces to 2 additional nearby enemies, at 30% reduced value per enemy struck.","rankDescriptions":["Your Crypt Swarm now bounces to 2 additional nearby enemies, at 30% reduced value per enemy struck."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11112","treeId":"coa-necromancer-61","index":11112,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/spell_deathknight_subversion.png","maxRank":1,"name":"Unrelenting","description":"Reduces the channel time of your Crypt Swarm by -25%.","rankDescriptions":["Reduces the channel time of your Crypt Swarm by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7298","treeId":"coa-necromancer-61","index":7298,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/_d3graspofthedead.png","maxRank":1,"name":"Army of the Dead","description":"While only 1 Abomination is active, the critical strike chance of your Ghouls is increased by 10% and haste by 10%.","rankDescriptions":["While only 1 Abomination is active, the critical strike chance of your Ghouls is increased by 10% and haste by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33773","treeId":"coa-necromancer-61","index":33773,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_unholystone_border.png","maxRank":1,"name":"Unstoppable Frenzy","description":"Reduces the cooldown of your Unholy Frenzy by -60 sec.","rankDescriptions":["Reduces the cooldown of your Unholy Frenzy by -60 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33772","treeId":"coa-necromancer-61","index":33772,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_misc_herb_ancientlichen.png","maxRank":1,"name":"Lich's Prodigy","description":"Your Glacial Tap now generates an additional 20 Runic Power, but its cost is increased by 25%.","rankDescriptions":["Your Glacial Tap now generates an additional 20 Runic Power, but its cost is increased by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4235","treeId":"coa-necromancer-61","index":4235,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/spell_necro_inevitableend.png","maxRank":1,"name":"Diabolical","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-30488","treeId":"coa-necromancer-61","index":30488,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/spell_shadow_antimagicshell.png","maxRank":1,"name":"Anti-Magic Shell","description":"When you summon a Raised minion, it now raises with a shield absorbing Magic damage equal to 40% of their maximum health.","rankDescriptions":["When you summon a Raised minion, it now raises with a shield absorbing Magic damage equal to 40% of their maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7141","treeId":"coa-necromancer-61","index":7141,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/nhi_deathgolem_border.png","maxRank":1,"name":"Summoning Ritual","description":"Summon a ritual circle at your location for 1 minute. While active, you may cast Ritual Return to return to it. Ritual ReturnTeleport back to the position of your Scourge Transporter and remove all movement slowing effects from you.","rankDescriptions":["Summon a ritual circle at your location for 1 minute. While active, you may cast Ritual Return to return to it. Ritual ReturnTeleport back to the position of your Scourge Transporter and remove all movement slowing effects from you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7350","treeId":"coa-necromancer-61","index":7350,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_shadow_corpseexplode.png","maxRank":1,"name":"Corpse Wagon","description":"Increases all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, increases the damage of Corpse Explosion by 25%.","rankDescriptions":["Increases all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, increases the damage of Corpse Explosion by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7346","treeId":"coa-necromancer-61","index":7346,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_deathknight_classicon.png","maxRank":2,"name":"Plague Protection","description":"Increases the effectiveness of your Wards by 50%.","rankDescriptions":["Increases the effectiveness of your Wards by 25%.","Increases the effectiveness of your Wards by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5290","treeId":"coa-necromancer-61","index":5290,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/nhi_necrodrain_border.png","maxRank":1,"name":"Chomp","description":"Critical strikes dealt by your Abominations and Decaying Collosi now Chomp your target, dealing 150 + 112.5% SP damage to them.","rankDescriptions":["Critical strikes dealt by your Abominations and Decaying Collosi now Chomp your target, dealing 150 + 112.5% SP damage to them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6290","treeId":"coa-necromancer-61","index":6290,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/inv_pet_inquisitoreye.png","maxRank":1,"name":"Fetid Mark","description":"Dealing Shadow damage now increases the damage the target takes from your Skeletal Warriors by 1% for 10 seconds, stacking 10 times.","rankDescriptions":["Dealing Shadow damage now increases the damage the target takes from your Skeletal Warriors by 1% for 10 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4619","treeId":"coa-necromancer-61","index":4619,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/reforgedabomination.png","maxRank":1,"name":"Flesh Symbiosis","description":"Each Abomination or Decaying Colossus active now increases your total Armor and magic resistance by 30% and causes you to periodically regenerate 2% maximum health every 5 sec.","rankDescriptions":["Each Abomination or Decaying Colossus active now increases your total Armor and magic resistance by 30% and causes you to periodically regenerate 2% maximum health every 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4238","treeId":"coa-necromancer-61","index":4238,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_belt_pvpwarlock_e_01.png","maxRank":1,"name":"Plague Horde","description":"Damage dealt by your Undead minions now has a 10% chance to cast Plague Horde on themselves for 5 seconds and emit Zombie Plague, dealing 79 + 10% SP Plague damage to their target.Plague HordeEnrage for 5 seconds, increasing their critical strike chance by 10%.","rankDescriptions":["Damage dealt by your Undead minions now has a 10% chance to cast Plague Horde on themselves for 5 seconds and emit Zombie Plague, dealing 79 + 10% SP Plague damage to their target.Plague HordeEnrage for 5 seconds, increasing their critical strike chance by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30238","treeId":"coa-necromancer-61","index":30238,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/spell_deathknight_iceboundfortitude.png","maxRank":1,"name":"Long March","description":"Removes the cooldown from March of the Dead, but gives it a 1 sec cast time.","rankDescriptions":["Removes the cooldown from March of the Dead, but gives it a 1 sec cast time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9934","treeId":"coa-necromancer-61","index":9934,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_deathscythe_border.png","maxRank":1,"name":"Grave Mastery","description":"Level 50 Passive Reduces the cost of all Animates, Raises, and Command spells by -20%.","rankDescriptions":["Level 50 Passive Reduces the cost of all Animates, Raises, and Command spells by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7117","treeId":"coa-necromancer-61","index":7117,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/epic_rpg_icon_pack_death_icon_0004s_0000_shadow_border.png","maxRank":1,"name":"Master Animator","description":"Increases your maximum Life Force by 1.","rankDescriptions":["Increases your maximum Life Force by 1."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33749","treeId":"coa-necromancer-61","index":33749,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/5_sumzombie_border.png","maxRank":1,"name":"Underking","description":"Casting Command spells now grants you a stack of Underking for 20 seconds. At 10 stacks, the cooldown of Animate: Tomb King, Animate: Bone Wraith or Animate: Plaguefather is reduced by -15 sec at random.","rankDescriptions":["Casting Command spells now grants you a stack of Underking for 20 seconds. At 10 stacks, the cooldown of Animate: Tomb King, Animate: Bone Wraith or Animate: Plaguefather is reduced by -15 sec at random."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11619","treeId":"coa-necromancer-61","index":11619,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/bone_construct.png","maxRank":1,"name":"Animate: Bone Construct","description":"Animate a Bone Construct to aid you in combat for 20 seconds. It moves at a slow speed, but upon reaching an enemy, deals 1560 + 200% SP + 50% AP Shadow damage, piercing all invulnerabilities, resistances, and immunities.","rankDescriptions":["Animate a Bone Construct to aid you in combat for 20 seconds. It moves at a slow speed, but upon reaching an enemy, deals 1560 + 200% SP + 50% AP Shadow damage, piercing all invulnerabilities, resistances, and immunities."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29364","treeId":"coa-necromancer-87","index":29364,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_horde_abomination.png","maxRank":1,"name":"Raise: Abomination","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29244","treeId":"coa-necromancer-87","index":29244,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/inv_icon_shadowcouncilorb_green.png","maxRank":1,"name":"Fetid Ward","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29787","treeId":"coa-necromancer-87","index":29787,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/_skullcurse2_blue.png","maxRank":1,"name":"Glacial Tap","description":"Tap into necrotic energies, instantly regenerating 30 Runic Power.","rankDescriptions":["Tap into necrotic energies, instantly regenerating 30 Runic Power."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5314","treeId":"coa-necromancer-87","index":5314,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/spells/inv_misc_hook_01.png","maxRank":1,"name":"Command: Hook","description":"Command your Abominations to hook an enemy to their location, slowing their movement speed to a halt for 2 seconds.","rankDescriptions":["Command your Abominations to hook an enemy to their location, slowing their movement speed to a halt for 2 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6885","treeId":"coa-necromancer-87","index":6885,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/uico_unholy_spell_08_border.png","maxRank":2,"name":"Hulking Hordes","description":"Increases your maximum health and the maximum health of your summons by 10%.","rankDescriptions":["Increases your maximum health and the maximum health of your summons by 5%.","Increases your maximum health and the maximum health of your summons by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7785","treeId":"coa-necromancer-87","index":7785,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/wc3lichreforged.png","maxRank":1,"name":"Lich Essence","description":"Reduces the cast time of Lichfrost by -15% and reduces your spell pushback suffered from taking damage by 50%.","rankDescriptions":["Reduces the cast time of Lichfrost by -15% and reduces your spell pushback suffered from taking damage by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6459","treeId":"coa-necromancer-87","index":6459,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":2,"icon":"/assets/ui/spells/_scrollofspeed_lightblue.png","maxRank":2,"name":"Icecrown Scriptures","description":"Increases your Shadow and Frost damage dealt against Humanoids and Undead by 8%.","rankDescriptions":["Increases your Shadow and Frost damage dealt against Humanoids and Undead by 4%.","Increases your Shadow and Frost damage dealt against Humanoids and Undead by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6458","treeId":"coa-necromancer-87","index":6458,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/spell_shadow_vampiricaura.png","maxRank":1,"name":"Vampiric Aura","description":"While you are below 50% health, your Undead minions now heal you for 10% of their damage dealt.","rankDescriptions":["While you are below 50% health, your Undead minions now heal you for 10% of their damage dealt."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30833","treeId":"coa-necromancer-87","index":30833,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/achievement_zone_deadwindpass.png","maxRank":2,"name":"Living Dead","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.","rankDescriptions":["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.","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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34980","treeId":"coa-necromancer-87","index":34980,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/frozenurn.png","maxRank":1,"name":"Create Frozen Reliquary","description":"Create 1 Frozen Reliquary that restores 30% of your missing mana. Allies may only use a Frozen Reliquary once per minute.","rankDescriptions":["Create 1 Frozen Reliquary that restores 30% of your missing mana. Allies may only use a Frozen Reliquary once per minute."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6903","treeId":"coa-necromancer-87","index":6903,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/spell_shadow_creepingplague.png","maxRank":1,"name":"Life For Power","description":"You absorb 20% of healing taken and gain a shield for the amount absorbed, lasting 10 seconds.","rankDescriptions":["You absorb 20% of healing taken and gain a shield for the amount absorbed, lasting 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29774","treeId":"coa-necromancer-87","index":29774,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/ossuary_bond.png","maxRank":1,"name":"Bone Tithe","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31143","treeId":"coa-necromancer-87","index":31143,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/achievement_raid_torghast_shadowscourge_prisonofnerzhul.png","maxRank":1,"name":"Ner'zhul's Blessing","description":"Increases your maximum Runic Power by 20%.","rankDescriptions":["Increases your maximum Runic Power by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7371","treeId":"coa-necromancer-87","index":7371,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/nhi_frost_phylactery_border.png","maxRank":1,"name":"Phylactery","description":"Create a Phylactery near you for 2 minutes. Upon taking damage which would bring you below 10% health, become a Shade, protecting you from all physical attacks and spells, but during that time you cannot attack or cast spells. Reaching your Phylactery in this state revives you with 40% of your maximum health. If you do not reach it in time you will die.","rankDescriptions":["Create a Phylactery near you for 2 minutes. Upon taking damage which would bring you below 10% health, become a Shade, protecting you from all physical attacks and spells, but during that time you cannot attack or cast spells. Reaching your Phylactery in this state revives you with 40% of your maximum health. If you do not reach it in time you will die."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6897","treeId":"coa-necromancer-87","index":6897,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/nhi_raisedead_border.png","maxRank":1,"name":"Overwhelming Force","description":"Damage dealt by your Undead minions now has a 5% chance to restore 2 Runic Power and 2% of your maximum mana.","rankDescriptions":["Damage dealt by your Undead minions now has a 5% chance to restore 2 Runic Power and 2% of your maximum mana."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29196","treeId":"coa-necromancer-87","index":29196,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/warlock_siphonlife.png","maxRank":1,"name":"Tears of Lordaeron","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29788","treeId":"coa-necromancer-87","index":29788,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/nhi_deathpickaxe_border.png","maxRank":1,"name":"Death's Due","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29865","treeId":"coa-necromancer-87","index":29865,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/achievement_bg_xkills_avgraveyard.png","maxRank":1,"name":"Gravedigger","description":"Reduces the cast time of Sacrifice Undead by -0.5 sec.","rankDescriptions":["Reduces the cast time of Sacrifice Undead by -0.5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31048","treeId":"coa-necromancer-87","index":31048,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/_calltoarms_forsaken_green.png","maxRank":1,"name":"Reclaimed Life","description":"Reduces the cast time of your Raise spells by -15%.","rankDescriptions":["Reduces the cast time of your Raise spells by -15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33778","treeId":"coa-necromancer-87","index":33778,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_necro_deathlyecho.png","maxRank":1,"name":"Mass Grave","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33784","treeId":"coa-necromancer-87","index":33784,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_belt_plate_raiddeathknightmythic_q_01.png","maxRank":2,"name":"Disciple of Kel'thuzad","description":"Increases your spell haste by 8%.","rankDescriptions":["Increases your spell haste by 4%.","Increases your spell haste by 8%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34977","treeId":"coa-necromancer-87","index":34977,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/epic_rpg_icon_pack_death_icon_0001s_0000_soul_border.png","maxRank":1,"name":"Improved Mandates","description":"Increases the effectiveness of your Mandates by 20%.","rankDescriptions":["Increases the effectiveness of your Mandates by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29520","treeId":"coa-necromancer-87","index":29520,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/icon_petfamily_undead.png","maxRank":1,"name":"Game of Bones","description":"Reduces the cooldown of your Champion spells by -60 sec.","rankDescriptions":["Reduces the cooldown of your Champion spells by -60 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5781","treeId":"coa-necromancer-87","index":5781,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/inv_7af_deathknight_frostmournefragment.png","maxRank":1,"name":"Lich Commander","description":"Reduces the Runic Power cost of your Command spells by -5.","rankDescriptions":["Reduces the Runic Power cost of your Command spells by -5."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12381","treeId":"coa-necromancer-87","index":12381,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/icon_upgradestone_undead_rare.png","maxRank":1,"name":"Corpse Commander","description":"Reduces the Runic Power cost of Corpse Explosion by -20.","rankDescriptions":["Reduces the Runic Power cost of Corpse Explosion by -20."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33751","treeId":"coa-necromancer-87","index":33751,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/inv_plate_pvpdeathknight_g_01_boot.png","maxRank":1,"name":"Dead Man Walking","description":"Reduces the duration of root and slow effects against you by -25%.","rankDescriptions":["Reduces the duration of root and slow effects against you by -25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6555","treeId":"coa-necromancer-87","index":6555,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/nhi_frost_knight_border.png","maxRank":1,"name":"Cobalt-Plated Armor","description":"Increases the Armor of your Undead minions by 1200, scaling with your level.","rankDescriptions":["Increases the Armor of your Undead minions by 1200, scaling with your level."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33780","treeId":"coa-necromancer-87","index":33780,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_mummypet.png","maxRank":1,"name":"Naxxramas Prodigy","description":"Increases your Shadow and Frost resistances by 0.5 per level.","rankDescriptions":["Increases your Shadow and Frost resistances by 0.5 per level."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6886","treeId":"coa-necromancer-87","index":6886,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/_d3wallofzombies.png","maxRank":1,"name":"Putrid Summoner","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33740","treeId":"coa-necromancer-87","index":33740,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/custom_04_summon_skeleton_army_border.png","maxRank":1,"name":"Deadly Defense","description":"Each of your summons now reduces your damage taken by 1%, up to a maximum of 10%.","rankDescriptions":["Each of your summons now reduces your damage taken by 1%, up to a maximum of 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33733","treeId":"coa-necromancer-87","index":33733,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_ice_lament.png","maxRank":1,"name":"Winds of Northrend","description":"Increases the amount slowed by Lichfrost by -15%.","rankDescriptions":["Increases the amount slowed by Lichfrost by -15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7348","treeId":"coa-necromancer-87","index":7348,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/achievement_dungeon_grimbatol_drahga_the_shadowburner.png","maxRank":1,"name":"Raise: Decaying Colossus","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33732","treeId":"coa-necromancer-87","index":33732,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/achievement_boss_festergutrotface.png","maxRank":1,"name":"Foul Invocation","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33771","treeId":"coa-necromancer-87","index":33771,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/spell_deathknight_empowerruneblade2.png","maxRank":1,"name":"Frost Runes","description":"Dealing Magic damage now has a 15% chance to increase your haste by 10% for 12 seconds.","rankDescriptions":["Dealing Magic damage now has a 15% chance to increase your haste by 10% for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33764","treeId":"coa-necromancer-87","index":33764,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/spell_necro_deathrift.png","maxRank":1,"name":"Command: Blight","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34981","treeId":"coa-necromancer-87","index":34981,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":10,"icon":"/assets/ui/spells/inv_misc_book_06.png","maxRank":1,"name":"Study of Death","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33777","treeId":"coa-necromancer-87","index":33777,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":10,"icon":"/assets/ui/spells/ui_darkshore_warfront_horde_banshee.png","maxRank":1,"name":"Raise: Banshee","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30600","treeId":"coa-necromancer-87","index":30600,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/5_dragoncoldbreath_border.png","maxRank":1,"name":"Animate: Frost Wyrm","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/paladin.json b/src/game/generated/talentUi/paladin.json new file mode 100644 index 00000000..98e87d83 --- /dev/null +++ b/src/game/generated/talentUi/paladin.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"paladin","trees":[{"id":"paladin-holy","classId":"paladin","name":"Holy","icon":"/assets/ui/talents/icons/spell_holy_holybolt.png","background":"/assets/ui/talents/backgrounds/talent_paladin1.png","description":"Channel the Light into powerful healing.","system":"classic"},{"id":"paladin-protection","classId":"paladin","name":"Protection","icon":"/assets/ui/talents/icons/spell_holy_devotionaura.png","background":"/assets/ui/talents/backgrounds/talent_paladin2.png","description":"Defend allies with shield and sacred magic.","system":"classic"},{"id":"paladin-retribution","classId":"paladin","name":"Retribution","icon":"/assets/ui/talents/icons/spell_holy_auraoflight.png","background":"/assets/ui/talents/backgrounds/talent_paladin3.png","description":"Judge enemies with holy weapon strikes.","system":"classic"}],"nodes":[{"id":"talent-1410","treeId":"paladin-retribution","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/inv_hammer_04.png","maxRank":3,"name":"Two-Handed Weapon Specialization","description":"Increases the physical damage you deal and your melee critical strike chance by 3% with two-handed melee weapons. Increases the critical strike chance of Seal of Command, Seal of Righteousness and Seal of Vengeance by 15% while a two-handed melee weapon is equipped.","rankDescriptions":["Increases the physical damage you deal and your melee critical strike chance by 1% with two-handed melee weapons. Increases the critical strike chance of Seal of Command, Seal of Righteousness and Seal of Vengeance by 5% while a two-handed melee weapon is equipped.","Increases the physical damage you deal and your melee critical strike chance by 2% with two-handed melee weapons. Increases the critical strike chance of Seal of Command, Seal of Righteousness and Seal of Vengeance by 10% while a two-handed melee weapon is equipped.","Increases the physical damage you deal and your melee critical strike chance by 3% with two-handed melee weapons. Increases the critical strike chance of Seal of Command, Seal of Righteousness and Seal of Vengeance by 15% while a two-handed melee weapon is equipped."],"system":"classic"},{"id":"talent-1631","treeId":"paladin-retribution","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_righteousfury.png","maxRank":3,"name":"Improved Judgements","description":"Reduces the cooldown of your Judgement spells by 3 sec. Capstone Bonus: Smite and Holy Fire can trigger your active seal for 10 seconds after using Judgement.","rankDescriptions":["Reduces the cooldown of your Judgement spells by 1 sec. Capstone Bonus: Smite and Holy Fire can trigger your active seal for 10 seconds after using Judgement.","Reduces the cooldown of your Judgement spells by 2 sec. Capstone Bonus: Smite and Holy Fire can trigger your active seal for 10 seconds after using Judgement.","Reduces the cooldown of your Judgement spells by 3 sec. Capstone Bonus: Smite and Holy Fire can trigger your active seal for 10 seconds after using Judgement."],"system":"classic"},{"id":"talent-1632","treeId":"paladin-retribution","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_eyeforaneye.png","maxRank":3,"name":"Eye for an Eye","description":"All criticals against you cause 15% of the damage taken to the attacker as well. The damage caused by Eye for an Eye will not exceed 50% of your total health.","rankDescriptions":["All criticals against you cause 5% of the damage taken to the attacker as well. The damage caused by Eye for an Eye will not exceed 50% of your total health.","All criticals against you cause 10% of the damage taken to the attacker as well. The damage caused by Eye for an Eye will not exceed 50% of your total health.","All criticals against you cause 15% of the damage taken to the attacker as well. The damage caused by Eye for an Eye will not exceed 50% of your total health."],"system":"classic"},{"id":"talent-1633","treeId":"paladin-retribution","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_vindication.png","maxRank":3,"name":"Vindication","description":"Gives your Holy spells and Paladin melee abilities a 65% chance to reduce the targets attack power by the listed amountthe listed amount (scaling with level). Does not stack with other similar effects. Capstone Bonus: Your attack power is increased whenever you deal Holy damage to a target afflicted by Vindication.","rankDescriptions":["Gives your Holy spells and Paladin melee abilities a 17% chance to reduce the targets attack power by the listed amountthe listed amount (scaling with level). Does not stack with other similar effects. Capstone Bonus: Your attack power is increased whenever you deal Holy damage to a target afflicted by Vindication.","Gives your Holy spells and Paladin melee abilities a 34% chance to reduce the targets attack power by the listed amountthe listed amount (scaling with level). Does not stack with other similar effects. Capstone Bonus: Your attack power is increased whenever you deal Holy damage to a target afflicted by Vindication.","Gives your Holy spells and Paladin melee abilities a 65% chance to reduce the targets attack power by the listed amountthe listed amount (scaling with level). Does not stack with other similar effects. Capstone Bonus: Your attack power is increased whenever you deal Holy damage to a target afflicted by Vindication."],"system":"classic"},{"id":"talent-2148","treeId":"paladin-retribution","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_paladin_swiftretribution.png","maxRank":3,"name":"Swift Retribution","description":"Increases the spell haste of all party and raid members by 3%. Does not stack with other similar effects. When you use Crusader Strike or Judgement you gain 3% melee and spell haste. This effect stacks three times and lasts for 10 seconds. Capstone Bonus: Each stack of Swift Retribution also increases the damage of your Holy Fire and Smite by 5%.","rankDescriptions":["Increases the spell haste of all party and raid members by 1%. Does not stack with other similar effects. When you use Crusader Strike or Judgement you gain 1% melee and spell haste. This effect stacks three times and lasts for 10 seconds. Capstone Bonus: Each stack of Swift Retribution also increases the damage of your Holy Fire and Smite by 5%.","Increases the spell haste of all party and raid members by 2%. Does not stack with other similar effects. When you use Crusader Strike or Judgement you gain 2% melee and spell haste. This effect stacks three times and lasts for 10 seconds. Capstone Bonus: Each stack of Swift Retribution also increases the damage of your Holy Fire and Smite by 5%.","Increases the spell haste of all party and raid members by 3%. Does not stack with other similar effects. When you use Crusader Strike or Judgement you gain 3% melee and spell haste. This effect stacks three times and lasts for 10 seconds. Capstone Bonus: Each stack of Swift Retribution also increases the damage of your Holy Fire and Smite by 5%."],"system":"classic"},{"id":"talent-2176","treeId":"paladin-retribution","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_paladin_artofwar.png","maxRank":3,"name":"The Art of War","description":"Increases the damage of your Judgement, Crusader Strike, Execution Sentence and Divine Storm abilities by 9%. When those abilities and your main hand auto attack deal damage you have a 50% chance to reduce the cast time of your next Flash of Light or Exorcism by 100%. This effect has a 6 second cooldown.","rankDescriptions":["Increases the damage of your Judgement, Crusader Strike, Execution Sentence and Divine Storm abilities by 3%. When those abilities and your main hand auto attack deal damage you have a 50% chance to reduce the cast time of your next Flash of Light, Exorcism by 33%. This effect has a 6 second cooldown.","Increases the damage of your Judgement, Crusader Strike, Execution Sentence and Divine Storm abilities by 6%. When those abilities and your main hand auto attack deal damage you have a 50% chance to reduce the cast time of your next Flash of Light or Exorcism by 66%. This effect has a 6 second cooldown.","Increases the damage of your Judgement, Crusader Strike, Execution Sentence and Divine Storm abilities by 9%. When those abilities and your main hand auto attack deal damage you have a 50% chance to reduce the cast time of your next Flash of Light or Exorcism by 100%. This effect has a 6 second cooldown."],"system":"classic"},{"id":"talent-1402","treeId":"paladin-retribution","index":15,"prerequisiteId":"talent-1411","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1411","requiredRank":5}],"column":2,"row":6,"icon":"/assets/ui/talents/icons/ability_racial_avatar.png","maxRank":3,"name":"Vengeance","description":"Gives you a 3% bonus to Holy damage and Crusader Strike and Divine Storm damage you deal for 15 seconds after dealing a critical strike from a weapon swing, spell, or ability. This effect stacks up to 5 times.","rankDescriptions":["Gives you a 1% bonus to Holy damage and Crusader Strike and Divine Storm damage you deal for 15 seconds after dealing a critical strike from a weapon swing, spell, or ability. This effect stacks up to 5 times.","Gives you a 2% bonus to Holy damage and Crusader Strike and Divine Storm damage you deal for 15 seconds after dealing a critical strike from a weapon swing, spell, or ability. This effect stacks up to 5 times.","Gives you a 3% bonus to Holy damage and Crusader Strike and Divine Storm damage you deal for 15 seconds after dealing a critical strike from a weapon swing, spell, or ability. This effect stacks up to 5 times."],"system":"classic"},{"id":"talent-1403","treeId":"paladin-retribution","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/ability_parry.png","maxRank":3,"name":"Light's Vengeance","description":"Increases your Parry chance by 3%. Gives you a 100% when you Parry to deal Holy damage to your attacker. This damage deals additional threat.","rankDescriptions":["Increases your Parry chance by 1%. Gives you a 33% when you Parry to deal Holy damage to your attacker. This damage deals additional threat.","Increases your Parry chance by 2%. Gives you a 66% when you Parry to deal Holy damage to your attacker. This damage deals additional threat.","Increases your Parry chance by 3%. Gives you a 100% when you Parry to deal Holy damage to your attacker. This damage deals additional threat."],"system":"classic"},{"id":"talent-1411","treeId":"paladin-retribution","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_retributionaura.png","maxRank":5,"name":"Conviction","description":"Increases your chance to get a critical strike with all spells and attacks by 5%. Capstone Bonus: Your non-periodic damaging spell casts have a chance to increases your Strength by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds.","rankDescriptions":["Increases your chance to get a critical strike with all spells and attacks by 1%. Capstone Bonus: Your non-periodic damaging spell casts have a chance to increases your Strength by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds.","Increases your chance to get a critical strike with all spells and attacks by 2%. Capstone Bonus: Your non-periodic damaging spell casts have a chance to increases your Strength by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds.","Increases your chance to get a critical strike with all spells and attacks by 3%. Capstone Bonus: Your non-periodic damaging spell casts have a chance to increases your Strength by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds.","Increases your chance to get a critical strike with all spells and attacks by 4%. Capstone Bonus: Your non-periodic damaging spell casts have a chance to increases your Strength by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds.","Increases your chance to get a critical strike with all spells and attacks by 5%. Capstone Bonus: Your non-periodic damaging spell casts have a chance to increases your Strength by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds."],"system":"classic"},{"id":"talent-1441","treeId":"paladin-retribution","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_prayerofhealing.png","maxRank":1,"name":"Repentance","description":"Puts the enemy target in a state of meditation, incapacitating them for up to 1 minute (6 seconds on players), and removing the effect of Righteous Vengeance. Any damage caused will awaken the target. This spell cannot miss.","rankDescriptions":["Puts the enemy target in a state of meditation, incapacitating them for up to 1 minute (6 seconds on players), and removing the effect of Righteous Vengeance. Any damage caused will awaken the target. This spell cannot miss."],"system":"classic"},{"id":"talent-1464","treeId":"paladin-retribution","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_holysmite.png","maxRank":3,"name":"Heart of the Crusader","description":"Your Judgement spells now also increases the critical strike chance of all spells and attacks made against that target by 3%. Does not stack with other similar effects. Capstone Bonus: Your Judgements deal bonus Holy damage to all enemies within 8 yards of the target. This damage scales with modifiers to Judgements.","rankDescriptions":["Your Judgement spells now also increases the critical strike chance of all spells and attacks made against that target by 1%. Does not stack with other similar effects. Capstone Bonus: Your Judgements deal bonus Holy damage to all enemies within 8 yards of the target. This damage scales with modifiers to Judgements.","Your Judgement spells now also increases the critical strike chance of all spells and attacks made against that target by 2%. Does not stack with other similar effects. Capstone Bonus: Your Judgements deal bonus Holy damage to all enemies within 8 yards of the target. This damage scales with modifiers to Judgements.","Your Judgement spells now also increases the critical strike chance of all spells and attacks made against that target by 3%. Does not stack with other similar effects. Capstone Bonus: Your Judgements deal bonus Holy damage to all enemies within 8 yards of the target. This damage scales with modifiers to Judgements."],"system":"classic"},{"id":"talent-1759","treeId":"paladin-retribution","index":20,"prerequisiteId":"talent-1441","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1441","requiredRank":1}],"column":2,"row":8,"icon":"/assets/ui/talents/icons/spell_holy_fanaticism.png","maxRank":3,"name":"Fanaticism","description":"Increases the critical strike chance of all Judgements by 30%. Increases the damage of your Crusader Strike, Seals and Judgements on targets affected by your Execution Sentence by 20%. Capstone Bonus: Your Crusader Strike marks the target for 8 seconds, increasing the damage they take from your Seals by 10%. Judging a target that's marked or affected by Execution Sentence grants you 35% increased movement speed for 3 seconds and reduces the cooldown of Execution Sentence by 10 seconds when used against monsters.","rankDescriptions":["Increases the critical strike chance of all Judgements by 10%. Increases the damage of your Crusader Strike, Seals and Judgements on targets affected by your Execution Sentence by 7%. Capstone Bonus: Your Crusader Strike marks the target for 8 seconds, increasing the damage they take from your Seals by 10%. Judging a target that's marked or affected by Execution Sentence grants you 35% increased movement speed for 3 seconds and reduces the cooldown of Execution Sentence by 10 seconds.","Increases the critical strike chance of all Judgements by 20%. Increases the damage of your Crusader Strike, Seals and Judgements on targets affected by your Execution Sentence by 14%. Capstone Bonus: Your Crusader Strike marks the target for 8 seconds, increasing the damage they take from your Seals by 10%. Judging a target that's marked or affected by Execution Sentence grants you 35% increased movement speed for 3 seconds and reduces the cooldown of Execution Sentence by 10 seconds.","Increases the critical strike chance of all Judgements by 30%. Increases the damage of your Crusader Strike, Seals and Judgements on targets affected by your Execution Sentence by 20%. Capstone Bonus: Your Crusader Strike marks the target for 8 seconds, increasing the damage they take from your Seals by 10%. Judging a target that's marked or affected by Execution Sentence grants you 35% increased movement speed for 3 seconds and reduces the cooldown of Execution Sentence by 10 seconds when used against monsters."],"system":"classic"},{"id":"talent-1823","treeId":"paladin-retribution","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_holy_crusaderstrike.png","maxRank":1,"name":"Crusader Strike","description":"An instant strike that causes 105% weapon damage plus 15. Max 3 charges. 4 seconds recharge timer.","rankDescriptions":["An instant strike that causes 105% weapon damage plus 15. Max 3 charges. 4 seconds recharge timer."],"system":"classic"},{"id":"talent-2149","treeId":"paladin-retribution","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_paladin_righteousvengeance.png","maxRank":3,"name":"Righteous Vengeance","description":"When your Hammer of Wrath, Judgement, Crusader Strike, Hammer of the Righteous, Shield of Righteousness, Exorcism and Divine Storm spells deal a critical strike, your target will take 20% of the damage dealt over 8 seconds as Holy damage. This damage is doubled while your primary stat is Strength allocated.","rankDescriptions":["When your Hammer of Wrath, Judgement, Crusader Strike, Hammer of the Righteous, Shield of Righteousness, Exorcism and Divine Storm spells deal a critical strike, your target will take 7% of the damage dealt over 8 seconds as Holy damage. This damage is doubled while your primary stat is Strength allocated.","When your Hammer of Wrath, Judgement, Crusader Strike, Hammer of the Righteous, Shield of Righteousness, Exorcism and Divine Storm spells deal a critical strike, your target will take 14% of the damage dealt over 8 seconds as Holy damage. This damage is doubled while your primary stat is Strength allocated.","When your Hammer of Wrath, Judgement, Crusader Strike, Hammer of the Righteous, Shield of Righteousness, Exorcism and Divine Storm spells deal a critical strike, your target will take 20% of the damage dealt over 8 seconds as Holy damage. This damage is doubled while your primary stat is Strength allocated."],"system":"classic"},{"id":"talent-2150","treeId":"paladin-retribution","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_paladin_divinestorm.png","maxRank":1,"name":"Divine Storm","description":"An instant weapon attack that causes 105% of weapon damage to up to 6 enemies within 8 yards. The Divine Storm heals up to 3 party or raid members for 8% of the damage caused.","rankDescriptions":["An instant weapon attack that causes 105% of weapon damage to up to 6 enemies within 8 yards. The Divine Storm heals up to 3 party or raid members for 8% of the damage caused."],"system":"classic"},{"id":"talent-1401","treeId":"paladin-retribution","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_fistofjustice.png","maxRank":2,"name":"Improved Blessing of Might","description":"Casting Blessing of Might on an ally increases their and your attack power by the listed amountthe listed amount for 1 hour. Can only be active on one ally at a time.","rankDescriptions":["Casting Blessing of Might on an ally increases their and your attack power by the listed amountthe listed amount for 1 hour. Can only be active on one ally at a time.","Casting Blessing of Might on an ally increases their and your attack power by the listed amountthe listed amount for 1 hour. Can only be active on one ally at a time."],"system":"classic"},{"id":"talent-1407","treeId":"paladin-retribution","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_frost_windwalkon.png","maxRank":3,"name":"Benediction","description":"Restores 30% base mana when you kill a target that gives experience or honor. This effect cannot occur more than once every 5 seconds. Capstone Bonus: Benediction now also restores mana to party members below 50% of their total mana.","rankDescriptions":["Restores 10% base mana when you kill a target that gives experience or honor. This effect cannot occur more than once every 5 seconds. Capstone Bonus: Benediction now also restores mana to party members below 50% of their total mana.","Restores 20% base mana when you kill a target that gives experience or honor. This effect cannot occur more than once every 5 seconds. Capstone Bonus: Benediction now also restores mana to party members below 50% of their total mana.","Restores 30% base mana when you kill a target that gives experience or honor. This effect cannot occur more than once every 5 seconds. Capstone Bonus: Benediction now also restores mana to party members below 50% of their total mana."],"system":"classic"},{"id":"talent-1481","treeId":"paladin-retribution","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/ability_warrior_innerrage.png","maxRank":1,"name":"Seal of Command","description":"@learns:954707@ All main hand auto attacks and Paladin melee abilities deal the listed amount damage} to the listed amount damage} additional Holy damage to the target and up to 2 additional targets. Lasts until cancelled. Unleashing this Seal's energy will judge an enemy, instantly causing the listed amount damage+0.08*attack power+0.13*healing spell power} to the listed amount damage+0.08*attack power+0.13*healing spell power} Holy damage.","rankDescriptions":["@learns:954707@ All main hand auto attacks and Paladin melee abilities deal the listed amount damage} to the listed amount damage} additional Holy damage to the target and up to 2 additional targets. Lasts until cancelled. Unleashing this Seal's energy will judge an enemy, instantly causing the listed amount damage+0.08*attack power+0.13*healing spell power} to the listed amount damage+0.08*attack power+0.13*healing spell power} Holy damage."],"system":"classic"},{"id":"talent-1756","treeId":"paladin-retribution","index":14,"prerequisiteId":"talent-1409","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1409","requiredRank":1}],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_holy_mindvision.png","maxRank":3,"name":"Sanctified Retribution","description":"Increases the damage of all party and raid members by 3%. Does not stack with other similar effects. Increases the damage caused by Retribution Aura by 60%.","rankDescriptions":["Increases the damage of all party and raid members by 1%. Does not stack with other similar effects. Increases the damage caused by Retribution Aura by 20%.","Increases the damage of all party and raid members by 2%. Does not stack with other similar effects. Increases the damage caused by Retribution Aura by 40%.","Increases the damage of all party and raid members by 3%. Does not stack with other similar effects. Increases the damage caused by Retribution Aura by 60%."],"system":"classic"},{"id":"talent-1757","treeId":"paladin-retribution","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_holy_divinepurpose.png","maxRank":3,"name":"Divine Purpose","description":"Reduces the cooldown of Hand of Freedom by 6 seconds. Your Hand of Freedom spell has a 100% chance to remove all stun effects on the target. If a stun effect is removed, the normal effect of Hand of Freedom will not be applied. Capstone Bonus: Your Hand of Freedom now also increases the movement speed of the target by 30%.","rankDescriptions":["Reduces the cooldown of Hand of Freedom by 2 seconds. Your Hand of Freedom spell has a 33% chance to remove all stun effects on the target. If a stun effect is removed, the normal effect of Hand of Freedom will not be applied. Capstone Bonus: Your Hand of Freedom now also increases the movement speed of the target by 30%.","Reduces the cooldown of Hand of Freedom by 4 seconds. Your Hand of Freedom spell has a 67% chance to remove all stun effects on the target. If a stun effect is removed, the normal effect of Hand of Freedom will not be applied. Capstone Bonus: Your Hand of Freedom now also increases the movement speed of the target by 30%.","Reduces the cooldown of Hand of Freedom by 6 seconds. Your Hand of Freedom spell has a 100% chance to remove all stun effects on the target. If a stun effect is removed, the normal effect of Hand of Freedom will not be applied. Capstone Bonus: Your Hand of Freedom now also increases the movement speed of the target by 30%."],"system":"classic"},{"id":"talent-1758","treeId":"paladin-retribution","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_paladin_judgementofthewise.png","maxRank":3,"name":"Judgements of the Wise","description":"Your damaging Judgement spells have a 100% chance to grant Replenishment and immediately grant you 15% of your base mana. @s:57669:0@","rankDescriptions":["Your Judgements have a 33% chance to restore 15% of your base mana and grant Replenishment. @s:57669:0@","Your Judgements have a 66% chance to restore 15% of your base mana and grant Replenishment. @s:57669:0@","Your damaging Judgement spells have a 100% chance to grant Replenishment and immediately grant you 15% of your base mana. @s:57669:0@"],"system":"classic"},{"id":"talent-1761","treeId":"paladin-retribution","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_holysmite.png","maxRank":3,"name":"Sanctity of Battle","description":"Increases the damage caused by Exorcism, Crusader Strike, Divine Storm, Execution Sentence and Consecration by 15%. You have a 100% chance when you deal damage with Exorcism to empower your next ability: Hammer of Wrath - May be used regardless of the target's health and deals 35% more damage to monsters. Holy Fire - Guaranteed to critically strike but deals 10% reduced damage. Flash of Light - Guaranteed critical strike.","rankDescriptions":["Increases the damage caused by Exorcism, Crusader Strike, Divine Storm, Execution Sentence and Consecration by 5%. You have a 33% chance when you deal damage with Exorcism to empower your next ability: Hammer of Wrath - May be used regardless of the target's health and deals 35% more damage to monsters. Holy Fire - Guaranteed to critically strike but deals 10% reduced damage. Flash of Light - Guaranteed critical strike.","Increases the damage caused by Exorcism, Crusader Strike, Divine Storm, Execution Sentence and Consecration by 10%. You have a 66% chance when you deal damage with Exorcism to empower your next ability: Hammer of Wrath - May be used regardless of the target's health and deals 35% more damage to monsters. Holy Fire - Guaranteed to critically strike but deals 10% reduced damage. Flash of Light - Guaranteed critical strike.","Increases the damage caused by Exorcism, Crusader Strike, Divine Storm, Execution Sentence and Consecration by 15%. You have a 100% chance when you deal damage with Exorcism to empower your next ability: Hammer of Wrath - May be used regardless of the target's health and deals 35% more damage to monsters. Holy Fire - Guaranteed to critically strike but deals 10% reduced damage. Flash of Light - Guaranteed critical strike."],"system":"classic"},{"id":"talent-2147","treeId":"paladin-retribution","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_paladin_sanctifiedwrath.png","maxRank":2,"name":"Sanctified Wrath","description":"Increases the critical strike chance of Hammer of Wrath by 30%, reduces the cooldown of Exorcism by 40% and increases the damage of Exorcism by 10%.","rankDescriptions":["Increases the critical strike chance of Hammer of Wrath by 15%. Reduces the cooldown of Exorcism by 20%. Increases the damage of Exorcism by 5%.","Increases the critical strike chance of Hammer of Wrath by 30%, reduces the cooldown of Exorcism by 40% and increases the damage of Exorcism by 10%."],"system":"classic"},{"id":"talent-2179","treeId":"paladin-retribution","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_paladin_sheathoflight.png","maxRank":3,"name":"Sheath of Light","description":"Your critical Holy healing spells heal for an additional 10% of the healed amount over 9 seconds. Sheath of Light is doubled for Single Target heals. Capstone Bonus: Divine Shield no longer reduces your healing done.","rankDescriptions":["Your critical Holy healing spells heal for an additional 4% of the healed amount over 9 seconds. Sheath of Light is doubled for Single Target heals. Capstone Bonus: Divine Shield no longer reduces your healing done.","Your critical Holy healing spells heal for an additional 7% of the healed amount over 9 seconds. Sheath of Light is doubled for Single Target heals. Capstone Bonus: Divine Shield no longer reduces your healing done.","Your critical Holy healing spells heal for an additional 10% of the healed amount over 9 seconds. Sheath of Light is doubled for Single Target heals. Capstone Bonus: Divine Shield no longer reduces your healing done."],"system":"classic"},{"id":"talent-1634","treeId":"paladin-retribution","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_persuitofjustice.png","maxRank":2,"name":"Pursuit of Justice","description":"Reduces the duration of all Disarm effects by 30%. Increases mounted speed by 10%. This does not stack with other movement speed increasing effects or disarm duration effects.","rankDescriptions":["Reduces the duration of all Disarm effects by 15%. Increases mounted speed by 5%. This does not stack with other movement speed increasing effects or disarm duration effects.","Reduces the duration of all Disarm effects by 30%. Increases mounted speed by 10%. This does not stack with other movement speed increasing effects or disarm duration effects."],"system":"classic"},{"id":"talent-1755","treeId":"paladin-retribution","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_crusade.png","maxRank":3,"name":"Crusade","description":"Increases all damage done by 3%. Increases the critical strike chance of your Holy spells and abilities by 3%. Capstone Bonus: Repentance does not break from damage from Righteous Vengeance or Seal of Vengeance.","rankDescriptions":["Increases all damage done by 1%. Increases the critical strike chance of your Holy spells and abilities by 1%. Capstone Bonus: Repentance does not break from damage from Righteous Vengeance or Seal of Vengeance.","Increases all damage done by 2%. Increases the critical strike chance of your Holy spells and abilities by 2%. Capstone Bonus: Repentance does not break from damage from Righteous Vengeance or Seal of Vengeance.","Increases all damage done by 3%. Increases the critical strike chance of your Holy spells and abilities by 3%. Capstone Bonus: Repentance does not break from damage from Righteous Vengeance or Seal of Vengeance."],"system":"classic"},{"id":"talent-1435","treeId":"paladin-holy","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_auramastery.png","maxRank":1,"name":"Aura Mastery","description":"Reduces the duration of Disorient, Fear, Incapacitate, and Polymorph effects on you by 50%. Enhances your Paladin Auras to grant immunity to Silence and Interrupt effects for all affected allies and increases the effectiveness of all auras by 100%. Lasts 6 seconds.","rankDescriptions":["Reduces the duration of Disorient, Fear, Incapacitate, and Polymorph effects on you by 50%. Enhances your Paladin Auras to grant immunity to Silence and Interrupt effects for all affected allies and increases the effectiveness of all auras by 100%. Lasts 6 seconds."],"system":"classic"},{"id":"talent-1444","treeId":"paladin-holy","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_holybolt.png","maxRank":3,"name":"Healing Light","description":"Increases the effectiveness by your Holy Light, Flash of Light, Light of Dawn, Holy Shock and Light's Hammer spells by 12%.","rankDescriptions":["Increases the effectiveness by your Holy Light, Flash of Light, Light of Dawn, Holy Shock and Light's Hammer spells by 4%.","Increases the effectiveness by your Holy Light, Flash of Light, Light of Dawn, Holy Shock and Light's Hammer spells by 8%.","Increases the effectiveness by your Holy Light, Flash of Light, Light of Dawn, Holy Shock and Light's Hammer spells by 12%."],"system":"classic"},{"id":"talent-1450","treeId":"paladin-holy","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_mindsooth.png","maxRank":3,"name":"Improved Concentration Aura","description":"Increases the effect of your Concentration Aura by an additional 20%. While any Aura is active reduces the duration of any Silence or Interrupt effect used against an affected group member by 30%. The duration reduction does not stack with any other effects.","rankDescriptions":["Increases the effect of your Concentration Aura by an additional 7%. While any Aura is active reduces the duration of any Silence or Interrupt effect used against an affected group member by 10%. The duration reduction does not stack with any other effects.","Increases the effect of your Concentration Aura by an additional 14%. While any Aura is active reduces the duration of any Silence or Interrupt effect used against an affected group member by 20%. The duration reduction does not stack with any other effects.","Increases the effect of your Concentration Aura by an additional 20%. While any Aura is active reduces the duration of any Silence or Interrupt effect used against an affected group member by 30%. The duration reduction does not stack with any other effects."],"system":"classic"},{"id":"talent-1742","treeId":"paladin-holy","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_holy_pureofheart.png","maxRank":3,"name":"Pure of Heart","description":"Reduces the duration of Curse, Disease, Fear and Charm effects by 20%.","rankDescriptions":["Reduces the duration of Curse, Disease, Fear and Charm effects by 7%.","Reduces the duration of Curse, Disease, Fear and Charm effects by 14%.","Reduces the duration of Curse, Disease, Fear and Charm effects by 20%."],"system":"classic"},{"id":"talent-1743","treeId":"paladin-holy","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_holy_purifyingpower.png","maxRank":2,"name":"Purifying Power","description":"Increases the damage dealt by your Holy Wrath and Consecrate abilities by 20%. Reduces the cooldown of your Holy Wrath by 50%. Reduces the mana cost of your Cleanse, Holy Wrath, and Consecration spells by 30%.","rankDescriptions":["Increases the damage dealt by your Holy Wrath and Consecrate abilities by 10%. Reduces the cooldown of your Holy Wrath by 25%. Reduces the mana cost of your Cleanse, Holy Wrath, and Consecration spells by 15%.","Increases the damage dealt by your Holy Wrath and Consecrate abilities by 20%. Reduces the cooldown of your Holy Wrath by 50%. Reduces the mana cost of your Cleanse, Holy Wrath, and Consecration spells by 30%."],"system":"classic"},{"id":"talent-1745","treeId":"paladin-holy","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_lightsgrace.png","maxRank":3,"name":"Light's Grace","description":"Gives your Holy Light and Prayer of Healing spells a 100% chance to reduce the cast time of your next Holy Light or Prayer of Healing spell by 0.5 sec. This effect lasts 15 seconds.","rankDescriptions":["Gives your Holy Light and Prayer of Healing spells a 33% chance to reduce the cast time of your next Holy Light or Prayer of Healing spell by 0.5 sec. This effect lasts 15 seconds.","Gives your Holy Light and Prayer of Healing spells a 66% chance to reduce the cast time of your next Holy Light or Prayer of Healing spell by 0.5 sec. This effect lasts 15 seconds.","Gives your Holy Light and Prayer of Healing spells a 100% chance to reduce the cast time of your next Holy Light or Prayer of Healing spell by 0.5 sec. This effect lasts 15 seconds."],"system":"classic"},{"id":"talent-1747","treeId":"paladin-holy","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/spell_holy_divineillumination.png","maxRank":1,"name":"Divine Illumination","description":"Reduces resource cost of all magic spells and abilities by 60% and increases the critical effect chance of Holy healing spells by 20% for 15 seconds.","rankDescriptions":["Reduces resource cost of all magic spells and abilities by 60% and increases the critical effect chance of Holy healing spells by 20% for 15 seconds."],"system":"classic"},{"id":"talent-2190","treeId":"paladin-holy","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_paladin_sacredcleansing.png","maxRank":3,"name":"Sacred Cleansing","description":"Your Cleanse has a 100% chance to reduce the periodic spell damage taken by the target by 15% for 8 seconds. Capstone Bonus: The cooldown of your Cleanse is reduced by 2 seconds.","rankDescriptions":["Your Cleanse has a 33% chance to reduce the periodic spell damage taken by the target by 15% for 8 seconds. Capstone Bonus: The cooldown of your Cleanse is reduced by 2 seconds.","Your Cleanse has a 66% chance to reduce the periodic spell damage taken by the target by 15% for 8 seconds. Capstone Bonus: The cooldown of your Cleanse is reduced by 2 seconds.","Your Cleanse has a 100% chance to reduce the periodic spell damage taken by the target by 15% for 8 seconds. Capstone Bonus: The cooldown of your Cleanse is reduced by 2 seconds."],"system":"classic"},{"id":"talent-1432","treeId":"paladin-holy","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_arcane_blink.png","maxRank":3,"name":"Spiritual Focus","description":"Increases spell, ranged and melee haste by 3%. Reduces spell pushback suffered from damaging attacks by 100%. Capstone Bonus: Being hit by an Interrupt effect when you are not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect against you for 20 seconds. It also makes your next Holy spell a guaranteed critical strike. This may only occur once every 20 seconds.","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Reduces spell pushback suffered from damaging attacks by 33%. Capstone Bonus: Being hit by an Interrupt effect when you are not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect against you for 20 seconds. It also makes your next Holy spell a guaranteed critical strike. This may only occur once every 20 seconds.","Increases spell, ranged and melee haste by 2%. Reduces spell pushback suffered from damaging attacks by 66%. Capstone Bonus: Being hit by an Interrupt effect when you are not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect against you for 20 seconds. It also makes your next Holy spell a guaranteed critical strike. This may only occur once every 20 seconds.","Increases spell, ranged and melee haste by 3%. Reduces spell pushback suffered from damaging attacks by 100%. Capstone Bonus: Being hit by an Interrupt effect when you are not casting makes you immune to the next Crowd Control, Knockback, Silence or Interrupt effect against you for 20 seconds. It also makes your next Holy spell a guaranteed critical strike. This may only occur once every 20 seconds."],"system":"classic"},{"id":"talent-1433","treeId":"paladin-holy","index":13,"prerequisiteId":"talent-1461","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1461","requiredRank":5}],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_holy_heal.png","maxRank":1,"name":"Divine Favor","description":"When activated, gives your next Holy spell a 100% critical effect chance and 50% increased healing.","rankDescriptions":["When activated, gives your next Holy spell a 100% critical effect chance and 50% increased healing."],"system":"classic"},{"id":"talent-1449","treeId":"paladin-holy","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_sleep.png","maxRank":3,"name":"Divine Intellect","description":"Increases your critical strike chance with your holy spells and abilities by 3%. Increases your healing power by 9% of your Intellect.","rankDescriptions":["Increases your critical strike chance with your holy spells and abilities by 1%. Increases your healing power by 3% of your Intellect.","Increases your critical strike chance with your holy spells and abilities by 2%. Increases your healing power by 6% of your Intellect.","Increases your critical strike chance with your holy spells and abilities by 3%. Increases your healing power by 9% of your Intellect."],"system":"classic"},{"id":"talent-1461","treeId":"paladin-holy","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_greaterheal.png","maxRank":3,"name":"Illumination","description":"Reduces the cooldown of Light's Hammer by 15 sec. Critical heals with Flash of Light, Holy Light or Holy Shock now has a 100% chance to gain mana equal to 50% of the base cost of the spell.","rankDescriptions":["Reduces the cooldown of Light's Hammer by 5 sec. Critical heals with Flash of Light, Holy Light or Holy Shock now has a 33% chance to gain mana equal to 50% of the base cost of the spell.","Reduces the cooldown of Light's Hammer by 10 sec. Critical heals with Flash of Light, Holy Light or Holy Shock now has a 66% chance to gain mana equal to 50% of the base cost of the spell.","Reduces the cooldown of Light's Hammer by 15 sec. Critical heals with Flash of Light, Holy Light or Holy Shock now has a 100% chance to gain mana equal to 50% of the base cost of the spell."],"system":"classic"},{"id":"talent-1502","treeId":"paladin-holy","index":18,"prerequisiteId":"talent-1433","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1433","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_searinglight.png","maxRank":1,"name":"Holy Shock","description":"Blasts the target with Holy energy, causing 307 Holy damage to an enemy, or 160 healing to an ally.","rankDescriptions":["Blasts the target with Holy energy, causing 307 Holy damage to an enemy, or 160 healing to an ally."],"system":"classic"},{"id":"talent-2192","treeId":"paladin-holy","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_paladin_beaconoflight.png","maxRank":1,"name":"Beacon of Light","description":"The target becomes a Beacon of Light to all members of your party or raid within a 60 yard radius. Any direct heals you cast on party or raid members will also heal the Beacon for 40% of the amount healed. Lasts 1 minute. Only one target can be the Beacon of Light at a time.","rankDescriptions":["The target becomes a Beacon of Light to all members of your party or raid within a 60 yard radius. Any direct heals you cast on party or raid members will also heal the Beacon for 40% of the amount healed. Lasts 1 minute. Only one target can be the Beacon of Light at a time."],"system":"classic"},{"id":"talent-2193","treeId":"paladin-holy","index":24,"prerequisiteId":"talent-1502","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1502","requiredRank":1}],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_paladin_infusionoflight.png","maxRank":2,"name":"Infusion of Light","description":"Your Holy Shock critical effects reduce the cast time of your next Flash of Light by the listed amount sec, or increases the critical chance and critical heal effect of your next Holy Light by 20%.","rankDescriptions":["Your Holy Shock critical effects reduce the cast time of your next Flash of Light by the listed amount sec, or increases the critical chance and critical heal effect of your next Holy Light by 10%.","Your Holy Shock critical effects reduce the cast time of your next Flash of Light by the listed amount sec, or increases the critical chance and critical heal effect of your next Holy Light by 20%."],"system":"classic"},{"id":"talent-1443","treeId":"paladin-holy","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_layonhands.png","maxRank":2,"name":"Improved Lay on Hands","description":"Grants the target of your Lay on Hands spell 20% reduced Physical damage taken for 15 seconds. Reduces the cooldown of Lay on Hands by the listed amount min.","rankDescriptions":["Grants the target of your Lay on Hands spell 10% reduced Physical damage taken for 15 seconds. Reduces the cooldown of Lay on Hands by the listed amount min.","Grants the target of your Lay on Hands spell 20% reduced Physical damage taken for 15 seconds. Reduces the cooldown of Lay on Hands by the listed amount min."],"system":"classic"},{"id":"talent-1446","treeId":"paladin-holy","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_sealofwisdom.png","maxRank":2,"name":"Improved Blessing of Wisdom","description":"Increases the effect of your Blessing of Wisdom spell by 30%.","rankDescriptions":["Increases the effect of your Blessing of Wisdom spell by 15%.","Increases the effect of your Blessing of Wisdom spell by 30%."],"system":"classic"},{"id":"talent-1463","treeId":"paladin-holy","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_thunderbolt.png","maxRank":3,"name":"Seals of the Pure","description":"Increases the damage done by your Seal of Righteousness, Seal of Vengeance, Seal of Command and Execution Sentence by 30%.","rankDescriptions":["Increases the damage done by your Seal of Righteousness, Seal of Vengeance, Seal of Command and Execution Sentence by 10%.","Increases the damage done by your Seal of Righteousness, Seal of Vengeance, Seal of Command and Execution Sentence by 20%.","Increases the damage done by your Seal of Righteousness, Seal of Vengeance, Seal of Command and Execution Sentence by 30%."],"system":"classic"},{"id":"talent-1465","treeId":"paladin-holy","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_holy_healingaura.png","maxRank":3,"name":"Sanctified Light","description":"Increases the critical effect chance of your Holy Light, Flash of Light, Holy Shock, and Light of Dawn spells by 6%. Increases the amount healed by your Holy critical heals by 15%. Capstone Bonus: After using Blinding Light your next Holy Light, Flash of Light, Holy Shock or Light of Dawn has a 100% increased critical effect chance.","rankDescriptions":["Increases the critical effect chance of your Holy Light, Flash of Light, Holy Shock, and Light of Dawn spells by 2%. Increases the amount healed by your Holy critical heals by 5%. Capstone Bonus: After using Blinding Light your next Holy Light, Flash of Light, Holy Shock or Light of Dawn has a 100% increased critical effect chance.","Increases the critical effect chance of your Holy Light, Flash of Light, Holy Shock, and Light of Dawn spells by 4%. Increases the amount healed by your Holy critical heals by 10%. Capstone Bonus: After using Blinding Light your next Holy Light, Flash of Light, Holy Shock or Light of Dawn has a 100% increased critical effect chance.","Increases the critical effect chance of your Holy Light, Flash of Light, Holy Shock, and Light of Dawn spells by 6%. Increases the amount healed by your Holy critical heals by 15%. Capstone Bonus: After using Blinding Light your next Holy Light, Flash of Light, Holy Shock or Light of Dawn has a 100% increased critical effect chance."],"system":"classic"},{"id":"talent-1627","treeId":"paladin-holy","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_holy_power.png","maxRank":3,"name":"Holy Power","description":"Increases the damage of your Holy spells and abilities by 6%.","rankDescriptions":["Increases the damage of your Holy spells and abilities by 2%.","Increases the damage of your Holy spells and abilities by 4%.","Increases the damage of your Holy spells and abilities by 6%."],"system":"classic"},{"id":"talent-1628","treeId":"paladin-holy","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_unyieldingfaith.png","maxRank":3,"name":"Unyielding Faith","description":"Increases your critical strike chance with all spells and abilities by 3%. Reduces the cooldown of your Aura Mastery by 10 seconds.","rankDescriptions":["Increases your critical strike chance with all spells and abilities by 1%. Reduces the cooldown of your Aura Mastery by 3 seconds.","Increases your critical strike chance with all spells and abilities by 2%. Reduces the cooldown of your Aura Mastery by 6 seconds.","Increases your critical strike chance with all spells and abilities by 3%. Reduces the cooldown of your Aura Mastery by 10 seconds."],"system":"classic"},{"id":"talent-1744","treeId":"paladin-holy","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_blessedlife.png","maxRank":3,"name":"Blessed Life","description":"All attacks against you have a 10% chance to cause half damage.","rankDescriptions":["All attacks against you have a 4% chance to cause half damage.","All attacks against you have a 7% chance to cause half damage.","All attacks against you have a 10% chance to cause half damage."],"system":"classic"},{"id":"talent-1746","treeId":"paladin-holy","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_holy_holyguidance.png","maxRank":3,"name":"Holy Guidance","description":"Increases your healing power and holy spell power by 12% of your Intellect. Capstone Bonus: Your Holy Shocks now also makes your target susceptible to spell criticals, increasing enemies' chance to be critically struck by spells or allies' chance to be critically healed by 5% for 20 seconds. Does not stack with other similar effects.","rankDescriptions":["Increases your healing power and holy spell power by 4% of your Intellect. Capstone Bonus: Your Holy Shocks now also makes your target susceptible to spell criticals, increasing enemies' chance to be critically struck by spells or allies' chance to be critically healed by 5% for 20 seconds. Does not stack with other similar effects.","Increases your healing power and holy spell power by 8% of your Intellect. Capstone Bonus: Your Holy Shocks now also makes your target susceptible to spell criticals, increasing enemies' chance to be critically struck by spells or allies' chance to be critically healed by 5% for 20 seconds. Does not stack with other similar effects.","Increases your healing power and holy spell power by 12% of your Intellect. Capstone Bonus: Your Holy Shocks now also makes your target susceptible to spell criticals, increasing enemies' chance to be critically struck by spells or allies' chance to be critically healed by 5% for 20 seconds. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-2191","treeId":"paladin-holy","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/talents/icons/ability_paladin_enlightenedjudgements.png","maxRank":2,"name":"Enlightened Judgements","description":"Increases your chance to hit with spells and abilities by 2%. Increases the range of your Judgement of Light and Judgement of Wisdom spells by 20 yards.","rankDescriptions":["Increases your chance to hit with spells and abilities by 1%. Increases the range of your Judgement of Light and Judgement of Wisdom spells by 10 yards.","Increases your chance to hit with spells and abilities by 2%. Increases the range of your Judgement of Light and Judgement of Wisdom spells by 20 yards."],"system":"classic"},{"id":"talent-2199","treeId":"paladin-holy","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_paladin_judgementofthepure.png","maxRank":3,"name":"Judgements of the Pure","description":"Increases the damage done by your Seal spells and Execution Sentence by 20%, your Judgement spells by 25%. Also your Judgement spells increase your haste by 6% for 1 minute.","rankDescriptions":["Increases the damage done by your Seal spells and Execution Sentence by 7% and your Judgement spells by 8%. Your Judgement spells increase your haste by 2% for 1 minute.","Increases the damage done by your Seal spells and Execution Sentence by 14%, your Judgement spells by 16%. Also your Judgement spells increase your haste by 4% for 1 minute.","Increases the damage done by your Seal spells and Execution Sentence by 20%, your Judgement spells by 25%. Also your Judgement spells increase your haste by 6% for 1 minute."],"system":"classic"},{"id":"talent-2198","treeId":"paladin-holy","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/ability_paladin_blessedhands.png","maxRank":3,"name":"Blessed Hands","description":"Reduces the cooldown of Hand of Salvation by 15 sec. Reduces Magic damage taken by 30% while Hand of Protection is active. Increases the effectiveness of Hand of Sacrifice by 15%. Capstone Bonus: Your Hand spells also increase your healing done to the target by 15% while active.","rankDescriptions":["Reduces the cooldown of Hand of Salvation by 5 sec. Reduces Magic damage taken by 10% while Hand of Protection is active. Increases the effectiveness of Hand of Sacrifice by 5%. Capstone Bonus: Your Hand spells also increase your healing done to the target by 15% while active.","Reduces the cooldown of Hand of Salvation by 10 sec. Reduces Magic damage taken by 20% while Hand of Protection is active. Increases the effectiveness of Hand of Sacrifice by 10%. Capstone Bonus: Your Hand spells also increase your healing done to the target by 15% while active.","Reduces the cooldown of Hand of Salvation by 15 sec. Reduces Magic damage taken by 30% while Hand of Protection is active. Increases the effectiveness of Hand of Sacrifice by 15%. Capstone Bonus: Your Hand spells also increase your healing done to the target by 15% while active."],"system":"classic"},{"id":"talent-1421","treeId":"paladin-protection","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_defend.png","maxRank":3,"name":"Redoubt","description":"Increases your chance to block attacks with a shield by 10%. Blocking an attack has a 10% chance to increase your Strength by 10% and reduce your damage taken by 6%. Lasts 10 seconds.","rankDescriptions":["Increases your chance to block attacks with a shield by 4%. Blocking an attack has a 10% chance to increase your Strength by 4% and reduce your damage taken by 2%. Lasts 10 seconds.","Increases your chance to block attacks with a shield by 7%. Blocking an attack has a 10% chance to increase your Strength by 7% and reduce your damage taken by 4%. Lasts 10 seconds.","Increases your chance to block attacks with a shield by 10%. Blocking an attack has a 10% chance to increase your Strength by 10% and reduce your damage taken by 6%. Lasts 10 seconds."],"system":"classic"},{"id":"talent-1442","treeId":"paladin-protection","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_holy_blindingheal.png","maxRank":3,"name":"Divinity","description":"@req:84864:req@ Increases all healing effects on you by 12%. Reduces your damage taken by 3%. Increases your healing power by 60% of your Stamina. The healing effect does not stack with other similar effects. Capstone Bonus: Being healed by others reduces the cooldown of your Divine Protection by 1 second and Holy Shield by 1 second. This effect can only occur once every second.","rankDescriptions":["@req:84864:req@ Increases all healing effects on you by 4%. Reduces your damage taken by 1%. Increases your healing power by 20% of your Stamina. The healing effect does not stack with other similar effects. Capstone Bonus: Being healed by others reduces the cooldown of your Divine Protection by 1 second and Holy Shield by 1 second. This effect can only occur once every second.","@req:84864:req@ Increases all healing effects on you by 8%. Reduces your damage taken by 2%. Increases your healing power by 40% of your Stamina. The healing effect does not stack with other similar effects.Capstone Bonus: Being healed by others reduces the cooldown of your Divine Protection by 1 second and Holy Shield by 1 second. This effect can only occur once every second.","@req:84864:req@ Increases all healing effects on you by 12%. Reduces your damage taken by 3%. Increases your healing power by 60% of your Stamina. The healing effect does not stack with other similar effects. Capstone Bonus: Being healed by others reduces the cooldown of your Divine Protection by 1 second and Holy Shield by 1 second. This effect can only occur once every second."],"system":"classic"},{"id":"talent-1748","treeId":"paladin-protection","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_stoicism.png","maxRank":3,"name":"Stoicism","description":"Reduces the duration of all Stun effects by 15%. Reduces the chance your Paladin helpful spells and damage over time effects will be dispelled by an additional 30%. Reduces your chance to be critically hit by 3%.","rankDescriptions":["Reduces the duration of all Stun effects by 5%. Reduces the chance your Paladin helpful spells and damage over time effects will be dispelled by an additional 10%. Reduces your chance to be critically hit by 1%.","Reduces the duration of all Stun effects by 10%. Reduces the chance your Paladin helpful spells and damage over time effects will be dispelled by an additional 20%. Reduces your chance to be critically hit by 2%.","Reduces the duration of all Stun effects by 15%. Reduces the chance your Paladin helpful spells and damage over time effects will be dispelled by an additional 30%. Reduces your chance to be critically hit by 3%."],"system":"classic"},{"id":"talent-1750","treeId":"paladin-protection","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_holy_divineintervention.png","maxRank":3,"name":"Sacred Duty","description":"Increases your total Stamina by 3%. Reduces the cooldown of your Divine Shield and Divine Protection spells by 60 sec. Increases the duration of Divine Shield by 3 sec. Capstone Bonus: Successfully transferring an attack using Righteous Defense will now also reset the cooldown of your Hand of Reckoning ability.","rankDescriptions":["Increases your total Stamina by 1%. Reduces the cooldown of your Divine Shield and Divine Protection spells by 20 sec. Increases the duration of Divine Shield by 1 sec. Capstone Bonus: Successfully transferring an attack using Righteous Defense will now also reset the cooldown of your Hand of Reckoning ability.","Increases your total Stamina by 2%. Reduces the cooldown of your Divine Shield and Divine Protection spells by 30 sec. Increases the duration of Divine Shield by 2 sec. Capstone Bonus: Successfully transferring an attack using Righteous Defense will now also reset the cooldown of your Hand of Reckoning ability.","Increases your total Stamina by 3%. Reduces the cooldown of your Divine Shield and Divine Protection spells by 60 sec. Increases the duration of Divine Shield by 3 sec. Capstone Bonus: Successfully transferring an attack using Righteous Defense will now also reset the cooldown of your Hand of Reckoning ability."],"system":"classic"},{"id":"talent-2195","treeId":"paladin-protection","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_paladin_touchedbylight.png","maxRank":3,"name":"Touched by the Light","description":"Receiving effective healing from others has a chance to increase your direct healing on yourself by 30%, stacks up to 3 times. When fully stacked, directly healing yourself will shroud you in Light. While active, taking direct damage will heal you for 25% of the damage taken plus the listed amount This can only occur once every two seconds and can only trigger once against players. Does not work with Tactical Mastery or Critical Block.","rankDescriptions":["Receiving effective healing from others has a chance to increase your direct healing on yourself by 10%, stacks up to 3 times. When fully stacked, directly healing yourself has a 33% chance to shroud you in Light. While active, taking direct damage will heal you for 25% of the damage taken plus the listed amount This can only occur once every two seconds and can only trigger once against players. Does not work with Tactical Mastery or Critical Block.","Receiving effective healing from others has a chance to increase your direct healing on yourself by 20%, stacks up to 3 times. When fully stacked, directly healing yourself has a 66% chance to shroud you in Light. While active, taking direct damage will heal you for 25% of the damage taken plus the listed amount This can only occur once every two seconds and can only trigger once against players. Does not work with Tactical Mastery or Critical Block.","Receiving effective healing from others has a chance to increase your direct healing on yourself by 30%, stacks up to 3 times. When fully stacked, directly healing yourself will shroud you in Light. While active, taking direct damage will heal you for 25% of the damage taken plus the listed amount This can only occur once every two seconds and can only trigger once against players. Does not work with Tactical Mastery or Critical Block."],"system":"classic"},{"id":"talent-2280","treeId":"paladin-protection","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_powerwordbarrier.png","maxRank":1,"name":"Divine Sacrifice","description":"30% of all damage taken by party members within 30 yards is redirected to the caster (up to a maximum of 40% of the caster's health times the number of party members). Damage which reduces the caster below 20% health will break the effect. Lasts 10 seconds.","rankDescriptions":["30% of all damage taken by party members within 30 yards is redirected to the caster (up to a maximum of 40% of the caster's health times the number of party members). Damage which reduces the caster below 20% health will break the effect. Lasts 10 seconds."],"system":"classic"},{"id":"talent-2281","treeId":"paladin-protection","index":9,"prerequisiteId":"talent-2280","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-2280","requiredRank":1}],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_powerwordbarrier.png","maxRank":2,"name":"Divine Guardian","description":"When Divine Sacrifice is activated, your party and raid members within the listed amount yards take 20% reduced damage for 6 seconds. Increases the duration of your Sacred Shield by 100% and the amount absorbed by 20%.","rankDescriptions":["When Divine Sacrifice is activated, your party and raid members within the listed amount yards take 10% reduced damage for 6 seconds. Increases the duration of your Sacred Shield by 50% and the amount absorbed by 10%.","When Divine Sacrifice is activated, your party and raid members within the listed amount yards take 20% reduced damage for 6 seconds. Increases the duration of your Sacred Shield by 100% and the amount absorbed by 20%."],"system":"classic"},{"id":"talent-1425","treeId":"paladin-protection","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_sealofprotection.png","maxRank":3,"name":"Guardian's Favor","description":"Reduces the cooldown of your Hand of Protection by 60 sec. Increases the duration of your Hand of Freedom by 3 sec and Hand of Sacrifice by 6 sec.","rankDescriptions":["Reduces the cooldown of your Hand of Protection by 20 sec. Increases the duration of your Hand of Freedom by 1 sec and Hand of Sacrifice by 2 sec.","Reduces the cooldown of your Hand of Protection by 40 sec. Increases the duration of your Hand of Freedom by 2 sec and Hand of Sacrifice by 4 sec.","Reduces the cooldown of your Hand of Protection by 60 sec. Increases the duration of your Hand of Freedom by 3 sec and Hand of Sacrifice by 6 sec."],"system":"classic"},{"id":"talent-1430","treeId":"paladin-protection","index":17,"prerequisiteId":"talent-1431","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1431","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_blessingofprotection.png","maxRank":1,"name":"Holy Shield","description":"Increases chance to block by 100% for 5 seconds and increases the armor you gain from your Shield by 250%. While active, your Ardent Defender talent can protect you from dying once, regardless of its cooldown. Shares a cooldown with Shield Block and Invocation","rankDescriptions":["Increases chance to block by 100% for 5 seconds and increases the armor you gain from your Shield by 250%. While active, your Ardent Defender talent can protect you from dying once, regardless of its cooldown. Shares a cooldown with Shield Block and Invocation"],"system":"classic"},{"id":"talent-1431","treeId":"paladin-protection","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_lightningshield.png","maxRank":1,"name":"Blessing of Sanctuary","description":"@learns:954711@ Places a Blessing on the friendly target, increasing healing received by 6% for 30 minutes. In addition, when the target blocks, parries, or dodges a melee attack the target will gain 6% of base mana. Does not stack with similar effects.","rankDescriptions":["@learns:954711@ Places a Blessing on the friendly target, increasing healing received by 6% for 30 minutes. In addition, when the target blocks, parries, or dodges a melee attack the target will gain 6% of base mana. Does not stack with similar effects."],"system":"classic"},{"id":"talent-1501","treeId":"paladin-protection","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_sealoffury.png","maxRank":3,"name":"Improved Righteous Fury","description":"While Righteous Fury is active all damage you take is reduced by 3%. Increases the total armor bonus you gain from Righteous Fury by an additional 9%.","rankDescriptions":["While Righteous Fury is active all damage you take is reduced by 1%. Increases the total armor bonus you gain from Righteous Fury by an additional 3%.","While Righteous Fury is active all damage you take is reduced by 2%. Increases the total armor bonus you gain from Righteous Fury by an additional 6%.","While Righteous Fury is active all damage you take is reduced by 3%. Increases the total armor bonus you gain from Righteous Fury by an additional 9%."],"system":"classic"},{"id":"talent-1521","treeId":"paladin-protection","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_sealofmight.png","maxRank":2,"name":"Improved Hammer of Justice","description":"Increases the duration of Hammer of Justice by 2 sec.","rankDescriptions":["Increases the duration of Hammer of Justice by 1 sec.","Increases the duration of Hammer of Justice by 2 sec."],"system":"classic"},{"id":"talent-1754","treeId":"paladin-protection","index":22,"prerequisiteId":"talent-1430","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1430","requiredRank":1}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_holy_avengersshield.png","maxRank":1,"name":"Avenger's Shield","description":"Hurls a holy shield at the enemy, dealing the listed amount spell power+0.07*attack power} to the listed amount spell power+0.07*attack power} Holy damage, Dazing them and then jumping to additional nearby enemies. Affects the listed amount total targets. Lasts 6 seconds.","rankDescriptions":["Hurls a holy shield at the enemy, dealing the listed amount spell power+0.07*attack power} to the listed amount spell power+0.07*attack power} Holy damage, Dazing them and then jumping to additional nearby enemies. Affects the listed amount total targets. Lasts 6 seconds."],"system":"classic"},{"id":"talent-2196","treeId":"paladin-protection","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_paladin_hammeroftherighteous.png","maxRank":1,"name":"Hammer of the Righteous","description":"Hammer the current target and up to the listed amountthe listed amount additional nearby targets, causing 3.5 times your main hand damage per second as Holy damage.","rankDescriptions":["Hammer the current target and up to the listed amountthe listed amount additional nearby targets, causing 3.5 times your main hand damage per second as Holy damage."],"system":"classic"},{"id":"talent-2204","treeId":"paladin-protection","index":24,"prerequisiteId":"talent-1754","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1754","requiredRank":1}],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_paladin_shieldofthetemplar.png","maxRank":3,"name":"Shield of the Templar","description":"Reduces all damage taken by 3%. Your Avenger's Shield has a 100% chance to silence your targets for 2 seconds. The critical strike chance of your Shield of Righteousness is increased by 15%. Capstone Bonus: Your Shield of Righteousness hits four extra targets while Holy Shield is active.","rankDescriptions":["Reduces all damage taken by 1%. Your Avenger's Shield has a 33% chance to silence your targets for 2 seconds. The critical strike chance of your Shield of Righteousness is increased by 5%. Capstone Bonus: Your Shield of Righteousness hits four extra targets while Holy Shield is active.","Reduces all damage taken by 2%. Your Avenger's Shield has a 66% chance to silence your targets for 2 seconds. The critical strike chance of your Shield of Righteousness is increased by 10%. Capstone Bonus: Your Shield of Righteousness hits four extra targets while Holy Shield is active.","Reduces all damage taken by 3%. Your Avenger's Shield has a 100% chance to silence your targets for 2 seconds. The critical strike chance of your Shield of Righteousness is increased by 15%. Capstone Bonus: Your Shield of Righteousness hits four extra targets while Holy Shield is active."],"system":"classic"},{"id":"talent-1422","treeId":"paladin-protection","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_devotionaura.png","maxRank":3,"name":"Improved Devotion Aura","description":"Increases the armor bonus of your Devotion Aura by 50%. Reduces your physical damage taken by 3%, whilst effected by your Devotion Aura.","rankDescriptions":["Increases the armor bonus of your Devotion Aura by 17%. Reduces your physical damage taken by 1%, whilst effected by your Devotion Aura.","Increases the armor bonus of your Devotion Aura by 34%. Reduces your physical damage taken by 2%, whilst effected by your Devotion Aura.","Increases the armor bonus of your Devotion Aura by 50%. Reduces your physical damage taken by 3%, whilst effected by your Devotion Aura."],"system":"classic"},{"id":"talent-1423","treeId":"paladin-protection","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_devotion.png","maxRank":3,"name":"Tenacity","description":"Increases your armor value from items by 6%.. Increases threat generated from all skills by 6%. Capstone Bonus: Your Armor is increased by an amount equal to your Strength.","rankDescriptions":["Increases your armor value from items by 2%.. Increases threat generated from all skills by 2%. Capstone Bonus: Your Armor is increased by an amount equal to your Strength.","Increases your armor value from items by 4%.. Increases threat generated from all skills by 4%. Capstone Bonus: Your Armor is increased by an amount equal to your Strength.","Increases your armor value from items by 6%.. Increases threat generated from all skills by 6%. Capstone Bonus: Your Armor is increased by an amount equal to your Strength."],"system":"classic"},{"id":"talent-1426","treeId":"paladin-protection","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_holy_blessingofstrength.png","maxRank":5,"name":"Reckoning","description":"Increases your Parry chance by 5%. You have a 15% chance after being hit by or avoiding a melee attack to gain 3 stacks of Reckoning, causing your next auto attack within 8 seconds to generate an additional attack.","rankDescriptions":["Increases your Parry chance by 1%. You have a 3% chance after being hit by or avoiding a melee attack to gain 3 stacks of Reckoning, causing your next auto attack within 8 seconds to generate an additional attack.","Increases your Parry chance by 2%. You have a 6% chance after being hit by or avoiding a melee attack to gain 3 stacks of Reckoning, causing your next auto attack within 8 seconds to generate an additional attack.","Increases your Parry chance by 3%. You have a 9% chance after being hit by or avoiding a melee attack to gain 3 stacks of Reckoning, causing your next auto attack within 8 seconds to generate an additional attack.","Increases your Parry chance by 4%. Additionally, you have a 12% chance after being hit by or avoiding a melee attack to gain 3 stacks of Reckoning, causing your next auto attack within 8 seconds to generate an additional attack.","Increases your Parry chance by 5%. You have a 15% chance after being hit by or avoiding a melee attack to gain 3 stacks of Reckoning, causing your next auto attack within 8 seconds to generate an additional attack."],"system":"classic"},{"id":"talent-1429","treeId":"paladin-protection","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/inv_sword_20.png","maxRank":3,"name":"Blessed Weapons","description":"Increases all damage you deal by 3%. Threat generated by all abilities is increased by 10% while you are in a Tank Stance. Tank Stance refers to: Righteous Fury, Defensive Stance, Bear form, Mana-Forged Barrier or Dark Apotheosis.","rankDescriptions":["Increases all damage you deal by 1%. Threat generated by all abilities is increased by 3% while you are in a Tank Stance. Tank Stance refers to: Righteous Fury, Defensive Stance, Bear form, Mana-Forged Barrier or Dark Apotheosis.","Increases all damage you deal by 2%. Threat generated by all abilities is increased by 6% while you are in a Tank Stance. Tank Stance refers to: Righteous Fury, Defensive Stance, Bear form, Mana-Forged Barrier or Dark Apotheosis.","Increases all damage you deal by 3%. Threat generated by all abilities is increased by 10% while you are in a Tank Stance. Tank Stance refers to: Righteous Fury, Defensive Stance, Bear form, Mana-Forged Barrier or Dark Apotheosis."],"system":"classic"},{"id":"talent-1629","treeId":"paladin-protection","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_magic_lesserinvisibilty.png","maxRank":5,"name":"Anticipation","description":"Increases your chance to block by 5%, and your block value by 15%. Capstone: Increases your block value by 20% after you block an attack. Lasts 5 seconds or 2 blocks. This effect cannot occur more than once every second.","rankDescriptions":["Increases your chance to block by 1%, and your block value by 3%. Capstone Bonus: Increases your block value by 20% after you block an attack. Lasts 5 seconds or 2 blocks. This effect cannot occur more than once every second.","Increases your chance to block by 2%, and your block value by 6%. Capstone Bonus: Increases your block value by 20% after you block an attack. Lasts 5 seconds or 2 blocks. This effect cannot occur more than once every second.","Increases your chance to block by 3%, and your block value by 9%. Capstone Bonus: Increases your block value by 20% after you block an attack. Lasts 5 seconds or 2 blocks. This effect cannot occur more than once every second.","Increases your chance to block by 4%, and your block value by 12%. Capstone Bonus: Increases your block value by 20% after you block an attack. Lasts 5 seconds or 2 blocks. This effect cannot occur more than once every second.","Increases your chance to block by 5%, and your block value by 15%. Capstone: Increases your block value by 20% after you block an attack. Lasts 5 seconds or 2 blocks. This effect cannot occur more than once every second."],"system":"classic"},{"id":"talent-1751","treeId":"paladin-protection","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_ardentdefender.png","maxRank":3,"name":"Ardent Defender","description":"When below 35% health all damage taken is reduced by 6%. You have a 100% chance to fully absorb an attack which would otherwise kill you, up to a maximum of 15% of your total health and heal you by up to 20% of your maximum health (amount healed based on defense). You also take 20% increased healing for the next 3 seconds. This effect shares a 2 minute cooldown with Cheat Death and Spirit of Redemption.","rankDescriptions":["When below 35% health all damage taken is reduced by 2%. You have a 33% chance to fully absorb an attack which would otherwise kill you, up to a maximum of 15% of your total health and heal you by up to 20% of your maximum health (amount healed based on defense). You also take 20% increased healing for the next 3 seconds. This effect shares a 2 minute cooldown with Cheat Death and Spirit of Redemption.","When below 35% health all damage taken is reduced by 4%. You have a 66% chance to fully absorb an attack which would otherwise kill you, up to a maximum of 15% of your total health and heal you by up to 20% of your maximum health (amount healed based on defense). You also take 20% increased healing for the next 3 seconds. This effect shares a 2 minute cooldown with Cheat Death and Spirit of Redemption.","When below 35% health all damage taken is reduced by 6%. You have a 100% chance to fully absorb an attack which would otherwise kill you, up to a maximum of 15% of your total health and heal you by up to 20% of your maximum health (amount healed based on defense). You also take 20% increased healing for the next 3 seconds. This effect shares a 2 minute cooldown with Cheat Death and Spirit of Redemption."],"system":"classic"},{"id":"talent-1753","treeId":"paladin-protection","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_holy_weaponmastery.png","maxRank":3,"name":"Combat Expertise","description":"Increases your Stamina by 6%. Increases your chance to hit with spells and abilities by 3%.","rankDescriptions":["Increases your Stamina by 2%. Increases your chance to hit with spells and abilities by 1%.","Increases your Stamina by 4%. Increases your chance to hit with spells and abilities by 2%.","Increases your Stamina by 6%. Increases your chance to hit with spells and abilities by 3%."],"system":"classic"},{"id":"talent-2185","treeId":"paladin-protection","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_golemthunderclap.png","maxRank":3,"name":"Divine Strength","description":"Increases your total Strength by 6% and Stamina by 3%.","rankDescriptions":["Increases your total Strength by 2% and Stamina by 1%.","Increases your total Strength by 4% and Stamina by 2%.","Increases your total Strength by 6% and Stamina by 3%."],"system":"classic"},{"id":"talent-2194","treeId":"paladin-protection","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_paladin_gaurdedbythelight.png","maxRank":3,"name":"Guarded by the Light","description":"Reduces periodic spell damage taken by 6%. Increases the duration of Divine Protection and Holy Shield by 3 seconds.","rankDescriptions":["Reduces periodic spell damage taken by 2%. Increases the duration of Divine Protection and Holy Shield by 1 second.","Reduces periodic spell damage taken by 4%. Increases the duration of Divine Protection and Holy Shield by 2 seconds.","Reduces periodic spell damage taken by 6%. Increases the duration of Divine Protection and Holy Shield by 3 seconds."],"system":"classic"},{"id":"talent-2200","treeId":"paladin-protection","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/talents/icons/ability_paladin_judgementsofthejust.png","maxRank":2,"name":"Judgements of the Just","description":"Increases the duration of your Seal of Justice effect by 1 sec. Your Judgement spells also reduce the melee attack speed of the target by 20%. Increases the threat generated by your Seal and Judgement spells by 30%.","rankDescriptions":["Increases the duration of your Seal of Justice effect by 0.5 sec. Your Judgement spells also reduce the melee attack speed of the target by 10%. Increases the threat generated by your Seal and Judgement spells by 15%.","Increases the duration of your Seal of Justice effect by 1 sec. Your Judgement spells also reduce the melee attack speed of the target by 20%. Increases the threat generated by your Seal and Judgement spells by 30%."],"system":"classic"},{"id":"talent-2282","treeId":"paladin-protection","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_revivechampion.png","maxRank":2,"name":"Spiritual Attunement","description":"All damage you take is reduced by 2%. Being healed by allies also restores mana equal to 10% of the effective amount healed. The mana gained from this effect is doubled if Mana-Forged Barrier is active.","rankDescriptions":["All damage you take is reduced by 1%. Being healed by allies also restores mana equal to 5% of the effective amount healed. The mana gained from this effect is doubled if Mana-Forged Barrier is active.","All damage you take is reduced by 2%. Being healed by allies also restores mana equal to 10% of the effective amount healed. The mana gained from this effect is doubled if Mana-Forged Barrier is active."],"system":"classic"}]} diff --git a/src/game/generated/talentUi/priest.json b/src/game/generated/talentUi/priest.json new file mode 100644 index 00000000..d92512cd --- /dev/null +++ b/src/game/generated/talentUi/priest.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"priest","trees":[{"id":"priest-discipline","classId":"priest","name":"Discipline","icon":"/assets/ui/talents/icons/spell_holy_wordfortitude.png","background":"/assets/ui/talents/backgrounds/talent_priest1.png","description":"Prevent harm with shields and focused will.","system":"classic"},{"id":"priest-holy","classId":"priest","name":"Holy","icon":"/assets/ui/talents/icons/spell_holy_guardianspirit.png","background":"/assets/ui/talents/backgrounds/talent_priest2.png","description":"Restore allies with direct and group healing.","system":"classic"},{"id":"priest-shadow","classId":"priest","name":"Shadow","icon":"/assets/ui/talents/icons/spell_shadow_shadowwordpain.png","background":"/assets/ui/talents/backgrounds/talent_priest3.png","description":"Assault the minds of enemies with shadow magic.","system":"classic"}],"nodes":[{"id":"talent-347","treeId":"priest-discipline","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_sleep.png","maxRank":3,"name":"Meditation","description":"Allows 25% of your mana regeneration to continue while casting. Capstone Bonus: Your spell critical strike rating is increased by 15% of your Spirit.","rankDescriptions":["Allows 8% of your mana regeneration to continue while casting. Capstone Bonus: Your spell critical strike rating is increased by 15% of your Spirit.","Allows 16% of your mana regeneration to continue while casting. Capstone Bonus: Your spell critical strike rating is increased by 15% of your Spirit.","Allows 25% of your mana regeneration to continue while casting. Capstone Bonus: Your spell critical strike rating is increased by 15% of your Spirit."],"system":"classic"},{"id":"talent-352","treeId":"priest-discipline","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_manaregentotem.png","maxRank":3,"name":"Copious Power","description":"After casting Power Word: Shield your next healing spell with a cast time is 15% more effective.","rankDescriptions":["After casting Power Word: Shield your next healing spell with a cast time is 5% more effective.","After casting Power Word: Shield your next healing spell with a cast time is 10% more effective.","After casting Power Word: Shield your next healing spell with a cast time is 15% more effective."],"system":"classic"},{"id":"talent-1769","treeId":"priest-discipline","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_absolution.png","maxRank":3,"name":"Absolution","description":"Reduces the mana cost of your Dispel Magic, Cure Disease, Abolish Disease and Mass Dispel spells by 30%. Increases the range of Mass Dispel by 5 yards. Capstone Bonus: The cooldown of your Dispel Magic is reduced by 2 seconds. In addition, it can be used on enemies to remove 1 beneficial magic effect.","rankDescriptions":["Reduces the mana cost of your Dispel Magic, Cure Disease, Abolish Disease and Mass Dispel spells by 10%. Increases the range of Mass Dispel by 2 yards. Capstone Bonus: The cooldown of your Dispel Magic is reduced by 2 seconds. In addition, it can be used on enemies to remove 1 beneficial magic effect.","Reduces the mana cost of your Dispel Magic, Cure Disease, Abolish Disease and Mass Dispel spells by 20%. Increases the range of Mass Dispel by 4 yards. Capstone Bonus: The cooldown of your Dispel Magic is reduced by 2 seconds. In addition, it can be used on enemies to remove 1 beneficial magic effect.","Reduces the mana cost of your Dispel Magic, Cure Disease, Abolish Disease and Mass Dispel spells by 30%. Increases the range of Mass Dispel by 5 yards. Capstone Bonus: The cooldown of your Dispel Magic is reduced by 2 seconds. In addition, it can be used on enemies to remove 1 beneficial magic effect."],"system":"classic"},{"id":"talent-1771","treeId":"priest-discipline","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_focusedpower.png","maxRank":2,"name":"Focused Power","description":"Increases all damage done by 2% and your Holy and Shadow healing done by 2%. The cast time of Mass dispel is reduced 0.6 sec.","rankDescriptions":["Increases all damage done by 1% and your Holy and Shadow healing done by 1%. The cast time of Mass dispel is reduced 0.3 sec.","Increases all damage done by 2% and your Holy and Shadow healing done by 2%. The cast time of Mass dispel is reduced 0.6 sec."],"system":"classic"},{"id":"talent-1858","treeId":"priest-discipline","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_arcane_focusedpower.png","maxRank":3,"name":"Focused Will","description":"Increases your spell critical effect chance by 3%, Capstone Bonus: Gain the Focused Will effect whenever you take a critical hit, increasing healing effects on you by 3%. This effect stacks up to 3 times and lasts for 10 seconds.","rankDescriptions":["Increases your spell critical effect chance by 1%. Capstone Bonus: Gain the Focused Will effect whenever you take a critical hit, increasing healing effects on you by 3%. This effect stacks up to 3 times and lasts for 10 seconds.","Increases your spell critical effect chance by 2%, Capstone Bonus: Gain the Focused Will effect whenever you take a critical hit, increasing healing effects on you by 3%. This effect stacks up to 3 times and lasts for 10 seconds.","Increases your spell critical effect chance by 3%, Capstone Bonus: Gain the Focused Will effect whenever you take a critical hit, increasing healing effects on you by 3%. This effect stacks up to 3 times and lasts for 10 seconds."],"system":"classic"},{"id":"talent-1895","treeId":"priest-discipline","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/spell_holy_devineaegis.png","maxRank":3,"name":"Divine Aegis","description":"Your critical Holy healing spells create a protective barrier absorbing damage up to 10% of the healed amount for 6 seconds. Divine Aegis is doubled for single target heals. Overhealing generates 75% less shielding, and the absorb from Divine Aegis is limited to 10% of the target's maximum health.","rankDescriptions":["Your critical Holy healing spells create a protective barrier absorbing damage up to 4% of the healed amount for 6 seconds. Divine Aegis is doubled for single target heals. Overhealing generates 75% less shielding, and the absorb from Divine Aegis is limited to 10% of the target's maximum health.","Your critical Holy healing spells create a protective barrier absorbing damage up to 7% of the healed amount for 6 seconds. Divine Aegis is doubled for single target heals. Overhealing generates 75% less shielding, and the absorb from Divine Aegis is limited to 10% of the target's maximum health.","Your critical Holy healing spells create a protective barrier absorbing damage up to 10% of the healed amount for 6 seconds. Divine Aegis is doubled for single target heals. Overhealing generates 75% less shielding, and the absorb from Divine Aegis is limited to 10% of the target's maximum health."],"system":"classic"},{"id":"talent-2235","treeId":"priest-discipline","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/spell_holy_holyprotection.png","maxRank":2,"name":"Renewed Hope","description":"Increases the critical effect chance of your Flash Heal, Greater Heal and Penance (Heal) spells by 4% on targets afflicted by the Weakened Soul effect. You have a 100% chance to reduce all damage taken by 2% for 30 seconds to the target of your Power Word: Shield. This effect has a 15 sec cooldown.","rankDescriptions":["Increases the critical effect chance of your Flash Heal, Greater Heal and Penance (Heal) spells by 2% on targets afflicted by the Weakened Soul effect. You have a 50% chance to reduce all damage taken by 2% for 30 seconds to the target of your Power Word: Shield. This effect has a 15 sec cooldown.","Increases the critical effect chance of your Flash Heal, Greater Heal and Penance (Heal) spells by 4% on targets afflicted by the Weakened Soul effect. You have a 100% chance to reduce all damage taken by 2% for 30 seconds to the target of your Power Word: Shield. This effect has a 15 sec cooldown."],"system":"classic"},{"id":"talent-2268","treeId":"priest-discipline","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_holy_powerwordshield.png","maxRank":2,"name":"Reflective Shield","description":"Causes 40% of the damage you absorb with Power Word: Shield to reflect back at the attacker.","rankDescriptions":["Causes 20% of the damage you absorb with Power Word: Shield to reflect back at the attacker.","Causes 40% of the damage you absorb with Power Word: Shield to reflect back at the attacker."],"system":"classic"},{"id":"talent-322","treeId":"priest-discipline","index":19,"prerequisiteId":"talent-1201","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1201","requiredRank":5}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_powerinfusion.png","maxRank":1,"name":"Power Infusion","description":"Infuses the target with power, increasing spell casting speed by 20% and reducing the cost of all magic spells and abilities by 20%. Lasts 12 seconds. Does not stack with other similar cast speed increasing effects.","rankDescriptions":["Infuses the target with power, increasing spell casting speed by 20% and reducing the cost of all magic spells and abilities by 20%. Lasts 12 seconds. Does not stack with other similar cast speed increasing effects."],"system":"classic"},{"id":"talent-341","treeId":"priest-discipline","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/ability_hibernation.png","maxRank":3,"name":"Mental Agility","description":"Reduces the mana cost of your instant cast Priest spells by 10%.","rankDescriptions":["Reduces the mana cost of your instant cast Priest spells by 4%.","Reduces the mana cost of your instant cast Priest spells by 7%.","Reduces the mana cost of your instant cast Priest spells by 10%."],"system":"classic"},{"id":"talent-342","treeId":"priest-discipline","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_magic_magearmor.png","maxRank":5,"name":"Unbreakable Will","description":"Reduces the duration of Stun, Fear, and Silence effects done to you by an additional 15%.","rankDescriptions":["Reduces the duration of Stun, Fear, and Silence effects done to you by an additional 3%.","Reduces the duration of Stun, Fear, and Silence effects done to you by an additional 6%.","Reduces the duration of Stun, Fear, and Silence effects done to you by an additional 9%.","Reduces the duration of Stun, Fear, and Silence effects done to you by an additional 12%.","Reduces the duration of Stun, Fear, and Silence effects done to you by an additional 15%."],"system":"classic"},{"id":"talent-346","treeId":"priest-discipline","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_innerfire.png","maxRank":3,"name":"Improved Inner Fire","description":"Increases the effect of your Inner Fire spell by 45%, and increases the total number of charges by 12.","rankDescriptions":["Increases the effect of your Inner Fire spell by 15%, and increases the total number of charges by 4.","Increases the effect of your Inner Fire spell by 30%, and increases the total number of charges by 8.","Increases the effect of your Inner Fire spell by 45%, and increases the total number of charges by 12."],"system":"classic"},{"id":"talent-348","treeId":"priest-discipline","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_frost_windwalkon.png","maxRank":1,"name":"Inner Focus","description":"When activated, enhances your next Greater Heal, Mind Blast, or Power Word: Shield, reducing its mana cost by 100% and adding an additional effect. Greater Heal - Reduces cast time by 50% and increases critical strike chance by 25%. Mind Blast - Reduces cast time by 50% and slows the target by 70% for 5 sec. Power Word: Shield - Reduces Weakened Soul duration by 10 sec. While active you cannot consume or generate Serendipity with Holy Light, Flash of Light, Binding Heal, Renew, Greater Heal, Flash Heal or Smite.","rankDescriptions":["When activated, enhances your next Greater Heal, Mind Blast, or Power Word: Shield, reducing its mana cost by 100% and adding an additional effect. Greater Heal - Reduces cast time by 50% and increases critical strike chance by 25%. Mind Blast - Reduces cast time by 50% and slows the target by 70% for 5 sec. Power Word: Shield - Reduces Weakened Soul duration by 10 sec. While active you cannot consume or generate Serendipity with Holy Light, Flash of Light, Binding Heal, Renew, Greater Heal, Flash Heal or Smite."],"system":"classic"},{"id":"talent-1201","treeId":"priest-discipline","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_enchantarmor.png","maxRank":3,"name":"Mental Strength","description":"Increases your total Intellect by 10% and your critical strike rating by 6% of your Intellect. Reduces all magic damage taken by 3%.","rankDescriptions":["Increases your total Intellect by 4% and your critical strike rating by 2% of your Intellect. Reduces all magic damage taken by 1%.","Increases your total Intellect by 7% and your critical strike rating by 4% of your Intellect. Reduces all magic damage taken by 2%.","Increases your total Intellect by 10% and your critical strike rating by 6% of your Intellect. Reduces all magic damage taken by 3%."],"system":"classic"},{"id":"talent-1202","treeId":"priest-discipline","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/spell_holy_borrowedtime.png","maxRank":5,"name":"Borrowed Time","description":"Grants 20% spell haste for 6 seconds after casting Power Word: Shield. This effect is consumed by your next non-instant spell. Increases the healing power scaling of your Power Word: Shield by 40%.","rankDescriptions":["Grants 4% spell haste for 6 seconds after casting Power Word: Shield. This effect is consumed by your next non-instant spell. Increases the healing power scaling of your Power Word: Shield by 8%.","Grants 8% spell haste for 6 seconds after casting Power Word: Shield. This effect is consumed by your next non-instant spell. Increases the healing power scaling of your Power Word: Shield by 16%.","Grants 12% spell haste for 6 seconds after casting Power Word: Shield. This effect is consumed by your next non-instant spell. Increases the healing power scaling of your Power Word: Shield by 24%.","Grants 16% spell haste for 6 seconds after casting Power Word: Shield. This effect is consumed by your next non-instant spell. Increases the healing power scaling of your Power Word: Shield by 32%.","Grants 20% spell haste for 6 seconds after casting Power Word: Shield. This effect is consumed by your next non-instant spell. Increases the healing power scaling of your Power Word: Shield by 40%."],"system":"classic"},{"id":"talent-1774","treeId":"priest-discipline","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_holy_painsupression.png","maxRank":1,"name":"Pain Suppression","description":"Instantly reduces a friendly target's threat by 5%, reduces all damage taken by 35% for 8 seconds. Pain Suppression has a 60% chance to resist Dispel mechanics.","rankDescriptions":["Instantly reduces a friendly target's threat by 5%, reduces all damage taken by 35% for 8 seconds. Pain Suppression has a 60% chance to resist Dispel mechanics."],"system":"classic"},{"id":"talent-1896","treeId":"priest-discipline","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/spell_holy_rapture.png","maxRank":3,"name":"Rapture","description":"When your Power Word: Shield is completely absorbed or dispelled you are instantly energized with 2.5% of your total mana. You have a 100% chance to energize your shielded target with 1% total mana, 8 rage and 16 energy. This effect can only occur once every 6 seconds.","rankDescriptions":["When your Power Word: Shield is completely absorbed or dispelled you are instantly energized with 1.5% of your total mana. You have a 33% chance to energize your shielded target with 1% total mana, 8 rage and 16 energy. This effect can only occur once every 6 seconds.","When your Power Word: Shield is completely absorbed or dispelled you are instantly energized with 2% of your total mana. You have a 66% chance to energize your shielded target with 1% total mana, 8 rage and 16 energy. This effect can only occur once every 6 seconds.","When your Power Word: Shield is completely absorbed or dispelled you are instantly energized with 2.5% of your total mana. You have a 100% chance to energize your shielded target with 1% total mana, 8 rage and 16 energy. This effect can only occur once every 6 seconds."],"system":"classic"},{"id":"talent-1897","treeId":"priest-discipline","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/spell_holy_penance.png","maxRank":1,"name":"Penance","description":"Launches a volley of holy light at the target, causing 91 Holy damage to an enemy, or 94 healing to an ally instantly and every 1 sec for 2 seconds.","rankDescriptions":["Launches a volley of holy light at the target, causing 91 Holy damage to an enemy, or 94 healing to an ally instantly and every 1 sec for 2 seconds."],"system":"classic"},{"id":"talent-343","treeId":"priest-discipline","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_powerwordshield.png","maxRank":3,"name":"Improved Power Word: Shield","description":"Increases the damage absorbed by your Power Word: Shield by 15%. Capstone Bonus: Casting Power Word: Shield also reduces the duration of stun, silence and fear effects on the target by 25% for 4 seconds.","rankDescriptions":["Increases the damage absorbed by your Power Word: Shield by 5%. Capstone Bonus: Casting Power Word: Shield also reduces the duration of stun, silence and fear effects on the target by 25% for 4 seconds.","Increases the damage absorbed by your Power Word: Shield by 10%. Capstone Bonus: Casting Power Word: Shield also reduces the duration of stun, silence and fear effects on the target by 25% for 4 seconds.","Increases the damage absorbed by your Power Word: Shield by 15%. Capstone Bonus: Casting Power Word: Shield also reduces the duration of stun, silence and fear effects on the target by 25% for 4 seconds."],"system":"classic"},{"id":"talent-344","treeId":"priest-discipline","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_wordfortitude.png","maxRank":2,"name":"Improved Power Word: Fortitude","description":"Increases your total Stamina by 4%. Increases the effect of your Power Word: Fortitude and Prayer of Fortitude spells by 30%.","rankDescriptions":["Increases your total Stamina by 2%. Increases the effect of your Power Word: Fortitude and Prayer of Fortitude spells by 15%.","Increases your total Stamina by 4%. Increases the effect of your Power Word: Fortitude and Prayer of Fortitude spells by 30%."],"system":"classic"},{"id":"talent-351","treeId":"priest-discipline","index":15,"prerequisiteId":"talent-343","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-343","requiredRank":3}],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_holy_pureofheart.png","maxRank":2,"name":"Soul Warding","description":"Reduces the cooldown of Power Word: Shield by 1 sec and its mana cost by 20%.","rankDescriptions":["Reduces the cooldown of Power Word: Shield by 0.5 sec and its mana cost by 10%.","Reduces the cooldown of Power Word: Shield by 1 sec and its mana cost by 20%."],"system":"classic"},{"id":"talent-1772","treeId":"priest-discipline","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_arcane_mindmastery.png","maxRank":3,"name":"Enlightenment","description":"Increases your total Spirit, Intellect and spell, ranged and melee haste by 3%.","rankDescriptions":["Increases your total Spirit, Intellect and spell, ranged and melee haste by 1%.","Increases your total Spirit, Intellect and spell, ranged and melee haste by 2%.","Increases your total Spirit, Intellect and spell, ranged and melee haste by 3%."],"system":"classic"},{"id":"talent-1773","treeId":"priest-discipline","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_chastise.png","maxRank":3,"name":"Improved Flash Heal","description":"Reduces the mana cost of your Flash Heal by 15%, and increases the critical effect chance of your Flash Heal by 15%. Capstone Bonus: Flash Heal casts reduce the cooldown of Inner Focus by 2 seconds.","rankDescriptions":["Reduces the mana cost of your Flash Heal by 5%, and increases the critical effect chance of your Flash Heal by 5%. Capstone Bonus: Your Flash Heal casts reduce the cooldown of your Inner Focus by 2 seconds.","Reduces the mana cost of your Flash Heal by 10%, and increases the critical effect chance of your Flash Heal by 10%. Capstone Bonus: Your Flash Heal casts reduce the cooldown of your Inner Focus by 2 seconds.","Reduces the mana cost of your Flash Heal by 15%, and increases the critical effect chance of your Flash Heal by 15%. Capstone Bonus: Flash Heal casts reduce the cooldown of Inner Focus by 2 seconds."],"system":"classic"},{"id":"talent-1894","treeId":"priest-discipline","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_holy_aspiration.png","maxRank":2,"name":"Aspiration","description":"Reduces the cooldown of your Inner Focus, Power Infusion, Pain Suppression, Leap of Faith and Penance spells by 20%. Increases the duration of Pain Suppression by 2 sec, and reduces its chance to be dispelled by 40%.","rankDescriptions":["Reduces the cooldown of your Inner Focus, Power Infusion, Pain Suppression, Leap of Faith and Penance spells by 10%. Increases the duration of Pain Suppression by 1 sec, and reduces its chance to be dispelled by 20%.","Reduces the cooldown of your Inner Focus, Power Infusion, Pain Suppression, Leap of Faith and Penance spells by 20%. Increases the duration of Pain Suppression by 2 sec, and reduces its chance to be dispelled by 40%."],"system":"classic"},{"id":"talent-1898","treeId":"priest-discipline","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_holy_sealofvengeance.png","maxRank":5,"name":"Twin Disciplines","description":"Increases the damage and healing done by your Holy spells and abilities by 5%, and their critical strike chance by 5%.","rankDescriptions":["Increases the damage and healing done by your Holy spells and abilities by 1%, and their critical strike chance by 1%.","Increases the damage and healing done by your Holy spells and abilities by 2%, and their critical strike chance by 2%.","Increases the damage and healing done by your Holy spells and abilities by 3%, and their critical strike chance by 3%.","Increases the damage and healing done by your Holy spells and abilities by 4%, and their critical strike chance by 4%.","Increases the damage and healing done by your Holy spells and abilities by 5%, and their critical strike chance by 5%."],"system":"classic"},{"id":"talent-1901","treeId":"priest-discipline","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/spell_holy_hopeandgrace.png","maxRank":2,"name":"Grace","description":"Flash Heal, Greater Heal, Penance and Power Word: Shield spells have a 100% chance to bless the target with Grace, increasing all healing received from you by 3%. This effect will stack up to 3 times. Effect lasts 12 seconds.","rankDescriptions":["Flash Heal, Greater Heal, Penance and Power Word: Shield spells have a 50% chance to bless the target with Grace, increasing all healing received from you by 3%. This effect will stack up to 3 times. Effect lasts 12 seconds.","Flash Heal, Greater Heal, Penance and Power Word: Shield spells have a 100% chance to bless the target with Grace, increasing all healing received from you by 3%. This effect will stack up to 3 times. Effect lasts 12 seconds."],"system":"classic"},{"id":"talent-321","treeId":"priest-discipline","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_tranquility.png","maxRank":2,"name":"Martyrdom","description":"Increases your holy healing done by 6% when you are below 75% health.","rankDescriptions":["Increases your holy healing done by 3% when you are below 75% health.","Increases your holy healing done by 6% when you are below 75% health."],"system":"classic"},{"id":"talent-350","treeId":"priest-discipline","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_manaburn.png","maxRank":2,"name":"Improved Mana Burn","description":"Reduces the casting time of your Mana Burn spell by 1 sec.","rankDescriptions":["Reduces the casting time of your Mana Burn spell by 0.5 sec.","Reduces the casting time of your Mana Burn spell by 1 sec."],"system":"classic"},{"id":"talent-410","treeId":"priest-holy","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/spell_holy_healingfocus.png","maxRank":3,"name":"Healing Focus","description":"Increases spell, ranged and melee haste by 3%. Reduces the pushback suffered from damaging attacks while casting by 100%. Capstone Bonus: Your chance to be critically hit by melee attacks is reduced by 20% while casting Holy healing spells.","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Reduces the pushback suffered from damaging attacks while casting by 33%. Capstone Bonus: Your chance to be critically hit by melee attacks is reduced by 20% while casting Holy healing spells.","Increases spell, ranged and melee haste by 2%. Reduces the pushback suffered from damaging attacks while casting by 66%. Capstone Bonus: Your chance to be critically hit by melee attacks is reduced by 20% while casting Holy healing spells.","Increases spell, ranged and melee haste by 3%. Reduces the pushback suffered from damaging attacks while casting by 100%. Capstone Bonus: Your chance to be critically hit by melee attacks is reduced by 20% while casting Holy healing spells."],"system":"classic"},{"id":"talent-413","treeId":"priest-holy","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_holy_prayerofhealing02.png","maxRank":2,"name":"Healing Prayers","description":"Reduces the mana cost of your Prayer of Healing, Prayer of Mending and Halo spell by 20% . Increases the critical strike chance of your Prayer of Healing and Halo spell by 10%.","rankDescriptions":["Reduces the mana cost of your Prayer of Healing, Prayer of Mending and Halo spell by 10% . Increases the critical strike chance of your Prayer of Healing and Halo spell by 5%.","Reduces the mana cost of your Prayer of Healing, Prayer of Mending and Halo spell by 20% . Increases the critical strike chance of your Prayer of Healing and Halo spell by 10%."],"system":"classic"},{"id":"talent-442","treeId":"priest-holy","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_restoration.png","maxRank":1,"name":"Desperate Prayer","description":"Heals you for 174. If used while below 50% health, it guarantees a critical heal. Removes healing reduction effects applied by players.","rankDescriptions":["Heals you for 174. If used while below 50% health, it guarantees a critical heal. Removes healing reduction effects applied by players."],"system":"classic"},{"id":"talent-1635","treeId":"priest-holy","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_purify.png","maxRank":3,"name":"Holy Reach","description":"Increases the range of your damaging spells with a channeling or cast time by 6 yards. This does not stack with other similar effects. Increases the radius of your Prayer of Healing, Holy Nova, Divine Hymn, and Circle of Healing spells by 20%. Capstone Bonus: Directly healing or directly damaging a target further than 20 yards away from you has a 20% chance to restore 2% of your missing mana over 4 seconds. This effect can only occur once every 15 seconds.","rankDescriptions":["Increases the range of your damaging spells with a channeling or cast time by 2 yards. This does not stack with other similar effects. Increases the radius of your Prayer of Healing, Holy Nova, Divine Hymn, and Circle of Healing spells by 7%. Capstone Bonus: Directly healing or directly damaging a target further than 20 yards away from you has a 20% chance to restore 2% of your missing mana over 4 seconds. This effect can only occur once every 15 seconds.","Increases the range of your damaging spells with a channeling or cast time by 4 yards. This does not stack with other similar effects. Increases the radius of your Prayer of Healing, Holy Nova, Divine Hymn, and Circle of Healing spells by 14%. Capstone Bonus: Directly healing or directly damaging a target further than 20 yards away from you has a 20% chance to restore 2% of your missing mana over 4 seconds. This effect can only occur once every 15 seconds.","Increases the range of your damaging spells with a channeling or cast time by 6 yards. This does not stack with other similar effects. Increases the radius of your Prayer of Healing, Holy Nova, Divine Hymn, and Circle of Healing spells by 20%. Capstone Bonus: Directly healing or directly damaging a target further than 20 yards away from you has a 20% chance to restore 2% of your missing mana over 4 seconds. This effect can only occur once every 15 seconds."],"system":"classic"},{"id":"talent-1766","treeId":"priest-holy","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_holy_surgeoflight.png","maxRank":2,"name":"Surge of Light","description":"Your direct damage and healing spell criticals have a 50% chance to cause your next Smite or Flash Heal spell to be instant cast, cost no mana, and deal 60% more damage to monsters, but are incapable of a critical hit. This effect lasts 10 seconds.","rankDescriptions":["Your direct damage and healing spell criticals have a 25% chance to cause your next Smite or Flash Heal spell to be instant cast, cost no mana, and deal 60% more damage to monsters, but are incapable of a critical hit. This effect lasts 10 seconds.","Your direct damage and healing spell criticals have a 50% chance to cause your next Smite or Flash Heal spell to be instant cast, cost no mana, and deal 60% more damage to monsters, but are incapable of a critical hit. This effect lasts 10 seconds."],"system":"classic"},{"id":"talent-1768","treeId":"priest-holy","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_fanaticism.png","maxRank":3,"name":"Holy Concentration","description":"Your Spirit is increased by 30% for 12 seconds after you critically heal with Flash Heal, Greater Heal, or Binding Heal, or critically hit with Holy Fire or Smite. Greater Heal, Flash Heal, Binding Heal, and Circle of Healing have a 100% chance to extend the duration of your Renew on all nearby party and raid members by 3 sec, up to an additional 6 sec. This does not stack with similar effects.","rankDescriptions":["Your Spirit is increased by 10% for 12 seconds after you critically heal with Flash Heal, Greater Heal, or Binding Heal, or critically hit with Holy Fire or Smite. Greater Heal, Flash Heal, Binding Heal, and Circle of Healing have a 33% chance to extend the duration of your Renew on all nearby party and raid members by 3 sec, up to an additional 6 sec. This does not stack with similar effects.","Your Spirit is increased by 20% for 12 seconds after you critically heal with Flash Heal, Greater Heal, or Binding Heal, or critically hit with Holy Fire or Smite. Greater Heal, Flash Heal, Binding Heal, and Circle of Healing have a 66% chance to extend the duration of your Renew on all nearby party and raid members by 3 sec, up to an additional 6 sec. This does not stack with similar effects.","Your Spirit is increased by 30% for 12 seconds after you critically heal with Flash Heal, Greater Heal, or Binding Heal, or critically hit with Holy Fire or Smite. Greater Heal, Flash Heal, Binding Heal, and Circle of Healing have a 100% chance to extend the duration of your Renew on all nearby party and raid members by 3 sec, up to an additional 6 sec. This does not stack with similar effects."],"system":"classic"},{"id":"talent-1902","treeId":"priest-holy","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_paladin_infusionoflight.png","maxRank":3,"name":"Empowered Renew","description":"Your Renew spell gains another 25% of your bonus healing effects. Capstone Bonus: Your Renew instantly heals the target for 25% of the total periodic effect.","rankDescriptions":["Your Renew spell gains another 8% of your bonus healing effects. Capstone Bonus: The final rank of this talent makes your Renew instantly heal the target for 25% of the total periodic effect.","Your Renew spell gains another 16% of your bonus healing effects. Capstone Bonus: The final rank of this talent makes your Renew instantly heal the target for 25% of the total periodic effect.","Your Renew spell gains another 25% of your bonus healing effects. Capstone Bonus: Your Renew instantly heals the target for 25% of the total periodic effect."],"system":"classic"},{"id":"talent-2279","treeId":"priest-holy","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/spell_holy_symbolofhope.png","maxRank":2,"name":"Body and Soul","description":"When you cast Power Word: Shield or Leap of Faith, you increase the target's movement speed by 60% for 3 seconds, You have a 100% chance when you cast Abolish Disease on yourself to also cleanse 1 poison effect in addition to diseases.","rankDescriptions":["When you cast Power Word: Shield or Leap of Faith, you increase the target's movement speed by 30% for 3 seconds. You have a 50% chance when you cast Abolish Disease on yourself to also cleanse 1 poison effect in addition to diseases.","When you cast Power Word: Shield or Leap of Faith, you increase the target's movement speed by 60% for 3 seconds, You have a 100% chance when you cast Abolish Disease on yourself to also cleanse 1 poison effect in addition to diseases."],"system":"classic"},{"id":"talent-406","treeId":"priest-holy","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_holy_renew.png","maxRank":3,"name":"Improved Renew","description":"Increases the amount healed by your Renew spell by 20%.","rankDescriptions":["Increases the amount healed by your Renew spell by 7%.","Increases the amount healed by your Renew spell by 14%.","Increases the amount healed by your Renew spell by 20%."],"system":"classic"},{"id":"talent-408","treeId":"priest-holy","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_heal02.png","maxRank":3,"name":"Improved Healing","description":"Reduces the mana cost of your Greater Heal, Divine Hymn and Penance spells by 15%.","rankDescriptions":["Reduces the mana cost of your Greater Heal, Divine Hymn and Penance spells by 5%.","Reduces the mana cost of your Greater Heal, Divine Hymn and Penance spells by 10%.","Reduces the mana cost of your Greater Heal, Divine Hymn and Penance spells by 15%."],"system":"classic"},{"id":"talent-411","treeId":"priest-holy","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_spellwarding.png","maxRank":3,"name":"Spell Warding","description":"Reduces all direct and periodic magic damage taken by 3%.","rankDescriptions":["Reduces all direct and periodic magic damage taken by 1%.","Reduces all direct and periodic magic damage taken by 2%.","Reduces all direct and periodic magic damage taken by 3%."],"system":"classic"},{"id":"talent-1561","treeId":"priest-holy","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/inv_enchant_essenceeternallarge.png","maxRank":3,"name":"Spirit of Redemption","description":"Increases your Spirit by 9%. Capstone Bonus: You absorb damage from any attack that would otherwise kill you, up to 300% of your Spirit. If this absorb prevents you from dying, you become a Spirit of Redemption for 5 seconds. While active you cannot move or attack. You also take 50% reduced damage and can cast Holy Priest heals without any mana cost. This effect shares a 2 minute cooldown with Ardent Defender and Cheat Death.","rankDescriptions":["Increases your Spirit by 3%. Capstone Bonus: You absorb damage from any attack that would otherwise kill you, up to 300% of your Spirit. If this absorb prevents you from dying, you become a Spirit of Redemption for 5 seconds. While active you cannot move or attack. You also take 50% reduced damage and can cast Holy Priest heals without any mana cost. This effect shares a 2 minute cooldown with Ardent Defender and Cheat Death.","Increases your Spirit by 6%. Capstone Bonus: You absorb damage from any attack that would otherwise kill you, up to 300% of your Spirit. If this absorb prevents you from dying, you become a Spirit of Redemption for 5 seconds. While active you cannot move or attack. You also take 50% reduced damage and can cast Holy heals without any mana cost. This effect shares a 2 minute cooldown with Ardent Defender and Cheat Death.","Increases your Spirit by 9%. Capstone Bonus: You absorb damage from any attack that would otherwise kill you, up to 300% of your Spirit. If this absorb prevents you from dying, you become a Spirit of Redemption for 5 seconds. While active you cannot move or attack. You also take 50% reduced damage and can cast Holy Priest heals without any mana cost. This effect shares a 2 minute cooldown with Ardent Defender and Cheat Death."],"system":"classic"},{"id":"talent-1636","treeId":"priest-holy","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_blessedrecovery.png","maxRank":3,"name":"Blessed Recovery","description":"@req:84867@ Increase the effectiveness of your Priest healing spells by 9%. After being struck by a critical strike, you heal for 40% of the damage taken over 6 seconds, additional critical strikes taken during the effect increase the healing received. Capstone Bonus: When Blessed Recovery is active, your Desperate Prayer will come off cooldown three times as fast.","rankDescriptions":["@req:84867@ Increase the effectiveness of your Priest healing spells by 3%. After being struck by a critical strike, you heal for 14% of the damage taken over 6 seconds, additional critical strikes taken during the effect increase the healing received. Capstone Bonus: When Blessed Recovery is active, your Desperate Prayer will come off cooldown three times as fast.","@req:84867@ Increase the effectiveness of your Priest healing spells by 6%. After being struck by a critical strike, you heal for 27% of the damage taken over 6 seconds, additional critical strikes taken during the effect increase the healing received. Capstone Bonus: When Blessed Recovery is active, your Desperate Prayer will come off cooldown three times as fast.","@req:84867@ Increase the effectiveness of your Priest healing spells by 9%. After being struck by a critical strike, you heal for 40% of the damage taken over 6 seconds, additional critical strikes taken during the effect increase the healing received. Capstone Bonus: When Blessed Recovery is active, your Desperate Prayer will come off cooldown three times as fast."],"system":"classic"},{"id":"talent-1637","treeId":"priest-holy","index":18,"prerequisiteId":"talent-1561","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1561","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_summonlightwell.png","maxRank":1,"name":"Lightwell","description":"Creates a Holy Lightwell. Friendly players can click the Lightwell to restore the listed amountthe listed amount health over 6 seconds. Lightwell lasts for 90 seconds or 10 charges.","rankDescriptions":["Creates a Holy Lightwell. Friendly players can click the Lightwell to restore the listed amountthe listed amount health over 6 seconds. Lightwell lasts for 90 seconds or 10 charges."],"system":"classic"},{"id":"talent-1767","treeId":"priest-holy","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/spell_holy_greaterheal.png","maxRank":3,"name":"Empowered Healing","description":"Your Greater Heal, Flash Heal, Binding Heal, and Divine Star spells gain an additional 25% of your bonus healing effects.","rankDescriptions":["Your Greater Heal, Flash Heal, Binding Heal, and Divine Star spells gain an additional 7% of your bonus healing effects.","Your Greater Heal, Flash Heal, Binding Heal, and Divine Star spells gain an additional 16% of your bonus healing effects.","Your Greater Heal, Flash Heal, Binding Heal, and Divine Star spells gain an additional 25% of your bonus healing effects."],"system":"classic"},{"id":"talent-1815","treeId":"priest-holy","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_holy_circleofrenewal.png","maxRank":1,"name":"Circle of Healing","description":"Heals up to the listed amount[6][5] friendly party or raid members within 15 yards of the target for 166. Circle of Healing shares a cooldown with Wild Growth.","rankDescriptions":["Heals up to the listed amount[6][5] friendly party or raid members within 15 yards of the target for 166. Circle of Healing shares a cooldown with Wild Growth."],"system":"classic"},{"id":"talent-1905","treeId":"priest-holy","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/spell_holy_divineprovidence.png","maxRank":3,"name":"Divine Providence","description":"Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Halo, Prayer of Healing, Greater Heal, Penance, Prayer of Mending, and Divine Star by 9%, Reduces the cooldown of your Halo by 30%.","rankDescriptions":["Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Halo, Prayer of Healing, Greater Heal, Penance, Prayer of Mending, and Divine Star by 3%, Reduces the cooldown of your Halo by 10%.","Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Halo, Prayer of Healing, Greater Heal, Penance, Prayer of Mending, and Divine Star by 6%, Reduces the cooldown of your Halo by 20%.","Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Halo, Prayer of Healing, Greater Heal, Penance, Prayer of Mending, and Divine Star by 9%, Reduces the cooldown of your Halo by 30%."],"system":"classic"},{"id":"talent-1911","treeId":"priest-holy","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/spell_holy_guardianspirit.png","maxRank":1,"name":"Guardian Spirit","description":"Calls upon a guardian spirit to watch over the friendly target. The spirit increases the healing received by the target by 40%, and also prevents the target from dying by sacrificing itself, only up to a maximum of 15% of target's total health. This sacrifice terminates the effect but heals the target of 25% of their maximum health. Lasts 10 seconds.","rankDescriptions":["Calls upon a guardian spirit to watch over the friendly target. The spirit increases the healing received by the target by 40%, and also prevents the target from dying by sacrificing itself, only up to a maximum of 15% of target's total health. This sacrifice terminates the effect but heals the target of 25% of their maximum health. Lasts 10 seconds."],"system":"classic"},{"id":"talent-401","treeId":"priest-holy","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_holy_sealofsalvation.png","maxRank":5,"name":"Holy Specialization","description":"Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Causes your direct damaging spell and ability criticals to increase the critical strike chance of your next Holy spell by 4%, stacks up to 5 times. This effect can only occur once every second. In additon your damaging Holy spell criticals have a chance to increase magic damage done by 5% for 8 seconds.","rankDescriptions":["Your spell critical strikes now deal 180% damage. This does not stack with other similar effects. Capstone Bonus: Causes your direct damaging spell and ability criticals to increase the critical strike chance of your next Holy spell by 4%, stacks up to 5 times. This effect can only occur once every second. In addition your damaging Holy spell criticals have a chance to increase magic damage done by 5% for 8 seconds.","Your spell critical strikes now deal 185% damage. This does not stack with other similar effects. Capstone Bonus: Causes your direct damaging spell and ability criticals to increase the critical strike chance of your next Holy spell by 4%, stacks up to 5 times. This effect can only occur once every second. In addition your damaging Holy spell criticals have a chance to increase magic damage done by 5% for 8 seconds.","Your spell critical strikes now deal 190% damage. This does not stack with other similar effects. Capstone Bonus: Causes your direct damaging spell and ability criticals to increase the critical strike chance of your next Holy spell by 4%, stacks up to 5 times. This effect can only occur once every second. In addition your damaging Holy spell criticals have a chance to increase magic damage done by 5% for 8 seconds.","Your spell critical strikes now deal 195% damage. This does not stack with other similar effects. Capstone Bonus: Causes your direct damaging spell and ability criticals to increase the critical strike chance of your next Holy spell by 4%, stacks up to 5 times. This effect can only occur once every second. In addition your damaging Holy spell criticals have a chance to increase magic damage done by 5% for 8 seconds.","Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Causes your direct damaging spell and ability criticals to increase the critical strike chance of your next Holy spell by 4%, stacks up to 5 times. This effect can only occur once every second. In additon your damaging Holy spell criticals have a chance to increase magic damage done by 5% for 8 seconds."],"system":"classic"},{"id":"talent-402","treeId":"priest-holy","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_holy_spiritualguidence.png","maxRank":5,"name":"Spiritual Guidance","description":"Increases healing spell power by 25% of your total Spirit.","rankDescriptions":["Increases healing spell power by 5% of your total Spirit.","Increases healing spell power by 10% of your total Spirit.","Increases healing spell power by 15% of your total Spirit.","Increases healing spell power by 20% of your total Spirit.","Increases healing spell power by 25% of your total Spirit."],"system":"classic"},{"id":"talent-403","treeId":"priest-holy","index":11,"prerequisiteId":"talent-1181","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1181","requiredRank":5}],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_searinglightpriest.png","maxRank":5,"name":"Searing Light","description":"Increases the damage of your Smite, Holy Fire, Penance, Holy Nova, Holy Shock and Exorcism spells by 15%. Reduces the mana cost of your Holy Nova by 25%.","rankDescriptions":["Increases the damage of your Smite, Holy Fire, Penance, Holy Nova, Holy Shock and Exorcism spells by 3%. Reduces the mana cost of your Holy Nova by 5%.","Increases the damage of your Smite, Holy Fire, Penance, Holy Nova, Holy Shock and Exorcism spells by 6%. Reduces the mana cost of your Holy Nova by 10%.","Increases the damage of your Smite, Holy Fire, Penance, Holy Nova, Holy Shock and Exorcism spells by 9%. Reduces the mana cost of your Holy Nova by 15%.","Increases the damage of your Smite, Holy Fire, Penance, Holy Nova, Holy Shock and Exorcism spells by 12%. Reduces the mana cost of your Holy Nova by 20%.","Increases the damage of your Smite, Holy Fire, Penance, Holy Nova, Holy Shock and Exorcism spells by 15%. Reduces the mana cost of your Holy Nova by 25%."],"system":"classic"},{"id":"talent-404","treeId":"priest-holy","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_nature_moonglow.png","maxRank":5,"name":"Spiritual Healing","description":"Increases the amount healed by your Holy spells by 10%.","rankDescriptions":["Increases the amount healed by your Holy spells by 2%.","Increases the amount healed by your Holy spells by 4%.","Increases the amount healed by your Holy spells by 6%.","Increases the amount healed by your Holy spells by 8%.","Increases the amount healed by your Holy spells by 10%."],"system":"classic"},{"id":"talent-1181","treeId":"priest-holy","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_sealofwrath.png","maxRank":3,"name":"Divine Fury","description":"Increases the critical strike chance of Holy Fire by 6%. You deal 9% increased direct magic damage against targets afflicted by your Holy Fire.","rankDescriptions":["Increases the critical strike chance of Holy Fire by 2%. You deal 3% increased direct magic damage against targets afflicted by your Holy Fire.","Increases the critical strike chance of Holy Fire by 4%. You deal 6% increased direct magic damage against targets afflicted by your Holy Fire.","Increases the critical strike chance of Holy Fire by 6%. You deal 9% increased direct magic damage against targets afflicted by your Holy Fire."],"system":"classic"},{"id":"talent-1765","treeId":"priest-holy","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_holy_blessedresillience.png","maxRank":3,"name":"Blessed Resilience","description":"Increases the effectiveness of your Holy healing spells by 3%. Additionally, critical strikes made against you have a 50% chance to reduce your damage taken by 9% for 6 seconds if your Primary Stat is Spirit. This can only occur once every 20 seconds.","rankDescriptions":["Increases the effectiveness of your Holy healing spells by 1%. Additionally, critical strikes made against you have a 50% chance to reduce your damage taken by 3% for 6 seconds if your Primary Stat is Spirit. This can only occur once every 20 seconds.","Increases the effectiveness of your Holy healing spells by 2%. Additionally, critical strikes made against you have a 50% chance to reduce your damage taken by 6% for 6 seconds if your Primary Stat is Spirit. This can only occur once every 20 seconds.","Increases the effectiveness of your Holy healing spells by 3%. Additionally, critical strikes made against you have a 50% chance to reduce your damage taken by 9% for 6 seconds if your Primary Stat is Spirit. This can only occur once every 20 seconds."],"system":"classic"},{"id":"talent-1903","treeId":"priest-holy","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/spell_holy_testoffaith.png","maxRank":3,"name":"Test of Faith","description":"Increases healing by your Priest spells by 12% on friendly targets at or below 50% health. Increases the damage done by your Smite and Holy Fire by 12% on targets at or below 50% health. Capstone Bonus: You will take 10% less magic damage while casting Smite, Holy Fire or any Priest healing spell.","rankDescriptions":["Increases healing by your Priest spells by 4% on friendly targets at or below 50% health. Increases the damage done by your Smite and Holy Fire by 4% on targets at or below 50% health. Capstone Bonus: You will take 10% less magic damage while casting Smite, Holy Fire or any Priest healing spell.","Increases healing by your Priest spells by 8% on friendly targets at or below 50% health. Increases the damage done by your Smite and Holy Fire by 8% on targets at or below 50% health. Capstone Bonus: You will take 10% less magic damage while casting Smite, Holy Fire or any Priest healing spell.","Increases healing by your Priest spells by 12% on friendly targets at or below 50% health. Increases the damage done by your Smite and Holy Fire by 12% on targets at or below 50% health. Capstone Bonus: You will take 10% less magic damage while casting Smite, Holy Fire or any Priest healing spell."],"system":"classic"},{"id":"talent-1904","treeId":"priest-holy","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_holy_serendipity.png","maxRank":3,"name":"Serendipity","description":"When you heal with Binding Heal, Flash Heal, Holy Light or Flash of Light, cast Renew, or deal damage with Smite, the cast time and mana cost of your next Greater Heal or Prayer of Healing spell is reduced by 15%. Stacks up to 3 times. Lasts 20 seconds.","rankDescriptions":["When you heal with Binding Heal, Flash Heal, Holy Light or Flash of Light, cast Renew, or deal damage with Smite, the cast time and mana cost of your next Greater Heal or Prayer of Healing spell is reduced by 5%. Stacks up to 3 times. Lasts 20 seconds.","When you heal with Binding Heal, Flash Heal, Holy Light or Flash of Light, cast Renew, or deal damage with Smite, the cast time and mana cost of your next Greater Heal or Prayer of Healing spell is reduced by 10%. Stacks up to 3 times. Lasts 20 seconds.","When you heal with Binding Heal, Flash Heal, Holy Light or Flash of Light, cast Renew, or deal damage with Smite, the cast time and mana cost of your next Greater Heal or Prayer of Healing spell is reduced by 15%. Stacks up to 3 times. Lasts 20 seconds."],"system":"classic"},{"id":"talent-361","treeId":"priest-holy","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_layonhands.png","maxRank":3,"name":"Inspiration","description":"Reduces your target's Physical damage taken by 10% for 15 seconds after getting a critical effect from one of your Holy healing spells. Does not stack with other similar effects.","rankDescriptions":["Reduces your target's Physical damage taken by 3% for 15 seconds after getting a critical effect from one of your Holy healing spells. Does not stack with other similar effects.","Reduces your target's Physical damage taken by 7% for 15 seconds after getting a critical effect from one of your Holy healing spells. Does not stack with other similar effects.","Reduces your target's Physical damage taken by 10% for 15 seconds after getting a critical effect from one of your Holy healing spells. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-465","treeId":"priest-shadow","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_requiem.png","maxRank":3,"name":"Spirit Tap","description":"You have a 100% chance to gain Spirit Tap after killing a target that yields experience or honor. Your Spirit is increased by 30% and your mana will regenerate at 75% rate while casting. Lasts 15 seconds. This does not stack with similar effects.","rankDescriptions":["Gives you a 33% chance to gain a 10% bonus to your Spirit after killing a target that yields experience or honor. Lasts 15 seconds. For the duration, your mana will regenerate at 25% rate while casting. This does not stack with similar effects.","You have a 66% chance to gain Spirit Tap after killing a target that yields experience or honor. Your Spirit is increased by 20% and your mana will regenerate at 50% rate while casting. Lasts 15 seconds. This does not stack with similar effects.","You have a 100% chance to gain Spirit Tap after killing a target that yields experience or honor. Your Spirit is increased by 30% and your mana will regenerate at 75% rate while casting. Lasts 15 seconds. This does not stack with similar effects."],"system":"classic"},{"id":"talent-466","treeId":"priest-shadow","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_shadowward.png","maxRank":3,"name":"Shadow Affinity","description":"Reduces the mana cost of your Shadow spells by 6%. You receive 15% of your base mana when your Shadow Word: Pain or Vampiric Touch spells are dispelled. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","rankDescriptions":["Reduces the mana cost of your Shadow spells by 2%. You receive 5% of your base mana when your Shadow Word: Pain or Vampiric Touch spells are dispelled. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Reduces the mana cost of your Shadow spells by 4%. You receive 10% of your base mana when your Shadow Word: Pain or Vampiric Touch spells are dispelled. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Reduces the mana cost of your Shadow spells by 6%. You receive 15% of your base mana when your Shadow Word: Pain or Vampiric Touch spells are dispelled. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]"],"system":"classic"},{"id":"talent-541","treeId":"priest-shadow","index":13,"prerequisiteId":"talent-542","prerequisiteRank":2,"prerequisites":[{"talentId":"talent-542","requiredRank":2}],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_impphaseshift.png","maxRank":1,"name":"Silence","description":"Silences the target, preventing them from casting spells for 4 seconds. Non-player victim spellcasting is also interrupted for 3 seconds. This spell cannot miss.","rankDescriptions":["Silences the target, preventing them from casting spells for 4 seconds. Non-player victim spellcasting is also interrupted for 3 seconds. This spell cannot miss."],"system":"classic"},{"id":"talent-542","treeId":"priest-shadow","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_psychicscream.png","maxRank":2,"name":"Improved Psychic Scream","description":"Increases the duration of Psychic Scream by 2 sec.","rankDescriptions":["Increases the duration of Psychic Scream by 1 sec.","Increases the duration of Psychic Scream by 2 sec."],"system":"classic"},{"id":"talent-1781","treeId":"priest-shadow","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_skull.png","maxRank":2,"name":"Mind Melt","description":"Increases the critical strike chance of your Mind Blast, Shadow Word: Death, Mind Flay and Mind Sear spells by 4%. Increases the periodic critical strike chance of your Shadow spells by 6%.","rankDescriptions":["Increases the critical strike chance of your Mind Blast, Shadow Word: Death, Mind Flay and Mind Sear spells by 2%. Increases the periodic critical strike chance of your Shadow spells by 3%.","Increases the critical strike chance of your Mind Blast, Shadow Word: Death, Mind Flay and Mind Sear spells by 4%. Increases the periodic critical strike chance of your Shadow spells by 6%."],"system":"classic"},{"id":"talent-1906","treeId":"priest-shadow","index":21,"prerequisiteId":"talent-521","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-521","requiredRank":1}],"column":1,"row":8,"icon":"/assets/ui/talents/icons/spell_shadow_summonvoidwalker.png","maxRank":3,"name":"Improved Shadowform","description":"You take 3% reduced damage while in Shadowform. Reduces casting or channeling time lost when damaged by 100% when casting any spell while in Shadowform.","rankDescriptions":["You take 1% reduced damage while in Shadowform. Reduces casting or channeling time lost when damaged by 34% when casting any spell while in Shadowform.","You take 2% reduced damage while in Shadowform. Reduces casting or channeling time lost when damaged by 67% when casting any spell while in Shadowform.","You take 3% reduced damage while in Shadowform. Reduces casting or channeling time lost when damaged by 100% when casting any spell while in Shadowform."],"system":"classic"},{"id":"talent-1908","treeId":"priest-shadow","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/spell_shadow_psychichorrors.png","maxRank":1,"name":"Psychic Horror","description":"You terrify the target, causing them to tremble in horror for 3 seconds, and disarming them for 4 seconds. This spell cannot miss.","rankDescriptions":["You terrify the target, causing them to tremble in horror for 3 seconds, and disarming them for 4 seconds. This spell cannot miss."],"system":"classic"},{"id":"talent-481","treeId":"priest-shadow","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_unholyfrenzy.png","maxRank":3,"name":"Improved Mind Blast","description":"Reduces the cooldown of your Mind Blast spell by 3 sec. Mind Blast also has a 100% chance to reduce all healing done to the target by 40% for 10 seconds.","rankDescriptions":["Reduces the cooldown of your Mind Blast spell by 1 sec. Mind Blast also has a 33% chance to reduce all healing done to the target by 40% for 10 seconds.","Reduces the cooldown of your Mind Blast spell by 2 sec. Mind Blast also has a 66% chance to reduce all healing done to the target by 40% for 10 seconds.","Reduces the cooldown of your Mind Blast spell by 3 sec. Mind Blast also has a 100% chance to reduce all healing done to the target by 40% for 10 seconds."],"system":"classic"},{"id":"talent-482","treeId":"priest-shadow","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_shadowwordpain.png","maxRank":2,"name":"Improved Shadow Word: Pain","description":"Increases the damage of your Shadow Word: Pain spell by 10% and reduces its mana cost by 20%.","rankDescriptions":["Increases the damage of your Shadow Word: Pain spell by 5% and reduces its mana cost by 10%.","Increases the damage of your Shadow Word: Pain spell by 10% and reduces its mana cost by 20%."],"system":"classic"},{"id":"talent-483","treeId":"priest-shadow","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_magic_lesserinvisibilty.png","maxRank":2,"name":"Veiled Shadows","description":"Reduces the cooldown of your Shadowfiend and Void Shift abilities by 60 sec and of your Fade ability by 2 sec. Using Fade now has a 100% chance to grant you 6 seconds immunity to all movement impairing effects.","rankDescriptions":["Reduces the cooldown of your Shadowfiend and Void Shift abilities by 30 sec and of your Fade ability by 1 sec. Using Fade now has a 50% chance to grant you 6 seconds immunity to all movement impairing effects.","Reduces the cooldown of your Shadowfiend and Void Shift abilities by 60 sec and of your Fade ability by 2 sec. Using Fade now has a 100% chance to grant you 6 seconds immunity to all movement impairing effects."],"system":"classic"},{"id":"talent-484","treeId":"priest-shadow","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_unsummonbuilding.png","maxRank":1,"name":"Vampiric Embrace","description":"Fills you with the embrace of Shadow energy, causing you to be healed for 10% and other party members to be healed for 2% of any single-target Priest Shadow spell damage you deal. Either heal can not exceed 5% of the maximum health of the caster. This ability is usable while shapeshifted.","rankDescriptions":["Fills you with the embrace of Shadow energy, causing you to be healed for 10% and other party members to be healed for 2% of any single-target Priest Shadow spell damage you deal. Either heal can not exceed 5% of the maximum health of the caster. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-521","treeId":"priest-shadow","index":19,"prerequisiteId":"talent-484","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-484","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_shadow_shadowform.png","maxRank":1,"name":"Shadowform","description":"Assume a Shadowform, increasing your Shadow damage by 10%. You may not cast healing, or Priest Holy spells while in this form. the listed amount[Grants Shadow Word: Pain, Devouring Plague and Vampiric Touch the ability to benefit from haste.][Grants the periodic damage from your Shadow Word: Pain, Devouring Plague, and Vampiric Touch spells the ability to critically hit and benefit from haste.]","rankDescriptions":["Assume a Shadowform, increasing your Shadow damage by 10%. You may not cast healing, or Priest Holy spells while in this form. the listed amount[Grants Shadow Word: Pain, Devouring Plague and Vampiric Touch the ability to benefit from haste.][Grants the periodic damage from your Shadow Word: Pain, Devouring Plague, and Vampiric Touch spells the ability to critically hit and benefit from haste.]"],"system":"classic"},{"id":"talent-1779","treeId":"priest-shadow","index":24,"prerequisiteId":"talent-521","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-521","requiredRank":1}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_holy_stoicism.png","maxRank":1,"name":"Vampiric Touch","description":"Causes 515 Shadow damage over 15 seconds to your target and causes up to 10 party or raid members to gain 1% of their maximum mana per 5 sec when you deal damage from Mind Blast. In addition, if the Vampiric Touch is dispelled it will cause 824 damage to the afflicted target. the listed amount[Periodic damage from Vampiric Touch can critically strike while in Wildcard][]","rankDescriptions":["Causes 515 Shadow damage over 15 seconds to your target and causes up to 10 party or raid members to gain 1% of their maximum mana per 5 sec when you deal damage from Mind Blast. In addition, if the Vampiric Touch is dispelled it will cause 824 damage to the afflicted target. the listed amount[Periodic damage from Vampiric Touch can critically strike while in Wildcard][]"],"system":"classic"},{"id":"talent-1910","treeId":"priest-shadow","index":27,"prerequisiteId":"talent-1779","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1779","requiredRank":1}],"column":2,"row":11,"icon":"/assets/ui/talents/icons/spell_shadow_dispersion.png","maxRank":1,"name":"Dispersion","description":"You disperse into pure Shadow energy, reducing all damage taken by 90%. You are unable to attack or cast spells, but you regenerate 4% mana every 1 sec for 5 seconds. Dispersion can be cast while stunned, feared or silenced and clears all snare and movement impairing effects when cast. This ability is usable while shapeshifted.","rankDescriptions":["You disperse into pure Shadow energy, reducing all damage taken by 90%. You are unable to attack or cast spells, but you regenerate 4% mana every 1 sec for 5 seconds. Dispersion can be cast while stunned, feared or silenced and clears all snare and movement impairing effects when cast. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-2027","treeId":"priest-shadow","index":2,"prerequisiteId":"talent-465","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-465","requiredRank":3}],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_requiem.png","maxRank":2,"name":"Improved Spirit Tap","description":"Your Spirit Tap now also triggers from your critical strikes with direct damage Shadow spells and Mind Flay. While Spirit Tap is active you will gain 15% of your Spirit as spell critical strike rating.","rankDescriptions":["Your Spirit Tap now also triggers from your critical strikes with direct damage Shadow spells and Mind Flay. While Spirit Tap is active you will gain 7% of your Spirit as spell critical strike rating.","Your Spirit Tap now also triggers from your critical strikes with direct damage Shadow spells and Mind Flay. While Spirit Tap is active you will gain 15% of your Spirit as spell critical strike rating."],"system":"classic"},{"id":"talent-462","treeId":"priest-shadow","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_twilight.png","maxRank":3,"name":"Darkness","description":"Increases all damage done by 3%. Increases your Mind Blast damage by 10%. When your Shadow Word: Pain, Mind Flay or Mind Sear deal damage you have a 6% chance to reset the cooldown of Mind Blast and cause your next Mind Blast to have no cooldown and cost no mana.","rankDescriptions":["Increases all damage done by 1%. Increases your Mind Blast damage by 3%. When your Shadow Word: Pain, Mind Flay or Mind Sear deal damage you have a 2% chance to reset the cooldown of Mind Blast and cause your next Mind Blast to have no cooldown and cost no mana.","Increases all damage done by 2%. Increases your Mind Blast damage by 6%. When your Shadow Word: Pain, Mind Flay or Mind Sear deal damage you have a 4% chance to reset the cooldown of Mind Blast and cause your next Mind Blast to have no cooldown and cost no mana.","Increases all damage done by 3%. Increases your Mind Blast damage by 10%. When your Shadow Word: Pain, Mind Flay or Mind Sear deal damage you have a 6% chance to reset the cooldown of Mind Blast and cause your next Mind Blast to have no cooldown and cost no mana."],"system":"classic"},{"id":"talent-463","treeId":"priest-shadow","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_burningspirit.png","maxRank":3,"name":"Shadow Focus","description":"Reduces the mana cost of your spells by 6%. Reduces spell pushback suffered from damaging attacks by 100%.","rankDescriptions":["Reduces the mana cost of your spells by 2%. Reduces spell pushback suffered from damaging attacks by 33%.","Reduces the mana cost of your spells by 4%. Reduces spell pushback suffered from damaging attacks by 66%.","Reduces the mana cost of your spells by 6%. Reduces spell pushback suffered from damaging attacks by 100%."],"system":"classic"},{"id":"talent-501","treeId":"priest-shadow","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_siphonmana.png","maxRank":1,"name":"Mind Flay","description":"Assault the target's mind with Shadow energy, causing the listed amount Shadow damage over 3 seconds and slowing their movement speed by 50%.","rankDescriptions":["Assault the target's mind with Shadow energy, causing the listed amount Shadow damage over 3 seconds and slowing their movement speed by 50%."],"system":"classic"},{"id":"talent-881","treeId":"priest-shadow","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_chilltouch.png","maxRank":3,"name":"Shadow Reach","description":"Increases the range of your damaging spells with a channeling or cast time by 6 yards. This does not stack with other similar effects. Dealing direct magic damage to a target further than 20 yards away from you has a 33% chance to corrupt their soul, dealing Shadow damage over 3 seconds. This effect can only occur once every 15 seconds.","rankDescriptions":["Increases the range of your damaging spells with a channeling or cast time by 2 yards. This does not stack with other similar effects. Capstone Bonus: Dealing direct magic damage to a target further than 20 yards away from you has a 33% chance to corrupt their soul, dealing Shadow damage over 3 seconds. This effect can only occur once every 15 seconds.","Increases the range of your damaging spells with a channeling or cast time by 4 yards. This does not stack with other similar effects. Capstone Bonus: Dealing direct magic damage to a target further than 20 yards away from you has a 33% chance to corrupt their soul, dealing Shadow damage over 3 seconds. This effect can only occur once every 15 seconds.","Increases the range of your damaging spells with a channeling or cast time by 6 yards. This does not stack with other similar effects. Dealing direct magic damage to a target further than 20 yards away from you has a 33% chance to corrupt their soul, dealing Shadow damage over 3 seconds. This effect can only occur once every 15 seconds."],"system":"classic"},{"id":"talent-1638","treeId":"priest-shadow","index":15,"prerequisiteId":"talent-484","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-484","requiredRank":1}],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_improvedvampiricembrace.png","maxRank":2,"name":"Improved Vampiric Embrace","description":"Increases the healing received from Vampiric Embrace by 67%.","rankDescriptions":["Increases the healing received from Vampiric Embrace by 33%.","Increases the healing received from Vampiric Embrace by 67%."],"system":"classic"},{"id":"talent-1778","treeId":"priest-shadow","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_shadow_shadowpower.png","maxRank":5,"name":"Shadow Power","description":"Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Your Shadow and Holy periodic damage effects have a 30% chance to make the target vulnerable to your power, increasing their Magic damage taken from you by 8% for 4 seconds.","rankDescriptions":["Your spell critical strikes now deal 180% damage. This does not stack with other similar effects. Capstone Bonus: Your Shadow and Holy periodic damage effects have a 30% chance to make the target vulnerable to your power, increasing their Magic damage taken from you by 8% for 4 seconds.","Your spell critical strikes now deal 185% damage. This does not stack with other similar effects. Capstone Bonus: Your Shadow and Holy periodic damage effects have a 30% chance to make the target vulnerable to your power, increasing their Magic damage taken from you by 8% for 4 seconds.","Your spell critical strikes now deal 190% damage. This does not stack with other similar effects. Capstone Bonus: Your Shadow and Holy periodic damage effects have a 30% chance to make the target vulnerable to your power, increasing their Magic damage taken from you by 8% for 4 seconds.","Your spell critical strikes now deal 195% damage. This does not stack with other similar effects. Capstone Bonus: Your Shadow and Holy periodic damage effects have a 30% chance to make the target vulnerable to your power, increasing their Magic damage taken from you by 8% for 4 seconds.","Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Your Shadow and Holy periodic damage effects have a 30% chance to make the target vulnerable to your power, increasing their Magic damage taken from you by 8% for 4 seconds."],"system":"classic"},{"id":"talent-1816","treeId":"priest-shadow","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_shadow_misery.png","maxRank":3,"name":"Misery","description":"Increases your chance to hit with spells and abilities by 3%. Increases the spell damage scaling of your Mind Blast, Mind Flay and Vampiric Touch spells by 25%.","rankDescriptions":["Increases your chance to hit with spells and abilities by 1%. Increases the spell damage scaling of your Mind Blast, Mind Flay and Vampiric Touch spells by 8%.","Increases your chance to hit with spells and abilities by 2%. Increases the spell damage scaling of your Mind Blast, Mind Flay and Vampiric Touch spells by 16%.","Increases your chance to hit with spells and abilities by 3%. Increases the spell damage scaling of your Mind Blast, Mind Flay and Vampiric Touch spells by 25%."],"system":"classic"},{"id":"talent-1907","treeId":"priest-shadow","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/talents/icons/spell_shadow_mindtwisting.png","maxRank":3,"name":"Twisted Faith","description":"If your target is afflicted by your Shadow Word: Pain, increases the damage done by your Mind Flay, Mind Sear and Mind Blast by 9% and your Shadow Word: Death by 15%. Each time your Shadow Word: Pain deals damage you gain 6% of your base mana.","rankDescriptions":["If your target is afflicted by your Shadow Word: Pain, increases the damage done by your Mind Flay, Mind Sear and Mind Blast by 3% and your Shadow Word: Death by 5%. Each time your Shadow Word: Pain deals damage you gain 2% of your base mana.","If your target is afflicted by your Shadow Word: Pain, increases the damage done by your Mind Flay, Mind Sear and Mind Blast by 6% and your Shadow Word: Death by 10%. Each time your Shadow Word: Pain deals damage you gain 4% of your base mana.","If your target is afflicted by your Shadow Word: Pain, increases the damage done by your Mind Flay, Mind Sear and Mind Blast by 9% and your Shadow Word: Death by 15%. Each time your Shadow Word: Pain deals damage you gain 6% of your base mana."],"system":"classic"},{"id":"talent-1909","treeId":"priest-shadow","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/spell_shadow_painandsuffering.png","maxRank":3,"name":"Pain and Suffering","description":"Mind Flay, Mind Sear and Mind Blast casts have a 100% chance to refresh the duration of your Shadow Word: Pain on the target. Reduces the damage you take from your own Shadow Word: Death by 30%. Capstone Bonus: If your Devouring Plague is dispelled within 3 seconds after being applied, it deals damage to the dispeller and makes them vulnerable to Diseases, increasing their duration by 25%. This effect stacks up to 3 times.","rankDescriptions":["Mind Flay, Mind Sear and Mind Blast casts have a 33% chance to refresh the duration of your Shadow Word: Pain on the target. Reduces the damage you take from your own Shadow Word: Death by 10%. Capstone Bonus: If your Devouring Plague is dispelled within 3 seconds after being applied, it deals damage to the dispeller and makes them vulnerable to Diseases, increasing their duration by 25%. This effect stacks up to 3 times.","Mind Flay, Mind Sear and Mind Blast casts have a 66% chance to refresh the duration of your Shadow Word: Pain on the target. Reduces the damage you take from your own Shadow Word: Death by 20%. Capstone Bonus: If your Devouring Plague is dispelled within 3 seconds after being applied, it deals damage to the dispeller and makes them vulnerable to Diseases, increasing their duration by 25%. This effect stacks up to 3 times.","Mind Flay, Mind Sear and Mind Blast casts have a 100% chance to refresh the duration of your Shadow Word: Pain on the target. Reduces the damage you take from your own Shadow Word: Death by 30%. Capstone Bonus: If your Devouring Plague is dispelled within 3 seconds after being applied, it deals damage to the dispeller and makes them vulnerable to Diseases, increasing their duration by 25%. This effect stacks up to 3 times."],"system":"classic"},{"id":"talent-2267","treeId":"priest-shadow","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_devouringplague.png","maxRank":3,"name":"Improved Devouring Plague","description":"Increases the periodic damage done by your Devouring Plague by 15%. Devouring Plague now instantly deals 30% of its total periodic effect when casted. Capstone Bonus: All your Priest spells deal 5% increased damage to the target afflicted by your Devouring Plague.","rankDescriptions":["Increases the periodic damage done by your Devouring Plague by 5%. Devouring Plague now instantly deals 10% of its total periodic effect when casted. Capstone Bonus: All your Priest spells deal 5% increased damage to the target afflicted by your Devouring Plague.","Increases the periodic damage done by your Devouring Plague by 10%. Devouring Plague now instantly deals 20% of its total periodic effect when casted. Capstone Bonus: All your Priest spells deal 5% increased damage to the target afflicted by your Devouring Plague.","Increases the periodic damage done by your Devouring Plague by 15%. Devouring Plague now instantly deals 30% of its total periodic effect when casted. Capstone Bonus: All your Priest spells deal 5% increased damage to the target afflicted by your Devouring Plague."],"system":"classic"},{"id":"talent-461","treeId":"priest-shadow","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_blackplague.png","maxRank":3,"name":"Shadow Weaving","description":"Your damaging Priest Shadow spells have a 100% chance to increase the Shadow damage you deal by 2% for 15 seconds. Stacks up to 5 times.","rankDescriptions":["Your damaging Priest Shadow spells have a 33% chance to increase the Shadow damage you deal by 2% for 15 seconds. Stacks up to 5 times.","Your damaging Priest Shadow spells have a 66% chance to increase the Shadow damage you deal by 2% for 15 seconds. Stacks up to 5 times.","Your damaging Priest Shadow spells have a 100% chance to increase the Shadow damage you deal by 2% for 15 seconds. Stacks up to 5 times."],"system":"classic"},{"id":"talent-1777","treeId":"priest-shadow","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_focusedmind.png","maxRank":3,"name":"Void-touched Mind","description":"Mind Blast, Mind Flay and Mind Sear spells deal 9% more damage and cost 15% less mana. Capstone bonus: Your Mind Blast extends the duration of Void Eruption by up to 3 seconds and your Mind Flay ticks increase the periodic damage increase of Void Eruption by an additional 3%, stacks up to 10 times.","rankDescriptions":["Mind Blast, Mind Flay and Mind Sear spells deal 3% more damage and cost 5% less mana. Capstone Bonus: Your Mind Blast extends the duration of Void Eruption by up to 3 seconds and your Mind Flay ticks increase the periodic damage increase of Void Eruption by an additional 3%, stacks up to 10 times.","Mind Blast, Mind Flay and Mind Sear spells deal 6% more damage and cost 10% less mana. Capstone Bonus: Your Mind Blast extends the duration of Void Eruption by up to 3 seconds and your Mind Flay ticks increase the periodic damage increase of Void Eruption by an additional 3%, stacks up to 10 times.","Mind Blast, Mind Flay and Mind Sear spells deal 9% more damage and cost 15% less mana. Capstone bonus: Your Mind Blast extends the duration of Void Eruption by up to 3 seconds and your Mind Flay ticks increase the periodic damage increase of Void Eruption by an additional 3%, stacks up to 10 times."],"system":"classic"}]} diff --git a/src/game/generated/talentUi/primalist.json b/src/game/generated/talentUi/primalist.json new file mode 100644 index 00000000..049ad9e5 --- /dev/null +++ b/src/game/generated/talentUi/primalist.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"primalist","trees":[{"id":"coa-primalist-84","classId":"primalist","name":"Life","icon":"/assets/ui/spells/inv_mace_1h_draenorraid_d_04green.png","background":"","description":"Life nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-primalist-83","classId":"primalist","name":"Geomancy","icon":"/assets/ui/spells/seismic_tremor.png","background":"","description":"Geomancy nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-primalist-82","classId":"primalist","name":"Primal","icon":"/assets/ui/spells/spell_beastmaster_rylak.png","background":"","description":"Primal nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-primalist-91","classId":"primalist","name":"Mountain King","icon":"/assets/ui/spells/spell_shaman_earthquake.png","background":"","description":"Mountain King nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-primalist-87","classId":"primalist","name":"Class","icon":"/assets/ui/spells/spell_nature_stoneclawtotem.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-29667","treeId":"coa-primalist-82","index":29667,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/spell_beastmaster_rylak.png","maxRank":1,"name":"Rylak's Bite","description":"2 Charges, 10 sec recharge You and your pet rush towards an enemy and strike them, dealing 120% Weapon Damage plus 8.","rankDescriptions":["2 Charges, 10 sec recharge You and your pet rush towards an enemy and strike them, dealing 120% Weapon Damage plus 8."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4058","treeId":"coa-primalist-82","index":4058,"prerequisiteId":"coa-entry-30254","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30254","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/ability_druid_ripandtear.png","maxRank":1,"name":"Spirit Beast Master","description":"Level 10 Passive You may now tame beasts in Azeroth to aid you as a companion.","rankDescriptions":["Level 10 Passive You may now tame beasts in Azeroth to aid you as a companion."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7109","treeId":"coa-primalist-82","index":7109,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/druid_stagstatue01.png","maxRank":1,"name":"Fury of the Wild","description":"When you cast a Boon, you cast the same Boon on your pet at 50% effectiveness.","rankDescriptions":["When you cast a Boon, you cast the same Boon on your pet at 50% effectiveness."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29382","treeId":"coa-primalist-82","index":29382,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/ability_smash.png","maxRank":1,"name":"Totemic Smash","description":"Smash an enemy for 140% Weapon Damage plus 20. Deals an additional 10 + 35% AP damage to up to 5 enemies within 8 yds.","rankDescriptions":["Smash an enemy for 140% Weapon Damage plus 20. Deals an additional 10 + 35% AP damage to up to 5 enemies within 8 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6205","treeId":"coa-primalist-82","index":6205,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/ability_druid_freshwound.png","maxRank":1,"name":"Primal Shred","description":"Command your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing 53 + 35% AP Physical damage over 21 seconds.","rankDescriptions":["Command your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing 53 + 35% AP Physical damage over 21 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9212","treeId":"coa-primalist-82","index":9212,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_nature_naturesblessing.png","maxRank":1,"name":"Primal Weapons","description":"Level 20 Passive Teaches you Primal Weapons which when used will grant you a bonus based on whether you use one-handed weapons or two-handed weapons.Primal Weapon: Bestial MightWhile wielding a one-handed weapon, your Physical critical strikes enrage you and any active pet for 8 seconds, increasing the haste of your next 2 attacks by 10% and their next 2 attacks by 80%.Primal Weapon: Primal MightWhile wielding a two-handed weapon, your attack power is increased by 10%, you generate 3 Rage every 5 sec, and the damage you deal with Wildclaw is increased by 25%.","rankDescriptions":["Level 20 Passive Teaches you Primal Weapons which when used will grant you a bonus based on whether you use one-handed weapons or two-handed weapons.Primal Weapon: Bestial MightWhile wielding a one-handed weapon, your Physical critical strikes enrage you and any active pet for 8 seconds, increasing the haste of your next 2 attacks by 10% and their next 2 attacks by 80%.Primal Weapon: Primal MightWhile wielding a two-handed weapon, your attack power is increased by 10%, you generate 3 Rage every 5 sec, and the damage you deal with Wildclaw is increased by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-6261","treeId":"coa-primalist-82","index":6261,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/custom_bear_paw_border.png","maxRank":2,"name":"Pulverize","description":"Increases the critical strike chance of Totemic Smash by 20%.","rankDescriptions":["Increases the critical strike chance of Totemic Smash by 10%.","Increases the critical strike chance of Totemic Smash by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6201","treeId":"coa-primalist-82","index":6201,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/skill_icon_skill61_border.png","maxRank":1,"name":"Wild At Heart","description":"Reduces the global cooldown of Wildclaw by 0.-25 sec.","rankDescriptions":["Reduces the global cooldown of Wildclaw by 0.-25 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6831","treeId":"coa-primalist-82","index":6831,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/ability_hunter_beastmastery.png","maxRank":2,"name":"Raptor Talons","description":"Increases your Strength by 10% and your expertise by 8.","rankDescriptions":["Increases your Strength by 5% and your expertise by 4.","Increases your Strength by 10% and your expertise by 8."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6149","treeId":"coa-primalist-82","index":6149,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_misc_bearpaw_red.png","maxRank":1,"name":"Torn to Shreds","description":"Totemic Smash and Rylak's Bite now causes enemies to bleed for 155 + 4.5% AP over 12 seconds, stacking 2 times.","rankDescriptions":["Totemic Smash and Rylak's Bite now causes enemies to bleed for 155 + 4.5% AP over 12 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29296","treeId":"coa-primalist-82","index":29296,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/nhi_moltensmash_border.png","maxRank":1,"name":"Pulverize","description":"Critical strikes with Totemic Smash now trigger the area of effect portion of its damage an additional time.","rankDescriptions":["Critical strikes with Totemic Smash now trigger the area of effect portion of its damage an additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6365","treeId":"coa-primalist-82","index":6365,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_misc_monsterclaw_05.png","maxRank":1,"name":"Primal Resurgence","description":"Seismic Crash now generates an additional 10 Rage and Seismic Spike now generates 3 additional Rage.","rankDescriptions":["Seismic Crash now generates an additional 10 Rage and Seismic Spike now generates 3 additional Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31230","treeId":"coa-primalist-82","index":31230,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_hunter_masterscall.png","maxRank":1,"name":"Rips and Tears","description":"Periodic damage dealt by your Primailst spells or your pet now generates 2 Rage for you and 5 Focus for your pet.","rankDescriptions":["Periodic damage dealt by your Primailst spells or your pet now generates 2 Rage for you and 5 Focus for your pet."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6251","treeId":"coa-primalist-82","index":6251,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/trade_archaeology_ancientorcshamanheaddress.png","maxRank":1,"name":"Primal Rage","description":"Casting Totemic Smash now refreshes a charge of Rylak's Bite.","rankDescriptions":["Casting Totemic Smash now refreshes a charge of Rylak's Bite."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9851","treeId":"coa-primalist-82","index":9851,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_bullrush.png","maxRank":1,"name":"Wild Rage","description":"Removes the Rage cost of Rylak's Bite.","rankDescriptions":["Removes the Rage cost of Rylak's Bite."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30971","treeId":"coa-primalist-82","index":30971,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_misc_necklace_bone04.png","maxRank":1,"name":"Bring Me Their Bones","description":"Mark an enemy for 15 seconds, causing damage dealt by your pet's abilities to the target to add a stack of Bring Me Their Bones. At 5 stacks, your pet consumes this buff to deal 310 + 50% AP damage to the target, ignoring Armor.","rankDescriptions":["Mark an enemy for 15 seconds, causing damage dealt by your pet's abilities to the target to add a stack of Bring Me Their Bones. At 5 stacks, your pet consumes this buff to deal 310 + 50% AP damage to the target, ignoring Armor."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29339","treeId":"coa-primalist-82","index":29339,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/custom_warriorskill_28_border.png","maxRank":1,"name":"Lacerations","description":"Melee critical strikes now increase the effectiveness of bleed effects on the target by 30% for 15 seconds. Does not stack with similar effects.","rankDescriptions":["Melee critical strikes now increase the effectiveness of bleed effects on the target by 30% for 15 seconds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9208","treeId":"coa-primalist-82","index":9208,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_hunter_mongoosebite.png","maxRank":1,"name":"Tremors","description":"Level 30 Passive Periodic damage now has a 10% chance to reset the cooldown of your Seismic abilties and cause your next cast within 10 seconds to be free of cost.","rankDescriptions":["Level 30 Passive Periodic damage now has a 10% chance to reset the cooldown of your Seismic abilties and cause your next cast within 10 seconds to be free of cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-8008","treeId":"coa-primalist-82","index":8008,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/spell_shaman_focusedstrikes.png","maxRank":1,"name":"Elemental Berserker","description":"Increases the area damage dealt by Totemic Smash by 30%, but it now costs 5 additional Rage.","rankDescriptions":["Increases the area damage dealt by Totemic Smash by 30%, but it now costs 5 additional Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29349","treeId":"coa-primalist-82","index":29349,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_misc_volatileearth.png","maxRank":1,"name":"Earthshaker","description":"Increases the damage dealt by Seismic abilities by 10% and allows their periodic damage to critically strike.","rankDescriptions":["Increases the damage dealt by Seismic abilities by 10% and allows their periodic damage to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7332","treeId":"coa-primalist-82","index":7332,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_hunter_bestialdiscipline.png","maxRank":1,"name":"Savage Frenzy","description":"Enrage you and your pet for 18 seconds, increasing damage dealt by 20%, and attack speed and movement speed by 30%.","rankDescriptions":["Enrage you and your pet for 18 seconds, increasing damage dealt by 20%, and attack speed and movement speed by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29357","treeId":"coa-primalist-82","index":29357,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/nhi_naturestrike_border.png","maxRank":2,"name":"Wild Rampage","description":"Increases your attack power by 10% and your chance to hit by 4%.","rankDescriptions":["Increases your attack power by 5% and your chance to hit by 2%.","Increases your attack power by 10% and your chance to hit by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31207","treeId":"coa-primalist-82","index":31207,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/custom_71_spirit_wolves_nobg_border.png","maxRank":1,"name":"Spiritual Frenzy","description":"Casting Primal Shred now empowers your pet, causing its auto attacks to strike up to 4 nearby enemies for 21 seconds.","rankDescriptions":["Casting Primal Shred now empowers your pet, causing its auto attacks to strike up to 4 nearby enemies for 21 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6202","treeId":"coa-primalist-82","index":6202,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/ability_hunter_harass.png","maxRank":1,"name":"Throat Clamp","description":"Command your pet to dash forward a short distance towards your target, interrupting spellcasting and preventing any spell in that school from being cast for 3 seconds.","rankDescriptions":["Command your pet to dash forward a short distance towards your target, interrupting spellcasting and preventing any spell in that school from being cast for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7330","treeId":"coa-primalist-82","index":7330,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/nhi_ghostclaw_border.png","maxRank":1,"name":"Sharpened Claws","description":"Your direct critical strikes now increase your and your pet's Armor penetration by 5% for 10 seconds, stacking 3 times.","rankDescriptions":["Your direct critical strikes now increase your and your pet's Armor penetration by 5% for 10 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12430","treeId":"coa-primalist-82","index":12430,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/5_clawstrike_border.png","maxRank":1,"name":"Bloody Claws","description":"Damage dealt by your pet now reduces the enemies periodic healing received by -10% for 15 seconds, stacking 3 times.","rankDescriptions":["Damage dealt by your pet now reduces the enemies periodic healing received by -10% for 15 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6367","treeId":"coa-primalist-82","index":6367,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/inv_skeletonspinepet_bone.png","maxRank":1,"name":"Spinebreaker","description":"Your Seismic Grasp now roots enemies for 3.5 seconds.","rankDescriptions":["Your Seismic Grasp now roots enemies for 3.5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8006","treeId":"coa-primalist-82","index":8006,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/ability_demonhunter_demonspikes2.png","maxRank":1,"name":"Wild Carnage","description":"Seismic Spike now causes your Wildclaws to strike up to 4 additional nearby targets, dealing reduced damage with each additional enemy struck. Lasts 6 seconds.","rankDescriptions":["Seismic Spike now causes your Wildclaws to strike up to 4 additional nearby targets, dealing reduced damage with each additional enemy struck. Lasts 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6206","treeId":"coa-primalist-82","index":6206,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/ability_racial_bullrush.png","maxRank":1,"name":"Rush of the Hunt","description":"Increases the damage of Wildclaw and Rylak's Bite by 15% against bleeding enemies.","rankDescriptions":["Increases the damage of Wildclaw and Rylak's Bite by 15% against bleeding enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9908","treeId":"coa-primalist-82","index":9908,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_ghostwalk_border.png","maxRank":1,"name":"Spirit Stable","description":"Call forth a stabled animal spirit to replace your current one. Lasts 10 seconds.","rankDescriptions":["Call forth a stabled animal spirit to replace your current one. Lasts 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-11207","treeId":"coa-primalist-82","index":11207,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/novart_magicspell_(27)_border.png","maxRank":1,"name":"Killer's Path","description":"Increases the attack power of party and raid members by 5%. Does not stack with similar effects. In addition, increases your critical strike chance by 3%.","rankDescriptions":["Increases the attack power of party and raid members by 5%. Does not stack with similar effects. In addition, increases your critical strike chance by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6826","treeId":"coa-primalist-82","index":6826,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/ability_hunter_fervor.png","maxRank":1,"name":"Bestial Wrath","description":"When you critically strike, your pet restores 10 Focus. When your pet critically strikes, you restore 2% maximum mana and increase the target's Physical damage taken by 4% for 10 seconds.","rankDescriptions":["When you critically strike, your pet restores 10 Focus. When your pet critically strikes, you restore 2% maximum mana and increase the target's Physical damage taken by 4% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30972","treeId":"coa-primalist-82","index":30972,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_druid_feralchargecat.png","maxRank":1,"name":"Rylak's Blessing","description":"Damage dealt by Rylak's Bite now increases your pet's damage and critical strike chance by 2%, stacking 2 times, for 10 seconds.","rankDescriptions":["Damage dealt by Rylak's Bite now increases your pet's damage and critical strike chance by 2%, stacking 2 times, for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5151","treeId":"coa-primalist-82","index":5151,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/spell_fire_totemofwrath.png","maxRank":1,"name":"Totem Warrior","description":"While you have Boon of the Bear active, Wildclaw will now strike an additional time for 40% of the damage dealt with both weapons.","rankDescriptions":["While you have Boon of the Bear active, Wildclaw will now strike an additional time for 40% of the damage dealt with both weapons."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30969","treeId":"coa-primalist-82","index":30969,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/spells/ability_shaman_totemcooldownrefund.png","maxRank":1,"name":"Totemic Echoes","description":"Totemic Smash now applies Totemic Crash to an enemy for 2 seconds. At the end of the duration, if you are within 5 yds of the target, you cast Totemic Smash against them for free.","rankDescriptions":["Totemic Smash now applies Totemic Crash to an enemy for 2 seconds. At the end of the duration, if you are within 5 yds of the target, you cast Totemic Smash against them for free."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4384","treeId":"coa-primalist-82","index":4384,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":9,"icon":"/assets/ui/spells/inv_wolfdraenormountrustic.png","maxRank":1,"name":"Frenzied Roar","description":"Roar with bestial fervor, generating 20 Rage and granting you 20% increased attack speed for 15 seconds.","rankDescriptions":["Roar with bestial fervor, generating 20 Rage and granting you 20% increased attack speed for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6151","treeId":"coa-primalist-82","index":6151,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/spell_druid_thrash.png","maxRank":1,"name":"Rexxar's Might","description":"Your physical critical strikes now cause your pet's next attack to apply a bleed, dealing 93 + 15% AP Physical damage every 2 sec for 6 seconds.","rankDescriptions":["Your physical critical strikes now cause your pet's next attack to apply a bleed, dealing 93 + 15% AP Physical damage every 2 sec for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9909","treeId":"coa-primalist-82","index":9909,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/misc_drogbartotem02.png","maxRank":1,"name":"Empowered Boons","description":"Level 50 Passive Your Totemic Smash now applies an Empowered Boon based on your currently active Boon.Empowered Boon of the BearIncreases the damage of Wildclaw and Rylak's Bite by 10% for 8 seconds.Empowered Boon of the TurtleReduces damage taken by -10% for 8 seconds.Empowered Boon of the HawkRegenerates 15% missing health and mana.Empowered Boon of the WolfRemoves 1 movement impairing effect.Empowered Boon of the LionRegenerates 50 Focus for your pet.","rankDescriptions":["Level 50 Passive Your Totemic Smash now applies an Empowered Boon based on your currently active Boon.Empowered Boon of the BearIncreases the damage of Wildclaw and Rylak's Bite by 10% for 8 seconds.Empowered Boon of the TurtleReduces damage taken by -10% for 8 seconds.Empowered Boon of the HawkRegenerates 15% missing health and mana.Empowered Boon of the WolfRemoves 1 movement impairing effect.Empowered Boon of the LionRegenerates 50 Focus for your pet."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-5008","treeId":"coa-primalist-82","index":5008,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_hunter_pet_bear.png","maxRank":1,"name":"Son of Ursoc","description":"Your Savage Frenzy now transforms you into a fierce beast, freeing you of all movement impairing effects. In addition, increases the effectiveness of Savage Frenzy by 50%, and reduces its cooldown by -60 sec.","rankDescriptions":["Your Savage Frenzy now transforms you into a fierce beast, freeing you of all movement impairing effects. In addition, increases the effectiveness of Savage Frenzy by 50%, and reduces its cooldown by -60 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29385","treeId":"coa-primalist-82","index":29385,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_rexxar.png","maxRank":1,"name":"Legacy of Rexxar","description":"Critical strikes with Primal Shred grant you and your pet Misha's Rage for 12 seconds, causing auto attacks to deal an additional 85 + 12.5% AP Physical damage. Critical strikes with Rylak's Bite grant you and your pet Leokk's Fury, increasing melee haste by 2% for 12 seconds, stacking 3 times. Critical strikes with Wildclaw grant you and your pet Huffer's Speed, increasing movement speed by 8% for 12 seconds, stacking 3 times.","rankDescriptions":["Critical strikes with Primal Shred grant you and your pet Misha's Rage for 12 seconds, causing auto attacks to deal an additional 85 + 12.5% AP Physical damage. Critical strikes with Rylak's Bite grant you and your pet Leokk's Fury, increasing melee haste by 2% for 12 seconds, stacking 3 times. Critical strikes with Wildclaw grant you and your pet Huffer's Speed, increasing movement speed by 8% for 12 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7535","treeId":"coa-primalist-83","index":7535,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/seismic_tremor.png","maxRank":1,"name":"Seismic Tremor","description":"Send a tremor through the earth at an enemy, dealing 54 + 50% nature SP Physical damage, plus an additional 336 over 24 seconds. Damage is dealt slowly at first, and builds up over time. Damage dealt generates 1 Rage. Generates 2 stacks of Earthshaping.","rankDescriptions":["Send a tremor through the earth at an enemy, dealing 54 + 50% nature SP Physical damage, plus an additional 336 over 24 seconds. Damage is dealt slowly at first, and builds up over time. Damage dealt generates 1 Rage. Generates 2 stacks of Earthshaping."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4059","treeId":"coa-primalist-83","index":4059,"prerequisiteId":"coa-entry-29252","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29252","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_custom_hearthstone_fire.png","maxRank":1,"name":"Earthshaping","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7533","treeId":"coa-primalist-83","index":7533,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/spell_shaman_earthlivingweapon.png","maxRank":1,"name":"Whispers of the Earth","description":"Reduces the cast time of Geode Barrage and Stoneshard by 0.3 sec.","rankDescriptions":["Reduces the cast time of Geode Barrage and Stoneshard by 0.3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7801","treeId":"coa-primalist-83","index":7801,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/nhi_naturevision_border.png","maxRank":2,"name":"Gaze of Therazane","description":"Increases the range of your Geomancy spells by 20% and of Seismic spells by 16 yds.","rankDescriptions":["Increases the range of your Geomancy spells by 10% and of Seismic spells by 8 yds.","Increases the range of your Geomancy spells by 20% and of Seismic spells by 16 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6600","treeId":"coa-primalist-83","index":6600,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/spell_nature_skinofearth.png","maxRank":2,"name":"Stoneskin","description":"Increases your Armor by 400% of your Intellect.","rankDescriptions":["Increases your Armor by 200% of your Intellect.","Increases your Armor by 400% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7797","treeId":"coa-primalist-83","index":7797,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/epic_rpg_icon_pack_earth_icon_0003s_0000_light_border.png","maxRank":1,"name":"Terrasurge","description":"Unleash a massive globule of earth at an enemy, dealing 140 + 130% nature SP Physical damage and reducing their Armor by -50% for 10 sec. Pierces through absorption, deflection, and reflection effects. Deals 5% additional damage for each Earthshaping stack.","rankDescriptions":["Unleash a massive globule of earth at an enemy, dealing 140 + 130% nature SP Physical damage and reducing their Armor by -50% for 10 sec. Pierces through absorption, deflection, and reflection effects. Deals 5% additional damage for each Earthshaping stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7532","treeId":"coa-primalist-83","index":7532,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/spell_sandexplosion.png","maxRank":1,"name":"Cataclysm","description":"Generating Earthshaping or casting Stoneshard now has a 10% chance to reset the cooldown of your Seismic abilities.","rankDescriptions":["Generating Earthshaping or casting Stoneshard now has a 10% chance to reset the cooldown of your Seismic abilities."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9207","treeId":"coa-primalist-83","index":9207,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/ability_earthen_pillar.png","maxRank":1,"name":"Lithic Lance","description":"Level 20 Passive Generating Earthshaping now has a 20% chance to transform your next Geode Barrage within 8 seconds into Lithic Lance.Lithic LanceLaunch a beam of earthen energy at an enemy, dealing 263 + 80% nature SP Physical damage, generating 20 Rage and 2 stacks of Earthshaping. Scales with modifiers to Geode Barrage.","rankDescriptions":["Level 20 Passive Generating Earthshaping now has a 20% chance to transform your next Geode Barrage within 8 seconds into Lithic Lance.Lithic LanceLaunch a beam of earthen energy at an enemy, dealing 263 + 80% nature SP Physical damage, generating 20 Rage and 2 stacks of Earthshaping. Scales with modifiers to Geode Barrage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7358","treeId":"coa-primalist-83","index":7358,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/inv_helm_mask_zulgurub_d_01.png","maxRank":1,"name":"Primal Shaman's Mask","description":"Direct damage dealt now has a 10% chance to launch a Geode at the enemyGeodeHurl an enchanted stone at the target, dealing 173 + 34.9% SP + 8.5% AP Physical Damage and generating 5 Rage..","rankDescriptions":["Direct damage dealt now has a 10% chance to launch a Geode at the enemyGeodeHurl an enchanted stone at the target, dealing 173 + 34.9% SP + 8.5% AP Physical Damage and generating 5 Rage.."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7531","treeId":"coa-primalist-83","index":7531,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/_d3earthquake.png","maxRank":1,"name":"Rockslide","description":"Stoneshard now has a 15% chance to cast an additional time. This effect can trigger itself.","rankDescriptions":["Stoneshard now has a 15% chance to cast an additional time. This effect can trigger itself."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7357","treeId":"coa-primalist-83","index":7357,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/inv_offhand_1h_artifactdoomhammer_d_03.png","maxRank":1,"name":"One With The Earth","description":"Increases the damage of Stoneshard and Geode Barrage by 20% and Stoneshard now restores 4% of your maximum mana.","rankDescriptions":["Increases the damage of Stoneshard and Geode Barrage by 20% and Stoneshard now restores 4% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6155","treeId":"coa-primalist-83","index":6155,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/ability_rhyolith_magmaflow_whole.png","maxRank":2,"name":"Volcanic Blast","description":"Your Physical or Nature damaging critical strikes now deal an additional 20% of the damage dealt as Fire damage to the target and enemies nearby.","rankDescriptions":["Your Physical or Nature damaging critical strikes now deal an additional 10% of the damage dealt as Fire damage to the target and enemies nearby.","Your Physical or Nature damaging critical strikes now deal an additional 20% of the damage dealt as Fire damage to the target and enemies nearby."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6586","treeId":"coa-primalist-83","index":6586,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/nhi_nature_hidden_border.png","maxRank":1,"name":"Dream","description":"Generating Earthshaping while at or above 10 stacks now grants Dream.DreamIncreases the critical strike chance of your Seismic abilities and Lithic Lance by 10% for 3 seconds.","rankDescriptions":["Generating Earthshaping while at or above 10 stacks now grants Dream.DreamIncreases the critical strike chance of your Seismic abilities and Lithic Lance by 10% for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7538","treeId":"coa-primalist-83","index":7538,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/nhi_nature_shapeshift_border.png","maxRank":1,"name":"Golem Form","description":"Transform into a being made of stone and earth for 20 seconds, increasing your haste by 20% and your Armor by 50%, and allowing you to cast damaging spells while moving.","rankDescriptions":["Transform into a being made of stone and earth for 20 seconds, increasing your haste by 20% and your Armor by 50%, and allowing you to cast damaging spells while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5532","treeId":"coa-primalist-83","index":5532,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_tradeskillitem_lessersorcerersearth.png","maxRank":1,"name":"Nature's Will","description":"Casting Seismic spells now extends the duration of Earthshaping by 4 sec.","rankDescriptions":["Casting Seismic spells now extends the duration of Earthshaping by 4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6594","treeId":"coa-primalist-83","index":6594,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/inv_elemental_mote_nether.png","maxRank":1,"name":"Therazane's Might","description":"Your Terrasurge will now always critically strike against targets affected by your Seismic Tremor.","rankDescriptions":["Your Terrasurge will now always critically strike against targets affected by your Seismic Tremor."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9999","treeId":"coa-primalist-83","index":9999,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/epic_rpg_icon_pack_earth_icon_0001s_0000_dust_border.png","maxRank":1,"name":"Cave Dweller","description":"Level 30 Passive Increases your armor penetration rating by 50% of your Intellect.","rankDescriptions":["Level 30 Passive Increases your armor penetration rating by 50% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7800","treeId":"coa-primalist-83","index":7800,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/spell_shaman_lavaflow.png","maxRank":1,"name":"Cracking the Earth","description":"Striking at least 5 enemies with Volcanic Blast now grants you Cracking the Earth for 10 seconds.Cracking the Earth (Proc)Your Seismic Spike strikes 1 additional enemy. Stacks 5 times.","rankDescriptions":["Striking at least 5 enemies with Volcanic Blast now grants you Cracking the Earth for 10 seconds.Cracking the Earth (Proc)Your Seismic Spike strikes 1 additional enemy. Stacks 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6588","treeId":"coa-primalist-83","index":6588,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/inv_stone_16.png","maxRank":1,"name":"Stone Tosser","description":"Increases spell bonus damage scaling of Geode Barrage, Stoneshard, and Seismic Crash by 25%.","rankDescriptions":["Increases spell bonus damage scaling of Geode Barrage, Stoneshard, and Seismic Crash by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6578","treeId":"coa-primalist-83","index":6578,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/uico_nature_spell_03_border.png","maxRank":1,"name":"Earth Pummeling","description":"Damage dealt by Geode Barrage and Geodes to increase the chance for the enemy to be critically hit with spells by 3% for 12 seconds.","rankDescriptions":["Damage dealt by Geode Barrage and Geodes to increase the chance for the enemy to be critically hit with spells by 3% for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6303","treeId":"coa-primalist-83","index":6303,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/achievement_dungeon_halls_of_origination_earthrager_ptah.png","maxRank":1,"name":"Trembling Rage","description":"Increases the amount of Rage generated by Seismic Tremor by 2.","rankDescriptions":["Increases the amount of Rage generated by Seismic Tremor by 2."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9453","treeId":"coa-primalist-83","index":9453,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/spell_fire_meteorstorm.png","maxRank":1,"name":"Everlasting Rage","description":"Increases the duration of Seismic Tremor by 5 sec and its tick rate by -10%.","rankDescriptions":["Increases the duration of Seismic Tremor by 5 sec and its tick rate by -10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31309","treeId":"coa-primalist-83","index":31309,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/custom_amber_stone_border.png","maxRank":1,"name":"Earth's Embrace","description":"Encapsulate your body in amber, becoming immune to all Physical attacks and spells for 8 seconds, and healing you for 300 + 50% SP every 2 sec, but making you unable to move or act. Usable while stunned, feared, or polymorphed.","rankDescriptions":["Encapsulate your body in amber, becoming immune to all Physical attacks and spells for 8 seconds, and healing you for 300 + 50% SP every 2 sec, but making you unable to move or act. Usable while stunned, feared, or polymorphed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29258","treeId":"coa-primalist-83","index":29258,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_elemental_crystal_fire.png","maxRank":1,"name":"Molten Fervor","description":"Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your spell haste by 5%.","rankDescriptions":["Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your spell haste by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":1,"isPassive":false},{"id":"coa-entry-5544","treeId":"coa-primalist-83","index":5544,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/spell_fire_volcano.png","maxRank":1,"name":"Magma Fissure","description":"Stomp the ground and unleash a wave of earth and stone in a 20 yd line that knocks all enemies to the side and deals cond(gt(SPFI, SPN), 684+0+SPFI*1, 684+0+SPN*1) Fire damage, piercing absorption effects. Your next spell within 6 seconds is instant cast.","rankDescriptions":["Stomp the ground and unleash a wave of earth and stone in a 20 yd line that knocks all enemies to the side and deals cond(gt(SPFI, SPN), 684+0+SPFI*1, 684+0+SPN*1) Fire damage, piercing absorption effects. Your next spell within 6 seconds is instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4207","treeId":"coa-primalist-83","index":4207,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_tradeskillitem_sorcerersearth_tong.png","maxRank":1,"name":"Crushing the Earth","description":"Level 40 Passive You now gain spell power equal to 50% of your armor penetration rating.","rankDescriptions":["Level 40 Passive You now gain spell power equal to 50% of your armor penetration rating."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-7543","treeId":"coa-primalist-83","index":7543,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/nhi_earthshock_border.png","maxRank":1,"name":"Tectonic Resonance","description":"Increases the amount that Earthquake slows enemies by -30%.","rankDescriptions":["Increases the amount that Earthquake slows enemies by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12543","treeId":"coa-primalist-83","index":12543,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/spell_nature_abolishmagic.png","maxRank":1,"name":"Tectonic Power","description":"Increases the duration Earthquake by 3 sec and increases its damage dealt by 25%.","rankDescriptions":["Increases the duration Earthquake by 3 sec and increases its damage dealt by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5193","treeId":"coa-primalist-83","index":5193,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/inv_misc_archstone_01.png","maxRank":1,"name":"Embraced By Earth!","description":"At the end of the duration of Earth's Embrace, you now disorient all nearby enemies for 6 seconds. Damage dealt will end the effect.","rankDescriptions":["At the end of the duration of Earth's Embrace, you now disorient all nearby enemies for 6 seconds. Damage dealt will end the effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6593","treeId":"coa-primalist-83","index":6593,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_holy_pureofheart.png","maxRank":1,"name":"Cragforming","description":"Increases the duration of Earth's Embrace by 4 sec.","rankDescriptions":["Increases the duration of Earth's Embrace by 4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6267","treeId":"coa-primalist-83","index":6267,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/ability_deepwinddunk_dunk.png","maxRank":1,"name":"Cave In","description":"Cave in your target, interrupting spellcasting and preventing any spell in that school from being cast for 4 seconds. Successfully interrupting a target generates 1 stack of Earthshaping.","rankDescriptions":["Cave in your target, interrupting spellcasting and preventing any spell in that school from being cast for 4 seconds. Successfully interrupting a target generates 1 stack of Earthshaping."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7537","treeId":"coa-primalist-83","index":7537,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_shoulder_leather_pvpdruid_c_02.png","maxRank":2,"name":"Cave Dweller","description":"Increases your maximum Rage by 30 and reduces spell pushback suffered from damaging attacks by 100%.","rankDescriptions":["Increases your maximum Rage by 15 and reduces spell pushback suffered from damaging attacks by 50%.","Increases your maximum Rage by 30 and reduces spell pushback suffered from damaging attacks by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2386","treeId":"coa-primalist-83","index":2386,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/achievement_boss_princesstheradras.png","maxRank":1,"name":"Blessing of Therazane","description":"Each stack of Earthshaping now increases your critical damage dealt by 5%.","rankDescriptions":["Each stack of Earthshaping now increases your critical damage dealt by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6788","treeId":"coa-primalist-83","index":6788,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/6bf_blackrock_nova.png","maxRank":1,"name":"Eruption","description":"Launch 1 Magma Geode at your target every 0 sec for 0.2 seconds, dealing cond(gt(SPFI, SPN), 58+200+SPFI*0.2, 58+200+SPN*0.2) Firestorm Damage. Duration increased by 0.2 sec for each stack of Earthshaping.","rankDescriptions":["Launch 1 Magma Geode at your target every 0 sec for 0.2 seconds, dealing cond(gt(SPFI, SPN), 58+200+SPFI*0.2, 58+200+SPN*0.2) Firestorm Damage. Duration increased by 0.2 sec for each stack of Earthshaping."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30104","treeId":"coa-primalist-83","index":30104,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_rhyolith_lavapool.png","maxRank":1,"name":"Journey To The Core","description":"Damage dealt by Seismic Tremor now has a 20% chance to form a crag beneath your target that explodes after 3 seconds. Can only occur once every 3 sec.Crag (Damage)Deals 173 + 35% nature SP Physical Damage to up to 5 enemies within 5 yds and increases the damage they take from your Earthquake by 20% for 5 seconds.","rankDescriptions":["Damage dealt by Seismic Tremor now has a 20% chance to form a crag beneath your target that explodes after 3 seconds. Can only occur once every 3 sec.Crag (Damage)Deals 173 + 35% nature SP Physical Damage to up to 5 enemies within 5 yds and increases the damage they take from your Earthquake by 20% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7545","treeId":"coa-primalist-83","index":7545,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_elemental_primal_earth.png","maxRank":1,"name":"Geomolding","description":"Periodic damage dealt by Seismic Tremor now grants Geomolding for 15 seconds.Geomolding (Proc)Your next Terrasurge costs 2 additional Rage and deals 3% increased damage. Stacks 20 times.","rankDescriptions":["Periodic damage dealt by Seismic Tremor now grants Geomolding for 15 seconds.Geomolding (Proc)Your next Terrasurge costs 2 additional Rage and deals 3% increased damage. Stacks 20 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4208","treeId":"coa-primalist-83","index":4208,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_scrollofearth_border.png","maxRank":1,"name":"Therazane's Blessing","description":"Level 50 Passive Allows the periodic damage dealt by Seismic Tremor, Seismic Crash, and Earthquake to critically strike.","rankDescriptions":["Level 50 Passive Allows the periodic damage dealt by Seismic Tremor, Seismic Crash, and Earthquake to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-6257","treeId":"coa-primalist-83","index":6257,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_chaoticspikes_border.png","maxRank":1,"name":"Magmatism","description":"Reduces the cooldown of Eruption by -15 sec and causes Magma Geodes to deal 30% more damage to enemies above 75% health.","rankDescriptions":["Reduces the cooldown of Eruption by -15 sec and causes Magma Geodes to deal 30% more damage to enemies above 75% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6587","treeId":"coa-primalist-83","index":6587,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_elementalearth2.png","maxRank":1,"name":"Heavy Earth","description":"Your Terrasurge now consumes all stacks of Earthshaping to refresh the duration of Golem Form and grant you Heavy Earth.Heavy Earth (Proc)Each stack of Earthshaping consumed grants you 5% additional damage dealt with Stoneshard and Geode Barrage as Nature Damage while this is active. Lasts 8 seconds. While active you cannot generate Earthshaping.","rankDescriptions":["Your Terrasurge now consumes all stacks of Earthshaping to refresh the duration of Golem Form and grant you Heavy Earth.Heavy Earth (Proc)Each stack of Earthshaping consumed grants you 5% additional damage dealt with Stoneshard and Geode Barrage as Nature Damage while this is active. Lasts 8 seconds. While active you cannot generate Earthshaping."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7547","treeId":"coa-primalist-83","index":7547,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/inv_ascend_stone_03.png","maxRank":1,"name":"Rupturer","description":"Damage dealt by Seismic Spike or Seismic Crash now generates a stack of Geomolding. Critically striking with Seismic Spike or Seismic Crash now generates an additional stack of Geomolding plus a stack of Earthshaping. Casting Lithic Lance now reduces the cooldown of Terrasurge by -4 sec.","rankDescriptions":["Damage dealt by Seismic Spike or Seismic Crash now generates a stack of Geomolding. Critically striking with Seismic Spike or Seismic Crash now generates an additional stack of Geomolding plus a stack of Earthshaping. Casting Lithic Lance now reduces the cooldown of Terrasurge by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31209","treeId":"coa-primalist-84","index":31209,"prerequisiteId":"coa-entry-4060","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4060","requiredRank":1},{"talentId":"coa-entry-30633","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_mace_1h_draenorraid_d_04green.png","maxRank":1,"name":"Hammer of Life","description":"Your melee attacks and abilities now heal up to 3 nearby allies and damage up to 5 nearby enemies equal to 20% of the damage dealt.","rankDescriptions":["Your melee attacks and abilities now heal up to 3 nearby allies and damage up to 5 nearby enemies equal to 20% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":false},{"id":"coa-entry-4060","treeId":"coa-primalist-84","index":4060,"prerequisiteId":"coa-entry-30633","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30633","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_alliance_keeper_of_the_grove.png","maxRank":1,"name":"Grove Training","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-29230","treeId":"coa-primalist-84","index":29230,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/seismic_wave.png","maxRank":1,"name":"Seismic Wave","description":"Create a seismic wave of healing water around you, healing for 67 + 60% healing + 28% AP health to up to 8 allies and dealing 47 + 28% AP + 30% healing Nature damage to enemies in a 25 yd radius.","rankDescriptions":["Create a seismic wave of healing water around you, healing for 67 + 60% healing + 28% AP health to up to 8 allies and dealing 47 + 28% AP + 30% healing Nature damage to enemies in a 25 yd radius."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29363","treeId":"coa-primalist-84","index":29363,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/ability_monk_pathofmists.png","maxRank":1,"name":"Spirit Charge","description":"Charge to an ally's aid, healing them for 53 + 20% healing + 20% AP and dealing 67 + 20% healing + 20% AP Nature damage to enemies within 5 yds of them.","rankDescriptions":["Charge to an ally's aid, healing them for 53 + 20% healing + 20% AP and dealing 67 + 20% healing + 20% AP Nature damage to enemies within 5 yds of them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6509","treeId":"coa-primalist-84","index":6509,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/achievement_zone_nagrand_02.png","maxRank":2,"name":"Tranquil Mind","description":"Increases your damage and healing done by 8%.","rankDescriptions":["Increases your damage and healing done by 4%.","Increases your damage and healing done by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30785","treeId":"coa-primalist-84","index":30785,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_mace_2h_pandariaquest_b_01.png","maxRank":1,"name":"Nature's Fury","description":"Auto attacks now have a 20% chance to deal Weapon Damage and restore 5% of your maximum mana.","rankDescriptions":["Auto attacks now have a 20% chance to deal Weapon Damage and restore 5% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6236","treeId":"coa-primalist-84","index":6236,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/nhi_spiritualarmor_border.png","maxRank":1,"name":"Spiritual Warrior","description":"Increases the critical strike chance of Spirit Charge by 25%.","rankDescriptions":["Increases the critical strike chance of Spirit Charge by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6243","treeId":"coa-primalist-84","index":6243,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/nhi_chaoshealing_border.png","maxRank":1,"name":"Vitality Surge","description":"All effective healing done now has a 25% chance to increase the haste of party and raid members by 5% for 20 seconds. Does not stack with similar effects.","rankDescriptions":["All effective healing done now has a 25% chance to increase the haste of party and raid members by 5% for 20 seconds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":false},{"id":"coa-entry-11243","treeId":"coa-primalist-84","index":11243,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_misc_druidstone01.png","maxRank":1,"name":"Grovekeeper's Presence","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.","rankDescriptions":["Increases chance to hit with all spells and attacks by 1% for you and party and raid members. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":false},{"id":"coa-entry-9687","treeId":"coa-primalist-84","index":9687,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/inv_iceelementalprimal_green.png","maxRank":1,"name":"Hand of a God","description":"Reduces the Rage cost of Hand of the Earthmother by -5.","rankDescriptions":["Reduces the Rage cost of Hand of the Earthmother by -5."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30508","treeId":"coa-primalist-84","index":30508,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/custom_t_ghostwater_border.png","maxRank":1,"name":"Blessing of Neptulon","description":"Your Hand of the Earthmother now bounces to 1 ally near the primary target.","rankDescriptions":["Your Hand of the Earthmother now bounces to 1 ally near the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7335","treeId":"coa-primalist-84","index":7335,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_custom_naaru_hammer_yellow.png","maxRank":1,"name":"Power Hammer","description":"You now generate 10% more Rage from damage dealt, increased by 15% while a two-handed weapon is equipped.","rankDescriptions":["You now generate 10% more Rage from damage dealt, increased by 15% while a two-handed weapon is equipped."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30346","treeId":"coa-primalist-84","index":30346,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/nhi_naturelighting_border.png","maxRank":2,"name":"Ancient Power","description":"Increases your Strength by 10% and your hit chance by 6%.","rankDescriptions":["Increases your Strength by 5% and your hit chance by 3%.","Increases your Strength by 10% and your hit chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6238","treeId":"coa-primalist-84","index":6238,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/nhi_natureroots_border.png","maxRank":1,"name":"Battleweaver","description":"Effective healing now increases your melee haste and damage by 2% for 5 seconds, stacking 3 times.","rankDescriptions":["Effective healing now increases your melee haste and damage by 2% for 5 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30949","treeId":"coa-primalist-84","index":30949,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_waterelementalmount.png","maxRank":1,"name":"Elemental Cascade","description":"Critical strikes with Wildclaw now unleash an Elemental Cascade.Elemental CascadeRestores 32 + 10% AP + 10% healing health to allies in a 12 yd radius around you.","rankDescriptions":["Critical strikes with Wildclaw now unleash an Elemental Cascade.Elemental CascadeRestores 32 + 10% AP + 10% healing health to allies in a 12 yd radius around you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30968","treeId":"coa-primalist-84","index":30968,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/spell_nature_stranglevines.png","maxRank":1,"name":"Thorns","description":"Physical damage dealt or taken now has a 10% chance to unleash Thorns on an enemy.Thorns (Talent)Create thorns around an enemy, rooting them and dealing 270 Nature Damage over 6 seconds. Direct damage taken may end this effect.","rankDescriptions":["Physical damage dealt or taken now has a 10% chance to unleash Thorns on an enemy.Thorns (Talent)Create thorns around an enemy, rooting them and dealing 270 Nature Damage over 6 seconds. Direct damage taken may end this effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30966","treeId":"coa-primalist-84","index":30966,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/spell_nature_protectionformnature.png","maxRank":1,"name":"Earth's Guidance","description":"Damage and healing done by Seismic spells now has a 20% chance to reduce the cooldown of all Seismic spells by -1 sec.","rankDescriptions":["Damage and healing done by Seismic spells now has a 20% chance to reduce the cooldown of all Seismic spells by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7334","treeId":"coa-primalist-84","index":7334,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/ability_druid_naturalperfection.png","maxRank":1,"name":"Crashing Out","description":"Increases the damage of Seismic Crash by 30%.","rankDescriptions":["Increases the damage of Seismic Crash by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11334","treeId":"coa-primalist-84","index":11334,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/5_assassinskill10_border.png","maxRank":1,"name":"Tears of the Earthmother","description":"Increases the amount of targets hit by Seismic Spike by 4.","rankDescriptions":["Increases the amount of targets hit by Seismic Spike by 4."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9193","treeId":"coa-primalist-84","index":9193,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/epic_rpg_icon_pack_nature_icon_0003s_0000_branch_border.png","maxRank":1,"name":"Infused With Power","description":"Effectively healing allies with Hammer of Life or Hand of the Earthmother now has a 20% chance to apply Infused With Power.Infused With PowerIncreases the critical strike chance of all party and raid members by 5% for 10 seconds. Does not stack with similar effects.","rankDescriptions":["Effectively healing allies with Hammer of Life or Hand of the Earthmother now has a 20% chance to apply Infused With Power.Infused With PowerIncreases the critical strike chance of all party and raid members by 5% for 10 seconds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-11193","treeId":"coa-primalist-84","index":11193,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_60dungeon_ring5b.png","maxRank":1,"name":"Protector's Hand","description":"You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects.","rankDescriptions":["You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-6651","treeId":"coa-primalist-84","index":6651,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/nhi_water_eye_border.png","maxRank":1,"name":"Primal Power","description":"Casting Seismic Wave now causes your next Hand of the Earthmother within 8 seconds to cost -50% less Rage.","rankDescriptions":["Casting Seismic Wave now causes your next Hand of the Earthmother within 8 seconds to cost -50% less Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6246","treeId":"coa-primalist-84","index":6246,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/nhi_naturestone_border.png","maxRank":1,"name":"Ring of Life","description":"Allies within 40 yds receive 6% increased healing. Does not stack with similar effects. In addition, your Magic damage taken is reduced by -10%.","rankDescriptions":["Allies within 40 yds receive 6% increased healing. Does not stack with similar effects. In addition, your Magic damage taken is reduced by -10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29350","treeId":"coa-primalist-84","index":29350,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/achievement_reputation_guardiansofcenarius.png","maxRank":1,"name":"Sacred Grove","description":"Create a Sacred Grove in a 15 yd radius around you for 16 seconds, instantly healing all nearby party and raid members for 2002 + 100% AP. While active, up to 12 allies in the grove receive 25% increased healing, and regain 3% of their missing health, Rage, and mana every 2 sec.","rankDescriptions":["Create a Sacred Grove in a 15 yd radius around you for 16 seconds, instantly healing all nearby party and raid members for 2002 + 100% AP. While active, up to 12 allies in the grove receive 25% increased healing, and regain 3% of their missing health, Rage, and mana every 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6230","treeId":"coa-primalist-84","index":6230,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_tradeskillitem_lessersorcerersearth.png","maxRank":1,"name":"Keeper of the Grove","description":"Reduces the cooldown of Bramblepatch by -30 sec.","rankDescriptions":["Reduces the cooldown of Bramblepatch by -30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6654","treeId":"coa-primalist-84","index":6654,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/nhi_spiritliquid_border.png","maxRank":1,"name":"Running on Instinct","description":"Passing through allies with Primal Rush now heals up to 5 of them for 166 + 25% AP + 35% SP and grants a stack of Running on Instinct.Running on Instinct (Proc)Damage of Wildclaw and Seismic spells is increased by 5% for 20 seconds, stacking 5 times.","rankDescriptions":["Passing through allies with Primal Rush now heals up to 5 of them for 166 + 25% AP + 35% SP and grants a stack of Running on Instinct.Running on Instinct (Proc)Damage of Wildclaw and Seismic spells is increased by 5% for 20 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7107","treeId":"coa-primalist-84","index":7107,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_druid_symbiosis.png","maxRank":1,"name":"Earthmother's Binding","description":"Envelop a target in the Earthmother's love, healing them for 501 + 100% healing + 100% AP. If used on an ally, 30% of their damage taken is redirected to you for 6 seconds.","rankDescriptions":["Envelop a target in the Earthmother's love, healing them for 501 + 100% healing + 100% AP. If used on an ally, 30% of their damage taken is redirected to you for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30628","treeId":"coa-primalist-84","index":30628,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_druid_cyclone.png","maxRank":2,"name":"Verdant Warrior","description":"Increases the damage of Wildclaw by 30%.","rankDescriptions":["Increases the damage of Wildclaw by 15%.","Increases the damage of Wildclaw by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11184","treeId":"coa-primalist-84","index":11184,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/spell_nature_thorns.png","maxRank":1,"name":"Earthmother's Warden","description":"Reduces the cooldown of your Seismic abilities by -2 sec.","rankDescriptions":["Reduces the cooldown of your Seismic abilities by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30784","treeId":"coa-primalist-84","index":30784,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/spell_nature_naturetouchgrow.png","maxRank":1,"name":"Grove Tender","description":"While inside your Bramblepatch your Seismic abilities now have a -80% reduced cooldown. In addition, the duration of Bramblepatch is doubled.","rankDescriptions":["While inside your Bramblepatch your Seismic abilities now have a -80% reduced cooldown. In addition, the duration of Bramblepatch is doubled."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9733","treeId":"coa-primalist-84","index":9733,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/ability_shawaterelemental_reform.png","maxRank":1,"name":"Douse","description":"Striking an enemy with Seismic spells now deals an additional 1 + 8% AP Frost damage and reduces all resistances by 75 and increases their Magic damage taken by -2% for 10 seconds.","rankDescriptions":["Striking an enemy with Seismic spells now deals an additional 1 + 8% AP Frost damage and reduces all resistances by 75 and increases their Magic damage taken by -2% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-11163","treeId":"coa-primalist-84","index":11163,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/spell_druid_germination.png","maxRank":1,"name":"Flourishing Growth","description":"Empower party and raid members within 40 yds with verdant strength, increasing their attack or spell power by 95 for 20 seconds. Does not stack with similar effects.","rankDescriptions":["Empower party and raid members within 40 yds with verdant strength, increasing their attack or spell power by 95 for 20 seconds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-6240","treeId":"coa-primalist-84","index":6240,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/nhi_naturewave_border.png","maxRank":1,"name":"Ride the Wave","description":"Seismic Wave now increases the movement speed of affected allies by 30% for 4 seconds.","rankDescriptions":["Seismic Wave now increases the movement speed of affected allies by 30% for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6662","treeId":"coa-primalist-84","index":6662,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/ability_druid_nourish.png","maxRank":1,"name":"Nature's Blessing","description":"Healing allies with Seismic Wave now heals them for an additional 20% of the healing done every 3 sec for 9 sec.","rankDescriptions":["Healing allies with Seismic Wave now heals them for an additional 20% of the healing done every 3 sec for 9 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6242","treeId":"coa-primalist-84","index":6242,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_frost_summonwaterelemental.png","maxRank":1,"name":"Infusion of Neptulon","description":"Critically healing an ally now increases your attack power by 15% for your next 3 attacks. Lasts 12 seconds.","rankDescriptions":["Critically healing an ally now increases your attack power by 15% for your next 3 attacks. Lasts 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6234","treeId":"coa-primalist-84","index":6234,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/nhi_natureambush_border.png","maxRank":1,"name":"Earthmother's Empowerment","description":"Hand of the Earthmother now increases the target's dodge chance by 15% for 5 seconds.","rankDescriptions":["Hand of the Earthmother now increases the target's dodge chance by 15% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-14234","treeId":"coa-primalist-84","index":14234,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/nhi_nature_slimeroar_border.png","maxRank":1,"name":"Earthmother's Roar","description":"Your Protective Roar now also heals allies equal to 20% of their missing health.","rankDescriptions":["Your Protective Roar now also heals allies equal to 20% of their missing health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11236","treeId":"coa-primalist-84","index":11236,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/ability_druid_empoweredrejuvination.png","maxRank":1,"name":"Druid Training","description":"Your Geode Barrage now heals all allies within 20 yds equal to 10% of the damage dealt.","rankDescriptions":["Your Geode Barrage now heals all allies within 20 yds equal to 10% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30967","treeId":"coa-primalist-84","index":30967,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/ability_shaman_stormstrike.png","maxRank":1,"name":"Shaman Training","description":"Damage dealt by Wildclaw now reduces the enemy's armor by -4% for 20 seconds, stacking up to 5 times.","rankDescriptions":["Damage dealt by Wildclaw now reduces the enemy's armor by -4% for 20 seconds, stacking up to 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6235","treeId":"coa-primalist-84","index":6235,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_ore_gold_nugget2.png","maxRank":1,"name":"Primordial Earth","description":"Critical strikes with melee attacks now summon 1 Spirit of Life that immediately casts a lesser Spirit Charge on a nearby ally, healing them for 397 + 20% nature SP + 20% AP and dealing 404 + 20% nature SP + 20% AP Nature damage to nearby enemies.","rankDescriptions":["Critical strikes with melee attacks now summon 1 Spirit of Life that immediately casts a lesser Spirit Charge on a nearby ally, healing them for 397 + 20% nature SP + 20% AP and dealing 404 + 20% nature SP + 20% AP Nature damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29664","treeId":"coa-primalist-84","index":29664,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_evoker_spiritbloom.png","maxRank":1,"name":"Verdant Chase","description":"Your Spirit Charge and Primal Rush now cooldown faster.","rankDescriptions":["Your Spirit Charge and Primal Rush now cooldown faster."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11134","treeId":"coa-primalist-84","index":11134,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/_liquidstone_water.png","maxRank":1,"name":"Neptulon's Wrath","description":"Emanate an aura for 15 seconds, causing allied players to deal 35% AP additional damage as Froststorm Damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute.","rankDescriptions":["Emanate an aura for 15 seconds, causing allied players to deal 35% AP additional damage as Froststorm Damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-11153","treeId":"coa-primalist-84","index":11153,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/ability_shaman_astralshift.png","maxRank":1,"name":"Primal Awakening","description":"Enrage all nearby allies, increasing their haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes.","rankDescriptions":["Enrage all nearby allies, increasing their haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-7333","treeId":"coa-primalist-84","index":7333,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ancientoflore.png","maxRank":1,"name":"Ancient of Lore","description":"Funnel nature's energies into yourself, transforming into an Ancient of Lore for 20 seconds. While active, your stats are increased by 20% and nearby party members have their costs reduced by -30%. While transformed, your movement speed is reduced by -30%.","rankDescriptions":["Funnel nature's energies into yourself, transforming into an Ancient of Lore for 20 seconds. While active, your stats are increased by 20% and nearby party members have their costs reduced by -30%. While transformed, your movement speed is reduced by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29383","treeId":"coa-primalist-84","index":29383,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ancientofwar.png","maxRank":1,"name":"Ancient of War","description":"Funnel nature's fury into yourself, transforming into an Ancient of War for 20 seconds. While active, your Hammer of Life effectiveness is increased by 30% and nearby party members have their critical strike chance increased by 20%. While transformed, your movement speed is reduced by -30%.","rankDescriptions":["Funnel nature's fury into yourself, transforming into an Ancient of War for 20 seconds. While active, your Hammer of Life effectiveness is increased by 30% and nearby party members have their critical strike chance increased by 20%. While transformed, your movement speed is reduced by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30020","treeId":"coa-primalist-84","index":30020,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_ability_monk_jadefirestomp.png","maxRank":1,"name":"Eternally Chosen","description":"Spirit Charge and Primal Rush now summons 2 Spirits of Life that immediately cast a lesser Spirit Charge on the nearest ally, healing them for 397 + 20% nature SP + 20% AP and dealing 404 + 20% nature SP + 20% AP Nature damage to nearby enemies.","rankDescriptions":["Spirit Charge and Primal Rush now summons 2 Spirits of Life that immediately cast a lesser Spirit Charge on the nearest ally, healing them for 397 + 20% nature SP + 20% AP and dealing 404 + 20% nature SP + 20% AP Nature damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30633","treeId":"coa-primalist-87","index":30633,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/spells/spell_nature_stoneclawtotem.png","maxRank":1,"name":"Grip","description":"Summon a stone hand to grip the target, incapacitating them for 40 seconds (8 sec vs. players). Damage dealt will break the effect.","rankDescriptions":["Summon a stone hand to grip the target, incapacitating them for 40 seconds (8 sec vs. players). Damage dealt will break the effect."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30254","treeId":"coa-primalist-87","index":30254,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/ability_druid_berserk.png","maxRank":1,"name":"Primal Rush","description":"Rush forward 20 yd through enemies in a line, dealing 40 Nature damage. Generates 20 Rage.","rankDescriptions":["Rush forward 20 yd through enemies in a line, dealing 40 Nature damage. Generates 20 Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29252","treeId":"coa-primalist-87","index":29252,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":1,"icon":"/assets/ui/spells/custom_elementl(earth)_b_01_border.png","maxRank":1,"name":"Boulder Dash","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6445","treeId":"coa-primalist-87","index":6445,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_misc_06.png","maxRank":1,"name":"Heavy Handed","description":"Hand of the Earthmother now increases the Armor of yourself and your target by 10% for 10 seconds.","rankDescriptions":["Hand of the Earthmother now increases the Armor of yourself and your target by 10% for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12208","treeId":"coa-primalist-87","index":12208,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/nhi_natureclover_border.png","maxRank":1,"name":"Environmentalist","description":"Reduces the cost of your spells and abilities by -5%.","rankDescriptions":["Reduces the cost of your spells and abilities by -5%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7105","treeId":"coa-primalist-87","index":7105,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/5_assassinskill43_border.png","maxRank":1,"name":"Tectonic Flow","description":"Reduces the cooldown of Primal Rush and Boulder Dash by -20%.","rankDescriptions":["Reduces the cooldown of Primal Rush and Boulder Dash by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6289","treeId":"coa-primalist-87","index":6289,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":2,"icon":"/assets/ui/spells/5_assassinskill26_border.png","maxRank":1,"name":"Rolling Momentum","description":"Increases the movement speed granted by Boulder Dash by 30%.","rankDescriptions":["Increases the movement speed granted by Boulder Dash by 30%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6665","treeId":"coa-primalist-87","index":6665,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":2,"icon":"/assets/ui/spells/inv_ore_blackrock_ore.png","maxRank":1,"name":"Rage Rolling","description":"Casting Boulder Dash now instantly generates 50 Rage.","rankDescriptions":["Casting Boulder Dash now instantly generates 50 Rage."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6298","treeId":"coa-primalist-87","index":6298,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/spell_nature_giftofthewild.png","maxRank":2,"name":"Bountiful Boons","description":"Increases the effectiveness of Boons and Instincts by 20%.","rankDescriptions":["Increases the effectiveness of Boons and Instincts by 10%.","Increases the effectiveness of Boons and Instincts by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7326","treeId":"coa-primalist-87","index":7326,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/5_assassinskill31_border.png","maxRank":1,"name":"Keen Senses","description":"Increases your critical strike chance and haste by 3%.","rankDescriptions":["Increases your critical strike chance and haste by 3%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7844","treeId":"coa-primalist-87","index":7844,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/ability_druid_primalprecision.png","maxRank":2,"name":"Focus","description":"Increases your Intellect and Stamina by 10%.","rankDescriptions":["Increases your Intellect and Stamina by 5%.","Increases your Intellect and Stamina by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29299","treeId":"coa-primalist-87","index":29299,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/inv_eng_bombroot.png","maxRank":1,"name":"Bramblepatch","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7796","treeId":"coa-primalist-87","index":7796,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/5_shamanskill09_border.png","maxRank":1,"name":"Primal Convergence","description":"Ascend into a primal convergence, increasing the effectiveness of your Boons by 100% for 30 seconds.","rankDescriptions":["Ascend into a primal convergence, increasing the effectiveness of your Boons by 100% for 30 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7321","treeId":"coa-primalist-87","index":7321,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/inv_holiday_hearthstonemidsummerfirefestival.png","maxRank":1,"name":"Rock Barrier","description":"2 Charges, 20 sec recharge Raise rocks from beneath you, increasing your Armor by 100 + 300% Stamina, scaling with your Stamina. Lasts for 10 attacks or 10 seconds. Expending a charge of Rock Barrier launches a Geode at the enemy.GeodeHurl an enchanted stone at the target, dealing 173 + 34.9% SP + 8.5% AP Physical Damage and generating 5 Rage.","rankDescriptions":["2 Charges, 20 sec recharge Raise rocks from beneath you, increasing your Armor by 100 + 300% Stamina, scaling with your Stamina. Lasts for 10 attacks or 10 seconds. Expending a charge of Rock Barrier launches a Geode at the enemy.GeodeHurl an enchanted stone at the target, dealing 173 + 34.9% SP + 8.5% AP Physical Damage and generating 5 Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6260","treeId":"coa-primalist-87","index":6260,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/monk_ability_fistoffury.png","maxRank":1,"name":"Fury of the Elements","description":"Your Primal Rush now generates 10 additional Rage.","rankDescriptions":["Your Primal Rush now generates 10 additional Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12360","treeId":"coa-primalist-87","index":12360,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_misc_head_tauren_02.png","maxRank":1,"name":"Untamed","description":"Increases the range of Primal Rush by 3 yds.","rankDescriptions":["Increases the range of Primal Rush by 3 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12567","treeId":"coa-primalist-87","index":12567,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/spell_shaman_unleashweapon_life.png","maxRank":1,"name":"Primal Strikes","description":"Critical strikes with abilities that deal Physical damage now generate 3 Rage.","rankDescriptions":["Critical strikes with abilities that deal Physical damage now generate 3 Rage."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30689","treeId":"coa-primalist-87","index":30689,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/nhi_earthtranquility_border.png","maxRank":1,"name":"Primal Fury","description":"You now passively generate 4 Rage every 5 sec.","rankDescriptions":["You now passively generate 4 Rage every 5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7843","treeId":"coa-primalist-87","index":7843,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/inv_misc_monsterclaw_04.png","maxRank":2,"name":"Nature's Call","description":"Increases your healing done and received by 12%.","rankDescriptions":["Increases your healing done and received by 6%.","Increases your healing done and received by 12%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7327","treeId":"coa-primalist-87","index":7327,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_druid_kingofthejungle.png","maxRank":1,"name":"Protective Roar","description":"Roar with noble tenacity, generating 20 Rage and granting 10% increased maximum health to all party and raid members for 12 seconds.","rankDescriptions":["Roar with noble tenacity, generating 20 Rage and granting 10% increased maximum health to all party and raid members for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6590","treeId":"coa-primalist-87","index":6590,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_custom_hearthstone_nature.png","maxRank":2,"name":"Stone Cold","description":"Increases your maximum health by 8%.","rankDescriptions":["Increases your maximum health by 4%.","Increases your maximum health by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7798","treeId":"coa-primalist-87","index":7798,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_legion_faction_dreamweavers.png","maxRank":1,"name":"Dreamslip","description":"Shifts a party member into the Emerald Dream for 15 seconds, making them immune to damage and unable to attack or cast spells. While active, the target quickly regenerates health and mana and cannot be seen by other players or creatures. Cannot be used on self.","rankDescriptions":["Shifts a party member into the Emerald Dream for 15 seconds, making them immune to damage and unable to attack or cast spells. While active, the target quickly regenerates health and mana and cannot be seen by other players or creatures. Cannot be used on self."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29233","treeId":"coa-primalist-87","index":29233,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/spell_nature_naturetouchdecay.png","maxRank":1,"name":"Earthmother's Precision","description":"Seismic Crash now increases the chance for allies to hit with all spells against the enemy by 3% for 15 seconds.","rankDescriptions":["Seismic Crash now increases the chance for allies to hit with all spells against the enemy by 3% for 15 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6305","treeId":"coa-primalist-87","index":6305,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/inv_misc_stonetablet_05.png","maxRank":1,"name":"Stonefaced","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29362","treeId":"coa-primalist-87","index":29362,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/spell_druid_primaltenacity.png","maxRank":1,"name":"Bearskin","description":"Reduces all damage taken by -60% and reduces the duration of root, stun, and incapacitate effects on you by -30% for 10 seconds.","rankDescriptions":["Reduces all damage taken by -60% and reduces the duration of root, stun, and incapacitate effects on you by -30% for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29231","treeId":"coa-primalist-87","index":29231,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/ui_darkshore_warfront_alliance_faerie_dragon.png","maxRank":1,"name":"Fae Presence","description":"Removes the reagent cost from Fae Dust and causes it to increase the target's stealth detection.","rankDescriptions":["Removes the reagent cost from Fae Dust and causes it to increase the target's stealth detection."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7323","treeId":"coa-primalist-87","index":7323,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_nature_undyingstrength.png","maxRank":1,"name":"Mending Touch","description":"Soothing Touch now dispels an additional poison and disease effect.","rankDescriptions":["Soothing Touch now dispels an additional poison and disease effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9843","treeId":"coa-primalist-87","index":9843,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_shaman_earthlivingweapon.png","maxRank":1,"name":"Emerald Will","description":"Successfully dispelling a poison or disease effect with Soothing Touch now heals for 4% maximum health.","rankDescriptions":["Successfully dispelling a poison or disease effect with Soothing Touch now heals for 4% maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6262","treeId":"coa-primalist-87","index":6262,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_shaman_giftearthmother.png","maxRank":1,"name":"Therazane's Gift","description":"Therazane's Rage now generates an additional 5 Rage and 5% additional mana.","rankDescriptions":["Therazane's Rage now generates an additional 5 Rage and 5% additional mana."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6211","treeId":"coa-primalist-87","index":6211,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/hunter_pvp_diamondice.png","maxRank":1,"name":"Mineralization","description":"While at or below 35% health, your spells and abilities will increase your healing received by 10% for 6 seconds.","rankDescriptions":["While at or below 35% health, your spells and abilities will increase your healing received by 10% for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7339","treeId":"coa-primalist-87","index":7339,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/spell_nature_protectionformnature.png","maxRank":1,"name":"Natural Efficiency","description":"Whenever you are struck by a root, stun, or incapacitate effect you are now instantly healed for 4% of your maximum health.","rankDescriptions":["Whenever you are struck by a root, stun, or incapacitate effect you are now instantly healed for 4% of your maximum health."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7108","treeId":"coa-primalist-87","index":7108,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/custom_t_naturesguardian_border.png","maxRank":1,"name":"Grove Guardian","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30591","treeId":"coa-primalist-87","index":30591,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/_hearthstone_necklace_warrior.png","maxRank":1,"name":"Earthmother's Pendant","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7548","treeId":"coa-primalist-87","index":7548,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/inv_archaeology_70_tauren_handsmoothedpyrestone.png","maxRank":1,"name":"Earthmother's Blessing","description":"Attacks which would otherwise kill you now instead reform you in stone, healing for 30% maximum health and reducing your Physical damage taken by -70% for 3 seconds. Can only occur once every 2 min.","rankDescriptions":["Attacks which would otherwise kill you now instead reform you in stone, healing for 30% maximum health and reducing your Physical damage taken by -70% for 3 seconds. Can only occur once every 2 min."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7322","treeId":"coa-primalist-87","index":7322,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/nhi_nature_growl_border.png","maxRank":1,"name":"Protector of the Grove","description":"Dealing direct damage now reduces the cooldown of Bearskin, Primal Convergence, and Boulder Dash by -1 sec.","rankDescriptions":["Dealing direct damage now reduces the cooldown of Bearskin, Primal Convergence, and Boulder Dash by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6269","treeId":"coa-primalist-87","index":6269,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_relics_totemofrebirth.png","maxRank":1,"name":"Primal Totem","description":"Summon a Primal Totem that increases the primary stats of party and raid members by 20% within 40 yds for 15 seconds.","rankDescriptions":["Summon a Primal Totem that increases the primary stats of party and raid members by 20% within 40 yds for 15 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30105","treeId":"coa-primalist-87","index":30105,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_druid_ironbark.png","maxRank":1,"name":"Wildheart","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7488","treeId":"coa-primalist-91","index":7488,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/spell_shaman_earthquake.png","maxRank":1,"name":"Quake","description":"2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 13 + 20% nature SP + 10% AP Nature damage to enemies within 8 yds and reduces their melee and ranged haste by -20% for 10 seconds.","rankDescriptions":["2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 13 + 20% nature SP + 10% AP Nature damage to enemies within 8 yds and reduces their melee and ranged haste by -20% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4064","treeId":"coa-primalist-91","index":4064,"prerequisiteId":"coa-entry-30254","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30254","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/spell_holy_devotion.png","maxRank":1,"name":"Mountain Giant","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7514","treeId":"coa-primalist-91","index":7514,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/spell_nature_stoneskintotem.png","maxRank":2,"name":"Unyielding Form","description":"Increases your parry and dodge chance by 6% and your Armor contribution from mail and plate by 50%.","rankDescriptions":["Increases your parry and dodge chance by 3% and your Armor contribution from mail and plate by 25%.","Increases your parry and dodge chance by 6% and your Armor contribution from mail and plate by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7507","treeId":"coa-primalist-91","index":7507,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_pet_pandarenelementa_earthl.png","maxRank":1,"name":"Seismically Efficient","description":"Increases the Rage generated from Seismic Crash by 5 and Seismic Spike by 2.","rankDescriptions":["Increases the Rage generated from Seismic Crash by 5 and Seismic Spike by 2."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7501","treeId":"coa-primalist-91","index":7501,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/achievement_challengemode_blackrockdepot_silver.png","maxRank":2,"name":"Stone Soldier","description":"Increases the damage of your off hand weapon by 60% and your chance to hit by 6%.","rankDescriptions":["Increases the damage of your off hand weapon by 30% and your chance to hit by 3%.","Increases the damage of your off hand weapon by 60% and your chance to hit by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9214","treeId":"coa-primalist-91","index":9214,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/ability_racial_mountaineer.png","maxRank":1,"name":"King of the Mountain","description":"Level 20 Passive Increases your parry, dodge, and haste rating by 15% of your Strength.","rankDescriptions":["Level 20 Passive Increases your parry, dodge, and haste rating by 15% of your Strength."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7516","treeId":"coa-primalist-91","index":7516,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/ability_shaman_freedomwolf.png","maxRank":1,"name":"Spiritbound","description":"Avoiding attacks now grants you 5 Rage and reduces the cooldown of your Seismic abilities by -1 sec.","rankDescriptions":["Avoiding attacks now grants you 5 Rage and reduces the cooldown of your Seismic abilities by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7493","treeId":"coa-primalist-91","index":7493,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/custom_t_hammerthrow_border.png","maxRank":1,"name":"Mountain Hammer","description":"Throw a hammer at an enemy dealing 49 + 35.5% nature SP + 15.5% AP Physical damage and stunning them for 5 seconds.","rankDescriptions":["Throw a hammer at an enemy dealing 49 + 35.5% nature SP + 15.5% AP Physical damage and stunning them for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7492","treeId":"coa-primalist-91","index":7492,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/_d3earthquake.png","maxRank":1,"name":"Blessed by the Earth","description":"Damage dealt by Primal Rush and Quake now grant Earth's Rage.Earth's RageIncreases movement speed by 4% and haste by 2% for 8 seconds, stacking 5 times.","rankDescriptions":["Damage dealt by Primal Rush and Quake now grant Earth's Rage.Earth's RageIncreases movement speed by 4% and haste by 2% for 8 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7494","treeId":"coa-primalist-91","index":7494,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/mountainking_bash.png","maxRank":1,"name":"Bash","description":"Your auto attacks have a 30% chance to deal 50% Weapon Damage and stun them for 1 seconds.","rankDescriptions":["Your auto attacks have a 30% chance to deal 50% Weapon Damage and stun them for 1 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7527","treeId":"coa-primalist-91","index":7527,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_hammer_29.png","maxRank":1,"name":"Everythings A Nail","description":"Increases the damage of Mountain Hammer by 50%.","rankDescriptions":["Increases the damage of Mountain Hammer by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13527","treeId":"coa-primalist-91","index":13527,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/mace_2h_tyrshammer_d_01.png","maxRank":1,"name":"Hammer Time!","description":"Your Mountain Hammer now strikes up to 5 enemies.","rankDescriptions":["Your Mountain Hammer now strikes up to 5 enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7510","treeId":"coa-primalist-91","index":7510,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_irondwarf_01.png","maxRank":1,"name":"Thane's Guidance","description":"Auto attacks now reduce the cooldown of Mountain Hammer by -1 sec.","rankDescriptions":["Auto attacks now reduce the cooldown of Mountain Hammer by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7515","treeId":"coa-primalist-91","index":7515,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/inv_misc_hearthstonecard_legendary.png","maxRank":1,"name":"Stonebound","description":"Increases the effectiveness of Boon of the Turtle and Earth's Rage by 50%.","rankDescriptions":["Increases the effectiveness of Boon of the Turtle and Earth's Rage by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9215","treeId":"coa-primalist-91","index":9215,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/5_sumstonearmy_border.png","maxRank":1,"name":"Stone Skin","description":"Level 30 Passive You are now immune to bleeds and your Geode Barrage and Seismic ability damage now additionally scales with your parry rating.","rankDescriptions":["Level 30 Passive You are now immune to bleeds and your Geode Barrage and Seismic ability damage now additionally scales with your parry rating."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7487","treeId":"coa-primalist-91","index":7487,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/spell_shaman_unleashweapon_earth.png","maxRank":2,"name":"Tilling the Earth","description":"Increases the chance to trigger Bash by 6% and increases your expertise by 10.","rankDescriptions":["Increases the chance to trigger Bash by 3% and increases your expertise by 5.","Increases the chance to trigger Bash by 6% and increases your expertise by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7528","treeId":"coa-primalist-91","index":7528,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/nhi_naturelighting_border.png","maxRank":1,"name":"Raging Earth","description":"Your Quake now creates a fissure beneath you that deals an additional 73 + 8% AP Nature damage every 2 sec for 6 seconds.","rankDescriptions":["Your Quake now creates a fissure beneath you that deals an additional 73 + 8% AP Nature damage every 2 sec for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7518","treeId":"coa-primalist-91","index":7518,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_racial_avatar.png","maxRank":1,"name":"Earthen Avatar","description":"Become an avatar of the earth, increasing your damage dealt and reducing your damage taken by 15%, and increasing your melee haste by 20% for 20 seconds. Immune to stuns, roots, and snares for the duration. Usable while stunned.","rankDescriptions":["Become an avatar of the earth, increasing your damage dealt and reducing your damage taken by 15%, and increasing your melee haste by 20% for 20 seconds. Immune to stuns, roots, and snares for the duration. Usable while stunned."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7499","treeId":"coa-primalist-91","index":7499,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/_d3hammeroftheancients.png","maxRank":1,"name":"Terrasmash","description":"Damage dealt by your off hand weapon now has a 30% chance to launch a Geode at the enemy.GeodeHurl an enchanted stone at the target, dealing 173 + 34.9% SP + 8.5% AP Physical Damage and generating 5 Rage.","rankDescriptions":["Damage dealt by your off hand weapon now has a 30% chance to launch a Geode at the enemy.GeodeHurl an enchanted stone at the target, dealing 173 + 34.9% SP + 8.5% AP Physical Damage and generating 5 Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7508","treeId":"coa-primalist-91","index":7508,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/achievements_zone_highmountain.png","maxRank":2,"name":"Mountain Thane","description":"Increases your Stamina by 10% and causes Earth's Rage to stack 1 additional time.","rankDescriptions":["Increases your Stamina by 5% and causes Earth's Rage to stack 1 additional time.","Increases your Stamina by 10% and causes Earth's Rage to stack 1 additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7513","treeId":"coa-primalist-91","index":7513,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/achievement_zone_bladesedgemtns_01.png","maxRank":1,"name":"Earthbreaker","description":"Increases your melee haste by 10%.","rankDescriptions":["Increases your melee haste by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7524","treeId":"coa-primalist-91","index":7524,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/icon_upgradestone_undead_legendary.png","maxRank":1,"name":"Primal Guardian","description":"When Earthen Avatar, Bearskin or Rock Barrier is removed or expires, you now gain 10% melee haste and parry chance for 15 seconds.","rankDescriptions":["When Earthen Avatar, Bearskin or Rock Barrier is removed or expires, you now gain 10% melee haste and parry chance for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7506","treeId":"coa-primalist-91","index":7506,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/achievement_dungeon_blackrockcaverns_ascendantlordobsidius.png","maxRank":1,"name":"Earthenforged Barrier","description":"Increases the Armor provided by Rock Barrier by 50% and it now reduces the cost of your spells and abilities by -25% for the duration.","rankDescriptions":["Increases the Armor provided by Rock Barrier by 50% and it now reduces the cost of your spells and abilities by -25% for the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11196","treeId":"coa-primalist-91","index":11196,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/spell_nature_rockbiter.png","maxRank":1,"name":"Rock Solid","description":"Increases the amount of charges of Rock Barrier by 5.","rankDescriptions":["Increases the amount of charges of Rock Barrier by 5."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9216","treeId":"coa-primalist-91","index":9216,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/uico_nature_spell_02_border.png","maxRank":1,"name":"Call of the Mountain","description":"Level 40 Passive Reaching 5 stacks of Earth's Rage now grants Call of the Mountain.Call of the MountainIncreases your parry chance by 5% and reduces damage taken by -5%.","rankDescriptions":["Level 40 Passive Reaching 5 stacks of Earth's Rage now grants Call of the Mountain.Call of the MountainIncreases your parry chance by 5% and reduces damage taken by -5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-7805","treeId":"coa-primalist-91","index":7805,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/spell_nature_earthelemental_totem.png","maxRank":1,"name":"Quakeformer","description":"Casting Wildclaw and Seismic abilities now has a 25% chance to refresh a charge of Quake.","rankDescriptions":["Casting Wildclaw and Seismic abilities now has a 25% chance to refresh a charge of Quake."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7500","treeId":"coa-primalist-91","index":7500,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/inv_tradeskillitem_sorcererearth.png","maxRank":1,"name":"Resources of the Earth","description":"Critical strikes now grant allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","rankDescriptions":["Critical strikes now grant allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7503","treeId":"coa-primalist-91","index":7503,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/achievement_boss_highmaul_earthenfury.png","maxRank":1,"name":"Mountain Mover","description":"Avoiding an attack grants a stack of Mountain Mover for 10 seconds, stacking 5 times. Wildclaw consumes Mountain Mover stacks to cost -10% less Rage per stack.","rankDescriptions":["Avoiding an attack grants a stack of Mountain Mover for 10 seconds, stacking 5 times. Wildclaw consumes Mountain Mover stacks to cost -10% less Rage per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7502","treeId":"coa-primalist-91","index":7502,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/inv_mount_viciousalliancebearmount.png","maxRank":1,"name":"Improved Ursoc's Bellow","description":"Increases the effectiveness of Ursoc's Bellow by 40%.","rankDescriptions":["Increases the effectiveness of Ursoc's Bellow by 40%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7517","treeId":"coa-primalist-91","index":7517,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/nhi_natureempower_border.png","maxRank":1,"name":"Fury of the Earthmother","description":"Damage dealt by Geode Barrage or Geodes now generates increased threat and have a 15% chance to add 1 charge to an active Rock Barrier and extend its duration by 1 sec.","rankDescriptions":["Damage dealt by Geode Barrage or Geodes now generates increased threat and have a 15% chance to add 1 charge to an active Rock Barrier and extend its duration by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7505","treeId":"coa-primalist-91","index":7505,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/inv_pet_pandarenelemental_earth.png","maxRank":1,"name":"Earthmother's Protection","description":"While your Rock Barrier is active, the Rage cost of Hand of the Earthmother is reduced by -50%.","rankDescriptions":["While your Rock Barrier is active, the Rage cost of Hand of the Earthmother is reduced by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8000","treeId":"coa-primalist-91","index":8000,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/inv_mace_1h_artifactdoomhammer_d_01.png","maxRank":1,"name":"Judgement of The Three Hammers","description":"While active, dealing direct damage has a 20% chance to hurl 3 hammers over 2 seconds, each dealing 100 + 32.5% SP + 27.8% AP Physical damage. Lasts for 15 seconds. Damage scales with damage modifiers to Mountain Hammer.","rankDescriptions":["While active, dealing direct damage has a 20% chance to hurl 3 hammers over 2 seconds, each dealing 100 + 32.5% SP + 27.8% AP Physical damage. Lasts for 15 seconds. Damage scales with damage modifiers to Mountain Hammer."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7525","treeId":"coa-primalist-91","index":7525,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/achievement_leader_king_magni_bronzebeard.png","maxRank":1,"name":"Legacy of the Bronzebeards","description":"Increases the effectiveness of Earthen Avatar by 100%.","rankDescriptions":["Increases the effectiveness of Earthen Avatar by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7519","treeId":"coa-primalist-91","index":7519,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/nhi_earthwall_border.png","maxRank":1,"name":"Mountain Fury","description":"Move the earth, dealing 902 + 65% SP + 17% AP + 125% Stamina Physical damage to up to 12 enemies in a 10 yd frontal cone, pulling them toward you, repeating every 2 sec for 4 seconds. Each time an enemy is pulled toward you, you gain -2% reduced damage taken for 3 seconds, stacking 5 times.","rankDescriptions":["Move the earth, dealing 902 + 65% SP + 17% AP + 125% Stamina Physical damage to up to 12 enemies in a 10 yd frontal cone, pulling them toward you, repeating every 2 sec for 4 seconds. Each time an enemy is pulled toward you, you gain -2% reduced damage taken for 3 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13216","treeId":"coa-primalist-91","index":13216,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/warrior_talent_icon_avatar.png","maxRank":1,"name":"Mountain Avatar","description":"Level 50 Passive Damage dealt by Geode Barrage or Geodes now has a 5% chance to grant you Earthen Avatar for 5 sec. If Earthen Avatar is already active triggering this effect will instead extend the duration by 5 sec.Earthen AvatarBecome an avatar of the earth, increasing your damage dealt and reducing your damage taken by 15%, and increasing your melee haste by 20% for 20 seconds. Immune to stuns, roots, and snares for the duration. Usable while stunned.","rankDescriptions":["Level 50 Passive Damage dealt by Geode Barrage or Geodes now has a 5% chance to grant you Earthen Avatar for 5 sec. If Earthen Avatar is already active triggering this effect will instead extend the duration by 5 sec.Earthen AvatarBecome an avatar of the earth, increasing your damage dealt and reducing your damage taken by 15%, and increasing your melee haste by 20% for 20 seconds. Immune to stuns, roots, and snares for the duration. Usable while stunned."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-8001","treeId":"coa-primalist-91","index":8001,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/archaeology_5_0_crackedmogurunestone.png","maxRank":1,"name":"Shattering","description":"Damage dealt by each hammer triggered by Judgment of The Three Hammers now grants you 1% increased critical strike chance and damage for 10 seconds, stacking up to 10 times.","rankDescriptions":["Damage dealt by each hammer triggered by Judgment of The Three Hammers now grants you 1% increased critical strike chance and damage for 10 seconds, stacking up to 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7498","treeId":"coa-primalist-91","index":7498,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":10,"icon":"/assets/ui/spells/seismic_smash.png","maxRank":1,"name":"Seismic Smash","description":"Raise the earth in a line in front of you with molten fury, dealing 94 + 22% AP + 50% Stamina Physical damage and granting you Thane's Rage and Aftershock.Thane's RageIncreases your attack power by 20% of your Stamina and your Stamina by 10% of your Strength for 15 seconds.AftershockYour next Geode Barrage or Earthquake within 15 seconds is now instant cast and costs -75% less.","rankDescriptions":["Raise the earth in a line in front of you with molten fury, dealing 94 + 22% AP + 50% Stamina Physical damage and granting you Thane's Rage and Aftershock.Thane's RageIncreases your attack power by 20% of your Stamina and your Stamina by 10% of your Strength for 15 seconds.AftershockYour next Geode Barrage or Earthquake within 15 seconds is now instant cast and costs -75% less."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11418","treeId":"coa-primalist-91","index":11418,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":10,"icon":"/assets/ui/spells/inv_staff_2h_darkirondwarf_d_01.png","maxRank":1,"name":"Quaking Thane","description":"Striking at least 5 enemies with Quake or casting Mountain Hammer now grants you Thane's Rage.Thane's RageIncreases your attack power by 20% of your Stamina and your Stamina by 10% of your Strength for 15 seconds.","rankDescriptions":["Striking at least 5 enemies with Quake or casting Mountain Hammer now grants you Thane's Rage.Thane's RageIncreases your attack power by 20% of your Stamina and your Stamina by 10% of your Strength for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7520","treeId":"coa-primalist-91","index":7520,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":10,"icon":"/assets/ui/spells/inv_misc_volatileearth.png","maxRank":1,"name":"Earthmaker","description":"Damage dealt by Seismic abilities and Quake now reduces the cooldown of Earthen Avatar by -1 sec. Additionally, the cooldown of Seismic abilities is reduced by -3 sec.","rankDescriptions":["Damage dealt by Seismic abilities and Quake now reduces the cooldown of Earthen Avatar by -1 sec. Additionally, the cooldown of Seismic abilities is reduced by -3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7521","treeId":"coa-primalist-91","index":7521,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/achievement_dungeon_blackrockcaverns_karshsteelbender.png","maxRank":1,"name":"Earth Destroyer","description":"Reduces the cooldown of Mountain Fury by -20 sec and increases the duration by 4 sec.","rankDescriptions":["Reduces the cooldown of Mountain Fury by -20 sec and increases the duration by 4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/pyromancer.json b/src/game/generated/talentUi/pyromancer.json new file mode 100644 index 00000000..b19c0cf1 --- /dev/null +++ b/src/game/generated/talentUi/pyromancer.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"pyromancer","trees":[{"id":"coa-pyromancer-63","classId":"pyromancer","name":"Draconic","icon":"/assets/ui/spells/nozdormuicon.png","background":"","description":"Draconic nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-pyromancer-19","classId":"pyromancer","name":"Flameweaving","icon":"/assets/ui/spells/inv_misc_phoenixegg.png","background":"","description":"Flameweaving nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-pyromancer-62","classId":"pyromancer","name":"Incineration","icon":"/assets/ui/spells/ability_mage_fierypayback.png","background":"","description":"Incineration nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-pyromancer-87","classId":"pyromancer","name":"Class","icon":"/assets/ui/spells/nhi_firehands_border.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-29189","treeId":"coa-pyromancer-19","index":29189,"prerequisiteId":"coa-entry-4038","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4038","requiredRank":1},{"talentId":"coa-entry-30206","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_misc_phoenixegg.png","maxRank":1,"name":"Phoenix Egg","description":"Summon a Phoenix for 1 minute at the target location that heals nearby party members for 117 + 15% healing every 5 sec. You may only have 1 Phoenix active at a time.","rankDescriptions":["Summon a Phoenix for 1 minute at the target location that heals nearby party members for 117 + 15% healing every 5 sec. You may only have 1 Phoenix active at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4038","treeId":"coa-pyromancer-19","index":4038,"prerequisiteId":"coa-entry-30206","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30206","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/custom_t_phoenix_border.png","maxRank":1,"name":"Spirit of the Phoenix","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-29550","treeId":"coa-pyromancer-19","index":29550,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/novart_magicspell_(37)_border.png","maxRank":1,"name":"Phoenix Dive","description":"Command your Phoenix to swoop to the target ally and shield allies in their path with fire, absorbing 175 + 50% SP + 100% Spirit damage for 30 seconds, scaling with your Spirit.","rankDescriptions":["Command your Phoenix to swoop to the target ally and shield allies in their path with fire, absorbing 175 + 50% SP + 100% Spirit damage for 30 seconds, scaling with your Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33919","treeId":"coa-pyromancer-19","index":33919,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/nhi_firebreath_(2)_border.png","maxRank":1,"name":"Cleansing Flames","description":"Generates 10 Heat Each Tick Spread cleansing flames on 5 allies and enemies in front of you, damaging or healing for 69 + 44.4% SP over 3 seconds.","rankDescriptions":["Generates 10 Heat Each Tick Spread cleansing flames on 5 allies and enemies in front of you, damaging or healing for 69 + 44.4% SP over 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30637","treeId":"coa-pyromancer-19","index":30637,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/ability_monk_breathoffire.png","maxRank":1,"name":"Soothing Flames","description":"Healing done by Kindle and Cinderheart now additionally heals the target for 30% of the healing done over 3 seconds.","rankDescriptions":["Healing done by Kindle and Cinderheart now additionally heals the target for 30% of the healing done over 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30630","treeId":"coa-pyromancer-19","index":30630,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_misc_cat_trinket08.png","maxRank":1,"name":"Ember Charm","description":"Reduces the cast time of Cinderheart and Kindle by -15%.","rankDescriptions":["Reduces the cast time of Cinderheart and Kindle by -15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9807","treeId":"coa-pyromancer-19","index":9807,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_misc_matchbook.png","maxRank":1,"name":"Flame Bonding","description":"Level 20 Passive Your Inferno Barrier now triggers a -15 sec reduced cooldown when used on an ally other than yourself.","rankDescriptions":["Level 20 Passive Your Inferno Barrier now triggers a -15 sec reduced cooldown when used on an ally other than yourself."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7387","treeId":"coa-pyromancer-19","index":7387,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/novart_magicspell_(33)_border.png","maxRank":2,"name":"Spirit of Fire","description":"Increases the effectiveness of your absorption effects by 40%.","rankDescriptions":["Increases the effectiveness of your absorption effects by 20%.","Increases the effectiveness of your absorption effects by 40%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30638","treeId":"coa-pyromancer-19","index":30638,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/nhi_phoenix_border.png","maxRank":1,"name":"From The Ashes","description":"Increases your healing done to allies below 35% health by 25%.","rankDescriptions":["Increases your healing done to allies below 35% health by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31274","treeId":"coa-pyromancer-19","index":31274,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/inv_misc_firedancer_01.png","maxRank":2,"name":"Scorching Spirit","description":"Increases your Spirit by 20%.","rankDescriptions":["Increases your Spirit by 10%.","Increases your Spirit by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9914","treeId":"coa-pyromancer-19","index":9914,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/spell_fire_selfdestruct.png","maxRank":1,"name":"Unfathomably Hot!","description":"Each tick of Cleansing Flames now generates 5 additional Heat.","rankDescriptions":["Each tick of Cleansing Flames now generates 5 additional Heat."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33914","treeId":"coa-pyromancer-19","index":33914,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_6_2raid_trinket_1c.png","maxRank":1,"name":"Concentrated Fire","description":"Increases the damage and healing of Cleansing Flames by 20%.","rankDescriptions":["Increases the damage and healing of Cleansing Flames by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6950","treeId":"coa-pyromancer-19","index":6950,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/spell_nature_unleashedrage.png","maxRank":1,"name":"Kael's Command","description":"Generates 50 Heat Command your Phoenix to go dormant for 10 seconds. While dormant, it radiates healing to nearby allies for 611 + 100% healing every 2 sec.","rankDescriptions":["Generates 50 Heat Command your Phoenix to go dormant for 10 seconds. While dormant, it radiates healing to nearby allies for 611 + 100% healing every 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30096","treeId":"coa-pyromancer-19","index":30096,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_ability_sunfurymage_spellfirespheres.png","maxRank":1,"name":"Sunstrider Array","description":"For 15 seconds, you generate 1 Ember every 3 sec and your Cinderheart generates double the amount of Heat with each cast.","rankDescriptions":["For 15 seconds, you generate 1 Ember every 3 sec and your Cinderheart generates double the amount of Heat with each cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30602","treeId":"coa-pyromancer-19","index":30602,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/ability_siege_engineer_purification_beam.png","maxRank":1,"name":"Burning Crescendo","description":"Increases the tick rate of your Phoenix Egg by -2 sec.","rankDescriptions":["Increases the tick rate of your Phoenix Egg by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6949","treeId":"coa-pyromancer-19","index":6949,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_trinket_firelands_01.png","maxRank":1,"name":"Ashen Priest","description":"Level 30 Passive Your critical heals now grant allies Replenishment. In addition, 20% of your mana regeneration continues while in combat. ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","rankDescriptions":["Level 30 Passive Your critical heals now grant allies Replenishment. In addition, 20% of your mana regeneration continues while in combat. ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7388","treeId":"coa-pyromancer-19","index":7388,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/spell_fire_fire.png","maxRank":1,"name":"Rekindle","description":"Healing done by Kindle now increases your healing done on the target 5% for 20 seconds, stacking 2 times.","rankDescriptions":["Healing done by Kindle now increases your healing done on the target 5% for 20 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33912","treeId":"coa-pyromancer-19","index":33912,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/spell_burningbladeshaman_blazing_radiance.png","maxRank":1,"name":"Lucifron's Rage","description":"Effective healing done by your Phoenix now causes allies to deal additional Fire damage with all attacks for 6 seconds.","rankDescriptions":["Effective healing done by your Phoenix now causes allies to deal additional Fire damage with all attacks for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33918","treeId":"coa-pyromancer-19","index":33918,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/inv_jewelry_trinket_09.png","maxRank":1,"name":"Lifebinder's Fire","description":"Generating an Ember now increases your healing done by 3% for 8 seconds, stacking 5 times.","rankDescriptions":["Generating an Ember now increases your healing done by 3% for 8 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30666","treeId":"coa-pyromancer-19","index":30666,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_infernalmadness_border.png","maxRank":1,"name":"Offering of Executus","description":"When your Phoenix dies or expires, it now heals all allies within 30 yds equal to its maximum health.","rankDescriptions":["When your Phoenix dies or expires, it now heals all allies within 30 yds equal to its maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33916","treeId":"coa-pyromancer-19","index":33916,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_belt_leather_firelandsdruid_d_01.png","maxRank":1,"name":"Living Flame","description":"Increases the critical strike chance of Ember Touch by 10%.","rankDescriptions":["Increases the critical strike chance of Ember Touch by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29560","treeId":"coa-pyromancer-19","index":29560,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_misc_head_dragon_black_nightmare.png","maxRank":1,"name":"Neltharion's Resolve","description":"Place Neltharion's resolve on all party members, warding them against fear. The next fear effect used against the target will fail, using up the ward. Lasts 1 minute.","rankDescriptions":["Place Neltharion's resolve on all party members, warding them against fear. The next fear effect used against the target will fail, using up the ward. Lasts 1 minute."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33921","treeId":"coa-pyromancer-19","index":33921,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/spell_fire_flameshock.png","maxRank":1,"name":"Warmth","description":"You now radiate warmth to nearby allies, healing the lowest health nearby ally equal to 25% of your periodic damage dealt.","rankDescriptions":["You now radiate warmth to nearby allies, healing the lowest health nearby ally equal to 25% of your periodic damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6501","treeId":"coa-pyromancer-19","index":6501,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/nhi_fire_solar_border.png","maxRank":1,"name":"Sageweaving","description":"Consuming an Ember now reduces the cast time of your next Cinderheart or Kindle by -15% for 12 seconds, stacking 2 times.","rankDescriptions":["Consuming an Ember now reduces the cast time of your next Cinderheart or Kindle by -15% for 12 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31276","treeId":"coa-pyromancer-19","index":31276,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/uico_fire_spell_04_border.png","maxRank":1,"name":"Burn Impurities","description":"Burn away 1 harmful magic effect and 1 disease effect from an ally.","rankDescriptions":["Burn away 1 harmful magic effect and 1 disease effect from an ally."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9949","treeId":"coa-pyromancer-19","index":9949,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/nhi_fireshield_border.png","maxRank":1,"name":"Fiery Faith","description":"Level 40 Passive Increases your spell critical strike rating by 15% of your Spirit.","rankDescriptions":["Level 40 Passive Increases your spell critical strike rating by 15% of your Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-6661","treeId":"coa-pyromancer-19","index":6661,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/nhi_fire_phoenix_border.png","maxRank":2,"name":"Touched by Fire","description":"Your Cinderheart, Ember Touch, and Kindle now gains an additional 30% of your bonus healing spell power.","rankDescriptions":["Your Cinderheart, Ember Touch, and Kindle now gains an additional 15% of your bonus healing spell power.","Your Cinderheart, Ember Touch, and Kindle now gains an additional 30% of your bonus healing spell power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33917","treeId":"coa-pyromancer-19","index":33917,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/custom_t_fireworm_border.png","maxRank":1,"name":"Invigoration","description":"Healing done by your Phoenix now generates you 5 Heat.","rankDescriptions":["Healing done by your Phoenix now generates you 5 Heat."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7385","treeId":"coa-pyromancer-19","index":7385,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/ability_butcher_gushingwounds.png","maxRank":1,"name":"Cauterizing Wounds","description":"Healing done by Ember Touch now grants you Flamecasting.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration.","rankDescriptions":["Healing done by Ember Touch now grants you Flamecasting.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11185","treeId":"coa-pyromancer-19","index":11185,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_nature_brilliance.png","maxRank":1,"name":"Brilliance","description":"Flamecasting can now stack 2 additional times.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration.","rankDescriptions":["Flamecasting can now stack 2 additional times.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33885","treeId":"coa-pyromancer-19","index":33885,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_misc_firedancer_01.png","maxRank":2,"name":"Tender Touch","description":"Effective healing done by Ember Touch now heals up to 3 of the lowest health allies near your target for an additional 30% of the amount healed.","rankDescriptions":["Effective healing done by Ember Touch now heals up to 3 of the lowest health allies near your target for an additional 15% of the amount healed.","Effective healing done by Ember Touch now heals up to 3 of the lowest health allies near your target for an additional 30% of the amount healed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29559","treeId":"coa-pyromancer-19","index":29559,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/5_normal03fireball_border.png","maxRank":1,"name":"Shielded by Flames","description":"Healing critical strikes now apply an absorption shield to allies equal to 30% of the healing done for 8 seconds.","rankDescriptions":["Healing critical strikes now apply an absorption shield to allies equal to 30% of the healing done for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31273","treeId":"coa-pyromancer-19","index":31273,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_summerfest_firespirit.png","maxRank":1,"name":"Roaring Pyre","description":"Conjure a Roaring Pyre at the target location for 20 seconds. Allies within 30 yds of the bonfire are healed for 35 + 10% healing + 50% Spirit, scaling with your Spirit and healing spell power, every 2 sec and their Spirit is increased by 10%.","rankDescriptions":["Conjure a Roaring Pyre at the target location for 20 seconds. Allies within 30 yds of the bonfire are healed for 35 + 10% healing + 50% Spirit, scaling with your Spirit and healing spell power, every 2 sec and their Spirit is increased by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7478","treeId":"coa-pyromancer-19","index":7478,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/novart_drinkable_(4)_border.png","maxRank":1,"name":"Veins of Fire","description":"Flamecasting now also grants 3% increased Spirit per stack.","rankDescriptions":["Flamecasting now also grants 3% increased Spirit per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30642","treeId":"coa-pyromancer-19","index":30642,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0009s_0000_fire_border.png","maxRank":1,"name":"Inferno","description":"Direct healing critical strikes have a 50% chance to create an Inferno around the target. Can only occur once every 5 sec.InfernoEngulf an ally in cleansing flames for 5 seconds, healing them for 161 and party and raid members within 40 yds of them for 91 every 1 sec. At the end of the duration, party and raid members are healed for 383 to 403.","rankDescriptions":["Direct healing critical strikes have a 50% chance to create an Inferno around the target. Can only occur once every 5 sec.InfernoEngulf an ally in cleansing flames for 5 seconds, healing them for 161 and party and raid members within 40 yds of them for 91 every 1 sec. At the end of the duration, party and raid members are healed for 383 to 403."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9964","treeId":"coa-pyromancer-19","index":9964,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/uico_fire_spell_03_border.png","maxRank":1,"name":"Burning Passion","description":"Level 50 Passive Effective healing critical strikes now generate 10 Heat.","rankDescriptions":["Level 50 Passive Effective healing critical strikes now generate 10 Heat."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7386","treeId":"coa-pyromancer-19","index":7386,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/custom_t_fireinourhands_border.png","maxRank":1,"name":"Fueling the Fire","description":"Using Ember Touch on your Roaring Pyre or Phoenix will cause them to erupt in flames, healing 12 allies within 30 yds for 232 + 100% Spirit, additionally scaling with Spirit. Allied Pyromancers can also fuel the fire with your Roaring Pyre and Phoenix.","rankDescriptions":["Using Ember Touch on your Roaring Pyre or Phoenix will cause them to erupt in flames, healing 12 allies within 30 yds for 232 + 100% Spirit, additionally scaling with Spirit. Allied Pyromancers can also fuel the fire with your Roaring Pyre and Phoenix."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7389","treeId":"coa-pyromancer-19","index":7389,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_soulburn_border.png","maxRank":1,"name":"Emberheart","description":"Instantly gain 5 stacks of Flamecasting and then empower all nearby allies with magical fire, increasing their movement speed by 30% for 15 seconds. While under the effects of Emberheart direct damage dealt by allies deals 119 + 35% fire SP additional Fire damage. FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration.","rankDescriptions":["Instantly gain 5 stacks of Flamecasting and then empower all nearby allies with magical fire, increasing their movement speed by 30% for 15 seconds. While under the effects of Emberheart direct damage dealt by allies deals 119 + 35% fire SP additional Fire damage. FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6951","treeId":"coa-pyromancer-19","index":6951,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/novart_passivemastery_(17)_border.png","maxRank":1,"name":"Scepter of Fire","description":"Increases the duration of Inferno by 5 sec, causing its end of duration explosion of healing to trigger every 5 sec instead.","rankDescriptions":["Increases the duration of Inferno by 5 sec, causing its end of duration explosion of healing to trigger every 5 sec instead."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9921","treeId":"coa-pyromancer-19","index":9921,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/_enslavespell_fire.png","maxRank":1,"name":"Blessing of the Inferno","description":"Reduces the healing done by Inferno by -20%, but increases its chance to trigger by 50%.","rankDescriptions":["Reduces the healing done by Inferno by -20%, but increases its chance to trigger by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6985","treeId":"coa-pyromancer-62","index":6985,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/ability_mage_fierypayback.png","maxRank":1,"name":"Ignite","description":"Generates 10 Heat Per Tick Burn an enemy, inflicting 119 Fire damage over 21 seconds. If Ignite is dispelled it will cause 111 + 150% fire SP Fire damage to the dispeller. Castable while moving.","rankDescriptions":["Generates 10 Heat Per Tick Burn an enemy, inflicting 119 Fire damage over 21 seconds. If Ignite is dispelled it will cause 111 + 150% fire SP Fire damage to the dispeller. Castable while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4037","treeId":"coa-pyromancer-62","index":4037,"prerequisiteId":"coa-entry-30651","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30651","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/nhi_corruptionfire_border.png","maxRank":1,"name":"Infernus","description":"Damage dealt by Lava Shard now applies Infernus, causing enemies to Burn, dealing an additional 1122 + 120% SP Fire damage over 18 seconds.","rankDescriptions":["Damage dealt by Lava Shard now applies Infernus, causing enemies to Burn, dealing an additional 1122 + 120% SP Fire damage over 18 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":false},{"id":"coa-entry-29854","treeId":"coa-pyromancer-62","index":29854,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/spell_fire_burnout.png","maxRank":1,"name":"Combustion","description":"Damage dealt by Explode is now increased by 15% for each of your Pyromancer periodic effects on the target.","rankDescriptions":["Damage dealt by Explode is now increased by 15% for each of your Pyromancer periodic effects on the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6986","treeId":"coa-pyromancer-62","index":6986,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/spells/inv_jewelcrafting_dragonseye05.png","maxRank":1,"name":"Residual Power","description":"Each active Ember now reduces the cast time of Explode by -8%.","rankDescriptions":["Each active Ember now reduces the cast time of Explode by -8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11986","treeId":"coa-pyromancer-62","index":11986,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/spells/spell_shaman_firenova.png","maxRank":1,"name":"Arsonist","description":"Increases the critical damage of your Ember spenders by 10%.","rankDescriptions":["Increases the critical damage of your Ember spenders by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5187","treeId":"coa-pyromancer-62","index":5187,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_firerain_border.png","maxRank":2,"name":"Magnitude 10","description":"Increases the critical strike chance of Flare Bolt by 10%.","rankDescriptions":["Increases the critical strike chance of Flare Bolt by 5%.","Increases the critical strike chance of Flare Bolt by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11304","treeId":"coa-pyromancer-62","index":11304,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/uico_fire_spell_09_nobg_border.png","maxRank":1,"name":"Scorched","description":"Level 20 Passive Direct critical strikes with Ember spenders now Scorch the target, Burning them for an additional 30% of the damage dealt over 3 seconds.","rankDescriptions":["Level 20 Passive Direct critical strikes with Ember spenders now Scorch the target, Burning them for an additional 30% of the damage dealt over 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7804","treeId":"coa-pyromancer-62","index":7804,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/ability_siege_engineer_purification_beam.png","maxRank":3,"name":"Cataclysmic Power","description":"Increases the damage of Flare Bolt by 9% for each periodic effect you have on the target.","rankDescriptions":["Increases the damage of Flare Bolt by 3% for each periodic effect you have on the target.","Increases the damage of Flare Bolt by 6% for each periodic effect you have on the target.","Increases the damage of Flare Bolt by 9% for each periodic effect you have on the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30304","treeId":"coa-pyromancer-62","index":30304,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/5_dragonfirebreath_border.png","maxRank":1,"name":"Embrace the Fire","description":"Increases the damage of Blaze and Ignite by 20%.","rankDescriptions":["Increases the damage of Blaze and Ignite by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33877","treeId":"coa-pyromancer-62","index":33877,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/achievement_dungeon_ignitionmagevalyri.png","maxRank":1,"name":"Fired Up!","description":"Your Ember spenders are now instant and have a 30% chance to refund their cost and increases your chance to critically strike by 30% for 15 seconds.","rankDescriptions":["Your Ember spenders are now instant and have a 30% chance to refund their cost and increases your chance to critically strike by 30% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29552","treeId":"coa-pyromancer-62","index":29552,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/uico_fire_spell_09_nobg_border.png","maxRank":1,"name":"Searing Power","description":"Increases the spell power scaling of Flare Bolt by 20%.","rankDescriptions":["Increases the spell power scaling of Flare Bolt by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30959","treeId":"coa-pyromancer-62","index":30959,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/nhi_fireblow_border.png","maxRank":1,"name":"Pillar of Flame","description":"Generates 20 Heat Per Target Create a pillar of lava beneath an enemy, dealing 36 + 31.24% fire SP Fire damage. Deals an additional 92 + 34.36% fire SP Fire damage to enemies near the primary target.","rankDescriptions":["Generates 20 Heat Per Target Create a pillar of lava beneath an enemy, dealing 36 + 31.24% fire SP Fire damage. Deals an additional 92 + 34.36% fire SP Fire damage to enemies near the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6499","treeId":"coa-pyromancer-62","index":6499,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/spell_holy_innerfire.png","maxRank":1,"name":"Wreath of Flames","description":"Periodic Fire damage now has a 10% chance to grant a stack of Flamecasting, or 2 stacks if they critically strike.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration.","rankDescriptions":["Periodic Fire damage now has a 10% chance to grant a stack of Flamecasting, or 2 stacks if they critically strike.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33878","treeId":"coa-pyromancer-62","index":33878,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_misc_volatilefire.png","maxRank":1,"name":"Flamespiller","description":"Critical strikes with Explode or Flames of Neltharion now extend the duration of Fired Up by 0.5 sec.","rankDescriptions":["Critical strikes with Explode or Flames of Neltharion now extend the duration of Fired Up by 0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7009","treeId":"coa-pyromancer-62","index":7009,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/spell_shaman_stormearthfire.png","maxRank":1,"name":"Melting Point","description":"Increases your critical strike chance by 3% and critical strikes with Fire spells now increases the chance for the enemy to by critically hit with spells by 3% for 12 seconds.","rankDescriptions":["Increases your critical strike chance by 3% and critical strikes with Fire spells now increases the chance for the enemy to by critically hit with spells by 3% for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2306","treeId":"coa-pyromancer-62","index":2306,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_wildfirebomb_blood.png","maxRank":1,"name":"Lighting the Fuse","description":"Level 30 Passive Allows your periodic effects to critically strike and increases your spell critical strike rating by 15% of your Intellect.","rankDescriptions":["Level 30 Passive Allows your periodic effects to critically strike and increases your spell critical strike rating by 15% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7008","treeId":"coa-pyromancer-62","index":7008,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0003s_0000_phoenix_border.png","maxRank":1,"name":"Magmatic","description":"After casting Pillar of Flame, all periodic damage dealt now gives you a 10% chance to cast Pillar of Flame on the target free of cost for 5 seconds.Pillar of FlameGenerates 20 Heat Per Target Create a pillar of lava beneath an enemy, dealing 36 + 31.24% fire SP Fire damage. Deals an additional 92 + 34.36% fire SP Fire damage to enemies near the primary target.","rankDescriptions":["After casting Pillar of Flame, all periodic damage dealt now gives you a 10% chance to cast Pillar of Flame on the target free of cost for 5 seconds.Pillar of FlameGenerates 20 Heat Per Target Create a pillar of lava beneath an enemy, dealing 36 + 31.24% fire SP Fire damage. Deals an additional 92 + 34.36% fire SP Fire damage to enemies near the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29548","treeId":"coa-pyromancer-62","index":29548,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/inv_offhand_1h_artifactdoomhammer_d_01.png","maxRank":1,"name":"Molten Storm","description":"Increases the critical strike chance and damage of Lava Shard by 10%.","rankDescriptions":["Increases the critical strike chance and damage of Lava Shard by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33883","treeId":"coa-pyromancer-62","index":33883,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/nhi_moltensmash_border.png","maxRank":1,"name":"To Ashes","description":"Damaging critical strikes now generate 10 Heat and restore 3% of your base mana.","rankDescriptions":["Damaging critical strikes now generate 10 Heat and restore 3% of your base mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6500","treeId":"coa-pyromancer-62","index":6500,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_misc_herb_cinderbloom_petal.png","maxRank":1,"name":"Roasted Alive","description":"Increases the chance to trigger Fired Up by 20%.","rankDescriptions":["Increases the chance to trigger Fired Up by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6987","treeId":"coa-pyromancer-62","index":6987,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_shadow_destructivesoul.png","maxRank":1,"name":"Pyromantic Accelerants","description":"Your Flames of Neltharion and Explode now deal 15% increased damage to Burning targets.","rankDescriptions":["Your Flames of Neltharion and Explode now deal 15% increased damage to Burning targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30644","treeId":"coa-pyromancer-62","index":30644,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/custom_t_fireinourhands_border.png","maxRank":2,"name":"Explosive","description":"Increases the tick rate of Blaze and Ignite by -20%.","rankDescriptions":["Increases the tick rate of Blaze and Ignite by -10%.","Increases the tick rate of Blaze and Ignite by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7006","treeId":"coa-pyromancer-62","index":7006,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/spell_fire_flametounge.png","maxRank":1,"name":"Sizzle","description":"When Flamecasting expires you launch a Flare Bolt on up to 12 enemies affected by your active Pyromancer periodic effects.Flare BoltGenerates 20 Heat Invoke flames upon an enemy, dealing 19 + 57.1% fire SP Fire damage.","rankDescriptions":["When Flamecasting expires you launch a Flare Bolt on up to 12 enemies affected by your active Pyromancer periodic effects.Flare BoltGenerates 20 Heat Invoke flames upon an enemy, dealing 19 + 57.1% fire SP Fire damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7171","treeId":"coa-pyromancer-62","index":7171,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/ability_monk_breathoffire.png","maxRank":1,"name":"Fiery Passion","description":"Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, your spell haste is increased by 3%.","rankDescriptions":["Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, your spell haste is increased by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2305","treeId":"coa-pyromancer-62","index":2305,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_tradeskillitem_sorcerersfire_tong.png","maxRank":1,"name":"Incinerator","description":"Level 40 Passive Increases your spell penetration by 30, scaling with your level.","rankDescriptions":["Level 40 Passive Increases your spell penetration by 30, scaling with your level."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-30680","treeId":"coa-pyromancer-62","index":30680,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/spell_fire_firebolt02.png","maxRank":1,"name":"Rapid Incineration","description":"Consuming Embers now reduces the cooldown of Lava Shard and Pillar of Flame by 10%.","rankDescriptions":["Consuming Embers now reduces the cooldown of Lava Shard and Pillar of Flame by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6807","treeId":"coa-pyromancer-62","index":6807,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/ability_ironmaidens_rapidfire.png","maxRank":1,"name":"Pyromaniac","description":"Increases the critical strike chance of Ember spenders by 5%.","rankDescriptions":["Increases the critical strike chance of Ember spenders by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30601","treeId":"coa-pyromancer-62","index":30601,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_fireinyourhand_border.png","maxRank":1,"name":"Flames of Focus","description":"Adds 1 additional stack to Flamecasting and increases its duration by 5 sec.","rankDescriptions":["Adds 1 additional stack to Flamecasting and increases its duration by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7176","treeId":"coa-pyromancer-62","index":7176,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_fire_flameshock.png","maxRank":1,"name":"Stoke","description":"Critical strikes with Ignite and Infernus now extend their own duration on the target by 3 sec, up to a maximum of 12 sec.","rankDescriptions":["Critical strikes with Ignite and Infernus now extend their own duration on the target by 3 sec, up to a maximum of 12 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7803","treeId":"coa-pyromancer-62","index":7803,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/inv_staff_2h_darkirondwarf_d_01.png","maxRank":1,"name":"Dark Iron Legacy","description":"Targets affected by the disorient from Meteor take an additional 40% increased damage from the next Explode or Lava Shard.","rankDescriptions":["Targets affected by the disorient from Meteor take an additional 40% increased damage from the next Explode or Lava Shard."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11803","treeId":"coa-pyromancer-62","index":11803,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/spell_shaman_firenova.png","maxRank":1,"name":"Destroyer's Legacy","description":"Damage dealt by Lava Shard on enemies affected by Blaze now blasts nearby enemies for 50% of the damage dealt as Fire damage.","rankDescriptions":["Damage dealt by Lava Shard on enemies affected by Blaze now blasts nearby enemies for 50% of the damage dealt as Fire damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30643","treeId":"coa-pyromancer-62","index":30643,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/custom_t_flamewave_border.png","maxRank":1,"name":"Pyroclastic Flow","description":"Flare Bolt now increases the damage of subsequent Flare Bolts by 4% for 10 seconds, stacking 5 times. Flames of Neltharion and Explode now increase the damage of subsequent Explodes or Flames of Neltharion by 4% for 5 seconds, stacking 5 times.","rankDescriptions":["Flare Bolt now increases the damage of subsequent Flare Bolts by 4% for 10 seconds, stacking 5 times. Flames of Neltharion and Explode now increase the damage of subsequent Explodes or Flames of Neltharion by 4% for 5 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33879","treeId":"coa-pyromancer-62","index":33879,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/nhi_fireball_border.png","maxRank":1,"name":"Heat Wave","description":"Flamecasting stacks now also increase the damage of Explode and Flames of Neltharion by 4% per stack.","rankDescriptions":["Flamecasting stacks now also increase the damage of Explode and Flames of Neltharion by 4% per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7174","treeId":"coa-pyromancer-62","index":7174,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/spell_fire_incinerate.png","maxRank":1,"name":"Pyroclasm","description":"Consumes 1 Ember Create a pyroclasm instantly consuming your Burning effects on a target to deal the two times total periodic damage plus an additional 2100 to 2220 over 10 seconds, piercing absorption effects and resistances.","rankDescriptions":["Consumes 1 Ember Create a pyroclasm instantly consuming your Burning effects on a target to deal the two times total periodic damage plus an additional 2100 to 2220 over 10 seconds, piercing absorption effects and resistances."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7954","treeId":"coa-pyromancer-62","index":7954,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_fire_immolation.png","maxRank":1,"name":"Burned","description":"Level 50 Passive Direct Fire damage dealt now applies Burned to the target for 15 seconds.Burned (Proc)Increases the targets damage taken from your periodic effects by 3% stacking 5 times.","rankDescriptions":["Level 50 Passive Direct Fire damage dealt now applies Burned to the target for 15 seconds.Burned (Proc)Increases the targets damage taken from your periodic effects by 3% stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7175","treeId":"coa-pyromancer-62","index":7175,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/achievement_firelands_raid_ragnaros.png","maxRank":1,"name":"Flames of the Firelord","description":"Your periodic damage dealt now has a 5% chance to grant you Eruption for 5 sec.","rankDescriptions":["Your periodic damage dealt now has a 5% chance to grant you Eruption for 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29561","treeId":"coa-pyromancer-62","index":29561,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/achievement_mc_lucifron.png","maxRank":1,"name":"Sulfuron Harbinger","description":"Increases the critical strike chance of Blaze and Ignite by 5% and increases their tick rate by -20% and reduces their durations by -25%. Periodic critical strikes apply Sulfur Fumes.Sulfur Fumes (Proc)Flare Bolt, Explode, or Flames of Neltharion will detonate the Sulfur Fumes to cause a Sulfuron Blast, dealing 263 Fire Damage to the target and extending the duration of Blaze on them by 1 sec.","rankDescriptions":["Increases the critical strike chance of Blaze and Ignite by 5% and increases their tick rate by -20% and reduces their durations by -25%. Periodic critical strikes apply Sulfur Fumes.Sulfur Fumes (Proc)Flare Bolt, Explode, or Flames of Neltharion will detonate the Sulfur Fumes to cause a Sulfuron Blast, dealing 263 Fire Damage to the target and extending the duration of Blaze on them by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30403","treeId":"coa-pyromancer-62","index":30403,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_fire_ragnaros_splittingblow.png","maxRank":1,"name":"Legacy of Ragnaros","description":"Pyroclasm now causes your next 3 Lava Shards within 12 seconds to trigger no cooldown and be free of cost.","rankDescriptions":["Pyroclasm now causes your next 3 Lava Shards within 12 seconds to trigger no cooldown and be free of cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29857","treeId":"coa-pyromancer-63","index":29857,"prerequisiteId":"coa-entry-29858","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29858","requiredRank":1},{"talentId":"coa-entry-4039","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/nozdormuicon.png","maxRank":1,"name":"Echo of Nozdormu","description":"Transforms your Explode into Echo of Nozdormu.Echo of NozdormuObliterate an enemy, dealing 120 + 105% SP Chromatic Damage and reducing all spell and ability cooldowns by 5%.","rankDescriptions":["Transforms your Explode into Echo of Nozdormu.Echo of NozdormuObliterate an enemy, dealing 120 + 105% SP Chromatic Damage and reducing all spell and ability cooldowns by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4039","treeId":"coa-pyromancer-63","index":4039,"prerequisiteId":"coa-entry-29858","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29858","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_misc_head_dragon_nexus.png","maxRank":1,"name":"Dragon's Edge","description":"Level 10 Passive Direct critical strikes now generate an additional 20 Heat.","rankDescriptions":["Level 10 Passive Direct critical strikes now generate an additional 20 Heat."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-29935","treeId":"coa-pyromancer-63","index":29935,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_misc_firedancer_01.png","maxRank":1,"name":"Alexstrasza's Gift","description":"Increases the damage and healing of your Ember spenders by 15%.","rankDescriptions":["Increases the damage and healing of your Ember spenders by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29964","treeId":"coa-pyromancer-63","index":29964,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/spell_fire_immolation.png","maxRank":1,"name":"Agonizing Burns","description":"Increases the duration of Blaze by 20% and allows it to benefit from your spell haste.","rankDescriptions":["Increases the duration of Blaze by 20% and allows it to benefit from your spell haste."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29556","treeId":"coa-pyromancer-63","index":29556,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/ability_deathwing_assualtaspects.png","maxRank":1,"name":"Aspect's Blessing","description":"Your next Echo of Nozdormu or Flames of Neltharion is guaranteed to critically strike and triggers Aspect of Time, casting an additional time for 30% of the damage dealt. Lasts 15 seconds. Damage dealt in this way can trigger up to 3 additional times.","rankDescriptions":["Your next Echo of Nozdormu or Flames of Neltharion is guaranteed to critically strike and triggers Aspect of Time, casting an additional time for 30% of the damage dealt. Lasts 15 seconds. Damage dealt in this way can trigger up to 3 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7043","treeId":"coa-pyromancer-63","index":7043,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/achievement_boss_overlord_wyrmthalak.png","maxRank":2,"name":"Critical Pressure","description":"Increases your Intellect and critical strike chance by 6%.","rankDescriptions":["Increases your Intellect and critical strike chance by 3%.","Increases your Intellect and critical strike chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31188","treeId":"coa-pyromancer-63","index":31188,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_misc_head_dragon_bronze.png","maxRank":1,"name":"Aspect of Time","description":"Level 20 Passive Damage dealt by Echo of Nozdormu and Flames of Neltharion now has a 33% chance to cast an additional time for 30% of the damage dealt. Damage dealt in this way can trigger this effect up to 3 additional times.","rankDescriptions":["Level 20 Passive Damage dealt by Echo of Nozdormu and Flames of Neltharion now has a 33% chance to cast an additional time for 30% of the damage dealt. Damage dealt in this way can trigger this effect up to 3 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-11964","treeId":"coa-pyromancer-63","index":11964,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/ability_ironmaidens_grapeshotblast.png","maxRank":1,"name":"Firefall","description":"Generates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 79 + 31.24% fire SP Fire damage.","rankDescriptions":["Generates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 79 + 31.24% fire SP Fire damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7045","treeId":"coa-pyromancer-63","index":7045,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_nature_unleashedrage.png","maxRank":1,"name":"Flames of Fate","description":"Your Aspect's Blessing now affects 2 additional casts of Echo of Nozdormu, but its cooldown is doubled, and its mana cost is increased by 50%.","rankDescriptions":["Your Aspect's Blessing now affects 2 additional casts of Echo of Nozdormu, but its cooldown is doubled, and its mana cost is increased by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11145","treeId":"coa-pyromancer-63","index":11145,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/5_dragonfirebreath_border.png","maxRank":1,"name":"Lifebringer's Blessing","description":"Damage dealt by Aspect of Time now heals you equal to 200% of the damage dealt.","rankDescriptions":["Damage dealt by Aspect of Time now heals you equal to 200% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7925","treeId":"coa-pyromancer-63","index":7925,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/ability_deathwing_cataclysm.png","maxRank":1,"name":"Destroyer's Maw","description":"Generates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 103 + 100% fire SP Fire damage that cannot be resisted.","rankDescriptions":["Generates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 103 + 100% fire SP Fire damage that cannot be resisted."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7932","treeId":"coa-pyromancer-63","index":7932,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/nhi_fireblast_border.png","maxRank":1,"name":"Cinderstorm","description":"Reduces all threat generated by Firefall by -25% and increases its critical strike chance by 10%.","rankDescriptions":["Reduces all threat generated by Firefall by -25% and increases its critical strike chance by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33870","treeId":"coa-pyromancer-63","index":33870,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/5_normal04firerain_border.png","maxRank":1,"name":"Overwhelming Flames","description":"Your Lava Shard now spreads Blaze to up to 1 additional enemy within 8 yds of the primary target.","rankDescriptions":["Your Lava Shard now spreads Blaze to up to 1 additional enemy within 8 yds of the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33863","treeId":"coa-pyromancer-63","index":33863,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_misc_raptortalon_nightmare.png","maxRank":2,"name":"Timed Attacks","description":"Increases your spell haste by 8%.","rankDescriptions":["Increases your spell haste by 4%.","Increases your spell haste by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29860","treeId":"coa-pyromancer-63","index":29860,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_firerealm_border.png","maxRank":1,"name":"Searing Flames","description":"Increases the spell bonus scaling of Lava Shard by 30%.","rankDescriptions":["Increases the spell bonus scaling of Lava Shard by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11963","treeId":"coa-pyromancer-63","index":11963,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/inv_stave_2h_deathwingraid_d_03.png","maxRank":2,"name":"Mad Aspect's Scepter","description":"Increases the damage of Destroyer's Maw by 40%.","rankDescriptions":["Increases the damage of Destroyer's Maw by 20%.","Increases the damage of Destroyer's Maw by 40%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11451","treeId":"coa-pyromancer-63","index":11451,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0006s_0000_fire-elemental_border.png","maxRank":1,"name":"Flames of the Aspects","description":"Casting Destroyer's Maw now grants 2 stacks of Flamecasting.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration.","rankDescriptions":["Casting Destroyer's Maw now grants 2 stacks of Flamecasting.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29962","treeId":"coa-pyromancer-63","index":29962,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/achievement_boss_generaldrakkisath.png","maxRank":1,"name":"Draconic Aspect","description":"Level 30 Passive Teaches you Draconic Aspect.Draconic AspectUnleash your Draconic Aspect, increasing your spell damage by 30% of your Intellect and your critical damage with spells by 50%. While active, dealing direct damage to an enemy inflicts the target with Dragon's Wrath.Dragon's Wrath (Damage)Unleash your wrath, dealing 9 + 30% fire SP Fire Damage to your target, piercing all resistances and absorption effects.","rankDescriptions":["Level 30 Passive Teaches you Draconic Aspect.Draconic AspectUnleash your Draconic Aspect, increasing your spell damage by 30% of your Intellect and your critical damage with spells by 50%. While active, dealing direct damage to an enemy inflicts the target with Dragon's Wrath.Dragon's Wrath (Damage)Unleash your wrath, dealing 9 + 30% fire SP Fire Damage to your target, piercing all resistances and absorption effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-33864","treeId":"coa-pyromancer-63","index":33864,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/5_druideskill25_border.png","maxRank":1,"name":"Ascender","description":"Reduces the cooldown of Dragon Leap by -5 sec.","rankDescriptions":["Reduces the cooldown of Dragon Leap by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29961","treeId":"coa-pyromancer-63","index":29961,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_warrior_dragoncharge.png","maxRank":1,"name":"Draconic Invocation","description":"Invoke all of the Dragon Aspects, instantly generating 5 Embers.","rankDescriptions":["Invoke all of the Dragon Aspects, instantly generating 5 Embers."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7196","treeId":"coa-pyromancer-63","index":7196,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/nhi_fireball_border.png","maxRank":1,"name":"Fire and Brimstone","description":"Generating an Ember now increases the damage and healing of Ember spenders by 1% for 10 seconds, stacking 5 times.","rankDescriptions":["Generating an Ember now increases the damage and healing of Ember spenders by 1% for 10 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9871","treeId":"coa-pyromancer-63","index":9871,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_voiddredragonmount.png","maxRank":1,"name":"Earthwarder","description":"Being struck by a melee attack while Draconic Aspect is active now has a 20% chance to make your next Flare Bolt within 8 seconds instant cast.","rankDescriptions":["Being struck by a melee attack while Draconic Aspect is active now has a 20% chance to make your next Flare Bolt within 8 seconds instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29558","treeId":"coa-pyromancer-63","index":29558,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/nhi_orbofdragonscale_border.png","maxRank":1,"name":"Expediting Power","description":"Your Echo of Nozdormu now reduces the cooldown of Aspect's Blessing by an additional 5%.","rankDescriptions":["Your Echo of Nozdormu now reduces the cooldown of Aspect's Blessing by an additional 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11874","treeId":"coa-pyromancer-63","index":11874,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/spell_fire_burnout.png","maxRank":1,"name":"Perpetual Burning","description":"The duration of Blaze is now increased by 1 sec for each Ember you have when you cast it.","rankDescriptions":["The duration of Blaze is now increased by 1 sec for each Ember you have when you cast it."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33874","treeId":"coa-pyromancer-63","index":33874,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/spell_fire_firebolt.png","maxRank":1,"name":"Flames of Execution","description":"Damage dealt by Blaze is increased by 25% on enemies below 35% of their maximum health.","rankDescriptions":["Damage dealt by Blaze is increased by 25% on enemies below 35% of their maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7936","treeId":"coa-pyromancer-63","index":7936,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/ability_mount_fireravengodmount.png","maxRank":1,"name":"Molten Fury","description":"Increases the damage and healing provided by Eruption by 15%, but reduces its duration by -50%.","rankDescriptions":["Increases the damage and healing provided by Eruption by 15%, but reduces its duration by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11936","treeId":"coa-pyromancer-63","index":11936,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/ability_rhyolith_volcano.png","maxRank":1,"name":"Blackrock Mountaineer","description":"Reduces the cooldown of Eruption by -30 sec.","rankDescriptions":["Reduces the cooldown of Eruption by -30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7202","treeId":"coa-pyromancer-63","index":7202,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_firetwist_border.png","maxRank":1,"name":"Draconic Tempest","description":"Your Dragon's Wrath now melts enemies, increasing their chance to be hit by spells by 3% for 10 seconds.","rankDescriptions":["Your Dragon's Wrath now melts enemies, increasing their chance to be hit by spells by 3% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7926","treeId":"coa-pyromancer-63","index":7926,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0008s_0000_breath_border.png","maxRank":1,"name":"Soul of the Dragon","description":"Casting Flare Bolt now has a 15% chance to cast it again free of cost.","rankDescriptions":["Casting Flare Bolt now has a 15% chance to cast it again free of cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33873","treeId":"coa-pyromancer-63","index":33873,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/nhi_fireborn_border.png","maxRank":1,"name":"Inner Flame","description":"Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects.","rankDescriptions":["Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2309","treeId":"coa-pyromancer-63","index":2309,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/achievement_emeraldnightmare_dragonsofnightmare.png","maxRank":1,"name":"Legacy of Deathwing","description":"Level 40 Passive Consuming Embers now has a 30% chance to reset the cooldown of Destroyer's Maw and Firefall and grant you Legacy of Deathwing.Legacy of DeathwingYour next Destroyer's Maw or Firefall within 10 seconds is instant cast and free of cost.","rankDescriptions":["Level 40 Passive Consuming Embers now has a 30% chance to reset the cooldown of Destroyer's Maw and Firefall and grant you Legacy of Deathwing.Legacy of DeathwingYour next Destroyer's Maw or Firefall within 10 seconds is instant cast and free of cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-33872","treeId":"coa-pyromancer-63","index":33872,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/achievment_boss_madnessofdeathwing.png","maxRank":1,"name":"Breath of Neltharion","description":"Breath superheated flames in a cone in front of you that melts the weapons of affected enemies, disarming their melee and ranged weapons for 6 seconds.","rankDescriptions":["Breath superheated flames in a cone in front of you that melts the weapons of affected enemies, disarming their melee and ranged weapons for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33911","treeId":"coa-pyromancer-63","index":33911,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/moutn-deathwing.png","maxRank":1,"name":"Black Magic","description":"Generating Heat now reduces the cooldown of Draconic Invocation and Essence of Malygos by 3%. Can only occur once per sec.","rankDescriptions":["Generating Heat now reduces the cooldown of Draconic Invocation and Essence of Malygos by 3%. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7821","treeId":"coa-pyromancer-63","index":7821,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/achievement_boss_drakkisath.png","maxRank":1,"name":"Draconic Rage","description":"Consuming Embers now has a 25% chance to trigger Dragon's Wrath on all enemies affected by Blaze.","rankDescriptions":["Consuming Embers now has a 25% chance to trigger Dragon's Wrath on all enemies affected by Blaze."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33867","treeId":"coa-pyromancer-63","index":33867,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/spell_shadow_rainoffire.png","maxRank":1,"name":"Invocation of Flames","description":"Your Draconic Invocation now grants 5 stacks of Flamecasting. In addition, allows Flamecasting to stack 5 additional times and increases its duration by 5 sec.","rankDescriptions":["Your Draconic Invocation now grants 5 stacks of Flamecasting. In addition, allows Flamecasting to stack 5 additional times and increases its duration by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7935","treeId":"coa-pyromancer-63","index":7935,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_firebreath_border.png","maxRank":1,"name":"Death From Above","description":"Root enemies in a 40 yd line for 3.5 seconds and then soar forward in a blaze of glory, dealing 676 + 100% fire SP Fire damage every 1 sec to enemies beneath you for 10 seconds.","rankDescriptions":["Root enemies in a 40 yd line for 3.5 seconds and then soar forward in a blaze of glory, dealing 676 + 100% fire SP Fire damage every 1 sec to enemies beneath you for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7931","treeId":"coa-pyromancer-63","index":7931,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/novart_magicspell_(62)_border.png","maxRank":1,"name":"Wild Magic","description":"Damage dealt by Dragon's Wrath now has a 50% chance to become unstable, dealing 50 + 16.5% Intellect% additional damage as Magic damage, but burning 85 + 40% Intellect mana. Both the damage dealt and mana burned scale with your Intellect.","rankDescriptions":["Damage dealt by Dragon's Wrath now has a 50% chance to become unstable, dealing 50 + 16.5% Intellect% additional damage as Magic damage, but burning 85 + 40% Intellect mana. Both the damage dealt and mana burned scale with your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11309","treeId":"coa-pyromancer-63","index":11309,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_dragonhawkmountshadowlands.png","maxRank":1,"name":"Blackflight Resurgence","description":"Level 50 Passive Legacy of Deathwing now also increases the damage of your next Destroyer's Maw or Firefall by 25%.","rankDescriptions":["Level 50 Passive Legacy of Deathwing now also increases the damage of your next Destroyer's Maw or Firefall by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-29966","treeId":"coa-pyromancer-63","index":29966,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/inv_misc_head_dragon_bronze_nightmare.png","maxRank":1,"name":"Aspect of Eternity","description":"Allows the periodic damage of Blaze to critically strike. In addition, damage dealt by Echo of Nozdormu or Aspect of Time now has a 20% chance to guarantee your next Blaze within 8 seconds to critically strike and increase its critical damage by 100% and duration by 25%.","rankDescriptions":["Allows the periodic damage of Blaze to critically strike. In addition, damage dealt by Echo of Nozdormu or Aspect of Time now has a 20% chance to guarantee your next Blaze within 8 seconds to critically strike and increase its critical damage by 100% and duration by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7933","treeId":"coa-pyromancer-63","index":7933,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/achievement_dungeon_coablackdragonflight.png","maxRank":1,"name":"Aspect of Earth","description":"Every 3rd combined cast of Flames of Neltharion or Echo of Nozdormu now grants Aspect of Earth for 15 seconds.Aspect of Earth (Aura)Creates a volcano beneath the primary target that erupts dealing 292 + 11% SP Fire Damage, repeating every 2 sec for 6 seconds. Damage dealt by the volcano generates 1 Heat and 2% of your missing mana.","rankDescriptions":["Every 3rd combined cast of Flames of Neltharion or Echo of Nozdormu now grants Aspect of Earth for 15 seconds.Aspect of Earth (Aura)Creates a volcano beneath the primary target that erupts dealing 292 + 11% SP Fire Damage, repeating every 2 sec for 6 seconds. Damage dealt by the volcano generates 1 Heat and 2% of your missing mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7934","treeId":"coa-pyromancer-63","index":7934,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/malygosicon.png","maxRank":1,"name":"Aspect of Magic","description":"Damage dealt by Dragon's Wrath now increases your Intellect by 3% for 20 seconds, stacking 10 times. Consuming an Ember now increases your critical strike chance by 2% and your critical damage by 4% for 20 seconds, stacking 5 times.","rankDescriptions":["Damage dealt by Dragon's Wrath now increases your Intellect by 3% for 20 seconds, stacking 10 times. Consuming an Ember now increases your critical strike chance by 2% and your critical damage by 4% for 20 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30206","treeId":"coa-pyromancer-87","index":30206,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/spells/nhi_firehands_border.png","maxRank":1,"name":"Ember Touch","description":"Consumes 1 Ember Warm an ally with everliving flames, healing them for 83 + 45% SP + 100% Spirit, additonally scaling with your Spirit.","rankDescriptions":["Consumes 1 Ember Warm an ally with everliving flames, healing them for 83 + 45% SP + 100% Spirit, additonally scaling with your Spirit."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30651","treeId":"coa-pyromancer-87","index":30651,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/_d3meteor.png","maxRank":1,"name":"Meteor","description":"Generates 50 Heat Call down a meteor in an 8 yd area, dealing 122 + 125% fire SP Fire damage to 8 enemies and disorienting them for 4 seconds. Direct damage dealt will break the effect.","rankDescriptions":["Generates 50 Heat Call down a meteor in an 8 yd area, dealing 122 + 125% fire SP Fire damage to 8 enemies and disorienting them for 4 seconds. Direct damage dealt will break the effect."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29858","treeId":"coa-pyromancer-87","index":29858,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":1,"icon":"/assets/ui/spells/nhi_dragonwing_border.png","maxRank":1,"name":"Dragon Leap","description":"Leap to a target location and come crashing down, dealing 29 + 30% fire SP Fire damage to up to 10 nearby enemies.","rankDescriptions":["Leap to a target location and come crashing down, dealing 29 + 30% fire SP Fire damage to up to 10 nearby enemies."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29752","treeId":"coa-pyromancer-87","index":29752,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/achievement_mc_shazzrah.png","maxRank":1,"name":"Shazzrah's Boon","description":"Consuming an Ember now regenerates 2% of your maximum mana.","rankDescriptions":["Consuming an Ember now regenerates 2% of your maximum mana."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7927","treeId":"coa-pyromancer-87","index":7927,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/novart_magicspell_(9)_border.png","maxRank":1,"name":"Hellscape","description":"Increases the duration of Blaze by 4 sec.","rankDescriptions":["Increases the duration of Blaze by 4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30832","treeId":"coa-pyromancer-87","index":30832,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/spells/ability_rhyolith_magmaflow_wave.png","maxRank":1,"name":"Inferno Barrier","description":"Generates 30 Heat Shield an ally with molten lava, absorbing 84 + 55% fire SP damage. While active, attackers take 4 + 10% Spirit Fire damage each time they deal damage to them. Lasts 30 seconds.","rankDescriptions":["Generates 30 Heat Shield an ally with molten lava, absorbing 84 + 55% fire SP damage. While active, attackers take 4 + 10% Spirit Fire damage each time they deal damage to them. Lasts 30 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33904","treeId":"coa-pyromancer-87","index":33904,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/nhi_firehands_border.png","maxRank":2,"name":"Fire Safety","description":"Increases your Fire damage and healing by 4% and reduces your threat generated by -20%.","rankDescriptions":["Increases your Fire damage and healing by 2% and reduces your threat generated by -10%.","Increases your Fire damage and healing by 4% and reduces your threat generated by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6461","treeId":"coa-pyromancer-87","index":6461,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_fire_playingwithfire.png","maxRank":1,"name":"Flamecasting","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7203","treeId":"coa-pyromancer-87","index":7203,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/spell_fire_sealoffire.png","maxRank":1,"name":"Hasty Incantation","description":"Increases the range of Flame Step by 10 yds.","rankDescriptions":["Increases the range of Flame Step by 10 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11882","treeId":"coa-pyromancer-87","index":11882,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":3,"icon":"/assets/ui/spells/spell_fire_fireball02.png","maxRank":1,"name":"Heated","description":"Damage dealt by Dragon Leap now generates 10 Heat.","rankDescriptions":["Damage dealt by Dragon Leap now generates 10 Heat."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33882","treeId":"coa-pyromancer-87","index":33882,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":3,"icon":"/assets/ui/spells/nhi_fire_soul_border.png","maxRank":1,"name":"Blessing of the Firelands","description":"Each stack of Heat now increases the damage dealt by Dragon Leap by 6%.","rankDescriptions":["Each stack of Heat now increases the damage dealt by Dragon Leap by 6%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5854","treeId":"coa-pyromancer-87","index":5854,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/nhi_holy_speed_border.png","maxRank":1,"name":"Searing Speed","description":"Dealing periodic damage or healing now has a 15% chance to grant you Searing Speed.Searing SpeedIncreases your movement speed by 50% for 2 seconds.","rankDescriptions":["Dealing periodic damage or healing now has a 15% chance to grant you Searing Speed.Searing SpeedIncreases your movement speed by 50% for 2 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9927","treeId":"coa-pyromancer-87","index":9927,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/spell_fire_selfdestruct.png","maxRank":1,"name":"Pyromancy","description":"Increases your critical damage by 100%.","rankDescriptions":["Increases your critical damage by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-32499","treeId":"coa-pyromancer-87","index":32499,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/spell_frost_fireresistancetotem.png","maxRank":2,"name":"Bright Flames","description":"Increases the amount absorbed by Inferno Barrier by 20% and the damage it deals by 30%.","rankDescriptions":["Increases the amount absorbed by Inferno Barrier by 10% and the damage it deals by 15%.","Increases the amount absorbed by Inferno Barrier by 20% and the damage it deals by 30%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7481","treeId":"coa-pyromancer-87","index":7481,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/nhi_firestone_border.png","maxRank":1,"name":"Volcanic Shell","description":"Generates 50 Heat Conjure a shield of magma and fire around you, absorbing 500 + 200% fire SP damage. Lasts 10 seconds.","rankDescriptions":["Generates 50 Heat Conjure a shield of magma and fire around you, absorbing 500 + 200% fire SP damage. Lasts 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29940","treeId":"coa-pyromancer-87","index":29940,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/achievement_zone_cataclysm.png","maxRank":1,"name":"Cataclysm","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33905","treeId":"coa-pyromancer-87","index":33905,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/novart_magicspell_(37)_border.png","maxRank":1,"name":"Chains of Fire","description":"Reduces the cast time of Cindergrip by 0.25 sec and increases its range by 10 yds.","rankDescriptions":["Reduces the cast time of Cindergrip by 0.25 sec and increases its range by 10 yds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7760","treeId":"coa-pyromancer-87","index":7760,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/novart_physical_ability_(52)_border.png","maxRank":1,"name":"Lava-Drenched","description":"Reduces the chance for your helpful spells to be dispelled by -30%.","rankDescriptions":["Reduces the chance for your helpful spells to be dispelled by -30%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30634","treeId":"coa-pyromancer-87","index":30634,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_shield_pvp410_c_01.png","maxRank":1,"name":"Magma Guardian","description":"Increases the effectiveness of your Skin spells by 50%.","rankDescriptions":["Increases the effectiveness of your Skin spells by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29554","treeId":"coa-pyromancer-87","index":29554,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/_castercloak_fire.png","maxRank":1,"name":"Fiery Demeanor","description":"Reduces spell pushback suffered from damaging attacks by 50% and increases the pushback resistance provided by Ascension of Thaurissan by 15%.","rankDescriptions":["Reduces spell pushback suffered from damaging attacks by 50% and increases the pushback resistance provided by Ascension of Thaurissan by 15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6984","treeId":"coa-pyromancer-87","index":6984,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/ability_warlock_burningembers.png","maxRank":1,"name":"Fiery Intent","description":"Reduces the cooldown of Cataclysm by 30 sec.","rankDescriptions":["Reduces the cooldown of Cataclysm by 30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6554","treeId":"coa-pyromancer-87","index":6554,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/inv_artifact_dragonscales.png","maxRank":1,"name":"Dragonscales","description":"When you are stunned, damage taken is reduced by -20% for 3 seconds.","rankDescriptions":["When you are stunned, damage taken is reduced by -20% for 3 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30639","treeId":"coa-pyromancer-87","index":30639,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_misc_petdragonwhelptarecgosa.png","maxRank":1,"name":"Essence of Malygos","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6323","treeId":"coa-pyromancer-87","index":6323,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_misc_head_dragon_01.png","maxRank":1,"name":"Grace of Alexstrasza","description":"Burns off all movement impairing effects from all party and raid members in a 20 yd radius around you and grants them stun, slow and root immunity for 4 seconds.","rankDescriptions":["Burns off all movement impairing effects from all party and raid members in a 20 yd radius around you and grants them stun, slow and root immunity for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7042","treeId":"coa-pyromancer-87","index":7042,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/ysera3.png","maxRank":1,"name":"Gaze of Ysera","description":"Set Ysera's gaze upon an enemy, putting them to sleep for 40 seconds (8 sec vs players). Direct damage dealt may interrupt this effect.","rankDescriptions":["Set Ysera's gaze upon an enemy, putting them to sleep for 40 seconds (8 sec vs players). Direct damage dealt may interrupt this effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7041","treeId":"coa-pyromancer-87","index":7041,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_nature_dryaddispelmagic.png","maxRank":1,"name":"Purifying Flames","description":"Increases the duration of Essence of Malygos by 3 sec.","rankDescriptions":["Increases the duration of Essence of Malygos by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-14241","treeId":"coa-pyromancer-87","index":14241,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_babyfireelemental_shadowflame.png","maxRank":1,"name":"Binding Flames","description":"When you use Essence of Malygos on an ally other than yourself, you now instantly regenerate 25% of your missing mana.","rankDescriptions":["When you use Essence of Malygos on an ally other than yourself, you now instantly regenerate 25% of your missing mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-32368","treeId":"coa-pyromancer-87","index":32368,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/nhi_fire_explosion_border.png","maxRank":1,"name":"Flaming Finesse","description":"Increases the effectiveness of your Seal spells by 20%.","rankDescriptions":["Increases the effectiveness of your Seal spells by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30976","treeId":"coa-pyromancer-87","index":30976,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_misc_head_dragon_blue.png","maxRank":1,"name":"Dragon's Bane","description":"Increases the critical strike chance of Lava Shard and Cinderheart by 6% against Burning targets.","rankDescriptions":["Increases the critical strike chance of Lava Shard and Cinderheart by 6% against Burning targets."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33906","treeId":"coa-pyromancer-87","index":33906,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/inv_elemental_mote_fire01.png","maxRank":2,"name":"Flamer","description":"Increases your spell haste by 8%.","rankDescriptions":["Increases your spell haste by 4%.","Increases your spell haste by 8%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6957","treeId":"coa-pyromancer-87","index":6957,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_fire_moltenblood.png","maxRank":1,"name":"Constant Burning","description":"Reduces the cooldown of Spellburn by -4 sec and increases its duration by 1 sec.","rankDescriptions":["Reduces the cooldown of Spellburn by -4 sec and increases its duration by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-3843","treeId":"coa-pyromancer-87","index":3843,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_misc_head_dragon_green.png","maxRank":1,"name":"Ysera's Blessing","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33843","treeId":"coa-pyromancer-87","index":33843,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/achievement_cooking_masteroftheoven.png","maxRank":1,"name":"Al Dente","description":"Targets affected by Gaze of Ysera now take 15% increased Fire damage.","rankDescriptions":["Targets affected by Gaze of Ysera now take 15% increased Fire damage."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7479","treeId":"coa-pyromancer-87","index":7479,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/ability_mage_firestarter.png","maxRank":1,"name":"Ignis Ultimatus","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7817","treeId":"coa-pyromancer-87","index":7817,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/nhi_fire_rune_border.png","maxRank":1,"name":"Obliteration","description":"Eruption now also increases spell haste and movement speed by 20% for 10 seconds.","rankDescriptions":["Eruption now also increases spell haste and movement speed by 20% for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7819","treeId":"coa-pyromancer-87","index":7819,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/nhi_firerune_(2)_border.png","maxRank":1,"name":"Circle of Fire","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7010","treeId":"coa-pyromancer-87","index":7010,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/custom_t_fireball_border.png","maxRank":1,"name":"Ignis Fatalis","description":"Ignis Ultimatus is now guaranteed to critically strike, has 20% more critical damage, and channels 0.5 sec faster.","rankDescriptions":["Ignis Ultimatus is now guaranteed to critically strike, has 20% more critical damage, and channels 0.5 sec faster."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4304","treeId":"coa-pyromancer-87","index":4304,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":10,"icon":"/assets/ui/spells/nhi_holy_tornado_border.png","maxRank":1,"name":"Firestorm","description":"Create a fiery tornado at a location for 10 seconds. Enemies who enter its radius suffer 313 + 40% fire SP Fire damage and are knocked back slightly.","rankDescriptions":["Create a fiery tornado at a location for 10 seconds. Enemies who enter its radius suffer 313 + 40% fire SP Fire damage and are knocked back slightly."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4303","treeId":"coa-pyromancer-87","index":4303,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":10,"icon":"/assets/ui/spells/novart_magicspell_(51)_border.png","maxRank":1,"name":"Superheated","description":"Consuming or generating an Ember now has a 10% chance to superheat you, increasing all damage and healing done by 10% for 6 sec.","rankDescriptions":["Consuming or generating an Ember now has a 10% chance to superheat you, increasing all damage and healing done by 10% for 6 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7902","treeId":"coa-pyromancer-87","index":7902,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/ability_warlock_fireandbrimstone.png","maxRank":1,"name":"Hot Headed","description":"Reduces the cooldown of Circle of Fire by -30 sec and increases its disorient duration by 1 sec. Enemies disoriented by Circle of Fire cannot receive any healing.","rankDescriptions":["Reduces the cooldown of Circle of Fire by -30 sec and increases its disorient duration by 1 sec. Enemies disoriented by Circle of Fire cannot receive any healing."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/ranger.json b/src/game/generated/talentUi/ranger.json new file mode 100644 index 00000000..47193820 --- /dev/null +++ b/src/game/generated/talentUi/ranger.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"ranger","trees":[{"id":"coa-ranger-55","classId":"ranger","name":"Brigand","icon":"/assets/ui/spells/ability_hunter_mongoosebite.png","background":"","description":"Brigand nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-ranger-87","classId":"ranger","name":"Class","icon":"/assets/ui/spells/custom_dismounting_shot.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-ranger-2","classId":"ranger","name":"Farstrider","icon":"/assets/ui/spells/ability_felarakkoa_focusedblast.png","background":"","description":"Farstrider nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-ranger-54","classId":"ranger","name":"Archery","icon":"/assets/ui/spells/5_archerskill07_border.png","background":"","description":"Archery nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-31133","treeId":"coa-ranger-2","index":31133,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/ability_felarakkoa_focusedblast.png","maxRank":1,"name":"Falconstrike","description":"Every 5th Quick Shot within 15 seconds transforms into Falconstrike. Using a Horn instantly transforms Quick Shot into Falconstrike.Falconstrike (Transform)Generates 2 Advantage Call a cast of falcons to strike an enemy, dealing 121% Ranged Weapon Damage plus 10 Nature damage and calling 1 War Falcon to your aid for 6 seconds.","rankDescriptions":["Every 5th Quick Shot within 15 seconds transforms into Falconstrike. Using a Horn instantly transforms Quick Shot into Falconstrike.Falconstrike (Transform)Generates 2 Advantage Call a cast of falcons to strike an enemy, dealing 121% Ranged Weapon Damage plus 10 Nature damage and calling 1 War Falcon to your aid for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":10,"isPassive":false},{"id":"coa-entry-4030","treeId":"coa-ranger-2","index":4030,"prerequisiteId":"coa-entry-30352","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30352","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_legion_faction_dreamweavers.png","maxRank":1,"name":"Dream Flowers","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-30926","treeId":"coa-ranger-2","index":30926,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/misc_legionfall_hunter.png","maxRank":2,"name":"Cunning","description":"Increases your Focus regeneration by 30%.","rankDescriptions":["Increases your Focus regeneration by 15%.","Increases your Focus regeneration by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7050","treeId":"coa-ranger-2","index":7050,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/inv_ascend_horn_b_01.png","maxRank":2,"name":"Blow the Horns!","description":"Reduces the cooldown of Horn spells by -50%.","rankDescriptions":["Reduces the cooldown of Horn spells by -25%.","Reduces the cooldown of Horn spells by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34181","treeId":"coa-ranger-2","index":34181,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/ability_skyreach_castdown.png","maxRank":1,"name":"Falcon's Call","description":"Call down war falcons upon a targeted area, slowing up to 8 enemies within the area by -60% for 5 seconds. A Falcon is summoned for each enemy affected for 12 seconds.","rankDescriptions":["Call down war falcons upon a targeted area, slowing up to 8 enemies within the area by -60% for 5 seconds. A Falcon is summoned for each enemy affected for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34184","treeId":"coa-ranger-2","index":34184,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/ability_karoz_leap.png","maxRank":1,"name":"Backstep","description":"Leap backwards up to 10 yds.","rankDescriptions":["Leap backwards up to 10 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30932","treeId":"coa-ranger-2","index":30932,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/nhi_naturegoldenarrow_border.png","maxRank":1,"name":"Woodland Arrow","description":"Shoot a magical arrow, dealing 38 + 35% ranged AP Physical damage and reducing the cooldown of active Horn spells by -15 sec. Damage increased for each stack of Advantage.","rankDescriptions":["Shoot a magical arrow, dealing 38 + 35% ranged AP Physical damage and reducing the cooldown of active Horn spells by -15 sec. Damage increased for each stack of Advantage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6955","treeId":"coa-ranger-2","index":6955,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_misc_horn_03.png","maxRank":1,"name":"Horn of War","description":"Generates 1 Advantage Emanate an aura for 30 seconds that grants 5% increased critical strike chance to party and raid members. Does not stack with similar effects. While active, you generate 3 Focus every 1 sec.","rankDescriptions":["Generates 1 Advantage Emanate an aura for 30 seconds that grants 5% increased critical strike chance to party and raid members. Does not stack with similar effects. While active, you generate 3 Focus every 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":false},{"id":"coa-entry-11255","treeId":"coa-ranger-2","index":11255,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/skill_icon_skill105_border.png","maxRank":1,"name":"Battle Prowess","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.","rankDescriptions":["Increases chance to hit with all spells and attacks by 1% for you and party and raid members. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":false},{"id":"coa-entry-8358","treeId":"coa-ranger-2","index":8358,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/trade_archaeology_carved_wildhammer_gryphon_figurine.png","maxRank":1,"name":"Falcon Charmer","description":"Increases the duration of War Falcons by 3 sec.","rankDescriptions":["Increases the duration of War Falcons by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4631","treeId":"coa-ranger-2","index":4631,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_nature_naturetouchgrow.png","maxRank":1,"name":"Survivalist","description":"Reduces the cooldown of Survival Potion by -25%.","rankDescriptions":["Reduces the cooldown of Survival Potion by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34147","treeId":"coa-ranger-2","index":34147,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/custom_t_spiritualarrow_border.png","maxRank":1,"name":"Quel'dorei Poison","description":"Damage dealt by Woodland Arrow and Emerald Arrow now poison enemies for 3 seconds, dealing 91 + 10% ranged AP Nature damage every 1 sec.","rankDescriptions":["Damage dealt by Woodland Arrow and Emerald Arrow now poison enemies for 3 seconds, dealing 91 + 10% ranged AP Nature damage every 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6436","treeId":"coa-ranger-2","index":6436,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/ability_hunter_eagleeye.png","maxRank":1,"name":"War Falconer","description":"Reduces the cooldowns of Falcon's Call by -30 sec.","rankDescriptions":["Reduces the cooldowns of Falcon's Call by -30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11336","treeId":"coa-ranger-2","index":11336,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/icon_orangebird_toy.png","maxRank":1,"name":"Aerial Assault","description":"Removes the Focus cost of Falcon's Call, allows it to strike 2 additional targets, and increases its range by 10 yds.","rankDescriptions":["Removes the Focus cost of Falcon's Call, allows it to strike 2 additional targets, and increases its range by 10 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6437","treeId":"coa-ranger-2","index":6437,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_redbird.png","maxRank":1,"name":"Falcon Guide","description":"Falconstrike and Battle Screech now increase your movement speed by 30% for 3 seconds.","rankDescriptions":["Falconstrike and Battle Screech now increase your movement speed by 30% for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11437","treeId":"coa-ranger-2","index":11437,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/spell_nature_dryaddispelmagic.png","maxRank":1,"name":"Scavenger","description":"Increases the duration of Battle Screech and reduces the cooldown of Snapseed by 5 sec.","rankDescriptions":["Increases the duration of Battle Screech and reduces the cooldown of Snapseed by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19631","treeId":"coa-ranger-2","index":19631,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/custom_emerald_staff_b_border.png","maxRank":1,"name":"Emerald Arrow","description":"Set up a powerful magical arrow and then shoot it, dealing 10 + 20% ranged AP Nature damage to the target, increased for each stack of Advantage. Creates an enchanted flare on the ground, causing nearby enemies to take 224 + 20% ranged AP Nature damage every 2 sec, lasting 2 sec for each stack of Advantage.","rankDescriptions":["Set up a powerful magical arrow and then shoot it, dealing 10 + 20% ranged AP Nature damage to the target, increased for each stack of Advantage. Creates an enchanted flare on the ground, causing nearby enemies to take 224 + 20% ranged AP Nature damage every 2 sec, lasting 2 sec for each stack of Advantage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29631","treeId":"coa-ranger-2","index":29631,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/nhi_unholybird_border.png","maxRank":1,"name":"Falcon Diving","description":"Killing an enemy that yields experience or honor now summons a War Falcon to aid you in combat for 12 seconds. Can only occur once every 4 sec.","rankDescriptions":["Killing an enemy that yields experience or honor now summons a War Falcon to aid you in combat for 12 seconds. Can only occur once every 4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34201","treeId":"coa-ranger-2","index":34201,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/custom_accurate_bow_b_border.png","maxRank":1,"name":"Forest Fighter","description":"Your Skullpiercers or Emerald Arrows used with 5 stacks of Advantage now reduce the cooldown of Woodland Arrow by -5 sec.","rankDescriptions":["Your Skullpiercers or Emerald Arrows used with 5 stacks of Advantage now reduce the cooldown of Woodland Arrow by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11955","treeId":"coa-ranger-2","index":11955,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_rogue_bloodsplatter.png","maxRank":1,"name":"Gutpiercer","description":"Damage dealt by War Falcons and Dragonhawks now has a 15% chance to reduce the enemy's resistances by 75 and increase their Magic damage taken by -2% for 15 seconds.","rankDescriptions":["Damage dealt by War Falcons and Dragonhawks now has a 15% chance to reduce the enemy's resistances by 75 and increase their Magic damage taken by -2% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-11956","treeId":"coa-ranger-2","index":11956,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_druidflightzandalaritroll.png","maxRank":1,"name":"Battle Screech","description":"Empower party and raid members within 40 yds, increasing their attack or spell power by 65 for 15 seconds. Does not stack with similar effects.","rankDescriptions":["Empower party and raid members within 40 yds, increasing their attack or spell power by 65 for 15 seconds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-34199","treeId":"coa-ranger-2","index":34199,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/ability_hunter_pet_dragonhawk.png","maxRank":1,"name":"Dragonhawk Tamer","description":"Using a Horn now summons a Dragonhawk to assist you in combat for 15 seconds.","rankDescriptions":["Using a Horn now summons a Dragonhawk to assist you in combat for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34192","treeId":"coa-ranger-2","index":34192,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/_highelf_01.png","maxRank":2,"name":"Windrunner's Reach","description":"Increases the range of your ranged abilities by 10 yds. In addition, your critical strike chance against Undead, Beasts, and Dragonkin is increased by 4%.","rankDescriptions":["Increases the range of your ranged abilities by 5 yds. In addition, your critical strike chance against Undead, Beasts, and Dragonkin is increased by 2%.","Increases the range of your ranged abilities by 10 yds. In addition, your critical strike chance against Undead, Beasts, and Dragonkin is increased by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34185","treeId":"coa-ranger-2","index":34185,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/ability_druid_treeoflife_red.png","maxRank":1,"name":"Forest Herald","description":"Casting Toxic Dart and abilities that spend stacks of Advantage now have a 20% chance to spawn a green Dreamflower at a random location nearby 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.","rankDescriptions":["Casting Toxic Dart and abilities that spend stacks of Advantage now have a 20% chance to spawn a green Dreamflower at a random location nearby 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."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5431","treeId":"coa-ranger-2","index":5431,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_icon_wing04d.png","maxRank":1,"name":"Wingman","description":"Reduces all damage taken by -2% for each War Falcon or Dragonhawk you have active.","rankDescriptions":["Reduces all damage taken by -2% for each War Falcon or Dragonhawk you have active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11431","treeId":"coa-ranger-2","index":11431,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/ability_garrison_orangebird.png","maxRank":1,"name":"Guidance","description":"Increases your Physical and Nature damage dealt by 1% for each War Falcon or Dragonhawk you have active.","rankDescriptions":["Increases your Physical and Nature damage dealt by 1% for each War Falcon or Dragonhawk you have active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5054","treeId":"coa-ranger-2","index":5054,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/custom_druideskill_01_border.png","maxRank":1,"name":"Venom-Coated Seeds","description":"Damage dealt by Snapseed now reduces the enemy's chance to hit by -15% for 10 seconds.","rankDescriptions":["Damage dealt by Snapseed now reduces the enemy's chance to hit by -15% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4554","treeId":"coa-ranger-2","index":4554,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_misc_tournaments_symbol_bloodelf.png","maxRank":1,"name":"Freedom","description":"Free up to 10 nearby allies within 15 yds of you for 8 seconds, causing them to become immune to roots and snares, and allowing their critical strikes to increase their movement speed by 30% for 5 seconds.","rankDescriptions":["Free up to 10 nearby allies within 15 yds of you for 8 seconds, causing them to become immune to roots and snares, and allowing their critical strikes to increase their movement speed by 30% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34195","treeId":"coa-ranger-2","index":34195,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/ability_hunter_aspectoftheironhawk.png","maxRank":1,"name":"Falcon's Aid","description":"Periodic damage dealt now has a 10% chance to summon a War Falcon to aid you in battle for 6 seconds.","rankDescriptions":["Periodic damage dealt now has a 10% chance to summon a War Falcon to aid you in battle for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30924","treeId":"coa-ranger-2","index":30924,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/achievement_zone_jadeforest.png","maxRank":1,"name":"Highlander","description":"Each time you spawn a green Dreamflower you are granted 1 stack of Highlander.Highlander (Stacks)At 3 stacks, your next Falconstrike within 10 seconds deals 25% increased damage and reduces the enemy's healing received by -40% for 8 seconds.","rankDescriptions":["Each time you spawn a green Dreamflower you are granted 1 stack of Highlander.Highlander (Stacks)At 3 stacks, your next Falconstrike within 10 seconds deals 25% increased damage and reduces the enemy's healing received by -40% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11930","treeId":"coa-ranger-2","index":11930,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/skill_icon_skill118_border.png","maxRank":1,"name":"Defense of the Ancients","description":"You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects.","rankDescriptions":["You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-30930","treeId":"coa-ranger-2","index":30930,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/farstriderhorn.png","maxRank":1,"name":"Horn of Alacrity","description":"Generates 1 Advantage Emanate an aura for 30 seconds that grants 5% increased haste to party and raid members. Does not stack with similar effects. While active, you generate 3 Focus every 1 sec.","rankDescriptions":["Generates 1 Advantage Emanate an aura for 30 seconds that grants 5% increased haste to party and raid members. Does not stack with similar effects. While active, you generate 3 Focus every 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-34179","treeId":"coa-ranger-2","index":34179,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/inv_icon_feather06a.png","maxRank":1,"name":"Phoenix Plumes","description":"Your Skullpiercers and Woodland Arrows used with 5 stacks of Advantage now restore 3% Focus and summon a War Falcon for 6 seconds.","rankDescriptions":["Your Skullpiercers and Woodland Arrows used with 5 stacks of Advantage now restore 3% Focus and summon a War Falcon for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34196","treeId":"coa-ranger-2","index":34196,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/5_archerskill43_border.png","maxRank":1,"name":"Razorquills","description":"Increases the tick rate of Toxic Dart and Emerald Arrows by -20%.","rankDescriptions":["Increases the tick rate of Toxic Dart and Emerald Arrows by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9274","treeId":"coa-ranger-2","index":9274,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/nhi_spiritualarrow_border.png","maxRank":1,"name":"Thread The Needle","description":"Critical strikes with Quick Shot or Falconstrike now reduce the cast time and cost of your next ability that consumes Advantage by -34% for 15 seconds, stacking 3 times.","rankDescriptions":["Critical strikes with Quick Shot or Falconstrike now reduce the cast time and cost of your next ability that consumes Advantage by -34% for 15 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-3924","treeId":"coa-ranger-2","index":3924,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_pet_butterfly_green.png","maxRank":1,"name":"To The Skies!","description":"Reduces the cooldown of Bushcraft Glider by -30 sec.","rankDescriptions":["Reduces the cooldown of Bushcraft Glider by -30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6346","treeId":"coa-ranger-2","index":6346,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/5_druideskill08_border.png","maxRank":1,"name":"Hunting Tactics","description":"Damage dealt by Skullpiercer is increased by 30% against Poisoned targets.","rankDescriptions":["Damage dealt by Skullpiercer is increased by 30% against Poisoned targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30931","treeId":"coa-ranger-2","index":30931,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/artifactability_survivalhunter_eaglesbite.png","maxRank":1,"name":"Pecking","description":"Your War Falcons and Dragonhawks now have a 25% chance to deal additional Physical damage to 3 nearby enemies.","rankDescriptions":["Your War Falcons and Dragonhawks now have a 25% chance to deal additional Physical damage to 3 nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30925","treeId":"coa-ranger-2","index":30925,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_hunter_animalhandler.png","maxRank":1,"name":"Plumes of War","description":"Increases the critical strike chance of Falconstrike and Emerald Arrow by 15%. In addition, critical strikes with Falconstrike now increase the damage of subsequent Falconstrikes by 5% for 15 seconds, stacking 5 times.","rankDescriptions":["Increases the critical strike chance of Falconstrike and Emerald Arrow by 15%. In addition, critical strikes with Falconstrike now increase the damage of subsequent Falconstrikes by 5% for 15 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30929","treeId":"coa-ranger-2","index":30929,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_misc_herb_nightmarevine.png","maxRank":1,"name":"Whipvine Arrow","description":"Launch an arrow with magical vines attached to it at your target, dealing 78 + 33% ranged AP Nature damage and rooting them for 40 seconds (8 sec vs players). Damage caused may interrupt the effect. Hits 1 additional nearby target per stack of Advantage.","rankDescriptions":["Launch an arrow with magical vines attached to it at your target, dealing 78 + 33% ranged AP Nature damage and rooting them for 40 seconds (8 sec vs players). Damage caused may interrupt the effect. Hits 1 additional nearby target per stack of Advantage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10054","treeId":"coa-ranger-2","index":10054,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/ability_druid_treeoflife_red.png","maxRank":1,"name":"Frenzy","description":"Enrage all nearby allies, increasing their haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes.","rankDescriptions":["Enrage all nearby allies, increasing their haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-30054","treeId":"coa-ranger-2","index":30054,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/ability_trueshot.png","maxRank":1,"name":"Command Aura","description":"Emanate an aura for 15 seconds, causing allied players to deal 35% ranged AP additional damage as Stormstrike Damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute.","rankDescriptions":["Emanate an aura for 15 seconds, causing allied players to deal 35% ranged AP additional damage as Stormstrike Damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-34182","treeId":"coa-ranger-2","index":34182,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_hunter_beastwithin.png","maxRank":1,"name":"Coordination","description":"Your War Falcons and Dragonhawks now grant you a stack of Coordination when they deal damage. Coordination (Proc)Increases your critical strike chance and critical damage by 1% for 15 seconds, stacking 10 times.","rankDescriptions":["Your War Falcons and Dragonhawks now grant you a stack of Coordination when they deal damage. Coordination (Proc)Increases your critical strike chance and critical damage by 1% for 15 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34180","treeId":"coa-ranger-2","index":34180,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_naturetarget_border.png","maxRank":1,"name":"Thalassian Brand","description":"Mark an enemy for total destruction, increasing your allies ranged attack power against the target by 300 and dealing 2120 Nature damage over 15 seconds. The marked target can always be seen by the Ranger whether it stealths or turns invisible","rankDescriptions":["Mark an enemy for total destruction, increasing your allies ranged attack power against the target by 300 and dealing 2120 Nature damage over 15 seconds. The marked target can always be seen by the Ranger whether it stealths or turns invisible"],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9454","treeId":"coa-ranger-2","index":9454,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/nhi_magicflower_border.png","maxRank":1,"name":"Petalkeeper","description":"Woodland Arrow now spawns a rare red Dream Flower at a random location near you for 30 seconds. Critical strikes will apply a stack of Petals to red Dream Flowers. PetalsAt 10 stacks, your next Ranger Horn will cause the flower to burst, granting a buff to allies within 20 yards that causes damage dealt to heal them for 10% of the damage dealt and preventing their movement speed from being reduced below 100% of normal speed, for 8 seconds.","rankDescriptions":["Woodland Arrow now spawns a rare red Dream Flower at a random location near you for 30 seconds. Critical strikes will apply a stack of Petals to red Dream Flowers. PetalsAt 10 stacks, your next Ranger Horn will cause the flower to burst, granting a buff to allies within 20 yards that causes damage dealt to heal them for 10% of the damage dealt and preventing their movement speed from being reduced below 100% of normal speed, for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31178","treeId":"coa-ranger-54","index":31178,"prerequisiteId":"coa-entry-4028","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4028","requiredRank":1},{"talentId":"coa-entry-29144","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/5_archerskill07_border.png","maxRank":1,"name":"Precision Shot","description":"Precisely shoot an enemy from a great distance, inflicting 38 + 48.5% ranged AP Physical damage. Damage increased for each stack of Advantage. Usable while in Elude.","rankDescriptions":["Precisely shoot an enemy from a great distance, inflicting 38 + 48.5% ranged AP Physical damage. Damage increased for each stack of Advantage. Usable while in Elude."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4028","treeId":"coa-ranger-54","index":4028,"prerequisiteId":"coa-entry-29144","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29144","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_archaeology_70_tauren_stonewoodbow.png","maxRank":1,"name":"Skirmisher","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%.","rankDescriptions":["Level 10 Passive Increases the damage and tick rate of Toxic Dart by -30%, but reduces the duration of its damaging effect by -30%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-34151","treeId":"coa-ranger-54","index":34151,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/inv_trickshot.png","maxRank":2,"name":"Devastating Shots","description":"Increases your critical strike chance by 4% and your hit chance by 2%.","rankDescriptions":["Increases your critical strike chance by 2% and your hit chance by 1%.","Increases your critical strike chance by 4% and your hit chance by 2%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29447","treeId":"coa-ranger-54","index":29447,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/ability_rogue_bloodyeye.png","maxRank":1,"name":"Deadeye","description":"Increases the range of your ranged abilities and Auto Shot by 5 yds.","rankDescriptions":["Increases the range of your ranged abilities and Auto Shot by 5 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34153","treeId":"coa-ranger-54","index":34153,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/ability_hunter_assassinate2.png","maxRank":1,"name":"Improved Serrated Shot","description":"Increases the damage of Serrated Shot by 30%.","rankDescriptions":["Increases the damage of Serrated Shot by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7787","treeId":"coa-ranger-54","index":7787,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/ability_rogue_combatexpertise.png","maxRank":1,"name":"Swiftshot","description":"Damage dealt by Precision Shot now increases enemy Physical damage taken by 11% for 10 seconds.","rankDescriptions":["Damage dealt by Precision Shot now increases enemy Physical damage taken by 11% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31284","treeId":"coa-ranger-54","index":31284,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/inv_misc_ammo_arrow_04.png","maxRank":1,"name":"Superb Shot","description":"Damage dealt by Auto Shot now restores 4 Focus.","rankDescriptions":["Damage dealt by Auto Shot now restores 4 Focus."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4429","treeId":"coa-ranger-54","index":4429,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_crossbow_2h_kultirasquest_b_01.png","maxRank":1,"name":"Sniper's Focus","description":"Consuming Advantage now has a 20% chance per Advantage spent to refund 20 Focus.","rankDescriptions":["Consuming Advantage now has a 20% chance per Advantage spent to refund 20 Focus."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":false},{"id":"coa-entry-7788","treeId":"coa-ranger-54","index":7788,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/ivn_boot_cloth_warfrontshorde_b_01.png","maxRank":1,"name":"Boots of Elvenkind","description":"Increases your Agility by 5% and reduces the duration of movement slowing effects on you by -20%.","rankDescriptions":["Increases your Agility by 5% and reduces the duration of movement slowing effects on you by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31283","treeId":"coa-ranger-54","index":31283,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/_d3hungeringarrow.png","maxRank":2,"name":"Studded Arrows","description":"Increases the ranged weapon damage dealt by Quick Shot by 20%.","rankDescriptions":["Increases the ranged weapon damage dealt by Quick Shot by 10%.","Increases the ranged weapon damage dealt by Quick Shot by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29660","treeId":"coa-ranger-54","index":29660,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/uico_arrow_spell_01_border.png","maxRank":1,"name":"Hunting Shot","description":"Fire a shot that ricochets between 3 enemies, dealing Ranged Weapon Damage plus 6 to each enemy. Generates 1 stack of Advantage for each enemy hit.","rankDescriptions":["Fire a shot that ricochets between 3 enemies, dealing Ranged Weapon Damage plus 6 to each enemy. Generates 1 stack of Advantage for each enemy hit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8009","treeId":"coa-ranger-54","index":8009,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_hunter_mongoosebite.png","maxRank":1,"name":"A Quick Demise","description":"Auto shots now have a 20% chance to extend the duration of your Serrated Shot by 2 sec.","rankDescriptions":["Auto shots now have a 20% chance to extend the duration of your Serrated Shot by 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29914","treeId":"coa-ranger-54","index":29914,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_hunter_runningshot.png","maxRank":1,"name":"Skirmish","description":"Increases your critical strike chance by 15% and reduces your Focus costs by -25%. Lasts 4 sec for each stack of Advantage.","rankDescriptions":["Increases your critical strike chance by 15% and reduces your Focus costs by -25%. Lasts 4 sec for each stack of Advantage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34136","treeId":"coa-ranger-54","index":34136,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/nhi_bloodarrow_border.png","maxRank":1,"name":"Deadshot","description":"Generates 2 Advantage Shoot a powerful arrow at the target dealing 250% Ranged Weapon Damage plus 20.1. Only usable on enemies below 20% health.","rankDescriptions":["Generates 2 Advantage Shoot a powerful arrow at the target dealing 250% Ranged Weapon Damage plus 20.1. Only usable on enemies below 20% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34148","treeId":"coa-ranger-54","index":34148,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/nhi_naturearrow_border.png","maxRank":1,"name":"Neurotoxin Arrow","description":"Shoot at an enemy's throat with a toxin-laced arrow, dealing 25 + 36.07% ranged AP Nature damage and silencing them for 1 seconds. Duration increased by 1 sec per stack of Advantage.","rankDescriptions":["Shoot at an enemy's throat with a toxin-laced arrow, dealing 25 + 36.07% ranged AP Nature damage and silencing them for 1 seconds. Duration increased by 1 sec per stack of Advantage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4430","treeId":"coa-ranger-54","index":4430,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_weapon_bow_02.png","maxRank":1,"name":"Nimble","description":"Level 30 Passive Increases your ranged haste by 20% of your Agility.","rankDescriptions":["Level 30 Passive Increases your ranged haste by 20% of your Agility."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-29148","treeId":"coa-ranger-54","index":29148,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/5_archerskill28_border.png","maxRank":1,"name":"Hunting with Precision","description":"Your Hunting Shot now deals 25% increased damage for each subsequent target it ricochets to.","rankDescriptions":["Your Hunting Shot now deals 25% increased damage for each subsequent target it ricochets to."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30350","treeId":"coa-ranger-54","index":30350,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_knife_1h_thunderisleraid_d_02.png","maxRank":2,"name":"Serrations","description":"Increases your damage against bleeding or Poisoned targets by 10%.","rankDescriptions":["Increases your damage against bleeding or Poisoned targets by 5%.","Increases your damage against bleeding or Poisoned targets by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7789","treeId":"coa-ranger-54","index":7789,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_hunter_snipertraining.png","maxRank":1,"name":"Maximum Power","description":"Abilities used with 5 stacks of Advantage now refresh the duration of your active Skirmish by 5 sec.","rankDescriptions":["Abilities used with 5 stacks of Advantage now refresh the duration of your active Skirmish by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30046","treeId":"coa-ranger-54","index":30046,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/ability_hunter_piercingshots.png","maxRank":1,"name":"Corrosive Poison","description":"Your ranged abilities against Poisoned targets now ignores 25% of enemy armor.","rankDescriptions":["Your ranged abilities against Poisoned targets now ignores 25% of enemy armor."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34155","treeId":"coa-ranger-54","index":34155,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/5_archerskill03_border.png","maxRank":1,"name":"Opportunist","description":"Increases the critical strike chance of Precision Shot by 50% on enemies above 80% health.","rankDescriptions":["Increases the critical strike chance of Precision Shot by 50% on enemies above 80% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30180","treeId":"coa-ranger-54","index":30180,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/uico_blood_spell_02_border.png","maxRank":1,"name":"Lethal Wounds","description":"Increases the tick rate of your periodic damage effects by -20%.","rankDescriptions":["Increases the tick rate of your periodic damage effects by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7905","treeId":"coa-ranger-54","index":7905,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/uico_arrow_spell_02_border.png","maxRank":1,"name":"Mortal Shots","description":"Reduces the cooldown of Crippling Shot by -4 sec.","rankDescriptions":["Reduces the cooldown of Crippling Shot by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6944","treeId":"coa-ranger-54","index":6944,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/_diablo3_arrowrain_hunter.png","maxRank":1,"name":"An Arrow for Everything","description":"Increases the effectiveness of Quivers by 25%.","rankDescriptions":["Increases the effectiveness of Quivers by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34152","treeId":"coa-ranger-54","index":34152,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/nhi_goldenarrow_border.png","maxRank":1,"name":"New-Age Archery","description":"Increases the damage of Skullpiercer and Precision Shot by 20%.","rankDescriptions":["Increases the damage of Skullpiercer and Precision Shot by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4431","treeId":"coa-ranger-54","index":4431,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_misc_thornnecklace.png","maxRank":1,"name":"Bleeding Edge","description":"Level 40 Passive Allows the periodic damage dealt by Serrated Shot to critically strike.","rankDescriptions":["Level 40 Passive Allows the periodic damage dealt by Serrated Shot to critically strike."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-34137","treeId":"coa-ranger-54","index":34137,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/ability_hunter_silenthunter.png","maxRank":1,"name":"Hawkeye","description":"You now fire an arrow every 3 sec at enemies within 30 yds affected by your Hunting Shot, dealing 75% Ranged Weapon Damage. Scales with Hunting Shot modifiers.","rankDescriptions":["You now fire an arrow every 3 sec at enemies within 30 yds affected by your Hunting Shot, dealing 75% Ranged Weapon Damage. Scales with Hunting Shot modifiers."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34133","treeId":"coa-ranger-54","index":34133,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/ability_hunter_killcommand.png","maxRank":1,"name":"Strike Where It Hurts","description":"Your ability critical strikes now increase the damage the target takes from bleeds by 30% for 15 seconds.","rankDescriptions":["Your ability critical strikes now increase the damage the target takes from bleeds by 30% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6348","treeId":"coa-ranger-54","index":6348,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/artifactability_marksmanhunter_legacyofthewindrunners.png","maxRank":1,"name":"Archery Master","description":"Critical strikes with Quick Shot now generate an additional stack of Advantage.","rankDescriptions":["Critical strikes with Quick Shot now generate an additional stack of Advantage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4794","treeId":"coa-ranger-54","index":4794,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/_d3elementalarrow.png","maxRank":1,"name":"Light Arrows","description":"Increases the damage of Precision Shot by 20% when used from 40 yds or further away from your target.","rankDescriptions":["Increases the damage of Precision Shot by 20% when used from 40 yds or further away from your target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7794","treeId":"coa-ranger-54","index":7794,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/ability_hunter_mastermarksman.png","maxRank":1,"name":"Masterful Archery","description":"While in Elude, gain a stack of Masterful Archery every 2 sec.Masterful Archery (Aura)Your next Precision Shot now deals 10% increased damage for 10 seconds, stacking up to 5 times.","rankDescriptions":["While in Elude, gain a stack of Masterful Archery every 2 sec.Masterful Archery (Aura)Your next Precision Shot now deals 10% increased damage for 10 seconds, stacking up to 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6941","treeId":"coa-ranger-54","index":6941,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/nhi_blood_shot_border.png","maxRank":1,"name":"Pierced","description":"Critical strikes with Skullpiercer and Precision Shot cause the enemy to bleed for an additional 15% damage of the damage dealt, plus an additional 35% over 4 seconds.","rankDescriptions":["Critical strikes with Skullpiercer and Precision Shot cause the enemy to bleed for an additional 15% damage of the damage dealt, plus an additional 35% over 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7904","treeId":"coa-ranger-54","index":7904,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_fire_shot_border.png","maxRank":1,"name":"Incendiary Shot","description":"Shoot a burning arrow dealing 791 + 35% ranged AP + 45% fire SP Fire damage to an enemy and up to 5 enemies within 6 yds, and causing your next 3 direct damage Advantage spenders to deal 50% of their damage to nearby enemies. Direct damage increased by 20% for each stack of Advantage.","rankDescriptions":["Shoot a burning arrow dealing 791 + 35% ranged AP + 45% fire SP Fire damage to an enemy and up to 5 enemies within 6 yds, and causing your next 3 direct damage Advantage spenders to deal 50% of their damage to nearby enemies. Direct damage increased by 20% for each stack of Advantage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31281","treeId":"coa-ranger-54","index":31281,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/achievement_zone_jadeforest.png","maxRank":1,"name":"Pathfinder","description":"Your Adrenaline Rush now incurs a -90% reduced cooldown when used while Elude is active.","rankDescriptions":["Your Adrenaline Rush now incurs a -90% reduced cooldown when used while Elude is active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7793","treeId":"coa-ranger-54","index":7793,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/5_headshot_border.png","maxRank":1,"name":"Headshots Only","description":"Periodic damage dealt with Serrated Shot and Toxic Dart now increases the damage of your next Precision Shot within 8 seconds by 10%, stacking 10 times.","rankDescriptions":["Periodic damage dealt with Serrated Shot and Toxic Dart now increases the damage of your next Precision Shot within 8 seconds by 10%, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7952","treeId":"coa-ranger-54","index":7952,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/ability_trueshot.png","maxRank":1,"name":"Sharpshooter","description":"Level 50 Passive Adds 25% to the bonuses that your stacks of Advantage provide.","rankDescriptions":["Level 50 Passive Adds 25% to the bonuses that your stacks of Advantage provide."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-31280","treeId":"coa-ranger-54","index":31280,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/achievement_character_nightelf_female.png","maxRank":1,"name":"Elven Enchantments","description":"Increases the damage dealt by your Searing and Poison Quivers by 25%. In addition, dealing damage with Searing or Poison Quiver now grants a stack of Elven Enchantments.Elven EnchantmentsCast time of the next Incendiary Shot within 10 seconds is reduced by -10% and critical strike chance increased by 10%, stacking 10 times.","rankDescriptions":["Increases the damage dealt by your Searing and Poison Quivers by 25%. In addition, dealing damage with Searing or Poison Quiver now grants a stack of Elven Enchantments.Elven EnchantmentsCast time of the next Incendiary Shot within 10 seconds is reduced by -10% and critical strike chance increased by 10%, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7551","treeId":"coa-ranger-54","index":7551,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/5_archerskill13_border.png","maxRank":1,"name":"Silent, But Deadly","description":"Direct Physical damage dealt now has an 8% chance to allow you to use Deadshot regardless of the targets health for 8 seconds.","rankDescriptions":["Direct Physical damage dealt now has an 8% chance to allow you to use Deadshot regardless of the targets health for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12551","treeId":"coa-ranger-54","index":12551,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_revendreth_demonhunter.png","maxRank":1,"name":"One Shot, One Kill","description":"Increases the damage of Deadshot by 75%.","rankDescriptions":["Increases the damage of Deadshot by 75%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7792","treeId":"coa-ranger-54","index":7792,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/5_archerskill31_border.png","maxRank":1,"name":"Brutal Shot","description":"Fire a volley of powerful shots that pierce through Armor, dealing 450% Ranged Weapon Damage plus 300 to all targets in a 40 yd line. While Skirmish is active this ability is guaranteed to critically strike.","rankDescriptions":["Fire a volley of powerful shots that pierce through Armor, dealing 450% Ranged Weapon Damage plus 300 to all targets in a 40 yd line. While Skirmish is active this ability is guaranteed to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31179","treeId":"coa-ranger-55","index":31179,"prerequisiteId":"coa-entry-4029","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4029","requiredRank":1},{"talentId":"coa-entry-29337","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/ability_hunter_mongoosebite.png","maxRank":1,"name":"Ravage","description":"Generates 1 Advantage Ravage an enemy, causing them to bleed out dealing 112 + 23.72% AP Physical damage over 12 seconds.","rankDescriptions":["Generates 1 Advantage Ravage an enemy, causing them to bleed out dealing 112 + 23.72% AP Physical damage over 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4029","treeId":"coa-ranger-55","index":4029,"prerequisiteId":"coa-entry-29337","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29337","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/ability_rogue_energeticrecovery.png","maxRank":1,"name":"Ravager","description":"Level 10 Passive Your Wild Strike now generates 1 additional Advantage. Removes the minimum range of your ranged abilities.","rankDescriptions":["Level 10 Passive Your Wild Strike now generates 1 additional Advantage. Removes the minimum range of your ranged abilities."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-1389","treeId":"coa-ranger-55","index":1389,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/ability_rogue_cheatdeath.png","maxRank":2,"name":"Banditry","description":"Increases your critical strike chance by 4% and Focus regeneration by 30%.","rankDescriptions":["Increases your critical strike chance by 2% and Focus regeneration by 15%.","Increases your critical strike chance by 4% and Focus regeneration by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29328","treeId":"coa-ranger-55","index":29328,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/inv_leather_a_03defias.png","maxRank":1,"name":"Knuckleduster","description":"Periodic damage dealt now generates 5 Focus.","rankDescriptions":["Periodic damage dealt now generates 5 Focus."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34166","treeId":"coa-ranger-55","index":34166,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/ability_hunter_swiftstrike.png","maxRank":1,"name":"Jagged Cuts","description":"Increases the damage and duration of Toxic Dart and Ravage by 25%.","rankDescriptions":["Increases the damage and duration of Toxic Dart and Ravage by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12449","treeId":"coa-ranger-55","index":12449,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/ability_rogue_deadliness.png","maxRank":1,"name":"Assassin","description":"Increases the duration of Knockout and Crippling Shot by 1 sec.","rankDescriptions":["Increases the duration of Knockout and Crippling Shot by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29449","treeId":"coa-ranger-55","index":29449,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_shadow_mindsteal.png","maxRank":1,"name":"Excessive But Necessary","description":"Reduces the cooldown of Elude and Knockout by -4 sec.","rankDescriptions":["Reduces the cooldown of Elude and Knockout by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6672","treeId":"coa-ranger-55","index":6672,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/ability_warrior_cleave.png","maxRank":2,"name":"Close Quarters","description":"Increases your attack power and Agility by 6%.","rankDescriptions":["Increases your attack power and Agility by 3%.","Increases your attack power and Agility by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31357","treeId":"coa-ranger-55","index":31357,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/ability_rogue_kidneyshot.png","maxRank":1,"name":"Beatdown","description":"Level 20 Passive Auto attacks now have a 5% chance to reveal a fault in the enemy's defenses, causing your next instance of Physical ability damage to ignore Armor. Chance increased by 15% while wielding a polearm.","rankDescriptions":["Level 20 Passive Auto attacks now have a 5% chance to reveal a fault in the enemy's defenses, causing your next instance of Physical ability damage to ignore Armor. Chance increased by 15% while wielding a polearm."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-5430","treeId":"coa-ranger-55","index":5430,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/ability_rogue_ruthlessness.png","maxRank":1,"name":"Assault","description":"Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 8 + 100% AP 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.","rankDescriptions":["Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 8 + 100% AP 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."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30049","treeId":"coa-ranger-55","index":30049,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/ability_rogue_rollthebones02.png","maxRank":1,"name":"Dirty Blades","description":"For 4 seconds, your melee auto attacks deal an additional 30% (doubled with a dagger equipped) of the damage dealt as Nature damage and reduces your target's healing received by -20% for 8 seconds, stacking 2 times. Duration increased by 4 sec for each stack of Advantage. Usable while in Elude.","rankDescriptions":["For 4 seconds, your melee auto attacks deal an additional 30% (doubled with a dagger equipped) of the damage dealt as Nature damage and reduces your target's healing received by -20% for 8 seconds, stacking 2 times. Duration increased by 4 sec for each stack of Advantage. Usable while in Elude."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6673","treeId":"coa-ranger-55","index":6673,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv_polearm_2h_pandariaquest_b_01.png","maxRank":1,"name":"Bounty Hunter","description":"Damage dealt by Flank and Rusty Shiv now increases the target's damage taken from your Advantage spenders by 25% for 8 seconds.","rankDescriptions":["Damage dealt by Flank and Rusty Shiv now increases the target's damage taken from your Advantage spenders by 25% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34139","treeId":"coa-ranger-55","index":34139,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_rogue_rollthebones.png","maxRank":1,"name":"Dice Games","description":"Increases the critical strike chance of Wild Strike and Assault by 5%.","rankDescriptions":["Increases the critical strike chance of Wild Strike and Assault by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30461","treeId":"coa-ranger-55","index":30461,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_rogue_versatility.png","maxRank":1,"name":"Hookshot","description":"Launch a hook at a target attempting to lodge it into an open wound, dealing 66 + 100% AP Physical damage. If the target is bleeding, you can reactivate this to pull yourself to them, dealing 150% Weapon Damage and generating 2 Advantage","rankDescriptions":["Launch a hook at a target attempting to lodge it into an open wound, dealing 66 + 100% AP Physical damage. If the target is bleeding, you can reactivate this to pull yourself to them, dealing 150% Weapon Damage and generating 2 Advantage"],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6671","treeId":"coa-ranger-55","index":6671,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/5_druideskill44_border.png","maxRank":1,"name":"Highwayman","description":"Direct critical strikes while behind your target increase your haste by 15% for 5 seconds, or for your next 2 attacks.","rankDescriptions":["Direct critical strikes while behind your target increase your haste by 15% for 5 seconds, or for your next 2 attacks."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30459","treeId":"coa-ranger-55","index":30459,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/ability_warrior_throwdown_2.png","maxRank":1,"name":"Ambuscade","description":"Increases the base damage of Skullpiercer and Flank by 20%, plus an additional 35% if you have a polearm equipped.","rankDescriptions":["Increases the base damage of Skullpiercer and Flank by 20%, plus an additional 35% if you have a polearm equipped."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-3871","treeId":"coa-ranger-55","index":3871,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/custom_warriorskill_02_border.png","maxRank":1,"name":"Rub It In","description":"Level 30 Passive Each stack of Advantage spent now gives you a 20% chance to refund 1 stack of Advantage.","rankDescriptions":["Level 30 Passive Each stack of Advantage spent now gives you a 20% chance to refund 1 stack of Advantage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7428","treeId":"coa-ranger-55","index":7428,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/custom_warriorskill_05_border.png","maxRank":1,"name":"Throatpunch","description":"Punch an enemy in the throat, interrupting the enemy's spellcast, preventing any spell from that school of magic from being cast for 2 seconds.","rankDescriptions":["Punch an enemy in the throat, interrupting the enemy's spellcast, preventing any spell from that school of magic from being cast for 2 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8010","treeId":"coa-ranger-55","index":8010,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/ability_druid_improvedmoonkinform.png","maxRank":2,"name":"Trueshot Lodge Training","description":"Increases your off-hand weapon damage by 50%. While wielding a polearm, your Physical damage dealt is increased by 6%.","rankDescriptions":["Increases your off-hand weapon damage by 25%. While wielding a polearm, your Physical damage dealt is increased by 3%.","Increases your off-hand weapon damage by 50%. While wielding a polearm, your Physical damage dealt is increased by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6676","treeId":"coa-ranger-55","index":6676,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/ability_cheapshot.png","maxRank":1,"name":"Focused Fighter","description":"Reduces the Focus cost of Flank, Blackjack, and Wild Strike by -10%.","rankDescriptions":["Reduces the Focus cost of Flank, Blackjack, and Wild Strike by -10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34175","treeId":"coa-ranger-55","index":34175,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/ability_druid_supriseattack.png","maxRank":1,"name":"Wild Man","description":"Your Wild Strike now strikes 2 additional nearby enemies, but deals reduced damage with each enemy struck.","rankDescriptions":["Your Wild Strike now strikes 2 additional nearby enemies, but deals reduced damage with each enemy struck."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7048","treeId":"coa-ranger-55","index":7048,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/ability_hunter_assassinate.png","maxRank":1,"name":"Assassin","description":"Increases the effectiveness of Instinct by 25%.","rankDescriptions":["Increases the effectiveness of Instinct by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34141","treeId":"coa-ranger-55","index":34141,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/_diablo3_execute_hunter.png","maxRank":1,"name":"Stalker","description":"Reduces the cooldown of Cutthroat by -15 sec, but reduces the range of Cutthroat by -10 yds.","rankDescriptions":["Reduces the cooldown of Cutthroat by -15 sec, but reduces the range of Cutthroat by -10 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6675","treeId":"coa-ranger-55","index":6675,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/novart_passivemastery_(10)_border.png","maxRank":1,"name":"'Tactical' Advantage","description":"Knockout and Bushwhack now increases your damage dealt against the target by 10% for 5 seconds.","rankDescriptions":["Knockout and Bushwhack now increases your damage dealt against the target by 10% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29701","treeId":"coa-ranger-55","index":29701,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/_fanofknives_yellow.png","maxRank":1,"name":"Quills","description":"Launch darts at up to 5 nearby enemies, dealing 15 + 30% AP Ranged Physical damage. Damage increased and strikes 1 additional target for each stack of Advantage.","rankDescriptions":["Launch darts at up to 5 nearby enemies, dealing 15 + 30% AP Ranged Physical damage. Damage increased and strikes 1 additional target for each stack of Advantage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34140","treeId":"coa-ranger-55","index":34140,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_hunter_cobrashot.png","maxRank":2,"name":"Underhanded","description":"Increases the attack power scaling of Skullpiercer by 30%.","rankDescriptions":["Increases the attack power scaling of Skullpiercer by 15%.","Increases the attack power scaling of Skullpiercer by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13164","treeId":"coa-ranger-55","index":13164,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/inv_spear_02.png","maxRank":1,"name":"Polearm Craft","description":"While a polearm is equipped, your chance to trigger your Weapon Crafts and their damage dealt is increased by 25%.","rankDescriptions":["While a polearm is equipped, your chance to trigger your Weapon Crafts and their damage dealt is increased by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34164","treeId":"coa-ranger-55","index":34164,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/achievement_boss_edwinvancleef.png","maxRank":1,"name":"Pilfering","description":"Adds 10% to the damage dealt by Dirty Blades and causes its damage dealt to heal you equal to 50% of the value.","rankDescriptions":["Adds 10% to the damage dealt by Dirty Blades and causes its damage dealt to heal you equal to 50% of the value."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9275","treeId":"coa-ranger-55","index":9275,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/ability_criticalstrike.png","maxRank":1,"name":"Lacerations","description":"Level 40 Passive Allows the periodic damage dealt by Ravage to critically strike.","rankDescriptions":["Level 40 Passive Allows the periodic damage dealt by Ravage to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-11349","treeId":"coa-ranger-55","index":11349,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_misc_quiver_05.png","maxRank":1,"name":"Quick-Witted","description":"Avoiding an attack now causes you to quickly stab an enemy with one of the arrows from your quiver, dealing 1 + 100% AP Physical damage and reducing their attack speed by -20% for 8 seconds.","rankDescriptions":["Avoiding an attack now causes you to quickly stab an enemy with one of the arrows from your quiver, dealing 1 + 100% AP Physical damage and reducing their attack speed by -20% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11167","treeId":"coa-ranger-55","index":11167,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_spear_01.png","maxRank":1,"name":"Tip of the Spear","description":"While you have a polearm equipped, your Wild Strike now has a 15% chance to strike 3 additional times.","rankDescriptions":["While you have a polearm equipped, your Wild Strike now has a 15% chance to strike 3 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34167","treeId":"coa-ranger-55","index":34167,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/ability_rogue_thiefsbargain.png","maxRank":1,"name":"Marked for Death","description":"While you have daggers equipped, direct critical strikes on enemies below 35% health now have a chance to allow the use of abilities as if you were in Elude for 5 seconds.","rankDescriptions":["While you have daggers equipped, direct critical strikes on enemies below 35% health now have a chance to allow the use of abilities as if you were in Elude for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1387","treeId":"coa-ranger-55","index":1387,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_shoulder_mail_raidhunter_l_01.png","maxRank":1,"name":"Guile of the Cutthroat","description":"Increases party and raid member's melee and ranged attack power by 5%. Does not stack with similar effects. In addition, increases your damage dealt by 3%.","rankDescriptions":["Increases party and raid member's melee and ranged attack power by 5%. Does not stack with similar effects. In addition, increases your damage dealt by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1388","treeId":"coa-ranger-55","index":1388,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/ability_monk_quipunch.png","maxRank":1,"name":"Dirty Fighter","description":"Every 2nd critical strike with Skullpiercer or Assault within 30 seconds now transforms your next Assault within 15 seconds into Sucker Punch. Sucker PunchSucker punch an enemy, dealing 291 + 35% AP Physical damage and generating 5 stacks of Advantage. Scales with modifiers to Assault. For 8 seconds, the critical strike chance of Assault is increased by 10%.","rankDescriptions":["Every 2nd critical strike with Skullpiercer or Assault within 30 seconds now transforms your next Assault within 15 seconds into Sucker Punch. Sucker PunchSucker punch an enemy, dealing 291 + 35% AP Physical damage and generating 5 stacks of Advantage. Scales with modifiers to Assault. For 8 seconds, the critical strike chance of Assault is increased by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5045","treeId":"coa-ranger-55","index":5045,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_rogue_findweakness.png","maxRank":1,"name":"Outmaneuver","description":"Teleport to an enemy, summon a decoy beneath them, and mark them for 8 seconds. Dealing melee damage to them adds a stack to this effect, up to 20 stacks. Reactivating this ability within 8 seconds deals 851 + 55% AP Physical damage to your target, increased by 30% for each stack on the target, and then teleports you back to your decoy. Usable while in Elude.","rankDescriptions":["Teleport to an enemy, summon a decoy beneath them, and mark them for 8 seconds. Dealing melee damage to them adds a stack to this effect, up to 20 stacks. Reactivating this ability within 8 seconds deals 851 + 55% AP Physical damage to your target, increased by 30% for each stack on the target, and then teleports you back to your decoy. Usable while in Elude."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34176","treeId":"coa-ranger-55","index":34176,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_inscription_runescrolloffortitude_green.png","maxRank":1,"name":"Stonemason's Secret","description":"Your Skullpiercer used with 5 stacks of Advantage now extends the duration of Dirty Blades by 6 sec.","rankDescriptions":["Your Skullpiercer used with 5 stacks of Advantage now extends the duration of Dirty Blades by 6 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9277","treeId":"coa-ranger-55","index":9277,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/ability_rogue_hungerforblood.png","maxRank":1,"name":"Dastardly","description":"Level 50 Passive Increases your critical damage dealt by 15% on enemies above 80% health or below 20% health.","rankDescriptions":["Level 50 Passive Increases your critical damage dealt by 15% on enemies above 80% health or below 20% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7429","treeId":"coa-ranger-55","index":7429,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/ability_rogue_poisonedknife.png","maxRank":1,"name":"Viper's Bite","description":"Generates 2 Advantage Unleash 4 quick strikes over 1 seconds to an enemy, each dealing 85% Weapon Damage. If the target is bleeding, each strike deals an additional 400 + 25% AP Physical damage. If the target is poisoned, each strike deals Nature damage instead of Physical damage.","rankDescriptions":["Generates 2 Advantage Unleash 4 quick strikes over 1 seconds to an enemy, each dealing 85% Weapon Damage. If the target is bleeding, each strike deals an additional 400 + 25% AP Physical damage. If the target is poisoned, each strike deals Nature damage instead of Physical damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30045","treeId":"coa-ranger-55","index":30045,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/spell_nature_mirrorimage.png","maxRank":1,"name":"Instinctual Combatant","description":"Casting Instinct now also restores 40 extra Focus and guarantees your next 3 Skullpiercers or Assaults within 20 seconds to critically strike. In addition, Instinct now grants you an additional 10% of your Agility as melee attack power.","rankDescriptions":["Casting Instinct now also restores 40 extra Focus and guarantees your next 3 Skullpiercers or Assaults within 20 seconds to critically strike. In addition, Instinct now grants you an additional 10% of your Agility as melee attack power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30462","treeId":"coa-ranger-55","index":30462,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/ability_gouge.png","maxRank":1,"name":"Barbed Quills","description":"Damage dealt by Wild Strike and Quills will now tear into enemies, causing them to bleed for 78 Physical damage over 9 seconds, stacking 4 times. Damage dealt by Quills now spreads your periodic effects to 5 enemies within 10 yds and extends their duration by 2 sec.","rankDescriptions":["Damage dealt by Wild Strike and Quills will now tear into enemies, causing them to bleed for 78 Physical damage over 9 seconds, stacking 4 times. Damage dealt by Quills now spreads your periodic effects to 5 enemies within 10 yds and extends their duration by 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29144","treeId":"coa-ranger-87","index":29144,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/custom_dismounting_shot.png","maxRank":1,"name":"Crippling Shot","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30352","treeId":"coa-ranger-87","index":30352,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/nhi_naturecocktail_border.png","maxRank":1,"name":"Survival Potion","description":"Drink a survival potion, dispelling all poison and disease effects and removing 1 poison and disease effect every 3 sec for 9 seconds.","rankDescriptions":["Drink a survival potion, dispelling all poison and disease effects and removing 1 poison and disease effect every 3 sec for 9 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29337","treeId":"coa-ranger-87","index":29337,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/ability_monk_blackoutkick.png","maxRank":1,"name":"Knockout","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30351","treeId":"coa-ranger-87","index":30351,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/inv_drink_waterskin_03.png","maxRank":1,"name":"Improved Waterskins","description":"Increases the effectiveness of your Waterskins by 25%.","rankDescriptions":["Increases the effectiveness of your Waterskins by 25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7258","treeId":"coa-ranger-87","index":7258,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_ascend_bag_06_b.png","maxRank":1,"name":"Survival Kit","description":"Your Survival Potion now also heals you for 10% of your maximum health with each tick.","rankDescriptions":["Your Survival Potion now also heals you for 10% of your maximum health with each tick."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6670","treeId":"coa-ranger-87","index":6670,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/custom_16_shadow_swords_border.png","maxRank":1,"name":"Elusive Character","description":"Increases your damage dealt by 10% for 12 seconds after leaving Elude.","rankDescriptions":["Increases your damage dealt by 10% for 12 seconds after leaving Elude."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34169","treeId":"coa-ranger-87","index":34169,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/twisted_seed.png","maxRank":1,"name":"Snapseed","description":"Toss a snapseed at an enemy, dealing 27 + 30% ranged AP Physical damage and knocking them back.","rankDescriptions":["Toss a snapseed at an enemy, dealing 27 + 30% ranged AP Physical damage and knocking them back."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29416","treeId":"coa-ranger-87","index":29416,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/5_archerskill10_border.png","maxRank":3,"name":"Grace","description":"Increases your Agility and movement speed by 10%.","rankDescriptions":["Increases your Agility and movement speed by 4%.","Increases your Agility and movement speed by 7%.","Increases your Agility and movement speed by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34172","treeId":"coa-ranger-87","index":34172,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/custom_archerskill_04_nobg_border.png","maxRank":1,"name":"Cutthroat","description":"Shoot a powerful arrow that deals Weapon Damage plus 40 and stuns the target for 1 seconds. Duration increased by 1 sec per stack of Advantage.","rankDescriptions":["Shoot a powerful arrow that deals Weapon Damage plus 40 and stuns the target for 1 seconds. Duration increased by 1 sec per stack of Advantage."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34171","treeId":"coa-ranger-87","index":34171,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/spell_nature_healingtouch.png","maxRank":1,"name":"Resourceful","description":"Reduces the cooldown of Crippling Shot and Snapseed by -20%.","rankDescriptions":["Reduces the cooldown of Crippling Shot and Snapseed by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29331","treeId":"coa-ranger-87","index":29331,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/nhi_natureempower_border.png","maxRank":1,"name":"Briar Veil","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34159","treeId":"coa-ranger-87","index":34159,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/ability_paladin_handoflight.png","maxRank":1,"name":"Deft Hands","description":"Increases your melee and ranged haste by 5%.","rankDescriptions":["Increases your melee and ranged haste by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34168","treeId":"coa-ranger-87","index":34168,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/ability_racial_makecamp.png","maxRank":1,"name":"Camper","description":"Reduces the cast time of your Bushcraft abilities by -50%.","rankDescriptions":["Reduces the cast time of your Bushcraft abilities by -50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34157","treeId":"coa-ranger-87","index":34157,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_weapon_bow_01.png","maxRank":1,"name":"Pinpoint Accuracy","description":"Critical strikes with direct damaging abilities now generate 4 Focus.","rankDescriptions":["Critical strikes with direct damaging abilities now generate 4 Focus."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7791","treeId":"coa-ranger-87","index":7791,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_druid_naturalperfection.png","maxRank":1,"name":"Survival Expert","description":"Increases the dodge chance provided by Briar Veil by 25%.","rankDescriptions":["Increases the dodge chance provided by Briar Veil by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30051","treeId":"coa-ranger-87","index":30051,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/ability_rogue_plunderarmor.png","maxRank":1,"name":"Dirty Fighter","description":"Increases the chance for Flank to critically strike by 50% and increases your chance to resist root effects by 25%.","rankDescriptions":["Increases the chance for Flank to critically strike by 50% and increases your chance to resist root effects by 25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6682","treeId":"coa-ranger-87","index":6682,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/_human_04.png","maxRank":1,"name":"Outlaw","description":"Increases the effectiveness of your Adaptations by 20%.","rankDescriptions":["Increases the effectiveness of your Adaptations by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30053","treeId":"coa-ranger-87","index":30053,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/nhi_naturepoisonedstep_border.png","maxRank":1,"name":"Woodland Adept","description":"Slip into the shadows, entering an improved stealth mode, increases your movement speed by 25% for 10 seconds, and applies Elude.","rankDescriptions":["Slip into the shadows, entering an improved stealth mode, increases your movement speed by 25% for 10 seconds, and applies Elude."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5908","treeId":"coa-ranger-87","index":5908,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/ability_gouge.png","maxRank":1,"name":"Bloody Focus","description":"Reduces the Focus cost of Toxic Dart by -15.","rankDescriptions":["Reduces the Focus cost of Toxic Dart by -15."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7908","treeId":"coa-ranger-87","index":7908,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/ability_rogue_bloodyeye.png","maxRank":1,"name":"No Mercy","description":"Increases the critical damage of Flank by 10%.","rankDescriptions":["Increases the critical damage of Flank by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7790","treeId":"coa-ranger-87","index":7790,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/spell_nature_invisibilty.png","maxRank":1,"name":"Blur","description":"Increases your chance to dodge and parry by 4%.","rankDescriptions":["Increases your chance to dodge and parry by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34188","treeId":"coa-ranger-87","index":34188,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/rogue_subterfuge.png","maxRank":1,"name":"Snatch","description":"Snatch an enemy's melee weapons, disarming them for 4 seconds. If you are disarmed, you also return your weapon to yourself.","rankDescriptions":["Snatch an enemy's melee weapons, disarming them for 4 seconds. If you are disarmed, you also return your weapon to yourself."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6347","treeId":"coa-ranger-87","index":6347,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_misc_disgustingpizza.png","maxRank":1,"name":"Sly","description":"Your Woodland Adept now triggers a -10% reduced cooldown for each stack of Advantage active when cast.","rankDescriptions":["Your Woodland Adept now triggers a -10% reduced cooldown for each stack of Advantage active when cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5311","treeId":"coa-ranger-87","index":5311,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/ability_rogue_recuperate.png","maxRank":1,"name":"Endurance Training","description":"Increases your maximum Focus by 20.","rankDescriptions":["Increases your maximum Focus by 20."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6946","treeId":"coa-ranger-87","index":6946,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/5_archerskill19_border.png","maxRank":1,"name":"Adrenaline Rush","description":"Surge with vitality, dispeling all harmful effects from yourself and increasing your movement speed by 40% for 10 seconds. Usable while stealthed.","rankDescriptions":["Surge with vitality, dispeling all harmful effects from yourself and increasing your movement speed by 40% for 10 seconds. Usable while stealthed."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1906","treeId":"coa-ranger-87","index":1906,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_rogue_stayofexecution.png","maxRank":1,"name":"Guise","description":"Instantly generates 5 stacks of Advantage and allows you see nearby stealthed enemies for 5 seconds. Usable while stealthed.","rankDescriptions":["Instantly generates 5 stacks of Advantage and allows you see nearby stealthed enemies for 5 seconds. Usable while stealthed."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4936","treeId":"coa-ranger-87","index":4936,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/_aimedshot_red.png","maxRank":1,"name":"Lethal Cunning","description":"Entering Elude generates 1 stack of Advantage and 10 Focus every 5 sec for 30 seconds.","rankDescriptions":["Entering Elude generates 1 stack of Advantage and 10 Focus every 5 sec for 30 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6782","treeId":"coa-ranger-87","index":6782,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/achievement_boss_edwinvancleef.png","maxRank":1,"name":"Whats Yours Is Mine","description":"Removes the Focus cost of Snatch.","rankDescriptions":["Removes the Focus cost of Snatch."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9782","treeId":"coa-ranger-87","index":9782,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/custom_21_light_arrow_border.png","maxRank":1,"name":"Grappling Arrows","description":"Increases the range of Snatch by 15 yds.","rankDescriptions":["Increases the range of Snatch by 15 yds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4186","treeId":"coa-ranger-87","index":4186,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/_diablo3_arrowrain_hunter.png","maxRank":1,"name":"Double The Pace","description":"Increases all party and raid member's melee and ranged haste by 10%. Does not stack with similar effects. In addition, increases your critical strike chance by 2%.","rankDescriptions":["Increases all party and raid member's melee and ranged haste by 10%. Does not stack with similar effects. In addition, increases your critical strike chance by 2%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6938","treeId":"coa-ranger-87","index":6938,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/achievement_zone_hillsbradfoothills.png","maxRank":1,"name":"Surefooted","description":"Reduces the cooldown of Adrenaline Rush by -30 sec.","rankDescriptions":["Reduces the cooldown of Adrenaline Rush by -30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12938","treeId":"coa-ranger-87","index":12938,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/ability_racial_bearform.png","maxRank":1,"name":"Heightened Senses","description":"Reduces the Focus cost Adrenaline Rush by -50% and increases the movement speed granted by 20%.","rankDescriptions":["Reduces the Focus cost Adrenaline Rush by -50% and increases the movement speed granted by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30050","treeId":"coa-ranger-87","index":30050,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_nature_stranglevines.png","maxRank":1,"name":"Woodland Stalker","description":"While in Elude, your critical strike chance is now increased by 20%.","rankDescriptions":["While in Elude, your critical strike chance is now increased by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6945","treeId":"coa-ranger-87","index":6945,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/nhi_natureambush_border.png","maxRank":1,"name":"Natural Disguise","description":"Instantly dispels all movement slowing effects from allies within 30 yds and transforms them into a bush, stealthing them for 20 seconds.","rankDescriptions":["Instantly dispels all movement slowing effects from allies within 30 yds and transforms them into a bush, stealthing them for 20 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7906","treeId":"coa-ranger-87","index":7906,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/5_archerskill27_border.png","maxRank":1,"name":"Guile of the Ranger","description":"Your Instinct now additionally increases your critical strike rating by 20% of your Agility.","rankDescriptions":["Your Instinct now additionally increases your critical strike rating by 20% of your Agility."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6947","treeId":"coa-ranger-87","index":6947,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/ability_druid_manatree.png","maxRank":1,"name":"Forest Dweller","description":"While in Elude, gain 20% increased movement speed and regenerate 3% maximum health every 3 sec.","rankDescriptions":["While in Elude, gain 20% increased movement speed and regenerate 3% maximum health every 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4156","treeId":"coa-ranger-87","index":4156,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ui_darkshore_warfront_alliance_archer.png","maxRank":1,"name":"Elven Tactics","description":"You now have a -20% chance to not consume Advantage on cast.","rankDescriptions":["You now have a -20% chance to not consume Advantage on cast."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34156","treeId":"coa-ranger-87","index":34156,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/_crossingswords_colorsgreen.png","maxRank":1,"name":"Rapid Strikes","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6952","treeId":"coa-ranger-87","index":6952,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_nature_focusedmind.png","maxRank":1,"name":"Onslaught","description":"Your senses heighten, causing you to instantly generate 5 Advantage and allowing the use of abilities that require Elude for 15 seconds.","rankDescriptions":["Your senses heighten, causing you to instantly generate 5 Advantage and allowing the use of abilities that require Elude for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/reaper.json b/src/game/generated/talentUi/reaper.json new file mode 100644 index 00000000..6e9a99b0 --- /dev/null +++ b/src/game/generated/talentUi/reaper.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"reaper","trees":[{"id":"coa-reaper-79","classId":"reaper","name":"Harvest","icon":"/assets/ui/spells/inv_knife_1h_revendrethquest_b_03.png","background":"","description":"Harvest nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-reaper-80","classId":"reaper","name":"Soul","icon":"/assets/ui/spells/nhi_spiritstab_border.png","background":"","description":"Soul nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-reaper-81","classId":"reaper","name":"Domination","icon":"/assets/ui/spells/ability_argus_edgeofobliteration.png","background":"","description":"Domination nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-reaper-87","classId":"reaper","name":"Class","icon":"/assets/ui/spells/inv_archaeology_orcclans_tattooknife.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-29378","treeId":"coa-reaper-79","index":29378,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/inv_knife_1h_revendrethquest_b_03.png","maxRank":1,"name":"Doomrend","description":"Rend an enemy dealing 140% Weapon Damage plus 17 + 35% AP, causing you to apply a dark shield to them that absorbs the next 75 + 100% Strength healing done to them for 5 seconds, and generates Runic Power.","rankDescriptions":["Rend an enemy dealing 140% Weapon Damage plus 17 + 35% AP, causing you to apply a dark shield to them that absorbs the next 75 + 100% Strength healing done to them for 5 seconds, and generates Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4055","treeId":"coa-reaper-79","index":4055,"prerequisiteId":"coa-entry-29248","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29248","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/ability_revendreth_deathknight.png","maxRank":1,"name":"Harvester","description":"Level 10 Passive You now heal yourself equal to 15% of all damage dealt.","rankDescriptions":["Level 10 Passive You now heal yourself equal to 15% of all damage dealt."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-29246","treeId":"coa-reaper-79","index":29246,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/inv_helmet_plate_deathknight_m_01.png","maxRank":2,"name":"Maw Knight","description":"Increases the critical strike chance of Doomrend by 10%.","rankDescriptions":["Increases the critical strike chance of Doomrend by 5%.","Increases the critical strike chance of Doomrend by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9270","treeId":"coa-reaper-79","index":9270,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/inv_harvestgolempet.png","maxRank":1,"name":"Bountiful Harvest","description":"Increases the damage of Reap and Murder by 25%.","rankDescriptions":["Increases the damage of Reap and Murder by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34480","treeId":"coa-reaper-79","index":34480,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/inv_polearm_2h_warfrontshorde_c_01red.png","maxRank":1,"name":"Crow's Harvest","description":"Strike all nearby enemies for 65% Weapon Damage plus 6. Damage dealt harvests a Soul Fragment, up to a maximum of 3.","rankDescriptions":["Strike all nearby enemies for 65% Weapon Damage plus 6. Damage dealt harvests a Soul Fragment, up to a maximum of 3."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31371","treeId":"coa-reaper-79","index":31371,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/ability_revendreth_warrior.png","maxRank":1,"name":"Slaughter","description":"Generates 1 Reaped Soul Eradicate an enemy with your scythe, dealing 130% Weapon Damage plus 14. Only usable on enemies below 35% health.","rankDescriptions":["Generates 1 Reaped Soul Eradicate an enemy with your scythe, dealing 130% Weapon Damage plus 14. Only usable on enemies below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5767","treeId":"coa-reaper-79","index":5767,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/ability_demonhunter_vengefulretreat.png","maxRank":1,"name":"Haunter","description":"Increases the duration of Soulrend by 10 sec.","rankDescriptions":["Increases the duration of Soulrend by 10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9269","treeId":"coa-reaper-79","index":9269,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_sword_2h_revendreth_d_01.png","maxRank":1,"name":"Extinction","description":"Level 20 Passive Direct Physical damage dealt now has a 5% chance to grant you Extinction for 10 seconds. Chance to trigger this effect is increased by 10% for each Reaped Soul active.ExtinctionYour next Slaughter is usable regardless of the target's health and costs -10 less Runic Power.","rankDescriptions":["Level 20 Passive Direct Physical damage dealt now has a 5% chance to grant you Extinction for 10 seconds. Chance to trigger this effect is increased by 10% for each Reaped Soul active.ExtinctionYour next Slaughter is usable regardless of the target's health and costs -10 less Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-34481","treeId":"coa-reaper-79","index":34481,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/spells/uico_blood_spell_10_border.png","maxRank":1,"name":"Dark Fate","description":"Reduces the cost of Crow's Harvest by -10 Runic Power.","rankDescriptions":["Reduces the cost of Crow's Harvest by -10 Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5762","treeId":"coa-reaper-79","index":5762,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/ability_revendreth_shaman.png","maxRank":1,"name":"Red Wake","description":"Direct damage critical strikes now generate an additional Soul Fragment.","rankDescriptions":["Direct damage critical strikes now generate an additional Soul Fragment."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30551","treeId":"coa-reaper-79","index":30551,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/ability_revendreth_rogue.png","maxRank":1,"name":"Crimson Death","description":"Your Slaughter now has a 20% chance to cast an additional time free of cost.","rankDescriptions":["Your Slaughter now has a 20% chance to cast an additional time free of cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7259","treeId":"coa-reaper-79","index":7259,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":4,"icon":"/assets/ui/spells/spell_animarevendreth_orb.png","maxRank":1,"name":"Callous Soul","description":"Increases the amount of armor Soulrend causes you to ignore by 10%.","rankDescriptions":["Increases the amount of armor Soulrend causes you to ignore by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6766","treeId":"coa-reaper-79","index":6766,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/inv_artifact_thalkielsdiscord.png","maxRank":1,"name":"Hungering Scythe","description":"Increases the duration of Deathwind by 4 sec and Crow's Harvest now deals 15% additional damage to enemies inside.","rankDescriptions":["Increases the duration of Deathwind by 4 sec and Crow's Harvest now deals 15% additional damage to enemies inside."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34476","treeId":"coa-reaper-79","index":34476,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/spell_deathknight_bloodtap.png","maxRank":1,"name":"Blood Fueled","description":"Increases the healing absorbed by Doomrend by 30%.","rankDescriptions":["Increases the healing absorbed by Doomrend by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30715","treeId":"coa-reaper-79","index":30715,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/novart_physical_ability_(2)_border.png","maxRank":1,"name":"Genocide","description":"Increases the critical damage and critical strike chance of Slaughter by 10%.","rankDescriptions":["Increases the critical damage and critical strike chance of Slaughter by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6838","treeId":"coa-reaper-79","index":6838,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/ability_rogue_bloodsplatter.png","maxRank":1,"name":"Hemorrhage","description":"Increases the damage and critical strike chance of your abilities by 10% against enemies below 35% health.","rankDescriptions":["Increases the damage and critical strike chance of your abilities by 10% against enemies below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30517","treeId":"coa-reaper-79","index":30517,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/nhi_bloodhand_border.png","maxRank":2,"name":"Sanguine Harvester","description":"Increases your melee haste by 20%.","rankDescriptions":["Increases your melee haste by 10%.","Increases your melee haste by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12269","treeId":"coa-reaper-79","index":12269,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_hunter_murderofcrows.png","maxRank":1,"name":"Mortal's End","description":"Level 30 Passive Allows Extinction to stack an additional time and allows Wraithblade to grant you Extinction.ExtinctionYour next Slaughter is usable regardless of the target's health and costs -10 less Runic Power.","rankDescriptions":["Level 30 Passive Allows Extinction to stack an additional time and allows Wraithblade to grant you Extinction.ExtinctionYour next Slaughter is usable regardless of the target's health and costs -10 less Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-31370","treeId":"coa-reaper-79","index":31370,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/nhi_arcanewraith_border.png","maxRank":2,"name":"Crimson Wraith","description":"Increases your critical stike damage by 20%.","rankDescriptions":["Increases your critical stike damage by 10%.","Increases your critical stike damage by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31373","treeId":"coa-reaper-79","index":31373,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/inv_mace_1h_revendreth_d_01.png","maxRank":1,"name":"Harvest Time","description":"Increases your damage and critical strike chance by 15% and gives your spells that require Soul Infusion a -50% to not consume the effect for 15 seconds.","rankDescriptions":["Increases your damage and critical strike chance by 15% and gives your spells that require Soul Infusion a -50% to not consume the effect for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29250","treeId":"coa-reaper-79","index":29250,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/novart_helmet_(7)_border.png","maxRank":1,"name":"Souls for the Slaughter","description":"Critical strikes with Slaughter now cause your auto attacks to deal an additional 85% Shadow damage for 5 seconds.","rankDescriptions":["Critical strikes with Slaughter now cause your auto attacks to deal an additional 85% Shadow damage for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31369","treeId":"coa-reaper-79","index":31369,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_shoulder_plate_raiddeathknightmythic_s_01.png","maxRank":1,"name":"Harvesting Grounds","description":"Create a harvesting ground at the target location for 10 seconds, enemies inside have their melee and ranged haste and movement speed reduced by -20% For the duration, enemies that try to exit the harvesting ground will be pulled back to its center.","rankDescriptions":["Create a harvesting ground at the target location for 10 seconds, enemies inside have their melee and ranged haste and movement speed reduced by -20% For the duration, enemies that try to exit the harvesting ground will be pulled back to its center."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29617","treeId":"coa-reaper-79","index":29617,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_ironmaidens_whirlofblood.png","maxRank":1,"name":"Blood Harvester","description":"Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects.","rankDescriptions":["Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34477","treeId":"coa-reaper-79","index":34477,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_deathknight_subversion.png","maxRank":1,"name":"The Time Has Come","description":"Your abilities now deal 10% more damage against slowed targets.","rankDescriptions":["Your abilities now deal 10% more damage against slowed targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6684","treeId":"coa-reaper-79","index":6684,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/_virus_red.png","maxRank":1,"name":"Sever","description":"Attempt to drain an enemies vitals, leeching 22 + 31.03% AP health, interrupting casting and preventing any spell from that school from being cast for 3 seconds.","rankDescriptions":["Attempt to drain an enemies vitals, leeching 22 + 31.03% AP health, interrupting casting and preventing any spell from that school from being cast for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9268","treeId":"coa-reaper-79","index":9268,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_sword_2h_blood_c_01.png","maxRank":1,"name":"Executioner","description":"Level 40 Passive Increases your critical strike rating by 20% of your Strength. In addition, increases your Armor penetration by 30% against enemies below 35% health.","rankDescriptions":["Level 40 Passive Increases your critical strike rating by 20% of your Strength. In addition, increases your Armor penetration by 30% against enemies below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-6762","treeId":"coa-reaper-79","index":6762,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/nhi_bloodstrike_border.png","maxRank":1,"name":"Blood Knight","description":"Critical strikes with Doomrend now refund a Reaped Soul.","rankDescriptions":["Critical strikes with Doomrend now refund a Reaped Soul."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29247","treeId":"coa-reaper-79","index":29247,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/ability_deathwing_bloodcorruption_death.png","maxRank":1,"name":"Blood Wraith","description":"Wraithblade now deals an additional 100% Weapon Damage and its Runic Power cost is reduced by -20.","rankDescriptions":["Wraithblade now deals an additional 100% Weapon Damage and its Runic Power cost is reduced by -20."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30545","treeId":"coa-reaper-79","index":30545,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_sword_1h_warfrontshorde_c_01.png","maxRank":1,"name":"Doomer","description":"Increases the damage of Doomrend and Slaughter by 30%.","rankDescriptions":["Increases the damage of Doomrend and Slaughter by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7266","treeId":"coa-reaper-79","index":7266,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/novart_magicspell_(2)_border.png","maxRank":1,"name":"Unbound","description":"Your Reliquary of the Lost is now guaranteed to critically strike for 25% increased damage on enemies below 20% health.","rankDescriptions":["Your Reliquary of the Lost is now guaranteed to critically strike for 25% increased damage on enemies below 20% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7267","treeId":"coa-reaper-79","index":7267,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/nhi_bloodrage_border.png","maxRank":1,"name":"The Grim Reaper","description":"Your Ghost Claw transforms into Wraith Claw and now has 2 charges.Wraith Claw2 Charges,15 sec recharge Chill an enemy with a ghostly claw, slowing and stealing -50% of their movement speed for 8 seconds. Whenever you kill an enemy, refund a charge of this ability. Scales with modifiers to Ghost Claw.","rankDescriptions":["Your Ghost Claw transforms into Wraith Claw and now has 2 charges.Wraith Claw2 Charges,15 sec recharge Chill an enemy with a ghostly claw, slowing and stealing -50% of their movement speed for 8 seconds. Whenever you kill an enemy, refund a charge of this ability. Scales with modifiers to Ghost Claw."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29604","treeId":"coa-reaper-79","index":29604,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/_soulharvest2__red.png","maxRank":1,"name":"Ravenous Thirst","description":"Reduces the Runic Power cost of Ghastly Screech and Soul Strike by -10.","rankDescriptions":["Reduces the Runic Power cost of Ghastly Screech and Soul Strike by -10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30038","treeId":"coa-reaper-79","index":30038,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_staff_114.png","maxRank":1,"name":"Darkrend Scythe","description":"Damage dealt by Doomrend and Crow's Harvest now applies a bleed, dealing 56 + 8.5% AP Physical damage every 2 sec for 10 seconds, stacking 5 times. Additional applications do not refresh the duration.","rankDescriptions":["Damage dealt by Doomrend and Crow's Harvest now applies a bleed, dealing 56 + 8.5% AP Physical damage every 2 sec for 10 seconds, stacking 5 times. Additional applications do not refresh the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29688","treeId":"coa-reaper-79","index":29688,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/_d3mantraofretribution.png","maxRank":1,"name":"Blood Frenzy","description":"Casting Harvest Time with an enemy targeted within 20 yds of you now unleashes a Blood Frenzy.Blood FrenzyDeals 1 + 36% AP Shadow Damage to your target every 0.75 sec for 7.5 seconds. At the end of the duration, the target takes an additional 457 + 45% AP Shadow Damage.","rankDescriptions":["Casting Harvest Time with an enemy targeted within 20 yds of you now unleashes a Blood Frenzy.Blood FrenzyDeals 1 + 36% AP Shadow Damage to your target every 0.75 sec for 7.5 seconds. At the end of the duration, the target takes an additional 457 + 45% AP Shadow Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31368","treeId":"coa-reaper-79","index":31368,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_rogue_rupture.png","maxRank":1,"name":"Ruin","description":"Damage dealt by Murder now applies Ruin to enemies for 10 seconds.RuinIncreases damage taken by Doomrend and Slaughter by 25% for 10 seconds. Using Doomrend on a target afflicted by Ruin will increase your haste by 15% for 5 seconds.","rankDescriptions":["Damage dealt by Murder now applies Ruin to enemies for 10 seconds.RuinIncreases damage taken by Doomrend and Slaughter by 25% for 10 seconds. Using Doomrend on a target afflicted by Ruin will increase your haste by 15% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11268","treeId":"coa-reaper-79","index":11268,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/ability_rogue_bloodsplatter.png","maxRank":1,"name":"This Is My Domain","description":"Level 50 Passive Increases the amount healed through the Harvest - Level 10 Passive by 10% and causes being in your Harvesting Grounds to increase this effect by an additional 75%.","rankDescriptions":["Level 50 Passive Increases the amount healed through the Harvest - Level 10 Passive by 10% and causes being in your Harvesting Grounds to increase this effect by an additional 75%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30546","treeId":"coa-reaper-79","index":30546,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/inv_sword_2h_blood_c_02.png","maxRank":1,"name":"Redshade","description":"Using Reap now transforms your Reap into Thresh for 10 sec. ThreshGenerates 1 Soul Fragment Strike enemies around you, dealing 110% Weapon Damage and generating Runic Power. Upon cast, this ability transforms into Bloodshatter for 10 sec. BloodshatterGenerates 1 Soul Fragment Strike enemies in front of you, dealing 329 + 20% AP Shadow damage and generating Runic Power. Your next Reliquary of the Lost within 10 seconds now triggers a -25% reduced cooldown.","rankDescriptions":["Using Reap now transforms your Reap into Thresh for 10 sec. ThreshGenerates 1 Soul Fragment Strike enemies around you, dealing 110% Weapon Damage and generating Runic Power. Upon cast, this ability transforms into Bloodshatter for 10 sec. BloodshatterGenerates 1 Soul Fragment Strike enemies in front of you, dealing 329 + 20% AP Shadow damage and generating Runic Power. Your next Reliquary of the Lost within 10 seconds now triggers a -25% reduced cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6765","treeId":"coa-reaper-79","index":6765,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_bloodsword_border.png","maxRank":1,"name":"Deathbringer","description":"Doubles the duration of Blood Frenzy, Harvest Time, and Harvesting Grounds.","rankDescriptions":["Doubles the duration of Blood Frenzy, Harvest Time, and Harvesting Grounds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5562","treeId":"coa-reaper-79","index":5562,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/ability_xavius_crushingshadows.png","maxRank":1,"name":"Shudder Scythe","description":"Your Murder is transformed into Shudder Scythe, which costs additional Runic Power but deals increased damage and generates Soul Fragments.Shudder Scythe (Transform)Strike an enemy 5 times, each dealing 30% Weapon Damage, scaling with level, and granting you a Soul Fragment with each strike.","rankDescriptions":["Your Murder is transformed into Shudder Scythe, which costs additional Runic Power but deals increased damage and generates Soul Fragments.Shudder Scythe (Transform)Strike an enemy 5 times, each dealing 30% Weapon Damage, scaling with level, and granting you a Soul Fragment with each strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11262","treeId":"coa-reaper-79","index":11262,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/5_engineerskill03_border.png","maxRank":1,"name":"Crimson Thirst","description":"Your Physical damage dealt to enemies now grants Crimson Thirst for 20 seconds, stacking 5 times.Crimson Thirst (Stacks)Your next Murder within 15 seconds deals 10% increased damage and costs -10% less Runic Power per stack. At 5 stacks, it also heals you equal to 50% of the damage dealt.","rankDescriptions":["Your Physical damage dealt to enemies now grants Crimson Thirst for 20 seconds, stacking 5 times.Crimson Thirst (Stacks)Your next Murder within 15 seconds deals 10% increased damage and costs -10% less Runic Power per stack. At 5 stacks, it also heals you equal to 50% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29689","treeId":"coa-reaper-80","index":29689,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/nhi_spiritstab_border.png","maxRank":1,"name":"Deathchaser","description":"Force death upon an enemy, dealing 13 + 8% AP Shadowfrost Damage, repeating every 0 sec for 1 seconds, and generates Runic Power.","rankDescriptions":["Force death upon an enemy, dealing 13 + 8% AP Shadowfrost Damage, repeating every 0 sec for 1 seconds, and generates Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4056","treeId":"coa-reaper-80","index":4056,"prerequisiteId":"coa-entry-30107","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30107","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/nhi_souldarkening_border.png","maxRank":1,"name":"Weakened Souls","description":"Level 10 Passive Your Soulrend now also applies Weakened Soul, increasing the target's Shadow and Frost damage taken from you by 10%.","rankDescriptions":["Level 10 Passive Your Soulrend now also applies Weakened Soul, increasing the target's Shadow and Frost damage taken from you by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-6716","treeId":"coa-reaper-80","index":6716,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/inv_weapon_shortblade_105.png","maxRank":2,"name":"Soulforged Weaponry","description":"Increases your off-hand weapon damage by 50%. While dual-wielding, your auto attacks now have a 15% chance to make your next Murder free of cost.","rankDescriptions":["Increases your off-hand weapon damage by 25%. While dual-wielding, your auto attacks now have a 8% chance to make your next Murder free of cost.","Increases your off-hand weapon damage by 50%. While dual-wielding, your auto attacks now have a 15% chance to make your next Murder free of cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34466","treeId":"coa-reaper-80","index":34466,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/nhi_ghoststone_border.png","maxRank":1,"name":"Mark of Death","description":"Increases the damage dealt by Deathchaser by 15% and your hit chance by 3%.","rankDescriptions":["Increases the damage dealt by Deathchaser by 15% and your hit chance by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9831","treeId":"coa-reaper-80","index":9831,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/ability_demonhunter_soulcleave4.png","maxRank":1,"name":"Dirge","description":"Generates 2 Soul Fragments Strike the enemy with both weapons, dealing 70% (130% if a dagger is equipped) Weapon Damage as Shadowfrost Damage with each, and generates Runic Power.","rankDescriptions":["Generates 2 Soul Fragments Strike the enemy with both weapons, dealing 70% (130% if a dagger is equipped) Weapon Damage as Shadowfrost Damage with each, and generates Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6643","treeId":"coa-reaper-80","index":6643,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/custom_66_spirit_sword_border.png","maxRank":1,"name":"Ghostly Weapon","description":"2 Charges, 40 sec recharge Imbue your weapon with ghostly power for 15 seconds, causing melee attacks to deal 25% additional damage as Frost damage.","rankDescriptions":["2 Charges, 40 sec recharge Imbue your weapon with ghostly power for 15 seconds, causing melee attacks to deal 25% additional damage as Frost damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6723","treeId":"coa-reaper-80","index":6723,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_ragedspirit_border.png","maxRank":1,"name":"Shattered Souls","description":"Your Wraithblade now deals double damage to enemies affected by Soulrend.","rankDescriptions":["Your Wraithblade now deals double damage to enemies affected by Soulrend."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9430","treeId":"coa-reaper-80","index":9430,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_trinket_mawraid_01_blue.png","maxRank":1,"name":"Spirit Render","description":"Level 20 Passive Increases your spell penetration by 20, scaling with your level.","rankDescriptions":["Level 20 Passive Increases your spell penetration by 20, scaling with your level."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-30315","treeId":"coa-reaper-80","index":30315,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/item_icecrownringd.png","maxRank":1,"name":"Soul Generator","description":"Critical strikes with Dirge now generate 10 Runic Power. Critical strikes with Murder now generate 1 additional Reaped Soul.","rankDescriptions":["Critical strikes with Dirge now generate 10 Runic Power. Critical strikes with Murder now generate 1 additional Reaped Soul."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34464","treeId":"coa-reaper-80","index":34464,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_shadow_psychicscream.png","maxRank":1,"name":"Lamenting","description":"Damage dealt by Ghostly Weapon now heals for 50% of the damage dealt.","rankDescriptions":["Damage dealt by Ghostly Weapon now heals for 50% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34465","treeId":"coa-reaper-80","index":34465,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_shadow_twistedfaith.png","maxRank":1,"name":"Death Dealer","description":"Increases the duration of Ghostly Weapon and Soulrend by 5 sec.","rankDescriptions":["Increases the duration of Ghostly Weapon and Soulrend by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30111","treeId":"coa-reaper-80","index":30111,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/5_spirit_border.png","maxRank":1,"name":"Deathwail","description":"Reduces the Runic Power cost of Wraithblade by -50%.","rankDescriptions":["Reduces the Runic Power cost of Wraithblade by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30118","treeId":"coa-reaper-80","index":30118,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_warlock_shadowfurytga.png","maxRank":2,"name":"Ghostly Magic","description":"Increases the damage of Reap, Dirge, and Reliquary of the Lost by 20%.","rankDescriptions":["Increases the damage of Reap, Dirge, and Reliquary of the Lost by 10%.","Increases the damage of Reap, Dirge, and Reliquary of the Lost by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34507","treeId":"coa-reaper-80","index":34507,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_qiraj_hiltornate.png","maxRank":1,"name":"Ghastly Hilt","description":"Ghostly Weapon now causes your melee abilities to strike up to 2 additional targets near the primary target.","rankDescriptions":["Ghostly Weapon now causes your melee abilities to strike up to 2 additional targets near the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6755","treeId":"coa-reaper-80","index":6755,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/nhi_spirittranquility_border.png","maxRank":1,"name":"Soulbender","description":"Significantly increases the Runic Power generated by Deathchaser.","rankDescriptions":["Significantly increases the Runic Power generated by Deathchaser."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9267","treeId":"coa-reaper-80","index":9267,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/spell_nature_wispsplode.png","maxRank":1,"name":"Spectre","description":"Level 30 Passive Reduces the cooldown of Underwalk by -10 sec. In addition, Withering Touch will now always apply Ghost Claw to the target.Ghost Claw (Speed)Chill an enemy with a ghostly claw, slowing and stealing -50% of their movement speed for 8 seconds.","rankDescriptions":["Level 30 Passive Reduces the cooldown of Underwalk by -10 sec. In addition, Withering Touch will now always apply Ghost Claw to the target.Ghost Claw (Speed)Chill an enemy with a ghostly claw, slowing and stealing -50% of their movement speed for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-30112","treeId":"coa-reaper-80","index":30112,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/ability_warlock_darkarts.png","maxRank":1,"name":"Anima Ambusher","description":"Spectre Stride now deals an additional 125% of its damage dealt over 5 seconds.","rankDescriptions":["Spectre Stride now deals an additional 125% of its damage dealt over 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10543","treeId":"coa-reaper-80","index":10543,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/spell_magic_lesserinvisibilty.png","maxRank":1,"name":"Fleeting Soul","description":"Reduces the cooldown of Soulslam by -15 sec.","rankDescriptions":["Reduces the cooldown of Soulslam by -15 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30543","treeId":"coa-reaper-80","index":30543,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/nhi_soulbats_border.png","maxRank":1,"name":"Soul Piercer","description":"Striking at least 1 enemy with Soulslam now refunds its Reaped Souls.","rankDescriptions":["Striking at least 1 enemy with Soulslam now refunds its Reaped Souls."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34469","treeId":"coa-reaper-80","index":34469,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/nhi_spiritualsummoning_border.png","maxRank":1,"name":"Reaver","description":"Reduces the cooldown of Deathstalker, Soul Shear, and Soulstone Lure by -50%.","rankDescriptions":["Reduces the cooldown of Deathstalker, Soul Shear, and Soulstone Lure by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6390","treeId":"coa-reaper-80","index":6390,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/inv_alchemist_81_spiritedalchemiststone.png","maxRank":1,"name":"Essence Harvest","description":"Increases the additional Frost damage dealt by Ghostly Weapon by 10%.","rankDescriptions":["Increases the additional Frost damage dealt by Ghostly Weapon by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6709","treeId":"coa-reaper-80","index":6709,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/spell_ice_lament.png","maxRank":1,"name":"Chasing Death","description":"Deathchaser used against a target below 20% health will now reapply itself at the end of its duration until they die or until 5 seconds passes.","rankDescriptions":["Deathchaser used against a target below 20% health will now reapply itself at the end of its duration until they die or until 5 seconds passes."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5470","treeId":"coa-reaper-80","index":5470,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/nhi_spiritwraith_border.png","maxRank":1,"name":"Spirit Chaser","description":"Increases the critical strike chance and critical damage of Reap, Deathchaser, and Wraithblade by 10%.","rankDescriptions":["Increases the critical strike chance and critical damage of Reap, Deathchaser, and Wraithblade by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7315","treeId":"coa-reaper-80","index":7315,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_shadow_nightofthedead.png","maxRank":1,"name":"Apparition","description":"Increases the damage of Spectre Stride by 30% and reduces the chance for enemies to see you while stealthed.","rankDescriptions":["Increases the damage of Spectre Stride by 30% and reduces the chance for enemies to see you while stealthed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12843","treeId":"coa-reaper-80","index":12843,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/_shadow_lightblue.png","maxRank":1,"name":"Shade","description":"Become a shade, entering an improved stealth mode for 10 seconds and entering Underwalk. Removes all movement impairing effects.","rankDescriptions":["Become a shade, entering an improved stealth mode for 10 seconds and entering Underwalk. Removes all movement impairing effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6521","treeId":"coa-reaper-80","index":6521,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/ability_warlock_improvedsoulleech.png","maxRank":1,"name":"Purgatory","description":"When you gain Soul Infusion, the damage of your Soulrend and Reliquary of the Lost is increased by 20% for 6 seconds, stacking 2 times.","rankDescriptions":["When you gain Soul Infusion, the damage of your Soulrend and Reliquary of the Lost is increased by 20% for 6 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34470","treeId":"coa-reaper-80","index":34470,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/spell_shadow_detectlesserinvisibility.png","maxRank":1,"name":"Soul Bane","description":"Reduces the cooldown of Reliquary of the Lost by -5 sec.","rankDescriptions":["Reduces the cooldown of Reliquary of the Lost by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4267","treeId":"coa-reaper-80","index":4267,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/_soulharvest2_blue.png","maxRank":1,"name":"Beyond the Veil","description":"Level 40 Passive Entering Underwalk now grants you Beyond the Veil, increasing movement speed by 30% and allowing you to walk on water.","rankDescriptions":["Level 40 Passive Entering Underwalk now grants you Beyond the Veil, increasing movement speed by 30% and allowing you to walk on water."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-30536","treeId":"coa-reaper-80","index":30536,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/inv_mawrat.png","maxRank":1,"name":"The Jailer's Call","description":"Attacks against enemies below 20% health deal an additional 140 + 18% AP Shadow damage.","rankDescriptions":["Attacks against enemies below 20% health deal an additional 140 + 18% AP Shadow damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8292","treeId":"coa-reaper-80","index":8292,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/nhi_curseweak_border.png","maxRank":1,"name":"Spiritual Reflexes","description":"While below 35% maximum health, your chance to dodge attacks is increased by 25% and dodging an attack unleashes Soul Harvest on the target.Soul Harvest (Damage)Blasts your target for 1 + 5% AP + 10% shadow SP Shadow Damage, healing for 100% of the damage dealt.","rankDescriptions":["While below 35% maximum health, your chance to dodge attacks is increased by 25% and dodging an attack unleashes Soul Harvest on the target.Soul Harvest (Damage)Blasts your target for 1 + 5% AP + 10% shadow SP Shadow Damage, healing for 100% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30549","treeId":"coa-reaper-80","index":30549,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/nhi_spiritamulet_border.png","maxRank":1,"name":"Death's Presence","description":"Increases all damage dealt by party and raid members by 3%. Does not stack with similar effects.","rankDescriptions":["Increases all damage dealt by party and raid members by 3%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6724","treeId":"coa-reaper-80","index":6724,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_ghostlycharger.png","maxRank":2,"name":"Spectre's Call","description":"Increases the damage of Deathwind, Murder, and Soul Strike by 30%.","rankDescriptions":["Increases the damage of Deathwind, Murder, and Soul Strike by 15%.","Increases the damage of Deathwind, Murder, and Soul Strike by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29601","treeId":"coa-reaper-80","index":29601,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_frozenghost_border.png","maxRank":1,"name":"Endbringer","description":"Become an Endbringer for 15 seconds, increasing the damage of Dirge by 30%, the range by 20 yds, and causes it to generate 3 Reaped Souls. For the duration, Dirge will heal you for 75% of its damage dealt.","rankDescriptions":["Become an Endbringer for 15 seconds, increasing the damage of Dirge by 30%, the range by 20 yds, and causes it to generate 3 Reaped Souls. For the duration, Dirge will heal you for 75% of its damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31366","treeId":"coa-reaper-80","index":31366,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_warlock_soullink.png","maxRank":1,"name":"The End Is Near","description":"Wraithblade now creates a spectral version of yourself for 12 seconds that casts Dirge and Murder on enemies.","rankDescriptions":["Wraithblade now creates a spectral version of yourself for 12 seconds that casts Dirge and Murder on enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30548","treeId":"coa-reaper-80","index":30548,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_helm_cloth_raidpriest_r_01.png","maxRank":1,"name":"Lord of Death","description":"Abilities affected by Ghostly Weapon now deal 25% more damage per additional target.","rankDescriptions":["Abilities affected by Ghostly Weapon now deal 25% more damage per additional target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4266","treeId":"coa-reaper-80","index":4266,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_soulblessing_border.png","maxRank":1,"name":"Sepulchral Renewal","description":"Resets the cooldown of Limbo, Soulslam, and Shade. Usable while stealthed.","rankDescriptions":["Resets the cooldown of Limbo, Soulslam, and Shade. Usable while stealthed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-5182","treeId":"coa-reaper-80","index":5182,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/nhi_soulgrave_border.png","maxRank":1,"name":"Gravesite","description":"Casting Endbringer now marks the ground beneath you as your Gravesite for 15 seconds. Direct critical strikes made against enemies within a Gravesite now deals 530 + 36% AP Shadow damage.","rankDescriptions":["Casting Endbringer now marks the ground beneath you as your Gravesite for 15 seconds. Direct critical strikes made against enemies within a Gravesite now deals 530 + 36% AP Shadow damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7782","treeId":"coa-reaper-80","index":7782,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_souldrain_border.png","maxRank":1,"name":"Soulrot","description":"Damage dealt by Deathchaser now applies Soulrot.SoulrotRot the soul of your target, cursing them for 15 seconds. At the end of the duration the enemy will take damage based on the number of stacks accrued. Each instance of damage from Deathchaser adds 1 stack to this effect, up to 20 stacks. Dispelling this effect causes the dispeller to instantly take 1200 + 200% AP Shadow Damage.","rankDescriptions":["Damage dealt by Deathchaser now applies Soulrot.SoulrotRot the soul of your target, cursing them for 15 seconds. At the end of the duration the enemy will take damage based on the number of stacks accrued. Each instance of damage from Deathchaser adds 1 stack to this effect, up to 20 stacks. Dispelling this effect causes the dispeller to instantly take 1200 + 200% AP Shadow Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34460","treeId":"coa-reaper-80","index":34460,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/nhi_shadowentagle_border.png","maxRank":1,"name":"Beyond Death","description":"Dealing damage with Reliquary of the Lost now has a 8% chance to launch an additional Soul Bolt.","rankDescriptions":["Dealing damage with Reliquary of the Lost now has a 8% chance to launch an additional Soul Bolt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30720","treeId":"coa-reaper-81","index":30720,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/ability_argus_edgeofobliteration.png","maxRank":1,"name":"Dreadwake","description":"Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 5 Frost damage.","rankDescriptions":["Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 5 Frost damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4057","treeId":"coa-reaper-81","index":4057,"prerequisiteId":"coa-entry-30113","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30113","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/nhi_ghosthand_border.png","maxRank":1,"name":"Tormentor","description":"Level 10 Passive Consuming Soul Infusion now reduces the cooldown of Tormented Souls by -3 sec.","rankDescriptions":["Level 10 Passive Consuming Soul Infusion now reduces the cooldown of Tormented Souls by -3 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-34515","treeId":"coa-reaper-81","index":34515,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/novart_magicspell_(20)_border.png","maxRank":1,"name":"Empyrean Fortitude","description":"Increases your parry chance by 5% and parrying an attack now generates 2 Runic Power.","rankDescriptions":["Increases your parry chance by 5% and parrying an attack now generates 2 Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6710","treeId":"coa-reaper-81","index":6710,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/inv_sword_1h_artifactthunderfury_d_01.png","maxRank":2,"name":"Dark Soldier","description":"Increases your hit chance and reduces your Magic damage taken by -6%.","rankDescriptions":["Increases your hit chance and reduces your Magic damage taken by -3%.","Increases your hit chance and reduces your Magic damage taken by -6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6768","treeId":"coa-reaper-81","index":6768,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/inv_soulbarrier.png","maxRank":1,"name":"Soultaker","description":"Damage dealt with Dreadwake now reduces the cooldown of Tormented Souls by -1 sec.","rankDescriptions":["Damage dealt with Dreadwake now reduces the cooldown of Tormented Souls by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8293","treeId":"coa-reaper-81","index":8293,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_misc_supersoulash.png","maxRank":1,"name":"Requiem","description":"Swing at enemies around you in a fury of souls, dealing 67 + 40% AP Shadowfrost Damage, reducing their melee and ranged attack speed by -20% for 15 seconds, and generating Runic Power.","rankDescriptions":["Swing at enemies around you in a fury of souls, dealing 67 + 40% AP Shadowfrost Damage, reducing their melee and ranged attack speed by -20% for 15 seconds, and generating Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5722","treeId":"coa-reaper-81","index":5722,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/spell_shadow_metamorphosis.png","maxRank":1,"name":"Lifestealer","description":"Increases the missing health generated by Soul Strike by 3%.","rankDescriptions":["Increases the missing health generated by Soul Strike by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30722","treeId":"coa-reaper-81","index":30722,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/5_archerskill33_border.png","maxRank":1,"name":"Dominator","description":"Reduces the Runic Power cost of Soul Strike by $/10s;s1.","rankDescriptions":["Reduces the Runic Power cost of Soul Strike by $/10s;s1."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9271","treeId":"coa-reaper-81","index":9271,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/_d3spectralblade.png","maxRank":1,"name":"Behemoth","description":"Level 20 Passive Increases your Stamina by 20% and your Armor penetration by 10% of your Strength.","rankDescriptions":["Level 20 Passive Increases your Stamina by 20% and your Armor penetration by 10% of your Strength."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-31289","treeId":"coa-reaper-81","index":31289,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/achievement_raid_torghast_shadowscourge_prisonofnerzhul.png","maxRank":1,"name":"Bolstered Form","description":"Assume a bolstered form for 15 seconds, generating 30 Runic Power, increasing your Armor and your parry chance by 30%.","rankDescriptions":["Assume a bolstered form for 15 seconds, generating 30 Runic Power, increasing your Armor and your parry chance by 30%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7946","treeId":"coa-reaper-81","index":7946,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/nhi_spiritualarmor_border.png","maxRank":2,"name":"Dreadknight","description":"Increases your armor contribution from mail and plate items by 40% and reduces the chance for spells to hit you by -4%.","rankDescriptions":["Increases your armor contribution from mail and plate items by 20% and reduces the chance for spells to hit you by -2%.","Increases your armor contribution from mail and plate items by 40% and reduces the chance for spells to hit you by -4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29249","treeId":"coa-reaper-81","index":29249,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_archaeology_80_witch_bonescythe.png","maxRank":1,"name":"Spectral Scythe","description":"Summons 1 Spectral Scythe for each Reaped Soul active which attack a nearby enemy for 20 seconds. Striking enemies with Soul Strike causes the Spectral Scythe to attack that enemy and 5 nearby enemies. Consumes Reaped Souls and Soul Infusion.","rankDescriptions":["Summons 1 Spectral Scythe for each Reaped Soul active which attack a nearby enemy for 20 seconds. Striking enemies with Soul Strike causes the Spectral Scythe to attack that enemy and 5 nearby enemies. Consumes Reaped Souls and Soul Infusion."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34520","treeId":"coa-reaper-81","index":34520,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/nhi_soulgrave_border.png","maxRank":1,"name":"Intimidating Presence","description":"Bolstered Form now increases the damage nearby enemies take from you by 15% for 15 seconds.","rankDescriptions":["Bolstered Form now increases the damage nearby enemies take from you by 15% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34473","treeId":"coa-reaper-81","index":34473,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/novart_magicspell_(53)_border.png","maxRank":1,"name":"Essence Binder","description":"Soul Strike now steals some of the target's health and Strength for 12 seconds, granting it to you at increased value.","rankDescriptions":["Soul Strike now steals some of the target's health and Strength for 12 seconds, granting it to you at increased value."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34521","treeId":"coa-reaper-81","index":34521,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/custom_eyes_02_border.png","maxRank":1,"name":"Soulsight","description":"Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, dealing direct damage now has a 15% chance to generate a Soul Fragment.","rankDescriptions":["Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, dealing direct damage now has a 15% chance to generate a Soul Fragment."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6730","treeId":"coa-reaper-81","index":6730,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/novart_magicspell_(22)_border.png","maxRank":1,"name":"Well of Souls","description":"Damage dealt by Soul Strike and Murder now reduces the cooldown of Spectral Scythe by -1 sec.","rankDescriptions":["Damage dealt by Soul Strike and Murder now reduces the cooldown of Spectral Scythe by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12330","treeId":"coa-reaper-81","index":12330,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/nhi_reaperscythe_border.png","maxRank":1,"name":"Well of Eternity","description":"Increases the duration of your Spectral Scythes by 10 sec.","rankDescriptions":["Increases the duration of your Spectral Scythes by 10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4272","treeId":"coa-reaper-81","index":4272,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/nhi_soulrage_border.png","maxRank":1,"name":"Soul Slip","description":"Level 30 Passive Avoiding attacks now has a 50% chance to harvest a Soul Fragment from the attacker.","rankDescriptions":["Level 30 Passive Avoiding attacks now has a 50% chance to harvest a Soul Fragment from the attacker."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-34474","treeId":"coa-reaper-81","index":34474,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/nhi_scrollofsouls_border.png","maxRank":1,"name":"Harnessed Life","description":"Your Tormented Souls now has a -25% chance to not consume a stack from damage taken.","rankDescriptions":["Your Tormented Souls now has a -25% chance to not consume a stack from damage taken."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7876","treeId":"coa-reaper-81","index":7876,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/ability_racial_etherealconnection.png","maxRank":1,"name":"Ethereal Guard","description":"Reduces the damage taken by party and raid members by -3%. Does not stack with similar effects. In addition, increases your melee haste by 10%.","rankDescriptions":["Reduces the damage taken by party and raid members by -3%. Does not stack with similar effects. In addition, increases your melee haste by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34472","treeId":"coa-reaper-81","index":34472,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/ability_deathknight_hungeringruneblade.png","maxRank":1,"name":"Fatesealer","description":"Generating a Reaped Soul now reduces damage taken by -2% for 15 seconds, stacking 3 times.","rankDescriptions":["Generating a Reaped Soul now reduces damage taken by -2% for 15 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6703","treeId":"coa-reaper-81","index":6703,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/achievement_dungeon_soulboundgoliath.png","maxRank":1,"name":"Jailer's Will","description":"Soul Strike now deals 30% Strength increased damage, scaling with Strength.","rankDescriptions":["Soul Strike now deals 30% Strength increased damage, scaling with Strength."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4111","treeId":"coa-reaper-81","index":4111,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/spell_shadow_nightofthedead.png","maxRank":1,"name":"To The Shadowlands","description":"Increases the duration of Soulslam by 1 sec.","rankDescriptions":["Increases the duration of Soulslam by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34516","treeId":"coa-reaper-81","index":34516,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_shadow_shadowembrace.png","maxRank":1,"name":"Spirit Realm","description":"Your Deathwind now also increases your healing taken and parry chance by 10% while you stand within its radius.","rankDescriptions":["Your Deathwind now also increases your healing taken and parry chance by 10% while you stand within its radius."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30550","treeId":"coa-reaper-81","index":30550,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/custom_t_spiritualarmor_border.png","maxRank":1,"name":"Spectral Warden","description":"Summon a spectral guardian to fight along side you for 20 seconds and apply an absorption shield to up to 8 allies within 20 yds, absorbing 199 + 150% Stamina damage.","rankDescriptions":["Summon a spectral guardian to fight along side you for 20 seconds and apply an absorption shield to up to 8 allies within 20 yds, absorbing 199 + 150% Stamina damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9272","treeId":"coa-reaper-81","index":9272,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/novart_physical_ability_(26)_border.png","maxRank":1,"name":"Dark Soul","description":"Level 40 Passive Increases your Stamina equal to your Armor penetration rating.","rankDescriptions":["Level 40 Passive Increases your Stamina equal to your Armor penetration rating."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-6779","treeId":"coa-reaper-81","index":6779,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/inv_trinket_mawraid_04_blue.png","maxRank":1,"name":"Hard Bargain","description":"While Tormented Souls is active on you, your melee attack speed is increased by 30% and your Dreadwake costs -5 less Runic Power.","rankDescriptions":["While Tormented Souls is active on you, your melee attack speed is increased by 30% and your Dreadwake costs -5 less Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6839","treeId":"coa-reaper-81","index":6839,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/ability_argus_soulbombdebuffsmall.png","maxRank":2,"name":"Final Requiem","description":"Increases your critical strike chance with abilities that deal Shadow damage by 30% against enemies below 20% health.","rankDescriptions":["Increases your critical strike chance with abilities that deal Shadow damage by 15% against enemies below 20% health.","Increases your critical strike chance with abilities that deal Shadow damage by 30% against enemies below 20% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30116","treeId":"coa-reaper-81","index":30116,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_shadow_soulleech_2.png","maxRank":1,"name":"Soulstorm","description":"Requiem and Soulrend now have a 40% chance to refund a Reaped Soul.","rankDescriptions":["Requiem and Soulrend now have a 40% chance to refund a Reaped Soul."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7784","treeId":"coa-reaper-81","index":7784,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/novart_physical_ability_(41)_border.png","maxRank":1,"name":"Life Tap","description":"Reduces the cooldown of Spectral Warden by -60 sec and it now heals you equal to 200% of the damage it deals.","rankDescriptions":["Reduces the cooldown of Spectral Warden by -60 sec and it now heals you equal to 200% of the damage it deals."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13784","treeId":"coa-reaper-81","index":13784,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/epic_rpg_icon_pack_death_icon_0000s_0000_spirits_border.png","maxRank":1,"name":"Spirit Army","description":"Your Spectral Warden now causes you to summon 2 additional Spectral Wardens, but their duration is reduced by -8 sec. In addition, increases the amount absorbed by the shield granted by Spectral Warden by 100%.","rankDescriptions":["Your Spectral Warden now causes you to summon 2 additional Spectral Wardens, but their duration is reduced by -8 sec. In addition, increases the amount absorbed by the shield granted by Spectral Warden by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30119","treeId":"coa-reaper-81","index":30119,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/oshugun_crystalfragments.png","maxRank":1,"name":"Soul Splinters","description":"Erupt with ghastly force whenever you harvest a Reaped Soul, dealing 47 + 10.5% Stamina + 15% AP Spellshadow Damage to nearby enemies over 6 seconds.","rankDescriptions":["Erupt with ghastly force whenever you harvest a Reaped Soul, dealing 47 + 10.5% Stamina + 15% AP Spellshadow Damage to nearby enemies over 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29379","treeId":"coa-reaper-81","index":29379,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_sword_2h_artifactashbringerlightning_d_03.png","maxRank":1,"name":"Soul Knight","description":"Your successful parries and dodges increase all healing you receive by 2% and reduce all Magic damage taken by -2% for 10 seconds, stacking 5 times.","rankDescriptions":["Your successful parries and dodges increase all healing you receive by 2% and reduce all Magic damage taken by -2% for 10 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4223","treeId":"coa-reaper-81","index":4223,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/nhi_spiritualskull_border.png","maxRank":1,"name":"Warden of the Lost","description":"Damage dealt by Spectral Scythes and Spectral Wardens now reduces the cooldown of Spectral Warden by -0.5 sec.","rankDescriptions":["Damage dealt by Spectral Scythes and Spectral Wardens now reduces the cooldown of Spectral Warden by -0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6777","treeId":"coa-reaper-81","index":6777,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/spell_animabastion_debuff.png","maxRank":1,"name":"Siphon Anima","description":"When you summon a Spectral Scythe, you now heal for 5% of your damage dealt for 10 seconds.","rankDescriptions":["When you summon a Spectral Scythe, you now heal for 5% of your damage dealt for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9672","treeId":"coa-reaper-81","index":9672,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_plate_raiddeathknight_o_01buckle.png","maxRank":1,"name":"Decimation","description":"Level 50 Passive Every 6th cast of Reap transforms your next Reap into Decimate for 15 sec.DecimateSmash the ground infront of you, dealing 117% Weapon Damage plus 22 Physical damage in an 8 yd frontal cone to 10 enemies. Generates 1 Soul Fragment and 5 Runic Power per enemy hit.","rankDescriptions":["Level 50 Passive Every 6th cast of Reap transforms your next Reap into Decimate for 15 sec.DecimateSmash the ground infront of you, dealing 117% Weapon Damage plus 22 Physical damage in an 8 yd frontal cone to 10 enemies. Generates 1 Soul Fragment and 5 Runic Power per enemy hit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-29693","treeId":"coa-reaper-81","index":29693,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/inv_shoulder_armor_maw_c_14.png","maxRank":1,"name":"Painmail","description":"Dealing damage with Reap, Dreadwake and Soul Strike now grants a stack of Painmail for 15 seconds, stacking up to 8 times. Additional applications do not refresh the effect. When Painmail stacks expire naturally, you are healed for 2% of your maximum health and reduce the cooldown of Bolstered Form by -0.5 sec for each stack.","rankDescriptions":["Dealing damage with Reap, Dreadwake and Soul Strike now grants a stack of Painmail for 15 seconds, stacking up to 8 times. Additional applications do not refresh the effect. When Painmail stacks expire naturally, you are healed for 2% of your maximum health and reduce the cooldown of Bolstered Form by -0.5 sec for each stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31262","treeId":"coa-reaper-81","index":31262,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/spell_shadow_haunting.png","maxRank":1,"name":"Spirit Culling","description":"For the duration of Spectral Scythe, the damage of Soul Strike is increased by 20%. In addition, generating a Reaped Soul now has a 10% chance to summon a Spectral Scythe to fight alongside you for 10 sec.","rankDescriptions":["For the duration of Spectral Scythe, the damage of Soul Strike is increased by 20%. In addition, generating a Reaped Soul now has a 10% chance to summon a Spectral Scythe to fight alongside you for 10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30533","treeId":"coa-reaper-81","index":30533,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_shadow_devouringplague..png","maxRank":1,"name":"Eater of Souls","description":"Reaching 3 Reaped Souls now reduces your Physical damage taken by -10% and you regain 1% of your maximum health every 2 sec for 10 seconds. This will not trigger while already active. In addition, the healing done by Deathwind is increased by 10%.","rankDescriptions":["Reaching 3 Reaped Souls now reduces your Physical damage taken by -10% and you regain 1% of your maximum health every 2 sec for 10 seconds. This will not trigger while already active. In addition, the healing done by Deathwind is increased by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30107","treeId":"coa-reaper-87","index":30107,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/inv_archaeology_orcclans_tattooknife.png","maxRank":1,"name":"Wraithblade","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.","rankDescriptions":["Generates 3 Reaped Souls Strike for 150% Weapon Damage plus 36 + 62.5% SP + 18% AP Shadow damage, ignoring resistances, absorption, and invulnerability effects."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29248","treeId":"coa-reaper-87","index":29248,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/ability_demonhunter_bladedance.png","maxRank":1,"name":"Scythe Rush","description":"Rush towards an enemy and generate 15 Runic Power. Cannot be used on the same target more than once every 20 seconds.","rankDescriptions":["Rush towards an enemy and generate 15 Runic Power. Cannot be used on the same target more than once every 20 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30113","treeId":"coa-reaper-87","index":30113,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/_soulsdevourer_blue.png","maxRank":1,"name":"Tormented Souls","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30109","treeId":"coa-reaper-87","index":30109,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/spells/nhi_frozenghost_border.png","maxRank":1,"name":"Mysterious Omen","description":"Increases the range of Murder and Soul Shock by 5 yds.","rankDescriptions":["Increases the range of Murder and Soul Shock by 5 yds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6708","treeId":"coa-reaper-87","index":6708,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/novart_magicspell_(32)_border.png","maxRank":1,"name":"Backswing","description":"Increases the Runic Power generated by Reap by 5.","rankDescriptions":["Increases the Runic Power generated by Reap by 5."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6722","treeId":"coa-reaper-87","index":6722,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/ability_deathknight_soulreaper.png","maxRank":1,"name":"Soul Harvester","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34461","treeId":"coa-reaper-87","index":34461,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":2,"icon":"/assets/ui/spells/spell_deathknight_iceboundfortitude.png","maxRank":1,"name":"Soulfused Constitution","description":"Your Tormented Souls now creates 1 additional soul for each Reaped Soul active.","rankDescriptions":["Your Tormented Souls now creates 1 additional soul for each Reaped Soul active."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6719","treeId":"coa-reaper-87","index":6719,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/_diablo3_thunderclap_warlock.png","maxRank":1,"name":"Veilwalk","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34510","treeId":"coa-reaper-87","index":34510,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_ghostland_border.png","maxRank":2,"name":"Soul Warden","description":"Increases your melee attack power by 1 for every 50 Armor you have.","rankDescriptions":["Increases your melee attack power by 1 for every 100 Armor you have.","Increases your melee attack power by 1 for every 50 Armor you have."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9322","treeId":"coa-reaper-87","index":9322,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/nhi_spiritarmor_border.png","maxRank":1,"name":"Jailer's Bargain","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6778","treeId":"coa-reaper-87","index":6778,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/ability_argus_deathfog.png","maxRank":1,"name":"Ghastly Form","description":"After using Spectre Stride, Scythe Rush, or Veilwalk you now gain a shield that absorbs 114 + 33% AP damage for 6 seconds.","rankDescriptions":["After using Spectre Stride, Scythe Rush, or Veilwalk you now gain a shield that absorbs 114 + 33% AP damage for 6 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34495","treeId":"coa-reaper-87","index":34495,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/_d3spiritbarrage.png","maxRank":1,"name":"Withering Touch","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34505","treeId":"coa-reaper-87","index":34505,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/ability_rogue_restlessblades.png","maxRank":1,"name":"Harvester's Scythe","description":"Increases the amount leeched by Soul Strike by 15%.","rankDescriptions":["Increases the amount leeched by Soul Strike by 15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5495","treeId":"coa-reaper-87","index":5495,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/spell_shaman_spiritwalkersgrace.png","maxRank":1,"name":"Soulstrider","description":"Increases the movement speed granted by Veilwalk by 20%.","rankDescriptions":["Increases the movement speed granted by Veilwalk by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7945","treeId":"coa-reaper-87","index":7945,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_priest_cascade_shadow.png","maxRank":1,"name":"From the Shadows","description":"Exiting Underwalk increases your critical strike chance by 10% for 5 seconds.","rankDescriptions":["Exiting Underwalk increases your critical strike chance by 10% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7271","treeId":"coa-reaper-87","index":7271,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/spell_warlock_demonwrath.png","maxRank":1,"name":"Dominion","description":"Gaining Soul Infusion now increases your Armor by 585 for 6 seconds.","rankDescriptions":["Gaining Soul Infusion now increases your Armor by 585 for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6780","treeId":"coa-reaper-87","index":6780,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/achievement_raid_torghast_thenine.png","maxRank":1,"name":"Burial Rites","description":"Increases the effectiveness of your Rites by 20%.","rankDescriptions":["Increases the effectiveness of your Rites by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9321","treeId":"coa-reaper-87","index":9321,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/_d3horrify.png","maxRank":1,"name":"Ghastly Screech","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.","rankDescriptions":["Screech with ghastly intent, silencing all nearby enemies for 4 seconds, and dealing 90 + 25% AP Shadowfrost Damage at the end of the duration."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34489","treeId":"coa-reaper-87","index":34489,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/achievement_zone_ghostlands.png","maxRank":2,"name":"Spectre Strength","description":"Increases your Strength by 10%.","rankDescriptions":["Increases your Strength by 5%.","Increases your Strength by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5600","treeId":"coa-reaper-87","index":5600,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/ability_rogue_shadowdance.png","maxRank":1,"name":"Limbo","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34492","treeId":"coa-reaper-87","index":34492,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/spell_shadow_auraofdarkness.png","maxRank":2,"name":"Ghastly Advance","description":"Increases the range of Spectre Stride by 10 yds and causes it to generate 10 more Runic Power.","rankDescriptions":["Increases the range of Spectre Stride by 5 yds and causes it to generate 5 more Runic Power.","Increases the range of Spectre Stride by 10 yds and causes it to generate 10 more Runic Power."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7272","treeId":"coa-reaper-87","index":7272,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/novart_magicspell_(12)_border.png","maxRank":1,"name":"Damned","description":"When you gain Soul Infusion, you are protected from being slowed below 100% of normal speed for 5 seconds.","rankDescriptions":["When you gain Soul Infusion, you are protected from being slowed below 100% of normal speed for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29564","treeId":"coa-reaper-87","index":29564,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/_d3soulharvest.png","maxRank":1,"name":"Soul Tap","description":"Chip away at the very essence of your own soul, generating 50 Runic Power. Usable while stealthed.","rankDescriptions":["Chip away at the very essence of your own soul, generating 50 Runic Power. Usable while stealthed."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34497","treeId":"coa-reaper-87","index":34497,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/inv_helmet_146.png","maxRank":1,"name":"Soul Protector","description":"Increases Armor contribution from items by 25% and increases your magic resistances by 21.","rankDescriptions":["Increases Armor contribution from items by 25% and increases your magic resistances by 21."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6726","treeId":"coa-reaper-87","index":6726,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/inv_artifact_stolenpower.png","maxRank":1,"name":"Dark Passage","description":"Dealing direct critical strikes with Shadow damage reduce the cooldown of Limbo by -2 sec.","rankDescriptions":["Dealing direct critical strikes with Shadow damage reduce the cooldown of Limbo by -2 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13500","treeId":"coa-reaper-87","index":13500,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/5_spirit_border.png","maxRank":1,"name":"Into The Shadow Realm","description":"Reduces the cooldown of Deathstalker, Soulstone Lure, and Soul Shear by -25%.","rankDescriptions":["Reduces the cooldown of Deathstalker, Soulstone Lure, and Soul Shear by -25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34500","treeId":"coa-reaper-87","index":34500,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/5_shadowworld_border.png","maxRank":1,"name":"Between Shadows","description":"Casting Spectre Stride now generates 1 Reaped Soul.","rankDescriptions":["Casting Spectre Stride now generates 1 Reaped Soul."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31125","treeId":"coa-reaper-87","index":31125,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/warlock_siphonlife.png","maxRank":1,"name":"Mawborn","description":"Reduces the duration of disarm and incapacitate effects against you by -20%.","rankDescriptions":["Reduces the duration of disarm and incapacitate effects against you by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30324","treeId":"coa-reaper-87","index":30324,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_misc_lesseressence.png","maxRank":1,"name":"Essence Invigoration","description":"Casting abilities that require Soul Infusion now has a 50% chance to restore 5% of your missing health.","rankDescriptions":["Casting abilities that require Soul Infusion now has a 50% chance to restore 5% of your missing health."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5464","treeId":"coa-reaper-87","index":5464,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_scrollofsoulbending_border.png","maxRank":1,"name":"Sinister Litany","description":"Embrace your sinister thoughts, instantly generating 3 Reaped Souls.","rankDescriptions":["Embrace your sinister thoughts, instantly generating 3 Reaped Souls."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30535","treeId":"coa-reaper-87","index":30535,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_rogue_vendetta.png","maxRank":1,"name":"Masochistic Rage","description":"After a 1 sec delay, you suffer 660 + 36% AP damage, enraging you and increasing your damage dealt by 20% for 15 seconds.","rankDescriptions":["After a 1 sec delay, you suffer 660 + 36% AP damage, enraging you and increasing your damage dealt by 20% for 15 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34502","treeId":"coa-reaper-87","index":34502,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/nhi_spiritfire_border.png","maxRank":1,"name":"Soul Harvest","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7783","treeId":"coa-reaper-87","index":7783,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/_soulsdevourer_purple.png","maxRank":1,"name":"Ghost","description":"Sinister Litany now increases the damage of your next spell or ability within 10 sec by 50% and casting it now grants you Ghost for 3 seconds.Ghost (Proc)Enter an enhanced stealth mode that does not break on damage dealt or taken.","rankDescriptions":["Sinister Litany now increases the damage of your next spell or ability within 10 sec by 50% and casting it now grants you Ghost for 3 seconds.Ghost (Proc)Enter an enhanced stealth mode that does not break on damage dealt or taken."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30534","treeId":"coa-reaper-87","index":30534,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_reaperscythe_border.png","maxRank":1,"name":"Painbringer","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34499","treeId":"coa-reaper-87","index":34499,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/nhi_spiritamulet_border.png","maxRank":1,"name":"Soul Furnace","description":"Increases the amount leeched from Soul Harvest by an additional 50%.","rankDescriptions":["Increases the amount leeched from Soul Harvest by an additional 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/rogue.json b/src/game/generated/talentUi/rogue.json new file mode 100644 index 00000000..c945c274 --- /dev/null +++ b/src/game/generated/talentUi/rogue.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"rogue","trees":[{"id":"rogue-assassination","classId":"rogue","name":"Assassination","icon":"/assets/ui/talents/icons/ability_rogue_eviscerate.png","background":"/assets/ui/talents/backgrounds/talent_rogue1.png","description":"Use poisons and finishers to dispatch targets.","system":"classic"},{"id":"rogue-combat","classId":"rogue","name":"Combat","icon":"/assets/ui/talents/icons/ability_backstab.png","background":"/assets/ui/talents/backgrounds/talent_rogue2.png","description":"Excel in sustained weapon combat.","system":"classic"},{"id":"rogue-subtlety","classId":"rogue","name":"Subtlety","icon":"/assets/ui/talents/icons/ability_stealth.png","background":"/assets/ui/talents/backgrounds/talent_rogue3.png","description":"Strike from stealth and manipulate the shadows.","system":"classic"}],"nodes":[{"id":"talent-184","treeId":"rogue-combat","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/inv_mace_01.png","maxRank":5,"name":"Mace Specialization","description":"Increases your melee attack speed by 10% and armor penetration by 15% while a mace is equipped.","rankDescriptions":["Increases your melee attack speed by 2% and armor penetration by 3% while a mace is equipped.","Increases your melee attack speed by 4% and armor penetration by 6% while a mace is equipped.","Increases your melee attack speed by 6% and armor penetration by 9% while a mace is equipped.","Increases your melee attack speed by 8% and armor penetration by 12% while a mace is equipped.","Increases your melee attack speed by 10% and armor penetration by 15% while a mace is equipped."],"system":"classic"},{"id":"talent-203","treeId":"rogue-combat","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/ability_gouge.png","maxRank":2,"name":"Improved Gouge","description":"Increases the duration of your Gouge ability by 1 sec.","rankDescriptions":["Increases the effect duration of your Gouge ability by 0.5 sec.","Increases the duration of your Gouge ability by 1 sec."],"system":"classic"},{"id":"talent-204","treeId":"rogue-combat","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_shadowward.png","maxRank":2,"name":"Endurance","description":"Reduces the cooldown of your Evasion ability by 60 sec. Increases your total Stamina by 4%. You take 20% less Magic damage while Evasion is active.","rankDescriptions":["Reduces the cooldown of your Evasion ability by 30 sec. Increases your total Stamina by 2%. You take 10% less Magic damage while Evasion is active.","Reduces the cooldown of your Evasion ability by 60 sec. Increases your total Stamina by 4%. You take 20% less Magic damage while Evasion is active."],"system":"classic"},{"id":"talent-206","treeId":"rogue-combat","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/ability_kick.png","maxRank":2,"name":"Improved Kick","description":"Your Kick has a 100% chance of preventing your target from moving faster than their normal movement speed for 3 seconds. Capstone Bonus: Your successful interrupts with Kick grants you 40 energy and 35% attack speed for 6 sec.","rankDescriptions":["Your Kick has a 50% chance of preventing your target from moving faster than their normal movement speed for 3 seconds. Capstone Bonus: Your successful interrupts with Kick grants you 40 energy and 35% attack speed for 6 sec.","Your Kick has a 100% chance of preventing your target from moving faster than their normal movement speed for 3 seconds. Capstone Bonus: Your successful interrupts with Kick grants you 40 energy and 35% attack speed for 6 sec."],"system":"classic"},{"id":"talent-1705","treeId":"rogue-combat","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_warrior_revenge.png","maxRank":3,"name":"Vitality","description":"Increases your Energy regeneration rate by 40%.","rankDescriptions":["Increases your Energy regeneration rate by 13%.","Increases your Energy regeneration rate by 26%.","Increases your Energy regeneration rate by 40%."],"system":"classic"},{"id":"talent-1827","treeId":"rogue-combat","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/ability_rogue_slicedice.png","maxRank":2,"name":"Improved Slice and Dice","description":"Increases the duration of your Slice and Dice ability by 50% and increases the attack speed it grants by 6%.","rankDescriptions":["Increases the duration of your Slice and Dice ability by 25% and increases the attack speed it grants by 3%.","Increases the duration of your Slice and Dice ability by 50% and increases the attack speed it grants by 6%."],"system":"classic"},{"id":"talent-2072","treeId":"rogue-combat","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_rogue_throwingspecialization.png","maxRank":2,"name":"Throwing Specialization","description":"Reduces the energy cost of Shuriken Toss by 10. Increases the range of Shuriken Toss, Throw and Deadly Throw by 6 yards. Deadly Throw deals 30% more damage to targets below 35% health. Capstone Bonus: Your Shuriken Toss, Glaive Toss and Deadly Throw deal 15% more damage if you are at least the listed amount yards from your target.","rankDescriptions":["Reduces the energy cost of Shuriken Toss by 5. Increases the range of Shuriken Toss, Throw and Deadly Throw by 4 yards. Deadly Throw deals 15% more damage to targets below 35% health. Capstone Bonus: Your Shuriken Toss, Glaive Toss and Deadly Throw deal 15% more damage if you are at least the listed amount yards from your target.","Reduces the energy cost of Shuriken Toss by 10. Increases the range of Shuriken Toss, Throw and Deadly Throw by 6 yards. Deadly Throw deals 30% more damage to targets below 35% health. Capstone Bonus: Your Shuriken Toss, Glaive Toss and Deadly Throw deal 15% more damage if you are at least the listed amount yards from your target."],"system":"classic"},{"id":"talent-2073","treeId":"rogue-combat","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_rogue_unfairadvantage.png","maxRank":2,"name":"Unfair Advantage","description":"Whenever you dodge or parry an attack you gain an Unfair Advantage, striking back for 100% of your main hand weapon's damage. This cannot occur more than once per 2 seconds.","rankDescriptions":["Whenever you dodge or parry an attack you gain an Unfair Advantage, striking back for 50% of your main hand weapon's damage. This cannot occur more than once per 2 seconds.","Whenever you dodge or parry an attack you gain an Unfair Advantage, striking back for 100% of your main hand weapon's damage. This cannot occur more than once per 2 seconds."],"system":"classic"},{"id":"talent-187","treeId":"rogue-combat","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_parry.png","maxRank":3,"name":"Improved Riposte","description":"Increases your Parry chance by 3%. Increases the threat of your Ghostly Strike and Riposte by 60%. You have a 100% chance to reduce the cooldown of your Ghostly Strike ability by 3 seconds after using Riposte.","rankDescriptions":["Increases your Parry chance by 1%. Increases the threat of your Ghostly Strike and Riposte by 20%. You have a 33% chance to reduce the cooldown of your Ghostly Strike ability by 3 seconds after using Riposte.","Increases your Parry chance by 2%. Increases the threat of your Ghostly Strike and Riposte by 40%. You have a 66% chance to reduce the cooldown of your Ghostly Strike ability by 3 seconds after using Riposte.","Increases your Parry chance by 3%. Increases the threat of your Ghostly Strike and Riposte by 60%. You have a 100% chance to reduce the cooldown of your Ghostly Strike ability by 3 seconds after using Riposte."],"system":"classic"},{"id":"talent-201","treeId":"rogue-combat","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_ritualofsacrifice.png","maxRank":2,"name":"Improved Sinister Strike","description":"Reduces the Energy cost of your Sinister Strike ability by 5 and increases its damage by 8%.","rankDescriptions":["Reduces the Energy cost of your Sinister Strike ability by 3 and increases its damage by 4%.","Reduces the Energy cost of your Sinister Strike ability by 5 and increases its damage by 8%."],"system":"classic"},{"id":"talent-205","treeId":"rogue-combat","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_shadow_shadowworddominate.png","maxRank":1,"name":"Adrenaline Rush","description":"Increases your Energy regeneration rate by 100% for 15 seconds. This ability is usable while shapeshifted.","rankDescriptions":["Increases your Energy regeneration rate by 100% for 15 seconds. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-222","treeId":"rogue-combat","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/ability_rogue_sprint.png","maxRank":3,"name":"Improved Sprint","description":"Increases the duration of Sprint by 1.5 seconds. Capstone Bonus: Using Sprint removes all slow effects and while Sprint is active the duration of root effects are reduced by 50% and your movement can't be reduced below 100% of normal movement speed.","rankDescriptions":["Increases the duration of Sprint by 0.5 seconds. Capstone Bonus: Using Sprint removes all slow effects and while Sprint is active the duration of root effects are reduced by 50% and your movement can't be reduced below 100% of normal movement speed.","Increases the duration of Sprint by 1 second. Capstone Bonus: Using Sprint removes all slow effects and while Sprint is active the duration of root effects are reduced by 50% and your movement can't be reduced below 100% of normal movement speed.","Increases the duration of Sprint by 1.5 seconds. Capstone Bonus: Using Sprint removes all slow effects and while Sprint is active the duration of root effects are reduced by 50% and your movement can't be reduced below 100% of normal movement speed."],"system":"classic"},{"id":"talent-223","treeId":"rogue-combat","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/ability_warrior_punishingblow.png","maxRank":1,"name":"Blade Flurry","description":"Increases your melee attack speed by 20%. In addition, attacks strike an additional nearby opponent. Lasts 20 seconds. Can't be active at the same time as Sweeping Strikes or Bloodbath. This ability Shares a cooldown with Sweeping Strikes, and Bloodbath. This ability is usable while shapeshifted.","rankDescriptions":["Increases your melee attack speed by 20%. In addition, attacks strike an additional nearby opponent. Lasts 20 seconds. Can't be active at the same time as Sweeping Strikes or Bloodbath. This ability Shares a cooldown with Sweeping Strikes, and Bloodbath. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-301","treeId":"rogue-combat","index":8,"prerequisiteId":"talent-187","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-187","requiredRank":3}],"column":2,"row":3,"icon":"/assets/ui/talents/icons/ability_warrior_challange.png","maxRank":1,"name":"Riposte","description":"A strike that becomes active after parrying an opponent's attack. This attack deals 150% weapon damage and slows their melee attack speed by 20% for 30 seconds. Awards 1 combo point. Does not stack with other similar effects.","rankDescriptions":["A strike that becomes active after parrying an opponent's attack. This attack deals 150% weapon damage and slows their melee attack speed by 20% for 30 seconds. Awards 1 combo point. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-1703","treeId":"rogue-combat","index":17,"prerequisiteId":"talent-223","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-223","requiredRank":1}],"column":2,"row":6,"icon":"/assets/ui/talents/icons/spell_holy_blessingofstrength.png","maxRank":2,"name":"Weapon Expertise","description":"Increases your melee critical strike chance and your chance to hit with all spells and abilities by 2%.","rankDescriptions":["Increases your melee critical strike chance and your chance to hit with all spells and abilities by 1%.","Increases your melee critical strike chance and your chance to hit with all spells and abilities by 2%."],"system":"classic"},{"id":"talent-1709","treeId":"rogue-combat","index":25,"prerequisiteId":"talent-205","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-205","requiredRank":1}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/ability_rogue_surpriseattack.png","maxRank":3,"name":"Surprise Attacks","description":"Increases damage dealt by your Sinister Strike, Shuriken Toss, Backstab, Ambush, Shiv, Hemorrhage and Gouge abilities by 6%. Capstone Bonus: Your finishing moves can no longer be dodged.","rankDescriptions":["Increases damage dealt by your Sinister Strike, Shuriken Toss, Backstab, Ambush, Shiv, Hemorrhage and Gouge abilities by 2%. Capstone Bonus: Your finishing moves can no longer be dodged.","Increases damage dealt by your Sinister Strike, Shuriken Toss, Backstab, Ambush, Shiv, Hemorrhage and Gouge abilities by 4%. Capstone Bonus: Your finishing moves can no longer be dodged.","Increases damage dealt by your Sinister Strike, Shuriken Toss, Backstab, Ambush, Shiv, Hemorrhage and Gouge abilities by 6%. Capstone Bonus: Your finishing moves can no longer be dodged."],"system":"classic"},{"id":"talent-2075","treeId":"rogue-combat","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_rogue_preyontheweak.png","maxRank":5,"name":"Prey on the Weak","description":"Your melee critical strike damage is increased by 10% when the target has less health than you (as a percentage of total health).","rankDescriptions":["Your melee critical strike damage is increased by 2% when the target has less health than you (as a percentage of total health).","Your melee critical strike damage is increased by 4% when the target has less health than you (as a percentage of total health).","Your melee critical strike damage is increased by 6% when the target has less health than you (as a percentage of total health).","Your melee critical strike damage is increased by 8% when the target has less health than you (as a percentage of total health).","Your melee critical strike damage is increased by 10% when the target has less health than you (as a percentage of total health)."],"system":"classic"},{"id":"talent-2076","treeId":"rogue-combat","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_warrior_focusedrage.png","maxRank":1,"name":"Killing Spree","description":"Step through the shadows from enemy to enemy within 10 yards, attacking an enemy for 130% weapon damage (195% with Daggers) every .5 secs with both weapons until 5 assaults are made. Can hit the same target multiple times. Cannot hit invisible or stealthed targets. The hits with your off-hand weapon will not trigger any proc effects. If you have Titan's Grip learned, this ability deals 25% less damage.","rankDescriptions":["Step through the shadows from enemy to enemy within 10 yards, attacking an enemy for 130% weapon damage (195% with Daggers) every .5 secs with both weapons until 5 assaults are made. Can hit the same target multiple times. Cannot hit invisible or stealthed targets. The hits with your off-hand weapon will not trigger any proc effects. If you have Titan's Grip learned, this ability deals 25% less damage."],"system":"classic"},{"id":"talent-182","treeId":"rogue-combat","index":9,"prerequisiteId":"talent-221","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-221","requiredRank":5}],"column":3,"row":3,"icon":"/assets/ui/talents/icons/inv_weapon_shortblade_05.png","maxRank":5,"name":"Close Quarters Combat","description":"Increases your chance to get a critical strike with Daggers and Fist Weapons by 10%.","rankDescriptions":["Increases your chance to get a critical strike with Daggers and Fist Weapons by 2%.","Increases your chance to get a critical strike with Daggers and Fist Weapons by 4%.","Increases your chance to get a critical strike with Daggers and Fist Weapons by 6%.","Increases your chance to get a critical strike with Daggers and Fist Weapons by 8%.","Increases your chance to get a critical strike with Daggers and Fist Weapons by 10%."],"system":"classic"},{"id":"talent-186","treeId":"rogue-combat","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_nature_invisibilty.png","maxRank":3,"name":"Quick Reflexes","description":"Increases your melee haste by 6%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","rankDescriptions":["Increases your melee haste by 2%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases your melee haste by 4%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases your melee haste by 6%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]"],"system":"classic"},{"id":"talent-221","treeId":"rogue-combat","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_dualwield.png","maxRank":5,"name":"Dual Wield Specialization","description":"Increases your critical strike chance by 5%. Increases the damage done by your off-hand weapon by 33%. Does not stack with Dual Wield Mastery","rankDescriptions":["Increases your critical strike chance by 1%. Increases the damage done by your off-hand weapon by 7%. Does not stack with Dual Wield Mastery","Increases your critical strike chance by 2%. Increases the damage done by your off-hand weapon by 14%. Does not stack with Dual Wield Mastery","Increases your critical strike chance by 3%. Increases the damage done by your off-hand weapon by 20%. Does not stack with Dual Wield Mastery","Increases your critical strike chance by 4%. Increases the damage done by your off-hand weapon by 26%. Does not stack with Dual Wield Mastery","Increases your critical strike chance by 5%. Increases the damage done by your off-hand weapon by 33%. Does not stack with Dual Wield Mastery"],"system":"classic"},{"id":"talent-242","treeId":"rogue-combat","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/inv_sword_27.png","maxRank":3,"name":"Hack and Slash","description":"Gives you a 6% chance to get an extra attack with both weapons dealing 100% weapon damage after hitting your target with your One-Handed Sword or One-handed Axe. This effect can only occur once every second versus players.","rankDescriptions":["Gives you a 2% chance to get an extra attack with both weapons dealing 100% weapon damage after hitting your target with your One-Handed Sword or One-handed Axe. This effect can only occur once every second versus players.","Gives you a 4% chance to get an extra attack with both weapons dealing 100% weapon damage after hitting your target with your One-Handed Sword or One-handed Axe. This effect can only occur once every second versus players.","Gives you a 6% chance to get an extra attack with both weapons dealing 100% weapon damage after hitting your target with your One-Handed Sword or One-handed Axe. This effect can only occur once every second versus players."],"system":"classic"},{"id":"talent-1706","treeId":"rogue-combat","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/ability_rogue_bladetwisting.png","maxRank":2,"name":"Blade Twisting","description":"Increases the damage dealt by Sinister Strike, Backstab and Shiv by 10%, and your Shiv and Grappling Hook Follow-Up has a 100% chance to Daze the target for 4 seconds.","rankDescriptions":["Increases the damage dealt by Sinister Strike, Backstab and Shiv by 5%. Shiv and Grappling Hook Follow-Up have a 50% chance to Daze the target for 4 seconds.","Increases the damage dealt by Sinister Strike, Backstab and Shiv by 10%, and your Shiv and Grappling Hook Follow-Up has a 100% chance to Daze the target for 4 seconds."],"system":"classic"},{"id":"talent-1707","treeId":"rogue-combat","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_rogue_nervesofsteel.png","maxRank":2,"name":"Nerves of Steel","description":"Reduces damage taken while affected by Stun and Fear effects by 10%.","rankDescriptions":["Reduces damage taken while affected by Stun and Fear effects by 5%.","Reduces damage taken while affected by Stun and Fear effects by 10%."],"system":"classic"},{"id":"talent-1825","treeId":"rogue-combat","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/inv_weapon_shortblade_38.png","maxRank":3,"name":"Combat Potency","description":"Gives your successful off-hand melee attacks a 100% chance to generate 5 Energy. Capstone Bonus: Your successful off-hand melee attacks also reduce the cooldown of your Blade Flurry, Killing Spree and Combat Readiness by 1 second.","rankDescriptions":["Gives your successful off-hand melee attacks a 33% chance to generate 5 Energy. Capstone Bonus: The final rank of this talent allows your successful off-hand melee attacks to also reduce the cooldown of your Blade Flurry, Killing Spree and Combat Readiness by 1 second.","Gives your successful off-hand melee attacks a 66% chance to generate 5 Energy. Capstone Bonus: The final rank of this talent allows your successful off-hand melee attacks to also reduce the cooldown of your Blade Flurry, Killing Spree and Combat Readiness by 1 second.","Gives your successful off-hand melee attacks a 100% chance to generate 5 Energy. Capstone Bonus: Your successful off-hand melee attacks also reduce the cooldown of your Blade Flurry, Killing Spree and Combat Readiness by 1 second."],"system":"classic"},{"id":"talent-2074","treeId":"rogue-combat","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_creature_disease_03.png","maxRank":2,"name":"Savage Combat","description":"Increases your total Melee attack power by 2%. All Physical damage on enemies you have poisoned is increased by 4%. Does not stack with other similar effects.","rankDescriptions":["Increases your total Melee attack power by 1%. All Physical damage on enemies you have poisoned is increased by 2%. Does not stack with other similar effects.","Increases your total Melee attack power by 2%. All Physical damage on enemies you have poisoned is increased by 4%. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-181","treeId":"rogue-combat","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/talents/icons/ability_marksmanship.png","maxRank":5,"name":"Accuracy","description":"Increases your chance to hit with all spells and attacks by 5%.","rankDescriptions":["Increases your chance to hit with all spells and attacks by 1%.","Increases your chance to hit with all spells and attacks by 2%.","Increases your chance to hit with all spells and attacks by 3%.","Increases your chance to hit with all spells and attacks by 4%.","Increases your chance to hit with all spells and attacks by 5%."],"system":"classic"},{"id":"talent-1122","treeId":"rogue-combat","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/ability_racial_avatar.png","maxRank":5,"name":"Aggression","description":"Increases the critical strike chance of your Sinister Strike, Shuriken Toss, Deadly Throw and Eviscerate by 15%. Increases the duration of effects gained from Roll the Bones by 15 sec. Capstone Bonus: Your finishing moves reduces the cooldown of Roll the Bones by 2 sec per combo point used.","rankDescriptions":["Increases the critical strike chance of your Sinister Strike, Shuriken Toss, Deadly Throw and Eviscerate by 3%. Increases the duration of effects gained from Roll the Bones by 3 sec. Capstone Bonus: Your finishing moves reduces the cooldown of Roll the Bones by 2 sec per combo point used.","Increases the critical strike chance of your Sinister Strike, Shuriken Toss, Deadly Throw and Eviscerate by 6%. Increases the duration of effects gained from Roll the Bones by 6 sec. Capstone Bonus: Your finishing moves reduces the cooldown of Roll the Bones by 2 sec per combo point used.","Increases the critical strike chance of your Sinister Strike, Shuriken Toss, Deadly Throw and Eviscerate by 9%. Increases the duration of effects gained from Roll the Bones by 9 sec. Capstone Bonus: Your finishing moves reduces the cooldown of Roll the Bones by 2 sec per combo point used.","Increases the critical strike chance of your Sinister Strike, Shuriken Toss, Deadly Throw and Eviscerate by 12%. Increases the duration of effects gained from Roll the Bones by 12 sec. Capstone Bonus: Your finishing moves reduces the cooldown of Roll the Bones by 2 sec per combo point used.","Increases the critical strike chance of your Sinister Strike, Shuriken Toss, Deadly Throw and Eviscerate by 15%. Increases the duration of effects gained from Roll the Bones by 15 sec. Capstone Bonus: Your finishing moves reduces the cooldown of Roll the Bones by 2 sec per combo point used."],"system":"classic"},{"id":"talent-273","treeId":"rogue-assassination","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/ability_druid_disembowel.png","maxRank":3,"name":"Ruthlessness","description":"Increases the damage of your Rogue finishing moves by 3%. Your Rogue melee weapon finishing moves a 100% chance to add a combo point to your target. This effect cannot occur more than once every 9 seconds.","rankDescriptions":["Increases the damage of your Rogue finishing moves by 1%. Your Rogue melee weapon finishing moves a 33% chance to add a combo point to your target. This effect cannot occur more than once every 9 seconds.","Increases the damage of your Rogue finishing moves by 2%. Your Rogue melee weapon finishing moves a 66% chance to add a combo point to your target. This effect cannot occur more than once every 9 seconds.","Increases the damage of your Rogue finishing moves by 3%. Your Rogue melee weapon finishing moves a 100% chance to add a combo point to your target. This effect cannot occur more than once every 9 seconds."],"system":"classic"},{"id":"talent-276","treeId":"rogue-assassination","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/ability_rogue_eviscerate.png","maxRank":3,"name":"Improved Eviscerate","description":"Increases the damage of your Eviscerate ability by 20%.","rankDescriptions":["Increases the damage of your Eviscerate ability by 7%.","Increases the damage of your Eviscerate ability by 14%.","Increases the damage of your Eviscerate ability by 20%."],"system":"classic"},{"id":"talent-382","treeId":"rogue-assassination","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_earthbindtotem.png","maxRank":2,"name":"Vigor","description":"Increases your maximum Energy by 30.","rankDescriptions":["Increases your maximum Energy by 15.","Increases your maximum Energy by 30."],"system":"classic"},{"id":"talent-1715","treeId":"rogue-assassination","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_creature_poison_06.png","maxRank":3,"name":"Master Poisoner","description":"Increases the critical strike chance of all spells and attacks made against any target you have poisoned by 3%, reduces the duration of all Poison effects applied to you by 30%, and gives Envenom a 100% chance not to consume Deadly Poison. Does not stack with other similar effects.","rankDescriptions":["Increases the critical strike chance of all spells and attacks made against any target you have poisoned by 1%, reduces the duration of all Poison effects applied to you by 10%, and gives Envenom a 33% chance not to consume Deadly Poison. Does not stack with other similar effects.","Increases the critical strike chance of all spells and attacks made against any target you have poisoned by 2%, reduces the duration of all Poison effects applied to you by 20%, and gives Envenom a 66% chance not to consume Deadly Poison. Does not stack with other similar effects.","Increases the critical strike chance of all spells and attacks made against any target you have poisoned by 3%, reduces the duration of all Poison effects applied to you by 30%, and gives Envenom a 100% chance not to consume Deadly Poison. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-1721","treeId":"rogue-assassination","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/ability_rogue_fleetfooted.png","maxRank":3,"name":"Fleet Footed","description":"Increases your mounted movement speed by 10%. This does not stack with other movement speed increasing effects. Your finishing moves have a the listed amount% chance per combo point to clear any movement speed reduction and immobilization effects.","rankDescriptions":["Increases your mounted movement speed by 4%. This does not stack with other movement speed increasing effects. Your finishing moves have a the listed amount% chance per combo point to clear any movement speed reduction and immobilization effects.","Increases your mounted movement speed by 7%. This does not stack with other movement speed increasing effects. Your finishing moves have a the listed amount% chance per combo point to clear any movement speed reduction and immobilization effects.","Increases your mounted movement speed by 10%. This does not stack with other movement speed increasing effects. Your finishing moves have a the listed amount% chance per combo point to clear any movement speed reduction and immobilization effects."],"system":"classic"},{"id":"talent-2065","treeId":"rogue-assassination","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_rogue_deadlybrew.png","maxRank":2,"name":"Deadly Brew","description":"When you apply Instant, Deadly or Mind-Numbing poison to a target, you have a 100% chance to apply Crippling poison. Doesn't work on targets further than 20 yards away. This effect can only occur once every 4 seconds.","rankDescriptions":["When you apply Instant, Deadly or Mind-Numbing poison to a target, you have a 50% chance to apply Crippling poison. Doesn't work on targets further than 20 yards away. This effect can only occur once every 2 seconds.","When you apply Instant, Deadly or Mind-Numbing poison to a target, you have a 100% chance to apply Crippling poison. Doesn't work on targets further than 20 yards away. This effect can only occur once every 4 seconds."],"system":"classic"},{"id":"talent-2069","treeId":"rogue-assassination","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_rogue_focusedattacks.png","maxRank":3,"name":"Focused Attacks","description":"Your melee, ranged and spell critical strikes have a 100% chance to give you 3 energy.","rankDescriptions":["Your melee, ranged and spell critical strikes have a 33% chance to give you 3 energy.","Your melee, ranged and spell critical strikes have a 66% chance to give you 3 energy.","Your melee, ranged and spell critical strikes have a 100% chance to give you 3 energy."],"system":"classic"},{"id":"talent-272","treeId":"rogue-assassination","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/ability_fiegndead.png","maxRank":2,"name":"Remorseless Attacks","description":"After killing an opponent that yields experience or honor, gives you a 40% increased critical strike chance on your next Sinister Strike, Hemorrhage, Backstab, Mutilate, Ambush, or Ghostly Strike. Lasts 20 seconds. Capstone Bonus: Triggering Remorseless Attacks also refreshes your Slice and Dice duration to its 5 combo point maximum.","rankDescriptions":["After killing an opponent that yields experience or honor, gives you a 20% increased critical strike chance on your next Sinister Strike, Hemorrhage, Backstab, Mutilate, Ambush, or Ghostly Strike. Lasts 20 seconds. Capstone Bonus: The final rank of this talent makes triggering Remorseless Attacks also refresh your Slice and Dice duration to its 5 combo point maximum.","After killing an opponent that yields experience or honor, gives you a 40% increased critical strike chance on your next Sinister Strike, Hemorrhage, Backstab, Mutilate, Ambush, or Ghostly Strike. Lasts 20 seconds. Capstone Bonus: Triggering Remorseless Attacks also refreshes your Slice and Dice duration to its 5 combo point maximum."],"system":"classic"},{"id":"talent-278","treeId":"rogue-assassination","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/ability_warrior_riposte.png","maxRank":2,"name":"Improved Expose Armor","description":"Reduces the energy cost of your Expose Armor ability by 10, increases its duration by 50%, and your attacks ignore an additional 6% of your target's armor.","rankDescriptions":["Reduces the energy cost of your Expose Armor ability by 5, increases its duration by 25%, and your attacks ignore an additional 3% of your target's armor.","Reduces the energy cost of your Expose Armor ability by 10, increases its duration by 50%, and your attacks ignore an additional 6% of your target's armor."],"system":"classic"},{"id":"talent-280","treeId":"rogue-assassination","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_ice_lament.png","maxRank":1,"name":"Cold Blood","description":"When activated, your next direct damage Rogue ability has 100% increased critical strike chance, 20% increased damage (10% versus players)and is usable from 10 yards. When consumed you will gain 4% melee and ranged critical strike chance for 15 seconds.","rankDescriptions":["When activated, your next direct damage Rogue ability has 100% increased critical strike chance, 20% increased damage (10% versus players)and is usable from 10 yards. When consumed you will gain 4% melee and ranged critical strike chance for 15 seconds."],"system":"classic"},{"id":"talent-281","treeId":"rogue-assassination","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/talents/icons/ability_hunter_rapidkilling.png","maxRank":2,"name":"Overkill","description":"While stealthed, and for 20 seconds after breaking stealth, you regenerate 40% additional energy.","rankDescriptions":["While stealthed, and for 20 seconds after breaking stealth, you regenerate 20% additional energy.","While stealthed, and for 20 seconds after breaking stealth, you regenerate 40% additional energy."],"system":"classic"},{"id":"talent-283","treeId":"rogue-assassination","index":16,"prerequisiteId":"talent-280","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-280","requiredRank":1}],"column":2,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_chilltouch.png","maxRank":3,"name":"Seal Fate","description":"Your critical strikes from Rogue abilities that add combo points have a 100% chance to add an additional combo point. Increases the damage done by Eviscerate, Rupture, Dispatch, Deadly Throw and Crimson Tempest by 10%. Capstone Bonus: Consuming Cold Blood with a finishing move has a the listed amount% chance per combo point to increase your movement speed by 70% for 4 seconds.","rankDescriptions":["Your critical strikes from Rogue abilities that add combo points have a 33% chance to add an additional combo point. Increases the damage done by Eviscerate, Rupture, Dispatch, Deadly Throw and Crimson Tempest by 4%. Capstone Bonus: Consuming Cold Blood with a finishing move has a the listed amount% chance per combo point to increase your movement speed by 70% for 4 seconds.","Your critical strikes from Rogue abilities that add combo points have a 66% chance to add an additional combo point. Increases the damage done by Eviscerate, Rupture, Dispatch, Deadly Throw and Crimson Tempest by 7%. Capstone Bonus: Consuming Cold Blood with a finishing move has a the listed amount% chance per combo point to increase your movement speed by 70% for 4 seconds.","Your critical strikes from Rogue abilities that add combo points have a 100% chance to add an additional combo point. Increases the damage done by Eviscerate, Rupture, Dispatch, Deadly Throw and Crimson Tempest by 10%. Capstone Bonus: Consuming Cold Blood with a finishing move has a the listed amount% chance per combo point to increase your movement speed by 70% for 4 seconds."],"system":"classic"},{"id":"talent-682","treeId":"rogue-assassination","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/ability_rogue_feigndeath.png","maxRank":3,"name":"Vile Poisons","description":"Increases the damage dealt by your Rogue poisons and Envenom ability by 30%. Increases the effectiveness of your Mind-Numbing Poison by 15%. Increases the duration of your Wound Poison by 3 seconds. Increases the chance your Deadly Poison will resist dispel effects by 30%.","rankDescriptions":["Increases the damage dealt by your Rogue poisons and Envenom ability by 10%. Increases the effectiveness of your Mind-Numbing Poison by 5%. Increases the duration of your Wound Poison by 1 second. Increases the chance your Deadly Poison will resist dispel effects by 10%.","Increases the damage dealt by your Rogue poisons and Envenom ability by 20%. Increases the effectiveness of your Mind-Numbing Poison by 10%. Increases the duration of your Wound Poison by 2 seconds. Increases the chance your Deadly Poison will resist dispel effects by 20%.","Increases the damage dealt by your Rogue poisons and Envenom ability by 30%. Increases the effectiveness of your Mind-Numbing Poison by 15%. Increases the duration of your Wound Poison by 3 seconds. Increases the chance your Deadly Poison will resist dispel effects by 30%."],"system":"classic"},{"id":"talent-1719","treeId":"rogue-assassination","index":24,"prerequisiteId":"talent-281","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-281","requiredRank":1}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/ability_rogue_shadowstrikes.png","maxRank":1,"name":"Mutilate","description":"Instantly attacks with both weapons for 145% weapon damage plus an additional 20 with each weapon. the listed amount[Damage is increased by 15% for each of your Poisons on the target. ][Damage is increased by 10% against Poisoned targets. ]Awards 2 combo points.","rankDescriptions":["Instantly attacks with both weapons for 145% weapon damage plus an additional 20 with each weapon. the listed amount[Damage is increased by 15% for each of your Poisons on the target. ][Damage is increased by 10% against Poisoned targets. ]Awards 2 combo points."],"system":"classic"},{"id":"talent-2068","treeId":"rogue-assassination","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_rogue_bloodsplatter.png","maxRank":2,"name":"Blood Spatter","description":"Increases the damage caused by your Garrote, Rupture and Crimson Tempest abilities by 30%. Increases the damage of your Hemorrhage ability by 10%.","rankDescriptions":["Increases the damage caused by your Garrote, Rupture and Crimson Tempest abilities by 15%. Increases the damage of your Hemorrhage ability by 5%.","Increases the damage caused by your Garrote, Rupture and Crimson Tempest abilities by 30%. Increases the damage of your Hemorrhage ability by 10%."],"system":"classic"},{"id":"talent-2070","treeId":"rogue-assassination","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_rogue_cuttothechase.png","maxRank":3,"name":"Cut to the Chase","description":"Your finishing moves have a 100% chance to refresh your Slice and Dice duration to its 5 combo point maximum.","rankDescriptions":["Your finishing moves have a 33% chance to refresh your Slice and Dice duration to its 5 combo point maximum.","Your finishing moves have a 66% chance to refresh your Slice and Dice duration to its 5 combo point maximum.","Your finishing moves have a 100% chance to refresh your Slice and Dice duration to its 5 combo point maximum."],"system":"classic"},{"id":"talent-2071","treeId":"rogue-assassination","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_rogue_hungerforblood.png","maxRank":1,"name":"Hunger For Blood","description":"Enrages you, increasing all Physical and Nature damage caused by 10% (5% versus players), lasting for 5 seconds per bleed you have applied to the target. Also gives you a movement boost for 5 seconds and the speed is increased by 15% per bleed you have applied to the target. Requires any bleed to be active on the target to be used. This ability is usable while shapeshifted.","rankDescriptions":["Enrages you, increasing all Physical and Nature damage caused by 10% (5% versus players), lasting for 5 seconds per bleed you have applied to the target. Also gives you a movement boost for 5 seconds and the speed is increased by 15% per bleed you have applied to the target. Requires any bleed to be active on the target to be used. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-268","treeId":"rogue-assassination","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/ability_poisons.png","maxRank":5,"name":"Improved Poisons","description":"Increases the chance to apply Deadly Poison to your target by 30% and the frequency of applying Instant Poison to your target by 30%. Capstone Bonus: Your Deadly Poison periodic damage can critically hit.","rankDescriptions":["Increases the chance to apply Deadly Poison to your target by 6% and the frequency of applying Instant Poison to your target by 6%. Capstone Bonus: Your Deadly Poison periodic damage can critically hit.","Increases the chance to apply Deadly Poison to your target by 12% and the frequency of applying Instant Poison to your target by 12%. Capstone Bonus: Your Deadly Poison periodic damage can critically hit.","Increases the chance to apply Deadly Poison to your target by 18% and the frequency of applying Instant Poison to your target by 18%. Capstone Bonus: Your Deadly Poison periodic damage can critically hit.","Increases the chance to apply Deadly Poison to your target by 24% and the frequency of applying Instant Poison to your target by 24%. Capstone Bonus: Your Deadly Poison periodic damage can critically hit.","Increases the chance to apply Deadly Poison to your target by 30% and the frequency of applying Instant Poison to your target by 30%. Capstone Bonus: Your Deadly Poison periodic damage can critically hit."],"system":"classic"},{"id":"talent-269","treeId":"rogue-assassination","index":9,"prerequisiteId":"talent-270","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-270","requiredRank":5}],"column":3,"row":3,"icon":"/assets/ui/talents/icons/ability_criticalstrike.png","maxRank":3,"name":"Lethality","description":"Increases the critical strike damage bonus of all non-periodic combo point-generating Rogue abilities and Rogue poisons by 30%.","rankDescriptions":["Increases the critical strike damage bonus of all non-periodic combo point-generating Rogue abilities and Rogue poisons by 10%.","Increases the critical strike damage bonus of all non-periodic combo point-generating Rogue abilities and Rogue poisons by 20%.","Increases the critical strike damage bonus of all non-periodic combo point-generating Rogue abilities and Rogue poisons by 30%."],"system":"classic"},{"id":"talent-270","treeId":"rogue-assassination","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_racial_bloodrage.png","maxRank":5,"name":"Malice","description":"Increases your chance to get a critical strike with all spells and attacks by 5%. Capstone Bonus: You gain 5 Energy when your Garrote, Rupture or Crimson Tempest deal damage.","rankDescriptions":["Increases your chance to get a critical strike with all spells and attacks by 1%. Capstone Bonus: You gain 5 Energy when your Garrote, Rupture or Crimson Tempest deal damage.","Increases your chance to get a critical strike with all spells and attacks by 2%. Capstone Bonus: You gain 5 Energy when your Garrote, Rupture or Crimson Tempest deal damage.","Increases your chance to get a critical strike with all spells and attacks by 3%. Capstone Bonus: You gain 5 Energy when your Garrote, Rupture or Crimson Tempest deal damage.","Increases your chance to get a critical strike with all spells and attacks by 4%. Capstone Bonus: You gain 5 Energy when your Garrote, Rupture or Crimson Tempest deal damage.","Increases your chance to get a critical strike with all spells and attacks by 5%. Capstone Bonus: You gain 5 Energy when your Garrote, Rupture or Crimson Tempest deal damage."],"system":"classic"},{"id":"talent-274","treeId":"rogue-assassination","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_deathscream.png","maxRank":2,"name":"Murder","description":"Increases all Physical and Nature damage caused by 2% Increases the duration of the Silence effect from Garrote by 0.5 seconds.","rankDescriptions":["Increases all Physical and Nature damage caused by 1% Increases the duration of the Silence effect from Garrote by 0.25 seconds.","Increases all Physical and Nature damage caused by 2% Increases the duration of the Silence effect from Garrote by 0.5 seconds."],"system":"classic"},{"id":"talent-279","treeId":"rogue-assassination","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/ability_rogue_kidneyshot.png","maxRank":2,"name":"Improved Kidney Shot","description":"Kidney Shot increases damage taken by the target from all sources by 8%.","rankDescriptions":["Kidney Shot increases damage taken by the target from all sources by 4%.","Kidney Shot increases damage taken by the target from all sources by 8%."],"system":"classic"},{"id":"talent-1718","treeId":"rogue-assassination","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_rogue_findweakness.png","maxRank":3,"name":"Find Weakness","description":"Rogue ability critical chance increased by 6%.the listed amount [][ Capstone Bonus: The periodic damage of your Garrote is able to critically hit. ]","rankDescriptions":["Rogue ability critical chance increased by 2%.the listed amount [][ Capstone Bonus: The periodic damage of your Garrote will be able to critically hit. ]","Rogue ability critical chance increased by 4%.the listed amount [][ Capstone Bonus: The periodic damage of your Garrote will be able to critically hit. ]","Rogue ability critical chance increased by 6%.the listed amount [][ Capstone Bonus: The periodic damage of your Garrote is able to critically hit. ]"],"system":"classic"},{"id":"talent-1723","treeId":"rogue-assassination","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_rogue_deadenednerves.png","maxRank":3,"name":"Deadened Nerves","description":"Reduces all damage taken by 3%.","rankDescriptions":["Reduces all damage taken by 1%.","Reduces all damage taken by 2%.","Reduces all damage taken by 3%."],"system":"classic"},{"id":"talent-2066","treeId":"rogue-assassination","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_rogue_turnthetables.png","maxRank":3,"name":"Turn the Tables","description":"Whenever anyone in your party or raid blocks, dodges, or parries an attack your chance to critically hit with combo point generators and melee haste is increased by 6% for 8 seconds.","rankDescriptions":["Whenever anyone in your party or raid blocks, dodges, or parries an attack your chance to critically hit with combo point generators and melee haste is increased by 2% for 8 seconds.","Whenever anyone in your party or raid blocks, dodges, or parries an attack your chance to critically hit with combo point generators and melee haste is increased by 4% for 8 seconds.","Whenever anyone in your party or raid blocks, dodges, or parries an attack your chance to critically hit with combo point generators and melee haste is increased by 6% for 8 seconds."],"system":"classic"},{"id":"talent-277","treeId":"rogue-assassination","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/talents/icons/ability_backstab.png","maxRank":3,"name":"Puncturing Wounds","description":"Increases the critical strike chance of your Backstab ability by 30%. Increases the critical strike chance of your Mutilate ability by 15%.","rankDescriptions":["Increases the critical strike chance of your Backstab ability by 10%. Increases the critical strike chance of your Mutilate ability by 5%.","Increases the critical strike chance of your Backstab ability by 20%. Increases the critical strike chance of your Mutilate ability by 10%.","Increases the critical strike chance of your Backstab ability by 30%. Increases the critical strike chance of your Mutilate ability by 15%."],"system":"classic"},{"id":"talent-1762","treeId":"rogue-assassination","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/ability_rogue_quickrecovery.png","maxRank":2,"name":"Quick Recovery","description":"Increases healing done to you by 6%. This effect does not stack with other similar effects. Your Rogue finishing moves refund 80% of their Energy cost when they fail to hit. The healing of your Recuperate is increased by 30% and your Energy regeneration is increased by 20% while your Recuperate is active on you.","rankDescriptions":["Increases healing done to you by 3%. This effect does not stack with other similar effects. Your Rogue finishing moves refund 40% of their Energy cost when they fail to hit. The healing of your Recuperate is increased by 15% and your Energy regeneration is increased by 10% while your Recuperate is active on you.","Increases healing done to you by 6%. This effect does not stack with other similar effects. Your Rogue finishing moves refund 80% of their Energy cost when they fail to hit. The healing of your Recuperate is increased by 30% and your Energy regeneration is increased by 20% while your Recuperate is active on you."],"system":"classic"},{"id":"talent-246","treeId":"rogue-subtlety","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_nature_mirrorimage.png","maxRank":3,"name":"Setup","description":"Gives you a 100% chance to add a combo point to your target after dodging or parrying their attack. This cannot happen more than once per second. Increases the duration of your Ghostly Strike effect by 6 seconds.","rankDescriptions":["Gives you a 33% chance to add a combo point to your target after dodging or parrying their attack. This cannot happen more than once per second. Increases the duration of your Ghostly Strike effect by 2 seconds.","Gives you a 66% chance to add a combo point to your target after dodging or parrying their attack. This cannot happen more than once per second. Increases the duration of your Ghostly Strike effect by 4 seconds.","Gives you a 100% chance to add a combo point to your target after dodging or parrying their attack. This cannot happen more than once per second. Increases the duration of your Ghostly Strike effect by 6 seconds."],"system":"classic"},{"id":"talent-247","treeId":"rogue-subtlety","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_magic_lesserinvisibilty.png","maxRank":2,"name":"Elusiveness","description":"Reduces the cooldown of Vanish and Smoke Bomb by 60 sec. Reduces the cooldown of Cloak of Shadows by 30 sec.","rankDescriptions":["Reduces the cooldown of Vanish and Smoke Bomb by 30 sec. Reduces the cooldown of Cloak of Shadows by 15 sec.","Reduces the cooldown of Vanish and Smoke Bomb by 60 sec. Reduces the cooldown of Cloak of Shadows by 30 sec."],"system":"classic"},{"id":"talent-1700","treeId":"rogue-subtlety","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/ability_rogue_feint.png","maxRank":2,"name":"Sleight of Hand","description":"Reduces the chance you are critically hit by melee and ranged attacks by 2%. Increases the threat reduction of your Feint ability by 20%.","rankDescriptions":["Reduces the chance you are critically hit by melee and ranged attacks by 1%. Increases the threat reduction of your Feint ability by 10%.","Reduces the chance you are critically hit by melee and ranged attacks by 2%. Increases the threat reduction of your Feint ability by 20%."],"system":"classic"},{"id":"talent-1701","treeId":"rogue-subtlety","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/ability_ambush.png","maxRank":2,"name":"Heightened Senses","description":"Increases your Stealth detection and reduces all damage you take by 2%. More effective than Heightened Senses (Rank 1).","rankDescriptions":["Increases your Stealth detection and reduces all damage you take by 1%.","Increases your Stealth detection and reduces all damage you take by 2%. More effective than Heightened Senses (Rank 1)."],"system":"classic"},{"id":"talent-1711","treeId":"rogue-subtlety","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_rogue_envelopingshadows.png","maxRank":3,"name":"Enveloping Shadows","description":"Reduces the damage taken from physical attacks by 6% and by area of effect attacks by 30% while Ghostly Strike is active. This does not stack with other similar effects. Capstone Bonus: Using Ghostly Strike on a player makes you immune to knockbacks for the duration.","rankDescriptions":["Reduces the damage taken from physical attacks by 2% and by area of effect attacks by 10% while Ghostly Strike is active. This does not stack with other similar effects. Capstone Bonus: Using Ghostly Strike on a player makes you immune to knockbacks for the duration.","Reduces the damage taken from physical attacks by 4% and by area of effect attacks by 20% while Ghostly Strike is active. This does not stack with other similar effects. Capstone Bonus: Using Ghostly Strike on a player makes you immune to knockbacks for the duration.","Reduces the damage taken from physical attacks by 6% and by area of effect attacks by 30% while Ghostly Strike is active. This does not stack with other similar effects. Capstone Bonus: Using Ghostly Strike on a player makes you immune to knockbacks for the duration."],"system":"classic"},{"id":"talent-1713","treeId":"rogue-subtlety","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/ability_rogue_masterofsubtlety.png","maxRank":3,"name":"Master of Subtlety","description":"Physical attacks made while stealthed and for 10 seconds after breaking stealth cause an additional 12% damage. Master of Subtlety doesn't stack with other similar effects.","rankDescriptions":["Physical attacks made while stealthed and for 10 seconds after breaking stealth cause an additional 4% damage. Master of Subtlety doesn't stack with other similar effects.","Physical attacks made while stealthed and for 10 seconds after breaking stealth cause an additional 8% damage. Master of Subtlety doesn't stack with other similar effects.","Physical attacks made while stealthed and for 10 seconds after breaking stealth cause an additional 12% damage. Master of Subtlety doesn't stack with other similar effects."],"system":"classic"},{"id":"talent-2078","treeId":"rogue-subtlety","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_rogue_honoramongstthieves.png","maxRank":3,"name":"Honor Among Thieves","description":"Increases your chance to get a critical strike with all spells and attacks by 3%. Capstone Bonus: Grants you a combo point whenever you deal direct damage to your target with a spell or ability. This effect cannot occur more than once every 3 seconds","rankDescriptions":["Increases your chance to get a critical strike with all spells and attacks by 1%. Capstone Bonus: Grants you a combo point whenever you deal direct damage to your target with a spell or ability. This effect cannot occur more than once every 3 seconds","Increases your chance to get a critical strike with all spells and attacks by 2%. Capstone Bonus: Grants you a combo point whenever you deal direct damage to your target with a spell or ability. This effect cannot occur more than once every 3 seconds","Increases your chance to get a critical strike with all spells and attacks by 3%. Capstone Bonus: Grants you a combo point whenever you deal direct damage to your target with a spell or ability. This effect cannot occur more than once every 3 seconds"],"system":"classic"},{"id":"talent-2244","treeId":"rogue-subtlety","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/ability_warrior_decisivestrike.png","maxRank":3,"name":"Relentless Strikes","description":"Your finishing moves have a the listed amount% chance per combo point to restore 25 energy and to cause your attacks to ignore 10% armor for 5 seconds.","rankDescriptions":["Your finishing moves have a the listed amount% chance per combo point to restore 25 energy and to cause your attacks to ignore 10% armor for 5 seconds.","Your finishing moves have a the listed amount% chance per combo point to restore 25 energy and to cause your attacks to ignore 10% armor for 5 seconds.","Your finishing moves have a the listed amount% chance per combo point to restore 25 energy and to cause your attacks to ignore 10% armor for 5 seconds."],"system":"classic"},{"id":"talent-241","treeId":"rogue-subtlety","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_charm.png","maxRank":3,"name":"Master of Deception","description":"Greatly reduces the chance enemies have to detect you while using Stealth or Prowl. More effective than Master of Deception (Rank 2).","rankDescriptions":["Greatly reduces the chance enemies have to detect you while using Stealth or Prowl.","Greatly reduces the chance enemies have to detect you while using Stealth or Prowl. More effective than Master of Deception (Rank 1).","Greatly reduces the chance enemies have to detect you while using Stealth or Prowl. More effective than Master of Deception (Rank 2)."],"system":"classic"},{"id":"talent-245","treeId":"rogue-subtlety","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_fumble.png","maxRank":3,"name":"Initiative","description":"Gives you a 100% chance to add an additional combo point to your target when using your Ambush, Garrote, or Cheap Shot ability.","rankDescriptions":["Gives you a 33% chance to add an additional combo point to your target when using your Ambush, Garrote, or Cheap Shot ability.","Gives you a 66% chance to add an additional combo point to your target when using your Ambush, Garrote, or Cheap Shot ability.","Gives you a 100% chance to add an additional combo point to your target when using your Ambush, Garrote, or Cheap Shot ability."],"system":"classic"},{"id":"talent-262","treeId":"rogue-subtlety","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_sap.png","maxRank":3,"name":"Dirty Tricks","description":"Increases the range of your Blind, Sap and Dismantle abilities by 6 yards Reduces the energy cost of your Blind, Sap and Dismantle abilities by 100%. Capstone: Your Dismantle also removes two beneficial magic effects from your target.","rankDescriptions":["Increases the range of your Blind, Sap and Dismantle abilities by 2 yards Reduces the energy cost of your Blind, Sap and Dismantle abilities by 33%. Capstone Bonus: Your Dismantle also removes two beneficial magic effects from your target.","Increases the range of your Blind, Sap and Dismantle abilities by 4 yards Reduces the energy cost of your Blind, Sap and Dismantle abilities by 66%. Capstone Bonus: Your Dismantle also removes two beneficial magic effects from your target.","Increases the range of your Blind, Sap and Dismantle abilities by 6 yards Reduces the energy cost of your Blind, Sap and Dismantle abilities by 100%. Capstone: Your Dismantle also removes two beneficial magic effects from your target."],"system":"classic"},{"id":"talent-284","treeId":"rogue-subtlety","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_antishadow.png","maxRank":1,"name":"Preparation","description":"When activated, this ability immediately resets the cooldown on your Evasion, Vanish, Cold Blood and Shadowstep abilities. This ability is usable while shapeshifted.","rankDescriptions":["When activated, this ability immediately resets the cooldown on your Evasion, Vanish, Cold Blood and Shadowstep abilities. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-303","treeId":"rogue-subtlety","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_curse.png","maxRank":1,"name":"Ghostly Strike","description":"A strike that deals 125% weapon damage (the listed amount% if a dagger is equipped, the listed amount% if a Two-Handed weapon is equipped). Increases your chance to dodge (or parry if a single Two-Handed weapon is equipped) by 10% for 8 seconds. Awards 1 combo points.","rankDescriptions":["A strike that deals 125% weapon damage (the listed amount% if a dagger is equipped, the listed amount% if a Two-Handed weapon is equipped). Increases your chance to dodge (or parry if a single Two-Handed weapon is equipped) by 10% for 8 seconds. Awards 1 combo points."],"system":"classic"},{"id":"talent-381","treeId":"rogue-subtlety","index":20,"prerequisiteId":"talent-284","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-284","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_shadow_possession.png","maxRank":1,"name":"Premeditation","description":"When used, adds 2 combo points to your target. Must be stealthed. You must add to or use those combo points within 15 seconds or the combo points are lost. This ability is usable while shapeshifted.","rankDescriptions":["When used, adds 2 combo points to your target. Must be stealthed. You must add to or use those combo points within 15 seconds or the combo points are lost. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-1712","treeId":"rogue-subtlety","index":22,"prerequisiteId":"talent-381","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-381","requiredRank":1}],"column":2,"row":8,"icon":"/assets/ui/talents/icons/ability_rogue_sinistercalling.png","maxRank":3,"name":"Sinister Calling","description":"Increases your total Agility by 3%. Increases the damage done by Hemorrhage by an additional 9%. Increases the duration of Gloomblade by 3 seconds. Capstone Bonus: Hemorrhage applies an additional combo point if the target has a bleed effect active.","rankDescriptions":["Increases your total Agility by 1%. Increases the damage done by Hemorrhage by an additional 3%. Increases the duration of Gloomblade by 1 second. Capstone Bonus: Hemorrhage applies an additional combo point if the target has a bleed effect active.","Increases your total Agility by 2%. Increases the damage done by Hemorrhage by an additional 6%. Increases the duration of Gloomblade by 2 second. Capstone Bonus: Hemorrhage applies an additional combo point if the target has a bleed effect active.","Increases your total Agility by 3%. Increases the damage done by Hemorrhage by an additional 9%. Increases the duration of Gloomblade by 3 seconds. Capstone Bonus: Hemorrhage applies an additional combo point if the target has a bleed effect active."],"system":"classic"},{"id":"talent-2080","treeId":"rogue-subtlety","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_rogue_slaughterfromtheshadows.png","maxRank":3,"name":"Slaughter from the Shadows","description":"Reduces the energy cost of your Backstab and Ambush abilities by 10 and the energy cost of your Hemorrhage by 6. When your Backstab, Hemorrhage or Gloomblade deals damage it has a 100% chance to reduce the cooldown of your Shadow Dance by 1 seconds.","rankDescriptions":["Reduces the energy cost of your Backstab and Ambush abilities by 4 and the energy cost of your Hemorrhage by 2. When your Backstab, Hemorrhage or Gloomblade deals damage it has a 33% chance to reduce the cooldown of your Shadow Dance by 1 seconds.","Reduces the energy cost of your Backstab and Ambush abilities by 7 and the energy cost of your Hemorrhage by 4. When your Backstab, Hemorrhage or Gloomblade deals damage it has a 66% chance to reduce the cooldown of your Shadow Dance by 1 seconds.","Reduces the energy cost of your Backstab and Ambush abilities by 10 and the energy cost of your Hemorrhage by 6. When your Backstab, Hemorrhage or Gloomblade deals damage it has a 100% chance to reduce the cooldown of your Shadow Dance by 1 seconds."],"system":"classic"},{"id":"talent-2081","treeId":"rogue-subtlety","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_rogue_shadowdance.png","maxRank":1,"name":"Shadow Dance","description":"Enter the Shadow Dance for 8 seconds, allowing the use of Sap, Garrote, Ambush, Cheap Shot, Premeditation, Pickpocket, Disarm Trap, Ravage and Pounce regardless of being stealthed or prowled.","rankDescriptions":["Enter the Shadow Dance for 8 seconds, allowing the use of Sap, Garrote, Ambush, Cheap Shot, Premeditation, Pickpocket, Disarm Trap, Ravage and Pounce regardless of being stealthed or prowled."],"system":"classic"},{"id":"talent-244","treeId":"rogue-subtlety","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/ability_stealth.png","maxRank":3,"name":"Camouflage","description":"Increases your speed while in Stealth or Prowl by 15%. Reduces the cooldown of your Stealth and Prowl ability by 3 sec.","rankDescriptions":["Increases your speed while in Stealth or Prowl by 5%. Reduces the cooldown of your Stealth and Prowl ability by 1 sec.","Increases your speed while in Stealth or Prowl by 10%. Reduces the cooldown of your Stealth and Prowl ability by 2 sec.","Increases your speed while in Stealth or Prowl by 15%. Reduces the cooldown of your Stealth and Prowl ability by 3 sec."],"system":"classic"},{"id":"talent-261","treeId":"rogue-subtlety","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_warrior_warcry.png","maxRank":2,"name":"Opportunity","description":"Increases the damage dealt with your Backstab, Mutilate, Garrote, Ambush and Gloomblade abilities by 20%.","rankDescriptions":["Increases the damage dealt with your Backstab, Mutilate, Garrote, Ambush and Gloomblade abilities by 10%.","Increases the damage dealt with your Backstab, Mutilate, Garrote, Ambush and Gloomblade abilities by 20%."],"system":"classic"},{"id":"talent-263","treeId":"rogue-subtlety","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/ability_rogue_ambush.png","maxRank":2,"name":"Out of Nowhere","description":"Increases the critical strike chance of your Ambush ability by 50%, and of your Hemorrhage ability by 15%.","rankDescriptions":["Increases the critical strike chance of your Ambush ability by 25%, and of your Hemorrhage ability by 7%.","Increases the critical strike chance of your Ambush ability by 50%, and of your Hemorrhage ability by 15%."],"system":"classic"},{"id":"talent-265","treeId":"rogue-subtlety","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_summonsuccubus.png","maxRank":2,"name":"Dirty Deeds","description":"Reduces the Energy cost of your Cheap Shot and Garrote abilities by 20. Your Rogue abilities cause 20% more damage against targets below 35% health.","rankDescriptions":["Reduces the Energy cost of your Cheap Shot and Garrote abilities by 10. Your Rogue abilities cause 10% more damage against targets below 35% health.","Reduces the Energy cost of your Cheap Shot and Garrote abilities by 20. Your Rogue abilities cause 20% more damage against targets below 35% health."],"system":"classic"},{"id":"talent-1123","treeId":"rogue-subtlety","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/inv_sword_17.png","maxRank":3,"name":"Serrated Blades","description":"Your attacks to ignore up to 9% of your target's Armor. Increases the damage dealt by your Rupture ability by 30%. Your melee hits have a 15% chance to allow the use of your Garrote ability outside of stealth. Garrote used under this effect does not trigger its silence.","rankDescriptions":["Your attacks to ignore up to 3% of your target's Armor. Increases the damage dealt by your Rupture ability by 10%. Your melee hits have a 5% chance to allow the use of your Garrote ability outside of stealth. Garrote used under this effect does not trigger its silence.","Your attacks to ignore up to 6% of your target's Armor. Increases the damage dealt by your Rupture ability by 20%. Your melee hits have a 10% chance to allow the use of your Garrote ability outside of stealth. Garrote used under this effect does not trigger its silence.","Your attacks to ignore up to 9% of your target's Armor. Increases the damage dealt by your Rupture ability by 30%. Your melee hits have a 15% chance to allow the use of your Garrote ability outside of stealth. Garrote used under this effect does not trigger its silence."],"system":"classic"},{"id":"talent-1702","treeId":"rogue-subtlety","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/inv_weapon_crossbow_11.png","maxRank":3,"name":"Deadliness","description":"Increases your attack power by 6%. Increases the bleed damage of your Garrote and Rupture abilities by 6%.","rankDescriptions":["Increases your attack power by 2%. Increases the bleed damage of your Garrote and Rupture abilities by 2%.","Increases your attack power by 4%. Additionally, increases the bleed damage of your Garrote and Rupture abilities by 4%.","Increases your attack power by 6%. Increases the bleed damage of your Garrote and Rupture abilities by 6%."],"system":"classic"},{"id":"talent-1722","treeId":"rogue-subtlety","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_rogue_cheatdeath.png","maxRank":3,"name":"Cheat Death","description":"You have a 100% chance to fully absorb an attack which would otherwise kill you, up to a maximum of 15% of your total health. In addition, all damage taken will be reduced by 50% for 3 seconds. This effect shares a 2 minute cooldown with Ardent Defender and Spirit of Redemption. Capstone Bonus: With the final rank of this talent, cheating death also resets your Vanish.","rankDescriptions":["You have a 33% chance to fully absorb an attack which would otherwise kill you, up to a maximum of 15% of your total health. In addition, all damage taken will be reduced by 50% for 3 seconds. This effect shares a 2 minute cooldown with Ardent Defender and Spirit of Redemption. Capstone Bonus: With the final rank of this talent, cheating death also resets your Vanish.","You have a 66% chance to fully absorb an attack which would otherwise kill you, up to a maximum of 15% of your total health. In addition, all damage taken will be reduced by 50% for 3 seconds. This effect shares a 2 minute cooldown with Ardent Defender and Spirit of Redemption. Capstone Bonus: With the final rank of this talent, cheating death also resets your Vanish.","You have a 100% chance to fully absorb an attack which would otherwise kill you, up to a maximum of 15% of your total health. In addition, all damage taken will be reduced by 50% for 3 seconds. This effect shares a 2 minute cooldown with Ardent Defender and Spirit of Redemption. Capstone Bonus: With the final rank of this talent, cheating death also resets your Vanish."],"system":"classic"},{"id":"talent-2077","treeId":"rogue-subtlety","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_rogue_waylay.png","maxRank":2,"name":"Waylay","description":"Your Ambush hits have a 100% chance to unbalance a target, increasing the time between their melee and ranged attacks by 20%, and reducing movement speed by 50% for 8 seconds.","rankDescriptions":["Your Ambush hits have a 50% chance to unbalance a target, increasing the time between their melee and ranged attacks by 20%, and reducing movement speed by 50% for 8 seconds.","Your Ambush hits have a 100% chance to unbalance a target, increasing the time between their melee and ranged attacks by 20%, and reducing movement speed by 50% for 8 seconds."],"system":"classic"},{"id":"talent-2079","treeId":"rogue-subtlety","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_rogue_wrongfullyaccused.png","maxRank":3,"name":"Filthy Tricks","description":"Reduces the cooldown of Shadowstep by 10 sec and the movement speed bonus by 20%. Increases the damage of Gloomblade by 30%. Capstone Bonus: Your Shadowstep ability increases the damage of your next non-periodic melee ability by 20%.","rankDescriptions":["Reduces the cooldown of Shadowstep by 4 sec and the movement speed bonus by 7%. Increases the damage of Gloomblade by 10%. Capstone Bonus: Your Shadowstep ability increases the damage of your next non-periodic melee ability by 20%.","Reduces the cooldown of Shadowstep by 7 sec and the movement speed bonus by 14%. Increases the damage of Gloomblade by 20%. Capstone Bonus: Your Shadowstep ability increases the damage of your next non-periodic melee ability by 20%.","Reduces the cooldown of Shadowstep by 10 sec and the movement speed bonus by 20%. Increases the damage of Gloomblade by 30%. Capstone Bonus: Your Shadowstep ability increases the damage of your next non-periodic melee ability by 20%."],"system":"classic"},{"id":"talent-681","treeId":"rogue-subtlety","index":16,"prerequisiteId":"talent-1123","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-1123","requiredRank":3}],"column":4,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_lifedrain.png","maxRank":1,"name":"Hemorrhage","description":"An instant strike that deals 100% weapon damage (the listed amount% if a dagger is equipped) (the listed amount% if a two-hander is equipped) and causes the target to hemorrhage, increasing any Physical damage dealt to the target by up to the listed amount Lasts 10 charges or 15 seconds. Awards 1 combo point.","rankDescriptions":["An instant strike that deals 100% weapon damage (the listed amount% if a dagger is equipped) (the listed amount% if a two-hander is equipped) and causes the target to hemorrhage, increasing any Physical damage dealt to the target by up to the listed amount Lasts 10 charges or 15 seconds. Awards 1 combo point."],"system":"classic"}]} diff --git a/src/game/generated/talentUi/runemaster.json b/src/game/generated/talentUi/runemaster.json new file mode 100644 index 00000000..e403b185 --- /dev/null +++ b/src/game/generated/talentUi/runemaster.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"runemaster","trees":[{"id":"coa-runemaster-85","classId":"runemaster","name":"Runic","icon":"/assets/ui/spells/5_mageskill14_border.png","background":"","description":"Runic nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-runemaster-11","classId":"runemaster","name":"Arcane","icon":"/assets/ui/spells/achievement_raidprimalist_council.png","background":"","description":"Arcane nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-runemaster-86","classId":"runemaster","name":"Riftblade","icon":"/assets/ui/spells/uico_fire_spell_02_border.png","background":"","description":"Riftblade nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-runemaster-87","classId":"runemaster","name":"Class","icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magickeeper_border.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-66733","treeId":"coa-runemaster-11","index":66733,"prerequisiteId":"coa-entry-4061","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4061","requiredRank":1},{"talentId":"coa-entry-31102","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/achievement_raidprimalist_council.png","maxRank":1,"name":"Glyphic Ruin","description":"Unleash your active Glyph effect on an enemy and deal 82 + 100% SP Elemental Damage.","rankDescriptions":["Unleash your active Glyph effect on an enemy and deal 82 + 100% SP Elemental Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4061","treeId":"coa-runemaster-11","index":4061,"prerequisiteId":"coa-entry-31102","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-31102","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/70_inscription_vantus_rune_azure.png","maxRank":1,"name":"Frost Glyph","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":10,"isPassive":true},{"id":"coa-entry-34664","treeId":"coa-runemaster-11","index":34664,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/70_inscription_vantus_rune_nightmare.png","maxRank":1,"name":"Flame Glyph","description":"Using Elemental Burst or Primordial Blast while Frost Glyph is active now grants you a Flame Glyph.Flame GlyphUnleash: Deals 250 + 65% fire SP Fire Damage and an additional 750 + 30% SP Fire Damage over 6 seconds.","rankDescriptions":["Using Elemental Burst or Primordial Blast while Frost Glyph is active now grants you a Flame Glyph.Flame GlyphUnleash: Deals 250 + 65% fire SP Fire Damage and an additional 750 + 30% SP Fire Damage over 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30208","treeId":"coa-runemaster-11","index":30208,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/spell_arcane_blast.png","maxRank":2,"name":"Focusing Crystals","description":"Increases your Magic Damage dealt by 6% and allows 60% of your mana regeneration to continue while in combat.","rankDescriptions":["Increases your Magic Damage dealt by 3% and allows 30% of your mana regeneration to continue while in combat.","Increases your Magic Damage dealt by 6% and allows 60% of your mana regeneration to continue while in combat."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7834","treeId":"coa-runemaster-11","index":7834,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/70_inscription_vantus_rune_suramar.png","maxRank":1,"name":"Arcane Glyph","description":"Using Elemental Burst or Primordial Blast while Flame Glyph is active now grants you Arcane Glyph.Arcane GlyphUnleash: Deals 276 + 18% arcane SP Arcane Damage to up to 0 enemies near the primary target.","rankDescriptions":["Using Elemental Burst or Primordial Blast while Flame Glyph is active now grants you Arcane Glyph.Arcane GlyphUnleash: Deals 276 + 18% arcane SP Arcane Damage to up to 0 enemies near the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7833","treeId":"coa-runemaster-11","index":7833,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_elemental_eternal_shadow.png","maxRank":1,"name":"Expert Elementalist","description":"Reduces the cast time of Elemental Burst and Glyphic Ruin by 0.5 sec and increases your chance to hit by 3%.","rankDescriptions":["Reduces the cast time of Elemental Burst and Glyphic Ruin by 0.5 sec and increases your chance to hit by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-3826","treeId":"coa-runemaster-11","index":3826,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/_auracloak_fire.png","maxRank":1,"name":"Ley Magician","description":"Level 20 Passive Increases your spell damage by 30% of Spirit and 10% of your Intellect, and spell hit rating by 6% of your Spirit.","rankDescriptions":["Level 20 Passive Increases your spell damage by 30% of Spirit and 10% of your Intellect, and spell hit rating by 6% of your Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-31126","treeId":"coa-runemaster-11","index":31126,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/skill_icon_skill40_border.png","maxRank":1,"name":"Frigid Blast","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.","rankDescriptions":["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."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34669","treeId":"coa-runemaster-11","index":34669,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/glyphicoverload.png","maxRank":1,"name":"Glyphic Overload","description":"Instantly generate Frost Glyph, Flame Glyph, and Arcane Glyph on yourself and overload, granting all active Glyphs an additional effect the next time you unleash them on an enemy. Lasts 15 seconds. Usable while stealthed. Overloaded Arcane GlyphDeals 100% increased damage. Overloaded Flame GlyphFlame Glyph now affects 2 additional enemies, and deals an additional 475 + 200% fire SP Fire Damage over 5 seconds. Overloaded Frost GlyphFreeze an enemy in place for 3 seconds. At the end of this duration, their movement speed is reduced by -50% for 5 seconds. Does not break on damage taken.","rankDescriptions":["Instantly generate Frost Glyph, Flame Glyph, and Arcane Glyph on yourself and overload, granting all active Glyphs an additional effect the next time you unleash them on an enemy. Lasts 15 seconds. Usable while stealthed. Overloaded Arcane GlyphDeals 100% increased damage. Overloaded Flame GlyphFlame Glyph now affects 2 additional enemies, and deals an additional 475 + 200% fire SP Fire Damage over 5 seconds. Overloaded Frost GlyphFreeze an enemy in place for 3 seconds. At the end of this duration, their movement speed is reduced by -50% for 5 seconds. Does not break on damage taken."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7839","treeId":"coa-runemaster-11","index":7839,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/nhi_arcaneburst_border.png","maxRank":2,"name":"Concentrated Magic","description":"Increases your Spirit by 10% and reduces spell pushback suffered from damaging attacks by 70%.","rankDescriptions":["Increases your Spirit by 5% and reduces spell pushback suffered from damaging attacks by 35%.","Increases your Spirit by 10% and reduces spell pushback suffered from damaging attacks by 70%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11605","treeId":"coa-runemaster-11","index":11605,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/nhi_magicdevour_border.png","maxRank":1,"name":"Frigid Elements","description":"Increases the spell power scaling of Frigid Blast by 50%, but the cast time is increased by 1 sec. Additionally, Frigid Fusion now accumulates 10% more damage on the target.","rankDescriptions":["Increases the spell power scaling of Frigid Blast by 50%, but the cast time is increased by 1 sec. Additionally, Frigid Fusion now accumulates 10% more damage on the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34602","treeId":"coa-runemaster-11","index":34602,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/epic_rpg_icon_pack_frost_0004s_0000_bolt_border.png","maxRank":1,"name":"Cold Elements","description":"Damage dealt with Elemental Burst and Primordial Blast now has a 20% chance to reset the cooldown of Frigid Blast and make its next use within 10 seconds instant cast.","rankDescriptions":["Damage dealt with Elemental Burst and Primordial Blast now has a 20% chance to reset the cooldown of Frigid Blast and make its next use within 10 seconds instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31129","treeId":"coa-runemaster-11","index":31129,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/spell_mage_overpowered.png","maxRank":1,"name":"Primordial Power","description":"Increases the duration of Frigid Fusion by 2 sec.","rankDescriptions":["Increases the duration of Frigid Fusion by 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6825","treeId":"coa-runemaster-11","index":6825,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/nhi_arcanearrow_border.png","maxRank":1,"name":"Wizardry","description":"Increases your Intellect by 10% and increases the mana gained for each point of Intellect by 10%.","rankDescriptions":["Increases your Intellect by 10% and increases the mana gained for each point of Intellect by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29536","treeId":"coa-runemaster-11","index":29536,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/inv_archaeology_70_starlightbeacon.png","maxRank":1,"name":"Runeslinger","description":"Direct damage dealt has a 5% chance to increase your spell haste by 20% for 5 seconds.","rankDescriptions":["Direct damage dealt has a 5% chance to increase your spell haste by 20% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1581","treeId":"coa-runemaster-11","index":1581,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/ability_shaman_ascendance.png","maxRank":1,"name":"Primordial Salvos","description":"Unleashing a Glyph now deals an additional 115 + 6% SP damage of the same magic school to all enemies within 8 yds of the target.","rankDescriptions":["Unleashing a Glyph now deals an additional 115 + 6% SP damage of the same magic school to all enemies within 8 yds of the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34576","treeId":"coa-runemaster-11","index":34576,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/primordialpulse.png","maxRank":1,"name":"Primordial Pulse","description":"Inscribe an area with runes for 2 seconds, dealing 23 + 30% SP Elemental Damage every 0 sec to up to 5 enemies inside.","rankDescriptions":["Inscribe an area with runes for 2 seconds, dealing 23 + 30% SP Elemental Damage every 0 sec to up to 5 enemies inside."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-3828","treeId":"coa-runemaster-11","index":3828,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/skill_icon_skill127_border.png","maxRank":1,"name":"Unleashed Tattoos","description":"Level 30 Passive While Runic Tattoos: Fire is active, your Glyphic Ruin now has 30% increased critical damage. While Runic Tattoos: Water is active, the cost of your Glyphic Ruin is now reduced by -50%.","rankDescriptions":["Level 30 Passive While Runic Tattoos: Fire is active, your Glyphic Ruin now has 30% increased critical damage. While Runic Tattoos: Water is active, the cost of your Glyphic Ruin is now reduced by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-31106","treeId":"coa-runemaster-11","index":31106,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/nhi_icetorch_border.png","maxRank":1,"name":"Advanced Magi","description":"Increases the spell power scaling of Elemental Burst by 25%.","rankDescriptions":["Increases the spell power scaling of Elemental Burst by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29522","treeId":"coa-runemaster-11","index":29522,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_mage_arcanesurge.png","maxRank":1,"name":"Silencing Rune","description":"Inscribe a rune in a 5 yd radius at target location that activates after 1 sec, silencing all enemies within for 6 seconds.","rankDescriptions":["Inscribe a rune in a 5 yd radius at target location that activates after 1 sec, silencing all enemies within for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31131","treeId":"coa-runemaster-11","index":31131,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_nature_elementalprecision_2.png","maxRank":1,"name":"Thaumaturgy","description":"Blast an enemy for 67 + 41% arcane SP + 10% AP Arcane damage and unleash your active Glyph effect.","rankDescriptions":["Blast an enemy for 67 + 41% arcane SP + 10% AP Arcane damage and unleash your active Glyph effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29528","treeId":"coa-runemaster-11","index":29528,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/custom_t_scrollofearth_border.png","maxRank":1,"name":"Terraglyphs","description":"Increases the chance to trigger Weapon Engraving: Earth by 4%.","rankDescriptions":["Increases the chance to trigger Weapon Engraving: Earth by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34581","treeId":"coa-runemaster-11","index":34581,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/spell_arcane_massdispel.png","maxRank":1,"name":"Leyline Magician","description":"Casting Primordial Blast now reduces the cooldown of Primordial Pulse by -5 sec.","rankDescriptions":["Casting Primordial Blast now reduces the cooldown of Primordial Pulse by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31108","treeId":"coa-runemaster-11","index":31108,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/achievement_zone_crystalsong_01.png","maxRank":1,"name":"Glyphic Destruction","description":"Increases the damage of Glyphic Ruin by 100% against Frozen targets.","rankDescriptions":["Increases the damage of Glyphic Ruin by 100% against Frozen targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34665","treeId":"coa-runemaster-11","index":34665,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/novart_books_(6)_border.png","maxRank":1,"name":"Arcane Student","description":"While Glyphic Overload is active, your Glyphic Ruin is guaranteed to critically strike.","rankDescriptions":["While Glyphic Overload is active, your Glyphic Ruin is guaranteed to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34603","treeId":"coa-runemaster-11","index":34603,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_socererking_arcaneacceleration.png","maxRank":1,"name":"Phase Rush","description":"Casting Thaumaturgy now grants you 25% increased movement speed for 5 seconds.","rankDescriptions":["Casting Thaumaturgy now grants you 25% increased movement speed for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6879","treeId":"coa-runemaster-11","index":6879,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/nhi_unholyrune_border.png","maxRank":1,"name":"Runes of Quickness","description":"Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, the range of your Glyphic spells is increased by 6 yds.","rankDescriptions":["Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, the range of your Glyphic spells is increased by 6 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29222","treeId":"coa-runemaster-11","index":29222,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/novart_magicspell_(57)_border.png","maxRank":1,"name":"Bursting Pulses","description":"Each weapon enchanted by Weapon Engraving: Earth now reduces the cooldown of Primordial Pulse by -4 sec and increases it's damage by 15%.","rankDescriptions":["Each weapon enchanted by Weapon Engraving: Earth now reduces the cooldown of Primordial Pulse by -4 sec and increases it's damage by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-3829","treeId":"coa-runemaster-11","index":3829,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_glyph_primepriest.png","maxRank":1,"name":"Unleashed Power","description":"Level 40 Passive Increases the spell power scaling of your Unleashed Glyphs by 10%. In addition, dealing damage with Elemental Burst now increases the target's spell damage taken by 10% for 12 seconds.","rankDescriptions":["Level 40 Passive Increases the spell power scaling of your Unleashed Glyphs by 10%. In addition, dealing damage with Elemental Burst now increases the target's spell damage taken by 10% for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-34605","treeId":"coa-runemaster-11","index":34605,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_pet_wretchedelf.png","maxRank":1,"name":"Glyph Seeker","description":"Increases the damage of Primordial Blast and Thaumaturgy by 20%.","rankDescriptions":["Increases the damage of Primordial Blast and Thaumaturgy by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7849","treeId":"coa-runemaster-11","index":7849,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/nhi_icelaser_border.png","maxRank":1,"name":"Cryomagi","description":"Increases the range of Cryobrand by 10 yds.","rankDescriptions":["Increases the range of Cryobrand by 10 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6389","treeId":"coa-runemaster-11","index":6389,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/leywalk.png","maxRank":1,"name":"Ley Walker","description":"Casting or reactivating Warpdagger now removes all root and snare effects from you.","rankDescriptions":["Casting or reactivating Warpdagger now removes all root and snare effects from you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29343","treeId":"coa-runemaster-11","index":29343,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/novart_magicspell_(25)_border.png","maxRank":1,"name":"Harnessing Leylines","description":"You now gain a stack of Harnessed Leylines every 1 sec for until cancelled. After the duration, the stacks reset. Harnessed Leylines (Proc)Increases the damage of your Runeblade and Elemental Burst by 3%, stacking up to 10 times. Additional applications do not refresh the effect.","rankDescriptions":["You now gain a stack of Harnessed Leylines every 1 sec for until cancelled. After the duration, the stacks reset. Harnessed Leylines (Proc)Increases the damage of your Runeblade and Elemental Burst by 3%, stacking up to 10 times. Additional applications do not refresh the effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31128","treeId":"coa-runemaster-11","index":31128,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/70_inscription_vantus_rune_light.png","maxRank":1,"name":"Burned Etching","description":"While Weapon Engraving: Fire is active, your Elemental Burst now deals 10% increased damage as Fire damage and your chance to trigger Weapon Engraving: Fire is increased by 5%.","rankDescriptions":["While Weapon Engraving: Fire is active, your Elemental Burst now deals 10% increased damage as Fire damage and your chance to trigger Weapon Engraving: Fire is increased by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29167","treeId":"coa-runemaster-11","index":29167,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_arcanevision_border.png","maxRank":1,"name":"Eye of the Beholder","description":"Increases your spell critical strike chance by 25% for 15 seconds. While active, the damage of your Glyphic Ruin and Primordial Blast is increased by 25%.","rankDescriptions":["Increases your spell critical strike chance by 25% for 15 seconds. While active, the damage of your Glyphic Ruin and Primordial Blast is increased by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29346","treeId":"coa-runemaster-11","index":29346,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_racial_ultravision.png","maxRank":1,"name":"Glyph God","description":"Reduces the cooldown of Glyphic Overload by -15 sec.","rankDescriptions":["Reduces the cooldown of Glyphic Overload by -15 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34668","treeId":"coa-runemaster-11","index":34668,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_scrollofmagic_border.png","maxRank":1,"name":"Scroll of Magic","description":"Unleashing a Glyph increases the damage of your Unleashed Glyphs by 5% for 15 seconds, stacking 3 times.","rankDescriptions":["Unleashing a Glyph increases the damage of your Unleashed Glyphs by 5% for 15 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9729","treeId":"coa-runemaster-11","index":9729,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/novart_magicspell_(58)_border.png","maxRank":1,"name":"Runic Obliteration","description":"Level 50 Passive Using Elemental Burst now has a 20% chance to transform your next Primordial Blast into Runic Obliteration for 10 seconds.Runic Obliteration (Spell)Hurl powerful elemental missiles at an enemy, dealing 250 + 44% SP Elemental Damage every 0 sec for 1 seconds. Each missile grants you a Glyph. Scales with modifiers to Primordial Blast.","rankDescriptions":["Level 50 Passive Using Elemental Burst now has a 20% chance to transform your next Primordial Blast into Runic Obliteration for 10 seconds.Runic Obliteration (Spell)Hurl powerful elemental missiles at an enemy, dealing 250 + 44% SP Elemental Damage every 0 sec for 1 seconds. Each missile grants you a Glyph. Scales with modifiers to Primordial Blast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7818","treeId":"coa-runemaster-11","index":7818,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/inv_staff_2h_artifactaegwynsstaff_d_06.png","maxRank":1,"name":"Kirin Tor Agent","description":"Casting Eye of the Beholder now rapidly reduces the coldown of your Rune spells and Phase Out for the duration.","rankDescriptions":["Casting Eye of the Beholder now rapidly reduces the coldown of your Rune spells and Phase Out for the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29955","treeId":"coa-runemaster-11","index":29955,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_inscription_80_contract_vulpera.png","maxRank":1,"name":"Manuscription","description":"Send manuscriptions to envelop an enemy and enemies around them, dealing 1620 + 190% SP Arcane damage over 5 seconds. When you cast this ability, you are granted Transcribing for 5 seconds. TranscribingWhile active, your next Thaumaturgy or Glyphic Ruin will now grant you a Chapter of the same school as your active Attunement, causing your next 10 direct spell casts to deal additional school damage to nearby enemies, reduced by 20% for each target hit past the initial.","rankDescriptions":["Send manuscriptions to envelop an enemy and enemies around them, dealing 1620 + 190% SP Arcane damage over 5 seconds. When you cast this ability, you are granted Transcribing for 5 seconds. TranscribingWhile active, your next Thaumaturgy or Glyphic Ruin will now grant you a Chapter of the same school as your active Attunement, causing your next 10 direct spell casts to deal additional school damage to nearby enemies, reduced by 20% for each target hit past the initial."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34670","treeId":"coa-runemaster-11","index":34670,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/nhi_arcanestone_border.png","maxRank":1,"name":"Glyph Master","description":"Scroll of Magic now also increases the critical damage and critical strike chance of Unleashed Glyphs by 5% for 15 seconds, stacking 3 times.","rankDescriptions":["Scroll of Magic now also increases the critical damage and critical strike chance of Unleashed Glyphs by 5% for 15 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29531","treeId":"coa-runemaster-85","index":29531,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/5_mageskill14_border.png","maxRank":1,"name":"Runic Brand","description":"Brand an enemy, dealing 10 + 26% AP Fire damage with each weapon, and marking the enemy for 8 seconds.Marked: Runic BrandYour next Runeblade on the enemy causes a Runic Explosion, dealing an additional 121 + 18.5% AP Spellfire Damage to nearby enemies.","rankDescriptions":["Brand an enemy, dealing 10 + 26% AP Fire damage with each weapon, and marking the enemy for 8 seconds.Marked: Runic BrandYour next Runeblade on the enemy causes a Runic Explosion, dealing an additional 121 + 18.5% AP Spellfire Damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4062","treeId":"coa-runemaster-85","index":4062,"prerequisiteId":"coa-entry-29521","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29521","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/novart_magicspell_(14)_border.png","maxRank":1,"name":"Fists of Power","description":"Level 10 Passive Runeblade now strikes your target an additional time for 50% of the damage dealt with your offhand weapon.","rankDescriptions":["Level 10 Passive Runeblade now strikes your target an additional time for 50% of the damage dealt with your offhand weapon."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":10,"isPassive":true},{"id":"coa-entry-9221","treeId":"coa-runemaster-85","index":9221,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/novart_magicspell_(2)_border.png","maxRank":1,"name":"Eternal Magic","description":"Reduces the cooldown of Primordial Blast by -4 sec and it now refreshes 3 charges of Runeblade.","rankDescriptions":["Reduces the cooldown of Primordial Blast by -4 sec and it now refreshes 3 charges of Runeblade."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34578","treeId":"coa-runemaster-85","index":34578,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/nhi_ghostwater_border.png","maxRank":1,"name":"Leystone Springs","description":"Your melee auto attacks now have a 15% chance to restore 75 mana. While Runic Tattoos: Water is active, the mana restored is increased by 250%.","rankDescriptions":["Your melee auto attacks now have a 15% chance to restore 75 mana. While Runic Tattoos: Water is active, the mana restored is increased by 250%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34656","treeId":"coa-runemaster-85","index":34656,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicinyourhands_border.png","maxRank":2,"name":"Graceful","description":"Increases your haste by 10%.","rankDescriptions":["Increases your haste by 5%.","Increases your haste by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29533","treeId":"coa-runemaster-85","index":29533,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/skill_icon_skill150_border.png","maxRank":1,"name":"Fist of the Ancients","description":"Smash an enemy and 1 nearby enemy with your rune-engraved fists, dealing 40 + 40% AP Elemental Damage and triggering your Weapon Engraving.","rankDescriptions":["Smash an enemy and 1 nearby enemy with your rune-engraved fists, dealing 40 + 40% AP Elemental Damage and triggering your Weapon Engraving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6493","treeId":"coa-runemaster-85","index":6493,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/inv_custom_hearthstone_frost.png","maxRank":2,"name":"Alteration","description":"Increases the effectiveness of your Runic Tattoos by 50%.","rankDescriptions":["Increases the effectiveness of your Runic Tattoos by 25%.","Increases the effectiveness of your Runic Tattoos by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4201","treeId":"coa-runemaster-85","index":4201,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_holy_fistofjustice.png","maxRank":1,"name":"Primordial Strength","description":"Level 20 Passive Increases your spell damage by 25% of your attack power, your chance to hit by 3% of your Agility and your spell hit rating by 3% of your Agility.","rankDescriptions":["Level 20 Passive Increases your spell damage by 25% of your attack power, your chance to hit by 3% of your Agility and your spell hit rating by 3% of your Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-4655","treeId":"coa-runemaster-85","index":4655,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/novart_magicspell_(58)_border.png","maxRank":1,"name":"Elemental Mastery","description":"Damage dealt by Runic Brand now has a 33% chance to transform your Primordial Blast into a random unique elemental version of itself.","rankDescriptions":["Damage dealt by Runic Brand now has a 33% chance to transform your Primordial Blast into a random unique elemental version of itself."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6482","treeId":"coa-runemaster-85","index":6482,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/5_warriorskill14_border.png","maxRank":1,"name":"Ancient Warrior","description":"Reduces the cooldown of Fist of the Ancients by -2 sec whenever you use Runeblade or Primordial Blast.","rankDescriptions":["Reduces the cooldown of Fist of the Ancients by -2 sec whenever you use Runeblade or Primordial Blast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34601","treeId":"coa-runemaster-85","index":34601,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/spell_nature_elementalprecision_1.png","maxRank":1,"name":"Elemental Strikes","description":"Increases your critical strike chance with Fire, Frost, and Nature spells by 3% and your expertise by 4.","rankDescriptions":["Increases your critical strike chance with Fire, Frost, and Nature spells by 3% and your expertise by 4."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7375","treeId":"coa-runemaster-85","index":7375,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/achievement_zone_newshadowmoonvalley.png","maxRank":1,"name":"Leyborn","description":"Your Marked: Runic Brand now stacks 3 times.","rankDescriptions":["Your Marked: Runic Brand now stacks 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29221","treeId":"coa-runemaster-85","index":29221,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_socererking_arcanemines.png","maxRank":1,"name":"Uncovered Engravings","description":"Using Fist of the Ancients now increases your chance to trigger Weapon Engravings by 20% for 5 sec.","rankDescriptions":["Using Fist of the Ancients now increases your chance to trigger Weapon Engravings by 20% for 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30733","treeId":"coa-runemaster-85","index":30733,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/runeofimpermanence.png","maxRank":1,"name":"Tempo","description":"Increases the damage of Runeblade by 20%.","rankDescriptions":["Increases the damage of Runeblade by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4202","treeId":"coa-runemaster-85","index":4202,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_ascend_carvings_b_01.png","maxRank":1,"name":"Elemental Carvings","description":"Level 30 Passive Fist of the Ancients now unleashes an elemental carving at random. Fire Carving: Increases your Armor penetration by 15% for 6 seconds. Water Carving: Restores 306 mana over 6 seconds. Earth Carving: Restores 3% missing health every 1 sec for 6 seconds. Air Carving: Increases your melee haste by 10% for 6 seconds.","rankDescriptions":["Level 30 Passive Fist of the Ancients now unleashes an elemental carving at random. Fire Carving: Increases your Armor penetration by 15% for 6 seconds. Water Carving: Restores 306 mana over 6 seconds. Earth Carving: Restores 3% missing health every 1 sec for 6 seconds. Air Carving: Increases your melee haste by 10% for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-34659","treeId":"coa-runemaster-85","index":34659,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/spell_arcane_rune.png","maxRank":1,"name":"Mark of Strength","description":"Increases the spell power scaling of Primordial Blast by 30%.","rankDescriptions":["Increases the spell power scaling of Primordial Blast by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34655","treeId":"coa-runemaster-85","index":34655,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_ascend_magicartifact_37.png","maxRank":1,"name":"Brandmaster","description":"Increases your critical strike chance with Runic Brand's explosion effect by 10%.","rankDescriptions":["Increases your critical strike chance with Runic Brand's explosion effect by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7373","treeId":"coa-runemaster-85","index":7373,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ever_probe_sprite_296_border.png","maxRank":1,"name":"Guarding Rune","description":"Inscribe a defensive rune beneath you in a 10 yd radius, summoning a barrier that causes allies within the radius to take -40% reduced Magic damage. Lasts 15 seconds.","rankDescriptions":["Inscribe a defensive rune beneath you in a 10 yd radius, summoning a barrier that causes allies within the radius to take -40% reduced Magic damage. Lasts 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30734","treeId":"coa-runemaster-85","index":30734,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_ascend_magicartifact_3.png","maxRank":1,"name":"Volcanic Etching","description":"Increases the chance to trigger Weapon Engraving: Fire and Weapon Engraving: Earth by 5%.","rankDescriptions":["Increases the chance to trigger Weapon Engraving: Fire and Weapon Engraving: Earth by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29911","treeId":"coa-runemaster-85","index":29911,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/nhi_waterstrick_border.png","maxRank":1,"name":"Flowing Rivers","description":"Increases the chance to trigger Replenishment with Weapon Engravement: Water by 10% and the mana restored by Runic Tattoos: Water by 25%.","rankDescriptions":["Increases the chance to trigger Replenishment with Weapon Engravement: Water by 10% and the mana restored by Runic Tattoos: Water by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30735","treeId":"coa-runemaster-85","index":30735,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0000s_0000_elemental_border.png","maxRank":1,"name":"Wind Surge","description":"Your Weapon Engraving: Air will now strike 2 additional enemies near its target.","rankDescriptions":["Your Weapon Engraving: Air will now strike 2 additional enemies near its target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1778","treeId":"coa-runemaster-85","index":1778,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_burningsoul.png","maxRank":1,"name":"Devastating Flames","description":"Increases the damage dealt of Weapon Engraving: Fire by 20%.","rankDescriptions":["Increases the damage dealt of Weapon Engraving: Fire by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1779","treeId":"coa-runemaster-85","index":1779,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_misc_druidstone01.png","maxRank":1,"name":"Granite Shield","description":"While Runic Tattoos: Earth is active, you now periodically gain Granite Shield every 20 sec.Granite ShieldAbsorbs 1260 + 10% AP + 30% SP damage for 20 seconds.","rankDescriptions":["While Runic Tattoos: Earth is active, you now periodically gain Granite Shield every 20 sec.Granite ShieldAbsorbs 1260 + 10% AP + 30% SP damage for 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34579","treeId":"coa-runemaster-85","index":34579,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/nhi_arcaneshuriken_border.png","maxRank":1,"name":"Leyline Disturbance","description":"Increases melee and ranged haste of party and raid members within 100 yds by 10%. Does not stack with similar effects. Additionally, the duration of stun effects on you is reduced by -20%.","rankDescriptions":["Increases melee and ranged haste of party and raid members within 100 yds by 10%. Does not stack with similar effects. Additionally, the duration of stun effects on you is reduced by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1821","treeId":"coa-runemaster-85","index":1821,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_bastion_mage.png","maxRank":1,"name":"Protective Warding","description":"Critical damage taken reduces the cooldown of Rune of Guarding by 10%.","rankDescriptions":["Critical damage taken reduces the cooldown of Rune of Guarding by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6495","treeId":"coa-runemaster-85","index":6495,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_arcanetwist_border.png","maxRank":1,"name":"Runebound Surge","description":"Casting Runeshroud now increases your movement speed by 75% for 3 seconds.","rankDescriptions":["Casting Runeshroud now increases your movement speed by 75% for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7374","treeId":"coa-runemaster-85","index":7374,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/ability_shaman_ascendance.png","maxRank":1,"name":"Earth, Wind, and Fire","description":"Striking at least 5 enemies with Runic Explosion now unleashes Wild Steam.Wild Steam (Transform)Stomp the ground in a 5 yd radius around you and release steam, dealing 128 + 25% AP Frostfire Damage to nearby enemies.","rankDescriptions":["Striking at least 5 enemies with Runic Explosion now unleashes Wild Steam.Wild Steam (Transform)Stomp the ground in a 5 yd radius around you and release steam, dealing 128 + 25% AP Frostfire Damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34661","treeId":"coa-runemaster-85","index":34661,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/novart_magicspell_(49)_border.png","maxRank":1,"name":"Forbidden Engraving","description":"Increases the effectiveness of your Weapon Engravings by 20%.","rankDescriptions":["Increases the effectiveness of your Weapon Engravings by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4802","treeId":"coa-runemaster-85","index":4802,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/ability_socererking_arcanefortification.png","maxRank":1,"name":"Power Overwhelming","description":"Level 40 Passive Your Runeblade and Primordial Blast now have a 35% chance to grant you Power Overwhelming, resetting the cooldown of Runic Brand.","rankDescriptions":["Level 40 Passive Your Runeblade and Primordial Blast now have a 35% chance to grant you Power Overwhelming, resetting the cooldown of Runic Brand."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-1662","treeId":"coa-runemaster-85","index":1662,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/nhi_fireinyourhand_border.png","maxRank":1,"name":"Explosive Runes","description":"Your Weapon Engraving: Fire now detonates after 2 sec and its critical damage is increased by 10%.","rankDescriptions":["Your Weapon Engraving: Fire now detonates after 2 sec and its critical damage is increased by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1734","treeId":"coa-runemaster-85","index":1734,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/_runesauvagepourpre.png","maxRank":1,"name":"Magic Etchings","description":"Dealing damage with Primordial Blast now reduces the affected target's armor by -4% for 12 seconds, stacking 5 times.","rankDescriptions":["Dealing damage with Primordial Blast now reduces the affected target's armor by -4% for 12 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-14154","treeId":"coa-runemaster-85","index":14154,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/novart_magicspell_(17)_border.png","maxRank":2,"name":"Symbols of Power","description":"Increases the damage of Fist of the Ancients while you have Weapon Engraving: Fire active by 30%.","rankDescriptions":["Increases the damage of Fist of the Ancients while you have Weapon Engraving: Fire active by 15%.","Increases the damage of Fist of the Ancients while you have Weapon Engraving: Fire active by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34660","treeId":"coa-runemaster-85","index":34660,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/_stonetablet_shamanair.png","maxRank":1,"name":"Sky and Stone","description":"Damage dealt by Weapon Engraving: Air and Weapon Engraving: Earth now have a 10% chance to increase your melee haste for your next 10 attacks within 10 seconds by 10%.","rankDescriptions":["Damage dealt by Weapon Engraving: Air and Weapon Engraving: Earth now have a 10% chance to increase your melee haste for your next 10 attacks within 10 seconds by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30758","treeId":"coa-runemaster-85","index":30758,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/mount_elementalfcca06.png","maxRank":1,"name":"Echoes of Eternity","description":"Your Zenith now has 2 charges.Zenith2 Charges, 45 sec recharge For 6 seconds, your runic tattoos flare up, increasing your chance to trigger your Weapon Engravings by 100%.","rankDescriptions":["Your Zenith now has 2 charges.Zenith2 Charges, 45 sec recharge For 6 seconds, your runic tattoos flare up, increasing your chance to trigger your Weapon Engravings by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1679","treeId":"coa-runemaster-85","index":1679,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/runictempest.png","maxRank":1,"name":"Runic Tempest","description":"Harness the power of your runic tattoos, resetting the cooldown of Fist of the Ancients and allowing the use of abilities that require Runeshroud and making them able to be cast while moving for 8 seconds.","rankDescriptions":["Harness the power of your runic tattoos, resetting the cooldown of Fist of the Ancients and allowing the use of abilities that require Runeshroud and making them able to be cast while moving for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1578","treeId":"coa-runemaster-85","index":1578,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/inv_misc_trinket6oog_stonefist2.png","maxRank":1,"name":"Fists of Power","description":"Engrave your fists for 15 seconds, causing auto attacks to grant Earthen Fists for 10 seconds, increasing melee haste by 3% and the chance to trigger Weapon Engraving: Earth by 10%, stacking 5 times.","rankDescriptions":["Engrave your fists for 15 seconds, causing auto attacks to grant Earthen Fists for 10 seconds, increasing melee haste by 3% and the chance to trigger Weapon Engraving: Earth by 10%, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9802","treeId":"coa-runemaster-85","index":9802,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/novart_magicspell_(51)_border.png","maxRank":1,"name":"Branded","description":"Level 50 Passive Gaining Power Overwhelming now also guarantees your next Runic Brand to critically strike.","rankDescriptions":["Level 50 Passive Gaining Power Overwhelming now also guarantees your next Runic Brand to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-1770","treeId":"coa-runemaster-85","index":1770,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/spell_nature_elementalprecision_2.png","maxRank":1,"name":"Runelord","description":"After activating Zenith, deal 900 + 33% AP Elemental Damage to your target and increase the damage dealt by your Runic Brand and Weapon Engravings by 30% for 8 seconds.","rankDescriptions":["After activating Zenith, deal 900 + 33% AP Elemental Damage to your target and increase the damage dealt by your Runic Brand and Weapon Engravings by 30% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30678","treeId":"coa-runemaster-85","index":30678,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":10,"icon":"/assets/ui/spells/inv_ascend_magicartifact_13.png","maxRank":1,"name":"Ley Power","description":"Divert ley energy into your weapons, drawing power from enemies within 20 yds of you. For each enemy in the radius, your damage dealt deals an additional 10% of the damage as Arcane damage, up to 100%, for 15 seconds. While active, melee attacks and abilities grant you Harnessed Leylines.Harnessed Leylines (Proc)Increases the damage of your Runeblade and Elemental Burst by 3%, stacking up to 10 times. Additional applications do not refresh the effect.","rankDescriptions":["Divert ley energy into your weapons, drawing power from enemies within 20 yds of you. For each enemy in the radius, your damage dealt deals an additional 10% of the damage as Arcane damage, up to 100%, for 15 seconds. While active, melee attacks and abilities grant you Harnessed Leylines.Harnessed Leylines (Proc)Increases the damage of your Runeblade and Elemental Burst by 3%, stacking up to 10 times. Additional applications do not refresh the effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31270","treeId":"coa-runemaster-85","index":31270,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":10,"icon":"/assets/ui/spells/novart_magicspell_(77)_border.png","maxRank":1,"name":"Steam Conjurer","description":"Damage dealt by Weapon Engraving: Earth now has a 5% chance to cast Wild Steam. Can only occur once every 3 sec.Wild Steam (Transform)Stomp the ground in a 5 yd radius around you and release steam, dealing 128 + 25% AP Frostfire Damage to nearby enemies.","rankDescriptions":["Damage dealt by Weapon Engraving: Earth now has a 5% chance to cast Wild Steam. Can only occur once every 3 sec.Wild Steam (Transform)Stomp the ground in a 5 yd radius around you and release steam, dealing 128 + 25% AP Frostfire Damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1771","treeId":"coa-runemaster-85","index":1771,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/5_sumstonearmy_border.png","maxRank":1,"name":"Stone Savant","description":"While Earthen Fists is active, critical strikes with Weapon Engraving: Earth now causes you to strike twice with your next auto attack.","rankDescriptions":["While Earthen Fists is active, critical strikes with Weapon Engraving: Earth now causes you to strike twice with your next auto attack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31212","treeId":"coa-runemaster-86","index":31212,"prerequisiteId":"coa-entry-4063","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4063","requiredRank":1},{"talentId":"coa-entry-29218","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/uico_fire_spell_02_border.png","maxRank":1,"name":"Smolder","description":"Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 19 Fire Damage.","rankDescriptions":["Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 19 Fire Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4063","treeId":"coa-runemaster-86","index":4063,"prerequisiteId":"coa-entry-29218","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29218","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/trade_archaeology_zinrokh_sword.png","maxRank":1,"name":"Riftblade","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-34624","treeId":"coa-runemaster-86","index":34624,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicrune_border.png","maxRank":1,"name":"Runic Omen","description":"Every 3rd cast of Runeblade now deals 30% increased damage.","rankDescriptions":["Every 3rd cast of Runeblade now deals 30% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6474","treeId":"coa-runemaster-86","index":6474,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/custom_t_scrollofearth_border.png","maxRank":2,"name":"Unbound Energy","description":"Increases your critical strike chance by 6% and your expertise by 8.","rankDescriptions":["Increases your critical strike chance by 3% and your expertise by 4.","Increases your critical strike chance by 6% and your expertise by 8."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34599","treeId":"coa-runemaster-86","index":34599,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/skill_icon_skill153_border.png","maxRank":1,"name":"Hurricane","description":"Strike an enemy 5 times over 2 seconds, each strike dealing 150% Weapon Damage as Nature Damage, scaling with level. While striking your target, your chance to dodge is increased by 100%, but you cannot use any spells or abilities.","rankDescriptions":["Strike an enemy 5 times over 2 seconds, each strike dealing 150% Weapon Damage as Nature Damage, scaling with level. While striking your target, your chance to dodge is increased by 100%, but you cannot use any spells or abilities."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6470","treeId":"coa-runemaster-86","index":6470,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/nhi_firetwist_border.png","maxRank":1,"name":"Cinderstorm Runes","description":"Hurricane and Smolder now deal 50% more damage against enemies below 20% maximum health.","rankDescriptions":["Hurricane and Smolder now deal 50% more damage against enemies below 20% maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30031","treeId":"coa-runemaster-86","index":30031,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/novart_magicspell_(44)_border.png","maxRank":1,"name":"Melting Runes","description":"Weapon Engraving: Fire now deals 25% increased damage against Frozen enemies.","rankDescriptions":["Weapon Engraving: Fire now deals 25% increased damage against Frozen enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30026","treeId":"coa-runemaster-86","index":30026,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/nhi_iceempower_border.png","maxRank":1,"name":"Hoarfrost","description":"Slash in a frozen fury in front of you, dealing 13 + 33% AP Frost Damage to up to 3 nearby enemies, plus an additional 13 + 33% AP every 3 sec for 21 seconds. Enemies hit by the initial strike are frozen in place for 3 seconds.","rankDescriptions":["Slash in a frozen fury in front of you, dealing 13 + 33% AP Frost Damage to up to 3 nearby enemies, plus an additional 13 + 33% AP every 3 sec for 21 seconds. Enemies hit by the initial strike are frozen in place for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4251","treeId":"coa-runemaster-86","index":4251,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_smallazeritefragment.png","maxRank":1,"name":"Elemental Assassin","description":"Level 20 Passive Increases your spell damage by 20% of your Agility, your spell critical strike chance by 10% of your Agility, and your hit rating by 5% of your Agility.","rankDescriptions":["Level 20 Passive Increases your spell damage by 20% of your Agility, your spell critical strike chance by 10% of your Agility, and your hit rating by 5% of your Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-1774","treeId":"coa-runemaster-86","index":1774,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_swordofflame_border.png","maxRank":2,"name":"Spellblade","description":"Increases your Agility and Intellect by 10%.","rankDescriptions":["Increases your Agility and Intellect by 5%.","Increases your Agility and Intellect by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5451","treeId":"coa-runemaster-86","index":5451,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/nhi_frost_staff_border.png","maxRank":1,"name":"Frozen Earth","description":"Increases the duration of Ice Rune and the stun effect from Palm Sigil: Earth by 1 sec.","rankDescriptions":["Increases the duration of Ice Rune and the stun effect from Palm Sigil: Earth by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30027","treeId":"coa-runemaster-86","index":30027,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_ascend_rune_06_b.png","maxRank":1,"name":"Runic Invocation","description":"Increases the critical strike chance of Hoarfrost by 10% and allows its periodic damage to critically strike.","rankDescriptions":["Increases the critical strike chance of Hoarfrost by 10% and allows its periodic damage to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30030","treeId":"coa-runemaster-86","index":30030,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/_stonetablet_shamanair.png","maxRank":1,"name":"Wind Runes","description":"Increases the duration of Hurricane by 1 sec, allowing it to strike 2 additional times.","rankDescriptions":["Increases the duration of Hurricane by 1 sec, allowing it to strike 2 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34598","treeId":"coa-runemaster-86","index":34598,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv_misc_rune_09.png","maxRank":1,"name":"Water Runes","description":"Each strike from Hurricane is now guaranteed to apply Weapon Engraving: Water or Weapon Engraving: Ice to your target while they are active.","rankDescriptions":["Each strike from Hurricane is now guaranteed to apply Weapon Engraving: Water or Weapon Engraving: Ice to your target while they are active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30603","treeId":"coa-runemaster-86","index":30603,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/novart_magicspell_(17)_border.png","maxRank":1,"name":"Residual Power","description":"Increases the damage replicated by Weapon Engraving: Air by 15%.","rankDescriptions":["Increases the damage replicated by Weapon Engraving: Air by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9619","treeId":"coa-runemaster-86","index":9619,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/spell_nature_mirrorimage.png","maxRank":1,"name":"Rift Clones","description":"Casting Phase Out now summons 10 clones of yourself that run in a random direction for 5 seconds. Rift Clones periodically explode dealing 1 + 19.5% AP Arcane damage to all enemies within 5 yds of them.","rankDescriptions":["Casting Phase Out now summons 10 clones of yourself that run in a random direction for 5 seconds. Rift Clones periodically explode dealing 1 + 19.5% AP Arcane damage to all enemies within 5 yds of them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34619","treeId":"coa-runemaster-86","index":34619,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_mage_invisibility.png","maxRank":1,"name":"Phaser","description":"Reduces the cooldown of Phase Out by -30 sec and removes its mana cost.","rankDescriptions":["Reduces the cooldown of Phase Out by -30 sec and removes its mana cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6473","treeId":"coa-runemaster-86","index":6473,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/novart_magicspell_(3)_border.png","maxRank":2,"name":"Frost Spectre","description":"Increases the critical strike chance and critical damage of Smolder and Primordial Blast against Frozen targets by 50%.","rankDescriptions":["Increases the critical strike chance and critical damage of Smolder and Primordial Blast against Frozen targets by 25%.","Increases the critical strike chance and critical damage of Smolder and Primordial Blast against Frozen targets by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6487","treeId":"coa-runemaster-86","index":6487,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/nhi_magicstrike_border.png","maxRank":1,"name":"Leyfrost","description":"Critical strikes with Hoarfrost now cause your next spell within 15 seconds to cast as if the target were Frozen.","rankDescriptions":["Critical strikes with Hoarfrost now cause your next spell within 15 seconds to cast as if the target were Frozen."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4475","treeId":"coa-runemaster-86","index":4475,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_weapon_shortblade_83.png","maxRank":1,"name":"Windsage","description":"Level 30 Passive Smolder now envelops you in wind, causing your next 3 Runeblades to strike an additional time equal to 30% of the damage dealt as Nature damage.","rankDescriptions":["Level 30 Passive Smolder now envelops you in wind, causing your next 3 Runeblades to strike an additional time equal to 30% of the damage dealt as Nature damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-30032","treeId":"coa-runemaster-86","index":30032,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/echorune.png","maxRank":1,"name":"Echo Rune","description":"Mark your current location with an echo rune for 20 seconds. At the end of the duration or upon reactivation, warp back to the marked location and heal for 880 + 150% AP health.","rankDescriptions":["Mark your current location with an echo rune for 20 seconds. At the end of the duration or upon reactivation, warp back to the marked location and heal for 880 + 150% AP health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2253","treeId":"coa-runemaster-86","index":2253,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/5_mageskill04_border.png","maxRank":1,"name":"Primordial Fury","description":"Your runic tattoos flare up for 15 seconds, causing Runeblade to strike up to 5 additional enemies. For the duration, your Runic Tattoos have 100% increased effectiveness.","rankDescriptions":["Your runic tattoos flare up for 15 seconds, causing Runeblade to strike up to 5 additional enemies. For the duration, your Runic Tattoos have 100% increased effectiveness."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34622","treeId":"coa-runemaster-86","index":34622,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/spell_nature_elementalabsorption.png","maxRank":1,"name":"Elements, Heed My Call!","description":"Increases the critical damage of Smolder, Hurricane, and Hoarfrost by 15%.","rankDescriptions":["Increases the critical damage of Smolder, Hurricane, and Hoarfrost by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6486","treeId":"coa-runemaster-86","index":6486,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/nhi_manaclone_border.png","maxRank":1,"name":"Battle Engravings","description":"Removes the cast time from Ley Lock, but reduces its duration by 0.5 sec.","rankDescriptions":["Removes the cast time from Ley Lock, but reduces its duration by 0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1756","treeId":"coa-runemaster-86","index":1756,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/novart_magicspell_(28)_border.png","maxRank":1,"name":"Windbreaker","description":"While Weapon Engraving: Air is active, the damage of each strike of your Hurricane is increased by 30%.","rankDescriptions":["While Weapon Engraving: Air is active, the damage of each strike of your Hurricane is increased by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6481","treeId":"coa-runemaster-86","index":6481,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_magemount.png","maxRank":1,"name":"Magebreaker","description":"Dealing damage with Hurricane now also reduces the targets Magic damage dealt by -15% for 8 seconds and dispels 1 harmful magic effect from you with each strike.","rankDescriptions":["Dealing damage with Hurricane now also reduces the targets Magic damage dealt by -15% for 8 seconds and dispels 1 harmful magic effect from you with each strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1598","treeId":"coa-runemaster-86","index":1598,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_shaman_shockinglava.png","maxRank":1,"name":"Elemental Acuity","description":"Increases all Fire, Frost, and Nature damage dealt by 5% and adds 15% to the attack power scaling of Runeblade.","rankDescriptions":["Increases all Fire, Frost, and Nature damage dealt by 5% and adds 15% to the attack power scaling of Runeblade."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30029","treeId":"coa-runemaster-86","index":30029,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicvortex_border.png","maxRank":1,"name":"Primordial Echoes","description":"Your critical strikes dealt with Primordial Blast now have a 40% chance to strike an additional time.","rankDescriptions":["Your critical strikes dealt with Primordial Blast now have a 40% chance to strike an additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6478","treeId":"coa-runemaster-86","index":6478,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/custom_book_10_b_border.png","maxRank":1,"name":"Earthen Codex","description":"When you active a Palm Sigil, you are now guaranteed to critically strike for 20% increased critical damage for 10 seconds or your next 3 attacks.","rankDescriptions":["When you active a Palm Sigil, you are now guaranteed to critically strike for 20% increased critical damage for 10 seconds or your next 3 attacks."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6475","treeId":"coa-runemaster-86","index":6475,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/_d3familiar.png","maxRank":1,"name":"Glyph of Disappearance","description":"Level 40 Passive Your Phase Out can now be used 1 additional time within 15 seconds before incurring a cooldown.","rankDescriptions":["Level 40 Passive Your Phase Out can now be used 1 additional time within 15 seconds before incurring a cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-34621","treeId":"coa-runemaster-86","index":34621,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_misc_rune_14.png","maxRank":1,"name":"Swift Etching","description":"After Hurricane ends, your melee attack speed is increased by 15% and critical strike chance by 10% for 10 seconds.","rankDescriptions":["After Hurricane ends, your melee attack speed is increased by 15% and critical strike chance by 10% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30033","treeId":"coa-runemaster-86","index":30033,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/nhi_arcane_scroll_border.png","maxRank":1,"name":"Runic Power","description":"Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, Primordial Blast now increase the chance for the target to be critically struck by your spells by 3% for 20 seconds.","rankDescriptions":["Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, Primordial Blast now increase the chance for the target to be critically struck by your spells by 3% for 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1722","treeId":"coa-runemaster-86","index":1722,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/nhi_frost_knife_border.png","maxRank":1,"name":"Frostburn","description":"Removes the cast time of Glacial Rune and Permafrost Rune.","rankDescriptions":["Removes the cast time of Glacial Rune and Permafrost Rune."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31242","treeId":"coa-runemaster-86","index":31242,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/item_icecrownringd.png","maxRank":1,"name":"Freezing Codex","description":"Reduces the cooldown of Ice Rune by -20 sec and increases the mana cost by 50%, but reduces its range by -10 yds.","rankDescriptions":["Reduces the cooldown of Ice Rune by -20 sec and increases the mana cost by 50%, but reduces its range by -10 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7382","treeId":"coa-runemaster-86","index":7382,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_manaspike_border.png","maxRank":1,"name":"Fracture","description":"Strike an enemy with frozen fury, dealing 921 + 150% AP Frost damage and burning 25 + 35% AP of the target's mana. Damage dealt is guaranteed to critically strike against frozen targets.","rankDescriptions":["Strike an enemy with frozen fury, dealing 921 + 150% AP Frost damage and burning 25 + 35% AP of the target's mana. Damage dealt is guaranteed to critically strike against frozen targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31136","treeId":"coa-runemaster-86","index":31136,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_firerune_border.png","maxRank":1,"name":"Spellfire Runes","description":"Your Runeblade now has a 20% chance, and Warpdagger a 100% chance, to reset the cooldown of Smolder, and increase the damage of your next Smolder by 20%.","rankDescriptions":["Your Runeblade now has a 20% chance, and Warpdagger a 100% chance, to reset the cooldown of Smolder, and increase the damage of your next Smolder by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34640","treeId":"coa-runemaster-86","index":34640,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/_scroll3_frostfire.png","maxRank":1,"name":"Elemental Inscription","description":"Casting Smolder now reduces the cooldown of Primordial Fury by -10 sec and Zenith by -5 sec.","rankDescriptions":["Casting Smolder now reduces the cooldown of Primordial Fury by -10 sec and Zenith by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9975","treeId":"coa-runemaster-86","index":9975,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/runeblade2.png","maxRank":1,"name":"Surging Slash","description":"Level 50 Passive Every 3rd cast of Runeblade now transforms your next Runeblade within 15 seconds into Surging Slash. Surging Slash (Transform)Strike an enemy with a rune-infused weapon, dealing 125% Weapon Damage plus 110 Elemental Damage, bouncing to up to 4 additional enemies, dealing less damage with each bounce.","rankDescriptions":["Level 50 Passive Every 3rd cast of Runeblade now transforms your next Runeblade within 15 seconds into Surging Slash. Surging Slash (Transform)Strike an enemy with a rune-infused weapon, dealing 125% Weapon Damage plus 110 Elemental Damage, bouncing to up to 4 additional enemies, dealing less damage with each bounce."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30034","treeId":"coa-runemaster-86","index":30034,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/nhi_watersword_border.png","maxRank":1,"name":"Waveforged","description":"After Hurricane ends, you may now use abilties that require Runeshroud for 4 seconds.","rankDescriptions":["After Hurricane ends, you may now use abilties that require Runeshroud for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29633","treeId":"coa-runemaster-86","index":29633,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/novart_magicspell_(60)_border.png","maxRank":1,"name":"Genesis","description":"Apply a runic brand to an enemy for 8 seconds, accumulating 50% of your damage dealt, and unleashing after 8 seconds as Elemental Damage. When this deals damage, it triggers your Weapon Engraving.","rankDescriptions":["Apply a runic brand to an enemy for 8 seconds, accumulating 50% of your damage dealt, and unleashing after 8 seconds as Elemental Damage. When this deals damage, it triggers your Weapon Engraving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6472","treeId":"coa-runemaster-86","index":6472,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/skill_icon_skill79_border.png","maxRank":1,"name":"Turbulence","description":"Send out a gust of wind from your weapon that strikes nearby enemies in a 6 yd radius for 200% Weapon Damage as Nature damage every 1 sec for 3 seconds. While active, you leave behind a Turbulent Spiral every 1 sec for 6 seconds. Turbulent Spiral (Damage)Enemies in the area take an additional 97 + 13.5% AP Nature Damage every 1 sec.","rankDescriptions":["Send out a gust of wind from your weapon that strikes nearby enemies in a 6 yd radius for 200% Weapon Damage as Nature damage every 1 sec for 3 seconds. While active, you leave behind a Turbulent Spiral every 1 sec for 6 seconds. Turbulent Spiral (Damage)Enemies in the area take an additional 97 + 13.5% AP Nature Damage every 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29521","treeId":"coa-runemaster-87","index":29521,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magickeeper_border.png","maxRank":1,"name":"Zenith","description":"For 6 seconds, your runic tattoos flare up, increasing your chance to trigger your Weapon Engravings by 100%.","rankDescriptions":["For 6 seconds, your runic tattoos flare up, increasing your chance to trigger your Weapon Engravings by 100%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31102","treeId":"coa-runemaster-87","index":31102,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/nhi_icespectator_border.png","maxRank":1,"name":"Glacial Rune","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29218","treeId":"coa-runemaster-87","index":29218,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/warpblade.png","maxRank":1,"name":"Warpdagger","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29166","treeId":"coa-runemaster-87","index":29166,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/spells/spell_shadow_mindtwisting.png","maxRank":1,"name":"Ley Constitution","description":"Your Armor contribution from items is increased by 30%.","rankDescriptions":["Your Armor contribution from items is increased by 30%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34648","treeId":"coa-runemaster-87","index":34648,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/nhi_arcanestone_border.png","maxRank":2,"name":"Mystical Etchings","description":"Reduces all Fire, Nature, Frost, and Arcane damage taken by -15%.","rankDescriptions":["Reduces all Fire, Nature, Frost, and Arcane damage taken by -8%.","Reduces all Fire, Nature, Frost, and Arcane damage taken by -15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7376","treeId":"coa-runemaster-87","index":7376,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/70_inscription_vantus_rune_azure.png","maxRank":1,"name":"Runic Tattoos","description":"Reduces the resource costs of your spells and abilities by -10%.","rankDescriptions":["Reduces the resource costs of your spells and abilities by -10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34649","treeId":"coa-runemaster-87","index":34649,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":2,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_archway_01.png","maxRank":1,"name":"Warpmaster","description":"Reduces the cooldown of Warpdagger by -5 sec.","rankDescriptions":["Reduces the cooldown of Warpdagger by -5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30158","treeId":"coa-runemaster-87","index":30158,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/runeofspeed.png","maxRank":1,"name":"Speed Rune","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34653","treeId":"coa-runemaster-87","index":34653,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/ability_mage_greaterinvisibility.png","maxRank":1,"name":"Phase Out","description":"Disappear from sight, entering an improved stealth for 6 seconds and applying Runeshroud.","rankDescriptions":["Disappear from sight, entering an improved stealth for 6 seconds and applying Runeshroud."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34580","treeId":"coa-runemaster-87","index":34580,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/spells/inv_misc_rune_05.png","maxRank":1,"name":"Runic Affinity","description":"Increases the duration of Zenith by 6 sec.","rankDescriptions":["Increases the duration of Zenith by 6 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30728","treeId":"coa-runemaster-87","index":30728,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/nhi_earthtranquility_border.png","maxRank":1,"name":"Granite Resolve","description":"Become hard as stone, reducing your Physical damage taken by -30% for 8 seconds. Usable while stunned.","rankDescriptions":["Become hard as stone, reducing your Physical damage taken by -30% for 8 seconds. Usable while stunned."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34612","treeId":"coa-runemaster-87","index":34612,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":4,"icon":"/assets/ui/spells/5_magicresistance_border.png","maxRank":1,"name":"Blade Rift","description":"While stealthed, using Warpdagger now increases your Magic Damage dealt by 10% for 8 seconds.","rankDescriptions":["While stealthed, using Warpdagger now increases your Magic Damage dealt by 10% for 8 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29226","treeId":"coa-runemaster-87","index":29226,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/ability_mage_potentspirit.png","maxRank":1,"name":"Ancient Teachings","description":"Increases the effectiveness of Etching of the Dextrous by 20%.","rankDescriptions":["Increases the effectiveness of Etching of the Dextrous by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11647","treeId":"coa-runemaster-87","index":11647,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_ascend_scroll_07_b.png","maxRank":1,"name":"Nomad's Scroll","description":"Swapping to Runic Tattoos: Air now instantly dispels 1 movement slowing effect on you.","rankDescriptions":["Swapping to Runic Tattoos: Air now instantly dispels 1 movement slowing effect on you."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34647","treeId":"coa-runemaster-87","index":34647,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/novart_books_(7)_border.png","maxRank":1,"name":"Elemental Secrets","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.","rankDescriptions":["Increases the cooldown of Speed Rune by 30 sec, but it now applies stealth to allies who walk on the pathway for the duration."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33375","treeId":"coa-runemaster-87","index":33375,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_druid_fortifiedbark.png","maxRank":1,"name":"Primal Rune","description":"Granite Resolve now reduces damage taken by an additional -10%.","rankDescriptions":["Granite Resolve now reduces damage taken by an additional -10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7377","treeId":"coa-runemaster-87","index":7377,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/spell_shadow_manafeed.png","maxRank":1,"name":"Prismatic Flow","description":"Casting Phase Out now increases your movement speed by 40% for the first 2 seconds of its duration.","rankDescriptions":["Casting Phase Out now increases your movement speed by 40% for the first 2 seconds of its duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34615","treeId":"coa-runemaster-87","index":34615,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/ability_rogue_shroudofconcealment.png","maxRank":1,"name":"Shroudwalker","description":"Your Warpdagger now incurs no cooldown if used while your Runeshroud is active.","rankDescriptions":["Your Warpdagger now incurs no cooldown if used while your Runeshroud is active."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34663","treeId":"coa-runemaster-87","index":34663,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicspeed_border.png","maxRank":2,"name":"Speedy Attuner","description":"Increases your movement speed by 15% and reduces the mana cost of your Runic Tattoos by -50%.","rankDescriptions":["Increases your movement speed by 8% and reduces the mana cost of your Runic Tattoos by -25%.","Increases your movement speed by 15% and reduces the mana cost of your Runic Tattoos by -50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7829","treeId":"coa-runemaster-87","index":7829,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/nhi_icestone_border.png","maxRank":1,"name":"Permafrost Rune","description":"Requires Frozen Target Inscribe a rune of permafrost and unleash it on an enemy, incapacitating them for 40 seconds (8 sec vs players). Damage taken will end the effect. Affected enemies are considered Frozen. Using this while in Runeshroud causes it to incur an -80% reduced cooldown.","rankDescriptions":["Requires Frozen Target Inscribe a rune of permafrost and unleash it on an enemy, incapacitating them for 40 seconds (8 sec vs players). Damage taken will end the effect. Affected enemies are considered Frozen. Using this while in Runeshroud causes it to incur an -80% reduced cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34610","treeId":"coa-runemaster-87","index":34610,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/inv_qiraj_jewelglyphed.png","maxRank":1,"name":"Warding Rune","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34614","treeId":"coa-runemaster-87","index":34614,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/spell_nature_astralrecalgroup.png","maxRank":1,"name":"Primordialism","description":"Increases your critical strike chance by 10% for 5 seconds after leaving Runeshroud.","rankDescriptions":["Increases your critical strike chance by 10% for 5 seconds after leaving Runeshroud."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6378","treeId":"coa-runemaster-87","index":6378,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_blacksmithing_greatersharpeningstone.png","maxRank":1,"name":"Master Engraver","description":"Increases the chance to trigger your Weapon Engravings by 5%.","rankDescriptions":["Increases the chance to trigger your Weapon Engravings by 5%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30173","treeId":"coa-runemaster-87","index":30173,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_frost_windwalkon.png","maxRank":1,"name":"Wind Walker","description":"While Runic Tattoos: Air is active, the remaining cooldown of Rune spells is reduced by 5% every 5 sec.","rankDescriptions":["While Runic Tattoos: Air is active, the remaining cooldown of Rune spells is reduced by 5% every 5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34609","treeId":"coa-runemaster-87","index":34609,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_custom_rune.png","maxRank":1,"name":"Master of Runes","description":"Reduces the cooldown of your Rune spells by -25%.","rankDescriptions":["Reduces the cooldown of your Rune spells by -25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30327","treeId":"coa-runemaster-87","index":30327,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_racial_shadowmeld.png","maxRank":1,"name":"Magic Feeder","description":"Your Leyfeed now steals 1 additional magic effect from the target.","rankDescriptions":["Your Leyfeed now steals 1 additional magic effect from the target."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6476","treeId":"coa-runemaster-87","index":6476,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/nhi_earthmask_border.png","maxRank":1,"name":"Stone Petroglyph","description":"While in Runic Tattoos: Earth, you now heal for 3% of your maximum health every 4 sec and you become immune to knockbacks.","rankDescriptions":["While in Runic Tattoos: Earth, you now heal for 3% of your maximum health every 4 sec and you become immune to knockbacks."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9210","treeId":"coa-runemaster-87","index":9210,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_azerite_explosion.png","maxRank":1,"name":"Unbound","description":"Reduces the duration of harmful magic and curse effects on you by -20%.","rankDescriptions":["Reduces the duration of harmful magic and curse effects on you by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5648","treeId":"coa-runemaster-87","index":5648,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/inv_misc_rune_03.png","maxRank":1,"name":"Glyphs of Power","description":"Your direct damage dealt has a 10% chance to restore 3% of your maximum mana.","rankDescriptions":["Your direct damage dealt has a 10% chance to restore 3% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6477","treeId":"coa-runemaster-87","index":6477,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/nhi_corruptionmind_border.png","maxRank":1,"name":"Mind Wrath","description":"Your Ley Lock now interrupts 1 additional enemy near your primary target.","rankDescriptions":["Your Ley Lock now interrupts 1 additional enemy near your primary target."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34607","treeId":"coa-runemaster-87","index":34607,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/spell_arcane_mindmastery.png","maxRank":1,"name":"Mind Over Matter","description":"Increases the duration of Ley Lock by 0.5 sec.","rankDescriptions":["Increases the duration of Ley Lock by 0.5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6483","treeId":"coa-runemaster-87","index":6483,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_ascend_magicartifact_10.png","maxRank":1,"name":"Decoder","description":"Your Elemental Burst and Runeblade now have a 20% chance to instantly trigger your Weapon Engravings.","rankDescriptions":["Your Elemental Burst and Runeblade now have a 20% chance to instantly trigger your Weapon Engravings."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34616","treeId":"coa-runemaster-87","index":34616,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_shaman_echooftheelements.png","maxRank":1,"name":"Elements of Fury","description":"Your Palm Sigils now affect 1 additional instance of damage.","rankDescriptions":["Your Palm Sigils now affect 1 additional instance of damage."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34617","treeId":"coa-runemaster-87","index":34617,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/spell_shadow_teleport.png","maxRank":1,"name":"Runic Breakout","description":"Abilities requiring Runeshroud can now be used for 3 sec and have no cast time after Runeshroud breaks.","rankDescriptions":["Abilities requiring Runeshroud can now be used for 3 sec and have no cast time after Runeshroud breaks."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29228","treeId":"coa-runemaster-87","index":29228,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_deathknight_hungeringruneblade.png","maxRank":1,"name":"Power Engraving","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29637","treeId":"coa-runemaster-87","index":29637,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_arcaneaid_border.png","maxRank":1,"name":"Convergence","description":"For 15 seconds, the next 10 Weapon Engravings you trigger will now deal an additional 348 + 30% SP + 20% AP Elemental Damage.","rankDescriptions":["For 15 seconds, the next 10 Weapon Engravings you trigger will now deal an additional 348 + 30% SP + 20% AP Elemental Damage."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6485","treeId":"coa-runemaster-87","index":6485,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_ascend_runestone_05.png","maxRank":1,"name":"Sigilist","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/shaman.json b/src/game/generated/talentUi/shaman.json new file mode 100644 index 00000000..eb4ca157 --- /dev/null +++ b/src/game/generated/talentUi/shaman.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"shaman","trees":[{"id":"shaman-elemental","classId":"shaman","name":"Elemental","icon":"/assets/ui/talents/icons/spell_nature_lightning.png","background":"/assets/ui/talents/backgrounds/talent_shaman1.png","description":"Call lightning, fire, and earth against enemies.","system":"classic"},{"id":"shaman-enhancement","classId":"shaman","name":"Enhancement","icon":"/assets/ui/talents/icons/spell_nature_lightningshield.png","background":"/assets/ui/talents/backgrounds/talent_shaman2.png","description":"Empower weapons through elemental spirits.","system":"classic"},{"id":"shaman-restoration","classId":"shaman","name":"Restoration","icon":"/assets/ui/talents/icons/spell_nature_magicimmunity.png","background":"/assets/ui/talents/backgrounds/talent_shaman3.png","description":"Mend allies with water and ancestral magic.","system":"classic"}],"nodes":[{"id":"talent-561","treeId":"shaman-elemental","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_fire_immolation.png","maxRank":3,"name":"Call of Flame","description":"Increases the damage, and reduces the mana cost of your Fire Totems and Fire Nova by 30%. Increases the damage done by your Lava Burst spell by 15%.","rankDescriptions":["Increases the damage done and reduces the mana cost of your Fire Totems and Fire Nova by 10%. Increases the damage done by your Lava Burst spell by 5%.","Increases the damage, and reduces the mana cost of your Fire Totems and Fire Nova by 20%. Increases the damage done by your Lava Burst spell by 10%.","Increases the damage, and reduces the mana cost of your Fire Totems and Fire Nova by 30%. Increases the damage done by your Lava Burst spell by 15%."],"system":"classic"},{"id":"talent-567","treeId":"shaman-elemental","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_fire_sealoffire.png","maxRank":2,"name":"Rising Flames","description":"Increases the cast speed of your Searing Totem by 30% and the critical strike damage bonus of your Searing and Magma totems by 100%. In addition, reduces the cooldown of Fire Nova by 4 sec. Capstone Bonus: Casting Magma Totem now gives you a stack of Rising Flames every 2 seconds. @s:983971:0@","rankDescriptions":["Increases the cast speed of your Searing Totem by 15% and the critical strike damage bonus of your Searing and Magma totems by 50%. Reduces the cooldown of Fire Nova by 2 sec. Capstone Bonus: Casting Magma Totem now gives you a stack of Rising Flames every 2 seconds. @s:983971:0@","Increases the cast speed of your Searing Totem by 30% and the critical strike damage bonus of your Searing and Magma totems by 100%. In addition, reduces the cooldown of Fire Nova by 4 sec. Capstone Bonus: Casting Magma Totem now gives you a stack of Rising Flames every 2 seconds. @s:983971:0@"],"system":"classic"},{"id":"talent-575","treeId":"shaman-elemental","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_frost_frostward.png","maxRank":3,"name":"Reverberation","description":"Reduces the cooldown of your Shaman Shocks by 1.5 sec. When you deal damage with a Shaman Shock spell you have a 100% to increase the direct damage of your next different Shaman Shock or Elemental Blast spell within 8 sec by 20%.","rankDescriptions":["Reduces the cooldown of your Shaman Shocks by 0.5 sec. When you deal damage with a Shaman Shock spell you have a 33% to increase the direct damage of your next different Shaman Shock or Elemental Blast spell within 8 sec by 20%.","Reduces the cooldown of your Shaman Shocks by 1 sec. When you deal damage with a Shaman Shock spell you have a 66% to increase the direct damage of your next different Shaman Shock or Elemental Blast spell within 8 sec by 20%.","Reduces the cooldown of your Shaman Shocks by 1.5 sec. When you deal damage with a Shaman Shock spell you have a 100% to increase the direct damage of your next different Shaman Shock or Elemental Blast spell within 8 sec by 20%."],"system":"classic"},{"id":"talent-1641","treeId":"shaman-elemental","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_stormreach.png","maxRank":3,"name":"Elemental Reach","description":"Increases the range of your damaging spells by 6 yards. This does not stack with other similar effects. Capstone Bonus: Your direct damage Fire, Nature and Frost spells on targets further than 20 yards away from you have a 33% chance to increase your magic damage by 6% for 10 seconds. This effect can only occur once every 15 seconds.","rankDescriptions":["Increases the range of your damaging spells by 2 yards. This does not stack with other similar effects. Capstone Bonus: Your direct damage Fire, Nature and Frost spells on targets further than 20 yards away from you have a 33% chance to increase your magic damage by 6% for 10 seconds. This effect can only occur once every 15 seconds.","Increases the range of your damaging spells by 4 yards. This does not stack with other similar effects. Capstone Bonus: Your direct damage Fire, Nature and Frost spells on targets further than 20 yards away from you have a 33% chance to increase your magic damage by 6% for 10 seconds. This effect can only occur once every 15 seconds.","Increases the range of your damaging spells by 6 yards. This does not stack with other similar effects. Capstone Bonus: Your direct damage Fire, Nature and Frost spells on targets further than 20 yards away from you have a 33% chance to increase your magic damage by 6% for 10 seconds. This effect can only occur once every 15 seconds."],"system":"classic"},{"id":"talent-1685","treeId":"shaman-elemental","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_nature_elementalprecision_1.png","maxRank":3,"name":"Elemental Precision","description":"Increases your chance to hit with spells and abilities by 3%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","rankDescriptions":["Increases your chance to hit with spells and abilities by 1%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases your chance to hit with spells and abilities by 2%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases your chance to hit with spells and abilities by 3%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]"],"system":"classic"},{"id":"talent-2050","treeId":"shaman-elemental","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/spell_shaman_astralshift.png","maxRank":3,"name":"Astral Shift","description":"Increases your spell critical strike chance by 3%. When stunned, feared or silenced you shift into the Astral Plane reducing all damage taken by 10% for the duration of the stun, fear or silence effect. Capstone Bonus: Being hit by a Stun, Fear or Silence effect while casting an offensive Nature spell grants you an empowered Astral Shift, reducing damage taken by 25% for 6 seconds.","rankDescriptions":["Increases your spell critical strike chance by 1%. When stunned, feared or silenced you shift into the Astral Plane reducing all damage taken by 4% for the duration of the stun, fear or silence effect. Capstone Bonus: Being hit by a Stun, Fear or Silence effect while casting an offensive Nature spell grants you an empowered Astral Shift, reducing damage taken by 25% for 6 seconds.","Increases your spell critical strike chance by 2%. When stunned, feared or silenced you shift into the Astral Plane reducing all damage taken by 7% for the duration of the stun, fear or silence effect. Capstone Bonus: Being hit by a Stun, Fear or Silence effect while casting an offensive Nature spell grants you an empowered Astral Shift, reducing damage taken by 25% for 6 seconds.","Increases your spell critical strike chance by 3%. When stunned, feared or silenced you shift into the Astral Plane reducing all damage taken by 10% for the duration of the stun, fear or silence effect. Capstone Bonus: Being hit by a Stun, Fear or Silence effect while casting an offensive Nature spell grants you an empowered Astral Shift, reducing damage taken by 25% for 6 seconds."],"system":"classic"},{"id":"talent-2262","treeId":"shaman-elemental","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/spell_fire_blueflamering.png","maxRank":3,"name":"Booming Echoes","description":"Increases the damage done by your Earth Shock, Flame Shock, Frost Shock and Elemental Blast spells by 15%. Capstone Bonus: Dealing damage with a Shaman Shock spell increases your damage with that magic school by 5% for 12 secondsonds.","rankDescriptions":["Increases the damage done by your Earth Shock, Flame Shock, Frost Shock and Elemental Blast spells by 5%. Capstone Bonus: Dealing damage with a Shaman Shock spell increases your damage with that magic school by 5% for 12 secondsonds.","Increases the damage done by your Earth Shock, Flame Shock, Frost Shock and Elemental Blast spells by 10%. Capstone Bonus: Dealing damage with a Shaman Shock spell increases your damage with that magic school by 5% for 12 secondsonds.","Increases the damage done by your Earth Shock, Flame Shock, Frost Shock and Elemental Blast spells by 15%. Capstone Bonus: Dealing damage with a Shaman Shock spell increases your damage with that magic school by 5% for 12 secondsonds."],"system":"classic"},{"id":"talent-562","treeId":"shaman-elemental","index":12,"prerequisiteId":"talent-574","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-574","requiredRank":1}],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_callstorm.png","maxRank":3,"name":"Call of Thunder","description":"Increases the critical strike chance of your Lightning Bolt, Chain Lightning and Thunderstorm spells by an additional 6%. Capstone Bonus: Thunderstorm can be cast while stunned.","rankDescriptions":["Increases the critical strike chance of your Lightning Bolt, Chain Lightning and Thunderstorm spells by an additional 2%. Capstone Bonus: Thunderstorm can be cast while stunned.","Increases the critical strike chance of your Lightning Bolt, Chain Lightning and Thunderstorm spells by an additional 4%. Capstone Bonus: Thunderstorm can be cast while stunned.","Increases the critical strike chance of your Lightning Bolt, Chain Lightning and Thunderstorm spells by an additional 6%. Capstone Bonus: Thunderstorm can be cast while stunned."],"system":"classic"},{"id":"talent-564","treeId":"shaman-elemental","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_wispsplode.png","maxRank":5,"name":"Convection","description":"Reduces the mana cost of your Shock, Lightning Bolt, Chain Lightning, Lava Burst, Earthquake and Wind Shear spells by 15%.","rankDescriptions":["Reduces the mana cost of your Shock, Lightning Bolt, Chain Lightning, Lava Burst, Earthquake and Wind Shear spells by 3%.","Reduces the mana cost of your Shock, Lightning Bolt, Chain Lightning, Lava Burst, Earthquake and Wind Shear spells by 6%.","Reduces the mana cost of your Shock, Lightning Bolt, Chain Lightning, Lava Burst, Earthquake and Wind Shear spells by 9%.","Reduces the mana cost of your Shock, Lightning Bolt, Chain Lightning, Lava Burst, Earthquake and Wind Shear spells by 12%.","Reduces the mana cost of your Shock, Lightning Bolt, Chain Lightning, Lava Burst, Earthquake and Wind Shear spells by 15%."],"system":"classic"},{"id":"talent-573","treeId":"shaman-elemental","index":16,"prerequisiteId":"talent-562","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-562","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_nature_wispheal.png","maxRank":1,"name":"Elemental Mastery","description":"When activated, your next Lightning Bolt, Chain Lightning or Lava Burst spell becomes an instant cast spell and costs no mana. In addition, you gain 10% spell haste for 15 seconds. Does not stack with other similar cast speed increasing effects.","rankDescriptions":["When activated, your next Lightning Bolt, Chain Lightning or Lava Burst spell becomes an instant cast spell and costs no mana. In addition, you gain 10% spell haste for 15 seconds. Does not stack with other similar cast speed increasing effects."],"system":"classic"},{"id":"talent-574","treeId":"shaman-elemental","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_manaburn.png","maxRank":2,"name":"Elemental Focus","description":"After landing a critical strike with a Fire, Frost, or Nature damage spell you have a 100% chance to enter a Clearcasting state. The Clearcasting state reduces the resource cost of your next two Fire, Frost, or Nature spells or abilities by 30%.","rankDescriptions":["After landing a critical strike with a Fire, Frost, or Nature damage spell you have a 50% chance to enter a Clearcasting state. The Clearcasting state reduces the resource cost of your next two Fire, Frost, or Nature spells or abilities by 30%.","After landing a critical strike with a Fire, Frost, or Nature damage spell you have a 100% chance to enter a Clearcasting state. The Clearcasting state reduces the resource cost of your next two Fire, Frost, or Nature spells or abilities by 30%."],"system":"classic"},{"id":"talent-1640","treeId":"shaman-elemental","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_spiritarmor.png","maxRank":3,"name":"Elemental Warding","description":"Reduces all Fire, Frost and Nature damage taken by 6%. Reduces all damage that your Tethered Elemental suffers by 15% and increases their threat by 150%.","rankDescriptions":["Reduces all Fire, Frost and Nature damage taken by 2%. Reduces all damage that your Tethered Elemental suffers by 5% and increases their threat by 50%.","Reduces all Fire, Frost and Nature damage taken by 4%. Reduces all damage that your Tethered Elemental suffers by 10% and increases their threat by 100%.","Reduces all Fire, Frost and Nature damage taken by 6%. Reduces all damage that your Tethered Elemental suffers by 15% and increases their threat by 150%."],"system":"classic"},{"id":"talent-1687","treeId":"shaman-elemental","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_fire_totemofwrath.png","maxRank":1,"name":"Totem of Wrath","description":"@learns:92159@ Summons a Totem of Wrath with 5 health at the feet of the caster. The totem increases Intellect by 22 and spell power by 23 for all party and raid members, and increases the critical strike chance of all spells and attacks made against all nearby targets by 3%. Lasts 5 minutes. Does not stack with other similar effects. This ability is usable while shapeshifted.","rankDescriptions":["@learns:92159@ Summons a Totem of Wrath with 5 health at the feet of the caster. The totem increases Intellect by 22 and spell power by 23 for all party and raid members, and increases the critical strike chance of all spells and attacks made against all nearby targets by 3%. Lasts 5 minutes. Does not stack with other similar effects. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-2049","treeId":"shaman-elemental","index":19,"prerequisiteId":"talent-573","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-573","requiredRank":1}],"column":2,"row":8,"icon":"/assets/ui/talents/icons/spell_shaman_elementaloath.png","maxRank":3,"name":"Elemental Oath","description":"Increases your spell critical effect chance by 3%. In addition, all party and raid members have their spell critical effect chance increased by 3%. Does not stack with other similar effects.","rankDescriptions":["Increases your spell critical effect chance by 1%. All party and raid members have their spell critical effect chance increased by 1%. Does not stack with other similar effects.","Increases your spell critical effect chance by 2%. In addition, all party and raid members have their spell critical effect chance increased by 2%. Does not stack with other similar effects.","Increases your spell critical effect chance by 3%. In addition, all party and raid members have their spell critical effect chance increased by 3%. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-2053","treeId":"shaman-elemental","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/spell_shaman_thunderstorm.png","maxRank":1,"name":"Thunderstorm","description":"You call down a bolt of lightning, energizing you and damaging nearby enemies within 10 yards. Restores 10% mana to you and deals 800 Nature damage to all nearby enemies, knocking them back 20 yards.","rankDescriptions":["You call down a bolt of lightning, energizing you and damaging nearby enemies within 10 yards. Restores 10% mana to you and deals 800 Nature damage to all nearby enemies, knocking them back 20 yards."],"system":"classic"},{"id":"talent-2252","treeId":"shaman-elemental","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/spell_unused2.png","maxRank":3,"name":"Shamanism","description":"Increases the spell damage scaling of your Lightning Bolt and Chain Lightning by 20%. When your Lightning Bolt or Chain Lightning deals damage you have a 100% chance to reduce the cooldown of Elemental Mastery and Thunderstorm by 1 second. Capstone Bonus: Increases the amount of haste granted by your Elemental Mastery by an additional 5%.","rankDescriptions":["Increases the spell damage scaling of your Lightning Bolt and Chain Lightning by 7%. When your Lightning Bolt or Chain Lightning deals damage you have a 33% chance to reduce the cooldown of Elemental Mastery and Thunderstorm by 1 second. Capstone Bonus: Increases the amount of haste granted by your Elemental Mastery by an additional 5%.","Increases the spell damage scaling of your Lightning Bolt and Chain Lightning by 14%. When your Lightning Bolt or Chain Lightning deals damage you have a 66% chance to reduce the cooldown of Elemental Mastery and Thunderstorm by 1 second. Capstone Bonus: Increases the amount of haste granted by your Elemental Mastery by an additional 5%.","Increases the spell damage scaling of your Lightning Bolt and Chain Lightning by 20%. When your Lightning Bolt or Chain Lightning deals damage you have a 100% chance to reduce the cooldown of Elemental Mastery and Thunderstorm by 1 second. Capstone Bonus: Increases the amount of haste granted by your Elemental Mastery by an additional 5%."],"system":"classic"},{"id":"talent-563","treeId":"shaman-elemental","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_fire_fireball.png","maxRank":5,"name":"Concussion","description":"Increases the damage of your Lightning Bolt and Chain Lightning by 15%. Increases the damage of your Thunderstorm, Lava Burst, Earthquake, Elemental Blast and Shock spells by 10%.","rankDescriptions":["Increases the damage of your Lightning Bolt and Chain Lightning by 3%. Increases the damage of your Thunderstorm, Lava Burst, Earthquake, Elemental Blast and Shock spells by 2%.","Increases the damage done by your Lightning Bolt, Chain Lightning by 6%. Increases the damage done by your Thunderstorm, Lava Burst, Earthquake, Elemental Blast and Shock spells by 4%.","Increases the damage of your Lightning Bolt and Chain Lightning by 9%. Increases the damage of your Thunderstorm, Lava Burst, Earthquake, Elemental Blast and Shock spells by 6%.","Increases the damage of your Lightning Bolt and Chain Lightning by 12%. Increases the damage of your Thunderstorm, Lava Burst, Earthquake, Elemental Blast and Shock spells by 8%.","Increases the damage of your Lightning Bolt and Chain Lightning by 15%. Increases the damage of your Thunderstorm, Lava Burst, Earthquake, Elemental Blast and Shock spells by 10%."],"system":"classic"},{"id":"talent-565","treeId":"shaman-elemental","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_fire_volcano.png","maxRank":5,"name":"Elemental Fury","description":"Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Your Nature damage is increased by 8% and other magic damage increased by 5% while Clearcasting from Elemental Focus is active.","rankDescriptions":["Your spell critical strikes now deal 180% damage. This does not stack with other similar effects. Capstone Bonus: Your Nature damage is increased by 8% and other magic damage increased by 5% while Clearcasting from Elemental Focus is active.","Your spell critical strikes now deal 185% damage. This does not stack with other similar effects. Capstone Bonus: Your Nature damage is increased by 8% and other magic damage increased by 5% while Clearcasting from Elemental Focus is active.","Your spell critical strikes now deal 190% damage. This does not stack with other similar effects. Capstone Bonus: Your Nature damage is increased by 8% and other magic damage increased by 5% while Clearcasting from Elemental Focus is active.","Your spell critical strikes now deal 195% damage. This does not stack with other similar effects. Capstone Bonus: Your Nature damage is increased by 8% and other magic damage increased by 5% while Clearcasting from Elemental Focus is active.","Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Your Nature damage is increased by 8% and other magic damage increased by 5% while Clearcasting from Elemental Focus is active."],"system":"classic"},{"id":"talent-721","treeId":"shaman-elemental","index":15,"prerequisiteId":"talent-565","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-565","requiredRank":5}],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_lightning_lightningbolt01.png","maxRank":3,"name":"Lightning Mastery","description":"Your spell criticals have a 100% chance to grant you a stack of Raw Power. While active, your Lightning Bolt and Chain Lightning criticals have a 2% chance per stack to trigger Lightning Mastery, consuming all Raw Power stacks to increase your spell critical strike damage bonus by 50% for 6 seconds.","rankDescriptions":["Your spell criticals have a 33% chance to grant you a stack of Raw Power. While active, your Lightning Bolt and Chain Lightning criticals have a 2% chance per stack to trigger Lightning Mastery, consuming all Raw Power stacks to increase your spell critical strike damage bonus by 50% for 6 seconds.","Your spell criticals have a 66% chance to grant you a stack of Raw Power. While active, your Lightning Bolt and Chain Lightning criticals have a 2% chance per stack to trigger Lightning Mastery, consuming all Raw Power stacks to increase your spell critical strike damage bonus by 50% for 6 seconds.","Your spell criticals have a 100% chance to grant you a stack of Raw Power. While active, your Lightning Bolt and Chain Lightning criticals have a 2% chance per stack to trigger Lightning Mastery, consuming all Raw Power stacks to increase your spell critical strike damage bonus by 50% for 6 seconds."],"system":"classic"},{"id":"talent-1645","treeId":"shaman-elemental","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_fire_elementaldevastation.png","maxRank":3,"name":"Elemental Devastation","description":"Your offensive Fire, Nature and Frost spell critical hits increases your critical strike chance with melee and ranged attacks by 12% for 10 seconds. Does not trigger from periodic effects.","rankDescriptions":["Your offensive Fire, Nature and Frost spell critical hits increases your critical strike chance with melee and ranged attacks by 4% for 10 seconds. Does not trigger from periodic effects.","Your offensive Fire, Nature and Frost spell critical hits increases your critical strike chance with melee and ranged attacks by 8% for 10 seconds. Does not trigger from periodic effects.","Your offensive Fire, Nature and Frost spell critical hits increases your critical strike chance with melee and ranged attacks by 12% for 10 seconds. Does not trigger from periodic effects."],"system":"classic"},{"id":"talent-1686","treeId":"shaman-elemental","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_nature_lightningoverload.png","maxRank":3,"name":"Lightning Overload","description":"Gives your Lightning Bolt and Chain Lightning spells a 20% chance to cast a second, similar spell on the same target at no additional cost that causes half damage and no threat. This chance is tripled for critical strikes. Capstone Bonus: Casting Flame Shock, Frost Shock or Earth Shock on a target afflicted by Unleashed Storm trigger the electrical charge, stunning the target for 3.5 seconds and consuming Unleashed Storm.","rankDescriptions":["Gives your Lightning Bolt and Chain Lightning spells a 7% chance to cast a second, similar spell on the same target at no additional cost that causes half damage and no threat. This chance is tripled for critical strikes. Capstone Bonus: Casting Flame Shock, Frost Shock or Earth Shock on a target afflicted by Unleashed Storm trigger the electrical charge, stunning the target for 3.5 seconds and consuming Unleashed Storm.","Gives your Lightning Bolt and Chain Lightning spells a 14% chance to cast a second, similar spell on the same target at no additional cost that causes half damage and no threat. This chance is tripled for critical strikes. Capstone Bonus: Casting Flame Shock, Frost Shock or Earth Shock on a target afflicted by Unleashed Storm trigger the electrical charge, stunning the target for 3.5 seconds and consuming Unleashed Storm.","Gives your Lightning Bolt and Chain Lightning spells a 20% chance to cast a second, similar spell on the same target at no additional cost that causes half damage and no threat. This chance is tripled for critical strikes. Capstone Bonus: Casting Flame Shock, Frost Shock or Earth Shock on a target afflicted by Unleashed Storm trigger the electrical charge, stunning the target for 3.5 seconds and consuming Unleashed Storm."],"system":"classic"},{"id":"talent-2051","treeId":"shaman-elemental","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/spell_shaman_lavaflow.png","maxRank":3,"name":"Lava Flows","description":"Increases the critical strike damage bonus of your Lava Burst, Flame Shock, Sundering and Lava Lash by an additional 25%. Casting Flame Shock or Lava Burst your spell and melee haste is increased by 6% for 12 seconds. If your Flame Shock is dispelled your haste is increased by 30% for 8 seconds.","rankDescriptions":["Increases the critical strike damage bonus of your Lava Burst, Flame Shock, Sundering and Lava Lash by an additional 8%. Casting Flame Shock or Lava Burst your spell and melee haste is increased by 2% for 12 seconds. If your Flame Shock is dispelled your haste is increased by 10% for 8 seconds.","Increases the critical strike damage bonus of your Lava Burst, Flame Shock, Sundering and Lava Lash by an additional 16%. Casting Flame Shock or Lava Burst your spell and melee haste is increased by 4% for 12 seconds. If your Flame Shock is dispelled your haste is increased by 20% for 8 seconds.","Increases the critical strike damage bonus of your Lava Burst, Flame Shock, Sundering and Lava Lash by an additional 25%. Casting Flame Shock or Lava Burst your spell and melee haste is increased by 6% for 12 seconds. If your Flame Shock is dispelled your haste is increased by 30% for 8 seconds."],"system":"classic"},{"id":"talent-2052","treeId":"shaman-elemental","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_shaman_stormearthfire.png","maxRank":3,"name":"Storm, Earth and Fire","description":"Reduces the cooldown of your Chain Lightning spell by 2.5 sec. Earthbind Totem has a 100% chance to root targets for 3 seconds when cast. The periodic damage done by your Flame Shock is increased by 60%.","rankDescriptions":["Reduces the cooldown of your Chain Lightning spell by 0.75 sec. Earthbind Totem has a 33% chance to root targets for 3 seconds when cast. The periodic damage done by your Flame Shock is increased by 20%.","Reduces the cooldown of your Chain Lightning spell by 1.5 sec. Earthbind Totem has a 66% chance to root targets for 3 seconds when cast. The periodic damage done by your Flame Shock is increased by 40%.","Reduces the cooldown of your Chain Lightning spell by 2.5 sec. Earthbind Totem has a 100% chance to root targets for 3 seconds when cast. The periodic damage done by your Flame Shock is increased by 60%."],"system":"classic"},{"id":"talent-1642","treeId":"shaman-elemental","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_soulleech_2.png","maxRank":3,"name":"Eye of the Storm","description":"Increases spell, ranged and melee haste by 3%. Reduces spell pushback suffered from damaging attacks by 100%.","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Reduces spell pushback suffered from damaging attacks by 33%.","Increases spell, ranged and melee haste by 2%. Reduces spell pushback suffered from damaging attacks by 66%.","Increases spell, ranged and melee haste by 3%. Reduces spell pushback suffered from damaging attacks by 100%."],"system":"classic"},{"id":"talent-1682","treeId":"shaman-elemental","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_unrelentingstorm.png","maxRank":3,"name":"Unrelenting Storm","description":"Casting Lightning Bolt, Lightning Shield, Lava Burst or Elemental Blast triggers Unrelenting Storm, increasing your spell and melee haste by 3% for 8 seconds. This effect stacks up to 3 times. Capstone Bonus: This talent allows three stacks of Unrelenting Storm to empower your Chain Lightning, increasing its damage by 15% and causing the target to take 10% increased spell damage for 12 seconds. This does not stack with similar effects.","rankDescriptions":["Casting Lightning Bolt, Lightning Shield, Lava Burst or Elemental Blast triggers Unrelenting Storm, increasing your spell and melee haste by 1% for 8 seconds. This effect stacks up to 3 times. Capstone Bonus: This talent allows three stacks of Unrelenting Storm to empower your Chain Lightning, increasing its damage by 15% and causing the target to take 10% increased spell damage for 12 seconds. This does not stack with similar effects.","Casting Lightning Bolt, Lightning Shield, Lava Burst or Elemental Blast triggers Unrelenting Storm, increasing your spell and melee haste by 2% for 8 seconds. This effect stacks up to 3 times. Capstone Bonus: This talent allows three stacks of Unrelenting Storm to empower your Chain Lightning, increasing its damage by 15% and causing the target to take 10% increased spell damage for 12 seconds. This does not stack with similar effects.","Casting Lightning Bolt, Lightning Shield, Lava Burst or Elemental Blast triggers Unrelenting Storm, increasing your spell and melee haste by 3% for 8 seconds. This effect stacks up to 3 times. Capstone Bonus: This talent allows three stacks of Unrelenting Storm to empower your Chain Lightning, increasing its damage by 15% and causing the target to take 10% increased spell damage for 12 seconds. This does not stack with similar effects."],"system":"classic"},{"id":"talent-583","treeId":"shaman-restoration","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/ability_shaman_watershield.png","maxRank":3,"name":"Improved Water Shield","description":"Your Nature critical heals have a 30% and normal heals a 15% chance to restore mana as if you consumed a Water Shield Orb. This chance is doubled with Healing Wave.","rankDescriptions":["Your Nature critical heals have a 10% and normal heals a 5% chance to restore mana as if you consumed a Water Shield Orb. This chance is doubled with Healing Wave.","Your Nature critical heals have a 20% and normal heals a 10% chance to restore mana as if you consumed a Water Shield Orb. This chance is doubled with Healing Wave.","Your Nature critical heals have a 30% and normal heals a 15% chance to restore mana as if you consumed a Water Shield Orb. This chance is doubled with Healing Wave."],"system":"classic"},{"id":"talent-589","treeId":"shaman-restoration","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_reincarnation.png","maxRank":2,"name":"Improved Reincarnation","description":"Reduces the cooldown of your Reincarnation spell by 20 min and increases the amount of health and mana recovered when reincarnating by an additional 40%.","rankDescriptions":["Reduces the cooldown of your Reincarnation spell by 10 min and increases the amount of health and mana recovered when reincarnating by an additional 20%.","Reduces the cooldown of your Reincarnation spell by 20 min and increases the amount of health and mana recovered when reincarnating by an additional 40%."],"system":"classic"},{"id":"talent-1648","treeId":"shaman-restoration","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_healingway.png","maxRank":3,"name":"Healing Way","description":"Increases the amount healed by your Chain Heal, Earth Shield, Healing Rain, Healing Wave and Riptide by 25%.","rankDescriptions":["Increases the amount healed by your Chain Heal, Earth Shield, Healing Rain, Healing Wave and Riptide by 8%.","Increases the amount healed by your Chain Heal, Earth Shield, Healing Rain, Healing Wave and Riptide by 16%.","Increases the amount healed by your Chain Heal, Earth Shield, Healing Rain, Healing Wave and Riptide by 25%."],"system":"classic"},{"id":"talent-1699","treeId":"shaman-restoration","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_nature_natureguardian.png","maxRank":3,"name":"Nature's Guardian","description":"Increases spell, ranged and melee haste by 3%. Capstone Bonus: Whenever a damaging non-periodic attack brings you below 30% health you are healed for a small amount (increased by healing power) and your next Nature spell is guaranteed to critically strike. This effect has a 30 second cooldown.","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Capstone Bonus: Whenever a damaging non-periodic attack brings you below 30% health you are healed for a small amount (increased by healing power) and your next Nature spell is guaranteed to critically strike. This effect has a 30 second cooldown.","Increases spell, ranged and melee haste by 2%. Capstone Bonus: Whenever a damaging non-periodic attack brings you below 30% health you are healed for a small amount (increased by healing power) and your next Nature spell is guaranteed to critically strike. This effect has a 30 second cooldown.","Increases spell, ranged and melee haste by 3%. Capstone Bonus: Whenever a damaging non-periodic attack brings you below 30% health you are healed for a small amount (increased by healing power) and your next Nature spell is guaranteed to critically strike. This effect has a 30 second cooldown."],"system":"classic"},{"id":"talent-2060","treeId":"shaman-restoration","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/spell_shaman_blessingofeternals.png","maxRank":2,"name":"Blessing of the Eternals","description":"Increases your critical strike chance with all spells and abilities by 2%. Increases the chance to apply the Earthliving heal over time effect on the target by 80% when they are at or under 35% total health.","rankDescriptions":["Increases your critical strike chance with all spells and abilities by 1%. Increases the chance to apply the Earthliving heal over time effect on the target by 40% when they are at or under 35% total health.","Increases your critical strike chance with all spells and abilities by 2%. Increases the chance to apply the Earthliving heal over time effect on the target by 80% when they are at or under 35% total health."],"system":"classic"},{"id":"talent-2061","treeId":"shaman-restoration","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/spell_shaman_ancestralawakening.png","maxRank":3,"name":"Ancestral Awakening","description":"When you critically heal with your Healing Wave, Lesser Healing Wave or Riptide you summon an Ancestral spirit to aid you, instantly healing the lowest percentage health friendly party or raid target within 40 yards for 30% of the amount healed.","rankDescriptions":["When you critically heal with your Healing Wave, Lesser Healing Wave or Riptide you summon an Ancestral spirit to aid you, instantly healing the lowest percentage health friendly party or raid target within 40 yards for 10% of the amount healed.","When you critically heal with your Healing Wave, Lesser Healing Wave or Riptide you summon an Ancestral spirit to aid you, instantly healing the lowest percentage health friendly party or raid target within 40 yards for 20% of the amount healed.","When you critically heal with your Healing Wave, Lesser Healing Wave or Riptide you summon an Ancestral spirit to aid you, instantly healing the lowest percentage health friendly party or raid target within 40 yards for 30% of the amount healed."],"system":"classic"},{"id":"talent-586","treeId":"shaman-restoration","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_magicimmunity.png","maxRank":3,"name":"Improved Healing Wave","description":"Increases the healing done by Healing Wave by 6% and critical strike chance by 3%.","rankDescriptions":["Increases the healing done by Healing Wave by 2% and critical strike chance by 1%.","Increases the healing done by Healing Wave by 4% and critical strike chance by 2%.","Increases the healing done by Healing Wave by 6% and critical strike chance by 3%."],"system":"classic"},{"id":"talent-587","treeId":"shaman-restoration","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_healingwavelesser.png","maxRank":3,"name":"Natural Focus","description":"Increases spell, ranged and melee haste by 3%. Reduces the pushback suffered from damaging attacks while casting by 100%. Capstone Bonus: Stuns and Disorients that hit you while casting any Nature healing spell have their duration reduced by 30%.","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Reduces the pushback suffered from damaging attacks while casting by 33%. Capstone Bonus: Stuns and Disorients that hit you while casting any Nature healing spell have their duration reduced by 30%.","Increases spell, ranged and melee haste by 2%. Reduces the pushback suffered from damaging attacks while casting by 66%. Capstone Bonus: Stuns and Disorients that hit you while casting any Nature healing spell have their duration reduced by 30%.","Increases spell, ranged and melee haste by 3%. Reduces the pushback suffered from damaging attacks while casting by 100%. Capstone Bonus: Stuns and Disorients that hit you while casting any Nature healing spell have their duration reduced by 30%."],"system":"classic"},{"id":"talent-588","treeId":"shaman-restoration","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_nature_manaregentotem.png","maxRank":5,"name":"Restorative Totems","description":"Increases the effect of your Mana Spring Totem by 30% and Mana Tide Totem by 120%. Reduces the cooldown of Mana Tide Totem by 15 seconds. @s:301133:0@ @s:301134:0@","rankDescriptions":["Increases the effect of your Mana Spring Totem by 6% and Mana Tide Totem by 24%. Reduces the cooldown of Mana Tide Totem by 3 seconds. @s:301129:0@ @s:301134:0@","Increases the effect of your Mana Spring Totem by 12% and Mana Tide Totem by 48%. Reduces the cooldown of Mana Tide Totem by 6 seconds. @s:301130:0@ @s:301134:0@","Increases the effect of your Mana Spring Totem by 18% and Mana Tide Totem by 72%. Reduces the cooldown of Mana Tide Totem by 9 seconds. @s:301131:0@ @s:301134:0@","Increases the effect of your Mana Spring Totem by 24% and Mana Tide Totem by 96%. Reduces the cooldown of Mana Tide Totem by 12 seconds. @s:301132:0@ @s:301134:0@","Increases the effect of your Mana Spring Totem by 30% and Mana Tide Totem by 120%. Reduces the cooldown of Mana Tide Totem by 15 seconds. @s:301133:0@ @s:301134:0@"],"system":"classic"},{"id":"talent-590","treeId":"shaman-restoration","index":17,"prerequisiteId":"talent-588","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-588","requiredRank":3}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_frost_summonwaterelemental.png","maxRank":1,"name":"Mana Tide Totem","description":"Summons a Mana Tide Totem with 10% of the caster's health at the feet of the caster for the listed amount seconds-1} sec that restores 5% of total mana every 3 seconds to group members within the listed amount yards. This ability is usable while shapeshifted.","rankDescriptions":["Summons a Mana Tide Totem with 10% of the caster's health at the feet of the caster for the listed amount seconds-1} sec that restores 5% of total mana every 3 seconds to group members within the listed amount yards. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-1646","treeId":"shaman-restoration","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_healingtouch.png","maxRank":3,"name":"Healing Grace","description":"Increases your critical strike chance with all spells and abilities by 3%. Reduces the chance your helpful Shaman spells and damage over time effects will be dispelled by 30%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","rankDescriptions":["Increases your critical strike chance with all spells and abilities by 1%. Reduces the chance your helpful Shaman spells and damage over time effects will be dispelled by 10%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases your critical strike chance with all spells and abilities by 2%. Reduces the chance your helpful Shaman spells and damage over time effects will be dispelled by 20%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases your critical strike chance with all spells and abilities by 3%. Reduces the chance your helpful Shaman spells and damage over time effects will be dispelled by 30%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]"],"system":"classic"},{"id":"talent-1697","treeId":"shaman-restoration","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/spell_nature_healingwavegreater.png","maxRank":3,"name":"Improved Chain Heal","description":"Increases the amount healed by your Chain Heal spell by 20%. Capstone Bonus: After consuming 2 charges of Tidal Waves your next Chain Heal will not consume Riptide.","rankDescriptions":["Increases the amount healed by your Chain Heal spell by 7%. Capstone Bonus: After consuming 2 charges of Tidal Waves your next Chain Heal will not consume Riptide.","Increases the amount healed by your Chain Heal spell by 14%. Capstone Bonus: After consuming 2 charges of Tidal Waves your next Chain Heal will not consume Riptide.","Increases the amount healed by your Chain Heal spell by 20%. Capstone Bonus: After consuming 2 charges of Tidal Waves your next Chain Heal will not consume Riptide."],"system":"classic"},{"id":"talent-1698","treeId":"shaman-restoration","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_nature_skinofearth.png","maxRank":1,"name":"Earth Shield","description":"Protects the target with an earthen shield. Lasts 10 minutes or 4 charges. Attacks heal the shielded target for the listed amount (increased by 25% against monsters)and reduce casting or channel time lost when damaged by 34%. This effect can only occur once every 3 seconds. Earth Shield can only be placed on one target at a time.","rankDescriptions":["Protects the target with an earthen shield. Lasts 10 minutes or 4 charges. Attacks heal the shielded target for the listed amount (increased by 25% against monsters)and reduce casting or channel time lost when damaged by 34%. This effect can only occur once every 3 seconds. Earth Shield can only be placed on one target at a time."],"system":"classic"},{"id":"talent-2063","treeId":"shaman-restoration","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/spell_shaman_tidalwaves.png","maxRank":3,"name":"Tidal Waves","description":"Your Chain Heals and Riptides have a 100% chance to grant you Tidal Waves. reducing the cast time of your Healing Waves by 10% per charge and increases the critical effect chance of your Lesser Healing Waves by 10% per charge. Chain Heal grants three charges and Riptide grants two. Your Healing Wave and Lesser Healing Wave spells gains an additional 12% of your bonus healing effects.","rankDescriptions":["Your Chain Heals and Riptides have a 33% chance to grant you Tidal Waves. reducing the cast time of your Healing Waves by 10% per charge and increases the critical effect chance of your Lesser Healing Waves by 10% per charge. Chain Heal grants three charges and Riptide grants two. Your Healing Wave and Lesser Healing Wave spells gains an additional 4% of your bonus healing effects.","Your Chain Heals and Riptides have a 66% chance to grant you Tidal Waves. reducing the cast time of your Healing Waves by 10% per charge and increases the critical effect chance of your Lesser Healing Waves by 10% per charge. Chain Heal grants three charges and Riptide grants two. Your Healing Wave and Lesser Healing Wave spells gains an additional 8% of your bonus healing effects.","Your Chain Heals and Riptides have a 100% chance to grant you Tidal Waves. reducing the cast time of your Healing Waves by 10% per charge and increases the critical effect chance of your Lesser Healing Waves by 10% per charge. Chain Heal grants three charges and Riptide grants two. Your Healing Wave and Lesser Healing Wave spells gains an additional 12% of your bonus healing effects."],"system":"classic"},{"id":"talent-2064","treeId":"shaman-restoration","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/spell_nature_riptide.png","maxRank":1,"name":"Riptide","description":"Heals a friendly target for 59 and another 105 over 15 seconds. Your next Chain Heal cast on that primary target within 15 seconds will consume the healing over time effect and increase the amount of the Chain Heal by 25%.","rankDescriptions":["Heals a friendly target for 59 and another 105 over 15 seconds. Your next Chain Heal cast on that primary target within 15 seconds will consume the healing over time effect and increase the amount of the Chain Heal by 25%."],"system":"classic"},{"id":"talent-582","treeId":"shaman-restoration","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_frost_frostbolt.png","maxRank":1,"name":"Tidal Force","description":"Call upon the power of the Tides to empower your heals for 10 seconds. Healing Wave: Heals the target again for 30% of the original amount healed after 1 second. Lesser Healing Wave: Increases your healing on the target by 5% for 8 seconds, stacks up to 3 times. Chain Heal: No longer diminishes in healing with each jump. Healing Rain: Duration is increased by 50%.","rankDescriptions":["Call upon the power of the Tides to empower your heals for 10 seconds. Healing Wave: Heals the target again for 30% of the original amount healed after 1 second. Lesser Healing Wave: Increases your healing on the target by 5% for 8 seconds, stacks up to 3 times. Chain Heal: No longer diminishes in healing with each jump. Healing Rain: Duration is increased by 50%."],"system":"classic"},{"id":"talent-591","treeId":"shaman-restoration","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_ravenform.png","maxRank":1,"name":"Nature's Swiftness","description":"When activated, your next Shaman Nature spell with a base casting time less than 10 sec. becomes an instant cast spell and increases your cast speed by 10% for 20 seconds. Does not stack with other similar cast speed increasing effects.","rankDescriptions":["When activated, your next Shaman Nature spell with a base casting time less than 10 sec. becomes an instant cast spell and increases your cast speed by 10% for 20 seconds. Does not stack with other similar cast speed increasing effects."],"system":"classic"},{"id":"talent-592","treeId":"shaman-restoration","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_frost_wizardmark.png","maxRank":5,"name":"Purification","description":"Increases the effectiveness of your Nature healing spells by 10%.","rankDescriptions":["Increases the effectiveness of your Nature healing spells by 2%.","Increases the effectiveness of your Nature healing spells by 4%.","Increases the effectiveness of your Nature healing spells by 6%.","Increases the effectiveness of your Nature healing spells by 8%.","Increases the effectiveness of your Nature healing spells by 10%."],"system":"classic"},{"id":"talent-593","treeId":"shaman-restoration","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_frost_manarecharge.png","maxRank":3,"name":"Tidal Focus","description":"Reduces the mana cost of your Shaman healing spells by 12%. Increases the duration of your Cleansing Totem by 15 seconds. Capstone Bonus: Placing Cleansing Totem instantly cleanses one disease and one poison effect from party members within 30 yards.","rankDescriptions":["Reduces the mana cost of your Shaman healing spells by 4%. Increases the duration of your Cleansing Totem by 5 seconds. Capstone Bonus: Placing Cleansing Totem instantly cleanses one disease and one poison effect from party members within 30 yards.","Reduces the mana cost of your Shaman healing spells by 8%. Increases the duration of your Cleansing Totem by 10 seconds. Capstone Bonus: Placing Cleansing Totem instantly cleanses one disease and one poison effect from party members within 30 yards.","Reduces the mana cost of your Shaman healing spells by 12%. Increases the duration of your Cleansing Totem by 15 seconds. Capstone Bonus: Placing Cleansing Totem instantly cleanses one disease and one poison effect from party members within 30 yards."],"system":"classic"},{"id":"talent-594","treeId":"shaman-restoration","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_nature_tranquility.png","maxRank":3,"name":"Tidal Mastery","description":"Increases the critical effect chance of your Shaman healing spells, Lightning Bolt and Chain Lightning by 3% and reduces the cooldown of your Tidal Force by 18 seconds. Capstone Bonus: Healing Wave and Riptide direct criticals add 2 seconds, Lesser Healing Wave 1 second and Chain Heal criticals 0.5 seconds to the duration of Tidal Force.","rankDescriptions":["Increases the critical effect chance of your Shaman healing spells, Lightning Bolt and Chain Lightning by 1% and reduces the cooldown of your Tidal Force by 6 seconds. Capstone Bonus: Healing Wave and Riptide direct criticals add 2 seconds, Lesser Healing Wave 1 second and Chain Heal criticals 0.5 seconds to the duration of Tidal Force.","Increases the critical effect chance of your Shaman healing spells, Lightning Bolt and Chain Lightning by 2% and reduces the cooldown of your Tidal Force by 12 seconds. Capstone Bonus: Healing Wave and Riptide direct criticals add 2 seconds, Lesser Healing Wave 1 second and Chain Heal criticals 0.5 seconds to the duration of Tidal Force.","Increases the critical effect chance of your Shaman healing spells, Lightning Bolt and Chain Lightning by 3% and reduces the cooldown of your Tidal Force by 18 seconds. Capstone Bonus: Healing Wave and Riptide direct criticals add 2 seconds, Lesser Healing Wave 1 second and Chain Heal criticals 0.5 seconds to the duration of Tidal Force."],"system":"classic"},{"id":"talent-595","treeId":"shaman-restoration","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_moonglow.png","maxRank":5,"name":"Totemic Focus","description":"Reduces the mana cost of your totems by 50% and for every totem active, you gain the listed amountthe listed amount Haste and Critical Strike Rating. This effect can stack up to 4 times and is increased per totem active.","rankDescriptions":["Reduces the mana cost of your totems by 10% and for every totem active, you gain the listed amountthe listed amount Haste and Critical Strike Rating. This effect can stack up to 4 times and is increased per totem active.","Reduces the mana cost of your totems by 20% and for every totem active, you gain the listed amountthe listed amount Haste and Critical Strike Rating. This effect can stack up to 4 times and is increased per totem active.","Reduces the mana cost of your totems by 30% and for every totem active, you gain the listed amountthe listed amount Haste and Critical Strike Rating. This effect can stack up to 4 times and is increased per totem active.","Reduces the mana cost of your totems by 40% and for every totem active, you gain the listed amountthe listed amount Haste and Critical Strike Rating. This effect can stack up to 4 times and is increased per totem active.","Reduces the mana cost of your totems by 50% and for every totem active, you gain the listed amountthe listed amount Haste and Critical Strike Rating. This effect can stack up to 4 times and is increased per totem active."],"system":"classic"},{"id":"talent-1696","treeId":"shaman-restoration","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_nature_natureblessing.png","maxRank":3,"name":"Nature's Blessing","description":"Increases your healing power by an amount equal to 12% of your Intellect.","rankDescriptions":["Increases your healing power by an amount equal to 4% of your Intellect.","Increases your healing power by an amount equal to 8% of your Intellect.","Increases your healing power by an amount equal to 12% of your Intellect."],"system":"classic"},{"id":"talent-2059","treeId":"shaman-restoration","index":24,"prerequisiteId":"talent-1698","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1698","requiredRank":1}],"column":3,"row":9,"icon":"/assets/ui/talents/icons/spell_nature_skinofearth.png","maxRank":3,"name":"Improved Earth Shield","description":"Increases the amount of charges for your Earth Shield by 3. Increases the healing done by your Earth Shield by 15%. Capstone Bonus: Healing with Earth Shield grants you one stack of Tidal Waves. This effect can occur once every 5 seconds. This requires the final rank of Tidal Waves.","rankDescriptions":["Increases the amount of charges for your Earth Shield by 1. Increases the healing done by your Earth Shield by 5%. Capstone Bonus: Healing with Earth Shield grants you one stack of Tidal Waves. This effect can occur once every 5 seconds. This requires the final rank of Tidal Waves.","Increases the amount of charges for your Earth Shield by 2. Increases the healing done by your Earth Shield by 10%. Capstone Bonus: Healing with Earth Shield grants you one stack of Tidal Waves. This effect can occur once every 5 seconds. This requires the final rank of Tidal Waves.","Increases the amount of charges for your Earth Shield by 3. Increases the healing done by your Earth Shield by 15%. Capstone Bonus: Healing with Earth Shield grants you one stack of Tidal Waves. This effect can occur once every 5 seconds. This requires the final rank of Tidal Waves."],"system":"classic"},{"id":"talent-2084","treeId":"shaman-restoration","index":18,"prerequisiteId":"talent-592","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-592","requiredRank":5}],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_shaman_cleansespirit.png","maxRank":1,"name":"Cleanse Spirit","description":"Cleanse the spirit of a friendly target, removing 1 poison effect, 1 disease effect, and 1 curse effect. This ability has no cooldown if your Primary Stat is Spirit.","rankDescriptions":["Cleanse the spirit of a friendly target, removing 1 poison effect, 1 disease effect, and 1 curse effect. This ability has no cooldown if your Primary Stat is Spirit."],"system":"classic"},{"id":"talent-581","treeId":"shaman-restoration","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_undyingstrength.png","maxRank":3,"name":"Ancestral Healing","description":"Reduces your target's Physical damage taken by 10% for 15 seconds after getting a critical effect from one of your direct Nature healing spells. Does not stack with other similar effects.","rankDescriptions":["Reduces your target's Physical damage taken by 3% for 15 seconds after getting a critical effect from one of your direct Nature healing spells. Does not stack with other similar effects.","Reduces your target's Physical damage taken by 7% for 15 seconds after getting a critical effect from one of your direct Nature healing spells. Does not stack with other similar effects.","Reduces your target's Physical damage taken by 10% for 15 seconds after getting a critical effect from one of your direct Nature healing spells. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-1695","treeId":"shaman-restoration","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_focusedmind.png","maxRank":3,"name":"Focused Mind","description":"Reduces the duration of any Silence or Interrupt effects used against you by 30%. This effect does not stack with other similar effects.","rankDescriptions":["Reduces the duration of any Silence or Interrupt effects used against you by 10%. This effect does not stack with other similar effects.","Reduces the duration of any Silence or Interrupt effects used against you by 20%. This effect does not stack with other similar effects.","Reduces the duration of any Silence or Interrupt effects used against you by 30%. This effect does not stack with other similar effects."],"system":"classic"},{"id":"talent-609","treeId":"shaman-enhancement","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_stoneskintotem.png","maxRank":2,"name":"Guardian Totems","description":"Increases the amount of armor increased by your Stoneskin Totem by 20%. Reduces the cooldown of your Grounding Totem and Tremor Totem by 10 sec.","rankDescriptions":["Increases the amount of armor increased by your Stoneskin Totem by 10%. Reduces the cooldown of your Grounding Totem and Tremor Totem by 5 sec.","Increases the amount of armor increased by your Stoneskin Totem by 20%. Reduces the cooldown of your Grounding Totem and Tremor Totem by 10 sec."],"system":"classic"},{"id":"talent-610","treeId":"shaman-enhancement","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_earthbindtotem.png","maxRank":3,"name":"Enhancing Totems","description":"Placing a totem increases your attack power by the listed amountthe listed amount and spell power by the listed amountthe listed amount for 5 minutes. This effect scales with your level.","rankDescriptions":["Placing a totem increases your attack power by the listed amountthe listed amount and spell power by the listed amountthe listed amount for 5 minutes. This effect scales with your level.","Placing a totem increases your attack power by the listed amountthe listed amount and spell power by the listed amountthe listed amount for 5 minutes. This effect scales with your level.","Placing a totem increases your attack power by the listed amountthe listed amount and spell power by the listed amountthe listed amount for 5 minutes. This effect scales with your level."],"system":"classic"},{"id":"talent-611","treeId":"shaman-enhancement","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_fire_flametounge.png","maxRank":3,"name":"Elemental Weapons","description":"Increases the damage caused by your Windfury Weapon effect by 30%. Increases the spell damage on your Flametongue Weapon by 60%. Increases the Frost spell damage granted on your Frostbrand Weapon by 100%. Increases the bonus healing on your Earthliving Weapon by 100%.","rankDescriptions":["Increases the damage caused by your Windfury Weapon effect by 10%. Increases the spell damage on your Flametongue Weapon by 20%. Increases the Frost spell damage granted on your Frostbrand Weapon by 33%. Increases the bonus healing on your Earthliving Weapon by 33%.","Increases the damage caused by your Windfury Weapon effect by 20%. Increases the spell damage on your Flametongue Weapon by 40%. Increases the Frost spell damage granted on your Frostbrand Weapon by 66%. Increases the bonus healing on your Earthliving Weapon by 66%.","Increases the damage caused by your Windfury Weapon effect by 30%. Increases the spell damage on your Flametongue Weapon by 60%. Increases the Frost spell damage granted on your Frostbrand Weapon by 100%. Increases the bonus healing on your Earthliving Weapon by 100%."],"system":"classic"},{"id":"talent-1647","treeId":"shaman-enhancement","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_windfury.png","maxRank":2,"name":"Improved Wind Totems","description":"Increases the melee haste granted by your Windfury totem by 6%. Reduces the cooldown of Windwalk Totem by 10 seconds.","rankDescriptions":["Increases the melee haste granted by your Windfury totem by 3%. Reduces the cooldown of Windwalk Totem by 5 seconds.","Increases the melee haste granted by your Windfury totem by 6%. Reduces the cooldown of Windwalk Totem by 10 seconds."],"system":"classic"},{"id":"talent-1689","treeId":"shaman-enhancement","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_nature_unleashedrage.png","maxRank":3,"name":"Unleashed Rage","description":"Increases your Fire, Frost and Nature damage done by 9% while under the effects of Shamanistic Rage. Increases all party and raid members' attack power by 5%. Does not stack with other similar effects.","rankDescriptions":["Increases your Fire, Frost and Nature damage done by 3% while under the effects of Shamanistic Rage. Increases all party and raid members' attack power by 2%. Does not stack with other similar effects.","Increases your Fire, Frost and Nature damage done by 6% while under the effects of Shamanistic Rage. Increases all party and raid members' attack power by 4%. Does not stack with other similar effects.","Increases your Fire, Frost and Nature damage done by 9% while under the effects of Shamanistic Rage. Increases all party and raid members' attack power by 5%. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-1691","treeId":"shaman-enhancement","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/spell_nature_mentalquickness.png","maxRank":5,"name":"Mental Quickness","description":"@req:300047@ Your spell damage is increased by an additional 75% of your spell power. Capstone Bonus: Your direct melee abilities increase your magic damage done by 10% for 6 seconds. Your ranged damaging abilities increase your magic damage done by 5% for 6 seconds. These effects can not occur simultaneously.","rankDescriptions":["@req:300047@ Your spell damage is increased by an additional 15% of your spell power. Capstone Bonus: Your direct melee abilities increase your magic damage done by 10% for 6 seconds. Your ranged damaging abilities increase your magic damage done by 5% for 6 seconds. These effects can not occur simultaneously.","@req:300047@ Your spell damage is increased by an additional 30% of your spell power. Capstone Bonus: Your direct melee abilities increase your magic damage done by 10% for 6 seconds. Your ranged damaging abilities increase your magic damage done by 5% for 6 seconds. These effects can not occur simultaneously.","@req:300047@ Your spell damage is increased by an additional 45% of your spell power. Capstone Bonus: Your direct melee abilities increase your magic damage done by 10% for 6 seconds. Your ranged damaging abilities increase your magic damage done by 5% for 6 seconds. These effects can not occur simultaneously.","@req:300047@ Your spell damage is increased by an additional 60% of your spell power. Capstone Bonus: Your direct melee abilities increase your magic damage done by 10% for 6 seconds. Your ranged damaging abilities increase your magic damage done by 5% for 6 seconds. These effects can not occur simultaneously.","@req:300047@ Your spell damage is increased by an additional 75% of your spell power. Capstone Bonus: Your direct melee abilities increase your magic damage done by 10% for 6 seconds. Your ranged damaging abilities increase your magic damage done by 5% for 6 seconds. These effects can not occur simultaneously."],"system":"classic"},{"id":"talent-1692","treeId":"shaman-enhancement","index":19,"prerequisiteId":"talent-1690","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1690","requiredRank":1}],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_dualwieldspecialization.png","maxRank":3,"name":"Dual Wield Specialization","description":"Increases your chance to hit with spells and abilities while dual wielding by 3%. Your off-hand auto attacks have a chance to increase your Fire, Frost, and Nature damage dealt by 6% for 8 seconds.","rankDescriptions":["Increases your chance to hit with spells and abilities while dual wielding by 1%. Your off-hand auto attacks have a chance to increase your Fire, Frost, and Nature damage dealt by 2% for 8 seconds.","Increases your chance to hit with spells and abilities while dual wielding by 2%. Your off-hand auto attacks have a chance to increase your Fire, Frost, and Nature damage dealt by 4% for 8 seconds.","Increases your chance to hit with spells and abilities while dual wielding by 3%. Your off-hand auto attacks have a chance to increase your Fire, Frost, and Nature damage dealt by 6% for 8 seconds."],"system":"classic"},{"id":"talent-2055","treeId":"shaman-enhancement","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/spell_shaman_staticshock.png","maxRank":3,"name":"Static Shock","description":"Your Lightning Shield gains 15% increased damage, 6 additional charges and you have a 15% chance to hit your target with a Lightning Shield orb charge when you deal damage with melee attacks and abilities. This effect can only occur once every the listed amount[1 second][1.5 seconds]. Capstone Bonus: Your Stormstrike adds 3 charges to your Lightning Shield.","rankDescriptions":["Your Lightning Shield gains 5% increased damage, 2 additional charges and you have a 5% chance to hit your target with a Lightning Shield orb charge when you deal damage with melee attacks and abilities. This effect can only occur once every the listed amount[1 second][1.5 seconds]. Capstone Bonus: Your Stormstrike adds 3 charges to your Lightning Shield.","Your Lightning Shield gains 10% increased damage, 4 additional charges and you have a 10% chance to hit your target with a Lightning Shield orb charge when you deal damage with melee attacks and abilities. This effect can only occur once every the listed amount[1 second][1.5 seconds]. Capstone Bonus: Your Stormstrike adds 3 charges to your Lightning Shield.","Your Lightning Shield gains 15% increased damage, 6 additional charges and you have a 15% chance to hit your target with a Lightning Shield orb charge when you deal damage with melee attacks and abilities. This effect can only occur once every the listed amount[1 second][1.5 seconds]. Capstone Bonus: Your Stormstrike adds 3 charges to your Lightning Shield."],"system":"classic"},{"id":"talent-602","treeId":"shaman-enhancement","index":11,"prerequisiteId":"talent-613","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-613","requiredRank":5}],"column":2,"row":4,"icon":"/assets/ui/talents/icons/ability_ghoulfrenzy.png","maxRank":3,"name":"Flurry","description":"Increases your melee attack speed by 10% for your next 3 swings after dealing a melee critical strike.","rankDescriptions":["Increases your melee attack speed by 4% for your next 3 swings after dealing a melee critical strike.","Increases your melee attack speed by 6% for your next 3 swings after dealing a melee critical strike.","Increases your melee attack speed by 10% for your next 3 swings after dealing a melee critical strike."],"system":"classic"},{"id":"talent-613","treeId":"shaman-enhancement","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_thunderbolt.png","maxRank":5,"name":"Thundering Strikes","description":"Increases your chance to get a critical strike with all spells and attacks by 5%. Capstone Bonus: Your spell casts have a chance to increases your Agility by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds.","rankDescriptions":["Increases your chance to get a critical strike with all spells and attacks by 1%. Capstone Bonus: Your spell casts have a chance to increases your Agility by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds.","Increases your chance to get a critical strike with all spells and attacks by 2%. Capstone Bonus: Your spell casts have a chance to increases your Agility by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds.","Increases your chance to get a critical strike with all spells and attacks by 3%. Capstone Bonus: Dealing damage with spell have a chance to increases your Agility by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds.","Increases your chance to get a critical strike with all spells and attacks by 4%. Capstone Bonus: Your spell casts have a chance to increases your Agility by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds.","Increases your chance to get a critical strike with all spells and attacks by 5%. Capstone Bonus: Your spell casts have a chance to increases your Agility by the listed amountthe listed amount (based on your level) for 12 seconds. This effect can only trigger once every 6 seconds."],"system":"classic"},{"id":"talent-616","treeId":"shaman-enhancement","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/ability_parry.png","maxRank":3,"name":"Spirit Weapons","description":"Increases the damage caused by your Frostbrand Weapon and Flametongue Weapon effect by 30%. Increases the bonus damage of Lava Lash when your off-hand Weapon is enchanted with Flametongue Weapon by 15%.","rankDescriptions":["Increases the damage caused by your Frostbrand Weapon and Flametongue Weapon effect by 10%. Increases the bonus damage of Lava Lash when your off-hand Weapon is enchanted with Flametongue Weapon by 5%.","Increases the damage caused by your Frostbrand Weapon and Flametongue Weapon effect by 20%. Increases the bonus damage of Lava Lash when your off-hand Weapon is enchanted with Flametongue Weapon by 10%.","Increases the damage caused by your Frostbrand Weapon and Flametongue Weapon effect by 30%. Increases the bonus damage of Lava Lash when your off-hand Weapon is enchanted with Flametongue Weapon by 15%."],"system":"classic"},{"id":"talent-1690","treeId":"shaman-enhancement","index":20,"prerequisiteId":"talent-616","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-616","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/ability_dualwield.png","maxRank":2,"name":"Empowered Stormstrike","description":"Your Stormstrike will deal an additional 25% weapon damage as Fire when you have a weapon imbued with Flametongue and an additional 25% weapon damage as Frost when you have a weapon imbued with Frostbrand. After casting Stormstrike your auto-attacks will deal an additional the listed amount power*.0125+1P*.04} Nature damage for 8 seconds.","rankDescriptions":["Your Stormstrike has a 50% chance to deal an additional 25% weapon damage as Fire when you have a weapon imbued with Flametongue and an additional 25% weapon damage as Frost when you have a weapon imbued with Frostbrand. There is a 50% chance after casting Stormstrike that your auto-attacks will deal an additional the listed amount power*.0125+1P*.04} Nature damage for 8 seconds.","Your Stormstrike will deal an additional 25% weapon damage as Fire when you have a weapon imbued with Flametongue and an additional 25% weapon damage as Frost when you have a weapon imbued with Frostbrand. After casting Stormstrike your auto-attacks will deal an additional the listed amount power*.0125+1P*.04} Nature damage for 8 seconds."],"system":"classic"},{"id":"talent-1693","treeId":"shaman-enhancement","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_nature_shamanrage.png","maxRank":1,"name":"Shamanistic Rage","description":"Gives your successful melee attacks a chance to regenerate mana equal to 15% of your attack power. This spell is usable while stunned. Lasts 15 seconds. This ability is usable while Shapeshifted.","rankDescriptions":["Gives your successful melee attacks a chance to regenerate mana equal to 15% of your attack power. This spell is usable while stunned. Lasts 15 seconds. This ability is usable while Shapeshifted."],"system":"classic"},{"id":"talent-2057","treeId":"shaman-enhancement","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/spell_shaman_maelstromweapon.png","maxRank":3,"name":"Maelstrom Weapon","description":"When you deal damage with a melee weapon, you have a chance (greater than previous rank) to reduce the cast time of your next Lightning Bolt, Chain Lightning, Lava Burst, Lesser Healing Wave, Fireball or Frostbolt spell by 20%. Stacks up to 5. Spells cast with Maelstrom Weapon deal 2% reduced damage in PvP combat per stack.","rankDescriptions":["When you deal damage with a melee weapon, you have a chance to reduce the cast time of your next Lightning Bolt, Chain Lightning, Lava Burst, Lesser Healing Wave, Fireball or Frostbolt spell by 20%. Stacks up to 5. Spells cast with Maelstrom Weapon deal 2% reduced damage in PvP combat per stack.","When you deal damage with a melee weapon, you have a chance (greater than previous rank) to reduce the cast time of your next Lightning Bolt, Chain Lightning, Lava Burst, Lesser Healing Wave, Fireball or Frostbolt spell by 20%. Stacks up to 5. Spells cast with Maelstrom Weapon deal 2% reduced damage in PvP combat per stack.","When you deal damage with a melee weapon, you have a chance (greater than previous rank) to reduce the cast time of your next Lightning Bolt, Chain Lightning, Lava Burst, Lesser Healing Wave, Fireball or Frostbolt spell by 20%. Stacks up to 5. Spells cast with Maelstrom Weapon deal 2% reduced damage in PvP combat per stack."],"system":"classic"},{"id":"talent-2058","treeId":"shaman-enhancement","index":29,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/spell_shaman_feralspirit.png","maxRank":1,"name":"Feral Spirit","description":"Summons two Spirit Wolves under the command of the Shaman, lasting 20 seconds. This ability is usable while shapeshifted.","rankDescriptions":["Summons two Spirit Wolves under the command of the Shaman, lasting 20 seconds. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-2101","treeId":"shaman-enhancement","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_stoneclawtotem.png","maxRank":2,"name":"Earth's Grasp","description":"Increases the health of your Stoneclaw Totem by 50% and the radius of your Earthbind Totem by 20%, and reduces the cooldown of both totems by 30%.","rankDescriptions":["Increases the health of your Stoneclaw Totem by 25% and the radius of your Earthbind Totem by 10%, and reduces the cooldown of both totems by 15%.","Increases the health of your Stoneclaw Totem by 50% and the radius of your Earthbind Totem by 20%, and reduces the cooldown of both totems by 30%."],"system":"classic"},{"id":"talent-605","treeId":"shaman-enhancement","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_spiritwolf.png","maxRank":3,"name":"Improved Ghost Wolf","description":"Increases movement speed and reduces damage taken in Ghost Wolf by 10%. Capstone Bonus: Using Ghost Wolf removes all movement impairing effects and increases your speed by 60% for 2 seconds. This can only occur once every 20 seconds.","rankDescriptions":["Increases movement speed and reduces damage taken in Ghost Wolf by 4%. Capstone Bonus: Using Ghost Wolf removes all movement impairing effects and increases your speed by 60% for 2 seconds. This can only occur once every 20 seconds.","Increases movement speed and reduces damage taken in Ghost Wolf by 7%. Capstone Bonus: Using Ghost Wolf removes all movement impairing effects and increases your speed by 60% for 2 seconds. This can only occur once every 20 seconds.","Increases movement speed and reduces damage taken in Ghost Wolf by 10%. Capstone Bonus: Using Ghost Wolf removes all movement impairing effects and increases your speed by 60% for 2 seconds. This can only occur once every 20 seconds."],"system":"classic"},{"id":"talent-614","treeId":"shaman-enhancement","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_grimward.png","maxRank":3,"name":"Ancestral Knowledge","description":"Increases your Intellect by 6%. Reduces the mana cost of your Shaman spells by 10%.","rankDescriptions":["Increases your Intellect by 2%. Reduces the mana cost of your Shaman spells by 4%.","Increases your Intellect by 4%. Reduces the mana cost of your Shaman spells by 7%.","Increases your Intellect by 6%. Reduces the mana cost of your Shaman spells by 10%."],"system":"classic"},{"id":"talent-615","treeId":"shaman-enhancement","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_holy_devotion.png","maxRank":3,"name":"Toughness","description":"Reduces the duration of movement slowing effects on you by 30%. Reduces your damage taken while Shamanistic Rage is active by 10%. Capstone Bonus: Reduces your chance to be critically hit by 25% when you are below 35% health.","rankDescriptions":["Reduces the duration of movement slowing effects on you by 10%. Reduces your damage taken while Shamanistic Rage is active by 4%. Capstone Bonus: Reduces your chance to be critically hit by 25% when you are below 35% health.","Reduces the duration of movement slowing effects on you by 20%. Reduces your damage taken while Shamanistic Rage is active by 7%. Capstone Bonus: Reduces your chance to be critically hit by 25% when you are below 35% health.","Reduces the duration of movement slowing effects on you by 30%. Reduces your damage taken while Shamanistic Rage is active by 10%. Capstone Bonus: Reduces your chance to be critically hit by 25% when you are below 35% health."],"system":"classic"},{"id":"talent-617","treeId":"shaman-enhancement","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_elementalabsorption.png","maxRank":3,"name":"Shamanistic Focus","description":"Increases your chance to critically strike with Shaman Shock spells by 6%. Reduces the mana cost of your Shaman Shock spells by 60%. Capstone Bonus: The damage of your Earth Shock, Frost Shock and Flame Shock spells is increased by 12%.","rankDescriptions":["Increases your chance to critically strike with Shaman Shock spells by 2%. Reduces the mana cost of your Shaman Shock spells by 20%. Capstone Bonus: The damage of your Earth Shock, Frost Shock and Flame Shock spells is increased by 12%.","Increases your chance to critically strike with Shaman Shock spells by 4%. Reduces the mana cost of your Shaman Shock spells by 40%. Capstone Bonus: The damage of your Earth Shock, Frost Shock and Flame Shock spells is increased by 12%.","Increases your chance to critically strike with Shaman Shock spells by 6%. Reduces the mana cost of your Shaman Shock spells by 60%. Capstone Bonus: The damage of your Earth Shock, Frost Shock and Flame Shock spells is increased by 12%."],"system":"classic"},{"id":"talent-901","treeId":"shaman-enhancement","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_shaman_stormstrike.png","maxRank":1,"name":"Stormstrike","description":"Instantly attack with both weapons for 100% weapon damage.","rankDescriptions":["Instantly attack with both weapons for 100% weapon damage."],"system":"classic"},{"id":"talent-1643","treeId":"shaman-enhancement","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/ability_hunter_swiftstrike.png","maxRank":3,"name":"Enhanced Weapon Mastery","description":"Increases all damage done by 3%. Increases the critical strike chance of your Stormstrike, Lava Lash, Flametongue Weapon, Frostbrand Weapon and Sundering by 10%.","rankDescriptions":["Increases all damage done by 1%. Increases the critical strike chance of your Stormstrike, Lava Lash, Flametongue Weapon, Frostbrand Weapon and Sundering by 4%.","Increases all damage done by 2%. Increases the critical strike chance of your Stormstrike, Lava Lash, Flametongue Weapon, Frostbrand Weapon and Sundering by 7%.","Increases all damage done by 3%. Increases the critical strike chance of your Stormstrike, Lava Lash, Flametongue Weapon, Frostbrand Weapon and Sundering by 10%."],"system":"classic"},{"id":"talent-2054","treeId":"shaman-enhancement","index":24,"prerequisiteId":"talent-901","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-901","requiredRank":1}],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_shaman_improvedstormstrike.png","maxRank":2,"name":"Improved Stormstrike","description":"When you Stormstrike, you have a 100% chance to immediately grant you 20% of your base mana and to increase the Nature, Fire and Frost damage your target takes from you by 10% for 6 seconds.","rankDescriptions":["When you Stormstrike, you have a 50% chance to immediately grant you 20% of your base mana and to increase the Nature, Fire and Frost damage your target takes from you by 10% for 6 seconds.","When you Stormstrike, you have a 100% chance to immediately grant you 20% of your base mana and to increase the Nature, Fire and Frost damage your target takes from you by 10% for 6 seconds."],"system":"classic"},{"id":"talent-2056","treeId":"shaman-enhancement","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/spell_nature_earthelemental_totem.png","maxRank":3,"name":"Earthen Power","description":"Using Earthbind Totem has a 100% chance to remove all slow effects from you and nearby friendly targets. Your Earth Shock reduces enemy attack speed by an additional 10%.","rankDescriptions":["Using Earthbind Totem has a 33% chance to remove all slow effects from you and nearby friendly targets. Your Earth Shock reduces enemy attack speed by an additional 3.3%.","Using Earthbind Totem has a 66% chance to remove all slow effects from you and nearby friendly targets. Your Earth Shock reduces enemy attack speed by an additional 6.6%.","Using Earthbind Totem has a 100% chance to remove all slow effects from you and nearby friendly targets. Your Earth Shock reduces enemy attack speed by an additional 10%."],"system":"classic"},{"id":"talent-2083","treeId":"shaman-enhancement","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_nature_bloodlust.png","maxRank":3,"name":"Mental Dexterity","description":"@req:300036@ Increases your hit rating by 15% of your Intellect. Capstone Bonus: You gain an additional 10% of your Intellect as melee critical strike rating and 10% of your Agility as spell critical strike rating.","rankDescriptions":["@req:300036@ Increases your hit rating by 5% of your Intellect. Capstone Bonus: You gain an additional 10% of your Intellect as melee critical strike rating and 10% of your Agility as spell critical strike rating.","@req:300036@ Increases your hit rating by 10% of your Intellect. Capstone Bonus: You gain an additional 10% of your Intellect as melee critical strike rating and 10% of your Agility as spell critical strike rating.","@req:300036@ Increases your hit rating by 15% of your Intellect. Capstone Bonus: You gain an additional 10% of your Intellect as melee critical strike rating and 10% of your Agility as spell critical strike rating."],"system":"classic"},{"id":"talent-601","treeId":"shaman-enhancement","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_mirrorimage.png","maxRank":3,"name":"Ghostlike Reflexes","description":"Reduces your chance to be critically hit in melee by 3%. Reduces the duration of all Disarm effects used against you by 30%. This does not stack with other Disarm duration reducing effects.","rankDescriptions":["Reduces your chance to be critically hit in melee by 1%. Reduces the duration of all Disarm effects used against you by 10%. This does not stack with other Disarm duration reducing effects.","Reduces your chance to be critically hit in melee by 2%. Reduces the duration of all Disarm effects used against you by 20%. This does not stack with other Disarm duration reducing effects.","Reduces your chance to be critically hit in melee by 3%. Reduces the duration of all Disarm effects used against you by 30%. This does not stack with other Disarm duration reducing effects."],"system":"classic"},{"id":"talent-607","treeId":"shaman-enhancement","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_lightningshield.png","maxRank":3,"name":"Improved Shields","description":"Increases the damage done by your Lightning Shield orbs by 60%( 30% vs players) Increases the amount of mana gained from your Water Shield orbs by 15%. Increases the amount of healing done by your Earth Shield orbs by 15%.","rankDescriptions":["Increases the damage done by your Lightning Shield orbs by 20%( 10% vs players) Increases the amount of mana gained from your Water Shield orbs by 5%. Increases the amount of healing done by your Earth Shield orbs by 5%.","Increases the damage done by your Lightning Shield orbs by 40%( 20% vs players) Increases the amount of mana gained from your Water Shield orbs by 10%. Increases the amount of healing done by your Earth Shield orbs by 10%.","Increases the damage done by your Lightning Shield orbs by 60%( 30% vs players) Increases the amount of mana gained from your Water Shield orbs by 15%. Increases the amount of healing done by your Earth Shield orbs by 15%."],"system":"classic"},{"id":"talent-2263","treeId":"shaman-enhancement","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/talents/icons/spell_fire_bluecano.png","maxRank":3,"name":"Frozen Power","description":"Increase your Frost, Fire and Nature damage done by 9% on targets affected by your Frostbrand. Your Frost Shock and Elemental Blast has a 100% chance to freeze the target for 3 seconds. when used on targets at or further than 15 yards from you. This effect can only occur every 10 seconds.","rankDescriptions":["Increase your Frost, Fire and Nature damage done by 3% on targets affected by your Frostbrand. Your Frost Shock and Elemental Blast has a 33% chance to freeze the target for 3 seconds. when used on targets at or further than 15 yards from you. This effect can only occur every 10 seconds.","Increase your Frost, Fire and Nature damage done by 6% on targets affected by your Frostbrand. Your Frost Shock and Elemental Blast has a 66% chance to freeze the target for 3 seconds. when used on targets at or further than 15 yards from you. This effect can only occur every 10 seconds.","Increase your Frost, Fire and Nature damage done by 9% on targets affected by your Frostbrand. Your Frost Shock and Elemental Blast has a 100% chance to freeze the target for 3 seconds. when used on targets at or further than 15 yards from you. This effect can only occur every 10 seconds."],"system":"classic"}]} diff --git a/src/game/generated/talentUi/starcaller.json b/src/game/generated/talentUi/starcaller.json new file mode 100644 index 00000000..e4221207 --- /dev/null +++ b/src/game/generated/talentUi/starcaller.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"starcaller","trees":[{"id":"coa-starcaller-67","classId":"starcaller","name":"Moon Guard","icon":"/assets/ui/spells/ability_argus_soulburst.png","background":"","description":"Moon Guard nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-starcaller-69","classId":"starcaller","name":"Sentinel","icon":"/assets/ui/spells/_arcaneshot_lightblue.png","background":"","description":"Sentinel nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-starcaller-68","classId":"starcaller","name":"Moon Priest","icon":"/assets/ui/spells/achievement_leader_tyrande_whisperwind.png","background":"","description":"Moon Priest nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-starcaller-89","classId":"starcaller","name":"Warden","icon":"/assets/ui/spells/_fanofknives_lightblue.png","background":"","description":"Warden nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-starcaller-87","classId":"starcaller","name":"Class","icon":"/assets/ui/spells/spell_nature_moonglow.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-29896","treeId":"coa-starcaller-67","index":29896,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/ability_argus_soulburst.png","maxRank":1,"name":"Starburst","description":"Applies 1 Scattered Star Per Hit Smash up to 8 enemies, dealing 2 + 30% arcane SP + 15% AP Arcane damage, scaling with block value and maximum mana and reducing their attack speed by -20% for 10 seconds. Consuming a Scattered Star reduces the remaining cooldown of Starburst by -2 sec.","rankDescriptions":["Applies 1 Scattered Star Per Hit Smash up to 8 enemies, dealing 2 + 30% arcane SP + 15% AP Arcane damage, scaling with block value and maximum mana and reducing their attack speed by -20% for 10 seconds. Consuming a Scattered Star reduces the remaining cooldown of Starburst by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4043","treeId":"coa-starcaller-67","index":4043,"prerequisiteId":"coa-entry-29642","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29642","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/artifactability_balancedruid_newmoon.png","maxRank":1,"name":"Moon Guard","description":"Level 10 Passive You now gain Intellect equal to your Strength.","rankDescriptions":["Level 10 Passive You now gain Intellect equal to your Strength."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-29656","treeId":"coa-starcaller-67","index":29656,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/inv_cosmicvoid_orb.png","maxRank":1,"name":"Blanket of Stars","description":"Cover your shield in a blanket of stars for 8 seconds, increasing your block chance and block value by 100%.","rankDescriptions":["Cover your shield in a blanket of stars for 8 seconds, increasing your block chance and block value by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30665","treeId":"coa-starcaller-67","index":30665,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/inv_sword_1h_warfrontsnightelf_d_01.png","maxRank":1,"name":"Starsweep","description":"Consumes Scattered Stars Sweep an enemy and all nearby enemies with your astral blade, dealing 30 + 30% AP + 35% SP Arcane damage. Every Scattered Star consumed reduces the cooldown of this spell by -3 sec.Consume Scattered StarsDeals 7 + 18.22% SP Arcane Damage and restores 8% maximum mana for each Scattered Star.","rankDescriptions":["Consumes Scattered Stars Sweep an enemy and all nearby enemies with your astral blade, dealing 30 + 30% AP + 35% SP Arcane damage. Every Scattered Star consumed reduces the cooldown of this spell by -3 sec.Consume Scattered StarsDeals 7 + 18.22% SP Arcane Damage and restores 8% maximum mana for each Scattered Star."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29651","treeId":"coa-starcaller-67","index":29651,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/spell_arcane_arcane01.png","maxRank":1,"name":"Improved Eclipse of Fury","description":"Increases the effectiveness of Eclipse of Fury by 40%.","rankDescriptions":["Increases the effectiveness of Eclipse of Fury by 40%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6770","treeId":"coa-starcaller-67","index":6770,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_jewelcrafting_starofelune_02.png","maxRank":2,"name":"Moonstone Hilt","description":"Increases your parry chance by 5% and block value by 30%.","rankDescriptions":["Increases your parry chance by 2% and block value by 15%.","Increases your parry chance by 5% and block value by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33858","treeId":"coa-starcaller-67","index":33858,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/nhi_manashield_border.png","maxRank":1,"name":"Nebula","description":"Blocking enemy attacks now applies Scattered Stars to the attacker.","rankDescriptions":["Blocking enemy attacks now applies Scattered Stars to the attacker."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9245","treeId":"coa-starcaller-67","index":9245,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/_d3arcaneorb.png","maxRank":1,"name":"Asteroid Belt","description":"Level 20 Passive Every 15 sec, you now gain Asteroid Belt. In addition, your hit rating is increased by 5% of your Intellect and your expertise is increased by 8.Asteroid BeltBlock rating, parry rating, and block value increased based on how much mana you had when this was applied for 15 seconds.","rankDescriptions":["Level 20 Passive Every 15 sec, you now gain Asteroid Belt. In addition, your hit rating is increased by 5% of your Intellect and your expertise is increased by 8.Asteroid BeltBlock rating, parry rating, and block value increased based on how much mana you had when this was applied for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7701","treeId":"coa-starcaller-67","index":7701,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/spells/inv_helm_mask_fittedalpha_b_01_nightborne_02.png","maxRank":1,"name":"Dance In The Starlight","description":"Reduces the cooldown of Blanket of Stars by -10 sec.","rankDescriptions":["Reduces the cooldown of Blanket of Stars by -10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29641","treeId":"coa-starcaller-67","index":29641,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_staff_2h_artifactelune_d_06.png","maxRank":1,"name":"Starlit Finesse","description":"Increases your hit and critical strike chance by 3%.","rankDescriptions":["Increases your hit and critical strike chance by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7703","treeId":"coa-starcaller-67","index":7703,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":4,"icon":"/assets/ui/spells/achievement_faction_celestials.png","maxRank":1,"name":"Celestial Divination","description":"Increases your chance to dodge by 5%.","rankDescriptions":["Increases your chance to dodge by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33856","treeId":"coa-starcaller-67","index":33856,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_weapon_shortblade_79.png","maxRank":1,"name":"Tyrande's Guidance","description":"Increases the critical strike chance of your Starburst by 10%.","rankDescriptions":["Increases the critical strike chance of your Starburst by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30239","treeId":"coa-starcaller-67","index":30239,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_cosmicvoid_buff.png","maxRank":1,"name":"Astral Reconstitution","description":"Surround yourself with lunar light, causing 30% of damage taken to be converted into mana for 10 seconds.","rankDescriptions":["Surround yourself with lunar light, causing 30% of damage taken to be converted into mana for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7704","treeId":"coa-starcaller-67","index":7704,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/5_moon_border.png","maxRank":1,"name":"Moonflares","description":"Avoiding melee attacks will call down a Moonflare at the attacker, dealing 66 Arcane damage. Can occur only once per second.","rankDescriptions":["Avoiding melee attacks will call down a Moonflare at the attacker, dealing 66 Arcane damage. Can occur only once per second."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9247","treeId":"coa-starcaller-67","index":9247,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_staff_2h_artifactheartofkure_d_01.png","maxRank":1,"name":"Crystal Shield","description":"Level 30 Passive Increases your Stamina by 10% and increases your spell damage by 25% of your attack power.","rankDescriptions":["Level 30 Passive Increases your Stamina by 10% and increases your spell damage by 25% of your attack power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-33851","treeId":"coa-starcaller-67","index":33851,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_staff_2h_warfrontsnightelf_d_01.png","maxRank":1,"name":"Starcovered Night","description":"Increases the duration of Blanket of Stars by 4 sec.","rankDescriptions":["Increases the duration of Blanket of Stars by 4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33855","treeId":"coa-starcaller-67","index":33855,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_sword_121.png","maxRank":2,"name":"Pulsar Explosion","description":"Increases the damage of Celestial Cleave by 20% and allows it to affect 2 additional enemies.","rankDescriptions":["Increases the damage of Celestial Cleave by 10% and allows it to affect 1 additional enemies.","Increases the damage of Celestial Cleave by 20% and allows it to affect 2 additional enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33799","treeId":"coa-starcaller-67","index":33799,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_holy_elunesgrace.png","maxRank":1,"name":"Shrouded Stars","description":"Reduces damage taken by all party and raid members by -3%. Does not stack with similar effects.","rankDescriptions":["Reduces damage taken by all party and raid members by -3%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33848","treeId":"coa-starcaller-67","index":33848,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/spell_nature_moonglow.png","maxRank":1,"name":"Moonveil Screen","description":"Increases the damage of Starsunder and Moonflare by 20%.","rankDescriptions":["Increases the damage of Starsunder and Moonflare by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7702","treeId":"coa-starcaller-67","index":7702,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/inv_staff_2h_artifactelune_d_01.png","maxRank":1,"name":"Blade of the Moon","description":"Consuming Scattered Stars now has a 15% chance to transform Celestial Strike into Moonblade for 8 seconds.MoonbladeDevastate an enemy, dealing 130% Weapon Damage plus 100% Intellect Arcane damage and regenerating 15% missing mana.","rankDescriptions":["Consuming Scattered Stars now has a 15% chance to transform Celestial Strike into Moonblade for 8 seconds.MoonbladeDevastate an enemy, dealing 130% Weapon Damage plus 100% Intellect Arcane damage and regenerating 15% missing mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33857","treeId":"coa-starcaller-67","index":33857,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_shadow_manaburn.png","maxRank":1,"name":"Starburst Invigoration","description":"Increases your Energy regeneration by 15%.","rankDescriptions":["Increases your Energy regeneration by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7713","treeId":"coa-starcaller-67","index":7713,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/inv_jewelcrafting_70_cutgem03_blue.png","maxRank":2,"name":"Cosmic Crown","description":"Increases the duration of Aegis spells by 6 sec.","rankDescriptions":["Increases the duration of Aegis spells by 3 sec.","Increases the duration of Aegis spells by 6 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29895","treeId":"coa-starcaller-67","index":29895,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/ability_racial_magicalresistance.png","maxRank":1,"name":"Enduring Moon","description":"Critical strikes now increase the target's spell damage taken by 10% for 15 seconds.","rankDescriptions":["Critical strikes now increase the target's spell damage taken by 10% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30241","treeId":"coa-starcaller-67","index":30241,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/achievement_thenighthold_highbotanisttelam.png","maxRank":1,"name":"Vengeful Inspiration","description":"Increases your attack speed by 10% and causes critical strikes with melee attacks to apply a Scattered Star.","rankDescriptions":["Increases your attack speed by 10% and causes critical strikes with melee attacks to apply a Scattered Star."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9248","treeId":"coa-starcaller-67","index":9248,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_nightborneracialmount.png","maxRank":1,"name":"Celestial Guard","description":"Level 40 Passive Increases the effectiveness of consuming Scattered Stars by 50%.","rankDescriptions":["Level 40 Passive Increases the effectiveness of consuming Scattered Stars by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-7027","treeId":"coa-starcaller-67","index":7027,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_helm_cloth_warfrontsnightelfmythic_d_01.png","maxRank":1,"name":"Will of Elune","description":"Damage dealt by Aspect of the Stars now strikes 2 additional nearby enemies.","rankDescriptions":["Damage dealt by Aspect of the Stars now strikes 2 additional nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7706","treeId":"coa-starcaller-67","index":7706,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/ability_socererking_arcanereplication.png","maxRank":1,"name":"Starbound","description":"Increases your healing done and received by 10%, doubled while below 20% health.","rankDescriptions":["Increases your healing done and received by 10%, doubled while below 20% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30654","treeId":"coa-starcaller-67","index":30654,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/spell_arcane_arcaneresilience.png","maxRank":1,"name":"Enchanted Aegis","description":"Your successful blocks now have a 50% chance to critically block for twice the normal amount.","rankDescriptions":["Your successful blocks now have a 50% chance to critically block for twice the normal amount."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7707","treeId":"coa-starcaller-67","index":7707,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_sword_1h_artifactfelomelorn_d_06.png","maxRank":1,"name":"Starlight Duelist","description":"Blocking or parrying an attack now increases your damage dealt by 10% for 6 seconds.","rankDescriptions":["Blocking or parrying an attack now increases your damage dealt by 10% for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7705","treeId":"coa-starcaller-67","index":7705,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_belt_armor_nightborne_d_01.png","maxRank":1,"name":"Coalesced Resilience","description":"Reduces your damage taken by an amount equal to 1% of your maximum mana.","rankDescriptions":["Reduces your damage taken by an amount equal to 1% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7712","treeId":"coa-starcaller-67","index":7712,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_gizmo_manasyphon.png","maxRank":1,"name":"Font of Magic","description":"Each time you spend a cumulative 100% of your maximum mana, you heal for 4% of your maximum health.","rankDescriptions":["Each time you spend a cumulative 100% of your maximum mana, you heal for 4% of your maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7715","treeId":"coa-starcaller-67","index":7715,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_helm_plate_raiddeathknight_s_01.png","maxRank":1,"name":"Lunar Knight","description":"Increases the damage of your Moonblade and Starsweep by 50% and their chance to critically strike by 20%.","rankDescriptions":["Increases the damage of your Moonblade and Starsweep by 50% and their chance to critically strike by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13248","treeId":"coa-starcaller-67","index":13248,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_arcane_starfire.png","maxRank":1,"name":"Dancing in the Moonlight","description":"Level 50 Passive Parrying an attack now regenerates 15 of your Energy and deals 65% Weapon Damage to the attacker.","rankDescriptions":["Level 50 Passive Parrying an attack now regenerates 15 of your Energy and deals 65% Weapon Damage to the attacker."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7717","treeId":"coa-starcaller-67","index":7717,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/inv_helm_plate_kthirrelic_d_01.png","maxRank":1,"name":"Chosen of the Moon","description":"Become the chosen of the moon, reducing all Physical damage taken by -60% and taunting all enemies within 8 yds for 10 seconds.","rankDescriptions":["Become the chosen of the moon, reducing all Physical damage taken by -60% and taunting all enemies within 8 yds for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19699","treeId":"coa-starcaller-67","index":19699,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_argus_blightorb.png","maxRank":1,"name":"Moonlit Bulwark","description":"Grants you a shield for an amount equal to your maximum mana for 10 seconds. Usable while stunned.","rankDescriptions":["Grants you a shield for an amount equal to your maximum mana for 10 seconds. Usable while stunned."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30240","treeId":"coa-starcaller-67","index":30240,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_sword_2h_warfrontsnightelf_d_01.png","maxRank":1,"name":"Mooncharged Blades","description":"Blocking an attack allows your next Starsunder to hit an additional nearby enemy and cost -30% less mana.","rankDescriptions":["Blocking an attack allows your next Starsunder to hit an additional nearby enemy and cost -30% less mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6641","treeId":"coa-starcaller-68","index":6641,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/achievement_leader_tyrande_whisperwind.png","maxRank":1,"name":"Aspect of the Goddess","description":"While active, your healing done is increased by 10% and your spells and abilities will not be able to miss. In addition, consuming Scattered Stars now heals up to 5 allies around the target for 58 + 11.98% healing.","rankDescriptions":["While active, your healing done is increased by 10% and your spells and abilities will not be able to miss. In addition, consuming Scattered Stars now heals up to 5 allies around the target for 58 + 11.98% healing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4045","treeId":"coa-starcaller-68","index":4045,"prerequisiteId":"coa-entry-31067","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-31067","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicmoonbuff_border.png","maxRank":1,"name":"Moon Priest","description":"Level 10 Passive Your Huntress Shot now has a Lunar Eclipse effect. Huntress Shot: Applies 2 additional Scattered Stars.","rankDescriptions":["Level 10 Passive Your Huntress Shot now has a Lunar Eclipse effect. Huntress Shot: Applies 2 additional Scattered Stars."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-9254","treeId":"coa-starcaller-68","index":9254,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/spell_animaardenweald_missile.png","maxRank":1,"name":"Moonflow","description":"Send forth moonwell waters to all nearby party and raid members, healing them for 49 + 18.29% healing. Lunar Eclipse: Triggers with no cooldown and consumes Scattered Stars from enemies you are in combat with within 40 yds.Consume Scattered StarsDeals 7 + 18.22% SP Arcane Damage and restores 8% maximum mana for each Scattered Star.","rankDescriptions":["Send forth moonwell waters to all nearby party and raid members, healing them for 49 + 18.29% healing. Lunar Eclipse: Triggers with no cooldown and consumes Scattered Stars from enemies you are in combat with within 40 yds.Consume Scattered StarsDeals 7 + 18.22% SP Arcane Damage and restores 8% maximum mana for each Scattered Star."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12126","treeId":"coa-starcaller-68","index":12126,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_staff_2h_warfrontsnightelf_d_01.png","maxRank":2,"name":"Lunar Blessing","description":"Increases your healing done by 6%, plus an additional 6% on Poisoned or Diseased targets.","rankDescriptions":["Increases your healing done by 3%, plus an additional 3% on Poisoned or Diseased targets.","Increases your healing done by 6%, plus an additional 6% on Poisoned or Diseased targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29891","treeId":"coa-starcaller-68","index":29891,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/spell_animaardenweald_orb.png","maxRank":1,"name":"Prayer of Elune","description":"Say a prayer to Elune, healing up to 12 allies within 40 yds for 62 + 22.06% healing, and dispel 1 harmful magic effect from them.","rankDescriptions":["Say a prayer to Elune, healing up to 12 allies within 40 yds for 62 + 22.06% healing, and dispel 1 harmful magic effect from them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29490","treeId":"coa-starcaller-68","index":29490,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/ability_ardenweald_hunter.png","maxRank":1,"name":"Lunar Resplendence","description":"Increases your healing done to allies below 20% health by 30%.","rankDescriptions":["Increases your healing done to allies below 20% health by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9241","treeId":"coa-starcaller-68","index":9241,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/5_archerskill42_border.png","maxRank":1,"name":"Celestial Mind","description":"Level 20 Passive You now passively gain 1 stack of Lunar Phase 1 sec faster.","rankDescriptions":["Level 20 Passive You now passively gain 1 stack of Lunar Phase 1 sec faster."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-33814","treeId":"coa-starcaller-68","index":33814,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/inv_weapon_bow_44.png","maxRank":1,"name":"Lunar Swiftness","description":"Moon Arrow now reduces the cast time of the next Hand of Elune within 8 seconds by -20%, stacking 5 times.","rankDescriptions":["Moon Arrow now reduces the cast time of the next Hand of Elune within 8 seconds by -20%, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7742","treeId":"coa-starcaller-68","index":7742,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/artifactability_balancedruid_newmoon.png","maxRank":1,"name":"Eclipsing Arrows","description":"Healing done by Hand of Elune or Touch of Moonlight now marks allies for 20 seconds. Casting Huntress Shot now heals marked allies for 188 + 24% SP.","rankDescriptions":["Healing done by Hand of Elune or Touch of Moonlight now marks allies for 20 seconds. Casting Huntress Shot now heals marked allies for 188 + 24% SP."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29645","treeId":"coa-starcaller-68","index":29645,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_scroll_02.png","maxRank":2,"name":"Enchanted Water","description":"Increases the healing of Touch of Moonlight by 20% and reduces spell pushback suffered from damaging attacks by 70%.","rankDescriptions":["Increases the healing of Touch of Moonlight by 10% and reduces spell pushback suffered from damaging attacks by 35%.","Increases the healing of Touch of Moonlight by 20% and reduces spell pushback suffered from damaging attacks by 70%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5112","treeId":"coa-starcaller-68","index":5112,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/spell_nature_sleep.png","maxRank":1,"name":"Moonlit Slumber","description":"Put an enemy to sleep for 30 seconds (6 sec vs players). Damage dealt will end the effect. While sleeping, you drain 98 mana from them every 3 sec.","rankDescriptions":["Put an enemy to sleep for 30 seconds (6 sec vs players). Damage dealt will end the effect. While sleeping, you drain 98 mana from them every 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33807","treeId":"coa-starcaller-68","index":33807,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/spell_nature_purge.png","maxRank":1,"name":"Lunar Revelation","description":"Increases the critical strike chance of Moonflow by 10%.","rankDescriptions":["Increases the critical strike chance of Moonflow by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31287","treeId":"coa-starcaller-68","index":31287,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_ardenweald_druid.png","maxRank":1,"name":"Stellar Convergence","description":"Applies Eclipsing Arrows to all party and raid members within 40 yds.","rankDescriptions":["Applies Eclipsing Arrows to all party and raid members within 40 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6758","treeId":"coa-starcaller-68","index":6758,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_ability_eluneschosendruid_boundlessmoonlight.png","maxRank":1,"name":"Goddess Watch Over","description":"Increases the effectiveness of Aspect of the Goddess by 25%.","rankDescriptions":["Increases the effectiveness of Aspect of the Goddess by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7743","treeId":"coa-starcaller-68","index":7743,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/artifactability_balancedruid_halfmoon.png","maxRank":1,"name":"Cycle of the Moon","description":"Every 10 seconds, you cycle between Full Moon and New Moon.Full MoonIncreases your critical strike chance by 5%.New MoonDamage dealt has a 25% chance to apply Scattered Stars.","rankDescriptions":["Every 10 seconds, you cycle between Full Moon and New Moon.Full MoonIncreases your critical strike chance by 5%.New MoonDamage dealt has a 25% chance to apply Scattered Stars."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33816","treeId":"coa-starcaller-68","index":33816,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/world_marker_moon.png","maxRank":1,"name":"Moonwell Acuity","description":"Level 30 Passive The Lunar Eclipse effect of Moonwell Splash now causes it to affect 3 targets.","rankDescriptions":["Level 30 Passive The Lunar Eclipse effect of Moonwell Splash now causes it to affect 3 targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-33787","treeId":"coa-starcaller-68","index":33787,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/spell_animaardenweald_nova.png","maxRank":1,"name":"Tear Drops","description":"Healing through Aspect of the Goddess now increases the target's healing taken from you by 1% for 10 sec, stacking up to 10 times.","rankDescriptions":["Healing through Aspect of the Goddess now increases the target's healing taken from you by 1% for 10 sec, stacking up to 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29467","treeId":"coa-starcaller-68","index":29467,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_icewave_border.png","maxRank":1,"name":"Rapid Cycle","description":"Lunar Phase now increases your ranged haste by 4% per stack.","rankDescriptions":["Lunar Phase now increases your ranged haste by 4% per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19886","treeId":"coa-starcaller-68","index":19886,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_holy_prayerofspirit.png","maxRank":1,"name":"Last Prayer","description":"Casting Stellar Convergence now resets the cooldown of Prayer of Elune.","rankDescriptions":["Casting Stellar Convergence now resets the cooldown of Prayer of Elune."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29886","treeId":"coa-starcaller-68","index":29886,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/achievement_dungeon_throne_of_the_tides.png","maxRank":1,"name":"Mending Surge","description":"Reduces the cooldown of Stellar Convergence by -30 sec.","rankDescriptions":["Reduces the cooldown of Stellar Convergence by -30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33822","treeId":"coa-starcaller-68","index":33822,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/ability_druid_lunarguidance.png","maxRank":1,"name":"Lunar Prophecy","description":"Casting Moon Arrow now reduces the cooldown of Prayer of Elune by -3 sec.","rankDescriptions":["Casting Moon Arrow now reduces the cooldown of Prayer of Elune by -3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29892","treeId":"coa-starcaller-68","index":29892,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_fabric_moonrag_02.png","maxRank":2,"name":"Teachings of Elune","description":"Increases the healing of Hand of Elune and Moonflow by 20%.","rankDescriptions":["Increases the healing of Hand of Elune and Moonflow by 10%.","Increases the healing of Hand of Elune and Moonflow by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29462","treeId":"coa-starcaller-68","index":29462,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_staff_2h_humanpriest_c_01.png","maxRank":1,"name":"Blessed By The Stars","description":"Your ranged damage dealt now has a 15% chance to unleash a Scattered Star.","rankDescriptions":["Your ranged damage dealt now has a 15% chance to unleash a Scattered Star."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33815","treeId":"coa-starcaller-68","index":33815,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/trade_archaeology_tyrandesfavoritedoll.png","maxRank":1,"name":"Elune's Grace","description":"Critical heals with Hand of Elune now increase the target's armor by 10% for 10 seconds.","rankDescriptions":["Critical heals with Hand of Elune now increase the target's armor by 10% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33800","treeId":"coa-starcaller-68","index":33800,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_fabric_moonrag_01.png","maxRank":1,"name":"Healing Prayers","description":"Prayer of Elune gains an additional 20% of your bonus healing effects.","rankDescriptions":["Prayer of Elune gains an additional 20% of your bonus healing effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7744","treeId":"coa-starcaller-68","index":7744,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/spell_arcane_arcane02.png","maxRank":1,"name":"Phase Guider","description":"Increases the bonus healing scaling of Moonwell Splash and the healing done through Aspect of the Goddess by 20%.","rankDescriptions":["Increases the bonus healing scaling of Moonwell Splash and the healing done through Aspect of the Goddess by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-32655","treeId":"coa-starcaller-68","index":32655,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/ability_shaman_ancestralguidance.png","maxRank":1,"name":"Full Cycle","description":"Hand of Elune gains the following Full Moon and New Moon effects. Full Moon: Healing increased by 10%. New Moon: Cost reduced by -10%.","rankDescriptions":["Hand of Elune gains the following Full Moon and New Moon effects. Full Moon: Healing increased by 10%. New Moon: Cost reduced by -10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11013","treeId":"coa-starcaller-68","index":11013,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/5_druideskill11_border.png","maxRank":1,"name":"Moon Gazing","description":"Level 40 Passive Your critical strikes now generate a stack of Lunar Phase. Can only occur once per sec.","rankDescriptions":["Level 40 Passive Your critical strikes now generate a stack of Lunar Phase. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-5753","treeId":"coa-starcaller-68","index":5753,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/custom_t_waterbomb_border.png","maxRank":1,"name":"Elune's Favor","description":"Hand of Elune and Touch of Moonlight now heal for an additional 50% of their value over 10 seconds.","rankDescriptions":["Hand of Elune and Touch of Moonlight now heal for an additional 50% of their value over 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29452","treeId":"coa-starcaller-68","index":29452,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/spell_frost_chillingblast.png","maxRank":1,"name":"Enchanted Stream","description":"Increases the critical healing of Hand of Elune and Moonflow by 15%.","rankDescriptions":["Increases the critical healing of Hand of Elune and Moonflow by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33817","treeId":"coa-starcaller-68","index":33817,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/inv_elemental_mote_water01.png","maxRank":1,"name":"Flow of Waters","description":"Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your critical strike chance by 3%.","rankDescriptions":["Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your critical strike chance by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6812","treeId":"coa-starcaller-68","index":6812,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/spell_nature_moonglow.png","maxRank":1,"name":"Final Prayer","description":"Your Prayer of Elune now dispels 1 additional effect.","rankDescriptions":["Your Prayer of Elune now dispels 1 additional effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6689","treeId":"coa-starcaller-68","index":6689,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/ability_hunter_displacement.png","maxRank":1,"name":"Cosmic Shift","description":"Shift the target ally out of the physical plane, granting improved stealth for 10 seconds. Does not break on damage taken.","rankDescriptions":["Shift the target ally out of the physical plane, granting improved stealth for 10 seconds. Does not break on damage taken."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33808","treeId":"coa-starcaller-68","index":33808,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/nhi_icewaterblast_border.png","maxRank":1,"name":"Rampaging Waters","description":"Damage dealt by Scattered Stars now increases your healing by 1% and critical strike chance by 1% for 10 seconds, stacking 10 times.","rankDescriptions":["Damage dealt by Scattered Stars now increases your healing by 1% and critical strike chance by 1% for 10 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29663","treeId":"coa-starcaller-68","index":29663,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_weapon_hand_18.png","maxRank":1,"name":"Lunar Cascade","description":"Critical strikes with Moonflow and Prayer of Elune now apply Eclipsing Arrows to the target for 20 seconds. Casting Huntress Shot heals marked allies for 235 + 30% SP.","rankDescriptions":["Critical strikes with Moonflow and Prayer of Elune now apply Eclipsing Arrows to the target for 20 seconds. Casting Huntress Shot heals marked allies for 235 + 30% SP."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12253","treeId":"coa-starcaller-68","index":12253,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_frozenmoon_border.png","maxRank":1,"name":"Elune's Blessing","description":"Level 50 Passive Your Hand of Elune now gains an additional 30% of your bonus healing.","rankDescriptions":["Level 50 Passive Your Hand of Elune now gains an additional 30% of your bonus healing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-33790","treeId":"coa-starcaller-68","index":33790,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/spell_nature_wispsplode.png","maxRank":1,"name":"Lunar Phasing","description":"Cosmic Shift now dispels all harmful effects from the target.","rankDescriptions":["Cosmic Shift now dispels all harmful effects from the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6270","treeId":"coa-starcaller-68","index":6270,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/achievement_boss_algalon_01.png","maxRank":1,"name":"Celestial Form","description":"Ascend into a celestial form for 15 seconds, increasing your critical strike chance by 10%. While active, critical strikes now reduce the remaining cooldown of all healing spells by 10% and apply a Scattered Star to your target and up to 4 enemies within 5 yds of them.","rankDescriptions":["Ascend into a celestial form for 15 seconds, increasing your critical strike chance by 10%. While active, critical strikes now reduce the remaining cooldown of all healing spells by 10% and apply a Scattered Star to your target and up to 4 enemies within 5 yds of them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6693","treeId":"coa-starcaller-68","index":6693,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_nature_riptide.png","maxRank":1,"name":"Rippling Moonwater","description":"Your healing effects now apply Moonwater to the target, stacking 5 times.MoonwaterDealing damage will consume a stack to heal you.","rankDescriptions":["Your healing effects now apply Moonwater to the target, stacking 5 times.MoonwaterDealing damage will consume a stack to heal you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30595","treeId":"coa-starcaller-69","index":30595,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/_arcaneshot_lightblue.png","maxRank":1,"name":"Starfire Shot","description":"Consumes Scattered Stars Fire an enchanted arrow, dealing 100% Ranged Weapon Damage plus 62+66+POWER1*0.01 Arcane damage, scaling further based on your maximum mana.Consume Scattered StarsDeals 7 + 18.22% SP Arcane Damage and restores 8% maximum mana for each Scattered Star.","rankDescriptions":["Consumes Scattered Stars Fire an enchanted arrow, dealing 100% Ranged Weapon Damage plus 62+66+POWER1*0.01 Arcane damage, scaling further based on your maximum mana.Consume Scattered StarsDeals 7 + 18.22% SP Arcane Damage and restores 8% maximum mana for each Scattered Star."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4044","treeId":"coa-starcaller-69","index":4044,"prerequisiteId":"coa-entry-7409","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-7409","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/_diablo3_arrowrain_mage.png","maxRank":1,"name":"Huntress Training","description":"Level 10 Passive Increases your haste rating by 8% of your Intellect.","rankDescriptions":["Level 10 Passive Increases your haste rating by 8% of your Intellect."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-33788","treeId":"coa-starcaller-69","index":33788,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/ability_hunter_piercingshots.png","maxRank":2,"name":"Huntress of Elune","description":"Increases your damage dealt by 10% on enemies further than 30 yds.","rankDescriptions":["Increases your damage dealt by 5% on enemies further than 30 yds.","Increases your damage dealt by 10% on enemies further than 30 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33839","treeId":"coa-starcaller-69","index":33839,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/spell_mage_supernova.png","maxRank":2,"name":"Starcrash","description":"Increases the damage dealt by consuming Scattered Stars by 20%.","rankDescriptions":["Increases the damage dealt by consuming Scattered Stars by 10%.","Increases the damage dealt by consuming Scattered Stars by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33804","treeId":"coa-starcaller-69","index":33804,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_bow_1h_auchindoun_d_01.png","maxRank":1,"name":"Drawstring of Elune","description":"Huntress Shot and Starcall apply an additional stack of Scattered Stars and your ranged ability attack range is increased to 50 yds for 20 seconds.","rankDescriptions":["Huntress Shot and Starcall apply an additional stack of Scattered Stars and your ranged ability attack range is increased to 50 yds for 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29488","treeId":"coa-starcaller-69","index":29488,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_archaeology_70_starlightbeacon.png","maxRank":1,"name":"Starcall","description":"Blast the target enemy and all enemies near them with lunar fire that deals 70 + 33% arcane SP Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by -1.5 sec. Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times.","rankDescriptions":["Blast the target enemy and all enemies near them with lunar fire that deals 70 + 33% arcane SP Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by -1.5 sec. Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12142","treeId":"coa-starcaller-69","index":12142,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_frost_iceclaw.png","maxRank":1,"name":"Astral Lancer","description":"Level 20 Passive Increases the critical damage of Lunar Lance by 50%.","rankDescriptions":["Level 20 Passive Increases the critical damage of Lunar Lance by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-13801","treeId":"coa-starcaller-69","index":13801,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/ability_searingarrow.png","maxRank":1,"name":"Tyrande's Training","description":"Increases the critical strike chance and critical damage of Starfire Shot by 10% against Burning targets.","rankDescriptions":["Increases the critical strike chance and critical damage of Starfire Shot by 10% against Burning targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29894","treeId":"coa-starcaller-69","index":29894,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_shoulder_cloth_warfrontsnightelfmythic_d_01.png","maxRank":1,"name":"Exemplary Draw","description":"Moon Arrow deals 20% more damage and increases the target's spell damage taken by 10% for 12 seconds.","rankDescriptions":["Moon Arrow deals 20% more damage and increases the target's spell damage taken by 10% for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33827","treeId":"coa-starcaller-69","index":33827,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/spell_druid_lunarinspiration.png","maxRank":1,"name":"Cascade","description":"Every 8th Scattered Star you consume increases the damage of your next Starcall by 50%.","rankDescriptions":["Every 8th Scattered Star you consume increases the damage of your next Starcall by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30624","treeId":"coa-starcaller-69","index":30624,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/inv_bow_1h_artifactwindrunner_d_03.png","maxRank":1,"name":"Sentinel's Focus","description":"Starfire Shot now has a 20% chance to fire a free Huntress Shot at the target.","rankDescriptions":["Starfire Shot now has a 20% chance to fire a free Huntress Shot at the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7739","treeId":"coa-starcaller-69","index":7739,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/achievement_leader_tyrande_whisperwind.png","maxRank":1,"name":"Tyrande's Vigilance","description":"Reduces the cast time of Starfire Shot by -0.5 sec. Reduces the pushback suffered from damaging attacks while casting ranged abilities by 75%.","rankDescriptions":["Reduces the cast time of Starfire Shot by -0.5 sec. Reduces the pushback suffered from damaging attacks while casting ranged abilities by 75%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6690","treeId":"coa-starcaller-69","index":6690,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/artifactability_balancedruid_fullmoon.png","maxRank":1,"name":"Elune's Blessing","description":"Increases party and raid member's melee and ranged haste by 10%. Does not stack with similar effects.","rankDescriptions":["Increases party and raid member's melee and ranged haste by 10%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8004","treeId":"coa-starcaller-69","index":8004,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/ability_druid_fortifiedbark.png","maxRank":1,"name":"Eye of Elune","description":"Increases your critical strike chance by 5%.","rankDescriptions":["Increases your critical strike chance by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7740","treeId":"coa-starcaller-69","index":7740,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/_nightelf_08.png","maxRank":1,"name":"Ishnu-alah","description":"Moon Arrow restores an additional 4% of your maximum mana.","rankDescriptions":["Moon Arrow restores an additional 4% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4243","treeId":"coa-starcaller-69","index":4243,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/custom_18_moon_nobg_border.png","maxRank":1,"name":"Explosive Moonlight","description":"Level 30 Passive Increases your ranged attack power by 30% of your Intellect and your hit rating by 3% of your Intellect.","rankDescriptions":["Level 30 Passive Increases your ranged attack power by 30% of your Intellect and your hit rating by 3% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-9236","treeId":"coa-starcaller-69","index":9236,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/inv_ammo_arrow_02.png","maxRank":1,"name":"Hunter's Sight","description":"Aspect of the Huntress now increases your chance to hit by 3%.","rankDescriptions":["Aspect of the Huntress now increases your chance to hit by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5203","treeId":"coa-starcaller-69","index":5203,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/trade_archaeology_tyrandesfavoritedoll.png","maxRank":1,"name":"Tyrande's Guidance","description":"Increases the critical damage dealt by Starfire Shot by 20%.","rankDescriptions":["Increases the critical damage dealt by Starfire Shot by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29887","treeId":"coa-starcaller-69","index":29887,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/trueshot.png","maxRank":1,"name":"Trueshot","description":"Drains 20% Maximum Mana 2 Charges, 18 sec recharge Consumes Scattered Stars Fire at your target and enemies near them, dealing Ranged Weapon Damage plus POWER1*0.03+SPA*0.185+40 Arcane damage, scaling with maximum mana. Consume Scattered StarsDeals 7 + 18.22% SP Arcane Damage and restores 8% maximum mana for each Scattered Star.","rankDescriptions":["Drains 20% Maximum Mana 2 Charges, 18 sec recharge Consumes Scattered Stars Fire at your target and enemies near them, dealing Ranged Weapon Damage plus POWER1*0.03+SPA*0.185+40 Arcane damage, scaling with maximum mana. Consume Scattered StarsDeals 7 + 18.22% SP Arcane Damage and restores 8% maximum mana for each Scattered Star."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7256","treeId":"coa-starcaller-69","index":7256,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/spell_arcane_teleportmoonglade.png","maxRank":1,"name":"Omnipresent Moon","description":"Your Lunar Lances now strikes an additional nearby enemy.","rankDescriptions":["Your Lunar Lances now strikes an additional nearby enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8003","treeId":"coa-starcaller-69","index":8003,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/spell_shaman_spiritwalkersgrace.png","maxRank":1,"name":"Cosmic Strides","description":"Aspect of the Cosmos no longer slows enemy movement speed. Instead, your melee and ranged attacks now grant you 5% increased movement speed for 4 seconds, stacking 3 times.","rankDescriptions":["Aspect of the Cosmos no longer slows enemy movement speed. Instead, your melee and ranged attacks now grant you 5% increased movement speed for 4 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33838","treeId":"coa-starcaller-69","index":33838,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_bow_2h_crossbow_panstart_a_01.png","maxRank":1,"name":"Moon Runner","description":"Increases the movement slowing effect of Aspect of the Cosmos by -5% per stack.","rankDescriptions":["Increases the movement slowing effect of Aspect of the Cosmos by -5% per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33803","treeId":"coa-starcaller-69","index":33803,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/ability_hunter_aimedshot.png","maxRank":2,"name":"Enduring Hunt","description":"Reduces the mana cost of Huntress Shot and Trueshot by -30%.","rankDescriptions":["Reduces the mana cost of Huntress Shot and Trueshot by -15%.","Reduces the mana cost of Huntress Shot and Trueshot by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6962","treeId":"coa-starcaller-69","index":6962,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_nature_starfall.png","maxRank":1,"name":"Star-Guided Arrows","description":"Damage dealt by Scattered Stars now has a 25% chance to refresh a charge of Trueshot.","rankDescriptions":["Damage dealt by Scattered Stars now has a 25% chance to refresh a charge of Trueshot."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33837","treeId":"coa-starcaller-69","index":33837,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/spell_holy_magicalsentry.png","maxRank":2,"name":"Celestial Prowess","description":"Increases the critical strike chance of Lunar Lance and Starfire Shot by 10%.","rankDescriptions":["Increases the critical strike chance of Lunar Lance and Starfire Shot by 5%.","Increases the critical strike chance of Lunar Lance and Starfire Shot by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9243","treeId":"coa-starcaller-69","index":9243,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_enchant_dustvision.png","maxRank":1,"name":"Celestial Shot","description":"Level 40 Passive Increases the effectiveness of consuming Scattered Stars by 40%.","rankDescriptions":["Level 40 Passive Increases the effectiveness of consuming Scattered Stars by 40%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-33802","treeId":"coa-starcaller-69","index":33802,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/5_archerskill34_border.png","maxRank":1,"name":"Shattered Stars","description":"Increases the range of Starshatter by 10 yds.","rankDescriptions":["Increases the range of Starshatter by 10 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9889","treeId":"coa-starcaller-69","index":9889,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/inv_misc_herb_arrowbloom.png","maxRank":1,"name":"On The Hunt","description":"Starfire Shot now increases the damage the enemy takes from your Huntress Shot by 10% for 8 seconds, stacking 2 times.","rankDescriptions":["Starfire Shot now increases the damage the enemy takes from your Huntress Shot by 10% for 8 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29646","treeId":"coa-starcaller-69","index":29646,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/arrowsinthenight.png","maxRank":1,"name":"Arrows In The Night","description":"Your Huntress Shots now strike 3 additional enemies and explode with astral energy for 10 seconds, dealing 30 + 8.14% arcane SP + 3% ranged AP Arcane damage. Damage dealt by Starcall reduces the cooldown of this ability by -2 sec.","rankDescriptions":["Your Huntress Shots now strike 3 additional enemies and explode with astral energy for 10 seconds, dealing 30 + 8.14% arcane SP + 3% ranged AP Arcane damage. Damage dealt by Starcall reduces the cooldown of this ability by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7746","treeId":"coa-starcaller-69","index":7746,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicmoonbuff_border.png","maxRank":1,"name":"Lunar Splinters","description":"Increases the damage of consuming Scattered Stars by 10%.","rankDescriptions":["Increases the damage of consuming Scattered Stars by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30663","treeId":"coa-starcaller-69","index":30663,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/_book2motif_moon.png","maxRank":1,"name":"Moonmancer","description":"Reduces the cooldown of Starcall by -50%.","rankDescriptions":["Reduces the cooldown of Starcall by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7410","treeId":"coa-starcaller-69","index":7410,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_weapon_crossbow_18.png","maxRank":1,"name":"Starfire Power","description":"Casting Starfire Shot now has a 20% chance to grant you Drawstring of Elune for 5 sec.Drawstring of Elune (SLS)Huntress Shot and Starcall apply an additional stack of Scattered Stars and your ranged ability attack range is increased to 50 yds.","rankDescriptions":["Casting Starfire Shot now has a 20% chance to grant you Drawstring of Elune for 5 sec.Drawstring of Elune (SLS)Huntress Shot and Starcall apply an additional stack of Scattered Stars and your ranged ability attack range is increased to 50 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30659","treeId":"coa-starcaller-69","index":30659,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/custom_t_foreshadowing_border.png","maxRank":1,"name":"Night Hunter","description":"Reduces the cooldown of Huntress Saber by -60 sec.","rankDescriptions":["Reduces the cooldown of Huntress Saber by -60 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31193","treeId":"coa-starcaller-69","index":31193,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/custom_t_arcaneeclipse_border.png","maxRank":1,"name":"Lunar Amplification","description":"Increases the damage of Trueshot by 25%.","rankDescriptions":["Increases the damage of Trueshot by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13243","treeId":"coa-starcaller-69","index":13243,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_weapon_bow_39.png","maxRank":1,"name":"Lo'sho Amplification","description":"Level 50 Passive Scattered Stars now burn enemy mana equal to 20% of the damage dealt.","rankDescriptions":["Level 50 Passive Scattered Stars now burn enemy mana equal to 20% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7747","treeId":"coa-starcaller-69","index":7747,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/skill_icon_skill3_border.png","maxRank":1,"name":"Starfire Barrage","description":"Every 3rd Starfire Shot transforms your next Starfire Shot into Starfire Barrage.Starfire BarrageFire an enchanted arrow, dealing 100% Ranged Weapon Damage plus 50 + 40% arcane SP Arcane damage on impact, and an additional 50 + 7.5% arcane SP Arcane damage that applies a Scattered Star every 1 sec for 3 seconds. Scales with modifiers to Starfire Shot. Usable while moving.","rankDescriptions":["Every 3rd Starfire Shot transforms your next Starfire Shot into Starfire Barrage.Starfire BarrageFire an enchanted arrow, dealing 100% Ranged Weapon Damage plus 50 + 40% arcane SP Arcane damage on impact, and an additional 50 + 7.5% arcane SP Arcane damage that applies a Scattered Star every 1 sec for 3 seconds. Scales with modifiers to Starfire Shot. Usable while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29653","treeId":"coa-starcaller-69","index":29653,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_spiritualarrow_border.png","maxRank":1,"name":"Arrow of the Goddess","description":"Fire a star-infused arrow hitting enemies in a line, dealing 400% Ranged Weapon Damage plus POWER1*0.45 Arcane damage, scaling with maximum mana and applying Scattered Stars to them.Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times.","rankDescriptions":["Fire a star-infused arrow hitting enemies in a line, dealing 400% Ranged Weapon Damage plus POWER1*0.45 Arcane damage, scaling with maximum mana and applying Scattered Stars to them.Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6316","treeId":"coa-starcaller-69","index":6316,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/spell_frost_wisp.png","maxRank":1,"name":"Unleashed Wisps","description":"Dealing damage with Scattered Stars has a 30% chance to launch a Wisp at your target, dealing 80 + 13.5% arcane SP Arcane damage to nearby enemies.","rankDescriptions":["Dealing damage with Scattered Stars has a 30% chance to launch a Wisp at your target, dealing 80 + 13.5% arcane SP Arcane damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31067","treeId":"coa-starcaller-87","index":31067,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/spells/spell_nature_moonglow.png","maxRank":1,"name":"Touch of Moonlight","description":"Drains 10% Maximum Mana Quickly heal an ally with Elune's touch, scaling with maximum mana.","rankDescriptions":["Drains 10% Maximum Mana Quickly heal an ally with Elune's touch, scaling with maximum mana."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7409","treeId":"coa-starcaller-87","index":7409,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":1,"icon":"/assets/ui/spells/artifactability_balancedruid_moonandstars.png","maxRank":1,"name":"Shooting Star","description":"Sprint forward with astral magic at your feet, increasing your movement speed by 60% for 4 seconds. While active, you cannot be slowed and cannot stop moving.","rankDescriptions":["Sprint forward with astral magic at your feet, increasing your movement speed by 60% for 4 seconds. While active, you cannot be slowed and cannot stop moving."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30656","treeId":"coa-starcaller-87","index":30656,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":1,"icon":"/assets/ui/spells/_maievblade_arcane.png","maxRank":1,"name":"Warden's Blade","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29642","treeId":"coa-starcaller-87","index":29642,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":1,"icon":"/assets/ui/spells/ability_nightfae_soulshape.png","maxRank":1,"name":"Infused Aegis","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29662","treeId":"coa-starcaller-87","index":29662,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/spell_nature_astralrecalgroup.png","maxRank":1,"name":"Astral Projection","description":"Reduces the Energy cost of Celestial Strike and Moon Arrow by -10.","rankDescriptions":["Reduces the Energy cost of Celestial Strike and Moon Arrow by -10."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6314","treeId":"coa-starcaller-87","index":6314,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/spell_arcane_arcanetactics.png","maxRank":1,"name":"Star Citizen","description":"Increases effectiveness of Celestial Mind by 20%.","rankDescriptions":["Increases effectiveness of Celestial Mind by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7721","treeId":"coa-starcaller-87","index":7721,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/spell_shadow_manafeed.png","maxRank":2,"name":"Flow of Mana","description":"Increases your Intellect and Strength by 10%.","rankDescriptions":["Increases your Intellect and Strength by 5%.","Increases your Intellect and Strength by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6659","treeId":"coa-starcaller-87","index":6659,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/spell_shadow_teleport.png","maxRank":1,"name":"Bright Moon","description":"Allows Lunar Phase to stack 4 additional times.","rankDescriptions":["Allows Lunar Phase to stack 4 additional times."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6315","treeId":"coa-starcaller-87","index":6315,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_holy_elunesgrace.png","maxRank":1,"name":"Galaxy","description":"Your Scattered Stars can now stack 2 additional times.","rankDescriptions":["Your Scattered Stars can now stack 2 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6313","treeId":"coa-starcaller-87","index":6313,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/inv_shield_1h_artifactstormfist_d_04.png","maxRank":1,"name":"Protected by the Stars","description":"Increases your Armor by 300% of your Intellect and reduces the duration of stuns and disarms against you by -25%.","rankDescriptions":["Increases your Armor by 300% of your Intellect and reduces the duration of stuns and disarms against you by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7748","treeId":"coa-starcaller-87","index":7748,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/spells/spell_nature_brilliance.png","maxRank":1,"name":"Enchanted Well","description":"Reduces the cast time of Moonwell Splash by -0.3 sec.","rankDescriptions":["Reduces the cast time of Moonwell Splash by -0.3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7254","treeId":"coa-starcaller-87","index":7254,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/ability_ardenweald_priest.png","maxRank":1,"name":"Aspect of the Cosmos","description":"Melee and ranged damage dealt has a 40% chance to slow enemy movement speed by -20% for 10 seconds, stacking 2 times and apply Scattered Stars.Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times.","rankDescriptions":["Melee and ranged damage dealt has a 40% chance to slow enemy movement speed by -20% for 10 seconds, stacking 2 times and apply Scattered Stars.Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30769","treeId":"coa-starcaller-87","index":30769,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_axe_1h_pandaraid_d_01.png","maxRank":2,"name":"Starbarian","description":"Increases your haste by 6%.","rankDescriptions":["Increases your haste by 4%.","Increases your haste by 6%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30838","treeId":"coa-starcaller-87","index":30838,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/ability_bastion_monk.png","maxRank":1,"name":"Astral Aegis","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33825","treeId":"coa-starcaller-87","index":33825,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":4,"icon":"/assets/ui/spells/ability_socererking_arcanemines.png","maxRank":1,"name":"Moonlight Ripple","description":"Reduces the mana cost of your Aegis spells by -10%.","rankDescriptions":["Reduces the mana cost of your Aegis spells by -10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33823","treeId":"coa-starcaller-87","index":33823,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/nhi_manacup_border.png","maxRank":1,"name":"Universal Power","description":"Your Aspect of the Cosmos now stacks 1 additional time.","rankDescriptions":["Your Aspect of the Cosmos now stacks 1 additional time."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13828","treeId":"coa-starcaller-87","index":13828,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/spell_fire_blueflamestrike.png","maxRank":1,"name":"Lunar Anomaly","description":"Increases the damage of Lunar Lance by 50%.","rankDescriptions":["Increases the damage of Lunar Lance by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29974","treeId":"coa-starcaller-87","index":29974,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_hunter_resourcefulness.png","maxRank":1,"name":"Moonlit Lancer","description":"Your Lunar Lance now deals additional Arcane damage over 20 sec.","rankDescriptions":["Your Lunar Lance now deals additional Arcane damage over 20 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6660","treeId":"coa-starcaller-87","index":6660,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_fabric_moonrag_01.png","maxRank":1,"name":"Mu'sha's Resilience","description":"Reduces Arcane damage taken by -15%.","rankDescriptions":["Reduces Arcane damage taken by -15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6332","treeId":"coa-starcaller-87","index":6332,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/nhi_void_stars_border.png","maxRank":1,"name":"The Stars Align","description":"Increases your maximum mana by 10%.","rankDescriptions":["Increases your maximum mana by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30873","treeId":"coa-starcaller-87","index":30873,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_potionc_3.png","maxRank":1,"name":"Vial of Moonwell Water","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29649","treeId":"coa-starcaller-87","index":29649,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/sha_ability_mage_firestarter_nightborne.png","maxRank":1,"name":"Starshatter","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29648","treeId":"coa-starcaller-87","index":29648,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_10_dungeonjewelry_dragon_trinket_1arcanemagical_blue.png","maxRank":1,"name":"Reverse Magic","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33810","treeId":"coa-starcaller-87","index":33810,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/spell_arcane_arcane04.png","maxRank":1,"name":"Star-Charged","description":"Reduces the cooldown of your Aspects by -5 sec.","rankDescriptions":["Reduces the cooldown of your Aspects by -5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7383","treeId":"coa-starcaller-87","index":7383,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_elemental_mote_water01.png","maxRank":1,"name":"Moonwell Tides","description":"Casting Vial of Moonwell Water now additionally heals you equal to 25% of your current mana.","rankDescriptions":["Casting Vial of Moonwell Water now additionally heals you equal to 25% of your current mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33828","treeId":"coa-starcaller-87","index":33828,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/nhi_manafeet_border.png","maxRank":1,"name":"Moonwalk","description":"Increases your movement speed by 20% at night.","rankDescriptions":["Increases your movement speed by 20% at night."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33830","treeId":"coa-starcaller-87","index":33830,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/rogue_burstofspeed.png","maxRank":1,"name":"Twinkle Toes","description":"Increases the movement speed granted by Shooting Star by 20%.","rankDescriptions":["Increases the movement speed granted by Shooting Star by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33832","treeId":"coa-starcaller-87","index":33832,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_arcaneweapons_border.png","maxRank":1,"name":"Constellation Barrier","description":"Reduces all Magic damage taken by -5%.","rankDescriptions":["Reduces all Magic damage taken by -5%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11811","treeId":"coa-starcaller-87","index":11811,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_shoulder_leather_raiddruid_q_01.png","maxRank":1,"name":"Moonblessed Aspects","description":"Increases the effectiveness of Aspects by 15%.","rankDescriptions":["Increases the effectiveness of Aspects by 15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29647","treeId":"coa-starcaller-87","index":29647,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/_diablo3_arrowrain_mage.png","maxRank":1,"name":"Way of the Goddess","description":"Reduces the duration of harmful magic effects on you by -25%.","rankDescriptions":["Reduces the duration of harmful magic effects on you by -25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7708","treeId":"coa-starcaller-87","index":7708,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/spell_warrior_sharpenblade.png","maxRank":1,"name":"Guided Blades","description":"Reduces the cooldown of Warden's Blade by -5 sec.","rankDescriptions":["Reduces the cooldown of Warden's Blade by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7709","treeId":"coa-starcaller-87","index":7709,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_glove_armor_nightborne_d_01.png","maxRank":1,"name":"Glaive Tossing","description":"Increases the range of Warden's Blade by 20 yds.","rankDescriptions":["Increases the range of Warden's Blade by 20 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9834","treeId":"coa-starcaller-87","index":9834,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/talentspec_druid_balance.png","maxRank":1,"name":"Cosmic Duality","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33834","treeId":"coa-starcaller-87","index":33834,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/spells/inv_inscription_trinket_mage.png","maxRank":1,"name":"Pouch of Stardust","description":"Increases the critical strike chance and critical damage of consumed Scattered Stars by 10%.","rankDescriptions":["Increases the critical strike chance and critical damage of consumed Scattered Stars by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29493","treeId":"coa-starcaller-87","index":29493,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":9,"icon":"/assets/ui/spells/ability_druid_starfall.png","maxRank":1,"name":"Continual Starfall","description":"Astral Flares called down by Aspect of the Stars now increase your haste by 3% for 5 seconds, stacking 3 times.","rankDescriptions":["Astral Flares called down by Aspect of the Stars now increase your haste by 3% for 5 seconds, stacking 3 times."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33829","treeId":"coa-starcaller-87","index":33829,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/inv_helm_armor_nightborne_d_01.png","maxRank":1,"name":"Nightborne Armaments","description":"While below 35% health, your damage taken is reduced by -10%.","rankDescriptions":["While below 35% health, your damage taken is reduced by -10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30369","treeId":"coa-starcaller-87","index":30369,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/ability_shawaterelemental_swirl.png","maxRank":1,"name":"Moonwell","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29489","treeId":"coa-starcaller-87","index":29489,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_magicmoonbuff_border.png","maxRank":1,"name":"Second Moon","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7698","treeId":"coa-starcaller-87","index":7698,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/ability_ardenweald_paladin_summer.png","maxRank":1,"name":"Elune's Presence","description":"Gain the blessing of a goddess, granting all party or raid members within 40 yds 20% temporary maximum health for 10 seconds.","rankDescriptions":["Gain the blessing of a goddess, granting all party or raid members within 40 yds 20% temporary maximum health for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29644","treeId":"coa-starcaller-89","index":29644,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/_fanofknives_lightblue.png","maxRank":1,"name":"Fan of Knives","description":"Applies 1 Scattered Star Per Hit Unleash hidden blades upon nearby enemies, dealing 10+0+POWER1*0.03+SP*0.3 Arcane damage scaling with maximum mana. Consuming a Scattered Star reduces the remaining cooldown of Fan of Knives by -2 sec.Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times.","rankDescriptions":["Applies 1 Scattered Star Per Hit Unleash hidden blades upon nearby enemies, dealing 10+0+POWER1*0.03+SP*0.3 Arcane damage scaling with maximum mana. Consuming a Scattered Star reduces the remaining cooldown of Fan of Knives by -2 sec.Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9950","treeId":"coa-starcaller-89","index":9950,"prerequisiteId":"coa-entry-30656","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30656","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_pet_wardenowl.png","maxRank":1,"name":"Warden Training","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-30669","treeId":"coa-starcaller-89","index":30669,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/ability_demonhunter_manabreak.png","maxRank":1,"name":"Astral Blade","description":"Drains 25% Maximum Mana Strike an enemy with precision, dealing 106 + 100% SP + 100% AP Arcane damage, increased further based on your maximum mana. Increases your dealt to the enemy by 15% for 5 seconds.","rankDescriptions":["Drains 25% Maximum Mana Strike an enemy with precision, dealing 106 + 100% SP + 100% AP Arcane damage, increased further based on your maximum mana. Increases your dealt to the enemy by 15% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7686","treeId":"coa-starcaller-89","index":7686,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_sword_156.png","maxRank":2,"name":"Fury of the Stars","description":"Increases the damage of Astral Blade by 20%.","rankDescriptions":["Increases the damage of Astral Blade by 10%.","Increases the damage of Astral Blade by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7687","treeId":"coa-starcaller-89","index":7687,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_glaive_1h_warfrontsnightelf_d_01.png","maxRank":1,"name":"Lethal Pursuit","description":"Reduces the cooldown of Fan of Knives by -5 sec.","rankDescriptions":["Reduces the cooldown of Fan of Knives by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31304","treeId":"coa-starcaller-89","index":31304,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/5_druideskill12_border.png","maxRank":2,"name":"Moonlit Impaler","description":"Increases your Arcane damage by 10% and your hit chance by 4%.","rankDescriptions":["Increases your Arcane damage by 5% and your hit chance by 2%.","Increases your Arcane damage by 10% and your hit chance by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9244","treeId":"coa-starcaller-89","index":9244,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_polearm_2h_odynspear_d_01.png","maxRank":1,"name":"Maiev's Discipline","description":"Level 20 Passive Increases your critical strike rating by 12% of your Intellect and your expertise by 10% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your critical strike rating by 12% of your Intellect and your expertise by 10% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-12684","treeId":"coa-starcaller-89","index":12684,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/_d3spectralblade.png","maxRank":1,"name":"Astral Onslaught","description":"Increases the duration of Astral Blade by 7 sec.","rankDescriptions":["Increases the duration of Astral Blade by 7 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33841","treeId":"coa-starcaller-89","index":33841,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/ability_warrior_challange_blue.png","maxRank":1,"name":"Astral Finesse","description":"Reduces the cooldown of Astral Blade by -4 sec.","rankDescriptions":["Reduces the cooldown of Astral Blade by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7407","treeId":"coa-starcaller-89","index":7407,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_staff_2h_artifactelune_d_01.png","maxRank":1,"name":"Umbral Blade","description":"Consumes Scattered Stars Slash an enemy, dealing 97 + 63.5% arcane SP + 20% AP Arcane damage to them and nearby enemies. Each additional enemy beyond the first takes 20% less damage.","rankDescriptions":["Consumes Scattered Stars Slash an enemy, dealing 97 + 63.5% arcane SP + 20% AP Arcane damage to them and nearby enemies. Each additional enemy beyond the first takes 20% less damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29492","treeId":"coa-starcaller-89","index":29492,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_glaive_1h_tyrande_d_01.png","maxRank":1,"name":"Sentinel Glaive","description":"Throw a sentinel glaive at an enemy, dealing Weapon Damage plus 53 as Arcane damage, increased further based on your maximum mana, and increasing their resource costs by 15% for 8 seconds.","rankDescriptions":["Throw a sentinel glaive at an enemy, dealing Weapon Damage plus 53 as Arcane damage, increased further based on your maximum mana, and increasing their resource costs by 15% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13852","treeId":"coa-starcaller-89","index":13852,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/blink.png","maxRank":1,"name":"Halt","description":"Teleport to a target location, silencing all enemies around you for 4 seconds.","rankDescriptions":["Teleport to a target location, silencing all enemies around you for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31192","treeId":"coa-starcaller-89","index":31192,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_holiday_hearthstonelunarfestival.png","maxRank":1,"name":"Moonstone","description":"Increases the damage of Lunar Lance by 20%.","rankDescriptions":["Increases the damage of Lunar Lance by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7684","treeId":"coa-starcaller-89","index":7684,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/5_moon_border.png","maxRank":1,"name":"Celestial Surge","description":"Increases the damage dealt by consuming Scattered Stars by 10%.","rankDescriptions":["Increases the damage dealt by consuming Scattered Stars by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6317","treeId":"coa-starcaller-89","index":6317,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_pet_wardenowl.png","maxRank":1,"name":"Warden Training","description":"Reduces the cooldown of Warden's Blade by -25%.","rankDescriptions":["Reduces the cooldown of Warden's Blade by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33847","treeId":"coa-starcaller-89","index":33847,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/inv_staff_2h_warfrontsnightelf_d_01.png","maxRank":1,"name":"Rally The Sentinels","description":"Sentinel Glaive now restores 20% of your maximum mana and applies a Scattered Star to the enemy.","rankDescriptions":["Sentinel Glaive now restores 20% of your maximum mana and applies a Scattered Star to the enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30660","treeId":"coa-starcaller-89","index":30660,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_racial_chillofnight.png","maxRank":1,"name":"Celestial Glaives","description":"Level 30 Passive Your Scattered Stars can now stack 2 additional times.","rankDescriptions":["Level 30 Passive Your Scattered Stars can now stack 2 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-33853","treeId":"coa-starcaller-89","index":33853,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/spell_arcane_starfire.png","maxRank":1,"name":"Star Pupil","description":"Your damaging critical strikes now grant you a stack of Star Pupil.Star PupilReduces the cast time of Moonwell Splash by -25% for 8 seconds, stacking 4 times. While this is active, Moonwell Splash is castable while moving.","rankDescriptions":["Your damaging critical strikes now grant you a stack of Star Pupil.Star PupilReduces the cast time of Moonwell Splash by -25% for 8 seconds, stacking 4 times. While this is active, Moonwell Splash is castable while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6399","treeId":"coa-starcaller-89","index":6399,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/achievement_thenighthold_spellbladealuriel.png","maxRank":1,"name":"Astral Combatant","description":"Lunar Lance and Umbral Blade increase the enemy damage taken from Scattered Stars by 10% for 10 seconds.","rankDescriptions":["Lunar Lance and Umbral Blade increase the enemy damage taken from Scattered Stars by 10% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33852","treeId":"coa-starcaller-89","index":33852,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/_maievblade_water.png","maxRank":1,"name":"Maiev's Guard","description":"Critical strikes with Astral Blade now strike 2 additional times, one for 40% of the damage dealt and the other for 20% of the damage dealt.","rankDescriptions":["Critical strikes with Astral Blade now strike 2 additional times, one for 40% of the damage dealt and the other for 20% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33860","treeId":"coa-starcaller-89","index":33860,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/bondsofjustice.png","maxRank":1,"name":"Bonds of Justice","description":"Send forth bonds of justice to an enemy, tethering them to you for 8 seconds. If the tether is broken through expiration or the target runs at least 10 yds from you, they are gripped back towards you, taking 441 + 120% arcane SP Arcane damage.","rankDescriptions":["Send forth bonds of justice to an enemy, tethering them to you for 8 seconds. If the tether is broken through expiration or the target runs at least 10 yds from you, they are gripped back towards you, taking 441 + 120% arcane SP Arcane damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7697","treeId":"coa-starcaller-89","index":7697,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/_silence_nightelf_2.png","maxRank":2,"name":"Aspect Mastery","description":"Increases the effectiveness of your Aspects by 20% and their chance to trigger by 10%.","rankDescriptions":["Increases the effectiveness of your Aspects by 10% and their chance to trigger by 5%.","Increases the effectiveness of your Aspects by 20% and their chance to trigger by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33849","treeId":"coa-starcaller-89","index":33849,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/spell_fire_frostresistancetotem.png","maxRank":1,"name":"Wrath of Elune","description":"Reduces the cooldown of Sentinel Glaive by -5 sec.","rankDescriptions":["Reduces the cooldown of Sentinel Glaive by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33844","treeId":"coa-starcaller-89","index":33844,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_tabard_a_86warden.png","maxRank":1,"name":"Vigil of the Watchers","description":"Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects.","rankDescriptions":["Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33797","treeId":"coa-starcaller-89","index":33797,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/ability_demonhunter_soulcleave4.png","maxRank":1,"name":"Stellar Amplification","description":"Dealing damage with Scattered Stars now has a 15% chance to make your next Astral Blade free of cost.","rankDescriptions":["Dealing damage with Scattered Stars now has a 15% chance to make your next Astral Blade free of cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6398","treeId":"coa-starcaller-89","index":6398,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/_maievblade_ice.png","maxRank":1,"name":"Scattering Blades","description":"Your Warden's Blade now increases the chance to trigger Aspect of the Warden by 10% for 8 seconds.","rankDescriptions":["Your Warden's Blade now increases the chance to trigger Aspect of the Warden by 10% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7413","treeId":"coa-starcaller-89","index":7413,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_polearm_2h_kultirasquest_b_01.png","maxRank":1,"name":"Warrior of Elune","description":"Increases your melee haste by 5% and movement speed by 10%. Movement speed granted by this talent stacks with Moonwalk.","rankDescriptions":["Increases your melee haste by 5% and movement speed by 10%. Movement speed granted by this talent stacks with Moonwalk."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11660","treeId":"coa-starcaller-89","index":11660,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_elemental_primal_mana.png","maxRank":1,"name":"Lunar Combatant","description":"Level 40 Passive Increases the effectiveness of consuming Scattered Stars by 50%.","rankDescriptions":["Level 40 Passive Increases the effectiveness of consuming Scattered Stars by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-7406","treeId":"coa-starcaller-89","index":7406,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/ability_monk_forcesphere_arcane.png","maxRank":1,"name":"Lunar Charge","description":"After using Shooting Star, your next Celestial Strike, Starsunder or auto attack ends the effect to deal 450 + 28.75% SP + 5% AP Arcane damage, increased based on distance travelled.","rankDescriptions":["After using Shooting Star, your next Celestial Strike, Starsunder or auto attack ends the effect to deal 450 + 28.75% SP + 5% AP Arcane damage, increased based on distance travelled."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7384","treeId":"coa-starcaller-89","index":7384,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/ability_druid_twilightswrath.png","maxRank":1,"name":"Wrath of the Moon","description":"Increases your Arcane critical damage dealt by 20%.","rankDescriptions":["Increases your Arcane critical damage dealt by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30653","treeId":"coa-starcaller-89","index":30653,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_glaive_ardenweald_d_01_temp.png","maxRank":1,"name":"Infused Blades","description":"Your Astral Blade now has a 30% chance to reset its own cooldown and refund its maximum mana cost.","rankDescriptions":["Your Astral Blade now has a 30% chance to reset its own cooldown and refund its maximum mana cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7690","treeId":"coa-starcaller-89","index":7690,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_weapon_halberd18.png","maxRank":1,"name":"Warden's Precision","description":"Your Warden's Blade now launches an additional 2 blades at the target, dealing 49 + 24.5% SP Spellstrike Damage.","rankDescriptions":["Your Warden's Blade now launches an additional 2 blades at the target, dealing 49 + 24.5% SP Spellstrike Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7699","treeId":"coa-starcaller-89","index":7699,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/inv_shield_1h_warfrontsnightelf_d_01.png","maxRank":1,"name":"Pierce The Night","description":"Your Fan of Knives now applies an additional stack of Scattered Stars to each enemy struck.","rankDescriptions":["Your Fan of Knives now applies an additional stack of Scattered Stars to each enemy struck."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7700","treeId":"coa-starcaller-89","index":7700,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/inv_weapon_shortblade_45.png","maxRank":1,"name":"Moontouched Weapons","description":"Increases the damage of Aspect of the Warden by POWER1*0.01, scaling with maximum mana.","rankDescriptions":["Increases the damage of Aspect of the Warden by POWER1*0.01, scaling with maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7685","treeId":"coa-starcaller-89","index":7685,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/nhi_spirittranquility_border.png","maxRank":1,"name":"Spirit of Vengeance","description":"Fan of Knives now marks enemies with Vengeance for 10 seconds. Successfully marking an enemy increases the range of your next Astral Blade by 25 yards. Casting Astral Blade on a marked enemy causes it to deal 30% more damage.","rankDescriptions":["Fan of Knives now marks enemies with Vengeance for 10 seconds. Successfully marking an enemy increases the range of your next Astral Blade by 25 yards. Casting Astral Blade on a marked enemy causes it to deal 30% more damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30626","treeId":"coa-starcaller-89","index":30626,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/inv_helmet_leather_raiddruid_q_01.png","maxRank":1,"name":"Shadowsong's Mandate","description":"Increases your critical strike chance by 15% for 10 seconds. While active, your damaging critical strikes have a 40% chance to trigger Warden's Blade.","rankDescriptions":["Increases your critical strike chance by 15% for 10 seconds. While active, your damaging critical strikes have a 40% chance to trigger Warden's Blade."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11360","treeId":"coa-starcaller-89","index":11360,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicstrike_border.png","maxRank":1,"name":"Astral Blessing","description":"Level 50 Passive Damaging critical strikes now reduce the cooldown of Warden's Blade by -1 sec.","rankDescriptions":["Level 50 Passive Damaging critical strikes now reduce the cooldown of Warden's Blade by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30625","treeId":"coa-starcaller-89","index":30625,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/_execution_lightblue.png","maxRank":1,"name":"Pulverizing Blade","description":"Casting Warden's Blade now grants you Pulverizing Blade. Pulverizing BladeNext 5 Starsunders within 20 seconds deal increasing damage, scaling with 10% of Intellect, with each subsequent use, stacking 5 times.","rankDescriptions":["Casting Warden's Blade now grants you Pulverizing Blade. Pulverizing BladeNext 5 Starsunders within 20 seconds deal increasing damage, scaling with 10% of Intellect, with each subsequent use, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7749","treeId":"coa-starcaller-89","index":7749,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/achievement_boss_councilsentinel.png","maxRank":1,"name":"Avatar of Vengeance","description":"Transform into an Avatar of Vengeance, teleporting to your target and increasing your Intellect by 25% for 30 seconds. For the duration, the range of Astral Blade is increased by 30 yards and will teleport you to your target. If your target is an enemy, you strike them dealing 50 + 22% Intellect + 6.5% arcane SP Arcane damage per 1 sec for 8 seconds, scaling with Intellect.","rankDescriptions":["Transform into an Avatar of Vengeance, teleporting to your target and increasing your Intellect by 25% for 30 seconds. For the duration, the range of Astral Blade is increased by 30 yards and will teleport you to your target. If your target is an enemy, you strike them dealing 50 + 22% Intellect + 6.5% arcane SP Arcane damage per 1 sec for 8 seconds, scaling with Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7692","treeId":"coa-starcaller-89","index":7692,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/achievement_thenighthold.png","maxRank":1,"name":"Highest Order","description":"Reduces the cooldown of Shadowsong's Mandate by -25% and increases the chance to trigger Warden's Blade by 60%.","rankDescriptions":["Reduces the cooldown of Shadowsong's Mandate by -25% and increases the chance to trigger Warden's Blade by 60%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/stormbringer.json b/src/game/generated/talentUi/stormbringer.json new file mode 100644 index 00000000..54ea4a7d --- /dev/null +++ b/src/game/generated/talentUi/stormbringer.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"stormbringer","trees":[{"id":"coa-stormbringer-42","classId":"stormbringer","name":"Lightning","icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0002s_0000_lightning_border.png","background":"","description":"Lightning nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-stormbringer-43","classId":"stormbringer","name":"Wind","icon":"/assets/ui/spells/spell_nature_tranquility.png","background":"","description":"Wind nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-stormbringer-44","classId":"stormbringer","name":"Maelstrom","icon":"/assets/ui/spells/_liquidstone_water.png","background":"","description":"Maelstrom nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-stormbringer-87","classId":"stormbringer","name":"Class","icon":"/assets/ui/spells/inv_misc_volatileair.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-31163","treeId":"coa-stormbringer-42","index":31163,"prerequisiteId":"coa-entry-4013","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4013","requiredRank":1},{"talentId":"coa-entry-29138","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0002s_0000_lightning_border.png","maxRank":1,"name":"Arm of Thorim","description":"Depletes All Static Call down a terrible beam of lightning upon an enemy, dealing 135 + 120% nature SP Nature damage and stunning them for 1 seconds. Damage and cast time increased based on Static level.","rankDescriptions":["Depletes All Static Call down a terrible beam of lightning upon an enemy, dealing 135 + 120% nature SP Nature damage and stunning them for 1 seconds. Damage and cast time increased based on Static level."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4013","treeId":"coa-stormbringer-42","index":4013,"prerequisiteId":"coa-entry-29138","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29138","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/nhi_frozenlightning_border.png","maxRank":1,"name":"Electrocutioner","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-29837","treeId":"coa-stormbringer-42","index":29837,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/ability_siege_engineer_magnetic_crush.png","maxRank":1,"name":"Superconductor","description":"Increases the damage of your Arm of Thorim by an additional 1% per Static depleted.","rankDescriptions":["Increases the damage of your Arm of Thorim by an additional 1% per Static depleted."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29833","treeId":"coa-stormbringer-42","index":29833,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/spell_nature_lightningoverload.png","maxRank":1,"name":"Forked Lightning","description":"Shoot lightning at an enemy, dealing 69 + 49% SP Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","rankDescriptions":["Shoot lightning at an enemy, dealing 69 + 49% SP Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29290","treeId":"coa-stormbringer-42","index":29290,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/shaman_pvp_staticcling.png","maxRank":1,"name":"Volt","description":"Fuse lightning into an enemy, dealing 150 + 114% nature SP Nature damage over 18 seconds and slowing them by -40%. Generates 2 Static per tick.","rankDescriptions":["Fuse lightning into an enemy, dealing 150 + 114% nature SP Nature damage over 18 seconds and slowing them by -40%. Generates 2 Static per tick."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9253","treeId":"coa-stormbringer-42","index":9253,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_leather_raidmonkmythic_r_01_bracer.png","maxRank":1,"name":"Thunderous","description":"Level 20 Passive Increases the critical damage of your spells by 150%.","rankDescriptions":["Level 20 Passive Increases the critical damage of your spells by 150%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-34692","treeId":"coa-stormbringer-42","index":34692,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/achievement_boss_thorim.png","maxRank":1,"name":"Thorim's Gift","description":"Your Arm of Thorim now leaves unstable electricity beneath the target, dealing damage equal to 10% of its damage dealt to enemies within every 1 sec for 3 seconds.","rankDescriptions":["Your Arm of Thorim now leaves unstable electricity beneath the target, dealing damage equal to 10% of its damage dealt to enemies within every 1 sec for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34691","treeId":"coa-stormbringer-42","index":34691,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_nature_lightning.png","maxRank":2,"name":"Titanic Thunderbolt","description":"Increases the critical strike chance of Shock, Conjure Storm, and Eye of the Storm by 8%.","rankDescriptions":["Increases the critical strike chance of Shock, Conjure Storm, and Eye of the Storm by 4%.","Increases the critical strike chance of Shock, Conjure Storm, and Eye of the Storm by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9641","treeId":"coa-stormbringer-42","index":9641,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/novart_magicspell_(79)_border.png","maxRank":2,"name":"Fulmination","description":"Increases the critical strike chance of Call Lightning and Arm of Thorim by 30% against targets affected by your Volt.","rankDescriptions":["Increases the critical strike chance of Call Lightning and Arm of Thorim by 15% against targets affected by your Volt.","Increases the critical strike chance of Call Lightning and Arm of Thorim by 30% against targets affected by your Volt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34641","treeId":"coa-stormbringer-42","index":34641,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/5_normal26biglightning_border.png","maxRank":1,"name":"Improved Forked Lightning","description":"Your Forked Lightning now affects 1 additional enemy.","rankDescriptions":["Your Forked Lightning now affects 1 additional enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30126","treeId":"coa-stormbringer-42","index":30126,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/5_atom_border.png","maxRank":1,"name":"Electric Energy","description":"Increases the damage of your Shock, Call Lightning, and Arm of Thorim by 20%.","rankDescriptions":["Increases the damage of your Shock, Call Lightning, and Arm of Thorim by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7766","treeId":"coa-stormbringer-42","index":7766,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/ability_thunderking_rockfalllow.png","maxRank":1,"name":"Electrifying Aura","description":"Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects.","rankDescriptions":["Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34673","treeId":"coa-stormbringer-42","index":34673,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/novart_books_(6)_border.png","maxRank":1,"name":"Tome of Lightning","description":"Increases your critical strike chance by 2% and reduces the duration of interrupt and silence effects against you by -20%.","rankDescriptions":["Increases your critical strike chance by 2% and reduces the duration of interrupt and silence effects against you by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9930","treeId":"coa-stormbringer-42","index":9930,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/nhi_mindblow_border.png","maxRank":1,"name":"Wicked Storms","description":"Increases your Nature damage dealt by 5%.","rankDescriptions":["Increases your Nature damage dealt by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9255","treeId":"coa-stormbringer-42","index":9255,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/spell_nature_purge.png","maxRank":1,"name":"Fast as Lightning","description":"Level 30 Passive While Electrocutioner is active, your Electrocute now gains 20% increased damage.","rankDescriptions":["Level 30 Passive While Electrocutioner is active, your Electrocute now gains 20% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7769","treeId":"coa-stormbringer-42","index":7769,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/trade_alchemy_ghostironrod.png","maxRank":1,"name":"Stormy Days","description":"Increases the tick rate of Conjure Storm by -25%.","rankDescriptions":["Increases the tick rate of Conjure Storm by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34674","treeId":"coa-stormbringer-42","index":34674,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/spell_nature_callstorm.png","maxRank":2,"name":"Invoking Storms","description":"Increases the spell power scaling of Shock, Call Lightning, and Arm of Thorim by 30%.","rankDescriptions":["Increases the spell power scaling of Shock, Call Lightning, and Arm of Thorim by 15%.","Increases the spell power scaling of Shock, Call Lightning, and Arm of Thorim by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7473","treeId":"coa-stormbringer-42","index":7473,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_thunderking_thunderstruck.png","maxRank":1,"name":"Lightning Cage","description":"Generates 50 Static Ascend into the air and cage yourself in lightning for 30 seconds, locking yourself in place. While inside the cage, damaging spells generate 20 Static and their range is doubled.","rankDescriptions":["Generates 50 Static Ascend into the air and cage yourself in lightning for 30 seconds, locking yourself in place. While inside the cage, damaging spells generate 20 Static and their range is doubled."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34696","treeId":"coa-stormbringer-42","index":34696,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/_d3electrocute.png","maxRank":1,"name":"Never Strikes Twice?","description":"Your Electrocute now has a 25% chance to strike again.","rankDescriptions":["Your Electrocute now has a 25% chance to strike again."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34911","treeId":"coa-stormbringer-42","index":34911,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/novart_magicspell_(74)_border.png","maxRank":2,"name":"Jolt","description":"Increases the damage and critical strike chance of Electrocute by 20%.","rankDescriptions":["Increases the damage and critical strike chance of Electrocute by 10%.","Increases the damage and critical strike chance of Electrocute by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6851","treeId":"coa-stormbringer-42","index":6851,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_rod_enchantedcobalt.png","maxRank":1,"name":"Lightning Rod","description":"Damage dealt by Forked Lightning now has a 20% chance to spread an active Volt on your target to each affected enemy. Chance increases based on Static level.","rankDescriptions":["Damage dealt by Forked Lightning now has a 20% chance to spread an active Volt on your target to each affected enemy. Chance increases based on Static level."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34937","treeId":"coa-stormbringer-42","index":34937,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/nhi_manawave_border.png","maxRank":1,"name":"Thundershocker","description":"While rooted by Eye of the Storm, affected enemies now take 30% increased damage from you.","rankDescriptions":["While rooted by Eye of the Storm, affected enemies now take 30% increased damage from you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34646","treeId":"coa-stormbringer-42","index":34646,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_nature_lightningshield.png","maxRank":1,"name":"Storm Barrier","description":"While Lightning Cage is active your Magic Damage taken is now reduced by -25% and you are unable to be hit by ranged attacks.","rankDescriptions":["While Lightning Cage is active your Magic Damage taken is now reduced by -25% and you are unable to be hit by ranged attacks."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34930","treeId":"coa-stormbringer-42","index":34930,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/5_druideskill39_border.png","maxRank":1,"name":"Critical Circuit","description":"Direct critical strikes with Static spenders now refund 10 Static.","rankDescriptions":["Direct critical strikes with Static spenders now refund 10 Static."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7763","treeId":"coa-stormbringer-42","index":7763,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/nhi_arcaneburst_border.png","maxRank":1,"name":"Sparks","description":"Damage dealt by Electrocute and Arm of Thorim now increase the target's chance to be critically hit by spells by 3% for 10 seconds.","rankDescriptions":["Damage dealt by Electrocute and Arm of Thorim now increase the target's chance to be critically hit by spells by 3% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9755","treeId":"coa-stormbringer-42","index":9755,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/nhi_lightning_bolt_border.png","maxRank":1,"name":"Piercing Lightning","description":"Level 40 Passive Increases your Nature spell penetration by 20, scaling with your level. In addition, Stormbreaker now dispels 1 additional magic effect.","rankDescriptions":["Level 40 Passive Increases your Nature spell penetration by 20, scaling with your level. In addition, Stormbreaker now dispels 1 additional magic effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-30408","treeId":"coa-stormbringer-42","index":30408,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_eng_electroshockmountmotivator.png","maxRank":1,"name":"High Voltage","description":"Increases the duration of Arm of Thorim's stun effect by 1 sec.","rankDescriptions":["Increases the duration of Arm of Thorim's stun effect by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5738","treeId":"coa-stormbringer-42","index":5738,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_azerite_empowered_state.png","maxRank":1,"name":"Voltaic Bursts","description":"Increases the periodic damage of Shock by 50%.","rankDescriptions":["Increases the periodic damage of Shock by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5475","treeId":"coa-stormbringer-42","index":5475,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_titan_01.png","maxRank":1,"name":"Titanstorm","description":"Casting Call Lightning or Electrocute now reduces the cooldown of Arm of Thorim and Lightning Cage by -1.5 sec.","rankDescriptions":["Casting Call Lightning or Electrocute now reduces the cooldown of Arm of Thorim and Lightning Cage by -1.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34635","treeId":"coa-stormbringer-42","index":34635,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_stormsongvalley.png","maxRank":1,"name":"Dark Skies","description":"When your direct damage spells fail to critically strike, your critical strike chance is increased by 2% for 10 seconds, stacking up to 5 times. Critically striking removes this effect.","rankDescriptions":["When your direct damage spells fail to critically strike, your critical strike chance is increased by 2% for 10 seconds, stacking up to 5 times. Critically striking removes this effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1930","treeId":"coa-stormbringer-42","index":1930,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_sword_1h_artifactvigfus_d_03.png","maxRank":1,"name":"Flux Arc","description":"Your Forked Lightning and Arm of Thorim now marks enemies for 6 sec. Your Call Lightning against marked enemies deals an additional 15% of its damage to them and nearby enemies.","rankDescriptions":["Your Forked Lightning and Arm of Thorim now marks enemies for 6 sec. Your Call Lightning against marked enemies deals an additional 15% of its damage to them and nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34687","treeId":"coa-stormbringer-42","index":34687,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_nature_wispheal.png","maxRank":1,"name":"Crackling Devastation","description":"Increases the critical damage of Electrocute by 30%.","rankDescriptions":["Increases the critical damage of Electrocute by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7768","treeId":"coa-stormbringer-42","index":7768,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/_d3fistsofthunder.png","maxRank":1,"name":"Electrical Charge","description":"Standing still grants you Electrical Charge every second, increasing your haste by 1%. Upon reaching 20 stacks, your spells dont deplete Static for 10 seconds, after which the charges are depleted.","rankDescriptions":["Standing still grants you Electrical Charge every second, increasing your haste by 1%. Upon reaching 20 stacks, your spells dont deplete Static for 10 seconds, after which the charges are depleted."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10755","treeId":"coa-stormbringer-42","index":10755,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/5_druideskill37_border.png","maxRank":1,"name":"Ascension","description":"Level 50 Passive Increases the duration of your Storm Ascendance by 10 sec.","rankDescriptions":["Level 50 Passive Increases the duration of your Storm Ascendance by 10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-9050","treeId":"coa-stormbringer-42","index":9050,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/inv_shield_1h_artifactstormfist_d_06.png","maxRank":1,"name":"Lord of Lightning","description":"Storm Ascendance now additionally grants you Lord of Lightning for 20 seconds.Lord of LightningIncreases the damage dealt by Forked Lightning, Call Lightning, and Electrocute by an additional 30% and allows Electrocute to strike 3 additional enemies.","rankDescriptions":["Storm Ascendance now additionally grants you Lord of Lightning for 20 seconds.Lord of LightningIncreases the damage dealt by Forked Lightning, Call Lightning, and Electrocute by an additional 30% and allows Electrocute to strike 3 additional enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29828","treeId":"coa-stormbringer-42","index":29828,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/spell_shaman_crashlightning.png","maxRank":1,"name":"Ride the Lightning","description":"Depletes 40 Static Infuse yourself with lightning and blink forward a long distance, dealing 540 + 50% SP Nature damage to all enemies in your path. Scales with modifiers to Discharge","rankDescriptions":["Depletes 40 Static Infuse yourself with lightning and blink forward a long distance, dealing 540 + 50% SP Nature damage to all enemies in your path. Scales with modifiers to Discharge"],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30127","treeId":"coa-stormbringer-42","index":30127,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_shaman_hightide.png","maxRank":1,"name":"Thunder Wave","description":"Damage dealt by Forked Lightning has a 5% chance to transform it into Thunder Wave.Thunder Wave (Spell)Bring lightning down upon an enemy and nearby enemies, dealing 406 + 65% arcane SP Spellstorm Damage and refreshing the duration of Volt on enemies struck. Deals 50% increased damage to enemies affected by Volt.","rankDescriptions":["Damage dealt by Forked Lightning has a 5% chance to transform it into Thunder Wave.Thunder Wave (Spell)Bring lightning down upon an enemy and nearby enemies, dealing 406 + 65% arcane SP Spellstorm Damage and refreshing the duration of Volt on enemies struck. Deals 50% increased damage to enemies affected by Volt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31164","treeId":"coa-stormbringer-43","index":31164,"prerequisiteId":"coa-entry-4014","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4014","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/spell_nature_tranquility.png","maxRank":1,"name":"Tempest Calling","description":"Enhances some of your spells with the power of the wind, tranforming your Conjure Storm into Updraft and Call Lightning into Aeroblast.UpdraftDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 seconds. Deals 160 + 68.3% nature SP Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.AeroblastDepletes 50 Static Crush an enemy with the weight of the winds, dealing 109 + 63.5% nature SP Nature damage to them and then an additional time for 40% of the damage dealt after 1 seconds.","rankDescriptions":["Enhances some of your spells with the power of the wind, tranforming your Conjure Storm into Updraft and Call Lightning into Aeroblast.UpdraftDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 seconds. Deals 160 + 68.3% nature SP Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.AeroblastDepletes 50 Static Crush an enemy with the weight of the winds, dealing 109 + 63.5% nature SP Nature damage to them and then an additional time for 40% of the damage dealt after 1 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4014","treeId":"coa-stormbringer-43","index":4014,"prerequisiteId":"coa-entry-31263","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-31263","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_progenitorelemental_black.png","maxRank":1,"name":"Air Elemental","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-30141","treeId":"coa-stormbringer-43","index":30141,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/_book2motif_paladinsamwise.png","maxRank":2,"name":"Power the Elements","description":"Increases the damage dealt by your Air Elemental's spells by 20% and your Nature damage dealt by 4%.","rankDescriptions":["Increases the damage dealt by your Air Elemental's spells by 10% and your Nature damage dealt by 2%.","Increases the damage dealt by your Air Elemental's spells by 20% and your Nature damage dealt by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9234","treeId":"coa-stormbringer-43","index":9234,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/spell_nature_purge.png","maxRank":1,"name":"Storm Bond","description":"Damage dealt by your Air Elemental now generates you 2 Static.","rankDescriptions":["Damage dealt by your Air Elemental now generates you 2 Static."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34948","treeId":"coa-stormbringer-43","index":34948,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/achievement_bg_dg_master_of_the_deepwind_gorge.png","maxRank":1,"name":"Flow","description":"Your Invigoration now stacks 5 additional times.","rankDescriptions":["Your Invigoration now stacks 5 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9265","treeId":"coa-stormbringer-43","index":9265,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_nature_cyclone.png","maxRank":1,"name":"Air Flow","description":"Reduces the cast time of Aeroblast by -0.3 sec.","rankDescriptions":["Reduces the cast time of Aeroblast by -0.3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31264","treeId":"coa-stormbringer-43","index":31264,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/ability_vanish.png","maxRank":1,"name":"Invigoration","description":"Your Aeroblast now grants your Air Elemental a stack of Invigoration. InvigorationIncreases the damage of your Air Elemental by 3% for 15 seconds, stacking 10 times. Additional applications do not refresh duration.","rankDescriptions":["Your Aeroblast now grants your Air Elemental a stack of Invigoration. InvigorationIncreases the damage of your Air Elemental by 3% for 15 seconds, stacking 10 times. Additional applications do not refresh duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11940","treeId":"coa-stormbringer-43","index":11940,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/achievement_zone_deadwindpass.png","maxRank":1,"name":"Clear Skies","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.","rankDescriptions":["Increases chance to hit with all spells and attacks by 1% for you and party and raid members. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":15,"isPassive":false},{"id":"coa-entry-34940","treeId":"coa-stormbringer-43","index":34940,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/nhi_magicstorm_border.png","maxRank":1,"name":"Focal Point","description":"Casting Call Lightning now increases the critical strike chance of party and raid members by 5% for 10 seconds. Does not stack with similar effects.","rankDescriptions":["Casting Call Lightning now increases the critical strike chance of party and raid members by 5% for 10 seconds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":15,"isPassive":false},{"id":"coa-entry-7838","treeId":"coa-stormbringer-43","index":7838,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/custom_t_snowwhirlwind_border.png","maxRank":2,"name":"Quickdraft","description":"Increases the duration of your Updraft by 6 sec and increases its tick rate by -30%.","rankDescriptions":["Increases the duration of your Updraft by 3 sec and increases its tick rate by -15%.","Increases the duration of your Updraft by 6 sec and increases its tick rate by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31267","treeId":"coa-stormbringer-43","index":31267,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_tradeskillitem_sorcererswind_tong.png","maxRank":1,"name":"Gale","description":"3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 53 + 42% nature SP Nature damage.","rankDescriptions":["3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 53 + 42% nature SP Nature damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30819","treeId":"coa-stormbringer-43","index":30819,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/nhi_magicstorm_border.png","maxRank":2,"name":"Everlasting Invigoration","description":"Increases the duration of Invigoration by 10 sec.","rankDescriptions":["Increases the duration of Invigoration by 5 sec.","Increases the duration of Invigoration by 10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29137","treeId":"coa-stormbringer-43","index":29137,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0003s_0000_wind_border.png","maxRank":1,"name":"Kiss of the Clouds","description":"Depletes 40 Static Grant all party and raid members a shield that absorbs 101 + 100% Intellect damage, scaling with Intellect, for 10 seconds. While active, the target suffers no spell pushback from taking damage.","rankDescriptions":["Depletes 40 Static Grant all party and raid members a shield that absorbs 101 + 100% Intellect damage, scaling with Intellect, for 10 seconds. While active, the target suffers no spell pushback from taking damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6337","treeId":"coa-stormbringer-43","index":6337,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/ability_monk_zenflight.png","maxRank":1,"name":"Unrelenting Winds","description":"Increases the critical strike chance of Gale by 15%.","rankDescriptions":["Increases the critical strike chance of Gale by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30139","treeId":"coa-stormbringer-43","index":30139,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/spell_frost_stun.png","maxRank":1,"name":"Evergale","description":"Casting Call Lightning now refreshes a charge of Gale.","rankDescriptions":["Casting Call Lightning now refreshes a charge of Gale."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34955","treeId":"coa-stormbringer-43","index":34955,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/inv_pet_pandarenelemental_air.png","maxRank":1,"name":"Master Airbender","description":"Casting Gale now reduces the cooldown of abilities that deplete Static by -1 sec.","rankDescriptions":["Casting Gale now reduces the cooldown of abilities that deplete Static by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6427","treeId":"coa-stormbringer-43","index":6427,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/achievement_boss_alakir_the_windlord.png","maxRank":1,"name":"Unshackle","description":"Depletes 50 Static Transforms your Air Elemental into a more powerful form for 15 seconds, increasing damage dealt by 25% and spell haste by 30%.","rankDescriptions":["Depletes 50 Static Transforms your Air Elemental into a more powerful form for 15 seconds, increasing damage dealt by 25% and spell haste by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11584","treeId":"coa-stormbringer-43","index":11584,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_shaman_windwalktotem.png","maxRank":1,"name":"Enveloping Winds","description":"Casting Gale now causes your Air Elemental to cast Gale. Additionally, you now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects.","rankDescriptions":["Casting Gale now causes your Air Elemental to cast Gale. Additionally, you now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-34914","treeId":"coa-stormbringer-43","index":34914,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/nhi_frozenarm_border.png","maxRank":1,"name":"Tailwind","description":"Depletes 20 Static Tap into the swift winds, increasing your damage by 10% and granting all allied players 5% increased haste for 15 seconds. Does not stack with similar effects.","rankDescriptions":["Depletes 20 Static Tap into the swift winds, increasing your damage by 10% and granting all allied players 5% increased haste for 15 seconds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-6418","treeId":"coa-stormbringer-43","index":6418,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/_scroll1_custom_air.png","maxRank":1,"name":"Gift of Air","description":"Casting Kiss of the Clouds now empowers your Air Elemental with Gift of Air for 30 seconds. In addition, your critical strikes now extend the duration of your Tailwind by 1.5 sec. Gift of AirIncreases damage dealt by 20%, spell haste by 15%, and heals for 13.75 every 2 sec.","rankDescriptions":["Casting Kiss of the Clouds now empowers your Air Elemental with Gift of Air for 30 seconds. In addition, your critical strikes now extend the duration of your Tailwind by 1.5 sec. Gift of AirIncreases damage dealt by 20%, spell haste by 15%, and heals for 13.75 every 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11949","treeId":"coa-stormbringer-43","index":11949,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_eyeoftheowl.png","maxRank":1,"name":"Cyclone's Embrace","description":"Increases the base amount absorbed by your Kiss of the Clouds by 100%.","rankDescriptions":["Increases the base amount absorbed by your Kiss of the Clouds by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34949","treeId":"coa-stormbringer-43","index":34949,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/novart_magicspell_(57)_border.png","maxRank":1,"name":"Cyclone's Recharge","description":"Casting Shock, Gale or Electrocute now reduces the remaining cooldown of your Kiss of the Clouds by -1 sec.","rankDescriptions":["Casting Shock, Gale or Electrocute now reduces the remaining cooldown of your Kiss of the Clouds by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7186","treeId":"coa-stormbringer-43","index":7186,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_mage_icenova.png","maxRank":1,"name":"Aeromancy","description":"Casting Updraft will now cause your Air Elemental to cast its own Updraft beneath you.","rankDescriptions":["Casting Updraft will now cause your Air Elemental to cast its own Updraft beneath you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31266","treeId":"coa-stormbringer-43","index":31266,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/ability_shaman_windwalktotem.png","maxRank":1,"name":"Windrunner","description":"The wind is always at your back, pushing you to move faster, increasing your movement speed and mounted movement speed by 15%.","rankDescriptions":["The wind is always at your back, pushing you to move faster, increasing your movement speed and mounted movement speed by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6425","treeId":"coa-stormbringer-43","index":6425,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/inv_helmet_69.png","maxRank":1,"name":"Wrath of Al'Akir","description":"Depleting Static extends the duration of your Unshackle by 3 sec.","rankDescriptions":["Depleting Static extends the duration of your Unshackle by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30132","treeId":"coa-stormbringer-43","index":30132,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/ability_druid_galewinds.png","maxRank":1,"name":"Windsurf","description":"Command your Air Elemental to windsurf to you, intercepting the next melee or ranged attack made against you, and allowing you to cast Shock and Call Lightning while moving for 15 seconds.","rankDescriptions":["Command your Air Elemental to windsurf to you, intercepting the next melee or ranged attack made against you, and allowing you to cast Shock and Call Lightning while moving for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30138","treeId":"coa-stormbringer-43","index":30138,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/_hearthstone_necklace_mage.png","maxRank":1,"name":"Clearsky Pendant","description":"Ally movement speed is increased by an additional 25% to allies within your Updraft.","rankDescriptions":["Ally movement speed is increased by an additional 25% to allies within your Updraft."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29831","treeId":"coa-stormbringer-43","index":29831,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/achievement_nazmir_boss_mother.png","maxRank":1,"name":"Master Elementalist","description":"Increases the spell damage scaling of Shock by 10% and Aeroblast by 20%.","rankDescriptions":["Increases the spell damage scaling of Shock by 10% and Aeroblast by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34941","treeId":"coa-stormbringer-43","index":34941,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/achievement_boss_murmur.png","maxRank":1,"name":"Unbound Elementalist","description":"Increases the effectiveness of your Unshackle by 20%.","rankDescriptions":["Increases the effectiveness of your Unshackle by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6435","treeId":"coa-stormbringer-43","index":6435,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/flurry.png","maxRank":1,"name":"Flurry","description":"Depletes 10 Static Command your Air Elemental, causing its next instance of damage to unleash a flurry of air on your target, dealing 763 + 140% nature SP Nature damage over 21 seconds, and reducing their resistances by 75, and increasing their Magic damage taken by -2%.","rankDescriptions":["Depletes 10 Static Command your Air Elemental, causing its next instance of damage to unleash a flurry of air on your target, dealing 763 + 140% nature SP Nature damage over 21 seconds, and reducing their resistances by 75, and increasing their Magic damage taken by -2%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-11235","treeId":"coa-stormbringer-43","index":11235,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/_monkability_renewingmists_xuenwhite.png","maxRank":1,"name":"Aerodynamics","description":"Depletes 40 Static Envelop party and raid members within 40 yds in magical mist, increasing their attack or spell power by 95 for 15 seconds. Does not stack with similar effects.","rankDescriptions":["Depletes 40 Static Envelop party and raid members within 40 yds in magical mist, increasing their attack or spell power by 95 for 15 seconds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-6426","treeId":"coa-stormbringer-43","index":6426,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/spell_shaman_maelstromweapon.png","maxRank":1,"name":"Child of the Storm","description":"Reduces the cooldown of your Cloudburst and Windsurf by -20%.","rankDescriptions":["Reduces the cooldown of your Cloudburst and Windsurf by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34943","treeId":"coa-stormbringer-43","index":34943,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/_stonetablet_shamanair.png","maxRank":1,"name":"Storm Clouds","description":"Your Body of Lightning is now automatically cast on you when you cast it on an ally.","rankDescriptions":["Your Body of Lightning is now automatically cast on you when you cast it on an ally."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31268","treeId":"coa-stormbringer-43","index":31268,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_ascend_book_14_b.png","maxRank":1,"name":"Lexicon of Servitude","description":"Read from your ancient lexicon, causing your next Summon: Air Elemental to be instant cast and cost no mana. Lasts 15 seconds.","rankDescriptions":["Read from your ancient lexicon, causing your next Summon: Air Elemental to be instant cast and cost no mana. Lasts 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7837","treeId":"coa-stormbringer-43","index":7837,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_mage_iceflows.png","maxRank":1,"name":"Comforting Winds","description":"Your damage dealt now increases the haste of your Air Elemental by 1% for 10 seconds, stacking 5 times. Damage dealt by your Air Elemental now increases your haste by 1% for 10 seconds, stacking 5 times.","rankDescriptions":["Your damage dealt now increases the haste of your Air Elemental by 1% for 10 seconds, stacking 5 times. Damage dealt by your Air Elemental now increases your haste by 1% for 10 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34957","treeId":"coa-stormbringer-43","index":34957,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/spell_druid_ursolsvortex.png","maxRank":1,"name":"Hurricanes","description":"Casting Unshackle now unshackles you, increasing your damage dealt by 15% for 15 seconds.","rankDescriptions":["Casting Unshackle now unshackles you, increasing your damage dealt by 15% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29839","treeId":"coa-stormbringer-43","index":29839,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/windgate.png","maxRank":1,"name":"Wind Gate","description":"Place a Wind Gate at target location for 1 minute. You may cast Wind Gate: Evacuate on an ally to pull them to your Wind Gate.","rankDescriptions":["Place a Wind Gate at target location for 1 minute. You may cast Wind Gate: Evacuate on an ally to pull them to your Wind Gate."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30410","treeId":"coa-stormbringer-43","index":30410,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_tradeskill_81_breath_of_bwonsamdi_raid.png","maxRank":1,"name":"Skyfall","description":"Depletes 40 Static Command your Air Elemental, causing its next instance of damage within 8 seconds to strike an enemy, dealing 1349 + 100% arcane SP Nature damage and increasing the movement speed of all nearby allies by 30% for 15 seconds.","rankDescriptions":["Depletes 40 Static Command your Air Elemental, causing its next instance of damage within 8 seconds to strike an enemy, dealing 1349 + 100% arcane SP Nature damage and increasing the movement speed of all nearby allies by 30% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11435","treeId":"coa-stormbringer-43","index":11435,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/tempest's call.png","maxRank":1,"name":"Tempest's Call","description":"Bring the power of wind and storm to all nearby allies, increasing haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes.","rankDescriptions":["Bring the power of wind and storm to all nearby allies, increasing haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-11436","treeId":"coa-stormbringer-43","index":11436,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_lightning_shock_border.png","maxRank":1,"name":"Surge of Might","description":"Emanate an aura around you for 15 seconds, causing allied players within 100 yds to deal 70% nature SP additional damage as Nature damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute.","rankDescriptions":["Emanate an aura around you for 15 seconds, causing allied players within 100 yds to deal 70% nature SP additional damage as Nature damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-30807","treeId":"coa-stormbringer-43","index":30807,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/_monkability_expelharm_xuenwhite.png","maxRank":1,"name":"Nimbus","description":"Instantly resets the cooldown of your Wind Gate: Evacuate, Windsurf, and Unshackle spells.","rankDescriptions":["Instantly resets the cooldown of your Wind Gate: Evacuate, Windsurf, and Unshackle spells."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34951","treeId":"coa-stormbringer-43","index":34951,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_skyreach_four_wind.png","maxRank":1,"name":"Raging Zephyr","description":"Transforms your Whirlpool into Raging Zephyr.Raging Zephyr3 Charges, 35 sec recharge Summon a Raging Zephyr at the targeted location for 12 seconds. Every 4 sec, it will pull all enemies within 10 yds inside of it.","rankDescriptions":["Transforms your Whirlpool into Raging Zephyr.Raging Zephyr3 Charges, 35 sec recharge Summon a Raging Zephyr at the targeted location for 12 seconds. Every 4 sec, it will pull all enemies within 10 yds inside of it."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11857","treeId":"coa-stormbringer-43","index":11857,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/_book5_white.png","maxRank":1,"name":"Aurat Scripts","description":"Increases the damage gained per stack of Invigoration by 2%.","rankDescriptions":["Increases the damage gained per stack of Invigoration by 2%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31165","treeId":"coa-stormbringer-44","index":31165,"prerequisiteId":"coa-entry-4015","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4015","requiredRank":1},{"talentId":"coa-entry-29814","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/_liquidstone_water.png","maxRank":1,"name":"Tempest Sovereign","description":"Enhances some of your spells with the power of the maelstrom, transforming your Shock into Brine and Call Lightning into Torrential Wrath.BrineGenerates 25 Static Douse an enemy, dealing cond(gt(SPFR, SPN), 89+0+SPFR*0.571, 89+0+SPN*0.871) Frost damage, scaling with your critical strike rating. Scales with modifiers to Shock.Torrential WrathDepletes 50 Static Blast an enemy, dealing cond(gt(SPFR, SPN), 111+0+SPFR*1, 111+0+SPN*1.5) Frost damage, scaling with your haste rating.","rankDescriptions":["Enhances some of your spells with the power of the maelstrom, transforming your Shock into Brine and Call Lightning into Torrential Wrath.BrineGenerates 25 Static Douse an enemy, dealing cond(gt(SPFR, SPN), 89+0+SPFR*0.571, 89+0+SPN*0.871) Frost damage, scaling with your critical strike rating. Scales with modifiers to Shock.Torrential WrathDepletes 50 Static Blast an enemy, dealing cond(gt(SPFR, SPN), 111+0+SPFR*1, 111+0+SPN*1.5) Frost damage, scaling with your haste rating."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":false},{"id":"coa-entry-4015","treeId":"coa-stormbringer-44","index":4015,"prerequisiteId":"coa-entry-29814","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29814","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/ability_shawaterelemental_reform.png","maxRank":1,"name":"Conductive","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-34676","treeId":"coa-stormbringer-44","index":34676,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/ability_mage_waterjet.png","maxRank":1,"name":"Stormflow","description":"Depletes 20 Static Channel a storm beam upon an enemy, dealing 112 + 160% SP Frost Damage over 8 seconds, scaling with your spell haste. Shock can be instantly cast while channeling.","rankDescriptions":["Depletes 20 Static Channel a storm beam upon an enemy, dealing 112 + 160% SP Frost Damage over 8 seconds, scaling with your spell haste. Shock can be instantly cast while channeling."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34685","treeId":"coa-stormbringer-44","index":34685,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_misc_herb_stormvine.png","maxRank":2,"name":"Torrential Rage","description":"Increases the damage of Torrential Wrath and Stormflow by 30%.","rankDescriptions":["Increases the damage of Torrential Wrath and Stormflow by 15%.","Increases the damage of Torrential Wrath and Stormflow by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29836","treeId":"coa-stormbringer-44","index":29836,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/achievement_zone_stormpeaks_12.png","maxRank":1,"name":"Conduit","description":"Dealing Frost damage now has a 60% chance to increase the damage the target takes from Electrocute by 15% for 10 seconds, stacking up to 4 times.","rankDescriptions":["Dealing Frost damage now has a 60% chance to increase the damage the target takes from Electrocute by 15% for 10 seconds, stacking up to 4 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34686","treeId":"coa-stormbringer-44","index":34686,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/shaman_pvp_leaderclan.png","maxRank":3,"name":"Disciple of Thorim","description":"Reduces the cast time of your Torrential Wrath by -0.6 sec and increases your hit chance by 6%.","rankDescriptions":["Reduces the cast time of your Torrential Wrath by -0.2 sec and increases your hit chance by 2%.","Reduces the cast time of your Torrential Wrath by -0.4 sec and increases your hit chance by 4%.","Reduces the cast time of your Torrential Wrath by -0.6 sec and increases your hit chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9250","treeId":"coa-stormbringer-44","index":9250,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/5_shamanskill30_border.png","maxRank":1,"name":"Whirling Maelstrom","description":"Level 20 Passive Increases your spell haste by 20% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your spell haste by 20% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-6850","treeId":"coa-stormbringer-44","index":6850,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/spell_nature_stormreach.png","maxRank":1,"name":"Prodigy of Lei Shen","description":"Allows your Stormflow to critically strike.","rankDescriptions":["Allows your Stormflow to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11151","treeId":"coa-stormbringer-44","index":11151,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/achievement_boss_leishen.png","maxRank":1,"name":"Blessing of Lei Shen","description":"Damage dealt by Stormflow now heals you equal to the damage dealt.","rankDescriptions":["Damage dealt by Stormflow now heals you equal to the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30945","treeId":"coa-stormbringer-44","index":30945,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/custom_element(water)_b_01_border.png","maxRank":1,"name":"Drown","description":"Attempt to drown an enemy, reducing their healing received by -20% for 8 seconds. At the end of the duration, unleash a creature from the depths dealing cond(gt(SPFR, SPN), 83+0+SPFR*1, 83+0+SPN*1) Frost Damage. Each time you generate a stack of Conductive you increase their damage taken from this effect, stacking up to 5 times.","rankDescriptions":["Attempt to drown an enemy, reducing their healing received by -20% for 8 seconds. At the end of the duration, unleash a creature from the depths dealing cond(gt(SPFR, SPN), 83+0+SPFR*1, 83+0+SPN*1) Frost Damage. Each time you generate a stack of Conductive you increase their damage taken from this effect, stacking up to 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34679","treeId":"coa-stormbringer-44","index":34679,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/novart_magicspell_(54)_border.png","maxRank":1,"name":"Raining and Pouring","description":"Increases the critical damage of your Torrential Wrath and Electrocute by 30%.","rankDescriptions":["Increases the critical damage of your Torrential Wrath and Electrocute by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29518","treeId":"coa-stormbringer-44","index":29518,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/spell_frost_summonwaterelemental.png","maxRank":1,"name":"Deluge","description":"Depletes 50 Static Consumes Conductive Envelop enemies in the target area in water, dealing cond(gt(SPFR, SPN), 106+0+SPFR*0.3, 106+0+SPN*0.3) Frost damage, triggering Conduction and reducing their attack power by -24 for 10 seconds.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.","rankDescriptions":["Depletes 50 Static Consumes Conductive Envelop enemies in the target area in water, dealing cond(gt(SPFR, SPN), 106+0+SPFR*0.3, 106+0+SPN*0.3) Frost damage, triggering Conduction and reducing their attack power by -24 for 10 seconds.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."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30940","treeId":"coa-stormbringer-44","index":30940,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/priest_icon_chakra_blue.png","maxRank":1,"name":"Flow of Wrath","description":"Increases your critical strike chance by 15% against enemies affected by Drown.","rankDescriptions":["Increases your critical strike chance by 15% against enemies affected by Drown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8613","treeId":"coa-stormbringer-44","index":8613,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/inv_azerite_fireball.png","maxRank":2,"name":"Undertow","description":"Increases the critical strike chance of Drown by 50%.","rankDescriptions":["Increases the critical strike chance of Drown by 25%.","Increases the critical strike chance of Drown by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6466","treeId":"coa-stormbringer-44","index":6466,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/nhi_manaentagle_border.png","maxRank":1,"name":"Mystic Thunder","description":"Interrupt the target's current spell cast and then mark them for 5 seconds. If they cast again while marked they are silenced for 3 seconds.","rankDescriptions":["Interrupt the target's current spell cast and then mark them for 5 seconds. If they cast again while marked they are silenced for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9251","treeId":"coa-stormbringer-44","index":9251,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/nhi_frozenwhirl_border.png","maxRank":1,"name":"Unbridled Flow","description":"Level 30 Passive Damage dealt by Shock is now increased by 15% while channeling Stormflow.","rankDescriptions":["Level 30 Passive Damage dealt by Shock is now increased by 15% while channeling Stormflow."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-6467","treeId":"coa-stormbringer-44","index":6467,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/novart_magicspell_(55)_border.png","maxRank":1,"name":"Voltaic Mastery","description":"Damage dealt by Deluge is increased by 5% for each stack of Conductive.","rankDescriptions":["Damage dealt by Deluge is increased by 5% for each stack of Conductive."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34918","treeId":"coa-stormbringer-44","index":34918,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/custom_t_iceball_border.png","maxRank":2,"name":"Stormcaller","description":"Reduces the cooldown and mana cost of Eye of the Storm by -30%.","rankDescriptions":["Reduces the cooldown and mana cost of Eye of the Storm by -15%.","Reduces the cooldown and mana cost of Eye of the Storm by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6468","treeId":"coa-stormbringer-44","index":6468,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/custom_t_waterbomb_border.png","maxRank":1,"name":"Bursting","description":"Increases the stack value of Drowning by 20%.","rankDescriptions":["Increases the stack value of Drowning by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11468","treeId":"coa-stormbringer-44","index":11468,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/inv_sulfurelemental_water.png","maxRank":1,"name":"Washed Away","description":"Reduces the cooldown of Drown by -15 sec.","rankDescriptions":["Reduces the cooldown of Drown by -15 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30288","treeId":"coa-stormbringer-44","index":30288,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/novart_magicspell_(57)_border.png","maxRank":1,"name":"Cloudsurfer","description":"Increases the damage of Shock by 20%.","rankDescriptions":["Increases the damage of Shock by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29141","treeId":"coa-stormbringer-44","index":29141,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/spell_nature_lightningshield.png","maxRank":2,"name":"Lethal Current","description":"Increases the critical strike chance of Electrocute by 60% against enemies below 20% health.","rankDescriptions":["Increases the critical strike chance of Electrocute by 30% against enemies below 20% health.","Increases the critical strike chance of Electrocute by 60% against enemies below 20% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30946","treeId":"coa-stormbringer-44","index":30946,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/_energeticorblightblue.png","maxRank":1,"name":"Unstable","description":"Your direct damage critical strikes cause your Stormflow to tick -20% faster for 3 seconds.","rankDescriptions":["Your direct damage critical strikes cause your Stormflow to tick -20% faster for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34958","treeId":"coa-stormbringer-44","index":34958,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_deathknight_antimagiczone.png","maxRank":1,"name":"Thunder Ward","description":"Depletes All Static Encase yourself in an electrical shield, removing and making you immune to all physical attacks and spells for 10 seconds. Cannot generate Static for the duration.","rankDescriptions":["Depletes All Static Encase yourself in an electrical shield, removing and making you immune to all physical attacks and spells for 10 seconds. Cannot generate Static for the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30947","treeId":"coa-stormbringer-44","index":30947,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/nhi_lightning_empower_border.png","maxRank":1,"name":"Kinetic Energy","description":"Casting a spell that consumes Conductive now grants you a stack of Kinetic Energy.Kinetic EnergyCritical strike chance increased by 2%, stacking 3 times, for 10 seconds. Additional applications do not refresh the duration.","rankDescriptions":["Casting a spell that consumes Conductive now grants you a stack of Kinetic Energy.Kinetic EnergyCritical strike chance increased by 2%, stacking 3 times, for 10 seconds. Additional applications do not refresh the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11252","treeId":"coa-stormbringer-44","index":11252,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/spell_shaman_staticshock.png","maxRank":1,"name":"Storm Synergy","description":"Level 40 Passive Your Electrocute can now be used while channeling Stormflow.","rankDescriptions":["Level 40 Passive Your Electrocute can now be used while channeling Stormflow."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-29834","treeId":"coa-stormbringer-44","index":29834,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_staff_94.png","maxRank":1,"name":"Amped Flow","description":"While channeling Stormflow, your Shock now strikes 1 additional target at 75% value.","rankDescriptions":["While channeling Stormflow, your Shock now strikes 1 additional target at 75% value."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30944","treeId":"coa-stormbringer-44","index":30944,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/_monkability_cracklinglightning_xuenwhite.png","maxRank":1,"name":"Static Electricity","description":"Critical strikes with Torrential Wrath now spawn an Electrified Water Elemental to aid you in combat for 20 sec. When an Electrified Water Elemental dissipates, the cooldown of your Drown is reduced by -2 sec.","rankDescriptions":["Critical strikes with Torrential Wrath now spawn an Electrified Water Elemental to aid you in combat for 20 sec. When an Electrified Water Elemental dissipates, the cooldown of your Drown is reduced by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6469","treeId":"coa-stormbringer-44","index":6469,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/ability_thunderking_balllightning.png","maxRank":1,"name":"Conductor In Charge","description":"Increases all damage dealt by party and raid members by 3% and your Frost damage dealt by 5%. Does not stack with similar effects.","rankDescriptions":["Increases all damage dealt by party and raid members by 3% and your Frost damage dealt by 5%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34960","treeId":"coa-stormbringer-44","index":34960,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicstorm_border.png","maxRank":1,"name":"Hydro Powered","description":"Increases your spell critical damage by 35%.","rankDescriptions":["Increases your spell critical damage by 35%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30934","treeId":"coa-stormbringer-44","index":30934,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/shaman_pvp_staticcling.png","maxRank":1,"name":"Binder of Storms","description":"Damage dealt by Conduction now has a 60% chance to summon a Thunder Orb.Summon: Thunder OrbSummon a Thunder Orb at the target location for 16 seconds that triggers an Orb Shock and generates 10 Static. Orb ShockDeals 16 + 4% nature SP Nature Damage to up to 3 enemies and increases damage taken from Thunder Orbs and Spheres of Power for 8 seconds, stacking 6 times.","rankDescriptions":["Damage dealt by Conduction now has a 60% chance to summon a Thunder Orb.Summon: Thunder OrbSummon a Thunder Orb at the target location for 16 seconds that triggers an Orb Shock and generates 10 Static. Orb ShockDeals 16 + 4% nature SP Nature Damage to up to 3 enemies and increases damage taken from Thunder Orbs and Spheres of Power for 8 seconds, stacking 6 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7184","treeId":"coa-stormbringer-44","index":7184,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_deathelementalmount_blue.png","maxRank":1,"name":"Electrified Waters","description":"Your direct critical strikes against an enemy affected by Drown spawn an Electrified Water Elemental to aid you in combat for 20 seconds. When an Electrified Water Elemental dissipates, the cooldown of your Drown is reduced by -2 sec.","rankDescriptions":["Your direct critical strikes against an enemy affected by Drown spawn an Electrified Water Elemental to aid you in combat for 20 seconds. When an Electrified Water Elemental dissipates, the cooldown of your Drown is reduced by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29835","treeId":"coa-stormbringer-44","index":29835,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/custom_28_storm2_border.png","maxRank":1,"name":"Stormfury","description":"Depletes 50 Static Summon a flurry of rain, wind, and lightning from the sky for 20 seconds. Every 2 sec, enemies within 30 yds of the caster are zapped with lightning, dealing 540 + 55% nature SP Nature damage.","rankDescriptions":["Depletes 50 Static Summon a flurry of rain, wind, and lightning from the sky for 20 seconds. Every 2 sec, enemies within 30 yds of the caster are zapped with lightning, dealing 540 + 55% nature SP Nature damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11253","treeId":"coa-stormbringer-44","index":11253,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0002s_0000_lightning_border.png","maxRank":1,"name":"Hydromatic","description":"Level 50 Passive Your Electrocute is now affected by Conductive, increasing its damage by 10% per stack.","rankDescriptions":["Level 50 Passive Your Electrocute is now affected by Conductive, increasing its damage by 10% per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-5934","treeId":"coa-stormbringer-44","index":5934,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_monk_forcesphere.png","maxRank":1,"name":"Spheres of Power","description":"Your direct damage dealt now has a 25% chance to summon a Power Sphere that will move towards your target. Can only have 1 Power Sphere up at a time. Power Sphere will redirect its movement towards enemies you cast Stormflow on. Upon reaching the target, it deals cond(gt(SPA, SPN), 697+33+SPA*0.485, 697+33+SPN*0.485) Spellstorm Damage to them and enemies within 5 yds.","rankDescriptions":["Your direct damage dealt now has a 25% chance to summon a Power Sphere that will move towards your target. Can only have 1 Power Sphere up at a time. Power Sphere will redirect its movement towards enemies you cast Stormflow on. Upon reaching the target, it deals cond(gt(SPA, SPN), 697+33+SPA*0.485, 697+33+SPN*0.485) Spellstorm Damage to them and enemies within 5 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34684","treeId":"coa-stormbringer-44","index":34684,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/custom_t_snowwhirlwind_border.png","maxRank":1,"name":"Stormcloud","description":"Summon a cloud above an enemy target's head for 15 seconds, causing them to take 20% additional damage from your spells. Using Torrential Wrath on an enemy affected by Stormcloud causes a Geyser to erupt beneath them, dealing 571 + 25% frost SP Frost damage and knocking them up slightly.","rankDescriptions":["Summon a cloud above an enemy target's head for 15 seconds, causing them to take 20% additional damage from your spells. Using Torrential Wrath on an enemy affected by Stormcloud causes a Geyser to erupt beneath them, dealing 571 + 25% frost SP Frost damage and knocking them up slightly."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19684","treeId":"coa-stormbringer-44","index":19684,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_pandarenserpentmount_lightning_blue.png","maxRank":1,"name":"Shockingly Powerful","description":"Your Conduction now has a -25% chance to not consume Conductive.","rankDescriptions":["Your Conduction now has a -25% chance to not consume Conductive."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31263","treeId":"coa-stormbringer-87","index":31263,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/inv_misc_volatileair.png","maxRank":1,"name":"Cloudburst","description":"Create a mighty gust of wind that knocks away all nearby enemies.","rankDescriptions":["Create a mighty gust of wind that knocks away all nearby enemies."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29814","treeId":"coa-stormbringer-87","index":29814,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/spell_shaman_staticshock.png","maxRank":1,"name":"Charge","description":"Charge yourself with electricity, generating 100 Static and increasing your spell haste by 30% for your next cast. Lasts 10 seconds.","rankDescriptions":["Charge yourself with electricity, generating 100 Static and increasing your spell haste by 30% for your next cast. Lasts 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29138","treeId":"coa-stormbringer-87","index":29138,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/_d3stormarmor.png","maxRank":1,"name":"Body of Lightning","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","rankDescriptions":["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"],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34924","treeId":"coa-stormbringer-87","index":34924,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/spell_nature_windfury.png","maxRank":2,"name":"Wind Shift","description":"Increases your spell haste by 4% and reduces spell pushback suffered from damaging attacks by 50%.","rankDescriptions":["Increases your spell haste by 2% and reduces spell pushback suffered from damaging attacks by 25%.","Increases your spell haste by 4% and reduces spell pushback suffered from damaging attacks by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34693","treeId":"coa-stormbringer-87","index":34693,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_arcanelightning_border.png","maxRank":1,"name":"Arcane Lightning","description":"Increases your Intellect and Spirit by 5%.","rankDescriptions":["Increases your Intellect and Spirit by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30878","treeId":"coa-stormbringer-87","index":30878,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/custom_shamanskill_30_border.png","maxRank":1,"name":"Conjuration Mastery","description":"Your Conjure Storm now refunds 10 Static.","rankDescriptions":["Your Conjure Storm now refunds 10 Static."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29830","treeId":"coa-stormbringer-87","index":29830,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicstrike_border.png","maxRank":1,"name":"Invigorating Winds","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6556","treeId":"coa-stormbringer-87","index":6556,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/_ldaknowledge.png","maxRank":1,"name":"Studious","description":"Reduces the cast time of Shock by -15%.","rankDescriptions":["Reduces the cast time of Shock by -15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29139","treeId":"coa-stormbringer-87","index":29139,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/spell_nature_unrelentingstorm.png","maxRank":1,"name":"Eye of the Storm","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34694","treeId":"coa-stormbringer-87","index":34694,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/spells/spell_nature_wrathofair_totem.png","maxRank":1,"name":"Airing Out","description":"Reduces the duration of incapacitate and disorient effects by -20%.","rankDescriptions":["Reduces the duration of incapacitate and disorient effects by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34650","treeId":"coa-stormbringer-87","index":34650,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/inv_shield_1h_artifactstormfist_d_02.png","maxRank":1,"name":"Storm Warning","description":"Reduces the cast time of Storm Alert by -0.5 sec.","rankDescriptions":["Reduces the cast time of Storm Alert by -0.5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12919","treeId":"coa-stormbringer-87","index":12919,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/nhi_spirituallightning_border.png","maxRank":1,"name":"Concentrated Static","description":"Casting Discharge now restores 5% more mana.","rankDescriptions":["Casting Discharge now restores 5% more mana."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34919","treeId":"coa-stormbringer-87","index":34919,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/novart_magicspell_(55)_border.png","maxRank":1,"name":"Altered Course","description":"Casting Discharge now increases your movement speed by 20% for 6 seconds, stacking 2 times.","rankDescriptions":["Casting Discharge now increases your movement speed by 20% for 6 seconds, stacking 2 times."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34920","treeId":"coa-stormbringer-87","index":34920,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":4,"icon":"/assets/ui/spells/nhi_lightning_punch_border.png","maxRank":1,"name":"Surge Overload","description":"Your Body of Lightning now regenerates 1% additional maximum mana per tick.","rankDescriptions":["Your Body of Lightning now regenerates 1% additional maximum mana per tick."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34938","treeId":"coa-stormbringer-87","index":34938,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":4,"icon":"/assets/ui/spells/spell_shaman_ancestralawakening.png","maxRank":1,"name":"Improved Body of Lightning","description":"Reduces the cooldown of your Body of Lightning by -30 sec.","rankDescriptions":["Reduces the cooldown of your Body of Lightning by -30 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11926","treeId":"coa-stormbringer-87","index":11926,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/nhi_lightning_universe_border.png","maxRank":1,"name":"Ionic Aura","description":"Increases the maximum mana, Rage, Energy, Focus, and Runic Power of allies within 40 yds by 3%.","rankDescriptions":["Increases the maximum mana, Rage, Energy, Focus, and Runic Power of allies within 40 yds by 3%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34926","treeId":"coa-stormbringer-87","index":34926,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/nhi_arcaneburst_border.png","maxRank":1,"name":"Storm Sorcery","description":"Increases the effectiveness of Call of the Winds and Call of the Storm by 20%.","rankDescriptions":["Increases the effectiveness of Call of the Winds and Call of the Storm by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34931","treeId":"coa-stormbringer-87","index":34931,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/spell_shaman_improvedreincarnation.png","maxRank":2,"name":"Aethermancy","description":"Increases the critical strike chance of your Invigorating Surge by 40%.","rankDescriptions":["Increases the critical strike chance of your Invigorating Surge by 20%.","Increases the critical strike chance of your Invigorating Surge by 40%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7858","treeId":"coa-stormbringer-87","index":7858,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/spell_nature_eyeofthestorm.png","maxRank":1,"name":"Eye of the Tornado","description":"Your damaging critical strikes now refund 5 Static.","rankDescriptions":["Your damaging critical strikes now refund 5 Static."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34912","treeId":"coa-stormbringer-87","index":34912,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/inv_fish_stormray.png","maxRank":1,"name":"Storm Chaser","description":"Dealing direct spell damage now has a 33% chance to reduce the cast time of your next Call Lightning by -15% for 10 seconds, stacking 2 times.","rankDescriptions":["Dealing direct spell damage now has a 33% chance to reduce the cast time of your next Call Lightning by -15% for 10 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34922","treeId":"coa-stormbringer-87","index":34922,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0000s_0000_elemental_border.png","maxRank":1,"name":"Exhale","description":"Depletes 20 Static Release the pressure from nearby allies, dispelling 1 movement slowing effect, repeating every 3 sec for 9 seconds.","rankDescriptions":["Depletes 20 Static Release the pressure from nearby allies, dispelling 1 movement slowing effect, repeating every 3 sec for 9 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29341","treeId":"coa-stormbringer-87","index":29341,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/_castercloak_arcanes.png","maxRank":1,"name":"Stormcloak","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7474","treeId":"coa-stormbringer-87","index":7474,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/_auracloak_lightning.png","maxRank":1,"name":"Storm Ascendance","description":"Transform into a storm elemental for 15 seconds, increasing your Magic damage dealt by 20% and reducing your Magic damage taken by -50%. In addition, your damaging spells now generate an additional 10 Static. Can only occur once every sec.","rankDescriptions":["Transform into a storm elemental for 15 seconds, increasing your Magic damage dealt by 20% and reducing your Magic damage taken by -50%. In addition, your damaging spells now generate an additional 10 Static. Can only occur once every sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29410","treeId":"coa-stormbringer-87","index":29410,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/rogue_burstofspeed.png","maxRank":1,"name":"Storm Rider","description":"Reduces the cooldown of Gale Guard and Cloudburst by -5 sec.","rankDescriptions":["Reduces the cooldown of Gale Guard and Cloudburst by -5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34916","treeId":"coa-stormbringer-87","index":34916,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/achievement_zone_netherstorm_01.png","maxRank":2,"name":"Aether Mastery","description":"Allows 60% of your mana regeneration to continue while casting and increases your critical strike chance by 4%.","rankDescriptions":["Allows 30% of your mana regeneration to continue while casting and increases your critical strike chance by 2%.","Allows 60% of your mana regeneration to continue while casting and increases your critical strike chance by 4%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12317","treeId":"coa-stormbringer-87","index":12317,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_shaman_elementaloath.png","maxRank":1,"name":"Storm Channeling","description":"While Stormcloak is active your Armor is now increased by 500% of your Intellect.","rankDescriptions":["While Stormcloak is active your Armor is now increased by 500% of your Intellect."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7029","treeId":"coa-stormbringer-87","index":7029,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/skill_icon_skill87_border.png","maxRank":1,"name":"Magic Elimination","description":"Increases the amount of beneficial magic effects purged by your Stormbreaker by 1 and its range by 10 yds.","rankDescriptions":["Increases the amount of beneficial magic effects purged by your Stormbreaker by 1 and its range by 10 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13029","treeId":"coa-stormbringer-87","index":13029,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/spell_frost_manarecharge.png","maxRank":1,"name":"Pulse Conversion","description":"Dispelling a magic effect with Stormbreaker now heals you for 3% of your maximum health.","rankDescriptions":["Dispelling a magic effect with Stormbreaker now heals you for 3% of your maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34956","treeId":"coa-stormbringer-87","index":34956,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/inv_hand_1h_artifactstormfist_d_01dual.png","maxRank":2,"name":"Spellstorm Mastery","description":"Increases the effectiveness of your Aegis spells by 30%.","rankDescriptions":["Increases the effectiveness of your Aegis spells by 15%.","Increases the effectiveness of your Aegis spells by 30%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34638","treeId":"coa-stormbringer-87","index":34638,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_elemental_mote_air01.png","maxRank":1,"name":"Heavy Winds","description":"Increases the pushback reduction provided by Stabilizing Pressure by 15%.","rankDescriptions":["Increases the pushback reduction provided by Stabilizing Pressure by 15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34935","treeId":"coa-stormbringer-87","index":34935,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_eagle2windmount_white.png","maxRank":1,"name":"Aviana's Blessing","description":"Reduces your total threat generated by -30% and increases the range of Gust of Wind by 3 yds.","rankDescriptions":["Reduces your total threat generated by -30% and increases the range of Gust of Wind by 3 yds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30295","treeId":"coa-stormbringer-87","index":30295,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/spell_nature_moonglow.png","maxRank":1,"name":"Residual Power","description":"Reduces your Magic damage taken by -10%.","rankDescriptions":["Reduces your Magic damage taken by -10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34917","treeId":"coa-stormbringer-87","index":34917,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/ability_thunderking_balllightning.png","maxRank":1,"name":"Thunder Grip","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30868","treeId":"coa-stormbringer-87","index":30868,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/nhi_magicvortex_border.png","maxRank":1,"name":"Predictable Weather","description":"Every 30 sec, your next Storm Alert or Torrential Wrath is instant cast.","rankDescriptions":["Every 30 sec, your next Storm Alert or Torrential Wrath is instant cast."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34695","treeId":"coa-stormbringer-87","index":34695,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/nhi_lightning_timewarp_border.png","maxRank":1,"name":"Lingering Storm","description":"Increases the duration of your Stormcloak, Conjure Storm and Body of Lightning by 30%.","rankDescriptions":["Increases the duration of your Stormcloak, Conjure Storm and Body of Lightning by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30406","treeId":"coa-stormbringer-87","index":30406,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/nhi_manaballs_border.png","maxRank":1,"name":"Power Surge","description":"Your Storm Ascendance now increases Nature damage dealt by an additional 10%.","rankDescriptions":["Your Storm Ascendance now increases Nature damage dealt by an additional 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34915","treeId":"coa-stormbringer-87","index":34915,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/5_shamanskill41nobg_border.png","maxRank":1,"name":"Fog","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34690","treeId":"coa-stormbringer-87","index":34690,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_staff_2h_artifactaegwynsstaff_d_03.png","maxRank":1,"name":"Waterfall","description":"Dealing critical damage now reduces all of your cooldowns by -0.5 sec.","rankDescriptions":["Dealing critical damage now reduces all of your cooldowns by -0.5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30906","treeId":"coa-stormbringer-87","index":30906,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/nhi_hammerofthunder_border.png","maxRank":1,"name":"Thunder King","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/sun-cleric.json b/src/game/generated/talentUi/sun-cleric.json new file mode 100644 index 00000000..77bb830f --- /dev/null +++ b/src/game/generated/talentUi/sun-cleric.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"sun-cleric","trees":[{"id":"coa-sun-cleric-72","classId":"sun-cleric","name":"Seraphim","icon":"/assets/ui/spells/nhi_energyshield_border.png","background":"","description":"Seraphim nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-sun-cleric-70","classId":"sun-cleric","name":"Piety","icon":"/assets/ui/spells/nhi_fire_solar_border.png","background":"","description":"Piety nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-sun-cleric-90","classId":"sun-cleric","name":"Valkyrie","icon":"/assets/ui/spells/inv_sword_2h_armyoflight_c_01.png","background":"","description":"Valkyrie nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-sun-cleric-71","classId":"sun-cleric","name":"Blessings","icon":"/assets/ui/spells/ability_priest_ascendance.png","background":"","description":"Blessings nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-sun-cleric-87","classId":"sun-cleric","name":"Class","icon":"/assets/ui/spells/paladin_holy.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-31194","treeId":"coa-sun-cleric-70","index":31194,"prerequisiteId":"coa-entry-4046","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4046","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/nhi_fire_solar_border.png","maxRank":1,"name":"Dawnsear","description":"Blast an enemy with burning light, dealing 88 + 100% fire SP Fire damage.","rankDescriptions":["Blast an enemy with burning light, dealing 88 + 100% fire SP Fire damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4046","treeId":"coa-sun-cleric-70","index":4046,"prerequisiteId":"coa-entry-29510","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29510","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holymeditation_border.png","maxRank":1,"name":"Sunrise and Sunset","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-30957","treeId":"coa-sun-cleric-70","index":30957,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/nhi_holysparks_border.png","maxRank":1,"name":"Radiant Flame","description":"Launch radiant spheres at an enemy each dealing 31 + 20.69% SP Holyflame Damage, repeating every 1 sec for 4 seconds.","rankDescriptions":["Launch radiant spheres at an enemy each dealing 31 + 20.69% SP Holyflame Damage, repeating every 1 sec for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34050","treeId":"coa-sun-cleric-70","index":34050,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_shield_1h_artifactstormfist_d_03.png","maxRank":1,"name":"Scorch Marks","description":"Casting Dawnsear and Sunflare now have a 40% chance to grant Scorch Marks for 10 seconds.Scorch MarksYour next Radiant Flame has no mana cost, ticks -50% faster, and its duration is reduced by -50%.","rankDescriptions":["Casting Dawnsear and Sunflare now have a 40% chance to grant Scorch Marks for 10 seconds.Scorch MarksYour next Radiant Flame has no mana cost, ticks -50% faster, and its duration is reduced by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30311","treeId":"coa-sun-cleric-70","index":30311,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/custom_t_fireinourhands_border.png","maxRank":1,"name":"Solar Conduit","description":"Reduces the cast time of Dawnsear by -20% while Dawn is active.","rankDescriptions":["Reduces the cast time of Dawnsear by -20% while Dawn is active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2313","treeId":"coa-sun-cleric-70","index":2313,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_circlet_firelands_d_01.png","maxRank":1,"name":"Fire from the Heavens","description":"Level 20 Passive Damage dealt by Radiant Flame now has a 10% chance to launch a Solar Flare at your target.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds.","rankDescriptions":["Level 20 Passive Damage dealt by Radiant Flame now has a 10% chance to launch a Solar Flare at your target.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-30308","treeId":"coa-sun-cleric-70","index":30308,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/nhi_firehands_border.png","maxRank":2,"name":"Burning Cascade","description":"Reduces the cast time and mana cost of Dawnsear and Sunflare by -20%.","rankDescriptions":["Reduces the cast time and mana cost of Dawnsear and Sunflare by -10%.","Reduces the cast time and mana cost of Dawnsear and Sunflare by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7281","treeId":"coa-sun-cleric-70","index":7281,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/ability_racial_orbitalstrike.png","maxRank":1,"name":"Rapture","description":"Call down a streak of sun light to smite your target, dealing 111 + 200% fire SP Fire damage to them and nearby enemies, piercing all immunities, but dealing less damage with each enemy struck.","rankDescriptions":["Call down a streak of sun light to smite your target, dealing 111 + 200% fire SP Fire damage to them and nearby enemies, piercing all immunities, but dealing less damage with each enemy struck."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7280","treeId":"coa-sun-cleric-70","index":7280,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/70_inscription_vantus_rune_light.png","maxRank":3,"name":"Photosynthetic","description":"Increases your spell haste by 9%, plus an additional 3% during the day.","rankDescriptions":["Increases your spell haste by 3%, plus an additional 1% during the day.","Increases your spell haste by 6%, plus an additional 2% during the day.","Increases your spell haste by 9%, plus an additional 3% during the day."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30312","treeId":"coa-sun-cleric-70","index":30312,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv_misc_firedancer_01.png","maxRank":1,"name":"Purgation","description":"Dealing damage with Radiant Flame now increases the target's Holy and Fire damage taken from you by 1% for 8 seconds, stacking 8 times.","rankDescriptions":["Dealing damage with Radiant Flame now increases the target's Holy and Fire damage taken from you by 1% for 8 seconds, stacking 8 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34053","treeId":"coa-sun-cleric-70","index":34053,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0004s_0000_armor_border.png","maxRank":1,"name":"Solar Champion","description":"Increases the range of your Piety spells by 20% and reduces the threat generated by them by -20%.","rankDescriptions":["Increases the range of your Piety spells by 20% and reduces the threat generated by them by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30795","treeId":"coa-sun-cleric-70","index":30795,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/5_priestskill01_border.png","maxRank":1,"name":"Solar Concord","description":"Resets the cooldown of Horusath Blast while in Sunrise and Rapture while in Sunset and causes their damage dealt to launch a Solar Flare. Lasts 15 seconds.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds.","rankDescriptions":["Resets the cooldown of Horusath Blast while in Sunrise and Rapture while in Sunset and causes their damage dealt to launch a Solar Flare. Lasts 15 seconds.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6866","treeId":"coa-sun-cleric-70","index":6866,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/nhi_fireinyourhand_border.png","maxRank":2,"name":"Wrath of God","description":"Increases the critical strike chance of Sunflare and Dawnsear by 6% and reduces spell pushback suffered from damaging attacks by 100%.","rankDescriptions":["Increases the critical strike chance of Sunflare and Dawnsear by 3% and reduces spell pushback suffered from damaging attacks by 50%.","Increases the critical strike chance of Sunflare and Dawnsear by 6% and reduces spell pushback suffered from damaging attacks by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30310","treeId":"coa-sun-cleric-70","index":30310,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/spell_holy_searinglight.png","maxRank":1,"name":"Sun's Hope","description":"Damage dealt by Solar Flares now grants you 1 Solar Power and increase the targets chance to be critically struck by spells by 3% for 8 seconds.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds.","rankDescriptions":["Damage dealt by Solar Flares now grants you 1 Solar Power and increase the targets chance to be critically struck by spells by 3% for 8 seconds.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6816","treeId":"coa-sun-cleric-70","index":6816,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/spell_paladin_lightofdawn.png","maxRank":1,"name":"Struck by the Sun","description":"Level 30 Passive Increases your Holy and Fire spell damage by 30% and your spell hit rating by 6% of your Intellect.","rankDescriptions":["Level 30 Passive Increases your Holy and Fire spell damage by 30% and your spell hit rating by 6% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-30815","treeId":"coa-sun-cleric-70","index":30815,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/ability_paladin_blindinglight2.png","maxRank":1,"name":"Sun Gate","description":"Shift 25 yds forward at light speed, removing all root effects. This leaves behind a Sun Gate for 15 seconds that allies can interact with to blink themselves the same distance forward. Allies can only use Sun Gate every 90 seconds.","rankDescriptions":["Shift 25 yds forward at light speed, removing all root effects. This leaves behind a Sun Gate for 15 seconds that allies can interact with to blink themselves the same distance forward. Allies can only use Sun Gate every 90 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4986","treeId":"coa-sun-cleric-70","index":4986,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/ability_paladin_righteousvengeance.png","maxRank":1,"name":"City of Light","description":"Damage dealt by Radiant Flame now restores 3% of your missing health and mana.","rankDescriptions":["Damage dealt by Radiant Flame now restores 3% of your missing health and mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33986","treeId":"coa-sun-cleric-70","index":33986,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/spell_holy_searinglightpriest.png","maxRank":1,"name":"Radiant Fury","description":"Damage dealt by Radiant Flame is now increased by 10% on enemies below 35% health.","rankDescriptions":["Damage dealt by Radiant Flame is now increased by 10% on enemies below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9977","treeId":"coa-sun-cleric-70","index":9977,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/nhi_holywhirlpool_border.png","maxRank":1,"name":"Lights of Absolution","description":"Damage dealt by Horusath Blast now grants you Light of Absolution for 10 seconds.Lights of AbsolutionDamage dealt by Solar Flares now restores 2% missing health, Energy, Focus, Runic Power, and Rage to allies within 40 yds. Can only occur once every 0.5 sec.","rankDescriptions":["Damage dealt by Horusath Blast now grants you Light of Absolution for 10 seconds.Lights of AbsolutionDamage dealt by Solar Flares now restores 2% missing health, Energy, Focus, Runic Power, and Rage to allies within 40 yds. Can only occur once every 0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30307","treeId":"coa-sun-cleric-70","index":30307,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/nhi_holyrod_border.png","maxRank":1,"name":"Flames of Absolution","description":"Damage dealt by Horusath Blast now launches a Solar Flare at up to 5 enemies within 5 yds of your target.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds.","rankDescriptions":["Damage dealt by Horusath Blast now launches a Solar Flare at up to 5 enemies within 5 yds of your target.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30814","treeId":"coa-sun-cleric-70","index":30814,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/nhi_holy_tornado_border.png","maxRank":1,"name":"Sunwell","description":"Become an embodiment of the sun for 30 seconds that periodically dispels fear, sleep, and charm effects every 3 sec from allies within 40 yds.","rankDescriptions":["Become an embodiment of the sun for 30 seconds that periodically dispels fear, sleep, and charm effects every 3 sec from allies within 40 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30812","treeId":"coa-sun-cleric-70","index":30812,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/nhi_holy_beam_border.png","maxRank":1,"name":"Holy Fervor","description":"Increases the effectiveness of Sunrise and Sunset by 20%.","rankDescriptions":["Increases the effectiveness of Sunrise and Sunset by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12210","treeId":"coa-sun-cleric-70","index":12210,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_mage_flamecannon.png","maxRank":1,"name":"Flames of the Father","description":"Your Fire damage dealt is increased by 10% against Burning targets.","rankDescriptions":["Your Fire damage dealt is increased by 10% against Burning targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30137","treeId":"coa-sun-cleric-70","index":30137,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/5_paladinskill18_border.png","maxRank":1,"name":"Grace","description":"Increases the spell damage bonus of Dawnsear by 20% and Sunflare by 10%.","rankDescriptions":["Increases the spell damage bonus of Dawnsear by 20% and Sunflare by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4816","treeId":"coa-sun-cleric-70","index":4816,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/nhi_holywhirlpool_border.png","maxRank":1,"name":"Pious","description":"Level 40 Passive Increases your critical damage dealt by 150% and your critical strikes grant allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","rankDescriptions":["Level 40 Passive Increases your critical damage dealt by 150% and your critical strikes grant allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-7343","treeId":"coa-sun-cleric-70","index":7343,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/5_priestskill26_border.png","maxRank":2,"name":"A Pious Life","description":"Increases the damage of Horusath Blast and Rapture by 30%.","rankDescriptions":["Increases the damage of Horusath Blast and Rapture by 15%.","Increases the damage of Horusath Blast and Rapture by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34051","treeId":"coa-sun-cleric-70","index":34051,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/_maievblade_light.png","maxRank":1,"name":"Harsh Lessons","description":"Casting Dawn now grants Scorch Marks.Scorch MarksYour next Radiant Flame has no mana cost, ticks -50% faster, and its duration is reduced by -50%.","rankDescriptions":["Casting Dawn now grants Scorch Marks.Scorch MarksYour next Radiant Flame has no mana cost, ticks -50% faster, and its duration is reduced by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30136","treeId":"coa-sun-cleric-70","index":30136,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/spell_burningsoul.png","maxRank":1,"name":"Sunburn","description":"Reduces the cast time of Rapture by -0.5 sec.","rankDescriptions":["Reduces the cast time of Rapture by -0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6558","treeId":"coa-sun-cleric-70","index":6558,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holystrike_border.png","maxRank":1,"name":"The Coming Dawn","description":"While Dawn is active, damage dealt by Radiant Flame now reduces the cooldown of Dawnfall and Solar Concord by -1 sec.","rankDescriptions":["While Dawn is active, damage dealt by Radiant Flame now reduces the cooldown of Dawnfall and Solar Concord by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30813","treeId":"coa-sun-cleric-70","index":30813,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/_soulfire_light.png","maxRank":1,"name":"Adjudication","description":"Casting Rapture now causes your next Dawnsear within 10 seconds to strike your target twice and launch a Solar Flare at the target.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds.","rankDescriptions":["Casting Rapture now causes your next Dawnsear within 10 seconds to strike your target twice and launch a Solar Flare at the target.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34046","treeId":"coa-sun-cleric-70","index":34046,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/nhi_bookthrow_border.png","maxRank":1,"name":"Learning Light","description":"Entering Sunset or Sunrise increases your spell haste by 20%. Lasts for 10 seconds or 3 casts.","rankDescriptions":["Entering Sunset or Sunrise increases your spell haste by 20%. Lasts for 10 seconds or 3 casts."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34049","treeId":"coa-sun-cleric-70","index":34049,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/spell_holy_blessingofprotection.png","maxRank":1,"name":"Soul of Light","description":"Reduces the cooldown of An'she's Blessing by -60 sec.","rankDescriptions":["Reduces the cooldown of An'she's Blessing by -60 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30797","treeId":"coa-sun-cleric-70","index":30797,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_fireball_border.png","maxRank":1,"name":"Spears of Glory","description":"Damage dealt by Radiant Flame now has an 15% chance to grant you Spears of Glory.Spears of GloryYour next Dawnsear within 10 seconds is instant cast and deals 25% increased damage.","rankDescriptions":["Damage dealt by Radiant Flame now has an 15% chance to grant you Spears of Glory.Spears of GloryYour next Dawnsear within 10 seconds is instant cast and deals 25% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5312","treeId":"coa-sun-cleric-70","index":5312,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_holy_excorcism_02.png","maxRank":1,"name":"Burn The Heretics","description":"Increases your damage and healing by 10% against targets below 35% health. Additionally, when Scorch Marks are consumed you now gain 10% increased Magic damage for 8 seconds.","rankDescriptions":["Increases your damage and healing by 10% against targets below 35% health. Additionally, when Scorch Marks are consumed you now gain 10% increased Magic damage for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34020","treeId":"coa-sun-cleric-70","index":34020,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/spell_holy_divinepurpose.png","maxRank":1,"name":"Moment of Triumph","description":"Horusath Blast or Rapture now have a 20% chance to not incur a cooldown on cast.","rankDescriptions":["Horusath Blast or Rapture now have a 20% chance to not incur a cooldown on cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9896","treeId":"coa-sun-cleric-70","index":9896,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_holywatch_border.png","maxRank":1,"name":"Day Cycles","description":"Level 50 Passive While in Sunrise, the remaining cooldown of Horusath Blast is reduced by 10% every 1 sec. While in Sunset, the remaining cooldown of Rapture is reduced by 10% every 1 sec.","rankDescriptions":["Level 50 Passive While in Sunrise, the remaining cooldown of Horusath Blast is reduced by 10% every 1 sec. While in Sunset, the remaining cooldown of Rapture is reduced by 10% every 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-34052","treeId":"coa-sun-cleric-70","index":34052,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/spell_holy_devineaegis.png","maxRank":1,"name":"Burning Heat","description":"Casting Sunflare now has a 30% chance to transform your next Sunflare into Sun Ray. Casting Horusath Blast is now guaranteed to transform your next Sunflare into Sun Ray.Sun RayShine the light of the sun on an enemy, dealing 773 + 100% holy SP Holy Damage and granting you Scorch Marks. Scorch MarksYour next Radiant Flame has no mana cost, ticks -50% faster, and its duration is reduced by -50%.","rankDescriptions":["Casting Sunflare now has a 30% chance to transform your next Sunflare into Sun Ray. Casting Horusath Blast is now guaranteed to transform your next Sunflare into Sun Ray.Sun RayShine the light of the sun on an enemy, dealing 773 + 100% holy SP Holy Damage and granting you Scorch Marks. Scorch MarksYour next Radiant Flame has no mana cost, ticks -50% faster, and its duration is reduced by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29505","treeId":"coa-sun-cleric-70","index":29505,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/uico_fire_spell_07_border.png","maxRank":1,"name":"Sun Down","description":"Bring the wrath of the sun down upon an enemy after 2 seconds, dealing 1180 + 130% SP Holyflame Damage and scorching the earth beneath them for 9 seconds. While inside, enemies are struck by a Solar Flare every 3 sec and take 15% increased damage from Rapture and Horusath Blast.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds.","rankDescriptions":["Bring the wrath of the sun down upon an enemy after 2 seconds, dealing 1180 + 130% SP Holyflame Damage and scorching the earth beneath them for 9 seconds. While inside, enemies are struck by a Solar Flare every 3 sec and take 15% increased damage from Rapture and Horusath Blast.Solar Flare (Damage)Deals 137 + 26% SP Holyflame Damage and reduces the target's chance to hit by -3% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6865","treeId":"coa-sun-cleric-70","index":6865,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/nhi_holy_hand_border.png","maxRank":1,"name":"Duality of Light","description":"While in Sunset, your Holy damage dealt grants Twin Flame.Twin Flames (Fire)Your next Rapture within 15 seconds strikes again for 8% of the damage dealt, stacking 10 times. While in Sunrise, your Fire damage dealt grants Sun PowerSun Power (Holy)Your next Horusath Blast within 15 seconds strikes again for 8% of the damage dealt, stacking 10 times.","rankDescriptions":["While in Sunset, your Holy damage dealt grants Twin Flame.Twin Flames (Fire)Your next Rapture within 15 seconds strikes again for 8% of the damage dealt, stacking 10 times. While in Sunrise, your Fire damage dealt grants Sun PowerSun Power (Holy)Your next Horusath Blast within 15 seconds strikes again for 8% of the damage dealt, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31195","treeId":"coa-sun-cleric-71","index":31195,"prerequisiteId":"coa-entry-4047","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4047","requiredRank":1},{"talentId":"coa-entry-29446","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/ability_priest_ascendance.png","maxRank":1,"name":"Bless","description":"Bless an ally, restoring 5% of their maximum health every 10 sec for 5 minutes. Can only affect 1 ally at a time.","rankDescriptions":["Bless an ally, restoring 5% of their maximum health every 10 sec for 5 minutes. Can only affect 1 ally at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4047","treeId":"coa-sun-cleric-71","index":4047,"prerequisiteId":"coa-entry-29446","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29446","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/item_holyspark.png","maxRank":1,"name":"Sunlight","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-30210","treeId":"coa-sun-cleric-71","index":30210,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/spell_holy_summonlightwell.png","maxRank":2,"name":"An'she's Guidance","description":"Increases your Holy critical strike chance by 4% and reduces spell pushback suffered from damaging attacks by 100%.","rankDescriptions":["Increases your Holy critical strike chance by 2% and reduces spell pushback suffered from damaging attacks by 50%.","Increases your Holy critical strike chance by 4% and reduces spell pushback suffered from damaging attacks by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29506","treeId":"coa-sun-cleric-71","index":29506,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/spell-ap-orange.png","maxRank":2,"name":"Angelic","description":"Reduces the cast time of Illumination by 0.25 sec.","rankDescriptions":["Reduces the cast time of Illumination by 0.25 sec.","Reduces the cast time of Illumination by 0.25 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7718","treeId":"coa-sun-cleric-71","index":7718,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/spell_holy_divineintervention.png","maxRank":1,"name":"Sanctified","description":"Healing a target affected by Bless refunds 25% of the mana cost of the spell.","rankDescriptions":["Healing a target affected by Bless refunds 25% of the mana cost of the spell."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30214","treeId":"coa-sun-cleric-71","index":30214,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_paladin_lightofdawn.png","maxRank":1,"name":"Blessing of Absolution","description":"Empower a Blessed ally to unleash a burst of holy energy in front of them, dealing 32 + 150% healing Holy damage enemies in a 10 yd frontal cone and generating additional threat.","rankDescriptions":["Empower a Blessed ally to unleash a burst of holy energy in front of them, dealing 32 + 150% healing Holy damage enemies in a 10 yd frontal cone and generating additional threat."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30817","treeId":"coa-sun-cleric-71","index":30817,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/inv_helm_plate_raidpaladinmythic_q_01.png","maxRank":1,"name":"Faith","description":"Direct healing done now increases the target's Armor by 10% for 20 seconds.","rankDescriptions":["Direct healing done now increases the target's Armor by 10% for 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4547","treeId":"coa-sun-cleric-71","index":4547,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/ability_paladin_gaurdedbythelight.png","maxRank":1,"name":"Sun Worship","description":"Level 20 Passive Increases your healing power by 15% of your Intellect and your spell haste rating by 25% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your healing power by 15% of your Intellect and your spell haste rating by 25% of your Intellect."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-33998","treeId":"coa-sun-cleric-71","index":33998,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/ability_paladin_lightoftheprotector.png","maxRank":1,"name":"Daybreak","description":"Make a prayer, healing an ally for 155 + 59.5% healing.","rankDescriptions":["Make a prayer, healing an ally for 155 + 59.5% healing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29183","treeId":"coa-sun-cleric-71","index":29183,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/spell_holy_powerinfusion.png","maxRank":2,"name":"Divine Vision","description":"Increases your Holy damage and healing done by 8%.","rankDescriptions":["Increases your Holy damage and healing done by 4%.","Increases your Holy damage and healing done by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31376","treeId":"coa-sun-cleric-71","index":31376,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/nhi_holy_hand_border.png","maxRank":1,"name":"Hot Spot","description":"Casting Daybreak now causes your next 2 Shines within 10 seconds to have a -25% reduced cast time.","rankDescriptions":["Casting Daybreak now causes your next 2 Shines within 10 seconds to have a -25% reduced cast time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34037","treeId":"coa-sun-cleric-71","index":34037,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_jewelry_necklace_75.png","maxRank":1,"name":"Gleaming Light","description":"Increases healing of Illumination and Daybreak by 20%.","rankDescriptions":["Increases healing of Illumination and Daybreak by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7714","treeId":"coa-sun-cleric-71","index":7714,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_priest_angelicbulwark.png","maxRank":1,"name":"Blessing of Purity","description":"Protect a Blessed ally, making them immune to all damage for 4 seconds but reducing their damage and healing done by -25%.","rankDescriptions":["Protect a Blessed ally, making them immune to all damage for 4 seconds but reducing their damage and healing done by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30213","treeId":"coa-sun-cleric-71","index":30213,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/spell_holy_fanaticism.png","maxRank":1,"name":"Savior","description":"Increases your healing on targets below 20% health by 30%.","rankDescriptions":["Increases your healing on targets below 20% health by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30212","treeId":"coa-sun-cleric-71","index":30212,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/spell_holy_prayerofmendingtga.png","maxRank":1,"name":"Hope","description":"Your critical heals now reduce the cooldown of Solar Invocation spells by -1 sec. Can occur only once per sec.","rankDescriptions":["Your critical heals now reduce the cooldown of Solar Invocation spells by -1 sec. Can occur only once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4546","treeId":"coa-sun-cleric-71","index":4546,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/spell_holy_auramastery.png","maxRank":1,"name":"Holy Form","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":false},{"id":"coa-entry-34039","treeId":"coa-sun-cleric-71","index":34039,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_essence_reapingflames.png","maxRank":3,"name":"Ancient Rites","description":"Increases your Intellect by 6% and causes you to regenerate mana equal to 3% of your maximum mana every 20 sec.","rankDescriptions":["Increases your Intellect by 2% and causes you to regenerate mana equal to 2 to 1% of your maximum mana every 20 sec.","Increases your Intellect by 4% and causes you to regenerate mana equal to 2% of your maximum mana every 20 sec.","Increases your Intellect by 6% and causes you to regenerate mana equal to 3% of your maximum mana every 20 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12832","treeId":"coa-sun-cleric-71","index":12832,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_holy_renew.png","maxRank":1,"name":"Pure Heart","description":"Removes the damage penalty provided by Blessing of Purity.","rankDescriptions":["Removes the damage penalty provided by Blessing of Purity."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34002","treeId":"coa-sun-cleric-71","index":34002,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_priest_soulwarding.png","maxRank":1,"name":"Lightward","description":"Increases the duration of Blessing of Purity by 2 sec.","rankDescriptions":["Increases the duration of Blessing of Purity by 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6653","treeId":"coa-sun-cleric-71","index":6653,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_qirajidol_sun.png","maxRank":1,"name":"Stalwart","description":"Melee critical strikes against you prevent you from being critically struck again for 4 seconds.","rankDescriptions":["Melee critical strikes against you prevent you from being critically struck again for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-14001","treeId":"coa-sun-cleric-71","index":14001,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/spell_holy_holyprotection.png","maxRank":1,"name":"Sun Strength","description":"Radiant Cascade is now guaranteed to critically strike on allies affected by Bless.","rankDescriptions":["Radiant Cascade is now guaranteed to critically strike on allies affected by Bless."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34001","treeId":"coa-sun-cleric-71","index":34001,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_artifact_xp04.png","maxRank":1,"name":"Everglow","description":"Your Radiant Cascade now bounces to 2 additional allies.","rankDescriptions":["Your Radiant Cascade now bounces to 2 additional allies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29413","treeId":"coa-sun-cleric-71","index":29413,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/spell_holy_holybolt.png","maxRank":1,"name":"Heat Wave","description":"Healing with Illumination, Shine, and Daybreak now additionally heals 5 of the target's lowest health nearby allies for 15% of the value.","rankDescriptions":["Healing with Illumination, Shine, and Daybreak now additionally heals 5 of the target's lowest health nearby allies for 15% of the value."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7719","treeId":"coa-sun-cleric-71","index":7719,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_priest_reflectiveshield.png","maxRank":1,"name":"Blessing of Retribution","description":"Guard a Blessed ally, deflecting the next harmful spell cast on them within 1 minute.","rankDescriptions":["Guard a Blessed ally, deflecting the next harmful spell cast on them within 1 minute."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34038","treeId":"coa-sun-cleric-71","index":34038,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_paladin_selflesshealer.png","maxRank":1,"name":"Mercy","description":"Grant mercy to an ally, abolishing 2 disease effects, repeating every 3 sec for 12 seconds.","rankDescriptions":["Grant mercy to an ally, abolishing 2 disease effects, repeating every 3 sec for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29186","treeId":"coa-sun-cleric-71","index":29186,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/spell_holy_power.png","maxRank":1,"name":"Glaring Rays","description":"Increases the spell haste of all party and raid members by 3% and your spell haste by an additional 3%. Does not stack with similar effects.","rankDescriptions":["Increases the spell haste of all party and raid members by 3% and your spell haste by an additional 3%. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4747","treeId":"coa-sun-cleric-71","index":4747,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/ability_priest_wordsofmeaning.png","maxRank":1,"name":"Heaven’s Appraisal","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-30818","treeId":"coa-sun-cleric-71","index":30818,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_holy_restoration.png","maxRank":1,"name":"Sunbeams","description":"Reduces the cast time of Radiant Cascade by -15%.","rankDescriptions":["Reduces the cast time of Radiant Cascade by -15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12351","treeId":"coa-sun-cleric-71","index":12351,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_nature_slowingtotem.png","maxRank":1,"name":"Improved Radiant Cascade","description":"Increases the healing done and reduces the mana cost of Radiant Cascade by -15%.","rankDescriptions":["Increases the healing done and reduces the mana cost of Radiant Cascade by -15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7051","treeId":"coa-sun-cleric-71","index":7051,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/5_priestskill09_border.png","maxRank":1,"name":"Blazing Chariot","description":"Increases the healing and damage of Radiance by 125%.","rankDescriptions":["Increases the healing and damage of Radiance by 125%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11051","treeId":"coa-sun-cleric-71","index":11051,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_holy_greaterblessingoflight.png","maxRank":1,"name":"Gateway to Heaven","description":"Whenever you use Dawn you now apply Radiance to yourself for 6 sec.RadianceEvery 2 sec you burst with light, healing nearby allies for 36 + 20% SP + 10% AP and damaging nearby enemies for 37 + 40% SP + 15% AP.","rankDescriptions":["Whenever you use Dawn you now apply Radiance to yourself for 6 sec.RadianceEvery 2 sec you burst with light, healing nearby allies for 36 + 20% SP + 10% AP and damaging nearby enemies for 37 + 40% SP + 15% AP."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6285","treeId":"coa-sun-cleric-71","index":6285,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_holy_harmundeadaura.png","maxRank":1,"name":"Blightbreaker","description":"Increases the tick rate of Mercy by -50%, but increases its mana cost by 100%.","rankDescriptions":["Increases the tick rate of Mercy by -50%, but increases its mana cost by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34036","treeId":"coa-sun-cleric-71","index":34036,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_qirajidol_rebirth_holy.png","maxRank":1,"name":"Harmonious Bells","description":"Your Mercy now affects 4 additional allies near the primary target.","rankDescriptions":["Your Mercy now affects 4 additional allies near the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6335","treeId":"coa-sun-cleric-71","index":6335,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/spell_holy_holyguidance.png","maxRank":1,"name":"Touch of Light","description":"Enemies struck by Blessing of Absolution now deal -20% reduced damage for 5 seconds.","rankDescriptions":["Enemies struck by Blessing of Absolution now deal -20% reduced damage for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34042","treeId":"coa-sun-cleric-71","index":34042,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/custom_element(fire)_b_01_border.png","maxRank":1,"name":"Solar Invigoration","description":"For 15 seconds, your allies take 20% increased healing and their direct damage dealt now causes them to cast Shine. Can only occur once every 2 sec.Shine (Rank 8)Shine holy light upon an ally, healing for 511 + 29.47% SP.","rankDescriptions":["For 15 seconds, your allies take 20% increased healing and their direct damage dealt now causes them to cast Shine. Can only occur once every 2 sec.Shine (Rank 8)Shine holy light upon an ally, healing for 511 + 29.47% SP."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34043","treeId":"coa-sun-cleric-71","index":34043,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_holy_divineprotection.png","maxRank":1,"name":"Lead Me Not Astray","description":"Doubles the healing done by Bless.","rankDescriptions":["Doubles the healing done by Bless."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34041","treeId":"coa-sun-cleric-71","index":34041,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_priest_bindingprayers.png","maxRank":1,"name":"Cultivate Divinity","description":"Effectively healing with Radiant Cascade has a 20% chance to increase the healing of your next Illumination by 20%. Effectively healing with Illumination has a 40% chance to increase the healing of your next Radiant Cascade by 20%.","rankDescriptions":["Effectively healing with Radiant Cascade has a 20% chance to increase the healing of your next Illumination by 20%. Effectively healing with Illumination has a 40% chance to increase the healing of your next Radiant Cascade by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9747","treeId":"coa-sun-cleric-71","index":9747,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/5_priestskill01_border.png","maxRank":1,"name":"The Redeemer","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-34035","treeId":"coa-sun-cleric-71","index":34035,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_priest_ascension.png","maxRank":1,"name":"Solar Priest","description":"Reduces the cooldown of Solar Invigoration by -30 sec. In addition, whenever allies effectively heal with Shine they now cast Illumination. Can only occur once every 6 sec.Illumination (Rank 11)Illuminate an ally, healing them for 1373 + 68% healing.","rankDescriptions":["Reduces the cooldown of Solar Invigoration by -30 sec. In addition, whenever allies effectively heal with Shine they now cast Illumination. Can only occur once every 6 sec.Illumination (Rank 11)Illuminate an ally, healing them for 1373 + 68% healing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30211","treeId":"coa-sun-cleric-71","index":30211,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_paladin_holyavenger.png","maxRank":1,"name":"Blessing of Triumph","description":"Redeem a Blessed ally for 20 seconds, granting 25% increased haste and 10% increased damage. If the ally falls below 35% maximum health they are healed for 10% of their direct damage dealt for the remaining duration.","rankDescriptions":["Redeem a Blessed ally for 20 seconds, granting 25% increased haste and 10% increased damage. If the ally falls below 35% maximum health they are healed for 10% of their direct damage dealt for the remaining duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30840","treeId":"coa-sun-cleric-71","index":30840,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_priest_divinestar_holy.png","maxRank":1,"name":"Empowered Holy Form","description":"Doubles the effectiveness of your Holy Form.","rankDescriptions":["Doubles the effectiveness of your Holy Form."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7319","treeId":"coa-sun-cleric-72","index":7319,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/nhi_energyshield_border.png","maxRank":1,"name":"Dawnbreak","description":"Radiate holy light from your shield on enemies in front of you, dealing 23 + 25% SP + 10% AP Holyfire Damage, scaling with your block value.","rankDescriptions":["Radiate holy light from your shield on enemies in front of you, dealing 23 + 25% SP + 10% AP Holyfire Damage, scaling with your block value."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4048","treeId":"coa-sun-cleric-72","index":4048,"prerequisiteId":"coa-entry-33979","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-33979","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/ability_paladin_conviction.png","maxRank":1,"name":"Angelic Presence","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7664","treeId":"coa-sun-cleric-72","index":7664,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/ability_paladin_empoweredsealsrighteous.png","maxRank":1,"name":"The Chosen","description":"Your Illumination now shields you for 30% of the amount healed.","rankDescriptions":["Your Illumination now shields you for 30% of the amount healed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34011","treeId":"coa-sun-cleric-72","index":34011,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/5_paladinskill11_border.png","maxRank":1,"name":"Shining Shield","description":"Activating Dawn now grants Shining Shield for 8 seconds.Shining ShieldIncreases your Armor contribution from your shield by 50%.","rankDescriptions":["Activating Dawn now grants Shining Shield for 8 seconds.Shining ShieldIncreases your Armor contribution from your shield by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7666","treeId":"coa-sun-cleric-72","index":7666,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holyhammer_border.png","maxRank":1,"name":"Hammer of Kings","description":"Become anointed by the light, summoning a blessed hammer that encircles you dealing 43 + 12% AP + 22% holy SP Holyfire Damage to nearby enemies every 3 sec for 12 seconds.","rankDescriptions":["Become anointed by the light, summoning a blessed hammer that encircles you dealing 43 + 12% AP + 22% holy SP Holyfire Damage to nearby enemies every 3 sec for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7646","treeId":"coa-sun-cleric-72","index":7646,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_shield_57.png","maxRank":1,"name":"Blessed Bulwark","description":"Avoiding an attack now has a 25% chance to regenerate 5% of your base mana.","rankDescriptions":["Avoiding an attack now has a 25% chance to regenerate 5% of your base mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29515","treeId":"coa-sun-cleric-72","index":29515,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_shield_1h_raidnazmir_d_01.png","maxRank":1,"name":"Seraphic Bulwark","description":"2 Charges, 25 sec recharge Raise your blessed shield, increasing your block value by 100%. Lasts for 5 blocks or 10 seconds.","rankDescriptions":["2 Charges, 25 sec recharge Raise your blessed shield, increasing your block value by 100%. Lasts for 5 blocks or 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4649","treeId":"coa-sun-cleric-72","index":4649,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_fire_firearmor.png","maxRank":1,"name":"Sun-Touched Armor","description":"Level 20 Passive Increases your Armor by 150% of your Strength and Intellect and increases your total Stamina by 15%.","rankDescriptions":["Level 20 Passive Increases your Armor by 150% of your Strength and Intellect and increases your total Stamina by 15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-34006","treeId":"coa-sun-cleric-72","index":34006,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/nhi_holyinfusion_border.png","maxRank":1,"name":"Hope","description":"When the absorption shield from The Chosen is depleted, it explodes for 80 + 25% AP + 45% holy SP Holy damage, split between enemies within 8 yds.","rankDescriptions":["When the absorption shield from The Chosen is depleted, it explodes for 80 + 25% AP + 45% holy SP Holy damage, split between enemies within 8 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34012","treeId":"coa-sun-cleric-72","index":34012,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/nhi_holy_punch_border.png","maxRank":2,"name":"Divine Right","description":"Increases your chance to critically strike and to parry attacks by 4% and your spell hit chance by 10%.","rankDescriptions":["Increases your chance to critically strike and to parry attacks by 2% and your spell hit chance by 5%.","Increases your chance to critically strike and to parry attacks by 4% and your spell hit chance by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31383","treeId":"coa-sun-cleric-72","index":31383,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/ability_priest_reflectiveshield.png","maxRank":1,"name":"Blessed One","description":"Increases your chance to block by 5% and reduces the duration of movement slowing effects by -20%.","rankDescriptions":["Increases your chance to block by 5% and reduces the duration of movement slowing effects by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6772","treeId":"coa-sun-cleric-72","index":6772,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/nhi_soulburn_border.png","maxRank":1,"name":"Protector of the Flame","description":"Avoiding an attack now also deals 648% fire SP + 3% AP Fire damage to the attacker. Can only occur once per sec.","rankDescriptions":["Avoiding an attack now also deals 648% fire SP + 3% AP Fire damage to the attacker. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34010","treeId":"coa-sun-cleric-72","index":34010,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_artifact_xp05.png","maxRank":1,"name":"Dawnguard","description":"Fulfilling a Vow now increases your block chance by 2% for 15 seconds, stacking 5 times.","rankDescriptions":["Fulfilling a Vow now increases your block chance by 2% for 15 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29323","treeId":"coa-sun-cleric-72","index":29323,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_artifact_xp03.png","maxRank":1,"name":"Solar Eclipse","description":"Dawnbreak now unleashes a burst of holy energy after a 1 seconds delay, dealing 22 + 12.5% holy SP + 10% AP Holy damage to nearby enemies.","rankDescriptions":["Dawnbreak now unleashes a burst of holy energy after a 1 seconds delay, dealing 22 + 12.5% holy SP + 10% AP Holy damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9650","treeId":"coa-sun-cleric-72","index":9650,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/spell_holy_blessingofprotection.png","maxRank":1,"name":"Holy Strength","description":"Level 30 Passive Increases your spell power by 100% of your Strength.","rankDescriptions":["Level 30 Passive Increases your spell power by 100% of your Strength."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7632","treeId":"coa-sun-cleric-72","index":7632,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/spell_holy_impholyconcentration.png","maxRank":1,"name":"Grace","description":"Increases your chance to dodge by 5%.","rankDescriptions":["Increases your chance to dodge by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7658","treeId":"coa-sun-cleric-72","index":7658,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_helm_plate_raidpaladin_r_01mythic.png","maxRank":1,"name":"Sun Warrior's Guidance","description":"Increases the critical strike chance of Gavels and Dawnbreak by 5%.","rankDescriptions":["Increases the critical strike chance of Gavels and Dawnbreak by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30674","treeId":"coa-sun-cleric-72","index":30674,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/spell_holy_auramastery.png","maxRank":1,"name":"The Chosen King","description":"Casting Hammer of Kings now also increases your critical strike chance by 10% for 10 seconds.","rankDescriptions":["Casting Hammer of Kings now also increases your critical strike chance by 10% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7649","treeId":"coa-sun-cleric-72","index":7649,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_holy_holyguidance.png","maxRank":1,"name":"Solar Nova","description":"Emit a powerful holy light in an 8 yd radius, dealing 93 + 50% holy SP + 5.06% AP Holy damage to all nearby enemies. Reduces the cooldown of your Solar Invocation spells by -1 sec for each target struck. This ability is guaranteed to critically strike against Undead or Demons.","rankDescriptions":["Emit a powerful holy light in an 8 yd radius, dealing 93 + 50% holy SP + 5.06% AP Holy damage to all nearby enemies. Reduces the cooldown of your Solar Invocation spells by -1 sec for each target struck. This ability is guaranteed to critically strike against Undead or Demons."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7635","treeId":"coa-sun-cleric-72","index":7635,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_artifact_xp01.png","maxRank":1,"name":"Heat Death","description":"Your Solar Eclipse now reduces the enemies chance to hit by -3% for 15 sec.","rankDescriptions":["Your Solar Eclipse now reduces the enemies chance to hit by -3% for 15 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7659","treeId":"coa-sun-cleric-72","index":7659,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/custom_56_holy_border.png","maxRank":2,"name":"Paying The Tithe","description":"Increases the critical strike chance of Dawnbreak by 20% and your Seraphic Bulwark now lasts for 4 additional blocks.","rankDescriptions":["Increases the critical strike chance of Dawnbreak by 10% and your Seraphic Bulwark now lasts for 2 additional blocks.","Increases the critical strike chance of Dawnbreak by 20% and your Seraphic Bulwark now lasts for 4 additional blocks."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11006","treeId":"coa-sun-cleric-72","index":11006,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_shield_1h_bastionquest_b_01.png","maxRank":1,"name":"Sunflare Aegis","description":"Blocking attacks now has a 30% chance to grant you Hammer of Kings for 4 sec. If Hammer of Kings is already active, you increase the duration by 4 sec.Hammer of KingsBecome anointed by the light, summoning a blessed hammer that encircles you dealing 43 + 12% AP + 22% holy SP Holyfire Damage to nearby enemies every 3 sec for 12 seconds.","rankDescriptions":["Blocking attacks now has a 30% chance to grant you Hammer of Kings for 4 sec. If Hammer of Kings is already active, you increase the duration by 4 sec.Hammer of KingsBecome anointed by the light, summoning a blessed hammer that encircles you dealing 43 + 12% AP + 22% holy SP Holyfire Damage to nearby enemies every 3 sec for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34015","treeId":"coa-sun-cleric-72","index":34015,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/spell_magic_greaterblessingofkings.png","maxRank":1,"name":"Blessing of Kings","description":"Critical strikes now reduce the cooldown of Hammer of Kings and Solar Prayer by -1.","rankDescriptions":["Critical strikes now reduce the cooldown of Hammer of Kings and Solar Prayer by -1."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7657","treeId":"coa-sun-cleric-72","index":7657,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_shield_1h_artifactnorgannon_d_06.png","maxRank":1,"name":"Bastion of Hope","description":"Critical strikes now bless you, regenerating 41 + 15% SP mana and increasing all of your primary stats by 10% for 5 seconds.","rankDescriptions":["Critical strikes now bless you, regenerating 41 + 15% SP mana and increasing all of your primary stats by 10% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34013","treeId":"coa-sun-cleric-72","index":34013,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/spell_holy_championsgrace.png","maxRank":1,"name":"Valiance","description":"Increases your melee attack speed by 15% and your first auto attack on a target hits twice.","rankDescriptions":["Increases your melee attack speed by 15% and your first auto attack on a target hits twice."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7647","treeId":"coa-sun-cleric-72","index":7647,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/inv_legion_faction_valarjar.png","maxRank":1,"name":"Gleaming Armor","description":"Reduces your spell damage taken by -5%, plus an additional -5% while above 80% health.","rankDescriptions":["Reduces your spell damage taken by -5%, plus an additional -5% while above 80% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30958","treeId":"coa-sun-cleric-72","index":30958,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/spell_holy_avengersshield.png","maxRank":1,"name":"Glorious Defender","description":"Increases the effectiveness of Gavels by 25%.","rankDescriptions":["Increases the effectiveness of Gavels by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34014","treeId":"coa-sun-cleric-72","index":34014,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/spell_holy_sealofwrath.png","maxRank":1,"name":"Luminary Mendicant","description":"Increases the mana restored by Vow of Grace by 100%.","rankDescriptions":["Increases the mana restored by Vow of Grace by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4651","treeId":"coa-sun-cleric-72","index":4651,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/5_paladinskill13_border.png","maxRank":1,"name":"Solar Discernment","description":"Level 40 Passive Increases your critical strike rating and expertise rating by 12% of your Intellect.","rankDescriptions":["Level 40 Passive Increases your critical strike rating and expertise rating by 12% of your Intellect."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-30379","treeId":"coa-sun-cleric-72","index":30379,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/spell_holy_restoration.png","maxRank":1,"name":"Dawn's Arrival","description":"Casting Dawnbreak now has a 40% chance to reset the cooldown of Gavels and causes the next one to not incur a cooldown.","rankDescriptions":["Casting Dawnbreak now has a 40% chance to reset the cooldown of Gavels and causes the next one to not incur a cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7085","treeId":"coa-sun-cleric-72","index":7085,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_holy_devineaegis.png","maxRank":1,"name":"Stand Against Darkness","description":"During the day you now deal -10% more Holy damage and take -10% reduced periodic damage.","rankDescriptions":["During the day you now deal -10% more Holy damage and take -10% reduced periodic damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-1374","treeId":"coa-sun-cleric-72","index":1374,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_priest_burningwill.png","maxRank":1,"name":"Calm","description":"Calm an enemy, disarming their melee and ranged weapons for 6 seconds. If your target is an Undead or Demon, they are also unable to attack or move for 6 seconds. Enemies that are immune to silence effects cannot be affected by this.","rankDescriptions":["Calm an enemy, disarming their melee and ranged weapons for 6 seconds. If your target is an Undead or Demon, they are also unable to attack or move for 6 seconds. Enemies that are immune to silence effects cannot be affected by this."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7665","treeId":"coa-sun-cleric-72","index":7665,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/spell_holy_excorcism.png","maxRank":1,"name":"Judgement","description":"Increases the critical damage of Gavels by 15% and they are now guaranteed to critically strike against Undead enemies.","rankDescriptions":["Increases the critical damage of Gavels by 15% and they are now guaranteed to critically strike against Undead enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7909","treeId":"coa-sun-cleric-72","index":7909,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/inv_shield_1h_hyrja_d_01.png","maxRank":1,"name":"Sun Disc","description":"You now emit an aura that causes all nearby allies to receive 6% increased healing. Does not stack with similar effects. In addition, the healing done by Illumination is increased by 20%.","rankDescriptions":["You now emit an aura that causes all nearby allies to receive 6% increased healing. Does not stack with similar effects. In addition, the healing done by Illumination is increased by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30569","treeId":"coa-sun-cleric-72","index":30569,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/novart_weapon_(28)_border.png","maxRank":1,"name":"Justicar's Wrath","description":"Bring holy wrath down upon an enemy, dealing 508 + 55% SP + 25% AP High Threat Holy damage and increasing the target's spell damage taken by 10% for 15 seconds.","rankDescriptions":["Bring holy wrath down upon an enemy, dealing 508 + 55% SP + 25% AP High Threat Holy damage and increasing the target's spell damage taken by 10% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7653","treeId":"coa-sun-cleric-72","index":7653,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_holy_crusade.png","maxRank":1,"name":"Together In Conquest","description":"Your Solar Invocation spells now causes your Illumination to heal an additional nearby ally at 70% effectiveness for 10 seconds. In addition, Illumination now reduces the cooldown of Solar Invocation spells by -1 sec.","rankDescriptions":["Your Solar Invocation spells now causes your Illumination to heal an additional nearby ally at 70% effectiveness for 10 seconds. In addition, Illumination now reduces the cooldown of Solar Invocation spells by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7655","treeId":"coa-sun-cleric-72","index":7655,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/5_holywater_border.png","maxRank":1,"name":"Sacred Vessel","description":"Expending Angelic Presence increases your critical strike chance and healing by 1% for 20 seconds, stacking up to 10 times. Additional applications do not refresh the duration.","rankDescriptions":["Expending Angelic Presence increases your critical strike chance and healing by 1% for 20 seconds, stacking up to 10 times. Additional applications do not refresh the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11651","treeId":"coa-sun-cleric-72","index":11651,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_holy_ardentdefender.png","maxRank":1,"name":"Clarity of the Heavens","description":"Level 50 Passive Increases your block value by 50% of your Intellect.","rankDescriptions":["Level 50 Passive Increases your block value by 50% of your Intellect."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7652","treeId":"coa-sun-cleric-72","index":7652,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/inv_helm_plate_raidpaladindragon_d_01.png","maxRank":1,"name":"Adjudicator","description":"Your Justicar's Wrath now deals an additional 50% of its damage dealt to the target and enemies around them, healing you for 10% of the damage dealt.","rankDescriptions":["Your Justicar's Wrath now deals an additional 50% of its damage dealt to the target and enemies around them, healing you for 10% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7656","treeId":"coa-sun-cleric-72","index":7656,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holyscroll_border.png","maxRank":1,"name":"Scroll of Hope","description":"Read from a scroll of hope, reducing Magic damage taken by party and raid members within 15 yds by -30% for 10 seconds. If any ally falls below 35% of their maximum health while this is active they are instantly healed once for 15% of their maximum health.","rankDescriptions":["Read from a scroll of hope, reducing Magic damage taken by party and raid members within 15 yds by -30% for 10 seconds. If any ally falls below 35% of their maximum health while this is active they are instantly healed once for 15% of their maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7651","treeId":"coa-sun-cleric-72","index":7651,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/nhi_holypeak_border.png","maxRank":1,"name":"Sun Strider","description":"Critical strikes with Gavels or Dawnbreak now increases the healing of your next Illumination within 20 seconds by 15%, stacking up to 3 times. Consuming the stacks increases your critical block chance and movement speed by 10% for 8 seconds.","rankDescriptions":["Critical strikes with Gavels or Dawnbreak now increases the healing of your next Illumination within 20 seconds by 15%, stacking up to 3 times. Consuming the stacks increases your critical block chance and movement speed by 10% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29510","treeId":"coa-sun-cleric-87","index":29510,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/paladin_holy.png","maxRank":1,"name":"Horusath Blast","description":"Blast an enemy with the power of the sun, dealing 73 + 100% holy SP Holy damage and reducing their attack power by 235 for 15 seconds.","rankDescriptions":["Blast an enemy with the power of the sun, dealing 73 + 100% holy SP Holy damage and reducing their attack power by 235 for 15 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33979","treeId":"coa-sun-cleric-87","index":33979,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/spell_holy_devineaegis.png","maxRank":1,"name":"Solar Prayer","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29446","treeId":"coa-sun-cleric-87","index":29446,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/ability_priest_rayofhope.png","maxRank":1,"name":"Solar Invocation: Resplendence","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34018","treeId":"coa-sun-cleric-87","index":34018,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/nhi_hammerofjustice_border.png","maxRank":2,"name":"Swift Justice","description":"Increases your haste by 6%.","rankDescriptions":["Increases your haste by 3%.","Increases your haste by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29513","treeId":"coa-sun-cleric-87","index":29513,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/ability_paladin_holyavenger.png","maxRank":2,"name":"Solar Might","description":"Increases your Strength and Intellect by 10%.","rankDescriptions":["Increases your Strength and Intellect by 5%.","Increases your Strength and Intellect by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34029","treeId":"coa-sun-cleric-87","index":34029,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/spell_fire_lavaspawn.png","maxRank":1,"name":"Sintorcher","description":"Increases your damage and healing done by 3% and your critical strike chance against Undead by 2%.","rankDescriptions":["Increases your damage and healing done by 3% and your critical strike chance against Undead by 2%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31150","treeId":"coa-sun-cleric-87","index":31150,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/ability_priest_archangel.png","maxRank":1,"name":"Sun Stride","description":"Rush forward at a high speed for 2 seconds.","rankDescriptions":["Rush forward at a high speed for 2 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6563","treeId":"coa-sun-cleric-87","index":6563,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/ability_priest_ascension.png","maxRank":1,"name":"Devotee","description":"Increases the effectiveness of your Devotions by 20%.","rankDescriptions":["Increases the effectiveness of your Devotions by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33988","treeId":"coa-sun-cleric-87","index":33988,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/nhi_holy_toglory_border.png","maxRank":1,"name":"Solar Invocation: Conquest","description":"Invoke the spirit of An'she to instantly generate 10 Solar Power and refunds 10% of your maximum mana.","rankDescriptions":["Invoke the spirit of An'she to instantly generate 10 Solar Power and refunds 10% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30816","treeId":"coa-sun-cleric-87","index":30816,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_holy_holybolt.png","maxRank":1,"name":"Blessed Armor","description":"Increases your spell power by 1 for every 125 Armor you have.","rankDescriptions":["Increases your spell power by 1 for every 125 Armor you have."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30153","treeId":"coa-sun-cleric-87","index":30153,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/5_priestskill07_border.png","maxRank":1,"name":"Solar Invocation: Revelation","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7369","treeId":"coa-sun-cleric-87","index":7369,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/ability_skyreach_energize.png","maxRank":1,"name":"Suncharged","description":"Your Judgement Day now applies Suncharged to the target every 1 sec, stacking 10 times. At the end of the duration, or when Judgement Day ends, the enemy takes 477 + 30% AP + 50% holy SP Holy damage, increased for each stack on the target.","rankDescriptions":["Your Judgement Day now applies Suncharged to the target every 1 sec, stacking 10 times. At the end of the duration, or when Judgement Day ends, the enemy takes 477 + 30% AP + 50% holy SP Holy damage, increased for each stack on the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30309","treeId":"coa-sun-cleric-87","index":30309,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/spell_holy_holynova.png","maxRank":2,"name":"Enveloped in Light","description":"Increases your armor contribution from mail and plate items by 20% and reduces Shadow damage taken by -6%.","rankDescriptions":["Increases your armor contribution from mail and plate items by 10% and reduces Shadow damage taken by -3%.","Increases your armor contribution from mail and plate items by 20% and reduces Shadow damage taken by -6%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34032","treeId":"coa-sun-cleric-87","index":34032,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/buff_forcesoforder.png","maxRank":1,"name":"Solar Guardian","description":"Reduces the duration of stun effects on you by -20%.","rankDescriptions":["Reduces the duration of stun effects on you by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10956","treeId":"coa-sun-cleric-87","index":10956,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/spell_holy_lightsgrace.png","maxRank":1,"name":"Devoted to the Light","description":"Removes the cost of your Solar Invocation spells and they now generate 5% of your missing mana when cast.","rankDescriptions":["Removes the cost of your Solar Invocation spells and they now generate 5% of your missing mana when cast."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30956","treeId":"coa-sun-cleric-87","index":30956,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/5_sun_border.png","maxRank":1,"name":"Devoted to the Sun","description":"Reduces the cooldown of your Solar Invocation spells by -5 sec.","rankDescriptions":["Reduces the cooldown of your Solar Invocation spells by -5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6569","treeId":"coa-sun-cleric-87","index":6569,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/5_holypower_border.png","maxRank":1,"name":"Holy Conquest","description":"Reduces the mana cost of Paragon, Chosen of the Light, and Judgement Day by -50%.","rankDescriptions":["Reduces the mana cost of Paragon, Chosen of the Light, and Judgement Day by -50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7314","treeId":"coa-sun-cleric-87","index":7314,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_priest_halo.png","maxRank":1,"name":"Glare","description":"Flash powerful light that deals 20 + 27.41% SP Holy damage and stuns enemies within 8 yds for 5 seconds.","rankDescriptions":["Flash powerful light that deals 20 + 27.41% SP Holy damage and stuns enemies within 8 yds for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34031","treeId":"coa-sun-cleric-87","index":34031,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/nhi_holyshock_border.png","maxRank":1,"name":"Pure Light","description":"While above 80% health you now deal 10% increased damage and healing.","rankDescriptions":["While above 80% health you now deal 10% increased damage and healing."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7910","treeId":"coa-sun-cleric-87","index":7910,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_ability_holyfire_nova.png","maxRank":1,"name":"Radiance","description":"Every 2 sec you burst with light, healing nearby allies for 36 + 20% SP + 10% AP and damaging nearby enemies for 37 + 40% SP + 15% AP. Lasts 10 seconds.","rankDescriptions":["Every 2 sec you burst with light, healing nearby allies for 36 + 20% SP + 10% AP and damaging nearby enemies for 37 + 40% SP + 15% AP. Lasts 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7397","treeId":"coa-sun-cleric-87","index":7397,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/inv_artifact_bulwarkoforder.png","maxRank":1,"name":"Gleaming Vigil","description":"Reduces your Physical damage taken by -5%, plus an additional 5% while above 80% health.","rankDescriptions":["Reduces your Physical damage taken by -5%, plus an additional 5% while above 80% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34022","treeId":"coa-sun-cleric-87","index":34022,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_holy_holysmite.png","maxRank":1,"name":"Censure","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19511","treeId":"coa-sun-cleric-87","index":19511,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/spell_holy_innerfire.png","maxRank":1,"name":"Fortuitous","description":"Removes the cast time of Glare while above 80% health.","rankDescriptions":["Removes the cast time of Glare while above 80% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29511","treeId":"coa-sun-cleric-87","index":29511,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/spell_holy_holyprotection.png","maxRank":1,"name":"Angelic Light","description":"Reduces the cooldown of Glare by -30 sec.","rankDescriptions":["Reduces the cooldown of Glare by -30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29182","treeId":"coa-sun-cleric-87","index":29182,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_holy_flashheal.png","maxRank":2,"name":"Guiding Glow","description":"Allows Dawn to affect 5 additional casts.","rankDescriptions":["Allows Dawn to affect 3 additional casts.","Allows Dawn to affect 5 additional casts."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11910","treeId":"coa-sun-cleric-87","index":11910,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/spell_holy_rune.png","maxRank":1,"name":"Zealous","description":"Reduces the cooldown of Radiance by -30 sec.","rankDescriptions":["Reduces the cooldown of Radiance by -30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11911","treeId":"coa-sun-cleric-87","index":11911,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/custom_paladinskill_11_border.png","maxRank":1,"name":"Hegemony","description":"Increases the duration of Radiance by 5 sec.","rankDescriptions":["Increases the duration of Radiance by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33994","treeId":"coa-sun-cleric-87","index":33994,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/spell_holy_surgeoflight.png","maxRank":1,"name":"Exorcism","description":"Sanctify now dispels 1 additional effect.","rankDescriptions":["Sanctify now dispels 1 additional effect."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29178","treeId":"coa-sun-cleric-87","index":29178,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_holy_auramastery.png","maxRank":1,"name":"Unbreakable Focus","description":"Reduces the cooldown of Gavels and Horusath Blast by -20%.","rankDescriptions":["Reduces the cooldown of Gavels and Horusath Blast by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11025","treeId":"coa-sun-cleric-87","index":11025,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/spell_holy_avenginewrath.png","maxRank":1,"name":"Final Vows","description":"Fulfilling your Vow of Grace now also reduces the cooldown of the triggered ability by 10%.","rankDescriptions":["Fulfilling your Vow of Grace now also reduces the cooldown of the triggered ability by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34025","treeId":"coa-sun-cleric-87","index":34025,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/spell_holy_restoration.png","maxRank":1,"name":"Taking Vows","description":"Your Vow of Light now heals for an additional 5% of damage taken or direct healing done by you.","rankDescriptions":["Your Vow of Light now heals for an additional 5% of damage taken or direct healing done by you."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6322","treeId":"coa-sun-cleric-87","index":6322,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/inv_torch_thrown.png","maxRank":1,"name":"Light The Way","description":"Healing done by Shine or Illumination now increases the targets movement speed by 20% for 3 seconds.","rankDescriptions":["Healing done by Shine or Illumination now increases the targets movement speed by 20% for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30148","treeId":"coa-sun-cleric-87","index":30148,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/nhi_holyinfusion_border.png","maxRank":1,"name":"Sun Shield","description":"Reduces your chance to be hit by spells by -3%.","rankDescriptions":["Reduces your chance to be hit by spells by -3%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30154","treeId":"coa-sun-cleric-87","index":30154,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/spell_holy_blessedrecovery.png","maxRank":1,"name":"Nysoni's Blessing","description":"Dawn will now provide an additional effect based on your specialization.","rankDescriptions":["Dawn will now provide an additional effect based on your specialization."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6565","treeId":"coa-sun-cleric-87","index":6565,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_valkiergoldpet.png","maxRank":1,"name":"Valkyrie's Watch","description":"Damage that would take you below 35% health and damage taken while below 35% health is reduced by 25%.","rankDescriptions":["Damage that would take you below 35% health and damage taken while below 35% health is reduced by 25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6878","treeId":"coa-sun-cleric-87","index":6878,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_artifact_xp03.png","maxRank":1,"name":"Warmth","description":"Direct healing now increases the target's health by 300 for 15 seconds.","rankDescriptions":["Direct healing now increases the target's health by 300 for 15 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29181","treeId":"coa-sun-cleric-87","index":29181,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/_d3waveoflight.png","maxRank":1,"name":"New Day","description":"Start anew, reseting the cooldown of Paragon, Chosen of the Light, and Judgement Day spells.","rankDescriptions":["Start anew, reseting the cooldown of Paragon, Chosen of the Light, and Judgement Day spells."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6564","treeId":"coa-sun-cleric-87","index":6564,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_sundarkening_border.png","maxRank":1,"name":"Twilight","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30766","treeId":"coa-sun-cleric-87","index":30766,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_circlet_firelands_d_01.png","maxRank":1,"name":"Circle of Valor","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31196","treeId":"coa-sun-cleric-90","index":31196,"prerequisiteId":"coa-entry-9901","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-9901","requiredRank":1},{"talentId":"coa-entry-29510","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_sword_2h_armyoflight_c_01.png","maxRank":1,"name":"Glorious Execution","description":"Strike with both weapons dealing Weapon Damage plus 8 Physical damage and regenerate mana equal to 5% of the damage dealt.","rankDescriptions":["Strike with both weapons dealing Weapon Damage plus 8 Physical damage and regenerate mana equal to 5% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9901","treeId":"coa-sun-cleric-90","index":9901,"prerequisiteId":"coa-entry-29510","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29510","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_valkiergoldpet.png","maxRank":1,"name":"Valkyr's Grip","description":"Level 10 Passive Allows you to dual wield and to wield a Two-Handed Mace, Sword, or Polearm in each hand and your chance to hit is increased by 6%.","rankDescriptions":["Level 10 Passive Allows you to dual wield and to wield a Two-Handed Mace, Sword, or Polearm in each hand and your chance to hit is increased by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7638","treeId":"coa-sun-cleric-90","index":7638,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/spell_holy_power.png","maxRank":1,"name":"Odyn's Vanguard","description":"Melee attacks now have a 20% chance to reset the cooldown of Glorious Execution.","rankDescriptions":["Melee attacks now have a 20% chance to reset the cooldown of Glorious Execution."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33997","treeId":"coa-sun-cleric-90","index":33997,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/sunslam.png","maxRank":1,"name":"Sunslam","description":"Slam an enemy every 1 sec with the might of the sun, dealing 28 + 15.94% AP Holy damage and stunning them for 1 seconds. Lasts 4 seconds. Only usable while Dawn is active. Usable while moving.","rankDescriptions":["Slam an enemy every 1 sec with the might of the sun, dealing 28 + 15.94% AP Holy damage and stunning them for 1 seconds. Lasts 4 seconds. Only usable while Dawn is active. Usable while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33983","treeId":"coa-sun-cleric-90","index":33983,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/5_paladinskill25_border.png","maxRank":1,"name":"Sunsworn","description":"Increases your Physical damage dealt by 6% and auto attacks now have a 10% chance to restore 3% of your maximum mana.","rankDescriptions":["Increases your Physical damage dealt by 6% and auto attacks now have a 10% chance to restore 3% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9816","treeId":"coa-sun-cleric-90","index":9816,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_holy_holynova.png","maxRank":1,"name":"Valorous Champion","description":"Level 20 Passive Increases your attack power by 25% and your spell hit rating by 5% of your Strength.","rankDescriptions":["Level 20 Passive Increases your attack power by 25% and your spell hit rating by 5% of your Strength."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-32502","treeId":"coa-sun-cleric-90","index":32502,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/spells/ability_skyreach_solar_burst.png","maxRank":1,"name":"Radiant Marks","description":"Reduces the channel time of Sunslam by 1 sec.","rankDescriptions":["Reduces the channel time of Sunslam by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6539","treeId":"coa-sun-cleric-90","index":6539,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/spell_holy_weaponmastery.png","maxRank":2,"name":"Valkyr's Grip","description":"Increases your off-hand Weapon Damage dealt by 40% and reduces the duration of disarm effects by -30%.","rankDescriptions":["Increases your off-hand Weapon Damage dealt by 20% and reduces the duration of disarm effects by -15%.","Increases your off-hand Weapon Damage dealt by 40% and reduces the duration of disarm effects by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9596","treeId":"coa-sun-cleric-90","index":9596,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/ability_paladin_artofwar.png","maxRank":1,"name":"Light of the Sun","description":"Parrying an attack now restores 3% of your maximum health and increases your chance to parry the next attack by 30%.","rankDescriptions":["Parrying an attack now restores 3% of your maximum health and increases your chance to parry the next attack by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7640","treeId":"coa-sun-cleric-90","index":7640,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":4,"icon":"/assets/ui/spells/inv_glaive_1h_artifactaldrochi_d_02dual.png","maxRank":1,"name":"Justice","description":"Spin and strike with both weapons dealing 40% Weapon Damage plus 6 + 20% fire SP to up to 5 enemies within 5 yds. Your main-hand strike will deal Fire damage and your off-hand strike will deal Physical damage.","rankDescriptions":["Spin and strike with both weapons dealing 40% Weapon Damage plus 6 + 20% fire SP to up to 5 enemies within 5 yds. Your main-hand strike will deal Fire damage and your off-hand strike will deal Physical damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33980","treeId":"coa-sun-cleric-90","index":33980,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/nhi_holywhirlpool_border.png","maxRank":1,"name":"Fervor of the Sun","description":"Fulfilling a Vow now increases the damage of your Sunslam by 10% for 1 minute, stacking 5 times.","rankDescriptions":["Fulfilling a Vow now increases the damage of your Sunslam by 10% for 1 minute, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30684","treeId":"coa-sun-cleric-90","index":30684,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_ability_heraldofthesunpaladin_dawnlight.png","maxRank":1,"name":"Champion of the Sun","description":"Become a champion of An'she, causing your melee auto attacks to deal an additional 50% of the damage dealt as Holy damage. Lasts 20 seconds.","rankDescriptions":["Become a champion of An'she, causing your melee auto attacks to deal an additional 50% of the damage dealt as Holy damage. Lasts 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31380","treeId":"coa-sun-cleric-90","index":31380,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/ability_priest_atonement.png","maxRank":1,"name":"Fanaticism","description":"Increases the effectiveness of Gavels and Horusath Blast and reduces their mana cost by -20%.","rankDescriptions":["Increases the effectiveness of Gavels and Horusath Blast and reduces their mana cost by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30682","treeId":"coa-sun-cleric-90","index":30682,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/spell_holy_greaterblessingofsalvation.png","maxRank":1,"name":"Sun's Gift","description":"Level 30 Passive Your Horusath Blast now deals additional damage scaling with your attack power and grants allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","rankDescriptions":["Level 30 Passive Your Horusath Blast now deals additional damage scaling with your attack power and grants allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-3830","treeId":"coa-sun-cleric-90","index":3830,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/ability_malkorok_blightofyshaarj_yellow.png","maxRank":1,"name":"Gift of the Sun","description":"Increases your critical strike chance with Holy spells and abilities by 50% on enemies above 80% health.","rankDescriptions":["Increases your critical strike chance with Holy spells and abilities by 50% on enemies above 80% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11982","treeId":"coa-sun-cleric-90","index":11982,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/spell_holy_healingaura.png","maxRank":1,"name":"It's Always Sunny","description":"Activating Dawn now reduces the cooldowns of Radiance, Valkyr's Calling, and Sunslam by 10%.","rankDescriptions":["Activating Dawn now reduces the cooldowns of Radiance, Valkyr's Calling, and Sunslam by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33982","treeId":"coa-sun-cleric-90","index":33982,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/spell_holy_revivechampion.png","maxRank":1,"name":"Atone, Or Else","description":"Fervor of the Sun now stacks up to 3 additional times.","rankDescriptions":["Fervor of the Sun now stacks up to 3 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6535","treeId":"coa-sun-cleric-90","index":6535,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/spell_paladin_executionsentence.png","maxRank":2,"name":"Impartial","description":"Increases your Strength and maximum mana by 10% and your expertise by 10.","rankDescriptions":["Increases your Strength and maximum mana by 5% and your expertise by 5.","Increases your Strength and maximum mana by 10% and your expertise by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7370","treeId":"coa-sun-cleric-90","index":7370,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_holy_innerfire.png","maxRank":1,"name":"Champion's Arrival","description":"Increases the duration of Champion of the Sun and Chains of Light by 5 sec.","rankDescriptions":["Increases the duration of Champion of the Sun and Chains of Light by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7636","treeId":"coa-sun-cleric-90","index":7636,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/spell_holy_blessedresillience.png","maxRank":1,"name":"Arbiter of Grace","description":"While Vow of Grace is active, your Glorious Execution now regenerates an additional 15% mana equal to the damage dealt.","rankDescriptions":["While Vow of Grace is active, your Glorious Execution now regenerates an additional 15% mana equal to the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11636","treeId":"coa-sun-cleric-90","index":11636,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/5_swordsoflight_border.png","maxRank":1,"name":"Arbiter of Light","description":"While Vow of Light is active, your Gavel of Light now restores an additional 100% health equal to the damage dealt.","rankDescriptions":["While Vow of Light is active, your Gavel of Light now restores an additional 100% health equal to the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6548","treeId":"coa-sun-cleric-90","index":6548,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/ability_warrior_revenge.png","maxRank":1,"name":"Judgement of the Valkyrie","description":"Reduces the cooldown of Judgement Day by -15 sec.","rankDescriptions":["Reduces the cooldown of Judgement Day by -15 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11648","treeId":"coa-sun-cleric-90","index":11648,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/priest_spell_leapoffaith_b.png","maxRank":1,"name":"Leap of the Valkyrie","description":"Reduces the cooldown of Sun Stride by -4 sec.","rankDescriptions":["Reduces the cooldown of Sun Stride by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30690","treeId":"coa-sun-cleric-90","index":30690,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/spell_holy_purifyingpower.png","maxRank":1,"name":"Herald of Purity","description":"Damage dealt by Justice now has an 8% chance to reset its own cooldown.","rankDescriptions":["Damage dealt by Justice now has an 8% chance to reset its own cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6837","treeId":"coa-sun-cleric-90","index":6837,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/achievement_raid_trialofvalor.png","maxRank":1,"name":"Trial of Valor","description":"Fulfilling a Vow now reduces the cooldown of Horusath Blast by -2 sec.","rankDescriptions":["Fulfilling a Vow now reduces the cooldown of Horusath Blast by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4978","treeId":"coa-sun-cleric-90","index":4978,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/nhi_hammeroflight_border.png","maxRank":1,"name":"Blessed Hammer","description":"Reduces the cooldown of Solar Invocation spells by -10 sec.","rankDescriptions":["Reduces the cooldown of Solar Invocation spells by -10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31381","treeId":"coa-sun-cleric-90","index":31381,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_priest_angelicbulwark.png","maxRank":1,"name":"Valkyr's Calling","description":"Target an enemy and leap into the air, becoming immune to all physical attacks and spells for 2 seconds. At the end of the duration, you charge back down, dealing 428 + 100% AP + 22.5% SP Holy damage to all enemies within 8 yds.","rankDescriptions":["Target an enemy and leap into the air, becoming immune to all physical attacks and spells for 2 seconds. At the end of the duration, you charge back down, dealing 428 + 100% AP + 22.5% SP Holy damage to all enemies within 8 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6336","treeId":"coa-sun-cleric-90","index":6336,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/spell_holy_crusade.png","maxRank":1,"name":"March of the Valkyr","description":"Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, your chance to parry is increased by 5%.","rankDescriptions":["Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, your chance to parry is increased by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7637","treeId":"coa-sun-cleric-90","index":7637,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/nhi_holy_blessing_border.png","maxRank":1,"name":"Sunwalker","description":"Dealing melee damage now generates a stack of Sunwalker.SunwalkerReduces the cast time and mana cost of your next Shine by -20% for 30 seconds, stacking 5 times.","rankDescriptions":["Dealing melee damage now generates a stack of Sunwalker.SunwalkerReduces the cast time and mana cost of your next Shine by -20% for 30 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2317","treeId":"coa-sun-cleric-90","index":2317,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/vow_of_valkyr.png","maxRank":1,"name":"Vow of the Valkyr","description":"Auto attacks generate 1 Solar Power and deal 10% increased damage. Fulfillment: Melee ability damage triggers an auto attack with each weapon. Only 1 Vow can be active at a time.","rankDescriptions":["Auto attacks generate 1 Solar Power and deal 10% increased damage. Fulfillment: Melee ability damage triggers an auto attack with each weapon. Only 1 Vow can be active at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-31072","treeId":"coa-sun-cleric-90","index":31072,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/novart_weapon_(28)_border.png","maxRank":1,"name":"Blessed Magic","description":"Casting Horusath Blast now resets the cooldown of Glorious Execution.","rankDescriptions":["Casting Horusath Blast now resets the cooldown of Glorious Execution."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7639","treeId":"coa-sun-cleric-90","index":7639,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_holy_restoration.png","maxRank":1,"name":"By The Light","description":"Increases the critical strike chance of Valkyr's Calling by 50%.","rankDescriptions":["Increases the critical strike chance of Valkyr's Calling by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12639","treeId":"coa-sun-cleric-90","index":12639,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_holy_retribution.png","maxRank":1,"name":"Last Call","description":"Increases the duration of Valkyr's Calling by 1 sec.","rankDescriptions":["Increases the duration of Valkyr's Calling by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34005","treeId":"coa-sun-cleric-90","index":34005,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_sword_1h_artifactfelomelorn_d_01dual.png","maxRank":2,"name":"Vindicator","description":"Your Glorious Execution now ignores -20% of the target's armor while Vow of the Valkyr is active.","rankDescriptions":["Your Glorious Execution now ignores -10% of the target's armor while Vow of the Valkyr is active.","Your Glorious Execution now ignores -20% of the target's armor while Vow of the Valkyr is active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11380","treeId":"coa-sun-cleric-90","index":11380,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/spell_holy_powerwordshield.png","maxRank":1,"name":"Radiant Power","description":"Each stack of Sunwalker now increases the critical strike chance of Shine by 3%.","rankDescriptions":["Each stack of Sunwalker now increases the critical strike chance of Shine by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33981","treeId":"coa-sun-cleric-90","index":33981,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_holy_amulet_border.png","maxRank":1,"name":"Pendant of the Sun","description":"Activate your pendant of the sun, refreshing the duration and all charges of Dawn.","rankDescriptions":["Activate your pendant of the sun, refreshing the duration and all charges of Dawn."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7641","treeId":"coa-sun-cleric-90","index":7641,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_weapon_halberd15.png","maxRank":1,"name":"Radiant Halberd","description":"Direct Physical damage dealt now reduces the cooldown of Champion of the Sun by -1 sec.","rankDescriptions":["Direct Physical damage dealt now reduces the cooldown of Champion of the Sun by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30681","treeId":"coa-sun-cleric-90","index":30681,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_helm_suncrown_d_01.png","maxRank":1,"name":"Solar Empowerment","description":"Fulfilling your Vow now unleashes a chain of light at your target, dealing 91 + 23% holy SP + 10% AP Holy damage and then bouncing to up to 5 additional enemies, dealing reduced damage with each strike.","rankDescriptions":["Fulfilling your Vow now unleashes a chain of light at your target, dealing 91 + 23% holy SP + 10% AP Holy damage and then bouncing to up to 5 additional enemies, dealing reduced damage with each strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4647","treeId":"coa-sun-cleric-90","index":4647,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_paladin_lightshammer.png","maxRank":1,"name":"Holy Giant","description":"Level 50 Passive Doubles the effectiveness of Vow of the Valkyr.","rankDescriptions":["Level 50 Passive Doubles the effectiveness of Vow of the Valkyr."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7642","treeId":"coa-sun-cleric-90","index":7642,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/5_paladinskill06_border.png","maxRank":1,"name":"Light's Blessing","description":"Casting Sunslam now reduces the cooldown of Pendant of the Sun by -10 sec.","rankDescriptions":["Casting Sunslam now reduces the cooldown of Pendant of the Sun by -10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29509","treeId":"coa-sun-cleric-90","index":29509,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/_d3fanofknives.png","maxRank":1,"name":"Knight of Dawn","description":"Your Glorious Execution now has a 20% chance to strike 1 additional time.","rankDescriptions":["Your Glorious Execution now has a 20% chance to strike 1 additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7644","treeId":"coa-sun-cleric-90","index":7644,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_holy_vindication.png","maxRank":1,"name":"Divine Retribution","description":"Accumulates 25% of your damage dealt to on the target and unleashes it after 8 seconds, damaging enemies within 10 yds as Holy damage.","rankDescriptions":["Accumulates 25% of your damage dealt to on the target and unleashes it after 8 seconds, damaging enemies within 10 yds as Holy damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/templar.json b/src/game/generated/talentUi/templar.json new file mode 100644 index 00000000..bbf8cbc2 --- /dev/null +++ b/src/game/generated/talentUi/templar.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"templar","trees":[{"id":"coa-templar-50","classId":"templar","name":"Zealot","icon":"/assets/ui/spells/nhi_holystrike_border.png","background":"","description":"Zealot nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-templar-16","classId":"templar","name":"Oathkeeper","icon":"/assets/ui/spells/5_staffstrike_border.png","background":"","description":"Oathkeeper nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-templar-51","classId":"templar","name":"Crusader","icon":"/assets/ui/spells/_whirlwind_yellow.png","background":"","description":"Crusader nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-templar-87","classId":"templar","name":"Class","icon":"/assets/ui/spells/nhi_holymeditation_border.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-31173","treeId":"coa-templar-16","index":31173,"prerequisiteId":"coa-entry-4023","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4023","requiredRank":1},{"talentId":"coa-entry-34402","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/5_staffstrike_border.png","maxRank":1,"name":"Sacred Swing","description":"Swing at enemies in front of you, dealing 125% High Threat Weapon Damage plus 9, slowing their attack and movement speed by -20% for 10 seconds. Only usable after avoiding an attack.","rankDescriptions":["Swing at enemies in front of you, dealing 125% High Threat Weapon Damage plus 9, slowing their attack and movement speed by -20% for 10 seconds. Only usable after avoiding an attack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4023","treeId":"coa-templar-16","index":4023,"prerequisiteId":"coa-entry-34402","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-34402","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_staff_2h_nazmirraid_d_01.png","maxRank":1,"name":"Keeping the Oath","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-34395","treeId":"coa-templar-16","index":34395,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/spell_holy_powerwordshield.png","maxRank":2,"name":"Blessed Padding","description":"Increases your Armor contribution from mail items by 100% and reduces damage taken from area of effect attacks by -20%.","rankDescriptions":["Increases your Armor contribution from mail items by 50% and reduces damage taken from area of effect attacks by -10%.","Increases your Armor contribution from mail items by 100% and reduces damage taken from area of effect attacks by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29717","treeId":"coa-templar-16","index":29717,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/inv_staff_05.png","maxRank":1,"name":"Staffguard","description":"Casting Sacred Swing now grants you Staffguard, absorbing 125 + 30% Stamina damage, scaling with Stamina, parry and dodge rating, for 8 seconds.","rankDescriptions":["Casting Sacred Swing now grants you Staffguard, absorbing 125 + 30% Stamina damage, scaling with Stamina, parry and dodge rating, for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30437","treeId":"coa-templar-16","index":30437,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/spell_holy_surgeoflight.png","maxRank":1,"name":"Paragon","description":"Increases your Stamina by 10, plus an additional amount equal to 10% of your Agility.","rankDescriptions":["Increases your Stamina by 10, plus an additional amount equal to 10% of your Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6376","treeId":"coa-templar-16","index":6376,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holyrod_border.png","maxRank":1,"name":"Reckoning","description":"Unleash a powerful Oath Breaker, dealing 27 + 17.5% AP + 50% Stamina Holy damage and restoring 15 Energy for each enemy struck. Consumes your Oaths, dealing additional damage for each consumed.","rankDescriptions":["Unleash a powerful Oath Breaker, dealing 27 + 17.5% AP + 50% Stamina Holy damage and restoring 15 Energy for each enemy struck. Consumes your Oaths, dealing additional damage for each consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30436","treeId":"coa-templar-16","index":30436,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/ability_bastion_paladin.png","maxRank":2,"name":"Bells of Light","description":"Increases your Agility, Intellect, and hit chance by 6%","rankDescriptions":["Increases your Agility, Intellect, and hit chance by 3%","Increases your Agility, Intellect, and hit chance by 6%"],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12293","treeId":"coa-templar-16","index":12293,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_holy_holyguidance.png","maxRank":1,"name":"Graceful Fighter","description":"Level 20 Passive Increases your parry rating by 20% of Agility and your dodge rating by 20% of Intellect.","rankDescriptions":["Level 20 Passive Increases your parry rating by 20% of Agility and your dodge rating by 20% of Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-29712","treeId":"coa-templar-16","index":29712,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/inv_warbreaker.png","maxRank":1,"name":"Sacred Oath","description":"Critical strikes now remove 1 sec from the duration of Oathkeeper when used.Oathkeeper40% of damage taken is now delayed and dealt to you over 8 seconds.","rankDescriptions":["Critical strikes now remove 1 sec from the duration of Oathkeeper when used.Oathkeeper40% of damage taken is now delayed and dealt to you over 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34385","treeId":"coa-templar-16","index":34385,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_ascend_staff_04_b.png","maxRank":1,"name":"Sacred Resistance","description":"Casting Reckoning now increases your Armor by 15% for 15 seconds.","rankDescriptions":["Casting Reckoning now increases your Armor by 15% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34392","treeId":"coa-templar-16","index":34392,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_trinket_80_titan01d.png","maxRank":1,"name":"Grace of Aman'thul","description":"Reduces the Energy cost of Righteous Lunge by -5 and Sacred Swing by -10.","rankDescriptions":["Reduces the Energy cost of Righteous Lunge by -5 and Sacred Swing by -10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34397","treeId":"coa-templar-16","index":34397,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/spell_priest_angelicbulwark.png","maxRank":1,"name":"Faith Guard","description":"While a Libram is active, your Chastise will now unleash a line of holy power, dealing 112 + 25% AP High Threat Holy damage.","rankDescriptions":["While a Libram is active, your Chastise will now unleash a line of holy power, dealing 112 + 25% AP High Threat Holy damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34386","treeId":"coa-templar-16","index":34386,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/custom_priestskill_03_border.png","maxRank":1,"name":"Absolution","description":"Taunt all enemies within 8 yds for 4 seconds and increase your movement speed by 50% for 4 seconds.","rankDescriptions":["Taunt all enemies within 8 yds for 4 seconds and increase your movement speed by 50% for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34391","treeId":"coa-templar-16","index":34391,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/ability_monk_spearhand.png","maxRank":1,"name":"Conviction","description":"Casting Sacred Swing now increases your melee haste by 5% for 15 seconds, stacking 4 times.","rankDescriptions":["Casting Sacred Swing now increases your melee haste by 5% for 15 seconds, stacking 4 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11294","treeId":"coa-templar-16","index":11294,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/5_priestskill29_border.png","maxRank":1,"name":"Holy Books","description":"Level 30 Passive Using a Libram now removes 70% of the delayed damage from Oathkeeper. Oathkeeper40% of damage taken is now delayed and dealt to you over 8 seconds.","rankDescriptions":["Level 30 Passive Using a Libram now removes 70% of the delayed damage from Oathkeeper. Oathkeeper40% of damage taken is now delayed and dealt to you over 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-34398","treeId":"coa-templar-16","index":34398,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/spell_holy_absolution.png","maxRank":2,"name":"Disciplined Mind","description":"Increases the healing of Benediction by 30% and causes it to dispel 1 poison and disease effect.","rankDescriptions":["Increases the healing of Benediction by 15% and causes it to dispel 1 poison and disease effect.","Increases the healing of Benediction by 30% and causes it to dispel 1 poison and disease effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10913","treeId":"coa-templar-16","index":10913,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_hammer_18.png","maxRank":1,"name":"Disciplined Blows","description":"Your healing done triggers a holy pulse around healed targets, dealing 89 + 5% AP + 20% Agility Holy damage to nearby enemies. Cnly occur once every 0.5 sec.","rankDescriptions":["Your healing done triggers a holy pulse around healed targets, dealing 89 + 5% AP + 20% Agility Holy damage to nearby enemies. Cnly occur once every 0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6862","treeId":"coa-templar-16","index":6862,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/ability_paladin_veneration.png","maxRank":1,"name":"Call of the Monastery","description":"Increases the attack power of all party and raid members 5%. Does not stack with similar effects. In addition, increases your attack power by 5%.","rankDescriptions":["Increases the attack power of all party and raid members 5%. Does not stack with similar effects. In addition, increases your attack power by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7758","treeId":"coa-templar-16","index":7758,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/ability_racial_brushitoff.png","maxRank":1,"name":"Fortified Body","description":"Allies within 40 yds receive 6% more healing. Does not stack with similar effects. Additionally, increases your maximum health by 6%.","rankDescriptions":["Allies within 40 yds receive 6% more healing. Does not stack with similar effects. Additionally, increases your maximum health by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29473","treeId":"coa-templar-16","index":29473,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_staff_28.png","maxRank":1,"name":"Holy Warstaff","description":"Increases the damage of Reckoning by 20%.","rankDescriptions":["Increases the damage of Reckoning by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34399","treeId":"coa-templar-16","index":34399,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/ability_monk_boughstrike.png","maxRank":1,"name":"Way of the Monk","description":"Damage dealt by Sacred Swing and Reckoning now reduces casting speed by -10% for 10 seconds, stacking 2 times.","rankDescriptions":["Damage dealt by Sacred Swing and Reckoning now reduces casting speed by -10% for 10 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30287","treeId":"coa-templar-16","index":30287,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_ascend_whirlpool_b_01.png","maxRank":1,"name":"Parry Dance","description":"When you critically strike with auto attacks or parry an attack, your chance to parry is now increased by 3% for 5 seconds, stacking 5 times.","rankDescriptions":["When you critically strike with auto attacks or parry an attack, your chance to parry is now increased by 3% for 5 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19451","treeId":"coa-templar-16","index":19451,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/ability_paladin_infusionoflight.png","maxRank":1,"name":"Justicar of the Light","description":"Removes the cooldown from Benediction, but increases its Energy cost by 10.","rankDescriptions":["Removes the cooldown from Benediction, but increases its Energy cost by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30451","treeId":"coa-templar-16","index":30451,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/custom_23_light_blow_border.png","maxRank":1,"name":"Guardian of the Light","description":"Casting Benediction now reduces the cost of your next Temple Guardian by -50% for 6 seconds.","rankDescriptions":["Casting Benediction now reduces the cost of your next Temple Guardian by -50% for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30614","treeId":"coa-templar-16","index":30614,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/misc_legionfall_paladin.png","maxRank":1,"name":"Barrier of Light","description":"Emit saving light, increasing the healing received by nearby party and raid members by 40% for 15 seconds. For the duration, threat generated by your allies is redirected to you.","rankDescriptions":["Emit saving light, increasing the healing received by nearby party and raid members by 40% for 15 seconds. For the duration, threat generated by your allies is redirected to you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30453","treeId":"coa-templar-16","index":30453,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/spell_holy_greaterblessingoflight.png","maxRank":1,"name":"Duty Calls","description":"Casting abilities that grant an Oath now increases your damage dealt and movement speed by 2% for 15 seconds, stacking 5 times.","rankDescriptions":["Casting abilities that grant an Oath now increases your damage dealt and movement speed by 2% for 15 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11295","treeId":"coa-templar-16","index":11295,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/achievement_faction_lorewalkers.png","maxRank":1,"name":"Lorescribe","description":"Level 40 Passive Casting Oath Breaker abilities now reduce the cooldown of Librams by -4 sec.","rankDescriptions":["Level 40 Passive Casting Oath Breaker abilities now reduce the cooldown of Librams by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-7483","treeId":"coa-templar-16","index":7483,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/spell_holy_innerfire.png","maxRank":1,"name":"Spiritual Abdicator","description":"Your Testament of Hope now reduces damage taken by an additional 0% per copy.","rankDescriptions":["Your Testament of Hope now reduces damage taken by an additional 0% per copy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34400","treeId":"coa-templar-16","index":34400,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/ability_priest_angelicbulwark.png","maxRank":1,"name":"Untainted","description":"Effectively healing yourself now reduces your Physical damage taken by -10 + 10% Stamina for 8 seconds. Can only occur every 15 sec.","rankDescriptions":["Effectively healing yourself now reduces your Physical damage taken by -10 + 10% Stamina for 8 seconds. Can only occur every 15 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10363","treeId":"coa-templar-16","index":10363,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/monk_ability_avertharm.png","maxRank":1,"name":"Patience","description":"Increases the duration of Interdict by 2 sec and its cooldown by -5 sec.","rankDescriptions":["Increases the duration of Interdict by 2 sec and its cooldown by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30613","treeId":"coa-templar-16","index":30613,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/5_paladinskill18_border.png","maxRank":1,"name":"Justice","description":"Your Interdict now strikes 1 additional nearby target.","rankDescriptions":["Your Interdict now strikes 1 additional nearby target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34396","treeId":"coa-templar-16","index":34396,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_mace_1h_uther_d_01.png","maxRank":1,"name":"Uther's Legacy","description":"Your Condemn now heals you for 75% of the damage dealt.","rankDescriptions":["Your Condemn now heals you for 75% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5227","treeId":"coa-templar-16","index":5227,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/ability_bastion_priest.png","maxRank":1,"name":"Transcendent Guardian","description":"Charging to an ally with Temple Guardian now has a 40% chance to refresh a charge.","rankDescriptions":["Charging to an ally with Temple Guardian now has a 40% chance to refresh a charge."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7486","treeId":"coa-templar-16","index":7486,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/ability_paladin_touchedbylight.png","maxRank":1,"name":"Armor of Faith","description":"Whenever the absorption shield from Staffguard breaks, inflict 207 + 20% AP + 50% holy SP High Threat Holy damage to nearby enemies.","rankDescriptions":["Whenever the absorption shield from Staffguard breaks, inflict 207 + 20% AP + 50% holy SP High Threat Holy damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30445","treeId":"coa-templar-16","index":30445,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/ability_priest_spiritoftheredeemer.png","maxRank":1,"name":"Eternal Blessing","description":"Increases your Holy damage and healing done by 15% for 30 seconds. While active, Oath Breakers deal an additional 141 + 12% AP Holy damage to nearby enemies.","rankDescriptions":["Increases your Holy damage and healing done by 15% for 30 seconds. While active, Oath Breakers deal an additional 141 + 12% AP Holy damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31226","treeId":"coa-templar-16","index":31226,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_holy_pureofheart.png","maxRank":1,"name":"Mending Ward","description":"Oath Breakers now grant you a stack of Mending Ward for 15 seconds, stacking 3 times.Mending WardNext instance of direct damage taken while below 35% maximum health will consume these stacks to heal you for 395 + 25% Stamina. Healing scales with your Stamina and parry rating.","rankDescriptions":["Oath Breakers now grant you a stack of Mending Ward for 15 seconds, stacking 3 times.Mending WardNext instance of direct damage taken while below 35% maximum health will consume these stacks to heal you for 395 + 25% Stamina. Healing scales with your Stamina and parry rating."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31225","treeId":"coa-templar-16","index":31225,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_thunderclap.png","maxRank":1,"name":"Battlepriest","description":"While above 80% health or below 20% health, you now take 20% reduced Magic damage.","rankDescriptions":["While above 80% health or below 20% health, you now take 20% reduced Magic damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12295","treeId":"coa-templar-16","index":12295,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_holy_prayerofhealing02.png","maxRank":1,"name":"Light's Ward","description":"Level 50 Passive Increases all magic resistances equal to 10% of your dodge rating and reduces your damage taken from periodic effects by -15%.","rankDescriptions":["Level 50 Passive Increases all magic resistances equal to 10% of your dodge rating and reduces your damage taken from periodic effects by -15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30450","treeId":"coa-templar-16","index":30450,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/_d3teleport.png","maxRank":1,"name":"Eternally Devoted","description":"Damage dealt through Eternal Blessing now reduces the cooldown of Libram spells by -4 sec.","rankDescriptions":["Damage dealt through Eternal Blessing now reduces the cooldown of Libram spells by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30615","treeId":"coa-templar-16","index":30615,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_misc_book_17.png","maxRank":1,"name":"Tome of Light","description":"Grants a shield equal to 100% of your maximum health for 30 seconds, resets the cooldown of Barrier of Light and Tranquil Circle, and grants an additional effect for each.Tome of Light: Barrier of LightYour next Barrier of Light within 30 seconds removes the Oathkeeper stagger debuff.Tome of Light: Tranquil CircleYour next Tranquil Circle within 30 seconds triggers instantly.","rankDescriptions":["Grants a shield equal to 100% of your maximum health for 30 seconds, resets the cooldown of Barrier of Light and Tranquil Circle, and grants an additional effect for each.Tome of Light: Barrier of LightYour next Barrier of Light within 30 seconds removes the Oathkeeper stagger debuff.Tome of Light: Tranquil CircleYour next Tranquil Circle within 30 seconds triggers instantly."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34390","treeId":"coa-templar-16","index":34390,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_priestmount_holy.png","maxRank":1,"name":"Lightkeeper","description":"Periodic damage dealt by Condemn now has a 15% chance to increase your parry chance by 2% for 8 seconds, stacking 3 times. Periodic damage dealt by Condemn also has a 15% chance to burst, dealing 100 + 22% AP Holy damage to up to 5 enemies within 5 yds of the target.","rankDescriptions":["Periodic damage dealt by Condemn now has a 15% chance to increase your parry chance by 2% for 8 seconds, stacking 3 times. Periodic damage dealt by Condemn also has a 15% chance to burst, dealing 100 + 22% AP Holy damage to up to 5 enemies within 5 yds of the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31172","treeId":"coa-templar-50","index":31172,"prerequisiteId":"coa-entry-4022","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4022","requiredRank":1},{"talentId":"coa-entry-29704","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/nhi_holystrike_border.png","maxRank":1,"name":"Vindication","description":"Strike an enemy with zeal, dealing 31 + 28.5% AP + 75% SP Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage.","rankDescriptions":["Strike an enemy with zeal, dealing 31 + 28.5% AP + 75% SP Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4022","treeId":"coa-templar-50","index":4022,"prerequisiteId":"coa-entry-29704","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29704","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/custom_paladinskill_24_border.png","maxRank":1,"name":"Zealotry","description":"Level 10 Passive Your off-hand auto attacks now trigger Zealotry.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage.","rankDescriptions":["Level 10 Passive Your off-hand auto attacks now trigger Zealotry.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-29255","treeId":"coa-templar-50","index":29255,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/_monkability_uplift_yellow.png","maxRank":1,"name":"Righteous Upheaval","description":"Unleash a dominating Oath Breaker, dealing 42 + 45% AP + 45% SP Physical damage, increased by 5% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","rankDescriptions":["Unleash a dominating Oath Breaker, dealing 42 + 45% AP + 45% SP Physical damage, increased by 5% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6401","treeId":"coa-templar-50","index":6401,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/5_assassinskill27_border.png","maxRank":2,"name":"Solemn Soldier","description":"Increases your melee haste by 10% and expertise by 10.","rankDescriptions":["Increases your melee haste by 5% and expertise by 5.","Increases your melee haste by 10% and expertise by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34334","treeId":"coa-templar-50","index":34334,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/ability_monk_quipunch.png","maxRank":1,"name":"Combat Training","description":"Increases the effectiveness of Oaths by 20%.","rankDescriptions":["Increases the effectiveness of Oaths by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11288","treeId":"coa-templar-50","index":11288,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_holy_auramastery.png","maxRank":1,"name":"Calm Combatant","description":"Level 20 Passive Increases your Holy spell damage by 30% of your attack power.","rankDescriptions":["Level 20 Passive Increases your Holy spell damage by 30% of your attack power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-34355","treeId":"coa-templar-50","index":34355,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/spell_holy_blindingheal.png","maxRank":1,"name":"Oath Flow","description":"Increases the duration of Oath Chain by 2 sec.","rankDescriptions":["Increases the duration of Oath Chain by 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33166","treeId":"coa-templar-50","index":33166,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/inv_sword_49.png","maxRank":1,"name":"Radiance","description":"Reduces the Energy cost of Vindication by -5.","rankDescriptions":["Reduces the Energy cost of Vindication by -5."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4253","treeId":"coa-templar-50","index":4253,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holyarrow_border.png","maxRank":1,"name":"Battle Hardened","description":"Reduces the cooldown of Righteous Upheaval by -5 sec.","rankDescriptions":["Reduces the cooldown of Righteous Upheaval by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31253","treeId":"coa-templar-50","index":31253,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/nhi_holyswirl_border.png","maxRank":1,"name":"Upheave!","description":"Increases the critical damage of Righteous Upheaval by 20%.","rankDescriptions":["Increases the critical damage of Righteous Upheaval by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34338","treeId":"coa-templar-50","index":34338,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_glaive_1h_artifactaldrochi_d_01dual.png","maxRank":2,"name":"Martial Paladin","description":"Increases your Agility by 10% and your chance to hit by 6%.","rankDescriptions":["Increases your Agility by 5% and your chance to hit by 3%.","Increases your Agility by 10% and your chance to hit by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34339","treeId":"coa-templar-50","index":34339,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/spell_paladin_lightshammer.png","maxRank":1,"name":"Bursting Impact","description":"Increases your off-hand weapon damage by 25%.","rankDescriptions":["Increases your off-hand weapon damage by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29715","treeId":"coa-templar-50","index":29715,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/_book2motif_bloodelf1.png","maxRank":1,"name":"Libram of Zeal","description":"Read from your Libram of Mortal Abdication, increasing your melee haste by 20% and causes your damaging abilities to reduce the cooldown of Righteous Upheaval by -2 sec for 20 seconds.","rankDescriptions":["Read from your Libram of Mortal Abdication, increasing your melee haste by 20% and causes your damaging abilities to reduce the cooldown of Righteous Upheaval by -2 sec for 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30960","treeId":"coa-templar-50","index":30960,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/priest_icon_chakra_red.png","maxRank":1,"name":"Chakra of Power","description":"Melee attacks now restore 1 Energy, plus an additional 2 Energy when they critically strike.","rankDescriptions":["Melee attacks now restore 1 Energy, plus an additional 2 Energy when they critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9289","treeId":"coa-templar-50","index":9289,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holyhand_border.png","maxRank":1,"name":"Holy Upheaval","description":"Level 30 Passive Increases the effectiveness Righteous Upheaval gains per trigger of Zealotry by 100%.","rankDescriptions":["Level 30 Passive Increases the effectiveness Righteous Upheaval gains per trigger of Zealotry by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-5438","treeId":"coa-templar-50","index":5438,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/nhi_holy_tornado_border.png","maxRank":1,"name":"Holy Light","description":"Your Benediction now has a 1.5 sec cast time, but now heals for 100% more.","rankDescriptions":["Your Benediction now has a 1.5 sec cast time, but now heals for 100% more."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30438","treeId":"coa-templar-50","index":30438,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/nhi_holyfire_00_border.png","maxRank":1,"name":"Light's Guidance","description":"Healing with Benediction now causes your next Benediction to heal for 25% more for 30 seconds.","rankDescriptions":["Healing with Benediction now causes your next Benediction to heal for 25% more for 30 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30449","treeId":"coa-templar-50","index":30449,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/5_druideskill26_border.png","maxRank":2,"name":"Blade Sermon","description":"Increases the Weapon Damage dealt by Zealotry by 20%.","rankDescriptions":["Increases the Weapon Damage dealt by Zealotry by 10%.","Increases the Weapon Damage dealt by Zealotry by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11455","treeId":"coa-templar-50","index":11455,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/custom_paladinskill_24_border.png","maxRank":1,"name":"Paladin Training","description":"Triggering Zealotry now has an 8% chance to grant you an additional auto attack on your next strike.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage.","rankDescriptions":["Triggering Zealotry now has an 8% chance to grant you an additional auto attack on your next strike.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30455","treeId":"coa-templar-50","index":30455,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/5_priestskill07_border.png","maxRank":1,"name":"Priest Training","description":"Triggering Zealotry now also heals you for 3% of your missing health.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage.","rankDescriptions":["Triggering Zealotry now also heals you for 3% of your missing health.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30066","treeId":"coa-templar-50","index":30066,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_gauntlets_25.png","maxRank":1,"name":"One-Punch Man","description":"Increases the the damage of Oath Breakers and Titanstrike by 20%.","rankDescriptions":["Increases the the damage of Oath Breakers and Titanstrike by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30836","treeId":"coa-templar-50","index":30836,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/priest_icon_chakra.png","maxRank":2,"name":"Chakra of Light","description":"Reduces the cooldown of Testaments by -60 sec and Oath Breakers now heal allies around the target for 50 + 35% SP.","rankDescriptions":["Reduces the cooldown of Testaments by -30 sec and Oath Breakers now heal allies around the target for 20 + 35% SP.","Reduces the cooldown of Testaments by -60 sec and Oath Breakers now heal allies around the target for 50 + 35% SP."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34346","treeId":"coa-templar-50","index":34346,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/nhi_holyinfusion_border.png","maxRank":1,"name":"Force of Golganneth","description":"Explode with holy power, dealing 310 + 25% AP + 25% holy SP Holy damage and triggering Zealotry every 1 sec to nearby enemies for 5 seconds.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage. While active, your Temple Guardian spell has its Energy cost reduced by -50%.","rankDescriptions":["Explode with holy power, dealing 310 + 25% AP + 25% holy SP Holy damage and triggering Zealotry every 1 sec to nearby enemies for 5 seconds.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage. While active, your Temple Guardian spell has its Energy cost reduced by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34358","treeId":"coa-templar-50","index":34358,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/spell_holy_greaterblessingofsalvation.png","maxRank":1,"name":"Deliverance","description":"Critically striking with Vindication or Righteous Lunge now deals 50% additional Physical damage.","rankDescriptions":["Critically striking with Vindication or Righteous Lunge now deals 50% additional Physical damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30443","treeId":"coa-templar-50","index":30443,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/spell_holy_heal.png","maxRank":1,"name":"Condemnation","description":"Increases the critical strike chance gained through Condemn by 3%.","rankDescriptions":["Increases the critical strike chance gained through Condemn by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34359","treeId":"coa-templar-50","index":34359,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/custom_paladinskill_25_nobg_border.png","maxRank":1,"name":"Iron Penance","description":"Dealing damage with Zealotry now applies Iron Penance to the target, increasing their Physical damage taken by you by 1% for 3 seconds, stacking 10 times.","rankDescriptions":["Dealing damage with Zealotry now applies Iron Penance to the target, increasing their Physical damage taken by you by 1% for 3 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9290","treeId":"coa-templar-50","index":9290,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/nhi_hammeroflight_border.png","maxRank":1,"name":"Divine Fury","description":"Level 40 Passive Triggering Zealotry 10 times now transforms your Chastise into Divine Fury. Divine FuryUnleash divine fury, dealing 91 + 45% holy SP + 25% AP Holy damage to an enemy and up to 4 nearby enemies and reduces their armor by -5% for 20 seconds, stacking 5 times.","rankDescriptions":["Level 40 Passive Triggering Zealotry 10 times now transforms your Chastise into Divine Fury. Divine FuryUnleash divine fury, dealing 91 + 45% holy SP + 25% AP Holy damage to an enemy and up to 4 nearby enemies and reduces their armor by -5% for 20 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-30067","treeId":"coa-templar-50","index":30067,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/inv_sword_2h_lightforged_c_01.png","maxRank":1,"name":"Pious Sweep","description":"Increases the damage of Chastise by 25% on enemies above 75% health or affected by Tranquil Circle.","rankDescriptions":["Increases the damage of Chastise by 25% on enemies above 75% health or affected by Tranquil Circle."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31254","treeId":"coa-templar-50","index":31254,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holymeditation_border.png","maxRank":1,"name":"Heaven's Finest","description":"Damaging abilities now grant Heaven's Finest for 12 seconds, stacking 6 times.Heaven's FinestIncreases your movement speed by 5%. At 6 stacks, increases your Energy regeneration by 100% for 8 seconds. Additional applications do not refresh the duration.","rankDescriptions":["Damaging abilities now grant Heaven's Finest for 12 seconds, stacking 6 times.Heaven's FinestIncreases your movement speed by 5%. At 6 stacks, increases your Energy regeneration by 100% for 8 seconds. Additional applications do not refresh the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31256","treeId":"coa-templar-50","index":31256,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/ability_paladin_beaconofinsight.png","maxRank":1,"name":"Transcending Strikes","description":"Your Divine Force will now trigger a -30 sec reduced cooldown when used on enemies affected by Blade of Faith.","rankDescriptions":["Your Divine Force will now trigger a -30 sec reduced cooldown when used on enemies affected by Blade of Faith."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30070","treeId":"coa-templar-50","index":30070,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_ironsentinel_01.png","maxRank":1,"name":"Devotion of Khaz'goroth","description":"Increases all party and raid member's melee and ranged haste by 10%. Does not stack with similar effects. Damage dealt with auto attacks reduce the cooldown of Libram spells by -0.5 sec.","rankDescriptions":["Increases all party and raid member's melee and ranged haste by 10%. Does not stack with similar effects. Damage dealt with auto attacks reduce the cooldown of Libram spells by -0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11384","treeId":"coa-templar-50","index":11384,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/spell_holy_auraoflight.png","maxRank":1,"name":"Fervent Castigation","description":"Casting Righteous Upheaval or Blade of Faith now grants you Oath: Retribution and starts your Oath Chain.Oath: RetributionCritical damage increased by 5%.","rankDescriptions":["Casting Righteous Upheaval or Blade of Faith now grants you Oath: Retribution and starts your Oath Chain.Oath: RetributionCritical damage increased by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34384","treeId":"coa-templar-50","index":34384,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/inv_axe_2h_pvppandarias2_c_01green.png","maxRank":1,"name":"Condemnation","description":"Dealing damage with Condemn, Holy Cleave, or Blade of Faith now has a 15% chance to trigger Zealotry if you are within melee range of your target.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage.","rankDescriptions":["Dealing damage with Condemn, Holy Cleave, or Blade of Faith now has a 15% chance to trigger Zealotry if you are within melee range of your target.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7757","treeId":"coa-templar-50","index":7757,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/custom_paladinskill_01_border.png","maxRank":1,"name":"One With The Light","description":"Casting Oath Breakers now triggers Zealotry on your target and reduces the cooldown of Librams, Force of Golganneth, and Mortal Abdication by -1 sec.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage.","rankDescriptions":["Casting Oath Breakers now triggers Zealotry on your target and reduces the cooldown of Librams, Force of Golganneth, and Mortal Abdication by -1 sec.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7813","treeId":"coa-templar-50","index":7813,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_holy_innerfire.png","maxRank":1,"name":"Might of Aggramar","description":"Physical damage dealt now has a 25% chance to increase the tick rate and reduce cooldown of your next Blade of Faith by -10%, stacking 5 times.","rankDescriptions":["Physical damage dealt now has a 25% chance to increase the tick rate and reduce cooldown of your next Blade of Faith by -10%, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34335","treeId":"coa-templar-50","index":34335,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/achievement_boss_argus_eonar.png","maxRank":1,"name":"Blessing of Eonar","description":"Using Libram spells now increases your damage dealt and healing done by 10% for 15 seconds.","rankDescriptions":["Using Libram spells now increases your damage dealt and healing done by 10% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11290","treeId":"coa-templar-50","index":11290,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_lightportal_border.png","maxRank":1,"name":"Unbroken Creed","description":"Level 50 Passive Damaging abilities now grants you Unbroken Creed for 15 seconds, stacking up to 3 times. When you use a damaging Oath Breaker or Divine Fury you now consume the stacks and auto attack your target an amount of times equal to your stack count.","rankDescriptions":["Level 50 Passive Damaging abilities now grants you Unbroken Creed for 15 seconds, stacking up to 3 times. When you use a damaging Oath Breaker or Divine Fury you now consume the stacks and auto attack your target an amount of times equal to your stack count."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-9757","treeId":"coa-templar-50","index":9757,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/nhi_holywhirlpool_border.png","maxRank":1,"name":"Norgannon's Wrath","description":"Target an enemy and leap into the air. After a short delay, you blast them with immense holy force, dealing 1506 + 100% holy SP + 100% AP Holy damage to up to 10 enemies within 5 yds and reduces their damage and healing done by -10% for 5 seconds. Damage dealt pierces all immunities, resistances, and damage absorption effects. Scales with modifiers to Chastise.","rankDescriptions":["Target an enemy and leap into the air. After a short delay, you blast them with immense holy force, dealing 1506 + 100% holy SP + 100% AP Holy damage to up to 10 enemies within 5 yds and reduces their damage and healing done by -10% for 5 seconds. Damage dealt pierces all immunities, resistances, and damage absorption effects. Scales with modifiers to Chastise."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31255","treeId":"coa-templar-50","index":31255,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_titan_01.png","maxRank":1,"name":"Blessing of Aggramar","description":"Righteous Lunge now has a 25% chance to generate an additional stack of Oath: Righteous Lunge.","rankDescriptions":["Righteous Lunge now has a 25% chance to generate an additional stack of Oath: Righteous Lunge."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29720","treeId":"coa-templar-50","index":29720,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/achievement_boss_argus_aggramar.png","maxRank":1,"name":"Fury of Aggramar","description":"Increases the damage dealt by Libram of Consecration by 100% and the effectiveness of your Librams by 25%.","rankDescriptions":["Increases the damage dealt by Libram of Consecration by 100% and the effectiveness of your Librams by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34372","treeId":"coa-templar-51","index":34372,"prerequisiteId":"coa-entry-4024","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4024","requiredRank":1},{"talentId":"coa-entry-31314","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/_whirlwind_yellow.png","maxRank":1,"name":"Righteous Tempest","description":"Unleash a whirling Oath Breaker, dealing 100% Weapon Damage plus 71u+SP*0.3 damage to nearby enemies, scaling with spell power, every 1 sec for 3 seconds. Consumes your Oaths, dealing additional damage for each consumed.","rankDescriptions":["Unleash a whirling Oath Breaker, dealing 100% Weapon Damage plus 71u+SP*0.3 damage to nearby enemies, scaling with spell power, every 1 sec for 3 seconds. Consumes your Oaths, dealing additional damage for each consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4024","treeId":"coa-templar-51","index":4024,"prerequisiteId":"coa-entry-31314","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-31314","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/nhi_firesword_border.png","maxRank":1,"name":"Scourgebane","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-29708","treeId":"coa-templar-51","index":29708,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/wakeoffashes.png","maxRank":1,"name":"Argent Blade","description":"Crush an enemy with argent fervor, dealing 160% Weapon Damage plus 15 + 35% AP + 100% holy SP, healing you equal to the damage dealt, and extending the duration of your Oath Chain by 3 sec.","rankDescriptions":["Crush an enemy with argent fervor, dealing 160% Weapon Damage plus 15 + 35% AP + 100% holy SP, healing you equal to the damage dealt, and extending the duration of your Oath Chain by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31174","treeId":"coa-templar-51","index":31174,"prerequisiteId":"coa-entry-4024","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4024","requiredRank":1},{"talentId":"coa-entry-31314","requiredRank":1}],"column":3,"row":3,"icon":"/assets/ui/spells/spell_holy_retributionaura.png","maxRank":2,"name":"Aggramar's Rage","description":"Increases your Holy critical strike chance by 6% and your expertise by 10.","rankDescriptions":["Increases your Holy critical strike chance by 3% and your expertise by 5.","Increases your Holy critical strike chance by 6% and your expertise by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30440","treeId":"coa-templar-51","index":30440,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/spell_arcane_focusedpower.png","maxRank":2,"name":"Pure Focus","description":"Increases the chance to trigger Scourgebane by 10% and your chance to hit by 4%.","rankDescriptions":["Increases the chance to trigger Scourgebane by 5% and your chance to hit by 2%.","Increases the chance to trigger Scourgebane by 10% and your chance to hit by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11287","treeId":"coa-templar-51","index":11287,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/custom_paladinskill_02_border.png","maxRank":1,"name":"Light's Chosen","description":"Level 20 Passive Increases your spell power by 30% of your Agility and your critical strike rating by 15% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your spell power by 30% of your Agility and your critical strike rating by 15% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7822","treeId":"coa-templar-51","index":7822,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/nhi_holyhammer_border.png","maxRank":1,"name":"Warrior of Tyr","description":"Periodic damage dealt now has a 10% chance to generate 5 Energy.","rankDescriptions":["Periodic damage dealt now has a 10% chance to generate 5 Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34382","treeId":"coa-templar-51","index":34382,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/ability_paladin_veneration.png","maxRank":1,"name":"Chivalric","description":"Increases your critical damage with Holy spells and abilities by 15%.","rankDescriptions":["Increases your critical damage with Holy spells and abilities by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30965","treeId":"coa-templar-51","index":30965,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_sword_1h_deathknight_d_01.png","maxRank":1,"name":"Warrior of Dawn","description":"Melee damage dealt now has a 10% chance to reset the cooldown and reduce the Energy cost of your next Argent Blade by -50%.","rankDescriptions":["Melee damage dealt now has a 10% chance to reset the cooldown and reduce the Energy cost of your next Argent Blade by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34343","treeId":"coa-templar-51","index":34343,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/inv_helmet_74.png","maxRank":1,"name":"Righteousness","description":"Your Chastise now always triggers Scourgebane on your target.","rankDescriptions":["Your Chastise now always triggers Scourgebane on your target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6861","treeId":"coa-templar-51","index":6861,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/nhi_holy_beam_border.png","maxRank":1,"name":"Paladin Training","description":"Increases the damage of Righteous Lunge and Argent Blade by 20%.","rankDescriptions":["Increases the damage of Righteous Lunge and Argent Blade by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5351","treeId":"coa-templar-51","index":5351,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/_letter_lordaeronscarletcrusade.png","maxRank":1,"name":"Scarlet Secrets","description":"Every 2nd cast of Argent Blade now grants you Oath: Retribution.Oath: RetributionCritical damage increased by 5%.","rankDescriptions":["Every 2nd cast of Argent Blade now grants you Oath: Retribution.Oath: RetributionCritical damage increased by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6351","treeId":"coa-templar-51","index":6351,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/inv_plate_scarletcrusade_c_01_helm.png","maxRank":1,"name":"Teachings of the Cathedral","description":"Your Oath: Condemn now provides 5% additional critical strike chance.","rankDescriptions":["Your Oath: Condemn now provides 5% additional critical strike chance."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7823","treeId":"coa-templar-51","index":7823,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/spell_holy_redemption.png","maxRank":1,"name":"Scourge-Defense Training","description":"Warrior of Dawn now also increases the damage and critical strike chance of your next Argent Blade by 20%.","rankDescriptions":["Warrior of Dawn now also increases the damage and critical strike chance of your next Argent Blade by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12361","treeId":"coa-templar-51","index":12361,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/nhi_holy_tornado_border.png","maxRank":1,"name":"Holy Tempest","description":"Damage dealt by Righteous Tempest now spreads Condemn on affected enemies to a nearby enemy.","rankDescriptions":["Damage dealt by Righteous Tempest now spreads Condemn on affected enemies to a nearby enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34361","treeId":"coa-templar-51","index":34361,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/nhi_snowwhirlwind_border.png","maxRank":1,"name":"Whirling Tempest","description":"While Righteous Tempest is active you gain 20% increased movement speed.","rankDescriptions":["While Righteous Tempest is active you gain 20% increased movement speed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4287","treeId":"coa-templar-51","index":4287,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/nhi_fieryhammer_border.png","maxRank":1,"name":"Scarlet Training","description":"Level 30 Passive Casting Argent Blade while Warrior of Dawn is active now transforms your next Chastise into Scarlet Hammer.Scarlet HammerDrop a scarlet hammer on an enemy for 155% Weapon Damage plus 35 as Holy Damage, causing the Templar's attacks to ignore 10% of their Armor and giving each auto attack a chance to heal the Templar for 2% of their maximum health for 30 seconds.","rankDescriptions":["Level 30 Passive Casting Argent Blade while Warrior of Dawn is active now transforms your next Chastise into Scarlet Hammer.Scarlet HammerDrop a scarlet hammer on an enemy for 155% Weapon Damage plus 35 as Holy Damage, causing the Templar's attacks to ignore 10% of their Armor and giving each auto attack a chance to heal the Templar for 2% of their maximum health for 30 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-6920","treeId":"coa-templar-51","index":6920,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_hammer_01.png","maxRank":1,"name":"Tyr's Blessing","description":"Condemn now stacks 1 additional time.","rankDescriptions":["Condemn now stacks 1 additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34373","treeId":"coa-templar-51","index":34373,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/nhi_holyfire_00_border.png","maxRank":1,"name":"Retribution","description":"Melee damage dealt now has a 20% chance to strike 2 additional times for 30% of the damage dealt as Holy Damage.","rankDescriptions":["Melee damage dealt now has a 20% chance to strike 2 additional times for 30% of the damage dealt as Holy Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30448","treeId":"coa-templar-51","index":30448,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/ability_racial_holyresistance.png","maxRank":1,"name":"Judgement","description":"Increases the damage of Scourgebane, Scarlet Hammer, and Titanstrike by 25% on enemies below 20% health.","rankDescriptions":["Increases the damage of Scourgebane, Scarlet Hammer, and Titanstrike by 25% on enemies below 20% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34371","treeId":"coa-templar-51","index":34371,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/nhi_fierywhirl_border.png","maxRank":1,"name":"Focused","description":"Increases the damage of Blade of Faith and Righteous Tempest by 25%.","rankDescriptions":["Increases the damage of Blade of Faith and Righteous Tempest by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7024","treeId":"coa-templar-51","index":7024,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/achievement_reputation_argentcrusader.png","maxRank":1,"name":"Templar's Might","description":"Your Righteous Lunge and Chastise used on enemies affected by your Condemn now deal 6% increased damage per stack.","rankDescriptions":["Your Righteous Lunge and Chastise used on enemies affected by your Condemn now deal 6% increased damage per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6566","treeId":"coa-templar-51","index":6566,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/nhi_holy_toglory_border.png","maxRank":1,"name":"Crusader's Brand","description":"Brand an enemy for 20 seconds, preventing them from mounting, fleeing, or increasing their movement speed above normal movement speed and when they deal direct damage they take 243 + 27.5% holy SP + 18.5% AP Holy Damage. While marked enemies can always be seen by the Crusader even while stealthed or invisible.","rankDescriptions":["Brand an enemy for 20 seconds, preventing them from mounting, fleeing, or increasing their movement speed above normal movement speed and when they deal direct damage they take 243 + 27.5% holy SP + 18.5% AP Holy Damage. While marked enemies can always be seen by the Crusader even while stealthed or invisible."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6352","treeId":"coa-templar-51","index":6352,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_monk_clashingoxcharge.png","maxRank":2,"name":"Light's Echo","description":"Argent Blade now has a 20% chance to strike an additional time.","rankDescriptions":["Argent Blade now has a 10% chance to strike an additional time.","Argent Blade now has a 20% chance to strike an additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30608","treeId":"coa-templar-51","index":30608,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_mount_charger.png","maxRank":1,"name":"Divine Charge","description":"You and your party members leap upon a divine steed, increasing their movement speed by 100% and causing them to trample nearby enemies for 119 + 20% AP + 40% holy SP Holy Damage every 1 sec for 15 seconds. While active, casting does not dismount you or your allies. Can only be used outdoors.","rankDescriptions":["You and your party members leap upon a divine steed, increasing their movement speed by 100% and causing them to trample nearby enemies for 119 + 20% AP + 40% holy SP Holy Damage every 1 sec for 15 seconds. While active, casting does not dismount you or your allies. Can only be used outdoors."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30607","treeId":"coa-templar-51","index":30607,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/inv_weapon_shortblade_99.png","maxRank":2,"name":"Radiant Blade","description":"Increases the effectiveness of Oath: Righteous Lunge by 50%.","rankDescriptions":["Increases the effectiveness of Oath: Righteous Lunge by 25%.","Increases the effectiveness of Oath: Righteous Lunge by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4288","treeId":"coa-templar-51","index":4288,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/spell_paladin_lightshammer.png","maxRank":1,"name":"Improved Scarlet Hammer","description":"Level 40 Passive Casting Scarlet Hammer now generates 30 Energy.","rankDescriptions":["Level 40 Passive Casting Scarlet Hammer now generates 30 Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-34381","treeId":"coa-templar-51","index":34381,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_sword_1h_artifactvigfus_d_01.png","maxRank":2,"name":"Holy Edge","description":"Damage dealt by Scourgebane and Scarlet Hammer now strikes 2 additional nearby enemy.","rankDescriptions":["Damage dealt by Scourgebane and Scarlet Hammer now strikes 1 additional nearby enemy.","Damage dealt by Scourgebane and Scarlet Hammer now strikes 2 additional nearby enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6567","treeId":"coa-templar-51","index":6567,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_sword_28.png","maxRank":1,"name":"Holy Combatant","description":"Your Argent Blade now also extends the duration of Interdict on your target by 1 sec.","rankDescriptions":["Your Argent Blade now also extends the duration of Interdict on your target by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31312","treeId":"coa-templar-51","index":31312,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holypeak_border.png","maxRank":1,"name":"Serendipity","description":"Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, reduces the cost of your spells and abilities by -5%.","rankDescriptions":["Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, reduces the cost of your spells and abilities by -5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34369","treeId":"coa-templar-51","index":34369,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_sword_2h_nazmirraid_d_01.png","maxRank":1,"name":"Divine Strikes","description":"Damage dealt by Scourgebane now increases the damage of Argent Blade by 5% for 6 seconds, stacking 10 times.","rankDescriptions":["Damage dealt by Scourgebane now increases the damage of Argent Blade by 5% for 6 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30610","treeId":"coa-templar-51","index":30610,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/5_holypower_border.png","maxRank":1,"name":"Argent Knight","description":"Increases the damage dealt by Righteous Tempest and Condemn by 30%. Additionally, Righteous Tempest now reduces all damage taken by -20% while active.","rankDescriptions":["Increases the damage dealt by Righteous Tempest and Condemn by 30%. Additionally, Righteous Tempest now reduces all damage taken by -20% while active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30963","treeId":"coa-templar-51","index":30963,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_paladin_judgementsofthejust.png","maxRank":1,"name":"Testament of Strength","description":"Your next 3 Titanstrikes incur a -50% reduced cooldown, are usable regardless of your target's health percentage, and deal 25% increased damage. Lasts 1 minute. Applies Sacred Restraint for 1 minute.Sacred RestraintCannot be targeted by Testaments.","rankDescriptions":["Your next 3 Titanstrikes incur a -50% reduced cooldown, are usable regardless of your target's health percentage, and deal 25% increased damage. Lasts 1 minute. Applies Sacred Restraint for 1 minute.Sacred RestraintCannot be targeted by Testaments."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6921","treeId":"coa-templar-51","index":6921,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/inv_shield_1h_silverhand_b_01.png","maxRank":1,"name":"Legacy of the Silver Hand","description":"Casting Argent Blade or Scarlet Hammer now guarantees your next 2 instances of damage dealt by Scourgebane to critically strike. Increases the critical damage of Scourgebane by 15%.","rankDescriptions":["Casting Argent Blade or Scarlet Hammer now guarantees your next 2 instances of damage dealt by Scourgebane to critically strike. Increases the critical damage of Scourgebane by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9888","treeId":"coa-templar-51","index":9888,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_plate_scarletcrusade_c_01_shoulder_black.png","maxRank":1,"name":"Martial Training","description":"Level 50 Passive Your Chastise now deals an additional 50% Weapon Damage.","rankDescriptions":["Level 50 Passive Your Chastise now deals an additional 50% Weapon Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30439","treeId":"coa-templar-51","index":30439,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/nhi_fire_solar_border.png","maxRank":1,"name":"Templar Rituals","description":"Damage dealt by Righteous Tempest now deals an additional 85 + 50% holy SP + 8.5% AP Holy damage, and upon dealing damage, you pull enemies within 15 yds towards you.","rankDescriptions":["Damage dealt by Righteous Tempest now deals an additional 85 + 50% holy SP + 8.5% AP Holy damage, and upon dealing damage, you pull enemies within 15 yds towards you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34366","treeId":"coa-templar-51","index":34366,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/_execution_white.png","maxRank":1,"name":"Titanfall","description":"Your Titanstrike now heals you for twice the damage dealt.","rankDescriptions":["Your Titanstrike now heals you for twice the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4364","treeId":"coa-templar-51","index":4364,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_holy_surgeoflight.png","maxRank":1,"name":"Scarlet Champion","description":"Your damaging critical strikes now increase your Holy damage dealt by 2% for 20 seconds. stacking 5 times. Can only occur once per sec. At 5 stacks, you are granted High General.High GeneralYour next Chastise consumes all stacks of Scarlet Champion to deal 25% increased direct damage, and be guaranteed to critically strike.","rankDescriptions":["Your damaging critical strikes now increase your Holy damage dealt by 2% for 20 seconds. stacking 5 times. Can only occur once per sec. At 5 stacks, you are granted High General.High GeneralYour next Chastise consumes all stacks of Scarlet Champion to deal 25% increased direct damage, and be guaranteed to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34402","treeId":"coa-templar-87","index":34402,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/nhi_holymeditation_border.png","maxRank":1,"name":"Testament of Fortitude","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29704","treeId":"coa-templar-87","index":29704,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/holy_blade_templar.png","maxRank":1,"name":"Blade of Faith","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31314","treeId":"coa-templar-87","index":31314,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/spell_priest_pathofdevout.png","maxRank":1,"name":"Divine Force","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6358","treeId":"coa-templar-87","index":6358,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/ability_paladin_selflesshealer.png","maxRank":1,"name":"Spiritual","description":"Increases your Energy regeneration by 20%.","rankDescriptions":["Increases your Energy regeneration by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34341","treeId":"coa-templar-87","index":34341,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/ability_karoz_leap.png","maxRank":2,"name":"Courage","description":"Increases your movement speed and reduces the duration of movement slowing effects on you by -20%.","rankDescriptions":["Increases your movement speed and reduces the duration of movement slowing effects on you by -10%.","Increases your movement speed and reduces the duration of movement slowing effects on you by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34379","treeId":"coa-templar-87","index":34379,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/spell_holy_pureofheart.png","maxRank":1,"name":"Sacred Style","description":"Increases your Holy healing done and received by 8%.","rankDescriptions":["Increases your Holy healing done and received by 8%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6356","treeId":"coa-templar-87","index":6356,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/nhi_holy_wraith_border.png","maxRank":1,"name":"Deep Meditation","description":"Increases the duration of your Oath Chain by 5 sec.","rankDescriptions":["Increases the duration of your Oath Chain by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4348","treeId":"coa-templar-87","index":4348,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/ability_skyreach_fourblades.png","maxRank":1,"name":"Pious","description":"Increases all primary attributes by 5%.","rankDescriptions":["Increases all primary attributes by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34353","treeId":"coa-templar-87","index":34353,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/spell_holy_prayerofspirit.png","maxRank":1,"name":"Testament of Hope","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.","rankDescriptions":["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."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34340","treeId":"coa-templar-87","index":34340,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/_book2motif_lordaeroncorrupted.png","maxRank":1,"name":"Libram of Tenacity","description":"Read from your Libram of Tenacity, reducing your Physical Damage taken by -30% for 20 seconds.","rankDescriptions":["Read from your Libram of Tenacity, reducing your Physical Damage taken by -30% for 20 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5713","treeId":"coa-templar-87","index":5713,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/_book2motif_tyr.png","maxRank":1,"name":"Libram of Fervor","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34356","treeId":"coa-templar-87","index":34356,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/nhi_holyring_border.png","maxRank":1,"name":"Holy Crusader","description":"Reduces the cooldown of Divine Force by -30 sec.","rankDescriptions":["Reduces the cooldown of Divine Force by -30 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34357","treeId":"coa-templar-87","index":34357,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/ability_warrior_challange_yellow.png","maxRank":1,"name":"Scarlet Judicator","description":"Your Divine Force now strikes 2 additional enemies near the primary target.","rankDescriptions":["Your Divine Force now strikes 2 additional enemies near the primary target."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34368","treeId":"coa-templar-87","index":34368,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/spell_holy_improvedresistanceauras.png","maxRank":1,"name":"Improved Benediction","description":"Benediction now grants your target armor based on your Agility and Stamina for 15 sec.","rankDescriptions":["Benediction now grants your target armor based on your Agility and Stamina for 15 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34377","treeId":"coa-templar-87","index":34377,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_thunderclap.png","maxRank":1,"name":"Judicator","description":"Increases your parry and dodge chance by 3%.","rankDescriptions":["Increases your parry and dodge chance by 3%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30611","treeId":"coa-templar-87","index":30611,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_inscription_weaponscroll03.png","maxRank":1,"name":"Liberty","description":"Reduces the cooldown of your Libram spells by -30 sec.","rankDescriptions":["Reduces the cooldown of your Libram spells by -30 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29714","treeId":"coa-templar-87","index":29714,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/spell_holy_vindication.png","maxRank":1,"name":"Blessed Strikes","description":"Reduces the Energy cost of your Oath Breakers by -10.","rankDescriptions":["Reduces the Energy cost of your Oath Breakers by -10."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6924","treeId":"coa-templar-87","index":6924,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/spell_priest_vowofunity.png","maxRank":1,"name":"Interdict","description":"Forbid an enemy from sinning, silencing them for 6 seconds. If they are an Undead or Demon they are unable to be healed for the duration.","rankDescriptions":["Forbid an enemy from sinning, silencing them for 6 seconds. If they are an Undead or Demon they are unable to be healed for the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6375","treeId":"coa-templar-87","index":6375,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_jewelry_talisman_01.png","maxRank":1,"name":"Tyr's Guard","description":"Testament of Hope now summons an additional copy of yourself.","rankDescriptions":["Testament of Hope now summons an additional copy of yourself."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6355","treeId":"coa-templar-87","index":6355,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_helm_misc_candle_a_01.png","maxRank":1,"name":"Sacred Candle","description":"Reduces the cooldown of Testament of Faith by -60 sec and the duration of Sacred Restraint by -30 sec.","rankDescriptions":["Reduces the cooldown of Testament of Faith by -60 sec and the duration of Sacred Restraint by -30 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34348","treeId":"coa-templar-87","index":34348,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/70_inscription_vantus_rune_light.png","maxRank":1,"name":"Deep Secrets","description":"Increases the duration of your Librams and Testaments by 10 sec.","rankDescriptions":["Increases the duration of your Librams and Testaments by 10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34342","treeId":"coa-templar-87","index":34342,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/spell_holy_power.png","maxRank":1,"name":"Holy Constitution","description":"Increases your damage dealt versus Undead by 5, scaling with level, and increases your chance to resist disease effects by 30%.","rankDescriptions":["Increases your damage dealt versus Undead by 5, scaling with level, and increases your chance to resist disease effects by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29706","treeId":"coa-templar-87","index":29706,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/spell_holy_fanaticism.png","maxRank":1,"name":"Martyr","description":"Increases the effectiveness of Gift of Zeal by 20%.","rankDescriptions":["Increases the effectiveness of Gift of Zeal by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6354","treeId":"coa-templar-87","index":6354,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/_d3mystically.png","maxRank":1,"name":"Testament of Will","description":"Break an ally free of worldly constraints, making them immune to all movement impairing effects for 10 seconds. Applies Sacred Restraint for 1 minute.Sacred RestraintCannot be targeted by Testaments.","rankDescriptions":["Break an ally free of worldly constraints, making them immune to all movement impairing effects for 10 seconds. Applies Sacred Restraint for 1 minute.Sacred RestraintCannot be targeted by Testaments."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34337","treeId":"coa-templar-87","index":34337,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_holy_sealoffury.png","maxRank":1,"name":"Tenacious Defender","description":"Casting Libram of Tenacity now also heals you for 20% of your maximum health.","rankDescriptions":["Casting Libram of Tenacity now also heals you for 20% of your maximum health."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34345","treeId":"coa-templar-87","index":34345,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/spell_monk_envelopingmist.png","maxRank":2,"name":"Sturdy","description":"Increases your maximum health and Energy by 10%.","rankDescriptions":["Increases your maximum health and Energy by 5%.","Increases your maximum health and Energy by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34349","treeId":"coa-templar-87","index":34349,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/spell_holy_blessedlife.png","maxRank":1,"name":"Final Prayer","description":"Doubles the healing done to you by Testament of Fortitude and Testament of Faith.","rankDescriptions":["Doubles the healing done to you by Testament of Fortitude and Testament of Faith."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29707","treeId":"coa-templar-87","index":29707,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_holy_holyguidance.png","maxRank":1,"name":"Mark of Aggramar","description":"Reduces the Energy cost of your Testaments by -50%.","rankDescriptions":["Reduces the Energy cost of your Testaments by -50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31313","treeId":"coa-templar-87","index":31313,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/5_paladinskill18_border.png","maxRank":2,"name":"Finesse","description":"Increases your critical strike chance by 4% and reduces the duration of disarm effects against you by -30%.","rankDescriptions":["Increases your critical strike chance by 2% and reduces the duration of disarm effects against you by -15%.","Increases your critical strike chance by 4% and reduces the duration of disarm effects against you by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34347","treeId":"coa-templar-87","index":34347,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/custom_skill_161_border.png","maxRank":1,"name":"Judgement of the Gods","description":"Increases the critical strike chance of Titanstrike by 50%.","rankDescriptions":["Increases the critical strike chance of Titanstrike by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5156","treeId":"coa-templar-87","index":5156,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/spell_holy_heroism.png","maxRank":1,"name":"Determined","description":"Your Temple Guardian now makes your next ability within 5 seconds free of cost.","rankDescriptions":["Your Temple Guardian now makes your next ability within 5 seconds free of cost."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30063","treeId":"coa-templar-87","index":30063,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/nhi_corruptionmind_border.png","maxRank":1,"name":"Profound Enlightenment","description":"Attain enlightenment, reducing the remaining cooldown of Testaments by 50%.","rankDescriptions":["Attain enlightenment, reducing the remaining cooldown of Testaments by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34350","treeId":"coa-templar-87","index":34350,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/spells/inv_trinket_bastion_01_gold.png","maxRank":1,"name":"Sacred Defense","description":"When you take Physical damage you now strike back at enemies for 15% of the damage dealt as Holy damage. Can only occur once per sec.","rankDescriptions":["When you take Physical damage you now strike back at enemies for 15% of the damage dealt as Holy damage. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7814","treeId":"coa-templar-87","index":7814,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":9,"icon":"/assets/ui/spells/spell_paladin_inquisition.png","maxRank":1,"name":"Sanctify","description":"Your Libram spells now grant you 10% increased melee haste for 20 seconds.","rankDescriptions":["Your Libram spells now grant you 10% increased melee haste for 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7775","treeId":"coa-templar-87","index":7775,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/spell_holy_healingaura.png","maxRank":1,"name":"Pulverizing","description":"Damage dealt by Condemn now has a 15% chance to consecrate the earth around you with holy fervor, dealing 91 + 22.5% holy SP + 10% AP Holy damage to nearby enemies.","rankDescriptions":["Damage dealt by Condemn now has a 15% chance to consecrate the earth around you with holy fervor, dealing 91 + 22.5% holy SP + 10% AP Holy damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34352","treeId":"coa-templar-87","index":34352,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/5_paladinskill06_border.png","maxRank":1,"name":"Silverhand Incantation","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34375","treeId":"coa-templar-87","index":34375,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/_d3breathofheaven.png","maxRank":1,"name":"Binding Scripture","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29259","treeId":"coa-templar-87","index":29259,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/_d3innersanctuary.png","maxRank":1,"name":"Glory","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/tinker.json b/src/game/generated/talentUi/tinker.json new file mode 100644 index 00000000..bd21c321 --- /dev/null +++ b/src/game/generated/talentUi/tinker.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"tinker","trees":[{"id":"coa-tinker-87","classId":"tinker","name":"Class","icon":"/assets/ui/spells/inv_gizmo_rocketbootextreme.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-tinker-75","classId":"tinker","name":"Mechanics","icon":"/assets/ui/spells/custom_engineerskill_49_border.png","background":"","description":"Mechanics nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-tinker-74","classId":"tinker","name":"Invention","icon":"/assets/ui/spells/spell_mekkatorque_bot_greenspring.png","background":"","description":"Invention nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-tinker-73","classId":"tinker","name":"Demolition","icon":"/assets/ui/spells/5_bomb_border.png","background":"","description":"Demolition nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-6828","treeId":"coa-tinker-73","index":6828,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/5_bomb_border.png","maxRank":1,"name":"Bomb Toss","description":"Lob a bomb at an enemy, dealing 36 + 30% ranged AP + 50% fire SP Fire damage and reducing their armor by -5% for 15 seconds, stacking 4 times.","rankDescriptions":["Lob a bomb at an enemy, dealing 36 + 30% ranged AP + 50% fire SP Fire damage and reducing their armor by -5% for 15 seconds, stacking 4 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4049","treeId":"coa-tinker-73","index":4049,"prerequisiteId":"coa-entry-31113","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-31113","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_eng_bombfire.png","maxRank":1,"name":"Napalm","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-29613","treeId":"coa-tinker-73","index":29613,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/ability_racial_rocketbarrage.png","maxRank":1,"name":"Rocket Launcher","description":"Fire a powerful rocket at an enemy that deals 126 + 35% ranged AP + 35% fire SP Fire damage.","rankDescriptions":["Fire a powerful rocket at an enemy that deals 126 + 35% ranged AP + 35% fire SP Fire damage."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7001","treeId":"coa-tinker-73","index":7001,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/ability_siege_engineer_detonate.png","maxRank":1,"name":"Build: Spider Bomb","description":"Build a Spider Bomb that will immediately run towards your target and detonate dealing 250 + 30% ranged AP Fire damage in an 8 yd radius. Using Scrap Shot will redirect the Spider Bombs to your new target.","rankDescriptions":["Build a Spider Bomb that will immediately run towards your target and detonate dealing 250 + 30% ranged AP Fire damage in an 8 yd radius. Using Scrap Shot will redirect the Spider Bombs to your new target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34996","treeId":"coa-tinker-73","index":34996,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/nhi_holybullet_border.png","maxRank":2,"name":"Incendiary Bullets","description":"Increases the damage of Scrap Shot by 30% and increases your chance to hit by 4%.","rankDescriptions":["Increases the damage of Scrap Shot by 15% and increases your chance to hit by 2%.","Increases the damage of Scrap Shot by 30% and increases your chance to hit by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9621","treeId":"coa-tinker-73","index":9621,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/nhi_tech_rocket_border.png","maxRank":1,"name":"Sparked and Ready!","description":"Level 20 Passive Fire damage dealt has a 5% chance to grant you Sparked and Ready!.Sparked and Ready!Causes your next Rocket Launcher, within 10 seconds, to be instant cast and deal 20% increased damage.","rankDescriptions":["Level 20 Passive Fire damage dealt has a 5% chance to grant you Sparked and Ready!.Sparked and Ready!Causes your next Rocket Launcher, within 10 seconds, to be instant cast and deal 20% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-31237","treeId":"coa-tinker-73","index":31237,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/nhi_tech_bombs_border.png","maxRank":1,"name":"I Need More Explosions!","description":"Increases the damage of Sticky Bomb Explosions by 15%.","rankDescriptions":["Increases the damage of Sticky Bomb Explosions by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6385","treeId":"coa-tinker-73","index":6385,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/ability_siege_engineer_superheated.png","maxRank":1,"name":"Target Acquired","description":"Your Sticky Bomb Explosions and Spider Bomb now deal 30% increased damage when it strikes only 1 target.","rankDescriptions":["Your Sticky Bomb Explosions and Spider Bomb now deal 30% increased damage when it strikes only 1 target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7002","treeId":"coa-tinker-73","index":7002,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/inv_misc_bomb_04.png","maxRank":1,"name":"Boom Hour","description":"Increases the critical strike chance of Bomb Toss and Firepot Drone by 10%.","rankDescriptions":["Increases the critical strike chance of Bomb Toss and Firepot Drone by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30581","treeId":"coa-tinker-73","index":30581,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/5_engineerskill25_border.png","maxRank":1,"name":"Build: Firepot Drone","description":"3 Charges, 10 sec recharge Build a Firepot Drone that flies towards your target, dropping a bomb along its path and exploding upon landing, dealing 182 + 17.5% ranged AP + 55% fire SP Fire damage in a 5 yd radius, leaving oil on the ground for 6 seconds that slows enemies within by -30%.","rankDescriptions":["3 Charges, 10 sec recharge Build a Firepot Drone that flies towards your target, dropping a bomb along its path and exploding upon landing, dealing 182 + 17.5% ranged AP + 55% fire SP Fire damage in a 5 yd radius, leaving oil on the ground for 6 seconds that slows enemies within by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34997","treeId":"coa-tinker-73","index":34997,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv_eng_bombfire.png","maxRank":1,"name":"Duobombers","description":"Build: Spider Bomb now creates an additional Spider Bomb that rushes towards your target.","rankDescriptions":["Build: Spider Bomb now creates an additional Spider Bomb that rushes towards your target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34994","treeId":"coa-tinker-73","index":34994,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_ascend_sticks_b_01.png","maxRank":1,"name":"Aftermath","description":"Casting Sticky Bomb now causes your next 2 Scrap Shots within 10 seconds to cast -50% faster and deal 25% increased damage.","rankDescriptions":["Casting Sticky Bomb now causes your next 2 Scrap Shots within 10 seconds to cast -50% faster and deal 25% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34992","treeId":"coa-tinker-73","index":34992,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_misc_bomb_07.png","maxRank":1,"name":"Explosives Expert","description":"Direct harmful ability critical strikes from you or your summons now restores 4% of your maximum mana.","rankDescriptions":["Direct harmful ability critical strikes from you or your summons now restores 4% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7842","treeId":"coa-tinker-73","index":7842,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_misc_missilelarge_red.png","maxRank":1,"name":"Drone Striker","description":"Firepot Drone and Scrap Shot now deal 2% increased damage for each stack of Napalm on the enemy.Napalm (Damage)Fire Damage taken by you is increased and healing received reduced by -3% for 8 seconds. Stacks 10 times.","rankDescriptions":["Firepot Drone and Scrap Shot now deal 2% increased damage for each stack of Napalm on the enemy.Napalm (Damage)Fire Damage taken by you is increased and healing received reduced by -3% for 8 seconds. Stacks 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6505","treeId":"coa-tinker-73","index":6505,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/inv_misc_mohawkgrenade.png","maxRank":1,"name":"Grenadier","description":"When you reach 5 stacks of Napalm on a target you refresh 1 charge of Build: Firepot Drone.","rankDescriptions":["When you reach 5 stacks of Napalm on a target you refresh 1 charge of Build: Firepot Drone."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11120","treeId":"coa-tinker-73","index":11120,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_misc_bomb_01.png","maxRank":1,"name":"Bombastic","description":"Level 30 Passive Casting Build: Spider Bomb now resets the cooldown of Bomb Toss and causes your next Bomb Toss within 15 seconds to trigger no cooldown, global cooldown, or cost.","rankDescriptions":["Level 30 Passive Casting Build: Spider Bomb now resets the cooldown of Bomb Toss and causes your next Bomb Toss within 15 seconds to trigger no cooldown, global cooldown, or cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-5990","treeId":"coa-tinker-73","index":5990,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/spell_fire_selfdestruct.png","maxRank":1,"name":"Flamethrowing","description":"When you Bomb Toss, your Sentry Turret unleashes flames on your target, dealing 89+18+ranged AP*0.12+SPFI*0.4. Fire damage to enemies in a 30 yd line.","rankDescriptions":["When you Bomb Toss, your Sentry Turret unleashes flames on your target, dealing 89+18+ranged AP*0.12+SPFI*0.4. Fire damage to enemies in a 30 yd line."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30586","treeId":"coa-tinker-73","index":30586,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/nhi_fire_explosion_border.png","maxRank":1,"name":"War Crimes","description":"Damage dealt by Explosive Augmentation and Tracer Augmentation now has a 50% chance to apply an additional stack of Napalm to enemies.Napalm (Damage)Fire Damage taken by you is increased and healing received reduced by -3% for 8 seconds. Stacks 10 times.","rankDescriptions":["Damage dealt by Explosive Augmentation and Tracer Augmentation now has a 50% chance to apply an additional stack of Napalm to enemies.Napalm (Damage)Fire Damage taken by you is increased and healing received reduced by -3% for 8 seconds. Stacks 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30702","treeId":"coa-tinker-73","index":30702,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/spell_fire_sealoffire.png","maxRank":1,"name":"Tank Buster","description":"Your Scrap Shot now ignores 25% of the target's Armor when damaging Burning targets.","rankDescriptions":["Your Scrap Shot now ignores 25% of the target's Armor when damaging Burning targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6883","treeId":"coa-tinker-73","index":6883,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_vehicle_oiljets.png","maxRank":1,"name":"Build: Oil-Spill Pylon","description":"Build an Oil-Spill Pylon at target location for 10 seconds, spilling oil in an 8 yd radius that reduces enemies movement speed by -60% and increases their Fire damage taken by you by 15%. Sticky Bomb Explosions and Firepot Drone deal 20% increased damage to enemies inside.","rankDescriptions":["Build an Oil-Spill Pylon at target location for 10 seconds, spilling oil in an 8 yd radius that reduces enemies movement speed by -60% and increases their Fire damage taken by you by 15%. Sticky Bomb Explosions and Firepot Drone deal 20% increased damage to enemies inside."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29340","treeId":"coa-tinker-73","index":29340,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/hos_lunar_rocket.png","maxRank":1,"name":"Surprise Launch!","description":"When Rocket Launcher is used on enemies affected by Sticky Bomb it is now guaranteed to critically strike.","rankDescriptions":["When Rocket Launcher is used on enemies affected by Sticky Bomb it is now guaranteed to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6386","treeId":"coa-tinker-73","index":6386,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/ability_mage_livingbomb.png","maxRank":1,"name":"Bomb Builder","description":"Increases your and your summons Fire Damage dealt by 5%.","rankDescriptions":["Increases your and your summons Fire Damage dealt by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6991","treeId":"coa-tinker-73","index":6991,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/5_engineerskill46_border.png","maxRank":1,"name":"Tracer Augmentation","description":"Add a Tracer Augmentation to your gun for 1 hour, causing your ranged attacks to mark enemies for 5 seconds, stacking 5 times. After the duration they explode for 80 + 8% ranged AP + 15% fire SP Fire damage, increased based on stacks. Marked enemies are prevented from entering stealth or invisibility for 20 seconds.","rankDescriptions":["Add a Tracer Augmentation to your gun for 1 hour, causing your ranged attacks to mark enemies for 5 seconds, stacking 5 times. After the duration they explode for 80 + 8% ranged AP + 15% fire SP Fire damage, increased based on stacks. Marked enemies are prevented from entering stealth or invisibility for 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34985","treeId":"coa-tinker-73","index":34985,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/inv_engineering_snipingscope.png","maxRank":1,"name":"Buster Scope","description":"Increases the critical damage of Rocket Launcher by 10%.","rankDescriptions":["Increases the critical damage of Rocket Launcher by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34989","treeId":"coa-tinker-73","index":34989,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/inv_misc_scopeb.png","maxRank":1,"name":"Mega Scope","description":"Increases the range of Rocket Launcher by 10 yds.","rankDescriptions":["Increases the range of Rocket Launcher by 10 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7840","treeId":"coa-tinker-73","index":7840,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/ability_vehicle_siegeenginecannon.png","maxRank":1,"name":"The BIG Guns!","description":"Increases the attack power of all party and raid members 5%. Does not stack with similar effects. In addition, increases your ranged attack power by 3%.","rankDescriptions":["Increases the attack power of all party and raid members 5%. Does not stack with similar effects. In addition, increases your ranged attack power by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29825","treeId":"coa-tinker-73","index":29825,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_mount_rocketmount4.png","maxRank":1,"name":"Rockadier","description":"Empowers the next 6 Scrap Shots or Rocket Launchers within 30 seconds deal additional Fire damage equal to 100% of the damage dealt to up to 10 enemies around the target.","rankDescriptions":["Empowers the next 6 Scrap Shots or Rocket Launchers within 30 seconds deal additional Fire damage equal to 100% of the damage dealt to up to 10 enemies around the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11140","treeId":"coa-tinker-73","index":11140,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_ascend_bomb_b_02.png","maxRank":1,"name":"Bomb Squad","description":"Level 40 Passive Increases your Fire spell power by 50% of Agility.","rankDescriptions":["Level 40 Passive Increases your Fire spell power by 50% of Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-5991","treeId":"coa-tinker-73","index":5991,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/nhi_tech_steammachine_border.png","maxRank":1,"name":"Machine Synergy","description":"Casting Scrap Shot now adds a stack of Machine Synergy to your active pet and Sentry Turret.Machine SynergyIncreases damage dealt by 5% and haste by 3%, stacking 3 times, for 6 seconds.","rankDescriptions":["Casting Scrap Shot now adds a stack of Machine Synergy to your active pet and Sentry Turret.Machine SynergyIncreases damage dealt by 5% and haste by 3%, stacking 3 times, for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29441","treeId":"coa-tinker-73","index":29441,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/ability_blackhand_slagbombs.png","maxRank":1,"name":"Rocket Engineering","description":"Direct harmful ability critical strikes now apply an additional stack of Tracer Augmentation to the target while active on the enemy.","rankDescriptions":["Direct harmful ability critical strikes now apply an additional stack of Tracer Augmentation to the target while active on the enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7047","treeId":"coa-tinker-73","index":7047,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/_goblin_01.png","maxRank":1,"name":"Gazlowe's Wisdom","description":"You now spawn 2 Shrapnel Mines under your target when Sticky Bomb explodes. Shrapnel MineWhen you use Remote Detonation, deal 264 + 25% AP + 38.5% SP Physical damage to up to 5 enemies within 10 yds. The mine lasts 1 minute.","rankDescriptions":["You now spawn 2 Shrapnel Mines under your target when Sticky Bomb explodes. Shrapnel MineWhen you use Remote Detonation, deal 264 + 25% AP + 38.5% SP Physical damage to up to 5 enemies within 10 yds. The mine lasts 1 minute."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7035","treeId":"coa-tinker-73","index":7035,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_backpack_wrathion_c_01.png","maxRank":1,"name":"Rocket Pack","description":"Fire critical strikes now reduce the remaining cooldown of Rockadier by -3 sec.","rankDescriptions":["Fire critical strikes now reduce the remaining cooldown of Rockadier by -3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4883","treeId":"coa-tinker-73","index":4883,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/_d3evasivefire.png","maxRank":1,"name":"Boomshot","description":"Every 4th Scrap Shot now causes your next Scrap Shot within 15 seconds to deal 25% increased damage.","rankDescriptions":["Every 4th Scrap Shot now causes your next Scrap Shot within 15 seconds to deal 25% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30580","treeId":"coa-tinker-73","index":30580,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/achievement_boss_siegecrafter_blackfuse.png","maxRank":1,"name":"Short Fuse","description":"Sparked and Ready now also increases the critical strike chance of Rocket Launcher by 20%.","rankDescriptions":["Sparked and Ready now also increases the critical strike chance of Rocket Launcher by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29921","treeId":"coa-tinker-73","index":29921,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_mechagonspidertank_brass.png","maxRank":1,"name":"Build: Spider Bomb Factory","description":"Build a Spider Bomb Factory in front of you for 20 seconds. For the duration, Bomb Toss and Rocket Launcher will summon 3 Spider Bombs, that will immediately run towards your target and detonate dealing 250 + 30% ranged AP Fire damage. Using Scrap Shot will redirect the Spider Bombs to your new target.","rankDescriptions":["Build a Spider Bomb Factory in front of you for 20 seconds. For the duration, Bomb Toss and Rocket Launcher will summon 3 Spider Bombs, that will immediately run towards your target and detonate dealing 250 + 30% ranged AP Fire damage. Using Scrap Shot will redirect the Spider Bombs to your new target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30579","treeId":"coa-tinker-73","index":30579,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/nhi_tech_rocketdouble_border.png","maxRank":1,"name":"Rocket Turrets","description":"Allows Machine Synergy to stack 2 additional times and using Rocket Launcher now causes your Sentry Turret to also cast Rocket Launcher.Machine SynergyIncreases damage dealt by 5% and haste by 3%, stacking 3 times, for 6 seconds.","rankDescriptions":["Allows Machine Synergy to stack 2 additional times and using Rocket Launcher now causes your Sentry Turret to also cast Rocket Launcher.Machine SynergyIncreases damage dealt by 5% and haste by 3%, stacking 3 times, for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4740","treeId":"coa-tinker-73","index":4740,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_gizmo_goblinboombox_01.png","maxRank":1,"name":"Bomber Man","description":"Level 30 Passive While Bombastic is active, your Bomb Tosses will additionally reduce the cooldown of Sticky Bomb by -1 sec.","rankDescriptions":["Level 30 Passive While Bombastic is active, your Bomb Tosses will additionally reduce the cooldown of Sticky Bomb by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-5985","treeId":"coa-tinker-73","index":5985,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_mount_rocketmount3.png","maxRank":1,"name":"Rocket Barrage","description":"Increases the amount of stacks of Tracer Augmentation by 5, and its duration by 7 sec, and causes damage dealt by Bomb Toss on enemies with 10 stacks to launch a Rocket Barrage at their location.Rocket Barrage (Damage)Deals 1290 + 17.5% AP + 11% fire SP Fire Damage to nearby enemies after 5 seconds.","rankDescriptions":["Increases the amount of stacks of Tracer Augmentation by 5, and its duration by 7 sec, and causes damage dealt by Bomb Toss on enemies with 10 stacks to launch a Rocket Barrage at their location.Rocket Barrage (Damage)Deals 1290 + 17.5% AP + 11% fire SP Fire Damage to nearby enemies after 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34984","treeId":"coa-tinker-73","index":34984,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_eng_bombroot.png","maxRank":1,"name":"Explosive Inventor","description":"Spider Bomb Factory now also summons a Heavy Spider Bomb. Heavy Spider Bombs move slowly, and deal 1231 + 55% ranged AP Fire damage when they reach their target and slow their movement speed by -70% for 2 seconds.","rankDescriptions":["Spider Bomb Factory now also summons a Heavy Spider Bomb. Heavy Spider Bombs move slowly, and deal 1231 + 55% ranged AP Fire damage when they reach their target and slow their movement speed by -70% for 2 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7004","treeId":"coa-tinker-73","index":7004,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_weapon_rifle_20.png","maxRank":1,"name":"Hyperblast Barrage","description":"Unleash a barrage of shrapnel, dealing 831 + 36% ranged AP + 55% fire SP Fire damage to enemies in a line, applying a lesser Sticky Bomb to each target struck that deals 297 + 10% fire SP + 50% AP Fire damage after 3 sec. After 3 seconds, your active Sentry Turret will also fire a Hyperblast Barrage.","rankDescriptions":["Unleash a barrage of shrapnel, dealing 831 + 36% ranged AP + 55% fire SP Fire damage to enemies in a line, applying a lesser Sticky Bomb to each target struck that deals 297 + 10% fire SP + 50% AP Fire damage after 3 sec. After 3 seconds, your active Sentry Turret will also fire a Hyperblast Barrage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29816","treeId":"coa-tinker-74","index":29816,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/spell_mekkatorque_bot_greenspring.png","maxRank":1,"name":"Build: Restorative Beacon","description":"3 Charges, 15 sec recharge Throw down a restorative beacon for 15 seconds which projects a field that heals raid and party members in the area for 92 + 12% SP every 3 sec.","rankDescriptions":["3 Charges, 15 sec recharge Throw down a restorative beacon for 15 seconds which projects a field that heals raid and party members in the area for 92 + 12% SP every 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4050","treeId":"coa-tinker-74","index":4050,"prerequisiteId":"coa-entry-29813","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29813","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_plate_mechagnome_c_01shoulder.png","maxRank":1,"name":"Build: ZIGGI-6K","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-5978","treeId":"coa-tinker-74","index":5978,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/ability_repair.png","maxRank":2,"name":"Over-Repaired","description":"Increases the healing done by Repair Shot by 30%.","rankDescriptions":["Increases the healing done by Repair Shot by 15%.","Increases the healing done by Repair Shot by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7921","treeId":"coa-tinker-74","index":7921,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/inv_mechagonspidertank_junker.png","maxRank":1,"name":"Field Medic","description":"Increases your and your summons critical strike chance by 5%.","rankDescriptions":["Increases your and your summons critical strike chance by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6966","treeId":"coa-tinker-74","index":6966,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/spells/spell_frost_frostward.png","maxRank":1,"name":"Master Builder","description":"Reduces the mana cost of all Build abilities by -25%.","rankDescriptions":["Reduces the mana cost of all Build abilities by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7922","treeId":"coa-tinker-74","index":7922,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_engineering_reavesmodule.png","maxRank":1,"name":"Stim Augmentation","description":"Add a Stim Augmentation to your gun for 1 hour, causing your direct healing abilities to heal up to 3 nearby allies for an additional 20% of the amount healed. Healing done by this can critically strike.","rankDescriptions":["Add a Stim Augmentation to your gun for 1 hour, causing your direct healing abilities to heal up to 3 nearby allies for an additional 20% of the amount healed. Healing done by this can critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5979","treeId":"coa-tinker-74","index":5979,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":3,"icon":"/assets/ui/spells/inv_misc_enggizmos_30.png","maxRank":2,"name":"Technician","description":"Reduces spell pushback suffered from damaging attacks by 70% and increases your critical healing by 20%.","rankDescriptions":["Reduces spell pushback suffered from damaging attacks by 35% and increases your critical healing by 10%.","Reduces spell pushback suffered from damaging attacks by 70% and increases your critical healing by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2609","treeId":"coa-tinker-74","index":2609,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/nhi_chaoshealing_border.png","maxRank":1,"name":"Scientific Nature","description":"Level 20 Passive Increases your healing power by 20% of your Intellect and your critical strike rating by 15% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your healing power by 20% of your Intellect and your critical strike rating by 15% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-6973","treeId":"coa-tinker-74","index":6973,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/5_atom_border.png","maxRank":1,"name":"Macro Designer","description":"Increases the duration of your Beacons by 5 sec and Med Pack by 3 sec.","rankDescriptions":["Increases the duration of your Beacons by 5 sec and Med Pack by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5972","treeId":"coa-tinker-74","index":5972,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_belt_83.png","maxRank":1,"name":"Inventor's Tool Belt","description":"Increases your and your pet's Intellect by 10% and you are both now unable to miss your attacks.","rankDescriptions":["Increases your and your pet's Intellect by 10% and you are both now unable to miss your attacks."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30572","treeId":"coa-tinker-74","index":30572,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/achievement_character_gnome_male.png","maxRank":1,"name":"Eureka!","description":"Direct healing critical strikes now increase the healing done by your next Repair Shot or Emergency Heal by 30% for 10 seconds.","rankDescriptions":["Direct healing critical strikes now increase the healing done by your next Repair Shot or Emergency Heal by 30% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6975","treeId":"coa-tinker-74","index":6975,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv_eng_miniaturizedplasmashield.png","maxRank":1,"name":"Nanobot Swarm","description":"Send Nanobots to an ally, dealing 15 + 17.1% SP damage to nearby enemies every 4 sec for 1 minute. All threat generated by you is redirected to the target. Nanobot Swarm can only be sent to 1 target at time and cannot be dispelled.","rankDescriptions":["Send Nanobots to an ally, dealing 15 + 17.1% SP damage to nearby enemies every 4 sec for 1 minute. All threat generated by you is redirected to the target. Nanobot Swarm can only be sent to 1 target at time and cannot be dispelled."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5980","treeId":"coa-tinker-74","index":5980,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_jewelry_mech_ring_green.png","maxRank":1,"name":"Stim Pack","description":"Effective healing with Stim Augmentation now reduces the cooldown of Med Pack by -3 sec.","rankDescriptions":["Effective healing with Stim Augmentation now reduces the cooldown of Med Pack by -3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6967","treeId":"coa-tinker-74","index":6967,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/spell_shadow_soothingkiss.png","maxRank":1,"name":"Stim Shots","description":"Your Stim Augmentation now heals for an additional 10% of the amount healed.","rankDescriptions":["Your Stim Augmentation now heals for an additional 10% of the amount healed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30422","treeId":"coa-tinker-74","index":30422,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/inv_engineering_pumpactionbandagegun.png","maxRank":1,"name":"Bandage Gun","description":"Healing from Stim Augmentation now affects 2 additional allies near the primary target.","rankDescriptions":["Healing from Stim Augmentation now affects 2 additional allies near the primary target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6972","treeId":"coa-tinker-74","index":6972,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/spell_holy_sealofsacrifice.png","maxRank":1,"name":"Improved Emergency Heal","description":"Increases the healing and reduces the mana cost of Emergency Heal by -20%.","rankDescriptions":["Increases the healing and reduces the mana cost of Emergency Heal by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2429","treeId":"coa-tinker-74","index":2429,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_plate_mechagnome_c_01helm.png","maxRank":1,"name":"Beacon Charging","description":"Level 30 Passive Teaches Overcharge and Beacons now have Overcharge effects which can be activated by healing them with Repair Shot or using Overcharge.OverchargeOvercharge all active Beacons, unleashing their unique effects. Refer to individual Beacons for their Overcharge effects. Active Beacons can only be Overcharged once.","rankDescriptions":["Level 30 Passive Teaches Overcharge and Beacons now have Overcharge effects which can be activated by healing them with Repair Shot or using Overcharge.OverchargeOvercharge all active Beacons, unleashing their unique effects. Refer to individual Beacons for their Overcharge effects. Active Beacons can only be Overcharged once."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-5676","treeId":"coa-tinker-74","index":5676,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/ability_monk_chiexplosion.png","maxRank":1,"name":"Healing Radiator","description":"Periodic healing done by Nanobot Reconstruction now restores 27 + 4.03% healing health to 5 allied players within 10 yds of the affected target.","rankDescriptions":["Periodic healing done by Nanobot Reconstruction now restores 27 + 4.03% healing health to 5 allied players within 10 yds of the affected target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6974","treeId":"coa-tinker-74","index":6974,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/uico_mecha_spell_09_border.png","maxRank":1,"name":"Fine Tuning","description":"Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, not critically healing now increases your critical strike chance by 1%, stacking 10 times, until your next effective critical heal.","rankDescriptions":["Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, not critically healing now increases your critical strike chance by 1%, stacking 10 times, until your next effective critical heal."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30574","treeId":"coa-tinker-74","index":30574,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/nhi_lightning_empower_border.png","maxRank":1,"name":"Zap!","description":"Fires a long range zap of electricity that heals an ally for 254 + 150% healing. Scales with modifiers to Repair Shot.","rankDescriptions":["Fires a long range zap of electricity that heals an ally for 254 + 150% healing. Scales with modifiers to Repair Shot."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-10571","treeId":"coa-tinker-74","index":10571,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_vwmechanostrider_blue.png","maxRank":1,"name":"J27 Upgrade","description":"Reduces the mana cost of your Nanobots by -10% and they now last 10 additional sec.","rankDescriptions":["Reduces the mana cost of your Nanobots by -10% and they now last 10 additional sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30571","treeId":"coa-tinker-74","index":30571,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_manaforgedbarrier_yellow.png","maxRank":1,"name":"Electromagnetic Resistors","description":"Nanobots now grant a 30% chance to resist movement impairing effects for 15 seconds.","rankDescriptions":["Nanobots now grant a 30% chance to resist movement impairing effects for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30577","treeId":"coa-tinker-74","index":30577,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/ability_racial_skeletonpinkie.png","maxRank":1,"name":"Cybernetic Revivification","description":"All nearby allies receive 6% more healing. Does not stack with similar effects. In addition, your Alarm Beacon now dispels fear, charm, and sleep effects from 1 additional ally.","rankDescriptions":["All nearby allies receive 6% more healing. Does not stack with similar effects. In addition, your Alarm Beacon now dispels fear, charm, and sleep effects from 1 additional ally."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30575","treeId":"coa-tinker-74","index":30575,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/inv_engineering_815_uberspanner.png","maxRank":1,"name":"Build: Battery Recharge Station","description":"Build a Battery Recharge Station for 30 seconds that allies can interact with once to replenish 15% maximum health and mana, and 50% maximum Rage, Energy, Focus, and Runic Power. Applies Depleting Battery to party and raid members within 40 yds. Depleting BatteryMovement speed increased by 10% for 30 seconds. Run to the Battery Recharge Station and charge your battery!Charged BatteryMovement speed increased by 30% for 12 seconds.","rankDescriptions":["Build a Battery Recharge Station for 30 seconds that allies can interact with once to replenish 15% maximum health and mana, and 50% maximum Rage, Energy, Focus, and Runic Power. Applies Depleting Battery to party and raid members within 40 yds. Depleting BatteryMovement speed increased by 10% for 30 seconds. Run to the Battery Recharge Station and charge your battery!Charged BatteryMovement speed increased by 30% for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30573","treeId":"coa-tinker-74","index":30573,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/5_engineerskill23_border.png","maxRank":1,"name":"Build: Noise Box","description":"Build a Noise Box for 15 seconds that periodically unleashes screeching noise on nearby enemies, interrupting spellcasts and preventing spells of that school from being cast for 3 seconds.","rankDescriptions":["Build a Noise Box for 15 seconds that periodically unleashes screeching noise on nearby enemies, interrupting spellcasts and preventing spells of that school from being cast for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5965","treeId":"coa-tinker-74","index":5965,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/inv_misc_enggizmos_21.png","maxRank":1,"name":"Rejuvenating Gadget","description":"Critical strikes with Zap! now apply Rejuvenating Gas to up to 12 allies within 8 yards of your target that restores 15% of the value of the shot as health every 2 sec for 10 seconds.","rankDescriptions":["Critical strikes with Zap! now apply Rejuvenating Gas to up to 12 allies within 8 yards of your target that restores 15% of the value of the shot as health every 2 sec for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29812","treeId":"coa-tinker-74","index":29812,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/spell_nature_lightningbolt.png","maxRank":1,"name":"Trust the Science!","description":"Reduces the cooldown of Zap! by -5 sec.","rankDescriptions":["Reduces the cooldown of Zap! by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9429","treeId":"coa-tinker-74","index":9429,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_engineering_90_toolbox_green.png","maxRank":1,"name":"Graftbolts","description":"Level 40 Passive Effective healing done now has a 25% chance to grant your mechanical pet GraftboltsGraftboltsRestores 15% maximum mana to your pet and increases the damage and healing done by your summons by a percentage equal to 10% of your healing spell power for 6 seconds, stacking 3 times..","rankDescriptions":["Level 40 Passive Effective healing done now has a 25% chance to grant your mechanical pet GraftboltsGraftboltsRestores 15% maximum mana to your pet and increases the damage and healing done by your summons by a percentage equal to 10% of your healing spell power for 6 seconds, stacking 3 times.."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-6971","treeId":"coa-tinker-74","index":6971,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_holy_dizzy.png","maxRank":1,"name":"Nanobot Cleanser","description":"Send Nanobots to an ally removing 1 poison and disease effect every 3 sec for up to 15 seconds. Nanobot Cleanser can only be sent to 1 target at a time and can't be dispelled.","rankDescriptions":["Send Nanobots to an ally removing 1 poison and disease effect every 3 sec for up to 15 seconds. Nanobot Cleanser can only be sent to 1 target at a time and can't be dispelled."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6333","treeId":"coa-tinker-74","index":6333,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/_ingenieurbelt.png","maxRank":1,"name":"Rapid Fire Healing","description":"Casting Repair Shot or Emergency Heal now has a 15% chance to refresh a charge of Beacons.","rankDescriptions":["Casting Repair Shot or Emergency Heal now has a 15% chance to refresh a charge of Beacons."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5989","treeId":"coa-tinker-74","index":5989,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/ability_siege_engineer_pattern_recognition.png","maxRank":2,"name":"Mana Capacitors","description":"Reduces the cost of Overcharge by -30% and reduces its cooldown by -20%.","rankDescriptions":["Reduces the cost of Overcharge by -15% and reduces its cooldown by -10%.","Reduces the cost of Overcharge by -30% and reduces its cooldown by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7918","treeId":"coa-tinker-74","index":7918,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_gizmo_felironbomb.png","maxRank":1,"name":"Resourceful Tech","description":"Your Zap! is now guaranteed to critically strike allies affected by Nanobots.","rankDescriptions":["Your Zap! is now guaranteed to critically strike allies affected by Nanobots."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6979","treeId":"coa-tinker-74","index":6979,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/achievement_alliedrace_mechagnome.png","maxRank":1,"name":"My Greatest Invention!","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6969","treeId":"coa-tinker-74","index":6969,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_engineering_gunpack.png","maxRank":1,"name":"Self-Sustaining Technology","description":"Damage or healing done by your pet or summons now heals you equal to 15% of the value. In addition, damage or healing done by you now restores health and mana to your pet equal to 15% of the value. Each of these effects can only occur once per sec.","rankDescriptions":["Damage or healing done by your pet or summons now heals you equal to 15% of the value. In addition, damage or healing done by you now restores health and mana to your pet equal to 15% of the value. Each of these effects can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7402","treeId":"coa-tinker-74","index":7402,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/spell_nature_protectionformnature.png","maxRank":1,"name":"Emergency Circumvented","description":"Increases the critical strike chance of Emergency Heal by 15% and allows the periodic healing done by Med Pack to critically strike.","rankDescriptions":["Increases the critical strike chance of Emergency Heal by 15% and allows the periodic healing done by Med Pack to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9428","treeId":"coa-tinker-74","index":9428,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_nature_lightningshield.png","maxRank":1,"name":"Improved Graftbolts","description":"Level 50 Passive Effective healing done by Stim Augmentation now applies a shield to the target equal to 50% of the healing done. Up to 10% of their maximum health.","rankDescriptions":["Level 50 Passive Effective healing done by Stim Augmentation now applies a shield to the target equal to 50% of the healing done. Up to 10% of their maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-6977","treeId":"coa-tinker-74","index":6977,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/nhi_tech_robot_border.png","maxRank":1,"name":"Epiphany!","description":"Casting Beacon abilities now reduces the cooldown of My Greatest Invention! by -20 sec.","rankDescriptions":["Casting Beacon abilities now reduces the cooldown of My Greatest Invention! by -20 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5982","treeId":"coa-tinker-74","index":5982,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/nhi_lightning_soul_border.png","maxRank":1,"name":"Combat Symbiosis","description":"Electrify an allies' body, increasing their haste by 20% and causing damage dealt by them to heal nearby allies for 15% of the value. Lasts for 15 seconds, or 20 attacks.","rankDescriptions":["Electrify an allies' body, increasing their haste by 20% and causing damage dealt by them to heal nearby allies for 15% of the value. Lasts for 15 seconds, or 20 attacks."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6976","treeId":"coa-tinker-74","index":6976,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/spell_nature_purge.png","maxRank":1,"name":"Emergency Enhancer","description":"Zap! now causes your active Build abilities to zap the lowest health nearby ally, healing them for 990 + 90% healing.","rankDescriptions":["Zap! now causes your active Build abilities to zap the lowest health nearby ally, healing them for 990 + 90% healing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31199","treeId":"coa-tinker-75","index":31199,"prerequisiteId":"coa-entry-4051","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4051","requiredRank":1},{"talentId":"coa-entry-29203","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/custom_engineerskill_49_border.png","maxRank":1,"name":"Makeshift Dynamite","description":"2 Charges, 8 sec recharge Generates 10 Scrap Load dynamite into your gun and launch it at an enemy, dealing 100% Ranged Weapon Damage plus 12 as Fire damage. Usable while moving.","rankDescriptions":["2 Charges, 8 sec recharge Generates 10 Scrap Load dynamite into your gun and launch it at an enemy, dealing 100% Ranged Weapon Damage plus 12 as Fire damage. Usable while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4051","treeId":"coa-tinker-75","index":4051,"prerequisiteId":"coa-entry-29203","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29203","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_engineering_815_uberspanner.png","maxRank":1,"name":"Build: Mechsuit","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-7037","treeId":"coa-tinker-75","index":7037,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/ability_siege_engineer_superheated.png","maxRank":1,"name":"Mechsuit: Laser Beam","description":"Blast an enemy with a laser, dealing 100% Ranged Weapon Damage plus 18 as Fire Damage and forcing your pet to charge to the enemy for 24 Physical Damage.","rankDescriptions":["Blast an enemy with a laser, dealing 100% Ranged Weapon Damage plus 18 as Fire Damage and forcing your pet to charge to the enemy for 24 Physical Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29501","treeId":"coa-tinker-75","index":29501,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/inv_engineering_autohammer.png","maxRank":2,"name":"Slam the Cogs!","description":"Increases the damage dealt by you and your summons by 8%.","rankDescriptions":["Increases the damage dealt by you and your summons by 4%.","Increases the damage dealt by you and your summons by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30979","treeId":"coa-tinker-75","index":30979,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/inv_ascend_rpgloot_167.png","maxRank":1,"name":"Sprocket Loaded","description":"Casting Makeshift Dynamite now resets the cooldown of your Mechsuit abilities.","rankDescriptions":["Casting Makeshift Dynamite now resets the cooldown of your Mechsuit abilities."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6530","treeId":"coa-tinker-75","index":6530,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_eng_mechanicalboomerang.png","maxRank":2,"name":"Mechanical Synergy","description":"Increases the damage of Sticky Bomb Explosion and Mechsuit abilities by 30%.","rankDescriptions":["Increases the damage of Sticky Bomb Explosion and Mechsuit abilities by 15%.","Increases the damage of Sticky Bomb Explosion and Mechsuit abilities by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5970","treeId":"coa-tinker-75","index":5970,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/inv_misc_bomb_04.png","maxRank":1,"name":"Bombs? BOMBS!","description":"Increases the detonation speed of Sticky Bomb by -1 sec and reduces its cooldown by -2 sec.","rankDescriptions":["Increases the detonation speed of Sticky Bomb by -1 sec and reduces its cooldown by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2426","treeId":"coa-tinker-75","index":2426,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/5_engineerskill01_border.png","maxRank":1,"name":"Combat Crafter","description":"Level 20 Passive While in your Mechsuit, damage dealt by your summons now has a 20% chance to grant you 5 Scrap and 2% of your maximum mana.","rankDescriptions":["Level 20 Passive While in your Mechsuit, damage dealt by your summons now has a 20% chance to grant you 5 Scrap and 2% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-29500","treeId":"coa-tinker-75","index":29500,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/ability_siege_engineer_death_from_above.png","maxRank":1,"name":"Mechsuit: Combustion","description":"Launch a massive ball of fire at an enemy that also damages nearby enemies, dealing 70 + 20% ranged AP Fire damage. Usable while moving.","rankDescriptions":["Launch a massive ball of fire at an enemy that also damages nearby enemies, dealing 70 + 20% ranged AP Fire damage. Usable while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7878","treeId":"coa-tinker-75","index":7878,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/inv_misc_trinket6oog_handeye3.png","maxRank":1,"name":"Fine Tuned","description":"Increases the critical strike and hit chance of you and your summons by 4%.","rankDescriptions":["Increases the critical strike and hit chance of you and your summons by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5212","treeId":"coa-tinker-75","index":5212,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/5_engineerskill10_border.png","maxRank":1,"name":"Mechsuit: Activate Jets","description":"Launch forward and slow your falling speed. When you hit the ground you blast nearby enemies for 275 Fire damage based on time in the air.","rankDescriptions":["Launch forward and slow your falling speed. When you hit the ground you blast nearby enemies for 275 Fire damage based on time in the air."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5503","treeId":"coa-tinker-75","index":5503,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/spell_fire_firebolt.png","maxRank":1,"name":"Turbo Guns","description":"Reduces the cast time of your Mechsuit: Combustion by 0.25 sec and its damage is increased by 20%.","rankDescriptions":["Reduces the cast time of your Mechsuit: Combustion by 0.25 sec and its damage is increased by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29503","treeId":"coa-tinker-75","index":29503,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holybullet_border.png","maxRank":1,"name":"Flak Guns","description":"Your Mechsuit: Combustion now has 10% increased critical strike chance and 15% increased critical damage.","rankDescriptions":["Your Mechsuit: Combustion now has 10% increased critical strike chance and 15% increased critical damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5966","treeId":"coa-tinker-75","index":5966,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_mechagnome_powercell_broken.png","maxRank":1,"name":"Regeneration Enhancement","description":"When you enter your Mechsuit, it now refunds 20% of your base mana, repeating every 20 sec while inside.","rankDescriptions":["When you enter your Mechsuit, it now refunds 20% of your base mana, repeating every 20 sec while inside."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6491","treeId":"coa-tinker-75","index":6491,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/achievement_dungeon_blackwingdescent_darkironcouncil.png","maxRank":1,"name":"Junker","description":"Casting Spanner Smash and Scrap Shot now increases your pet's attack power by 5% for 15 seconds, stacking 2 times.","rankDescriptions":["Casting Spanner Smash and Scrap Shot now increases your pet's attack power by 5% for 15 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29206","treeId":"coa-tinker-75","index":29206,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/inv_goblinshredderrocketmount.png","maxRank":1,"name":"Build: Scrapmaw","description":"Build a Scrapmaw to accompany the Tinker until dismissed.","rankDescriptions":["Build a Scrapmaw to accompany the Tinker until dismissed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2427","treeId":"coa-tinker-75","index":2427,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_misc_enggizmos_20.png","maxRank":1,"name":"Battle Engineer","description":"Level 30 Passive Your ranged damage dealt now has a 20% chance to refresh a charge of Makeshift Dynamite.","rankDescriptions":["Level 30 Passive Your ranged damage dealt now has a 20% chance to refresh a charge of Makeshift Dynamite."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-6531","treeId":"coa-tinker-75","index":6531,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holybeam_border.png","maxRank":1,"name":"Overload","description":"Damage dealt by Mechsuit: Combustion and Mechsuit: Laser Beam now have a 40% chance to strike 2 additional times for 30% of the damage dealt.","rankDescriptions":["Damage dealt by Mechsuit: Combustion and Mechsuit: Laser Beam now have a 40% chance to strike 2 additional times for 30% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29761","treeId":"coa-tinker-75","index":29761,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/5_engineerskill32_border.png","maxRank":1,"name":"Scrapper","description":"Search and rummage through nearby debris, gaining 10 Scrap and 25 mana every 1 sec for 5 seconds. Not usable in combat.","rankDescriptions":["Search and rummage through nearby debris, gaining 10 Scrap and 25 mana every 1 sec for 5 seconds. Not usable in combat."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9980","treeId":"coa-tinker-75","index":9980,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/achievement_alliedrace_mechagnome.png","maxRank":1,"name":"Offensive Utility","description":"While in your Mechsuit, casting Sticky Bomb reduces the channel time of your next Gatling Gun within 5 seconds by -30%.","rankDescriptions":["While in your Mechsuit, casting Sticky Bomb reduces the channel time of your next Gatling Gun within 5 seconds by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30980","treeId":"coa-tinker-75","index":30980,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_plate_mechagnome_c_01shoulder.png","maxRank":1,"name":"Defensive Utility","description":"Your Mechsuit will now increase your armor by an additional 50%.","rankDescriptions":["Your Mechsuit will now increase your armor by an additional 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30399","treeId":"coa-tinker-75","index":30399,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_misc_desecrated_platechest.png","maxRank":1,"name":"Nano-Repair Tech","description":"You and your pet now regenerate 3% of your maximum health every 8 sec.","rankDescriptions":["You and your pet now regenerate 3% of your maximum health every 8 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7014","treeId":"coa-tinker-75","index":7014,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/nhi_tech_saw_border.png","maxRank":1,"name":"Augmechtation","description":"Your Mechsuit now increases your damage by an additional 10% while active.","rankDescriptions":["Your Mechsuit now increases your damage by an additional 10% while active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7015","treeId":"coa-tinker-75","index":7015,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_eng_superchargedengine.png","maxRank":1,"name":"Engine Augmentation","description":"For 8 seconds after activating your Mechsuit, all damage dealt will now generate 3 Scrap.","rankDescriptions":["For 8 seconds after activating your Mechsuit, all damage dealt will now generate 3 Scrap."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6504","treeId":"coa-tinker-75","index":6504,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_mechanicalhandpet.png","maxRank":1,"name":"Mechanical Extender","description":"Casting Scrap Shot and Mechsuit abilities now increases the chance to trigger Overload by 3% for 10 seconds, stacking 10 times. When Overload triggers, all stacks are consumed.","rankDescriptions":["Casting Scrap Shot and Mechsuit abilities now increases the chance to trigger Overload by 3% for 10 seconds, stacking 10 times. When Overload triggers, all stacks are consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29818","treeId":"coa-tinker-75","index":29818,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_shield_1h_mechagnome_c_01.png","maxRank":1,"name":"Mechanical Enhancements","description":"Increases all party and raid member's melee and ranged haste by 10%. Does not stack with similar effects. In addition, the range of your offensive ranged abilities and Auto Shot is increased by 10 yds.","rankDescriptions":["Increases all party and raid member's melee and ranged haste by 10%. Does not stack with similar effects. In addition, the range of your offensive ranged abilities and Auto Shot is increased by 10 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7395","treeId":"coa-tinker-75","index":7395,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/garrison_upgrade.png","maxRank":1,"name":"Upgrade!","description":"Upgrade nearby Sentry Turrets to a Molten Grenade Turret for 1 minute.Molten Grenade TurretUpgrades the Sentry Turret to fire grenades, increasing its attack speed significantly and causing it to deal 133 Fire Damage in an 8 yd radius, plus an additional 95 + 15% fire SP + 8.5% AP Fire Damage over 1.5 seconds.","rankDescriptions":["Upgrade nearby Sentry Turrets to a Molten Grenade Turret for 1 minute.Molten Grenade TurretUpgrades the Sentry Turret to fire grenades, increasing its attack speed significantly and causing it to deal 133 Fire Damage in an 8 yd radius, plus an additional 95 + 15% fire SP + 8.5% AP Fire Damage over 1.5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6908","treeId":"coa-tinker-75","index":6908,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/5_engineerskill50_border.png","maxRank":1,"name":"Master Builder","description":"Reduces the cast time of Build abilities by -50%.","rankDescriptions":["Reduces the cast time of Build abilities by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9503","treeId":"coa-tinker-75","index":9503,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/inv_gizmo_khoriumpowercore.png","maxRank":1,"name":"Arclight Core","description":"Makeshift Dynamite now marks enemies for 6 seconds. The next damaging ability used on this target by your pet consumes the mark to deal 491 + 20% fire SP + 20% ranged AP Fire damage.","rankDescriptions":["Makeshift Dynamite now marks enemies for 6 seconds. The next damaging ability used on this target by your pet consumes the mark to deal 491 + 20% fire SP + 20% ranged AP Fire damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-2428","treeId":"coa-tinker-75","index":2428,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/uico_mecha_spell_03_border.png","maxRank":1,"name":"Turbo Upgrade!","description":"Level 40 Passive Increases the effectiveness of your Mechsuit by 100%.","rankDescriptions":["Level 40 Passive Increases the effectiveness of your Mechsuit by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-29765","treeId":"coa-tinker-75","index":29765,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/inv_axe_1h_mechagnome_c_01.png","maxRank":1,"name":"Arclight Adept","description":"Increases the critical damage of your Mechsuit abilities by 15%.","rankDescriptions":["Increases the critical damage of your Mechsuit abilities by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5961","treeId":"coa-tinker-75","index":5961,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/_ldacogs.png","maxRank":1,"name":"Cogmaster","description":"Increases your critical strike chance by 2% and gives ranged critical strikes a 50% chance to generate 3 Scrap.","rankDescriptions":["Increases your critical strike chance by 2% and gives ranged critical strikes a 50% chance to generate 3 Scrap."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7013","treeId":"coa-tinker-75","index":7013,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_mechagon_junkyardtinkeringcrafting.png","maxRank":1,"name":"Junkyard Loiter","description":"When you deal damage with Mechsuit: Laser Beam or Mechsuit: Combustion you now launch a Lesser Sticky Bomb on each target struck.Lesser Sticky BombThrows a bomb that sticks to the enemy for 3 sec. At the end of the duration the bomb will explode, dealing 17 + 5% fire SP + 2.5% AP Fire Damage to the target.","rankDescriptions":["When you deal damage with Mechsuit: Laser Beam or Mechsuit: Combustion you now launch a Lesser Sticky Bomb on each target struck.Lesser Sticky BombThrows a bomb that sticks to the enemy for 3 sec. At the end of the duration the bomb will explode, dealing 17 + 5% fire SP + 2.5% AP Fire Damage to the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12532","treeId":"coa-tinker-75","index":12532,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/epic_rpg_icon_pack_frost_0000s_0000_figure_border.png","maxRank":1,"name":"Augmentor","description":"While Piercing Augmentation or Aether Augmentation is active, your ranged haste is increased by 10%.","rankDescriptions":["While Piercing Augmentation or Aether Augmentation is active, your ranged haste is increased by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-35000","treeId":"coa-tinker-75","index":35000,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/5_engineerskill17_border.png","maxRank":1,"name":"Hacking the Enemy","description":"Your Piercing Augmentation now ignores an additional 10% of your target's armor and grants you -10 increased spell penetration.","rankDescriptions":["Your Piercing Augmentation now ignores an additional 10% of your target's armor and grants you -10 increased spell penetration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9474","treeId":"coa-tinker-75","index":9474,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_robotpet.png","maxRank":1,"name":"Turret Upgrade Z-15","description":"Damage dealt by Sentry Turrets now has a 30% chance to cause 47 + 20% AP additional Nature damage and increase critical strike chance of the turret by 1%, stacking 5 times, for 8 seconds.","rankDescriptions":["Damage dealt by Sentry Turrets now has a 30% chance to cause 47 + 20% AP additional Nature damage and increase critical strike chance of the turret by 1%, stacking 5 times, for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7018","treeId":"coa-tinker-75","index":7018,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/ability_siege_engineer_purification_beam.png","maxRank":1,"name":"Flame Jets","description":"While inside your Mechsuit, damage dealt by your Scrap Shot and Makeshift Dynamite now applies Living Flame to the target.Living Flame (Damage)Deals 32 Fire Damage every 2 sec and increases the damage the target takes from your Mechsuit: Combustion by 10% for 4.5 seconds, stacking 5 times.","rankDescriptions":["While inside your Mechsuit, damage dealt by your Scrap Shot and Makeshift Dynamite now applies Living Flame to the target.Living Flame (Damage)Deals 32 Fire Damage every 2 sec and increases the damage the target takes from your Mechsuit: Combustion by 10% for 4.5 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7021","treeId":"coa-tinker-75","index":7021,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/nhi_arcanebeam_border.png","maxRank":1,"name":"Master Technician","description":"Scrap Shot and Mechsuit abilities now grants your Sentry Turret a stack of Master Technician, stacking 10 times. At 10 stacks, your Sentry Turret will unleash a beam dealing 725 + 75% fire SP + 40% AP Fire damage in a 25 yd line, piercing invulnerabilities.","rankDescriptions":["Scrap Shot and Mechsuit abilities now grants your Sentry Turret a stack of Master Technician, stacking 10 times. At 10 stacks, your Sentry Turret will unleash a beam dealing 725 + 75% fire SP + 40% AP Fire damage in a 25 yd line, piercing invulnerabilities."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7394","treeId":"coa-tinker-75","index":7394,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/nhi_tech_steammachine_border.png","maxRank":1,"name":"Overclocked Machine","description":"Overclock your pet for for 20 seconds, increasing its damage dealt by 20% and allowing it's attacks to trigger Hardwired Haymaker on the target enemy. Additionally, your pet will trigger Overclocked Smash every 5 sec.","rankDescriptions":["Overclock your pet for for 20 seconds, increasing its damage dealt by 20% and allowing it's attacks to trigger Hardwired Haymaker on the target enemy. Additionally, your pet will trigger Overclocked Smash every 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9828","treeId":"coa-tinker-75","index":9828,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_misc_gear_05.png","maxRank":1,"name":"Gear Grind","description":"Level 50 Passive Damage dealt by Scrap Shot now has a 30% chance to transform your next Makeshift Dynamite into Gear Grind for 8 seconds.Gear GrindToss gears at an enemy 4 times over 1.5 seconds, each dealing 239 + 16% ranged AP Nature damage and generating 1 Scrap. Increases the damage dealt by your summons by 10% for 8 seconds. Usable while moving. Scales with modifiers to Makeshift Dynamite.","rankDescriptions":["Level 50 Passive Damage dealt by Scrap Shot now has a 30% chance to transform your next Makeshift Dynamite into Gear Grind for 8 seconds.Gear GrindToss gears at an enemy 4 times over 1.5 seconds, each dealing 239 + 16% ranged AP Nature damage and generating 1 Scrap. Increases the damage dealt by your summons by 10% for 8 seconds. Usable while moving. Scales with modifiers to Makeshift Dynamite."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-31112","treeId":"coa-tinker-75","index":31112,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/inv_ammo_firetar.png","maxRank":1,"name":"Blazewrought Titan","description":"While inside your Mechsuit, all damage taken is reduced by -10% and dealing damage with Living Flame now grants a stack of Blazewrought Titan.Blazewrought TitanIncreases your magic penetration by -2 for 15 seconds, stacking 15 times. At 15 stacks, your damaging abilties become infused with fire dealing an additional 30% of the damage dealt instantly as Fire Damage and sundering your target and an additional nearby enemy. Blazewrought Sunder (Debuff)Increases your Fire and Nature Damage dealt to this target by 2% for 4 seconds, stacking 5 times.","rankDescriptions":["While inside your Mechsuit, all damage taken is reduced by -10% and dealing damage with Living Flame now grants a stack of Blazewrought Titan.Blazewrought TitanIncreases your magic penetration by -2 for 15 seconds, stacking 15 times. At 15 stacks, your damaging abilties become infused with fire dealing an additional 30% of the damage dealt instantly as Fire Damage and sundering your target and an additional nearby enemy. Blazewrought Sunder (Debuff)Increases your Fire and Nature Damage dealt to this target by 2% for 4 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5491","treeId":"coa-tinker-75","index":5491,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/5_engineerskill21_border.png","maxRank":1,"name":"Haywired State!","description":"Casting Mechsuit abilities now causes your pet to enter a haywired state for 6 seconds.Haywired State!Auto attacks now zap up to 10 nearby enemies for 159 + 35% AP Stormstrike Damage and damaged enemies take 20% increased damage from your summons.","rankDescriptions":["Casting Mechsuit abilities now causes your pet to enter a haywired state for 6 seconds.Haywired State!Auto attacks now zap up to 10 nearby enemies for 159 + 35% AP Stormstrike Damage and damaged enemies take 20% increased damage from your summons."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7396","treeId":"coa-tinker-75","index":7396,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_misc_head_clockworkgnome_01.png","maxRank":1,"name":"Clockwork Guardians","description":"Dealing ranged ability damage now gives you a 10% chance to instantly build 2 Clockwork Guardians to accompany you for 12 seconds that have a 50% chance to trigger Hardwired Haymaker for 12 seconds. Casting Well-Oiled Machine or Upgrade! instantly builds 2 Clockwork Guardians.Hardwired HaymakerUnleash a devastating haymaker that deals 50 + 15% ranged AP Fire Damage.","rankDescriptions":["Dealing ranged ability damage now gives you a 10% chance to instantly build 2 Clockwork Guardians to accompany you for 12 seconds that have a 50% chance to trigger Hardwired Haymaker for 12 seconds. Casting Well-Oiled Machine or Upgrade! instantly builds 2 Clockwork Guardians.Hardwired HaymakerUnleash a devastating haymaker that deals 50 + 15% ranged AP Fire Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31113","treeId":"coa-tinker-87","index":31113,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/inv_gizmo_rocketbootextreme.png","maxRank":1,"name":"Rocket Boots","description":"3 Charges, 30 sec recharge Activate your Rocket Boots, dispelling root effects and launching you forward.","rankDescriptions":["3 Charges, 30 sec recharge Activate your Rocket Boots, dispelling root effects and launching you forward."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29203","treeId":"coa-tinker-87","index":29203,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/little_bomb_bro.png","maxRank":1,"name":"Build: Destructo-Bot","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29813","treeId":"coa-tinker-87","index":29813,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/ability_shaman_repulsiontotem.png","maxRank":1,"name":"Nanobot Reconstruction","description":"Send Nanobots to an ally, healing them for 420 over 1 minute. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","rankDescriptions":["Send Nanobots to an ally, healing them for 420 over 1 minute. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5998","treeId":"coa-tinker-87","index":5998,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/custom_engineerskill_35_border.png","maxRank":2,"name":"Explosive Personality","description":"Increases your ranged attack power by 100% of your Intellect.","rankDescriptions":["Increases your ranged attack power by 50% of your Intellect.","Increases your ranged attack power by 100% of your Intellect."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6001","treeId":"coa-tinker-87","index":6001,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/inv_misc_ammo_gunpowder_02.png","maxRank":2,"name":"Refined Gunpowder","description":"Increases your haste and your damage dealt against Mechanical creatures by 6%.","rankDescriptions":["Increases your haste and your damage dealt against Mechanical creatures by 3%.","Increases your haste and your damage dealt against Mechanical creatures by 6%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6992","treeId":"coa-tinker-87","index":6992,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/spells/achievement_battleground_templeofkotmogu_02_orange.png","maxRank":1,"name":"Backup Fuel","description":"Falling below 35% health now refreshes all charges of Rocket Boots. Can occur only once every 3 min.","rankDescriptions":["Falling below 35% health now refreshes all charges of Rocket Boots. Can occur only once every 3 min."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5116","treeId":"coa-tinker-87","index":5116,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/t_roboticon.png","maxRank":1,"name":"Clockwork Ingenuity","description":"Increases the maximum health of your summons by 10%.","rankDescriptions":["Increases the maximum health of your summons by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6996","treeId":"coa-tinker-87","index":6996,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":3,"icon":"/assets/ui/spells/inv_misc_food_lunchbox_fel.png","maxRank":1,"name":"Hasty Tech","description":"Reduces the cast time of Scrap Shot and Repair Shot by -15%.","rankDescriptions":["Reduces the cast time of Scrap Shot and Repair Shot by -15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5999","treeId":"coa-tinker-87","index":5999,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/spell_deathknight_antimagiczone.png","maxRank":1,"name":"Macro-Gravity Zone","description":"Create a macro-gravity zone at target location for 8 seconds. Enemies within the zone have their movement speed slowed by -50% and gain 1 stack of Macro-Gravity every 1 sec.Macro-GravityAt 6 stacks, the affected enemy will be stunned for 6 seconds.","rankDescriptions":["Create a macro-gravity zone at target location for 8 seconds. Enemies within the zone have their movement speed slowed by -50% and gain 1 stack of Macro-Gravity every 1 sec.Macro-GravityAt 6 stacks, the affected enemy will be stunned for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6551","treeId":"coa-tinker-87","index":6551,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_engineering_leystone_buoy.png","maxRank":2,"name":"Flexible Thinking","description":"Increases Agility and Intellect by 6%.","rankDescriptions":["Increases Agility and Intellect by 4%.","Increases Agility and Intellect by 6%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8355","treeId":"coa-tinker-87","index":8355,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/inv_first_aid_70_medicalkit.png","maxRank":1,"name":"Med Pack","description":"Toss a med pack to an ally, healing for 204 + 120% SP over 6 seconds and cleanses all bleed, poison and disease effects.","rankDescriptions":["Toss a med pack to an ally, healing for 204 + 120% SP over 6 seconds and cleanses all bleed, poison and disease effects."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5974","treeId":"coa-tinker-87","index":5974,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/inv_eng_bombicestun.png","maxRank":1,"name":"Frozen Bomb Launcher","description":"Damage dealt by your Sentry Turrets will now slow enemy movement speed by -15% for 10 seconds, stacking 3 times.","rankDescriptions":["Damage dealt by your Sentry Turrets will now slow enemy movement speed by -15% for 10 seconds, stacking 3 times."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6998","treeId":"coa-tinker-87","index":6998,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_offhand_1h_artifactdoomhammer_d_04.png","maxRank":1,"name":"Maniacal","description":"Reduces the cooldown of Sticky Bomb and Deploy Blast Mine by -2 sec.","rankDescriptions":["Reduces the cooldown of Sticky Bomb and Deploy Blast Mine by -2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31235","treeId":"coa-tinker-87","index":31235,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/inv_bountyhunting.png","maxRank":1,"name":"Efficiency","description":"Reduces the mana cost of all spells and abilities by -10%.","rankDescriptions":["Reduces the mana cost of all spells and abilities by -10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5995","treeId":"coa-tinker-87","index":5995,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/custom_scroll_b_01_border.png","maxRank":1,"name":"Medical Degree","description":"Increases the cooldown of Med Pack by 30 sec, but allows it to affect up to 4 additional targets around your ally.","rankDescriptions":["Increases the cooldown of Med Pack by 30 sec, but allows it to affect up to 4 additional targets around your ally."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9995","treeId":"coa-tinker-87","index":9995,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/inv_firstaid_bandage2.png","maxRank":1,"name":"Enhanced Procedures","description":"Increases the duration of Med Pack by 100% and it's healing by 75%.","rankDescriptions":["Increases the duration of Med Pack by 100% and it's healing by 75%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4871","treeId":"coa-tinker-87","index":4871,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/ability_mage_brainfreeze.png","maxRank":1,"name":"Concussive Spanner","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5331","treeId":"coa-tinker-87","index":5331,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_monk_forcesphere.png","maxRank":1,"name":"Innate Brilliance","description":"While Aether Augmentation is active, every 4th Scrap Shot now grants you Innate Brilliance.Innate Brilliance (Buff)Your next Scrap Shot has 5 yds increased range, deals 15% increased damage, and drains 125 + 10% ranged AP of your target's mana. Lasts 10 seconds.","rankDescriptions":["While Aether Augmentation is active, every 4th Scrap Shot now grants you Innate Brilliance.Innate Brilliance (Buff)Your next Scrap Shot has 5 yds increased range, deals 15% increased damage, and drains 125 + 10% ranged AP of your target's mana. Lasts 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29201","treeId":"coa-tinker-87","index":29201,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/spell_holy_devotion.png","maxRank":1,"name":"Function Over Form","description":"Increases the effectiveness of Aether Augmentation by 50%.","rankDescriptions":["Increases the effectiveness of Aether Augmentation by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30869","treeId":"coa-tinker-87","index":30869,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/garrison_bluearmorupgrade.png","maxRank":1,"name":"Kinetic Shield","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7034","treeId":"coa-tinker-87","index":7034,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_misc_wartornscrap_plate.png","maxRank":1,"name":"Mechaplating","description":"Whenever your summons critically strike, reduce your and your pet's damage taken by -2% for 15 seconds, stacking 4 times.","rankDescriptions":["Whenever your summons critically strike, reduce your and your pet's damage taken by -2% for 15 seconds, stacking 4 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5103","treeId":"coa-tinker-87","index":5103,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/custom_engineerskill_21_border.png","maxRank":1,"name":"Modulator","description":"Increases the effectiveness of your Modules by 20%.","rankDescriptions":["Increases the effectiveness of your Modules by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9987","treeId":"coa-tinker-87","index":9987,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/repulsionunit.png","maxRank":1,"name":"Build: Repulsion Unit","description":"Build a Repulsion Unit that periodically knocks nearby enemies back every 5 sec for 20 seconds.","rankDescriptions":["Build a Repulsion Unit that periodically knocks nearby enemies back every 5 sec for 20 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6829","treeId":"coa-tinker-87","index":6829,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/nhi_tech_roboticcalm_border.png","maxRank":1,"name":"I'm The Creator Now","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4987","treeId":"coa-tinker-87","index":4987,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/inv_engineering_reavesmodule.png","maxRank":1,"name":"Cutting Edge Technology","description":"Increases the tick rate and healing done of Nanobot Reconstruction by 20%.","rankDescriptions":["Increases the tick rate and healing done of Nanobot Reconstruction by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34987","treeId":"coa-tinker-87","index":34987,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/5_engineerskill25_border.png","maxRank":1,"name":"Rocket Bombardment","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30583","treeId":"coa-tinker-87","index":30583,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_lightforgedmechsuit.png","maxRank":1,"name":"Build: Alarm Beacon","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8354","treeId":"coa-tinker-87","index":8354,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/nhi_tech_steamdetector_border.png","maxRank":1,"name":"Ventilation","description":"Direct magic damage taken now has a 50% chance to increase all magic resistances of allies within 8 yds of you by 15 for 6 seconds.","rankDescriptions":["Direct magic damage taken now has a 50% chance to increase all magic resistances of allies within 8 yds of you by 15 for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5195","treeId":"coa-tinker-87","index":5195,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_misc_enggizmos_01.png","maxRank":1,"name":"Mechanosoldier","description":"Increases the damage reduced by Kinetic Shield by -10% and its duration by 2 sec.","rankDescriptions":["Increases the damage reduced by Kinetic Shield by -10% and its duration by 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6890","treeId":"coa-tinker-87","index":6890,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_plate_mechagnome_c_01chest.png","maxRank":1,"name":"Mechanical Enhancements","description":"Reduces your damage taken from bleed effects by -10% and the duration of bleed effects on you by -20%.","rankDescriptions":["Reduces your damage taken from bleed effects by -10% and the duration of bleed effects on you by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29209","treeId":"coa-tinker-87","index":29209,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/inv_engineering_sonicenvironmentenhancer.png","maxRank":1,"name":"Bunker Operative","description":"Reduces the cooldown of Kinetic Shield, Discombobulate!, and Repulsion Unit by -20%.","rankDescriptions":["Reduces the cooldown of Kinetic Shield, Discombobulate!, and Repulsion Unit by -20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29440","treeId":"coa-tinker-87","index":29440,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_mount_gyrocoptor.png","maxRank":1,"name":"Air Strike","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29777","treeId":"coa-tinker-87","index":29777,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/uico_mecha_spell_02_border.png","maxRank":1,"name":"Scrapshielding","description":"Your critical strikes now grant you a shield that absorbs 177 + 15% AP + 60% SP damage.","rankDescriptions":["Your critical strikes now grant you a shield that absorbs 177 + 15% AP + 60% SP damage."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30839","treeId":"coa-tinker-87","index":30839,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/ability_garrosh_siege_engine.png","maxRank":1,"name":"Deathball","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5996","treeId":"coa-tinker-87","index":5996,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_mount_gyrocoptorelite.png","maxRank":1,"name":"Goblin Depravity","description":"Air Strike now drops Tear Gas, dealing 132 + 11% nature SP + 100% AP Nature damage every 2 sec for 12 seconds.","rankDescriptions":["Air Strike now drops Tear Gas, dealing 132 + 11% nature SP + 100% AP Nature damage every 2 sec for 12 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5997","treeId":"coa-tinker-87","index":5997,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_misc_enggizmos_15.png","maxRank":1,"name":"Auto Resuscitation Device","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/venomancer.json b/src/game/generated/talentUi/venomancer.json new file mode 100644 index 00000000..3d0a55b3 --- /dev/null +++ b/src/game/generated/talentUi/venomancer.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"venomancer","trees":[{"id":"coa-venomancer-92","classId":"venomancer","name":"Vizier","icon":"/assets/ui/spells/nhi_natureburn_border.png","background":"","description":"Vizier nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-venomancer-76","classId":"venomancer","name":"Venom","icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_naturewrath_border.png","background":"","description":"Venom nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-venomancer-77","classId":"venomancer","name":"Stalking","icon":"/assets/ui/spells/inv_spidermountc5.png","background":"","description":"Stalking nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-venomancer-78","classId":"venomancer","name":"Fortitude","icon":"/assets/ui/spells/achievment_boss_wellofeternity.png","background":"","description":"Fortitude nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-venomancer-87","classId":"venomancer","name":"Class","icon":"/assets/ui/spells/inv_pet_shalespider.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-30477","treeId":"coa-venomancer-76","index":30477,"prerequisiteId":"coa-entry-4052","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4052","requiredRank":1},{"talentId":"coa-entry-29607","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_naturewrath_border.png","maxRank":1,"name":"Wilt","description":"Wilt the life of an enemy with vile poison, dealing 144 Nature damage over 18 seconds.","rankDescriptions":["Wilt the life of an enemy with vile poison, dealing 144 Nature damage over 18 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4052","treeId":"coa-venomancer-76","index":4052,"prerequisiteId":"coa-entry-29607","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29607","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/_instableaffliction_green.png","maxRank":1,"name":"Rot Lich","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-30606","treeId":"coa-venomancer-76","index":30606,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/nhi_unholy_mushroom_border.png","maxRank":1,"name":"Spore","description":"Inject an enemy with parasitic spores, dealing 20 + 17.5% nature SP Shadow damage, plus an additional 231 over 21 seconds. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303 + 25% nature SP Nature damage to nearby enemies.","rankDescriptions":["Inject an enemy with parasitic spores, dealing 20 + 17.5% nature SP Shadow damage, plus an additional 231 over 21 seconds. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303 + 25% nature SP Nature damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7219","treeId":"coa-venomancer-76","index":7219,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_natureportal_border.png","maxRank":2,"name":"Protraction","description":"Increases the duration of your Venomancer periodic damage effects by 6 sec.","rankDescriptions":["Increases the duration of your Venomancer periodic damage effects by 3 sec.","Increases the duration of your Venomancer periodic damage effects by 6 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6137","treeId":"coa-venomancer-76","index":6137,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/inv_misc_starspecklemushroom.png","maxRank":1,"name":"Fungal Growth","description":"Shadow and Nature damage dealt now has a 35% chance to increase periodic damage you deal to the target by 2% for 30 seconds, stacking 10 times.","rankDescriptions":["Shadow and Nature damage dealt now has a 35% chance to increase periodic damage you deal to the target by 2% for 30 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6687","treeId":"coa-venomancer-76","index":6687,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_alchemy_90_reagent_green.png","maxRank":3,"name":"Acid Bolt","description":"Increases the damage of Venom Bolt by 30% and its critical strike chance by 6%.","rankDescriptions":["Increases the damage of Venom Bolt by 10% and its critical strike chance by 2%.","Increases the damage of Venom Bolt by 20% and its critical strike chance by 4%.","Increases the damage of Venom Bolt by 30% and its critical strike chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9897","treeId":"coa-venomancer-76","index":9897,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/5_venom_border.png","maxRank":1,"name":"Shadra's Gift","description":"Level 20 Passive Increases your spell damage by 25% of your Intellect and your haste rating by 20% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your spell damage by 25% of your Intellect and your haste rating by 20% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-9575","treeId":"coa-venomancer-76","index":9575,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/crest_druid.png","maxRank":1,"name":"Rotting Away","description":"Your Wilt now has a 15% chance when it deals damage to strike again as Shadow damage.","rankDescriptions":["Your Wilt now has a 15% chance when it deals damage to strike again as Shadow damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29575","treeId":"coa-venomancer-76","index":29575,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/spell_nature_naturetouchgrow.png","maxRank":1,"name":"Wilting Away","description":"Your Wilt now strikes an additional nearby enemy.","rankDescriptions":["Your Wilt now strikes an additional nearby enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30479","treeId":"coa-venomancer-76","index":30479,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_druid_wildmushroom.png","maxRank":1,"name":"Mycosis","description":"Fungus grows throughout the body of an enemy, dealing 153 + 65% nature SP Nature damage and applying a shield that absorbs the next 100 + 200% SP healing done to them for 8 seconds. Deals 20% increased damage for each stack of Fungal Growth on the target.","rankDescriptions":["Fungus grows throughout the body of an enemy, dealing 153 + 65% nature SP Nature damage and applying a shield that absorbs the next 100 + 200% SP healing done to them for 8 seconds. Deals 20% increased damage for each stack of Fungal Growth on the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6138","treeId":"coa-venomancer-76","index":6138,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/uico_venom_spell_01_border.png","maxRank":1,"name":"Envenom","description":"Reduces the cast time of Venom Bolt by -0.3 sec.","rankDescriptions":["Reduces the cast time of Venom Bolt by -0.3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7222","treeId":"coa-venomancer-76","index":7222,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/spell_shadow_plaguecloud.png","maxRank":1,"name":"Lethargy","description":"Damage dealt by your Wilt now applies Lethargy to affected enemies.Lethargy (Dummy)Reduces an enemy's chance to hit by -3% and increases their Nature Damage taken from you by 5% for 8 seconds. Dispelling this effect increases the dispeller's resource costs by 100% for 5 seconds.","rankDescriptions":["Damage dealt by your Wilt now applies Lethargy to affected enemies.Lethargy (Dummy)Reduces an enemy's chance to hit by -3% and increases their Nature Damage taken from you by 5% for 8 seconds. Dispelling this effect increases the dispeller's resource costs by 100% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29584","treeId":"coa-venomancer-76","index":29584,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/novart_magicspell_(89)_border.png","maxRank":1,"name":"Rotpriest","description":"Increases your spell critical damage by 100%.","rankDescriptions":["Increases your spell critical damage by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5215","treeId":"coa-venomancer-76","index":5215,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/nhi_natureseye_border.png","maxRank":1,"name":"Captivation","description":"Increases Mycosis's damage through Fungal Growth stacks by 5%.","rankDescriptions":["Increases Mycosis's damage through Fungal Growth stacks by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6646","treeId":"coa-venomancer-76","index":6646,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/5_sumsnakearmy_border.png","maxRank":2,"name":"Serpent's Embrace","description":"Increases the damage of Serpent's Fang and its spell power scaling by 30%.","rankDescriptions":["Increases the damage of Serpent's Fang and its spell power scaling by 15%.","Increases the damage of Serpent's Fang and its spell power scaling by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7724","treeId":"coa-venomancer-76","index":7724,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/druid_ability_wildmushroom_b.png","maxRank":1,"name":"Blightfang","description":"Casting Serpent's Fang now spawns a Mushroom below the target that will explode after 2 sec, dealing 303 + 12.5% SP Nature damage to nearby enemies.","rankDescriptions":["Casting Serpent's Fang now spawns a Mushroom below the target that will explode after 2 sec, dealing 303 + 12.5% SP Nature damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4295","treeId":"coa-venomancer-76","index":4295,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/weaverform.png","maxRank":1,"name":"Weaver Form","description":"Level 30 Passive Teaches you Weaver Form.Weaver Form (Shapeshift)Shapeshift into Weaver Form, allowing your periodic effects to benefit from spell haste, reducing spell pushback suffered from damaging attacks by 70%, and giving periodic damage dealt a 5% chance to restore 5% of your missing mana. Cannot use healing spells while in Weaver Form.","rankDescriptions":["Level 30 Passive Teaches you Weaver Form.Weaver Form (Shapeshift)Shapeshift into Weaver Form, allowing your periodic effects to benefit from spell haste, reducing spell pushback suffered from damaging attacks by 70%, and giving periodic damage dealt a 5% chance to restore 5% of your missing mana. Cannot use healing spells while in Weaver Form."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7726","treeId":"coa-venomancer-76","index":7726,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/nhi_natureritual_border.png","maxRank":1,"name":"Decay","description":"Apply Wilt and Spore to up to 5 enemies at target location and drop a Mushroom that will explode after 2 sec, dealing 303 + 25% nature SP Nature damage to nearby enemies.","rankDescriptions":["Apply Wilt and Spore to up to 5 enemies at target location and drop a Mushroom that will explode after 2 sec, dealing 303 + 25% nature SP Nature damage to nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6143","treeId":"coa-venomancer-76","index":6143,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/_sacrificialdagger_unholy.png","maxRank":1,"name":"Necessary Preparations","description":"Increases the damage of Wilt by 20% and it now increases the chance to hit the target with spells by 3% for 20 seconds.","rankDescriptions":["Increases the damage of Wilt by 20% and it now increases the chance to hit the target with spells by 3% for 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6685","treeId":"coa-venomancer-76","index":6685,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/nhi_natureroots_border.png","maxRank":1,"name":"Sepsis Bloom","description":"Create pustules that swell and then burst, disorienting a target enemy for 6 seconds. All of your Venomancer poison effects are purged from the target, dealing damage equal to their remaining duration at the end of the duration.","rankDescriptions":["Create pustules that swell and then burst, disorienting a target enemy for 6 seconds. All of your Venomancer poison effects are purged from the target, dealing damage equal to their remaining duration at the end of the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6130","treeId":"coa-venomancer-76","index":6130,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/inv_snake_yellowblack.png","maxRank":1,"name":"A Pit of Snakes","description":"Serpent's Fang now increases the damage of subsequent Serpent's Fangs by 15% for 8 seconds, stacking up to 3 times.","rankDescriptions":["Serpent's Fang now increases the damage of subsequent Serpent's Fangs by 15% for 8 seconds, stacking up to 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7210","treeId":"coa-venomancer-76","index":7210,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_fungarian_blue.png","maxRank":1,"name":"Fungal Assailant","description":"Summon a Fungarian to attack an enemy, dealing 226 + 65% SP Nature damage, and instantly apply Debilitating Venom to your target. Lasts 20 seconds.Debilitating Venom (Slow)Movement speed slowed by -40% for 8 seconds. Can be used in any form.","rankDescriptions":["Summon a Fungarian to attack an enemy, dealing 226 + 65% SP Nature damage, and instantly apply Debilitating Venom to your target. Lasts 20 seconds.Debilitating Venom (Slow)Movement speed slowed by -40% for 8 seconds. Can be used in any form."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30483","treeId":"coa-venomancer-76","index":30483,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/uico_venom_spell_04_border.png","maxRank":1,"name":"Limb Decayer","description":"Reduces the cast time and increases the mana cost of Decay by 50%.","rankDescriptions":["Reduces the cast time and increases the mana cost of Decay by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6552","treeId":"coa-venomancer-76","index":6552,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/ability_rogue_deviouspoisons.png","maxRank":1,"name":"Septic Trauma","description":"Harmful critical strikes now increase the duration of Wilt by 2 sec.","rankDescriptions":["Harmful critical strikes now increase the duration of Wilt by 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6131","treeId":"coa-venomancer-76","index":6131,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_nature_corrosivebreath.png","maxRank":1,"name":"Venom Saturation","description":"Increases the damage of your poison effects by 25% against enemies above 50% health.","rankDescriptions":["Increases the damage of your poison effects by 25% against enemies above 50% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6842","treeId":"coa-venomancer-76","index":6842,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/inv_misc_herb_evergreenmoss.png","maxRank":1,"name":"Infestation","description":"Periodic damage dealt now has a 10% chance to reduce the cooldown of Serpent's Fang and Fungal Assailant by 20% of the remaining cooldown.","rankDescriptions":["Periodic damage dealt now has a 10% chance to reduce the cooldown of Serpent's Fang and Fungal Assailant by 20% of the remaining cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7727","treeId":"coa-venomancer-76","index":7727,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/spell_nature_poisoncleansingtotem.png","maxRank":1,"name":"Venoxis Rage","description":"Your Mycosis now enrages your Fungarians for 6 seconds, increasing its damage and attack speed by 30% for 6 seconds.","rankDescriptions":["Your Mycosis now enrages your Fungarians for 6 seconds, increasing its damage and attack speed by 30% for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7215","treeId":"coa-venomancer-76","index":7215,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/nhi_poisonbottle_border.png","maxRank":1,"name":"Intoxicating Venoms","description":"Level 40 Passive Mycosis is now enhanced based on your currently active Venom. Debilitating Venom: Reduces the cast time by -20%. Blight Venom: Extends the duration of Spore on the target by 4 sec. Adrenal Venom: Strikes 1 additional nearby target.","rankDescriptions":["Level 40 Passive Mycosis is now enhanced based on your currently active Venom. Debilitating Venom: Reduces the cast time by -20%. Blight Venom: Extends the duration of Spore on the target by 4 sec. Adrenal Venom: Strikes 1 additional nearby target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-5575","treeId":"coa-venomancer-76","index":5575,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/nhi_natureempower_(2)_border.png","maxRank":1,"name":"From Death Comes Life","description":"Damage dealt by Spore now reduces the cooldown of Decay by -1 sec.","rankDescriptions":["Damage dealt by Spore now reduces the cooldown of Decay by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7123","treeId":"coa-venomancer-76","index":7123,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/inv_ascend_mushrooms_18.png","maxRank":1,"name":"Fungal Link","description":"Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, the range of your Rot spells is increased by 20% and the threat they generate is reduced by -20%.","rankDescriptions":["Increases the spell haste of all party and raid members by 3%. Does not stack with similar effects. In addition, the range of your Rot spells is increased by 20% and the threat they generate is reduced by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6605","treeId":"coa-venomancer-76","index":6605,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/inv_ascend_mushroom_02.png","maxRank":1,"name":"Sporelord","description":"Fungal Assailant now spawns 3 Mushrooms below the target.Mushroom (dmg)Drop a Mushroom near the target that explodes after 2 sec, dealing 303 + 35% SP Plague Damage to all nearby enemies.","rankDescriptions":["Fungal Assailant now spawns 3 Mushrooms below the target.Mushroom (dmg)Drop a Mushroom near the target that explodes after 2 sec, dealing 303 + 35% SP Plague Damage to all nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7728","treeId":"coa-venomancer-76","index":7728,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/spell_druid_wildmushroom_bloom.png","maxRank":1,"name":"Fungic","description":"You now apply Fungic to enemies affected by Lethargy, dealing an additional 20% of the damage dealt by your Venom Bolt or Serpent's Fang as Nature damage over 3 seconds, stacking up to 2 times.","rankDescriptions":["You now apply Fungic to enemies affected by Lethargy, dealing an additional 20% of the damage dealt by your Venom Bolt or Serpent's Fang as Nature damage over 3 seconds, stacking up to 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6142","treeId":"coa-venomancer-76","index":6142,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/spells/achievement_dungeon_azjollowercity_heroic.png","maxRank":1,"name":"Prophetic Speaker","description":"Each time you spawn a Mushroom, you now reduce the cooldown of Decay by -1 sec.","rankDescriptions":["Each time you spawn a Mushroom, you now reduce the cooldown of Decay by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7731","treeId":"coa-venomancer-76","index":7731,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":9,"icon":"/assets/ui/spells/nhi_natureweb_border.png","maxRank":1,"name":"Suffocating Coils","description":"Periodic damage now has a 5% chance to cause you to launch webs at your target, wrapping them in a Suffocating Coil.Suffocating CoilLaunch a beam of webbing at an enemy, inflicting 91 + 12% nature SP Nature damage every 1 sec for 4 seconds. After 4 seconds, if Spore is active on the target, drop a Mushroom below them that will explode after 2 sec, dealing 303 + 12.5% nature SP Nature damage to all enemies within 5 yds.","rankDescriptions":["Periodic damage now has a 5% chance to cause you to launch webs at your target, wrapping them in a Suffocating Coil.Suffocating CoilLaunch a beam of webbing at an enemy, inflicting 91 + 12% nature SP Nature damage every 1 sec for 4 seconds. After 4 seconds, if Spore is active on the target, drop a Mushroom below them that will explode after 2 sec, dealing 303 + 12.5% nature SP Nature damage to all enemies within 5 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30481","treeId":"coa-venomancer-76","index":30481,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/inv_60pvp_ring3c.png","maxRank":1,"name":"Serpent Lord's Ring","description":"Draw power from the Serpent Lord's Ring instantly regenerating 20% of your maximum mana and causing your Mycosiss to trigger no cooldown and be free of cost for 15 seconds.","rankDescriptions":["Draw power from the Serpent Lord's Ring instantly regenerating 20% of your maximum mana and causing your Mycosiss to trigger no cooldown and be free of cost for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11215","treeId":"coa-venomancer-76","index":11215,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_shadow_deathanddecay.png","maxRank":1,"name":"Cycle of Decay","description":"Level 50 Passive When you cast any spell you now have a 20% chance to gain Cycle of Decay.Cycle of Decay (Proc)Your Venom Bolt is now castable while moving and casts -30% faster for 6 seconds.","rankDescriptions":["Level 50 Passive When you cast any spell you now have a 20% chance to gain Cycle of Decay.Cycle of Decay (Proc)Your Venom Bolt is now castable while moving and casts -30% faster for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7221","treeId":"coa-venomancer-76","index":7221,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/inv_ascend_mushrooms_02.png","maxRank":1,"name":"Mycelial Ring","description":"Create an 8 yd ring beneath you for 10 seconds that deals 59 Nature damage every 1 sec to enemies inside and immediately grows 12 Mushrooms in a circle around you. At the end of the duration, up to 15 allies inside are healed for 845 + 65% nature SP. Can be used in any form.","rankDescriptions":["Create an 8 yd ring beneath you for 10 seconds that deals 59 Nature damage every 1 sec to enemies inside and immediately grows 12 Mushrooms in a circle around you. At the end of the duration, up to 15 allies inside are healed for 845 + 65% nature SP. Can be used in any form."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7730","treeId":"coa-venomancer-76","index":7730,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/custom_t_natureswrath_border.png","maxRank":1,"name":"From Life Comes Death","description":"For 30 seconds, when you kill an enemy that yields experience or honor they now spawn a Mushroom beneath them. Can only occur once per sec.Mushroom (dmg)Drop a Mushroom near the target that explodes after 2 sec, dealing 303 + 35% SP Plague Damage to all nearby enemies.","rankDescriptions":["For 30 seconds, when you kill an enemy that yields experience or honor they now spawn a Mushroom beneath them. Can only occur once per sec.Mushroom (dmg)Drop a Mushroom near the target that explodes after 2 sec, dealing 303 + 35% SP Plague Damage to all nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7225","treeId":"coa-venomancer-76","index":7225,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/epic_rpg_icon_pack_poison_icon_0003s_0000_cloud_border.png","maxRank":1,"name":"Fungal Allies","description":"Fungal Assailant now summons 2 additional Fungarians.","rankDescriptions":["Fungal Assailant now summons 2 additional Fungarians."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12201","treeId":"coa-venomancer-77","index":12201,"prerequisiteId":"coa-entry-7229","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-7229","requiredRank":1},{"talentId":"coa-entry-4053","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/inv_spidermountc5.png","maxRank":1,"name":"Widowmaker","description":"Requires Spider Form Consumes Brood Marks Inject shadow venom into an enemy, dealing Shadow damage and reducing their healing received by 50% for 8 seconds. 1 Mark: 55 + 56.25% shadow SP Shadow damage. 2 Marks: 70 + 72% shadow SP Shadow damage. 3 Marks: 90 + 92.25% shadow SP Shadow damage. 4 Marks: 114 + 117% shadow SP Shadow damage. 5 Marks: 154 + 157.5% shadow SP Shadow damage.","rankDescriptions":["Requires Spider Form Consumes Brood Marks Inject shadow venom into an enemy, dealing Shadow damage and reducing their healing received by 50% for 8 seconds. 1 Mark: 55 + 56.25% shadow SP Shadow damage. 2 Marks: 70 + 72% shadow SP Shadow damage. 3 Marks: 90 + 92.25% shadow SP Shadow damage. 4 Marks: 114 + 117% shadow SP Shadow damage. 5 Marks: 154 + 157.5% shadow SP Shadow damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4053","treeId":"coa-venomancer-77","index":4053,"prerequisiteId":"coa-entry-7229","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-7229","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/_d3corpsespiders.png","maxRank":1,"name":"Brood Marks","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-31201","treeId":"coa-venomancer-77","index":31201,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/achievement_boss_maexxna.png","maxRank":1,"name":"Widow's Kiss","description":"Every 3rd Venom Fang becomes Widow's Kiss, dealing increased damage and granting you increased haste.Widow's Kiss (Transform)Applies 1 Brood Mark Bite an enemy for 91 + 50% shadow SP + 30% AP Shadow damage, increasing your haste by 20% for 4 seconds. Scales with modifiers to Venom Fang.","rankDescriptions":["Every 3rd Venom Fang becomes Widow's Kiss, dealing increased damage and granting you increased haste.Widow's Kiss (Transform)Applies 1 Brood Mark Bite an enemy for 91 + 50% shadow SP + 30% AP Shadow damage, increasing your haste by 20% for 4 seconds. Scales with modifiers to Venom Fang."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7152","treeId":"coa-venomancer-77","index":7152,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/ability_creature_disease_03.png","maxRank":1,"name":"Withering Venom","description":"Inject an enemy with a devastating venom, dealing 16 + 20% nature SP Nature damage every 3 sec for 21 seconds. Damage dealt increases over time.","rankDescriptions":["Inject an enemy with a devastating venom, dealing 16 + 20% nature SP Nature damage every 3 sec for 21 seconds. Damage dealt increases over time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29580","treeId":"coa-venomancer-77","index":29580,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_misc_head_nerubian_01.png","maxRank":1,"name":"Nerubian Sting","description":"Applies 1 Brood Mark Sting an enemy, dealing 26 + 25% shadow SP Shadow damage and an additional 20 + 50% shadow SP over 15 seconds, stacking up to 3 times.","rankDescriptions":["Applies 1 Brood Mark Sting an enemy, dealing 26 + 25% shadow SP Shadow damage and an additional 20 + 50% shadow SP over 15 seconds, stacking up to 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9285","treeId":"coa-venomancer-77","index":9285,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/epic_rpg_icon_pack_poison_icon_0001s_0000_spider_border.png","maxRank":1,"name":"Prowler","description":"Level 20 Passive Increases your spell damage by 25% of your Intellect and your hit rating by 3% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your spell damage by 25% of your Intellect and your hit rating by 3% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-30471","treeId":"coa-venomancer-77","index":30471,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/_soulfire_shadow.png","maxRank":1,"name":"Vile Fangs","description":"Periodic damage dealt now has a 10% chance to generate a Brood Mark.","rankDescriptions":["Periodic damage dealt now has a 10% chance to generate a Brood Mark."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30974","treeId":"coa-venomancer-77","index":30974,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/novart_passivemastery_(23)_border.png","maxRank":2,"name":"Venomagus","description":"Increases the damage of Blight Venom by 40%.","rankDescriptions":["Increases the damage of Blight Venom by 20%.","Increases the damage of Blight Venom by 40%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30863","treeId":"coa-venomancer-77","index":30863,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/epic_rpg_icon_pack_poison_icon_0005s_0000_fire_border.png","maxRank":1,"name":"Virulent Resonance","description":"Increases the effectiveness of Brood Marks by 10% and your hit chance by 5%.","rankDescriptions":["Increases the effectiveness of Brood Marks by 10% and your hit chance by 5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6078","treeId":"coa-venomancer-77","index":6078,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/inv_tarantula2_green.png","maxRank":2,"name":"Boding Dread","description":"Increases your Shadow damage dealt and your critical strike chance with Shadow spells by 6%.","rankDescriptions":["Increases your Shadow damage dealt and your critical strike chance with Shadow spells by 3%.","Increases your Shadow damage dealt and your critical strike chance with Shadow spells by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30794","treeId":"coa-venomancer-77","index":30794,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/5_sumspiders_border.png","maxRank":1,"name":"Glory To Shadra!","description":"Increases the critical strike chance of Venom Fang and Nerubian Sting by 10%.","rankDescriptions":["Increases the critical strike chance of Venom Fang and Nerubian Sting by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13472","treeId":"coa-venomancer-77","index":13472,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/_skullcurse2_acidice.png","maxRank":1,"name":"Corrosive Toxin","description":"Withering Venom now deals an additional 1 + 72.5% shadow SP Shadow damage at the end of its duration.","rankDescriptions":["Withering Venom now deals an additional 1 + 72.5% shadow SP Shadow damage at the end of its duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30472","treeId":"coa-venomancer-77","index":30472,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/spell_shadow_demoniccirclesummon.png","maxRank":1,"name":"Withered","description":"Increases the spell power scaling of Withering Venom by 15%.","rankDescriptions":["Increases the spell power scaling of Withering Venom by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7263","treeId":"coa-venomancer-77","index":7263,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_knife_1h_artifactfangs_d_02dual.png","maxRank":1,"name":"Potency","description":"Increases the damage dealt by Venom Fang by 15% and causes it to increase the target's chance to be critically struck by spells by 3% for 15 seconds.","rankDescriptions":["Increases the damage dealt by Venom Fang by 15% and causes it to increase the target's chance to be critically struck by spells by 3% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4394","treeId":"coa-venomancer-77","index":4394,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/spell_nature_corrosivebreath.png","maxRank":1,"name":"Essence of Decay","description":"Critical strikes with Widow's Kiss now apply 1 additional Brood Mark.","rankDescriptions":["Critical strikes with Widow's Kiss now apply 1 additional Brood Mark."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30975","treeId":"coa-venomancer-77","index":30975,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/spell_volatilefiregreen.png","maxRank":1,"name":"Rotfang","description":"Requires Spider Form Consumes Brood Marks Inject venom into an enemy that rots them from the inside out, dealing Plague damage over 24 seconds. 1 Mark: 240 + 220% SP Plague damage. 2 Marks: 307 + 281.6% SP Plague damage. 3 Marks: 394 + 360.8% SP Plague damage. 4 Marks: 499 + 457.6% SP Plague damage. 5 Marks: 672 + 616% SP Plague damage. Damage dealt pierces resistances.","rankDescriptions":["Requires Spider Form Consumes Brood Marks Inject venom into an enemy that rots them from the inside out, dealing Plague damage over 24 seconds. 1 Mark: 240 + 220% SP Plague damage. 2 Marks: 307 + 281.6% SP Plague damage. 3 Marks: 394 + 360.8% SP Plague damage. 4 Marks: 499 + 457.6% SP Plague damage. 5 Marks: 672 + 616% SP Plague damage. Damage dealt pierces resistances."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7150","treeId":"coa-venomancer-77","index":7150,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_misc_herb_fellotus.png","maxRank":1,"name":"Acidfang","description":"Level 30 Passive Periodic damage dealt now has a 40% chance, and critical strikes a 100% chance, to grant a stack of Acidfang.AcidfangThe next Rotfang, Withering Venom, or Facemelter within 15 seconds has -1% reduced duration and ticks -2% faster, stacking 10 times.","rankDescriptions":["Level 30 Passive Periodic damage dealt now has a 40% chance, and critical strikes a 100% chance, to grant a stack of Acidfang.AcidfangThe next Rotfang, Withering Venom, or Facemelter within 15 seconds has -1% reduced duration and ticks -2% faster, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-30464","treeId":"coa-venomancer-77","index":30464,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/spell_deathvortex.png","maxRank":1,"name":"Facemelter","description":"Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over 15 seconds. 1 Mark: 88 + 93.75% nature SP Nature damage. 2 Marks: 112 + 120% nature SP Nature damage. 3 Marks: 144 + 153.75% nature SP Nature damage. 4 Marks: 182 + 195% nature SP Nature damage. 5 Marks: 245 + 262.5% nature SP Nature damage.","rankDescriptions":["Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over 15 seconds. 1 Mark: 88 + 93.75% nature SP Nature damage. 2 Marks: 112 + 120% nature SP Nature damage. 3 Marks: 144 + 153.75% nature SP Nature damage. 4 Marks: 182 + 195% nature SP Nature damage. 5 Marks: 245 + 262.5% nature SP Nature damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30473","treeId":"coa-venomancer-77","index":30473,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_creature_poison_01.png","maxRank":1,"name":"Death Spray","description":"Periodic damage dealt now has a 5% chance to remove the Energy cost from your next Venom Fang or Widow's Kiss within 8 seconds and increase its damage by 20%. Can occur only once every 2 sec.","rankDescriptions":["Periodic damage dealt now has a 5% chance to remove the Energy cost from your next Venom Fang or Widow's Kiss within 8 seconds and increase its damage by 20%. Can occur only once every 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29577","treeId":"coa-venomancer-77","index":29577,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/achievement_battleground_templeofkotmogu_02_green.png","maxRank":1,"name":"Noxious Empowerment","description":"Enrage for 12 seconds, increasing your chance to trigger Venoms by 50%, your Energy regeneration by 100%, and increasing your damage dealt by 20% for 12 seconds.","rankDescriptions":["Enrage for 12 seconds, increasing your chance to trigger Venoms by 50%, your Energy regeneration by 100%, and increasing your damage dealt by 20% for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6144","treeId":"coa-venomancer-77","index":6144,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_misc_monsterfang_02.png","maxRank":1,"name":"Blistering Fangs","description":"Casting spells that consume Brood Marks now refunds 30 Energy when used with at least 5 Brood Marks on your target.","rankDescriptions":["Casting spells that consume Brood Marks now refunds 30 Energy when used with at least 5 Brood Marks on your target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6148","treeId":"coa-venomancer-77","index":6148,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/ability_creature_poison_06.png","maxRank":1,"name":"Rotting Sores","description":"Increases the tick rate of Rotfang by -20% and allows its periodic damage dealt to critically strike.","rankDescriptions":["Increases the tick rate of Rotfang by -20% and allows its periodic damage dealt to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6342","treeId":"coa-venomancer-77","index":6342,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/custom_t_healingswirl_border.png","maxRank":1,"name":"Shadra's Seance","description":"Facemelter now ticks -20% faster and the duration is increased by 6 sec.","rankDescriptions":["Facemelter now ticks -20% faster and the duration is increased by 6 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7192","treeId":"coa-venomancer-77","index":7192,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/achievement_dungeon_plaguefall_dominavenomblade.png","maxRank":1,"name":"Virulent Opening","description":"Increases the periodic damage dealt by your Facemelter and Rotfang by 30% while the enemy is above 75% health.","rankDescriptions":["Increases the periodic damage dealt by your Facemelter and Rotfang by 30% while the enemy is above 75% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7204","treeId":"coa-venomancer-77","index":7204,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_shadow_deathsembrace.png","maxRank":1,"name":"Black Widow","description":"Damage dealt to enemies below 35% health now reduces the cooldown of Noxious Empowerment by -2 sec. In addition, your Widowmaker now deals 20% increased damage to enemies below 35% health.","rankDescriptions":["Damage dealt to enemies below 35% health now reduces the cooldown of Noxious Empowerment by -2 sec. In addition, your Widowmaker now deals 20% increased damage to enemies below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11804","treeId":"coa-venomancer-77","index":11804,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_nature_nullifypoison.png","maxRank":1,"name":"Caustic","description":"Reduces the cooldown of Noxious Empowerment by -60 sec.","rankDescriptions":["Reduces the cooldown of Noxious Empowerment by -60 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29582","treeId":"coa-venomancer-77","index":29582,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/5_fishbite_border.png","maxRank":1,"name":"Deadly Kiss","description":"Increases critical damage dealt by Widow's Kiss, Widowmaker and Venom Fang by 50% against Poisoned targets.","rankDescriptions":["Increases critical damage dealt by Widow's Kiss, Widowmaker and Venom Fang by 50% against Poisoned targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6341","treeId":"coa-venomancer-77","index":6341,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/nhi_poisonbottle_border.png","maxRank":1,"name":"Lethality","description":"Increases the critical strike chance of Widow's Kiss on Diseased targets by 30%.","rankDescriptions":["Increases the critical strike chance of Widow's Kiss on Diseased targets by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9325","treeId":"coa-venomancer-77","index":9325,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/ability_rogue_dualweild.png","maxRank":1,"name":"Vulnerability","description":"Level 40 Passive While Blight Venom is active, your auto attacks now have a 10% chance to apply it. In addition, your offensive critical strikes now increase the target's spell damage taken by 10% for 15 seconds.","rankDescriptions":["Level 40 Passive While Blight Venom is active, your auto attacks now have a 10% chance to apply it. In addition, your offensive critical strikes now increase the target's spell damage taken by 10% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-29586","treeId":"coa-venomancer-77","index":29586,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/ability_creature_poison_03.png","maxRank":1,"name":"Corrosive Bile","description":"After using Facemelter, your next Widowmaker within 15 seconds now deals 20% increased damage and strikes 2 additional nearby enemies.","rankDescriptions":["After using Facemelter, your next Widowmaker within 15 seconds now deals 20% increased damage and strikes 2 additional nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7190","treeId":"coa-venomancer-77","index":7190,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/nhi_poisonwhirl_border.png","maxRank":1,"name":"Contagion","description":"For 15 seconds, all periodic damage dealt now has a 30% chance to burst dealing 92 + 20% shadow SP Shadow damage to 8 enemies within 8 yds.","rankDescriptions":["For 15 seconds, all periodic damage dealt now has a 30% chance to burst dealing 92 + 20% shadow SP Shadow damage to 8 enemies within 8 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7191","treeId":"coa-venomancer-77","index":7191,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/nhi_poisonblister_border.png","maxRank":1,"name":"Bile Eruption","description":"Triggering a Venom now has a 25% chance to generate you 5 Energy.","rankDescriptions":["Triggering a Venom now has a 25% chance to generate you 5 Energy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6146","treeId":"coa-venomancer-77","index":6146,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/custom_55_bug_border.png","maxRank":1,"name":"Tunneler","description":"Your Spindlebind now has 2 charges, a 25 sec cooldown, and deals increased damage.Spindlebind (Tunneler)2 Charges, 25 sec recharge Emit webs at all enemies behind you, rooting them for 4 seconds and inflicting 159 + 65% nature SP Nature damage.","rankDescriptions":["Your Spindlebind now has 2 charges, a 25 sec cooldown, and deals increased damage.Spindlebind (Tunneler)2 Charges, 25 sec recharge Emit webs at all enemies behind you, rooting them for 4 seconds and inflicting 159 + 65% nature SP Nature damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6080","treeId":"coa-venomancer-77","index":6080,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/nhi_naturevision_border.png","maxRank":1,"name":"Bugging","description":"While in Skulk, and for 4 seconds after leaving it, you deal 30% increased damage.","rankDescriptions":["While in Skulk, and for 4 seconds after leaving it, you deal 30% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6147","treeId":"coa-venomancer-77","index":6147,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/5_archerskill37_border.png","maxRank":1,"name":"Nature Against Nature","description":"Each stack of Nerubian Sting now increases the damage dealt to the target by your Widowmaker and Venom Fang by 8%.","rankDescriptions":["Each stack of Nerubian Sting now increases the damage dealt to the target by your Widowmaker and Venom Fang by 8%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7189","treeId":"coa-venomancer-77","index":7189,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/ability_poisons.png","maxRank":1,"name":"Venomous Bite","description":"Increases the amount of times Brood Marks can stack by 2.","rankDescriptions":["Increases the amount of times Brood Marks can stack by 2."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7264","treeId":"coa-venomancer-77","index":7264,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_rogue_deviouspoisons.png","maxRank":1,"name":"One Man's Poison...","description":"Casting spells that consume Brood Marks now has a -25% chance to refund their Brood Mark cost.","rankDescriptions":["Casting spells that consume Brood Marks now has a -25% chance to refund their Brood Mark cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30469","treeId":"coa-venomancer-77","index":30469,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_creature_poison_06.png","maxRank":1,"name":"Deadly Neurotoxins","description":"Critical strikes with Venom Fang and Nerubian Sting now deals an additional 25% of their direct damage instantly as Nature damage. Damage dealt in this way has a 40% chance to extend the duration of Rotfang by 1 sec.","rankDescriptions":["Critical strikes with Venom Fang and Nerubian Sting now deals an additional 25% of their direct damage instantly as Nature damage. Damage dealt in this way has a 40% chance to extend the duration of Rotfang by 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9324","treeId":"coa-venomancer-77","index":9324,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_viciousalliancespider.png","maxRank":1,"name":"Widow's Fang","description":"Level 50 Passive Your Venom Fang now costs -20% less Energy when while Widow's Kiss is active. Reduces the chance enemies have to detect you while using Skulk.","rankDescriptions":["Level 50 Passive Your Venom Fang now costs -20% less Energy when while Widow's Kiss is active. Reduces the chance enemies have to detect you while using Skulk."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7195","treeId":"coa-venomancer-77","index":7195,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/inv_giantsnake_green.png","maxRank":1,"name":"Serpent Lord","description":"Augments Spider Form into a Serpent Lord, giving some of your Spider Form abilities a 1 second cast time and 10 yds of increased range. Damage is increased when attacking an enemy past 10 yds by 30% and spell pushback from enemy attacks is reduced by 50%. Increases the damage of Withering Venom by 50% and causes it to create a Miasma.Miasma (Talent)Create an 8 yd cloud of poison at a location for 12 seconds, causing 57 + 12.5% nature SP Nature Damage to 8 enemies within it every 2 sec.","rankDescriptions":["Augments Spider Form into a Serpent Lord, giving some of your Spider Form abilities a 1 second cast time and 10 yds of increased range. Damage is increased when attacking an enemy past 10 yds by 30% and spell pushback from enemy attacks is reduced by 50%. Increases the damage of Withering Venom by 50% and causes it to create a Miasma.Miasma (Talent)Create an 8 yd cloud of poison at a location for 12 seconds, causing 57 + 12.5% nature SP Nature Damage to 8 enemies within it every 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7188","treeId":"coa-venomancer-77","index":7188,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/_websight.png","maxRank":1,"name":"Brood Lord","description":"Augments Spider Form into a Brood Lord, causing your Brood Mark spenders to launch webs at the target, sticking to them for 10 seconds. Each webbed target has their movement speed slowed by -25%. Critically striking an enemy who is webbed summons 1 to 2 Spiderlings to aid you in combat for 8 seconds.","rankDescriptions":["Augments Spider Form into a Brood Lord, causing your Brood Mark spenders to launch webs at the target, sticking to them for 10 seconds. Each webbed target has their movement speed slowed by -25%. Critically striking an enemy who is webbed summons 1 to 2 Spiderlings to aid you in combat for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30524","treeId":"coa-venomancer-77","index":30524,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/achievement_dungeon_azjollowercity_10man.png","maxRank":1,"name":"Cunning of the Nerub'ar","description":"Augments your Spider Form, increasing your damage dealt by 10% and causing it to allow your Nerubian Sting to stack 1 additional time.","rankDescriptions":["Augments your Spider Form, increasing your damage dealt by 10% and causing it to allow your Nerubian Sting to stack 1 additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31202","treeId":"coa-venomancer-78","index":31202,"prerequisiteId":"coa-entry-4054","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4054","requiredRank":1},{"talentId":"coa-entry-7229","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/achievment_boss_wellofeternity.png","maxRank":1,"name":"Expulsion","description":"Clears Exposed Flesh stacks to poison nearby enemies for 5 seconds, and an additional 1 sec per cleared stack, dealing 15 + 10% nature SP + 5% AP Nature damage every 1 sec.","rankDescriptions":["Clears Exposed Flesh stacks to poison nearby enemies for 5 seconds, and an additional 1 sec per cleared stack, dealing 15 + 10% nature SP + 5% AP Nature damage every 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4054","treeId":"coa-venomancer-78","index":4054,"prerequisiteId":"coa-entry-7229","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-7229","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_nerubianbeetlepet_green.png","maxRank":1,"name":"Exposed Flesh","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":1,"isPassive":true},{"id":"coa-entry-12325","treeId":"coa-venomancer-78","index":12325,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/ability_vehicle_shellshieldgenerator_green.png","maxRank":1,"name":"Carapace Regeneration","description":"3 Charges, 20 sec recharge Regenerate your carapace, reducing your Physical damage taken by -4% and restoring 1% maximum health every 1 sec, draining 10 Rage every tick to remain active, stacking 3 times.","rankDescriptions":["3 Charges, 20 sec recharge Regenerate your carapace, reducing your Physical damage taken by -4% and restoring 1% maximum health every 1 sec, draining 10 Rage every tick to remain active, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6101","treeId":"coa-venomancer-78","index":6101,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_cloth_outdooremeralddream_d_01_cape.png","maxRank":2,"name":"Reinforced Exoskeleton","description":"Increases your maximum health and your dodge chance by 6%.","rankDescriptions":["Increases your maximum health and your dodge chance by 3%.","Increases your maximum health and your dodge chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6107","treeId":"coa-venomancer-78","index":6107,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_nature_removedisease.png","maxRank":2,"name":"Vile Fury","description":"Reduces the Rage cost of Hivebreak and Carapace Crash by -6 and increases your chance to hit by 4%.","rankDescriptions":["Reduces the Rage cost of Hivebreak and Carapace Crash by -3 and increases your chance to hit by 2%.","Reduces the Rage cost of Hivebreak and Carapace Crash by -6 and increases your chance to hit by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6122","treeId":"coa-venomancer-78","index":6122,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_inscription_pigment_bug06.png","maxRank":2,"name":"Enchanted Chitin","description":"Increases your Armor contribution from mail by 50%.","rankDescriptions":["Increases your Armor contribution from mail by 25%.","Increases your Armor contribution from mail by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9280","treeId":"coa-venomancer-78","index":9280,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/inv_shield_pandariaquest_b_03.png","maxRank":1,"name":"Magic Shell","description":"Level 20 Passive Increases all primary attributes by 15% while in Beetle Form. In addition, increases your hit rating by 3% of all primary attributes.","rankDescriptions":["Level 20 Passive Increases all primary attributes by 15% while in Beetle Form. In addition, increases your hit rating by 3% of all primary attributes."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-6120","treeId":"coa-venomancer-78","index":6120,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/inv_beetlemount.png","maxRank":1,"name":"Agitation","description":"Dodging an attack now generates 3 Rage.","rankDescriptions":["Dodging an attack now generates 3 Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7170","treeId":"coa-venomancer-78","index":7170,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_stave_2h_pvppandarias2_c_03green.png","maxRank":1,"name":"Regrow Exoskeleton","description":"Clears Exposed Flesh stacks to reduce your damage taken by -20% for 5 seconds and an additional 1 sec per stack.","rankDescriptions":["Clears Exposed Flesh stacks to reduce your damage taken by -20% for 5 seconds and an additional 1 sec per stack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30793","treeId":"coa-venomancer-78","index":30793,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/5_poisonclaw_border.png","maxRank":1,"name":"Venomtip Poison","description":"Spray poison on an enemy and all enemies near them, dealing 30 + 11% nature SP + 10% AP Nature damage and reducing their attack speed by -20% for 15 seconds.","rankDescriptions":["Spray poison on an enemy and all enemies near them, dealing 30 + 11% nature SP + 10% AP Nature damage and reducing their attack speed by -20% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6089","treeId":"coa-venomancer-78","index":6089,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv_ascend_slime_b_01.png","maxRank":1,"name":"Slimy","description":"Direct damage taken now has a 20% chance to create a pool of Beetle Slime under the enemy.Beetle SlimeDeals 49 Nature Damage to up to 10 enemies within 5 yds every 2 sec for 8 seconds. Can only occur once every 3 sec.","rankDescriptions":["Direct damage taken now has a 20% chance to create a pool of Beetle Slime under the enemy.Beetle SlimeDeals 49 Nature Damage to up to 10 enemies within 5 yds every 2 sec for 8 seconds. Can only occur once every 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30087","treeId":"coa-venomancer-78","index":30087,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv__hydrasbite.png","maxRank":1,"name":"Slimy Stingers","description":"Carapace Crash now creates a pool of Beetle Slime under each enemy struck.Beetle SlimeDeals 49 Nature Damage to up to 10 enemies within 5 yds every 2 sec for 8 seconds.","rankDescriptions":["Carapace Crash now creates a pool of Beetle Slime under each enemy struck.Beetle SlimeDeals 49 Nature Damage to up to 10 enemies within 5 yds every 2 sec for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7160","treeId":"coa-venomancer-78","index":7160,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_misc_necklace_shell01.png","maxRank":1,"name":"Pendo's Charm","description":"Increases the rage generated by your damage dealt by 15%.","rankDescriptions":["Increases the rage generated by your damage dealt by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29589","treeId":"coa-venomancer-78","index":29589,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/ability_deathknight_deathsiphon2.png","maxRank":1,"name":"Catalyst","description":"Generates 15 Rage plus 5 every 1 sec and reduces the cost of all of your spells and abilities by -25% for 10 seconds. Prevents out of combat Rage decay for its duration.","rankDescriptions":["Generates 15 Rage plus 5 every 1 sec and reduces the cost of all of your spells and abilities by -25% for 10 seconds. Prevents out of combat Rage decay for its duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6104","treeId":"coa-venomancer-78","index":6104,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/inv_antorus_green.png","maxRank":1,"name":"Empowered Exoskeleton","description":"Removes the Rage cost of Chitin Rush and increases its range by 5 yds.","rankDescriptions":["Removes the Rage cost of Chitin Rush and increases its range by 5 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7455","treeId":"coa-venomancer-78","index":7455,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/ability_druid_dash.png","maxRank":1,"name":"Chitinous Surge","description":"Reduces the cooldown of Chitin Rush by -3 sec and increases its damage by 15%.","rankDescriptions":["Reduces the cooldown of Chitin Rush by -3 sec and increases its damage by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6843","treeId":"coa-venomancer-78","index":6843,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_misc_felsaber_claw.png","maxRank":1,"name":"Natural Weapons","description":"Increases the critical strike chance of all Beetle Form abilities by 10%.","rankDescriptions":["Increases the critical strike chance of all Beetle Form abilities by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12485","treeId":"coa-venomancer-78","index":12485,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/epic_rpg_icon_pack_poison_icon_0004s_0000_arrow_border.png","maxRank":1,"name":"Poison for Everyone!","description":"Reduces the Rage cost of Venomtip Poison by -10.","rankDescriptions":["Reduces the Rage cost of Venomtip Poison by -10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30485","treeId":"coa-venomancer-78","index":30485,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/_spellcasting_green.png","maxRank":1,"name":"Drown In Poison","description":"Increases the damage of Venomtip Poison by 30%.","rankDescriptions":["Increases the damage of Venomtip Poison by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30505","treeId":"coa-venomancer-78","index":30505,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/ability_monk_effuse.png","maxRank":1,"name":"Reformed","description":"Level 30 Passive Clearing Exposed Flesh stacks inside Beetle Form now restores health based on stacks cleared.","rankDescriptions":["Level 30 Passive Clearing Exposed Flesh stacks inside Beetle Form now restores health based on stacks cleared."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7452","treeId":"coa-venomancer-78","index":7452,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/hunter_pvp_vipersting.png","maxRank":1,"name":"Deadly Sting","description":"Dealing periodic damage now has a 10% chance to make your next Hivebreak within 8 seconds free of cost and deal 50% increased damage.","rankDescriptions":["Dealing periodic damage now has a 10% chance to make your next Hivebreak within 8 seconds free of cost and deal 50% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6099","treeId":"coa-venomancer-78","index":6099,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/inv_misc_monsterscales_01.png","maxRank":1,"name":"Charmed Plating","description":"Reduces damage taken by all party and raid members by -3%. Does not stack with similar effects. In addition, reduces your chance to be hit by spells by -2%.","rankDescriptions":["Reduces damage taken by all party and raid members by -3%. Does not stack with similar effects. In addition, reduces your chance to be hit by spells by -2%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6110","treeId":"coa-venomancer-78","index":6110,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/ability_creature_poison_05.png","maxRank":1,"name":"Wicked Poison","description":"Critical strikes with Chitin Rush, Carapace Crash, and Hivebreak now apply Wicked Poison.Wicked PoisonDeals 60 + 5.67% shadow SP + 3.2% AP Shadow Damage every 2 sec for 6 seconds.","rankDescriptions":["Critical strikes with Chitin Rush, Carapace Crash, and Hivebreak now apply Wicked Poison.Wicked PoisonDeals 60 + 5.67% shadow SP + 3.2% AP Shadow Damage every 2 sec for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30080","treeId":"coa-venomancer-78","index":30080,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/inv_knife_1h_artifactfangs_d_02.png","maxRank":1,"name":"Barbed Stinger","description":"Clears Exposed Flesh stacks and flings a Barbed Stinger into an enemy for 10 seconds, plus an additional 1 sec per cleared stack. Recasting this ability on the same target will rip the stinger out, pulling them to you and dealing Nature damage, scaling based on how long the stinger was left in them.","rankDescriptions":["Clears Exposed Flesh stacks and flings a Barbed Stinger into an enemy for 10 seconds, plus an additional 1 sec per cleared stack. Recasting this ability on the same target will rip the stinger out, pulling them to you and dealing Nature damage, scaling based on how long the stinger was left in them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30078","treeId":"coa-venomancer-78","index":30078,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_ability_wildstalkerdruid_thrivinggrowth.png","maxRank":1,"name":"Potent Expulsion","description":"Increases the damage dealt by Expulsion by 20%.","rankDescriptions":["Increases the damage dealt by Expulsion by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6125","treeId":"coa-venomancer-78","index":6125,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/inv_trinket_naxxramas01.png","maxRank":1,"name":"Charm of Warding","description":"When a stack of Exposed Flesh is applied you are now healed for 1% of your maximum health.","rankDescriptions":["When a stack of Exposed Flesh is applied you are now healed for 1% of your maximum health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6106","treeId":"coa-venomancer-78","index":6106,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/ability_deathwing_grasping_tendrilsgreen.png","maxRank":1,"name":"Alacrity","description":"Damage dealt by Chitin Rush now increases your dodge chance by 1% for 5 seconds, stacking 8 times.","rankDescriptions":["Damage dealt by Chitin Rush now increases your dodge chance by 1% for 5 seconds, stacking 8 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-19106","treeId":"coa-venomancer-78","index":19106,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/skill_icon_skill151_border.png","maxRank":1,"name":"Cunning","description":"Increases the critical strike chance of Chitin Rush by 20% and its critical damage by 10%.","rankDescriptions":["Increases the critical strike chance of Chitin Rush by 20% and its critical damage by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7169","treeId":"coa-venomancer-78","index":7169,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/impale.png","maxRank":1,"name":"Impale","description":"Fire spikes through the floor impaling all enemies in a 15 yd line for 83 + 51.07% shadow SP Shadow damage and stunning them for 3.5 seconds.","rankDescriptions":["Fire spikes through the floor impaling all enemies in a 15 yd line for 83 + 51.07% shadow SP Shadow damage and stunning them for 3.5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30081","treeId":"coa-venomancer-78","index":30081,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/inv_10_alchemy_bottle_shape1_green.png","maxRank":1,"name":"Beetle Poison","description":"Allows Wicked Poison to stack an additional time.","rankDescriptions":["Allows Wicked Poison to stack an additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6103","treeId":"coa-venomancer-78","index":6103,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_poisons.png","maxRank":1,"name":"Wicked Barbs","description":"Your Barbed Stinger and Chitin Rush now applies Wicked Poison.Wicked PoisonDeals 60 + 5.67% shadow SP + 3.2% AP Shadow Damage every 2 sec for 6 seconds.","rankDescriptions":["Your Barbed Stinger and Chitin Rush now applies Wicked Poison.Wicked PoisonDeals 60 + 5.67% shadow SP + 3.2% AP Shadow Damage every 2 sec for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6108","treeId":"coa-venomancer-78","index":6108,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/rogue_venomzest.png","maxRank":1,"name":"Toxic Expulsion","description":"Hivebreak now consumes -2 sec of Venomtip Poison's duration to gush toxic slime, dealing 20 Nature damage to 5 enemies within 5 yds.","rankDescriptions":["Hivebreak now consumes -2 sec of Venomtip Poison's duration to gush toxic slime, dealing 20 Nature damage to 5 enemies within 5 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-33505","treeId":"coa-venomancer-78","index":33505,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_misc_claw_deepcrab_green.png","maxRank":1,"name":"Poisonous","description":"Level 40 Passive Increases your spell damage by 30% of your attack power and allows periodic damage dealt by Expulsion to critically strike.","rankDescriptions":["Level 40 Passive Increases your spell damage by 30% of your attack power and allows periodic damage dealt by Expulsion to critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-6115","treeId":"coa-venomancer-78","index":6115,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/ability_monk_renewingmists.png","maxRank":1,"name":"Venomics","description":"Increases the effectiveness of your Venoms by 30%.","rankDescriptions":["Increases the effectiveness of your Venoms by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7166","treeId":"coa-venomancer-78","index":7166,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/custom_chitin_b_01_border.png","maxRank":1,"name":"Cover","description":"Casting Harden now clears Exposed Flesh.","rankDescriptions":["Casting Harden now clears Exposed Flesh."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6102","treeId":"coa-venomancer-78","index":6102,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/_liquidstone_poison.png","maxRank":1,"name":"Shadra's Gift","description":"Dealing damage with Barbed Stinger now increases the target's Nature damage taken by 5% for 12 seconds.","rankDescriptions":["Dealing damage with Barbed Stinger now increases the target's Nature damage taken by 5% for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30499","treeId":"coa-venomancer-78","index":30499,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_scarabmount_green.png","maxRank":1,"name":"Unbreakable","description":"Allows Exposed Flesh to stack 5 additional times and increase your Physical damage taken by -1% less.","rankDescriptions":["Allows Exposed Flesh to stack 5 additional times and increase your Physical damage taken by -1% less."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6119","treeId":"coa-venomancer-78","index":6119,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/_d3locustswarm.png","maxRank":1,"name":"Locust Swarm","description":"Leeches 67 + 10% SP + 3% AP health from nearby enemies every 2 sec for 10 seconds.","rankDescriptions":["Leeches 67 + 10% SP + 3% AP health from nearby enemies every 2 sec for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30084","treeId":"coa-venomancer-78","index":30084,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_misc_scales_stonygreen.png","maxRank":1,"name":"Reconstructive Carapace","description":"Reduces the amount of Rage drained by Carapace Regeneration by -3.","rankDescriptions":["Reduces the amount of Rage drained by Carapace Regeneration by -3."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13505","treeId":"coa-venomancer-78","index":13505,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_natureheal_border.png","maxRank":1,"name":"Protogenesis","description":"Level 50 Passive Critical strikes dealt with direct damage now apply Protogenesis to you, stacking 10 times.ProtogenesisHeals for 20 over 10 seconds. At 10 stacks, all stacks are consumed and the cooldown of Expulsion is reduced by -3 sec.","rankDescriptions":["Level 50 Passive Critical strikes dealt with direct damage now apply Protogenesis to you, stacking 10 times.ProtogenesisHeals for 20 over 10 seconds. At 10 stacks, all stacks are consumed and the cooldown of Expulsion is reduced by -3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-6112","treeId":"coa-venomancer-78","index":6112,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/inv_skinning_80_hardenedtempesthide.png","maxRank":1,"name":"Molt","description":"Shatters your exoskeleton, instantly applying 15 stacks of Exposed Flesh and increasing your movement speed by 30% for 8 seconds.","rankDescriptions":["Shatters your exoskeleton, instantly applying 15 stacks of Exposed Flesh and increasing your movement speed by 30% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6113","treeId":"coa-venomancer-78","index":6113,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/cryptlord.png","maxRank":1,"name":"Spider Lord","description":"Augments Beetle Form into a Spider Lord, reducing damage taken by -5%, and while Locust Swarm is active your summons now gain 30% increased haste and damage. Casting Hivebreak now has a 40% chance, and melee auto attacks now have a 5% chance, to summon 1 Scarab to aid you in combat for 12 seconds.","rankDescriptions":["Augments Beetle Form into a Spider Lord, reducing damage taken by -5%, and while Locust Swarm is active your summons now gain 30% increased haste and damage. Casting Hivebreak now has a 40% chance, and melee auto attacks now have a 5% chance, to summon 1 Scarab to aid you in combat for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7177","treeId":"coa-venomancer-78","index":7177,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_skinning_80_snakescales.png","maxRank":1,"name":"Regenerative Properties","description":"Reduces all damage taken by -5%, but damage taken now has a 10% chance to shatter your exoskeleton, removing this damage reduction effect. When your exoskeleton shatters you regenerate 12% of your maximum health over 12 seconds, after this duration your exoskeleton regenerates.","rankDescriptions":["Reduces all damage taken by -5%, but damage taken now has a 10% chance to shatter your exoskeleton, removing this damage reduction effect. When your exoskeleton shatters you regenerate 12% of your maximum health over 12 seconds, after this duration your exoskeleton regenerates."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7229","treeId":"coa-venomancer-87","index":7229,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/spells/inv_pet_shalespider.png","maxRank":1,"name":"Hive Instinct","description":"The swarm stirs within you, preparing you for battle, instantly generating 100 Rage or Energy. Usable while Skulking.","rankDescriptions":["The swarm stirs within you, preparing you for battle, instantly generating 100 Rage or Energy. Usable while Skulking."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29607","treeId":"coa-venomancer-87","index":29607,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/ability_rogue_creepingvenom.png","maxRank":1,"name":"Envenomed Weapons","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7722","treeId":"coa-venomancer-87","index":7722,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":1,"icon":"/assets/ui/spells/inv_firstaid_healingsalve.png","maxRank":1,"name":"Green Salve","description":"Rapidly heal an ally for 30 over 6 seconds. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 47 + 24.46% healing.","rankDescriptions":["Rapidly heal an ally for 30 over 6 seconds. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 47 + 24.46% healing."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6082","treeId":"coa-venomancer-87","index":6082,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/inv_bonespider2_slate.png","maxRank":2,"name":"Acute Senses","description":"Increases your Intellect and Agility by 10%.","rankDescriptions":["Increases your Intellect and Agility by 5%.","Increases your Intellect and Agility by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30482","treeId":"coa-venomancer-87","index":30482,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/spell_nature_nullifydisease.png","maxRank":1,"name":"Playing With Poison","description":"Increases your Nature damage by 5% and healing done by 3%.","rankDescriptions":["Increases your Nature damage by 5% and healing done by 3%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29588","treeId":"coa-venomancer-87","index":29588,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/spells/inv_misc_leather_shellfragment.png","maxRank":1,"name":"Reinforced Shell","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.","rankDescriptions":["Increases your total armor by 20%. In addition, while Spider or Beetle form is active your attacks are unable to be parried or dodged."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6117","treeId":"coa-venomancer-87","index":6117,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/spells/uico_venom_spell_08_border.png","maxRank":1,"name":"Genesis","description":"Increases your haste by 4%.","rankDescriptions":["Increases your haste by 4%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7241","treeId":"coa-venomancer-87","index":7241,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":3,"icon":"/assets/ui/spells/inv_inscription_pigment_bug07.png","maxRank":1,"name":"Hallucinogenic Venom","description":"Allows 50% of your mana to regenerate while in combat.","rankDescriptions":["Allows 50% of your mana to regenerate while in combat."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6118","treeId":"coa-venomancer-87","index":6118,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":3,"icon":"/assets/ui/spells/ui_notoriety_thevizier.png","maxRank":2,"name":"Tranquil Essence","description":"Reduces the threat generated by your healing spells by -20% and increases your periodic healing by 6%.","rankDescriptions":["Reduces the threat generated by your healing spells by -10% and increases your periodic healing by 3%.","Reduces the threat generated by your healing spells by -20% and increases your periodic healing by 6%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6116","treeId":"coa-venomancer-87","index":6116,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/trade_alchemy_dpotion_a23.png","maxRank":1,"name":"Weakening Venom","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7252","treeId":"coa-venomancer-87","index":7252,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/nhi_poisonweb_border.png","maxRank":1,"name":"Spindlebind","description":"Emit webs at all enemies behind you, rooting them for 4 seconds and inflicting 61 + 40% nature SP Nature damage.","rankDescriptions":["Emit webs at all enemies behind you, rooting them for 4 seconds and inflicting 61 + 40% nature SP Nature damage."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7249","treeId":"coa-venomancer-87","index":7249,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/nhi_naturepotion_border.png","maxRank":1,"name":"Shadra's Balm","description":"Envelop an ally with a restorative balm, healing them for 14 + 25.17% healing every 3 sec for 18 seconds.","rankDescriptions":["Envelop an ally with a restorative balm, healing them for 14 + 25.17% healing every 3 sec for 18 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7237","treeId":"coa-venomancer-87","index":7237,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/custom_t_poisonspikes_border.png","maxRank":1,"name":"Chitinous Spikes","description":"Taking direct damage has a 20% chance to retaliate for 5% of the damage taken.","rankDescriptions":["Taking direct damage has a 20% chance to retaliate for 5% of the damage taken."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6095","treeId":"coa-venomancer-87","index":6095,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_fishing_f_seascorpion3.png","maxRank":2,"name":"Versatile and Deadly","description":"Reduce all damage taken while in Beetle Form by -6% and increases your movement speed while in Spider Form by 10%.","rankDescriptions":["Reduce all damage taken while in Beetle Form by -3% and increases your movement speed while in Spider Form by 5%.","Reduce all damage taken while in Beetle Form by -6% and increases your movement speed while in Spider Form by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7248","treeId":"coa-venomancer-87","index":7248,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/spell_nature_moonglow.png","maxRank":1,"name":"Skin Shedder","description":"Reduces the cost of shapeshift spells by -50%.","rankDescriptions":["Reduces the cost of shapeshift spells by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7235","treeId":"coa-venomancer-87","index":7235,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/_book4_purple.png","maxRank":1,"name":"Tome of Ahn'kahet","description":"Damage and effective healing done now has an 8% chance to grant Tome of Ahn'kahet for 15 seconds.Tome of Ahn'kahetThe next spell has its costs reduced by -100%.","rankDescriptions":["Damage and effective healing done now has an 8% chance to grant Tome of Ahn'kahet for 15 seconds.Tome of Ahn'kahetThe next spell has its costs reduced by -100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6096","treeId":"coa-venomancer-87","index":6096,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/inv_ascend_mushrooms_14.png","maxRank":1,"name":"Blightcap Injestion","description":"Increases your chance to resist poison and disease effects by 30%.","rankDescriptions":["Increases your chance to resist poison and disease effects by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6756","treeId":"coa-venomancer-87","index":6756,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/inv_misc_monsterclaw_10.png","maxRank":1,"name":"Pinch","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6098","treeId":"coa-venomancer-87","index":6098,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/inv_mechanicalspiderpet.png","maxRank":1,"name":"Fury of Anub'Rekhan","description":"Increases your maximum mana, Energy, and Rage by 10%.","rankDescriptions":["Increases your maximum mana, Energy, and Rage by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29576","treeId":"coa-venomancer-87","index":29576,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/ability_rogue_deadenednerves.png","maxRank":1,"name":"Empowering Pheromones","description":"Increases the effectiveness of your Pheromones by 20% and their duration by 50%.","rankDescriptions":["Increases the effectiveness of your Pheromones by 20% and their duration by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6086","treeId":"coa-venomancer-87","index":6086,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/trade_alchemy_dpotion_a26.png","maxRank":1,"name":"Adrenal Venom","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7453","treeId":"coa-venomancer-87","index":7453,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_shield_21.png","maxRank":1,"name":"Runed Carapace","description":"Whenever you take Magic damage, reduce damage taken by that magic school by -10% for 10 seconds. Can only occur once every 30 sec per school of magic.","rankDescriptions":["Whenever you take Magic damage, reduce damage taken by that magic school by -10% for 10 seconds. Can only occur once every 30 sec per school of magic."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7147","treeId":"coa-venomancer-87","index":7147,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/ability_warlock_infernogreen.png","maxRank":1,"name":"Venomancy Expert","description":"Reduces the cost of all spells and abilities by -5%.","rankDescriptions":["Reduces the cost of all spells and abilities by -5%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7244","treeId":"coa-venomancer-87","index":7244,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_giantsnake_green.png","maxRank":1,"name":"Mamba Mentality","description":"Critical strikes with Venom Bolt, Hivebreak, or Venom Fang now increase your movement speed by 20% for 3 seconds.","rankDescriptions":["Critical strikes with Venom Bolt, Hivebreak, or Venom Fang now increase your movement speed by 20% for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30465","treeId":"coa-venomancer-87","index":30465,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_lifegivingspeed.png","maxRank":1,"name":"Celerity","description":"Increases your movement speed by 60% for 10 seconds. Leaving Spider Form will cancel this effect. Usable while Skulking.","rankDescriptions":["Increases your movement speed by 60% for 10 seconds. Leaving Spider Form will cancel this effect. Usable while Skulking."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7247","treeId":"coa-venomancer-87","index":7247,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/rogue_venomzest.png","maxRank":1,"name":"Master of Venoms","description":"Increases the duration of your Venoms by 50%.","rankDescriptions":["Increases the duration of your Venoms by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7231","treeId":"coa-venomancer-87","index":7231,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/uico_venom_spell_06_border.png","maxRank":1,"name":"Venomizer","description":"Increases the proc chance of all Venoms by 10%.","rankDescriptions":["Increases the proc chance of all Venoms by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5571","treeId":"coa-venomancer-87","index":5571,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_nature_skinofearth.png","maxRank":1,"name":"Enduring Exoskeleton","description":"Direct damage taken now has a 30% chance to generate 2 Rage and 3% base mana. Can only occur once per sec.","rankDescriptions":["Direct damage taken now has a 30% chance to generate 2 Rage and 3% base mana. Can only occur once per sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7953","treeId":"coa-venomancer-87","index":7953,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/ability_evoker_dreambreath.png","maxRank":1,"name":"Relentless","description":"Increases your Energy and mana regeneration rate by 20%.","rankDescriptions":["Increases your Energy and mana regeneration rate by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6079","treeId":"coa-venomancer-87","index":6079,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/burrow.png","maxRank":1,"name":"Burrow","description":"Burrow beneath the ground for 8 seconds, becoming immune to all physical attacks and spells, but unable to move or act for the duration. While burrowed, you can choose a new location within 30 yds to unburrow.","rankDescriptions":["Burrow beneath the ground for 8 seconds, becoming immune to all physical attacks and spells, but unable to move or act for the duration. While burrowed, you can choose a new location within 30 yds to unburrow."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9590","treeId":"coa-venomancer-87","index":9590,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_misc_volatilelife_green.png","maxRank":1,"name":"Lifeblood","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6097","treeId":"coa-venomancer-87","index":6097,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/spell_nature_poisoncleansingtotem.png","maxRank":1,"name":"Fury of Shadra","description":"Increases your damage and healing against targets below 35% health by 15%.","rankDescriptions":["Increases your damage and healing against targets below 35% health by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29574","treeId":"coa-venomancer-87","index":29574,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/5_assassinskill12_border.png","maxRank":1,"name":"Ambush Predator","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6331","treeId":"coa-venomancer-87","index":6331,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_fixated_state_green.png","maxRank":1,"name":"Surprise Strategy","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7242","treeId":"coa-venomancer-87","index":7242,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/inv_ascend_spiderweb_b_01.png","maxRank":1,"name":"Shadra's Lair","description":"Designate the area around you as your Lair for 8 seconds. Enemies are unable to target into or out of the Lair and their movement speed is slowed by -60%.","rankDescriptions":["Designate the area around you as your Lair for 8 seconds. Enemies are unable to target into or out of the Lair and their movement speed is slowed by -60%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6090","treeId":"coa-venomancer-87","index":6090,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_misc_monsterspidercarapace_01.png","maxRank":1,"name":"Avatar of Shadra","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6553","treeId":"coa-venomancer-87","index":6553,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/nhi_naturepoisonedstep_border.png","maxRank":1,"name":"Toxic Stride","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29598","treeId":"coa-venomancer-92","index":29598,"prerequisiteId":"coa-entry-9951","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-9951","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/nhi_natureburn_border.png","maxRank":1,"name":"Alkahest","description":"2 Charges, 12 sec recharge Bless an ally with Shadra's grace, healing them for 85 + 31.44% healing and extending the duration of Shadra's Prayer on them by 9 sec.","rankDescriptions":["2 Charges, 12 sec recharge Bless an ally with Shadra's grace, healing them for 85 + 31.44% healing and extending the duration of Shadra's Prayer on them by 9 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9951","treeId":"coa-venomancer-92","index":9951,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":1,"icon":"/assets/ui/spells/nhi_naturestaff_border.png","maxRank":1,"name":"Shadra's Vigil","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-1788","treeId":"coa-venomancer-92","index":1788,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/nethers_spore.png","maxRank":1,"name":"Mycelial Healing","description":"All effective healing done now increases your periodic healing done to an ally by 1% for 30 seconds, stacking 8 times.","rankDescriptions":["All effective healing done now increases your periodic healing done to an ally by 1% for 30 seconds, stacking 8 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29592","treeId":"coa-venomancer-92","index":29592,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/ability_druid_focusedgrowth.png","maxRank":1,"name":"Mending Mist","description":"Spread a precarious mist to up to 8 allies within 30 yds, healing them for 9 + 15% healing every 1 sec for 7 seconds. After 1.69 sec, up to 8 allies within 30 yds are healed for an additional 104 + 23.1% healing.","rankDescriptions":["Spread a precarious mist to up to 8 allies within 30 yds, healing them for 9 + 15% healing every 1 sec for 7 seconds. After 1.69 sec, up to 8 allies within 30 yds are healed for an additional 104 + 23.1% healing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7223","treeId":"coa-venomancer-92","index":7223,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/spell_druid_symbiosis.png","maxRank":2,"name":"Shadra's Gift","description":"Reduces the cast time of Shadra's Prayer by -20% and your spell pushback suffered from damaging attacks by 70%.","rankDescriptions":["Reduces the cast time of Shadra's Prayer by -10% and your spell pushback suffered from damaging attacks by 35%.","Reduces the cast time of Shadra's Prayer by -20% and your spell pushback suffered from damaging attacks by 70%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9283","treeId":"coa-venomancer-92","index":9283,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/priest_icon_chakra_green.png","maxRank":1,"name":"Spiritual Healing","description":"Level 20 Passive Increases your spell critical strike rating and your healing power by 20% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your spell critical strike rating and your healing power by 20% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7736","treeId":"coa-venomancer-92","index":7736,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/ability_creature_poison_02.png","maxRank":1,"name":"Venom Glands","description":"Increases your healing done by 15% on allies below 35% health or if they are Poisoned.","rankDescriptions":["Increases your healing done by 15% on allies below 35% health or if they are Poisoned."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29591","treeId":"coa-venomancer-92","index":29591,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/inv_inscription_deck_jadeserpent.png","maxRank":2,"name":"Fang Blessing","description":"Increases your critical strike chance by 6%.","rankDescriptions":["Increases your critical strike chance by 3%.","Increases your critical strike chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7733","treeId":"coa-venomancer-92","index":7733,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/epic_rpg_icon_pack_poison_icon_0003s_0000_cloud_border.png","maxRank":1,"name":"Fangbinder","description":"Increases the healing of Serpent's Fang by 50% and Serpent's Fang can no longer miss.","rankDescriptions":["Increases the healing of Serpent's Fang by 50% and Serpent's Fang can no longer miss."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6141","treeId":"coa-venomancer-92","index":6141,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/custom_t_spiritualsummoning_border.png","maxRank":1,"name":"Ritualistic","description":"Casting Green Salve now also refunds you 20% of your base mana.","rankDescriptions":["Casting Green Salve now also refunds you 20% of your base mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7732","treeId":"coa-venomancer-92","index":7732,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/spell_nature_magicimmunity.png","maxRank":1,"name":"The Antidote","description":"Increases the duration of Rejuvenating Venom by 2 sec and increases its tick rate by -30%.","rankDescriptions":["Increases the duration of Rejuvenating Venom by 2 sec and increases its tick rate by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7738","treeId":"coa-venomancer-92","index":7738,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/spell_nature_nullifypoison_02.png","maxRank":1,"name":"Good Venom","description":"Rejuvenating Venom will now affect 1 additional nearby ally.","rankDescriptions":["Rejuvenating Venom will now affect 1 additional nearby ally."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6128","treeId":"coa-venomancer-92","index":6128,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/ability_hunter_potentvenom.png","maxRank":2,"name":"Soothing Venoms","description":"Increases the critical healing of Shadra's Prayer by 50%.","rankDescriptions":["Increases the critical healing of Shadra's Prayer by 25%.","Increases the critical healing of Shadra's Prayer by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7217","treeId":"coa-venomancer-92","index":7217,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/nhi_deathblow_border.png","maxRank":1,"name":"Melioration","description":"Your Serpent's Fang now refreshes a charge of Alkahest.","rankDescriptions":["Your Serpent's Fang now refreshes a charge of Alkahest."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7734","treeId":"coa-venomancer-92","index":7734,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/achievement_zg_veno.png","maxRank":1,"name":"Lifemender","description":"Your Serpent's Fang now heals up to 5 additional nearby allies and Alkahest now heals an additional nearby target.","rankDescriptions":["Your Serpent's Fang now heals up to 5 additional nearby allies and Alkahest now heals an additional nearby target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7735","treeId":"coa-venomancer-92","index":7735,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/novart_books_(3)_border.png","maxRank":1,"name":"Book of Shadra","description":"Doubles the duration, cooldown, and healing of Green Salve. In addition, it now seeks another nearby ally to heal every 6 sec, instead of at the end of the duration.","rankDescriptions":["Doubles the duration, cooldown, and healing of Green Salve. In addition, it now seeks another nearby ally to heal every 6 sec, instead of at the end of the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11735","treeId":"coa-venomancer-92","index":11735,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/inv_custom_scrollofunlearning_talent_seasonal20.png","maxRank":1,"name":"Venomcult Scrolls","description":"Reduces the cooldown of Green Salve by -2 sec and increases the healing done at the end of the duration by 50%.","rankDescriptions":["Reduces the cooldown of Green Salve by -2 sec and increases the healing done at the end of the duration by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13783","treeId":"coa-venomancer-92","index":13783,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/achievement_boss_eldernadox.png","maxRank":1,"name":"Vizier Form","description":"Level 30 Passive Teaches you Vizier Form.Vizier Form (Shapeshift)Shapeshift into Vizier Form, allowing you to cast Shadra's Prayer while moving and causing your periodic healing to have a 20% chance to grant allies Replenishment. Allows your heal over time effects to critically strike. ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","rankDescriptions":["Level 30 Passive Teaches you Vizier Form.Vizier Form (Shapeshift)Shapeshift into Vizier Form, allowing you to cast Shadra's Prayer while moving and causing your periodic healing to have a 20% chance to grant allies Replenishment. Allows your heal over time effects to critically strike. ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-6132","treeId":"coa-venomancer-92","index":6132,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/achievement_zone_tanaanjungle.png","maxRank":1,"name":"Spirit of the Jungle","description":"Increases the proc chance of Rejuvenating Venom by 10%.","rankDescriptions":["Increases the proc chance of Rejuvenating Venom by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7723","treeId":"coa-venomancer-92","index":7723,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/spell_nature_abolishmagic.png","maxRank":1,"name":"Worship","description":"Allows all critical heals to increase periodic healing the target receives from you by 10% for 5 seconds.","rankDescriptions":["Allows all critical heals to increase periodic healing the target receives from you by 10% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30749","treeId":"coa-venomancer-92","index":30749,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_fire_burnoutgreen.png","maxRank":1,"name":"Mycelial Replenishment","description":"Increases your critical strike chance and critical healing done by 20% for 20 seconds and instantly restore 30% of your maximum mana, but consumes all stacks of Mycelial Healing on all nearby allies. While active, all periodic critical strikes heal for an additional 20% of the healing done.","rankDescriptions":["Increases your critical strike chance and critical healing done by 20% for 20 seconds and instantly restore 30% of your maximum mana, but consumes all stacks of Mycelial Healing on all nearby allies. While active, all periodic critical strikes heal for an additional 20% of the healing done."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5291","treeId":"coa-venomancer-92","index":5291,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/epic_rpg_icon_pack_poison_icon_0002s_0000_poison-nova_border.png","maxRank":1,"name":"Sage","description":"Direct healing done by Alkahest now spreads an active Shadra's Balm from the primary target to a nearby ally.","rankDescriptions":["Direct healing done by Alkahest now spreads an active Shadra's Balm from the primary target to a nearby ally."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6607","treeId":"coa-venomancer-92","index":6607,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/nhi_natureseye_border.png","maxRank":2,"name":"Bountiful Gifts","description":"Increases the healing of Shadra's Prayer, Green Salve, and Alkahest by 20%.","rankDescriptions":["Increases the healing of Shadra's Prayer, Green Salve, and Alkahest by 10%.","Increases the healing of Shadra's Prayer, Green Salve, and Alkahest by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6140","treeId":"coa-venomancer-92","index":6140,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/achievement_aq_bugtrio.png","maxRank":2,"name":"Advisor's Perfidy","description":"Increases the bonus healing scaling of Serpent's Fang, Mending Mist, and Shadra's Balm by 20%.","rankDescriptions":["Increases the bonus healing scaling of Serpent's Fang, Mending Mist, and Shadra's Balm by 10%.","Increases the bonus healing scaling of Serpent's Fang, Mending Mist, and Shadra's Balm by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6133","treeId":"coa-venomancer-92","index":6133,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/nhi_natureunity_border.png","maxRank":1,"name":"Toxic Communion","description":"Extend the duration of Shadra's Balm and Mending Mist by 15 sec on all allies within 30 yds.","rankDescriptions":["Extend the duration of Shadra's Balm and Mending Mist by 15 sec on all allies within 30 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7122","treeId":"coa-venomancer-92","index":7122,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/achievement_dungeon_plaguefall_dominavenomblade.png","maxRank":1,"name":"Shadra's Presence","description":"Allies within 100 yds receive 6% more healing. Does not stack with similar effects. In addition, your Antivenom now dispels 1 additional effect.","rankDescriptions":["Allies within 100 yds receive 6% more healing. Does not stack with similar effects. In addition, your Antivenom now dispels 1 additional effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6324","treeId":"coa-venomancer-92","index":6324,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/inv_ascend_potions_02.png","maxRank":1,"name":"Blight Antidote","description":"Inject an ally with a powerful magic antidote, dispelling 2 curse effects from them.","rankDescriptions":["Inject an ally with a powerful magic antidote, dispelling 2 curse effects from them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7120","treeId":"coa-venomancer-92","index":7120,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/ability_druid_manatree.png","maxRank":1,"name":"Widow's Watch","description":"Allies affected by Shadra's Balm now have a 20% increased chance to resist poison and curse effects.","rankDescriptions":["Allies affected by Shadra's Balm now have a 20% increased chance to resist poison and curse effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4783","treeId":"coa-venomancer-92","index":4783,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/nhi_naturevision_border.png","maxRank":1,"name":"Occultist","description":"Level 40 Passive Casting Green Salve or Serpent's Fang now has a 30% chance to refresh a charge of Alkahest.","rankDescriptions":["Level 40 Passive Casting Green Salve or Serpent's Fang now has a 30% chance to refresh a charge of Alkahest."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-7121","treeId":"coa-venomancer-92","index":7121,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/nhi_natureentagle_border.png","maxRank":1,"name":"Ophidian Renewal","description":"Increases the duration of Shadra's Balm and Mending Mist and Shadra's Prayer by 3 sec.","rankDescriptions":["Increases the duration of Shadra's Balm and Mending Mist and Shadra's Prayer by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12223","treeId":"coa-venomancer-92","index":12223,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/nhi_nature_stab_border.png","maxRank":1,"name":"Extraction","description":"For 15 seconds, your Intellect and Spirit are doubled and all critical periodic healing done by you restores 5% of your missing mana.","rankDescriptions":["For 15 seconds, your Intellect and Spirit are doubled and all critical periodic healing done by you restores 5% of your missing mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5302","treeId":"coa-venomancer-92","index":5302,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/5_druideskill10_border.png","maxRank":1,"name":"Sublime Extraction","description":"Casting Green Salve now resets the cooldown of Serpent's Fang and removes the cost of your next Serpent's Fang for 8 seconds.","rankDescriptions":["Casting Green Salve now resets the cooldown of Serpent's Fang and removes the cost of your next Serpent's Fang for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6302","treeId":"coa-venomancer-92","index":6302,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/5_venom_(3)_border.png","maxRank":1,"name":"Venom Fanatic","description":"Your Serpent's Fang now strikes 2 additional nearby enemies.","rankDescriptions":["Your Serpent's Fang now strikes 2 additional nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30073","treeId":"coa-venomancer-92","index":30073,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_natureempower_border.png","maxRank":1,"name":"Shadra's Aid","description":"Envelop an ally in Shadra's grace, reducing all damage taken by -20% and causing direct damage taken to restore 3% maximum health for 15 seconds.","rankDescriptions":["Envelop an ally in Shadra's grace, reducing all damage taken by -20% and causing direct damage taken to restore 3% maximum health for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29599","treeId":"coa-venomancer-92","index":29599,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/spell_nature_resistmagic.png","maxRank":1,"name":"Venom Weaving","description":"Your Serpent's Fang now increases the healing of your next 2 Alkahests by 25%.","rankDescriptions":["Your Serpent's Fang now increases the healing of your next 2 Alkahests by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29596","treeId":"coa-venomancer-92","index":29596,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_helm_cloth_zandalardungeon_c_01.png","maxRank":1,"name":"Serpent Lord's Amulet","description":"Draw power from the Serpent Lord's Amulet, increasing your spell haste by 20% and reduces your mana costs by -50% for 15 seconds.","rankDescriptions":["Draw power from the Serpent Lord's Amulet, increasing your spell haste by 20% and reduces your mana costs by -50% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9597","treeId":"coa-venomancer-92","index":9597,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/achievement_zone_swampsorrows_01.png","maxRank":1,"name":"Ritual Healing","description":"Level 50 Passive Every 9 sec, your Shadra's Prayer will now restore 1% of the target's maximum mana, 8 Energy or Focus, 4 Rage and 4 Runic Power.","rankDescriptions":["Level 50 Passive Every 9 sec, your Shadra's Prayer will now restore 1% of the target's maximum mana, 8 Energy or Focus, 4 Rage and 4 Runic Power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7124","treeId":"coa-venomancer-92","index":7124,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/spell_nature_naturetouchgrow.png","maxRank":1,"name":"Mycelial Synchronization","description":"Casting Shadra's Aid on an ally now also casts it on yourself.","rankDescriptions":["Casting Shadra's Aid on an ally now also casts it on yourself."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7737","treeId":"coa-venomancer-92","index":7737,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/_liquidstone_poison.png","maxRank":1,"name":"Cycle of Rebirth","description":"Effective periodic healing with Shadra's Balm now has a 10% chance to make your next Alkahest within 8 seconds is free and instant.","rankDescriptions":["Effective periodic healing with Shadra's Balm now has a 10% chance to make your next Alkahest within 8 seconds is free and instant."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6139","treeId":"coa-venomancer-92","index":6139,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/ability_monk_summonserpentstatue.png","maxRank":1,"name":"Serpent Lord's Ritual","description":"Direct healing done now has a 5% chance to grant you 5 sec of Serpent Lord's Amulet.Serpent Lord's AmuletDraw power from the Serpent Lord's Amulet, increasing your spell haste by 20% and reduces your mana costs by -50% for 15 seconds.","rankDescriptions":["Direct healing done now has a 5% chance to grant you 5 sec of Serpent Lord's Amulet.Serpent Lord's AmuletDraw power from the Serpent Lord's Amulet, increasing your spell haste by 20% and reduces your mana costs by -50% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/warlock.json b/src/game/generated/talentUi/warlock.json new file mode 100644 index 00000000..702761ee --- /dev/null +++ b/src/game/generated/talentUi/warlock.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"warlock","trees":[{"id":"warlock-affliction","classId":"warlock","name":"Affliction","icon":"/assets/ui/talents/icons/spell_shadow_deathcoil.png","background":"/assets/ui/talents/backgrounds/talent_warlock1.png","description":"Erode enemies with curses and lasting agony.","system":"classic"},{"id":"warlock-demonology","classId":"warlock","name":"Demonology","icon":"/assets/ui/talents/icons/spell_shadow_metamorphosis.png","background":"/assets/ui/talents/backgrounds/talent_warlock2.png","description":"Draw greater power from demonic allies.","system":"classic"},{"id":"warlock-destruction","classId":"warlock","name":"Destruction","icon":"/assets/ui/talents/icons/spell_shadow_rainoffire.png","background":"/assets/ui/talents/backgrounds/talent_warlock3.png","description":"Burn enemies with chaotic fire and shadow.","system":"classic"}],"nodes":[{"id":"talent-982","treeId":"warlock-destruction","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_fire_fire.png","maxRank":2,"name":"Aftermath","description":"Increases the periodic damage done by your Immolate by 6%. Your Conflagrate has a 100% chance to daze the target reducing movement speed by 50% for 4 seconds.","rankDescriptions":["Increases the periodic damage done by your Immolate by 3%. Your Conflagrate has a 50% chance to daze the target reducing movement speed by 50% for 4 seconds.","Increases the periodic damage done by your Immolate by 6%. Your Conflagrate has a 100% chance to daze the target reducing movement speed by 50% for 4 seconds."],"system":"classic"},{"id":"talent-983","treeId":"warlock-destruction","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_fire_firebolt.png","maxRank":2,"name":"Demonic Power","description":"Reduces the cooldown of your Succubus' Lash of Pain spell by 6 sec. Reduces the cast time of your Imp's Firebolt and the Firebolt of your Wild Imps by 0.25 sec, and increases their damage by 14%.","rankDescriptions":["Reduces the cooldown of your Succubus' Lash of Pain spell by 3 sec. Reduces the cast time of your Imp's Firebolt and the Firebolt of your Wild Imps by 0.25 sec, and increases their damage by 7%.","Reduces the cooldown of your Succubus' Lash of Pain spell by 6 sec. Reduces the cast time of your Imp's Firebolt and the Firebolt of your Wild Imps by 0.25 sec, and increases their damage by 14%."],"system":"classic"},{"id":"talent-985","treeId":"warlock-destruction","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_fire_lavaspawn.png","maxRank":3,"name":"Intensity","description":"Increases all damage done by 3%. Reduces spell pushback suffered from damaging attacks by 100%.","rankDescriptions":["Increases all damage done by 1%. Reduces spell pushback suffered from damaging attacks by 33%.","Increases all damage done by 2%. Reduces spell pushback suffered from damaging attacks by 66%.","Increases all damage done by 3%. Reduces spell pushback suffered from damaging attacks by 100%."],"system":"classic"},{"id":"talent-1679","treeId":"warlock-destruction","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_netherprotection.png","maxRank":3,"name":"Nether Protection","description":"Reduces periodic spell damage taken by 6%. Capstone Bonus: Gives you a 20% chance when being hit with a spell or taking periodic spell damage to gain Nether Protection, reducing all damage by that spell school by 10% for 6 seconds. This effect can only occur every 4 seconds.","rankDescriptions":["Reduces periodic spell damage taken by 2%. Capstone Bonus: Gives you a 20% chance when being hit with a spell or taking periodic spell damage to gain Nether Protection, reducing all damage by that spell school by 10% for 6 seconds. This effect can only occur every 4 seconds.","Reduces periodic spell damage taken by 4%. Capstone Bonus: Gives you a 20% chance when being hit with a spell or taking periodic spell damage to gain Nether Protection, reducing all damage by that spell school by 10% for 6 seconds. This effect can only occur every 4 seconds.","Reduces periodic spell damage taken by 6%. Capstone Bonus: Gives you a 20% chance when being hit with a spell or taking periodic spell damage to gain Nether Protection, reducing all damage by that spell school by 10% for 6 seconds. This effect can only occur every 4 seconds."],"system":"classic"},{"id":"talent-1817","treeId":"warlock-destruction","index":12,"prerequisiteId":"talent-985","prerequisiteRank":2,"prerequisites":[{"talentId":"talent-985","requiredRank":2}],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_fire_playingwithfire.png","maxRank":3,"name":"Backlash","description":"Increases your critical strike chance with all spells and abilities by 3%. You have a 25% chance when hit by a physical attack to reduce the cast time of your next Shadow Bolt or Incinerate spell by 100%, and reducing mana cost by 50% and deal 10% more damage to monsters.(20% less to players). This effect lasts 12 seconds. Can not occur more than once every 8 seconds.","rankDescriptions":["Increases your critical strike chance with all spells and abilities by 1%. You have an 8% chance when hit by a physical attack to reduce the cast time of your next Shadow Bolt or Incinerate spell by 100%, and reducing mana cost by 50% and deal 10% more damage to monsters.(20% less to players). This effect lasts 12 seconds. Can not occur more than once every 8 seconds.","Increases your critical strike chance with all spells and abilities by 2%. You have a 16% chance when hit by a physical attack to reduce the cast time of your next Shadow Bolt or Incinerate spell by 100%, and reducing mana cost by 50% and deal 10% more damage to monsters.(20% less to players). This effect lasts 12 seconds. Can not occur more than once every 8 seconds.","Increases your critical strike chance with all spells and abilities by 3%. You have a 25% chance when hit by a physical attack to reduce the cast time of your next Shadow Bolt or Incinerate spell by 100%, and reducing mana cost by 50% and deal 10% more damage to monsters.(20% less to players). This effect lasts 12 seconds. Can not occur more than once every 8 seconds."],"system":"classic"},{"id":"talent-1888","treeId":"warlock-destruction","index":22,"prerequisiteId":"talent-968","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-968","requiredRank":1}],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_warlock_backdraft.png","maxRank":3,"name":"Backdraft","description":"When you cast Conflagrate, Mind Blast, Shadowfury or Shadowburn, the cast time and global cooldown of your next three Destruction spells is reduced by 25%. Lasts 15 seconds. Increases the damage of your Shadowburn by 20%.","rankDescriptions":["When you cast Conflagrate, Mind Blast, Shadowfury or Shadowburn, the cast time and global cooldown of your next three Destruction spells is reduced by 8%. Lasts 15 seconds. Increases the damage of your Shadowburn by 7%.","When you cast Conflagrate, Mind Blast, Shadowfury or Shadowburn, the cast time and global cooldown of your next three Destruction spells is reduced by 17%. Lasts 15 seconds. Increases the damage of your Shadowburn by 14%.","When you cast Conflagrate, Mind Blast, Shadowfury or Shadowburn, the cast time and global cooldown of your next three Destruction spells is reduced by 25%. Lasts 15 seconds. Increases the damage of your Shadowburn by 20%."],"system":"classic"},{"id":"talent-944","treeId":"warlock-destruction","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_shadowbolt.png","maxRank":5,"name":"Improved Shadow Bolt","description":"Increases the damage done by your Shadow Bolt spell by 15%. Your Shadow Bolt has a 100% chance to cause your target to be vulnerable to spell damage, increasing spell critical strike chance against that target by 5%. Effect lasts 30 seconds. Does not stack with other similar effects.","rankDescriptions":["Increases the damage done by your Shadow Bolt spell by 3%. Your Shadow Bolt has a 20% chance to cause your target to be vulnerable to spell damage, increasing spell critical strike chance against that target by 5%. Effect lasts 30 seconds. Does not stack with other similar effects.","Increases the damage done by your Shadow Bolt spell by 6%. Your Shadow Bolt has a 40% chance to cause your target to be vulnerable to spell damage, increasing spell critical strike chance against that target by 5%. Effect lasts 30 seconds. Does not stack with other similar effects.","Increases the damage done by your Shadow Bolt spell by 9%. Your Shadow Bolt has a 60% chance to cause your target to be vulnerable to spell damage, increasing spell critical strike chance against that target by 5%. Effect lasts 30 seconds. Does not stack with other similar effects.","Increases the damage done by your Shadow Bolt spell by 12%. Your Shadow Bolt has a 80% chance to cause your target to be vulnerable to spell damage, increasing spell critical strike chance against that target by 5%. Effect lasts 30 seconds. Does not stack with other similar effects.","Increases the damage done by your Shadow Bolt spell by 15%. Your Shadow Bolt has a 100% chance to cause your target to be vulnerable to spell damage, increasing spell critical strike chance against that target by 5%. Effect lasts 30 seconds. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-961","treeId":"warlock-destruction","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_fire_immolation.png","maxRank":3,"name":"Improved Immolate","description":"Increases the damage done by your Immolate spell by 30%. Capstone Bonus: If your Immolate is dispelled, your next Immolate cast within 5 seconds will be protected from Interrupt effects and its cast time is reduced by 50%.","rankDescriptions":["Increases the damage done by your Immolate spell by 10%. Capstone Bonus: If your Immolate is dispelled, your next Immolate cast will be protected from Interrupt effects and its cast time is reduced by 50%.","Increases the damage done by your Immolate spell by 20%. Capstone Bonus: If your Immolate is dispelled, your next Immolate cast will be protected from Interrupt effects and its cast time is reduced by 50%.","Increases the damage done by your Immolate spell by 30%. Capstone Bonus: If your Immolate is dispelled, your next Immolate cast within 5 seconds will be protected from Interrupt effects and its cast time is reduced by 50%."],"system":"classic"},{"id":"talent-963","treeId":"warlock-destruction","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_scourgebuild.png","maxRank":1,"name":"Shadowburn","description":"Instantly blasts the target for the listed amountthe listed amount Shadowflame damage.","rankDescriptions":["Instantly blasts the target for the listed amountthe listed amount Shadowflame damage."],"system":"classic"},{"id":"talent-964","treeId":"warlock-destruction","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_corpseexplode.png","maxRank":3,"name":"Destructive Reach","description":"Increases the range of your damaging spells with a channeling or cast time by 6 yards. This does not stack with other similar effects. Capstone Bonus: Your spell critical strike chance is increased against enemies further than 20 yards from you by 4%.","rankDescriptions":["Increases the range of your damaging spells with a channeling or cast time by 2 yards. This does not stack with other similar effects. Capstone Bonus: Your spell critical strike chance is increased against enemies further than 20 yards from you by 4%.","Increases the range of your damaging spells with a channeling or cast time by 4 yards. This does not stack with other similar effects. Capstone Bonus: Your spell critical strike chance is increased against enemies further than 20 yards from you by 4%.","Increases the range of your damaging spells with a channeling or cast time by 6 yards. This does not stack with other similar effects. Capstone Bonus: Your spell critical strike chance is increased against enemies further than 20 yards from you by 4%."],"system":"classic"},{"id":"talent-968","treeId":"warlock-destruction","index":17,"prerequisiteId":"talent-961","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-961","requiredRank":3}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_fire_fireball.png","maxRank":1,"name":"Conflagrate","description":"the listed amount[Causes][Consumes] an Immolate or Shadowflame effect on the enemy target to instantly deal damage equal to 100% of your Immolate or Shadowflame, and causes an additional 85% damage over 6 seconds. This periodic damage may critically strike.","rankDescriptions":["the listed amount[Causes][Consumes] an Immolate or Shadowflame effect on the enemy target to instantly deal damage equal to 100% of your Immolate or Shadowflame, and causes an additional 85% damage over 6 seconds. This periodic damage may critically strike."],"system":"classic"},{"id":"talent-1676","treeId":"warlock-destruction","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_shadow_shadowfury.png","maxRank":1,"name":"Shadowfury","description":"Shadowfury is unleashed, causing 208 Shadow damage and stunning all enemies within 8 yds for 2.5 seconds. This spell cannot miss.","rankDescriptions":["Shadowfury is unleashed, causing 208 Shadow damage and stunning all enemies within 8 yds for 2.5 seconds. This spell cannot miss."],"system":"classic"},{"id":"talent-1677","treeId":"warlock-destruction","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/spell_shadow_shadowandflame.png","maxRank":3,"name":"Shadow and Flame","description":"Increases the spell damage scaling of your Shadow Bolt, Shadowburn, Chaos Bolt, Shadowfury, Soul Fire, Hand of Gul'dan, Incinerate and Shadowflame by 20%. Reduces the cooldown of Shadowflame by 6 sec and Burning Rush by 30 sec.","rankDescriptions":["Increases the spell damage scaling of your Shadow Bolt, Shadowburn, Chaos Bolt, Shadowfury, Soul Fire, Hand of Gul'dan, Incinerate and Shadowflame by 7%. Reduces the cooldown of Shadowflame by 2 sec and Burning Rush by 10 sec.","Increases the spell damage scaling of your Shadow Bolt, Shadowburn, Chaos Bolt, Shadowfury, Soul Fire, Hand of Gul'dan, Incinerate and Shadowflame by 14%. Reduces the cooldown of Shadowflame by 4 sec and Burning Rush by 20 sec.","Increases the spell damage scaling of your Shadow Bolt, Shadowburn, Chaos Bolt, Shadowfury, Soul Fire, Hand of Gul'dan, Incinerate and Shadowflame by 20%. Reduces the cooldown of Shadowflame by 6 sec and Burning Rush by 30 sec."],"system":"classic"},{"id":"talent-1887","treeId":"warlock-destruction","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_mage_moltenarmor.png","maxRank":3,"name":"Molten Skin","description":"Reduces all damage taken by your Hellfire by 30%. When hit by a melee or ranged attack you have a 9% chance of increasing your Fire damage done by 10% for 10 seconds.","rankDescriptions":["Reduces all damage taken by your Hellfire by 10%. When hit by a melee or ranged attack you have a 3% chance of increasing your Fire damage done by 10% for 10 seconds.","Reduces all damage taken by your Hellfire by 20%. When hit by a melee or ranged attack you have a 6% chance of increasing your Fire damage done by 10% for 10 seconds.","Reduces all damage taken by your Hellfire by 30%. When hit by a melee or ranged attack you have a 9% chance of increasing your Fire damage done by 10% for 10 seconds."],"system":"classic"},{"id":"talent-1890","treeId":"warlock-destruction","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_warlock_fireandbrimstone.png","maxRank":5,"name":"Fire and Brimstone","description":"Increases the damage done by your Incinerate, Searing Pain, Soul Fire and Chaos Bolt spells to targets afflicted by your Immolate by 10%. Increases the critical strike chance of your Conflagrate spell is increased by 25%. Capstone Bonus: Dealing direct damage with fire spells with a cast time increases the damage the target takes from your next Soul Fire by 8%. Stacks up to 10. Incinerate generates 3 stacks. Soul Fire does not generate stacks.","rankDescriptions":["Increases the damage done by your Incinerate, Searing Pain, Soul Fire and Chaos Bolt spells to targets afflicted by your Immolate by 2%. Increases the critical strike chance of your Conflagrate spell is increased by 5%. Capstone Bonus: Dealing direct damage with fire spells with a cast time increases the damage the target takes from your next Soul Fire by 8%. Stacks up to 10. Incinerate generates 3 stacks. Soul Fire does not generate stacks.","Increases the damage done by your Incinerate, Searing Pain, Soul Fire and Chaos Bolt spells to targets afflicted by your Immolate by 4%. Increases the critical strike chance of your Conflagrate spell is increased by 10%. Capstone Bonus: Dealing direct damage with fire spells with a cast time increases the damage the target takes from your next Soul Fire by 8%. Stacks up to 10. Incinerate generates 3 stacks. Soul Fire does not generate stacks.","Increases the damage done by your Incinerate, Searing Pain, Soul Fire and Chaos Bolt spells to targets afflicted by your Immolate by 6%. Increases the critical strike chance of your Conflagrate spell is increased by 15%. Capstone Bonus: Dealing direct damage with fire spells with a cast time increases the damage the target takes from your next Soul Fire by 8%. Stacks up to 10. Incinerate generates 3 stacks. Soul Fire does not generate stacks.","Increases the damage done by your Incinerate, Searing Pain, Soul Fire and Chaos Bolt spells to targets afflicted by your Immolate by 8%. Increases the critical strike chance of your Conflagrate spell is increased by 20%. Capstone Bonus: Dealing direct damage with fire spells with a cast time increases the damage the target takes from your next Soul Fire by 8%. Stacks up to 10. Incinerate generates 3 stacks. Soul Fire does not generate stacks.","Increases the damage done by your Incinerate, Searing Pain, Soul Fire and Chaos Bolt spells to targets afflicted by your Immolate by 10%. Increases the critical strike chance of your Conflagrate spell is increased by 25%. Capstone Bonus: Dealing direct damage with fire spells with a cast time increases the damage the target takes from your next Soul Fire by 8%. Stacks up to 10. Incinerate generates 3 stacks. Soul Fire does not generate stacks."],"system":"classic"},{"id":"talent-1891","treeId":"warlock-destruction","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_warlock_chaosbolt.png","maxRank":1,"name":"Chaos Bolt","description":"Sends a bolt of chaotic fire at the enemy, dealing the listed amountthe listed amountthe listed amount Fire damage. Chaos Bolt cannot be resisted, and pierces through all absorption, deflection, and reflection effects.","rankDescriptions":["Sends a bolt of chaotic fire at the enemy, dealing the listed amountthe listed amountthe listed amount Fire damage. Chaos Bolt cannot be resisted, and pierces through all absorption, deflection, and reflection effects."],"system":"classic"},{"id":"talent-941","treeId":"warlock-destruction","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_fire_windsofwoe.png","maxRank":3,"name":"Cataclysm","description":"Increases the damage of your Rain of Fire, Hellfire, Inferno, Hand of Gul'dan and Shadowfury by 18%.","rankDescriptions":["Increases the damage of your Rain of Fire, Hellfire, Inferno, Hand of Gul'dan and Shadowfury by 6%.","Increases the damage of your Rain of Fire, Hellfire, Inferno, Hand of Gul'dan and Shadowfury by 12%.","Increases the damage of your Rain of Fire, Hellfire, Inferno, Hand of Gul'dan and Shadowfury by 18%."],"system":"classic"},{"id":"talent-943","treeId":"warlock-destruction","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_deathpact.png","maxRank":3,"name":"Bane","description":"Increases the critical strike chance of Shadow Bolt, Chaos Bolt, Immolate, Hand of Gul'dan, Soul Fire and Shadowflame by 6% and reduces the mana cost of these spells by 15%.","rankDescriptions":["Increases the critical strike chance of Shadow Bolt, Chaos Bolt, Immolate, Hand of Gul'dan, Soul Fire and Shadowflame by 2% and reduces the mana cost of these spells by 5%.","Increases the critical strike chance of Shadow Bolt, Chaos Bolt, Immolate, Hand of Gul'dan, Soul Fire and Shadowflame by 4% and reduces the mana cost of these spells by 10%.","Increases the critical strike chance of Shadow Bolt, Chaos Bolt, Immolate, Hand of Gul'dan, Soul Fire and Shadowflame by 6% and reduces the mana cost of these spells by 15%."],"system":"classic"},{"id":"talent-966","treeId":"warlock-destruction","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/spell_fire_selfdestruct.png","maxRank":5,"name":"Emberstorm","description":"Increases the damage done by your Fire spells by 5%. Capstone Bonus: Your Searing Pain, Incinerate, Scorch and Fireball casts reduce the cooldown of Chaos Bolt by 3 seconds.","rankDescriptions":["Increases the damage done by your Fire spells by 1%. Capstone Bonus: Your Searing Pain, Incinerate, Scorch and Fireball casts reduce the cooldown of Chaos Bolt by 3 seconds.","Increases the damage done by your Fire spells by 2%. Capstone Bonus: Your Searing Pain, Incinerate, Scorch and Fireball casts reduce the cooldown of Chaos Bolt by 3 seconds.","Increases the damage done by your Fire spells by 3%. Capstone Bonus: Your Searing Pain, Incinerate, Scorch and Fireball casts reduce the cooldown of Chaos Bolt by 3 seconds.","Increases the damage done by your Fire spells by 4%. Capstone Bonus: Your Searing Pain, Incinerate, Scorch and Fireball casts reduce the cooldown of Chaos Bolt by 3 seconds.","Increases the damage done by your Fire spells by 5%. Capstone Bonus: Your Searing Pain, Incinerate, Scorch and Fireball casts reduce the cooldown of Chaos Bolt by 3 seconds."],"system":"classic"},{"id":"talent-967","treeId":"warlock-destruction","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_shadowwordpain.png","maxRank":5,"name":"Ruin","description":"Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Increases your Fire and Shadow damage done by 3%. This effect is quadrupled against targets above 75% health.","rankDescriptions":["Your spell critical strikes now deal 180% damage. This does not stack with other similar effects. Capstone Bonus: Increases your Fire and Shadow damage done by 3%. This effect is quadrupled against targets above 75% health.","Your spell critical strikes now deal 185% damage. This does not stack with other similar effects. Capstone Bonus: Increases your Fire and Shadow damage done by 3%. This effect is quadrupled against targets above 75% health.","Your spell critical strikes now deal 190% damage. This does not stack with other similar effects. Capstone Bonus: Increases your Fire and Shadow damage done by 3%. This effect is quadrupled against targets above 75% health.","Your spell critical strikes now deal 195% damage. This does not stack with other similar effects. Capstone Bonus: Increases your Fire and Shadow damage done by 3%. This effect is quadrupled against targets above 75% health.","Your spell critical strikes now deal 200% damage. This does not stack with other similar effects. Capstone Bonus: Increases your Fire and Shadow damage done by 3%. This effect is quadrupled against targets above 75% health."],"system":"classic"},{"id":"talent-981","treeId":"warlock-destruction","index":14,"prerequisiteId":"talent-967","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-967","requiredRank":5}],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_fire_flameshock.png","maxRank":3,"name":"Devastation","description":"Increases the critical strike chance of your Destruction spells by 6%. Capstone Bonus: While Burning Rush is active, the cast time of your Destruction spells is reduced by 15%, you take 80% reduced damage from Burning Rush, and its duration is increased by 2 sec.","rankDescriptions":["Increases the critical strike chance of your Destruction spells by 2%. Capstone Bonus: While Burning Rush is active, the cast time of your Destruction spells is reduced by 15%, you take 80% reduced damage from Burning Rush, and its duration is increased by 2 sec.","Increases the critical strike chance of your Destruction spells by 4%. Capstone Bonus: While Burning Rush is active, the cast time of your Destruction spells is reduced by 15%, you take 80% reduced damage from Burning Rush, and its duration is increased by 2 sec.","Increases the critical strike chance of your Destruction spells by 6%. Capstone Bonus: While Burning Rush is active, the cast time of your Destruction spells is reduced by 15%, you take 80% reduced damage from Burning Rush, and its duration is increased by 2 sec."],"system":"classic"},{"id":"talent-1678","treeId":"warlock-destruction","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_shadow_soulleech_3.png","maxRank":3,"name":"Soul Leech","description":"Your direct single target Destruction spells have a 100% chance to heal you for 15% of the damage caused and reduce the attack power of the target by 2 for 10 seconds. Returns up to a maximum of 15% of your health. Does not stack with other similar effects. This effect can only occur once every 3 seconds. Capstone Bonus: Taking a physical hit while casting any of these spells will increase its critical strike chance by 30%.","rankDescriptions":["Your direct single target Destruction spells have a 33% chance to heal you for 15% of the damage caused and reduce the attack power of the target by 2 for 10 seconds. Returns up to a maximum of 15% of your health. Does not stack with other similar effects. This effect can only occur once every 3 seconds. Capstone Bonus: Taking a physical hit while casting any of these spells will increase its critical strike chance by 30%.","Your direct single target Destruction spells have a 66% chance to heal you for 15% of the damage caused and reduce the attack power of the target by 2 for 10 seconds. Returns up to a maximum of 15% of your health. Does not stack with other similar effects. This effect can only occur once every 3 seconds. Capstone Bonus: Taking a physical hit while casting any of these spells will increase its critical strike chance by 30%.","Your direct single target Destruction spells have a 100% chance to heal you for 15% of the damage caused and reduce the attack power of the target by 2 for 10 seconds. Returns up to a maximum of 15% of your health. Does not stack with other similar effects. This effect can only occur once every 3 seconds. Capstone Bonus: Taking a physical hit while casting any of these spells will increase its critical strike chance by 30%."],"system":"classic"},{"id":"talent-1889","treeId":"warlock-destruction","index":21,"prerequisiteId":"talent-1678","prerequisiteRank":3,"prerequisites":[{"talentId":"talent-1678","requiredRank":3}],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_warlock_improvedsoulleech.png","maxRank":2,"name":"Improved Soul Leech","description":"Your Soul Leech effect also restores mana to you and your summoned demon equal to 4% of your missing mana, and has a 100% chance to grant Replenishment. @s:57669:0@","rankDescriptions":["Your Soul Leech effect also restores mana to you and your summoned demon equal to 4% of your missing mana, and has a 50% chance to grant Replenishment. @s:57669:0@","Your Soul Leech effect also restores mana to you and your summoned demon equal to 4% of your missing mana, and has a 100% chance to grant Replenishment. @s:57669:0@"],"system":"classic"},{"id":"talent-2045","treeId":"warlock-destruction","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_warlock_empoweredimp.png","maxRank":3,"name":"Empowered Imp","description":"Increases the damage done by your Summoned Imp's Firebolt by 30% and critical strike damage bonus by 100%. Capstone Bonus: Your Imp's Firebolt critical strikes increase the spell critical strike chance for your next Warlock Destruction direct spell by 100%. This effect lasts 8 seconds.","rankDescriptions":["Increases the damage done by your Summoned Imp's Firebolt by 10% and critical strike damage bonus by 33%. Capstone Bonus: Your Imp's Firebolt critical strikes increase the spell critical strike chance for your next Warlock Destruction direct spell by 100%. This effect lasts 8 seconds.","Increases the damage done by your Summoned Imp's Firebolt by 20% and critical strike damage bonus by 67%. Capstone Bonus: Your Imp's Firebolt critical strikes increase the spell critical strike chance for your next Warlock Destruction direct spell by 100%. This effect lasts 8 seconds.","Increases the damage done by your Summoned Imp's Firebolt by 30% and critical strike damage bonus by 100%. Capstone Bonus: Your Imp's Firebolt critical strikes increase the spell critical strike chance for your next Warlock Destruction direct spell by 100%. This effect lasts 8 seconds."],"system":"classic"},{"id":"talent-965","treeId":"warlock-destruction","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/spell_fire_soulburn.png","maxRank":3,"name":"Improved Searing Pain","description":"Increases the critical strike chance of your Searing Pain spell by 10%.","rankDescriptions":["Increases the critical strike chance of your Searing Pain spell by 4%.","Increases the critical strike chance of your Searing Pain spell by 7%.","Increases the critical strike chance of your Searing Pain spell by 10%."],"system":"classic"},{"id":"talent-986","treeId":"warlock-destruction","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/talents/icons/spell_fire_volcano.png","maxRank":3,"name":"Pyroclasm","description":"When you critically strike with Searing Pain, Scorch, or Conflagrate, your Fire and Shadow spell damage is increased by 6% for 10 seconds.","rankDescriptions":["When you critically strike with Searing Pain, Scorch, or Conflagrate, your Fire and Shadow spell damage is increased by 2% for 10 seconds.","When you critically strike with Searing Pain, Scorch, or Conflagrate, your Fire and Shadow spell damage is increased by 4% for 10 seconds.","When you critically strike with Searing Pain, Scorch, or Conflagrate, your Fire and Shadow spell damage is increased by 6% for 10 seconds."],"system":"classic"},{"id":"talent-1006","treeId":"warlock-affliction","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_curseofmannoroth.png","maxRank":2,"name":"Improved Curse of Weakness","description":"Increases the amount of attack power reduced by your Curse of Weakness by 20%.","rankDescriptions":["Increases the amount of attack power reduced by your Curse of Weakness by 10%.","Increases the amount of attack power reduced by your Curse of Weakness by 20%."],"system":"classic"},{"id":"talent-1021","treeId":"warlock-affliction","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_callofbone.png","maxRank":3,"name":"Grim Reach","description":"Increases the range of your damaging spells with a channeling or cast time by 6 yards. This does not stack with other similar effects. Capstone Bonus: Dealing periodic Shadow damage to an enemy within melee range has a 33% chance to trigger a Grim Strike, dealing Shadow damage and reducing the target's melee attack power by 2 for 30 seconds. Does not stack with other similar effects. This effect can only occur once every 15 seconds.","rankDescriptions":["Increases the range of your damaging spells with a channeling or cast time by 2 yards. This does not stack with other similar effects. Capstone Bonus: Dealing periodic Shadow damage to an enemy within melee range has a 33% chance to trigger a Grim Strike, dealing Shadow damage and reducing the target's melee attack power by 2 for 30 seconds. Does not stack with other similar effects. This effect can only occur once every 15 seconds.","Increases the range of your damaging spells with a channeling or cast time by 4 yards. This does not stack with other similar effects. Capstone Bonus: Dealing periodic Shadow damage to an enemy within melee range has a 33% chance to trigger a Grim Strike, dealing Shadow damage and reducing the target's melee attack power by 2 for 30 seconds. Does not stack with other similar effects. This effect can only occur once every 15 seconds.","Increases the range of your damaging spells with a channeling or cast time by 6 yards. This does not stack with other similar effects. Capstone Bonus: Dealing periodic Shadow damage to an enemy within melee range has a 33% chance to trigger a Grim Strike, dealing Shadow damage and reducing the target's melee attack power by 2 for 30 seconds. Does not stack with other similar effects. This effect can only occur once every 15 seconds."],"system":"classic"},{"id":"talent-1284","treeId":"warlock-affliction","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_curseofsargeras.png","maxRank":3,"name":"Improved Curse of Agony","description":"Increases the damage done by your Curse of Agony by 30%.the listed amount[][ Capstone Bonus: Curse of Agony can critically hit.]","rankDescriptions":["Increases the damage done by your Curse of Agony by 10%.the listed amount[][ Capstone Bonus: Curse of Agony can critically hit. ]","Increases the damage done by your Curse of Agony by 20%.the listed amount[][ Capstone Bonus: Curse of Agony can critically hit. ]","Increases the damage done by your Curse of Agony by 30%.the listed amount[][ Capstone Bonus: Curse of Agony can critically hit.]"],"system":"classic"},{"id":"talent-1668","treeId":"warlock-affliction","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/spell_shadow_deathscream.png","maxRank":2,"name":"Improved Howl of Terror","description":"Reduces the cast time of Howl of Terror by 0.6 sec and its global cooldown by 0.6 sec. Increases the damage your Howl of Terror victims can take before the effect breaks by 50%.","rankDescriptions":["Reduces the cast time of Howl of Terror by 0.3 sec and its global cooldown by 0.3 sec. Increases the damage your Howl of Terror victims can take before the effect breaks by 50%.","Reduces the cast time of Howl of Terror by 0.6 sec and its global cooldown by 0.6 sec. Increases the damage your Howl of Terror victims can take before the effect breaks by 50%."],"system":"classic"},{"id":"talent-1763","treeId":"warlock-affliction","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_shadowembrace.png","maxRank":5,"name":"Shadow Embrace","description":"Your direct damage Shadow spells, Drain Life and Drain Soul apply the Shadow Embrace effect. Increasing all periodic Shadow damage you deal to the target by 5%, and reduces all periodic healing and absorbs on the target by 5%. Lasts for 15 seconds. Stacks up to 3 times.","rankDescriptions":["Direct damaging Shadow spells, Drain Life and Drain Soul apply Shadow Embrace. Increasing all periodic Shadow damage you deal to the target by 1%, and reduces all periodic healing and absorbs on the target by 1%. Lasts for 15 seconds. Stacks up to 3 times.","Direct damaging Shadow spells, Drain Life and Drain Soul apply Shadow Embrace. Increasing all periodic Shadow damage you deal to the target by 2%, and reduces all periodic healing and absorbs on the target by 2%. Lasts for 15 seconds. Stacks up to 3 times.","Direct damaging Shadow spells, Drain Life and Drain Soul apply Shadow Embrace. Increasing all periodic Shadow damage you deal to the target by 3%, and reduces all periodic healing and absorbs on the target by 3%. Lasts for 15 seconds. Stacks up to 3 times.","Your direct damage Shadow spells, Drain Life and Drain Soul apply the Shadow Embrace effect Increasing all periodic Shadow damage you deal to the target by 4%, and reduces all periodic healing and absorbs on the target by 4%. Lasts for 15 seconds. Stacks up to 3 times.","Your direct damage Shadow spells, Drain Life and Drain Soul apply the Shadow Embrace effect. Increasing all periodic Shadow damage you deal to the target by 5%, and reduces all periodic healing and absorbs on the target by 5%. Lasts for 15 seconds. Stacks up to 3 times."],"system":"classic"},{"id":"talent-1873","treeId":"warlock-affliction","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_summonfelhunter.png","maxRank":3,"name":"Improved Felhunter","description":"Reduces the cooldown of your Felhunter's Devour Magic and Spell Lock by 20 seconds. Capstone Bonus: Your Felhunter's Shadow Bite cooldown is reduced by 4 sec, and it also restores 5% of its mana when used.","rankDescriptions":["Reduces the cooldown of your Felhunter's Devour Magic and Spell Lock by 7 seconds. Capstone Bonus: Your Felhunter's Shadow Bite cooldown is reduced by 4 sec, and it also restores 5% of its mana when used.","Reduces the cooldown of your Felhunter's Devour Magic and Spell Lock by 14 seconds. Capstone Bonus: Your Felhunter's Shadow Bite cooldown is reduced by 4 sec, and it also restores 5% of its mana when used.","Reduces the cooldown of your Felhunter's Devour Magic and Spell Lock by 20 seconds. Capstone Bonus: Your Felhunter's Shadow Bite cooldown is reduced by 4 sec, and it also restores 5% of its mana when used."],"system":"classic"},{"id":"talent-1875","treeId":"warlock-affliction","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/spell_shadow_deathsembrace.png","maxRank":3,"name":"Death's Embrace","description":"Increases the amount drained by your Drain Life by 30% while your health is at or below 20% health. Increases the damage done by your Shadow spells and abilities by 12% when your target is at or below 35% health.","rankDescriptions":["Increases the amount drained by your Drain Life by 10% while your health is at or below 20% health. Increases the damage done by your Shadow spells and abilities by 4% when your target is at or below 35% health.","Increases the amount drained by your Drain Life by 20% while your health is at or below 20% health. Increases the damage done by your Shadow spells and abilities by 8% when your target is at or below 35% health.","Increases the amount drained by your Drain Life by 30% while your health is at or below 20% health. Increases the damage done by your Shadow spells and abilities by 12% when your target is at or below 35% health."],"system":"classic"},{"id":"talent-1878","treeId":"warlock-affliction","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_warlock_eradication.png","maxRank":3,"name":"Eradication","description":"When you deal damage with Corruption, you have 15% chance to increase your spell casting speed by 20% for 10 seconds.","rankDescriptions":["When you deal damage with Corruption, you have 15% chance to increase your spell casting speed by 7% for 10 seconds.","When you deal damage with Corruption, you have 15% chance to increase your spell casting speed by 14% for 10 seconds.","When you deal damage with Corruption, you have 15% chance to increase your spell casting speed by 20% for 10 seconds."],"system":"classic"},{"id":"talent-2205","treeId":"warlock-affliction","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_possession.png","maxRank":2,"name":"Improved Fear","description":"Reduces the cast time by 0.2 sec. Your Fear inflicts a Nightmare on the target when the fear effect ends. The Nightmare effect reduces the target's movement speed by 30% for 2 seconds.","rankDescriptions":["Reduces the cast time by 0.1 sec. Your Fear inflicts a Nightmare on the target when the fear effect ends. The Nightmare effect reduces the target's movement speed by 15% for 2 seconds.","Reduces the cast time by 0.2 sec. Your Fear inflicts a Nightmare on the target when the fear effect ends. The Nightmare effect reduces the target's movement speed by 30% for 2 seconds."],"system":"classic"},{"id":"talent-1001","treeId":"warlock-affliction","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_fingerofdeath.png","maxRank":3,"name":"Fel Concentration","description":"Increases spell, ranged and melee haste by 3%. Reduces the pushback suffered from damaging attacks while casting by 100% Capstone Bonus: Your periodic magic damage heals you for 20% of the damage done while casting any damaging spell. (This heal can not exceed 5% of your maximum health)","rankDescriptions":["Increases spell, ranged and melee haste by 1%. Reduces the pushback suffered from damaging attacks while casting by 33% Capstone Bonus: Your periodic magic damage heals you for 20% of the damage done while casting any damaging spell. (This heal can not exceed 5% of your maximum health)","Increases spell, ranged and melee haste by 2%. Reduces the pushback suffered from damaging attacks while casting by 66% Capstone Bonus: Your periodic magic damage heals you for 20% of the damage done while casting any damaging spell. (This heal can not exceed 5% of your maximum health)","Increases spell, ranged and melee haste by 3%. Reduces the pushback suffered from damaging attacks while casting by 100% Capstone Bonus: Your periodic magic damage heals you for 20% of the damage done while casting any damaging spell. (This heal can not exceed 5% of your maximum health)"],"system":"classic"},{"id":"talent-1002","treeId":"warlock-affliction","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_twilight.png","maxRank":2,"name":"Nightfall","description":"Your Corruption, Drain Life, Drain Soul, and Shadowflame spells have a 8% chance for your next Shadow Bolt or Seed of Corruption spell becomes an instant cast and consumes 50% less mana. This Shadow Bolt deals 20% more damage to monsters. Deals 25% less damage to players. This effect can only occur every 5 seconds.","rankDescriptions":["Your Corruption, Drain Life, Drain Soul, and Shadowflame spells have a 4% chance for your next Shadow Bolt or Seed of Corruption spell becomes an instant cast and consumes 25% less mana. This Shadow Bolt deals 20% more damage to monsters. Deals 25% less damage to players. This effect can only occur every 5 seconds.","Your Corruption, Drain Life, Drain Soul, and Shadowflame spells have a 8% chance for your next Shadow Bolt or Seed of Corruption spell becomes an instant cast and consumes 50% less mana. This Shadow Bolt deals 20% more damage to monsters. Deals 25% less damage to players. This effect can only occur every 5 seconds."],"system":"classic"},{"id":"talent-1005","treeId":"warlock-affliction","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_unsummonbuilding.png","maxRank":3,"name":"Death's Grasp","description":"Increases your chance to hit with spells and abilities by 3%. Increases your spell haste by 3%.","rankDescriptions":["Increases your chance to hit with spells and abilities by 1%. Increases your spell haste by 1%.","Increases your chance to hit with spells and abilities by 2%. Increases your spell haste by 2%.","Increases your chance to hit with spells and abilities by 3%. Increases your spell haste by 3%."],"system":"classic"},{"id":"talent-1041","treeId":"warlock-affliction","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_requiem.png","maxRank":2,"name":"Siphon Life","description":"When you deal damage with your Corruption spell, you are instantly healed for the listed amount% of the damage done. (Up to 5% of your Maximum Health). Your Corruption, Seed of Corruption and Unstable Affliction damage over time effects is increased by 4%.","rankDescriptions":["When you deal damage with your Corruption spell, you are instantly healed for the listed amount% of the damage done. (Up to 5% of your Maximum Health). Your Corruption, Seed of Corruption and Unstable Affliction damage over time effects is increased by 2%.","When you deal damage with your Corruption spell, you are instantly healed for the listed amount% of the damage done. (Up to 5% of your Maximum Health). Your Corruption, Seed of Corruption and Unstable Affliction damage over time effects is increased by 4%."],"system":"classic"},{"id":"talent-1042","treeId":"warlock-affliction","index":18,"prerequisiteId":"talent-1041","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1041","requiredRank":1}],"column":2,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_shadetruesight.png","maxRank":3,"name":"Shadow Mastery","description":"Increases the damage dealt or life drained by your Shadow spells by 6%.","rankDescriptions":["Increases the damage dealt or life drained by your Shadow spells by 2%.","Increases the damage dealt or life drained by your Shadow spells by 4%.","Increases the damage dealt or life drained by your Shadow spells by 6%."],"system":"classic"},{"id":"talent-1101","treeId":"warlock-affliction","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_haunting.png","maxRank":2,"name":"Improved Drain Soul","description":"Returns 25% of your maximum mana if the target is killed by you while you drain its soul. The target must grant experience or honor. Your Affliction spells generate 20% less threat.","rankDescriptions":["Returns 12% of your maximum mana if the target is killed by you while you drain its soul. The target must grant experience or honor. Your Affliction spells generate 10% less threat.","Returns 25% of your maximum mana if the target is killed by you while you drain its soul. The target must grant experience or honor. Your Affliction spells generate 20% less threat."],"system":"classic"},{"id":"talent-1669","treeId":"warlock-affliction","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_shadow_painfulafflictions.png","maxRank":5,"name":"Contagion","description":"Increases the base damage of the final tick of your Corruption by 150%. Capstone Bonus: Your Corruption is now contagious. If the final tick of Corruption occurs while you're draining the targets soul, the area becomes contaminated, spreading Corruption to all targets within 10 yards.","rankDescriptions":["Increases the base damage of the final tick of your Corruption by 30%. Capstone Bonus: Your Corruption becomes contagious. If the final tick of Corruption occurs while you are draining the targets soul, the area becomes contaminated, spreading Corruption to all targets within 10 yards.","Increases the base damage of the final tick of your Corruption by 60%. Capstone Bonus: Your Corruption becomes contagious. If the final tick of Corruption occurs while you are draining the targets soul, the area becomes contaminated, spreading Corruption to all targets within 10 yards.","Increases the base damage of the final tick of your Corruption by 90%. Capstone Bonus: Your Corruption becomes contagious. If the final tick of Corruption occurs while you are draining the targets soul, the area becomes contaminated, spreading Corruption to all targets within 10 yards.","Increases the base damage of the final tick of your Corruption by 120%. Capstone Bonus: Your Corruption becomes contagious. If the final tick of Corruption occurs while you are draining the targets soul, the area becomes contaminated, spreading Corruption to all targets within 10 yards.","Increases the base damage of the final tick of your Corruption by 150%. Capstone Bonus: Your Corruption is now contagious. If the final tick of Corruption occurs while you're draining the targets soul, the area becomes contaminated, spreading Corruption to all targets within 10 yards."],"system":"classic"},{"id":"talent-1670","treeId":"warlock-affliction","index":25,"prerequisiteId":"talent-1669","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1669","requiredRank":5}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_shadow_unstableaffliction_3.png","maxRank":1,"name":"Unstable Affliction","description":"Shadow energy slowly destroys the target, causing 550 damage over 15 seconds. In addition, if the Unstable Affliction is dispelled it will cause 990 damage to the dispeller and silence them for 5 seconds. This spell benefits from haste. the listed amount[Periodic damage from Unstable Affliction can critically strike while in Wildcard][]","rankDescriptions":["Shadow energy slowly destroys the target, causing 550 damage over 15 seconds. In addition, if the Unstable Affliction is dispelled it will cause 990 damage to the dispeller and silence them for 5 seconds. This spell benefits from haste. the listed amount[Periodic damage from Unstable Affliction can critically strike while in Wildcard][]"],"system":"classic"},{"id":"talent-1876","treeId":"warlock-affliction","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_warlock_everlastingaffliction.png","maxRank":3,"name":"Everlasting Affliction","description":"Increases the spell damage scaling of your Corruption and Unstable Affliction by 25%. Drain Life, Drain Soul, Shadow Bolt, Haunt and Howl of Terror spells have a 100% chance to reset the duration of your Corruption spell on the target.","rankDescriptions":["Increases the spell damage scaling of your Corruption and Unstable Affliction by 8%. Drain Life, Drain Soul, Shadow Bolt, Haunt and Howl of Terror spells have a 33% chance to reset the duration of your Corruption spell on the target.","Increases the spell damage scaling of your Corruption and Unstable Affliction by 16%. Drain Life, Drain Soul, Shadow Bolt, Haunt and Howl of Terror spells have a 66% chance to reset the duration of your Corruption spell on the target.","Increases the spell damage scaling of your Corruption and Unstable Affliction by 25%. Drain Life, Drain Soul, Shadow Bolt, Haunt and Howl of Terror spells have a 100% chance to reset the duration of your Corruption spell on the target."],"system":"classic"},{"id":"talent-2041","treeId":"warlock-affliction","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_warlock_haunt.png","maxRank":1,"name":"Haunt","description":"You send a ghostly soul into the target, dealing 466 Shadow damage and increasing all damage done by your Warlock Shadow damage-over-time effects on the target by 20% for 12 seconds. When the Haunt spell ends or is dispelled, the soul returns to you, healing you for 100% of the damage. (up to 20% of your Maximum Health).","rankDescriptions":["You send a ghostly soul into the target, dealing 466 Shadow damage and increasing all damage done by your Warlock Shadow damage-over-time effects on the target by 20% for 12 seconds. When the Haunt spell ends or is dispelled, the soul returns to you, healing you for 100% of the damage. (up to 20% of your Maximum Health)."],"system":"classic"},{"id":"talent-1003","treeId":"warlock-affliction","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_abominationexplosion.png","maxRank":3,"name":"Improved Corruption","description":"Increases the damage done by your Corruption by 9%. Increases the critical strike chance of your Seed of Corruption by 3%. Capstone Bonus: Corruption now benefits from spell haste.","rankDescriptions":["Increases the damage done by your Corruption by 3%. Increases the critical strike chance of your Seed of Corruption by 1%. Capstone Bonus: Corruption now benefits from spell haste.","Increases the damage done by your Corruption by 6%. Increases the critical strike chance of your Seed of Corruption by 2%. Capstone Bonus: Corruption now benefits from spell haste.","Increases the damage done by your Corruption by 9%. Increases the critical strike chance of your Seed of Corruption by 3%. Capstone Bonus: Corruption now benefits from spell haste."],"system":"classic"},{"id":"talent-1007","treeId":"warlock-affliction","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_burningspirit.png","maxRank":5,"name":"Improved Life Tap","description":"Increases the effect of Life Tap by 75%. Capstone Bonus: Your Life Tap restores 50% more mana if used when your mana is below 20%.","rankDescriptions":["Increases the effect of Life Tap by 15%. Capstone Bonus: Your Life Tap restores 50% more mana if used when your mana is below 20%.","Increases the effect of Life Tap by 30%. Capstone Bonus: Your Life Tap restores 50% more mana if used when your mana is below 20%.","Increases the effect of Life Tap by 45%. Capstone Bonus: Your Life Tap restores 50% more mana if used when your mana is below 20%.","Increases the effect of Life Tap by 60%. Capstone Bonus: Your Life Tap restores 50% more mana if used when your mana is below 20%.","Increases the effect of Life Tap by 75%. Capstone Bonus: Your Life Tap restores 50% more mana if used when your mana is below 20%."],"system":"classic"},{"id":"talent-1022","treeId":"warlock-affliction","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_shadow_darkritual.png","maxRank":1,"name":"Dark Pact","description":"Drains the listed amountthe listed amount of your summoned demon's mana, returning 100% to you.","rankDescriptions":["Drains the listed amountthe listed amount of your summoned demon's mana, returning 100% to you."],"system":"classic"},{"id":"talent-1061","treeId":"warlock-affliction","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_contagion.png","maxRank":2,"name":"Amplify Curse","description":"Increases the damage done by your Curse of Agony and Curse of Doom by 6% Inceases the effectiveness of your Curse of Tongues by an additional 10%. Capstone Bonus: If your Curse of Agony or Curse of the Elements is dispelled, your next Warlock Curse within 5 seconds will apply an additional effect that deals bonus Shadow damage to the target after 3 seconds.","rankDescriptions":["Increases the damage done by your Curse of Agony and Curse of Doom by 3% Inceases the effectiveness of your Curse of Tongues by an additional 5%. Capstone Bonus: If your Curse of Agony or Curse of the Elements is dispelled, your next Warlock Curse within 5 seconds will apply an additional effect that deals bonus Shadow damage to the target after 3 seconds.","Increases the damage done by your Curse of Agony and Curse of Doom by 6% Inceases the effectiveness of your Curse of Tongues by an additional 10%. Capstone Bonus: If your Curse of Agony or Curse of the Elements is dispelled, your next Warlock Curse within 5 seconds will apply an additional effect that deals bonus Shadow damage to the target after 3 seconds."],"system":"classic"},{"id":"talent-1081","treeId":"warlock-affliction","index":16,"prerequisiteId":"talent-1061","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1061","requiredRank":1}],"column":3,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_grimward.png","maxRank":1,"name":"Curse of Exhaustion","description":"Reduces the target's movement speed by 50% for 10 sec.","rankDescriptions":["Reduces the target's movement speed by 50% for 10 sec."],"system":"classic"},{"id":"talent-1667","treeId":"warlock-affliction","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_shadow_curseofachimonde.png","maxRank":3,"name":"Malediction","description":"Increases all damage done by 3%. Increases the periodic critical strike chance of your Corruption and Unstable Affliction spells by 9%.","rankDescriptions":["Increases all damage done by 1%. Increases the periodic critical strike chance of your Corruption and Unstable Affliction spells by 3%.","Increases all damage done by 2%. Increases the periodic critical strike chance of your Corruption and Unstable Affliction spells by 6%.","Increases all damage done by 3%. Increases the periodic critical strike chance of your Corruption and Unstable Affliction spells by 9%."],"system":"classic"},{"id":"talent-2245","treeId":"warlock-affliction","index":26,"prerequisiteId":"talent-1670","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1670","requiredRank":1}],"column":3,"row":9,"icon":"/assets/ui/talents/icons/spell_shadow_unstableaffliction_2.png","maxRank":3,"name":"Pandemic","description":"Increases the damage of your Corruption and Unstable Affliction by 6%. the listed amount[Capstone Bonus: Drain Soul can Critically Hit.][Capstone Bonus: Your Corruption, Shadowflame, Conflagrate, Unstable Affliction and Drain Soul can critically hit.]","rankDescriptions":["Increases the damage of your Corruption and Unstable Affliction by 2%. the listed amount[Capstone Bonus: Drain Soul can Critically Hit.][Capstone Bonus: Your Corruption, Shadowflame, Conflagrate, Unstable Affliction and Drain Soul can critically hit.]","Increases the damage of your Corruption and Unstable Affliction by 4%. the listed amount[Capstone Bonus: The final rank of this talent grants your Drain Soul periodic damage the ability to critically hit.][Capstone Bonus: The final rank of this talent grants your Corruption, Shadowflame, Conflagrate, Unstable Affliction and Drain Soul periodic damage the ability to critically hit.]","Increases the damage of your Corruption and Unstable Affliction by 6%. the listed amount[Capstone Bonus: Drain Soul can Critically Hit.][Capstone Bonus: Your Corruption, Shadowflame, Conflagrate, Unstable Affliction and Drain Soul can critically hit.]"],"system":"classic"},{"id":"talent-1004","treeId":"warlock-affliction","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_lifedrain02.png","maxRank":2,"name":"Soul Siphon","description":"Increases the amount drained by your Drain Life and Drain Soul spells by an additional 6% for each of your Affliction effects on the target, up to a maximum of 18% additional effect.","rankDescriptions":["Increases the amount drained by your Drain Life and Drain Soul spells by 3% for each of your Affliction effects on the target, up to a maximum of 9% additional effect.","Increases the amount drained by your Drain Life and Drain Soul spells by an additional 6% for each of your Affliction effects on the target, up to a maximum of 18% additional effect."],"system":"classic"},{"id":"talent-1764","treeId":"warlock-affliction","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_abominationexplosion.png","maxRank":3,"name":"Empowered Corruption","description":"Increases the spell damage scaling of Corruption by 30%.","rankDescriptions":["Increases the spell damage scaling of Corruption by 10%.","Increases the spell damage scaling of Corruption by 20%.","Increases the spell damage scaling of Corruption by 30%."],"system":"classic"},{"id":"talent-1221","treeId":"warlock-demonology","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/inv_stone_04.png","maxRank":2,"name":"Improved Healthstone","description":"Increases your stamina by 2%. Increases the healing you take from healthstones by 20%.","rankDescriptions":["Increases your stamina by 1%. Increases the healing you take from healthstones by 10%.","Increases your stamina by 2%. Increases the healing you take from healthstones by 20%."],"system":"classic"},{"id":"talent-1224","treeId":"warlock-demonology","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_lifedrain.png","maxRank":2,"name":"Improved Health Funnel","description":"Increases the amount of health transferred by your Health Funnel spell by 20%. and reduces the health cost by 20%. Your summoned Demon takes 30% less damage while under the effect of your Health Funnel.","rankDescriptions":["Increases the amount of health transferred by your Health Funnel spell by 10%. and reduces the health cost by 10%. Your summoned Demon takes 15% less damage while under the effect of your Health Funnel.","Increases the amount of health transferred by your Health Funnel spell by 20%. and reduces the health cost by 20%. Your summoned Demon takes 30% less damage while under the effect of your Health Funnel."],"system":"classic"},{"id":"talent-1243","treeId":"warlock-demonology","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_summonsuccubus.png","maxRank":3,"name":"Improved Succubus","description":"Reduces the cast time of your Succubus' Seduction by 50% and reduces the cooldown of it by 10 sec.","rankDescriptions":["Reduces the cast time of your Succubus' Seduction by 17% and reduces the cooldown of it by 4 sec.","Reduces the cast time of your Succubus' Seduction by 34% and reduces the cooldown of it by 7 sec.","Reduces the cast time of your Succubus' Seduction by 50% and reduces the cooldown of it by 10 sec."],"system":"classic"},{"id":"talent-1281","treeId":"warlock-demonology","index":14,"prerequisiteId":"talent-1262","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1262","requiredRank":5}],"column":1,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_manafeed.png","maxRank":2,"name":"Mana Feed","description":"When you gain mana from Drain Mana or Life Tap spells, your tamed pet gains 150% of the mana you gain. Your tamed pet regenerates 8% of its missing mana every 5 sec. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","rankDescriptions":["When you gain mana from Drain Mana or Life Tap spells, your tamed pet gains 100% of the mana you gain. Your tamed pet regenerates 4% of its missing mana every 5 sec. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast.","When you gain mana from Drain Mana or Life Tap spells, your tamed pet gains 150% of the mana you gain. Your tamed pet regenerates 8% of its missing mana every 5 sec. Tamed Pet includes Summoned Demon, Enslave Demon, Dominate Undead, Tame Dragonkin or Tether Elemental, and Tame Beast."],"system":"classic"},{"id":"talent-1680","treeId":"warlock-demonology","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/spell_shadow_demonicfortitude.png","maxRank":3,"name":"Demonic Resilience","description":"Reduces the chance you'll be critically hit by melee and spells by 3%, reduces all damage your summoned demon and dominated demon takes by 15%. the listed amount[While in Dark Apotheosis, all damage taken is reduced by 6%.][]","rankDescriptions":["Reduces the chance you'll be critically hit by melee and spells by 1%, reduces all damage your summoned demon and dominated demon takes by 5%. the listed amount[While in Dark Apotheosis, all damage taken is reduced by 2%.][]","Reduces the chance you'll be critically hit by melee and spells by 2%, reduces all damage your summoned demon and dominated demon takes by 10%. the listed amount[While in Dark Apotheosis, all damage taken is reduced by 4%.][]","Reduces the chance you'll be critically hit by melee and spells by 3%, reduces all damage your summoned demon and dominated demon takes by 15%. the listed amount[While in Dark Apotheosis, all damage taken is reduced by 6%.][]"],"system":"classic"},{"id":"talent-1882","treeId":"warlock-demonology","index":23,"prerequisiteId":"talent-1673","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1673","requiredRank":5}],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_warlock_improveddemonictactics.png","maxRank":3,"name":"Improved Demonic Tactics","description":"Increases your Wild Imps, summoned demon, tamed pet's critical strike chance equal to 30% of your spell critical strike chance.","rankDescriptions":["Increases your Wild Imps, summoned demon, tamed pet's critical strike chance equal to 10% of your spell critical strike chance.","Increases your Wild Imps, summoned demon, tamed pet's critical strike chance equal to 20% of your spell critical strike chance.","Increases your Wild Imps, summoned demon, tamed pet's critical strike chance equal to 30% of your spell critical strike chance."],"system":"classic"},{"id":"talent-1222","treeId":"warlock-demonology","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_summonimp.png","maxRank":3,"name":"Improved Imp","description":"Increases the damage dealt by your Imp and Wild Imps by 25% and the effect of Fire Shield and Blood Pact by 20%.","rankDescriptions":["Increases the damage dealt by your Imp and Wild Imps by 8% and the effect of Fire Shield and Blood Pact by 7%.","Increases the damage dealt by your Imp and Wild Imps by 16% and the effect of Fire Shield and Blood Pact by 14%.","Increases the damage dealt by your Imp and Wild Imps by 25% and the effect of Fire Shield and Blood Pact by 20%."],"system":"classic"},{"id":"talent-1225","treeId":"warlock-demonology","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_shadow_summonvoidwalker.png","maxRank":3,"name":"Demonic Brutality","description":"Increases the effectiveness of your Voidwalker's Torment, Consume Shadows, Sacrifice and Suffering spells by 30%. Increases the attack power bonus on your Felguard's Demonic Frenzy effect by 3%.","rankDescriptions":["Increases the effectiveness of your Voidwalker's Torment, Consume Shadows, Sacrifice and Suffering spells by 10%. Increases the attack power bonus on your Felguard's Demonic Frenzy effect by 1%.","Increases the effectiveness of your Voidwalker's Torment, Consume Shadows, Sacrifice and Suffering spells by 20%. Increases the attack power bonus on your Felguard's Demonic Frenzy effect by 2%.","Increases the effectiveness of your Voidwalker's Torment, Consume Shadows, Sacrifice and Suffering spells by 30%. Increases the attack power bonus on your Felguard's Demonic Frenzy effect by 3%."],"system":"classic"},{"id":"talent-1244","treeId":"warlock-demonology","index":16,"prerequisiteId":"talent-1262","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1262","requiredRank":5}],"column":2,"row":6,"icon":"/assets/ui/talents/icons/spell_shadow_shadowpact.png","maxRank":5,"name":"Master Demonologist","description":"Grants both the Warlock and the summoned demon an effect as long as that demon is active. Imp - Increases your Fire damage by 5%, and increases the critical effect chance of your Fire spells by 5%. Voidwalker - Reduces Physical damage taken by 10%. Succubus - Increases your Shadow damage by 5%, and increases the critical effect chance of your Shadow spells by 5%. Felhunter - Reduces all spell damage taken by 10%. Felguard - Increases all damage done by 5%, and reduces all damage taken by 5%. Enslaved Demons - Increases all damage done by 5%, and reduces all damage taken by 5%.","rankDescriptions":["Grants both the Warlock and the summoned demon an effect as long as that demon is active. Imp - Increases your Fire damage by 1%, and increases the critical effect chance of your Fire spells by 1%. Voidwalker - Reduces Physical damage taken by 2%. Succubus - Increases your Shadow damage by 1%, and increases the critical effect chance of your Shadow spells by 1%. Felhunter - Reduces all spell damage taken by 2%. Felguard - Increases all damage done by 1%, and reduces all damage taken by 1%. Enslaved Demons - Increases all damage done by 1%, and reduces all damage taken by 1%.","Grants both the Warlock and the summoned demon an effect as long as that demon is active. Imp - Increases your Fire damage by 2%, and increases the critical effect chance of your Fire spells by 2%. Voidwalker - Reduces Physical damage taken by 4%. Succubus - Increases your Shadow damage by 2%, and increases the critical effect chance of your Shadow spells by 2%. Felhunter - Reduces all spell damage taken by 4%. Felguard - Increases all damage done by 2%, and reduces all damage taken by 2%. Enslaved Demons - Increases all damage done by 2%, and reduces all damage taken by 2%.","Grants both the Warlock and the summoned demon an effect as long as that demon is active. Imp - Increases your Fire damage by 3%, and increases the critical effect chance of your Fire spells by 3%. Voidwalker - Reduces Physical damage taken by 6%. Succubus - Increases your Shadow damage by 3%, and increases the critical effect chance of your Shadow spells by 3%. Felhunter - Reduces all spell damage taken by 6%. Felguard - Increases all damage done by 3%, and reduces all damage taken by 3%. Enslaved Demons - Increases all damage done by 3%, and reduces all damage taken by 3%.","Grants both the Warlock and the summoned demon an effect as long as that demon is active. Imp - Increases your Fire damage by 4%, and increases the critical effect chance of your Fire spells by 4%. Voidwalker - Reduces Physical damage taken by 8%. Succubus - Increases your Shadow damage by 4%, and increases the critical effect chance of your Shadow spells by 4%. Felhunter - Reduces all spell damage taken by 8%. Felguard - Increases all damage done by 4%, and reduces all damage taken by 4%. Enslaved Demons - Increases all damage done by 4%, and reduces all damage taken by 4%.","Grants both the Warlock and the summoned demon an effect as long as that demon is active. Imp - Increases your Fire damage by 5%, and increases the critical effect chance of your Fire spells by 5%. Voidwalker - Reduces Physical damage taken by 10%. Succubus - Increases your Shadow damage by 5%, and increases the critical effect chance of your Shadow spells by 5%. Felhunter - Reduces all spell damage taken by 10%. Felguard - Increases all damage done by 5%, and reduces all damage taken by 5%. Enslaved Demons - Increases all damage done by 5%, and reduces all damage taken by 5%."],"system":"classic"},{"id":"talent-1262","treeId":"warlock-demonology","index":12,"prerequisiteId":"talent-1282","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1282","requiredRank":1}],"column":2,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_shadowworddominate.png","maxRank":5,"name":"Unholy Power","description":"Increases the damage done by your Voidwalker, Succubus, Felhunter and Felguard's melee attacks, your Imp's Firebolt and the Firebolt of your Wild Imps by 35%. Increases the critical strike chance of your Hand of Gul'dan by 15%.","rankDescriptions":["Increases the damage done by your Voidwalker, Succubus, Felhunter and Felguard's melee attacks, your Imp's Firebolt and the Firebolt of your Wild Imps by 7%. Increases the critical strike chance of your Hand of Gul'dan by 3%.","Increases the damage done by your Voidwalker, Succubus, Felhunter and Felguard's melee attacks, your Imp's Firebolt and the Firebolt of your Wild Imps by 14%. Increases the critical strike chance of your Hand of Gul'dan by 6%.","Increases the damage done by your Voidwalker, Succubus, Felhunter and Felguard's melee attacks, your Imp's Firebolt and the Firebolt of your Wild Imps by 21%. Increases the critical strike chance of your Hand of Gul'dan by 9%.","Increases the damage done by your Voidwalker, Succubus, Felhunter and Felguard's melee attacks, your Imp's Firebolt and the Firebolt of your Wild Imps by 28%. Increases the critical strike chance of your Hand of Gul'dan by 12%.","Increases the damage done by your Voidwalker, Succubus, Felhunter and Felguard's melee attacks, your Imp's Firebolt and the Firebolt of your Wild Imps by 35%. Increases the critical strike chance of your Hand of Gul'dan by 15%."],"system":"classic"},{"id":"talent-1282","treeId":"warlock-demonology","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_gathershadows.png","maxRank":1,"name":"Soul Link","description":"When active, 6% of all damage taken by the caster is taken by your Summoned or Enslaved Demon. That damage cannot be prevented. Lasts as long as the demon is active, controlled and you are within 30 yards of it. Cannot Soul Link a Summoned Imp.","rankDescriptions":["When active, 6% of all damage taken by the caster is taken by your Summoned or Enslaved Demon. That damage cannot be prevented. Lasts as long as the demon is active, controlled and you are within 30 yards of it. Cannot Soul Link a Summoned Imp."],"system":"classic"},{"id":"talent-1672","treeId":"warlock-demonology","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/spell_shadow_summonfelguard.png","maxRank":1,"name":"Summon Felguard","description":"@learns:954705@ Summons a Felguard under the command of the Warlock.","rankDescriptions":["@learns:954705@ Summons a Felguard under the command of the Warlock."],"system":"classic"},{"id":"talent-1673","treeId":"warlock-demonology","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/spell_shadow_demonictactics.png","maxRank":5,"name":"Demonic Tactics","description":"Increases your critical strike chance with all spells and attacks by 5%. Increases the critical strike chance of your Wild Imps, summoned demon, and tamed pet by 15%.","rankDescriptions":["Increases your critical strike chance with all spells and attacks by 1%. Increases the critical strike chance of your Wild Imps, summoned demon, and tamed pet by 3%.","Increases your critical strike chance with all spells and attacks by 2%. Increases the critical strike chance of your Wild Imps, summoned demon, and tamed pet by 6%.","Increases your critical strike chance with all spells and attacks by 3%. Increases the critical strike chance of your Wild Imps, summoned demon, and tamed pet by 9%.","Increases your critical strike chance with all spells and attacks by 4%. Increases the critical strike chance of your Wild Imps, summoned demon, and tamed pet by 12%.","Increases your critical strike chance with all spells and attacks by 5%. Increases the critical strike chance of your Wild Imps, summoned demon, and tamed pet by 15%."],"system":"classic"},{"id":"talent-1880","treeId":"warlock-demonology","index":19,"prerequisiteId":"talent-1244","prerequisiteRank":5,"prerequisites":[{"talentId":"talent-1244","requiredRank":5}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/ability_warlock_demonicempowerment.png","maxRank":1,"name":"Demonic Empowerment","description":"Grants the Warlock's summoned demon Empowerment. Imp - Increases the Imp's spell critical strike chance by 20% for 30 seconds. Voidwalker - Increases the Voidwalker's health by 20%, and its threat generated from spells and attacks by 20% for 20 seconds. Succubus - Instantly vanishes, causing the Succubus to go into an improved Invisibility state. The vanish effect removes all stuns, snares and movement impairing effects from the Succubus. Felhunter - Dispels all magical effects from the Felhunter. Felguard - Increases the Felguard's attack speed by 20% and breaks all stun, snare and movement impairing effects and makes your Felguard immune to them for 15 seconds.","rankDescriptions":["Grants the Warlock's summoned demon Empowerment. Imp - Increases the Imp's spell critical strike chance by 20% for 30 seconds. Voidwalker - Increases the Voidwalker's health by 20%, and its threat generated from spells and attacks by 20% for 20 seconds. Succubus - Instantly vanishes, causing the Succubus to go into an improved Invisibility state. The vanish effect removes all stuns, snares and movement impairing effects from the Succubus. Felhunter - Dispels all magical effects from the Felhunter. Felguard - Increases the Felguard's attack speed by 20% and breaks all stun, snare and movement impairing effects and makes your Felguard immune to them for 15 seconds."],"system":"classic"},{"id":"talent-1885","treeId":"warlock-demonology","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/spell_shadow_demonicpact.png","maxRank":3,"name":"Demonic Pact","description":"Increases your Fire and Shadow spell damage done by 3%. Capstone Bonus: Your summoned demon's critical strikes apply the Demonic Pact to itself and its owner, increasing spell damage by 5%. Casts a lesser effect to party and raid members increasing spell power and intellect. Does not stack with other similar effects. This effect has a 20 sec cooldown. Does not work on Enslaved demons.","rankDescriptions":["Increases your Fire and Shadow spell damage done by 1%. Capstone Bonus: Your summoned demon's critical strikes apply the Demonic Pact to itself and its owner, increasing spell damage by 5%. Casts a lesser effect to party and raid members increasing spell power and intellect. Does not stack with other similar effects. This effect has a 20 sec cooldown. Does not work on Enslaved demons.","Increases your Fire and Shadow spell damage done by 2%. Capstone Bonus: Your summoned demon's critical strikes apply the Demonic Pact to itself and its owner, increasing spell damage by 5%. Casts a lesser effect to party and raid members increasing spell power and intellect. Does not stack with other similar effects. This effect has a 20 sec cooldown. Does not work on Enslaved demons.","Increases your Fire and Shadow spell damage done by 3%. Capstone Bonus: Your summoned demon's critical strikes apply the Demonic Pact to itself and its owner, increasing spell damage by 5%. Casts a lesser effect to party and raid members increasing spell power and intellect. Does not stack with other similar effects. This effect has a 20 sec cooldown. Does not work on Enslaved demons."],"system":"classic"},{"id":"talent-1886","treeId":"warlock-demonology","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/spell_shadow_demonform.png","maxRank":1,"name":"Metamorphosis","description":"You transform into a Demon for 30 seconds. This form grants you some unique demon abilities in addition to your normal abilities. You may only use spells and abilities that deal Fire or Shadow damage(and spells usable while shapeshifted) in this form. This form increases your armor from cloth and leather by 130%. Increases your damage by 15%. Reduces the chance you'll be critically hit by melee attacks by 6% and reduces the duration of stun and snare effects by 25%. Increases damage by 10% vs players.","rankDescriptions":["You transform into a Demon for 30 seconds. This form grants you some unique demon abilities in addition to your normal abilities. You may only use spells and abilities that deal Fire or Shadow damage(and spells usable while shapeshifted) in this form. This form increases your armor from cloth and leather by 130%. Increases your damage by 15%. Reduces the chance you'll be critically hit by melee attacks by 6% and reduces the duration of stun and snare effects by 25%. Increases damage by 10% vs players."],"system":"classic"},{"id":"talent-1223","treeId":"warlock-demonology","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_metamorphosis.png","maxRank":3,"name":"Demonic Embrace","description":"Increases the percentage of damage shared via your Soul Link by an additional 6%.","rankDescriptions":["Increases the percentage of damage shared via your Soul Link by an additional 2%.","Increases the percentage of damage shared via your Soul Link by an additional 4%.","Increases the percentage of damage shared via your Soul Link by an additional 6%."],"system":"classic"},{"id":"talent-1226","treeId":"warlock-demonology","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_removecurse.png","maxRank":1,"name":"Fel Domination","description":"Your next Imp, Voidwalker, Succubus, Felhunter or Felguard Summon spell has its casting time reduced by 5.5 sec and its Mana cost reduced by 50%.","rankDescriptions":["Your next Imp, Voidwalker, Succubus, Felhunter or Felguard Summon spell has its casting time reduced by 5.5 sec and its Mana cost reduced by 50%."],"system":"classic"},{"id":"talent-1227","treeId":"warlock-demonology","index":13,"prerequisiteId":"talent-1226","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1226","requiredRank":1}],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_impphaseshift.png","maxRank":2,"name":"Master Summoner","description":"Reduces the casting time of your Imp, Voidwalker, Succubus, Felhunter and Fel Guard Summoning spells by 4 sec and the Mana cost by 40%. Increases the duration of your Infernal and Doomguard summons by 6 min and your Wild Imps from Hand of Gul'Dan by 5 seconds.","rankDescriptions":["Reduces the casting time of your Imp, Voidwalker, Succubus, Felhunter and Fel Guard Summoning spells by 2 sec and the Mana cost by 20%. Increases the duration of your Infernal and Doomguard summons by 3 min and your Wild Imps from Hand of Gul'Dan by 2.5 seconds.","Reduces the casting time of your Imp, Voidwalker, Succubus, Felhunter and Fel Guard Summoning spells by 4 sec and the Mana cost by 40%. Increases the duration of your Infernal and Doomguard summons by 6 min and your Wild Imps from Hand of Gul'Dan by 5 seconds."],"system":"classic"},{"id":"talent-1242","treeId":"warlock-demonology","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_holy_magicalsentry.png","maxRank":3,"name":"Fel Vitality","description":"Increases the Stamina and Intellect of your Imp, Voidwalker, Succubus, Felhunter and Felguard by 30%.","rankDescriptions":["Increases the Stamina and Intellect of your Imp, Voidwalker, Succubus, Felhunter and Felguard by 10%.","Increases the Stamina and Intellect of your Imp, Voidwalker, Succubus, Felhunter and Felguard by 20%.","Increases the Stamina and Intellect of your Imp, Voidwalker, Succubus, Felhunter and Felguard by 30%."],"system":"classic"},{"id":"talent-1261","treeId":"warlock-demonology","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/inv_ammo_firetar.png","maxRank":2,"name":"Master Conjuror","description":"Increases the combat ratings gained from your conjured Firestone and Spellstone by 100%.","rankDescriptions":["Increases the combat ratings gained from your conjured Firestone and Spellstone by 50%.","Increases the combat ratings gained from your conjured Firestone and Spellstone by 100%."],"system":"classic"},{"id":"talent-1263","treeId":"warlock-demonology","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/spell_shadow_improvedvampiricembrace.png","maxRank":3,"name":"Demonic Knowledge","description":"Increases your spell damage by an amount equal to 15% of your summoned demon's Intellect.","rankDescriptions":["Increases your spell damage by an amount equal to 5% of your summoned demon's Intellect.","Increases your spell damage by an amount equal to 10% of your summoned demon's Intellect.","Increases your spell damage by an amount equal to 15% of your summoned demon's Intellect."],"system":"classic"},{"id":"talent-1283","treeId":"warlock-demonology","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/ability_warlock_moltencore.png","maxRank":2,"name":"Molten Core","description":"Increases the duration of your Immolate by 6 sec. Dealing damage with Corruption has a 18% chance to grant you Molten Core and when Corruption is dispelled you gain 1 charge of Molten Core. Molten Core empowers your next 3 spells cast within 15 seconds: Incinerate - Increases damage done by 18% and reduces cast time by 30%. Soul Fire, Hand of Gul'dan, Shadow Bolt - Increases damage done by 18% and increases critical strike chance by 30%.","rankDescriptions":["Increases the duration of your Immolate by 3 sec. Dealing damage with Corruption has a 18% chance to grant you Molten Core and when Corruption is dispelled you have a 50% chance to gain 1 charge of Molten Core. Molten Core empowers your next 3 spells cast within 15 seconds: Incinerate - Increases damage done by 9% and reduces cast time by 15%. Soul Fire, Hand of Gul'dan, Shadow Bolt - Increases damage done by 9% and increases critical strike chance by 15%.","Increases the duration of your Immolate by 6 sec. Dealing damage with Corruption has a 18% chance to grant you Molten Core and when Corruption is dispelled you gain 1 charge of Molten Core. Molten Core empowers your next 3 spells cast within 15 seconds: Incinerate - Increases damage done by 18% and reduces cast time by 30%. Soul Fire, Hand of Gul'dan, Shadow Bolt - Increases damage done by 18% and increases critical strike chance by 30%."],"system":"classic"},{"id":"talent-1884","treeId":"warlock-demonology","index":25,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/spell_shadow_demonicempathy.png","maxRank":3,"name":"Nemesis","description":"Reduces the cooldown of your Demonic Empowerment, Metamorphosis, Inferno, Ritual of Doom, and Fel Domination spells by 30%, and the cooldown of your Demonic Leap by 15 seconds. Capstone Bonus: While in Metamorphosis your Hand of Gul'dan can be cast twice within 6 seconds before going on cooldown.","rankDescriptions":["Reduces the cooldown of your Demonic Empowerment, Metamorphosis, Inferno, Ritual of Doom, and Fel Domination spells by 10%, and the cooldown of your Demonic Leap by 5 seconds. Capstone Bonus: While in Metamorphosis your Hand of Gul'dan can be cast twice within 6 seconds before going on cooldown.","Reduces the cooldown of your Demonic Empowerment, Metamorphosis, Inferno, Ritual of Doom, and Fel Domination spells by 20%, and the cooldown of your Demonic Leap by 10 seconds. Capstone Bonus: While in Metamorphosis your Hand of Gul'dan can be cast twice within 6 seconds before going on cooldown.","Reduces the cooldown of your Demonic Empowerment, Metamorphosis, Inferno, Ritual of Doom, and Fel Domination spells by 30%, and the cooldown of your Demonic Leap by 15 seconds. Capstone Bonus: While in Metamorphosis your Hand of Gul'dan can be cast twice within 6 seconds before going on cooldown."],"system":"classic"},{"id":"talent-2261","treeId":"warlock-demonology","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/spell_fire_fireball02.png","maxRank":2,"name":"Decimation","description":"When you Shadow Bolt, Incinerate or Soul Fire a target that is at or below 35% health, the cast time of your Soul Fire spell is reduced by 40% and the number of Wild Imps spawned by your Hand of Gul'dan is increased by 2 for 10 seconds.","rankDescriptions":["When you Shadow Bolt, Incinerate or Soul Fire a target that is at or below 35% health, the cast time of your Soul Fire spell is reduced by 20% and the number of Wild Imps spawned by your Hand of Gul'dan is increased by 1 for 10 seconds.","When you Shadow Bolt, Incinerate or Soul Fire a target that is at or below 35% health, the cast time of your Soul Fire spell is reduced by 40% and the number of Wild Imps spawned by your Hand of Gul'dan is increased by 2 for 10 seconds."],"system":"classic"},{"id":"talent-1671","treeId":"warlock-demonology","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_ragingscream.png","maxRank":3,"name":"Demonic Aegis","description":"Increases the effectiveness of your Demon Armor by 100%. Increases the hit chance you gain from Fel Armor by 120%. Reduces the cooldown of your Unending Resolve by 60 seconds. the listed amount[While in Dark Apotheosis the duration of Unending Resolve is increased by 6 seconds.][]","rankDescriptions":["Increases the effectiveness of your Demon Armor by 33%. Increases the hit chance you gain from Fel Armor by 40%. Reduces the cooldown of your Unending Resolve by 20 seconds. the listed amount[While in Dark Apotheosis the duration of Unending Resolve is increased by 2 seconds.][]","Increases the effectiveness of your Demon Armor by 66%. Increases the hit chance you gain from Fel Armor by 80%. Reduces the cooldown of your Unending Resolve by 40 seconds. the listed amount[While in Dark Apotheosis the duration of Unending Resolve is increased by 4 seconds.][]","Increases the effectiveness of your Demon Armor by 100%. Increases the hit chance you gain from Fel Armor by 120%. Reduces the cooldown of your Unending Resolve by 60 seconds. the listed amount[While in Dark Apotheosis the duration of Unending Resolve is increased by 6 seconds.][]"],"system":"classic"},{"id":"talent-1883","treeId":"warlock-demonology","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":1,"icon":"/assets/ui/talents/icons/spell_shadow_felmending.png","maxRank":2,"name":"Fel Synergy","description":"You have a 100% chance to heal your pet for 15% of the amount of spell damage done by you.","rankDescriptions":["You have a 50% chance to heal your pet for 15% of the amount of spell damage done by you.","You have a 100% chance to heal your pet for 15% of the amount of spell damage done by you."],"system":"classic"}]} diff --git a/src/game/generated/talentUi/warrior.json b/src/game/generated/talentUi/warrior.json new file mode 100644 index 00000000..918cf1cc --- /dev/null +++ b/src/game/generated/talentUi/warrior.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"warrior","trees":[{"id":"warrior-arms","classId":"warrior","name":"Arms","icon":"/assets/ui/talents/icons/ability_rogue_eviscerate.png","background":"/assets/ui/talents/backgrounds/talent_warrior1.png","description":"Master weapons and decisive physical attacks.","system":"classic"},{"id":"warrior-fury","classId":"warrior","name":"Fury","icon":"/assets/ui/talents/icons/ability_warrior_innerrage.png","background":"/assets/ui/talents/backgrounds/talent_warrior2.png","description":"Overwhelm enemies with relentless aggression.","system":"classic"},{"id":"warrior-protection","classId":"warrior","name":"Protection","icon":"/assets/ui/talents/icons/inv_shield_06.png","background":"/assets/ui/talents/backgrounds/talent_warrior3.png","description":"Endure punishment and protect the party.","system":"classic"}],"nodes":[{"id":"talent-124","treeId":"warrior-arms","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/ability_rogue_ambush.png","maxRank":3,"name":"Improved Heroic Strike","description":"Increases the damage of your Heroic Strike by 9% and reduces the rage cost by 6.","rankDescriptions":["Increases the damage of your Heroic Strike by 3% and reduces the rage cost by 2.","Increases the damage of your Heroic Strike by 6% and reduces the rage cost by 4.","Increases the damage of your Heroic Strike by 9% and reduces the rage cost by 6."],"system":"classic"},{"id":"talent-126","treeId":"warrior-arms","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":2,"icon":"/assets/ui/talents/icons/ability_warrior_charge.png","maxRank":3,"name":"Improved Charge","description":"Increases the duration of your Charge root by 1 sec. Capstone Bonus: The range of your Charge is increased by 5 yards.","rankDescriptions":["Increases the duration of your Charge root by 0.33 sec. Capstone Bonus: The range of your Charge is increased by 5 yards.","Increases the duration of your Charge root by 0.66 sec. Capstone Bonus: The range of your Charge is increased by 5 yards.","Increases the duration of your Charge root by 1 sec. Capstone Bonus: The range of your Charge is increased by 5 yards."],"system":"classic"},{"id":"talent-131","treeId":"warrior-arms","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/inv_sword_05.png","maxRank":2,"name":"Improved Overpower","description":"Increases the critical strike chance of your Overpower ability by 50%.","rankDescriptions":["Increases the critical strike chance of your Overpower ability by 25%.","Increases the critical strike chance of your Overpower ability by 50%."],"system":"classic"},{"id":"talent-132","treeId":"warrior-arms","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/inv_axe_06.png","maxRank":5,"name":"Poleaxe Specialization","description":"Increases your chance to get a critical strike and the Physical critical damage caused with Axes and Polearms by 5%.","rankDescriptions":["Increases your chance to get a critical strike and the Physical critical damage caused with Axes and Polearms by 1%.","Increases your chance to get a critical strike and the Physical critical damage caused with Axes and Polearms by 2%.","Increases your chance to get a critical strike and the Physical critical damage caused with Axes and Polearms by 3%.","Increases your chance to get a critical strike and the Physical critical damage caused with Axes and Polearms by 4%.","Increases your chance to get a critical strike and the Physical critical damage caused with Axes and Polearms by 5%."],"system":"classic"},{"id":"talent-134","treeId":"warrior-arms","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/ability_warrior_weaponmastery.png","maxRank":2,"name":"Weapon Mastery","description":"Whenever one of your attacks is dodged or blocked you have a 50% chance to gain 2% critical strike chance for 8 seconds, stacks up to 3 times. Reduces the duration of all Disarm effects used against you by 30%. This does not stack with other Disarm duration reducing effects.","rankDescriptions":["Whenever one of your attacks is dodged or blocked you have a 50% chance to gain 2% critical strike chance for 8 seconds, stacks up to 3 times. Reduces the duration of all Disarm effects used against you by 15%. This does not stack with other Disarm duration reducing effects.","Whenever one of your attacks is dodged or blocked you have a 50% chance to gain 2% critical strike chance for 8 seconds, stacks up to 3 times. Reduces the duration of all Disarm effects used against you by 30%. This does not stack with other Disarm duration reducing effects."],"system":"classic"},{"id":"talent-1662","treeId":"warrior-arms","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_warrior_improveddisciplines.png","maxRank":3,"name":"Sudden Death","description":"Your melee hits have a chance ( greater than previous rank) of allowing the use of Execute regardless of the target's health state. This can only occur once every 6 seconds. You keep at least 10 rage after using Execute, up to a limit of 10 rage.","rankDescriptions":["Your melee hits have a chance of allowing the use of Execute regardless of the target's health state. This can only occur once every 6 seconds. You keep at least 3 rage after using Execute, up to a limit of 10 rage.","Your melee hits have a chance(greater than previous rank) of allowing the use of Execute regardless of the target's health state. This can only occur once every 6 seconds. You keep at least 7 rage after using Execute, up to a limit of 10 rage.","Your melee hits have a chance ( greater than previous rank) of allowing the use of Execute regardless of the target's health state. This can only occur once every 6 seconds. You keep at least 10 rage after using Execute, up to a limit of 10 rage."],"system":"classic"},{"id":"talent-1663","treeId":"warrior-arms","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_hunter_harass.png","maxRank":3,"name":"Second Wind","description":"Whenever you are below 35% health, your melee abilities will generate the listed amount;829839o1 rage and 24% of your base health over 12 seconds. This effect can only occur once every 30 seconds.","rankDescriptions":["Whenever you are below 35% health, your melee abilities will generate the listed amount;29841o1 rage and 8% of your base health over 12 seconds. This effect can only occur once every 30 seconds.","Whenever you are below 35% health, your melee abilities will generate the listed amount;29842o1 rage and 16% of your base health over 12 seconds. This effect can only occur once every 30 seconds.","Whenever you are below 35% health, your melee abilities will generate the listed amount;829839o1 rage and 24% of your base health over 12 seconds. This effect can only occur once every 30 seconds."],"system":"classic"},{"id":"talent-2283","treeId":"warrior-arms","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_warrior_bullrush.png","maxRank":2,"name":"Juggernaut","description":"Following a Charge or Heroic Leap, you have a 100% chance for your next Slam to critically hit and your next Mortal Strike to apply Rend. (If learned) Reduces the cooldown of Heroic Leap by 4 sec.","rankDescriptions":["Following a Charge or Heroic Leap, you have a 50% chance for your next Slam to critically hit and your next Mortal Strike to apply Rend. (If learned) Reduces the cooldown of Heroic Leap by 2 sec.","Following a Charge or Heroic Leap, you have a 100% chance for your next Slam to critically hit and your next Mortal Strike to apply Rend. (If learned) Reduces the cooldown of Heroic Leap by 4 sec."],"system":"classic"},{"id":"talent-130","treeId":"warrior-arms","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/ability_parry.png","maxRank":3,"name":"Deflection","description":"Increases your Parry chance by 3% and Stamina by 3%. Capstone Bonus: You gain damage reduction against direct damage spells equal to 33% of your Parry chance. This does not work against players. The Capstone effect is only active while wielding a single Two-Handed Weapon. (Does not work with Titan's Grip.)","rankDescriptions":["Increases your Parry chance by 1% and Stamina by 1%. Capstone Bonus: You gain damage reduction against direct damage spells equal to 33% of your Parry chance. This does not work against players. The Capstone effect is only active while wielding a single Two-Handed Weapon. (Does not work with Titan's Grip.)","Increases your Parry chance by 2% and Stamina by 2%. Capstone Bonus: You gain damage reduction against direct damage spells equal to 33% of your Parry chance. This does not work against players. The Capstone effect is only active while wielding a single Two-Handed Weapon. (Does not work with Titan's Grip.)","Increases your Parry chance by 3% and Stamina by 3%. Capstone Bonus: You gain damage reduction against direct damage spells equal to 33% of your Parry chance. This does not work against players. The Capstone effect is only active while wielding a single Two-Handed Weapon. (Does not work with Titan's Grip.)"],"system":"classic"},{"id":"talent-133","treeId":"warrior-arms","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/ability_rogue_slicedice.png","maxRank":1,"name":"Sweeping Strikes","description":"While active, casting a melee ability that deals damage will cause a Sweeping Strike, dealing 40% weapon damage to 5 nearby enemies, further increased by attack power. Lasts 10 seconds. This ability shares a cooldown with Bloodbath, and Blade Flurry. This ability is usable while shapeshifted.","rankDescriptions":["While active, casting a melee ability that deals damage will cause a Sweeping Strike, dealing 40% weapon damage to 5 nearby enemies, further increased by attack power. Lasts 10 seconds. This ability shares a cooldown with Bloodbath, and Blade Flurry. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-135","treeId":"warrior-arms","index":21,"prerequisiteId":"talent-133","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-133","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/ability_warrior_savageblow.png","maxRank":1,"name":"Mortal Strike","description":"A vicious strike that deals 140% weapon damage plus 85 and wounds the target, reducing the effectiveness of any healing by 30% for 8 seconds. Does not stack with other similar effects.","rankDescriptions":["A vicious strike that deals 140% weapon damage plus 85 and wounds the target, reducing the effectiveness of any healing by 30% for 8 seconds. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-136","treeId":"warrior-arms","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/inv_axe_09.png","maxRank":3,"name":"Two-Handed Weapon Specialization","description":"Increases the physical damage you deal with two-handed melee weapons by 3% and increases your critical strike chance by 3%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","rankDescriptions":["Increases the physical damage you deal with two-handed melee weapons by 1% and increases your critical strike chance by 1%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases the physical damage you deal with two-handed melee weapons by 2% and increases your critical strike chance by 2%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]","Increases the physical damage you deal with two-handed melee weapons by 3% and increases your critical strike chance by 3%. the listed amount[Capstone Bonus: All threat generated is reduced by 30%. This capstone effect does not stack with similar capstone effects.][Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.]"],"system":"classic"},{"id":"talent-137","treeId":"warrior-arms","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_blessingofstamina.png","maxRank":3,"name":"Anger Management","description":"Generates 6 rage per 3 seconds and increases the amount of rage generated by your Charge ability by 15. Capstone Bonus: Your Charge also reduces your damage taken by 30% for 4 seconds.","rankDescriptions":["Generates 2 rage per 3 seconds and increases the amount of rage generated by your Charge ability by 5. Capstone Bonus: With the final rank of this talent, your Charge also reduces your damage taken by 30% for 4 seconds.","Generates 4 rage per 3 seconds and increases the amount of rage generated by your Charge ability by 10. Capstone Bonus: With the final rank of this talent, your Charge also reduces your damage taken by 30% for 4 seconds.","Generates 6 rage per 3 seconds and increases the amount of rage generated by your Charge ability by 15. Capstone Bonus: Your Charge also reduces your damage taken by 30% for 4 seconds."],"system":"classic"},{"id":"talent-641","treeId":"warrior-arms","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/spell_magic_magearmor.png","maxRank":3,"name":"Iron Will","description":"Converts 25% of your Strength as parry rating and parrying an attack causes you to generate 10 rage. This effect is only active while wielding a single Two-Handed Weapon. Does not work with Titan's Grip.","rankDescriptions":["Converts 8% of your Strength as parry rating and parrying an attack causes you to generate 4 rage. This effect is only active while wielding a single Two-Handed Weapon. Does not work with Titan's Grip.","Converts 16% of your Strength as parry rating and parrying an attack causes you to generate 7 rage. This effect is only active while wielding a single Two-Handed Weapon. Does not work with Titan's Grip.","Converts 25% of your Strength as parry rating and parrying an attack causes you to generate 10 rage. This effect is only active while wielding a single Two-Handed Weapon. Does not work with Titan's Grip."],"system":"classic"},{"id":"talent-1661","treeId":"warrior-arms","index":28,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/talents/icons/ability_warrior_endlessrage.png","maxRank":2,"name":"Two-Handed Weapon Mastery","description":"You generate 30% more rage from damage dealt and deal 6% more Physical melee damage. Increases the duration of your Colossus Smash by 2 sec. This effect is only active while wielding a single Two-Handed Weapon. (Does not work with Titan's Grip.)","rankDescriptions":["You generate 15% more rage from damage dealt and deal 3% more Physical melee damage. Increases the duration of your Colossus Smash by 1 sec. This effect is only active while wielding a single Two-Handed Weapon. (Does not work with Titan's Grip.)","You generate 30% more rage from damage dealt and deal 6% more Physical melee damage. Increases the duration of your Colossus Smash by 2 sec. This effect is only active while wielding a single Two-Handed Weapon. (Does not work with Titan's Grip.)"],"system":"classic"},{"id":"talent-1824","treeId":"warrior-arms","index":25,"prerequisiteId":"talent-135","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-135","requiredRank":1}],"column":2,"row":8,"icon":"/assets/ui/talents/icons/ability_warrior_savageblow.png","maxRank":3,"name":"Improved Mortal Strike","description":"Increases the damage caused by your Mortal Strike ability by 10%, reduces the cooldown by 2 sec, and increases the healing reduction effect by 10%.","rankDescriptions":["Increases the damage caused by your Mortal Strike ability by 4%, reduces the cooldown by 0.67 sec, and increases the healing reduction effect by 4%.","Increases the damage caused by your Mortal Strike ability by 7%, reduces the cooldown by 1.33 sec, and increases the healing reduction effect by 7%.","Increases the damage caused by your Mortal Strike ability by 10%, reduces the cooldown by 2 sec, and increases the healing reduction effect by 10%."],"system":"classic"},{"id":"talent-1863","treeId":"warrior-arms","index":31,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_warrior_bladestorm.png","maxRank":1,"name":"Bladestorm","description":"Instantly Whirlwind up to 6 nearby targets and for the next 6 seconds you will perform a whirlwind attack every 1 sec. While under the effects of Bladestorm, you can move but cannot perform any other abilities but you do not feel pity or remorse or fear and you cannot be stopped unless disarmed or killed.","rankDescriptions":["Instantly Whirlwind up to 6 nearby targets and for the next 6 seconds you will perform a whirlwind attack every 1 sec. While under the effects of Bladestorm, you can move but cannot perform any other abilities but you do not feel pity or remorse or fear and you cannot be stopped unless disarmed or killed."],"system":"classic"},{"id":"talent-2231","treeId":"warrior-arms","index":30,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_warrior_trauma.png","maxRank":3,"name":"Wrecking Crew","description":"Your main hand melee, and melee special critical strikes increases the damage caused by your Overpower, Mortal Strike, Execute, Rend, Thunder Clap, Heroic Leap, Colossus Smash and Bladestorm abilities by 15% for 12 seconds.","rankDescriptions":["Your main hand melee, and melee special critical strikes increases the damage caused by your Overpower, Mortal Strike, Execute, Rend, Thunder Clap, Heroic Leap, Colossus Smash and Bladestorm abilities by 5% for 12 seconds.","Your main hand melee, and melee special critical strikes increases the damage caused by your Overpower, Mortal Strike, Execute, Rend, Thunder Clap, Heroic Leap, Colossus Smash and Bladestorm abilities by 10% for 12 seconds.","Your main hand melee, and melee special critical strikes increases the damage caused by your Overpower, Mortal Strike, Execute, Rend, Thunder Clap, Heroic Leap, Colossus Smash and Bladestorm abilities by 15% for 12 seconds."],"system":"classic"},{"id":"talent-125","treeId":"warrior-arms","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/inv_mace_01.png","maxRank":5,"name":"Mace Specialization","description":"Increases your melee attack power by 5% and armor penetration by 15% while a mace is equipped.","rankDescriptions":["Increases your melee attack power by 1% and armor penetration by 3% while a mace is equipped.","Increases your melee attack power by 2% and armor penetration by 6% while a mace is equipped.","Increases your melee attack power by 3% and armor penetration by 9% while a mace is equipped.","Increases your melee attack power by 4% and armor penetration by 12% while a mace is equipped.","Increases your melee attack power by 5% and armor penetration by 15% while a mace is equipped."],"system":"classic"},{"id":"talent-127","treeId":"warrior-arms","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_gouge.png","maxRank":2,"name":"Improved Rend","description":"Increases the bleed damage done by your Rend ability by 20% and its critical strike chance by 10%.","rankDescriptions":["Increases the bleed damage done by your Rend ability by 10% and its critical strike chance by 5%.","Increases the bleed damage done by your Rend ability by 20% and its critical strike chance by 10%."],"system":"classic"},{"id":"talent-128","treeId":"warrior-arms","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_enchantarmor.png","maxRank":3,"name":"Tactical Mastery","description":"Requires a Single Two-Handed or One-Handed Weapon. Increases armor contribution from armor by 40% and increases the damage of Devastate by 25%. Capstone Bonus: Stagger 30% of damage taken from attacks, distributing it over 10 seconds. This staggered damage does not break crowd control effects. Does not work with Titan's Grip, Touched by the Light, or when Primary Stat is Spirit. Stagger is half as effective against players","rankDescriptions":["Requires a Single Two-Handed or One-Handed Weapon. Increases armor contribution from armor by 14% and increases the damage of Devastate by 8%. Capstone Bonus: With the final rank, stagger 30% of damage taken from attacks, distributing it over 10 seconds. This staggered damage does not break crowd control effects. Does not work with Titan's Grip, Touched by the Light, or when Primary Stat is Spirit. Stagger is half as effective against players","Requires a Single Two-Handed or One-Handed Weapon. Increases armor contribution from armor by 27% and increases the damage of Devastate by 16%. Capstone Bonus: With the final rank, stagger 30% of damage taken from attacks, distributing it over 10 seconds. This staggered damage does not break crowd control effects. Does not work with Titan's Grip, Touched by the Light, or when Primary Stat is Spirit. Stagger is half as effective against players","Requires a Single Two-Handed or One-Handed Weapon. Increases armor contribution from armor by 40% and increases the damage of Devastate by 25%. Capstone Bonus: Stagger 30% of damage taken from attacks, distributing it over 10 seconds. This staggered damage does not break crowd control effects. Does not work with Titan's Grip, Touched by the Light, or when Primary Stat is Spirit. Stagger is half as effective against players"],"system":"classic"},{"id":"talent-129","treeId":"warrior-arms","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/ability_shockwave.png","maxRank":3,"name":"Improved Hamstring","description":"Increases the damage of your Hamstring by 15%. Capstone Bonus: Your Hamstring ability will immobilize the target for 3 seconds. This effect cannot occur more than once every 10 sec.","rankDescriptions":["Increases the damage of your Hamstring by 5%. Capstone Bonus: Your Hamstring ability will immobilize the target for 3 seconds. This effect cannot occur more than once every 10 sec.","Increases the damage of your Hamstring by 10%. Capstone Bonus: Your Hamstring ability will immobilize the target for 3 seconds. This effect cannot occur more than once every 10 sec.","Increases the damage of your Hamstring by 15%. Capstone Bonus: Your Hamstring ability will immobilize the target for 3 seconds. This effect cannot occur more than once every 10 sec."],"system":"classic"},{"id":"talent-662","treeId":"warrior-arms","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/ability_searingarrow.png","maxRank":2,"name":"Impale","description":"Increases the critical strike damage bonus of your Warrior abilities by 20%.","rankDescriptions":["Increases the critical strike damage bonus of your Warrior abilities by 10%.","Increases the critical strike damage bonus of your Warrior abilities by 20%."],"system":"classic"},{"id":"talent-1664","treeId":"warrior-arms","index":29,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_warrior_bloodfrenzy.png","maxRank":2,"name":"Blood Frenzy","description":"Increases your melee attack speed by 4%. Rend and Deep Wounds increase all Physical damage caused to that target by 4%. Does not stack with similar effects.","rankDescriptions":["Increases your melee attack speed by 2%. Rend and Deep Wounds increase all Physical damage caused to that target by 2%. Does not stack with similar effects.","Increases your melee attack speed by 4%. Rend and Deep Wounds increase all Physical damage caused to that target by 4%. Does not stack with similar effects."],"system":"classic"},{"id":"talent-1860","treeId":"warrior-arms","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_warrior_unrelentingassault.png","maxRank":2,"name":"Unrelenting Assault","description":"Reduces the cooldown of your Overpower and Revenge abilities by 1 sec and increases the damage done by both abilities by 20%. If you strike a player with Overpower while they are casting, their magical damage and healing will be reduced by 15% for 3 seconds.","rankDescriptions":["Reduces the cooldown of your Overpower and Revenge abilities by 0.5 secs and increases the damage done by both abilities by 10%. If you strike a player with Overpower while they are casting, their magical damage and healing will be reduced by 8% for 3 seconds.","Reduces the cooldown of your Overpower and Revenge abilities by 1 sec and increases the damage done by both abilities by 20%. If you strike a player with Overpower while they are casting, their magical damage and healing will be reduced by 15% for 3 seconds."],"system":"classic"},{"id":"talent-1862","treeId":"warrior-arms","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_warrior_offensivestance.png","maxRank":2,"name":"Strength of Arms","description":"Increases your total Strength by 4% and Stamina by 2%. After using Overpower, Slam or Execute your next Mortal Strike causes 10% extra damage and cost 5 less rage. Stacks up to 2 times.","rankDescriptions":["Increases your total Strength by 2% and Stamina by 1%. After using Overpower, Slam or Execute your next Mortal Strike causes 10% extra damage and cost 5 less rage. Stacks up to 2 times.","Increases your total Strength by 4% and Stamina by 2%. After using Overpower, Slam or Execute your next Mortal Strike causes 10% extra damage and cost 5 less rage. Stacks up to 2 times."],"system":"classic"},{"id":"talent-2232","treeId":"warrior-arms","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/ability_rogue_hungerforblood.png","maxRank":3,"name":"Taste for Blood","description":"Whenever your Rend ability causes damage, you have a 100% chance of allowing the use of your Overpower ability for 9 seconds and increasing its damage by 20%. This effect will not occur more than once every 4 sec against players. Capstone Bonus: Your Rend ability deals 75% weapon damage to the target.","rankDescriptions":["Whenever your Rend ability causes damage, you have a 33% chance of allowing the use of your Overpower ability for 9 seconds and increasing its damage by 20%. This effect will not occur more than once every 4 sec against players. Capstone Bonus: Your Rend ability deals 75% weapon damage to the target.","Whenever your Rend ability causes damage, you have a 66% chance of allowing the use of your Overpower ability for 9 seconds and increasing its damage by 20%. This effect will not occur more than once every 4 sec against players. Capstone Bonus: Your Rend ability deals 75% weapon damage to the target.","Whenever your Rend ability causes damage, you have a 100% chance of allowing the use of your Overpower ability for 9 seconds and increasing its damage by 20%. This effect will not occur more than once every 4 sec against players. Capstone Bonus: Your Rend ability deals 75% weapon damage to the target."],"system":"classic"},{"id":"talent-121","treeId":"warrior-arms","index":10,"prerequisiteId":"talent-662","prerequisiteRank":2,"prerequisites":[{"talentId":"talent-662","requiredRank":2}],"column":4,"row":3,"icon":"/assets/ui/talents/icons/ability_backstab.png","maxRank":3,"name":"Deep Wounds","description":"Your melee critical strikes cause the opponent to bleed, dealing 33% of your melee weapon's average damage over 6 seconds. This effect can critically hit versus monsters while a single two-handed weapon is equipped.","rankDescriptions":["Your melee critical strikes cause the opponent to bleed, dealing 11% of your melee weapon's average damage over 6 seconds. This effect can critically hit versus monsters while a single two-handed weapon is equipped.","Your melee critical strikes cause the opponent to bleed, dealing 22% of your melee weapon's average damage over 6 seconds. This effect can critically hit versus monsters while a single two-handed weapon is equipped.","Your melee critical strikes cause the opponent to bleed, dealing 33% of your melee weapon's average damage over 6 seconds. This effect can critically hit versus monsters while a single two-handed weapon is equipped."],"system":"classic"},{"id":"talent-123","treeId":"warrior-arms","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/talents/icons/inv_sword_27.png","maxRank":5,"name":"Sword Specialization","description":"Increases your chance to hit with spells and abilities by 5%. Gives you a 10% chance to get an extra attack on the same target after hitting your target with your Sword dealing 120% weapon damage. This damage is increased by 40% while wielding a single Two-Handed Weapon.","rankDescriptions":["Increases your chance to hit with spells and abilities by 1%. Gives you a 2% chance to get an extra attack on the same target after hitting your target with your Sword dealing 120% weapon damage. This damage is increased by 40% while wielding a single Two-Handed Weapon.","Increases your chance to hit with spells and abilities by 2%. Gives you a 4% chance to get an extra attack on the same target after hitting your target with your Sword dealing 120% weapon damage. This damage is increased by 40% while wielding a single Two-Handed Weapon.","Increases your chance to hit with spells and abilities by 3%. Gives you a 6% chance to get an extra attack on the same target after hitting your target with your Sword dealing 120% weapon damage. This damage is increased by 40% while wielding a single Two-Handed Weapon.","Increases your chance to hit with spells and abilities by 4%. Gives you a 8% chance to get an extra attack on the same target after hitting your target with your Sword dealing 120% weapon damage. This damage is increased by 40% while wielding a single Two-Handed Weapon.","Increases your chance to hit with spells and abilities by 5%. Gives you a 10% chance to get an extra attack on the same target after hitting your target with your Sword dealing 120% weapon damage. This damage is increased by 40% while wielding a single Two-Handed Weapon."],"system":"classic"},{"id":"talent-1859","treeId":"warrior-arms","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/talents/icons/ability_warrior_bloodnova.png","maxRank":2,"name":"Trauma","description":"Your melee critical strikes increase the effectiveness of Bleed effects on the target by 30% for 1 minute. Does not stack with other similar effects. Capstone Bonus: Your Rend and Bloodbath benefits from melee haste.","rankDescriptions":["Your melee critical strikes increase the effectiveness of Bleed effects on the target by 15% for 1 minute. Does not stack with other similar effects. Capstone Bonus: The final rank of this talent allows your Rend and Bloodbath to benefit from melee haste.","Your melee critical strikes increase the effectiveness of Bleed effects on the target by 30% for 1 minute. Does not stack with other similar effects. Capstone Bonus: Your Rend and Bloodbath benefits from melee haste."],"system":"classic"},{"id":"talent-2233","treeId":"warrior-arms","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/talents/icons/ability_warrior_decisivestrike.png","maxRank":2,"name":"Improved Slam","description":"Decreases the swing time of your Slam ability by 1 sec and increases the damage by 20%.","rankDescriptions":["Decreases the swing time of your Slam ability by 0.5 sec and increases the damage by 10%.","Decreases the swing time of your Slam ability by 1 sec and increases the damage by 20%."],"system":"classic"},{"id":"talent-142","treeId":"warrior-protection","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/ability_racial_bloodrage.png","maxRank":2,"name":"Improved Bloodrage","description":"Increases the rage generated by your Bloodrage ability by 50%. While in Defensive Stance your Bloodrage reduces your damage taken by 4%. Capstone Bonus: Casting Bloodrage clears your current Stagger. This can only occur once every 30 seconds.","rankDescriptions":["Increases the rage generated by your Bloodrage ability by 25%. While in Defensive Stance your Bloodrage reduces your damage taken by 2%. Capstone Bonus: Casting Bloodrage clears your current Stagger. This can only occur once every 30 seconds.","Increases the rage generated by your Bloodrage ability by 50%. While in Defensive Stance your Bloodrage reduces your damage taken by 4%. Capstone Bonus: Casting Bloodrage clears your current Stagger. This can only occur once every 30 seconds."],"system":"classic"},{"id":"talent-150","treeId":"warrior-protection","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/ability_warrior_shieldwall.png","maxRank":3,"name":"Improved Disciplines","description":"Reduces the cooldown of your Shield Wall, Retaliation and Avatar abilities by 30 sec. While in Defensive Stance their respective cooldowns are reduced by a further 30 sec.","rankDescriptions":["Reduces the cooldown of your Shield Wall, Retaliation and Avatar abilities by 10 sec. While in Defensive Stance their respective cooldowns are reduced by a further 10 sec.","Reduces the cooldown of your Shield Wall, Retaliation and Avatar abilities by 20 sec. While in Defensive Stance their respective cooldowns are reduced by a further 20 sec.","Reduces the cooldown of your Shield Wall, Retaliation and Avatar abilities by 30 sec. While in Defensive Stance their respective cooldowns are reduced by a further 30 sec."],"system":"classic"},{"id":"talent-153","treeId":"warrior-protection","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_ashestoashes.png","maxRank":1,"name":"Last Stand","description":"When activated, this ability temporarily grants you 20% of your maximum health for 20 seconds. After the effect expires, the health is lost. Shares a cooldown with Survival Instincts. This ability is usable while shapeshifted.","rankDescriptions":["When activated, this ability temporarily grants you 20% of your maximum health for 20 seconds. After the effect expires, the health is lost. Shares a cooldown with Survival Instincts. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-1652","treeId":"warrior-protection","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_warrior_defensivestance.png","maxRank":2,"name":"Improved Defensive Stance","description":"While in Defensive Stance all damage taken is reduced by 8%. When you Block, Parry or Dodge an attack you have a 100% chance to become Enraged, increasing Physical damage caused by 6% for 12 seconds.","rankDescriptions":["While in Defensive Stance all damage taken is reduced by 4%. When you Block, Parry or Dodge an attack you have a 50% chance to become Enraged, increasing Physical damage caused by 6% for 12 seconds.","While in Defensive Stance all damage taken is reduced by 8%. When you Block, Parry or Dodge an attack you have a 100% chance to become Enraged, increasing Physical damage caused by 6% for 12 seconds."],"system":"classic"},{"id":"talent-2236","treeId":"warrior-protection","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_warrior_warbringer.png","maxRank":2,"name":"Warbringer","description":"Your Charge, Intercept, and Intervene abilities have a 100% chance to remove all slowing effects when used.","rankDescriptions":["Your Charge, Intercept, and Intervene abilities have a 50% chance to remove all slowing effects when used.","Your Charge, Intercept, and Intervene abilities have a 100% chance to remove all slowing effects when used."],"system":"classic"},{"id":"talent-2247","treeId":"warrior-protection","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/ability_warrior_shieldreflection.png","maxRank":3,"name":"Shield Cover","description":"Reduces your damage taken by 3%. Increases your block value by 10%. Reduces the cooldown of Spell Reflection by 10 seconds. Capstone Bonus: Using Spell Reflection or Shield Block also reduces all Magic damage taken by 30% for 3 seconds.","rankDescriptions":["Reduces your damage taken by 1%. Increases your block value by 4%. Reduces the cooldown of Spell Reflection by 3 seconds. Capstone Bonus: Using Spell Reflection or Shield Block also reduces all Magic damage taken by 30% for 3 seconds.","Reduces your damage taken by 2%. Increases your block value by 7%. Reduces the cooldown of Spell Reflection by 6 seconds. Capstone Bonus: Using Spell Reflection or Shield Block also reduces all Magic damage taken by 30% for 3 seconds.","Reduces your damage taken by 3%. Increases your block value by 10%. Reduces the cooldown of Spell Reflection by 10 seconds. Capstone Bonus: Using Spell Reflection or Shield Block also reduces all Magic damage taken by 30% for 3 seconds."],"system":"classic"},{"id":"talent-144","treeId":"warrior-protection","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_warrior_incite.png","maxRank":3,"name":"Incite","description":"Increases the critical strike chance of your Heroic Strike, Thunder Clap and Cleave abilities by 12%.","rankDescriptions":["Increases the critical strike chance of your Heroic Strike, Thunder Clap and Cleave abilities by 4%.","Increases the critical strike chance of your Heroic Strike, Thunder Clap and Cleave abilities by 8%.","Increases the critical strike chance of your Heroic Strike, Thunder Clap and Cleave abilities by 12%."],"system":"classic"},{"id":"talent-147","treeId":"warrior-protection","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/ability_warrior_revenge.png","maxRank":2,"name":"Improved Revenge","description":"Increases damage of your Revenge ability by 30% and causes Revenge to strike an additional 2 target. After using Revenge your next Devastate within 8 seconds will strike an additional target.","rankDescriptions":["Increases damage of your Revenge ability by 15% and causes Revenge to strike an additional 2 target. After using Revenge your next Devastate within 8 seconds will strike an additional target.","Increases damage of your Revenge ability by 30% and causes Revenge to strike an additional 2 target. After using Revenge your next Devastate within 8 seconds will strike an additional target."],"system":"classic"},{"id":"talent-148","treeId":"warrior-protection","index":18,"prerequisiteId":"talent-152","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-152","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/ability_warrior_vigilance.png","maxRank":1,"name":"Vigilance","description":"Focus your protective gaze on a group or raid target to transfer the listed amount% of the threat they cause to you. Each time they are hit by an attack your Taunt and Growl cooldown is refreshed. Lasts 30 minutes. This effect can only be on one target at a time.","rankDescriptions":["Focus your protective gaze on a group or raid target to transfer the listed amount% of the threat they cause to you. Each time they are hit by an attack your Taunt and Growl cooldown is refreshed. Lasts 30 minutes. This effect can only be on one target at a time."],"system":"classic"},{"id":"talent-151","treeId":"warrior-protection","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/ability_warrior_disarm.png","maxRank":2,"name":"Improved Disarm","description":"Reduces the cooldown of your Disarm ability by 10 sec and causes the target to take an additional 10% damage from you while disarmed.","rankDescriptions":["Reduces the cooldown of your Disarm ability by 5 sec and causes the target to take an additional 5% damage from you while disarmed.","Reduces the cooldown of your Disarm ability by 10 sec and causes the target to take an additional 10% damage from you while disarmed."],"system":"classic"},{"id":"talent-152","treeId":"warrior-protection","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/ability_thunderbolt.png","maxRank":1,"name":"Concussion Blow","description":"Stuns the opponent for 3.5 seconds and deals 0.42 × attack power damage. (based on attack power). Causes a High amount of threat. This spell cannot miss.","rankDescriptions":["Stuns the opponent for 3.5 seconds and deals 0.42 × attack power damage. (based on attack power). Causes a High amount of threat. This spell cannot miss."],"system":"classic"},{"id":"talent-1601","treeId":"warrior-protection","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/inv_shield_06.png","maxRank":3,"name":"Shield Specialization","description":"Increases your chance to block attacks with a shield by 10%. You have a 100% chance to generate 5 rage when a block, dodge, or parry occurs.","rankDescriptions":["Increases your chance to block attacks with a shield by 4%. You have a 33% chance to generate 5 rage when a block, dodge, or parry occurs.","Increases your chance to block attacks with a shield by 7%. You have a 66% chance to generate 5 rage when a block, dodge, or parry occurs.","Increases your chance to block attacks with a shield by 10%. You have a 100% chance to generate 5 rage when a block, dodge, or parry occurs."],"system":"classic"},{"id":"talent-1653","treeId":"warrior-protection","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/talents/icons/inv_helmet_21.png","maxRank":3,"name":"Resolve","description":"Increases your Strength, Stamina and chance to hit with spells and abilities by 3%.","rankDescriptions":["Increases your Strength, Stamina and chance to hit with spells and abilities by 1%.","Increases your Strength, Stamina and chance to hit with spells and abilities by 2%.","Increases your Strength, Stamina and chance to hit with spells and abilities by 3%."],"system":"classic"},{"id":"talent-1871","treeId":"warrior-protection","index":25,"prerequisiteId":"talent-1666","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-1666","requiredRank":1}],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_warrior_swordandboard.png","maxRank":3,"name":"Sword and Board","description":"Increases the critical strike chance of Devastate by 15%. Dealing damage with Devastate or Revenge has a 30% chance to reset the cooldown of Shield Slam and cause your next Shield Slam to dispel 1 magic effect, generate 20% bonus threat and cost no rage.","rankDescriptions":["Increases the critical strike chance of Devastate by 5%. Dealing damage with Devastate or Revenge has a 10% chance to reset the cooldown of Shield Slam and cause your next Shield Slam to dispel 1 magic effect, generate 20% bonus threat and cost no rage.","Increases the critical strike chance of Devastate by 10%. Dealing damage with Devastate or Revenge has a 20% chance to reset the cooldown of Shield Slam and cause your next Shield Slam to dispel 1 magic effect, generate 20% bonus threat and cost no rage.","Increases the critical strike chance of Devastate by 15%. Dealing damage with Devastate or Revenge has a 30% chance to reset the cooldown of Shield Slam and cause your next Shield Slam to dispel 1 magic effect, generate 20% bonus threat and cost no rage."],"system":"classic"},{"id":"talent-1872","treeId":"warrior-protection","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_warrior_shockwave.png","maxRank":1,"name":"Shockwave","description":"Sends a wave of force in front of the caster, causing the listed amount power} damage (based on attack power) and stunning all enemy targets in a frontal cone for 3 seconds. This spell cannot miss.","rankDescriptions":["Sends a wave of force in front of the caster, causing the listed amount power} damage (based on attack power) and stunning all enemy targets in a frontal cone for 3 seconds. This spell cannot miss."],"system":"classic"},{"id":"talent-138","treeId":"warrior-protection","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_mirrorimage.png","maxRank":5,"name":"Adaptive Defense","description":"Increases your dodge chance by 5%. Capstone Bonus: Reduces the damage you take by 5% for 10 seconds after you dodge an attack.","rankDescriptions":["Increases your dodge chance by 1%. Capstone Bonus: Reduces the damage you take by 5% for 10 seconds after you dodge an attack.","Increases your dodge chance by 2%. Capstone Bonus: Reduces the damage you take by 5% for 10 seconds after you dodge an attack.","Increases your dodge chance by 3%. Capstone Bonus: Reduces the damage you take by 5% for 10 seconds after you dodge an attack.","Increases your dodge chance by 4%. Capstone Bonus: Reduces the damage you take by 5% for 10 seconds after you dodge an attack.","Increases your dodge chance by 5%. Capstone Bonus: Reduces the damage you take by 5% for 10 seconds after you dodge an attack."],"system":"classic"},{"id":"talent-141","treeId":"warrior-protection","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_thunderclap.png","maxRank":3,"name":"Improved Thunder Clap","description":"Reduces the cost of your Thunder Clap ability by 12 rage points and increases the damage by 30% and the slowing effect by an additional 10%.","rankDescriptions":["Reduces the cost of your Thunder Clap ability by 4 rage point and increases the damage by 10% and the slowing effect by an additional 4%.","Reduces the cost of your Thunder Clap ability by 8 rage points and increases the damage by 20% and the slowing effect by an additional 7%.","Reduces the cost of your Thunder Clap ability by 12 rage points and increases the damage by 30% and the slowing effect by an additional 10%."],"system":"classic"},{"id":"talent-146","treeId":"warrior-protection","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/ability_warrior_sunder.png","maxRank":3,"name":"Fracture","description":"Dealing direct damage with your Warrior abilities has a 65% chance to reduce the target's attack power by the listed amountthe listed amount (scaling with level). Does not stack with other similar effects. Capstone Bonus: Fracture also applies Fractured Defenses to the target lowering their armor by 5%. Does not stack with similar effects.","rankDescriptions":["Dealing direct damage with your Warrior abilities has a 17% chance to reduce the target's attack power by the listed amountthe listed amount (scaling with level). Does not stack with other similar effects. Capstone Bonus: Fracture also applies Fractured Defenses to the target lowering their armor by 5%. Does not stack with similar effects.","Dealing direct damage with your Warrior abilities has a 34% chance to reduce the target's attack power by the listed amountthe listed amount (scaling with level). Does not stack with other similar effects. Capstone Bonus: Fracture also applies Fractured Defenses to the target lowering their armor by 5%. Does not stack with similar effects.","Dealing direct damage with your Warrior abilities has a 65% chance to reduce the target's attack power by the listed amountthe listed amount (scaling with level). Does not stack with other similar effects. Capstone Bonus: Fracture also applies Fractured Defenses to the target lowering their armor by 5%. Does not stack with similar effects."],"system":"classic"},{"id":"talent-149","treeId":"warrior-protection","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/ability_warrior_shieldbash.png","maxRank":3,"name":"Gag Order","description":"Gives your Shattering Throw and Disarm a 100% chance to silence the target for 2 seconds. Increases the damage and threat of your Shield Slam ability by 15%.","rankDescriptions":["Gives your Shattering Throw and Disarm a 33% chance to silence the target for 2 seconds. Increases the damage and threat of your Shield Slam ability by 5%.","Gives your Shattering Throw and Disarm a 66% chance to silence the target for 2 seconds. Increases the damage and threat of your Shield Slam ability by 10%.","Gives your Shattering Throw and Disarm a 100% chance to silence the target for 2 seconds. Increases the damage and threat of your Shield Slam ability by 15%."],"system":"classic"},{"id":"talent-702","treeId":"warrior-protection","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/inv_sword_20.png","maxRank":5,"name":"One-Handed Weapon Specialization","description":"Increases Physical damage you deal when a one-handed melee weapon is equipped by 5% Increases your block chance by 10%.","rankDescriptions":["Increases Physical damage you deal when a one-handed melee weapon is equipped by 1% Increases your block chance by 2%.","Increases Physical damage you deal when a one-handed melee weapon is equipped by 2% Increases your block chance by 4%.","Increases Physical damage you deal when a one-handed melee weapon is equipped by 3% Increases your block chance by 6%.","Increases Physical damage you deal when a one-handed melee weapon is equipped by 4% Increases your block chance by 8%.","Increases Physical damage you deal when a one-handed melee weapon is equipped by 5% Increases your block chance by 10%."],"system":"classic"},{"id":"talent-1654","treeId":"warrior-protection","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/ability_warrior_shieldmastery.png","maxRank":2,"name":"Shield Mastery","description":"Increases your block value by 20%. Increases the damage done by your Shield Slam by 15%. Increases the damage reduced by Shield Wall by 15%.","rankDescriptions":["Increases your block value by 10%. Increases the damage done by your Shield Slam by 7%. Increases the damage reduced by Shield Wall by 7%.","Increases your block value by 20%. Increases the damage done by your Shield Slam by 15%. Increases the damage reduced by Shield Wall by 15%."],"system":"classic"},{"id":"talent-1660","treeId":"warrior-protection","index":19,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/talents/icons/ability_warrior_focusedrage.png","maxRank":3,"name":"Focused Rage","description":"Reduces the rage cost of your offensive Warrior abilities by 3. Capstone Bonus: You gain 5 Rage every time the target of your Vigilance takes damage. This effect can only occur once every second.","rankDescriptions":["Reduces the rage cost of your offensive Warrior abilities by 1. Capstone Bonus: You gain 5 Rage every time the target of your Vigilance takes damage. This effect can only occur once every second.","Reduces the rage cost of your offensive Warrior abilities by 2. Capstone Bonus: You gain 5 Rage every time the target of your Vigilance takes damage. This effect can only occur once every second.","Reduces the rage cost of your offensive Warrior abilities by 3. Capstone Bonus: You gain 5 Rage every time the target of your Vigilance takes damage. This effect can only occur once every second."],"system":"classic"},{"id":"talent-1870","treeId":"warrior-protection","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/talents/icons/ability_warrior_safeguard.png","maxRank":2,"name":"Safeguard","description":"Reduces damage taken by the target of your Intervene ability by 10% for 5 seconds. The cooldown of your Intervene is reduced by 10 seconds.","rankDescriptions":["Reduces damage taken by the target of your Intervene ability by 10% for 5 seconds. The cooldown of your Intervene is reduced by 5 seconds.","Reduces damage taken by the target of your Intervene ability by 10% for 5 seconds. The cooldown of your Intervene is reduced by 10 seconds."],"system":"classic"},{"id":"talent-1893","treeId":"warrior-protection","index":24,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_warrior_criticalblock.png","maxRank":3,"name":"Critical Block","description":"Your successful blocks now further reduce the damage you take from the blocked hit by 25%. This effect does not work against players. Increases your chance to critically hit with your Shield Slam ability by 10%. Does not work with Touched by the Light.","rankDescriptions":["Your successful blocks now further reduce the damage you take from the blocked hit by 8%. This effect does not work against players. Increases your chance to critically hit with your Shield Slam ability by 4%. Does not work with Touched by the Light.","Your successful blocks now further reduce the damage you take from the blocked hit by 16%. This effect does not work against players. Increases your chance to critically hit with your Shield Slam ability by 7%. Does not work with Touched by the Light.","Your successful blocks now further reduce the damage you take from the blocked hit by 25%. This effect does not work against players. Increases your chance to critically hit with your Shield Slam ability by 10%. Does not work with Touched by the Light."],"system":"classic"},{"id":"talent-2246","treeId":"warrior-protection","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/talents/icons/inv_shield_31.png","maxRank":2,"name":"Damage Shield","description":"Whenever you take direct damage from melee attack you cause damage equal to 20% of your block value.","rankDescriptions":["Whenever you take direct damage from melee attack you cause damage equal to 10% of your block value.","Whenever you take direct damage from melee attack you cause damage equal to 20% of your block value."],"system":"classic"},{"id":"talent-140","treeId":"warrior-protection","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/spell_holy_devotion.png","maxRank":3,"name":"Firm Grip","description":"Increases your armor value from your equipped Shield by 30%. Increases your Stamina by 3%. Increases your block value by 6%.","rankDescriptions":["Increases your armor value from your equipped Shield by 10%. Increases your Stamina by 1%. Increases your block value by 2%.","Increases your armor value from your equipped Shield by 20%. Increases your Stamina by 2%. Increases your block value by 4%.","Increases your armor value from your equipped Shield by 30%. Increases your Stamina by 3%. Increases your block value by 6%."],"system":"classic"},{"id":"talent-166","treeId":"warrior-fury","index":6,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/talents/icons/ability_warrior_cleave.png","maxRank":3,"name":"Improved Cleave","description":"Increases the bonus damage done by your Cleave ability by 120% and reduces the rage cost by 6.","rankDescriptions":["Increases the bonus damage done by your Cleave ability by 40% and reduces the rage cost by 2.","Increases the bonus damage done by your Cleave ability by 80% and reduces the rage cost by 4.","Increases the bonus damage done by your Cleave ability by 120% and reduces the rage cost by 6."],"system":"classic"},{"id":"talent-1541","treeId":"warrior-fury","index":16,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/talents/icons/spell_nature_ancestralguardian.png","maxRank":3,"name":"Raging Berserker","description":"Reduces the cooldown of Berserker Rage by 15 seconds. Capstone Bonus: Using Berserker Rage or Heroic Fury will generate 50 rage, reduce the duration of active disarm effects by 50%. If used while below 50% health, your melee abilities are empowered for 5 seconds, causing them to drain life from targets hit.","rankDescriptions":["Reduces the cooldown of Berserker Rage by 5 seconds. Capstone Bonus: Using Berserker Rage or Heroic Fury will generate 50 rage, reduce the duration of active disarm effects by 50%. If used while below 50% health, your melee abilities are empowered for 5 seconds, causing them to drain life from targets hit.","Reduces the cooldown of Berserker Rage by 10 seconds. Capstone Bonus: Using Berserker Rage or Heroic Fury will generate 50 rage, reduce the duration of active disarm effects by 50%. If used while below 50% health, your melee abilities are empowered for 5 seconds, causing them to drain life from targets hit.","Reduces the cooldown of Berserker Rage by 15 seconds. Capstone Bonus: Using Berserker Rage or Heroic Fury will generate 50 rage, reduce the duration of active disarm effects by 50%. If used while below 50% health, your melee abilities are empowered for 5 seconds, causing them to drain life from targets hit."],"system":"classic"},{"id":"talent-1581","treeId":"warrior-fury","index":10,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":4,"icon":"/assets/ui/talents/icons/ability_dualwield.png","maxRank":3,"name":"Sidearm Specialization","description":"Increases your armor penetration by 9% and your chance to hit with spells and abilities by 3%. Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.","rankDescriptions":["Increases your armor penetration by 3% and your chance to hit with spells and abilities by 1%. Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.","Increases your armor penetration by 6% and your chance to hit with spells and abilities by 2%. Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects.","Increases your armor penetration by 9% and your chance to hit with spells and abilities by 3%. Capstone Bonus: All threat generated is reduced by 20%. This capstone effect does not stack with similar capstone effects."],"system":"classic"},{"id":"talent-1657","treeId":"warrior-fury","index":13,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/talents/icons/ability_marksmanship.png","maxRank":3,"name":"Fervor","description":"Increases your chance to hit with spells and abilities by 3%. Increases your critical strike chance with all spells and abilities by 3% while in Berserker Stance.","rankDescriptions":["Increases your chance to hit with spells and abilities by 1%. Increases your critical strike chance with all spells and abilities by 1% while in Berserker Stance.","Increases your chance to hit with spells and abilities by 2%. Increases your critical strike chance with all spells and abilities by 2% while in Berserker Stance.","Increases your chance to hit with spells and abilities by 3%. Increases your critical strike chance with all spells and abilities by 3% while in Berserker Stance."],"system":"classic"},{"id":"talent-1864","treeId":"warrior-fury","index":18,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/talents/icons/ability_warrior_endlessrage.png","maxRank":3,"name":"Intensify Rage","description":"Reduces the cooldown of your Bloodrage, Recklessness and Death Wish abilities by 33%. Reduces the health cost of Bloodrage by 75% Capstone Bonus: Your successful interrupts with Pummel silence the target for 3 seconds and grants you Bloodrage (at no health cost).","rankDescriptions":["Reduces the cooldown of your Bloodrage, Recklessness and Death Wish abilities by 11%. Reduces the health cost of Bloodrage by 25% Capstone Bonus: Your successful interrupts with Pummel now silence the target for 3 seconds and grants you Bloodrage (at no health cost).","Reduces the cooldown of your Bloodrage, Recklessness and Death Wish abilities by 22%. Reduces the health cost of Bloodrage by 50% Capstone Bonus: Your successful interrupts with Pummel now silence the target for 3 seconds and grants you Bloodrage (at no health cost).","Reduces the cooldown of your Bloodrage, Recklessness and Death Wish abilities by 33%. Reduces the health cost of Bloodrage by 75% Capstone Bonus: Your successful interrupts with Pummel silence the target for 3 seconds and grants you Bloodrage (at no health cost)."],"system":"classic"},{"id":"talent-1865","treeId":"warrior-fury","index":21,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/talents/icons/ability_warrior_furiousresolve.png","maxRank":2,"name":"Furious Attacks","description":"Your melee attacks have a chance to reduce all healing done to the target by 10% for 8 seconds. This can stack up to 3 times. Does not stack with other similar effects.","rankDescriptions":["Your melee attacks have a chance to reduce all healing done to the target by 5% for 8 seconds. This can stack up to 3 times. Does not stack with other similar effects.","Your melee attacks have a chance to reduce all healing done to the target by 10% for 8 seconds. This can stack up to 3 times. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-1868","treeId":"warrior-fury","index":23,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":9,"icon":"/assets/ui/talents/icons/ability_heroicleap.png","maxRank":1,"name":"Heroic Fury","description":"Removes any movement impairing effects and refreshes the cooldown of your Intercept and Siegebreaker abilities. This ability is usable while shapeshifted.","rankDescriptions":["Removes any movement impairing effects and refreshes the cooldown of your Intercept and Siegebreaker abilities. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-2250","treeId":"warrior-fury","index":1,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":1,"icon":"/assets/ui/talents/icons/inv_shoulder_22.png","maxRank":3,"name":"Armored to the Teeth","description":"Increases your melee attack power by 3 for every the listed amount armor value you have.","rankDescriptions":["Increases your melee attack power by 1 for every the listed amount armor value you have.","Increases your melee attack power by 2 for every the listed amount armor value you have.","Increases your melee attack power by 3 for every the listed amount armor value you have."],"system":"classic"},{"id":"talent-158","treeId":"warrior-fury","index":2,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/talents/icons/spell_nature_purge.png","maxRank":2,"name":"Booming Voice","description":"Increases the duration of your Battle Shout, Demoralizing Shout and Commanding Shout by 50% and increases their area of effect by 50%. Increases the melee attack power reduction of your Demoralizing Shout by 20%.","rankDescriptions":["Increases the duration of your Battle Shout, Demoralizing Shout and Commanding Shout by 50% and increases their area of effect by 25%. Increases the melee attack power reduction of your Demoralizing Shout by 10%.","Increases the duration of your Battle Shout, Demoralizing Shout and Commanding Shout by 50% and increases their area of effect by 50%. Increases the melee attack power reduction of your Demoralizing Shout by 20%."],"system":"classic"},{"id":"talent-160","treeId":"warrior-fury","index":7,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_deathscream.png","maxRank":1,"name":"Piercing Howl","description":"Causes all enemies within 10 yards to be Dazed, reducing movement speed by 50% for 6 seconds. This ability is usable while shapeshifted.","rankDescriptions":["Causes all enemies within 10 yards to be Dazed, reducing movement speed by 50% for 6 seconds. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-161","treeId":"warrior-fury","index":4,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/talents/icons/ability_warrior_warcry.png","maxRank":3,"name":"Improved Victory Rush","description":"Increases the critical strike chance of your Victory Rush by 60% and gives you a 100% when you parry to allow the use of Victory Rush for 10 seconds. Victory Rush used this way generates an additional 100% threat. This effect may only occur once every 12 seconds.","rankDescriptions":["Increases the critical strike chance of your Victory Rush by 20% and gives you a 33% when you parry to allow the use of Victory Rush for 10 seconds. Victory Rush used this way generates an additional 33% threat. This effect may only occur once every 12 seconds.","Increases the critical strike chance of your Victory Rush by 40% and gives you a 66% when you parry to allow the use of Victory Rush for 10 seconds. Victory Rush used this way generates an additional 66% threat. This effect may only occur once every 12 seconds.","Increases the critical strike chance of your Victory Rush by 60% and gives you a 100% when you parry to allow the use of Victory Rush for 10 seconds. Victory Rush used this way generates an additional 100% threat. This effect may only occur once every 12 seconds."],"system":"classic"},{"id":"talent-165","treeId":"warrior-fury","index":14,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/talents/icons/spell_shadow_deathpact.png","maxRank":1,"name":"Death Wish","description":"When activated you become enraged, increasing your physical damage by 15% but increasing all damage taken by 5%. Lasts 30 seconds. This ability is usable while shapeshifted. Shares a cooldown with Avatar.","rankDescriptions":["When activated you become enraged, increasing your physical damage by 15% but increasing all damage taken by 5%. Lasts 30 seconds. This ability is usable while shapeshifted. Shares a cooldown with Avatar."],"system":"classic"},{"id":"talent-167","treeId":"warrior-fury","index":19,"prerequisiteId":"talent-165","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-165","requiredRank":1}],"column":2,"row":7,"icon":"/assets/ui/talents/icons/spell_nature_bloodlust.png","maxRank":1,"name":"Bloodthirst","description":"Instantly attack the target causing the listed amount power*55/100} damage. Each bleed applied by you increases the damage of Bloodthirst by 8%, up to a maximum of 40%. In addition, the next successful melee attack will restore 1% of max health. This effect lasts 8 seconds. Damage is based on your attack power. This ability is usable while shapeshifted.","rankDescriptions":["Instantly attack the target causing the listed amount power*55/100} damage. Each bleed applied by you increases the damage of Bloodthirst by 8%, up to a maximum of 40%. In addition, the next successful melee attack will restore 1% of max health. This effect lasts 8 seconds. Damage is based on your attack power. This ability is usable while shapeshifted."],"system":"classic"},{"id":"talent-1542","treeId":"warrior-fury","index":11,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/talents/icons/inv_sword_48.png","maxRank":3,"name":"Improved Execute","description":"Reduces the rage cost of your Execute ability by 6 and increases its damage by 12%. This damage increase is doubled against targets below 20% health. Capstone Bonus: Using Execute on a target below 20% health increases your melee critical strike chance by 10% for 5 seconds, stacks up to 3 times.","rankDescriptions":["Reduces the rage cost of your Execute ability by 2 and increases its damage by 4%. This damage increase is doubled against targets below 20% health. Capstone Bonus: Using Execute on a target below 20% health increases your melee critical strike chance by 10% for 5 seconds, stacks up to 3 times.","Reduces the rage cost of your Execute ability by 4 and increases its damage by 8%. This damage increase is doubled against targets below 20% health. Capstone Bonus: Using Execute on a target below 20% health increases your melee critical strike chance by 10% for 5 seconds, stacks up to 3 times.","Reduces the rage cost of your Execute ability by 6 and increases its damage by 12%. This damage increase is doubled against targets below 20% health. Capstone Bonus: Using Execute on a target below 20% health increases your melee critical strike chance by 10% for 5 seconds, stacks up to 3 times."],"system":"classic"},{"id":"talent-1659","treeId":"warrior-fury","index":24,"prerequisiteId":"talent-167","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-167","requiredRank":1}],"column":2,"row":9,"icon":"/assets/ui/talents/icons/ability_warrior_rampage.png","maxRank":1,"name":"Rampage","description":"Increases ranged and melee critical strike chance of all party and raid members within the listed amount yds by 5%. Does not stack with other similar effects.","rankDescriptions":["Increases ranged and melee critical strike chance of all party and raid members within the listed amount yds by 5%. Does not stack with other similar effects."],"system":"classic"},{"id":"talent-1867","treeId":"warrior-fury","index":27,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":11,"icon":"/assets/ui/talents/icons/ability_warrior_titansgrip.png","maxRank":1,"name":"Titan's Grip","description":"Allows you to wield a Two-Handed Axe, Mace, or Sword in each hand. Also allows for a weapon to be held in the off-hand while a Staff or Polearm is equipped. All damage dealt is reduced by 15% and your chance to hit with Auto Attacks from your Off-Hand is increased by 5%. While your Primary Stat is Spirit, all healing is reduced by 10%.","rankDescriptions":["Allows you to wield a Two-Handed Axe, Mace, or Sword in each hand. Also allows for a weapon to be held in the off-hand while a Staff or Polearm is equipped. All damage dealt is reduced by 15% and your chance to hit with Auto Attacks from your Off-Hand is increased by 5%. While your Primary Stat is Spirit, all healing is reduced by 10%."],"system":"classic"},{"id":"talent-2234","treeId":"warrior-fury","index":26,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/talents/icons/ability_warrior_intensifyrage.png","maxRank":3,"name":"Unending Fury","description":"Increases the damage done by your Bloodthirst, Raging Blow, Siegebreaker, Slam, Victory Rush and Whirlwind abilities by 15%. Increases the duration of Bloodrage by 6 seconds Increases the duration of Intercept by 1 sec. Capstone Bonus: While Bloodrage is active Fear effect durations are reduced by 30% and a successful Whirlwind reduces the cooldown of your next Whirlwind by 3 seconds.","rankDescriptions":["Increases the damage done by your Bloodthirst, Raging Blow, Siegebreaker, Slam, Victory Rush and Whirlwind abilities by 5%. Increases the duration of Bloodrage by 2 seconds. Increases the duration of Intercept by 0.33 sec. Capstone Bonus: While Bloodrage is active Fear effect durations are reduced by 30% and a successful Whirlwind reduces the cooldown of your next Whirlwind by 3 seconds.","Increases the damage done by your Bloodthirst, Raging Blow, Siegebreaker, Slam, Victory Rush and Whirlwind abilities by 10%. Increases the duration of Bloodrage by 4 seconds. increases the duration of Intercept by 0.66 sec. Capstone Bonus: While Bloodrage is active Fear effect durations are reduced by 30% and a successful Whirlwind reduces the cooldown of your next Whirlwind by 3 seconds.","Increases the damage done by your Bloodthirst, Raging Blow, Siegebreaker, Slam, Victory Rush and Whirlwind abilities by 15%. Increases the duration of Bloodrage by 6 seconds Increases the duration of Intercept by 1 sec. Capstone Bonus: While Bloodrage is active Fear effect durations are reduced by 30% and a successful Whirlwind reduces the cooldown of your next Whirlwind by 3 seconds."],"system":"classic"},{"id":"talent-155","treeId":"warrior-fury","index":12,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/talents/icons/spell_shadow_unholyfrenzy.png","maxRank":5,"name":"Enrage","description":"Increases your Physical damage by 10% and melee haste by 10% for 12 seconds after using Bloodrage, Berserker Rage or Recklessness. Capstone Bonus: This effect also trigger from being struck by a damaging attack while below 50% health. This effect can occur once every 5 seconds.","rankDescriptions":["Increases your Physical damage by 2% and melee haste by 2% for 12 seconds after using Bloodrage, Berserker Rage or Recklessness. Capstone Bonus: This effect also trigger from being struck by a damaging attack while below 50% health. This effect can occur once every 5 seconds.","Increases your Physical damage by 4% and melee haste by 4% for 12 seconds after using Bloodrage, Berserker Rage or Recklessness. Capstone Bonus: This effect also trigger from being struck by a damaging attack while below 50% health. This effect can occur once every 5 seconds.","Increases your Physical damage by 6% and melee haste by 6% for 12 seconds after using Bloodrage, Berserker Rage or Recklessness. Capstone Bonus: This effect also trigger from being struck by a damaging attack while below 50% health. This effect can occur once every 5 seconds.","Increases your Physical damage by 8% and melee haste by 8% for 12 seconds after using Bloodrage, Berserker Rage or Recklessness. Capstone Bonus: This effect also trigger from being struck by a damaging attack while below 50% health. This effect can occur once every 5 seconds.","Increases your Physical damage by 10% and melee haste by 10% for 12 seconds after using Bloodrage, Berserker Rage or Recklessness. Capstone Bonus: This effect also trigger from being struck by a damaging attack while below 50% health. This effect can occur once every 5 seconds."],"system":"classic"},{"id":"talent-156","treeId":"warrior-fury","index":17,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/talents/icons/ability_ghoulfrenzy.png","maxRank":3,"name":"Shredding Blows","description":"Increases your armor penetration by 12% for your next 3 swings after dealing a melee critical strike.","rankDescriptions":["Increases your armor penetration by 4% for your next 3 swings after dealing a melee critical strike.","Increases your armor penetration by 8% for your next 3 swings after dealing a melee critical strike.","Increases your armor penetration by 12% for your next 3 swings after dealing a melee critical strike."],"system":"classic"},{"id":"talent-157","treeId":"warrior-fury","index":3,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/talents/icons/ability_rogue_eviscerate.png","maxRank":5,"name":"Cruelty","description":"Increases your melee and ranged critical strike chance by 5%. Increases your total Strength by 5%. Capstone Bonus: The periodic damage from your Rend can critically hit.","rankDescriptions":["Increases your melee and ranged critical strike chance by 1%. Increases your total Strength by 1%. Capstone Bonus: The periodic damage from your Rend can critically hit.","Increases your melee and ranged critical strike chance by 2%. Increases your total Strength by 2%. Capstone Bonus: The periodic damage from your Rend can critically hit.","Increases your melee and ranged critical strike chance by 3%. Increases your total Strength by 3%. Capstone Bonus: The periodic damage from your Rend can critically hit.","Increases your melee and ranged critical strike chance by 4%. Increases your total Strength by 4%. Capstone Bonus: The periodic damage from your Rend can critically hit.","Increases your melee and ranged critical strike chance by 5%. Increases your total Strength by 5%. Capstone Bonus: The periodic damage from your Rend can critically hit."],"system":"classic"},{"id":"talent-159","treeId":"warrior-fury","index":5,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/talents/icons/spell_nature_stoneclawtotem.png","maxRank":2,"name":"Unbridled Wrath","description":"Gives you a chance to generate 4 additional rage points when you deal damage with Heroic Strike, Cleave or an auto attack.","rankDescriptions":["Gives you a chance to generate 2 additional rage points when you deal damage with Heroic Strike, Cleave or an auto attack.","Gives you a chance to generate 4 additional rage points when you deal damage with Heroic Strike, Cleave or an auto attack."],"system":"classic"},{"id":"talent-661","treeId":"warrior-fury","index":8,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/talents/icons/spell_shadow_summonimp.png","maxRank":3,"name":"Blood Craze","description":"Regenerates 3% of your base Health over 6 seconds after being the victim of a critical strike. If you have an Enrage effect active, the healing is tripled. This effect can not occur more than once every 12 seconds.","rankDescriptions":["Regenerates 1% of your base Health over 6 seconds after being the victim of a critical strike. If you have an Enrage effect active, the healing is tripled. This effect can not occur more than once every 12 seconds.","Regenerates 2% of your base Health over 6 seconds after being the victim of a critical strike. If you have an Enrage effect active, the healing is tripled. This effect can not occur more than once every 12 seconds.","Regenerates 3% of your base Health over 6 seconds after being the victim of a critical strike. If you have an Enrage effect active, the healing is tripled. This effect can not occur more than once every 12 seconds."],"system":"classic"},{"id":"talent-1543","treeId":"warrior-fury","index":15,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/talents/icons/ability_rogue_sprint.png","maxRank":2,"name":"Improved Intercept","description":"Reduces the cooldown of your Intercept ability by 10 sec.","rankDescriptions":["Reduces the cooldown of your Intercept ability by 5 sec.","Reduces the cooldown of your Intercept ability by 10 sec."],"system":"classic"},{"id":"talent-1866","treeId":"warrior-fury","index":25,"prerequisiteId":"talent-167","prerequisiteRank":1,"prerequisites":[{"talentId":"talent-167","requiredRank":1}],"column":3,"row":9,"icon":"/assets/ui/talents/icons/ability_warrior_bloodsurge.png","maxRank":3,"name":"Bloodsurge","description":"Increases the duration of Bloodbath by 3. Your Mortal Strike, Execute, Slam, Whirlwind, Raging Blow and Intercept hits have a 100% chance of making your next Bloodthirst cost no rage, trigger no cooldown, ignore 50% of the target's armor and refresh Bloodbath on the target. This effect has a 6 sec cooldown.","rankDescriptions":["Increases the duration of Bloodbath by 1. Your Mortal Strike, Execute, Slam, Whirlwind, Raging Blow and Intercept hits have a 33% chance of making your next Bloodthirst cost no rage, trigger no cooldown, ignore 50% of the target's armor and refresh Bloodbath on the target. This effect has a 6 sec cooldown.","Increases the duration of Bloodbath by 2. Your Mortal Strike, Execute, Slam, Whirlwind, Raging Blow and Intercept hits have a 66% chance of making your next Bloodthirst cost no rage, trigger no cooldown, ignore 50% of the target's armor and refresh Bloodbath on the target. This effect has a 6 sec cooldown.","Increases the duration of Bloodbath by 3. Your Mortal Strike, Execute, Slam, Whirlwind, Raging Blow and Intercept hits have a 100% chance of making your next Bloodthirst cost no rage, trigger no cooldown, ignore 50% of the target's armor and refresh Bloodbath on the target. This effect has a 6 sec cooldown."],"system":"classic"},{"id":"talent-154","treeId":"warrior-fury","index":9,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/talents/icons/spell_nature_focusedmind.png","maxRank":2,"name":"Commanding Presence","description":"Battle Shout increases your Strength by the listed amountthe listed amount and Commanding Shout increases your Stamina by the listed amountthe listed amount for 10 minutes. These effects scale with your level.","rankDescriptions":["Battle Shout increases your Strength by the listed amountthe listed amount and Commanding Shout increases your Stamina by the listed amountthe listed amount for 10 minutes. These effects scale with your level.","Battle Shout increases your Strength by the listed amountthe listed amount and Commanding Shout increases your Stamina by the listed amountthe listed amount for 10 minutes. These effects scale with your level."],"system":"classic"},{"id":"talent-1655","treeId":"warrior-fury","index":20,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/talents/icons/ability_whirlwind.png","maxRank":2,"name":"Improved Whirlwind","description":"Increases the damage of your Whirlwind ability by 6% and reduces its cooldown by 2 sec.","rankDescriptions":["Increases the damage of your Whirlwind ability by 3% and reduces its cooldown by 1 sec.","Increases the damage of your Whirlwind ability by 6% and reduces its cooldown by 2 sec."],"system":"classic"},{"id":"talent-1658","treeId":"warrior-fury","index":22,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/talents/icons/ability_racial_avatar.png","maxRank":3,"name":"Improved Berserker Stance","description":"Berserker Stance now also increases your damage against targets below 35% health by 9%. This effect is doubled while Enrage is active. Capstone Bonus: Raging Blow increases the duration of your Recklessness by 1 second.","rankDescriptions":["Berserker Stance now also increases your damage against targets below 35% health by 3%. This effect is doubled while Enrage is active. Capstone Bonus: Raging Blow increases the duration of your Recklessness by 1 second.","Berserker Stance now also increases your damage against targets below 35% health by 6%. This effect is doubled while Enrage is active. Capstone Bonus: Raging Blow increases the duration of your Recklessness by 1 second.","Berserker Stance now also increases your damage against targets below 35% health by 9%. This effect is doubled while Enrage is active. Capstone Bonus: Raging Blow increases the duration of your Recklessness by 1 second."],"system":"classic"}]} diff --git a/src/game/generated/talentUi/witch-doctor.json b/src/game/generated/talentUi/witch-doctor.json new file mode 100644 index 00000000..0c8490bd --- /dev/null +++ b/src/game/generated/talentUi/witch-doctor.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"witch-doctor","trees":[{"id":"coa-witch-doctor-36","classId":"witch-doctor","name":"Shadowhunting","icon":"/assets/ui/spells/nhi_naturearrow_(2)_border.png","background":"","description":"Shadowhunting nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-witch-doctor-34","classId":"witch-doctor","name":"Voodoo","icon":"/assets/ui/spells/custom_45_voodoo_border.png","background":"","description":"Voodoo nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-witch-doctor-35","classId":"witch-doctor","name":"Brewing","icon":"/assets/ui/spells/inv_mushroom_07.png","background":"","description":"Brewing nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-witch-doctor-87","classId":"witch-doctor","name":"Class","icon":"/assets/ui/spells/nhi_naturehide_border.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-31154","treeId":"coa-witch-doctor-34","index":31154,"prerequisiteId":"coa-entry-4004","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4004","requiredRank":1},{"talentId":"coa-entry-29301","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/custom_45_voodoo_border.png","maxRank":1,"name":"Shadow Puppets","description":"Summon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 25 + 22% shadow SP Shadow damage, repeating every 1 sec for 3 seconds.","rankDescriptions":["Summon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 25 + 22% shadow SP Shadow damage, repeating every 1 sec for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4004","treeId":"coa-witch-doctor-34","index":4004,"prerequisiteId":"coa-entry-29301","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29301","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/trade_archaeology_troll_voodoodoll.png","maxRank":1,"name":"Puppeteer's Threads","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-31345","treeId":"coa-witch-doctor-34","index":31345,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/nhi_spiritualrage_border.png","maxRank":2,"name":"Loa Spirits","description":"Damage dealt and healing done now has a 15% chance to collect a Spirit. In addition, each active Spirit now increases your Spirit by 4%.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times.","rankDescriptions":["Damage dealt and healing done now has a 8% chance to collect a Spirit. In addition, each active Spirit now increases your Spirit by 2%.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times.","Damage dealt and healing done now has a 15% chance to collect a Spirit. In addition, each active Spirit now increases your Spirit by 4%.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31344","treeId":"coa-witch-doctor-34","index":31344,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/achievement_zone_tanaanjungle.png","maxRank":1,"name":"Stranglethorn Style","description":"Increases your critical strike chance by 4% and reduces threat generated by your Voodoo spells by -20%.","rankDescriptions":["Increases your critical strike chance by 4% and reduces threat generated by your Voodoo spells by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29928","treeId":"coa-witch-doctor-34","index":29928,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/skill_icon_skill5_border.png","maxRank":1,"name":"Bad Juju","description":"Hurl a bolt of dark magic at an enemy, dealing 191 + 100% SP + 30% Spirit Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by -20% for 8 seconds.","rankDescriptions":["Hurl a bolt of dark magic at an enemy, dealing 191 + 100% SP + 30% Spirit Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by -20% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31340","treeId":"coa-witch-doctor-34","index":31340,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/spell_shadow_impphaseshift.png","maxRank":1,"name":"Zalazane's Malice","description":"Increases the damage of Hex of Malice by 15% and the duration of Jinxes by 2 sec.","rankDescriptions":["Increases the damage of Hex of Malice by 15% and the duration of Jinxes by 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7157","treeId":"coa-witch-doctor-34","index":7157,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/nhi_nightmarepuppet_border.png","maxRank":1,"name":"Hexfire","description":"Blast an enemy with hexfire, dealing cond(gt(SPFI, SPN), 60+0+SPFI*0.55, 60+0+SPN*0.55+SPI*0.5) Fire damage, scaling with your Spirit.","rankDescriptions":["Blast an enemy with hexfire, dealing cond(gt(SPFI, SPN), 60+0+SPFI*0.55, 60+0+SPN*0.55+SPI*0.5) Fire damage, scaling with your Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4533","treeId":"coa-witch-doctor-34","index":4533,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_nature_faeriefire.png","maxRank":1,"name":"Voodoo Power","description":"Level 20 Passive Increases your spell damage by 50% of your Spirit and your spell hit rating by 5% of your Spirit.","rankDescriptions":["Level 20 Passive Increases your spell damage by 50% of your Spirit and your spell hit rating by 5% of your Spirit."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-6058","treeId":"coa-witch-doctor-34","index":6058,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/trade_archaeology_troll_tablet.png","maxRank":1,"name":"Dark Magic","description":"Reduces the cast time of Malefic Wrath and Bad Juju by -0.5 sec.","rankDescriptions":["Reduces the cast time of Malefic Wrath and Bad Juju by -0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30973","treeId":"coa-witch-doctor-34","index":30973,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/inv_staff_2h_zandalarquest_b_02.png","maxRank":3,"name":"Staff of the Coven","description":"Increases your Spirit by 25% and your hit chance by 6%.","rankDescriptions":["Increases your Spirit by 8% and your hit chance by 2%.","Increases your Spirit by 16% and your hit chance by 4%.","Increases your Spirit by 25% and your hit chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6062","treeId":"coa-witch-doctor-34","index":6062,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/_spellcasting_shadow.png","maxRank":2,"name":"Ritual Hexing","description":"Increases the damage of Bad Juju, Malefic Wrath and Hexfire by 20% against enemies affected by Hex of Malice.","rankDescriptions":["Increases the damage of Bad Juju, Malefic Wrath and Hexfire by 10% against enemies affected by Hex of Malice.","Increases the damage of Bad Juju, Malefic Wrath and Hexfire by 20% against enemies affected by Hex of Malice."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30596","treeId":"coa-witch-doctor-34","index":30596,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/nhi_unholyspirit_border.png","maxRank":1,"name":"Puppeteer's Grasp","description":"Transform into a malignant spirit for 30 seconds, allowing you to cast Malefic Wrath and Bad Juju while moving, and periodically granting you a Spirit every 2 sec.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times.","rankDescriptions":["Transform into a malignant spirit for 30 seconds, allowing you to cast Malefic Wrath and Bad Juju while moving, and periodically granting you a Spirit every 2 sec.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6046","treeId":"coa-witch-doctor-34","index":6046,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/_troll_01.png","maxRank":1,"name":"Jin'do's Wrath","description":"Increases the critical strike chance and critical damage of Hexfire by 25%.","rankDescriptions":["Increases the critical strike chance and critical damage of Hexfire by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4532","treeId":"coa-witch-doctor-34","index":4532,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/_bannishkt_purple.png","maxRank":1,"name":"Overflowing Juju","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-31343","treeId":"coa-witch-doctor-34","index":31343,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/spell_nature_rejuvenation.png","maxRank":1,"name":"Overflowing Juju","description":"Increases the spell power scaling of Malefic Wrath, Shadowflare, and Bad Juju by 20%.","rankDescriptions":["Increases the spell power scaling of Malefic Wrath, Shadowflare, and Bad Juju by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31348","treeId":"coa-witch-doctor-34","index":31348,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/nhi_skullofhate_border.png","maxRank":1,"name":"Growing Malice","description":"Each tick of Hex of Malice increases the damage of the next tick on the enemy by 3%, stacking 10 times.","rankDescriptions":["Each tick of Hex of Malice increases the damage of the next tick on the enemy by 3%, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6007","treeId":"coa-witch-doctor-34","index":6007,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/achievement_zg_hexxer.png","maxRank":2,"name":"Beware Da Voodoo","description":"Increases the duration of Mimic Ward and Spirits by 8 sec.","rankDescriptions":["Increases the duration of Mimic Ward and Spirits by 4 sec.","Increases the duration of Mimic Ward and Spirits by 8 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31347","treeId":"coa-witch-doctor-34","index":31347,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/_shamantotam_wind.png","maxRank":1,"name":"Hexplosion","description":"Your offensive critical strikes now increase your haste by 20% for 6 seconds.","rankDescriptions":["Your offensive critical strikes now increase your haste by 20% for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31350","treeId":"coa-witch-doctor-34","index":31350,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/inv_misc_thread_01.png","maxRank":1,"name":"Voodoo Strings","description":"When Bad Juju is used on enemies affected by Puppeteer's Threads, it strikes an additional time every 1 sec for 30% of the damage dealt over 3 seconds as Nature damage.","rankDescriptions":["When Bad Juju is used on enemies affected by Puppeteer's Threads, it strikes an additional time every 1 sec for 30% of the damage dealt over 3 seconds as Nature damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6644","treeId":"coa-witch-doctor-34","index":6644,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/inv_archaeology_80_zandalari_sanguinetotem.png","maxRank":1,"name":"Malignant","description":"Damage dealt by Bad Juju and Hexfire now spreads Hex of Malice to up to 1 nearby enemy.","rankDescriptions":["Damage dealt by Bad Juju and Hexfire now spreads Hex of Malice to up to 1 nearby enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6059","treeId":"coa-witch-doctor-34","index":6059,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_qirajidol_death.png","maxRank":1,"name":"Voodoo Mind","description":"Shadow Puppets now ticks -10% faster and lasts 10% longer for each Spirit active on you.","rankDescriptions":["Shadow Puppets now ticks -10% faster and lasts 10% longer for each Spirit active on you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6045","treeId":"coa-witch-doctor-34","index":6045,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/_instableaffliction_purple.png","maxRank":1,"name":"Hollow Spirit","description":"Damage dealt by Shadowflare and Hexfire now increases the chance enemies are critically struck by 3% for 12 seconds.","rankDescriptions":["Damage dealt by Shadowflare and Hexfire now increases the chance enemies are critically struck by 3% for 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31341","treeId":"coa-witch-doctor-34","index":31341,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/spell_nature_regenerate.png","maxRank":1,"name":"It's Da Voodoo","description":"Increases the damage of Shadowflare by 25%.","rankDescriptions":["Increases the damage of Shadowflare by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5333","treeId":"coa-witch-doctor-34","index":5333,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/achievement_jadeserpent_2.png","maxRank":1,"name":"Voodoo Spirits","description":"Hexfire now snaps your Puppeteer's Threads on your target, unleashing its damage on them instantly and collecting one Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times.","rankDescriptions":["Hexfire now snaps your Puppeteer's Threads on your target, unleashing its damage on them instantly and collecting one Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11532","treeId":"coa-witch-doctor-34","index":11532,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/spell_nature_bloodlust.png","maxRank":1,"name":"Juju Spirits","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-6053","treeId":"coa-witch-doctor-34","index":6053,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/5_clonesnobg_border.png","maxRank":1,"name":"Voodoo Unleashed","description":"Your Mimic Wards now also cast Bad Juju and casting Bad Juju now reduces the cooldown of Shadow Puppets by -3 sec.","rankDescriptions":["Your Mimic Wards now also cast Bad Juju and casting Bad Juju now reduces the cooldown of Shadow Puppets by -3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30889","treeId":"coa-witch-doctor-34","index":30889,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/spell_shadow_chilltouch.png","maxRank":1,"name":"Prolonged Malice","description":"Increases the duration of your Hex of Malice by 6 sec and the range of your offensive Voodoo spells by 6 yds.","rankDescriptions":["Increases the duration of your Hex of Malice by 6 sec and the range of your offensive Voodoo spells by 6 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29121","treeId":"coa-witch-doctor-34","index":29121,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_shadow_fingerofdeath.png","maxRank":1,"name":"Malignant Jinx","description":"Curse an enemy for 8 seconds, causing their next spell cast to silence them for 5 sec. Can only have 1 Jinx active on a target at a time.","rankDescriptions":["Curse an enemy for 8 seconds, causing their next spell cast to silence them for 5 sec. Can only have 1 Jinx active on a target at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31349","treeId":"coa-witch-doctor-34","index":31349,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/inv_misc_archaeology_trollgolem.png","maxRank":1,"name":"War Golem","description":"Summon a War Golem for 10 seconds, absorbing damage dealt to you based on your Intellect, and redirecting harmful spells cast on nearby allies to itself.","rankDescriptions":["Summon a War Golem for 10 seconds, absorbing damage dealt to you based on your Intellect, and redirecting harmful spells cast on nearby allies to itself."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5332","treeId":"coa-witch-doctor-34","index":5332,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/ability_racial_wardoftheloashadow.png","maxRank":1,"name":"Dark Loa's Blessing","description":"Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, your Shadow Puppets now deals damage -20% faster.","rankDescriptions":["Increases the all damage dealt by party and raid members by 3%. Does not stack with similar effects. In addition, your Shadow Puppets now deals damage -20% faster."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29768","treeId":"coa-witch-doctor-34","index":29768,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/ability_racial_embraceoftheloa_bwonsomdi.png","maxRank":1,"name":"Voice of Bwonsamdi","description":"Let the spirit of Bwonsamdi possess you for 20 seconds. Dealing periodic damage unleashes a trapped voodoo spirit at enemies, exploding for 162 + 25% shadow SP Shadow damage.","rankDescriptions":["Let the spirit of Bwonsamdi possess you for 20 seconds. Dealing periodic damage unleashes a trapped voodoo spirit at enemies, exploding for 162 + 25% shadow SP Shadow damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7100","treeId":"coa-witch-doctor-34","index":7100,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv__faction_zandalariempire.png","maxRank":1,"name":"Dark Effigy","description":"Your Bad Juju and Hexfire now strike 2 additional nearby enemies. Shadowflare now deals 50% increased damage to enemies affected by Puppeteer's Threads.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.","rankDescriptions":["Your Bad Juju and Hexfire now strike 2 additional nearby enemies. Shadowflare now deals 50% increased damage to enemies affected by Puppeteer's Threads.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."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6055","treeId":"coa-witch-doctor-34","index":6055,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/_d3bigbadvoodoo.png","maxRank":1,"name":"Soul Marionette","description":"Root yourself for 8 sec and create 5 clones of yourself that channel on you, applying a stack of Soul Marionette.Soul Marionette (Stacks)Increases your haste by 1% per stack. At 20 stacks, you transform into a powerful spirit, increasing the damage of Malefic Wrath and Bad Juju by 30% and guaranteeing it to critically strike for 15 seconds. In addition, each Soul Marionette will explode, dealing 582 + 50% shadow SP Shadow Damage and stunning enemies within 5 yds for 4 seconds.","rankDescriptions":["Root yourself for 8 sec and create 5 clones of yourself that channel on you, applying a stack of Soul Marionette.Soul Marionette (Stacks)Increases your haste by 1% per stack. At 20 stacks, you transform into a powerful spirit, increasing the damage of Malefic Wrath and Bad Juju by 30% and guaranteeing it to critically strike for 15 seconds. In addition, each Soul Marionette will explode, dealing 582 + 50% shadow SP Shadow Damage and stunning enemies within 5 yds for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11133","treeId":"coa-witch-doctor-34","index":11133,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_corruptionfire_border.png","maxRank":1,"name":"Hexfire Adept","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-6057","treeId":"coa-witch-doctor-34","index":6057,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/_manaburn_shadow.png","maxRank":1,"name":"The Price of Power","description":"Voice of Bwonsamdi now increases your Spirit by 100%.","rankDescriptions":["Voice of Bwonsamdi now increases your Spirit by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31346","treeId":"coa-witch-doctor-34","index":31346,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_sword_2h_artifactsoulrend_d_05.png","maxRank":1,"name":"De Other Side","description":"Damage dealt by Shadow Puppets now increases your damage and critical strike chance by 1% for 20 seconds, stacking up to 10 times. Additional procs do not refresh the duration.","rankDescriptions":["Damage dealt by Shadow Puppets now increases your damage and critical strike chance by 1% for 20 seconds, stacking up to 10 times. Additional procs do not refresh the duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29929","treeId":"coa-witch-doctor-34","index":29929,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/achievement_dungeon_gundrak_heroic.png","maxRank":1,"name":"Malicious Golems","description":"Summoning your War Golem now increases your spell haste by 30% for 20 seconds. In addition, periodic damage dealt by Hex of Malice and damage dealt by Shadow Puppets will reduce the cooldown of War Golem by -0.5 sec.","rankDescriptions":["Summoning your War Golem now increases your spell haste by 30% for 20 seconds. In addition, periodic damage dealt by Hex of Malice and damage dealt by Shadow Puppets will reduce the cooldown of War Golem by -0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12645","treeId":"coa-witch-doctor-35","index":12645,"prerequisiteId":"coa-entry-4005","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4005","requiredRank":1},{"talentId":"coa-entry-29744","requiredRank":1}],"column":4,"row":1,"icon":"/assets/ui/spells/inv_mushroom_07.png","maxRank":1,"name":"Ingredient: Jungle Shrooms","description":"Brew Jungle Shrooms into your Cauldron. Cauldron: Heal up to 8 allies within 30 yds for 91 + 15% healing every 6 sec. Potion Toss: Heal the target ally for -3.75 to -2.75 every 3 sec for 18 seconds.","rankDescriptions":["Brew Jungle Shrooms into your Cauldron. Cauldron: Heal up to 8 allies within 30 yds for 91 + 15% healing every 6 sec. Potion Toss: Heal the target ally for -3.75 to -2.75 every 3 sec for 18 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12646","treeId":"coa-witch-doctor-35","index":12646,"prerequisiteId":"coa-entry-4005","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4005","requiredRank":1},{"talentId":"coa-entry-29744","requiredRank":1}],"column":6,"row":1,"icon":"/assets/ui/spells/inv_potion_99.png","maxRank":1,"name":"Potion Toss","description":"Fill a potion from your Cauldron, and toss it at a friendly target, healing them for 108 + 28% healing + 10% Spirit. The effect of Potion Toss will change based on your active Ingredients.","rankDescriptions":["Fill a potion from your Cauldron, and toss it at a friendly target, healing them for 108 + 28% healing + 10% Spirit. The effect of Potion Toss will change based on your active Ingredients."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4005","treeId":"coa-witch-doctor-35","index":4005,"prerequisiteId":"coa-entry-29744","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29744","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_misc_cauldron_nature.png","maxRank":1,"name":"Cauldron Brewer","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-6645","treeId":"coa-witch-doctor-35","index":6645,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_potion_119.png","maxRank":1,"name":"Mixologist","description":"You can now add an additional Ingredient to your Cauldron, enhancing your brew. Teaches you Ingredient: Fish Oil. Ingredient: Fish OilBrew Fish Oil into your Cauldron. Cauldron: Increases the movement speed and swim speed of allies within 40 yds by 10%. Potion: Increases the target ally's movement speed by 20% and dodge chance by 5% for 8 seconds.","rankDescriptions":["You can now add an additional Ingredient to your Cauldron, enhancing your brew. Teaches you Ingredient: Fish Oil. Ingredient: Fish OilBrew Fish Oil into your Cauldron. Cauldron: Increases the movement speed and swim speed of allies within 40 yds by 10%. Potion: Increases the target ally's movement speed by 20% and dodge chance by 5% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7131","treeId":"coa-witch-doctor-35","index":7131,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/inv_potion_110.png","maxRank":2,"name":"Potent Mixes","description":"Increases your healing done by 8% and reduces the threat generated by your spells by -30%.","rankDescriptions":["Increases your healing done by 4% and reduces the threat generated by your spells by -15%.","Increases your healing done by 8% and reduces the threat generated by your spells by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30884","treeId":"coa-witch-doctor-35","index":30884,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/trade_archaeology_crackedcrystalvial.png","maxRank":2,"name":"Mojo Addiction","description":"Increases your maximum mana by 10%.","rankDescriptions":["Increases your maximum mana by 5%.","Increases your maximum mana by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29736","treeId":"coa-witch-doctor-35","index":29736,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_axe_2h_zandalarquest_b_01.png","maxRank":2,"name":"Brewmaster","description":"Reduces the cast time of Loa's Brew by 0.25 sec.","rankDescriptions":["Reduces the cast time of Loa's Brew by 0.25 sec.","Reduces the cast time of Loa's Brew by 0.25 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9311","treeId":"coa-witch-doctor-35","index":9311,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_nature_slowingtotem.png","maxRank":1,"name":"Spirit Healer","description":"Level 20 Passive Increases healing power by 25% of Spirit and increases spell critical strike chance by 10% of Spirit.","rankDescriptions":["Level 20 Passive Increases healing power by 25% of Spirit and increases spell critical strike chance by 10% of Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-5055","treeId":"coa-witch-doctor-35","index":5055,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/nhi_earthmask_border.png","maxRank":1,"name":"Presence of the Loa","description":"Increases your critical strike chance by 4%.","rankDescriptions":["Increases your critical strike chance by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7128","treeId":"coa-witch-doctor-35","index":7128,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_potion_101.png","maxRank":1,"name":"Splash Potion","description":"Fill a splash potion from your Cauldron, and toss it at a location, healing up to 8 allies for 54 + 22.45% healing + 8% Spirit. Potion effects from Ingredients used this way have reduced effectiveness.","rankDescriptions":["Fill a splash potion from your Cauldron, and toss it at a location, healing up to 8 allies for 54 + 22.45% healing + 8% Spirit. Potion effects from Ingredients used this way have reduced effectiveness."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7129","treeId":"coa-witch-doctor-35","index":7129,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_drink_32_disgustingrotgut.png","maxRank":1,"name":"Plentiful Potions","description":"Reduces the cost of your Loa's Brew and Hexbreak by -10%.","rankDescriptions":["Reduces the cost of your Loa's Brew and Hexbreak by -10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29741","treeId":"coa-witch-doctor-35","index":29741,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/ability_deathknight_boneshield.png","maxRank":1,"name":"Ingredient: Frog Bones","description":"Brew Frog Bones into your Cauldron. Cauldron: Grants allies within 40 yds -3% reduced damage taken. Potion: Grants target ally an absorption shield, absorbing 100 + 35% Spirit + 80% healing damage, scaling with Spirit.","rankDescriptions":["Brew Frog Bones into your Cauldron. Cauldron: Grants allies within 40 yds -3% reduced damage taken. Potion: Grants target ally an absorption shield, absorbing 100 + 35% Spirit + 80% healing damage, scaling with Spirit."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29303","treeId":"coa-witch-doctor-35","index":29303,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/trade_alchemy_potione3.png","maxRank":1,"name":"Potion Boss","description":"Increases the effectiveness of Potion Toss and your tossed Ingredients by 20%.","rankDescriptions":["Increases the effectiveness of Potion Toss and your tossed Ingredients by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6022","treeId":"coa-witch-doctor-35","index":6022,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/custom_t_ghostwater_border.png","maxRank":1,"name":"Splash On 'Em","description":"Effective healing done by Loa's Brew and Mojo Beam reduce the cooldown of Potion Toss and Splash Potion by -1 sec.","rankDescriptions":["Effective healing done by Loa's Brew and Mojo Beam reduce the cooldown of Potion Toss and Splash Potion by -1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6021","treeId":"coa-witch-doctor-35","index":6021,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/inv_misc_herb_11a.png","maxRank":1,"name":"Ingredient: Bloodthistle","description":"Brew Bloodthistle into your Cauldron. Cauldron: Allies within 40 yds receive 8% increased healing. Potion: Causes target ally to leech 5% of all damage they deal for 15 seconds. Can only occur once every 0.5 sec.","rankDescriptions":["Brew Bloodthistle into your Cauldron. Cauldron: Allies within 40 yds receive 8% increased healing. Potion: Causes target ally to leech 5% of all damage they deal for 15 seconds. Can only occur once every 0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4715","treeId":"coa-witch-doctor-35","index":4715,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/inv_misc_fish_turtle_03.png","maxRank":1,"name":"Loa's Blessing","description":"Level 30 Passive Healing done by Loa's Brew now applies a random empowerment to the target ally.","rankDescriptions":["Level 30 Passive Healing done by Loa's Brew now applies a random empowerment to the target ally."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-6498","treeId":"coa-witch-doctor-35","index":6498,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_thanksgiving_turkey_act.png","maxRank":2,"name":"Fresh Ingredients","description":"Increases the healing of your Jungle Shrooms from your Cauldron by 30%.","rankDescriptions":["Increases the healing of your Jungle Shrooms from your Cauldron by 15%.","Increases the healing of your Jungle Shrooms from your Cauldron by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6013","treeId":"coa-witch-doctor-35","index":6013,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_monk_soothingmists.png","maxRank":1,"name":"Spirit Out Of The Bottle","description":"Casting Spirit in a Bottle now grants Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times. @ifknown:500950:In addition, channeling Mojo Beam causes Spirit in a Bottle to affect 3 additional allies near the primary target.:ifknown@","rankDescriptions":["Casting Spirit in a Bottle now grants Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times. @ifknown:500950:In addition, channeling Mojo Beam causes Spirit in a Bottle to affect 3 additional allies near the primary target.:ifknown@"],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7948","treeId":"coa-witch-doctor-35","index":7948,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/ability_shaman_cleansespirit.png","maxRank":1,"name":"Touch of the Spirits","description":"Damage dealt by Spirit In a Bottle causes the enemies to take 3% more damage and deal -3% less damage for 15 seconds.","rankDescriptions":["Damage dealt by Spirit In a Bottle causes the enemies to take 3% more damage and deal -3% less damage for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30823","treeId":"coa-witch-doctor-35","index":30823,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/nhi_unholybeam_border.png","maxRank":1,"name":"Mojo Beam","description":"Bring mojo to an ally, healing for 174 + 18.5% SP every 1 sec for 4 seconds. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost.","rankDescriptions":["Bring mojo to an ally, healing for 174 + 18.5% SP every 1 sec for 4 seconds. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6015","treeId":"coa-witch-doctor-35","index":6015,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_ascend_fish_bone.png","maxRank":1,"name":"Mojo: Fish Bones","description":"Your Potion Toss and Splash Potion cooldown is reset, and the next use within 5 seconds now applies Fish Bones to affected allies. Instantly swaps your Ingredients to Fish Oil and Frog Bones.","rankDescriptions":["Your Potion Toss and Splash Potion cooldown is reset, and the next use within 5 seconds now applies Fish Bones to affected allies. Instantly swaps your Ingredients to Fish Oil and Frog Bones."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4112","treeId":"coa-witch-doctor-35","index":4112,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/inv_misc_flower_02.png","maxRank":1,"name":"Spice: Peacebloom","description":"Infuse your Cauldron with Spice: Peacebloom. Reduces the duration of roots, stuns, and snares against allies within 40 yds by -25%.","rankDescriptions":["Infuse your Cauldron with Spice: Peacebloom. Reduces the duration of roots, stuns, and snares against allies within 40 yds by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7130","treeId":"coa-witch-doctor-35","index":7130,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/inv_misc_herb_07.png","maxRank":1,"name":"Spice: Earthroot","description":"Infuse your Cauldron with Spice: Earthbloom. Increases effectiveness of all Cauldron effects and Ingredients by 30%.","rankDescriptions":["Infuse your Cauldron with Spice: Earthbloom. Increases effectiveness of all Cauldron effects and Ingredients by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6016","treeId":"coa-witch-doctor-35","index":6016,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_ascend_mushroom_01.png","maxRank":1,"name":"Mojo: Frog Shrooms","description":"Your Potion Toss and Splash Potion cooldown is reset, and the next use within 5 seconds now applies Frog Shrooms to affected allies. Instantly swaps your Ingredients to Jungle Shrooms and Frog Bones.","rankDescriptions":["Your Potion Toss and Splash Potion cooldown is reset, and the next use within 5 seconds now applies Frog Shrooms to affected allies. Instantly swaps your Ingredients to Jungle Shrooms and Frog Bones."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31137","treeId":"coa-witch-doctor-35","index":31137,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/inv_misc_food_cooked_jadewitchbrew.png","maxRank":1,"name":"Jungle Secrets","description":"When you heal with Loa's Brew your Effigies will now heal an additional ally within 20 yds for 35% of the healing done, prioritizing allies with low health.","rankDescriptions":["When you heal with Loa's Brew your Effigies will now heal an additional ally within 20 yds for 35% of the healing done, prioritizing allies with low health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7132","treeId":"coa-witch-doctor-35","index":7132,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/inv_ascend_potion_11.png","maxRank":1,"name":"Rage Brew","description":"Throw your Rage Brew at an ally, regenerating 50% of their maximum Rage, Energy, and Focus. Increases their attack power and ranged attack power by 15% for 10 seconds.","rankDescriptions":["Throw your Rage Brew at an ally, regenerating 50% of their maximum Rage, Energy, and Focus. Increases their attack power and ranged attack power by 15% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29753","treeId":"coa-witch-doctor-35","index":29753,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/inv_ascend_potion_12.png","maxRank":1,"name":"Arcane Brew","description":"Throw your Arcane Brew at an ally, increasing their spell power and Spirit by 30 for 10 seconds. Spell power scales with caster level.","rankDescriptions":["Throw your Arcane Brew at an ally, increasing their spell power and Spirit by 30 for 10 seconds. Spell power scales with caster level."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6009","treeId":"coa-witch-doctor-35","index":6009,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_misc_herb_tigerlily.png","maxRank":1,"name":"Mojo: Jungle Thistle","description":"Your Potion Toss and Splash Potion cooldown is reset, and the next use within 5 seconds now applies Jungle Thistle to affected allies. Instantly swaps your Ingredients to Jungle Shrooms and Bloodthistle.","rankDescriptions":["Your Potion Toss and Splash Potion cooldown is reset, and the next use within 5 seconds now applies Jungle Thistle to affected allies. Instantly swaps your Ingredients to Jungle Shrooms and Bloodthistle."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4733","treeId":"coa-witch-doctor-35","index":4733,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/nhi_naturewave_border.png","maxRank":1,"name":"Mojo Wave","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-6020","treeId":"coa-witch-doctor-35","index":6020,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/ability_monk_chiwave.png","maxRank":1,"name":"Jungle Booms","description":"Jungle Shrooms used from your Cauldron now heal for 100% more, but heals -3 less targets.","rankDescriptions":["Jungle Shrooms used from your Cauldron now heal for 100% more, but heals -3 less targets."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29737","treeId":"coa-witch-doctor-35","index":29737,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/achievement_zone_tanaanjungle.png","maxRank":1,"name":"Doctor of the Jungle","description":"Jungle Shrooms used from your Cauldron now ticks -2 sec faster.","rankDescriptions":["Jungle Shrooms used from your Cauldron now ticks -2 sec faster."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6014","treeId":"coa-witch-doctor-35","index":6014,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_belt_mail_raidshamanmythic_s_01.png","maxRank":1,"name":"Sen'jin's Presence","description":"Casting Potion Toss and Spirit in a Bottle now reduce the cast time of your next 2 Loa's Brews by -20% for 10 seconds.","rankDescriptions":["Casting Potion Toss and Spirit in a Bottle now reduce the cast time of your next 2 Loa's Brews by -20% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6023","treeId":"coa-witch-doctor-35","index":6023,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/5_sumsnakearmy_border.png","maxRank":1,"name":"Disciple of Sseratus","description":"Increases the bonus healing scaling of Loa's Brew and Spirit in a Bottle by 15%.","rankDescriptions":["Increases the bonus healing scaling of Loa's Brew and Spirit in a Bottle by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29310","treeId":"coa-witch-doctor-35","index":29310,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/nhi_blooddrop_border.png","maxRank":1,"name":"Base: Beast Blood","description":"Infuse your Cauldron with Beast Blood for 10 seconds, causing 15% of the direct Physical damage taken by party and raid members within 40 yds to instead be dealt over time. Only 1 Base can be active at a time.","rankDescriptions":["Infuse your Cauldron with Beast Blood for 10 seconds, causing 15% of the direct Physical damage taken by party and raid members within 40 yds to instead be dealt over time. Only 1 Base can be active at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30333","treeId":"coa-witch-doctor-35","index":30333,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_enchanting_70_pet_cauldron.png","maxRank":1,"name":"Voodoo Cauldron","description":"Place down a Voodoo Cauldron for 15 seconds, increasing allies' healing received by 20% while near the cauldron. Allies within 15 yds are healed for 300 + 60% healing every 1.5 sec for 15 seconds.","rankDescriptions":["Place down a Voodoo Cauldron for 15 seconds, increasing allies' healing received by 20% while near the cauldron. Allies within 15 yds are healed for 300 + 60% healing every 1.5 sec for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6026","treeId":"coa-witch-doctor-35","index":6026,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/ability_monk_ironskinbrew.png","maxRank":1,"name":"Master of Concoctions","description":"Increases the duration of Ingredients by 20% and causes allies affected by Jungle Shrooms to heal for 5% of the damage they deal with their next 3 offensive abilities or spells for 15 seconds.","rankDescriptions":["Increases the duration of Ingredients by 20% and causes allies affected by Jungle Shrooms to heal for 5% of the damage they deal with their next 3 offensive abilities or spells for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29754","treeId":"coa-witch-doctor-35","index":29754,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_icewaterblast_border.png","maxRank":1,"name":"Base: Crystal Water","description":"Infuse your Cauldron with Crystal Water for 10 seconds, causing party and raid members within 40 yds to be shielded for 20% of their healing taken for 5 seconds. Only 1 Base can be active at a time.","rankDescriptions":["Infuse your Cauldron with Crystal Water for 10 seconds, causing party and raid members within 40 yds to be shielded for 20% of their healing taken for 5 seconds. Only 1 Base can be active at a time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-13133","treeId":"coa-witch-doctor-35","index":13133,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/spell_nature_giftofthewaterspirit.png","maxRank":1,"name":"It's Da Mojo","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":false},{"id":"coa-entry-6027","treeId":"coa-witch-doctor-35","index":6027,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/trade_alchemy_dpotion_c16.png","maxRank":1,"name":"Unstable Concoction","description":"Potion Toss now applies Unstable Concoction to the target for 20 seconds. Using Loa's Brew or Spirit in a Bottle on the target will trigger an explosion of mojo around the target, healing nearby allies within 20 yds for 177 + 40% healing.","rankDescriptions":["Potion Toss now applies Unstable Concoction to the target for 20 seconds. Using Loa's Brew or Spirit in a Bottle on the target will trigger an explosion of mojo around the target, healing nearby allies within 20 yds for 177 + 40% healing."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29740","treeId":"coa-witch-doctor-35","index":29740,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_ascend_alchemyingred_8.png","maxRank":1,"name":"Master Mixologist","description":"For 10 seconds, the effectiveness of all Cauldron effects and Ingredients is increased by 100% and you can cast Spirit in a Bottle while moving.","rankDescriptions":["For 10 seconds, the effectiveness of all Cauldron effects and Ingredients is increased by 100% and you can cast Spirit in a Bottle while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7133","treeId":"coa-witch-doctor-35","index":7133,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_enchant_alchemistcauldron.png","maxRank":1,"name":"Tiki Splash","description":"While a Base is active, Spirit in a Bottle will now transform into Tiki Splash.Tiki SplashSplash target location with healing waters, healing for 34 + 25% SP every 1 sec for 5 seconds. Gains a new effect based on your currently active Base. Scales with modifiers to Spirit in a Bottle. Beast Blood: Grants you 5% increased critical strike chance for 15 seconds, stacking 2 times. Crystal Water: Grants you a shield that absorbs 422 + 75% SP Magic damage for 15 seconds.","rankDescriptions":["While a Base is active, Spirit in a Bottle will now transform into Tiki Splash.Tiki SplashSplash target location with healing waters, healing for 34 + 25% SP every 1 sec for 5 seconds. Gains a new effect based on your currently active Base. Scales with modifiers to Spirit in a Bottle. Beast Blood: Grants you 5% increased critical strike chance for 15 seconds, stacking 2 times. Crystal Water: Grants you a shield that absorbs 422 + 75% SP Magic damage for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12086","treeId":"coa-witch-doctor-36","index":12086,"prerequisiteId":"coa-entry-4006","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4006","requiredRank":1},{"talentId":"coa-entry-29747","requiredRank":1}],"column":4,"row":1,"icon":"/assets/ui/spells/nhi_naturearrow_(2)_border.png","maxRank":1,"name":"Malefic Arrow","description":"Transforms your Malefic Wrath into Malefic Arrow.Malefic ArrowLaunch a voodoo arrow at an enemy, dealing 85% Ranged Weapon Damage plus 25 + 20% ranged AP + 25% nature SP as Nature damage, healing you equal to 40% of the damage dealt.","rankDescriptions":["Transforms your Malefic Wrath into Malefic Arrow.Malefic ArrowLaunch a voodoo arrow at an enemy, dealing 85% Ranged Weapon Damage plus 25 + 20% ranged AP + 25% nature SP as Nature damage, healing you equal to 40% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4505","treeId":"coa-witch-doctor-36","index":4505,"prerequisiteId":"coa-entry-4006","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4006","requiredRank":1},{"talentId":"coa-entry-29747","requiredRank":1}],"column":6,"row":1,"icon":"/assets/ui/spells/nhi_natureshot_border.png","maxRank":1,"name":"Reclamation","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4006","treeId":"coa-witch-doctor-36","index":4006,"prerequisiteId":"coa-entry-29747","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29747","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/shadowhunter.png","maxRank":1,"name":"Shadowhunter","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-1969","treeId":"coa-witch-doctor-36","index":1969,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/inv_misc_herb_arrowbloom.png","maxRank":2,"name":"Improved Malefic Arrow","description":"Reduces the cooldown of Malefic Arrow by -4 sec.","rankDescriptions":["Reduces the cooldown of Malefic Arrow by -2 sec.","Reduces the cooldown of Malefic Arrow by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7779","treeId":"coa-witch-doctor-36","index":7779,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/nhi_shadoweye_border.png","maxRank":2,"name":"Loa's Strength","description":"Increases your Agility and your Nature and Shadow damage dealt by 6%.","rankDescriptions":["Increases your Agility and your Nature and Shadow damage dealt by 3%.","Increases your Agility and your Nature and Shadow damage dealt by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8574","treeId":"coa-witch-doctor-36","index":8574,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/godslayer.png","maxRank":1,"name":"Spirit Glaive","description":"Toss spectral glaives that strikes enemies it passes through, dealing 66 + 50% ranged AP + 50% shadow SP Shadow damage, and reducing their Shadow Resistance by 61 for 5 seconds. Usable while moving. Cast time scales with your Agility.","rankDescriptions":["Toss spectral glaives that strikes enemies it passes through, dealing 66 + 50% ranged AP + 50% shadow SP Shadow damage, and reducing their Shadow Resistance by 61 for 5 seconds. Usable while moving. Cast time scales with your Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7086","treeId":"coa-witch-doctor-36","index":7086,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/spiriteclipse.png","maxRank":1,"name":"Spirit Eclipse","description":"Unleash your Spirits on an enemy, dealing 8 + 7% ranged AP + 12% shadow SP Shadow damage every 0 sec for each active Spirit. Each Spirit explodes on impact, dealing 71 + 6% shadow SP + 3.5% ranged AP Shadow damage to other nearby enemies within 5 yds of the target.","rankDescriptions":["Unleash your Spirits on an enemy, dealing 8 + 7% ranged AP + 12% shadow SP Shadow damage every 0 sec for each active Spirit. Each Spirit explodes on impact, dealing 71 + 6% shadow SP + 3.5% ranged AP Shadow damage to other nearby enemies within 5 yds of the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4506","treeId":"coa-witch-doctor-36","index":4506,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_ragedspirit_border.png","maxRank":1,"name":"Loa Spirits","description":"Level 20 Passive For each active Spirit on you, you have an 5% chance for your Reclamation to cast an additional time.","rankDescriptions":["Level 20 Passive For each active Spirit on you, you have an 5% chance for your Reclamation to cast an additional time."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-30895","treeId":"coa-witch-doctor-36","index":30895,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/inv_glaive_1h_warfrontsforsaken_d_01.png","maxRank":1,"name":"Soul Feeder","description":"Increases the damage dealt by Malefic Arrow by 5% for each active Spirit on you.","rankDescriptions":["Increases the damage dealt by Malefic Arrow by 5% for each active Spirit on you."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6010","treeId":"coa-witch-doctor-36","index":6010,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/spell_shadow_evileye.png","maxRank":1,"name":"Mojo High","description":"Your Mimic Ward now summons 1 additional Mimic Ward and its duration is increased by 3 sec.","rankDescriptions":["Your Mimic Ward now summons 1 additional Mimic Ward and its duration is increased by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6072","treeId":"coa-witch-doctor-36","index":6072,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/ability_racial_embracetheloa.png","maxRank":1,"name":"Spiritual Devotee","description":"Collecting a Spirit now instantly restores 3% of your maximum mana.","rankDescriptions":["Collecting a Spirit now instantly restores 3% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6074","treeId":"coa-witch-doctor-36","index":6074,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/achievement_zg_hexxer.png","maxRank":1,"name":"Village Wisdom","description":"Increases your hit chance by 5% and the damage of Reclamation by 15%.","rankDescriptions":["Increases your hit chance by 5% and the damage of Reclamation by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6063","treeId":"coa-witch-doctor-36","index":6063,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_armor_bloodtroll_c_01_helm.png","maxRank":1,"name":"Vol'jin's Blessing","description":"While Shadow Avatar is active, the cooldown of Spirit Glaive is now reduced by 20% every 1 sec.","rankDescriptions":["While Shadow Avatar is active, the cooldown of Spirit Glaive is now reduced by 20% every 1 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30892","treeId":"coa-witch-doctor-36","index":30892,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/5_sumsnakearmy_border.png","maxRank":1,"name":"Call of Sseratus","description":"Summon 4 Serpent Wards near you for 15 seconds. Scales with modifiers to Serpent Ward.","rankDescriptions":["Summon 4 Serpent Wards near you for 15 seconds. Scales with modifiers to Serpent Ward."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7102","treeId":"coa-witch-doctor-36","index":7102,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/custom_t_curseofshadow_border.png","maxRank":1,"name":"Shadowstalker","description":"Disappear into darkness, entering an improved stealth mode, clearing all harmful effects, and increasing movement speed by 50% for 20 seconds.","rankDescriptions":["Disappear into darkness, entering an improved stealth mode, clearing all harmful effects, and increasing movement speed by 50% for 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7103","treeId":"coa-witch-doctor-36","index":7103,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/_maievblade_shadow.png","maxRank":1,"name":"Umbral Glaive","description":"Level 30 Passive Ranged attacks now have a 10% chance to transform Hex of Malice into Umbral Glaive for 10 seconds.Umbral Glaive (Damage)Throw a glaive that curses an enemy and up to 2 nearby enemies, leeching 3 + 10% ranged AP health, repeating every 1 sec for 6 seconds. Refreshes the duration of Hex of Malice. Scales with modifiers to Hex of Malice. Chance increased by your ranged critical strike rating.","rankDescriptions":["Level 30 Passive Ranged attacks now have a 10% chance to transform Hex of Malice into Umbral Glaive for 10 seconds.Umbral Glaive (Damage)Throw a glaive that curses an enemy and up to 2 nearby enemies, leeching 3 + 10% ranged AP health, repeating every 1 sec for 6 seconds. Refreshes the duration of Hex of Malice. Scales with modifiers to Hex of Malice. Chance increased by your ranged critical strike rating."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-5253","treeId":"coa-witch-doctor-36","index":5253,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/achievement_boss_immerseus.png","maxRank":1,"name":"Godslayer","description":"Your Spirit Glaive now deals an additional 54 + 19% shadow SP + 14% ranged AP Shadow damage to up to 5 nearby enemies at the end of its duration.","rankDescriptions":["Your Spirit Glaive now deals an additional 54 + 19% shadow SP + 14% ranged AP Shadow damage to up to 5 nearby enemies at the end of its duration."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6853","treeId":"coa-witch-doctor-36","index":6853,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_alchemy_90_combat2_purple.png","maxRank":1,"name":"The True Spirit","description":"Summoning a Serpent Ward or Spirit now increases the damage of your next Spirit Glaive or Spirit Eclipse by 6% for 10 seconds, stacking 5 times.","rankDescriptions":["Summoning a Serpent Ward or Spirit now increases the damage of your next Spirit Glaive or Spirit Eclipse by 6% for 10 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6069","treeId":"coa-witch-doctor-36","index":6069,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/spell_shadow_nethercloak.png","maxRank":1,"name":"Residual Energy","description":"At the end of Shadow Avatar's duration you become a Lesser Shadow Avatar.Lesser Shadow AvatarIncreases magic damage dealt by 10% and reduces the cooldown of Spirit Glaive by 20% every 1 sec. Lasts for 8 seconds.","rankDescriptions":["At the end of Shadow Avatar's duration you become a Lesser Shadow Avatar.Lesser Shadow AvatarIncreases magic damage dealt by 10% and reduces the cooldown of Spirit Glaive by 20% every 1 sec. Lasts for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6983","treeId":"coa-witch-doctor-36","index":6983,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/spell_shaman_firenova.png","maxRank":2,"name":"Voodoo Fire","description":"Your Serpent Ward's attacks now have a 40% chance to shoot Voodoo Fire, dealing cond(gt(SPFI, SPN), 73*1+ranged AP*0.03+SPFI*0.12, 73*1+ranged AP*0.03+SPN*0.12) Fire damage to up to 3 nearby enemies.","rankDescriptions":["Your Serpent Ward's attacks now have a 20% chance to shoot Voodoo Fire, dealing cond(gt(SPFI, SPN), 73*1+ranged AP*0.03+SPFI*0.12, 73*1+ranged AP*0.03+SPN*0.12) Fire damage to up to 3 nearby enemies.","Your Serpent Ward's attacks now have a 40% chance to shoot Voodoo Fire, dealing cond(gt(SPFI, SPN), 73*1+ranged AP*0.03+SPFI*0.12, 73*1+ranged AP*0.03+SPN*0.12) Fire damage to up to 3 nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5303","treeId":"coa-witch-doctor-36","index":5303,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/5_shadowworld_border.png","maxRank":1,"name":"Voodoo Hunger","description":"While Shadowstalker or Mirage is active, every 1 sec you now gain a stack of Voodoo Hunger.Voodoo HungerIncreases the damage of your next Malefic Arrow by 10%, stacking 10 times. Lasts 8 seconds.","rankDescriptions":["While Shadowstalker or Mirage is active, every 1 sec you now gain a stack of Voodoo Hunger.Voodoo HungerIncreases the damage of your next Malefic Arrow by 10%, stacking 10 times. Lasts 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4177","treeId":"coa-witch-doctor-36","index":4177,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/nhi_deathbolt_border.png","maxRank":1,"name":"Hex of Death","description":"Damage dealt by Malefic Arrow now reduces the targets healing received by -20% for 10 seconds, stacking 2 times.","rankDescriptions":["Damage dealt by Malefic Arrow now reduces the targets healing received by -20% for 10 seconds, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11177","treeId":"coa-witch-doctor-36","index":11177,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/spell_shaman_feralspirit.png","maxRank":1,"name":"Spirit Hunting","description":"Each active Spirit gives you a 15% chance when you cast Malefic Arrow to generate an additional Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times.","rankDescriptions":["Each active Spirit gives you a 15% chance when you cast Malefic Arrow to generate an additional Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6073","treeId":"coa-witch-doctor-36","index":6073,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_chest_cloth_zandalarquest_b_01.png","maxRank":1,"name":"Dark Loa's Incantation","description":"Dealing damage with Shadowflare now applies Hex of Malice if it strikes at least 3 enemies.Hex of MaliceCurse an enemy, dealing 5 + 8% shadow SP + 10% ranged AP Shadow damage and an additional 96 Shadow damage over 24 seconds.","rankDescriptions":["Dealing damage with Shadowflare now applies Hex of Malice if it strikes at least 3 enemies.Hex of MaliceCurse an enemy, dealing 5 + 8% shadow SP + 10% ranged AP Shadow damage and an additional 96 Shadow damage over 24 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7031","treeId":"coa-witch-doctor-36","index":7031,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/ability_demonhunter_empowerwards.png","maxRank":1,"name":"Darkspear Traditionalist","description":"Emanate a powerful aura, granting 10% increased melee and ranged haste to party and raid members. Does not stack with similar effects. Periodic damage dealt by Hex of Malice now has a 20% chance to collect a Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times.","rankDescriptions":["Emanate a powerful aura, granting 10% increased melee and ranged haste to party and raid members. Does not stack with similar effects. Periodic damage dealt by Hex of Malice now has a 20% chance to collect a Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5164","treeId":"coa-witch-doctor-36","index":5164,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/_warlock_plaiefuneste2.png","maxRank":1,"name":"Spirit Striker","description":"Increases the proc chance of Voodoo Fire by 10%.","rankDescriptions":["Increases the proc chance of Voodoo Fire by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11164","treeId":"coa-witch-doctor-36","index":11164,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/spell_fireresistancetotem_01.png","maxRank":1,"name":"Hexfire Mass","description":"Damage dealt by Hex of Malice now has a 30% chance to summon a Serpent Ward on top of your enemy for 10 seconds to aid you in combat. Can only occur once every 3 sec.","rankDescriptions":["Damage dealt by Hex of Malice now has a 30% chance to summon a Serpent Ward on top of your enemy for 10 seconds to aid you in combat. Can only occur once every 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29729","treeId":"coa-witch-doctor-36","index":29729,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_racial_embraceoftheloa_bwonsomdi.png","maxRank":1,"name":"Strength of Da Loa","description":"Increases the attack power of party and raid members by 5%. Does not stack with similar effects. In addition, health and mana restoration provided by your Spirits now occurs -50% more often.","rankDescriptions":["Increases the attack power of party and raid members by 5%. Does not stack with similar effects. In addition, health and mana restoration provided by your Spirits now occurs -50% more often."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29977","treeId":"coa-witch-doctor-36","index":29977,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_helm_mail_raidshaman_m_01.png","maxRank":1,"name":"Spirit Shock","description":"Shock an enemy's spirit, silencing them for 4 seconds and interrupting non-player spellcasting for 4 seconds.","rankDescriptions":["Shock an enemy's spirit, silencing them for 4 seconds and interrupting non-player spellcasting for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4423","treeId":"coa-witch-doctor-36","index":4423,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_glaive_1h_bloodelfguard_d_01.png","maxRank":1,"name":"Sen'jin's Apprentice","description":"Level 40 Passive Increases your ranged attack power by 100% of your Intellect and your ranged attack power and spell power by 25% of your Agility.","rankDescriptions":["Level 40 Passive Increases your ranged attack power by 100% of your Intellect and your ranged attack power and spell power by 25% of your Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-11330","treeId":"coa-witch-doctor-36","index":11330,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_ice_lament.png","maxRank":1,"name":"Bwonsamdi's Edge","description":"Your Spirit Eclipse now deals 40% increased damage when it explodes on impact.","rankDescriptions":["Your Spirit Eclipse now deals 40% increased damage when it explodes on impact."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29930","treeId":"coa-witch-doctor-36","index":29930,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/ability_hunter_snaketrap.png","maxRank":1,"name":"Dambala's Lethality","description":"After using Spirit Eclipse, the damage of your next Shadowflare within 15 seconds is increased by 50%.","rankDescriptions":["After using Spirit Eclipse, the damage of your next Shadowflare within 15 seconds is increased by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4572","treeId":"coa-witch-doctor-36","index":4572,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/ability_monk_prideofthetiger.png","maxRank":1,"name":"Eye of Kimbul","description":"Critical strikes now apply Eye of Kimbul to enemies for 15 seconds.Eye of KimbulIncreases damage dealt and critical strike chance against this target by 1%, stacking 5 times. While affected, enemies cannot stealth or turn invisible.","rankDescriptions":["Critical strikes now apply Eye of Kimbul to enemies for 15 seconds.Eye of KimbulIncreases damage dealt and critical strike chance against this target by 1%, stacking 5 times. While affected, enemies cannot stealth or turn invisible."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29978","treeId":"coa-witch-doctor-36","index":29978,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/_troll_03.png","maxRank":1,"name":"Berserking","description":"Periodic damage dealt now has a 25% chance to increase the haste of your Serpent Wards by 3% for 15 seconds, stacking up to 3 times.","rankDescriptions":["Periodic damage dealt now has a 25% chance to increase the haste of your Serpent Wards by 3% for 15 seconds, stacking up to 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6011","treeId":"coa-witch-doctor-36","index":6011,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/5_shadow_border.png","maxRank":2,"name":"Shadow Enchantments","description":"Increases the duration and effectiveness of your Jinxes by 50%.","rankDescriptions":["Increases the duration and effectiveness of your Jinxes by 25%.","Increases the duration and effectiveness of your Jinxes by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6388","treeId":"coa-witch-doctor-36","index":6388,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_raisedspirit_border.png","maxRank":1,"name":"Fool's Play","description":"Target an enemy and summon a copy of them for 20 seconds that attacks them and replicates their spells back on them.","rankDescriptions":["Target an enemy and summon a copy of them for 20 seconds that attacks them and replicates their spells back on them."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5235","treeId":"coa-witch-doctor-36","index":5235,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_staff_2h_snakeman_c_01.png","maxRank":1,"name":"Viper Ward","description":"Transforms Call of Sseratus into Viper Ward.Viper WardSummons a powerful and fast-attacking Viper Ward at target location for 20 seconds. Viper Wards have a 50% chance to unleash a Hexfire Blast, dealing 216 + 15% ranged AP Fire damage to an enemy. Chance increased based on your ranged critical strike rating.","rankDescriptions":["Transforms Call of Sseratus into Viper Ward.Viper WardSummons a powerful and fast-attacking Viper Ward at target location for 20 seconds. Viper Wards have a 50% chance to unleash a Hexfire Blast, dealing 216 + 15% ranged AP Fire damage to an enemy. Chance increased based on your ranged critical strike rating."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6035","treeId":"coa-witch-doctor-36","index":6035,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/5_sumsnake_border.png","maxRank":1,"name":"Serpent Handler","description":"Increases the cooldown of Call of Sseratus by 5 sec, but increases the amount of Serpent Wards summoned by it by 2.","rankDescriptions":["Increases the cooldown of Call of Sseratus by 5 sec, but increases the amount of Serpent Wards summoned by it by 2."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29981","treeId":"coa-witch-doctor-36","index":29981,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/inv_waepon_bow_zulgrub_d_01.png","maxRank":1,"name":"Serpent's Guile","description":"Your Malefic Arrow now deals an additional 15% of its damage dealt every 1 sec for 4 seconds as Nature damage.","rankDescriptions":["Your Malefic Arrow now deals an additional 15% of its damage dealt every 1 sec for 4 seconds as Nature damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12145","treeId":"coa-witch-doctor-36","index":12145,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/nhi_spiritualblast_border.png","maxRank":1,"name":"Spirit Volley","description":"Level 50 Passive Casting Reclamation and Malefic Arrow now has a 30% chance to transform your next Reclamation into Spirit Volley for 6 seconds.Spirit VolleyLaunch a spirit volley at your enemy, dealing 540 + 28.5% ranged AP Shadow damage to them and up to 3 enemies within 8 yds and collects a Spirit. Reduces the cooldown of Spirit Glaive by -3 sec. Scales with modifiers to Reclamation.","rankDescriptions":["Level 50 Passive Casting Reclamation and Malefic Arrow now has a 30% chance to transform your next Reclamation into Spirit Volley for 6 seconds.Spirit VolleyLaunch a spirit volley at your enemy, dealing 540 + 28.5% ranged AP Shadow damage to them and up to 3 enemies within 8 yds and collects a Spirit. Reduces the cooldown of Spirit Glaive by -3 sec. Scales with modifiers to Reclamation."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-6076","treeId":"coa-witch-doctor-36","index":6076,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/achievement_raid_laststandzandalari.png","maxRank":1,"name":"A Price To Pay","description":"Casting Spirit Eclipse with 5 Spirits now resets the cooldown of Spirit Glaive and causes your next cast within 8 seconds to be guaranteed to critically strike. Spirit Glaives used in this way will reduce the cooldown of Shadowstalker by -15 sec.","rankDescriptions":["Casting Spirit Eclipse with 5 Spirits now resets the cooldown of Spirit Glaive and causes your next cast within 8 seconds to be guaranteed to critically strike. Spirit Glaives used in this way will reduce the cooldown of Shadowstalker by -15 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7355","treeId":"coa-witch-doctor-36","index":7355,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_warlock_eradication.png","maxRank":1,"name":"Frenzied Spirits","description":"Consumes your Spirits to increase your ranged critical strike rating by 10, critical damage by 5%, and causing you to heal for 2% of all damage dealt for each Spirit consumed. In addition, you gain 1 Spirit every 1 sec while active. Lasts for 3 sec per Spirit consumed.","rankDescriptions":["Consumes your Spirits to increase your ranged critical strike rating by 10, critical damage by 5%, and causing you to heal for 2% of all damage dealt for each Spirit consumed. In addition, you gain 1 Spirit every 1 sec while active. Lasts for 3 sec per Spirit consumed."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7781","treeId":"coa-witch-doctor-36","index":7781,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/spell_necro_bwonsamdisboon.png","maxRank":1,"name":"Bwonsamdi's Gift","description":"While Mimic Ward is active, you now gain 15% increased ranged haste and your Reclamation transforms into Spirit Volley. Each Spirit now increases the damage of Spirit Volley by 3%. In addition, direct ranged abilty damage dealt now reduces the cooldown of Mimic Ward by -0.5 sec.","rankDescriptions":["While Mimic Ward is active, you now gain 15% increased ranged haste and your Reclamation transforms into Spirit Volley. Each Spirit now increases the damage of Spirit Volley by 3%. In addition, direct ranged abilty damage dealt now reduces the cooldown of Mimic Ward by -0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29747","treeId":"coa-witch-doctor-87","index":29747,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":1,"icon":"/assets/ui/spells/nhi_naturehide_border.png","maxRank":1,"name":"Mirage","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29301","treeId":"coa-witch-doctor-87","index":29301,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/5_deadshadow_border.png","maxRank":1,"name":"Mimic Ward","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29744","treeId":"coa-witch-doctor-87","index":29744,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":1,"icon":"/assets/ui/spells/inv_banner_01.png","maxRank":1,"name":"Healing Ward","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7088","treeId":"coa-witch-doctor-87","index":7088,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/inv_potion_25.png","maxRank":2,"name":"Juju Injection","description":"Increases your Agility and Intellect by 10%.","rankDescriptions":["Increases your Agility and Intellect by 5%.","Increases your Agility and Intellect by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6030","treeId":"coa-witch-doctor-87","index":6030,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/inv_bloodtrollfemaleheaddire01.png","maxRank":1,"name":"Chosen One","description":"Your Mimic Ward will now summon 1 additional ward.","rankDescriptions":["Your Mimic Ward will now summon 1 additional ward."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6054","treeId":"coa-witch-doctor-87","index":6054,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/inv_inscription_81_vantusrune_zuldazar.png","maxRank":1,"name":"Spiritual Traditions","description":"Allows 40% of your mana regeneration to continue while casting and reduces your spell pushback suffered from damaging attacks by 70%.","rankDescriptions":["Allows 40% of your mana regeneration to continue while casting and reduces your spell pushback suffered from damaging attacks by 70%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7154","treeId":"coa-witch-doctor-87","index":7154,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/spells/ability_racial_wardoftheloafrost.png","maxRank":1,"name":"Sen'jin's Swiftness","description":"Reduces the cooldown of Mirage by -60 sec.","rankDescriptions":["Reduces the cooldown of Mirage by -60 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11154","treeId":"coa-witch-doctor-87","index":11154,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":3,"icon":"/assets/ui/spells/ivn_belt_armor_zandalaritroll_d_01.png","maxRank":1,"name":"Sen'jin's Wisdom","description":"Doubles the duration of Mirage.","rankDescriptions":["Doubles the duration of Mirage."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6044","treeId":"coa-witch-doctor-87","index":6044,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/spells/_troll_04.png","maxRank":1,"name":"Mojo Madness","description":"Damage and healing done now have a 5% chance to reduce the cost of your next spell or ability by -100% for 10 seconds.","rankDescriptions":["Damage and healing done now have a 5% chance to reduce the cost of your next spell or ability by -100% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6047","treeId":"coa-witch-doctor-87","index":6047,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":3,"icon":"/assets/ui/spells/inv_staff_26.png","maxRank":2,"name":"Wizened","description":"Increases your maximum mana by 10% and reduces the mana cost of spells and abilities by -6%.","rankDescriptions":["Increases your maximum mana by 5% and reduces the mana cost of spells and abilities by -3%.","Increases your maximum mana by 10% and reduces the mana cost of spells and abilities by -6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7092","treeId":"coa-witch-doctor-87","index":7092,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":3,"icon":"/assets/ui/spells/spell_nature_wrathofair_totem.png","maxRank":1,"name":"Seeker","description":"Reduces the mana cost of your Wards, Idols, and Effigies by -20%.","rankDescriptions":["Reduces the mana cost of your Wards, Idols, and Effigies by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31118","treeId":"coa-witch-doctor-87","index":31118,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/nhi_arcanepotion_border.png","maxRank":1,"name":"Death Draught","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29309","treeId":"coa-witch-doctor-87","index":29309,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/wd_cleansing_ward.png","maxRank":1,"name":"Cleansing Idol","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12749","treeId":"coa-witch-doctor-87","index":12749,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/spell_shadow_auraofdarkness.png","maxRank":1,"name":"Jinx of Decay","description":"Your Lethargy Jinx now also reduces the target's periodic healing received by -30%.","rankDescriptions":["Your Lethargy Jinx now also reduces the target's periodic healing received by -30%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29749","treeId":"coa-witch-doctor-87","index":29749,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/inv_weapon_shortblade_54.png","maxRank":1,"name":"Will of the Serpent","description":"Your Lethargy Jinx now increases your critical strike chance against the target by 10%.","rankDescriptions":["Your Lethargy Jinx now increases your critical strike chance against the target by 10%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6031","treeId":"coa-witch-doctor-87","index":6031,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/nhi_hypnotoad_border.png","maxRank":1,"name":"Amphibimorph","description":"Transform enemies at target location into a frog, making them unable to attack or cast spells, and slowing their movement speed by -25% for 40 seconds (8 sec vs players). While transformed into a frog the enemy is considered a Beast. Damage caused may interrupt the effect.","rankDescriptions":["Transform enemies at target location into a frog, making them unable to attack or cast spells, and slowing their movement speed by -25% for 40 seconds (8 sec vs players). While transformed into a frog the enemy is considered a Beast. Damage caused may interrupt the effect."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7033","treeId":"coa-witch-doctor-87","index":7033,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/spell_shaman_spiritlink.png","maxRank":1,"name":"Spirit Warden","description":"Summoning an Idol now increases your Spirit by 10% for 1 minute.","rankDescriptions":["Summoning an Idol now increases your Spirit by 10% for 1 minute."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6381","treeId":"coa-witch-doctor-87","index":6381,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/nhi_scrollofearth_border.png","maxRank":1,"name":"Loa Empowerment","description":"Reduces the cost of your Wujus by -50% and increases the effectiveness of Power Wuju by 20%.","rankDescriptions":["Reduces the cost of your Wujus by -50% and increases the effectiveness of Power Wuju by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30147","treeId":"coa-witch-doctor-87","index":30147,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_alchemy_71_potion4.png","maxRank":1,"name":"Alchemical Enhancement","description":"Increases your haste by 5%.","rankDescriptions":["Increases your haste by 5%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6525","treeId":"coa-witch-doctor-87","index":6525,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_hunter_pet_raptor.png","maxRank":1,"name":"Gonk's Blessing","description":"Reduces the cooldown of Amphibimorph by -60 sec, but increases its cast time by 0.5 sec.","rankDescriptions":["Reduces the cooldown of Amphibimorph by -60 sec, but increases its cast time by 0.5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12525","treeId":"coa-witch-doctor-87","index":12525,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_racial_embraceoftheloa_kragwa.png","maxRank":1,"name":"Krag'wa's Blessing","description":"Your Amphibimorph is now instant cast.","rankDescriptions":["Your Amphibimorph is now instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6042","treeId":"coa-witch-doctor-87","index":6042,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_hand_1h_trollshaman_c_01.png","maxRank":1,"name":"Vol'jin's Vigil","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6051","treeId":"coa-witch-doctor-87","index":6051,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/wd_swift_idol.png","maxRank":1,"name":"Swift Idol","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29306","treeId":"coa-witch-doctor-87","index":29306,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_nature_poisoncleansingtotem.png","maxRank":1,"name":"Slither","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30891","treeId":"coa-witch-doctor-87","index":30891,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":7,"icon":"/assets/ui/spells/inv_archaeology_80_zandalari_zandalariidol.png","maxRank":1,"name":"Touch of Mueh'zala","description":"Increases the duration of Stasis Ward's stun effect by 1 sec.","rankDescriptions":["Increases the duration of Stasis Ward's stun effect by 1 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12264","treeId":"coa-witch-doctor-87","index":12264,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":7,"icon":"/assets/ui/spells/inv_potion_110.png","maxRank":1,"name":"Potent Mixes","description":"Increases your healing done by 4% and reduces the threat generated by your spells by -15%.","rankDescriptions":["Increases your healing done by 4% and reduces the threat generated by your spells by -15%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9347","treeId":"coa-witch-doctor-87","index":9347,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_archaeology_70_spiritofechero.png","maxRank":2,"name":"Spirit Walker","description":"Increases the duration and effectiveness of Vol'jin's Vigil and Swift Idol by 20%.","rankDescriptions":["Increases the duration and effectiveness of Vol'jin's Vigil and Swift Idol by 10%.","Increases the duration and effectiveness of Vol'jin's Vigil and Swift Idol by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6048","treeId":"coa-witch-doctor-87","index":6048,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/_troll_06.png","maxRank":1,"name":"Dark Mojo","description":"Increases your chance to resist magic and curse effects by 20%.","rankDescriptions":["Increases your chance to resist magic and curse effects by 20%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12048","treeId":"coa-witch-doctor-87","index":12048,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/trade_archaeology_trollbatidol.png","maxRank":1,"name":"Blessing of Hir'eek","description":"Your Hexbreak now removes an additional curse effect.","rankDescriptions":["Your Hexbreak now removes an additional curse effect."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11323","treeId":"coa-witch-doctor-87","index":11323,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/spell_nature_removecurse.png","maxRank":1,"name":"Blatant Curse","description":"Reduces the mana cost of your Jinxes by -25%.","rankDescriptions":["Reduces the mana cost of your Jinxes by -25%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29743","treeId":"coa-witch-doctor-87","index":29743,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/ability_warlock_jinx.png","maxRank":1,"name":"Latent Curse","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4132","treeId":"coa-witch-doctor-87","index":4132,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_relics_totemofrebirth.png","maxRank":1,"name":"Hastened","description":"Reduces the cooldown of all Wards, Idols, and Effigies by -25%.","rankDescriptions":["Reduces the cooldown of all Wards, Idols, and Effigies by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30203","treeId":"coa-witch-doctor-87","index":30203,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/spell_shadow_gathershadows.png","maxRank":1,"name":"Veil of Darkness","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29757","treeId":"coa-witch-doctor-87","index":29757,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_helmet_114.png","maxRank":1,"name":"Devotion to Bwonsamdi","description":"Your direct damage now heals you for 10% of the damage done.","rankDescriptions":["Your direct damage now heals you for 10% of the damage done."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6050","treeId":"coa-witch-doctor-87","index":6050,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/achievement_boss_zuljin.png","maxRank":1,"name":"One Armed Waltz","description":"Big Bad Voodoo now only reduces damage dealt by 25% and reduces damage taken by an additional -5%.","rankDescriptions":["Big Bad Voodoo now only reduces damage dealt by 25% and reduces damage taken by an additional -5%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6052","treeId":"coa-witch-doctor-87","index":6052,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/spell_shadow_soulleech_2.png","maxRank":1,"name":"Loa Communion","description":"Increases the damage dealt by Veil of Darkness by 100%.","rankDescriptions":["Increases the damage dealt by Veil of Darkness by 100%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5113","treeId":"coa-witch-doctor-87","index":5113,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/wd_cursed_effigy.png","maxRank":1,"name":"Cursed Effigy","description":"Drop a Cursed Effigy near you for 15 seconds. Enemies within 15 yds are unable to critically strike.","rankDescriptions":["Drop a Cursed Effigy near you for 15 seconds. Enemies within 15 yds are unable to critically strike."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6049","treeId":"coa-witch-doctor-87","index":6049,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/achievement_boss_zuldazar_loacouncil.png","maxRank":1,"name":"For Da Loa!","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/generated/talentUi/witch-hunter.json b/src/game/generated/talentUi/witch-hunter.json new file mode 100644 index 00000000..40640619 --- /dev/null +++ b/src/game/generated/talentUi/witch-hunter.json @@ -0,0 +1 @@ +{"schemaVersion":1,"classId":"witch-hunter","trees":[{"id":"coa-witch-hunter-39","classId":"witch-hunter","name":"Boltslinger","icon":"/assets/ui/spells/_d3rapidfire.png","background":"","description":"Boltslinger nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-witch-hunter-40","classId":"witch-hunter","name":"Houndmaster","icon":"/assets/ui/spells/unleashthehounds.png","background":"","description":"Houndmaster nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-witch-hunter-41","classId":"witch-hunter","name":"Inquisition","icon":"/assets/ui/spells/5_run_border.png","background":"","description":"Inquisition nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-witch-hunter-94","classId":"witch-hunter","name":"Black Knight","icon":"/assets/ui/spells/nhi_brokensword_border.png","background":"","description":"Black Knight nodes synchronized from Vol'Jin.","system":"coa"},{"id":"coa-witch-hunter-87","classId":"witch-hunter","name":"Class","icon":"/assets/ui/spells/ability_demonhunter_vengefulretreat2.png","background":"","description":"Class nodes synchronized from Vol'Jin.","system":"coa"}],"nodes":[{"id":"coa-entry-31160","treeId":"coa-witch-hunter-39","index":31160,"prerequisiteId":"coa-entry-4010","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4010","requiredRank":1},{"talentId":"coa-entry-29150","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/_d3rapidfire.png","maxRank":1,"name":"Witchbane","description":"Unleash a series of devastating shots dealing 60 + 45% ranged AP Physical damage over 3 seconds.","rankDescriptions":["Unleash a series of devastating shots dealing 60 + 45% ranged AP Physical damage over 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4010","treeId":"coa-witch-hunter-39","index":4010,"prerequisiteId":"coa-entry-29150","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-29150","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/inv_weapon_crossbow_21.png","maxRank":1,"name":"Boltslinger","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-5076","treeId":"coa-witch-hunter-39","index":5076,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":2,"icon":"/assets/ui/spells/ability_hunter_blindingshot.png","maxRank":1,"name":"Mechanized Crossbows","description":"Increases your ranged attack power by 10% and the range of your ranged abilities by 5 yds.","rankDescriptions":["Increases your ranged attack power by 10% and the range of your ranged abilities by 5 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34570","treeId":"coa-witch-hunter-39","index":34570,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":2,"icon":"/assets/ui/spells/inv_weapon_crossbow_32.png","maxRank":2,"name":"My Trusty Arbalest","description":"Reduces the Rage cost of Witchbane and Shadowblast by -20% and increases your chance to hit by 4%.","rankDescriptions":["Reduces the Rage cost of Witchbane and Shadowblast by -10% and increases your chance to hit by 2%.","Reduces the Rage cost of Witchbane and Shadowblast by -20% and increases your chance to hit by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29372","treeId":"coa-witch-hunter-39","index":29372,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":3,"icon":"/assets/ui/spells/nhi_shadowarrow_border.png","maxRank":1,"name":"Heartseeking Bolt","description":"Charge up a powerful bolt that deals 200% Ranged Weapon Damage plus 40 + 50% ranged AP + 30% shadow SP to an enemy and reduces their healing received by -30% for 10 seconds. Generates Rage based on the damage dealt.","rankDescriptions":["Charge up a powerful bolt that deals 200% Ranged Weapon Damage plus 40 + 50% ranged AP + 30% shadow SP to an enemy and reduces their healing received by -30% for 10 seconds. Generates Rage based on the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9303","treeId":"coa-witch-hunter-39","index":9303,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_brokenheart.png","maxRank":1,"name":"Kingdom Hearts","description":"Level 20 Passive Your Heartseeking Bolt is now guaranteed to critically strike on enemies below 20% health and it now restores 10% of your maximum mana.","rankDescriptions":["Level 20 Passive Your Heartseeking Bolt is now guaranteed to critically strike on enemies below 20% health and it now restores 10% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-9750","treeId":"coa-witch-hunter-39","index":9750,"prerequisiteId":"coa-entry-4010","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4010","requiredRank":1},{"talentId":"coa-entry-29150","requiredRank":1}],"column":2,"row":4,"icon":"/assets/ui/spells/5_archerskill18_border.png","maxRank":1,"name":"Damnation","description":"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.","rankDescriptions":["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."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6615","treeId":"coa-witch-hunter-39","index":6615,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/inv_crossbow_2h_maw_c_01.png","maxRank":3,"name":"Rapid Reload","description":"Increases your ranged haste by 25%.","rankDescriptions":["Increases your ranged haste by 8%.","Increases your ranged haste by 16%.","Increases your ranged haste by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6856","treeId":"coa-witch-hunter-39","index":6856,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/inv_ammo_arrow_05.png","maxRank":1,"name":"Tormentor","description":"Fire a deadly bolt dealing cond(gt(SPS, SPH), 5+0+SPS*0.175, 5+0+SPH*0.175) Twilight Damage plus 63 + 87.5% ranged AP over 14 seconds.","rankDescriptions":["Fire a deadly bolt dealing cond(gt(SPS, SPH), 5+0+SPS*0.175, 5+0+SPH*0.175) Twilight Damage plus 63 + 87.5% ranged AP over 14 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11171","treeId":"coa-witch-hunter-39","index":11171,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv_weapon_crossbow_01.png","maxRank":1,"name":"Resourceful Pursuit","description":"Reduces the Rage cost of Tormentor and Damnation by -20%.","rankDescriptions":["Reduces the Rage cost of Tormentor and Damnation by -20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34572","treeId":"coa-witch-hunter-39","index":34572,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv_ascend_arrow_01_b.png","maxRank":1,"name":"Witching Bolt","description":"Increases the critical strike chance of Damnation against Undead and Demons by 25%.","rankDescriptions":["Increases the critical strike chance of Damnation against Undead and Demons by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29371","treeId":"coa-witch-hunter-39","index":29371,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/achievement_boss_triumvirate_darknaaru.png","maxRank":1,"name":"Neverending Pursuit","description":"Critically striking with Damnation now refunds 40 Rage.","rankDescriptions":["Critically striking with Damnation now refunds 40 Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7460","treeId":"coa-witch-hunter-39","index":7460,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/inv_bow_1h_draenorraid_d_01.png","maxRank":1,"name":"One Shot","description":"Increases the critical strike chance of Heartseeking Bolt by 20%.","rankDescriptions":["Increases the critical strike chance of Heartseeking Bolt by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7461","treeId":"coa-witch-hunter-39","index":7461,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/ability_demonhunter_darkness.png","maxRank":1,"name":"Bane of Witches","description":"Casting Heartseeking Bolt now increases your Physical damage dealt by 10% for 8 seconds.","rankDescriptions":["Casting Heartseeking Bolt now increases your Physical damage dealt by 10% for 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29373","treeId":"coa-witch-hunter-39","index":29373,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/5_archerskill02_border.png","maxRank":1,"name":"Rapid","description":"Your Witchbane now deals its full damage over -1 second shorter period.","rankDescriptions":["Your Witchbane now deals its full damage over -1 second shorter period."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34573","treeId":"coa-witch-hunter-39","index":34573,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/skill_icon_skill101_border.png","maxRank":1,"name":"Relentless","description":"Allows Witchbane to hit an additional nearby enemy.","rankDescriptions":["Allows Witchbane to hit an additional nearby enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7075","treeId":"coa-witch-hunter-39","index":7075,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/_d3evasivefire.png","maxRank":1,"name":"Strafing Shot","description":"Critical strikes with ranged abilities now spread Tormentor to a nearby enemy.","rankDescriptions":["Critical strikes with ranged abilities now spread Tormentor to a nearby enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12303","treeId":"coa-witch-hunter-39","index":12303,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/spell_shadow_painspike.png","maxRank":1,"name":"Arbalist","description":"Level 30 Passive Increases your attack power by 100% of your Intellect.","rankDescriptions":["Level 30 Passive Increases your attack power by 100% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7456","treeId":"coa-witch-hunter-39","index":7456,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/_d3vault.png","maxRank":1,"name":"Daring Escape","description":"Jump backwards, causing all ranged attacks to miss you for 2 seconds.","rankDescriptions":["Jump backwards, causing all ranged attacks to miss you for 2 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29156","treeId":"coa-witch-hunter-39","index":29156,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_boss_kilrogg_heartseeker.png","maxRank":2,"name":"Heartless","description":"Increases your Physical ranged critical damage by 30%.","rankDescriptions":["Increases your Physical ranged critical damage by 15%.","Increases your Physical ranged critical damage by 30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7078","treeId":"coa-witch-hunter-39","index":7078,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/_diablo3_arrowrain_warlock.png","maxRank":1,"name":"Twilight Frenzy","description":"Spin around, unable to stop moving for 5 seconds, firing shots at nearby enemies for 50% Ranged Weapon Damage plus cond(gt(SPS, SPH), 15+31+SPS*0.2+ranged AP*0.1, 15+31+SPH*0.2+ranged AP*0.1) as Twilight Damage. Can dodge and parry while active.","rankDescriptions":["Spin around, unable to stop moving for 5 seconds, firing shots at nearby enemies for 50% Ranged Weapon Damage plus cond(gt(SPS, SPH), 15+31+SPS*0.2+ranged AP*0.1, 15+31+SPH*0.2+ranged AP*0.1) as Twilight Damage. Can dodge and parry while active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7077","treeId":"coa-witch-hunter-39","index":7077,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/ability_rogue_quickrecovery.png","maxRank":1,"name":"Escape Artist","description":"Your Daring Escape now resets the cooldown of Vault and generates 10 Rage.","rankDescriptions":["Your Daring Escape now resets the cooldown of Vault and generates 10 Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5678","treeId":"coa-witch-hunter-39","index":5678,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/5_engineerskill41_border.png","maxRank":1,"name":"Bringing the Law","description":"Increases the critical strike chance of Shadowblast by 10%.","rankDescriptions":["Increases the critical strike chance of Shadowblast by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29277","treeId":"coa-witch-hunter-39","index":29277,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/5_archerskill47_border.png","maxRank":1,"name":"Enchanted Bolts","description":"Increases your Magic damage dealt by 5% and your Armor penetration by 10%.","rankDescriptions":["Increases your Magic damage dealt by 5% and your Armor penetration by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7852","treeId":"coa-witch-hunter-39","index":7852,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/spell_shadow_charm.png","maxRank":1,"name":"Evasive","description":"Twilight Frenzy now grants you -20% reduced damage taken while active.","rankDescriptions":["Twilight Frenzy now grants you -20% reduced damage taken while active."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34561","treeId":"coa-witch-hunter-39","index":34561,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/_d3strafe.png","maxRank":1,"name":"Crossbow Frenzy","description":"While Twilight Frenzy is active, your movement speed is now increased by 40%.","rankDescriptions":["While Twilight Frenzy is active, your movement speed is now increased by 40%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4324","treeId":"coa-witch-hunter-39","index":4324,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/ability_rogue_ruthlessness.png","maxRank":1,"name":"Slinging Bolts","description":"Level 40 Passive Direct ranged damage dealt now has an 8% chance to grant you Slinging Bolts.Slinging Bolts (Proc)Your next Damnation is usable regardless of the target's current health. Lasts 20 seconds. Can only occur once every 5 sec.","rankDescriptions":["Level 40 Passive Direct ranged damage dealt now has an 8% chance to grant you Slinging Bolts.Slinging Bolts (Proc)Your next Damnation is usable regardless of the target's current health. Lasts 20 seconds. Can only occur once every 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-30739","treeId":"coa-witch-hunter-39","index":30739,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/ability_ironmaidens_ironshot.png","maxRank":1,"name":"Silver Bolts","description":"Damage dealt by Heartseeking Bolt and Damnation is increased by 15%, doubled against Undead or Demons or enemies affected by Shadow Trap.","rankDescriptions":["Damage dealt by Heartseeking Bolt and Damnation is increased by 15%, doubled against Undead or Demons or enemies affected by Shadow Trap."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7458","treeId":"coa-witch-hunter-39","index":7458,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/artifactability_marksmanhunter_legacyofthewindrunners.png","maxRank":1,"name":"Arbalest Mastery","description":"Each subsequent shot of a Witchbane cast deals 15% more damage, up to a maximum of 150%.","rankDescriptions":["Each subsequent shot of a Witchbane cast deals 15% more damage, up to a maximum of 150%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30732","treeId":"coa-witch-hunter-39","index":30732,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/ability_hunter_assassinate.png","maxRank":1,"name":"Slayer","description":"Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your critical strike chance by 3%.","rankDescriptions":["Increases critical strike chance of all party and raid members by 3%. Does not stack with similar effects. In addition, increases your critical strike chance by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34564","treeId":"coa-witch-hunter-39","index":34564,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/inv_weapon_crossbow_07.png","maxRank":2,"name":"Crossbow Expert","description":"Increases the damage of Shadowblast by 20% and Witchbane by 10%.","rankDescriptions":["Increases the damage of Shadowblast by 10% and Witchbane by 5%.","Increases the damage of Shadowblast by 20% and Witchbane by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4135","treeId":"coa-witch-hunter-39","index":4135,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/inv_garrison_blueprints2.png","maxRank":1,"name":"Contract Killing","description":"Increases damage dealt against enemies above 75% health and below 35% health by 15%.","rankDescriptions":["Increases damage dealt against enemies above 75% health and below 35% health by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7459","treeId":"coa-witch-hunter-39","index":7459,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_bow_2h_crossbow_draenordungeon_c_01.png","maxRank":1,"name":"Bolt and Dash","description":"Your next Heartseeking Bolt within 10 seconds deals 25% more damage and incurs no cooldown. When this buff is consumed you gain 50% increased movement speed for 3 seconds.","rankDescriptions":["Your next Heartseeking Bolt within 10 seconds deals 25% more damage and incurs no cooldown. When this buff is consumed you gain 50% increased movement speed for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12259","treeId":"coa-witch-hunter-39","index":12259,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/custom_18_shield_nobg_border.png","maxRank":1,"name":"Pavise Crossbowman","description":"Teaches you how to use Shields and teaches you Pavise.PaviseSlam your shield into the ground, forming a pavise for 10 sec. While you remain near it, hostile spells targeting you are deflected.","rankDescriptions":["Teaches you how to use Shields and teaches you Pavise.PaviseSlam your shield into the ground, forming a pavise for 10 sec. While you remain near it, hostile spells targeting you are deflected."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30133","treeId":"coa-witch-hunter-39","index":30133,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/inv_helm_plate_pvpdeathknight_f_01.png","maxRank":1,"name":"Everything You Have","description":"Increases the duration of Twilight Frenzy by 5 sec, and gives damage dealt by it a 15% chance to strike again.","rankDescriptions":["Increases the duration of Twilight Frenzy by 5 sec, and gives damage dealt by it a 15% chance to strike again."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4325","treeId":"coa-witch-hunter-39","index":4325,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/_wetbag2_blood3.png","maxRank":1,"name":"Tormenting the Tormented","description":"Level 50 Passive Your Tormentor can now critically strike.","rankDescriptions":["Level 50 Passive Your Tormentor can now critically strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-4134","treeId":"coa-witch-hunter-39","index":4134,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/nhi_corruptiongold_border.png","maxRank":1,"name":"Bounty Hunter","description":"Casting Darkslayer or Witchbane now applies a stack of Bounty Hunter to you for 8 seconds, which can be consumed by casting Heartseeking Bolt to deal an additional 305 + 45% SP + 30% ranged AP Physical damage, stacking 2 times.","rankDescriptions":["Casting Darkslayer or Witchbane now applies a stack of Bounty Hunter to you for 8 seconds, which can be consumed by casting Heartseeking Bolt to deal an additional 305 + 45% SP + 30% ranged AP Physical damage, stacking 2 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30748","treeId":"coa-witch-hunter-39","index":30748,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/inv_archaeology_80_witch_skull.png","maxRank":1,"name":"Dead and Gone","description":"Your Bolt and Dash now affects an additional use of a Heartseeking Bolt. Your Pavise now lasts 2 additional sec and has a -30 sec reduced cooldown.","rankDescriptions":["Your Bolt and Dash now affects an additional use of a Heartseeking Bolt. Your Pavise now lasts 2 additional sec and has a -30 sec reduced cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30071","treeId":"coa-witch-hunter-39","index":30071,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_weapon_crossbow_17.png","maxRank":1,"name":"Heavy Crossbows","description":"Increases the damage of Darkslayer by 50%, but increases its cast time by 0.5 sec. Your Heartseeking Bolt and Darkslayer now have a 25% chance to strike an additional time.","rankDescriptions":["Increases the damage of Darkslayer by 50%, but increases its cast time by 0.5 sec. Your Heartseeking Bolt and Darkslayer now have a 25% chance to strike an additional time."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7414","treeId":"coa-witch-hunter-40","index":7414,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/unleashthehounds.png","maxRank":1,"name":"Unleash the Hounds","description":"Summon 1 Lesser Shadow Hound to aid you in combat for 20 seconds.","rankDescriptions":["Summon 1 Lesser Shadow Hound to aid you in combat for 20 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4011","treeId":"coa-witch-hunter-40","index":4011,"prerequisiteId":"coa-entry-30187","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-30187","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/custom_14_summon_dogs_border.png","maxRank":1,"name":"Houndmaster","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-9414","treeId":"coa-witch-hunter-40","index":9414,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/nhi_shadowroar_border.png","maxRank":1,"name":"Houndmaster's Call","description":"Command your Shadow Hounds to leap upon an enemy target, dealing two strikes for 1164 + 30% ranged AP Shadow damage.","rankDescriptions":["Command your Shadow Hounds to leap upon an enemy target, dealing two strikes for 1164 + 30% ranged AP Shadow damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7875","treeId":"coa-witch-hunter-40","index":7875,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/ability_hisek_aim.png","maxRank":2,"name":"Expert Shot","description":"Increases the damage of Shadowblast by 20% and your hit chance by 4%.","rankDescriptions":["Increases the damage of Shadowblast by 10% and your hit chance by 2%.","Increases the damage of Shadowblast by 20% and your hit chance by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6334","treeId":"coa-witch-hunter-40","index":6334,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/custom_t_curseofshadow_border.png","maxRank":1,"name":"Shadow Rage","description":"Casting Shadowblast now grants Shadow Rage to your Shadow Hound.Shadow RageAuto attacks have a 50% chance to deal an additional 57*1+AP*0.07t Shadow Damage. Lasts 15 seconds.","rankDescriptions":["Casting Shadowblast now grants Shadow Rage to your Shadow Hound.Shadow RageAuto attacks have a 50% chance to deal an additional 57*1+AP*0.07t Shadow Damage. Lasts 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9306","treeId":"coa-witch-hunter-40","index":9306,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_shadow_focusedpower.png","maxRank":1,"name":"Sharpshooter","description":"Level 20 Passive Casting Shadowblast now regenerates 3% of your maximum mana.","rankDescriptions":["Level 20 Passive Casting Shadowblast now regenerates 3% of your maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-30396","treeId":"coa-witch-hunter-40","index":30396,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/custom_gun_b_05_border.png","maxRank":1,"name":"Quickdraw","description":"Unleash a quick shot, dealing 175% Ranged Weapon Damage plus 16 + 20% ranged AP Physical damage. Only usable after critically striking with an ability.","rankDescriptions":["Unleash a quick shot, dealing 175% Ranged Weapon Damage plus 16 + 20% ranged AP Physical damage. Only usable after critically striking with an ability."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7418","treeId":"coa-witch-hunter-40","index":7418,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/ability_hunter_steeltrap.png","maxRank":1,"name":"Trapper","description":"Reduces the cooldown of your Trap spells by -25%.","rankDescriptions":["Reduces the cooldown of your Trap spells by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29163","treeId":"coa-witch-hunter-40","index":29163,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/_darkhand_sha.png","maxRank":1,"name":"Expulsion of Evil","description":"Direct ranged attacks and abilities now have a 5% chance to reset the cooldown of Houndmaster's Call.","rankDescriptions":["Direct ranged attacks and abilities now have a 5% chance to reset the cooldown of Houndmaster's Call."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34540","treeId":"coa-witch-hunter-40","index":34540,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/achievement_leader_sylvanas.png","maxRank":2,"name":"Dark Ranger","description":"Increases the Shadow damage dealt by your Shadow Hounds by 10%.","rankDescriptions":["Increases the Shadow damage dealt by your Shadow Hounds by 5%.","Increases the Shadow damage dealt by your Shadow Hounds by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29161","treeId":"coa-witch-hunter-40","index":29161,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/ability_priest_darkness.png","maxRank":1,"name":"Pure Agony","description":"Increases the critical damage of Quickdraw by 50%.","rankDescriptions":["Increases the critical damage of Quickdraw by 50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6858","treeId":"coa-witch-hunter-40","index":6858,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/inv_skeletalwarhorse_01_brown.png","maxRank":1,"name":"Darkrider","description":"Reduces the Rage cost of Shadowblast, Vault, and Unleash the Hounds by -10.","rankDescriptions":["Reduces the Rage cost of Shadowblast, Vault, and Unleash the Hounds by -10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30188","treeId":"coa-witch-hunter-40","index":30188,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/nhi_foreshadowing_border.png","maxRank":1,"name":"Decimate","description":"Empowers your Shadow Hounds for 20 seconds, granting them 30% increased damage and haste and allowing them to ignore Armor.","rankDescriptions":["Empowers your Shadow Hounds for 20 seconds, granting them 30% increased damage and haste and allowing them to ignore Armor."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6411","treeId":"coa-witch-hunter-40","index":6411,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/5_sumshadowwolf_border.png","maxRank":1,"name":"Houndfeeder","description":"Increases the critical strike chance of you and your Shadow Hound by 4%.","rankDescriptions":["Increases the critical strike chance of you and your Shadow Hound by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7417","treeId":"coa-witch-hunter-40","index":7417,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/custom_13_summon_raven_border.png","maxRank":1,"name":"Darkflock","description":"Channel for 8 seconds, commanding a flock of crows to deal 50 + 15% ranged AP + 85% SP Shadow damage to enemies in a wide cone every 2 sec. Can channel while moving.","rankDescriptions":["Channel for 8 seconds, commanding a flock of crows to deal 50 + 15% ranged AP + 85% SP Shadow damage to enemies in a wide cone every 2 sec. Can channel while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9307","treeId":"coa-witch-hunter-40","index":9307,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/achievement_boss_korkrondarkshaman.png","maxRank":1,"name":"Dark Mind","description":"Level 30 Passive Increases your critical strike rating by 25% of your Intellect.","rankDescriptions":["Level 30 Passive Increases your critical strike rating by 25% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-29162","treeId":"coa-witch-hunter-40","index":29162,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_bountyhunting.png","maxRank":1,"name":"Reload","description":"Reduces the cooldown of Quickdraw by -4 sec.","rankDescriptions":["Reduces the cooldown of Quickdraw by -4 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34528","treeId":"coa-witch-hunter-40","index":34528,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/spell_shadow_shadesofdarkness.png","maxRank":1,"name":"Darkhunter","description":"Your Quickdraw now additionally causes your next Darkslayer within 15 seconds to be instant cast.","rankDescriptions":["Your Quickdraw now additionally causes your next Darkslayer within 15 seconds to be instant cast."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34527","treeId":"coa-witch-hunter-40","index":34527,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/_smallgun_orange.png","maxRank":1,"name":"Hail of Gunfire","description":"Increases your ranged haste by 10%.","rankDescriptions":["Increases your ranged haste by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29984","treeId":"coa-witch-hunter-40","index":29984,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/inv_box_petcarrier_01.png","maxRank":2,"name":"Kennel Master","description":"Casting Unleash The Hounds now has a 50% chance to summon an additional Lesser Shadow Hound for 15 seconds.","rankDescriptions":["Casting Unleash The Hounds now has a 25% chance to summon an additional Lesser Shadow Hound for 15 seconds.","Casting Unleash The Hounds now has a 50% chance to summon an additional Lesser Shadow Hound for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7416","treeId":"coa-witch-hunter-40","index":7416,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/5_shieldnobg_border.png","maxRank":1,"name":"Defender of Darkshire","description":"Critical strikes with ranged auto attacks now increase the melee haste of your Shadow Hounds by 10% for 5 seconds.","rankDescriptions":["Critical strikes with ranged auto attacks now increase the melee haste of your Shadow Hounds by 10% for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7430","treeId":"coa-witch-hunter-40","index":7430,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/_demonhand_red.png","maxRank":1,"name":"Anguish","description":"Your Shadow damage dealt now has a 5% chance to reduce the channel time of your next Darkflock within 15 seconds by -50%.","rankDescriptions":["Your Shadow damage dealt now has a 5% chance to reduce the channel time of your next Darkflock within 15 seconds by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7415","treeId":"coa-witch-hunter-40","index":7415,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/novart_magicspell_(26)_border.png","maxRank":1,"name":"Repulse","description":"Emit a burst of shadow from your musket that strikes enemies in front of you, dealing 57 Shadow damage and knocking all affected targets back.","rankDescriptions":["Emit a burst of shadow from your musket that strikes enemies in front of you, dealing 57 Shadow damage and knocking all affected targets back."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29159","treeId":"coa-witch-hunter-40","index":29159,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/_howlofterror_purple.png","maxRank":1,"name":"Houndmaster","description":"Using Houndmaster's Call summons 1 Lesser Shadow Hound for 15 seconds that leaps at the target and deals 217 Shadow damage.","rankDescriptions":["Using Houndmaster's Call summons 1 Lesser Shadow Hound for 15 seconds that leaps at the target and deals 217 Shadow damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30185","treeId":"coa-witch-hunter-40","index":30185,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/_book1_purple.png","maxRank":1,"name":"Loksey's Journal","description":"Increases the damage of Shadow Rage by 20% of your ranged attack power.","rankDescriptions":["Increases the damage of Shadow Rage by 20% of your ranged attack power."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4367","treeId":"coa-witch-hunter-40","index":4367,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/ability_rogue_bloodyeye.png","maxRank":1,"name":"Daredevil","description":"Level 40 Passive When you take damage that would reduce your health to 35% or less, you summon 3 lesser Shadow Hounds and reset the cooldown of Vault. Can only occur once every 2 min.","rankDescriptions":["Level 40 Passive When you take damage that would reduce your health to 35% or less, you summon 3 lesser Shadow Hounds and reset the cooldown of Vault. Can only occur once every 2 min."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-6379","treeId":"coa-witch-hunter-40","index":6379,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/uico_shadow_spell_04_border.png","maxRank":1,"name":"Bringer of Darkness","description":"Your Repulse now resets the cooldown of Vault and makes your next Vault within 6 seconds free of cost.","rankDescriptions":["Your Repulse now resets the cooldown of Vault and makes your next Vault within 6 seconds free of cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34532","treeId":"coa-witch-hunter-40","index":34532,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/inv_misc_ammo_bullet_05.png","maxRank":2,"name":"Silver Bullets","description":"Increases the damage of Darkslayer by 20%, increased by an additional 20% against Undead.","rankDescriptions":["Increases the damage of Darkslayer by 10%, increased by an additional 10% against Undead.","Increases the damage of Darkslayer by 20%, increased by an additional 20% against Undead."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34530","treeId":"coa-witch-hunter-40","index":34530,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":8,"icon":"/assets/ui/spells/ability_priest_surgeofdarkness.png","maxRank":1,"name":"Veiled in Darkness","description":"A veil of dark magic encircles you at all times, granting 5% increased Attack Power to party and raid members within 100 yds. Does not stack with similar effects.","rankDescriptions":["A veil of dark magic encircles you at all times, granting 5% increased Attack Power to party and raid members within 100 yds. Does not stack with similar effects."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31161","treeId":"coa-witch-hunter-40","index":31161,"prerequisiteId":"coa-entry-4011","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4011","requiredRank":1}],"column":6,"row":8,"icon":"/assets/ui/spells/artifactability_vengeancedemonhunter_painbringer.png","maxRank":1,"name":"Scent of Magic","description":"Critical strikes now apply Scent of Magic for 15 seconds, causing your Shadow Hound's next Shadow Leap to incur a -10 sec reduced cooldown.","rankDescriptions":["Critical strikes now apply Scent of Magic for 15 seconds, causing your Shadow Hound's next Shadow Leap to incur a -10 sec reduced cooldown."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34524","treeId":"coa-witch-hunter-40","index":34524,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/ability_hunter_sickem.png","maxRank":1,"name":"Rampaging Hounds","description":"Your Shadow Hounds melee attacks now cleave 1 additional nearby enemy.","rankDescriptions":["Your Shadow Hounds melee attacks now cleave 1 additional nearby enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7422","treeId":"coa-witch-hunter-40","index":7422,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/nhi_shadowbombs_border.png","maxRank":1,"name":"Rearmament","description":"Arm yourself against evil, resetting the cooldown of all Traps and Decimate.","rankDescriptions":["Arm yourself against evil, resetting the cooldown of all Traps and Decimate."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7420","treeId":"coa-witch-hunter-40","index":7420,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/custom_gun_b_03_border.png","maxRank":1,"name":"Low Dawn","description":"Increases the damage of Sixfold Shot by 25% and causes it to channel 0.5 sec quicker.","rankDescriptions":["Increases the damage of Sixfold Shot by 25% and causes it to channel 0.5 sec quicker."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34531","treeId":"coa-witch-hunter-40","index":34531,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/ability_revendreth_demonhunter.png","maxRank":1,"name":"Coordinated Killing","description":"Casting Unleash the Hounds now casts Shadow Rage on you for 10 seconds.Shadow RageRanged auto attacks deal an additional 50 Shadow Damage.","rankDescriptions":["Casting Unleash the Hounds now casts Shadow Rage on you for 10 seconds.Shadow RageRanged auto attacks deal an additional 50 Shadow Damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9967","treeId":"coa-witch-hunter-40","index":9967,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/custom_32_gun_shot_border.png","maxRank":1,"name":"Sixfold Shot","description":"Level 50 Passive Every 5th Darkslayer or Shadowblast now transforms your Quickdraw into Sixfold Shot.Sixfold ShotUnleash 6 quick shots across 1.5 seconds, each dealing 100% Ranged Weapon Damage plus 133 Physical damage and generating 3 Rage. and 2% maximum mana. Usable while moving.","rankDescriptions":["Level 50 Passive Every 5th Darkslayer or Shadowblast now transforms your Quickdraw into Sixfold Shot.Sixfold ShotUnleash 6 quick shots across 1.5 seconds, each dealing 100% Ranged Weapon Damage plus 133 Physical damage and generating 3 Rage. and 2% maximum mana. Usable while moving."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-30186","treeId":"coa-witch-hunter-40","index":30186,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/custom_06_summon_demon_border.png","maxRank":1,"name":"Deal With The Devil","description":"Your and your Shadow Hounds critical damage dealt with Shadow damage is increased by 50%, but the cost of your spells and abilities is increased by 25%.","rankDescriptions":["Your and your Shadow Hounds critical damage dealt with Shadow damage is increased by 50%, but the cost of your spells and abilities is increased by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-8005","treeId":"coa-witch-hunter-40","index":8005,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_ironmaidens_darkhunt.png","maxRank":1,"name":"Lethal Pursuit","description":"Shadow Rage now also grants your Shadow Hounds 10% increased haste and it now stacks 3 additional times.","rankDescriptions":["Shadow Rage now also grants your Shadow Hounds 10% increased haste and it now stacks 3 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7427","treeId":"coa-witch-hunter-40","index":7427,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/ability_mount_fireravengodmountpurple.png","maxRank":1,"name":"Feast of Talons","description":"Striking at least 5 enemies with Darkflock now causes you to unleash a flock of crows around each enemy struck, dealing 762 + 78.75% SP + 45% ranged AP Twilight Damage over 9 seconds.","rankDescriptions":["Striking at least 5 enemies with Darkflock now causes you to unleash a flock of crows around each enemy struck, dealing 762 + 78.75% SP + 45% ranged AP Twilight Damage over 9 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12263","treeId":"coa-witch-hunter-41","index":12263,"prerequisiteId":"coa-entry-4012","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-4012","requiredRank":1},{"talentId":"coa-entry-6622","requiredRank":1}],"column":5,"row":1,"icon":"/assets/ui/spells/5_run_border.png","maxRank":1,"name":"Hunt","description":"2 Charges, 25 sec recharge Charge an enemy, slowing their movement speed by -70% for 2 seconds and generating 20 Rage.","rankDescriptions":["2 Charges, 25 sec recharge Charge an enemy, slowing their movement speed by -70% for 2 seconds and generating 20 Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4012","treeId":"coa-witch-hunter-41","index":4012,"prerequisiteId":"coa-entry-6622","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-6622","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/spell_shadow_shadowandflame.png","maxRank":1,"name":"Flames of Sin","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7097","treeId":"coa-witch-hunter-41","index":7097,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/novart_passivemastery_(6)_border.png","maxRank":1,"name":"Dusk Blade","description":"Strike an enemy with both weapons, dealing Weapon Damage plus 10 + 15% shadow SP Shadow damage, piercing resistances. Heals for 25% of damage dealt.","rankDescriptions":["Strike an enemy with both weapons, dealing Weapon Damage plus 10 + 15% shadow SP Shadow damage, piercing resistances. Heals for 25% of damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30851","treeId":"coa-witch-hunter-41","index":30851,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_swordofflame_border.png","maxRank":2,"name":"Sermon of Flame","description":"Increases your Fire damage dealt by 10%.","rankDescriptions":["Increases your Fire damage dealt by 5%.","Increases your Fire damage dealt by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29951","treeId":"coa-witch-hunter-41","index":29951,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/spell_shadow_metamorphosis.png","maxRank":2,"name":"Brooding Hatred","description":"Increases your off-hand Weapon Damage by 40% and increases your chance to hit by 6%.","rankDescriptions":["Increases your off-hand Weapon Damage by 20% and increases your chance to hit by 3%.","Increases your off-hand Weapon Damage by 40% and increases your chance to hit by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-12852","treeId":"coa-witch-hunter-41","index":12852,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/spell_holy_retributionaura.png","maxRank":1,"name":"Interrogator","description":"Level 20 Passive Damage dealt by Dawn Blade now deals an additional 100% of the damage dealt over 10 seconds as Fire damage.","rankDescriptions":["Level 20 Passive Damage dealt by Dawn Blade now deals an additional 100% of the damage dealt over 10 seconds as Fire damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-29907","treeId":"coa-witch-hunter-41","index":29907,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/5_assassinskill28_border.png","maxRank":1,"name":"Purifier's Edge","description":"Strike an enemy with searing blades, dealing Weapon Damage plus 20 with both weapons as Fire damage. Grants Flames of Sin or increases the duration by 3 sec.","rankDescriptions":["Strike an enemy with searing blades, dealing Weapon Damage plus 20 with both weapons as Fire damage. Grants Flames of Sin or increases the duration by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29953","treeId":"coa-witch-hunter-41","index":29953,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/ability_rogue_rollthebones02.png","maxRank":1,"name":"Flexible Fighter","description":"Increases your Agility by 6%.","rankDescriptions":["Increases your Agility by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7598","treeId":"coa-witch-hunter-41","index":7598,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/_diablo3_cleave_rogue.png","maxRank":1,"name":"Protector of Darkshire","description":"Increases the damage of Dawn Blade and Dusk Blade by 15%.","rankDescriptions":["Increases the damage of Dawn Blade and Dusk Blade by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7063","treeId":"coa-witch-hunter-41","index":7063,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/ability_warrior_offensivestance.png","maxRank":1,"name":"Refined Combatant","description":"Increases your expertise by 10.","rankDescriptions":["Increases your expertise by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29988","treeId":"coa-witch-hunter-41","index":29988,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/spell_holy_blessedresillience.png","maxRank":1,"name":"Smite Evil","description":"Strike an enemy with your blade, dealing Weapon Damage plus 25 as Holy damage to them and 5 nearby enemies.","rankDescriptions":["Strike an enemy with your blade, dealing Weapon Damage plus 25 as Holy damage to them and 5 nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34544","treeId":"coa-witch-hunter-41","index":34544,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":5,"icon":"/assets/ui/spells/inv_sword_1h_pvppandarias1_c_02.png","maxRank":1,"name":"Searing Hilt","description":"Purifier's Edge now grants you Searing Hilt for 10 seconds.Searing HiltIncreases your melee attack speed by 10% for 10 seconds.","rankDescriptions":["Purifier's Edge now grants you Searing Hilt for 10 seconds.Searing HiltIncreases your melee attack speed by 10% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29901","treeId":"coa-witch-hunter-41","index":29901,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":5,"icon":"/assets/ui/spells/novart_physical_ability_(37)_border.png","maxRank":1,"name":"Fiery Judgement","description":"Judge an enemy, dealing 361 + 40% AP + 100% fire SP Fire damage to them and nearby enemies. Grants Flames of Sin or increases the duration by 3 sec.","rankDescriptions":["Judge an enemy, dealing 361 + 40% AP + 100% fire SP Fire damage to them and nearby enemies. Grants Flames of Sin or increases the duration by 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7096","treeId":"coa-witch-hunter-41","index":7096,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/achievement_zone_duskwood.png","maxRank":2,"name":"Duskwood Renegade","description":"Reduces the cooldown of Burrow Bolt by -10 sec.","rankDescriptions":["Reduces the cooldown of Burrow Bolt by -5 sec.","Reduces the cooldown of Burrow Bolt by -10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34550","treeId":"coa-witch-hunter-41","index":34550,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/_darkhand_fire.png","maxRank":2,"name":"Brushin' Off The Dusk","description":"Your off-hand auto attacks now have a 20% chance to strike 2 additional times.","rankDescriptions":["Your off-hand auto attacks now have a 10% chance to strike 2 additional times.","Your off-hand auto attacks now have a 20% chance to strike 2 additional times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29950","treeId":"coa-witch-hunter-41","index":29950,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":5,"icon":"/assets/ui/spells/inv_misc_trinket6oih_lanternb1.png","maxRank":1,"name":"Darkslayer's Lantern","description":"Empower a lantern with your Flames of Sin and let it shine, dealing 291 + 15% AP Fire damage and stunning all enemies within 5 yds for 5 seconds.","rankDescriptions":["Empower a lantern with your Flames of Sin and let it shine, dealing 291 + 15% AP Fire damage and stunning all enemies within 5 yds for 5 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6618","treeId":"coa-witch-hunter-41","index":6618,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":5,"icon":"/assets/ui/spells/_auracloak_fire.png","maxRank":1,"name":"Flames of the Sinned","description":"Your Smite Evil now has a 25% chance to strike again. While you have Flames of Sin active, the chance to trigger this effect is increased by 10%.","rankDescriptions":["Your Smite Evil now has a 25% chance to strike again. While you have Flames of Sin active, the chance to trigger this effect is increased by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4317","treeId":"coa-witch-hunter-41","index":4317,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/sha_spell_shaman_lavaburst_nightborne.png","maxRank":1,"name":"Malice","description":"Level 30 Passive Increases your Fire spell damage by 50% of your Agility and your attack power by 100% of your Intellect.","rankDescriptions":["Level 30 Passive Increases your Fire spell damage by 50% of your Agility and your attack power by 100% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-6857","treeId":"coa-witch-hunter-41","index":6857,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/5_druideskill26_border.png","maxRank":1,"name":"Cinder and Ashes","description":"Increases the spell power scaling of Purifier's Edge and Fiery Judgement by 25%.","rankDescriptions":["Increases the spell power scaling of Purifier's Edge and Fiery Judgement by 25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7599","treeId":"coa-witch-hunter-41","index":7599,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_misc_token_scarletcrusade.png","maxRank":1,"name":"Scarlet Inquisitor","description":"Reduces the mana cost of your Traps and Brands by -50%.","rankDescriptions":["Reduces the mana cost of your Traps and Brands by -50%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6614","treeId":"coa-witch-hunter-41","index":6614,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/trade_alchemy_potione6.png","maxRank":1,"name":"Pyro Tonic","description":"Drink a fiery tonic, increasing your Fire damage dealt by 20% and your critical damage by 10% for 15 seconds.","rankDescriptions":["Drink a fiery tonic, increasing your Fire damage dealt by 20% and your critical damage by 10% for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-5393","treeId":"coa-witch-hunter-41","index":5393,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/_d3spiritwalk.png","maxRank":1,"name":"The Hunt Continues","description":"Hunt now generates an additional 15 Rage and the mana cost is reduced by -15%.","rankDescriptions":["Hunt now generates an additional 15 Rage and the mana cost is reduced by -15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11393","treeId":"coa-witch-hunter-41","index":11393,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/inv_fishing_nethooks01.png","maxRank":1,"name":"Evil Never Sleeps","description":"Hunt now slows movement speed by an additional 2 sec.","rankDescriptions":["Hunt now slows movement speed by an additional 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34545","treeId":"coa-witch-hunter-41","index":34545,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/ability_rogue_unfairadvantage.png","maxRank":1,"name":"Flourish","description":"Perform an advanced flourish, dealing 207 + 100% AP Fire damage to nearby enemies, repeating every 4 sec, and causing your Flames of Sin to cleave up to 3 additional enemies for 20 seconds. Grants you Flames of Sin and increases the duration by 10 sec.","rankDescriptions":["Perform an advanced flourish, dealing 207 + 100% AP Fire damage to nearby enemies, repeating every 4 sec, and causing your Flames of Sin to cleave up to 3 additional enemies for 20 seconds. Grants you Flames of Sin and increases the duration by 10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7066","treeId":"coa-witch-hunter-41","index":7066,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/inv_enchanting_70_pet_torch.png","maxRank":1,"name":"Torchlight","description":"Throw a torch at an enemy, dealing 166 + 30% AP + 45% fire SP Fire damage, and causing up to 5 of the next attacks you make against them to grant you Flames of Sin and increasing the duration by 2 sec.","rankDescriptions":["Throw a torch at an enemy, dealing 166 + 30% AP + 45% fire SP Fire damage, and causing up to 5 of the next attacks you make against them to grant you Flames of Sin and increasing the duration by 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6610","treeId":"coa-witch-hunter-41","index":6610,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/ability_warrior_challange_yellow.png","maxRank":1,"name":"Holy Frenzy","description":"Increases your melee haste by 15%.","rankDescriptions":["Increases your melee haste by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11197","treeId":"coa-witch-hunter-41","index":11197,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_ascend_stake_02_b.png","maxRank":1,"name":"Stake","description":"Drive a stake through the chest of an injured enemy, dealing 186 + 67.5% AP Physical damage, ignoring enemy armor. Grants Flames of Sin and increases the duration by 3 sec. Only usable on enemies at or below 35% health.","rankDescriptions":["Drive a stake through the chest of an injured enemy, dealing 186 + 67.5% AP Physical damage, ignoring enemy armor. Grants Flames of Sin and increases the duration by 3 sec. Only usable on enemies at or below 35% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4319","treeId":"coa-witch-hunter-41","index":4319,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/5_devilmark_border.png","maxRank":1,"name":"Heartstopper","description":"Level 40 Passive Casting Purifier's Edge or Fiery Judgement now has a 30% chance to allow the use of Stake within 8 seconds regardless of the target's health percentage.","rankDescriptions":["Level 40 Passive Casting Purifier's Edge or Fiery Judgement now has a 30% chance to allow the use of Stake within 8 seconds regardless of the target's health percentage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":true},{"id":"coa-entry-12546","treeId":"coa-witch-hunter-41","index":12546,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_fire_sealoffire.png","maxRank":1,"name":"Sinner","description":"Increases the damage of Torchlight by 100%.","rankDescriptions":["Increases the damage of Torchlight by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34546","treeId":"coa-witch-hunter-41","index":34546,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/spell_animarevendreth_debuff.png","maxRank":1,"name":"Sin Eater","description":"Increases the amount of next attacks that grant Flames of Sin through Torchlight by 5.","rankDescriptions":["Increases the amount of next attacks that grant Flames of Sin through Torchlight by 5."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34541","treeId":"coa-witch-hunter-41","index":34541,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/custom_t_sunorb_border.png","maxRank":1,"name":"Dawn","description":"Dealing Fire damage now increases the damage dealt by Torchlight and Dusk Blade by 2% for 5 seconds, stacking 10 times.","rankDescriptions":["Dealing Fire damage now increases the damage dealt by Torchlight and Dusk Blade by 2% for 5 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34547","treeId":"coa-witch-hunter-41","index":34547,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/world_marker_moon.png","maxRank":1,"name":"Dusk","description":"Dealing Physical damage now increases the damage dealt by Stake and Dawn Blade by 2% for 5 seconds, stacking 10 times.","rankDescriptions":["Dealing Physical damage now increases the damage dealt by Stake and Dawn Blade by 2% for 5 seconds, stacking 10 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4589","treeId":"coa-witch-hunter-41","index":4589,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/novart_physical_ability_(44)_border.png","maxRank":1,"name":"Monster Hunting","description":"Increases melee and ranged haste of party and raid members within 100 yds by 10%. Does not stack with similar effects. In addition, increases your damage dealt against Undead and Demons by 10%.","rankDescriptions":["Increases melee and ranged haste of party and raid members within 100 yds by 10%. Does not stack with similar effects. In addition, increases your damage dealt against Undead and Demons by 10%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7605","treeId":"coa-witch-hunter-41","index":7605,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holythrow_border.png","maxRank":1,"name":"Lightbringer","description":"Damage dealt by Dusk Blade now has a 15% chance to reduce the mana cost of your next Purifier's Edge by -100%. This effect has a 25% chance to not be consumed by Purifier's Edge.","rankDescriptions":["Damage dealt by Dusk Blade now has a 15% chance to reduce the mana cost of your next Purifier's Edge by -100%. This effect has a 25% chance to not be consumed by Purifier's Edge."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6625","treeId":"coa-witch-hunter-41","index":6625,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/inv_fishing_nethooks01.png","maxRank":1,"name":"Torch the Wicked!","description":"Dealing damage with Flames of Sin now grants 2% attack speed, stacking up to 12 times for 6 seconds. Application of this effect does not refresh the duration. Additionally, Pyro Tonic now also resets the cooldown of Torchlight.","rankDescriptions":["Dealing damage with Flames of Sin now grants 2% attack speed, stacking up to 12 times for 6 seconds. Application of this effect does not refresh the duration. Additionally, Pyro Tonic now also resets the cooldown of Torchlight."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7068","treeId":"coa-witch-hunter-41","index":7068,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/spell_fire_flameblades.png","maxRank":1,"name":"Burned Alive","description":"Increases your critical strike chance by 25% on enemies below 20% health.","rankDescriptions":["Increases your critical strike chance by 25% on enemies below 20% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4318","treeId":"coa-witch-hunter-41","index":4318,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/5_archerskill05_border.png","maxRank":1,"name":"Evil Doers, Beware!","description":"Level 50 Passive Stake is now guaranteed to critically strike enemies above 75% health.","rankDescriptions":["Level 50 Passive Stake is now guaranteed to critically strike enemies above 75% health."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7604","treeId":"coa-witch-hunter-41","index":7604,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/inv_sword_1h_artifactfelomelorn_d_01dual.png","maxRank":1,"name":"Purity & Wickedness","description":"Main-hand auto attacks now apply a stack of Purity to the target, increasing the Fire and Holy damage you deal to them by 2% per stack, stacking 6 times. Off-hand auto attacks now apply a stack of Wickedness to the target, increasing the Shadow and Physical damage you deal to them by 2% per stack, stacking 6 times. Torchlight can now consume these stacks to deal 1028 + 25% holy SP + 45% AP Holyflame or Shadowstrike damage to the target.","rankDescriptions":["Main-hand auto attacks now apply a stack of Purity to the target, increasing the Fire and Holy damage you deal to them by 2% per stack, stacking 6 times. Off-hand auto attacks now apply a stack of Wickedness to the target, increasing the Shadow and Physical damage you deal to them by 2% per stack, stacking 6 times. Torchlight can now consume these stacks to deal 1028 + 25% holy SP + 45% AP Holyflame or Shadowstrike damage to the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7601","treeId":"coa-witch-hunter-41","index":7601,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/5_moon_border.png","maxRank":1,"name":"Cycle of Despair","description":"Increases the amount of stacks of Dawn and Dusk by 10. In addition, reaching 20 stacks with both buffs will consume them to grant you 20% increased damage, melee haste, movement speed, and critical strike chance for 6 seconds.","rankDescriptions":["Increases the amount of stacks of Dawn and Dusk by 10. In addition, reaching 20 stacks with both buffs will consume them to grant you 20% increased damage, melee haste, movement speed, and critical strike chance for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7074","treeId":"coa-witch-hunter-41","index":7074,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/_diablo3_cursedmonster_yellow.png","maxRank":1,"name":"Hatred & Vitriol","description":"Damage dealt by Stake now ignores enemy armor and its critical strikes refund half of its cost.","rankDescriptions":["Damage dealt by Stake now ignores enemy armor and its critical strikes refund half of its cost."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29150","treeId":"coa-witch-hunter-87","index":29150,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":1,"icon":"/assets/ui/spells/ability_demonhunter_vengefulretreat2.png","maxRank":1,"name":"Vault","description":"Dash in the direction you are moving. Distance scales with movement speed. Not usable while rooted.","rankDescriptions":["Dash in the direction you are moving. Distance scales with movement speed. Not usable while rooted."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30187","treeId":"coa-witch-hunter-87","index":30187,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/uico_shadow_spell_07_border.png","maxRank":1,"name":"Shadow Trap","description":"Place a dark trap on the ground lasting 30 seconds that will curse the first enemy to approach it and up to 5 enemies within 3 yds, stunning them for 4 seconds and dealing 461 + 136% AP Shadow damage over 8 seconds.","rankDescriptions":["Place a dark trap on the ground lasting 30 seconds that will curse the first enemy to approach it and up to 5 enemies within 3 yds, stunning them for 4 seconds and dealing 461 + 136% AP Shadow damage over 8 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6622","treeId":"coa-witch-hunter-87","index":6622,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":1,"icon":"/assets/ui/spells/burrow bolt.png","maxRank":1,"name":"Burrow Bolt","description":"Shoot a bolt with a rope attached to it at an enemy dealing 6 + 25% AP Physical damage and pulling them to you.","rankDescriptions":["Shoot a bolt with a rope attached to it at an enemy dealing 6 + 25% AP Physical damage and pulling them to you."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34592","treeId":"coa-witch-hunter-87","index":34592,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":2,"icon":"/assets/ui/spells/nhi_arcanespeed_border.png","maxRank":1,"name":"Night Walker","description":"Increases the base range of Vault by 3 yds.","rankDescriptions":["Increases the base range of Vault by 3 yds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34538","treeId":"coa-witch-hunter-87","index":34538,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":2,"icon":"/assets/ui/spells/ability_rogue_nightblade.png","maxRank":2,"name":"Night Stalker","description":"Increases your critical strike chance by 6%.","rankDescriptions":["Increases your critical strike chance by 3%.","Increases your critical strike chance by 6%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7451","treeId":"coa-witch-hunter-87","index":7451,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":2,"icon":"/assets/ui/spells/5_shadowworld_border.png","maxRank":1,"name":"Plagueland Survivalist","description":"Reduces the duration of disease effects on you by -30%.","rankDescriptions":["Reduces the duration of disease effects on you by -30%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6415","treeId":"coa-witch-hunter-87","index":6415,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":2,"icon":"/assets/ui/spells/inv_sword_2h_blood_c_01.png","maxRank":2,"name":"Combat Training","description":"Increases your Physical damage dealt and parry chance by 6%.","rankDescriptions":["Increases your Physical damage dealt and parry chance by 3%.","Increases your Physical damage dealt and parry chance by 6%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6457","treeId":"coa-witch-hunter-87","index":6457,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":3,"icon":"/assets/ui/spells/_d3mantraofretribution.png","maxRank":1,"name":"Brimming Hatred","description":"Your critical strikes now generate 10 Rage. Can only occur every 3 sec.","rankDescriptions":["Your critical strikes now generate 10 Rage. Can only occur every 3 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6417","treeId":"coa-witch-hunter-87","index":6417,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":3,"icon":"/assets/ui/spells/custom_book_02_b_border.png","maxRank":1,"name":"Vishas' Memoir","description":"Reduces the cooldown of your Brand spells by -25%.","rankDescriptions":["Reduces the cooldown of your Brand spells by -25%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6326","treeId":"coa-witch-hunter-87","index":6326,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":4,"icon":"/assets/ui/spells/inv_pet_pettrap02.png","maxRank":1,"name":"Inquisitor's Trap","description":"Place a cruel trap on the ground lasting 1 minute that will curse the first enemy to approach it silencing them and all enemies in a 5 yd radius for 6 seconds.","rankDescriptions":["Place a cruel trap on the ground lasting 1 minute that will curse the first enemy to approach it silencing them and all enemies in a 5 yd radius for 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7424","treeId":"coa-witch-hunter-87","index":7424,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":4,"icon":"/assets/ui/spells/spell_shadow_spectralsight.png","maxRank":1,"name":"Evil Never Sleeps","description":"In the night time, your Agility is increased by 4%. In the day time, your haste is increased by 3%.","rankDescriptions":["In the night time, your Agility is increased by 4%. In the day time, your haste is increased by 3%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6413","treeId":"coa-witch-hunter-87","index":6413,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":4,"icon":"/assets/ui/spells/trade_alchemy_potione2.png","maxRank":1,"name":"Witchblood Tonic","description":"Drink a shadowy tonic, removing all curse effects from you and reducing all Magic damage taken by -40% for 10 seconds.","rankDescriptions":["Drink a shadowy tonic, removing all curse effects from you and reducing all Magic damage taken by -40% for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29952","treeId":"coa-witch-hunter-87","index":29952,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/inv_inscription_tarot_6omagecard.png","maxRank":1,"name":"Trap Card","description":"Increases the duration of your Traps by 50%.","rankDescriptions":["Increases the duration of your Traps by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34583","treeId":"coa-witch-hunter-87","index":34583,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":5,"icon":"/assets/ui/spells/ability_rogue_wrongfullyaccused.png","maxRank":1,"name":"Follow The Edict","description":"Increases the effectiveness of your Edicts by 20%.","rankDescriptions":["Increases the effectiveness of your Edicts by 20%."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34595","treeId":"coa-witch-hunter-87","index":34595,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":5,"icon":"/assets/ui/spells/_diablo3_cleave_deathknight.png","maxRank":1,"name":"Vengeful Intent","description":"Whenever you take direct damage you have a 10% chance to strike back for 75% Weapon Damage.","rankDescriptions":["Whenever you take direct damage you have a 10% chance to strike back for 75% Weapon Damage."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7482","treeId":"coa-witch-hunter-87","index":7482,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/inv_potion_68.png","maxRank":1,"name":"Just A Sip","description":"Drinking Tonics now also restores 5% of your maximum health and mana.","rankDescriptions":["Drinking Tonics now also restores 5% of your maximum health and mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34558","treeId":"coa-witch-hunter-87","index":34558,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/inv_potion_55.png","maxRank":1,"name":"Regenerative Elixirs","description":"Drinking Tonics now also restores 30 Rage.","rankDescriptions":["Drinking Tonics now also restores 30 Rage."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6529","treeId":"coa-witch-hunter-87","index":6529,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":6,"icon":"/assets/ui/spells/ability_hunter_traplauncher.png","maxRank":1,"name":"Death Trap","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34588","treeId":"coa-witch-hunter-87","index":34588,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":6,"icon":"/assets/ui/spells/ability_skyreach_overwhelmed.png","maxRank":1,"name":"Brand of the Unworthy","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7095","treeId":"coa-witch-hunter-87","index":7095,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":6,"icon":"/assets/ui/spells/_sylvanas_warlock.png","maxRank":1,"name":"Witching Shroud","description":"Enter a powerful stealth mode for 3 seconds, granting immunity to all harmful magic effects. Only usable for 10 seconds after being hit by a magical critical strike. Usable while stunned or feared.","rankDescriptions":["Enter a powerful stealth mode for 3 seconds, granting immunity to all harmful magic effects. Only usable for 10 seconds after being hit by a magical critical strike. Usable while stunned or feared."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9417","treeId":"coa-witch-hunter-87","index":9417,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":7,"icon":"/assets/ui/spells/custom_72_creating_shadow_border.png","maxRank":1,"name":"Three Sevens","description":"Increases the duration that Traps last on the ground by 7 sec, reduces the cooldown of Burrow Bolt by -7 sec, and reduces the cost of Dawn Blade by -7.","rankDescriptions":["Increases the duration that Traps last on the ground by 7 sec, reduces the cooldown of Burrow Bolt by -7 sec, and reduces the cost of Dawn Blade by -7."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7588","treeId":"coa-witch-hunter-87","index":7588,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":7,"icon":"/assets/ui/spells/ability_heroicleap.png","maxRank":1,"name":"Strategist","description":"Your Vault now regenerates 5% maximum mana.","rankDescriptions":["Your Vault now regenerates 5% maximum mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30736","treeId":"coa-witch-hunter-87","index":30736,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/novart_physical_ability_(60)_border.png","maxRank":1,"name":"Vampire Hunter","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34555","treeId":"coa-witch-hunter-87","index":34555,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":7,"icon":"/assets/ui/spells/ability_priest_darkness.png","maxRank":1,"name":"Dark Intuition","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34560","treeId":"coa-witch-hunter-87","index":34560,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":7,"icon":"/assets/ui/spells/spell_shadow_brainwash.png","maxRank":1,"name":"Alertness","description":"Reduces the cooldown of Witching Shroud by -10 sec when you are struck by a Shadow or Arcane critical strike.","rankDescriptions":["Reduces the cooldown of Witching Shroud by -10 sec when you are struck by a Shadow or Arcane critical strike."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9415","treeId":"coa-witch-hunter-87","index":9415,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":8,"icon":"/assets/ui/spells/trade_archaeology_engravedscimitarpommel.png","maxRank":1,"name":"Resilient to Darkness","description":"Direct Magic damage taken now heals you and restores mana to you equal to 3% of the damage done.","rankDescriptions":["Direct Magic damage taken now heals you and restores mana to you equal to 3% of the damage done."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7093","treeId":"coa-witch-hunter-87","index":7093,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/ability_rogue_sinistercalling.png","maxRank":1,"name":"Renegade","description":"You now drop caltrops below you each time you use Vault that last 6 seconds.","rankDescriptions":["You now drop caltrops below you each time you use Vault that last 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34556","treeId":"coa-witch-hunter-87","index":34556,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/inv_enchant_alchemistcauldron.png","maxRank":2,"name":"Alchemical Research","description":"Increases the effectiveness of your Tonics by 50%.","rankDescriptions":["Increases the effectiveness of your Tonics by 25%.","Increases the effectiveness of your Tonics by 50%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11218","treeId":"coa-witch-hunter-87","index":11218,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":8,"icon":"/assets/ui/spells/nhi_shadowbreath_border.png","maxRank":1,"name":"Dark Souls","description":"Increases the duration of Tonics by 5 sec.","rankDescriptions":["Increases the duration of Tonics by 5 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":9,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30738","treeId":"coa-witch-hunter-87","index":30738,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":9,"icon":"/assets/ui/spells/inv_misc_pyriumgrenade.png","maxRank":1,"name":"Smoke Grenade","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%.","rankDescriptions":["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%."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34593","treeId":"coa-witch-hunter-87","index":34593,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":9,"icon":"/assets/ui/spells/inv_engineering_90_bola.png","maxRank":1,"name":"Purified Bola","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34557","treeId":"coa-witch-hunter-87","index":34557,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":9,"icon":"/assets/ui/spells/spell_holy_retribution.png","maxRank":1,"name":"Slayer of Darkness","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29986","treeId":"coa-witch-hunter-87","index":29986,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":9,"icon":"/assets/ui/spells/trade_alchemy_potione5.png","maxRank":1,"name":"Vampiric Tonic","description":"Drink a vampiric tonic, allowing Physical damage dealt to heal you equal to 20% of the damage dealt for 10 seconds.","rankDescriptions":["Drink a vampiric tonic, allowing Physical damage dealt to heal you equal to 20% of the damage dealt for 10 seconds."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-34587","treeId":"coa-witch-hunter-87","index":34587,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":10,"icon":"/assets/ui/spells/ability_rogue_smoke.png","maxRank":1,"name":"Trickster","description":"Reduces the cooldown of Smoke Grenade by -30 sec and increases its duration by 1 sec.","rankDescriptions":["Reduces the cooldown of Smoke Grenade by -30 sec and increases its duration by 1 sec."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31006","treeId":"coa-witch-hunter-87","index":31006,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/ability_blackhand_marked4death.png","maxRank":1,"name":"Slayer's Mark","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.","rankDescriptions":["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."],"system":"coa","entryType":"Ability","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6325","treeId":"coa-witch-hunter-87","index":6325,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":10,"icon":"/assets/ui/spells/inv_misc_5potionbag_special.png","maxRank":1,"name":"Tonic Supply","description":"Using a Tonic now reduces the cooldown of all other Tonics by -10 sec.","rankDescriptions":["Using a Tonic now reduces the cooldown of all other Tonics by -10 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":1,"talentEssenceCost":0,"requiredClassPoints":24,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7569","treeId":"coa-witch-hunter-94","index":7569,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":1,"icon":"/assets/ui/spells/nhi_brokensword_border.png","maxRank":1,"name":"Noctis Blade","description":"Strike an enemy, dealing 100% Weapon Damage plus 26, scaling with your parry rating, and healing you for 50% of the damage dealt.","rankDescriptions":["Strike an enemy, dealing 100% Weapon Damage plus 26, scaling with your parry rating, and healing you for 50% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7553","treeId":"coa-witch-hunter-94","index":7553,"prerequisiteId":"coa-entry-6622","prerequisiteRank":1,"prerequisites":[{"talentId":"coa-entry-6622","requiredRank":1}],"column":11,"row":1,"icon":"/assets/ui/spells/novart_physical_ability_(49)_border.png","maxRank":1,"name":"Grasp of the Undying","description":"Level 10 Passive Auto attacks while wielding a two-handed weapon now have a 25% chance to unleash Grasp of the Undying, leeching 20 + 15% SP + 10% AP health from the target.","rankDescriptions":["Level 10 Passive Auto attacks while wielding a two-handed weapon now have a 25% chance to unleash Grasp of the Undying, leeching 20 + 15% SP + 10% AP health from the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":true},{"id":"coa-entry-7574","treeId":"coa-witch-hunter-94","index":7574,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":2,"icon":"/assets/ui/spells/5_shadow_border.png","maxRank":1,"name":"Shadow Brand","description":"Direct ability damage now applies Shadow Brand to enemies.Shadow BrandMarks the target for 12 seconds, dealing 36 High Threat Shadow Damage over 12 seconds.","rankDescriptions":["Direct ability damage now applies Shadow Brand to enemies.Shadow BrandMarks the target for 12 seconds, dealing 36 High Threat Shadow Damage over 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7595","treeId":"coa-witch-hunter-94","index":7595,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":3,"icon":"/assets/ui/spells/nhi_shadowthrow_border.png","maxRank":1,"name":"Dark Chivalry","description":"Increases your Armor contribution from mail items by 100%.","rankDescriptions":["Increases your Armor contribution from mail items by 100%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-6613","treeId":"coa-witch-hunter-94","index":6613,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":3,"icon":"/assets/ui/spells/inv_helm_cloth_raidpriest_r_01_gold.png","maxRank":2,"name":"Dark Penance","description":"Increases your Agility and your chance to parry and dodge by 4%.","rankDescriptions":["Increases your Agility and your chance to parry and dodge by 2%.","Increases your Agility and your chance to parry and dodge by 4%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4552","treeId":"coa-witch-hunter-94","index":4552,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":3,"icon":"/assets/ui/spells/novart_helmet_(12)_border.png","maxRank":1,"name":"Dusk Knight","description":"Level 20 Passive Increases your parry rating by 40% of your Agility and your dodge rating by 25% of your Intellect.","rankDescriptions":["Level 20 Passive Increases your parry rating by 40% of your Agility and your dodge rating by 25% of your Intellect."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":20,"isPassive":true},{"id":"coa-entry-7575","treeId":"coa-witch-hunter-94","index":7575,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":4,"icon":"/assets/ui/spells/5_shadowclones_border.png","maxRank":1,"name":"March of the Black King","description":"Expel darkness from within you, dealing 55 Shadow damage to nearby enemies over 10 seconds. Generates 5 Rage every 2 sec.","rankDescriptions":["Expel darkness from within you, dealing 55 Shadow damage to nearby enemies over 10 seconds. Generates 5 Rage every 2 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7061","treeId":"coa-witch-hunter-94","index":7061,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":4,"icon":"/assets/ui/spells/spell_shadow_antishadow.png","maxRank":2,"name":"Shadow Order","description":"Increases the damage of Shadow Brand by 40% and your hit rating by 6% of your Agility.","rankDescriptions":["Increases the damage of Shadow Brand by 20% and your hit rating by 3% of your Agility.","Increases the damage of Shadow Brand by 40% and your hit rating by 6% of your Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7594","treeId":"coa-witch-hunter-94","index":7594,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":4,"icon":"/assets/ui/spells/inv_weapon_shortblade_28.png","maxRank":1,"name":"Wide Swings","description":"Increases the damage of Noctis Blade and Grasp of the Undying by 20% on enemies affected by Shadow Brand.","rankDescriptions":["Increases the damage of Noctis Blade and Grasp of the Undying by 20% on enemies affected by Shadow Brand."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7586","treeId":"coa-witch-hunter-94","index":7586,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":4,"icon":"/assets/ui/spells/custom_sword_b_05_border.png","maxRank":1,"name":"Desecrate","description":"Desecrate up to 8 enemies in front of you, dealing Weapon Damage plus 29 as Shadow damage, piercing resistances. Only usable after avoiding an attack.","rankDescriptions":["Desecrate up to 8 enemies in front of you, dealing Weapon Damage plus 29 as Shadow damage, piercing resistances. Only usable after avoiding an attack."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-31213","treeId":"coa-witch-hunter-94","index":31213,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":5,"icon":"/assets/ui/spells/uico_shadow_spell_08_border.png","maxRank":1,"name":"No Regrets","description":"Your March of the Black King now increases your Armor by 15%.","rankDescriptions":["Your March of the Black King now increases your Armor by 15%."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7577","treeId":"coa-witch-hunter-94","index":7577,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":5,"icon":"/assets/ui/spells/nhi_shadowbeam_(2)_border.png","maxRank":1,"name":"Witchblight","description":"Explode with dark energy, dealing 51 + 50% shadow SP + 20% AP Shadow damage to up to to 10 nearby enemies and healing you for 20% of your maximum health. Each target struck is guaranteed to miss their next instance of damage within 6 seconds.","rankDescriptions":["Explode with dark energy, dealing 51 + 50% shadow SP + 20% AP Shadow damage to up to to 10 nearby enemies and healing you for 20% of your maximum health. Each target struck is guaranteed to miss their next instance of damage within 6 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29947","treeId":"coa-witch-hunter-94","index":29947,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":5,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_shadowcatcher_border.png","maxRank":1,"name":"Knight's Seal","description":"Curse an enemy, dealing 144 + 19.2% shadow SP + 14.6% AP Shadow damage every 3 sec and applying Dark Oath to you, reducing all damage taken by -20% for 8 seconds. Your next Desecrate within 8 seconds now restores 15% of your maximum health and mana.","rankDescriptions":["Curse an enemy, dealing 144 + 19.2% shadow SP + 14.6% AP Shadow damage every 3 sec and applying Dark Oath to you, reducing all damage taken by -20% for 8 seconds. Your next Desecrate within 8 seconds now restores 15% of your maximum health and mana."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-4550","treeId":"coa-witch-hunter-94","index":4550,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":5,"icon":"/assets/ui/spells/call_of_the_sepulcher_64x64.png","maxRank":1,"name":"Dark Power","description":"Level 30 Passive You now gain 1 Stamina for every 2 Agility.","rankDescriptions":["Level 30 Passive You now gain 1 Stamina for every 2 Agility."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":30,"isPassive":true},{"id":"coa-entry-7571","treeId":"coa-witch-hunter-94","index":7571,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":6,"icon":"/assets/ui/spells/inv_weapon_shortblade_110.png","maxRank":1,"name":"Dark Riposte","description":"Parrying enemy attacks now restores 5% of your missing health and Rage.","rankDescriptions":["Parrying enemy attacks now restores 5% of your missing health and Rage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7579","treeId":"coa-witch-hunter-94","index":7579,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":6,"icon":"/assets/ui/spells/inv_qiraj_hiltornate.png","maxRank":1,"name":"Guard Strike","description":"Bash an enemy with your weapon's hilt, interrupting them and preventing any spell from that school of magic from being cast for 3 seconds.","rankDescriptions":["Bash an enemy with your weapon's hilt, interrupting them and preventing any spell from that school of magic from being cast for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7064","treeId":"coa-witch-hunter-94","index":7064,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":6,"icon":"/assets/ui/spells/ability_priest_cascade_shadow.png","maxRank":1,"name":"Noctis Protection","description":"Casting Noctis Blade now applies a shield absorbing 266 + 200% Stamina + 10% AP damage for 4 seconds.","rankDescriptions":["Casting Noctis Blade now applies a shield absorbing 266 + 200% Stamina + 10% AP damage for 4 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-30661","treeId":"coa-witch-hunter-94","index":30661,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":6,"icon":"/assets/ui/spells/nhi_shadowcup_border.png","maxRank":2,"name":"Secret Society","description":"Increases your Shadow critical strike chance and Shadow damage dealt by 8% and your expertise by 10.","rankDescriptions":["Increases your Shadow critical strike chance and Shadow damage dealt by 4% and your expertise by 5.","Increases your Shadow critical strike chance and Shadow damage dealt by 8% and your expertise by 10."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29904","treeId":"coa-witch-hunter-94","index":29904,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":6,"icon":"/assets/ui/spells/nhi_shadowentagle_border.png","maxRank":1,"name":"Dark Juggernaut","description":"Desecrate now restores 10 + 20% shadow SP + 10% AP health plus an additional 1% maximum health for each target struck affected by Shadow Brand.","rankDescriptions":["Desecrate now restores 10 + 20% shadow SP + 10% AP health plus an additional 1% maximum health for each target struck affected by Shadow Brand."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9751","treeId":"coa-witch-hunter-94","index":9751,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":6,"icon":"/assets/ui/spells/inv_sword_61.png","maxRank":1,"name":"Wicked Intent","description":"Casting Desecrate now has a 15% chance to reset the cooldown of Noctis Blade.","rankDescriptions":["Casting Desecrate now has a 15% chance to reset the cooldown of Noctis Blade."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7583","treeId":"coa-witch-hunter-94","index":7583,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":2,"row":7,"icon":"/assets/ui/spells/spell_shadow_sealofkings.png","maxRank":1,"name":"Bulwark of Darkness","description":"Damage dealt by Dawn Blade is now increased by 5% for each stack of Pommel Smash on the target.","rankDescriptions":["Damage dealt by Dawn Blade is now increased by 5% for each stack of Pommel Smash on the target."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7587","treeId":"coa-witch-hunter-94","index":7587,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":7,"icon":"/assets/ui/spells/inv_sword_2h_blood_c_03.png","maxRank":1,"name":"Clinch Fighting","description":"Attacks which would otherwise kill you now heal you for 50% maximum health and increases the damage of Noctis Blade by 50% for 6 seconds. Can only occur once every 2 min.","rankDescriptions":["Attacks which would otherwise kill you now heal you for 50% maximum health and increases the damage of Noctis Blade by 50% for 6 seconds. Can only occur once every 2 min."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7590","treeId":"coa-witch-hunter-94","index":7590,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/warrior_talent_icon_deadlycalm.png","maxRank":1,"name":"Calm Under Pressure","description":"Reduces the cooldown of Stoicism by -30 sec and Burrow Bolt by -5 sec.","rankDescriptions":["Reduces the cooldown of Stoicism by -30 sec and Burrow Bolt by -5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-11375","treeId":"coa-witch-hunter-94","index":11375,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":8,"row":7,"icon":"/assets/ui/spells/inv_soulbarrier.png","maxRank":1,"name":"Dark Barrier","description":"Increases the duration of Stoicism by 5 sec.","rankDescriptions":["Increases the duration of Stoicism by 5 sec."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7580","treeId":"coa-witch-hunter-94","index":7580,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":7,"icon":"/assets/ui/spells/inv_weapon_shortblade_88.png","maxRank":1,"name":"Shadowy Tendrils","description":"Your Grasp of the Undying now strikes 2 additional nearby enemies.","rankDescriptions":["Your Grasp of the Undying now strikes 2 additional nearby enemies."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":40,"isPassive":false},{"id":"coa-entry-30853","treeId":"coa-witch-hunter-94","index":30853,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":1,"row":8,"icon":"/assets/ui/spells/ability_warrior_intervene.png","maxRank":2,"name":"Guardbreaker","description":"Your Pommel Smash now strikes an additional nearby enemy.","rankDescriptions":["Your Pommel Smash now strikes an additional nearby enemy.","Your Pommel Smash now strikes an additional nearby enemy."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7633","treeId":"coa-witch-hunter-94","index":7633,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":8,"icon":"/assets/ui/spells/inv_archaeology_80_witch_fetishofthequestioningmind.png","maxRank":1,"name":"Witching Idol","description":"Drop a Witching Idol that periodically dispels fear, sleep, and charm effects every 3 sec from party members within 20 yds.","rankDescriptions":["Drop a Witching Idol that periodically dispels fear, sleep, and charm effects every 3 sec from party members within 20 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7585","treeId":"coa-witch-hunter-94","index":7585,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":4,"row":8,"icon":"/assets/ui/spells/uico_shadow_spell_03_border.png","maxRank":1,"name":"Destroyer of Evil","description":"Damage dealt by Dawn Blade now deals an additional 20% of the damage dealt as Twilight Damage every 1 sec for 3 seconds.Shadow BrandMarks the target for 12 seconds, dealing 36 High Threat Shadow Damage over 12 seconds.","rankDescriptions":["Damage dealt by Dawn Blade now deals an additional 20% of the damage dealt as Twilight Damage every 1 sec for 3 seconds.Shadow BrandMarks the target for 12 seconds, dealing 36 High Threat Shadow Damage over 12 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7596","treeId":"coa-witch-hunter-94","index":7596,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":6,"row":8,"icon":"/assets/ui/spells/novart_magicspell_(50)_border.png","maxRank":1,"name":"Foresight","description":"Your direct Physical critical strikes now grant allies Replenishment. In addition, Dawn Blade is now guaranteed to critically strike against Undead or Demons.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","rankDescriptions":["Your direct Physical critical strikes now grant allies Replenishment. In addition, Dawn Blade is now guaranteed to critically strike against Undead or Demons.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7584","treeId":"coa-witch-hunter-94","index":7584,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":8,"icon":"/assets/ui/spells/nhi_shadowchains_border.png","maxRank":1,"name":"Chains of Darkness","description":"Pull all nearby enemies to you, dealing 84 + 55% shadow SP + 15% AP Shadow damage and taunting them for 3 seconds.","rankDescriptions":["Pull all nearby enemies to you, dealing 84 + 55% shadow SP + 15% AP Shadow damage and taunting them for 3 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7589","treeId":"coa-witch-hunter-94","index":7589,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":9,"row":8,"icon":"/assets/ui/spells/spell_shadow_ritualofsacrifice.png","maxRank":1,"name":"Undying","description":"While below 75% maximum health, Dawn Blade now increases the critical strike chance of Noctis Blade by 40% for 10 seconds.","rankDescriptions":["While below 75% maximum health, Dawn Blade now increases the critical strike chance of Noctis Blade by 40% for 10 seconds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":8,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7582","treeId":"coa-witch-hunter-94","index":7582,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":9,"icon":"/assets/ui/spells/inv_sword_161.png","maxRank":1,"name":"Witch Knight","description":"Direct ability damage with a two-handed weapon now reduces the remaining cooldown of your Tonics by -1 sec and grants Witching. WitchingIncreases magic resistances by 10%, and melee haste by 10% for 8 seconds, stacking 3 times.","rankDescriptions":["Direct ability damage with a two-handed weapon now reduces the remaining cooldown of your Tonics by -1 sec and grants Witching. WitchingIncreases magic resistances by 10%, and melee haste by 10% for 8 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7630","treeId":"coa-witch-hunter-94","index":7630,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":9,"icon":"/assets/ui/spells/nhi_shadowstab_border.png","maxRank":1,"name":"Shadowstorm","description":"Damage dealt by Pommel Smash now has a 20% chance to trigger a Shadowstorm.ShadowstormLeeches 350 + 30% SP + 10% AP health from enemies within 8 yds.","rankDescriptions":["Damage dealt by Pommel Smash now has a 20% chance to trigger a Shadowstorm.ShadowstormLeeches 350 + 30% SP + 10% AP health from enemies within 8 yds."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7592","treeId":"coa-witch-hunter-94","index":7592,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":9,"icon":"/assets/ui/spells/novart_magicspell_(72)_border.png","maxRank":1,"name":"Night King","description":"Noctis Blade now consumes Shadow Brand to deal 50% increased damage.","rankDescriptions":["Noctis Blade now consumes Shadow Brand to deal 50% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-9580","treeId":"coa-witch-hunter-94","index":9580,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":11,"row":9,"icon":"/assets/ui/spells/inv_helm_plate_challengedeathknight_d_01.png","maxRank":1,"name":"Dawn Knight","description":"Level 50 Passive Avoiding damage or dealing damage with auto attacks now has a 40% chance to grant you Dawn Knight.Dawn KnightYour next Dawn Blade within 15 seconds is free of cost and deals 25% increased damage.","rankDescriptions":["Level 50 Passive Avoiding damage or dealing damage with auto attacks now has a 40% chance to grant you Dawn Knight.Dawn KnightYour next Dawn Blade within 15 seconds is free of cost and deals 25% increased damage."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":0,"requiredClassPoints":0,"requiredSpecPoints":0,"requiredLevel":50,"isPassive":true},{"id":"coa-entry-7591","treeId":"coa-witch-hunter-94","index":7591,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":3,"row":10,"icon":"/assets/ui/spells/nhi_shadowsilence_border.png","maxRank":1,"name":"Secret of Raven Hill","description":"Drinking a Tonic will transform your Dawn Blade into powerful damaging spells with unique effects for 30 seconds based on the last Tonic consumed.Surging BladeSlash an enemy for 280% Weapon Damage and increase your haste by 15% for 10 seconds.Witchblood FeverCurse all nearby enemies, dealing 104 + 12% AP Shadow damage every 1 sec for 8 seconds and increasing their Magic damage taken from you by 3%. Enemies affected by Witchblood Fever can be seen while stealthed.Dark PerilCrush nearby enemies, dealing 241 + 24% AP Shadow damage and stunning them for 3 seconds.Vampiric RageLeech the life from 10 enemies within 8 yds, dealing 279 + 28% AP Shadow damage and healing for 90% of the damage dealt.","rankDescriptions":["Drinking a Tonic will transform your Dawn Blade into powerful damaging spells with unique effects for 30 seconds based on the last Tonic consumed.Surging BladeSlash an enemy for 280% Weapon Damage and increase your haste by 15% for 10 seconds.Witchblood FeverCurse all nearby enemies, dealing 104 + 12% AP Shadow damage every 1 sec for 8 seconds and increasing their Magic damage taken from you by 3%. Enemies affected by Witchblood Fever can be seen while stealthed.Dark PerilCrush nearby enemies, dealing 241 + 24% AP Shadow damage and stunning them for 3 seconds.Vampiric RageLeech the life from 10 enemies within 8 yds, dealing 279 + 28% AP Shadow damage and healing for 90% of the damage dealt."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-29949","treeId":"coa-witch-hunter-94","index":29949,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":5,"row":10,"icon":"/assets/ui/spells/gazeoftheblackknight.png","maxRank":1,"name":"Gaze of the Black Knight","description":"Apply a dark shield to yourself, absorbing 3255 + 700% Stamina + 41% AP damage and then gaze upon your party members, causing 25% of the damage they take to be transferred to you for 12 seconds. Damage which reduces your health below 20% will break the effect. Usable while stunned.","rankDescriptions":["Apply a dark shield to yourself, absorbing 3255 + 700% Stamina + 41% AP damage and then gaze upon your party members, causing 25% of the damage they take to be transferred to you for 12 seconds. Damage which reduces your health below 20% will break the effect. Usable while stunned."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false},{"id":"coa-entry-7597","treeId":"coa-witch-hunter-94","index":7597,"prerequisiteId":null,"prerequisiteRank":null,"prerequisites":[],"column":7,"row":10,"icon":"/assets/ui/spells/inv_weapon_shortblade_60.png","maxRank":1,"name":"Blade of the Misbegotten","description":"Damage dealt by Dawn Blade now increases your health by 15% of the damage dealt for 8 seconds, stacking 3 times.","rankDescriptions":["Damage dealt by Dawn Blade now increases your health by 15% of the damage dealt for 8 seconds, stacking 3 times."],"system":"coa","entryType":"Talent","abilityEssenceCost":0,"talentEssenceCost":1,"requiredClassPoints":0,"requiredSpecPoints":23,"requiredLevel":0,"isPassive":false}]} diff --git a/src/game/partyRuntime.ts b/src/game/partyRuntime.ts index 7fdeac00..4410abce 100644 --- a/src/game/partyRuntime.ts +++ b/src/game/partyRuntime.ts @@ -4,6 +4,7 @@ import { abilityById, isAbilityUnlocked, resourceProfileForClass, + triggeredAbilityBySpellId, type AbilityDefinition, type AbilityEffect, type ResourceType, @@ -51,8 +52,6 @@ import { } from "./partyAbilityAi"; import { normalizeActorResourcePool } from "./combatActors"; import { advanceCombatResourcePool } from "./combatResources"; -import { romTriggeredAbilityBySpellId } from "./romAbilityCatalog"; -import { coaTriggeredAbilityBySpellId } from "./coaAbilityRuntimeCatalog"; import { combatHasLineOfSight, combatSpatialActor, @@ -1010,8 +1009,7 @@ function executePartyAbility( }; } 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); + ?? triggeredAbilityBySpellId(effect.spellId); if (triggered && triggered.id !== ability.id) { const result = executePartyAbility(runtimeMember, triggered, targetId, now, members, depth + 1); runtimeMember = result.member; diff --git a/src/game/partyTalentRuntime.ts b/src/game/partyTalentRuntime.ts index 22654031..6791d070 100644 --- a/src/game/partyTalentRuntime.ts +++ b/src/game/partyTalentRuntime.ts @@ -14,18 +14,25 @@ function planKey(classId: ClassId, specialization: string): string { return `${classId}:${specialization}`; } +export function runtimePartyTalentPlan( + classId: ClassId, + specialization: string, +): readonly string[] { + const plan = snapshot.plans[planKey(classId, specialization)]; + if (!plan) throw new Error(`Unsupported party specialization: ${classId}:${specialization}`); + return plan; +} + /** Runtime-only projection of the catalog-validated 71-point party plans. */ export function runtimePartyTalentRanksForLevel( classId: ClassId, specialization: string, level: number, ): TalentRanks { - const plan = snapshot.plans[planKey(classId, specialization)]; - if (!plan) throw new Error(`Unsupported party specialization: ${classId}:${specialization}`); + const plan = runtimePartyTalentPlan(classId, specialization); const safeLevel = Number.isFinite(level) ? Math.max(1, Math.min(80, Math.trunc(level))) : 1; const points = Math.max(0, safeLevel - 9); const ranks: Record = {}; for (const nodeId of plan.slice(0, points)) ranks[nodeId] = (ranks[nodeId] ?? 0) + 1; return Object.freeze(ranks); } - diff --git a/src/game/partyTalentUi.test.ts b/src/game/partyTalentUi.test.ts new file mode 100644 index 00000000..89887599 --- /dev/null +++ b/src/game/partyTalentUi.test.ts @@ -0,0 +1,23 @@ +import { describe, expect, it } from "vitest"; +import { partyTalentAllocationPlan } from "./partyTalents"; +import { partyTalentSelections } from "./partyTalentUi"; +import { loadTalentUiCatalog } from "./talentUiCatalog"; + +describe("party talent UI projection", () => { + it("reconstructs the generated runtime plan from one class shard", async () => { + const catalog = await loadTalentUiCatalog("warrior"); + const projected = partyTalentSelections(catalog, "warrior", "Protection"); + const source = partyTalentAllocationPlan("warrior", "Protection"); + + expect(projected).toHaveLength(71); + expect(projected.map((selection) => ({ + nodeId: selection.nodeId, + rank: selection.rank, + description: selection.description, + }))).toEqual(source.map((selection) => ({ + nodeId: selection.nodeId, + rank: selection.rank, + description: selection.description, + }))); + }); +}); diff --git a/src/game/partyTalentUi.ts b/src/game/partyTalentUi.ts new file mode 100644 index 00000000..0f5ec127 --- /dev/null +++ b/src/game/partyTalentUi.ts @@ -0,0 +1,73 @@ +import type { ClassId } from "../app/characterCatalog"; +import { clampPlayerLevel } from "./progression"; +import { runtimePartyTalentPlan } from "./partyTalentRuntime"; +import { + talentUiDescriptionForRank, + talentUiNodeById, + talentUiTreeById, + type TalentUiCatalog, +} from "./talentUiCatalog"; + +export interface PartyTalentSelection { + readonly point: number; + readonly level: number; + readonly nodeId: string; + readonly treeId: string; + readonly treeName: string; + readonly name: string; + readonly rank: number; + readonly maxRank: number; + readonly icon: string; + readonly description: string; +} + +export function partyTalentSelections( + catalog: TalentUiCatalog, + classId: ClassId, + specialization: string, +): readonly PartyTalentSelection[] { + if (catalog.classId !== classId) return []; + const ranks: Record = {}; + return runtimePartyTalentPlan(classId, specialization).map((nodeId, index) => { + const node = talentUiNodeById(catalog, nodeId); + if (!node) throw new Error(`Party talent plan references missing UI node ${nodeId}.`); + const tree = talentUiTreeById(catalog, node.treeId); + if (!tree) throw new Error(`Party talent plan references missing UI tree ${node.treeId}.`); + const rank = (ranks[nodeId] ?? 0) + 1; + ranks[nodeId] = rank; + return Object.freeze({ + point: index + 1, + level: index + 10, + nodeId, + treeId: tree.id, + treeName: tree.name, + name: node.name, + rank, + maxRank: node.maxRank, + icon: node.icon, + description: talentUiDescriptionForRank(node, rank), + }); + }); +} + +export function learnedPartyTalentSelections( + catalog: TalentUiCatalog, + classId: ClassId, + specialization: string, + level: number, +): readonly PartyTalentSelection[] { + const points = Math.max(0, clampPlayerLevel(level) - 9); + return partyTalentSelections(catalog, classId, specialization).slice(0, points); +} + +export function upcomingPartyTalentSelections( + catalog: TalentUiCatalog, + classId: ClassId, + specialization: string, + level: number, + limit = 5, +): readonly PartyTalentSelection[] { + const start = Math.max(0, clampPlayerLevel(level) - 9); + const safeLimit = Number.isFinite(limit) ? Math.max(0, Math.trunc(limit)) : 0; + return partyTalentSelections(catalog, classId, specialization).slice(start, start + safeLimit); +} diff --git a/src/game/talentRuntimeCatalog.ts b/src/game/talentRuntimeCatalog.ts index 7c58538d..be04cd25 100644 --- a/src/game/talentRuntimeCatalog.ts +++ b/src/game/talentRuntimeCatalog.ts @@ -204,6 +204,38 @@ function allocationFailure( return null; } +export function runtimeTalentAllocationFailure( + ranks: RuntimeTalentRanks, + classId: ClassId, + nodeId: string, + level: number, +): TalentAllocationFailure | null { + return allocationFailure(ranks, classId, nodeId, level); +} + +export function runtimeSpentTalentPointsInTree( + ranks: RuntimeTalentRanks, + treeId: string, +): number { + return spentTalentPointsInTree(ranks, treeId); +} + +export function runtimeUnspentTalentPoints( + level: number, + ranks: RuntimeTalentRanks, + classId?: ClassId, +): number { + return unspentTalentPoints(level, ranks, classId); +} + +export function runtimeUnspentCoaEssence( + level: number, + ranks: RuntimeTalentRanks, + classId: CoaClassId, +): { readonly ability: number; readonly talent: number } { + return unspentCoaEssence(level, ranks, classId); +} + export function runtimeNormalizeTalentRanks( classId: ClassId, level: number, diff --git a/src/game/talentUiCatalog.test.ts b/src/game/talentUiCatalog.test.ts new file mode 100644 index 00000000..3e39e094 --- /dev/null +++ b/src/game/talentUiCatalog.test.ts @@ -0,0 +1,20 @@ +import { describe, expect, it } from "vitest"; +import { TALENT_NODES, TALENT_TREES } from "./talentCatalog"; +import { loadTalentUiCatalog, talentUiNodesForTree } from "./talentUiCatalog"; + +describe("talent UI catalog shards", () => { + it.each(["warrior", "barbarian"] as const)("loads only the %s class projection", async (classId) => { + const catalog = await loadTalentUiCatalog(classId); + const sourceTrees = TALENT_TREES.filter((tree) => tree.classId === classId); + const sourceTreeIds = new Set(sourceTrees.map((tree) => tree.id)); + const sourceNodes = TALENT_NODES.filter((node) => sourceTreeIds.has(node.treeId)); + + expect(catalog.classId).toBe(classId); + expect(catalog.trees.map((tree) => tree.id)).toEqual(sourceTrees.map((tree) => tree.id)); + expect(catalog.nodes.map((node) => node.id)).toEqual(sourceNodes.map((node) => node.id)); + expect(catalog.nodes.every((node) => !("rankEffects" in node))).toBe(true); + for (const tree of catalog.trees) { + expect(talentUiNodesForTree(catalog, tree.id).every((node) => node.treeId === tree.id)).toBe(true); + } + }); +}); diff --git a/src/game/talentUiCatalog.ts b/src/game/talentUiCatalog.ts new file mode 100644 index 00000000..9053ec0c --- /dev/null +++ b/src/game/talentUiCatalog.ts @@ -0,0 +1,93 @@ +import type { ClassId } from "../app/characterCatalog"; + +export interface TalentUiTree { + readonly id: string; + readonly classId: ClassId; + readonly name: string; + readonly icon: string; + readonly background: string; + readonly description: string; + readonly system?: "classic" | "coa"; +} + +export interface TalentUiNode { + readonly id: string; + readonly treeId: string; + readonly index: number; + readonly prerequisiteId: string | null; + readonly prerequisiteRank: number | null; + readonly prerequisites: readonly { + readonly talentId: string; + readonly requiredRank: number; + }[]; + readonly column: number; + readonly row: number; + readonly icon: string; + readonly maxRank: number; + readonly name: string; + readonly description: string; + readonly rankDescriptions: readonly string[]; + readonly system?: "classic" | "coa"; + readonly entryType?: "Ability" | "Talent"; + readonly abilityEssenceCost?: number; + readonly talentEssenceCost?: number; + readonly requiredClassPoints?: number; + readonly requiredSpecPoints?: number; + readonly requiredLevel?: number; + readonly isPassive?: boolean; +} + +export interface TalentUiCatalog { + readonly schemaVersion: 1; + readonly classId: ClassId; + readonly trees: readonly TalentUiTree[]; + readonly nodes: readonly TalentUiNode[]; +} + +interface TalentUiCatalogModule { + readonly default: TalentUiCatalog; +} + +const shardLoaders = import.meta.glob("./generated/talentUi/*.json"); +const loadCache = new Map>(); + +export function loadTalentUiCatalog(classId: ClassId): Promise { + const cached = loadCache.get(classId); + if (cached) return cached; + const key = `./generated/talentUi/${classId}.json`; + const loader = shardLoaders[key]; + if (!loader) return Promise.reject(new Error(`No talent UI catalog exists for ${classId}.`)); + const pending = loader().then((module) => { + if (module.default.schemaVersion !== 1 || module.default.classId !== classId) { + throw new Error(`Talent UI catalog ${classId} has incompatible metadata.`); + } + return module.default; + }).catch((error: unknown) => { + loadCache.delete(classId); + throw error; + }); + loadCache.set(classId, pending); + return pending; +} + +export function talentUiDescriptionForRank(node: TalentUiNode, rank: number): string { + const normalizedRank = Math.min( + node.maxRank, + Math.max(1, Math.trunc(Number.isFinite(rank) ? rank : 1)), + ); + return node.rankDescriptions[normalizedRank - 1] ?? node.description; +} + +export function talentUiTreeById(catalog: TalentUiCatalog, treeId: string): TalentUiTree | null { + return catalog.trees.find((tree) => tree.id === treeId) ?? null; +} + +export function talentUiNodeById(catalog: TalentUiCatalog, nodeId: string): TalentUiNode | null { + return catalog.nodes.find((node) => node.id === nodeId) ?? null; +} + +export function talentUiNodesForTree(catalog: TalentUiCatalog, treeId: string): readonly TalentUiNode[] { + return catalog.nodes + .filter((node) => node.treeId === treeId) + .sort((left, right) => left.row - right.row || left.index - right.index); +} diff --git a/src/scene/AdaptiveGraphicsQuality.test.ts b/src/scene/AdaptiveGraphicsQuality.test.ts new file mode 100644 index 00000000..2287193a --- /dev/null +++ b/src/scene/AdaptiveGraphicsQuality.test.ts @@ -0,0 +1,15 @@ +import { describe, expect, it } from "vitest"; +import { dprForPerformanceFactor } from "./adaptiveGraphicsQualityMath"; + +describe("adaptive graphics quality", () => { + it("maps the performance range onto the supported pixel ratio", () => { + expect(dprForPerformanceFactor(0)).toBe(1); + expect(dprForPerformanceFactor(0.5)).toBe(1.25); + expect(dprForPerformanceFactor(1)).toBe(1.5); + }); + + it("clamps out-of-range monitor factors", () => { + expect(dprForPerformanceFactor(-1)).toBe(1); + expect(dprForPerformanceFactor(2)).toBe(1.5); + }); +}); diff --git a/src/scene/AdaptiveGraphicsQuality.tsx b/src/scene/AdaptiveGraphicsQuality.tsx new file mode 100644 index 00000000..aaec8f23 --- /dev/null +++ b/src/scene/AdaptiveGraphicsQuality.tsx @@ -0,0 +1,20 @@ +import { PerformanceMonitor } from "@react-three/drei"; +import { dprForPerformanceFactor } from "./adaptiveGraphicsQualityMath"; + +export function AdaptiveGraphicsQuality({ + onDprChange, +}: { + readonly onDprChange: (dpr: number) => void; +}) { + return ( + refreshRate > 100 ? [60, 100] : [52, 58]} + onChange={({ factor }) => onDprChange(dprForPerformanceFactor(factor))} + /> + ); +} diff --git a/src/scene/DevelopmentPerformanceProbe.tsx b/src/scene/DevelopmentPerformanceProbe.tsx new file mode 100644 index 00000000..43bc5b59 --- /dev/null +++ b/src/scene/DevelopmentPerformanceProbe.tsx @@ -0,0 +1,38 @@ +import { useFrame } from "@react-three/fiber"; +import { useEffect, useRef } from "react"; + +const DATASET_KEY = "gamePerformance"; + +/** Publishes low-overhead renderer counters for local profiling only. */ +export function DevelopmentPerformanceProbe() { + const elapsedRef = useRef(0); + const framesRef = useRef(0); + const slowestFrameRef = useRef(0); + + useFrame(({ gl }, delta) => { + elapsedRef.current += delta; + framesRef.current += 1; + slowestFrameRef.current = Math.max(slowestFrameRef.current, delta); + if (elapsedRef.current < 1) return; + + document.documentElement.dataset[DATASET_KEY] = JSON.stringify({ + fps: framesRef.current / elapsedRef.current, + averageFrameMs: elapsedRef.current * 1_000 / framesRef.current, + slowestFrameMs: slowestFrameRef.current * 1_000, + drawCalls: gl.info.render.calls, + triangles: gl.info.render.triangles, + geometries: gl.info.memory.geometries, + textures: gl.info.memory.textures, + pixelRatio: gl.getPixelRatio(), + }); + elapsedRef.current = 0; + framesRef.current = 0; + slowestFrameRef.current = 0; + }); + + useEffect(() => () => { + delete document.documentElement.dataset[DATASET_KEY]; + }, []); + + return null; +} diff --git a/src/scene/GameScene.tsx b/src/scene/GameScene.tsx index c06bafc9..514e3e56 100644 --- a/src/scene/GameScene.tsx +++ b/src/scene/GameScene.tsx @@ -28,6 +28,7 @@ import { encounterWorldIsReady, encounterWorldKey, rendererCanvasKey, + sceneFrameLoop, } from "./sceneLifecycle"; import { manastormChaoticLinkRuntimeIds } from "../game/manastormChaoticLink"; import { manastormStagePopulation, manastormStageRoamingPacks } from "../game/manastormStagePopulation"; @@ -44,6 +45,8 @@ import { GmPlacementMarkers } from "./GmPlacementMarkers"; import { useOnlineGroupStore } from "../app/onlineGroupStore"; import { useOnlineSessionStore } from "../app/onlineSessionStore"; import { OnlinePlayerPopulation } from "./OnlinePlayerPopulation"; +import { DevelopmentPerformanceProbe } from "./DevelopmentPerformanceProbe"; +import { AdaptiveGraphicsQuality } from "./AdaptiveGraphicsQuality"; export function GameScene() { const activeDungeonId = useGameStore((state) => state.activeDungeonId); @@ -97,12 +100,21 @@ export function GameScene() { const canvasRef = useRef(null); const [readySessionRevision, setReadySessionRevision] = useState(null); const [safeGraphics, setSafeGraphics] = useState(false); + const [adaptiveDpr, setAdaptiveDpr] = useState(1.5); const [canvasRevision, setCanvasRevision] = useState(0); const [graphicsRecovery, setGraphicsRecovery] = useState<"lost" | "recovering" | null>(null); const worldReady = encounterWorldIsReady(readySessionRevision, sessionRevision); const simulationBlocked = graphicsRecovery !== null || !worldReady || (!sharedOnline && (paused || mapOpen || companionOpen)); + const frameloop = sceneFrameLoop({ + worldReady, + graphicsRecovering: graphicsRecovery !== null, + sharedOnline, + paused, + mapOpen, + companionOpen, + }); const allowedRuntimeIds = useMemo( () => gameMode === "manastorm" && manastormEncounter ? manastormChaoticLinkRuntimeIds(manastormEncounter, manastormPhase) @@ -153,6 +165,10 @@ export function GameScene() { useWailingEncounterStore.getState().reset(); }, [activeDungeonId, gameMode, sessionRevision]); + useEffect(() => { + setAdaptiveDpr(1.5); + }, [activeDungeonId, sessionRevision]); + const endMouseLook = useCallback(() => { endMouseLookDrag(); }, []); @@ -193,7 +209,8 @@ export function GameScene() { key={rendererCanvasKey(canvasRevision)} ref={canvasRef} shadows={!safeGraphics} - dpr={safeGraphics ? 1 : [1, 1.5]} + dpr={safeGraphics ? 1 : adaptiveDpr} + frameloop={frameloop} camera={{ fov: 62, near: 0.08, @@ -210,6 +227,8 @@ export function GameScene() { }} > + {!safeGraphics && worldReady && } + {import.meta.env.DEV && } diff --git a/src/scene/PartyPopulation.tsx b/src/scene/PartyPopulation.tsx index a50c6061..0c3c8d0b 100644 --- a/src/scene/PartyPopulation.tsx +++ b/src/scene/PartyPopulation.tsx @@ -78,6 +78,7 @@ import { useGameStore } from "../game/store"; import { useManastormStore } from "../game/manastormStore"; import { registerCombatSpatialProvider } from "../game/combatSpatial"; import { PLAYER_AGGRO_ID } from "../game/aggro"; +import { hasDungeonLineOfSight } from "./dungeonLineOfSight"; const PARTY_MOVE_SPEED = 5.25; const PARTY_CATCH_UP_SPEED = 7.5; @@ -378,25 +379,7 @@ function PartyActors({ const hasStaticLineOfSight = useCallback(( start: PartyWorldPosition, end: PartyWorldPosition, - ): boolean => { - const dx = end[0] - start[0]; - const dy = end[1] - start[1]; - const dz = end[2] - start[2]; - const distance = Math.hypot(dx, dy, dz); - if (!Number.isFinite(distance)) return false; - if (distance <= 0.08) return true; - const ray = new rapier.Ray( - { x: start[0], y: start[1] + 1.05, z: start[2] }, - { x: dx / distance, y: dy / distance, z: dz / distance }, - ); - const hit = world.castRay( - ray, - distance, - true, - rapier.QueryFilterFlags.EXCLUDE_SENSORS | rapier.QueryFilterFlags.EXCLUDE_DYNAMIC, - ); - return !hit || hit.timeOfImpact >= distance - 0.08; - }, [rapier, world]); + ): boolean => hasDungeonLineOfSight(rapier, world, start, end), [rapier, world]); const routeSurfaceSegmentAllowed = useCallback(( start: PartyWorldPosition, end: PartyWorldPosition, diff --git a/src/scene/ProductionDungeon.test.ts b/src/scene/ProductionDungeon.test.ts index 5c334ecd..b7ef0043 100644 --- a/src/scene/ProductionDungeon.test.ts +++ b/src/scene/ProductionDungeon.test.ts @@ -7,7 +7,11 @@ import { MeshBasicMaterial, } from "three"; import { describe, expect, it } from "vitest"; -import { collisionTrimeshes, prepareCollision } from "./productionDungeonCollision"; +import { + collisionLineOfSightTrimeshes, + collisionTrimeshes, + prepareCollision, +} from "./productionDungeonCollision"; describe("streamed dungeon collision preparation", () => { it("dequantizes normalized Meshopt position buffers before Rapier consumes them", () => { @@ -54,4 +58,39 @@ describe("streamed dungeon collision preparation", () => { expect(Array.from(trimesh.indices)).toEqual([0, 1, 2]); }); + + it("builds sight collision from walls while excluding ground and ramps", () => { + const geometry = new BufferGeometry(); + geometry.setAttribute( + "position", + new Float32BufferAttribute([ + 0, 0, 0, + 2, 0, 0, + 0, 0, 2, + 0, 0, 3, + 2, 0, 3, + 0, 2, 5, + 4, 0, 0, + 4, 2, 0, + 4, 0, 2, + ], 3), + ); + geometry.setIndex([ + 0, 1, 2, + 3, 4, 5, + 6, 7, 8, + ]); + const root = new Group(); + root.add(new Mesh(geometry, new MeshBasicMaterial())); + + const prepared = prepareCollision(root); + const [blocker] = collisionLineOfSightTrimeshes(prepared); + + expect(Array.from(blocker.indices)).toEqual([0, 1, 2]); + expect(Array.from(blocker.vertices)).toEqual([ + 4, 0, 0, + 4, 2, 0, + 4, 0, 2, + ]); + }); }); diff --git a/src/scene/ProductionDungeon.tsx b/src/scene/ProductionDungeon.tsx index 8b35f2fe..6ff180d2 100644 --- a/src/scene/ProductionDungeon.tsx +++ b/src/scene/ProductionDungeon.tsx @@ -12,8 +12,17 @@ import { import type { ResolvedDungeonAssets } from "../game/dungeonAssets"; import type { DungeonDefinition, DungeonMaterialRoles } from "../game/dungeonTypes"; import { useGameStore } from "../game/store"; -import { collisionTrimeshes, prepareCollision } from "./productionDungeonCollision"; +import { + collisionLineOfSightTrimeshes, + collisionTrimeshes, + prepareCollision, +} from "./productionDungeonCollision"; +import { + DUNGEON_PHYSICAL_COLLISION_GROUPS, + DUNGEON_SIGHT_BLOCKER_COLLISION_GROUPS, +} from "./dungeonLineOfSight"; import { disposeObject3DResources } from "./threeResourceDisposal"; +import { instanceRepeatedStaticMeshes } from "./staticSceneInstancing"; import { useGameGLTF } from "./useGameGLTF"; import { DUNGEON_COLLISION_LOAD_BATCH_SIZE, @@ -81,6 +90,7 @@ function prepareVisual(root: Object3D, roles: DungeonMaterialRoles): Object3D { instanced.computeBoundingSphere(); } }); + instanceRepeatedStaticMeshes(clone); return clone; } @@ -141,6 +151,7 @@ function CollisionChunk({ const gltf = useGameGLTF(url); const collision = useMemo(() => prepareCollision(gltf.scene), [gltf.scene]); const trimeshes = useMemo(() => collisionTrimeshes(collision), [collision]); + const sightBlockers = useMemo(() => collisionLineOfSightTrimeshes(collision), [collision]); useEffect(() => () => { disposeObject3DResources(collision, { materials: false, @@ -166,6 +177,15 @@ function CollisionChunk({ + ))} + {sightBlockers.map((trimesh) => ( + ))} diff --git a/src/scene/PrototypeDungeon.tsx b/src/scene/PrototypeDungeon.tsx index a093c1f7..68a193c8 100644 --- a/src/scene/PrototypeDungeon.tsx +++ b/src/scene/PrototypeDungeon.tsx @@ -1,17 +1,36 @@ import { Sparkles } from "@react-three/drei"; import { RigidBody } from "@react-three/rapier"; import type { DungeonDefinition } from "../game/dungeonTypes"; +import { + DUNGEON_PHYSICAL_COLLISION_GROUPS, + DUNGEON_WALL_COLLISION_GROUPS, +} from "./dungeonLineOfSight"; interface SlabProps { position: [number, number, number]; size: [number, number, number]; rotationY?: number; color?: string; + blocksLineOfSight?: boolean; } -function CaveSlab({ position, size, rotationY = 0, color = "#25352b" }: SlabProps) { +function CaveSlab({ + position, + size, + rotationY = 0, + color = "#25352b", + blocksLineOfSight = false, +}: SlabProps) { return ( - + @@ -45,11 +64,11 @@ export function PrototypeDungeon({ definition }: { readonly definition: DungeonD rotation={[0, entrance.yaw, 0]} > - - + + - - + + {stonePositions.map((position, index) => )} diff --git a/src/scene/adaptiveGraphicsQualityMath.ts b/src/scene/adaptiveGraphicsQualityMath.ts new file mode 100644 index 00000000..93f1d91f --- /dev/null +++ b/src/scene/adaptiveGraphicsQualityMath.ts @@ -0,0 +1,3 @@ +export function dprForPerformanceFactor(factor: number): number { + return 1 + Math.max(0, Math.min(1, factor)) * 0.5; +} diff --git a/src/scene/dungeonLineOfSight.test.ts b/src/scene/dungeonLineOfSight.test.ts new file mode 100644 index 00000000..8f437936 --- /dev/null +++ b/src/scene/dungeonLineOfSight.test.ts @@ -0,0 +1,57 @@ +import RAPIER from "@dimforge/rapier3d-compat"; +import { beforeAll, describe, expect, it } from "vitest"; +import { + DUNGEON_PHYSICAL_COLLISION_GROUPS, + DUNGEON_SIGHT_BLOCKER_COLLISION_GROUPS, + hasDungeonLineOfSight, +} from "./dungeonLineOfSight"; + +beforeAll(async () => { + await RAPIER.init(); +}); + +function fixedCuboid( + world: RAPIER.World, + translation: readonly [number, number, number], + collisionGroups: number, + sensor = false, +): void { + const body = world.createRigidBody(RAPIER.RigidBodyDesc.fixed()); + world.createCollider( + RAPIER.ColliderDesc.cuboid(0.1, 2, 2) + .setTranslation(...translation) + .setCollisionGroups(collisionGroups) + .setSensor(sensor), + body, + ); +} + +function kinematicCaster(world: RAPIER.World): void { + const body = world.createRigidBody( + RAPIER.RigidBodyDesc.kinematicPositionBased().setTranslation(0, 1.05, 0), + ); + world.createCollider(RAPIER.ColliderDesc.capsule(0.5, 0.3), body); +} + +describe("dungeon line of sight", () => { + it("ignores physical ground geometry even when it crosses the sight ray", () => { + const world = new RAPIER.World({ x: 0, y: -9.81, z: 0 }); + fixedCuboid(world, [2, 1.05, 0], DUNGEON_PHYSICAL_COLLISION_GROUPS); + kinematicCaster(world); + world.step(); + + expect(hasDungeonLineOfSight(RAPIER, world, [0, 0, 0], [4, 0, 0])).toBe(true); + + world.free(); + }); + + it("is blocked by dedicated wall and pillar geometry", () => { + const world = new RAPIER.World({ x: 0, y: -9.81, z: 0 }); + fixedCuboid(world, [2, 1.05, 0], DUNGEON_SIGHT_BLOCKER_COLLISION_GROUPS, true); + world.step(); + + expect(hasDungeonLineOfSight(RAPIER, world, [0, 0, 0], [4, 0, 0])).toBe(false); + + world.free(); + }); +}); diff --git a/src/scene/dungeonLineOfSight.ts b/src/scene/dungeonLineOfSight.ts new file mode 100644 index 00000000..dcf2d99d --- /dev/null +++ b/src/scene/dungeonLineOfSight.ts @@ -0,0 +1,60 @@ +import { interactionGroups } from "@react-three/rapier"; +import type { + QueryFilterFlags, + Ray, + Vector, + World, +} from "@dimforge/rapier3d-compat"; + +interface RapierApi { + readonly Ray: new (origin: Vector, direction: Vector) => Ray; + readonly QueryFilterFlags: { + readonly EXCLUDE_DYNAMIC: QueryFilterFlags; + readonly EXCLUDE_KINEMATIC: QueryFilterFlags; + }; +} + +type WorldPosition = readonly [number, number, number]; + +export const DUNGEON_LINE_OF_SIGHT_GROUP = 15; +export const DUNGEON_PHYSICAL_COLLISION_GROUPS = interactionGroups(0); +export const DUNGEON_SIGHT_BLOCKER_COLLISION_GROUPS = interactionGroups(DUNGEON_LINE_OF_SIGHT_GROUP); +export const DUNGEON_WALL_COLLISION_GROUPS = interactionGroups([0, DUNGEON_LINE_OF_SIGHT_GROUP]); +export const DUNGEON_SIGHT_QUERY_GROUPS = interactionGroups( + DUNGEON_LINE_OF_SIGHT_GROUP, + DUNGEON_LINE_OF_SIGHT_GROUP, +); + +const ACTOR_SIGHT_HEIGHT = 1.05; +const TARGET_MARGIN = 0.08; + +/** + * Checks only the dedicated wall/pillar collision layer. Walkable terrain and + * ceilings remain physical, but never participate in combat visibility. + */ +export function hasDungeonLineOfSight( + rapier: RapierApi, + world: World, + start: WorldPosition, + end: WorldPosition, +): boolean { + const dx = end[0] - start[0]; + const dy = end[1] - start[1]; + const dz = end[2] - start[2]; + const distance = Math.hypot(dx, dy, dz); + if (!Number.isFinite(distance)) return false; + if (distance <= TARGET_MARGIN) return true; + + const ray = new rapier.Ray( + { x: start[0], y: start[1] + ACTOR_SIGHT_HEIGHT, z: start[2] }, + { x: dx / distance, y: dy / distance, z: dz / distance }, + ); + const hit = world.castRay( + ray, + distance, + true, + rapier.QueryFilterFlags.EXCLUDE_DYNAMIC | rapier.QueryFilterFlags.EXCLUDE_KINEMATIC, + DUNGEON_SIGHT_QUERY_GROUPS, + ); + return !hit || hit.timeOfImpact >= distance - TARGET_MARGIN; +} diff --git a/src/scene/productionDungeonCollision.ts b/src/scene/productionDungeonCollision.ts index 9d64eca3..2d0d769e 100644 --- a/src/scene/productionDungeonCollision.ts +++ b/src/scene/productionDungeonCollision.ts @@ -11,6 +11,10 @@ export interface PreparedCollisionTrimesh { readonly indices: ArrayLike; } +// A surface must be within 30 degrees of vertical to occlude combat sight. +// This deliberately rejects floors, ramps, slopes, and ceilings. +const MAX_SIGHT_BLOCKER_NORMAL_Y = 0.5; + export function prepareCollision(root: Object3D): Group { root.updateWorldMatrix(true, true); const inverseRootMatrix = root.matrixWorld.clone().invert(); @@ -60,3 +64,61 @@ export function collisionTrimeshes(root: Object3D): readonly PreparedCollisionTr }); return result; } + +export function collisionLineOfSightTrimeshes(root: Object3D): readonly PreparedCollisionTrimesh[] { + const result: PreparedCollisionTrimesh[] = []; + root.traverse((node) => { + const mesh = node as Mesh; + if (!mesh.isMesh) return; + const position = mesh.geometry.getAttribute("position"); + const sourceIndices = mesh.geometry.index?.array + ?? Uint32Array.from({ length: position.count }, (_, vertex) => vertex); + const blockerSourceIndices: number[] = []; + + for (let offset = 0; offset + 2 < sourceIndices.length; offset += 3) { + const first = Number(sourceIndices[offset]); + const second = Number(sourceIndices[offset + 1]); + const third = Number(sourceIndices[offset + 2]); + const firstX = position.getX(first); + const firstY = position.getY(first); + const firstZ = position.getZ(first); + const abX = position.getX(second) - firstX; + const abY = position.getY(second) - firstY; + const abZ = position.getZ(second) - firstZ; + const acX = position.getX(third) - firstX; + const acY = position.getY(third) - firstY; + const acZ = position.getZ(third) - firstZ; + const normalX = abY * acZ - abZ * acY; + const normalY = abZ * acX - abX * acZ; + const normalZ = abX * acY - abY * acX; + const normalLength = Math.hypot(normalX, normalY, normalZ); + if (normalLength <= Number.EPSILON) continue; + if (Math.abs(normalY) / normalLength > MAX_SIGHT_BLOCKER_NORMAL_Y) continue; + blockerSourceIndices.push(first, second, third); + } + + if (!blockerSourceIndices.length) return; + const remappedVertices: number[] = []; + const remappedIndices = new Uint32Array(blockerSourceIndices.length); + const remap = new Map(); + blockerSourceIndices.forEach((sourceIndex, indexOffset) => { + let remappedIndex = remap.get(sourceIndex); + if (remappedIndex === undefined) { + remappedIndex = remap.size; + remap.set(sourceIndex, remappedIndex); + remappedVertices.push( + position.getX(sourceIndex), + position.getY(sourceIndex), + position.getZ(sourceIndex), + ); + } + remappedIndices[indexOffset] = remappedIndex; + }); + result.push({ + id: `${mesh.uuid}-line-of-sight`, + vertices: Float32Array.from(remappedVertices), + indices: remappedIndices, + }); + }); + return result; +} diff --git a/src/scene/sceneLifecycle.test.ts b/src/scene/sceneLifecycle.test.ts index c38575a9..59633ef7 100644 --- a/src/scene/sceneLifecycle.test.ts +++ b/src/scene/sceneLifecycle.test.ts @@ -3,6 +3,7 @@ import { encounterWorldIsReady, encounterWorldKey, rendererCanvasKey, + sceneFrameLoop, } from "./sceneLifecycle"; describe("R3F scene lifecycle", () => { @@ -18,4 +19,22 @@ describe("R3F scene lifecycle", () => { expect(encounterWorldIsReady(4, 4)).toBe(true); expect(encounterWorldIsReady(4, 5)).toBe(false); }); + + it("renders local paused worlds on demand without stalling loading or online worlds", () => { + const readyWorld = { + worldReady: true, + graphicsRecovering: false, + sharedOnline: false, + paused: false, + mapOpen: false, + companionOpen: false, + }; + expect(sceneFrameLoop({ ...readyWorld, paused: true })).toBe("demand"); + expect(sceneFrameLoop({ ...readyWorld, mapOpen: true })).toBe("demand"); + expect(sceneFrameLoop({ ...readyWorld, companionOpen: true })).toBe("demand"); + expect(sceneFrameLoop({ ...readyWorld, paused: true, sharedOnline: true })).toBe("always"); + expect(sceneFrameLoop({ ...readyWorld, paused: true, worldReady: false })).toBe("always"); + expect(sceneFrameLoop({ ...readyWorld, paused: true, graphicsRecovering: true })).toBe("always"); + expect(sceneFrameLoop(readyWorld)).toBe("always"); + }); }); diff --git a/src/scene/sceneLifecycle.ts b/src/scene/sceneLifecycle.ts index 6984df03..7881465c 100644 --- a/src/scene/sceneLifecycle.ts +++ b/src/scene/sceneLifecycle.ts @@ -1,4 +1,5 @@ import type { DungeonId } from "../game/dungeonRegistry"; +import type { Frameloop } from "@react-three/fiber"; /** * Encounter transitions must never remount the Canvas: R3F intentionally loses @@ -27,3 +28,23 @@ export function encounterWorldIsReady( return readySessionRevision !== null && readySessionRevision === Math.max(0, Math.trunc(sessionRevision)); } + +/** + * A paused local world only needs a frame when React or R3F invalidates it. + * Loading, recovery, and shared-online worlds keep the continuous loop so + * asynchronous scene setup and authoritative remote simulation can progress. + */ +export function sceneFrameLoop(options: { + readonly worldReady: boolean; + readonly graphicsRecovering: boolean; + readonly sharedOnline: boolean; + readonly paused: boolean; + readonly mapOpen: boolean; + readonly companionOpen: boolean; +}): Frameloop { + const locallyPaused = options.worldReady + && !options.graphicsRecovering + && !options.sharedOnline + && (options.paused || options.mapOpen || options.companionOpen); + return locallyPaused ? "demand" : "always"; +} diff --git a/src/scene/staticSceneInstancing.test.ts b/src/scene/staticSceneInstancing.test.ts new file mode 100644 index 00000000..11b20181 --- /dev/null +++ b/src/scene/staticSceneInstancing.test.ts @@ -0,0 +1,109 @@ +import { describe, expect, it } from "vitest"; +import { + BoxGeometry, + Group, + InstancedMesh, + Matrix4, + Mesh, + MeshBasicMaterial, + Vector3, +} from "three"; +import { instanceRepeatedStaticMeshes } from "./staticSceneInstancing"; + +function batchIn(root: Group): InstancedMesh { + let result: InstancedMesh | null = null; + root.traverse((node) => { + if ((node as InstancedMesh).isInstancedMesh) result = node as InstancedMesh; + }); + if (!result) throw new Error("Expected an instanced mesh batch."); + return result; +} + +function batchesIn(root: Group): readonly InstancedMesh[] { + const result: InstancedMesh[] = []; + root.traverse((node) => { + if ((node as InstancedMesh).isInstancedMesh) result.push(node as InstancedMesh); + }); + return result; +} + +describe("static scene instancing", () => { + it("batches repeated meshes while retaining their world transforms", () => { + const root = new Group(); + root.position.set(10, 0, 0); + const geometry = new BoxGeometry(); + const material = new MeshBasicMaterial(); + for (const x of [1, 3, 7]) { + const mesh = new Mesh(geometry, material); + mesh.position.x = x; + root.add(mesh); + } + + expect(instanceRepeatedStaticMeshes(root)).toEqual({ + batches: 1, + instances: 3, + removedMeshes: 3, + }); + const batch = batchIn(root); + const matrix = new Matrix4(); + const position = new Vector3(); + const positions = Array.from({ length: batch.count }, (_, index) => { + batch.getMatrixAt(index, matrix); + position.setFromMatrixPosition(matrix); + return position.x; + }); + expect(positions).toEqual([1, 3, 7]); + }); + + it("leaves small groups and existing instance batches unchanged", () => { + const root = new Group(); + const geometry = new BoxGeometry(); + const material = new MeshBasicMaterial(); + root.add(new Mesh(geometry, material), new Mesh(geometry, material)); + const existing = new InstancedMesh(geometry, material, 4); + root.add(existing); + + expect(instanceRepeatedStaticMeshes(root)).toEqual({ + batches: 0, + instances: 0, + removedMeshes: 0, + }); + expect(root.children).toHaveLength(3); + expect(root.children).toContain(existing); + }); + + it("does not combine meshes whose render state differs", () => { + const root = new Group(); + const geometry = new BoxGeometry(); + const material = new MeshBasicMaterial(); + for (let index = 0; index < 3; index += 1) { + const mesh = new Mesh(geometry, material); + mesh.receiveShadow = index !== 2; + root.add(mesh); + } + + expect(instanceRepeatedStaticMeshes(root)).toEqual({ + batches: 0, + instances: 0, + removedMeshes: 0, + }); + }); + + it("keeps distant repetitions in separate cullable spatial batches", () => { + const root = new Group(); + const geometry = new BoxGeometry(); + const material = new MeshBasicMaterial(); + for (const x of [1, 2, 3, 385, 386, 387]) { + const mesh = new Mesh(geometry, material); + mesh.position.x = x; + root.add(mesh); + } + + expect(instanceRepeatedStaticMeshes(root)).toEqual({ + batches: 2, + instances: 6, + removedMeshes: 6, + }); + expect(batchesIn(root).map((batch) => batch.count)).toEqual([3, 3]); + }); +}); diff --git a/src/scene/staticSceneInstancing.ts b/src/scene/staticSceneInstancing.ts new file mode 100644 index 00000000..231138ac --- /dev/null +++ b/src/scene/staticSceneInstancing.ts @@ -0,0 +1,116 @@ +import { + InstancedMesh, + Matrix4, + type Material, + type Mesh, + type Object3D, + Vector3, +} from "three"; + +export const STATIC_INSTANCE_CELL_SIZE = 192; + +export interface StaticSceneInstancingReport { + readonly batches: number; + readonly instances: number; + readonly removedMeshes: number; +} + +function materialKey(material: Material | readonly Material[]): string { + return (Array.isArray(material) ? material : [material]) + .map((entry) => entry.uuid) + .join(","); +} + +function candidateKey(mesh: Mesh): string { + return [ + mesh.geometry.uuid, + materialKey(mesh.material), + mesh.castShadow ? "cast" : "no-cast", + mesh.receiveShadow ? "receive" : "no-receive", + mesh.renderOrder, + mesh.layers.mask, + mesh.frustumCulled ? "culled" : "not-culled", + ].join("|"); +} + +function candidateCell(mesh: Mesh, cellSize: number, center: Vector3): string { + if (!mesh.geometry.boundingSphere) mesh.geometry.computeBoundingSphere(); + const geometryCenter = mesh.geometry.boundingSphere?.center; + if (geometryCenter) center.copy(geometryCenter); + else center.set(0, 0, 0); + center.applyMatrix4(mesh.matrixWorld); + return [ + Math.floor(center.x / cellSize), + Math.floor(center.y / cellSize), + Math.floor(center.z / cellSize), + ].join(":"); +} + +function isStaticInstancingCandidate(root: Object3D, node: Object3D): node is Mesh { + const mesh = node as Mesh; + return node !== root + && mesh.isMesh === true + && (mesh as Mesh & { readonly isInstancedMesh?: boolean }).isInstancedMesh !== true + && (mesh as Mesh & { readonly isSkinnedMesh?: boolean }).isSkinnedMesh !== true + && mesh.visible + && mesh.children.length === 0 + && Object.keys(mesh.geometry.morphAttributes).length === 0 + && mesh.matrixWorld.determinant() > 0; +} + +/** + * Flattens repeated static meshes into InstancedMesh batches once, immediately + * after a dungeon visual is cloned. This keeps legacy packs efficient without + * moving scene work into the render loop; newly optimized GLBs are left alone. + */ +export function instanceRepeatedStaticMeshes( + root: Object3D, + minimumInstances = 3, + cellSize = STATIC_INSTANCE_CELL_SIZE, +): StaticSceneInstancingReport { + root.updateWorldMatrix(true, true); + const safeCellSize = Number.isFinite(cellSize) && cellSize > 0 + ? cellSize + : STATIC_INSTANCE_CELL_SIZE; + const center = new Vector3(); + const groups = new Map(); + root.traverse((node) => { + if (!isStaticInstancingCandidate(root, node)) return; + const key = `${candidateKey(node)}|cell:${candidateCell(node, safeCellSize, center)}`; + const group = groups.get(key); + if (group) group.push(node); + else groups.set(key, [node]); + }); + + const inverseRootWorld = new Matrix4().copy(root.matrixWorld).invert(); + let batches = 0; + let instances = 0; + let removedMeshes = 0; + + for (const meshes of groups.values()) { + if (meshes.length < minimumInstances) continue; + const prototype = meshes[0]; + const batch = new InstancedMesh(prototype.geometry, prototype.material, meshes.length); + batch.name = `${prototype.name || prototype.geometry.name || "mesh"}-instances`; + batch.castShadow = prototype.castShadow; + batch.receiveShadow = prototype.receiveShadow; + batch.renderOrder = prototype.renderOrder; + batch.layers.mask = prototype.layers.mask; + batch.frustumCulled = prototype.frustumCulled; + + for (let index = 0; index < meshes.length; index += 1) { + const mesh = meshes[index]; + batch.setMatrixAt(index, new Matrix4().multiplyMatrices(inverseRootWorld, mesh.matrixWorld)); + mesh.removeFromParent(); + } + batch.instanceMatrix.needsUpdate = true; + batch.computeBoundingBox(); + batch.computeBoundingSphere(); + root.add(batch); + batches += 1; + instances += meshes.length; + removedMeshes += meshes.length; + } + + return { batches, instances, removedMeshes }; +} diff --git a/src/ui/PartyManagementPanel.tsx b/src/ui/PartyManagementPanel.tsx index c9062f47..ddd8c902 100644 --- a/src/ui/PartyManagementPanel.tsx +++ b/src/ui/PartyManagementPanel.tsx @@ -4,14 +4,18 @@ import { learnedPartyTalentSelections, upcomingPartyTalentSelections, type PartyTalentSelection, -} from "../game/partyTalents"; +} from "../game/partyTalentUi"; import { PARTY_ROLE_LABELS, usePartyStore, type PartyCommand, type PartyMember, } from "../game/partyStore"; -import { talentTreeById } from "../game/talentCatalog"; +import { + loadTalentUiCatalog, + talentUiTreeById, + type TalentUiCatalog, +} from "../game/talentUiCatalog"; import { useGameStore } from "../game/store"; import { useMenuController, type MenuAction } from "../input/useMenuController"; import { ControllerButton } from "./ControllerButton"; @@ -70,6 +74,8 @@ function PartyManagementDialog() { const command = usePartyStore((state) => state.command); const openOverlay = useGameStore((state) => state.openOverlay); const [inspectedMemberId, setInspectedMemberId] = useState(() => members[0]?.id ?? ""); + const [talentCatalog, setTalentCatalog] = useState(null); + const [talentCatalogErrorClassId, setTalentCatalogErrorClassId] = useState(null); const close = useCallback(() => openOverlay("pause"), [openOverlay]); useEffect(() => { @@ -79,13 +85,45 @@ function PartyManagementDialog() { }, [inspectedMemberId, members]); const inspectedMember = members.find((member) => member.id === inspectedMemberId) ?? members[0] ?? null; - const learned = useMemo(() => inspectedMember - ? learnedPartyTalentSelections(inspectedMember.classId, inspectedMember.specialization, inspectedMember.level) - : [], [inspectedMember]); + useEffect(() => { + const classId = inspectedMember?.classId; + if (!classId || classId.startsWith("rom-")) { + setTalentCatalog(null); + setTalentCatalogErrorClassId(null); + return; + } + let active = true; + setTalentCatalogErrorClassId(null); + void loadTalentUiCatalog(classId).then((catalog) => { + if (active) setTalentCatalog(catalog); + }).catch(() => { + if (!active) return; + setTalentCatalog(null); + setTalentCatalogErrorClassId(classId); + }); + return () => { active = false; }; + }, [inspectedMember?.classId]); + const activeTalentCatalog = inspectedMember && talentCatalog?.classId === inspectedMember.classId + ? talentCatalog + : null; + const learned = useMemo(() => inspectedMember && activeTalentCatalog + ? learnedPartyTalentSelections( + activeTalentCatalog, + inspectedMember.classId, + inspectedMember.specialization, + inspectedMember.level, + ) + : [], [activeTalentCatalog, inspectedMember]); const currentTalents = useMemo(() => currentTalentRanks(learned), [learned]); - const upcomingTalents = useMemo(() => inspectedMember - ? upcomingPartyTalentSelections(inspectedMember.classId, inspectedMember.specialization, inspectedMember.level, 3) - : [], [inspectedMember]); + const upcomingTalents = useMemo(() => inspectedMember && activeTalentCatalog + ? upcomingPartyTalentSelections( + activeTalentCatalog, + inspectedMember.classId, + inspectedMember.specialization, + inspectedMember.level, + 3, + ) + : [], [activeTalentCatalog, inspectedMember]); const actions = useMemo(() => [ ...members.map((member) => ({ @@ -106,7 +144,9 @@ function PartyManagementDialog() { const memberClass = inspectedMember ? classById(inspectedMember.classId) : null; const memberRace = inspectedMember ? raceById(inspectedMember.raceId) : null; - const primaryTree = inspectedMember ? talentTreeById(inspectedMember.talentTreeId) : null; + const primaryTree = inspectedMember && activeTalentCatalog + ? talentUiTreeById(activeTalentCatalog, inspectedMember.talentTreeId) + : null; const primaryPoints = inspectedMember ? learned.filter((selection) => selection.treeId === inspectedMember.talentTreeId).length : 0; @@ -210,7 +250,14 @@ function PartyManagementDialog() {
{currentTalents.map((selection) => )} - {!currentTalents.length && ( + {!activeTalentCatalog && ( +

+ {talentCatalogErrorClassId === inspectedMember.classId + ? "Talent details are temporarily unavailable." + : "Preparing this class's talent catalog…"} +

+ )} + {activeTalentCatalog && !currentTalents.length && (

Talent training begins at level 10. This build will advance automatically with you.

@@ -227,7 +274,7 @@ function PartyManagementDialog() { {upcomingTalents.map((selection) => ( ))} - {!upcomingTalents.length && ( + {activeTalentCatalog && !upcomingTalents.length && (

This party member has completed the level 80 talent plan.

)}
diff --git a/src/ui/TalentGameplayPanel.tsx b/src/ui/TalentGameplayPanel.tsx index cb797101..6fd60371 100644 --- a/src/ui/TalentGameplayPanel.tsx +++ b/src/ui/TalentGameplayPanel.tsx @@ -1,14 +1,12 @@ -import { useMemo } from "react"; -import { classById } from "../app/characterCatalog"; +import { use, useMemo } from "react"; +import { classById, type CoaClassId } from "../app/characterCatalog"; import { useCombatStore } from "../game/combatStore"; import { - spentTalentPointsInTree, - talentNodesForTree, - talentTreesForClass, - unspentCoaEssence, - unspentTalentPoints, -} from "../game/talentCatalog"; -import { isCoaClassId } from "../game/coaLiveCatalog"; + runtimeSpentTalentPointsInTree, + runtimeUnspentCoaEssence, + runtimeUnspentTalentPoints, +} from "../game/talentRuntimeCatalog"; +import { loadTalentUiCatalog, talentUiNodesForTree } from "../game/talentUiCatalog"; import { TalentsPanel } from "./TalentsPanel"; function treeSigil(name: string): string { @@ -20,19 +18,20 @@ export default function TalentGameplayPanel() { const level = useCombatStore((state) => state.level); const talentRanks = useCombatStore((state) => state.talentRanks); const classDefinition = classById(classId); - const talentTrees = useMemo(() => talentTreesForClass(classId).map((tree) => ({ + const catalog = use(loadTalentUiCatalog(classId)); + const talentTrees = useMemo(() => catalog.trees.map((tree) => ({ id: tree.id, name: tree.name, description: tree.description, - points: spentTalentPointsInTree(talentRanks, tree.id), + points: runtimeSpentTalentPointsInTree(talentRanks, tree.id), color: classDefinition.color, sigil: treeSigil(tree.name), iconUrl: tree.icon, backgroundUrl: tree.background, - nodes: talentNodesForTree(tree.id), - })), [classDefinition.color, classId, talentRanks]); - const coaEssence = isCoaClassId(classId) - ? unspentCoaEssence(level, talentRanks, classId) + nodes: talentUiNodesForTree(catalog, tree.id), + })), [catalog, classDefinition.color, talentRanks]); + const coaEssence = classDefinition.mode === "conquest" + ? runtimeUnspentCoaEssence(level, talentRanks, classId as CoaClassId) : null; return { useCombatStore.getState().allocateTalent(nodeId); }} onReset={() => useCombatStore.getState().resetTalents()} />; } - diff --git a/src/ui/TalentsPanel.tsx b/src/ui/TalentsPanel.tsx index 7e76c3ee..1baa61ee 100644 --- a/src/ui/TalentsPanel.tsx +++ b/src/ui/TalentsPanel.tsx @@ -1,11 +1,13 @@ import { useEffect, useMemo, useState, type CSSProperties } from "react"; import type { ClassId } from "../app/characterCatalog"; +import { runtimeTalentAllocationFailure } from "../game/talentRuntimeCatalog"; import { - talentDescriptionForRank, - talentAllocationFailure, - type TalentAllocationFailure, - type TalentNodeDefinition, - type TalentRanks, + talentUiDescriptionForRank, + type TalentUiNode, +} from "../game/talentUiCatalog"; +import type { + TalentAllocationFailure, + TalentRanks, } from "../game/talentCatalog"; import { useGameStore } from "../game/store"; import { useMenuController, type MenuAction, type MenuDirection } from "../input/useMenuController"; @@ -20,7 +22,7 @@ export interface TalentTreeView { sigil: string; iconUrl?: string; backgroundUrl: string; - nodes: readonly TalentNodeDefinition[]; + nodes: readonly TalentUiNode[]; } export interface TalentsPanelProps { @@ -53,10 +55,10 @@ function TalentImage({ src, fallback }: { src?: string; fallback: string }) { } function nearestNode( - nodes: readonly TalentNodeDefinition[], - source: TalentNodeDefinition, + nodes: readonly TalentUiNode[], + source: TalentUiNode, direction: MenuDirection, -): TalentNodeDefinition | null { +): TalentUiNode | null { const vertical = direction === "up" || direction === "down"; const candidates = nodes.filter((candidate) => { if (direction === "up") return candidate.row < source.row; @@ -77,9 +79,9 @@ function nearestNode( function failureText( failure: TalentAllocationFailure | null, - node: TalentNodeDefinition, + node: TalentUiNode, tree: TalentTreeView, - prerequisite: TalentNodeDefinition | null, + prerequisite: TalentUiNode | null, ): string { if (!failure) return "Ready to learn"; if (failure === "max-rank") return "Maximum rank learned"; @@ -125,7 +127,7 @@ function TalentsDialog({ const nodeStateById = useMemo(() => new Map(allNodes.map((node) => { const rank = Math.max(0, Math.min(node.maxRank, Math.trunc(ranks[node.id] ?? 0))); const tree = treeByNodeId.get(node.id); - const rawFailure = talentAllocationFailure(ranks, classId, node.id, playerLevel); + const rawFailure = runtimeTalentAllocationFailure(ranks, classId, node.id, playerLevel); const failure: TalentAllocationFailure | null = rank >= node.maxRank ? "max-rank" : node.system !== "coa" && tree && tree.points < (node.row - 1) * 5 @@ -215,7 +217,7 @@ function TalentsDialog({ setDetailNodeId(nodeId); }; - const activateNode = (treeId: string, node: TalentNodeDefinition) => { + const activateNode = (treeId: string, node: TalentUiNode) => { inspectNode(treeId, node.id); if (!nodeStateById.get(node.id)?.failure) onInvest(node.id); }; @@ -333,7 +335,7 @@ function TalentsDialog({ aria-label={label} aria-disabled={state.failure !== null} aria-describedby={detailNode?.id === node.id ? "talent-node-details" : undefined} - title={`${label} — ${talentDescriptionForRank(node, state.rank || 1)}`} + title={`${label} — ${talentUiDescriptionForRank(node, state.rank || 1)}`} onFocus={() => inspectNode(tree.id, node.id)} onPointerEnter={() => inspectNode(tree.id, node.id)} onClick={() => activateNode(tree.id, node)} @@ -368,11 +370,11 @@ function TalentsDialog({ {detailState.rank > 0 ? `Rank ${detailState.rank} effect` : "Rank 1 effect"} -

{talentDescriptionForRank(detailNode, detailState.rank || 1)}

+

{talentUiDescriptionForRank(detailNode, detailState.rank || 1)}

{detailState.rank > 0 && detailState.rank < detailNode.maxRank && ( <> Next rank -

{talentDescriptionForRank(detailNode, detailState.rank + 1)}

+

{talentUiDescriptionForRank(detailNode, detailState.rank + 1)}

)} {(detailNode.row > 1 || prerequisite || detailNode.system === "coa") && (